4 * This code REQUIRES 2.1.15 or higher/ NET3.038
7 * This module is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation; either version
10 * 2 of the License, or (at your option) any later version.
13 * LAPB 001 Jonathan Naylor Started Coding
14 * LAPB 002 Jonathan Naylor New timer architecture.
15 * 2000-10-29 Henner Eisen lapb_data_indication() return status.
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20 #include <linux/module.h>
21 #include <linux/errno.h>
22 #include <linux/types.h>
23 #include <linux/socket.h>
25 #include <linux/kernel.h>
26 #include <linux/jiffies.h>
27 #include <linux/timer.h>
28 #include <linux/string.h>
29 #include <linux/sockios.h>
30 #include <linux/net.h>
31 #include <linux/inet.h>
32 #include <linux/if_arp.h>
33 #include <linux/skbuff.h>
34 #include <linux/slab.h>
36 #include <linux/uaccess.h>
37 #include <linux/fcntl.h>
39 #include <linux/interrupt.h>
40 #include <linux/stat.h>
41 #include <linux/init.h>
44 static LIST_HEAD(lapb_list
);
45 static DEFINE_RWLOCK(lapb_list_lock
);
48 * Free an allocated lapb control block.
50 static void lapb_free_cb(struct lapb_cb
*lapb
)
55 static __inline__
void lapb_hold(struct lapb_cb
*lapb
)
57 refcount_inc(&lapb
->refcnt
);
60 static __inline__
void lapb_put(struct lapb_cb
*lapb
)
62 if (refcount_dec_and_test(&lapb
->refcnt
))
67 * Socket removal during an interrupt is now safe.
69 static void __lapb_remove_cb(struct lapb_cb
*lapb
)
71 if (lapb
->node
.next
) {
72 list_del(&lapb
->node
);
76 EXPORT_SYMBOL(lapb_register
);
79 * Add a socket to the bound sockets list.
81 static void __lapb_insert_cb(struct lapb_cb
*lapb
)
83 list_add(&lapb
->node
, &lapb_list
);
87 static struct lapb_cb
*__lapb_devtostruct(struct net_device
*dev
)
89 struct list_head
*entry
;
90 struct lapb_cb
*lapb
, *use
= NULL
;
92 list_for_each(entry
, &lapb_list
) {
93 lapb
= list_entry(entry
, struct lapb_cb
, node
);
94 if (lapb
->dev
== dev
) {
106 static struct lapb_cb
*lapb_devtostruct(struct net_device
*dev
)
110 read_lock_bh(&lapb_list_lock
);
111 rc
= __lapb_devtostruct(dev
);
112 read_unlock_bh(&lapb_list_lock
);
117 * Create an empty LAPB control block.
119 static struct lapb_cb
*lapb_create_cb(void)
121 struct lapb_cb
*lapb
= kzalloc(sizeof(*lapb
), GFP_ATOMIC
);
127 skb_queue_head_init(&lapb
->write_queue
);
128 skb_queue_head_init(&lapb
->ack_queue
);
130 timer_setup(&lapb
->t1timer
, NULL
, 0);
131 timer_setup(&lapb
->t2timer
, NULL
, 0);
133 lapb
->t1
= LAPB_DEFAULT_T1
;
134 lapb
->t2
= LAPB_DEFAULT_T2
;
135 lapb
->n2
= LAPB_DEFAULT_N2
;
136 lapb
->mode
= LAPB_DEFAULT_MODE
;
137 lapb
->window
= LAPB_DEFAULT_WINDOW
;
138 lapb
->state
= LAPB_STATE_0
;
139 refcount_set(&lapb
->refcnt
, 1);
144 int lapb_register(struct net_device
*dev
,
145 const struct lapb_register_struct
*callbacks
)
147 struct lapb_cb
*lapb
;
148 int rc
= LAPB_BADTOKEN
;
150 write_lock_bh(&lapb_list_lock
);
152 lapb
= __lapb_devtostruct(dev
);
158 lapb
= lapb_create_cb();
164 lapb
->callbacks
= callbacks
;
166 __lapb_insert_cb(lapb
);
168 lapb_start_t1timer(lapb
);
172 write_unlock_bh(&lapb_list_lock
);
176 int lapb_unregister(struct net_device
*dev
)
178 struct lapb_cb
*lapb
;
179 int rc
= LAPB_BADTOKEN
;
181 write_lock_bh(&lapb_list_lock
);
182 lapb
= __lapb_devtostruct(dev
);
187 lapb_stop_t1timer(lapb
);
188 lapb_stop_t2timer(lapb
);
190 lapb_clear_queues(lapb
);
192 __lapb_remove_cb(lapb
);
197 write_unlock_bh(&lapb_list_lock
);
200 EXPORT_SYMBOL(lapb_unregister
);
202 int lapb_getparms(struct net_device
*dev
, struct lapb_parms_struct
*parms
)
204 int rc
= LAPB_BADTOKEN
;
205 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
210 parms
->t1
= lapb
->t1
/ HZ
;
211 parms
->t2
= lapb
->t2
/ HZ
;
212 parms
->n2
= lapb
->n2
;
213 parms
->n2count
= lapb
->n2count
;
214 parms
->state
= lapb
->state
;
215 parms
->window
= lapb
->window
;
216 parms
->mode
= lapb
->mode
;
218 if (!timer_pending(&lapb
->t1timer
))
221 parms
->t1timer
= (lapb
->t1timer
.expires
- jiffies
) / HZ
;
223 if (!timer_pending(&lapb
->t2timer
))
226 parms
->t2timer
= (lapb
->t2timer
.expires
- jiffies
) / HZ
;
233 EXPORT_SYMBOL(lapb_getparms
);
235 int lapb_setparms(struct net_device
*dev
, struct lapb_parms_struct
*parms
)
237 int rc
= LAPB_BADTOKEN
;
238 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
244 if (parms
->t1
< 1 || parms
->t2
< 1 || parms
->n2
< 1)
247 if (lapb
->state
== LAPB_STATE_0
) {
248 if (parms
->mode
& LAPB_EXTENDED
) {
249 if (parms
->window
< 1 || parms
->window
> 127)
252 if (parms
->window
< 1 || parms
->window
> 7)
255 lapb
->mode
= parms
->mode
;
256 lapb
->window
= parms
->window
;
259 lapb
->t1
= parms
->t1
* HZ
;
260 lapb
->t2
= parms
->t2
* HZ
;
261 lapb
->n2
= parms
->n2
;
269 EXPORT_SYMBOL(lapb_setparms
);
271 int lapb_connect_request(struct net_device
*dev
)
273 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
274 int rc
= LAPB_BADTOKEN
;
280 if (lapb
->state
== LAPB_STATE_1
)
284 if (lapb
->state
== LAPB_STATE_3
|| lapb
->state
== LAPB_STATE_4
)
287 lapb_establish_data_link(lapb
);
289 lapb_dbg(0, "(%p) S0 -> S1\n", lapb
->dev
);
290 lapb
->state
= LAPB_STATE_1
;
298 EXPORT_SYMBOL(lapb_connect_request
);
300 int lapb_disconnect_request(struct net_device
*dev
)
302 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
303 int rc
= LAPB_BADTOKEN
;
308 switch (lapb
->state
) {
310 rc
= LAPB_NOTCONNECTED
;
314 lapb_dbg(1, "(%p) S1 TX DISC(1)\n", lapb
->dev
);
315 lapb_dbg(0, "(%p) S1 -> S0\n", lapb
->dev
);
316 lapb_send_control(lapb
, LAPB_DISC
, LAPB_POLLON
, LAPB_COMMAND
);
317 lapb
->state
= LAPB_STATE_0
;
318 lapb_start_t1timer(lapb
);
319 rc
= LAPB_NOTCONNECTED
;
327 lapb_clear_queues(lapb
);
329 lapb_send_control(lapb
, LAPB_DISC
, LAPB_POLLON
, LAPB_COMMAND
);
330 lapb_start_t1timer(lapb
);
331 lapb_stop_t2timer(lapb
);
332 lapb
->state
= LAPB_STATE_2
;
334 lapb_dbg(1, "(%p) S3 DISC(1)\n", lapb
->dev
);
335 lapb_dbg(0, "(%p) S3 -> S2\n", lapb
->dev
);
343 EXPORT_SYMBOL(lapb_disconnect_request
);
345 int lapb_data_request(struct net_device
*dev
, struct sk_buff
*skb
)
347 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
348 int rc
= LAPB_BADTOKEN
;
353 rc
= LAPB_NOTCONNECTED
;
354 if (lapb
->state
!= LAPB_STATE_3
&& lapb
->state
!= LAPB_STATE_4
)
357 skb_queue_tail(&lapb
->write_queue
, skb
);
365 EXPORT_SYMBOL(lapb_data_request
);
367 int lapb_data_received(struct net_device
*dev
, struct sk_buff
*skb
)
369 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
370 int rc
= LAPB_BADTOKEN
;
373 lapb_data_input(lapb
, skb
);
380 EXPORT_SYMBOL(lapb_data_received
);
382 void lapb_connect_confirmation(struct lapb_cb
*lapb
, int reason
)
384 if (lapb
->callbacks
->connect_confirmation
)
385 lapb
->callbacks
->connect_confirmation(lapb
->dev
, reason
);
388 void lapb_connect_indication(struct lapb_cb
*lapb
, int reason
)
390 if (lapb
->callbacks
->connect_indication
)
391 lapb
->callbacks
->connect_indication(lapb
->dev
, reason
);
394 void lapb_disconnect_confirmation(struct lapb_cb
*lapb
, int reason
)
396 if (lapb
->callbacks
->disconnect_confirmation
)
397 lapb
->callbacks
->disconnect_confirmation(lapb
->dev
, reason
);
400 void lapb_disconnect_indication(struct lapb_cb
*lapb
, int reason
)
402 if (lapb
->callbacks
->disconnect_indication
)
403 lapb
->callbacks
->disconnect_indication(lapb
->dev
, reason
);
406 int lapb_data_indication(struct lapb_cb
*lapb
, struct sk_buff
*skb
)
408 if (lapb
->callbacks
->data_indication
)
409 return lapb
->callbacks
->data_indication(lapb
->dev
, skb
);
412 return NET_RX_SUCCESS
; /* For now; must be != NET_RX_DROP */
415 int lapb_data_transmit(struct lapb_cb
*lapb
, struct sk_buff
*skb
)
419 if (lapb
->callbacks
->data_transmit
) {
420 lapb
->callbacks
->data_transmit(lapb
->dev
, skb
);
427 static int __init
lapb_init(void)
432 static void __exit
lapb_exit(void)
434 WARN_ON(!list_empty(&lapb_list
));
437 MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
438 MODULE_DESCRIPTION("The X.25 Link Access Procedure B link layer protocol");
439 MODULE_LICENSE("GPL");
441 module_init(lapb_init
);
442 module_exit(lapb_exit
);