2 * X.25 Packet Layer release 002
4 * 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.
7 * This code REQUIRES 2.1.15 or higher
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.
16 * X.25 001 Jonathan Naylor Started coding.
17 * 2000-09-04 Henner Eisen Prevent freeing a dangling skb.
20 #define pr_fmt(fmt) "X25: " fmt
22 #include <linux/kernel.h>
23 #include <linux/netdevice.h>
24 #include <linux/skbuff.h>
25 #include <linux/slab.h>
27 #include <linux/if_arp.h>
29 #include <net/x25device.h>
31 static int x25_receive_data(struct sk_buff
*skb
, struct x25_neigh
*nb
)
34 unsigned short frametype
;
37 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
))
40 frametype
= skb
->data
[2];
41 lci
= ((skb
->data
[0] << 8) & 0xF00) + ((skb
->data
[1] << 0) & 0x0FF);
44 * LCI of zero is always for us, and its always a link control
48 x25_link_control(skb
, nb
, frametype
);
53 * Find an existing socket.
55 if ((sk
= x25_find_socket(lci
, nb
)) != NULL
) {
58 skb_reset_transport_header(skb
);
60 if (!sock_owned_by_user(sk
)) {
61 queued
= x25_process_rx_frame(sk
, skb
);
63 queued
= !sk_add_backlog(sk
, skb
, sk
->sk_rcvbuf
);
71 * Is is a Call Request ? if so process it.
73 if (frametype
== X25_CALL_REQUEST
)
74 return x25_rx_call_request(skb
, nb
, lci
);
77 * Its not a Call Request, nor is it a control frame.
81 if (x25_forward_data(lci
, nb
, skb
)) {
82 if (frametype
== X25_CLEAR_CONFIRMATION
) {
83 x25_clear_forward_by_lci(lci
);
90 x25_transmit_clear_request(nb, lci, 0x0D);
93 if (frametype
!= X25_CLEAR_CONFIRMATION
)
94 pr_debug("x25_receive_data(): unknown frame type %2x\n",frametype
);
99 int x25_lapb_receive_frame(struct sk_buff
*skb
, struct net_device
*dev
,
100 struct packet_type
*ptype
, struct net_device
*orig_dev
)
102 struct sk_buff
*nskb
;
103 struct x25_neigh
*nb
;
105 if (!net_eq(dev_net(dev
), &init_net
))
108 nskb
= skb_copy(skb
, GFP_ATOMIC
);
115 * Packet received from unrecognised device, throw it away.
117 nb
= x25_get_neigh(dev
);
119 pr_debug("unknown neighbour - %s\n", dev
->name
);
123 if (!pskb_may_pull(skb
, 1))
126 switch (skb
->data
[0]) {
130 if (x25_receive_data(skb
, nb
)) {
136 case X25_IFACE_CONNECT
:
137 x25_link_established(nb
);
140 case X25_IFACE_DISCONNECT
:
141 x25_link_terminated(nb
);
151 void x25_establish_link(struct x25_neigh
*nb
)
156 switch (nb
->dev
->type
) {
158 if ((skb
= alloc_skb(1, GFP_ATOMIC
)) == NULL
) {
159 pr_err("x25_dev: out of memory\n");
162 ptr
= skb_put(skb
, 1);
163 *ptr
= X25_IFACE_CONNECT
;
166 #if IS_ENABLED(CONFIG_LLC)
174 skb
->protocol
= htons(ETH_P_X25
);
180 void x25_terminate_link(struct x25_neigh
*nb
)
185 #if IS_ENABLED(CONFIG_LLC)
186 if (nb
->dev
->type
== ARPHRD_ETHER
)
189 if (nb
->dev
->type
!= ARPHRD_X25
)
192 skb
= alloc_skb(1, GFP_ATOMIC
);
194 pr_err("x25_dev: out of memory\n");
198 ptr
= skb_put(skb
, 1);
199 *ptr
= X25_IFACE_DISCONNECT
;
201 skb
->protocol
= htons(ETH_P_X25
);
206 void x25_send_frame(struct sk_buff
*skb
, struct x25_neigh
*nb
)
210 skb_reset_network_header(skb
);
212 switch (nb
->dev
->type
) {
214 dptr
= skb_push(skb
, 1);
215 *dptr
= X25_IFACE_DATA
;
218 #if IS_ENABLED(CONFIG_LLC)
228 skb
->protocol
= htons(ETH_P_X25
);