blob: 5259ef8f5242f347ab0c2464db1c8f527c840691 [file] [log] [blame]
Thomas Gleixneree5d8f42019-05-20 19:08:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * X.25 Packet Layer release 002
4 *
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09005 * This is ALPHA test software. This code may break your machine, randomly fail to work with new
6 * releases, misbehave and/or generally screw up. It might even work.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This code REQUIRES 2.1.15 or higher
9 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 * History
11 * X.25 001 Jonathan Naylor Started coding.
12 * 2000-09-04 Henner Eisen Prevent freeing a dangling skb.
13 */
14
wangweidongb73e9e32013-12-06 19:24:33 +080015#define pr_fmt(fmt) "X25: " fmt
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/kernel.h>
18#include <linux/netdevice.h>
19#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <net/sock.h>
22#include <linux/if_arp.h>
23#include <net/x25.h>
Andrew Hendry5ebfbc02010-04-22 16:12:36 -070024#include <net/x25device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26static int x25_receive_data(struct sk_buff *skb, struct x25_neigh *nb)
27{
28 struct sock *sk;
29 unsigned short frametype;
30 unsigned int lci;
31
Matthew Daleycb101ed2011-10-14 18:45:04 +000032 if (!pskb_may_pull(skb, X25_STD_MIN_LEN))
33 return 0;
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 frametype = skb->data[2];
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +090036 lci = ((skb->data[0] << 8) & 0xF00) + ((skb->data[1] << 0) & 0x0FF);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38 /*
39 * LCI of zero is always for us, and its always a link control
40 * frame.
41 */
42 if (lci == 0) {
43 x25_link_control(skb, nb, frametype);
44 return 0;
45 }
46
47 /*
48 * Find an existing socket.
49 */
50 if ((sk = x25_find_socket(lci, nb)) != NULL) {
51 int queued = 1;
52
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -030053 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 bh_lock_sock(sk);
55 if (!sock_owned_by_user(sk)) {
56 queued = x25_process_rx_frame(sk, skb);
57 } else {
Eric Dumazet82657922019-10-09 15:21:13 -070058 queued = !sk_add_backlog(sk, skb, READ_ONCE(sk->sk_rcvbuf));
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 }
60 bh_unlock_sock(sk);
Andrew Hendry9d0f7d22007-01-15 19:29:31 -080061 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 return queued;
63 }
64
65 /*
66 * Is is a Call Request ? if so process it.
67 */
68 if (frametype == X25_CALL_REQUEST)
69 return x25_rx_call_request(skb, nb, lci);
70
71 /*
Andrew Hendry95a9dc42007-02-08 13:34:02 -080072 * Its not a Call Request, nor is it a control frame.
73 * Can we forward it?
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
Andrew Hendry95a9dc42007-02-08 13:34:02 -080075
76 if (x25_forward_data(lci, nb, skb)) {
77 if (frametype == X25_CLEAR_CONFIRMATION) {
78 x25_clear_forward_by_lci(lci);
79 }
80 kfree_skb(skb);
81 return 1;
82 }
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084/*
85 x25_transmit_clear_request(nb, lci, 0x0D);
86*/
87
88 if (frametype != X25_CLEAR_CONFIRMATION)
wangweidongb73e9e32013-12-06 19:24:33 +080089 pr_debug("x25_receive_data(): unknown frame type %2x\n",frametype);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 return 0;
92}
93
94int x25_lapb_receive_frame(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -070095 struct packet_type *ptype, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -070096{
97 struct sk_buff *nskb;
98 struct x25_neigh *nb;
99
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700100 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -0700101 goto drop;
102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 nskb = skb_copy(skb, GFP_ATOMIC);
104 if (!nskb)
105 goto drop;
106 kfree_skb(skb);
107 skb = nskb;
108
109 /*
110 * Packet received from unrecognised device, throw it away.
111 */
112 nb = x25_get_neigh(dev);
113 if (!nb) {
wangweidongb73e9e32013-12-06 19:24:33 +0800114 pr_debug("unknown neighbour - %s\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 goto drop;
116 }
117
Xiyu Yangf35d1292020-04-23 13:13:03 +0800118 if (!pskb_may_pull(skb, 1)) {
119 x25_neigh_put(nb);
Matthew Daleycb101ed2011-10-14 18:45:04 +0000120 return 0;
Xiyu Yangf35d1292020-04-23 13:13:03 +0800121 }
Matthew Daleycb101ed2011-10-14 18:45:04 +0000122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 switch (skb->data[0]) {
Andrew Hendry5ebfbc02010-04-22 16:12:36 -0700124
125 case X25_IFACE_DATA:
126 skb_pull(skb, 1);
127 if (x25_receive_data(skb, nb)) {
128 x25_neigh_put(nb);
129 goto out;
130 }
131 break;
132
133 case X25_IFACE_CONNECT:
134 x25_link_established(nb);
135 break;
136
137 case X25_IFACE_DISCONNECT:
138 x25_link_terminated(nb);
139 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 }
141 x25_neigh_put(nb);
142drop:
143 kfree_skb(skb);
144out:
145 return 0;
146}
147
148void x25_establish_link(struct x25_neigh *nb)
149{
150 struct sk_buff *skb;
151 unsigned char *ptr;
152
153 switch (nb->dev->type) {
Joe Perchesfddc5f32011-07-01 09:43:13 +0000154 case ARPHRD_X25:
155 if ((skb = alloc_skb(1, GFP_ATOMIC)) == NULL) {
wangweidongb73e9e32013-12-06 19:24:33 +0800156 pr_err("x25_dev: out of memory\n");
Joe Perchesfddc5f32011-07-01 09:43:13 +0000157 return;
158 }
159 ptr = skb_put(skb, 1);
160 *ptr = X25_IFACE_CONNECT;
161 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Joe Perchesfddc5f32011-07-01 09:43:13 +0000163 default:
164 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 }
166
167 skb->protocol = htons(ETH_P_X25);
168 skb->dev = nb->dev;
169
170 dev_queue_xmit(skb);
171}
172
173void x25_terminate_link(struct x25_neigh *nb)
174{
175 struct sk_buff *skb;
176 unsigned char *ptr;
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 if (nb->dev->type != ARPHRD_X25)
179 return;
180
181 skb = alloc_skb(1, GFP_ATOMIC);
182 if (!skb) {
wangweidongb73e9e32013-12-06 19:24:33 +0800183 pr_err("x25_dev: out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 return;
185 }
186
187 ptr = skb_put(skb, 1);
Andrew Hendry5ebfbc02010-04-22 16:12:36 -0700188 *ptr = X25_IFACE_DISCONNECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
190 skb->protocol = htons(ETH_P_X25);
191 skb->dev = nb->dev;
192 dev_queue_xmit(skb);
193}
194
195void x25_send_frame(struct sk_buff *skb, struct x25_neigh *nb)
196{
197 unsigned char *dptr;
198
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700199 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 switch (nb->dev->type) {
Joe Perchesfddc5f32011-07-01 09:43:13 +0000202 case ARPHRD_X25:
203 dptr = skb_push(skb, 1);
204 *dptr = X25_IFACE_DATA;
205 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Joe Perchesfddc5f32011-07-01 09:43:13 +0000207 default:
208 kfree_skb(skb);
209 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
211
212 skb->protocol = htons(ETH_P_X25);
213 skb->dev = nb->dev;
214
215 dev_queue_xmit(skb);
216}