[netdrvr] tulip: add pci id
[linux-2.6/verdex.git] / net / ax25 / ax25_addr.c
blobf4fa6dfb846e6aa4cf2359584e4efed452dc8f58
1 /*
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)
8 */
9 #include <linux/errno.h>
10 #include <linux/types.h>
11 #include <linux/socket.h>
12 #include <linux/in.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>
19 #include <net/ax25.h>
20 #include <linux/inet.h>
21 #include <linux/netdevice.h>
22 #include <linux/skbuff.h>
23 #include <net/sock.h>
24 #include <asm/uaccess.h>
25 #include <asm/system.h>
26 #include <linux/fcntl.h>
27 #include <linux/mm.h>
28 #include <linux/interrupt.h>
31 * The null address is defined as a callsign of all spaces with an
32 * SSID of zero.
34 ax25_address null_ax25_address = {{0x40, 0x40, 0x40, 0x40, 0x40, 0x40, 0x00}};
37 * ax25 -> ascii conversion
39 char *ax2asc(ax25_address *a)
41 static char buf[11];
42 char c, *s;
43 int n;
45 for (n = 0, s = buf; n < 6; n++) {
46 c = (a->ax25_call[n] >> 1) & 0x7F;
48 if (c != ' ') *s++ = c;
51 *s++ = '-';
53 if ((n = ((a->ax25_call[6] >> 1) & 0x0F)) > 9) {
54 *s++ = '1';
55 n -= 10;
58 *s++ = n + '0';
59 *s++ = '\0';
61 if (*buf == '\0' || *buf == '-')
62 return "*";
64 return buf;
69 * ascii -> ax25 conversion
71 ax25_address *asc2ax(char *callsign)
73 static ax25_address addr;
74 char *s;
75 int n;
77 for (s = callsign, n = 0; n < 6; n++) {
78 if (*s != '\0' && *s != '-')
79 addr.ax25_call[n] = *s++;
80 else
81 addr.ax25_call[n] = ' ';
82 addr.ax25_call[n] <<= 1;
83 addr.ax25_call[n] &= 0xFE;
86 if (*s++ == '\0') {
87 addr.ax25_call[6] = 0x00;
88 return &addr;
91 addr.ax25_call[6] = *s++ - '0';
93 if (*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;
101 return &addr;
105 * Compare two ax.25 addresses
107 int ax25cmp(ax25_address *a, ax25_address *b)
109 int ct = 0;
111 while (ct < 6) {
112 if ((a->ax25_call[ct] & 0xFE) != (b->ax25_call[ct] & 0xFE)) /* Clean off repeater bits */
113 return 1;
114 ct++;
117 if ((a->ax25_call[ct] & 0x1E) == (b->ax25_call[ct] & 0x1E)) /* SSID without control bit */
118 return 0;
120 return 2; /* Partial match */
124 * Compare two AX.25 digipeater paths.
126 int ax25digicmp(ax25_digi *digi1, ax25_digi *digi2)
128 int i;
130 if (digi1->ndigi != digi2->ndigi)
131 return 1;
133 if (digi1->lastrepeat != digi2->lastrepeat)
134 return 1;
136 for (i = 0; i < digi1->ndigi; i++)
137 if (ax25cmp(&digi1->calls[i], &digi2->calls[i]) != 0)
138 return 1;
140 return 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)
149 int d = 0;
151 if (len < 14) return NULL;
153 if (flags != NULL) {
154 *flags = 0;
156 if (buf[6] & AX25_CBIT)
157 *flags = AX25_COMMAND;
158 if (buf[13] & AX25_CBIT)
159 *flags = AX25_RESPONSE;
162 if (dama != NULL)
163 *dama = ~buf[13] & AX25_DAMA_FLAG;
165 /* Copy to, from */
166 if (dest != NULL)
167 memcpy(dest, buf + 0, AX25_ADDR_LEN);
168 if (src != NULL)
169 memcpy(src, buf + 7, AX25_ADDR_LEN);
171 buf += 2 * AX25_ADDR_LEN;
172 len -= 2 * AX25_ADDR_LEN;
174 digi->lastrepeat = -1;
175 digi->ndigi = 0;
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);
182 digi->ndigi = d + 1;
184 if (buf[6] & AX25_HBIT) {
185 digi->repeated[d] = 1;
186 digi->lastrepeat = d;
187 } else {
188 digi->repeated[d] = 0;
191 buf += AX25_ADDR_LEN;
192 len -= AX25_ADDR_LEN;
193 d++;
196 return buf;
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)
204 int len = 0;
205 int ct = 0;
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;
222 else
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) {
231 buf[6] |= AX25_EBIT;
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);
241 if (d->repeated[ct])
242 buf[6] |= AX25_HBIT;
243 else
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;
251 ct++;
254 buf[-1] |= AX25_EBIT;
256 return len;
259 int ax25_addr_size(ax25_digi *dp)
261 if (dp == NULL)
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)
272 int ct;
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;
284 } else {
285 out->calls[ct].ax25_call[6] &= ~AX25_HBIT;
286 out->repeated[ct] = 0;