blob: e4f63dd43cb5b1b63417ddb32f7c3e8790adf05e [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
5 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/errno.h>
7#include <linux/types.h>
8#include <linux/socket.h>
9#include <linux/in.h>
10#include <linux/kernel.h>
Ralf Baechle70868ea2006-05-03 23:25:17 -070011#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/timer.h>
13#include <linux/string.h>
14#include <linux/sockios.h>
15#include <linux/net.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <net/ax25.h>
18#include <linux/inet.h>
19#include <linux/netdevice.h>
20#include <linux/if_arp.h>
21#include <linux/skbuff.h>
22#include <net/sock.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080023#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/fcntl.h>
25#include <linux/termios.h> /* For TIOCINQ/OUTQ */
26#include <linux/mm.h>
27#include <linux/interrupt.h>
28#include <linux/notifier.h>
29#include <linux/proc_fs.h>
30#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/sysctl.h>
32#include <net/ip.h>
33#include <net/arp.h>
34
35/*
36 * IP over AX.25 encapsulation.
37 */
38
39/*
40 * Shove an AX.25 UI header on an IP packet and handle ARP
41 */
42
43#ifdef CONFIG_INET
44
Eric W. Biederman46d4e472015-03-02 00:04:31 -060045static int ax25_hard_header(struct sk_buff *skb, struct net_device *dev,
46 unsigned short type, const void *daddr,
47 const void *saddr, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 unsigned char *buff;
50
51 /* they sometimes come back to us... */
52 if (type == ETH_P_AX25)
53 return 0;
54
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +090055 /* header is an AX.25 UI frame from us to them */
56 buff = skb_push(skb, AX25_HEADER_LEN);
57 *buff++ = 0x00; /* KISS DATA */
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 if (daddr != NULL)
60 memcpy(buff, daddr, dev->addr_len); /* Address specified */
61
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +090062 buff[6] &= ~AX25_CBIT;
63 buff[6] &= ~AX25_EBIT;
64 buff[6] |= AX25_SSSID_SPARE;
65 buff += AX25_ADDR_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +090067 if (saddr != NULL)
68 memcpy(buff, saddr, dev->addr_len);
69 else
70 memcpy(buff, dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +090072 buff[6] &= ~AX25_CBIT;
73 buff[6] |= AX25_EBIT;
74 buff[6] |= AX25_SSSID_SPARE;
75 buff += AX25_ADDR_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +090077 *buff++ = AX25_UI; /* UI */
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +090079 /* Append a suitable AX.25 PID */
80 switch (type) {
81 case ETH_P_IP:
82 *buff++ = AX25_P_IP;
83 break;
84 case ETH_P_ARP:
85 *buff++ = AX25_P_ARP;
86 break;
87 default:
88 printk(KERN_ERR "AX.25: ax25_hard_header - wrong protocol type 0x%2.2x\n", type);
89 *buff++ = 0;
90 break;
91 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93 if (daddr != NULL)
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +090094 return AX25_HEADER_LEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 return -AX25_HEADER_LEN; /* Unfinished header */
97}
98
Eric W. Biederman1d5da752015-03-03 09:41:47 -060099netdev_tx_t ax25_ip_xmit(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
101 struct sk_buff *ourskb;
102 unsigned char *bp = skb->data;
Ralf Baechle DL5RB006f68b2006-07-03 19:30:18 -0700103 ax25_route *route;
104 struct net_device *dev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 ax25_address *src, *dst;
Ralf Baechle DL5RB006f68b2006-07-03 19:30:18 -0700106 ax25_digi *digipeat = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 ax25_dev *ax25_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 ax25_cb *ax25;
Ralf Baechle DL5RB006f68b2006-07-03 19:30:18 -0700109 char ip_mode = ' ';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111 dst = (ax25_address *)(bp + 1);
112 src = (ax25_address *)(bp + 8);
113
Eric Dumazet63530ab2019-01-22 10:40:59 -0800114 ax25_route_lock_use();
Ralf Baechle DL5RB006f68b2006-07-03 19:30:18 -0700115 route = ax25_get_route(dst, NULL);
116 if (route) {
117 digipeat = route->digipeat;
118 dev = route->dev;
119 ip_mode = route->ip_mode;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700120 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122 if (dev == NULL)
123 dev = skb->dev;
124
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +0900125 if ((ax25_dev = ax25_dev_ax25dev(dev)) == NULL) {
Eric W. Biedermane18dbd02015-03-01 23:59:57 -0600126 kfree_skb(skb);
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +0900127 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 }
129
130 if (bp[16] == AX25_P_IP) {
Ralf Baechle DL5RB006f68b2006-07-03 19:30:18 -0700131 if (ip_mode == 'V' || (ip_mode == ' ' && ax25_dev->values[AX25_VALUES_IPDEFMODE])) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 /*
133 * We copy the buffer and release the original thereby
134 * keeping it straight
135 *
136 * Note: we report 1 back so the caller will
137 * not feed the frame direct to the physical device
138 * We don't want that to happen. (It won't be upset
139 * as we have pulled the frame from the queue by
140 * freeing it).
141 *
142 * NB: TCP modifies buffers that are still
143 * on a device queue, thus we use skb_copy()
144 * instead of using skb_clone() unless this
145 * gets fixed.
146 */
147
148 ax25_address src_c;
149 ax25_address dst_c;
150
151 if ((ourskb = skb_copy(skb, GFP_ATOMIC)) == NULL) {
152 kfree_skb(skb);
153 goto put;
154 }
155
156 if (skb->sk != NULL)
157 skb_set_owner_w(ourskb, skb->sk);
158
159 kfree_skb(skb);
160 /* dl9sau: bugfix
161 * after kfree_skb(), dst and src which were pointer
162 * to bp which is part of skb->data would not be valid
163 * anymore hope that after skb_pull(ourskb, ..) our
164 * dsc_c and src_c will not become invalid
165 */
166 bp = ourskb->data;
167 dst_c = *(ax25_address *)(bp + 1);
168 src_c = *(ax25_address *)(bp + 8);
169
170 skb_pull(ourskb, AX25_HEADER_LEN - 1); /* Keep PID */
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700171 skb_reset_network_header(ourskb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 ax25=ax25_send_frame(
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +0900174 ourskb,
175 ax25_dev->values[AX25_VALUES_PACLEN],
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 &src_c,
Ralf Baechle DL5RB006f68b2006-07-03 19:30:18 -0700177 &dst_c, digipeat, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (ax25) {
179 ax25_cb_put(ax25);
180 }
181 goto put;
182 }
183 }
184
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +0900185 bp[7] &= ~AX25_CBIT;
186 bp[7] &= ~AX25_EBIT;
187 bp[7] |= AX25_SSSID_SPARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188
YOSHIFUJI Hideaki528930b2007-02-09 23:24:31 +0900189 bp[14] &= ~AX25_CBIT;
190 bp[14] |= AX25_EBIT;
191 bp[14] |= AX25_SSSID_SPARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
193 skb_pull(skb, AX25_KISS_HEADER_LEN);
194
Ralf Baechle DL5RB006f68b2006-07-03 19:30:18 -0700195 if (digipeat != NULL) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 if ((ourskb = ax25_rt_build_path(skb, src, dst, route->digipeat)) == NULL) {
197 kfree_skb(skb);
198 goto put;
199 }
200
201 skb = ourskb;
202 }
203
Arnaldo Carvalho de Melo29c4be52005-04-21 16:46:56 -0700204 ax25_queue_xmit(skb, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206put:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Eric Dumazet63530ab2019-01-22 10:40:59 -0800208 ax25_route_lock_unuse();
Eric W. Biederman1d5da752015-03-03 09:41:47 -0600209 return NETDEV_TX_OK;
Eric W. Biederman3b6a94b2015-03-02 00:05:28 -0600210}
211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#else /* INET */
213
Eric W. Biederman46d4e472015-03-02 00:04:31 -0600214static int ax25_hard_header(struct sk_buff *skb, struct net_device *dev,
215 unsigned short type, const void *daddr,
216 const void *saddr, unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
218 return -AX25_HEADER_LEN;
219}
220
kbuild test robot787fb2b2015-03-05 06:54:00 -0600221netdev_tx_t ax25_ip_xmit(struct sk_buff *skb)
Eric W. Biederman3b6a94b2015-03-02 00:05:28 -0600222{
Eric W. Biederman1d5da752015-03-03 09:41:47 -0600223 kfree_skb(skb);
224 return NETDEV_TX_OK;
Eric W. Biederman3b6a94b2015-03-02 00:05:28 -0600225}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226#endif
227
Willem de Bruijnea477812016-03-09 21:58:33 -0500228static bool ax25_validate_header(const char *header, unsigned int len)
229{
230 ax25_digi digi;
231
232 if (!len)
233 return false;
234
235 if (header[0])
236 return true;
237
238 return ax25_addr_parse(header + 1, len - 1, NULL, NULL, &digi, NULL,
239 NULL);
240}
241
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700242const struct header_ops ax25_header_ops = {
243 .create = ax25_hard_header,
Willem de Bruijnea477812016-03-09 21:58:33 -0500244 .validate = ax25_validate_header,
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700245};
246
Stephen Hemminger3b04ddd2007-10-09 01:40:57 -0700247EXPORT_SYMBOL(ax25_header_ops);
Eric W. Biederman1d5da752015-03-03 09:41:47 -0600248EXPORT_SYMBOL(ax25_ip_xmit);