V4L/DVB (4343): Fix for compilation without V4L1 or V4L1_COMPAT
[linux-2.6/linux-loongson.git] / net / lapb / lapb_iface.c
blobd504eed416f6a468fb95c7d8da9aa2cebdf3813a
1 /*
2 * LAPB release 002
4 * This code REQUIRES 2.1.15 or higher/ NET3.038
6 * This module:
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.
12 * History
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 #include <linux/module.h>
19 #include <linux/errno.h>
20 #include <linux/types.h>
21 #include <linux/socket.h>
22 #include <linux/in.h>
23 #include <linux/kernel.h>
24 #include <linux/jiffies.h>
25 #include <linux/timer.h>
26 #include <linux/string.h>
27 #include <linux/sockios.h>
28 #include <linux/net.h>
29 #include <linux/inet.h>
30 #include <linux/if_arp.h>
31 #include <linux/skbuff.h>
32 #include <net/sock.h>
33 #include <asm/uaccess.h>
34 #include <asm/system.h>
35 #include <linux/fcntl.h>
36 #include <linux/mm.h>
37 #include <linux/interrupt.h>
38 #include <linux/stat.h>
39 #include <linux/init.h>
40 #include <net/lapb.h>
42 static struct list_head lapb_list = LIST_HEAD_INIT(lapb_list);
43 static DEFINE_RWLOCK(lapb_list_lock);
46 * Free an allocated lapb control block.
48 static void lapb_free_cb(struct lapb_cb *lapb)
50 kfree(lapb);
53 static __inline__ void lapb_hold(struct lapb_cb *lapb)
55 atomic_inc(&lapb->refcnt);
58 static __inline__ void lapb_put(struct lapb_cb *lapb)
60 if (atomic_dec_and_test(&lapb->refcnt))
61 lapb_free_cb(lapb);
65 * Socket removal during an interrupt is now safe.
67 static void __lapb_remove_cb(struct lapb_cb *lapb)
69 if (lapb->node.next) {
70 list_del(&lapb->node);
71 lapb_put(lapb);
76 * Add a socket to the bound sockets list.
78 static void __lapb_insert_cb(struct lapb_cb *lapb)
80 list_add(&lapb->node, &lapb_list);
81 lapb_hold(lapb);
84 static struct lapb_cb *__lapb_devtostruct(struct net_device *dev)
86 struct list_head *entry;
87 struct lapb_cb *lapb, *use = NULL;
89 list_for_each(entry, &lapb_list) {
90 lapb = list_entry(entry, struct lapb_cb, node);
91 if (lapb->dev == dev) {
92 use = lapb;
93 break;
97 if (use)
98 lapb_hold(use);
100 return use;
103 static struct lapb_cb *lapb_devtostruct(struct net_device *dev)
105 struct lapb_cb *rc;
107 read_lock_bh(&lapb_list_lock);
108 rc = __lapb_devtostruct(dev);
109 read_unlock_bh(&lapb_list_lock);
111 return rc;
114 * Create an empty LAPB control block.
116 static struct lapb_cb *lapb_create_cb(void)
118 struct lapb_cb *lapb = kzalloc(sizeof(*lapb), GFP_ATOMIC);
121 if (!lapb)
122 goto out;
124 skb_queue_head_init(&lapb->write_queue);
125 skb_queue_head_init(&lapb->ack_queue);
127 init_timer(&lapb->t1timer);
128 init_timer(&lapb->t2timer);
130 lapb->t1 = LAPB_DEFAULT_T1;
131 lapb->t2 = LAPB_DEFAULT_T2;
132 lapb->n2 = LAPB_DEFAULT_N2;
133 lapb->mode = LAPB_DEFAULT_MODE;
134 lapb->window = LAPB_DEFAULT_WINDOW;
135 lapb->state = LAPB_STATE_0;
136 atomic_set(&lapb->refcnt, 1);
137 out:
138 return lapb;
141 int lapb_register(struct net_device *dev, struct lapb_register_struct *callbacks)
143 struct lapb_cb *lapb;
144 int rc = LAPB_BADTOKEN;
146 write_lock_bh(&lapb_list_lock);
148 lapb = __lapb_devtostruct(dev);
149 if (lapb) {
150 lapb_put(lapb);
151 goto out;
154 lapb = lapb_create_cb();
155 rc = LAPB_NOMEM;
156 if (!lapb)
157 goto out;
159 lapb->dev = dev;
160 lapb->callbacks = *callbacks;
162 __lapb_insert_cb(lapb);
164 lapb_start_t1timer(lapb);
166 rc = LAPB_OK;
167 out:
168 write_unlock_bh(&lapb_list_lock);
169 return rc;
172 int lapb_unregister(struct net_device *dev)
174 struct lapb_cb *lapb;
175 int rc = LAPB_BADTOKEN;
177 write_lock_bh(&lapb_list_lock);
178 lapb = __lapb_devtostruct(dev);
179 if (!lapb)
180 goto out;
182 lapb_stop_t1timer(lapb);
183 lapb_stop_t2timer(lapb);
185 lapb_clear_queues(lapb);
187 __lapb_remove_cb(lapb);
189 lapb_put(lapb);
190 rc = LAPB_OK;
191 out:
192 write_unlock_bh(&lapb_list_lock);
193 return rc;
196 int lapb_getparms(struct net_device *dev, struct lapb_parms_struct *parms)
198 int rc = LAPB_BADTOKEN;
199 struct lapb_cb *lapb = lapb_devtostruct(dev);
201 if (!lapb)
202 goto out;
204 parms->t1 = lapb->t1 / HZ;
205 parms->t2 = lapb->t2 / HZ;
206 parms->n2 = lapb->n2;
207 parms->n2count = lapb->n2count;
208 parms->state = lapb->state;
209 parms->window = lapb->window;
210 parms->mode = lapb->mode;
212 if (!timer_pending(&lapb->t1timer))
213 parms->t1timer = 0;
214 else
215 parms->t1timer = (lapb->t1timer.expires - jiffies) / HZ;
217 if (!timer_pending(&lapb->t2timer))
218 parms->t2timer = 0;
219 else
220 parms->t2timer = (lapb->t2timer.expires - jiffies) / HZ;
222 lapb_put(lapb);
223 rc = LAPB_OK;
224 out:
225 return rc;
228 int lapb_setparms(struct net_device *dev, struct lapb_parms_struct *parms)
230 int rc = LAPB_BADTOKEN;
231 struct lapb_cb *lapb = lapb_devtostruct(dev);
233 if (!lapb)
234 goto out;
236 rc = LAPB_INVALUE;
237 if (parms->t1 < 1 || parms->t2 < 1 || parms->n2 < 1)
238 goto out_put;
240 if (lapb->state == LAPB_STATE_0) {
241 if (((parms->mode & LAPB_EXTENDED) &&
242 (parms->window < 1 || parms->window > 127)) ||
243 (parms->window < 1 || parms->window > 7))
244 goto out_put;
246 lapb->mode = parms->mode;
247 lapb->window = parms->window;
250 lapb->t1 = parms->t1 * HZ;
251 lapb->t2 = parms->t2 * HZ;
252 lapb->n2 = parms->n2;
254 rc = LAPB_OK;
255 out_put:
256 lapb_put(lapb);
257 out:
258 return rc;
261 int lapb_connect_request(struct net_device *dev)
263 struct lapb_cb *lapb = lapb_devtostruct(dev);
264 int rc = LAPB_BADTOKEN;
266 if (!lapb)
267 goto out;
269 rc = LAPB_OK;
270 if (lapb->state == LAPB_STATE_1)
271 goto out_put;
273 rc = LAPB_CONNECTED;
274 if (lapb->state == LAPB_STATE_3 || lapb->state == LAPB_STATE_4)
275 goto out_put;
277 lapb_establish_data_link(lapb);
279 #if LAPB_DEBUG > 0
280 printk(KERN_DEBUG "lapb: (%p) S0 -> S1\n", lapb->dev);
281 #endif
282 lapb->state = LAPB_STATE_1;
284 rc = LAPB_OK;
285 out_put:
286 lapb_put(lapb);
287 out:
288 return rc;
291 int lapb_disconnect_request(struct net_device *dev)
293 struct lapb_cb *lapb = lapb_devtostruct(dev);
294 int rc = LAPB_BADTOKEN;
296 if (!lapb)
297 goto out;
299 switch (lapb->state) {
300 case LAPB_STATE_0:
301 rc = LAPB_NOTCONNECTED;
302 goto out_put;
304 case LAPB_STATE_1:
305 #if LAPB_DEBUG > 1
306 printk(KERN_DEBUG "lapb: (%p) S1 TX DISC(1)\n", lapb->dev);
307 #endif
308 #if LAPB_DEBUG > 0
309 printk(KERN_DEBUG "lapb: (%p) S1 -> S0\n", lapb->dev);
310 #endif
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;
315 goto out_put;
317 case LAPB_STATE_2:
318 rc = LAPB_OK;
319 goto out_put;
322 lapb_clear_queues(lapb);
323 lapb->n2count = 0;
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 #if LAPB_DEBUG > 1
330 printk(KERN_DEBUG "lapb: (%p) S3 DISC(1)\n", lapb->dev);
331 #endif
332 #if LAPB_DEBUG > 0
333 printk(KERN_DEBUG "lapb: (%p) S3 -> S2\n", lapb->dev);
334 #endif
336 rc = LAPB_OK;
337 out_put:
338 lapb_put(lapb);
339 out:
340 return rc;
343 int lapb_data_request(struct net_device *dev, struct sk_buff *skb)
345 struct lapb_cb *lapb = lapb_devtostruct(dev);
346 int rc = LAPB_BADTOKEN;
348 if (!lapb)
349 goto out;
351 rc = LAPB_NOTCONNECTED;
352 if (lapb->state != LAPB_STATE_3 && lapb->state != LAPB_STATE_4)
353 goto out_put;
355 skb_queue_tail(&lapb->write_queue, skb);
356 lapb_kick(lapb);
357 rc = LAPB_OK;
358 out_put:
359 lapb_put(lapb);
360 out:
361 return rc;
364 int lapb_data_received(struct net_device *dev, struct sk_buff *skb)
366 struct lapb_cb *lapb = lapb_devtostruct(dev);
367 int rc = LAPB_BADTOKEN;
369 if (lapb) {
370 lapb_data_input(lapb, skb);
371 lapb_put(lapb);
372 rc = LAPB_OK;
375 return rc;
378 void lapb_connect_confirmation(struct lapb_cb *lapb, int reason)
380 if (lapb->callbacks.connect_confirmation)
381 lapb->callbacks.connect_confirmation(lapb->dev, reason);
384 void lapb_connect_indication(struct lapb_cb *lapb, int reason)
386 if (lapb->callbacks.connect_indication)
387 lapb->callbacks.connect_indication(lapb->dev, reason);
390 void lapb_disconnect_confirmation(struct lapb_cb *lapb, int reason)
392 if (lapb->callbacks.disconnect_confirmation)
393 lapb->callbacks.disconnect_confirmation(lapb->dev, reason);
396 void lapb_disconnect_indication(struct lapb_cb *lapb, int reason)
398 if (lapb->callbacks.disconnect_indication)
399 lapb->callbacks.disconnect_indication(lapb->dev, reason);
402 int lapb_data_indication(struct lapb_cb *lapb, struct sk_buff *skb)
404 if (lapb->callbacks.data_indication)
405 return lapb->callbacks.data_indication(lapb->dev, skb);
407 kfree_skb(skb);
408 return NET_RX_CN_HIGH; /* For now; must be != NET_RX_DROP */
411 int lapb_data_transmit(struct lapb_cb *lapb, struct sk_buff *skb)
413 int used = 0;
415 if (lapb->callbacks.data_transmit) {
416 lapb->callbacks.data_transmit(lapb->dev, skb);
417 used = 1;
420 return used;
423 EXPORT_SYMBOL(lapb_register);
424 EXPORT_SYMBOL(lapb_unregister);
425 EXPORT_SYMBOL(lapb_getparms);
426 EXPORT_SYMBOL(lapb_setparms);
427 EXPORT_SYMBOL(lapb_connect_request);
428 EXPORT_SYMBOL(lapb_disconnect_request);
429 EXPORT_SYMBOL(lapb_data_request);
430 EXPORT_SYMBOL(lapb_data_received);
432 static int __init lapb_init(void)
434 return 0;
437 static void __exit lapb_exit(void)
439 WARN_ON(!list_empty(&lapb_list));
442 MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
443 MODULE_DESCRIPTION("The X.25 Link Access Procedure B link layer protocol");
444 MODULE_LICENSE("GPL");
446 module_init(lapb_init);
447 module_exit(lapb_exit);