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/timer.h>
44 #include <linux/string.h>
45 #include <linux/net.h>
46 #include <linux/netdevice.h>
47 #include <linux/if_arp.h>
48 #include <linux/skbuff.h>
50 #include <net/tcp_states.h>
51 #include <asm/uaccess.h>
52 #include <linux/fcntl.h>
53 #include <linux/termios.h> /* For TIOCINQ/OUTQ */
54 #include <linux/notifier.h>
55 #include <linux/init.h>
56 #include <linux/compat.h>
59 #include <net/compat.h>
61 int sysctl_x25_restart_request_timeout
= X25_DEFAULT_T20
;
62 int sysctl_x25_call_request_timeout
= X25_DEFAULT_T21
;
63 int sysctl_x25_reset_request_timeout
= X25_DEFAULT_T22
;
64 int sysctl_x25_clear_request_timeout
= X25_DEFAULT_T23
;
65 int sysctl_x25_ack_holdback_timeout
= X25_DEFAULT_T2
;
68 DEFINE_RWLOCK(x25_list_lock
);
70 static const struct proto_ops x25_proto_ops
;
72 static struct x25_address null_x25_address
= {" "};
75 struct compat_x25_subscrip_struct
{
76 char device
[200-sizeof(compat_ulong_t
)];
77 compat_ulong_t global_facil_mask
;
78 compat_uint_t extended
;
82 int x25_addr_ntoa(unsigned char *p
, struct x25_address
*called_addr
,
83 struct x25_address
*calling_addr
)
85 int called_len
, calling_len
;
86 char *called
, *calling
;
89 called_len
= (*p
>> 0) & 0x0F;
90 calling_len
= (*p
>> 4) & 0x0F;
92 called
= called_addr
->x25_addr
;
93 calling
= calling_addr
->x25_addr
;
96 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
99 *called
++ = ((*p
>> 0) & 0x0F) + '0';
102 *called
++ = ((*p
>> 4) & 0x0F) + '0';
106 *calling
++ = ((*p
>> 0) & 0x0F) + '0';
109 *calling
++ = ((*p
>> 4) & 0x0F) + '0';
114 *called
= *calling
= '\0';
116 return 1 + (called_len
+ calling_len
+ 1) / 2;
119 int x25_addr_aton(unsigned char *p
, struct x25_address
*called_addr
,
120 struct x25_address
*calling_addr
)
122 unsigned int called_len
, calling_len
;
123 char *called
, *calling
;
126 called
= called_addr
->x25_addr
;
127 calling
= calling_addr
->x25_addr
;
129 called_len
= strlen(called
);
130 calling_len
= strlen(calling
);
132 *p
++ = (calling_len
<< 4) | (called_len
<< 0);
134 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
135 if (i
< called_len
) {
137 *p
|= (*called
++ - '0') << 0;
141 *p
|= (*called
++ - '0') << 4;
145 *p
|= (*calling
++ - '0') << 0;
149 *p
|= (*calling
++ - '0') << 4;
154 return 1 + (called_len
+ calling_len
+ 1) / 2;
158 * Socket removal during an interrupt is now safe.
160 static void x25_remove_socket(struct sock
*sk
)
162 write_lock_bh(&x25_list_lock
);
163 sk_del_node_init(sk
);
164 write_unlock_bh(&x25_list_lock
);
168 * Kill all bound sockets on a dropped device.
170 static void x25_kill_by_device(struct net_device
*dev
)
173 struct hlist_node
*node
;
175 write_lock_bh(&x25_list_lock
);
177 sk_for_each(s
, node
, &x25_list
)
178 if (x25_sk(s
)->neighbour
&& x25_sk(s
)->neighbour
->dev
== dev
)
179 x25_disconnect(s
, ENETUNREACH
, 0, 0);
181 write_unlock_bh(&x25_list_lock
);
185 * Handle device status changes.
187 static int x25_device_event(struct notifier_block
*this, unsigned long event
,
190 struct net_device
*dev
= ptr
;
191 struct x25_neigh
*nb
;
193 if (dev
->type
== ARPHRD_X25
194 #if defined(CONFIG_LLC) || defined(CONFIG_LLC_MODULE)
195 || dev
->type
== ARPHRD_ETHER
200 x25_link_device_up(dev
);
202 case NETDEV_GOING_DOWN
:
203 nb
= x25_get_neigh(dev
);
205 x25_terminate_link(nb
);
210 x25_kill_by_device(dev
);
211 x25_route_device_down(dev
);
212 x25_link_device_down(dev
);
221 * Add a socket to the bound sockets list.
223 static void x25_insert_socket(struct sock
*sk
)
225 write_lock_bh(&x25_list_lock
);
226 sk_add_node(sk
, &x25_list
);
227 write_unlock_bh(&x25_list_lock
);
231 * Find a socket that wants to accept the Call Request we just
232 * received. Check the full list for an address/cud match.
233 * If no cuds match return the next_best thing, an address match.
234 * Note: if a listening socket has cud set it must only get calls
237 static struct sock
*x25_find_listener(struct x25_address
*addr
,
241 struct sock
*next_best
;
242 struct hlist_node
*node
;
244 read_lock_bh(&x25_list_lock
);
247 sk_for_each(s
, node
, &x25_list
)
248 if ((!strcmp(addr
->x25_addr
,
249 x25_sk(s
)->source_addr
.x25_addr
) ||
250 !strcmp(addr
->x25_addr
,
251 null_x25_address
.x25_addr
)) &&
252 s
->sk_state
== TCP_LISTEN
) {
254 * Found a listening socket, now check the incoming
255 * call user data vs this sockets call user data
257 if(skb
->len
> 0 && x25_sk(s
)->cudmatchlength
> 0) {
258 if((memcmp(x25_sk(s
)->calluserdata
.cuddata
,
260 x25_sk(s
)->cudmatchlength
)) == 0) {
274 read_unlock_bh(&x25_list_lock
);
279 * Find a connected X.25 socket given my LCI and neighbour.
281 static struct sock
*__x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
284 struct hlist_node
*node
;
286 sk_for_each(s
, node
, &x25_list
)
287 if (x25_sk(s
)->lci
== lci
&& x25_sk(s
)->neighbour
== nb
) {
296 struct sock
*x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
300 read_lock_bh(&x25_list_lock
);
301 s
= __x25_find_socket(lci
, nb
);
302 read_unlock_bh(&x25_list_lock
);
307 * Find a unique LCI for a given device.
309 static unsigned int x25_new_lci(struct x25_neigh
*nb
)
311 unsigned int lci
= 1;
314 read_lock_bh(&x25_list_lock
);
316 while ((sk
= __x25_find_socket(lci
, nb
)) != NULL
) {
324 read_unlock_bh(&x25_list_lock
);
331 void x25_destroy_socket(struct sock
*);
334 * handler for deferred kills.
336 static void x25_destroy_timer(unsigned long data
)
338 x25_destroy_socket((struct sock
*)data
);
342 * This is called from user mode and the timers. Thus it protects itself
343 * against interrupt users but doesn't worry about being called during
344 * work. Once it is removed from the queue no interrupt or bottom half
345 * will touch it and we are (fairly 8-) ) safe.
346 * Not static as it's used by the timer
348 void x25_destroy_socket(struct sock
*sk
)
354 x25_stop_heartbeat(sk
);
357 x25_remove_socket(sk
);
358 x25_clear_queues(sk
); /* Flush the queues */
360 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
361 if (skb
->sk
!= sk
) { /* A pending connection */
363 * Queue the unaccepted socket for death
365 sock_set_flag(skb
->sk
, SOCK_DEAD
);
366 x25_start_heartbeat(skb
->sk
);
367 x25_sk(skb
->sk
)->state
= X25_STATE_0
;
373 if (atomic_read(&sk
->sk_wmem_alloc
) ||
374 atomic_read(&sk
->sk_rmem_alloc
)) {
375 /* Defer: outstanding buffers */
376 sk
->sk_timer
.expires
= jiffies
+ 10 * HZ
;
377 sk
->sk_timer
.function
= x25_destroy_timer
;
378 sk
->sk_timer
.data
= (unsigned long)sk
;
379 add_timer(&sk
->sk_timer
);
381 /* drop last reference so sock_put will free */
390 * Handling for system calls applied via the various interfaces to a
391 * X.25 socket object.
394 static int x25_setsockopt(struct socket
*sock
, int level
, int optname
,
395 char __user
*optval
, int optlen
)
398 struct sock
*sk
= sock
->sk
;
399 int rc
= -ENOPROTOOPT
;
401 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
405 if (optlen
< sizeof(int))
409 if (get_user(opt
, (int __user
*)optval
))
412 x25_sk(sk
)->qbitincl
= !!opt
;
418 static int x25_getsockopt(struct socket
*sock
, int level
, int optname
,
419 char __user
*optval
, int __user
*optlen
)
421 struct sock
*sk
= sock
->sk
;
422 int val
, len
, rc
= -ENOPROTOOPT
;
424 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
428 if (get_user(len
, optlen
))
431 len
= min_t(unsigned int, len
, sizeof(int));
438 if (put_user(len
, optlen
))
441 val
= x25_sk(sk
)->qbitincl
;
442 rc
= copy_to_user(optval
, &val
, len
) ? -EFAULT
: 0;
447 static int x25_listen(struct socket
*sock
, int backlog
)
449 struct sock
*sk
= sock
->sk
;
450 int rc
= -EOPNOTSUPP
;
452 if (sk
->sk_state
!= TCP_LISTEN
) {
453 memset(&x25_sk(sk
)->dest_addr
, 0, X25_ADDR_LEN
);
454 sk
->sk_max_ack_backlog
= backlog
;
455 sk
->sk_state
= TCP_LISTEN
;
462 static struct proto x25_proto
= {
464 .owner
= THIS_MODULE
,
465 .obj_size
= sizeof(struct x25_sock
),
468 static struct sock
*x25_alloc_socket(void)
470 struct x25_sock
*x25
;
471 struct sock
*sk
= sk_alloc(AF_X25
, GFP_ATOMIC
, &x25_proto
, 1);
476 sock_init_data(NULL
, sk
);
479 skb_queue_head_init(&x25
->ack_queue
);
480 skb_queue_head_init(&x25
->fragment_queue
);
481 skb_queue_head_init(&x25
->interrupt_in_queue
);
482 skb_queue_head_init(&x25
->interrupt_out_queue
);
487 static int x25_create(struct socket
*sock
, int protocol
)
490 struct x25_sock
*x25
;
491 int rc
= -ESOCKTNOSUPPORT
;
493 if (sock
->type
!= SOCK_SEQPACKET
|| protocol
)
497 if ((sk
= x25_alloc_socket()) == NULL
)
502 sock_init_data(sock
, sk
);
506 sock
->ops
= &x25_proto_ops
;
507 sk
->sk_protocol
= protocol
;
508 sk
->sk_backlog_rcv
= x25_backlog_rcv
;
510 x25
->t21
= sysctl_x25_call_request_timeout
;
511 x25
->t22
= sysctl_x25_reset_request_timeout
;
512 x25
->t23
= sysctl_x25_clear_request_timeout
;
513 x25
->t2
= sysctl_x25_ack_holdback_timeout
;
514 x25
->state
= X25_STATE_0
;
515 x25
->cudmatchlength
= 0;
516 x25
->accptapprv
= X25_DENY_ACCPT_APPRV
; /* normally no cud */
519 x25
->facilities
.winsize_in
= X25_DEFAULT_WINDOW_SIZE
;
520 x25
->facilities
.winsize_out
= X25_DEFAULT_WINDOW_SIZE
;
521 x25
->facilities
.pacsize_in
= X25_DEFAULT_PACKET_SIZE
;
522 x25
->facilities
.pacsize_out
= X25_DEFAULT_PACKET_SIZE
;
523 x25
->facilities
.throughput
= X25_DEFAULT_THROUGHPUT
;
524 x25
->facilities
.reverse
= X25_DEFAULT_REVERSE
;
525 x25
->dte_facilities
.calling_len
= 0;
526 x25
->dte_facilities
.called_len
= 0;
527 memset(x25
->dte_facilities
.called_ae
, '\0',
528 sizeof(x25
->dte_facilities
.called_ae
));
529 memset(x25
->dte_facilities
.calling_ae
, '\0',
530 sizeof(x25
->dte_facilities
.calling_ae
));
537 static struct sock
*x25_make_new(struct sock
*osk
)
539 struct sock
*sk
= NULL
;
540 struct x25_sock
*x25
, *ox25
;
542 if (osk
->sk_type
!= SOCK_SEQPACKET
)
545 if ((sk
= x25_alloc_socket()) == NULL
)
550 sk
->sk_type
= osk
->sk_type
;
551 sk
->sk_socket
= osk
->sk_socket
;
552 sk
->sk_priority
= osk
->sk_priority
;
553 sk
->sk_protocol
= osk
->sk_protocol
;
554 sk
->sk_rcvbuf
= osk
->sk_rcvbuf
;
555 sk
->sk_sndbuf
= osk
->sk_sndbuf
;
556 sk
->sk_state
= TCP_ESTABLISHED
;
557 sk
->sk_sleep
= osk
->sk_sleep
;
558 sk
->sk_backlog_rcv
= osk
->sk_backlog_rcv
;
559 sock_copy_flags(sk
, osk
);
562 x25
->t21
= ox25
->t21
;
563 x25
->t22
= ox25
->t22
;
564 x25
->t23
= ox25
->t23
;
566 x25
->facilities
= ox25
->facilities
;
567 x25
->qbitincl
= ox25
->qbitincl
;
568 x25
->dte_facilities
= ox25
->dte_facilities
;
569 x25
->cudmatchlength
= ox25
->cudmatchlength
;
570 x25
->accptapprv
= ox25
->accptapprv
;
577 static int x25_release(struct socket
*sock
)
579 struct sock
*sk
= sock
->sk
;
580 struct x25_sock
*x25
;
587 switch (x25
->state
) {
591 x25_disconnect(sk
, 0, 0, 0);
592 x25_destroy_socket(sk
);
598 x25_clear_queues(sk
);
599 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
600 x25_start_t23timer(sk
);
601 x25
->state
= X25_STATE_2
;
602 sk
->sk_state
= TCP_CLOSE
;
603 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
604 sk
->sk_state_change(sk
);
605 sock_set_flag(sk
, SOCK_DEAD
);
606 sock_set_flag(sk
, SOCK_DESTROY
);
611 sk
->sk_socket
= NULL
; /* Not used, but we should do this */
616 static int x25_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
618 struct sock
*sk
= sock
->sk
;
619 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
621 if (!sock_flag(sk
, SOCK_ZAPPED
) ||
622 addr_len
!= sizeof(struct sockaddr_x25
) ||
623 addr
->sx25_family
!= AF_X25
)
626 x25_sk(sk
)->source_addr
= addr
->sx25_addr
;
627 x25_insert_socket(sk
);
628 sock_reset_flag(sk
, SOCK_ZAPPED
);
629 SOCK_DEBUG(sk
, "x25_bind: socket is bound\n");
634 static int x25_wait_for_connection_establishment(struct sock
*sk
)
636 DECLARE_WAITQUEUE(wait
, current
);
639 add_wait_queue_exclusive(sk
->sk_sleep
, &wait
);
641 __set_current_state(TASK_INTERRUPTIBLE
);
643 if (signal_pending(current
))
647 sk
->sk_socket
->state
= SS_UNCONNECTED
;
651 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
658 __set_current_state(TASK_RUNNING
);
659 remove_wait_queue(sk
->sk_sleep
, &wait
);
663 static int x25_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
664 int addr_len
, int flags
)
666 struct sock
*sk
= sock
->sk
;
667 struct x25_sock
*x25
= x25_sk(sk
);
668 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
669 struct x25_route
*rt
;
673 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
674 sock
->state
= SS_CONNECTED
;
675 goto out
; /* Connect completed during a ERESTARTSYS event */
679 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
680 sock
->state
= SS_UNCONNECTED
;
684 rc
= -EISCONN
; /* No reconnect on a seqpacket socket */
685 if (sk
->sk_state
== TCP_ESTABLISHED
)
688 sk
->sk_state
= TCP_CLOSE
;
689 sock
->state
= SS_UNCONNECTED
;
692 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
693 addr
->sx25_family
!= AF_X25
)
697 rt
= x25_get_route(&addr
->sx25_addr
);
701 x25
->neighbour
= x25_get_neigh(rt
->dev
);
705 x25_limit_facilities(&x25
->facilities
, x25
->neighbour
);
707 x25
->lci
= x25_new_lci(x25
->neighbour
);
712 if (sock_flag(sk
, SOCK_ZAPPED
)) /* Must bind first - autobinding does not work */
715 if (!strcmp(x25
->source_addr
.x25_addr
, null_x25_address
.x25_addr
))
716 memset(&x25
->source_addr
, '\0', X25_ADDR_LEN
);
718 x25
->dest_addr
= addr
->sx25_addr
;
720 /* Move to connecting socket, start sending Connect Requests */
721 sock
->state
= SS_CONNECTING
;
722 sk
->sk_state
= TCP_SYN_SENT
;
724 x25
->state
= X25_STATE_1
;
726 x25_write_internal(sk
, X25_CALL_REQUEST
);
728 x25_start_heartbeat(sk
);
729 x25_start_t21timer(sk
);
733 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
736 rc
= x25_wait_for_connection_establishment(sk
);
740 sock
->state
= SS_CONNECTED
;
744 x25_neigh_put(x25
->neighbour
);
752 static int x25_wait_for_data(struct sock
*sk
, long timeout
)
754 DECLARE_WAITQUEUE(wait
, current
);
757 add_wait_queue_exclusive(sk
->sk_sleep
, &wait
);
759 __set_current_state(TASK_INTERRUPTIBLE
);
760 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
763 if (signal_pending(current
))
769 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
771 timeout
= schedule_timeout(timeout
);
776 __set_current_state(TASK_RUNNING
);
777 remove_wait_queue(sk
->sk_sleep
, &wait
);
781 static int x25_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
783 struct sock
*sk
= sock
->sk
;
788 if (!sk
|| sk
->sk_state
!= TCP_LISTEN
)
792 if (sk
->sk_type
!= SOCK_SEQPACKET
)
796 rc
= x25_wait_for_data(sk
, sk
->sk_rcvtimeo
);
799 skb
= skb_dequeue(&sk
->sk_receive_queue
);
804 newsk
->sk_socket
= newsock
;
805 newsk
->sk_sleep
= &newsock
->wait
;
807 /* Now attach up the new socket */
810 sk
->sk_ack_backlog
--;
812 newsock
->state
= SS_CONNECTED
;
820 static int x25_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
821 int *uaddr_len
, int peer
)
823 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)uaddr
;
824 struct sock
*sk
= sock
->sk
;
825 struct x25_sock
*x25
= x25_sk(sk
);
828 if (sk
->sk_state
!= TCP_ESTABLISHED
)
830 sx25
->sx25_addr
= x25
->dest_addr
;
832 sx25
->sx25_addr
= x25
->source_addr
;
834 sx25
->sx25_family
= AF_X25
;
835 *uaddr_len
= sizeof(*sx25
);
840 int x25_rx_call_request(struct sk_buff
*skb
, struct x25_neigh
*nb
,
845 struct x25_sock
*makex25
;
846 struct x25_address source_addr
, dest_addr
;
847 struct x25_facilities facilities
;
848 struct x25_dte_facilities dte_facilities
;
852 * Remove the LCI and frame type.
854 skb_pull(skb
, X25_STD_MIN_LEN
);
857 * Extract the X.25 addresses and convert them to ASCII strings,
860 skb_pull(skb
, x25_addr_ntoa(skb
->data
, &source_addr
, &dest_addr
));
863 * Get the length of the facilities, skip past them for the moment
864 * get the call user data because this is needed to determine
865 * the correct listener
867 len
= skb
->data
[0] + 1;
871 * Find a listener for the particular address/cud pair.
873 sk
= x25_find_listener(&source_addr
,skb
);
877 * We can't accept the Call Request.
879 if (sk
== NULL
|| sk_acceptq_is_full(sk
))
880 goto out_clear_request
;
883 * Try to reach a compromise on the requested facilities.
885 len
= x25_negotiate_facilities(skb
, sk
, &facilities
, &dte_facilities
);
890 * current neighbour/link might impose additional limits
891 * on certain facilties
894 x25_limit_facilities(&facilities
, nb
);
897 * Try to create a new socket.
899 make
= x25_make_new(sk
);
904 * Remove the facilities
909 make
->sk_state
= TCP_ESTABLISHED
;
911 makex25
= x25_sk(make
);
913 makex25
->dest_addr
= dest_addr
;
914 makex25
->source_addr
= source_addr
;
915 makex25
->neighbour
= nb
;
916 makex25
->facilities
= facilities
;
917 makex25
->dte_facilities
= dte_facilities
;
918 makex25
->vc_facil_mask
= x25_sk(sk
)->vc_facil_mask
;
919 /* ensure no reverse facil on accept */
920 makex25
->vc_facil_mask
&= ~X25_MASK_REVERSE
;
921 /* ensure no calling address extension on accept */
922 makex25
->vc_facil_mask
&= ~X25_MASK_CALLING_AE
;
923 makex25
->cudmatchlength
= x25_sk(sk
)->cudmatchlength
;
925 /* Normally all calls are accepted immediatly */
926 if(makex25
->accptapprv
& X25_DENY_ACCPT_APPRV
) {
927 x25_write_internal(make
, X25_CALL_ACCEPTED
);
928 makex25
->state
= X25_STATE_3
;
932 * Incoming Call User Data.
935 memcpy(makex25
->calluserdata
.cuddata
, skb
->data
, skb
->len
);
936 makex25
->calluserdata
.cudlength
= skb
->len
;
939 sk
->sk_ack_backlog
++;
941 x25_insert_socket(make
);
943 skb_queue_head(&sk
->sk_receive_queue
, skb
);
945 x25_start_heartbeat(make
);
947 if (!sock_flag(sk
, SOCK_DEAD
))
948 sk
->sk_data_ready(sk
, skb
->len
);
957 x25_transmit_clear_request(nb
, lci
, 0x01);
961 static int x25_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
962 struct msghdr
*msg
, size_t len
)
964 struct sock
*sk
= sock
->sk
;
965 struct x25_sock
*x25
= x25_sk(sk
);
966 struct sockaddr_x25
*usx25
= (struct sockaddr_x25
*)msg
->msg_name
;
967 struct sockaddr_x25 sx25
;
969 unsigned char *asmptr
;
970 int noblock
= msg
->msg_flags
& MSG_DONTWAIT
;
972 int qbit
= 0, rc
= -EINVAL
;
974 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_OOB
|MSG_EOR
|MSG_CMSG_COMPAT
))
977 /* we currently don't support segmented records at the user interface */
978 if (!(msg
->msg_flags
& (MSG_EOR
|MSG_OOB
)))
982 if (sock_flag(sk
, SOCK_ZAPPED
))
986 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
987 send_sig(SIGPIPE
, current
, 0);
997 if (msg
->msg_namelen
< sizeof(sx25
))
999 memcpy(&sx25
, usx25
, sizeof(sx25
));
1001 if (strcmp(x25
->dest_addr
.x25_addr
, sx25
.sx25_addr
.x25_addr
))
1004 if (sx25
.sx25_family
!= AF_X25
)
1008 * FIXME 1003.1g - if the socket is like this because
1009 * it has become closed (not started closed) we ought
1010 * to SIGPIPE, EPIPE;
1013 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1016 sx25
.sx25_family
= AF_X25
;
1017 sx25
.sx25_addr
= x25
->dest_addr
;
1020 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: Addresses built.\n");
1022 /* Build a packet */
1023 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: building packet.\n");
1025 if ((msg
->msg_flags
& MSG_OOB
) && len
> 32)
1028 size
= len
+ X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
;
1030 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
1033 X25_SKB_CB(skb
)->flags
= msg
->msg_flags
;
1035 skb_reserve(skb
, X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
);
1038 * Put the data on the end
1040 SOCK_DEBUG(sk
, "x25_sendmsg: Copying user data\n");
1042 asmptr
= skb
->h
.raw
= skb_put(skb
, len
);
1044 rc
= memcpy_fromiovec(asmptr
, msg
->msg_iov
, len
);
1049 * If the Q BIT Include socket option is in force, the first
1050 * byte of the user data is the logical value of the Q Bit.
1052 if (x25
->qbitincl
) {
1053 qbit
= skb
->data
[0];
1058 * Push down the X.25 header
1060 SOCK_DEBUG(sk
, "x25_sendmsg: Building X.25 Header.\n");
1062 if (msg
->msg_flags
& MSG_OOB
) {
1063 if (x25
->neighbour
->extended
) {
1064 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1065 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1066 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1067 *asmptr
++ = X25_INTERRUPT
;
1069 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1070 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1071 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1072 *asmptr
++ = X25_INTERRUPT
;
1075 if (x25
->neighbour
->extended
) {
1076 /* Build an Extended X.25 header */
1077 asmptr
= skb_push(skb
, X25_EXT_MIN_LEN
);
1078 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1079 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1080 *asmptr
++ = X25_DATA
;
1081 *asmptr
++ = X25_DATA
;
1083 /* Build an Standard X.25 header */
1084 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1085 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1086 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1087 *asmptr
++ = X25_DATA
;
1091 skb
->data
[0] |= X25_Q_BIT
;
1094 SOCK_DEBUG(sk
, "x25_sendmsg: Built header.\n");
1095 SOCK_DEBUG(sk
, "x25_sendmsg: Transmitting buffer\n");
1098 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1101 if (msg
->msg_flags
& MSG_OOB
)
1102 skb_queue_tail(&x25
->interrupt_out_queue
, skb
);
1104 len
= x25_output(sk
, skb
);
1107 else if (x25
->qbitincl
)
1112 * lock_sock() is currently only used to serialize this x25_kick()
1113 * against input-driven x25_kick() calls. It currently only blocks
1114 * incoming packets for this socket and does not protect against
1115 * any other socket state changes and is not called from anywhere
1116 * else. As x25_kick() cannot block and as long as all socket
1117 * operations are BKL-wrapped, we don't need take to care about
1118 * purging the backlog queue in x25_release().
1120 * Using lock_sock() to protect all socket operations entirely
1121 * (and making the whole x25 stack SMP aware) unfortunately would
1122 * require major changes to {send,recv}msg and skb allocation methods.
1137 static int x25_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1138 struct msghdr
*msg
, size_t size
,
1141 struct sock
*sk
= sock
->sk
;
1142 struct x25_sock
*x25
= x25_sk(sk
);
1143 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)msg
->msg_name
;
1146 struct sk_buff
*skb
;
1147 unsigned char *asmptr
;
1151 * This works for seqpacket too. The receiver has ordered the queue for
1152 * us! We do one quick check first though
1154 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1157 if (flags
& MSG_OOB
) {
1159 if (sock_flag(sk
, SOCK_URGINLINE
) ||
1160 !skb_peek(&x25
->interrupt_in_queue
))
1163 skb
= skb_dequeue(&x25
->interrupt_in_queue
);
1165 skb_pull(skb
, X25_STD_MIN_LEN
);
1168 * No Q bit information on Interrupt data.
1170 if (x25
->qbitincl
) {
1171 asmptr
= skb_push(skb
, 1);
1175 msg
->msg_flags
|= MSG_OOB
;
1177 /* Now we can treat all alike */
1178 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1179 flags
& MSG_DONTWAIT
, &rc
);
1183 qbit
= (skb
->data
[0] & X25_Q_BIT
) == X25_Q_BIT
;
1185 skb_pull(skb
, x25
->neighbour
->extended
?
1186 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
);
1188 if (x25
->qbitincl
) {
1189 asmptr
= skb_push(skb
, 1);
1194 skb
->h
.raw
= skb
->data
;
1198 if (copied
> size
) {
1200 msg
->msg_flags
|= MSG_TRUNC
;
1203 /* Currently, each datagram always contains a complete record */
1204 msg
->msg_flags
|= MSG_EOR
;
1206 rc
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1208 goto out_free_dgram
;
1211 sx25
->sx25_family
= AF_X25
;
1212 sx25
->sx25_addr
= x25
->dest_addr
;
1215 msg
->msg_namelen
= sizeof(struct sockaddr_x25
);
1222 skb_free_datagram(sk
, skb
);
1228 static int x25_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1230 struct sock
*sk
= sock
->sk
;
1231 struct x25_sock
*x25
= x25_sk(sk
);
1232 void __user
*argp
= (void __user
*)arg
;
1237 int amount
= sk
->sk_sndbuf
-
1238 atomic_read(&sk
->sk_wmem_alloc
);
1241 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1246 struct sk_buff
*skb
;
1249 * These two are safe on a single CPU system as
1250 * only user tasks fiddle here
1252 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1254 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1261 rc
= sock_get_timestamp(sk
,
1262 (struct timeval __user
*)argp
);
1266 case SIOCGIFDSTADDR
:
1267 case SIOCSIFDSTADDR
:
1268 case SIOCGIFBRDADDR
:
1269 case SIOCSIFBRDADDR
:
1270 case SIOCGIFNETMASK
:
1271 case SIOCSIFNETMASK
:
1279 if (!capable(CAP_NET_ADMIN
))
1281 rc
= x25_route_ioctl(cmd
, argp
);
1283 case SIOCX25GSUBSCRIP
:
1284 rc
= x25_subscr_ioctl(cmd
, argp
);
1286 case SIOCX25SSUBSCRIP
:
1288 if (!capable(CAP_NET_ADMIN
))
1290 rc
= x25_subscr_ioctl(cmd
, argp
);
1292 case SIOCX25GFACILITIES
: {
1293 struct x25_facilities fac
= x25
->facilities
;
1294 rc
= copy_to_user(argp
, &fac
,
1295 sizeof(fac
)) ? -EFAULT
: 0;
1299 case SIOCX25SFACILITIES
: {
1300 struct x25_facilities facilities
;
1302 if (copy_from_user(&facilities
, argp
,
1303 sizeof(facilities
)))
1306 if (sk
->sk_state
!= TCP_LISTEN
&&
1307 sk
->sk_state
!= TCP_CLOSE
)
1309 if (facilities
.pacsize_in
< X25_PS16
||
1310 facilities
.pacsize_in
> X25_PS4096
)
1312 if (facilities
.pacsize_out
< X25_PS16
||
1313 facilities
.pacsize_out
> X25_PS4096
)
1315 if (facilities
.winsize_in
< 1 ||
1316 facilities
.winsize_in
> 127)
1318 if (facilities
.throughput
< 0x03 ||
1319 facilities
.throughput
> 0xDD)
1321 if (facilities
.reverse
&&
1322 (facilities
.reverse
| 0x81)!= 0x81)
1324 x25
->facilities
= facilities
;
1329 case SIOCX25GDTEFACILITIES
: {
1330 rc
= copy_to_user(argp
, &x25
->dte_facilities
,
1331 sizeof(x25
->dte_facilities
));
1337 case SIOCX25SDTEFACILITIES
: {
1338 struct x25_dte_facilities dtefacs
;
1340 if (copy_from_user(&dtefacs
, argp
, sizeof(dtefacs
)))
1343 if (sk
->sk_state
!= TCP_LISTEN
&&
1344 sk
->sk_state
!= TCP_CLOSE
)
1346 if (dtefacs
.calling_len
> X25_MAX_AE_LEN
)
1348 if (dtefacs
.calling_ae
== NULL
)
1350 if (dtefacs
.called_len
> X25_MAX_AE_LEN
)
1352 if (dtefacs
.called_ae
== NULL
)
1354 x25
->dte_facilities
= dtefacs
;
1359 case SIOCX25GCALLUSERDATA
: {
1360 struct x25_calluserdata cud
= x25
->calluserdata
;
1361 rc
= copy_to_user(argp
, &cud
,
1362 sizeof(cud
)) ? -EFAULT
: 0;
1366 case SIOCX25SCALLUSERDATA
: {
1367 struct x25_calluserdata calluserdata
;
1370 if (copy_from_user(&calluserdata
, argp
,
1371 sizeof(calluserdata
)))
1374 if (calluserdata
.cudlength
> X25_MAX_CUD_LEN
)
1376 x25
->calluserdata
= calluserdata
;
1381 case SIOCX25GCAUSEDIAG
: {
1382 struct x25_causediag causediag
;
1383 causediag
= x25
->causediag
;
1384 rc
= copy_to_user(argp
, &causediag
,
1385 sizeof(causediag
)) ? -EFAULT
: 0;
1389 case SIOCX25SCUDMATCHLEN
: {
1390 struct x25_subaddr sub_addr
;
1392 if(sk
->sk_state
!= TCP_CLOSE
)
1395 if (copy_from_user(&sub_addr
, argp
,
1399 if(sub_addr
.cudmatchlength
> X25_MAX_CUD_LEN
)
1401 x25
->cudmatchlength
= sub_addr
.cudmatchlength
;
1406 case SIOCX25CALLACCPTAPPRV
: {
1408 if (sk
->sk_state
!= TCP_CLOSE
)
1410 x25
->accptapprv
= X25_ALLOW_ACCPT_APPRV
;
1415 case SIOCX25SENDCALLACCPT
: {
1417 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1419 if (x25
->accptapprv
) /* must call accptapprv above */
1421 x25_write_internal(sk
, X25_CALL_ACCEPTED
);
1422 x25
->state
= X25_STATE_3
;
1435 static struct net_proto_family x25_family_ops
= {
1437 .create
= x25_create
,
1438 .owner
= THIS_MODULE
,
1441 #ifdef CONFIG_COMPAT
1442 static int compat_x25_subscr_ioctl(unsigned int cmd
,
1443 struct compat_x25_subscrip_struct __user
*x25_subscr32
)
1445 struct compat_x25_subscrip_struct x25_subscr
;
1446 struct x25_neigh
*nb
;
1447 struct net_device
*dev
;
1451 if (copy_from_user(&x25_subscr
, x25_subscr32
, sizeof(*x25_subscr32
)))
1455 dev
= x25_dev_get(x25_subscr
.device
);
1459 nb
= x25_get_neigh(dev
);
1465 if (cmd
== SIOCX25GSUBSCRIP
) {
1466 x25_subscr
.extended
= nb
->extended
;
1467 x25_subscr
.global_facil_mask
= nb
->global_facil_mask
;
1468 rc
= copy_to_user(x25_subscr32
, &x25_subscr
,
1469 sizeof(*x25_subscr32
)) ? -EFAULT
: 0;
1472 if (x25_subscr
.extended
== 0 || x25_subscr
.extended
== 1) {
1474 nb
->extended
= x25_subscr
.extended
;
1475 nb
->global_facil_mask
= x25_subscr
.global_facil_mask
;
1486 static int compat_x25_ioctl(struct socket
*sock
, unsigned int cmd
,
1489 void __user
*argp
= compat_ptr(arg
);
1490 struct sock
*sk
= sock
->sk
;
1492 int rc
= -ENOIOCTLCMD
;
1497 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1502 rc
= compat_sock_get_timestamp(sk
,
1503 (struct timeval __user
*)argp
);
1507 case SIOCGIFDSTADDR
:
1508 case SIOCSIFDSTADDR
:
1509 case SIOCGIFBRDADDR
:
1510 case SIOCSIFBRDADDR
:
1511 case SIOCGIFNETMASK
:
1512 case SIOCSIFNETMASK
:
1520 if (!capable(CAP_NET_ADMIN
))
1522 rc
= x25_route_ioctl(cmd
, argp
);
1524 case SIOCX25GSUBSCRIP
:
1525 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1527 case SIOCX25SSUBSCRIP
:
1529 if (!capable(CAP_NET_ADMIN
))
1531 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1533 case SIOCX25GFACILITIES
:
1534 case SIOCX25SFACILITIES
:
1535 case SIOCX25GDTEFACILITIES
:
1536 case SIOCX25SDTEFACILITIES
:
1537 case SIOCX25GCALLUSERDATA
:
1538 case SIOCX25SCALLUSERDATA
:
1539 case SIOCX25GCAUSEDIAG
:
1540 case SIOCX25SCUDMATCHLEN
:
1541 case SIOCX25CALLACCPTAPPRV
:
1542 case SIOCX25SENDCALLACCPT
:
1543 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1553 static const struct proto_ops
SOCKOPS_WRAPPED(x25_proto_ops
) = {
1555 .owner
= THIS_MODULE
,
1556 .release
= x25_release
,
1558 .connect
= x25_connect
,
1559 .socketpair
= sock_no_socketpair
,
1560 .accept
= x25_accept
,
1561 .getname
= x25_getname
,
1562 .poll
= datagram_poll
,
1564 #ifdef CONFIG_COMPAT
1565 .compat_ioctl
= compat_x25_ioctl
,
1567 .listen
= x25_listen
,
1568 .shutdown
= sock_no_shutdown
,
1569 .setsockopt
= x25_setsockopt
,
1570 .getsockopt
= x25_getsockopt
,
1571 .sendmsg
= x25_sendmsg
,
1572 .recvmsg
= x25_recvmsg
,
1573 .mmap
= sock_no_mmap
,
1574 .sendpage
= sock_no_sendpage
,
1577 #include <linux/smp_lock.h>
1578 SOCKOPS_WRAP(x25_proto
, AF_X25
);
1580 static struct packet_type x25_packet_type
= {
1581 .type
= __constant_htons(ETH_P_X25
),
1582 .func
= x25_lapb_receive_frame
,
1585 static struct notifier_block x25_dev_notifier
= {
1586 .notifier_call
= x25_device_event
,
1589 void x25_kill_by_neigh(struct x25_neigh
*nb
)
1592 struct hlist_node
*node
;
1594 write_lock_bh(&x25_list_lock
);
1596 sk_for_each(s
, node
, &x25_list
)
1597 if (x25_sk(s
)->neighbour
== nb
)
1598 x25_disconnect(s
, ENETUNREACH
, 0, 0);
1600 write_unlock_bh(&x25_list_lock
);
1603 static int __init
x25_init(void)
1605 int rc
= proto_register(&x25_proto
, 0);
1610 sock_register(&x25_family_ops
);
1612 dev_add_pack(&x25_packet_type
);
1614 register_netdevice_notifier(&x25_dev_notifier
);
1616 printk(KERN_INFO
"X.25 for Linux. Version 0.2 for Linux 2.1.15\n");
1618 #ifdef CONFIG_SYSCTL
1619 x25_register_sysctl();
1625 module_init(x25_init
);
1627 static void __exit
x25_exit(void)
1633 #ifdef CONFIG_SYSCTL
1634 x25_unregister_sysctl();
1637 unregister_netdevice_notifier(&x25_dev_notifier
);
1639 dev_remove_pack(&x25_packet_type
);
1641 sock_unregister(AF_X25
);
1642 proto_unregister(&x25_proto
);
1644 module_exit(x25_exit
);
1646 MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
1647 MODULE_DESCRIPTION("The X.25 Packet Layer network layer protocol");
1648 MODULE_LICENSE("GPL");
1649 MODULE_ALIAS_NETPROTO(PF_X25
);