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/module.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/if_arp.h>
23 #include <linux/skbuff.h>
25 #include <asm/uaccess.h>
26 #include <asm/system.h>
27 #include <linux/fcntl.h>
28 #include <linux/termios.h> /* For TIOCINQ/OUTQ */
30 #include <linux/interrupt.h>
31 #include <linux/notifier.h>
32 #include <linux/proc_fs.h>
33 #include <linux/stat.h>
34 #include <linux/netfilter.h>
35 #include <linux/sysctl.h>
40 * IP over AX.25 encapsulation.
44 * Shove an AX.25 UI header on an IP packet and handle ARP
49 int ax25_hard_header(struct sk_buff
*skb
, struct net_device
*dev
,
50 unsigned short type
, const void *daddr
,
51 const void *saddr
, unsigned len
)
55 /* they sometimes come back to us... */
56 if (type
== ETH_P_AX25
)
59 /* header is an AX.25 UI frame from us to them */
60 buff
= skb_push(skb
, AX25_HEADER_LEN
);
61 *buff
++ = 0x00; /* KISS DATA */
64 memcpy(buff
, daddr
, dev
->addr_len
); /* Address specified */
66 buff
[6] &= ~AX25_CBIT
;
67 buff
[6] &= ~AX25_EBIT
;
68 buff
[6] |= AX25_SSSID_SPARE
;
69 buff
+= AX25_ADDR_LEN
;
72 memcpy(buff
, saddr
, dev
->addr_len
);
74 memcpy(buff
, dev
->dev_addr
, dev
->addr_len
);
76 buff
[6] &= ~AX25_CBIT
;
78 buff
[6] |= AX25_SSSID_SPARE
;
79 buff
+= AX25_ADDR_LEN
;
81 *buff
++ = AX25_UI
; /* UI */
83 /* Append a suitable AX.25 PID */
92 printk(KERN_ERR
"AX.25: ax25_hard_header - wrong protocol type 0x%2.2x\n", type
);
98 return AX25_HEADER_LEN
;
100 return -AX25_HEADER_LEN
; /* Unfinished header */
103 int ax25_rebuild_header(struct sk_buff
*skb
)
105 struct sk_buff
*ourskb
;
106 unsigned char *bp
= skb
->data
;
108 struct net_device
*dev
= NULL
;
109 ax25_address
*src
, *dst
;
110 ax25_digi
*digipeat
= NULL
;
115 dst
= (ax25_address
*)(bp
+ 1);
116 src
= (ax25_address
*)(bp
+ 8);
118 if (arp_find(bp
+ 1, skb
))
121 route
= ax25_get_route(dst
, NULL
);
123 digipeat
= route
->digipeat
;
125 ip_mode
= route
->ip_mode
;
131 if ((ax25_dev
= ax25_dev_ax25dev(dev
)) == NULL
) {
135 if (bp
[16] == AX25_P_IP
) {
136 if (ip_mode
== 'V' || (ip_mode
== ' ' && ax25_dev
->values
[AX25_VALUES_IPDEFMODE
])) {
138 * We copy the buffer and release the original thereby
139 * keeping it straight
141 * Note: we report 1 back so the caller will
142 * not feed the frame direct to the physical device
143 * We don't want that to happen. (It won't be upset
144 * as we have pulled the frame from the queue by
147 * NB: TCP modifies buffers that are still
148 * on a device queue, thus we use skb_copy()
149 * instead of using skb_clone() unless this
156 if ((ourskb
= skb_copy(skb
, GFP_ATOMIC
)) == NULL
) {
162 skb_set_owner_w(ourskb
, skb
->sk
);
166 * after kfree_skb(), dst and src which were pointer
167 * to bp which is part of skb->data would not be valid
168 * anymore hope that after skb_pull(ourskb, ..) our
169 * dsc_c and src_c will not become invalid
172 dst_c
= *(ax25_address
*)(bp
+ 1);
173 src_c
= *(ax25_address
*)(bp
+ 8);
175 skb_pull(ourskb
, AX25_HEADER_LEN
- 1); /* Keep PID */
176 skb_reset_network_header(ourskb
);
178 ax25
=ax25_send_frame(
180 ax25_dev
->values
[AX25_VALUES_PACLEN
],
182 &dst_c
, digipeat
, dev
);
192 bp
[7] |= AX25_SSSID_SPARE
;
194 bp
[14] &= ~AX25_CBIT
;
196 bp
[14] |= AX25_SSSID_SPARE
;
198 skb_pull(skb
, AX25_KISS_HEADER_LEN
);
200 if (digipeat
!= NULL
) {
201 if ((ourskb
= ax25_rt_build_path(skb
, src
, dst
, route
->digipeat
)) == NULL
) {
209 ax25_queue_xmit(skb
, dev
);
213 ax25_put_route(route
);
220 int ax25_hard_header(struct sk_buff
*skb
, struct net_device
*dev
,
221 unsigned short type
, const void *daddr
,
222 const void *saddr
, unsigned len
)
224 return -AX25_HEADER_LEN
;
227 int ax25_rebuild_header(struct sk_buff
*skb
)
234 const struct header_ops ax25_header_ops
= {
235 .create
= ax25_hard_header
,
236 .rebuild
= ax25_rebuild_header
,
239 EXPORT_SYMBOL(ax25_hard_header
);
240 EXPORT_SYMBOL(ax25_rebuild_header
);
241 EXPORT_SYMBOL(ax25_header_ops
);