1 // SPDX-License-Identifier: GPL-2.0-or-later
5 * This code REQUIRES 2.1.15 or higher/ NET3.038
8 * LAPB 001 Jonathan Naylor Started Coding
9 * LAPB 002 Jonathan Naylor New timer architecture.
10 * 2000-10-29 Henner Eisen lapb_data_indication() return status.
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/module.h>
16 #include <linux/errno.h>
17 #include <linux/types.h>
18 #include <linux/socket.h>
20 #include <linux/kernel.h>
21 #include <linux/jiffies.h>
22 #include <linux/timer.h>
23 #include <linux/string.h>
24 #include <linux/sockios.h>
25 #include <linux/net.h>
26 #include <linux/inet.h>
27 #include <linux/if_arp.h>
28 #include <linux/skbuff.h>
29 #include <linux/slab.h>
31 #include <linux/uaccess.h>
32 #include <linux/fcntl.h>
34 #include <linux/interrupt.h>
35 #include <linux/stat.h>
36 #include <linux/init.h>
39 static LIST_HEAD(lapb_list
);
40 static DEFINE_RWLOCK(lapb_list_lock
);
43 * Free an allocated lapb control block.
45 static void lapb_free_cb(struct lapb_cb
*lapb
)
50 static __inline__
void lapb_hold(struct lapb_cb
*lapb
)
52 refcount_inc(&lapb
->refcnt
);
55 static __inline__
void lapb_put(struct lapb_cb
*lapb
)
57 if (refcount_dec_and_test(&lapb
->refcnt
))
62 * Socket removal during an interrupt is now safe.
64 static void __lapb_remove_cb(struct lapb_cb
*lapb
)
66 if (lapb
->node
.next
) {
67 list_del(&lapb
->node
);
71 EXPORT_SYMBOL(lapb_register
);
74 * Add a socket to the bound sockets list.
76 static void __lapb_insert_cb(struct lapb_cb
*lapb
)
78 list_add(&lapb
->node
, &lapb_list
);
82 static struct lapb_cb
*__lapb_devtostruct(struct net_device
*dev
)
84 struct list_head
*entry
;
85 struct lapb_cb
*lapb
, *use
= NULL
;
87 list_for_each(entry
, &lapb_list
) {
88 lapb
= list_entry(entry
, struct lapb_cb
, node
);
89 if (lapb
->dev
== dev
) {
101 static struct lapb_cb
*lapb_devtostruct(struct net_device
*dev
)
105 read_lock_bh(&lapb_list_lock
);
106 rc
= __lapb_devtostruct(dev
);
107 read_unlock_bh(&lapb_list_lock
);
112 * Create an empty LAPB control block.
114 static struct lapb_cb
*lapb_create_cb(void)
116 struct lapb_cb
*lapb
= kzalloc(sizeof(*lapb
), GFP_ATOMIC
);
122 skb_queue_head_init(&lapb
->write_queue
);
123 skb_queue_head_init(&lapb
->ack_queue
);
125 timer_setup(&lapb
->t1timer
, NULL
, 0);
126 timer_setup(&lapb
->t2timer
, NULL
, 0);
128 lapb
->t1
= LAPB_DEFAULT_T1
;
129 lapb
->t2
= LAPB_DEFAULT_T2
;
130 lapb
->n2
= LAPB_DEFAULT_N2
;
131 lapb
->mode
= LAPB_DEFAULT_MODE
;
132 lapb
->window
= LAPB_DEFAULT_WINDOW
;
133 lapb
->state
= LAPB_STATE_0
;
134 refcount_set(&lapb
->refcnt
, 1);
139 int lapb_register(struct net_device
*dev
,
140 const struct lapb_register_struct
*callbacks
)
142 struct lapb_cb
*lapb
;
143 int rc
= LAPB_BADTOKEN
;
145 write_lock_bh(&lapb_list_lock
);
147 lapb
= __lapb_devtostruct(dev
);
153 lapb
= lapb_create_cb();
159 lapb
->callbacks
= callbacks
;
161 __lapb_insert_cb(lapb
);
163 lapb_start_t1timer(lapb
);
167 write_unlock_bh(&lapb_list_lock
);
171 int lapb_unregister(struct net_device
*dev
)
173 struct lapb_cb
*lapb
;
174 int rc
= LAPB_BADTOKEN
;
176 write_lock_bh(&lapb_list_lock
);
177 lapb
= __lapb_devtostruct(dev
);
182 lapb_stop_t1timer(lapb
);
183 lapb_stop_t2timer(lapb
);
185 lapb_clear_queues(lapb
);
187 __lapb_remove_cb(lapb
);
192 write_unlock_bh(&lapb_list_lock
);
195 EXPORT_SYMBOL(lapb_unregister
);
197 int lapb_getparms(struct net_device
*dev
, struct lapb_parms_struct
*parms
)
199 int rc
= LAPB_BADTOKEN
;
200 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
205 parms
->t1
= lapb
->t1
/ HZ
;
206 parms
->t2
= lapb
->t2
/ HZ
;
207 parms
->n2
= lapb
->n2
;
208 parms
->n2count
= lapb
->n2count
;
209 parms
->state
= lapb
->state
;
210 parms
->window
= lapb
->window
;
211 parms
->mode
= lapb
->mode
;
213 if (!timer_pending(&lapb
->t1timer
))
216 parms
->t1timer
= (lapb
->t1timer
.expires
- jiffies
) / HZ
;
218 if (!timer_pending(&lapb
->t2timer
))
221 parms
->t2timer
= (lapb
->t2timer
.expires
- jiffies
) / HZ
;
228 EXPORT_SYMBOL(lapb_getparms
);
230 int lapb_setparms(struct net_device
*dev
, struct lapb_parms_struct
*parms
)
232 int rc
= LAPB_BADTOKEN
;
233 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
239 if (parms
->t1
< 1 || parms
->t2
< 1 || parms
->n2
< 1)
242 if (lapb
->state
== LAPB_STATE_0
) {
243 if (parms
->mode
& LAPB_EXTENDED
) {
244 if (parms
->window
< 1 || parms
->window
> 127)
247 if (parms
->window
< 1 || parms
->window
> 7)
250 lapb
->mode
= parms
->mode
;
251 lapb
->window
= parms
->window
;
254 lapb
->t1
= parms
->t1
* HZ
;
255 lapb
->t2
= parms
->t2
* HZ
;
256 lapb
->n2
= parms
->n2
;
264 EXPORT_SYMBOL(lapb_setparms
);
266 int lapb_connect_request(struct net_device
*dev
)
268 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
269 int rc
= LAPB_BADTOKEN
;
275 if (lapb
->state
== LAPB_STATE_1
)
279 if (lapb
->state
== LAPB_STATE_3
|| lapb
->state
== LAPB_STATE_4
)
282 lapb_establish_data_link(lapb
);
284 lapb_dbg(0, "(%p) S0 -> S1\n", lapb
->dev
);
285 lapb
->state
= LAPB_STATE_1
;
293 EXPORT_SYMBOL(lapb_connect_request
);
295 int lapb_disconnect_request(struct net_device
*dev
)
297 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
298 int rc
= LAPB_BADTOKEN
;
303 switch (lapb
->state
) {
305 rc
= LAPB_NOTCONNECTED
;
309 lapb_dbg(1, "(%p) S1 TX DISC(1)\n", lapb
->dev
);
310 lapb_dbg(0, "(%p) S1 -> S0\n", lapb
->dev
);
311 lapb_send_control(lapb
, LAPB_DISC
, LAPB_POLLON
, LAPB_COMMAND
);
312 lapb
->state
= LAPB_STATE_0
;
313 lapb_start_t1timer(lapb
);
314 rc
= LAPB_NOTCONNECTED
;
322 lapb_clear_queues(lapb
);
324 lapb_send_control(lapb
, LAPB_DISC
, LAPB_POLLON
, LAPB_COMMAND
);
325 lapb_start_t1timer(lapb
);
326 lapb_stop_t2timer(lapb
);
327 lapb
->state
= LAPB_STATE_2
;
329 lapb_dbg(1, "(%p) S3 DISC(1)\n", lapb
->dev
);
330 lapb_dbg(0, "(%p) S3 -> S2\n", lapb
->dev
);
338 EXPORT_SYMBOL(lapb_disconnect_request
);
340 int lapb_data_request(struct net_device
*dev
, struct sk_buff
*skb
)
342 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
343 int rc
= LAPB_BADTOKEN
;
348 rc
= LAPB_NOTCONNECTED
;
349 if (lapb
->state
!= LAPB_STATE_3
&& lapb
->state
!= LAPB_STATE_4
)
352 skb_queue_tail(&lapb
->write_queue
, skb
);
360 EXPORT_SYMBOL(lapb_data_request
);
362 int lapb_data_received(struct net_device
*dev
, struct sk_buff
*skb
)
364 struct lapb_cb
*lapb
= lapb_devtostruct(dev
);
365 int rc
= LAPB_BADTOKEN
;
368 lapb_data_input(lapb
, skb
);
375 EXPORT_SYMBOL(lapb_data_received
);
377 void lapb_connect_confirmation(struct lapb_cb
*lapb
, int reason
)
379 if (lapb
->callbacks
->connect_confirmation
)
380 lapb
->callbacks
->connect_confirmation(lapb
->dev
, reason
);
383 void lapb_connect_indication(struct lapb_cb
*lapb
, int reason
)
385 if (lapb
->callbacks
->connect_indication
)
386 lapb
->callbacks
->connect_indication(lapb
->dev
, reason
);
389 void lapb_disconnect_confirmation(struct lapb_cb
*lapb
, int reason
)
391 if (lapb
->callbacks
->disconnect_confirmation
)
392 lapb
->callbacks
->disconnect_confirmation(lapb
->dev
, reason
);
395 void lapb_disconnect_indication(struct lapb_cb
*lapb
, int reason
)
397 if (lapb
->callbacks
->disconnect_indication
)
398 lapb
->callbacks
->disconnect_indication(lapb
->dev
, reason
);
401 int lapb_data_indication(struct lapb_cb
*lapb
, struct sk_buff
*skb
)
403 if (lapb
->callbacks
->data_indication
)
404 return lapb
->callbacks
->data_indication(lapb
->dev
, skb
);
407 return NET_RX_SUCCESS
; /* For now; must be != NET_RX_DROP */
410 int lapb_data_transmit(struct lapb_cb
*lapb
, struct sk_buff
*skb
)
414 if (lapb
->callbacks
->data_transmit
) {
415 lapb
->callbacks
->data_transmit(lapb
->dev
, skb
);
422 static int __init
lapb_init(void)
427 static void __exit
lapb_exit(void)
429 WARN_ON(!list_empty(&lapb_list
));
432 MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
433 MODULE_DESCRIPTION("The X.25 Link Access Procedure B link layer protocol");
434 MODULE_LICENSE("GPL");
436 module_init(lapb_init
);
437 module_exit(lapb_exit
);