blob: 39231237e1c3b3806dc956429195a59edf46bfd6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * X.25 Packet Layer release 002
3 *
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09004 * This is ALPHA test software. This code may break your machine, randomly fail to work with new
5 * releases, misbehave and/or generally screw up. It might even work.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * This code REQUIRES 2.1.15 or higher
8 *
9 * This module:
10 * This module is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
14 *
15 * History
16 * X.25 001 Jonathan Naylor Started coding.
17 * 2000-09-04 Henner Eisen Prevent freeing a dangling skb.
18 */
19
wangweidongb73e9e32013-12-06 19:24:33 +080020#define pr_fmt(fmt) "X25: " fmt
21
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/kernel.h>
23#include <linux/netdevice.h>
24#include <linux/skbuff.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <net/sock.h>
27#include <linux/if_arp.h>
28#include <net/x25.h>
Andrew Hendry5ebfbc02010-04-22 16:12:36 -070029#include <net/x25device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31static int x25_receive_data(struct sk_buff *skb, struct x25_neigh *nb)
32{
33 struct sock *sk;
34 unsigned short frametype;
35 unsigned int lci;
36
Matthew Daleycb101ed2011-10-14 18:45:04 +000037 if (!pskb_may_pull(skb, X25_STD_MIN_LEN))
38 return 0;
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 frametype = skb->data[2];
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +090041 lci = ((skb->data[0] << 8) & 0xF00) + ((skb->data[1] << 0) & 0x0FF);
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
43 /*
44 * LCI of zero is always for us, and its always a link control
45 * frame.
46 */
47 if (lci == 0) {
48 x25_link_control(skb, nb, frametype);
49 return 0;
50 }
51
52 /*
53 * Find an existing socket.
54 */
55 if ((sk = x25_find_socket(lci, nb)) != NULL) {
56 int queued = 1;
57
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -030058 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 bh_lock_sock(sk);
60 if (!sock_owned_by_user(sk)) {
61 queued = x25_process_rx_frame(sk, skb);
62 } else {
Eric Dumazetf545a382012-04-22 23:34:26 +000063 queued = !sk_add_backlog(sk, skb, sk->sk_rcvbuf);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 }
65 bh_unlock_sock(sk);
Andrew Hendry9d0f7d22007-01-15 19:29:31 -080066 sock_put(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 return queued;
68 }
69
70 /*
71 * Is is a Call Request ? if so process it.
72 */
73 if (frametype == X25_CALL_REQUEST)
74 return x25_rx_call_request(skb, nb, lci);
75
76 /*
Andrew Hendry95a9dc42007-02-08 13:34:02 -080077 * Its not a Call Request, nor is it a control frame.
78 * Can we forward it?
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 */
Andrew Hendry95a9dc42007-02-08 13:34:02 -080080
81 if (x25_forward_data(lci, nb, skb)) {
82 if (frametype == X25_CLEAR_CONFIRMATION) {
83 x25_clear_forward_by_lci(lci);
84 }
85 kfree_skb(skb);
86 return 1;
87 }
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089/*
90 x25_transmit_clear_request(nb, lci, 0x0D);
91*/
92
93 if (frametype != X25_CLEAR_CONFIRMATION)
wangweidongb73e9e32013-12-06 19:24:33 +080094 pr_debug("x25_receive_data(): unknown frame type %2x\n",frametype);
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 return 0;
97}
98
99int x25_lapb_receive_frame(struct sk_buff *skb, struct net_device *dev,
David S. Millerf2ccd8f2005-08-09 19:34:12 -0700100 struct packet_type *ptype, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101{
102 struct sk_buff *nskb;
103 struct x25_neigh *nb;
104
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700105 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane730c152007-09-17 11:53:39 -0700106 goto drop;
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 nskb = skb_copy(skb, GFP_ATOMIC);
109 if (!nskb)
110 goto drop;
111 kfree_skb(skb);
112 skb = nskb;
113
114 /*
115 * Packet received from unrecognised device, throw it away.
116 */
117 nb = x25_get_neigh(dev);
118 if (!nb) {
wangweidongb73e9e32013-12-06 19:24:33 +0800119 pr_debug("unknown neighbour - %s\n", dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 goto drop;
121 }
122
Matthew Daleycb101ed2011-10-14 18:45:04 +0000123 if (!pskb_may_pull(skb, 1))
124 return 0;
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 switch (skb->data[0]) {
Andrew Hendry5ebfbc02010-04-22 16:12:36 -0700127
128 case X25_IFACE_DATA:
129 skb_pull(skb, 1);
130 if (x25_receive_data(skb, nb)) {
131 x25_neigh_put(nb);
132 goto out;
133 }
134 break;
135
136 case X25_IFACE_CONNECT:
137 x25_link_established(nb);
138 break;
139
140 case X25_IFACE_DISCONNECT:
141 x25_link_terminated(nb);
142 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 }
144 x25_neigh_put(nb);
145drop:
146 kfree_skb(skb);
147out:
148 return 0;
149}
150
151void x25_establish_link(struct x25_neigh *nb)
152{
153 struct sk_buff *skb;
154 unsigned char *ptr;
155
156 switch (nb->dev->type) {
Joe Perchesfddc5f32011-07-01 09:43:13 +0000157 case ARPHRD_X25:
158 if ((skb = alloc_skb(1, GFP_ATOMIC)) == NULL) {
wangweidongb73e9e32013-12-06 19:24:33 +0800159 pr_err("x25_dev: out of memory\n");
Joe Perchesfddc5f32011-07-01 09:43:13 +0000160 return;
161 }
162 ptr = skb_put(skb, 1);
163 *ptr = X25_IFACE_CONNECT;
164 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Igor Maravić29c36262011-12-12 02:58:23 +0000166#if IS_ENABLED(CONFIG_LLC)
Joe Perchesfddc5f32011-07-01 09:43:13 +0000167 case ARPHRD_ETHER:
168 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#endif
Joe Perchesfddc5f32011-07-01 09:43:13 +0000170 default:
171 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
174 skb->protocol = htons(ETH_P_X25);
175 skb->dev = nb->dev;
176
177 dev_queue_xmit(skb);
178}
179
180void x25_terminate_link(struct x25_neigh *nb)
181{
182 struct sk_buff *skb;
183 unsigned char *ptr;
184
Igor Maravić29c36262011-12-12 02:58:23 +0000185#if IS_ENABLED(CONFIG_LLC)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 if (nb->dev->type == ARPHRD_ETHER)
187 return;
188#endif
189 if (nb->dev->type != ARPHRD_X25)
190 return;
191
192 skb = alloc_skb(1, GFP_ATOMIC);
193 if (!skb) {
wangweidongb73e9e32013-12-06 19:24:33 +0800194 pr_err("x25_dev: out of memory\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 return;
196 }
197
198 ptr = skb_put(skb, 1);
Andrew Hendry5ebfbc02010-04-22 16:12:36 -0700199 *ptr = X25_IFACE_DISCONNECT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
201 skb->protocol = htons(ETH_P_X25);
202 skb->dev = nb->dev;
203 dev_queue_xmit(skb);
204}
205
206void x25_send_frame(struct sk_buff *skb, struct x25_neigh *nb)
207{
208 unsigned char *dptr;
209
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -0700210 skb_reset_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
212 switch (nb->dev->type) {
Joe Perchesfddc5f32011-07-01 09:43:13 +0000213 case ARPHRD_X25:
214 dptr = skb_push(skb, 1);
215 *dptr = X25_IFACE_DATA;
216 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Igor Maravić29c36262011-12-12 02:58:23 +0000218#if IS_ENABLED(CONFIG_LLC)
Joe Perchesfddc5f32011-07-01 09:43:13 +0000219 case ARPHRD_ETHER:
220 kfree_skb(skb);
221 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222#endif
Joe Perchesfddc5f32011-07-01 09:43:13 +0000223 default:
224 kfree_skb(skb);
225 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
228 skb->protocol = htons(ETH_P_X25);
229 skb->dev = nb->dev;
230
231 dev_queue_xmit(skb);
232}