Log inRegister an accountBrowse CSDbHelp & documentationFacts & StatisticsThe forumsAvailable RSS-feeds on CSDbSupport CSDb Commodore 64 Scene Database
You are not logged in - nap
CSDb User Forums


Forums > C64 Coding > Punter File Transfer Protocol
2015-02-24 23:04
Six

Registered: Apr 2002
Posts: 287
Punter File Transfer Protocol

Reading the doc here: http://cbmfiles.com/genie/geniefiles/TelcomTools/C1-PROTOCOL-DE..

it outlines what seems like a very simple protocol. Seems easy to implement from scratch. To that end, I set up two tcpser instances, two instance of VICE with CCGMS 11, and began a transfer, observing the logging output of TCPSER.

What Steve Punter describes should go like this:
SENDER
[dummy packet 1]---ACK---[filetype packet]---ACK---[First file packet]---ACK---[Second file packet]....
RECEIVER
----------------GOO---S/B-----------------GOO---S/B------------------GOO---S/B-- ------------------GOO...

Where dummy packet 1 would be just the two checksums, 8 for the "next block size", and a block number of 0000, filetype packet is much the same, but with the filetype as the payload and a larger "next block size"

But what I'm observing looks more like this:
SENDER
--------------------------------------------------0x91---ACK---[odd data block]---ACK---SYN---S/B---ACK---[data block 1]
RECEIVER
GOO(over and over again until the transfer starts)----GOO---S/B---------------GOO---S/B---SYN---GOO---S/B----

Where the odd data block has a next block size of 4, and a block number of 0xffff and appears to have the file type in it.

My next step is going to be to try multi-punter on the same setup, then try a few different terms and see if the peculiarities are specific to this implementation of punter on CCGMS 11.

Has anyone else dug into this, or have any insight into the how/why? Is there a comprehensive documentation of this protocol anywhere?
 
... 26 posts hidden. Click here to view all posts....
 
2015-02-25 23:01
Frantic

Registered: Mar 2003
Posts: 1628
@Magervalp: Looking forward to an updated version of CGTerm once Six has worked this out completely. ;)
2015-02-26 23:34
Six

Registered: Apr 2002
Posts: 287
Note: There are numerous variations on this protocol. This post covers the version used in CCGMS 11.0 only. It has not thus-far been tested on other versions.

RECEIVER: GOO
SENDER: ACK
RECEIVER: S/B
SENDER: [filetype packet]
RECEIVER: GOO
SENDER: ACK
RECEIVER: S/B
SENDER: SYN
RECEIVER: SYN
SENDER: S/B
RECEIVER: GOO
SENDER: ACK
RECEIVER: S/B
SENDER: [dummy packet]
RECEIVER: GOO
SENDER: ACK

Loop<--------------------------------- 
RECEIVER: S/B                        |
SENDER: [file data packet]           |
RECEIVER: GOO                        |
SENDER: ACK                          |
-------------------------------------|

RECEIVER: S/B
SENDER: [final data packet]
RECEIVER: GOO
SENDER: ACK

RECEIVER: S/B
SENDER: SYN
RECEIVER:SYN
SENDER: S/B

[filetype packet]
Normal packet, one-byte payload, 1 for prg, 2 for seq, next block size of 4, block number of 0xffff

[dummy packet]
Normal packet, no payload, next block size as needed for the sent file, block number of 0x0000

[final packet]
Normal packet, next block size of 0x00, and upper nybble of block number set to 0xff

[file data packet, Normal packet]
bytes 00, 01 : Additive checksum LO/HI
bytes 02, 03 : CRC Checksum LO/HI
byte  04     : Next block size
bytes 05, 06 : block number LO/HI

Checksums are calculated on all bytes from the Next Block Size forward to the end of the packet.  Assuming TempPacket is your byte array of packet data and AdditiveChecksum and CLCChecksum are ushorts, checksum can be generated as follows (thanks to MagerValp for the original on this)

public void Generate_Checksum()
{
    AdditiveChecksum = 0;
    CLCChecksum = 0;
    for (int i = 4; i < TempPacket.Length; i++)
    {
       AdditiveChecksum += TempPacket[i];
       CLCChecksum ^= TempPacket[i];
       CLCChecksum = 
(ushort)((CLCChecksum << 1) | (CLCChecksum >> 15));
     }
}

Validating received packets:
Received packets should pass a checksum test, and be the proper length specified in the preceeding packet.

