blob: 39ce03e07d1804f839ac6b5c32e250de6d2e25b6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * X.25 Packet Layer release 002
3 *
4 * This is ALPHA test software. This code may break your machine,
5 * randomly fail to work with new releases, misbehave and/or generally
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09006 * screw up. It might even work.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This code REQUIRES 2.1.15 or higher
9 *
10 * This module:
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.
15 *
16 * History
17 * X.25 001 Jonathan Naylor Started coding.
18 * X.25 002 Jonathan Naylor Centralised disconnect handling.
19 * New timer architecture.
20 * 2000-03-11 Henner Eisen MSG_EOR handling more POSIX compliant.
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +090021 * 2000-03-22 Daniela Squassoni Allowed disabling/enabling of
22 * facilities negotiation and increased
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 * the throughput upper limit.
24 * 2000-08-27 Arnaldo C. Melo s/suser/capable/ + micro cleanups
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +090025 * 2000-09-04 Henner Eisen Set sock->state in x25_accept().
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 * Fixed x25_output() related skb leakage.
27 * 2000-10-02 Henner Eisen Made x25_kick() single threaded per socket.
28 * 2000-10-27 Henner Eisen MSG_DONTWAIT for fragment allocation.
29 * 2000-11-14 Henner Eisen Closing datalink from NETDEV_GOING_DOWN
30 * 2002-10-06 Arnaldo C. Melo Get rid of cli/sti, move proc stuff to
31 * x25_proc.c, using seq_file
Shaun Pereiracb65d502005-06-22 22:15:01 -070032 * 2005-04-02 Shaun Pereira Selective sub address matching
33 * with call user data
Shaun Pereiraebc3f642005-06-22 22:16:17 -070034 * 2005-04-15 Shaun Pereira Fast select with no restriction on
35 * response
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 */
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/module.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080039#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/errno.h>
41#include <linux/kernel.h>
42#include <linux/sched.h>
Alexey Dobriyan405f5572009-07-11 22:08:37 +040043#include <linux/smp_lock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <linux/timer.h>
45#include <linux/string.h>
46#include <linux/net.h>
47#include <linux/netdevice.h>
48#include <linux/if_arp.h>
49#include <linux/skbuff.h>
50#include <net/sock.h>
Arnaldo Carvalho de Meloc752f072005-08-09 20:08:28 -070051#include <net/tcp_states.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052#include <asm/uaccess.h>
53#include <linux/fcntl.h>
54#include <linux/termios.h> /* For TIOCINQ/OUTQ */
55#include <linux/notifier.h>
56#include <linux/init.h>
Shaun Pereira1b06e6b2006-03-22 00:00:12 -080057#include <linux/compat.h>
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <net/x25.h>
Shaun Pereira1b06e6b2006-03-22 00:00:12 -080060#include <net/compat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62int sysctl_x25_restart_request_timeout = X25_DEFAULT_T20;
63int sysctl_x25_call_request_timeout = X25_DEFAULT_T21;
64int sysctl_x25_reset_request_timeout = X25_DEFAULT_T22;
65int sysctl_x25_clear_request_timeout = X25_DEFAULT_T23;
66int sysctl_x25_ack_holdback_timeout = X25_DEFAULT_T2;
Andrew Hendry39e21c02007-02-08 13:34:36 -080067int sysctl_x25_forward = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69HLIST_HEAD(x25_list);
70DEFINE_RWLOCK(x25_list_lock);
71
Eric Dumazet90ddc4f2005-12-22 12:49:22 -080072static const struct proto_ops x25_proto_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073
74static struct x25_address null_x25_address = {" "};
75
Shaun Pereira1b06e6b2006-03-22 00:00:12 -080076#ifdef CONFIG_COMPAT
77struct compat_x25_subscrip_struct {
78 char device[200-sizeof(compat_ulong_t)];
79 compat_ulong_t global_facil_mask;
80 compat_uint_t extended;
81};
82#endif
83
Linus Torvalds1da177e2005-04-16 15:20:36 -070084int x25_addr_ntoa(unsigned char *p, struct x25_address *called_addr,
85 struct x25_address *calling_addr)
86{
Eric Dumazet6bf15742008-01-13 22:27:52 -080087 unsigned int called_len, calling_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 char *called, *calling;
Eric Dumazet6bf15742008-01-13 22:27:52 -080089 unsigned int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
91 called_len = (*p >> 0) & 0x0F;
92 calling_len = (*p >> 4) & 0x0F;
93
94 called = called_addr->x25_addr;
95 calling = calling_addr->x25_addr;
96 p++;
97
98 for (i = 0; i < (called_len + calling_len); i++) {
99 if (i < called_len) {
100 if (i % 2 != 0) {
101 *called++ = ((*p >> 0) & 0x0F) + '0';
102 p++;
103 } else {
104 *called++ = ((*p >> 4) & 0x0F) + '0';
105 }
106 } else {
107 if (i % 2 != 0) {
108 *calling++ = ((*p >> 0) & 0x0F) + '0';
109 p++;
110 } else {
111 *calling++ = ((*p >> 4) & 0x0F) + '0';
112 }
113 }
114 }
115
116 *called = *calling = '\0';
117
118 return 1 + (called_len + calling_len + 1) / 2;
119}
120
121int x25_addr_aton(unsigned char *p, struct x25_address *called_addr,
122 struct x25_address *calling_addr)
123{
124 unsigned int called_len, calling_len;
125 char *called, *calling;
126 int i;
127
128 called = called_addr->x25_addr;
129 calling = calling_addr->x25_addr;
130
131 called_len = strlen(called);
132 calling_len = strlen(calling);
133
134 *p++ = (calling_len << 4) | (called_len << 0);
135
136 for (i = 0; i < (called_len + calling_len); i++) {
137 if (i < called_len) {
138 if (i % 2 != 0) {
139 *p |= (*called++ - '0') << 0;
140 p++;
141 } else {
142 *p = 0x00;
143 *p |= (*called++ - '0') << 4;
144 }
145 } else {
146 if (i % 2 != 0) {
147 *p |= (*calling++ - '0') << 0;
148 p++;
149 } else {
150 *p = 0x00;
151 *p |= (*calling++ - '0') << 4;
152 }
153 }
154 }
155
156 return 1 + (called_len + calling_len + 1) / 2;
157}
158
159/*
160 * Socket removal during an interrupt is now safe.
161 */
162static void x25_remove_socket(struct sock *sk)
163{
164 write_lock_bh(&x25_list_lock);
165 sk_del_node_init(sk);
166 write_unlock_bh(&x25_list_lock);
167}
168
169/*
170 * Kill all bound sockets on a dropped device.
171 */
172static void x25_kill_by_device(struct net_device *dev)
173{
174 struct sock *s;
175 struct hlist_node *node;
176
177 write_lock_bh(&x25_list_lock);
178
179 sk_for_each(s, node, &x25_list)
180 if (x25_sk(s)->neighbour && x25_sk(s)->neighbour->dev == dev)
181 x25_disconnect(s, ENETUNREACH, 0, 0);
182
183 write_unlock_bh(&x25_list_lock);
184}
185
186/*
187 * Handle device status changes.
188 */
189static int x25_device_event(struct notifier_block *this, unsigned long event,
190 void *ptr)
191{
192 struct net_device *dev = ptr;
193 struct x25_neigh *nb;
194
YOSHIFUJI Hideaki721499e2008-07-19 22:34:43 -0700195 if (!net_eq(dev_net(dev), &init_net))
Eric W. Biedermane9dc8652007-09-12 13:02:17 +0200196 return NOTIFY_DONE;
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 if (dev->type == ARPHRD_X25
199#if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
200 || dev->type == ARPHRD_ETHER
201#endif
202 ) {
203 switch (event) {
204 case NETDEV_UP:
205 x25_link_device_up(dev);
206 break;
207 case NETDEV_GOING_DOWN:
208 nb = x25_get_neigh(dev);
209 if (nb) {
210 x25_terminate_link(nb);
211 x25_neigh_put(nb);
212 }
213 break;
214 case NETDEV_DOWN:
215 x25_kill_by_device(dev);
216 x25_route_device_down(dev);
217 x25_link_device_down(dev);
218 break;
219 }
220 }
221
222 return NOTIFY_DONE;
223}
224
225/*
226 * Add a socket to the bound sockets list.
227 */
228static void x25_insert_socket(struct sock *sk)
229{
230 write_lock_bh(&x25_list_lock);
231 sk_add_node(sk, &x25_list);
232 write_unlock_bh(&x25_list_lock);
233}
234
235/*
236 * Find a socket that wants to accept the Call Request we just
237 * received. Check the full list for an address/cud match.
238 * If no cuds match return the next_best thing, an address match.
239 * Note: if a listening socket has cud set it must only get calls
240 * with matching cud.
241 */
Shaun Pereiracb65d502005-06-22 22:15:01 -0700242static struct sock *x25_find_listener(struct x25_address *addr,
243 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct sock *s;
246 struct sock *next_best;
247 struct hlist_node *node;
248
249 read_lock_bh(&x25_list_lock);
250 next_best = NULL;
251
252 sk_for_each(s, node, &x25_list)
253 if ((!strcmp(addr->x25_addr,
Shaun Pereiracb65d502005-06-22 22:15:01 -0700254 x25_sk(s)->source_addr.x25_addr) ||
255 !strcmp(addr->x25_addr,
256 null_x25_address.x25_addr)) &&
257 s->sk_state == TCP_LISTEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /*
259 * Found a listening socket, now check the incoming
260 * call user data vs this sockets call user data
261 */
Shaun Pereiracb65d502005-06-22 22:15:01 -0700262 if(skb->len > 0 && x25_sk(s)->cudmatchlength > 0) {
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900263 if((memcmp(x25_sk(s)->calluserdata.cuddata,
264 skb->data,
Shaun Pereiracb65d502005-06-22 22:15:01 -0700265 x25_sk(s)->cudmatchlength)) == 0) {
266 sock_hold(s);
267 goto found;
268 }
269 } else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 next_best = s;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 }
272 if (next_best) {
273 s = next_best;
274 sock_hold(s);
275 goto found;
276 }
277 s = NULL;
278found:
279 read_unlock_bh(&x25_list_lock);
280 return s;
281}
282
283/*
284 * Find a connected X.25 socket given my LCI and neighbour.
285 */
286static struct sock *__x25_find_socket(unsigned int lci, struct x25_neigh *nb)
287{
288 struct sock *s;
289 struct hlist_node *node;
290
291 sk_for_each(s, node, &x25_list)
292 if (x25_sk(s)->lci == lci && x25_sk(s)->neighbour == nb) {
293 sock_hold(s);
294 goto found;
295 }
296 s = NULL;
297found:
298 return s;
299}
300
301struct sock *x25_find_socket(unsigned int lci, struct x25_neigh *nb)
302{
303 struct sock *s;
304
305 read_lock_bh(&x25_list_lock);
306 s = __x25_find_socket(lci, nb);
307 read_unlock_bh(&x25_list_lock);
308 return s;
309}
310
311/*
312 * Find a unique LCI for a given device.
313 */
314static unsigned int x25_new_lci(struct x25_neigh *nb)
315{
316 unsigned int lci = 1;
317 struct sock *sk;
318
319 read_lock_bh(&x25_list_lock);
320
321 while ((sk = __x25_find_socket(lci, nb)) != NULL) {
322 sock_put(sk);
323 if (++lci == 4096) {
324 lci = 0;
325 break;
326 }
327 }
328
329 read_unlock_bh(&x25_list_lock);
330 return lci;
331}
332
333/*
334 * Deferred destroy.
335 */
David S. Miller14ebaf82009-06-16 05:40:30 -0700336static void __x25_destroy_socket(struct sock *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338/*
339 * handler for deferred kills.
340 */
341static void x25_destroy_timer(unsigned long data)
342{
David S. Miller14ebaf82009-06-16 05:40:30 -0700343 x25_destroy_socket_from_timer((struct sock *)data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344}
345
346/*
347 * This is called from user mode and the timers. Thus it protects itself
348 * against interrupt users but doesn't worry about being called during
349 * work. Once it is removed from the queue no interrupt or bottom half
350 * will touch it and we are (fairly 8-) ) safe.
351 * Not static as it's used by the timer
352 */
David S. Miller14ebaf82009-06-16 05:40:30 -0700353static void __x25_destroy_socket(struct sock *sk)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
355 struct sk_buff *skb;
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 x25_stop_heartbeat(sk);
358 x25_stop_timer(sk);
359
360 x25_remove_socket(sk);
361 x25_clear_queues(sk); /* Flush the queues */
362
363 while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
364 if (skb->sk != sk) { /* A pending connection */
365 /*
366 * Queue the unaccepted socket for death
367 */
368 sock_set_flag(skb->sk, SOCK_DEAD);
369 x25_start_heartbeat(skb->sk);
370 x25_sk(skb->sk)->state = X25_STATE_0;
371 }
372
373 kfree_skb(skb);
374 }
375
Eric Dumazetc5640392009-06-16 10:12:03 +0000376 if (sk_has_allocations(sk)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 /* Defer: outstanding buffers */
378 sk->sk_timer.expires = jiffies + 10 * HZ;
379 sk->sk_timer.function = x25_destroy_timer;
380 sk->sk_timer.data = (unsigned long)sk;
381 add_timer(&sk->sk_timer);
382 } else {
383 /* drop last reference so sock_put will free */
384 __sock_put(sk);
385 }
David S. Miller14ebaf82009-06-16 05:40:30 -0700386}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
David S. Miller14ebaf82009-06-16 05:40:30 -0700388void x25_destroy_socket_from_timer(struct sock *sk)
389{
390 sock_hold(sk);
391 bh_lock_sock(sk);
392 __x25_destroy_socket(sk);
393 bh_unlock_sock(sk);
394 sock_put(sk);
395}
396
397static void x25_destroy_socket(struct sock *sk)
398{
399 sock_hold(sk);
400 lock_sock(sk);
401 __x25_destroy_socket(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 release_sock(sk);
403 sock_put(sk);
404}
405
406/*
407 * Handling for system calls applied via the various interfaces to a
408 * X.25 socket object.
409 */
410
411static int x25_setsockopt(struct socket *sock, int level, int optname,
David S. Millerb7058842009-09-30 16:12:20 -0700412 char __user *optval, unsigned int optlen)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
414 int opt;
415 struct sock *sk = sock->sk;
416 int rc = -ENOPROTOOPT;
417
Arnd Bergmann91774902009-11-05 04:37:29 +0000418 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 if (level != SOL_X25 || optname != X25_QBITINCL)
420 goto out;
421
422 rc = -EINVAL;
423 if (optlen < sizeof(int))
424 goto out;
425
426 rc = -EFAULT;
427 if (get_user(opt, (int __user *)optval))
428 goto out;
429
430 x25_sk(sk)->qbitincl = !!opt;
431 rc = 0;
432out:
Arnd Bergmann91774902009-11-05 04:37:29 +0000433 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 return rc;
435}
436
437static int x25_getsockopt(struct socket *sock, int level, int optname,
438 char __user *optval, int __user *optlen)
439{
440 struct sock *sk = sock->sk;
441 int val, len, rc = -ENOPROTOOPT;
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900442
Arnd Bergmann91774902009-11-05 04:37:29 +0000443 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (level != SOL_X25 || optname != X25_QBITINCL)
445 goto out;
446
447 rc = -EFAULT;
448 if (get_user(len, optlen))
449 goto out;
450
451 len = min_t(unsigned int, len, sizeof(int));
452
453 rc = -EINVAL;
454 if (len < 0)
455 goto out;
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900456
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 rc = -EFAULT;
458 if (put_user(len, optlen))
459 goto out;
460
461 val = x25_sk(sk)->qbitincl;
462 rc = copy_to_user(optval, &val, len) ? -EFAULT : 0;
463out:
Arnd Bergmann91774902009-11-05 04:37:29 +0000464 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return rc;
466}
467
468static int x25_listen(struct socket *sock, int backlog)
469{
470 struct sock *sk = sock->sk;
471 int rc = -EOPNOTSUPP;
472
Arnd Bergmann91774902009-11-05 04:37:29 +0000473 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 if (sk->sk_state != TCP_LISTEN) {
475 memset(&x25_sk(sk)->dest_addr, 0, X25_ADDR_LEN);
476 sk->sk_max_ack_backlog = backlog;
477 sk->sk_state = TCP_LISTEN;
478 rc = 0;
479 }
Arnd Bergmann91774902009-11-05 04:37:29 +0000480 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 return rc;
483}
484
485static struct proto x25_proto = {
486 .name = "X25",
487 .owner = THIS_MODULE,
488 .obj_size = sizeof(struct x25_sock),
489};
490
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700491static struct sock *x25_alloc_socket(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492{
493 struct x25_sock *x25;
Pavel Emelyanov6257ff22007-11-01 00:39:31 -0700494 struct sock *sk = sk_alloc(net, AF_X25, GFP_ATOMIC, &x25_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495
496 if (!sk)
497 goto out;
498
499 sock_init_data(NULL, sk);
500
501 x25 = x25_sk(sk);
502 skb_queue_head_init(&x25->ack_queue);
503 skb_queue_head_init(&x25->fragment_queue);
504 skb_queue_head_init(&x25->interrupt_in_queue);
505 skb_queue_head_init(&x25->interrupt_out_queue);
506out:
507 return sk;
508}
509
Eric Paris3f378b62009-11-05 22:18:14 -0800510static int x25_create(struct net *net, struct socket *sock, int protocol,
511 int kern)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512{
513 struct sock *sk;
514 struct x25_sock *x25;
515 int rc = -ESOCKTNOSUPPORT;
516
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700517 if (net != &init_net)
518 return -EAFNOSUPPORT;
519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 if (sock->type != SOCK_SEQPACKET || protocol)
521 goto out;
522
523 rc = -ENOMEM;
Eric W. Biederman1b8d7ae2007-10-08 23:24:22 -0700524 if ((sk = x25_alloc_socket(net)) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 goto out;
526
527 x25 = x25_sk(sk);
528
529 sock_init_data(sock, sk);
530
531 x25_init_timers(sk);
532
533 sock->ops = &x25_proto_ops;
534 sk->sk_protocol = protocol;
535 sk->sk_backlog_rcv = x25_backlog_rcv;
536
537 x25->t21 = sysctl_x25_call_request_timeout;
538 x25->t22 = sysctl_x25_reset_request_timeout;
539 x25->t23 = sysctl_x25_clear_request_timeout;
540 x25->t2 = sysctl_x25_ack_holdback_timeout;
541 x25->state = X25_STATE_0;
Shaun Pereiracb65d502005-06-22 22:15:01 -0700542 x25->cudmatchlength = 0;
Shaun Pereiraebc3f642005-06-22 22:16:17 -0700543 x25->accptapprv = X25_DENY_ACCPT_APPRV; /* normally no cud */
544 /* on call accept */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
546 x25->facilities.winsize_in = X25_DEFAULT_WINDOW_SIZE;
547 x25->facilities.winsize_out = X25_DEFAULT_WINDOW_SIZE;
548 x25->facilities.pacsize_in = X25_DEFAULT_PACKET_SIZE;
549 x25->facilities.pacsize_out = X25_DEFAULT_PACKET_SIZE;
550 x25->facilities.throughput = X25_DEFAULT_THROUGHPUT;
551 x25->facilities.reverse = X25_DEFAULT_REVERSE;
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900552 x25->dte_facilities.calling_len = 0;
553 x25->dte_facilities.called_len = 0;
554 memset(x25->dte_facilities.called_ae, '\0',
555 sizeof(x25->dte_facilities.called_ae));
556 memset(x25->dte_facilities.calling_ae, '\0',
557 sizeof(x25->dte_facilities.calling_ae));
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800558
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 rc = 0;
560out:
561 return rc;
562}
563
564static struct sock *x25_make_new(struct sock *osk)
565{
566 struct sock *sk = NULL;
567 struct x25_sock *x25, *ox25;
568
569 if (osk->sk_type != SOCK_SEQPACKET)
570 goto out;
571
YOSHIFUJI Hideaki3b1e0a62008-03-26 02:26:21 +0900572 if ((sk = x25_alloc_socket(sock_net(osk))) == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 goto out;
574
575 x25 = x25_sk(sk);
576
577 sk->sk_type = osk->sk_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 sk->sk_priority = osk->sk_priority;
579 sk->sk_protocol = osk->sk_protocol;
580 sk->sk_rcvbuf = osk->sk_rcvbuf;
581 sk->sk_sndbuf = osk->sk_sndbuf;
582 sk->sk_state = TCP_ESTABLISHED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 sk->sk_backlog_rcv = osk->sk_backlog_rcv;
Shaun Pereiraa20a8552006-01-06 13:11:35 -0800584 sock_copy_flags(sk, osk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 ox25 = x25_sk(osk);
587 x25->t21 = ox25->t21;
588 x25->t22 = ox25->t22;
589 x25->t23 = ox25->t23;
590 x25->t2 = ox25->t2;
591 x25->facilities = ox25->facilities;
592 x25->qbitincl = ox25->qbitincl;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800593 x25->dte_facilities = ox25->dte_facilities;
Shaun Pereiracb65d502005-06-22 22:15:01 -0700594 x25->cudmatchlength = ox25->cudmatchlength;
Shaun Pereiraebc3f642005-06-22 22:16:17 -0700595 x25->accptapprv = ox25->accptapprv;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 x25_init_timers(sk);
598out:
599 return sk;
600}
601
602static int x25_release(struct socket *sock)
603{
604 struct sock *sk = sock->sk;
605 struct x25_sock *x25;
606
Arnd Bergmann91774902009-11-05 04:37:29 +0000607 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 if (!sk)
609 goto out;
610
611 x25 = x25_sk(sk);
612
613 switch (x25->state) {
614
615 case X25_STATE_0:
616 case X25_STATE_2:
617 x25_disconnect(sk, 0, 0, 0);
618 x25_destroy_socket(sk);
619 goto out;
620
621 case X25_STATE_1:
622 case X25_STATE_3:
623 case X25_STATE_4:
624 x25_clear_queues(sk);
625 x25_write_internal(sk, X25_CLEAR_REQUEST);
626 x25_start_t23timer(sk);
627 x25->state = X25_STATE_2;
628 sk->sk_state = TCP_CLOSE;
629 sk->sk_shutdown |= SEND_SHUTDOWN;
630 sk->sk_state_change(sk);
631 sock_set_flag(sk, SOCK_DEAD);
632 sock_set_flag(sk, SOCK_DESTROY);
633 break;
634 }
635
David S. Millerc751e4f2008-06-17 03:05:13 -0700636 sock_orphan(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637out:
Arnd Bergmann91774902009-11-05 04:37:29 +0000638 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return 0;
640}
641
642static int x25_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
643{
644 struct sock *sk = sock->sk;
645 struct sockaddr_x25 *addr = (struct sockaddr_x25 *)uaddr;
Arnd Bergmann91774902009-11-05 04:37:29 +0000646 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Arnd Bergmann91774902009-11-05 04:37:29 +0000648 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 if (!sock_flag(sk, SOCK_ZAPPED) ||
650 addr_len != sizeof(struct sockaddr_x25) ||
Arnd Bergmann91774902009-11-05 04:37:29 +0000651 addr->sx25_family != AF_X25) {
652 rc = -EINVAL;
653 goto out;
654 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
656 x25_sk(sk)->source_addr = addr->sx25_addr;
657 x25_insert_socket(sk);
658 sock_reset_flag(sk, SOCK_ZAPPED);
659 SOCK_DEBUG(sk, "x25_bind: socket is bound\n");
Arnd Bergmann91774902009-11-05 04:37:29 +0000660out:
661 unlock_kernel();
662 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
664
665static int x25_wait_for_connection_establishment(struct sock *sk)
666{
667 DECLARE_WAITQUEUE(wait, current);
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900668 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669
670 add_wait_queue_exclusive(sk->sk_sleep, &wait);
671 for (;;) {
672 __set_current_state(TASK_INTERRUPTIBLE);
673 rc = -ERESTARTSYS;
674 if (signal_pending(current))
675 break;
676 rc = sock_error(sk);
677 if (rc) {
678 sk->sk_socket->state = SS_UNCONNECTED;
679 break;
680 }
681 rc = 0;
682 if (sk->sk_state != TCP_ESTABLISHED) {
683 release_sock(sk);
684 schedule();
685 lock_sock(sk);
686 } else
687 break;
688 }
689 __set_current_state(TASK_RUNNING);
690 remove_wait_queue(sk->sk_sleep, &wait);
691 return rc;
692}
693
694static int x25_connect(struct socket *sock, struct sockaddr *uaddr,
695 int addr_len, int flags)
696{
697 struct sock *sk = sock->sk;
698 struct x25_sock *x25 = x25_sk(sk);
699 struct sockaddr_x25 *addr = (struct sockaddr_x25 *)uaddr;
700 struct x25_route *rt;
701 int rc = 0;
702
Arnd Bergmann91774902009-11-05 04:37:29 +0000703 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 lock_sock(sk);
705 if (sk->sk_state == TCP_ESTABLISHED && sock->state == SS_CONNECTING) {
706 sock->state = SS_CONNECTED;
707 goto out; /* Connect completed during a ERESTARTSYS event */
708 }
709
710 rc = -ECONNREFUSED;
711 if (sk->sk_state == TCP_CLOSE && sock->state == SS_CONNECTING) {
712 sock->state = SS_UNCONNECTED;
713 goto out;
714 }
715
716 rc = -EISCONN; /* No reconnect on a seqpacket socket */
717 if (sk->sk_state == TCP_ESTABLISHED)
718 goto out;
719
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900720 sk->sk_state = TCP_CLOSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 sock->state = SS_UNCONNECTED;
722
723 rc = -EINVAL;
724 if (addr_len != sizeof(struct sockaddr_x25) ||
725 addr->sx25_family != AF_X25)
726 goto out;
727
728 rc = -ENETUNREACH;
729 rt = x25_get_route(&addr->sx25_addr);
730 if (!rt)
731 goto out;
732
733 x25->neighbour = x25_get_neigh(rt->dev);
734 if (!x25->neighbour)
735 goto out_put_route;
736
737 x25_limit_facilities(&x25->facilities, x25->neighbour);
738
739 x25->lci = x25_new_lci(x25->neighbour);
740 if (!x25->lci)
741 goto out_put_neigh;
742
743 rc = -EINVAL;
744 if (sock_flag(sk, SOCK_ZAPPED)) /* Must bind first - autobinding does not work */
745 goto out_put_neigh;
746
747 if (!strcmp(x25->source_addr.x25_addr, null_x25_address.x25_addr))
748 memset(&x25->source_addr, '\0', X25_ADDR_LEN);
749
750 x25->dest_addr = addr->sx25_addr;
751
752 /* Move to connecting socket, start sending Connect Requests */
753 sock->state = SS_CONNECTING;
754 sk->sk_state = TCP_SYN_SENT;
755
756 x25->state = X25_STATE_1;
757
758 x25_write_internal(sk, X25_CALL_REQUEST);
759
760 x25_start_heartbeat(sk);
761 x25_start_t21timer(sk);
762
763 /* Now the loop */
764 rc = -EINPROGRESS;
765 if (sk->sk_state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
766 goto out_put_neigh;
767
768 rc = x25_wait_for_connection_establishment(sk);
769 if (rc)
770 goto out_put_neigh;
771
772 sock->state = SS_CONNECTED;
773 rc = 0;
774out_put_neigh:
775 if (rc)
776 x25_neigh_put(x25->neighbour);
777out_put_route:
778 x25_route_put(rt);
779out:
780 release_sock(sk);
Arnd Bergmann91774902009-11-05 04:37:29 +0000781 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return rc;
783}
784
Shaun Pereirabac37ec2006-03-22 00:00:40 -0800785static int x25_wait_for_data(struct sock *sk, long timeout)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
787 DECLARE_WAITQUEUE(wait, current);
788 int rc = 0;
789
790 add_wait_queue_exclusive(sk->sk_sleep, &wait);
791 for (;;) {
792 __set_current_state(TASK_INTERRUPTIBLE);
793 if (sk->sk_shutdown & RCV_SHUTDOWN)
794 break;
795 rc = -ERESTARTSYS;
796 if (signal_pending(current))
797 break;
798 rc = -EAGAIN;
799 if (!timeout)
800 break;
801 rc = 0;
802 if (skb_queue_empty(&sk->sk_receive_queue)) {
803 release_sock(sk);
804 timeout = schedule_timeout(timeout);
805 lock_sock(sk);
806 } else
807 break;
808 }
809 __set_current_state(TASK_RUNNING);
810 remove_wait_queue(sk->sk_sleep, &wait);
811 return rc;
812}
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900813
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814static int x25_accept(struct socket *sock, struct socket *newsock, int flags)
815{
816 struct sock *sk = sock->sk;
817 struct sock *newsk;
818 struct sk_buff *skb;
819 int rc = -EINVAL;
820
Arnd Bergmann91774902009-11-05 04:37:29 +0000821 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 if (!sk || sk->sk_state != TCP_LISTEN)
823 goto out;
824
825 rc = -EOPNOTSUPP;
826 if (sk->sk_type != SOCK_SEQPACKET)
827 goto out;
828
829 lock_sock(sk);
830 rc = x25_wait_for_data(sk, sk->sk_rcvtimeo);
831 if (rc)
832 goto out2;
833 skb = skb_dequeue(&sk->sk_receive_queue);
834 rc = -EINVAL;
835 if (!skb->sk)
836 goto out2;
837 newsk = skb->sk;
David S. Millerb61d38e2008-06-17 02:44:35 -0700838 sock_graft(newsk, newsock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839
840 /* Now attach up the new socket */
841 skb->sk = NULL;
842 kfree_skb(skb);
843 sk->sk_ack_backlog--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 newsock->state = SS_CONNECTED;
845 rc = 0;
846out2:
847 release_sock(sk);
848out:
Arnd Bergmann91774902009-11-05 04:37:29 +0000849 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 return rc;
851}
852
853static int x25_getname(struct socket *sock, struct sockaddr *uaddr,
854 int *uaddr_len, int peer)
855{
856 struct sockaddr_x25 *sx25 = (struct sockaddr_x25 *)uaddr;
857 struct sock *sk = sock->sk;
858 struct x25_sock *x25 = x25_sk(sk);
Arnd Bergmann91774902009-11-05 04:37:29 +0000859 int rc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Arnd Bergmann91774902009-11-05 04:37:29 +0000861 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 if (peer) {
Arnd Bergmann91774902009-11-05 04:37:29 +0000863 if (sk->sk_state != TCP_ESTABLISHED) {
864 rc = -ENOTCONN;
865 goto out;
866 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 sx25->sx25_addr = x25->dest_addr;
868 } else
869 sx25->sx25_addr = x25->source_addr;
870
871 sx25->sx25_family = AF_X25;
872 *uaddr_len = sizeof(*sx25);
873
Arnd Bergmann91774902009-11-05 04:37:29 +0000874out:
875 unlock_kernel();
876 return rc;
877}
878
879static unsigned int x25_datagram_poll(struct file *file, struct socket *sock,
880 poll_table *wait)
881{
882 int rc;
883
884 lock_kernel();
885 rc = datagram_poll(file, sock, wait);
886 unlock_kernel();
887
888 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889}
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +0900890
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891int x25_rx_call_request(struct sk_buff *skb, struct x25_neigh *nb,
892 unsigned int lci)
893{
894 struct sock *sk;
895 struct sock *make;
896 struct x25_sock *makex25;
897 struct x25_address source_addr, dest_addr;
898 struct x25_facilities facilities;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800899 struct x25_dte_facilities dte_facilities;
Andrew Hendry95a9dc42007-02-08 13:34:02 -0800900 int len, addr_len, rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901
902 /*
903 * Remove the LCI and frame type.
904 */
905 skb_pull(skb, X25_STD_MIN_LEN);
906
907 /*
908 * Extract the X.25 addresses and convert them to ASCII strings,
909 * and remove them.
910 */
Andrew Hendry95a9dc42007-02-08 13:34:02 -0800911 addr_len = x25_addr_ntoa(skb->data, &source_addr, &dest_addr);
912 skb_pull(skb, addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
914 /*
915 * Get the length of the facilities, skip past them for the moment
916 * get the call user data because this is needed to determine
917 * the correct listener
918 */
919 len = skb->data[0] + 1;
920 skb_pull(skb,len);
921
922 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 * Find a listener for the particular address/cud pair.
924 */
Shaun Pereiracb65d502005-06-22 22:15:01 -0700925 sk = x25_find_listener(&source_addr,skb);
926 skb_push(skb,len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Andrew Hendry95a9dc42007-02-08 13:34:02 -0800928 if (sk != NULL && sk_acceptq_is_full(sk)) {
929 goto out_sock_put;
930 }
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 /*
Andrew Hendry95a9dc42007-02-08 13:34:02 -0800933 * We dont have any listeners for this incoming call.
934 * Try forwarding it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 */
Andrew Hendry95a9dc42007-02-08 13:34:02 -0800936 if (sk == NULL) {
937 skb_push(skb, addr_len + X25_STD_MIN_LEN);
Andrew Hendry39e21c02007-02-08 13:34:36 -0800938 if (sysctl_x25_forward &&
939 x25_forward_call(&dest_addr, nb, skb, lci) > 0)
Andrew Hendry95a9dc42007-02-08 13:34:02 -0800940 {
941 /* Call was forwarded, dont process it any more */
942 kfree_skb(skb);
943 rc = 1;
944 goto out;
945 } else {
946 /* No listeners, can't forward, clear the call */
947 goto out_clear_request;
948 }
949 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951 /*
952 * Try to reach a compromise on the requested facilities.
953 */
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800954 len = x25_negotiate_facilities(skb, sk, &facilities, &dte_facilities);
955 if (len == -1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 goto out_sock_put;
957
958 /*
959 * current neighbour/link might impose additional limits
960 * on certain facilties
961 */
962
963 x25_limit_facilities(&facilities, nb);
964
965 /*
966 * Try to create a new socket.
967 */
968 make = x25_make_new(sk);
969 if (!make)
970 goto out_sock_put;
971
972 /*
973 * Remove the facilities
974 */
975 skb_pull(skb, len);
976
977 skb->sk = make;
978 make->sk_state = TCP_ESTABLISHED;
979
980 makex25 = x25_sk(make);
981 makex25->lci = lci;
982 makex25->dest_addr = dest_addr;
983 makex25->source_addr = source_addr;
984 makex25->neighbour = nb;
985 makex25->facilities = facilities;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800986 makex25->dte_facilities= dte_facilities;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 makex25->vc_facil_mask = x25_sk(sk)->vc_facil_mask;
Shaun Pereiracb65d502005-06-22 22:15:01 -0700988 /* ensure no reverse facil on accept */
989 makex25->vc_facil_mask &= ~X25_MASK_REVERSE;
Shaun Pereiraa64b7b92006-03-22 00:01:31 -0800990 /* ensure no calling address extension on accept */
991 makex25->vc_facil_mask &= ~X25_MASK_CALLING_AE;
Shaun Pereiracb65d502005-06-22 22:15:01 -0700992 makex25->cudmatchlength = x25_sk(sk)->cudmatchlength;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Shaun Pereiraebc3f642005-06-22 22:16:17 -0700994 /* Normally all calls are accepted immediatly */
995 if(makex25->accptapprv & X25_DENY_ACCPT_APPRV) {
996 x25_write_internal(make, X25_CALL_ACCEPTED);
997 makex25->state = X25_STATE_3;
998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999
Shaun Pereiracb65d502005-06-22 22:15:01 -07001000 /*
1001 * Incoming Call User Data.
1002 */
Roel Kluin8db09f22009-03-13 16:04:12 -07001003 skb_copy_from_linear_data(skb, makex25->calluserdata.cuddata, skb->len);
1004 makex25->calluserdata.cudlength = skb->len;
Shaun Pereiracb65d502005-06-22 22:15:01 -07001005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 sk->sk_ack_backlog++;
1007
1008 x25_insert_socket(make);
1009
1010 skb_queue_head(&sk->sk_receive_queue, skb);
1011
1012 x25_start_heartbeat(make);
1013
1014 if (!sock_flag(sk, SOCK_DEAD))
1015 sk->sk_data_ready(sk, skb->len);
1016 rc = 1;
1017 sock_put(sk);
1018out:
1019 return rc;
1020out_sock_put:
1021 sock_put(sk);
1022out_clear_request:
1023 rc = 0;
1024 x25_transmit_clear_request(nb, lci, 0x01);
1025 goto out;
1026}
1027
1028static int x25_sendmsg(struct kiocb *iocb, struct socket *sock,
1029 struct msghdr *msg, size_t len)
1030{
1031 struct sock *sk = sock->sk;
1032 struct x25_sock *x25 = x25_sk(sk);
1033 struct sockaddr_x25 *usx25 = (struct sockaddr_x25 *)msg->msg_name;
1034 struct sockaddr_x25 sx25;
1035 struct sk_buff *skb;
1036 unsigned char *asmptr;
1037 int noblock = msg->msg_flags & MSG_DONTWAIT;
1038 size_t size;
1039 int qbit = 0, rc = -EINVAL;
1040
Arnd Bergmann91774902009-11-05 04:37:29 +00001041 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_OOB|MSG_EOR|MSG_CMSG_COMPAT))
1043 goto out;
1044
1045 /* we currently don't support segmented records at the user interface */
1046 if (!(msg->msg_flags & (MSG_EOR|MSG_OOB)))
1047 goto out;
1048
1049 rc = -EADDRNOTAVAIL;
1050 if (sock_flag(sk, SOCK_ZAPPED))
1051 goto out;
1052
1053 rc = -EPIPE;
1054 if (sk->sk_shutdown & SEND_SHUTDOWN) {
1055 send_sig(SIGPIPE, current, 0);
1056 goto out;
1057 }
1058
1059 rc = -ENETUNREACH;
1060 if (!x25->neighbour)
1061 goto out;
1062
1063 if (usx25) {
1064 rc = -EINVAL;
1065 if (msg->msg_namelen < sizeof(sx25))
1066 goto out;
1067 memcpy(&sx25, usx25, sizeof(sx25));
1068 rc = -EISCONN;
1069 if (strcmp(x25->dest_addr.x25_addr, sx25.sx25_addr.x25_addr))
1070 goto out;
1071 rc = -EINVAL;
1072 if (sx25.sx25_family != AF_X25)
1073 goto out;
1074 } else {
1075 /*
1076 * FIXME 1003.1g - if the socket is like this because
1077 * it has become closed (not started closed) we ought
1078 * to SIGPIPE, EPIPE;
1079 */
1080 rc = -ENOTCONN;
1081 if (sk->sk_state != TCP_ESTABLISHED)
1082 goto out;
1083
1084 sx25.sx25_family = AF_X25;
1085 sx25.sx25_addr = x25->dest_addr;
1086 }
1087
Alan Cox83e0bbc2009-03-27 00:28:21 -07001088 /* Sanity check the packet size */
1089 if (len > 65535) {
1090 rc = -EMSGSIZE;
1091 goto out;
1092 }
1093
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 SOCK_DEBUG(sk, "x25_sendmsg: sendto: Addresses built.\n");
1095
1096 /* Build a packet */
1097 SOCK_DEBUG(sk, "x25_sendmsg: sendto: building packet.\n");
1098
1099 if ((msg->msg_flags & MSG_OOB) && len > 32)
1100 len = 32;
1101
1102 size = len + X25_MAX_L2_LEN + X25_EXT_MIN_LEN;
1103
1104 skb = sock_alloc_send_skb(sk, size, noblock, &rc);
1105 if (!skb)
1106 goto out;
1107 X25_SKB_CB(skb)->flags = msg->msg_flags;
1108
1109 skb_reserve(skb, X25_MAX_L2_LEN + X25_EXT_MIN_LEN);
1110
1111 /*
1112 * Put the data on the end
1113 */
1114 SOCK_DEBUG(sk, "x25_sendmsg: Copying user data\n");
1115
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001116 skb_reset_transport_header(skb);
1117 skb_put(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Arnaldo Carvalho de Meloeeeb0372007-03-14 21:04:34 -03001119 rc = memcpy_fromiovec(skb_transport_header(skb), msg->msg_iov, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 if (rc)
1121 goto out_kfree_skb;
1122
1123 /*
1124 * If the Q BIT Include socket option is in force, the first
1125 * byte of the user data is the logical value of the Q Bit.
1126 */
1127 if (x25->qbitincl) {
1128 qbit = skb->data[0];
1129 skb_pull(skb, 1);
1130 }
1131
1132 /*
1133 * Push down the X.25 header
1134 */
1135 SOCK_DEBUG(sk, "x25_sendmsg: Building X.25 Header.\n");
1136
1137 if (msg->msg_flags & MSG_OOB) {
1138 if (x25->neighbour->extended) {
1139 asmptr = skb_push(skb, X25_STD_MIN_LEN);
1140 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_EXTSEQ;
1141 *asmptr++ = (x25->lci >> 0) & 0xFF;
1142 *asmptr++ = X25_INTERRUPT;
1143 } else {
1144 asmptr = skb_push(skb, X25_STD_MIN_LEN);
1145 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_STDSEQ;
1146 *asmptr++ = (x25->lci >> 0) & 0xFF;
1147 *asmptr++ = X25_INTERRUPT;
1148 }
1149 } else {
1150 if (x25->neighbour->extended) {
1151 /* Build an Extended X.25 header */
1152 asmptr = skb_push(skb, X25_EXT_MIN_LEN);
1153 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_EXTSEQ;
1154 *asmptr++ = (x25->lci >> 0) & 0xFF;
1155 *asmptr++ = X25_DATA;
1156 *asmptr++ = X25_DATA;
1157 } else {
1158 /* Build an Standard X.25 header */
1159 asmptr = skb_push(skb, X25_STD_MIN_LEN);
1160 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_STDSEQ;
1161 *asmptr++ = (x25->lci >> 0) & 0xFF;
1162 *asmptr++ = X25_DATA;
1163 }
1164
1165 if (qbit)
1166 skb->data[0] |= X25_Q_BIT;
1167 }
1168
1169 SOCK_DEBUG(sk, "x25_sendmsg: Built header.\n");
1170 SOCK_DEBUG(sk, "x25_sendmsg: Transmitting buffer\n");
1171
1172 rc = -ENOTCONN;
1173 if (sk->sk_state != TCP_ESTABLISHED)
1174 goto out_kfree_skb;
1175
1176 if (msg->msg_flags & MSG_OOB)
1177 skb_queue_tail(&x25->interrupt_out_queue, skb);
1178 else {
Roel Kluin8db09f22009-03-13 16:04:12 -07001179 rc = x25_output(sk, skb);
1180 len = rc;
1181 if (rc < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 kfree_skb(skb);
1183 else if (x25->qbitincl)
1184 len++;
1185 }
1186
1187 /*
1188 * lock_sock() is currently only used to serialize this x25_kick()
1189 * against input-driven x25_kick() calls. It currently only blocks
1190 * incoming packets for this socket and does not protect against
1191 * any other socket state changes and is not called from anywhere
1192 * else. As x25_kick() cannot block and as long as all socket
1193 * operations are BKL-wrapped, we don't need take to care about
1194 * purging the backlog queue in x25_release().
1195 *
1196 * Using lock_sock() to protect all socket operations entirely
1197 * (and making the whole x25 stack SMP aware) unfortunately would
1198 * require major changes to {send,recv}msg and skb allocation methods.
1199 * -> 2.5 ;)
1200 */
1201 lock_sock(sk);
1202 x25_kick(sk);
1203 release_sock(sk);
1204 rc = len;
1205out:
Arnd Bergmann91774902009-11-05 04:37:29 +00001206 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207 return rc;
1208out_kfree_skb:
1209 kfree_skb(skb);
1210 goto out;
1211}
1212
1213
1214static int x25_recvmsg(struct kiocb *iocb, struct socket *sock,
1215 struct msghdr *msg, size_t size,
1216 int flags)
1217{
1218 struct sock *sk = sock->sk;
1219 struct x25_sock *x25 = x25_sk(sk);
1220 struct sockaddr_x25 *sx25 = (struct sockaddr_x25 *)msg->msg_name;
1221 size_t copied;
1222 int qbit;
1223 struct sk_buff *skb;
1224 unsigned char *asmptr;
1225 int rc = -ENOTCONN;
1226
Arnd Bergmann91774902009-11-05 04:37:29 +00001227 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 /*
1229 * This works for seqpacket too. The receiver has ordered the queue for
1230 * us! We do one quick check first though
1231 */
1232 if (sk->sk_state != TCP_ESTABLISHED)
1233 goto out;
1234
1235 if (flags & MSG_OOB) {
1236 rc = -EINVAL;
1237 if (sock_flag(sk, SOCK_URGINLINE) ||
1238 !skb_peek(&x25->interrupt_in_queue))
1239 goto out;
1240
1241 skb = skb_dequeue(&x25->interrupt_in_queue);
1242
1243 skb_pull(skb, X25_STD_MIN_LEN);
1244
1245 /*
1246 * No Q bit information on Interrupt data.
1247 */
1248 if (x25->qbitincl) {
1249 asmptr = skb_push(skb, 1);
1250 *asmptr = 0x00;
1251 }
1252
1253 msg->msg_flags |= MSG_OOB;
1254 } else {
1255 /* Now we can treat all alike */
1256 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1257 flags & MSG_DONTWAIT, &rc);
1258 if (!skb)
1259 goto out;
1260
1261 qbit = (skb->data[0] & X25_Q_BIT) == X25_Q_BIT;
1262
1263 skb_pull(skb, x25->neighbour->extended ?
1264 X25_EXT_MIN_LEN : X25_STD_MIN_LEN);
1265
1266 if (x25->qbitincl) {
1267 asmptr = skb_push(skb, 1);
1268 *asmptr = qbit;
1269 }
1270 }
1271
Arnaldo Carvalho de Melobadff6d2007-03-13 13:06:52 -03001272 skb_reset_transport_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001273 copied = skb->len;
1274
1275 if (copied > size) {
1276 copied = size;
1277 msg->msg_flags |= MSG_TRUNC;
1278 }
1279
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09001280 /* Currently, each datagram always contains a complete record */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 msg->msg_flags |= MSG_EOR;
1282
1283 rc = skb_copy_datagram_iovec(skb, 0, msg->msg_iov, copied);
1284 if (rc)
1285 goto out_free_dgram;
1286
1287 if (sx25) {
1288 sx25->sx25_family = AF_X25;
1289 sx25->sx25_addr = x25->dest_addr;
1290 }
1291
1292 msg->msg_namelen = sizeof(struct sockaddr_x25);
1293
1294 lock_sock(sk);
1295 x25_check_rbuf(sk);
1296 release_sock(sk);
1297 rc = copied;
1298out_free_dgram:
1299 skb_free_datagram(sk, skb);
1300out:
Arnd Bergmann91774902009-11-05 04:37:29 +00001301 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302 return rc;
1303}
1304
1305
1306static int x25_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1307{
1308 struct sock *sk = sock->sk;
1309 struct x25_sock *x25 = x25_sk(sk);
1310 void __user *argp = (void __user *)arg;
1311 int rc;
1312
Arnd Bergmann91774902009-11-05 04:37:29 +00001313 lock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 switch (cmd) {
1315 case TIOCOUTQ: {
Eric Dumazet31e6d362009-06-17 19:05:41 -07001316 int amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
1317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 if (amount < 0)
1319 amount = 0;
1320 rc = put_user(amount, (unsigned int __user *)argp);
1321 break;
1322 }
1323
1324 case TIOCINQ: {
1325 struct sk_buff *skb;
1326 int amount = 0;
1327 /*
1328 * These two are safe on a single CPU system as
1329 * only user tasks fiddle here
1330 */
1331 if ((skb = skb_peek(&sk->sk_receive_queue)) != NULL)
1332 amount = skb->len;
1333 rc = put_user(amount, (unsigned int __user *)argp);
1334 break;
1335 }
1336
1337 case SIOCGSTAMP:
1338 rc = -EINVAL;
1339 if (sk)
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09001340 rc = sock_get_timestamp(sk,
1341 (struct timeval __user *)argp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 break;
Eric Dumazetae40eb12007-03-18 17:33:16 -07001343 case SIOCGSTAMPNS:
1344 rc = -EINVAL;
1345 if (sk)
1346 rc = sock_get_timestampns(sk,
1347 (struct timespec __user *)argp);
1348 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 case SIOCGIFADDR:
1350 case SIOCSIFADDR:
1351 case SIOCGIFDSTADDR:
1352 case SIOCSIFDSTADDR:
1353 case SIOCGIFBRDADDR:
1354 case SIOCSIFBRDADDR:
1355 case SIOCGIFNETMASK:
1356 case SIOCSIFNETMASK:
1357 case SIOCGIFMETRIC:
1358 case SIOCSIFMETRIC:
1359 rc = -EINVAL;
1360 break;
1361 case SIOCADDRT:
1362 case SIOCDELRT:
1363 rc = -EPERM;
1364 if (!capable(CAP_NET_ADMIN))
1365 break;
1366 rc = x25_route_ioctl(cmd, argp);
1367 break;
1368 case SIOCX25GSUBSCRIP:
1369 rc = x25_subscr_ioctl(cmd, argp);
1370 break;
1371 case SIOCX25SSUBSCRIP:
1372 rc = -EPERM;
1373 if (!capable(CAP_NET_ADMIN))
1374 break;
1375 rc = x25_subscr_ioctl(cmd, argp);
1376 break;
1377 case SIOCX25GFACILITIES: {
1378 struct x25_facilities fac = x25->facilities;
1379 rc = copy_to_user(argp, &fac,
1380 sizeof(fac)) ? -EFAULT : 0;
1381 break;
1382 }
1383
1384 case SIOCX25SFACILITIES: {
1385 struct x25_facilities facilities;
1386 rc = -EFAULT;
1387 if (copy_from_user(&facilities, argp,
1388 sizeof(facilities)))
1389 break;
1390 rc = -EINVAL;
1391 if (sk->sk_state != TCP_LISTEN &&
1392 sk->sk_state != TCP_CLOSE)
1393 break;
1394 if (facilities.pacsize_in < X25_PS16 ||
1395 facilities.pacsize_in > X25_PS4096)
1396 break;
1397 if (facilities.pacsize_out < X25_PS16 ||
1398 facilities.pacsize_out > X25_PS4096)
1399 break;
1400 if (facilities.winsize_in < 1 ||
1401 facilities.winsize_in > 127)
1402 break;
1403 if (facilities.throughput < 0x03 ||
1404 facilities.throughput > 0xDD)
1405 break;
Shaun Pereiraebc3f642005-06-22 22:16:17 -07001406 if (facilities.reverse &&
roel kluin06a96b32009-10-07 00:59:42 +00001407 (facilities.reverse & 0x81) != 0x81)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 break;
1409 x25->facilities = facilities;
1410 rc = 0;
1411 break;
1412 }
1413
Shaun Pereiraa64b7b92006-03-22 00:01:31 -08001414 case SIOCX25GDTEFACILITIES: {
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09001415 rc = copy_to_user(argp, &x25->dte_facilities,
Shaun Pereiraa64b7b92006-03-22 00:01:31 -08001416 sizeof(x25->dte_facilities));
1417 if (rc)
1418 rc = -EFAULT;
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09001419 break;
1420 }
Shaun Pereiraa64b7b92006-03-22 00:01:31 -08001421
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09001422 case SIOCX25SDTEFACILITIES: {
1423 struct x25_dte_facilities dtefacs;
1424 rc = -EFAULT;
1425 if (copy_from_user(&dtefacs, argp, sizeof(dtefacs)))
Shaun Pereiraa64b7b92006-03-22 00:01:31 -08001426 break;
1427 rc = -EINVAL;
1428 if (sk->sk_state != TCP_LISTEN &&
1429 sk->sk_state != TCP_CLOSE)
1430 break;
1431 if (dtefacs.calling_len > X25_MAX_AE_LEN)
1432 break;
1433 if (dtefacs.calling_ae == NULL)
1434 break;
1435 if (dtefacs.called_len > X25_MAX_AE_LEN)
1436 break;
1437 if (dtefacs.called_ae == NULL)
1438 break;
1439 x25->dte_facilities = dtefacs;
1440 rc = 0;
1441 break;
1442 }
1443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 case SIOCX25GCALLUSERDATA: {
1445 struct x25_calluserdata cud = x25->calluserdata;
1446 rc = copy_to_user(argp, &cud,
1447 sizeof(cud)) ? -EFAULT : 0;
1448 break;
1449 }
1450
1451 case SIOCX25SCALLUSERDATA: {
1452 struct x25_calluserdata calluserdata;
1453
1454 rc = -EFAULT;
1455 if (copy_from_user(&calluserdata, argp,
1456 sizeof(calluserdata)))
1457 break;
1458 rc = -EINVAL;
1459 if (calluserdata.cudlength > X25_MAX_CUD_LEN)
1460 break;
1461 x25->calluserdata = calluserdata;
1462 rc = 0;
1463 break;
1464 }
1465
1466 case SIOCX25GCAUSEDIAG: {
1467 struct x25_causediag causediag;
1468 causediag = x25->causediag;
1469 rc = copy_to_user(argp, &causediag,
1470 sizeof(causediag)) ? -EFAULT : 0;
1471 break;
1472 }
1473
Shaun Pereiracb65d502005-06-22 22:15:01 -07001474 case SIOCX25SCUDMATCHLEN: {
1475 struct x25_subaddr sub_addr;
1476 rc = -EINVAL;
1477 if(sk->sk_state != TCP_CLOSE)
1478 break;
1479 rc = -EFAULT;
1480 if (copy_from_user(&sub_addr, argp,
1481 sizeof(sub_addr)))
1482 break;
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09001483 rc = -EINVAL;
Shaun Pereiracb65d502005-06-22 22:15:01 -07001484 if(sub_addr.cudmatchlength > X25_MAX_CUD_LEN)
1485 break;
1486 x25->cudmatchlength = sub_addr.cudmatchlength;
1487 rc = 0;
1488 break;
1489 }
1490
Shaun Pereiraebc3f642005-06-22 22:16:17 -07001491 case SIOCX25CALLACCPTAPPRV: {
1492 rc = -EINVAL;
1493 if (sk->sk_state != TCP_CLOSE)
1494 break;
1495 x25->accptapprv = X25_ALLOW_ACCPT_APPRV;
1496 rc = 0;
1497 break;
1498 }
1499
1500 case SIOCX25SENDCALLACCPT: {
1501 rc = -EINVAL;
1502 if (sk->sk_state != TCP_ESTABLISHED)
1503 break;
1504 if (x25->accptapprv) /* must call accptapprv above */
1505 break;
1506 x25_write_internal(sk, X25_CALL_ACCEPTED);
1507 x25->state = X25_STATE_3;
1508 rc = 0;
1509 break;
1510 }
1511
YOSHIFUJI Hideakif8e1d2012007-02-09 23:25:27 +09001512 default:
Christoph Hellwigb5e5fa52006-01-03 14:18:33 -08001513 rc = -ENOIOCTLCMD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 break;
1515 }
Arnd Bergmann91774902009-11-05 04:37:29 +00001516 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 return rc;
1519}
1520
Stephen Hemmingerec1b4cf2009-10-05 05:58:39 +00001521static const struct net_proto_family x25_family_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 .family = AF_X25,
1523 .create = x25_create,
1524 .owner = THIS_MODULE,
1525};
1526
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001527#ifdef CONFIG_COMPAT
1528static int compat_x25_subscr_ioctl(unsigned int cmd,
1529 struct compat_x25_subscrip_struct __user *x25_subscr32)
1530{
1531 struct compat_x25_subscrip_struct x25_subscr;
1532 struct x25_neigh *nb;
1533 struct net_device *dev;
1534 int rc = -EINVAL;
1535
1536 rc = -EFAULT;
1537 if (copy_from_user(&x25_subscr, x25_subscr32, sizeof(*x25_subscr32)))
1538 goto out;
1539
1540 rc = -EINVAL;
1541 dev = x25_dev_get(x25_subscr.device);
1542 if (dev == NULL)
1543 goto out;
1544
1545 nb = x25_get_neigh(dev);
1546 if (nb == NULL)
1547 goto out_dev_put;
1548
1549 dev_put(dev);
1550
1551 if (cmd == SIOCX25GSUBSCRIP) {
1552 x25_subscr.extended = nb->extended;
1553 x25_subscr.global_facil_mask = nb->global_facil_mask;
1554 rc = copy_to_user(x25_subscr32, &x25_subscr,
1555 sizeof(*x25_subscr32)) ? -EFAULT : 0;
1556 } else {
1557 rc = -EINVAL;
1558 if (x25_subscr.extended == 0 || x25_subscr.extended == 1) {
1559 rc = 0;
1560 nb->extended = x25_subscr.extended;
1561 nb->global_facil_mask = x25_subscr.global_facil_mask;
1562 }
1563 }
1564 x25_neigh_put(nb);
1565out:
1566 return rc;
1567out_dev_put:
1568 dev_put(dev);
1569 goto out;
1570}
1571
1572static int compat_x25_ioctl(struct socket *sock, unsigned int cmd,
1573 unsigned long arg)
1574{
1575 void __user *argp = compat_ptr(arg);
1576 struct sock *sk = sock->sk;
1577
1578 int rc = -ENOIOCTLCMD;
1579
1580 switch(cmd) {
1581 case TIOCOUTQ:
1582 case TIOCINQ:
1583 rc = x25_ioctl(sock, cmd, (unsigned long)argp);
1584 break;
1585 case SIOCGSTAMP:
1586 rc = -EINVAL;
Arnd Bergmann91774902009-11-05 04:37:29 +00001587 lock_kernel();
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001588 if (sk)
1589 rc = compat_sock_get_timestamp(sk,
1590 (struct timeval __user*)argp);
Arnd Bergmann91774902009-11-05 04:37:29 +00001591 unlock_kernel();
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001592 break;
Eric Dumazetae40eb12007-03-18 17:33:16 -07001593 case SIOCGSTAMPNS:
1594 rc = -EINVAL;
Arnd Bergmann91774902009-11-05 04:37:29 +00001595 lock_kernel();
Eric Dumazetae40eb12007-03-18 17:33:16 -07001596 if (sk)
1597 rc = compat_sock_get_timestampns(sk,
1598 (struct timespec __user*)argp);
Arnd Bergmann91774902009-11-05 04:37:29 +00001599 unlock_kernel();
Eric Dumazetae40eb12007-03-18 17:33:16 -07001600 break;
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001601 case SIOCGIFADDR:
1602 case SIOCSIFADDR:
1603 case SIOCGIFDSTADDR:
1604 case SIOCSIFDSTADDR:
1605 case SIOCGIFBRDADDR:
1606 case SIOCSIFBRDADDR:
1607 case SIOCGIFNETMASK:
1608 case SIOCSIFNETMASK:
1609 case SIOCGIFMETRIC:
1610 case SIOCSIFMETRIC:
1611 rc = -EINVAL;
1612 break;
1613 case SIOCADDRT:
1614 case SIOCDELRT:
1615 rc = -EPERM;
1616 if (!capable(CAP_NET_ADMIN))
1617 break;
Arnd Bergmann91774902009-11-05 04:37:29 +00001618 lock_kernel();
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001619 rc = x25_route_ioctl(cmd, argp);
Arnd Bergmann91774902009-11-05 04:37:29 +00001620 unlock_kernel();
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001621 break;
1622 case SIOCX25GSUBSCRIP:
Arnd Bergmann91774902009-11-05 04:37:29 +00001623 lock_kernel();
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001624 rc = compat_x25_subscr_ioctl(cmd, argp);
Arnd Bergmann91774902009-11-05 04:37:29 +00001625 unlock_kernel();
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001626 break;
1627 case SIOCX25SSUBSCRIP:
1628 rc = -EPERM;
1629 if (!capable(CAP_NET_ADMIN))
1630 break;
Arnd Bergmann91774902009-11-05 04:37:29 +00001631 lock_kernel();
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001632 rc = compat_x25_subscr_ioctl(cmd, argp);
Arnd Bergmann91774902009-11-05 04:37:29 +00001633 unlock_kernel();
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001634 break;
1635 case SIOCX25GFACILITIES:
1636 case SIOCX25SFACILITIES:
Shaun Pereira9a6b9f22006-03-22 00:02:00 -08001637 case SIOCX25GDTEFACILITIES:
1638 case SIOCX25SDTEFACILITIES:
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001639 case SIOCX25GCALLUSERDATA:
1640 case SIOCX25SCALLUSERDATA:
1641 case SIOCX25GCAUSEDIAG:
1642 case SIOCX25SCUDMATCHLEN:
1643 case SIOCX25CALLACCPTAPPRV:
1644 case SIOCX25SENDCALLACCPT:
1645 rc = x25_ioctl(sock, cmd, (unsigned long)argp);
1646 break;
1647 default:
1648 rc = -ENOIOCTLCMD;
1649 break;
1650 }
1651 return rc;
1652}
1653#endif
1654
Arnd Bergmann91774902009-11-05 04:37:29 +00001655static const struct proto_ops x25_proto_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 .family = AF_X25,
1657 .owner = THIS_MODULE,
1658 .release = x25_release,
1659 .bind = x25_bind,
1660 .connect = x25_connect,
1661 .socketpair = sock_no_socketpair,
1662 .accept = x25_accept,
1663 .getname = x25_getname,
Arnd Bergmann91774902009-11-05 04:37:29 +00001664 .poll = x25_datagram_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 .ioctl = x25_ioctl,
Shaun Pereira1b06e6b2006-03-22 00:00:12 -08001666#ifdef CONFIG_COMPAT
1667 .compat_ioctl = compat_x25_ioctl,
1668#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 .listen = x25_listen,
1670 .shutdown = sock_no_shutdown,
1671 .setsockopt = x25_setsockopt,
1672 .getsockopt = x25_getsockopt,
1673 .sendmsg = x25_sendmsg,
1674 .recvmsg = x25_recvmsg,
1675 .mmap = sock_no_mmap,
1676 .sendpage = sock_no_sendpage,
1677};
1678
Stephen Hemminger7546dd92009-03-09 08:18:29 +00001679static struct packet_type x25_packet_type __read_mostly = {
Harvey Harrison09640e62009-02-01 00:45:17 -08001680 .type = cpu_to_be16(ETH_P_X25),
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 .func = x25_lapb_receive_frame,
1682};
1683
1684static struct notifier_block x25_dev_notifier = {
1685 .notifier_call = x25_device_event,
1686};
1687
1688void x25_kill_by_neigh(struct x25_neigh *nb)
1689{
1690 struct sock *s;
1691 struct hlist_node *node;
1692
1693 write_lock_bh(&x25_list_lock);
1694
1695 sk_for_each(s, node, &x25_list)
1696 if (x25_sk(s)->neighbour == nb)
1697 x25_disconnect(s, ENETUNREACH, 0, 0);
1698
1699 write_unlock_bh(&x25_list_lock);
Andrew Hendry95a9dc42007-02-08 13:34:02 -08001700
1701 /* Remove any related forwards */
1702 x25_clear_forward_by_dev(nb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703}
1704
1705static int __init x25_init(void)
1706{
1707 int rc = proto_register(&x25_proto, 0);
1708
1709 if (rc != 0)
1710 goto out;
1711
1712 sock_register(&x25_family_ops);
1713
1714 dev_add_pack(&x25_packet_type);
1715
1716 register_netdevice_notifier(&x25_dev_notifier);
1717
maximilian attemsa44562e2008-01-28 20:43:16 -08001718 printk(KERN_INFO "X.25 for Linux Version 0.2\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719
1720#ifdef CONFIG_SYSCTL
1721 x25_register_sysctl();
1722#endif
1723 x25_proc_init();
1724out:
1725 return rc;
1726}
1727module_init(x25_init);
1728
1729static void __exit x25_exit(void)
1730{
1731 x25_proc_exit();
1732 x25_link_free();
1733 x25_route_free();
1734
1735#ifdef CONFIG_SYSCTL
1736 x25_unregister_sysctl();
1737#endif
1738
1739 unregister_netdevice_notifier(&x25_dev_notifier);
1740
1741 dev_remove_pack(&x25_packet_type);
1742
1743 sock_unregister(AF_X25);
1744 proto_unregister(&x25_proto);
1745}
1746module_exit(x25_exit);
1747
1748MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
1749MODULE_DESCRIPTION("The X.25 Packet Layer network layer protocol");
1750MODULE_LICENSE("GPL");
1751MODULE_ALIAS_NETPROTO(PF_X25);