2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
9 #include <linux/errno.h>
10 #include <linux/types.h>
11 #include <linux/socket.h>
13 #include <linux/kernel.h>
14 #include <linux/sched.h>
15 #include <linux/timer.h>
16 #include <linux/string.h>
17 #include <linux/sockios.h>
18 #include <linux/net.h>
20 #include <linux/inet.h>
21 #include <linux/netdevice.h>
22 #include <linux/skbuff.h>
24 #include <asm/uaccess.h>
25 #include <asm/system.h>
26 #include <linux/fcntl.h>
28 #include <linux/interrupt.h>
31 * The null address is defined as a callsign of all spaces with an
34 ax25_address null_ax25_address
= {{0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x00}};
37 * ax25 -> ascii conversion
39 char *ax2asc(ax25_address
*a
)
45 for (n
= 0, s
= buf
; n
< 6; n
++) {
46 c
= (a
->ax25_call
[n
] >> 1) & 0x7F;
48 if (c
!= ' ') *s
++ = c
;
53 if ((n
= ((a
->ax25_call
[6] >> 1) & 0x0F)) > 9) {
61 if (*buf
== '\0' || *buf
== '-')
69 * ascii -> ax25 conversion
71 ax25_address
*asc2ax(char *callsign
)
73 static ax25_address addr
;
77 for (s
= callsign
, n
= 0; n
< 6; n
++) {
78 if (*s
!= '\0' && *s
!= '-')
79 addr
.ax25_call
[n
] = *s
++;
81 addr
.ax25_call
[n
] = ' ';
82 addr
.ax25_call
[n
] <<= 1;
83 addr
.ax25_call
[n
] &= 0xFE;
87 addr
.ax25_call
[6] = 0x00;
91 addr
.ax25_call
[6] = *s
++ - '0';
94 addr
.ax25_call
[6] *= 10;
95 addr
.ax25_call
[6] += *s
++ - '0';
98 addr
.ax25_call
[6] <<= 1;
99 addr
.ax25_call
[6] &= 0x1E;
105 * Compare two ax.25 addresses
107 int ax25cmp(ax25_address
*a
, ax25_address
*b
)
112 if ((a
->ax25_call
[ct
] & 0xFE) != (b
->ax25_call
[ct
] & 0xFE)) /* Clean off repeater bits */
117 if ((a
->ax25_call
[ct
] & 0x1E) == (b
->ax25_call
[ct
] & 0x1E)) /* SSID without control bit */
120 return 2; /* Partial match */
124 * Compare two AX.25 digipeater paths.
126 int ax25digicmp(ax25_digi
*digi1
, ax25_digi
*digi2
)
130 if (digi1
->ndigi
!= digi2
->ndigi
)
133 if (digi1
->lastrepeat
!= digi2
->lastrepeat
)
136 for (i
= 0; i
< digi1
->ndigi
; i
++)
137 if (ax25cmp(&digi1
->calls
[i
], &digi2
->calls
[i
]) != 0)
144 * Given an AX.25 address pull of to, from, digi list, command/response and the start of data
147 unsigned char *ax25_addr_parse(unsigned char *buf
, int len
, ax25_address
*src
, ax25_address
*dest
, ax25_digi
*digi
, int *flags
, int *dama
)
151 if (len
< 14) return NULL
;
156 if (buf
[6] & AX25_CBIT
)
157 *flags
= AX25_COMMAND
;
158 if (buf
[13] & AX25_CBIT
)
159 *flags
= AX25_RESPONSE
;
163 *dama
= ~buf
[13] & AX25_DAMA_FLAG
;
167 memcpy(dest
, buf
+ 0, AX25_ADDR_LEN
);
169 memcpy(src
, buf
+ 7, AX25_ADDR_LEN
);
171 buf
+= 2 * AX25_ADDR_LEN
;
172 len
-= 2 * AX25_ADDR_LEN
;
174 digi
->lastrepeat
= -1;
177 while (!(buf
[-1] & AX25_EBIT
)) {
178 if (d
>= AX25_MAX_DIGIS
) return NULL
; /* Max of 6 digis */
179 if (len
< 7) return NULL
; /* Short packet */
181 memcpy(&digi
->calls
[d
], buf
, AX25_ADDR_LEN
);
184 if (buf
[6] & AX25_HBIT
) {
185 digi
->repeated
[d
] = 1;
186 digi
->lastrepeat
= d
;
188 digi
->repeated
[d
] = 0;
191 buf
+= AX25_ADDR_LEN
;
192 len
-= AX25_ADDR_LEN
;
200 * Assemble an AX.25 header from the bits
202 int ax25_addr_build(unsigned char *buf
, ax25_address
*src
, ax25_address
*dest
, ax25_digi
*d
, int flag
, int modulus
)
207 memcpy(buf
, dest
, AX25_ADDR_LEN
);
208 buf
[6] &= ~(AX25_EBIT
| AX25_CBIT
);
209 buf
[6] |= AX25_SSSID_SPARE
;
211 if (flag
== AX25_COMMAND
) buf
[6] |= AX25_CBIT
;
213 buf
+= AX25_ADDR_LEN
;
214 len
+= AX25_ADDR_LEN
;
216 memcpy(buf
, src
, AX25_ADDR_LEN
);
217 buf
[6] &= ~(AX25_EBIT
| AX25_CBIT
);
218 buf
[6] &= ~AX25_SSSID_SPARE
;
220 if (modulus
== AX25_MODULUS
)
221 buf
[6] |= AX25_SSSID_SPARE
;
223 buf
[6] |= AX25_ESSID_SPARE
;
225 if (flag
== AX25_RESPONSE
) buf
[6] |= AX25_CBIT
;
228 * Fast path the normal digiless path
230 if (d
== NULL
|| d
->ndigi
== 0) {
232 return 2 * AX25_ADDR_LEN
;
235 buf
+= AX25_ADDR_LEN
;
236 len
+= AX25_ADDR_LEN
;
238 while (ct
< d
->ndigi
) {
239 memcpy(buf
, &d
->calls
[ct
], AX25_ADDR_LEN
);
244 buf
[6] &= ~AX25_HBIT
;
246 buf
[6] &= ~AX25_EBIT
;
247 buf
[6] |= AX25_SSSID_SPARE
;
249 buf
+= AX25_ADDR_LEN
;
250 len
+= AX25_ADDR_LEN
;
254 buf
[-1] |= AX25_EBIT
;
259 int ax25_addr_size(ax25_digi
*dp
)
262 return 2 * AX25_ADDR_LEN
;
264 return AX25_ADDR_LEN
* (2 + dp
->ndigi
);
268 * Reverse Digipeat List. May not pass both parameters as same struct
270 void ax25_digi_invert(ax25_digi
*in
, ax25_digi
*out
)
274 out
->ndigi
= in
->ndigi
;
275 out
->lastrepeat
= in
->ndigi
- in
->lastrepeat
- 2;
277 /* Invert the digipeaters */
278 for (ct
= 0; ct
< in
->ndigi
; ct
++) {
279 out
->calls
[ct
] = in
->calls
[in
->ndigi
- ct
- 1];
281 if (ct
<= out
->lastrepeat
) {
282 out
->calls
[ct
].ax25_call
[6] |= AX25_HBIT
;
283 out
->repeated
[ct
] = 1;
285 out
->calls
[ct
].ax25_call
[6] &= ~AX25_HBIT
;
286 out
->repeated
[ct
] = 0;