Handshaking considerations:
You may receive handshakes out-of-sync (KCA, CAK, etc...), your handshaking routines should be able to deal with this.

2015-02-26 23:37
Six

Registered: Apr 2002
Posts: 287
For receivers, dealing with bad packets.

RECEIVER: BAD<---------------|
SENDER: ACK                  |
RECEIVER: S/B                |
SENDER: RESENDS SAME PACKET  |
RECEIVER: (BAD OR GOO)-------|

2015-02-27 11:27
Tao

Registered: Aug 2002
Posts: 115
@Six: I'd be happy if you'd have a look at the C*Base punter implementation; I have a slight recollection of something being wrong with it...
2015-02-27 21:46
Six

Registered: Apr 2002
Posts: 287
Aye, I'm moving on to that next. I'll have to set up C*base on VICE for sniffing.

BTW, talked to Steve Punter himself about this on facebook. (VERY nice guy, btw, and he cleared some things up about the various versions.) He dispelled my suspicion that he was "high as fuck" when he wrote that document... His initial version did, in fact, work as he described. People took that initial version and made a number of variations on it, some of which were incompatible with it and eachother. Eventually a sort-of-standard seems to have been reached. Multi-punter, for instance, he had nothing to do with.

This is both good and bad for my research. It's good, because it means there is a lot of ground and forensics work to do yet, and that will be interesting, but bad because this means I have to root through every old term and BBS I can find so I can work out the various protocol variations in order to build a gold-standard. Looks like this will be a longer project than I originally assumed.
2015-03-01 03:45
Six

Registered: Apr 2002
Posts: 287
Delving into multi-punter. It seems to be the same for each file transfer, but starts in an odd way from the sender. Each file is preceded by the following exchange:

SENDER: 0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09, FILENAME,P,0x0d
SENDER:GOO
RECEIVER: GOO
SENDER: ACK [and so on as a normal xfer.]

After all files are transferred:

SENDER: 0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09,0x09, 0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04,0x04, 0x0d

No response from the receiver after this.
2015-03-02 13:54
Tao

Registered: Aug 2002
Posts: 115
Quoting Six
Aye, I'm moving on to that next. I'll have to set up C*base on VICE for sniffing.


Well, the source code is available, which might help ever so slightly. I did, however, not write the code, so if I were you I wouldn't bet on getting sane answers about the code :P
2015-03-02 23:10
Six

Registered: Apr 2002
Posts: 287
Do you recall who did write that version?
2015-03-03 08:35
Tao

Registered: Aug 2002
Posts: 115
Quoting Six
Do you recall who did write that version?


Well, it's most probably written by Gunther Birznieks. Possibly by Jerome P. Yoner.

I've made some minor modifications, but that's all.
2015-03-04 19:48
MagerValp

Registered: Dec 2001
Posts: 1059
Wow that is one seriously fucked up protocol. I don't think I could come up with something slower and more error prone if I tried.
Previous - 1 | 2 | 3 | 4 - Next
RefreshSubscribe to this thread:

You need to be logged in to post in the forum.

Search the forum:
Search   for   in  
All times are CET.
Search CSDb
Advanced
Users Online
Guests online: 124
Top Demos
1 Next Level  (9.8)
2 Mojo  (9.7)
3 Coma Light 13  (9.7)
4 Edge of Disgrace  (9.6)
5 Comaland 100%  (9.6)
6 No Bounds  (9.6)
7 Uncensored  (9.6)
8 Wonderland XIV  (9.6)
9 Memento Mori  (9.6)
10 Bromance  (9.5)
Top onefile Demos
1 It's More Fun to Com..  (9.7)
2 Party Elk 2  (9.7)
3 Cubic Dream  (9.6)
4 Copper Booze  (9.5)
5 TRSAC, Gabber & Pebe..  (9.5)
6 Rainbow Connection  (9.5)
7 Dawnfall V1.1  (9.5)
8 Quadrants  (9.5)
9 Daah, Those Acid Pil..  (9.5)
10 Birth of a Flower  (9.5)
Top Groups
1 Nostalgia  (9.3)
2 Oxyron  (9.3)
3 Booze Design  (9.3)
4 Censor Design  (9.3)
5 Crest  (9.3)
Top Fullscreen Graphicians
1 Carrion  (9.8)
2 Joe  (9.8)
3 Duce  (9.8)
4 Mirage  (9.7)
5 Facet  (9.7)

Home - Disclaimer
Copyright © No Name 2001-2024
Page generated in: 0.044 sec.