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 Centralised disconnect handling.
19 * New timer architecture.
20 * 2000-03-11 Henner Eisen MSG_EOR handling more POSIX compliant.
21 * 2000-03-22 Daniela Squassoni Allowed disabling/enabling of
22 * facilities negotiation and increased
23 * the throughput upper limit.
24 * 2000-08-27 Arnaldo C. Melo s/suser/capable/ + micro cleanups
25 * 2000-09-04 Henner Eisen Set sock->state in x25_accept().
26 * 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
32 * 2005-04-02 Shaun Pereira Selective sub address matching
34 * 2005-04-15 Shaun Pereira Fast select with no restriction on
38 #include <linux/module.h>
39 #include <linux/capability.h>
40 #include <linux/errno.h>
41 #include <linux/kernel.h>
42 #include <linux/sched.h>
43 #include <linux/smp_lock.h>
44 #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 <linux/slab.h>
52 #include <net/tcp_states.h>
53 #include <asm/uaccess.h>
54 #include <linux/fcntl.h>
55 #include <linux/termios.h> /* For TIOCINQ/OUTQ */
56 #include <linux/notifier.h>
57 #include <linux/init.h>
58 #include <linux/compat.h>
59 #include <linux/ctype.h>
62 #include <net/compat.h>
64 int sysctl_x25_restart_request_timeout
= X25_DEFAULT_T20
;
65 int sysctl_x25_call_request_timeout
= X25_DEFAULT_T21
;
66 int sysctl_x25_reset_request_timeout
= X25_DEFAULT_T22
;
67 int sysctl_x25_clear_request_timeout
= X25_DEFAULT_T23
;
68 int sysctl_x25_ack_holdback_timeout
= X25_DEFAULT_T2
;
69 int sysctl_x25_forward
= 0;
72 DEFINE_RWLOCK(x25_list_lock
);
74 static const struct proto_ops x25_proto_ops
;
76 static struct x25_address null_x25_address
= {" "};
79 struct compat_x25_subscrip_struct
{
80 char device
[200-sizeof(compat_ulong_t
)];
81 compat_ulong_t global_facil_mask
;
82 compat_uint_t extended
;
87 int x25_parse_address_block(struct sk_buff
*skb
,
88 struct x25_address
*called_addr
,
89 struct x25_address
*calling_addr
)
96 /* packet has no address block */
102 needed
= 1 + (len
>> 4) + (len
& 0x0f);
104 if (skb
->len
< needed
) {
105 /* packet is too short to hold the addresses it claims
111 return x25_addr_ntoa(skb
->data
, called_addr
, calling_addr
);
114 *called_addr
->x25_addr
= 0;
115 *calling_addr
->x25_addr
= 0;
121 int x25_addr_ntoa(unsigned char *p
, struct x25_address
*called_addr
,
122 struct x25_address
*calling_addr
)
124 unsigned int called_len
, calling_len
;
125 char *called
, *calling
;
128 called_len
= (*p
>> 0) & 0x0F;
129 calling_len
= (*p
>> 4) & 0x0F;
131 called
= called_addr
->x25_addr
;
132 calling
= calling_addr
->x25_addr
;
135 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
136 if (i
< called_len
) {
138 *called
++ = ((*p
>> 0) & 0x0F) + '0';
141 *called
++ = ((*p
>> 4) & 0x0F) + '0';
145 *calling
++ = ((*p
>> 0) & 0x0F) + '0';
148 *calling
++ = ((*p
>> 4) & 0x0F) + '0';
153 *called
= *calling
= '\0';
155 return 1 + (called_len
+ calling_len
+ 1) / 2;
158 int x25_addr_aton(unsigned char *p
, struct x25_address
*called_addr
,
159 struct x25_address
*calling_addr
)
161 unsigned int called_len
, calling_len
;
162 char *called
, *calling
;
165 called
= called_addr
->x25_addr
;
166 calling
= calling_addr
->x25_addr
;
168 called_len
= strlen(called
);
169 calling_len
= strlen(calling
);
171 *p
++ = (calling_len
<< 4) | (called_len
<< 0);
173 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
174 if (i
< called_len
) {
176 *p
|= (*called
++ - '0') << 0;
180 *p
|= (*called
++ - '0') << 4;
184 *p
|= (*calling
++ - '0') << 0;
188 *p
|= (*calling
++ - '0') << 4;
193 return 1 + (called_len
+ calling_len
+ 1) / 2;
197 * Socket removal during an interrupt is now safe.
199 static void x25_remove_socket(struct sock
*sk
)
201 write_lock_bh(&x25_list_lock
);
202 sk_del_node_init(sk
);
203 write_unlock_bh(&x25_list_lock
);
207 * Kill all bound sockets on a dropped device.
209 static void x25_kill_by_device(struct net_device
*dev
)
212 struct hlist_node
*node
;
214 write_lock_bh(&x25_list_lock
);
216 sk_for_each(s
, node
, &x25_list
)
217 if (x25_sk(s
)->neighbour
&& x25_sk(s
)->neighbour
->dev
== dev
)
218 x25_disconnect(s
, ENETUNREACH
, 0, 0);
220 write_unlock_bh(&x25_list_lock
);
224 * Handle device status changes.
226 static int x25_device_event(struct notifier_block
*this, unsigned long event
,
229 struct net_device
*dev
= ptr
;
230 struct x25_neigh
*nb
;
232 if (!net_eq(dev_net(dev
), &init_net
))
235 if (dev
->type
== ARPHRD_X25
236 #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
237 || dev
->type
== ARPHRD_ETHER
242 x25_link_device_up(dev
);
244 case NETDEV_GOING_DOWN
:
245 nb
= x25_get_neigh(dev
);
247 x25_terminate_link(nb
);
252 x25_kill_by_device(dev
);
253 x25_route_device_down(dev
);
254 x25_link_device_down(dev
);
263 * Add a socket to the bound sockets list.
265 static void x25_insert_socket(struct sock
*sk
)
267 write_lock_bh(&x25_list_lock
);
268 sk_add_node(sk
, &x25_list
);
269 write_unlock_bh(&x25_list_lock
);
273 * Find a socket that wants to accept the Call Request we just
274 * received. Check the full list for an address/cud match.
275 * If no cuds match return the next_best thing, an address match.
276 * Note: if a listening socket has cud set it must only get calls
279 static struct sock
*x25_find_listener(struct x25_address
*addr
,
283 struct sock
*next_best
;
284 struct hlist_node
*node
;
286 read_lock_bh(&x25_list_lock
);
289 sk_for_each(s
, node
, &x25_list
)
290 if ((!strcmp(addr
->x25_addr
,
291 x25_sk(s
)->source_addr
.x25_addr
) ||
292 !strcmp(addr
->x25_addr
,
293 null_x25_address
.x25_addr
)) &&
294 s
->sk_state
== TCP_LISTEN
) {
296 * Found a listening socket, now check the incoming
297 * call user data vs this sockets call user data
299 if(skb
->len
> 0 && x25_sk(s
)->cudmatchlength
> 0) {
300 if((memcmp(x25_sk(s
)->calluserdata
.cuddata
,
302 x25_sk(s
)->cudmatchlength
)) == 0) {
316 read_unlock_bh(&x25_list_lock
);
321 * Find a connected X.25 socket given my LCI and neighbour.
323 static struct sock
*__x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
326 struct hlist_node
*node
;
328 sk_for_each(s
, node
, &x25_list
)
329 if (x25_sk(s
)->lci
== lci
&& x25_sk(s
)->neighbour
== nb
) {
338 struct sock
*x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
342 read_lock_bh(&x25_list_lock
);
343 s
= __x25_find_socket(lci
, nb
);
344 read_unlock_bh(&x25_list_lock
);
349 * Find a unique LCI for a given device.
351 static unsigned int x25_new_lci(struct x25_neigh
*nb
)
353 unsigned int lci
= 1;
356 read_lock_bh(&x25_list_lock
);
358 while ((sk
= __x25_find_socket(lci
, nb
)) != NULL
) {
366 read_unlock_bh(&x25_list_lock
);
373 static void __x25_destroy_socket(struct sock
*);
376 * handler for deferred kills.
378 static void x25_destroy_timer(unsigned long data
)
380 x25_destroy_socket_from_timer((struct sock
*)data
);
384 * This is called from user mode and the timers. Thus it protects itself
385 * against interrupt users but doesn't worry about being called during
386 * work. Once it is removed from the queue no interrupt or bottom half
387 * will touch it and we are (fairly 8-) ) safe.
388 * Not static as it's used by the timer
390 static void __x25_destroy_socket(struct sock
*sk
)
394 x25_stop_heartbeat(sk
);
397 x25_remove_socket(sk
);
398 x25_clear_queues(sk
); /* Flush the queues */
400 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
401 if (skb
->sk
!= sk
) { /* A pending connection */
403 * Queue the unaccepted socket for death
405 skb
->sk
->sk_state
= TCP_LISTEN
;
406 sock_set_flag(skb
->sk
, SOCK_DEAD
);
407 x25_start_heartbeat(skb
->sk
);
408 x25_sk(skb
->sk
)->state
= X25_STATE_0
;
414 if (sk_has_allocations(sk
)) {
415 /* Defer: outstanding buffers */
416 sk
->sk_timer
.expires
= jiffies
+ 10 * HZ
;
417 sk
->sk_timer
.function
= x25_destroy_timer
;
418 sk
->sk_timer
.data
= (unsigned long)sk
;
419 add_timer(&sk
->sk_timer
);
421 /* drop last reference so sock_put will free */
426 void x25_destroy_socket_from_timer(struct sock
*sk
)
430 __x25_destroy_socket(sk
);
435 static void x25_destroy_socket(struct sock
*sk
)
439 __x25_destroy_socket(sk
);
445 * Handling for system calls applied via the various interfaces to a
446 * X.25 socket object.
449 static int x25_setsockopt(struct socket
*sock
, int level
, int optname
,
450 char __user
*optval
, unsigned int optlen
)
453 struct sock
*sk
= sock
->sk
;
454 int rc
= -ENOPROTOOPT
;
456 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
460 if (optlen
< sizeof(int))
464 if (get_user(opt
, (int __user
*)optval
))
468 set_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
470 clear_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
476 static int x25_getsockopt(struct socket
*sock
, int level
, int optname
,
477 char __user
*optval
, int __user
*optlen
)
479 struct sock
*sk
= sock
->sk
;
480 int val
, len
, rc
= -ENOPROTOOPT
;
482 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
486 if (get_user(len
, optlen
))
489 len
= min_t(unsigned int, len
, sizeof(int));
496 if (put_user(len
, optlen
))
499 val
= test_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
500 rc
= copy_to_user(optval
, &val
, len
) ? -EFAULT
: 0;
505 static int x25_listen(struct socket
*sock
, int backlog
)
507 struct sock
*sk
= sock
->sk
;
508 int rc
= -EOPNOTSUPP
;
511 if (sk
->sk_state
!= TCP_LISTEN
) {
512 memset(&x25_sk(sk
)->dest_addr
, 0, X25_ADDR_LEN
);
513 sk
->sk_max_ack_backlog
= backlog
;
514 sk
->sk_state
= TCP_LISTEN
;
522 static struct proto x25_proto
= {
524 .owner
= THIS_MODULE
,
525 .obj_size
= sizeof(struct x25_sock
),
528 static struct sock
*x25_alloc_socket(struct net
*net
)
530 struct x25_sock
*x25
;
531 struct sock
*sk
= sk_alloc(net
, AF_X25
, GFP_ATOMIC
, &x25_proto
);
536 sock_init_data(NULL
, sk
);
539 skb_queue_head_init(&x25
->ack_queue
);
540 skb_queue_head_init(&x25
->fragment_queue
);
541 skb_queue_head_init(&x25
->interrupt_in_queue
);
542 skb_queue_head_init(&x25
->interrupt_out_queue
);
547 static int x25_create(struct net
*net
, struct socket
*sock
, int protocol
,
551 struct x25_sock
*x25
;
552 int rc
= -EAFNOSUPPORT
;
554 if (!net_eq(net
, &init_net
))
557 rc
= -ESOCKTNOSUPPORT
;
558 if (sock
->type
!= SOCK_SEQPACKET
)
566 if ((sk
= x25_alloc_socket(net
)) == NULL
)
571 sock_init_data(sock
, sk
);
575 sock
->ops
= &x25_proto_ops
;
576 sk
->sk_protocol
= protocol
;
577 sk
->sk_backlog_rcv
= x25_backlog_rcv
;
579 x25
->t21
= sysctl_x25_call_request_timeout
;
580 x25
->t22
= sysctl_x25_reset_request_timeout
;
581 x25
->t23
= sysctl_x25_clear_request_timeout
;
582 x25
->t2
= sysctl_x25_ack_holdback_timeout
;
583 x25
->state
= X25_STATE_0
;
584 x25
->cudmatchlength
= 0;
585 set_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
); /* normally no cud */
588 x25
->facilities
.winsize_in
= X25_DEFAULT_WINDOW_SIZE
;
589 x25
->facilities
.winsize_out
= X25_DEFAULT_WINDOW_SIZE
;
590 x25
->facilities
.pacsize_in
= X25_DEFAULT_PACKET_SIZE
;
591 x25
->facilities
.pacsize_out
= X25_DEFAULT_PACKET_SIZE
;
592 x25
->facilities
.throughput
= 0; /* by default don't negotiate
594 x25
->facilities
.reverse
= X25_DEFAULT_REVERSE
;
595 x25
->dte_facilities
.calling_len
= 0;
596 x25
->dte_facilities
.called_len
= 0;
597 memset(x25
->dte_facilities
.called_ae
, '\0',
598 sizeof(x25
->dte_facilities
.called_ae
));
599 memset(x25
->dte_facilities
.calling_ae
, '\0',
600 sizeof(x25
->dte_facilities
.calling_ae
));
607 static struct sock
*x25_make_new(struct sock
*osk
)
609 struct sock
*sk
= NULL
;
610 struct x25_sock
*x25
, *ox25
;
612 if (osk
->sk_type
!= SOCK_SEQPACKET
)
615 if ((sk
= x25_alloc_socket(sock_net(osk
))) == NULL
)
620 sk
->sk_type
= osk
->sk_type
;
621 sk
->sk_priority
= osk
->sk_priority
;
622 sk
->sk_protocol
= osk
->sk_protocol
;
623 sk
->sk_rcvbuf
= osk
->sk_rcvbuf
;
624 sk
->sk_sndbuf
= osk
->sk_sndbuf
;
625 sk
->sk_state
= TCP_ESTABLISHED
;
626 sk
->sk_backlog_rcv
= osk
->sk_backlog_rcv
;
627 sock_copy_flags(sk
, osk
);
630 x25
->t21
= ox25
->t21
;
631 x25
->t22
= ox25
->t22
;
632 x25
->t23
= ox25
->t23
;
634 x25
->flags
= ox25
->flags
;
635 x25
->facilities
= ox25
->facilities
;
636 x25
->dte_facilities
= ox25
->dte_facilities
;
637 x25
->cudmatchlength
= ox25
->cudmatchlength
;
639 clear_bit(X25_INTERRUPT_FLAG
, &x25
->flags
);
645 static int x25_release(struct socket
*sock
)
647 struct sock
*sk
= sock
->sk
;
648 struct x25_sock
*x25
;
656 switch (x25
->state
) {
660 x25_disconnect(sk
, 0, 0, 0);
661 x25_destroy_socket(sk
);
667 x25_clear_queues(sk
);
668 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
669 x25_start_t23timer(sk
);
670 x25
->state
= X25_STATE_2
;
671 sk
->sk_state
= TCP_CLOSE
;
672 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
673 sk
->sk_state_change(sk
);
674 sock_set_flag(sk
, SOCK_DEAD
);
675 sock_set_flag(sk
, SOCK_DESTROY
);
685 static int x25_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
687 struct sock
*sk
= sock
->sk
;
688 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
691 if (!sock_flag(sk
, SOCK_ZAPPED
) ||
692 addr_len
!= sizeof(struct sockaddr_x25
) ||
693 addr
->sx25_family
!= AF_X25
) {
698 len
= strlen(addr
->sx25_addr
.x25_addr
);
699 for (i
= 0; i
< len
; i
++) {
700 if (!isdigit(addr
->sx25_addr
.x25_addr
[i
])) {
707 x25_sk(sk
)->source_addr
= addr
->sx25_addr
;
708 x25_insert_socket(sk
);
709 sock_reset_flag(sk
, SOCK_ZAPPED
);
711 SOCK_DEBUG(sk
, "x25_bind: socket is bound\n");
716 static int x25_wait_for_connection_establishment(struct sock
*sk
)
718 DECLARE_WAITQUEUE(wait
, current
);
721 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
723 __set_current_state(TASK_INTERRUPTIBLE
);
725 if (signal_pending(current
))
729 sk
->sk_socket
->state
= SS_UNCONNECTED
;
733 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
740 __set_current_state(TASK_RUNNING
);
741 remove_wait_queue(sk_sleep(sk
), &wait
);
745 static int x25_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
746 int addr_len
, int flags
)
748 struct sock
*sk
= sock
->sk
;
749 struct x25_sock
*x25
= x25_sk(sk
);
750 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
751 struct x25_route
*rt
;
755 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
756 sock
->state
= SS_CONNECTED
;
757 goto out
; /* Connect completed during a ERESTARTSYS event */
761 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
762 sock
->state
= SS_UNCONNECTED
;
766 rc
= -EISCONN
; /* No reconnect on a seqpacket socket */
767 if (sk
->sk_state
== TCP_ESTABLISHED
)
770 sk
->sk_state
= TCP_CLOSE
;
771 sock
->state
= SS_UNCONNECTED
;
774 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
775 addr
->sx25_family
!= AF_X25
)
779 rt
= x25_get_route(&addr
->sx25_addr
);
783 x25
->neighbour
= x25_get_neigh(rt
->dev
);
787 x25_limit_facilities(&x25
->facilities
, x25
->neighbour
);
789 x25
->lci
= x25_new_lci(x25
->neighbour
);
794 if (sock_flag(sk
, SOCK_ZAPPED
)) /* Must bind first - autobinding does not work */
797 if (!strcmp(x25
->source_addr
.x25_addr
, null_x25_address
.x25_addr
))
798 memset(&x25
->source_addr
, '\0', X25_ADDR_LEN
);
800 x25
->dest_addr
= addr
->sx25_addr
;
802 /* Move to connecting socket, start sending Connect Requests */
803 sock
->state
= SS_CONNECTING
;
804 sk
->sk_state
= TCP_SYN_SENT
;
806 x25
->state
= X25_STATE_1
;
808 x25_write_internal(sk
, X25_CALL_REQUEST
);
810 x25_start_heartbeat(sk
);
811 x25_start_t21timer(sk
);
815 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
818 rc
= x25_wait_for_connection_establishment(sk
);
822 sock
->state
= SS_CONNECTED
;
826 x25_neigh_put(x25
->neighbour
);
834 static int x25_wait_for_data(struct sock
*sk
, long timeout
)
836 DECLARE_WAITQUEUE(wait
, current
);
839 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
841 __set_current_state(TASK_INTERRUPTIBLE
);
842 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
845 if (signal_pending(current
))
851 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
853 timeout
= schedule_timeout(timeout
);
858 __set_current_state(TASK_RUNNING
);
859 remove_wait_queue(sk_sleep(sk
), &wait
);
863 static int x25_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
865 struct sock
*sk
= sock
->sk
;
874 if (sk
->sk_type
!= SOCK_SEQPACKET
)
879 if (sk
->sk_state
!= TCP_LISTEN
)
882 rc
= x25_wait_for_data(sk
, sk
->sk_rcvtimeo
);
885 skb
= skb_dequeue(&sk
->sk_receive_queue
);
890 sock_graft(newsk
, newsock
);
892 /* Now attach up the new socket */
895 sk
->sk_ack_backlog
--;
896 newsock
->state
= SS_CONNECTED
;
904 static int x25_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
905 int *uaddr_len
, int peer
)
907 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)uaddr
;
908 struct sock
*sk
= sock
->sk
;
909 struct x25_sock
*x25
= x25_sk(sk
);
913 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
917 sx25
->sx25_addr
= x25
->dest_addr
;
919 sx25
->sx25_addr
= x25
->source_addr
;
921 sx25
->sx25_family
= AF_X25
;
922 *uaddr_len
= sizeof(*sx25
);
928 int x25_rx_call_request(struct sk_buff
*skb
, struct x25_neigh
*nb
,
933 struct x25_sock
*makex25
;
934 struct x25_address source_addr
, dest_addr
;
935 struct x25_facilities facilities
;
936 struct x25_dte_facilities dte_facilities
;
937 int len
, addr_len
, rc
;
940 * Remove the LCI and frame type.
942 skb_pull(skb
, X25_STD_MIN_LEN
);
945 * Extract the X.25 addresses and convert them to ASCII strings,
948 * Address block is mandatory in call request packets
950 addr_len
= x25_parse_address_block(skb
, &source_addr
, &dest_addr
);
952 goto out_clear_request
;
953 skb_pull(skb
, addr_len
);
956 * Get the length of the facilities, skip past them for the moment
957 * get the call user data because this is needed to determine
958 * the correct listener
960 * Facilities length is mandatory in call request packets
963 goto out_clear_request
;
964 len
= skb
->data
[0] + 1;
966 goto out_clear_request
;
970 * Find a listener for the particular address/cud pair.
972 sk
= x25_find_listener(&source_addr
,skb
);
975 if (sk
!= NULL
&& sk_acceptq_is_full(sk
)) {
980 * We dont have any listeners for this incoming call.
984 skb_push(skb
, addr_len
+ X25_STD_MIN_LEN
);
985 if (sysctl_x25_forward
&&
986 x25_forward_call(&dest_addr
, nb
, skb
, lci
) > 0)
988 /* Call was forwarded, dont process it any more */
993 /* No listeners, can't forward, clear the call */
994 goto out_clear_request
;
999 * Try to reach a compromise on the requested facilities.
1001 len
= x25_negotiate_facilities(skb
, sk
, &facilities
, &dte_facilities
);
1006 * current neighbour/link might impose additional limits
1007 * on certain facilties
1010 x25_limit_facilities(&facilities
, nb
);
1013 * Try to create a new socket.
1015 make
= x25_make_new(sk
);
1020 * Remove the facilities
1025 make
->sk_state
= TCP_ESTABLISHED
;
1027 makex25
= x25_sk(make
);
1029 makex25
->dest_addr
= dest_addr
;
1030 makex25
->source_addr
= source_addr
;
1031 makex25
->neighbour
= nb
;
1032 makex25
->facilities
= facilities
;
1033 makex25
->dte_facilities
= dte_facilities
;
1034 makex25
->vc_facil_mask
= x25_sk(sk
)->vc_facil_mask
;
1035 /* ensure no reverse facil on accept */
1036 makex25
->vc_facil_mask
&= ~X25_MASK_REVERSE
;
1037 /* ensure no calling address extension on accept */
1038 makex25
->vc_facil_mask
&= ~X25_MASK_CALLING_AE
;
1039 makex25
->cudmatchlength
= x25_sk(sk
)->cudmatchlength
;
1041 /* Normally all calls are accepted immediately */
1042 if (test_bit(X25_ACCPT_APPRV_FLAG
, &makex25
->flags
)) {
1043 x25_write_internal(make
, X25_CALL_ACCEPTED
);
1044 makex25
->state
= X25_STATE_3
;
1048 * Incoming Call User Data.
1050 skb_copy_from_linear_data(skb
, makex25
->calluserdata
.cuddata
, skb
->len
);
1051 makex25
->calluserdata
.cudlength
= skb
->len
;
1053 sk
->sk_ack_backlog
++;
1055 x25_insert_socket(make
);
1057 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1059 x25_start_heartbeat(make
);
1061 if (!sock_flag(sk
, SOCK_DEAD
))
1062 sk
->sk_data_ready(sk
, skb
->len
);
1071 x25_transmit_clear_request(nb
, lci
, 0x01);
1075 static int x25_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1076 struct msghdr
*msg
, size_t len
)
1078 struct sock
*sk
= sock
->sk
;
1079 struct x25_sock
*x25
= x25_sk(sk
);
1080 struct sockaddr_x25
*usx25
= (struct sockaddr_x25
*)msg
->msg_name
;
1081 struct sockaddr_x25 sx25
;
1082 struct sk_buff
*skb
;
1083 unsigned char *asmptr
;
1084 int noblock
= msg
->msg_flags
& MSG_DONTWAIT
;
1086 int qbit
= 0, rc
= -EINVAL
;
1089 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_OOB
|MSG_EOR
|MSG_CMSG_COMPAT
))
1092 /* we currently don't support segmented records at the user interface */
1093 if (!(msg
->msg_flags
& (MSG_EOR
|MSG_OOB
)))
1096 rc
= -EADDRNOTAVAIL
;
1097 if (sock_flag(sk
, SOCK_ZAPPED
))
1101 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1102 send_sig(SIGPIPE
, current
, 0);
1107 if (!x25
->neighbour
)
1112 if (msg
->msg_namelen
< sizeof(sx25
))
1114 memcpy(&sx25
, usx25
, sizeof(sx25
));
1116 if (strcmp(x25
->dest_addr
.x25_addr
, sx25
.sx25_addr
.x25_addr
))
1119 if (sx25
.sx25_family
!= AF_X25
)
1123 * FIXME 1003.1g - if the socket is like this because
1124 * it has become closed (not started closed) we ought
1125 * to SIGPIPE, EPIPE;
1128 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1131 sx25
.sx25_family
= AF_X25
;
1132 sx25
.sx25_addr
= x25
->dest_addr
;
1135 /* Sanity check the packet size */
1141 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: Addresses built.\n");
1143 /* Build a packet */
1144 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: building packet.\n");
1146 if ((msg
->msg_flags
& MSG_OOB
) && len
> 32)
1149 size
= len
+ X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
;
1151 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
1154 X25_SKB_CB(skb
)->flags
= msg
->msg_flags
;
1156 skb_reserve(skb
, X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
);
1159 * Put the data on the end
1161 SOCK_DEBUG(sk
, "x25_sendmsg: Copying user data\n");
1163 skb_reset_transport_header(skb
);
1166 rc
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1171 * If the Q BIT Include socket option is in force, the first
1172 * byte of the user data is the logical value of the Q Bit.
1174 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1175 qbit
= skb
->data
[0];
1180 * Push down the X.25 header
1182 SOCK_DEBUG(sk
, "x25_sendmsg: Building X.25 Header.\n");
1184 if (msg
->msg_flags
& MSG_OOB
) {
1185 if (x25
->neighbour
->extended
) {
1186 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1187 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1188 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1189 *asmptr
++ = X25_INTERRUPT
;
1191 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1192 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1193 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1194 *asmptr
++ = X25_INTERRUPT
;
1197 if (x25
->neighbour
->extended
) {
1198 /* Build an Extended X.25 header */
1199 asmptr
= skb_push(skb
, X25_EXT_MIN_LEN
);
1200 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1201 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1202 *asmptr
++ = X25_DATA
;
1203 *asmptr
++ = X25_DATA
;
1205 /* Build an Standard X.25 header */
1206 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1207 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1208 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1209 *asmptr
++ = X25_DATA
;
1213 skb
->data
[0] |= X25_Q_BIT
;
1216 SOCK_DEBUG(sk
, "x25_sendmsg: Built header.\n");
1217 SOCK_DEBUG(sk
, "x25_sendmsg: Transmitting buffer\n");
1220 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1223 if (msg
->msg_flags
& MSG_OOB
)
1224 skb_queue_tail(&x25
->interrupt_out_queue
, skb
);
1226 rc
= x25_output(sk
, skb
);
1230 else if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
))
1235 * lock_sock() is currently only used to serialize this x25_kick()
1236 * against input-driven x25_kick() calls. It currently only blocks
1237 * incoming packets for this socket and does not protect against
1238 * any other socket state changes and is not called from anywhere
1239 * else. As x25_kick() cannot block and as long as all socket
1240 * operations are BKL-wrapped, we don't need take to care about
1241 * purging the backlog queue in x25_release().
1243 * Using lock_sock() to protect all socket operations entirely
1244 * (and making the whole x25 stack SMP aware) unfortunately would
1245 * require major changes to {send,recv}msg and skb allocation methods.
1261 static int x25_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1262 struct msghdr
*msg
, size_t size
,
1265 struct sock
*sk
= sock
->sk
;
1266 struct x25_sock
*x25
= x25_sk(sk
);
1267 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)msg
->msg_name
;
1270 struct sk_buff
*skb
;
1271 unsigned char *asmptr
;
1276 * This works for seqpacket too. The receiver has ordered the queue for
1277 * us! We do one quick check first though
1279 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1282 if (flags
& MSG_OOB
) {
1284 if (sock_flag(sk
, SOCK_URGINLINE
) ||
1285 !skb_peek(&x25
->interrupt_in_queue
))
1288 skb
= skb_dequeue(&x25
->interrupt_in_queue
);
1290 skb_pull(skb
, X25_STD_MIN_LEN
);
1293 * No Q bit information on Interrupt data.
1295 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1296 asmptr
= skb_push(skb
, 1);
1300 msg
->msg_flags
|= MSG_OOB
;
1302 /* Now we can treat all alike */
1303 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1304 flags
& MSG_DONTWAIT
, &rc
);
1308 qbit
= (skb
->data
[0] & X25_Q_BIT
) == X25_Q_BIT
;
1310 skb_pull(skb
, x25
->neighbour
->extended
?
1311 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
);
1313 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1314 asmptr
= skb_push(skb
, 1);
1319 skb_reset_transport_header(skb
);
1322 if (copied
> size
) {
1324 msg
->msg_flags
|= MSG_TRUNC
;
1327 /* Currently, each datagram always contains a complete record */
1328 msg
->msg_flags
|= MSG_EOR
;
1330 rc
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1332 goto out_free_dgram
;
1335 sx25
->sx25_family
= AF_X25
;
1336 sx25
->sx25_addr
= x25
->dest_addr
;
1339 msg
->msg_namelen
= sizeof(struct sockaddr_x25
);
1346 skb_free_datagram(sk
, skb
);
1353 static int x25_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1355 struct sock
*sk
= sock
->sk
;
1356 struct x25_sock
*x25
= x25_sk(sk
);
1357 void __user
*argp
= (void __user
*)arg
;
1364 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1367 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1372 struct sk_buff
*skb
;
1375 * These two are safe on a single CPU system as
1376 * only user tasks fiddle here
1379 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1382 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1389 rc
= sock_get_timestamp(sk
,
1390 (struct timeval __user
*)argp
);
1395 rc
= sock_get_timestampns(sk
,
1396 (struct timespec __user
*)argp
);
1400 case SIOCGIFDSTADDR
:
1401 case SIOCSIFDSTADDR
:
1402 case SIOCGIFBRDADDR
:
1403 case SIOCSIFBRDADDR
:
1404 case SIOCGIFNETMASK
:
1405 case SIOCSIFNETMASK
:
1413 if (!capable(CAP_NET_ADMIN
))
1415 rc
= x25_route_ioctl(cmd
, argp
);
1417 case SIOCX25GSUBSCRIP
:
1418 rc
= x25_subscr_ioctl(cmd
, argp
);
1420 case SIOCX25SSUBSCRIP
:
1422 if (!capable(CAP_NET_ADMIN
))
1424 rc
= x25_subscr_ioctl(cmd
, argp
);
1426 case SIOCX25GFACILITIES
: {
1428 rc
= copy_to_user(argp
, &x25
->facilities
,
1429 sizeof(x25
->facilities
))
1435 case SIOCX25SFACILITIES
: {
1436 struct x25_facilities facilities
;
1438 if (copy_from_user(&facilities
, argp
,
1439 sizeof(facilities
)))
1443 if (sk
->sk_state
!= TCP_LISTEN
&&
1444 sk
->sk_state
!= TCP_CLOSE
)
1445 goto out_fac_release
;
1446 if (facilities
.pacsize_in
< X25_PS16
||
1447 facilities
.pacsize_in
> X25_PS4096
)
1448 goto out_fac_release
;
1449 if (facilities
.pacsize_out
< X25_PS16
||
1450 facilities
.pacsize_out
> X25_PS4096
)
1451 goto out_fac_release
;
1452 if (facilities
.winsize_in
< 1 ||
1453 facilities
.winsize_in
> 127)
1454 goto out_fac_release
;
1455 if (facilities
.throughput
) {
1456 int out
= facilities
.throughput
& 0xf0;
1457 int in
= facilities
.throughput
& 0x0f;
1459 facilities
.throughput
|=
1460 X25_DEFAULT_THROUGHPUT
<< 4;
1461 else if (out
< 0x30 || out
> 0xD0)
1462 goto out_fac_release
;
1464 facilities
.throughput
|=
1465 X25_DEFAULT_THROUGHPUT
;
1466 else if (in
< 0x03 || in
> 0x0D)
1467 goto out_fac_release
;
1469 if (facilities
.reverse
&&
1470 (facilities
.reverse
& 0x81) != 0x81)
1471 goto out_fac_release
;
1472 x25
->facilities
= facilities
;
1479 case SIOCX25GDTEFACILITIES
: {
1481 rc
= copy_to_user(argp
, &x25
->dte_facilities
,
1482 sizeof(x25
->dte_facilities
));
1489 case SIOCX25SDTEFACILITIES
: {
1490 struct x25_dte_facilities dtefacs
;
1492 if (copy_from_user(&dtefacs
, argp
, sizeof(dtefacs
)))
1496 if (sk
->sk_state
!= TCP_LISTEN
&&
1497 sk
->sk_state
!= TCP_CLOSE
)
1498 goto out_dtefac_release
;
1499 if (dtefacs
.calling_len
> X25_MAX_AE_LEN
)
1500 goto out_dtefac_release
;
1501 if (dtefacs
.calling_ae
== NULL
)
1502 goto out_dtefac_release
;
1503 if (dtefacs
.called_len
> X25_MAX_AE_LEN
)
1504 goto out_dtefac_release
;
1505 if (dtefacs
.called_ae
== NULL
)
1506 goto out_dtefac_release
;
1507 x25
->dte_facilities
= dtefacs
;
1514 case SIOCX25GCALLUSERDATA
: {
1516 rc
= copy_to_user(argp
, &x25
->calluserdata
,
1517 sizeof(x25
->calluserdata
))
1523 case SIOCX25SCALLUSERDATA
: {
1524 struct x25_calluserdata calluserdata
;
1527 if (copy_from_user(&calluserdata
, argp
,
1528 sizeof(calluserdata
)))
1531 if (calluserdata
.cudlength
> X25_MAX_CUD_LEN
)
1534 x25
->calluserdata
= calluserdata
;
1540 case SIOCX25GCAUSEDIAG
: {
1542 rc
= copy_to_user(argp
, &x25
->causediag
,
1543 sizeof(x25
->causediag
))
1549 case SIOCX25SCAUSEDIAG
: {
1550 struct x25_causediag causediag
;
1552 if (copy_from_user(&causediag
, argp
, sizeof(causediag
)))
1555 x25
->causediag
= causediag
;
1562 case SIOCX25SCUDMATCHLEN
: {
1563 struct x25_subaddr sub_addr
;
1566 if(sk
->sk_state
!= TCP_CLOSE
)
1567 goto out_cud_release
;
1569 if (copy_from_user(&sub_addr
, argp
,
1571 goto out_cud_release
;
1573 if(sub_addr
.cudmatchlength
> X25_MAX_CUD_LEN
)
1574 goto out_cud_release
;
1575 x25
->cudmatchlength
= sub_addr
.cudmatchlength
;
1582 case SIOCX25CALLACCPTAPPRV
: {
1585 if (sk
->sk_state
!= TCP_CLOSE
)
1587 clear_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
);
1593 case SIOCX25SENDCALLACCPT
: {
1596 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1598 /* must call accptapprv above */
1599 if (test_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
))
1601 x25_write_internal(sk
, X25_CALL_ACCEPTED
);
1602 x25
->state
= X25_STATE_3
;
1616 static const struct net_proto_family x25_family_ops
= {
1618 .create
= x25_create
,
1619 .owner
= THIS_MODULE
,
1622 #ifdef CONFIG_COMPAT
1623 static int compat_x25_subscr_ioctl(unsigned int cmd
,
1624 struct compat_x25_subscrip_struct __user
*x25_subscr32
)
1626 struct compat_x25_subscrip_struct x25_subscr
;
1627 struct x25_neigh
*nb
;
1628 struct net_device
*dev
;
1632 if (copy_from_user(&x25_subscr
, x25_subscr32
, sizeof(*x25_subscr32
)))
1636 dev
= x25_dev_get(x25_subscr
.device
);
1640 nb
= x25_get_neigh(dev
);
1646 if (cmd
== SIOCX25GSUBSCRIP
) {
1647 read_lock_bh(&x25_neigh_list_lock
);
1648 x25_subscr
.extended
= nb
->extended
;
1649 x25_subscr
.global_facil_mask
= nb
->global_facil_mask
;
1650 read_unlock_bh(&x25_neigh_list_lock
);
1651 rc
= copy_to_user(x25_subscr32
, &x25_subscr
,
1652 sizeof(*x25_subscr32
)) ? -EFAULT
: 0;
1655 if (x25_subscr
.extended
== 0 || x25_subscr
.extended
== 1) {
1657 write_lock_bh(&x25_neigh_list_lock
);
1658 nb
->extended
= x25_subscr
.extended
;
1659 nb
->global_facil_mask
= x25_subscr
.global_facil_mask
;
1660 write_unlock_bh(&x25_neigh_list_lock
);
1671 static int compat_x25_ioctl(struct socket
*sock
, unsigned int cmd
,
1674 void __user
*argp
= compat_ptr(arg
);
1675 struct sock
*sk
= sock
->sk
;
1677 int rc
= -ENOIOCTLCMD
;
1682 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1687 rc
= compat_sock_get_timestamp(sk
,
1688 (struct timeval __user
*)argp
);
1693 rc
= compat_sock_get_timestampns(sk
,
1694 (struct timespec __user
*)argp
);
1698 case SIOCGIFDSTADDR
:
1699 case SIOCSIFDSTADDR
:
1700 case SIOCGIFBRDADDR
:
1701 case SIOCSIFBRDADDR
:
1702 case SIOCGIFNETMASK
:
1703 case SIOCSIFNETMASK
:
1711 if (!capable(CAP_NET_ADMIN
))
1713 rc
= x25_route_ioctl(cmd
, argp
);
1715 case SIOCX25GSUBSCRIP
:
1716 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1718 case SIOCX25SSUBSCRIP
:
1720 if (!capable(CAP_NET_ADMIN
))
1722 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1724 case SIOCX25GFACILITIES
:
1725 case SIOCX25SFACILITIES
:
1726 case SIOCX25GDTEFACILITIES
:
1727 case SIOCX25SDTEFACILITIES
:
1728 case SIOCX25GCALLUSERDATA
:
1729 case SIOCX25SCALLUSERDATA
:
1730 case SIOCX25GCAUSEDIAG
:
1731 case SIOCX25SCAUSEDIAG
:
1732 case SIOCX25SCUDMATCHLEN
:
1733 case SIOCX25CALLACCPTAPPRV
:
1734 case SIOCX25SENDCALLACCPT
:
1735 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1745 static const struct proto_ops x25_proto_ops
= {
1747 .owner
= THIS_MODULE
,
1748 .release
= x25_release
,
1750 .connect
= x25_connect
,
1751 .socketpair
= sock_no_socketpair
,
1752 .accept
= x25_accept
,
1753 .getname
= x25_getname
,
1754 .poll
= datagram_poll
,
1756 #ifdef CONFIG_COMPAT
1757 .compat_ioctl
= compat_x25_ioctl
,
1759 .listen
= x25_listen
,
1760 .shutdown
= sock_no_shutdown
,
1761 .setsockopt
= x25_setsockopt
,
1762 .getsockopt
= x25_getsockopt
,
1763 .sendmsg
= x25_sendmsg
,
1764 .recvmsg
= x25_recvmsg
,
1765 .mmap
= sock_no_mmap
,
1766 .sendpage
= sock_no_sendpage
,
1769 static struct packet_type x25_packet_type __read_mostly
= {
1770 .type
= cpu_to_be16(ETH_P_X25
),
1771 .func
= x25_lapb_receive_frame
,
1774 static struct notifier_block x25_dev_notifier
= {
1775 .notifier_call
= x25_device_event
,
1778 void x25_kill_by_neigh(struct x25_neigh
*nb
)
1781 struct hlist_node
*node
;
1783 write_lock_bh(&x25_list_lock
);
1785 sk_for_each(s
, node
, &x25_list
)
1786 if (x25_sk(s
)->neighbour
== nb
)
1787 x25_disconnect(s
, ENETUNREACH
, 0, 0);
1789 write_unlock_bh(&x25_list_lock
);
1791 /* Remove any related forwards */
1792 x25_clear_forward_by_dev(nb
->dev
);
1795 static int __init
x25_init(void)
1797 int rc
= proto_register(&x25_proto
, 0);
1802 rc
= sock_register(&x25_family_ops
);
1806 dev_add_pack(&x25_packet_type
);
1808 rc
= register_netdevice_notifier(&x25_dev_notifier
);
1812 printk(KERN_INFO
"X.25 for Linux Version 0.2\n");
1814 x25_register_sysctl();
1815 rc
= x25_proc_init();
1821 unregister_netdevice_notifier(&x25_dev_notifier
);
1823 sock_unregister(AF_X25
);
1825 proto_unregister(&x25_proto
);
1828 module_init(x25_init
);
1830 static void __exit
x25_exit(void)
1836 x25_unregister_sysctl();
1838 unregister_netdevice_notifier(&x25_dev_notifier
);
1840 dev_remove_pack(&x25_packet_type
);
1842 sock_unregister(AF_X25
);
1843 proto_unregister(&x25_proto
);
1845 module_exit(x25_exit
);
1847 MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
1848 MODULE_DESCRIPTION("The X.25 Packet Layer network layer protocol");
1849 MODULE_LICENSE("GPL");
1850 MODULE_ALIAS_NETPROTO(PF_X25
);