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.
19 #include <linux/config.h>
20 #if defined(CONFIG_X25) || defined(CONFIG_X25_MODULE)
21 #include <linux/errno.h>
22 #include <linux/types.h>
23 #include <linux/socket.h>
25 #include <linux/kernel.h>
26 #include <linux/sched.h>
27 #include <linux/timer.h>
28 #include <linux/string.h>
29 #include <linux/sockios.h>
30 #include <linux/net.h>
31 #include <linux/stat.h>
32 #include <linux/inet.h>
33 #include <linux/netdevice.h>
34 #include <linux/if_arp.h>
35 #include <linux/skbuff.h>
37 #include <asm/segment.h>
38 #include <asm/system.h>
39 #include <asm/uaccess.h>
40 #include <linux/fcntl.h>
41 #include <linux/termios.h> /* For TIOCINQ/OUTQ */
43 #include <linux/interrupt.h>
44 #include <linux/notifier.h>
45 #include <linux/proc_fs.h>
46 #include <linux/firewall.h>
49 static int x25_receive_data(struct sk_buff
*skb
, struct x25_neigh
*neigh
)
52 unsigned short frametype
;
55 if (call_in_firewall(PF_X25
, skb
->dev
, skb
->data
, NULL
, &skb
) != FW_ACCEPT
) {
60 frametype
= skb
->data
[2];
61 lci
= ((skb
->data
[0] << 8) & 0xF00) + ((skb
->data
[1] << 0) & 0x0FF);
64 * LCI of zero is always for us, and its always a link control
68 x25_link_control(skb
, neigh
, frametype
);
73 * Find an existing socket.
75 if ((sk
= x25_find_socket(lci
, neigh
)) != NULL
) {
76 skb
->h
.raw
= skb
->data
;
77 return x25_process_rx_frame(sk
, skb
);
81 * Is is a Call Request ? if so process it.
83 if (frametype
== X25_CALL_REQUEST
)
84 return x25_rx_call_request(skb
, neigh
, lci
);
87 * Its not a Call Request, nor is it a control frame, throw it awa
90 x25_transmit_clear_request(neigh, lci, 0x0D);
97 int x25_lapb_receive_frame(struct sk_buff
*skb
, struct device
*dev
, struct packet_type
*ptype
)
99 struct x25_neigh
*neigh
;
105 * Packet received from unrecognised device, throw it away.
107 if ((neigh
= x25_get_neigh(dev
)) == NULL
) {
108 printk(KERN_DEBUG
"X.25: unknown neighbour - %s\n", dev
->name
);
113 switch (skb
->data
[0]) {
116 queued
= x25_receive_data(skb
, neigh
);
118 /* We need to free the skb ourselves because
119 * net_bh() won't care about our return code.
125 x25_link_established(neigh
);
130 x25_link_terminated(neigh
);
144 int x25_llc_receive_frame(struct sk_buff
*skb
, struct device
*dev
, struct packet_type
*ptype
)
146 struct x25_neigh
*neigh
;
151 * Packet received from unrecognised device, throw it away.
153 if ((neigh
= x25_get_neigh(dev
)) == NULL
) {
154 printk(KERN_DEBUG
"X.25: unknown_neighbour - %s\n", dev
->name
);
159 return x25_receive_data(skb
, neigh
);
162 void x25_establish_link(struct x25_neigh
*neigh
)
167 switch (neigh
->dev
->type
) {
169 if ((skb
= alloc_skb(1, GFP_ATOMIC
)) == NULL
) {
170 printk(KERN_ERR
"x25_dev: out of memory\n");
173 ptr
= skb_put(skb
, 1);
177 #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
185 skb
->protocol
= htons(ETH_P_X25
);
186 skb
->dev
= neigh
->dev
;
191 void x25_terminate_link(struct x25_neigh
*neigh
)
196 switch (neigh
->dev
->type
) {
198 if ((skb
= alloc_skb(1, GFP_ATOMIC
)) == NULL
) {
199 printk(KERN_ERR
"x25_dev: out of memory\n");
202 ptr
= skb_put(skb
, 1);
206 #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
214 skb
->protocol
= htons(ETH_P_X25
);
215 skb
->dev
= neigh
->dev
;
220 void x25_send_frame(struct sk_buff
*skb
, struct x25_neigh
*neigh
)
224 skb
->nh
.raw
= skb
->data
;
226 switch (neigh
->dev
->type
) {
228 dptr
= skb_push(skb
, 1);
232 #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
242 skb
->protocol
= htons(ETH_P_X25
);
243 skb
->dev
= neigh
->dev
;