1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * X.25 Packet Layer release 002
5 * 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.
8 * This code REQUIRES 2.1.15 or higher
11 * X.25 001 Jonathan Naylor Started coding.
12 * 2000-09-04 Henner Eisen Prevent freeing a dangling skb.
15 #define pr_fmt(fmt) "X25: " fmt
17 #include <linux/kernel.h>
18 #include <linux/netdevice.h>
19 #include <linux/skbuff.h>
20 #include <linux/slab.h>
22 #include <linux/if_arp.h>
24 #include <net/x25device.h>
26 static int x25_receive_data(struct sk_buff
*skb
, struct x25_neigh
*nb
)
29 unsigned short frametype
;
32 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
))
35 frametype
= skb
->data
[2];
36 lci
= ((skb
->data
[0] << 8) & 0xF00) + ((skb
->data
[1] << 0) & 0x0FF);
39 * LCI of zero is always for us, and its always a link control
43 x25_link_control(skb
, nb
, frametype
);
48 * Find an existing socket.
50 if ((sk
= x25_find_socket(lci
, nb
)) != NULL
) {
53 skb_reset_transport_header(skb
);
55 if (!sock_owned_by_user(sk
)) {
56 queued
= x25_process_rx_frame(sk
, skb
);
58 queued
= !sk_add_backlog(sk
, skb
, sk
->sk_rcvbuf
);
66 * Is is a Call Request ? if so process it.
68 if (frametype
== X25_CALL_REQUEST
)
69 return x25_rx_call_request(skb
, nb
, lci
);
72 * Its not a Call Request, nor is it a control frame.
76 if (x25_forward_data(lci
, nb
, skb
)) {
77 if (frametype
== X25_CLEAR_CONFIRMATION
) {
78 x25_clear_forward_by_lci(lci
);
85 x25_transmit_clear_request(nb, lci, 0x0D);
88 if (frametype
!= X25_CLEAR_CONFIRMATION
)
89 pr_debug("x25_receive_data(): unknown frame type %2x\n",frametype
);
94 int x25_lapb_receive_frame(struct sk_buff
*skb
, struct net_device
*dev
,
95 struct packet_type
*ptype
, struct net_device
*orig_dev
)
100 if (!net_eq(dev_net(dev
), &init_net
))
103 nskb
= skb_copy(skb
, GFP_ATOMIC
);
110 * Packet received from unrecognised device, throw it away.
112 nb
= x25_get_neigh(dev
);
114 pr_debug("unknown neighbour - %s\n", dev
->name
);
118 if (!pskb_may_pull(skb
, 1))
121 switch (skb
->data
[0]) {
125 if (x25_receive_data(skb
, nb
)) {
131 case X25_IFACE_CONNECT
:
132 x25_link_established(nb
);
135 case X25_IFACE_DISCONNECT
:
136 x25_link_terminated(nb
);
146 void x25_establish_link(struct x25_neigh
*nb
)
151 switch (nb
->dev
->type
) {
153 if ((skb
= alloc_skb(1, GFP_ATOMIC
)) == NULL
) {
154 pr_err("x25_dev: out of memory\n");
157 ptr
= skb_put(skb
, 1);
158 *ptr
= X25_IFACE_CONNECT
;
161 #if IS_ENABLED(CONFIG_LLC)
169 skb
->protocol
= htons(ETH_P_X25
);
175 void x25_terminate_link(struct x25_neigh
*nb
)
180 #if IS_ENABLED(CONFIG_LLC)
181 if (nb
->dev
->type
== ARPHRD_ETHER
)
184 if (nb
->dev
->type
!= ARPHRD_X25
)
187 skb
= alloc_skb(1, GFP_ATOMIC
);
189 pr_err("x25_dev: out of memory\n");
193 ptr
= skb_put(skb
, 1);
194 *ptr
= X25_IFACE_DISCONNECT
;
196 skb
->protocol
= htons(ETH_P_X25
);
201 void x25_send_frame(struct sk_buff
*skb
, struct x25_neigh
*nb
)
205 skb_reset_network_header(skb
);
207 switch (nb
->dev
->type
) {
209 dptr
= skb_push(skb
, 1);
210 *dptr
= X25_IFACE_DATA
;
213 #if IS_ENABLED(CONFIG_LLC)
223 skb
->protocol
= htons(ETH_P_X25
);