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/config.h>
39 #include <linux/module.h>
40 #include <linux/capability.h>
41 #include <linux/errno.h>
42 #include <linux/kernel.h>
43 #include <linux/sched.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>
51 #include <net/tcp_states.h>
52 #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>
57 #include <linux/compat.h>
60 #include <net/compat.h>
62 int sysctl_x25_restart_request_timeout
= X25_DEFAULT_T20
;
63 int sysctl_x25_call_request_timeout
= X25_DEFAULT_T21
;
64 int sysctl_x25_reset_request_timeout
= X25_DEFAULT_T22
;
65 int sysctl_x25_clear_request_timeout
= X25_DEFAULT_T23
;
66 int sysctl_x25_ack_holdback_timeout
= X25_DEFAULT_T2
;
69 DEFINE_RWLOCK(x25_list_lock
);
71 static const struct proto_ops x25_proto_ops
;
73 static struct x25_address null_x25_address
= {" "};
76 struct compat_x25_subscrip_struct
{
77 char device
[200-sizeof(compat_ulong_t
)];
78 compat_ulong_t global_facil_mask
;
79 compat_uint_t extended
;
83 int x25_addr_ntoa(unsigned char *p
, struct x25_address
*called_addr
,
84 struct x25_address
*calling_addr
)
86 int called_len
, calling_len
;
87 char *called
, *calling
;
90 called_len
= (*p
>> 0) & 0x0F;
91 calling_len
= (*p
>> 4) & 0x0F;
93 called
= called_addr
->x25_addr
;
94 calling
= calling_addr
->x25_addr
;
97 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
100 *called
++ = ((*p
>> 0) & 0x0F) + '0';
103 *called
++ = ((*p
>> 4) & 0x0F) + '0';
107 *calling
++ = ((*p
>> 0) & 0x0F) + '0';
110 *calling
++ = ((*p
>> 4) & 0x0F) + '0';
115 *called
= *calling
= '\0';
117 return 1 + (called_len
+ calling_len
+ 1) / 2;
120 int x25_addr_aton(unsigned char *p
, struct x25_address
*called_addr
,
121 struct x25_address
*calling_addr
)
123 unsigned int called_len
, calling_len
;
124 char *called
, *calling
;
127 called
= called_addr
->x25_addr
;
128 calling
= calling_addr
->x25_addr
;
130 called_len
= strlen(called
);
131 calling_len
= strlen(calling
);
133 *p
++ = (calling_len
<< 4) | (called_len
<< 0);
135 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
136 if (i
< called_len
) {
138 *p
|= (*called
++ - '0') << 0;
142 *p
|= (*called
++ - '0') << 4;
146 *p
|= (*calling
++ - '0') << 0;
150 *p
|= (*calling
++ - '0') << 4;
155 return 1 + (called_len
+ calling_len
+ 1) / 2;
159 * Socket removal during an interrupt is now safe.
161 static void x25_remove_socket(struct sock
*sk
)
163 write_lock_bh(&x25_list_lock
);
164 sk_del_node_init(sk
);
165 write_unlock_bh(&x25_list_lock
);
169 * Kill all bound sockets on a dropped device.
171 static void x25_kill_by_device(struct net_device
*dev
)
174 struct hlist_node
*node
;
176 write_lock_bh(&x25_list_lock
);
178 sk_for_each(s
, node
, &x25_list
)
179 if (x25_sk(s
)->neighbour
&& x25_sk(s
)->neighbour
->dev
== dev
)
180 x25_disconnect(s
, ENETUNREACH
, 0, 0);
182 write_unlock_bh(&x25_list_lock
);
186 * Handle device status changes.
188 static int x25_device_event(struct notifier_block
*this, unsigned long event
,
191 struct net_device
*dev
= ptr
;
192 struct x25_neigh
*nb
;
194 if (dev
->type
== ARPHRD_X25
195 #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
196 || dev
->type
== ARPHRD_ETHER
201 x25_link_device_up(dev
);
203 case NETDEV_GOING_DOWN
:
204 nb
= x25_get_neigh(dev
);
206 x25_terminate_link(nb
);
211 x25_kill_by_device(dev
);
212 x25_route_device_down(dev
);
213 x25_link_device_down(dev
);
222 * Add a socket to the bound sockets list.
224 static void x25_insert_socket(struct sock
*sk
)
226 write_lock_bh(&x25_list_lock
);
227 sk_add_node(sk
, &x25_list
);
228 write_unlock_bh(&x25_list_lock
);
232 * Find a socket that wants to accept the Call Request we just
233 * received. Check the full list for an address/cud match.
234 * If no cuds match return the next_best thing, an address match.
235 * Note: if a listening socket has cud set it must only get calls
238 static struct sock
*x25_find_listener(struct x25_address
*addr
,
242 struct sock
*next_best
;
243 struct hlist_node
*node
;
245 read_lock_bh(&x25_list_lock
);
248 sk_for_each(s
, node
, &x25_list
)
249 if ((!strcmp(addr
->x25_addr
,
250 x25_sk(s
)->source_addr
.x25_addr
) ||
251 !strcmp(addr
->x25_addr
,
252 null_x25_address
.x25_addr
)) &&
253 s
->sk_state
== TCP_LISTEN
) {
255 * Found a listening socket, now check the incoming
256 * call user data vs this sockets call user data
258 if(skb
->len
> 0 && x25_sk(s
)->cudmatchlength
> 0) {
259 if((memcmp(x25_sk(s
)->calluserdata
.cuddata
,
261 x25_sk(s
)->cudmatchlength
)) == 0) {
275 read_unlock_bh(&x25_list_lock
);
280 * Find a connected X.25 socket given my LCI and neighbour.
282 static struct sock
*__x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
285 struct hlist_node
*node
;
287 sk_for_each(s
, node
, &x25_list
)
288 if (x25_sk(s
)->lci
== lci
&& x25_sk(s
)->neighbour
== nb
) {
297 struct sock
*x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
301 read_lock_bh(&x25_list_lock
);
302 s
= __x25_find_socket(lci
, nb
);
303 read_unlock_bh(&x25_list_lock
);
308 * Find a unique LCI for a given device.
310 static unsigned int x25_new_lci(struct x25_neigh
*nb
)
312 unsigned int lci
= 1;
315 read_lock_bh(&x25_list_lock
);
317 while ((sk
= __x25_find_socket(lci
, nb
)) != NULL
) {
325 read_unlock_bh(&x25_list_lock
);
332 void x25_destroy_socket(struct sock
*);
335 * handler for deferred kills.
337 static void x25_destroy_timer(unsigned long data
)
339 x25_destroy_socket((struct sock
*)data
);
343 * This is called from user mode and the timers. Thus it protects itself
344 * against interrupt users but doesn't worry about being called during
345 * work. Once it is removed from the queue no interrupt or bottom half
346 * will touch it and we are (fairly 8-) ) safe.
347 * Not static as it's used by the timer
349 void x25_destroy_socket(struct sock
*sk
)
355 x25_stop_heartbeat(sk
);
358 x25_remove_socket(sk
);
359 x25_clear_queues(sk
); /* Flush the queues */
361 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
362 if (skb
->sk
!= sk
) { /* A pending connection */
364 * Queue the unaccepted socket for death
366 sock_set_flag(skb
->sk
, SOCK_DEAD
);
367 x25_start_heartbeat(skb
->sk
);
368 x25_sk(skb
->sk
)->state
= X25_STATE_0
;
374 if (atomic_read(&sk
->sk_wmem_alloc
) ||
375 atomic_read(&sk
->sk_rmem_alloc
)) {
376 /* Defer: outstanding buffers */
377 sk
->sk_timer
.expires
= jiffies
+ 10 * HZ
;
378 sk
->sk_timer
.function
= x25_destroy_timer
;
379 sk
->sk_timer
.data
= (unsigned long)sk
;
380 add_timer(&sk
->sk_timer
);
382 /* drop last reference so sock_put will free */
391 * Handling for system calls applied via the various interfaces to a
392 * X.25 socket object.
395 static int x25_setsockopt(struct socket
*sock
, int level
, int optname
,
396 char __user
*optval
, int optlen
)
399 struct sock
*sk
= sock
->sk
;
400 int rc
= -ENOPROTOOPT
;
402 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
406 if (optlen
< sizeof(int))
410 if (get_user(opt
, (int __user
*)optval
))
413 x25_sk(sk
)->qbitincl
= !!opt
;
419 static int x25_getsockopt(struct socket
*sock
, int level
, int optname
,
420 char __user
*optval
, int __user
*optlen
)
422 struct sock
*sk
= sock
->sk
;
423 int val
, len
, rc
= -ENOPROTOOPT
;
425 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
429 if (get_user(len
, optlen
))
432 len
= min_t(unsigned int, len
, sizeof(int));
439 if (put_user(len
, optlen
))
442 val
= x25_sk(sk
)->qbitincl
;
443 rc
= copy_to_user(optval
, &val
, len
) ? -EFAULT
: 0;
448 static int x25_listen(struct socket
*sock
, int backlog
)
450 struct sock
*sk
= sock
->sk
;
451 int rc
= -EOPNOTSUPP
;
453 if (sk
->sk_state
!= TCP_LISTEN
) {
454 memset(&x25_sk(sk
)->dest_addr
, 0, X25_ADDR_LEN
);
455 sk
->sk_max_ack_backlog
= backlog
;
456 sk
->sk_state
= TCP_LISTEN
;
463 static struct proto x25_proto
= {
465 .owner
= THIS_MODULE
,
466 .obj_size
= sizeof(struct x25_sock
),
469 static struct sock
*x25_alloc_socket(void)
471 struct x25_sock
*x25
;
472 struct sock
*sk
= sk_alloc(AF_X25
, GFP_ATOMIC
, &x25_proto
, 1);
477 sock_init_data(NULL
, sk
);
480 skb_queue_head_init(&x25
->ack_queue
);
481 skb_queue_head_init(&x25
->fragment_queue
);
482 skb_queue_head_init(&x25
->interrupt_in_queue
);
483 skb_queue_head_init(&x25
->interrupt_out_queue
);
488 void x25_init_timers(struct sock
*sk
);
490 static int x25_create(struct socket
*sock
, int protocol
)
493 struct x25_sock
*x25
;
494 int rc
= -ESOCKTNOSUPPORT
;
496 if (sock
->type
!= SOCK_SEQPACKET
|| protocol
)
500 if ((sk
= x25_alloc_socket()) == NULL
)
505 sock_init_data(sock
, sk
);
509 sock
->ops
= &x25_proto_ops
;
510 sk
->sk_protocol
= protocol
;
511 sk
->sk_backlog_rcv
= x25_backlog_rcv
;
513 x25
->t21
= sysctl_x25_call_request_timeout
;
514 x25
->t22
= sysctl_x25_reset_request_timeout
;
515 x25
->t23
= sysctl_x25_clear_request_timeout
;
516 x25
->t2
= sysctl_x25_ack_holdback_timeout
;
517 x25
->state
= X25_STATE_0
;
518 x25
->cudmatchlength
= 0;
519 x25
->accptapprv
= X25_DENY_ACCPT_APPRV
; /* normally no cud */
522 x25
->facilities
.winsize_in
= X25_DEFAULT_WINDOW_SIZE
;
523 x25
->facilities
.winsize_out
= X25_DEFAULT_WINDOW_SIZE
;
524 x25
->facilities
.pacsize_in
= X25_DEFAULT_PACKET_SIZE
;
525 x25
->facilities
.pacsize_out
= X25_DEFAULT_PACKET_SIZE
;
526 x25
->facilities
.throughput
= X25_DEFAULT_THROUGHPUT
;
527 x25
->facilities
.reverse
= X25_DEFAULT_REVERSE
;
528 x25
->dte_facilities
.calling_len
= 0;
529 x25
->dte_facilities
.called_len
= 0;
530 memset(x25
->dte_facilities
.called_ae
, '\0',
531 sizeof(x25
->dte_facilities
.called_ae
));
532 memset(x25
->dte_facilities
.calling_ae
, '\0',
533 sizeof(x25
->dte_facilities
.calling_ae
));
540 static struct sock
*x25_make_new(struct sock
*osk
)
542 struct sock
*sk
= NULL
;
543 struct x25_sock
*x25
, *ox25
;
545 if (osk
->sk_type
!= SOCK_SEQPACKET
)
548 if ((sk
= x25_alloc_socket()) == NULL
)
553 sk
->sk_type
= osk
->sk_type
;
554 sk
->sk_socket
= osk
->sk_socket
;
555 sk
->sk_priority
= osk
->sk_priority
;
556 sk
->sk_protocol
= osk
->sk_protocol
;
557 sk
->sk_rcvbuf
= osk
->sk_rcvbuf
;
558 sk
->sk_sndbuf
= osk
->sk_sndbuf
;
559 sk
->sk_state
= TCP_ESTABLISHED
;
560 sk
->sk_sleep
= osk
->sk_sleep
;
561 sk
->sk_backlog_rcv
= osk
->sk_backlog_rcv
;
562 sock_copy_flags(sk
, osk
);
565 x25
->t21
= ox25
->t21
;
566 x25
->t22
= ox25
->t22
;
567 x25
->t23
= ox25
->t23
;
569 x25
->facilities
= ox25
->facilities
;
570 x25
->qbitincl
= ox25
->qbitincl
;
571 x25
->dte_facilities
= ox25
->dte_facilities
;
572 x25
->cudmatchlength
= ox25
->cudmatchlength
;
573 x25
->accptapprv
= ox25
->accptapprv
;
580 static int x25_release(struct socket
*sock
)
582 struct sock
*sk
= sock
->sk
;
583 struct x25_sock
*x25
;
590 switch (x25
->state
) {
594 x25_disconnect(sk
, 0, 0, 0);
595 x25_destroy_socket(sk
);
601 x25_clear_queues(sk
);
602 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
603 x25_start_t23timer(sk
);
604 x25
->state
= X25_STATE_2
;
605 sk
->sk_state
= TCP_CLOSE
;
606 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
607 sk
->sk_state_change(sk
);
608 sock_set_flag(sk
, SOCK_DEAD
);
609 sock_set_flag(sk
, SOCK_DESTROY
);
614 sk
->sk_socket
= NULL
; /* Not used, but we should do this */
619 static int x25_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
621 struct sock
*sk
= sock
->sk
;
622 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
624 if (!sock_flag(sk
, SOCK_ZAPPED
) ||
625 addr_len
!= sizeof(struct sockaddr_x25
) ||
626 addr
->sx25_family
!= AF_X25
)
629 x25_sk(sk
)->source_addr
= addr
->sx25_addr
;
630 x25_insert_socket(sk
);
631 sock_reset_flag(sk
, SOCK_ZAPPED
);
632 SOCK_DEBUG(sk
, "x25_bind: socket is bound\n");
637 static int x25_wait_for_connection_establishment(struct sock
*sk
)
639 DECLARE_WAITQUEUE(wait
, current
);
642 add_wait_queue_exclusive(sk
->sk_sleep
, &wait
);
644 __set_current_state(TASK_INTERRUPTIBLE
);
646 if (signal_pending(current
))
650 sk
->sk_socket
->state
= SS_UNCONNECTED
;
654 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
661 __set_current_state(TASK_RUNNING
);
662 remove_wait_queue(sk
->sk_sleep
, &wait
);
666 static int x25_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
667 int addr_len
, int flags
)
669 struct sock
*sk
= sock
->sk
;
670 struct x25_sock
*x25
= x25_sk(sk
);
671 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
672 struct x25_route
*rt
;
676 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
677 sock
->state
= SS_CONNECTED
;
678 goto out
; /* Connect completed during a ERESTARTSYS event */
682 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
683 sock
->state
= SS_UNCONNECTED
;
687 rc
= -EISCONN
; /* No reconnect on a seqpacket socket */
688 if (sk
->sk_state
== TCP_ESTABLISHED
)
691 sk
->sk_state
= TCP_CLOSE
;
692 sock
->state
= SS_UNCONNECTED
;
695 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
696 addr
->sx25_family
!= AF_X25
)
700 rt
= x25_get_route(&addr
->sx25_addr
);
704 x25
->neighbour
= x25_get_neigh(rt
->dev
);
708 x25_limit_facilities(&x25
->facilities
, x25
->neighbour
);
710 x25
->lci
= x25_new_lci(x25
->neighbour
);
715 if (sock_flag(sk
, SOCK_ZAPPED
)) /* Must bind first - autobinding does not work */
718 if (!strcmp(x25
->source_addr
.x25_addr
, null_x25_address
.x25_addr
))
719 memset(&x25
->source_addr
, '\0', X25_ADDR_LEN
);
721 x25
->dest_addr
= addr
->sx25_addr
;
723 /* Move to connecting socket, start sending Connect Requests */
724 sock
->state
= SS_CONNECTING
;
725 sk
->sk_state
= TCP_SYN_SENT
;
727 x25
->state
= X25_STATE_1
;
729 x25_write_internal(sk
, X25_CALL_REQUEST
);
731 x25_start_heartbeat(sk
);
732 x25_start_t21timer(sk
);
736 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
739 rc
= x25_wait_for_connection_establishment(sk
);
743 sock
->state
= SS_CONNECTED
;
747 x25_neigh_put(x25
->neighbour
);
755 static int x25_wait_for_data(struct sock
*sk
, long timeout
)
757 DECLARE_WAITQUEUE(wait
, current
);
760 add_wait_queue_exclusive(sk
->sk_sleep
, &wait
);
762 __set_current_state(TASK_INTERRUPTIBLE
);
763 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
766 if (signal_pending(current
))
772 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
774 timeout
= schedule_timeout(timeout
);
779 __set_current_state(TASK_RUNNING
);
780 remove_wait_queue(sk
->sk_sleep
, &wait
);
784 static int x25_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
786 struct sock
*sk
= sock
->sk
;
791 if (!sk
|| sk
->sk_state
!= TCP_LISTEN
)
795 if (sk
->sk_type
!= SOCK_SEQPACKET
)
799 rc
= x25_wait_for_data(sk
, sk
->sk_rcvtimeo
);
802 skb
= skb_dequeue(&sk
->sk_receive_queue
);
807 newsk
->sk_socket
= newsock
;
808 newsk
->sk_sleep
= &newsock
->wait
;
810 /* Now attach up the new socket */
813 sk
->sk_ack_backlog
--;
815 newsock
->state
= SS_CONNECTED
;
823 static int x25_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
824 int *uaddr_len
, int peer
)
826 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)uaddr
;
827 struct sock
*sk
= sock
->sk
;
828 struct x25_sock
*x25
= x25_sk(sk
);
831 if (sk
->sk_state
!= TCP_ESTABLISHED
)
833 sx25
->sx25_addr
= x25
->dest_addr
;
835 sx25
->sx25_addr
= x25
->source_addr
;
837 sx25
->sx25_family
= AF_X25
;
838 *uaddr_len
= sizeof(*sx25
);
843 int x25_rx_call_request(struct sk_buff
*skb
, struct x25_neigh
*nb
,
848 struct x25_sock
*makex25
;
849 struct x25_address source_addr
, dest_addr
;
850 struct x25_facilities facilities
;
851 struct x25_dte_facilities dte_facilities
;
855 * Remove the LCI and frame type.
857 skb_pull(skb
, X25_STD_MIN_LEN
);
860 * Extract the X.25 addresses and convert them to ASCII strings,
863 skb_pull(skb
, x25_addr_ntoa(skb
->data
, &source_addr
, &dest_addr
));
866 * Get the length of the facilities, skip past them for the moment
867 * get the call user data because this is needed to determine
868 * the correct listener
870 len
= skb
->data
[0] + 1;
874 * Find a listener for the particular address/cud pair.
876 sk
= x25_find_listener(&source_addr
,skb
);
880 * We can't accept the Call Request.
882 if (sk
== NULL
|| sk_acceptq_is_full(sk
))
883 goto out_clear_request
;
886 * Try to reach a compromise on the requested facilities.
888 len
= x25_negotiate_facilities(skb
, sk
, &facilities
, &dte_facilities
);
893 * current neighbour/link might impose additional limits
894 * on certain facilties
897 x25_limit_facilities(&facilities
, nb
);
900 * Try to create a new socket.
902 make
= x25_make_new(sk
);
907 * Remove the facilities
912 make
->sk_state
= TCP_ESTABLISHED
;
914 makex25
= x25_sk(make
);
916 makex25
->dest_addr
= dest_addr
;
917 makex25
->source_addr
= source_addr
;
918 makex25
->neighbour
= nb
;
919 makex25
->facilities
= facilities
;
920 makex25
->dte_facilities
= dte_facilities
;
921 makex25
->vc_facil_mask
= x25_sk(sk
)->vc_facil_mask
;
922 /* ensure no reverse facil on accept */
923 makex25
->vc_facil_mask
&= ~X25_MASK_REVERSE
;
924 /* ensure no calling address extension on accept */
925 makex25
->vc_facil_mask
&= ~X25_MASK_CALLING_AE
;
926 makex25
->cudmatchlength
= x25_sk(sk
)->cudmatchlength
;
928 /* Normally all calls are accepted immediatly */
929 if(makex25
->accptapprv
& X25_DENY_ACCPT_APPRV
) {
930 x25_write_internal(make
, X25_CALL_ACCEPTED
);
931 makex25
->state
= X25_STATE_3
;
935 * Incoming Call User Data.
938 memcpy(makex25
->calluserdata
.cuddata
, skb
->data
, skb
->len
);
939 makex25
->calluserdata
.cudlength
= skb
->len
;
942 sk
->sk_ack_backlog
++;
944 x25_insert_socket(make
);
946 skb_queue_head(&sk
->sk_receive_queue
, skb
);
948 x25_start_heartbeat(make
);
950 if (!sock_flag(sk
, SOCK_DEAD
))
951 sk
->sk_data_ready(sk
, skb
->len
);
960 x25_transmit_clear_request(nb
, lci
, 0x01);
964 static int x25_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
965 struct msghdr
*msg
, size_t len
)
967 struct sock
*sk
= sock
->sk
;
968 struct x25_sock
*x25
= x25_sk(sk
);
969 struct sockaddr_x25
*usx25
= (struct sockaddr_x25
*)msg
->msg_name
;
970 struct sockaddr_x25 sx25
;
972 unsigned char *asmptr
;
973 int noblock
= msg
->msg_flags
& MSG_DONTWAIT
;
975 int qbit
= 0, rc
= -EINVAL
;
977 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_OOB
|MSG_EOR
|MSG_CMSG_COMPAT
))
980 /* we currently don't support segmented records at the user interface */
981 if (!(msg
->msg_flags
& (MSG_EOR
|MSG_OOB
)))
985 if (sock_flag(sk
, SOCK_ZAPPED
))
989 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
990 send_sig(SIGPIPE
, current
, 0);
1000 if (msg
->msg_namelen
< sizeof(sx25
))
1002 memcpy(&sx25
, usx25
, sizeof(sx25
));
1004 if (strcmp(x25
->dest_addr
.x25_addr
, sx25
.sx25_addr
.x25_addr
))
1007 if (sx25
.sx25_family
!= AF_X25
)
1011 * FIXME 1003.1g - if the socket is like this because
1012 * it has become closed (not started closed) we ought
1013 * to SIGPIPE, EPIPE;
1016 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1019 sx25
.sx25_family
= AF_X25
;
1020 sx25
.sx25_addr
= x25
->dest_addr
;
1023 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: Addresses built.\n");
1025 /* Build a packet */
1026 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: building packet.\n");
1028 if ((msg
->msg_flags
& MSG_OOB
) && len
> 32)
1031 size
= len
+ X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
;
1033 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
1036 X25_SKB_CB(skb
)->flags
= msg
->msg_flags
;
1038 skb_reserve(skb
, X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
);
1041 * Put the data on the end
1043 SOCK_DEBUG(sk
, "x25_sendmsg: Copying user data\n");
1045 asmptr
= skb
->h
.raw
= skb_put(skb
, len
);
1047 rc
= memcpy_fromiovec(asmptr
, msg
->msg_iov
, len
);
1052 * If the Q BIT Include socket option is in force, the first
1053 * byte of the user data is the logical value of the Q Bit.
1055 if (x25
->qbitincl
) {
1056 qbit
= skb
->data
[0];
1061 * Push down the X.25 header
1063 SOCK_DEBUG(sk
, "x25_sendmsg: Building X.25 Header.\n");
1065 if (msg
->msg_flags
& MSG_OOB
) {
1066 if (x25
->neighbour
->extended
) {
1067 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1068 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1069 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1070 *asmptr
++ = X25_INTERRUPT
;
1072 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1073 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1074 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1075 *asmptr
++ = X25_INTERRUPT
;
1078 if (x25
->neighbour
->extended
) {
1079 /* Build an Extended X.25 header */
1080 asmptr
= skb_push(skb
, X25_EXT_MIN_LEN
);
1081 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1082 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1083 *asmptr
++ = X25_DATA
;
1084 *asmptr
++ = X25_DATA
;
1086 /* Build an Standard X.25 header */
1087 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1088 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1089 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1090 *asmptr
++ = X25_DATA
;
1094 skb
->data
[0] |= X25_Q_BIT
;
1097 SOCK_DEBUG(sk
, "x25_sendmsg: Built header.\n");
1098 SOCK_DEBUG(sk
, "x25_sendmsg: Transmitting buffer\n");
1101 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1104 if (msg
->msg_flags
& MSG_OOB
)
1105 skb_queue_tail(&x25
->interrupt_out_queue
, skb
);
1107 len
= x25_output(sk
, skb
);
1110 else if (x25
->qbitincl
)
1115 * lock_sock() is currently only used to serialize this x25_kick()
1116 * against input-driven x25_kick() calls. It currently only blocks
1117 * incoming packets for this socket and does not protect against
1118 * any other socket state changes and is not called from anywhere
1119 * else. As x25_kick() cannot block and as long as all socket
1120 * operations are BKL-wrapped, we don't need take to care about
1121 * purging the backlog queue in x25_release().
1123 * Using lock_sock() to protect all socket operations entirely
1124 * (and making the whole x25 stack SMP aware) unfortunately would
1125 * require major changes to {send,recv}msg and skb allocation methods.
1140 static int x25_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1141 struct msghdr
*msg
, size_t size
,
1144 struct sock
*sk
= sock
->sk
;
1145 struct x25_sock
*x25
= x25_sk(sk
);
1146 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)msg
->msg_name
;
1149 struct sk_buff
*skb
;
1150 unsigned char *asmptr
;
1154 * This works for seqpacket too. The receiver has ordered the queue for
1155 * us! We do one quick check first though
1157 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1160 if (flags
& MSG_OOB
) {
1162 if (sock_flag(sk
, SOCK_URGINLINE
) ||
1163 !skb_peek(&x25
->interrupt_in_queue
))
1166 skb
= skb_dequeue(&x25
->interrupt_in_queue
);
1168 skb_pull(skb
, X25_STD_MIN_LEN
);
1171 * No Q bit information on Interrupt data.
1173 if (x25
->qbitincl
) {
1174 asmptr
= skb_push(skb
, 1);
1178 msg
->msg_flags
|= MSG_OOB
;
1180 /* Now we can treat all alike */
1181 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1182 flags
& MSG_DONTWAIT
, &rc
);
1186 qbit
= (skb
->data
[0] & X25_Q_BIT
) == X25_Q_BIT
;
1188 skb_pull(skb
, x25
->neighbour
->extended
?
1189 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
);
1191 if (x25
->qbitincl
) {
1192 asmptr
= skb_push(skb
, 1);
1197 skb
->h
.raw
= skb
->data
;
1201 if (copied
> size
) {
1203 msg
->msg_flags
|= MSG_TRUNC
;
1206 /* Currently, each datagram always contains a complete record */
1207 msg
->msg_flags
|= MSG_EOR
;
1209 rc
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1211 goto out_free_dgram
;
1214 sx25
->sx25_family
= AF_X25
;
1215 sx25
->sx25_addr
= x25
->dest_addr
;
1218 msg
->msg_namelen
= sizeof(struct sockaddr_x25
);
1225 skb_free_datagram(sk
, skb
);
1231 static int x25_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1233 struct sock
*sk
= sock
->sk
;
1234 struct x25_sock
*x25
= x25_sk(sk
);
1235 void __user
*argp
= (void __user
*)arg
;
1240 int amount
= sk
->sk_sndbuf
-
1241 atomic_read(&sk
->sk_wmem_alloc
);
1244 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1249 struct sk_buff
*skb
;
1252 * These two are safe on a single CPU system as
1253 * only user tasks fiddle here
1255 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1257 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1264 rc
= sock_get_timestamp(sk
,
1265 (struct timeval __user
*)argp
);
1269 case SIOCGIFDSTADDR
:
1270 case SIOCSIFDSTADDR
:
1271 case SIOCGIFBRDADDR
:
1272 case SIOCSIFBRDADDR
:
1273 case SIOCGIFNETMASK
:
1274 case SIOCSIFNETMASK
:
1282 if (!capable(CAP_NET_ADMIN
))
1284 rc
= x25_route_ioctl(cmd
, argp
);
1286 case SIOCX25GSUBSCRIP
:
1287 rc
= x25_subscr_ioctl(cmd
, argp
);
1289 case SIOCX25SSUBSCRIP
:
1291 if (!capable(CAP_NET_ADMIN
))
1293 rc
= x25_subscr_ioctl(cmd
, argp
);
1295 case SIOCX25GFACILITIES
: {
1296 struct x25_facilities fac
= x25
->facilities
;
1297 rc
= copy_to_user(argp
, &fac
,
1298 sizeof(fac
)) ? -EFAULT
: 0;
1302 case SIOCX25SFACILITIES
: {
1303 struct x25_facilities facilities
;
1305 if (copy_from_user(&facilities
, argp
,
1306 sizeof(facilities
)))
1309 if (sk
->sk_state
!= TCP_LISTEN
&&
1310 sk
->sk_state
!= TCP_CLOSE
)
1312 if (facilities
.pacsize_in
< X25_PS16
||
1313 facilities
.pacsize_in
> X25_PS4096
)
1315 if (facilities
.pacsize_out
< X25_PS16
||
1316 facilities
.pacsize_out
> X25_PS4096
)
1318 if (facilities
.winsize_in
< 1 ||
1319 facilities
.winsize_in
> 127)
1321 if (facilities
.throughput
< 0x03 ||
1322 facilities
.throughput
> 0xDD)
1324 if (facilities
.reverse
&&
1325 (facilities
.reverse
| 0x81)!= 0x81)
1327 x25
->facilities
= facilities
;
1332 case SIOCX25GDTEFACILITIES
: {
1333 rc
= copy_to_user(argp
, &x25
->dte_facilities
,
1334 sizeof(x25
->dte_facilities
));
1340 case SIOCX25SDTEFACILITIES
: {
1341 struct x25_dte_facilities dtefacs
;
1343 if (copy_from_user(&dtefacs
, argp
, sizeof(dtefacs
)))
1346 if (sk
->sk_state
!= TCP_LISTEN
&&
1347 sk
->sk_state
!= TCP_CLOSE
)
1349 if (dtefacs
.calling_len
> X25_MAX_AE_LEN
)
1351 if (dtefacs
.calling_ae
== NULL
)
1353 if (dtefacs
.called_len
> X25_MAX_AE_LEN
)
1355 if (dtefacs
.called_ae
== NULL
)
1357 x25
->dte_facilities
= dtefacs
;
1362 case SIOCX25GCALLUSERDATA
: {
1363 struct x25_calluserdata cud
= x25
->calluserdata
;
1364 rc
= copy_to_user(argp
, &cud
,
1365 sizeof(cud
)) ? -EFAULT
: 0;
1369 case SIOCX25SCALLUSERDATA
: {
1370 struct x25_calluserdata calluserdata
;
1373 if (copy_from_user(&calluserdata
, argp
,
1374 sizeof(calluserdata
)))
1377 if (calluserdata
.cudlength
> X25_MAX_CUD_LEN
)
1379 x25
->calluserdata
= calluserdata
;
1384 case SIOCX25GCAUSEDIAG
: {
1385 struct x25_causediag causediag
;
1386 causediag
= x25
->causediag
;
1387 rc
= copy_to_user(argp
, &causediag
,
1388 sizeof(causediag
)) ? -EFAULT
: 0;
1392 case SIOCX25SCUDMATCHLEN
: {
1393 struct x25_subaddr sub_addr
;
1395 if(sk
->sk_state
!= TCP_CLOSE
)
1398 if (copy_from_user(&sub_addr
, argp
,
1402 if(sub_addr
.cudmatchlength
> X25_MAX_CUD_LEN
)
1404 x25
->cudmatchlength
= sub_addr
.cudmatchlength
;
1409 case SIOCX25CALLACCPTAPPRV
: {
1411 if (sk
->sk_state
!= TCP_CLOSE
)
1413 x25
->accptapprv
= X25_ALLOW_ACCPT_APPRV
;
1418 case SIOCX25SENDCALLACCPT
: {
1420 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1422 if (x25
->accptapprv
) /* must call accptapprv above */
1424 x25_write_internal(sk
, X25_CALL_ACCEPTED
);
1425 x25
->state
= X25_STATE_3
;
1438 static struct net_proto_family x25_family_ops
= {
1440 .create
= x25_create
,
1441 .owner
= THIS_MODULE
,
1444 #ifdef CONFIG_COMPAT
1445 static int compat_x25_subscr_ioctl(unsigned int cmd
,
1446 struct compat_x25_subscrip_struct __user
*x25_subscr32
)
1448 struct compat_x25_subscrip_struct x25_subscr
;
1449 struct x25_neigh
*nb
;
1450 struct net_device
*dev
;
1454 if (copy_from_user(&x25_subscr
, x25_subscr32
, sizeof(*x25_subscr32
)))
1458 dev
= x25_dev_get(x25_subscr
.device
);
1462 nb
= x25_get_neigh(dev
);
1468 if (cmd
== SIOCX25GSUBSCRIP
) {
1469 x25_subscr
.extended
= nb
->extended
;
1470 x25_subscr
.global_facil_mask
= nb
->global_facil_mask
;
1471 rc
= copy_to_user(x25_subscr32
, &x25_subscr
,
1472 sizeof(*x25_subscr32
)) ? -EFAULT
: 0;
1475 if (x25_subscr
.extended
== 0 || x25_subscr
.extended
== 1) {
1477 nb
->extended
= x25_subscr
.extended
;
1478 nb
->global_facil_mask
= x25_subscr
.global_facil_mask
;
1489 static int compat_x25_ioctl(struct socket
*sock
, unsigned int cmd
,
1492 void __user
*argp
= compat_ptr(arg
);
1493 struct sock
*sk
= sock
->sk
;
1495 int rc
= -ENOIOCTLCMD
;
1500 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1505 rc
= compat_sock_get_timestamp(sk
,
1506 (struct timeval __user
*)argp
);
1510 case SIOCGIFDSTADDR
:
1511 case SIOCSIFDSTADDR
:
1512 case SIOCGIFBRDADDR
:
1513 case SIOCSIFBRDADDR
:
1514 case SIOCGIFNETMASK
:
1515 case SIOCSIFNETMASK
:
1523 if (!capable(CAP_NET_ADMIN
))
1525 rc
= x25_route_ioctl(cmd
, argp
);
1527 case SIOCX25GSUBSCRIP
:
1528 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1530 case SIOCX25SSUBSCRIP
:
1532 if (!capable(CAP_NET_ADMIN
))
1534 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1536 case SIOCX25GFACILITIES
:
1537 case SIOCX25SFACILITIES
:
1538 case SIOCX25GDTEFACILITIES
:
1539 case SIOCX25SDTEFACILITIES
:
1540 case SIOCX25GCALLUSERDATA
:
1541 case SIOCX25SCALLUSERDATA
:
1542 case SIOCX25GCAUSEDIAG
:
1543 case SIOCX25SCUDMATCHLEN
:
1544 case SIOCX25CALLACCPTAPPRV
:
1545 case SIOCX25SENDCALLACCPT
:
1546 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1556 static const struct proto_ops
SOCKOPS_WRAPPED(x25_proto_ops
) = {
1558 .owner
= THIS_MODULE
,
1559 .release
= x25_release
,
1561 .connect
= x25_connect
,
1562 .socketpair
= sock_no_socketpair
,
1563 .accept
= x25_accept
,
1564 .getname
= x25_getname
,
1565 .poll
= datagram_poll
,
1567 #ifdef CONFIG_COMPAT
1568 .compat_ioctl
= compat_x25_ioctl
,
1570 .listen
= x25_listen
,
1571 .shutdown
= sock_no_shutdown
,
1572 .setsockopt
= x25_setsockopt
,
1573 .getsockopt
= x25_getsockopt
,
1574 .sendmsg
= x25_sendmsg
,
1575 .recvmsg
= x25_recvmsg
,
1576 .mmap
= sock_no_mmap
,
1577 .sendpage
= sock_no_sendpage
,
1580 #include <linux/smp_lock.h>
1581 SOCKOPS_WRAP(x25_proto
, AF_X25
);
1583 static struct packet_type x25_packet_type
= {
1584 .type
= __constant_htons(ETH_P_X25
),
1585 .func
= x25_lapb_receive_frame
,
1588 static struct notifier_block x25_dev_notifier
= {
1589 .notifier_call
= x25_device_event
,
1592 void x25_kill_by_neigh(struct x25_neigh
*nb
)
1595 struct hlist_node
*node
;
1597 write_lock_bh(&x25_list_lock
);
1599 sk_for_each(s
, node
, &x25_list
)
1600 if (x25_sk(s
)->neighbour
== nb
)
1601 x25_disconnect(s
, ENETUNREACH
, 0, 0);
1603 write_unlock_bh(&x25_list_lock
);
1606 static int __init
x25_init(void)
1608 int rc
= proto_register(&x25_proto
, 0);
1613 sock_register(&x25_family_ops
);
1615 dev_add_pack(&x25_packet_type
);
1617 register_netdevice_notifier(&x25_dev_notifier
);
1619 printk(KERN_INFO
"X.25 for Linux. Version 0.2 for Linux 2.1.15\n");
1621 #ifdef CONFIG_SYSCTL
1622 x25_register_sysctl();
1628 module_init(x25_init
);
1630 static void __exit
x25_exit(void)
1636 #ifdef CONFIG_SYSCTL
1637 x25_unregister_sysctl();
1640 unregister_netdevice_notifier(&x25_dev_notifier
);
1642 dev_remove_pack(&x25_packet_type
);
1644 sock_unregister(AF_X25
);
1645 proto_unregister(&x25_proto
);
1647 module_exit(x25_exit
);
1649 MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
1650 MODULE_DESCRIPTION("The X.25 Packet Layer network layer protocol");
1651 MODULE_LICENSE("GPL");
1652 MODULE_ALIAS_NETPROTO(PF_X25
);