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>
19 #include <linux/slab.h>
21 #include <linux/inet.h>
22 #include <linux/netdevice.h>
23 #include <linux/if_arp.h>
24 #include <linux/skbuff.h>
26 #include <asm/uaccess.h>
27 #include <asm/system.h>
28 #include <linux/fcntl.h>
29 #include <linux/termios.h> /* For TIOCINQ/OUTQ */
31 #include <linux/interrupt.h>
32 #include <linux/notifier.h>
33 #include <linux/proc_fs.h>
34 #include <linux/stat.h>
35 #include <linux/netfilter.h>
36 #include <linux/sysctl.h>
41 * IP over AX.25 encapsulation.
45 * Shove an AX.25 UI header on an IP packet and handle ARP
50 int ax25_hard_header(struct sk_buff *skb, struct net_device *dev,
51 unsigned short type, const void *daddr,
52 const void *saddr, unsigned len)
56 /* they sometimes come back to us... */
57 if (type == ETH_P_AX25)
60 /* header is an AX.25 UI frame from us to them */
61 buff = skb_push(skb, AX25_HEADER_LEN);
62 *buff++ = 0x00; /* KISS DATA */
65 memcpy(buff, daddr, dev->addr_len); /* Address specified */
67 buff[6] &= ~AX25_CBIT;
68 buff[6] &= ~AX25_EBIT;
69 buff[6] |= AX25_SSSID_SPARE;
70 buff += AX25_ADDR_LEN;
73 memcpy(buff, saddr, dev->addr_len);
75 memcpy(buff, dev->dev_addr, dev->addr_len);
77 buff[6] &= ~AX25_CBIT;
79 buff[6] |= AX25_SSSID_SPARE;
80 buff += AX25_ADDR_LEN;
82 *buff++ = AX25_UI; /* UI */
84 /* Append a suitable AX.25 PID */
93 printk(KERN_ERR "AX.25: ax25_hard_header - wrong protocol type 0x%2.2x\n", type);
99 return AX25_HEADER_LEN;
101 return -AX25_HEADER_LEN; /* Unfinished header */
104 int ax25_rebuild_header(struct sk_buff *skb)
106 struct sk_buff *ourskb;
107 unsigned char *bp = skb->data;
109 struct net_device *dev = NULL;
110 ax25_address *src, *dst;
111 ax25_digi *digipeat = NULL;
116 dst = (ax25_address *)(bp + 1);
117 src = (ax25_address *)(bp + 8);
119 if (arp_find(bp + 1, skb))
122 route = ax25_get_route(dst, NULL);
124 digipeat = route->digipeat;
126 ip_mode = route->ip_mode;
132 if ((ax25_dev = ax25_dev_ax25dev(dev)) == NULL) {
136 if (bp[16] == AX25_P_IP) {
137 if (ip_mode == 'V' || (ip_mode == ' ' && ax25_dev->values[AX25_VALUES_IPDEFMODE])) {
139 * We copy the buffer and release the original thereby
140 * keeping it straight
142 * Note: we report 1 back so the caller will
143 * not feed the frame direct to the physical device
144 * We don't want that to happen. (It won't be upset
145 * as we have pulled the frame from the queue by
148 * NB: TCP modifies buffers that are still
149 * on a device queue, thus we use skb_copy()
150 * instead of using skb_clone() unless this
157 if ((ourskb = skb_copy(skb, GFP_ATOMIC)) == NULL) {
163 skb_set_owner_w(ourskb, skb->sk);
167 * after kfree_skb(), dst and src which were pointer
168 * to bp which is part of skb->data would not be valid
169 * anymore hope that after skb_pull(ourskb, ..) our
170 * dsc_c and src_c will not become invalid
173 dst_c = *(ax25_address *)(bp + 1);
174 src_c = *(ax25_address *)(bp + 8);
176 skb_pull(ourskb, AX25_HEADER_LEN - 1); /* Keep PID */
177 skb_reset_network_header(ourskb);
179 ax25=ax25_send_frame(
181 ax25_dev->values[AX25_VALUES_PACLEN],
183 &dst_c, digipeat, dev);
193 bp[7] |= AX25_SSSID_SPARE;
195 bp[14] &= ~AX25_CBIT;
197 bp[14] |= AX25_SSSID_SPARE;
199 skb_pull(skb, AX25_KISS_HEADER_LEN);
201 if (digipeat != NULL) {
202 if ((ourskb = ax25_rt_build_path(skb, src, dst, route->digipeat)) == NULL) {
210 ax25_queue_xmit(skb, dev);
214 ax25_put_route(route);
221 int ax25_hard_header(struct sk_buff *skb, struct net_device *dev,
222 unsigned short type, const void *daddr,
223 const void *saddr, unsigned len)
225 return -AX25_HEADER_LEN;
228 int ax25_rebuild_header(struct sk_buff *skb)
235 const struct header_ops ax25_header_ops = {
236 .create = ax25_hard_header,
237 .rebuild = ax25_rebuild_header,
240 EXPORT_SYMBOL(ax25_hard_header);
241 EXPORT_SYMBOL(ax25_rebuild_header);
242 EXPORT_SYMBOL(ax25_header_ops);