-
Notifications
You must be signed in to change notification settings - Fork 307
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Invalid Transmit Channel #42
Comments
Hello David, What version of Direwolf are you using here? Did you compile it yourself or did someone send you the binaries? Can you cite the commands you're using to start up Direwolf and connect it to Linux's AX25 stack? --David |
Running ver 1.2. Compiled it myself following tutorial here: https://andrewmemory.wordpress.com/2015/03/22/setting-up-direwolfxastir-on-a-raspberry-pi/ I'm running is with the KISS port inside an lxterminal Thanks, |
Hello David, |
Let’s look at the KISS data from the client application. The first byte is a channel number in the upper 4 bits and a command in the lower 4 bits. In the first case, “80” means transmit on channel 8. In the second case, “20” means transmit on channel 2. Dire Wolf appears to be acting correctly. The application is asking for transmission on channels 8 and 2. I ran into something like this before. Look in source file kiss_frame.c, around line 471, for the comment about “special hack.” I think there is a bug in the AX.25 for Linux code where it tries to transmit on channels 2 and 8. I put in a special hack to discard the one case I ran into. |
I came across this the other day with Xastir, and took a quick look. The problem is fixable without the kiss_frame.c hack, which doesn't help with Xastir anyway. I had a little while to write it up while I wait for the oven. Merry Christmas! WorkaroundAfter the kissattach command, put the interface into CRC mode "none" with a command like this:
AnalysisThe source of this behaviour is the kernel's KISS implementation: https://elixir.bootlin.com/linux/v4.9/source/drivers/net/hamradio/mkiss.c#L489 It defaults to starting in state CRC_MODE_SMACK_TEST and ending up in state CRC_NONE after the first two packets, which have their framing byte modified by this code in the process. It looks to me like deliberate behaviour on the kernel's part. Setting the CRC mode explicitly before sending any packets stops this state machine from running. Is this a bug? I don't know - that's up to you! Maybe it would make sense for Direwolf to set the CRC mode itself, or to expect this behaviour and ignore these flags on the first packets received from the Linux pty. This workaround seems sound to me, though, so perhaps this is just a documentation issue. |
Direwolf works correctly. |
Another way of doing this is pre-loading the "kiss" kernel module with CRC disabled: sudo /sbin/modprobe -q mkiss crc_force=1 |
i would say it's a bug if it uses 'production' packets the user sent for some silly protocol negotiation test. yes. also ran into it and yes the kiss control byte is modified by the kernel itself in the first 2 packets sent over a freshy created pty/tty (indeed to $80 on the first and $20 on the second packet) with line dicipline N_KISS. if it want's some settings for some options just add an ioctl for it. not entirely sure how a tnc would ever return an error to this 'test' anyway seing that tnc's are not really supposed to send any data back on their own behalf. ever. think i'll just 'fix' it in our kiss-tnc-attach by forcing the channel to 0. but pty's are not guaranteed to return one whole packet per read() (neither is tcp, and least of all actual rs232) so then we'd have to move the kiss frame collection and parsing to the attacher too (although so far i haven't seen a single read() that wans't one whole packet... the thing still is in non-blocking mode with a raw pty and on all those other million packets but the first 2 it'd cause additional cpu cycles. ;) better just fix the kernel. (or just hook your kiss-tcp attacher to a tap+bpq device instead and encode/decode kiss in userspace (problem there is that you can't find the corresponding bpq device name without searching through that proc file. it lacks an ioctl. you also can't change the encapsulation on the tap device to arphrd_ax25 directly. well you can. but it'll bug on 7 byte hwaddrs... tap thinks the whole world is ethernet. ;) |
socket(AF_PACKET, SOCK_PACKET, 512) = 3 hmm. that seems to be the 'operational part' of 'kissparms -c 1 -p ax0' .. let's see what the 'nicely written form' in it's source code is and IF it actually works ;) can't quite see what sending a raw packet with $85 $01 payload to 'ax0' (the old PF_PACKET,SOCK_PACKET,512 has sockaddr_pkt instead lf sockaddr_ll indeed (basically just the asciiz device name (and shorter than IFNAMSIZ at that - it's old for a reason ;) anyway if kissparms can do it then so can the actual program opening ax0 ;) |
There is a well documented work-around: After the kissattach command, put the interface into CRC mode "none" with a command like this: kissparms -c 1 -p radioIt would be great if the AX.25 for Linux maintainers would make this the default behavior. |
fixed in the same way kissparms does it. including the use of antique SOCK_PACKET https://github.com/cb3rob/CB3ROB-AX25-TOOLS-LINUX/blob/main/cb3rob-kiss-tcp-attach.c |
thing is we don't believe in those silly old axtools that require a seperate /etc/ax25/axports thing. and that includes kissparams :P plus it should indeed be the default setting. also the normal way of changing settings is by ioctl with an ifreq .. not by sending some raw bytes to a sniffer socket.. lol. also any and all documentation on anything is severely lacking. |
I am running Dire Wolf in Jessie on a RPi. Works great. I'm using it with packlink as well as simply connecting with axcall.
However, when it initially starts up, the first two transmit attempts result in "Invalid Transmit Channel" errors. The third transmit attempt always works and then all subsequent attempts work.
What am I doing wrong?
Thanks,
David
The text was updated successfully, but these errors were encountered: