2 * X.25 Packet Layer release 002
4 * This is ALPHA test software. This code may break your machine,
5 * randomly fail to work with new releases, misbehave and/or generally
6 * screw up. It might even work.
8 * This code REQUIRES 2.1.15 or higher
11 * This module is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
17 * X.25 001 Jonathan Naylor Started coding.
18 * X.25 002 Jonathan Naylor New timer architecture.
19 * mar/20/00 Daniela Squassoni Disabling/enabling of facilities
21 * 2000-09-04 Henner Eisen dev_hold() / dev_put() for x25_neigh.
24 #include <linux/kernel.h>
25 #include <linux/jiffies.h>
26 #include <linux/timer.h>
27 #include <linux/slab.h>
28 #include <linux/netdevice.h>
29 #include <linux/skbuff.h>
30 #include <asm/uaccess.h>
31 #include <linux/init.h>
34 LIST_HEAD(x25_neigh_list);
35 DEFINE_RWLOCK(x25_neigh_list_lock);
37 static void x25_t20timer_expiry(unsigned long);
39 static void x25_transmit_restart_confirmation(struct x25_neigh *nb);
40 static void x25_transmit_restart_request(struct x25_neigh *nb);
43 * Linux set/reset timer routines
45 static inline void x25_start_t20timer(struct x25_neigh *nb)
47 mod_timer(&nb->t20timer, jiffies + nb->t20);
50 static void x25_t20timer_expiry(unsigned long param)
52 struct x25_neigh *nb = (struct x25_neigh *)param;
54 x25_transmit_restart_request(nb);
56 x25_start_t20timer(nb);
59 static inline void x25_stop_t20timer(struct x25_neigh *nb)
61 del_timer(&nb->t20timer);
64 static inline int x25_t20timer_pending(struct x25_neigh *nb)
66 return timer_pending(&nb->t20timer);
70 * This handles all restart and diagnostic frames.
72 void x25_link_control(struct sk_buff *skb, struct x25_neigh *nb,
73 unsigned short frametype)
79 case X25_RESTART_REQUEST:
80 confirm = !x25_t20timer_pending(nb);
81 x25_stop_t20timer(nb);
82 nb->state = X25_LINK_STATE_3;
84 x25_transmit_restart_confirmation(nb);
87 case X25_RESTART_CONFIRMATION:
88 x25_stop_t20timer(nb);
89 nb->state = X25_LINK_STATE_3;
93 printk(KERN_WARNING "x25: diagnostic #%d - "
95 skb->data[3], skb->data[4],
96 skb->data[5], skb->data[6]);
100 printk(KERN_WARNING "x25: received unknown %02X "
101 "with LCI 000\n", frametype);
105 if (nb->state == X25_LINK_STATE_3)
106 while ((skbn = skb_dequeue(&nb->queue)) != NULL)
107 x25_send_frame(skbn, nb);
111 * This routine is called when a Restart Request is needed
113 static void x25_transmit_restart_request(struct x25_neigh *nb)
116 int len = X25_MAX_L2_LEN + X25_STD_MIN_LEN + 2;
117 struct sk_buff *skb = alloc_skb(len, GFP_ATOMIC);
122 skb_reserve(skb, X25_MAX_L2_LEN);
124 dptr = skb_put(skb, X25_STD_MIN_LEN + 2);
126 *dptr++ = nb->extended ? X25_GFI_EXTSEQ : X25_GFI_STDSEQ;
128 *dptr++ = X25_RESTART_REQUEST;
134 x25_send_frame(skb, nb);
138 * This routine is called when a Restart Confirmation is needed
140 static void x25_transmit_restart_confirmation(struct x25_neigh *nb)
143 int len = X25_MAX_L2_LEN + X25_STD_MIN_LEN;
144 struct sk_buff *skb = alloc_skb(len, GFP_ATOMIC);
149 skb_reserve(skb, X25_MAX_L2_LEN);
151 dptr = skb_put(skb, X25_STD_MIN_LEN);
153 *dptr++ = nb->extended ? X25_GFI_EXTSEQ : X25_GFI_STDSEQ;
155 *dptr++ = X25_RESTART_CONFIRMATION;
159 x25_send_frame(skb, nb);
163 * This routine is called when a Clear Request is needed outside of the context
164 * of a connected socket.
166 void x25_transmit_clear_request(struct x25_neigh *nb, unsigned int lci,
170 int len = X25_MAX_L2_LEN + X25_STD_MIN_LEN + 2;
171 struct sk_buff *skb = alloc_skb(len, GFP_ATOMIC);
176 skb_reserve(skb, X25_MAX_L2_LEN);
178 dptr = skb_put(skb, X25_STD_MIN_LEN + 2);
180 *dptr++ = ((lci >> 8) & 0x0F) | (nb->extended ?
183 *dptr++ = (lci >> 0) & 0xFF;
184 *dptr++ = X25_CLEAR_REQUEST;
190 x25_send_frame(skb, nb);
193 void x25_transmit_link(struct sk_buff *skb, struct x25_neigh *nb)
196 case X25_LINK_STATE_0:
197 skb_queue_tail(&nb->queue, skb);
198 nb->state = X25_LINK_STATE_1;
199 x25_establish_link(nb);
201 case X25_LINK_STATE_1:
202 case X25_LINK_STATE_2:
203 skb_queue_tail(&nb->queue, skb);
205 case X25_LINK_STATE_3:
206 x25_send_frame(skb, nb);
212 * Called when the link layer has become established.
214 void x25_link_established(struct x25_neigh *nb)
217 case X25_LINK_STATE_0:
218 nb->state = X25_LINK_STATE_2;
220 case X25_LINK_STATE_1:
221 x25_transmit_restart_request(nb);
222 nb->state = X25_LINK_STATE_2;
223 x25_start_t20timer(nb);
229 * Called when the link layer has terminated, or an establishment
230 * request has failed.
233 void x25_link_terminated(struct x25_neigh *nb)
235 nb->state = X25_LINK_STATE_0;
236 /* Out of order: clear existing virtual calls (X.25 03/93 4.6.3) */
237 x25_kill_by_neigh(nb);
243 void x25_link_device_up(struct net_device *dev)
245 struct x25_neigh *nb = kmalloc(sizeof(*nb), GFP_ATOMIC);
250 skb_queue_head_init(&nb->queue);
251 setup_timer(&nb->t20timer, x25_t20timer_expiry, (unsigned long)nb);
255 nb->state = X25_LINK_STATE_0;
258 * Enables negotiation
260 nb->global_facil_mask = X25_MASK_REVERSE |
261 X25_MASK_THROUGHPUT |
262 X25_MASK_PACKET_SIZE |
263 X25_MASK_WINDOW_SIZE;
264 nb->t20 = sysctl_x25_restart_request_timeout;
265 atomic_set(&nb->refcnt, 1);
267 write_lock_bh(&x25_neigh_list_lock);
268 list_add(&nb->node, &x25_neigh_list);
269 write_unlock_bh(&x25_neigh_list_lock);
273 * __x25_remove_neigh - remove neighbour from x25_neigh_list
274 * @nb - neigh to remove
276 * Remove neighbour from x25_neigh_list. If it was there.
277 * Caller must hold x25_neigh_list_lock.
279 static void __x25_remove_neigh(struct x25_neigh *nb)
281 skb_queue_purge(&nb->queue);
282 x25_stop_t20timer(nb);
291 * A device has been removed, remove its links.
293 void x25_link_device_down(struct net_device *dev)
295 struct x25_neigh *nb;
296 struct list_head *entry, *tmp;
298 write_lock_bh(&x25_neigh_list_lock);
300 list_for_each_safe(entry, tmp, &x25_neigh_list) {
301 nb = list_entry(entry, struct x25_neigh, node);
303 if (nb->dev == dev) {
304 __x25_remove_neigh(nb);
309 write_unlock_bh(&x25_neigh_list_lock);
313 * Given a device, return the neighbour address.
315 struct x25_neigh *x25_get_neigh(struct net_device *dev)
317 struct x25_neigh *nb, *use = NULL;
318 struct list_head *entry;
320 read_lock_bh(&x25_neigh_list_lock);
321 list_for_each(entry, &x25_neigh_list) {
322 nb = list_entry(entry, struct x25_neigh, node);
324 if (nb->dev == dev) {
332 read_unlock_bh(&x25_neigh_list_lock);
337 * Handle the ioctls that control the subscription functions.
339 int x25_subscr_ioctl(unsigned int cmd, void __user *arg)
341 struct x25_subscrip_struct x25_subscr;
342 struct x25_neigh *nb;
343 struct net_device *dev;
346 if (cmd != SIOCX25GSUBSCRIP && cmd != SIOCX25SSUBSCRIP)
350 if (copy_from_user(&x25_subscr, arg, sizeof(x25_subscr)))
354 if ((dev = x25_dev_get(x25_subscr.device)) == NULL)
357 if ((nb = x25_get_neigh(dev)) == NULL)
362 if (cmd == SIOCX25GSUBSCRIP) {
363 read_lock_bh(&x25_neigh_list_lock);
364 x25_subscr.extended = nb->extended;
365 x25_subscr.global_facil_mask = nb->global_facil_mask;
366 read_unlock_bh(&x25_neigh_list_lock);
367 rc = copy_to_user(arg, &x25_subscr,
368 sizeof(x25_subscr)) ? -EFAULT : 0;
371 if (!(x25_subscr.extended && x25_subscr.extended != 1)) {
373 write_lock_bh(&x25_neigh_list_lock);
374 nb->extended = x25_subscr.extended;
375 nb->global_facil_mask = x25_subscr.global_facil_mask;
376 write_unlock_bh(&x25_neigh_list_lock);
389 * Release all memory associated with X.25 neighbour structures.
391 void __exit x25_link_free(void)
393 struct x25_neigh *nb;
394 struct list_head *entry, *tmp;
396 write_lock_bh(&x25_neigh_list_lock);
398 list_for_each_safe(entry, tmp, &x25_neigh_list) {
399 struct net_device *dev;
401 nb = list_entry(entry, struct x25_neigh, node);
403 __x25_remove_neigh(nb);
406 write_unlock_bh(&x25_neigh_list_lock);