2015-07-27 00:35:07 +00:00
|
|
|
//
|
|
|
|
// This file is part of Dire Wolf, an amateur radio packet TNC.
|
|
|
|
//
|
2015-07-27 01:05:48 +00:00
|
|
|
// Copyright (C) 2013, 2014 John Langner, WB2OSZ
|
2015-07-27 00:35:07 +00:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 2 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Module: kiss_frame.c
|
|
|
|
*
|
|
|
|
* Purpose: Common code used by Serial port and network versions of KISS protocol.
|
|
|
|
*
|
|
|
|
* Description: The KISS TNS protocol is described in http://www.ka9q.net/papers/kiss.html
|
|
|
|
*
|
|
|
|
* Briefly, a frame is composed of
|
|
|
|
*
|
|
|
|
* * FEND (0xC0)
|
|
|
|
* * Contents - with special escape sequences so a 0xc0
|
|
|
|
* byte in the data is not taken as end of frame.
|
|
|
|
* as part of the data.
|
|
|
|
* * FEND
|
|
|
|
*
|
|
|
|
* The first byte of the frame contains:
|
|
|
|
*
|
|
|
|
* * port number in upper nybble.
|
|
|
|
* * command in lower nybble.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Commands from application recognized:
|
|
|
|
*
|
|
|
|
* 0 Data Frame AX.25 frame in raw format.
|
|
|
|
*
|
|
|
|
* 1 TXDELAY See explanation in xmit.c.
|
|
|
|
*
|
|
|
|
* 2 Persistence " "
|
|
|
|
*
|
|
|
|
* 3 SlotTime " "
|
|
|
|
*
|
|
|
|
* 4 TXtail " "
|
|
|
|
* Spec says it is obsolete but Xastir
|
|
|
|
* sends it and we respect it.
|
|
|
|
*
|
|
|
|
* 5 FullDuplex Ignored. Always full duplex.
|
|
|
|
*
|
|
|
|
* 6 SetHardware TNC specific. Ignored.
|
|
|
|
*
|
|
|
|
* FF Return Exit KISS mode. Ignored.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Messages sent to client application:
|
|
|
|
*
|
|
|
|
* 0 Data Frame Received AX.25 frame in raw format.
|
|
|
|
*
|
|
|
|
*---------------------------------------------------------------*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "direwolf.h"
|
|
|
|
#include "ax25_pad.h"
|
|
|
|
#include "textcolor.h"
|
|
|
|
#include "kiss_frame.h"
|
|
|
|
#include "tq.h"
|
|
|
|
#include "xmit.h"
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
/* In server.c. Should probably move to some misc. function file. */
|
|
|
|
void hex_dump (unsigned char *p, int len);
|
|
|
|
|
|
|
|
|
|
|
|
static void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug);
|
|
|
|
|
|
|
|
|
|
|
|
#if TEST
|
|
|
|
|
|
|
|
#define dw_printf printf
|
|
|
|
|
|
|
|
void text_color_set (dw_color_t c)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Name: kiss_encapsulate
|
|
|
|
*
|
|
|
|
* Purpose: Ecapsulate a frame into KISS format.
|
|
|
|
*
|
|
|
|
* Inputs: in - Address of input block.
|
|
|
|
* First byte is the "type indicator" with type and
|
|
|
|
* channel but we don't care about that here.
|
|
|
|
* Note that this is "binary" data and can contain
|
|
|
|
* nul (0x00) values. Don't treat it like a text string!
|
|
|
|
*
|
|
|
|
* ilen - Number of bytes in input block.
|
|
|
|
*
|
|
|
|
* Outputs: out - Address where to place the KISS encoded representation.
|
|
|
|
* The sequence is:
|
|
|
|
* FEND - Magic frame separator.
|
|
|
|
* data - with certain byte values replaced so
|
|
|
|
* FEND will never occur here.
|
|
|
|
* FEND - Magic frame separator.
|
|
|
|
*
|
|
|
|
* Returns: Number of bytes in the output.
|
|
|
|
* Absolute max length will be twice input plus 2.
|
|
|
|
*
|
|
|
|
*-----------------------------------------------------------------*/
|
|
|
|
|
|
|
|
int kiss_encapsulate (unsigned char *in, int ilen, unsigned char *out)
|
|
|
|
{
|
|
|
|
int olen;
|
|
|
|
int j;
|
|
|
|
|
|
|
|
olen = 0;
|
|
|
|
out[olen++] = FEND;
|
|
|
|
for (j=0; j<ilen; j++) {
|
|
|
|
|
|
|
|
if (in[j] == FEND) {
|
|
|
|
out[olen++] = FESC;
|
|
|
|
out[olen++] = TFEND;
|
|
|
|
}
|
|
|
|
else if (in[j] == FESC) {
|
|
|
|
out[olen++] = FESC;
|
|
|
|
out[olen++] = TFESC;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
out[olen++] = in[j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out[olen++] = FEND;
|
|
|
|
|
|
|
|
return (olen);
|
|
|
|
|
|
|
|
} /* end kiss_encapsulate */
|
|
|
|
|
2015-07-27 00:35:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------
|
|
|
|
*
|
2015-07-27 01:05:48 +00:00
|
|
|
* Name: kiss_unwrap
|
|
|
|
*
|
|
|
|
* Purpose: Extract original data from a KISS frame.
|
|
|
|
*
|
|
|
|
* Inputs: in - Address of the received the KISS encoded representation.
|
|
|
|
* The sequence is:
|
|
|
|
* FEND - Magic frame separator, optional.
|
|
|
|
* data - with certain byte values replaced so
|
|
|
|
* FEND will never occur here.
|
|
|
|
* FEND - Magic frame separator.
|
|
|
|
* ilen - Number of bytes in input block.
|
|
|
|
*
|
|
|
|
* Inputs: out - Where to put the resulting frame without
|
|
|
|
* the escapes or FEND.
|
|
|
|
* First byte is the "type indicator" with type and
|
|
|
|
* channel but we don't care about that here.
|
|
|
|
* Note that this is "binary" data and can contain
|
|
|
|
* nul (0x00) values. Don't treat it like a text string!
|
2015-07-27 00:35:07 +00:00
|
|
|
*
|
2015-07-27 01:05:48 +00:00
|
|
|
* Returns: Number of bytes in the output.
|
|
|
|
*
|
|
|
|
*-----------------------------------------------------------------*/
|
|
|
|
|
|
|
|
static int kiss_unwrap (unsigned char *in, int ilen, unsigned char *out)
|
|
|
|
{
|
|
|
|
int olen;
|
|
|
|
int j;
|
|
|
|
int escaped_mode;
|
|
|
|
|
|
|
|
olen = 0;
|
|
|
|
escaped_mode = 0;
|
|
|
|
|
|
|
|
if (ilen < 2) {
|
|
|
|
/* Need at least the "type indicator" byte and FEND. */
|
|
|
|
/* Probably more. */
|
|
|
|
text_color_set(DW_COLOR_ERROR);
|
|
|
|
dw_printf ("KISS message less than minimum length.\n");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in[ilen-1] == FEND) {
|
|
|
|
ilen--; /* Don't try to process below. */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
text_color_set(DW_COLOR_ERROR);
|
|
|
|
dw_printf ("KISS frame should end with FEND.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (in[0] == FEND) {
|
|
|
|
j = 1; /* skip over optional leading FEND. */
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
j = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( ; j<ilen; j++) {
|
|
|
|
|
|
|
|
if (in[j] == FEND) {
|
|
|
|
text_color_set(DW_COLOR_ERROR);
|
|
|
|
dw_printf ("KISS frame should not have FEND in the middle.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (escaped_mode) {
|
|
|
|
|
|
|
|
if (in[j] == TFESC) {
|
|
|
|
out[olen++] = FESC;
|
|
|
|
}
|
|
|
|
else if (in[j] == TFEND) {
|
|
|
|
out[olen++] = FEND;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
text_color_set(DW_COLOR_ERROR);
|
|
|
|
dw_printf ("KISS protocol error. Found 0x%02x after FESC.\n", in[j]);
|
|
|
|
}
|
|
|
|
escaped_mode = 0;
|
|
|
|
}
|
|
|
|
else if (in[j] == FESC) {
|
|
|
|
escaped_mode = 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
out[olen++] = in[j];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return (olen);
|
|
|
|
|
|
|
|
} /* end kiss_unwrap */
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef TEST
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Name: kiss_rec_byte
|
|
|
|
*
|
|
|
|
* Purpose: Process one byte from a KISS client app.
|
2015-07-27 00:35:07 +00:00
|
|
|
*
|
|
|
|
* Inputs: kf - Current state of building a frame.
|
|
|
|
* ch - A byte from the input stream.
|
|
|
|
* debug - Activates debug output.
|
|
|
|
* sendfun - Function to send something to the client application.
|
|
|
|
*
|
|
|
|
* Outputs: kf - Current state is updated.
|
|
|
|
*
|
|
|
|
* Returns: TRUE when a complete frame is ready for processing.
|
2015-07-27 01:05:48 +00:00
|
|
|
// TODO: void later
|
2015-07-27 00:35:07 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
*-----------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Application might send some commands to put TNC into KISS mode.
|
|
|
|
* For example, APRSIS32 sends something like:
|
|
|
|
*
|
|
|
|
* <0x0d>
|
|
|
|
* <0x0d>
|
|
|
|
* XFLOW OFF<0x0d>
|
|
|
|
* FULLDUP OFF<0x0d>
|
|
|
|
* KISS ON<0x0d>
|
|
|
|
* RESTART<0x0d>
|
|
|
|
* <0x03><0x03><0x03>
|
|
|
|
* TC 1<0x0d>
|
|
|
|
* TN 2,0<0x0d><0x0d><0x0d>
|
|
|
|
* XFLOW OFF<0x0d>
|
|
|
|
* FULLDUP OFF<0x0d>
|
|
|
|
* KISS ON<0x0d>
|
|
|
|
* RESTART<0x0d>
|
|
|
|
*
|
|
|
|
* This keeps repeating over and over and over and over again if
|
|
|
|
* it doesn't get any sort of response.
|
|
|
|
*
|
|
|
|
* Let's try to keep it happy by sending back a command prompt.
|
|
|
|
*/
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void kiss_rec_byte (kiss_frame_t *kf, unsigned char ch, int debug, void (*sendfun)(int,unsigned char*,int))
|
2015-07-27 00:35:07 +00:00
|
|
|
{
|
2015-07-27 01:05:48 +00:00
|
|
|
|
|
|
|
//printf ("kiss_frame ( %c %02x ) \n", ch, ch);
|
2015-07-27 00:35:07 +00:00
|
|
|
|
|
|
|
switch (kf->state) {
|
|
|
|
|
|
|
|
case KS_SEARCHING: /* Searching for starting FEND. */
|
2015-07-27 01:05:48 +00:00
|
|
|
default:
|
2015-07-27 00:35:07 +00:00
|
|
|
|
|
|
|
if (ch == FEND) {
|
|
|
|
|
|
|
|
/* Start of frame. But first print any collected noise for debugging. */
|
|
|
|
|
|
|
|
if (kf->noise_len > 0) {
|
|
|
|
if (debug) {
|
|
|
|
kiss_debug_print (FROM_CLIENT, "Rejected Noise", kf->noise, kf->noise_len);
|
|
|
|
}
|
|
|
|
kf->noise_len = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
kf->kiss_len = 0;
|
2015-07-27 01:05:48 +00:00
|
|
|
kf->kiss_msg[kf->kiss_len++] = ch;
|
2015-07-27 00:35:07 +00:00
|
|
|
kf->state = KS_COLLECTING;
|
2015-07-27 01:05:48 +00:00
|
|
|
return;
|
2015-07-27 00:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Noise to be rejected. */
|
|
|
|
|
|
|
|
if (kf->noise_len < MAX_NOISE_LEN) {
|
|
|
|
kf->noise[kf->noise_len++] = ch;
|
|
|
|
}
|
|
|
|
if (ch == '\r') {
|
|
|
|
if (debug) {
|
|
|
|
kiss_debug_print (FROM_CLIENT, "Rejected Noise", kf->noise, kf->noise_len);
|
|
|
|
kf->noise[kf->noise_len] = '\0';
|
|
|
|
}
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
/* Try to appease client app by sending something back. */
|
2015-07-27 00:35:07 +00:00
|
|
|
if (strcasecmp("restart\r", (char*)(kf->noise)) == 0 ||
|
|
|
|
strcasecmp("reset\r", (char*)(kf->noise)) == 0) {
|
|
|
|
(*sendfun) (0, (unsigned char *)"\xc0\xc0", -1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
(*sendfun) (0, (unsigned char *)"\r\ncmd:", -1);
|
|
|
|
}
|
|
|
|
kf->noise_len = 0;
|
|
|
|
}
|
2015-07-27 01:05:48 +00:00
|
|
|
return;
|
|
|
|
break;
|
2015-07-27 00:35:07 +00:00
|
|
|
|
|
|
|
case KS_COLLECTING: /* Frame collection in progress. */
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
|
2015-07-27 00:35:07 +00:00
|
|
|
if (ch == FEND) {
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
unsigned char unwrapped[AX25_MAX_PACKET_LEN];
|
|
|
|
int ulen;
|
|
|
|
|
2015-07-27 00:35:07 +00:00
|
|
|
/* End of frame. */
|
|
|
|
|
|
|
|
if (kf->kiss_len == 0) {
|
2015-07-27 01:05:48 +00:00
|
|
|
/* Empty frame. Starting a new one. */
|
|
|
|
kf->kiss_msg[kf->kiss_len++] = ch;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (kf->kiss_len == 1 && kf->kiss_msg[0] == FEND) {
|
2015-07-27 00:35:07 +00:00
|
|
|
/* Empty frame. Just go on collecting. */
|
2015-07-27 01:05:48 +00:00
|
|
|
return;
|
2015-07-27 00:35:07 +00:00
|
|
|
}
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
kf->kiss_msg[kf->kiss_len++] = ch;
|
2015-07-27 00:35:07 +00:00
|
|
|
if (debug) {
|
2015-07-27 01:05:48 +00:00
|
|
|
/* As received over the wire from client app. */
|
2015-07-27 00:35:07 +00:00
|
|
|
kiss_debug_print (FROM_CLIENT, NULL, kf->kiss_msg, kf->kiss_len);
|
|
|
|
}
|
2015-07-27 01:05:48 +00:00
|
|
|
|
|
|
|
ulen = kiss_unwrap (kf->kiss_msg, kf->kiss_len, unwrapped);
|
|
|
|
|
|
|
|
if (debug >= 2) {
|
|
|
|
/* Append CRC to this and it goes out over the radio. */
|
|
|
|
text_color_set(DW_COLOR_DEBUG);
|
|
|
|
dw_printf ("\n");
|
|
|
|
dw_printf ("Packet content after removing KISS framing and any escapes:\n");
|
|
|
|
/* Don't include the "type" indicator. */
|
|
|
|
/* It contains the radio channel and type should always be 0 here. */
|
|
|
|
hex_dump (unwrapped+1, ulen-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
kiss_process_msg (unwrapped, ulen, debug);
|
|
|
|
|
2015-07-27 00:35:07 +00:00
|
|
|
kf->state = KS_SEARCHING;
|
2015-07-27 01:05:48 +00:00
|
|
|
return;
|
2015-07-27 00:35:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (kf->kiss_len < MAX_KISS_LEN) {
|
|
|
|
kf->kiss_msg[kf->kiss_len++] = ch;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
text_color_set(DW_COLOR_ERROR);
|
|
|
|
dw_printf ("KISS message exceeded maximum length.\n");
|
|
|
|
}
|
2015-07-27 01:05:48 +00:00
|
|
|
return;
|
|
|
|
break;
|
2015-07-27 00:35:07 +00:00
|
|
|
}
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
return; /* unreachable but suppress compiler warning. */
|
2015-07-27 00:35:07 +00:00
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
} /* end kiss_rec_byte */
|
2015-07-27 00:35:07 +00:00
|
|
|
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
|
|
|
|
|
2015-07-27 00:35:07 +00:00
|
|
|
/*-------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Name: kiss_process_msg
|
|
|
|
*
|
|
|
|
* Purpose: Process a message from the KISS client.
|
|
|
|
*
|
2015-07-27 01:05:48 +00:00
|
|
|
* Inputs: kiss_msg - Kiss frame with FEND and escapes removed.
|
|
|
|
* The first byte contains channel and command.
|
|
|
|
*
|
|
|
|
* kiss_len - Number of bytes including the command.
|
2015-07-27 00:35:07 +00:00
|
|
|
*
|
|
|
|
* debug - Debug option is selected.
|
|
|
|
*
|
|
|
|
*-----------------------------------------------------------------*/
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
static void kiss_process_msg (unsigned char *kiss_msg, int kiss_len, int debug)
|
2015-07-27 00:35:07 +00:00
|
|
|
{
|
|
|
|
int port;
|
|
|
|
int cmd;
|
|
|
|
packet_t pp;
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
port = (kiss_msg[0] >> 4) & 0xf;
|
|
|
|
cmd = kiss_msg[0] & 0xf;
|
2015-07-27 00:35:07 +00:00
|
|
|
|
|
|
|
switch (cmd)
|
|
|
|
{
|
|
|
|
case 0: /* Data Frame */
|
|
|
|
|
|
|
|
/* Special hack - Discard apparently bad data from Linux AX25. */
|
|
|
|
|
|
|
|
if ((port == 2 || port == 8) &&
|
2015-07-27 01:05:48 +00:00
|
|
|
kiss_msg[1] == 'Q' << 1 &&
|
|
|
|
kiss_msg[2] == 'S' << 1 &&
|
|
|
|
kiss_msg[3] == 'T' << 1 &&
|
|
|
|
kiss_msg[4] == ' ' << 1 &&
|
|
|
|
kiss_msg[15] == 3 &&
|
|
|
|
kiss_msg[16] == 0xcd) {
|
2015-07-27 00:35:07 +00:00
|
|
|
|
|
|
|
if (debug) {
|
|
|
|
text_color_set(DW_COLOR_ERROR);
|
|
|
|
dw_printf ("Special case - Drop packets which appear to be in error.\n");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2015-07-27 01:05:48 +00:00
|
|
|
|
|
|
|
// Should really check if single or dual channel mode.
|
|
|
|
// Do more thoroughly in 1.2.
|
|
|
|
|
|
|
|
if (port != 0 && port != 1) {
|
|
|
|
text_color_set(DW_COLOR_ERROR);
|
|
|
|
dw_printf ("Invalid channel %d from KISS client app.\n", port);
|
|
|
|
return;
|
|
|
|
}
|
2015-07-27 00:35:07 +00:00
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
pp = ax25_from_frame (kiss_msg+1, kiss_len-1, -1);
|
2015-07-27 00:35:07 +00:00
|
|
|
if (pp == NULL) {
|
|
|
|
text_color_set(DW_COLOR_ERROR);
|
|
|
|
dw_printf ("ERROR - Invalid KISS data frame from client app.\n");
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
/* How can we determine if it is an original or repeated message? */
|
|
|
|
/* If there is at least one digipeater in the frame, AND */
|
|
|
|
/* that digipeater has been used, it should go out quickly thru */
|
|
|
|
/* the high priority queue. */
|
|
|
|
/* Otherwise, it is an original for the low priority queue. */
|
2015-07-27 00:35:07 +00:00
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
if (ax25_get_num_repeaters(pp) >= 1 &&
|
|
|
|
ax25_get_h(pp,AX25_REPEATER_1)) {
|
|
|
|
tq_append (port, TQ_PRIO_0_HI, pp);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
tq_append (port, TQ_PRIO_1_LO, pp);
|
|
|
|
}
|
2015-07-27 00:35:07 +00:00
|
|
|
}
|
2015-07-27 01:05:48 +00:00
|
|
|
break;
|
2015-07-27 00:35:07 +00:00
|
|
|
|
|
|
|
case 1: /* TXDELAY */
|
|
|
|
|
|
|
|
text_color_set(DW_COLOR_INFO);
|
2015-07-27 01:05:48 +00:00
|
|
|
dw_printf ("KISS protocol set TXDELAY = %d, port %d\n", kiss_msg[1], port);
|
|
|
|
xmit_set_txdelay (port, kiss_msg[1]);
|
2015-07-27 00:35:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: /* Persistence */
|
|
|
|
|
|
|
|
text_color_set(DW_COLOR_INFO);
|
2015-07-27 01:05:48 +00:00
|
|
|
dw_printf ("KISS protocol set Persistence = %d, port %d\n", kiss_msg[1], port);
|
|
|
|
xmit_set_persist (port, kiss_msg[1]);
|
2015-07-27 00:35:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 3: /* SlotTime */
|
|
|
|
|
|
|
|
text_color_set(DW_COLOR_INFO);
|
2015-07-27 01:05:48 +00:00
|
|
|
dw_printf ("KISS protocol set SlotTime = %d, port %d\n", kiss_msg[1], port);
|
|
|
|
xmit_set_slottime (port, kiss_msg[1]);
|
2015-07-27 00:35:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 4: /* TXtail */
|
|
|
|
|
|
|
|
text_color_set(DW_COLOR_INFO);
|
2015-07-27 01:05:48 +00:00
|
|
|
dw_printf ("KISS protocol set TXtail = %d, port %d\n", kiss_msg[1], port);
|
|
|
|
xmit_set_txtail (port, kiss_msg[1]);
|
2015-07-27 00:35:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 5: /* FullDuplex */
|
|
|
|
|
|
|
|
text_color_set(DW_COLOR_INFO);
|
2015-07-27 01:05:48 +00:00
|
|
|
dw_printf ("KISS protocol set FullDuplex = %d, port %d\n", kiss_msg[1], port);
|
2015-07-27 00:35:07 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 6: /* TNC specific */
|
|
|
|
|
|
|
|
text_color_set(DW_COLOR_INFO);
|
|
|
|
dw_printf ("KISS protocol set hardware - ignored.\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 15: /* End KISS mode, port should be 15. */
|
|
|
|
/* Ignore it. */
|
|
|
|
text_color_set(DW_COLOR_INFO);
|
|
|
|
dw_printf ("KISS protocol end KISS mode\n");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
text_color_set(DW_COLOR_DEBUG);
|
|
|
|
dw_printf ("KISS Invalid command %d\n", cmd);
|
2015-07-27 01:05:48 +00:00
|
|
|
kiss_debug_print (FROM_CLIENT, NULL, kiss_msg, kiss_len);
|
2015-07-27 00:35:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* end kiss_process_msg */
|
|
|
|
|
|
|
|
|
|
|
|
/*-------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Name: kiss_debug_print
|
|
|
|
*
|
|
|
|
* Purpose: Print message to/from client for debugging.
|
|
|
|
*
|
|
|
|
* Inputs: fromto - Direction of message.
|
|
|
|
* special - Comment if not a KISS frame.
|
|
|
|
* pmsg - Address of the message block.
|
|
|
|
* msg_len - Length of the message.
|
|
|
|
*
|
|
|
|
*--------------------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
|
|
|
void kiss_debug_print (fromto_t fromto, char *special, unsigned char *pmsg, int msg_len)
|
|
|
|
{
|
|
|
|
const char *direction [2] = { "from", "to" };
|
|
|
|
const char *prefix [2] = { "<<<", ">>>" };
|
|
|
|
const char *function[16] = {
|
|
|
|
"Data frame", "TXDELAY", "P", "SlotTime",
|
|
|
|
"TXtail", "FullDuplex", "SetHardware", "Invalid 7",
|
|
|
|
"Invalid 8", "Invalid 9", "Invalid 10", "Invalid 11",
|
|
|
|
"Invalid 12", "Invalid 13", "Invalid 14", "Return" };
|
|
|
|
|
|
|
|
|
|
|
|
text_color_set(DW_COLOR_DEBUG);
|
|
|
|
dw_printf ("\n");
|
|
|
|
|
|
|
|
if (special == NULL) {
|
2015-07-27 01:05:48 +00:00
|
|
|
unsigned char *p; /* to skip over FEND if present. */
|
|
|
|
|
|
|
|
p = pmsg;
|
|
|
|
if (*p == FEND) p++;
|
|
|
|
|
2015-07-27 00:35:07 +00:00
|
|
|
dw_printf ("%s %s %s KISS client application, port %d, total length = %d\n",
|
2015-07-27 01:05:48 +00:00
|
|
|
prefix[(int)fromto], function[p[0] & 0xf], direction[(int)fromto],
|
|
|
|
(p[0] >> 4) & 0xf, msg_len);
|
2015-07-27 00:35:07 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
dw_printf ("%s %s %s KISS client application, total length = %d\n",
|
|
|
|
prefix[(int)fromto], special, direction[(int)fromto],
|
|
|
|
msg_len);
|
|
|
|
}
|
2015-07-27 01:05:48 +00:00
|
|
|
hex_dump (pmsg, msg_len);
|
2015-07-27 00:35:07 +00:00
|
|
|
|
|
|
|
} /* end kiss_debug_print */
|
|
|
|
|
|
|
|
|
2015-07-27 01:05:48 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/* Quick unit test for encapsulate & unwrap */
|
|
|
|
|
|
|
|
// $ gcc -DTEST kiss_frame.c ; ./a
|
|
|
|
// Quick KISS test passed OK.
|
|
|
|
|
|
|
|
|
|
|
|
#if TEST
|
|
|
|
|
|
|
|
|
|
|
|
main ()
|
|
|
|
{
|
|
|
|
unsigned char din[512];
|
|
|
|
unsigned char kissed[520];
|
|
|
|
unsigned char dout[520];
|
|
|
|
int klen;
|
|
|
|
int dlen;
|
|
|
|
int k;
|
|
|
|
|
|
|
|
for (k = 0; k < 512; k++) {
|
|
|
|
if (k < 256) {
|
|
|
|
din[k] = k;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
din[k] = 511 - k;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
klen = kiss_encapsulate (din, 512, kissed);
|
|
|
|
assert (klen == 512 + 6);
|
|
|
|
|
|
|
|
dlen = kiss_unwrap (kissed, klen, dout);
|
|
|
|
assert (dlen == 512);
|
|
|
|
assert (memcmp(din, dout, 512) == 0);
|
|
|
|
|
|
|
|
dlen = kiss_unwrap (kissed+1, klen-1, dout);
|
|
|
|
assert (dlen == 512);
|
|
|
|
assert (memcmp(din, dout, 512) == 0);
|
|
|
|
|
|
|
|
printf ("Quick KISS test passed OK.\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-07-27 00:35:07 +00:00
|
|
|
/* end kiss_frame.c */
|