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>
49 #include <linux/slab.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>
58 #include <linux/ctype.h>
61 #include <net/compat.h>
63 int sysctl_x25_restart_request_timeout
= X25_DEFAULT_T20
;
64 int sysctl_x25_call_request_timeout
= X25_DEFAULT_T21
;
65 int sysctl_x25_reset_request_timeout
= X25_DEFAULT_T22
;
66 int sysctl_x25_clear_request_timeout
= X25_DEFAULT_T23
;
67 int sysctl_x25_ack_holdback_timeout
= X25_DEFAULT_T2
;
68 int sysctl_x25_forward
= 0;
71 DEFINE_RWLOCK(x25_list_lock
);
73 static const struct proto_ops x25_proto_ops
;
75 static struct x25_address null_x25_address
= {" "};
78 struct compat_x25_subscrip_struct
{
79 char device
[200-sizeof(compat_ulong_t
)];
80 compat_ulong_t global_facil_mask
;
81 compat_uint_t extended
;
86 int x25_parse_address_block(struct sk_buff
*skb
,
87 struct x25_address
*called_addr
,
88 struct x25_address
*calling_addr
)
94 if (!pskb_may_pull(skb
, 1)) {
95 /* packet has no address block */
101 needed
= 1 + (len
>> 4) + (len
& 0x0f);
103 if (!pskb_may_pull(skb
, needed
)) {
104 /* packet is too short to hold the addresses it claims
110 return x25_addr_ntoa(skb
->data
, called_addr
, calling_addr
);
113 *called_addr
->x25_addr
= 0;
114 *calling_addr
->x25_addr
= 0;
120 int x25_addr_ntoa(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_len
= (*p
>> 0) & 0x0F;
128 calling_len
= (*p
>> 4) & 0x0F;
130 called
= called_addr
->x25_addr
;
131 calling
= calling_addr
->x25_addr
;
134 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
135 if (i
< called_len
) {
137 *called
++ = ((*p
>> 0) & 0x0F) + '0';
140 *called
++ = ((*p
>> 4) & 0x0F) + '0';
144 *calling
++ = ((*p
>> 0) & 0x0F) + '0';
147 *calling
++ = ((*p
>> 4) & 0x0F) + '0';
152 *called
= *calling
= '\0';
154 return 1 + (called_len
+ calling_len
+ 1) / 2;
157 int x25_addr_aton(unsigned char *p
, struct x25_address
*called_addr
,
158 struct x25_address
*calling_addr
)
160 unsigned int called_len
, calling_len
;
161 char *called
, *calling
;
164 called
= called_addr
->x25_addr
;
165 calling
= calling_addr
->x25_addr
;
167 called_len
= strlen(called
);
168 calling_len
= strlen(calling
);
170 *p
++ = (calling_len
<< 4) | (called_len
<< 0);
172 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
173 if (i
< called_len
) {
175 *p
|= (*called
++ - '0') << 0;
179 *p
|= (*called
++ - '0') << 4;
183 *p
|= (*calling
++ - '0') << 0;
187 *p
|= (*calling
++ - '0') << 4;
192 return 1 + (called_len
+ calling_len
+ 1) / 2;
196 * Socket removal during an interrupt is now safe.
198 static void x25_remove_socket(struct sock
*sk
)
200 write_lock_bh(&x25_list_lock
);
201 sk_del_node_init(sk
);
202 write_unlock_bh(&x25_list_lock
);
206 * Kill all bound sockets on a dropped device.
208 static void x25_kill_by_device(struct net_device
*dev
)
212 write_lock_bh(&x25_list_lock
);
214 sk_for_each(s
, &x25_list
)
215 if (x25_sk(s
)->neighbour
&& x25_sk(s
)->neighbour
->dev
== dev
)
216 x25_disconnect(s
, ENETUNREACH
, 0, 0);
218 write_unlock_bh(&x25_list_lock
);
222 * Handle device status changes.
224 static int x25_device_event(struct notifier_block
*this, unsigned long event
,
227 struct net_device
*dev
= ptr
;
228 struct x25_neigh
*nb
;
230 if (!net_eq(dev_net(dev
), &init_net
))
233 if (dev
->type
== ARPHRD_X25
234 #if IS_ENABLED(CONFIG_LLC)
235 || dev
->type
== ARPHRD_ETHER
240 x25_link_device_up(dev
);
242 case NETDEV_GOING_DOWN
:
243 nb
= x25_get_neigh(dev
);
245 x25_terminate_link(nb
);
250 x25_kill_by_device(dev
);
251 x25_route_device_down(dev
);
252 x25_link_device_down(dev
);
261 * Add a socket to the bound sockets list.
263 static void x25_insert_socket(struct sock
*sk
)
265 write_lock_bh(&x25_list_lock
);
266 sk_add_node(sk
, &x25_list
);
267 write_unlock_bh(&x25_list_lock
);
271 * Find a socket that wants to accept the Call Request we just
272 * received. Check the full list for an address/cud match.
273 * If no cuds match return the next_best thing, an address match.
274 * Note: if a listening socket has cud set it must only get calls
277 static struct sock
*x25_find_listener(struct x25_address
*addr
,
281 struct sock
*next_best
;
283 read_lock_bh(&x25_list_lock
);
286 sk_for_each(s
, &x25_list
)
287 if ((!strcmp(addr
->x25_addr
,
288 x25_sk(s
)->source_addr
.x25_addr
) ||
289 !strcmp(addr
->x25_addr
,
290 null_x25_address
.x25_addr
)) &&
291 s
->sk_state
== TCP_LISTEN
) {
293 * Found a listening socket, now check the incoming
294 * call user data vs this sockets call user data
296 if (x25_sk(s
)->cudmatchlength
> 0 &&
297 skb
->len
>= x25_sk(s
)->cudmatchlength
) {
298 if((memcmp(x25_sk(s
)->calluserdata
.cuddata
,
300 x25_sk(s
)->cudmatchlength
)) == 0) {
314 read_unlock_bh(&x25_list_lock
);
319 * Find a connected X.25 socket given my LCI and neighbour.
321 static struct sock
*__x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
325 sk_for_each(s
, &x25_list
)
326 if (x25_sk(s
)->lci
== lci
&& x25_sk(s
)->neighbour
== nb
) {
335 struct sock
*x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
339 read_lock_bh(&x25_list_lock
);
340 s
= __x25_find_socket(lci
, nb
);
341 read_unlock_bh(&x25_list_lock
);
346 * Find a unique LCI for a given device.
348 static unsigned int x25_new_lci(struct x25_neigh
*nb
)
350 unsigned int lci
= 1;
353 read_lock_bh(&x25_list_lock
);
355 while ((sk
= __x25_find_socket(lci
, nb
)) != NULL
) {
363 read_unlock_bh(&x25_list_lock
);
370 static void __x25_destroy_socket(struct sock
*);
373 * handler for deferred kills.
375 static void x25_destroy_timer(unsigned long data
)
377 x25_destroy_socket_from_timer((struct sock
*)data
);
381 * This is called from user mode and the timers. Thus it protects itself
382 * against interrupt users but doesn't worry about being called during
383 * work. Once it is removed from the queue no interrupt or bottom half
384 * will touch it and we are (fairly 8-) ) safe.
385 * Not static as it's used by the timer
387 static void __x25_destroy_socket(struct sock
*sk
)
391 x25_stop_heartbeat(sk
);
394 x25_remove_socket(sk
);
395 x25_clear_queues(sk
); /* Flush the queues */
397 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
398 if (skb
->sk
!= sk
) { /* A pending connection */
400 * Queue the unaccepted socket for death
402 skb
->sk
->sk_state
= TCP_LISTEN
;
403 sock_set_flag(skb
->sk
, SOCK_DEAD
);
404 x25_start_heartbeat(skb
->sk
);
405 x25_sk(skb
->sk
)->state
= X25_STATE_0
;
411 if (sk_has_allocations(sk
)) {
412 /* Defer: outstanding buffers */
413 sk
->sk_timer
.expires
= jiffies
+ 10 * HZ
;
414 sk
->sk_timer
.function
= x25_destroy_timer
;
415 sk
->sk_timer
.data
= (unsigned long)sk
;
416 add_timer(&sk
->sk_timer
);
418 /* drop last reference so sock_put will free */
423 void x25_destroy_socket_from_timer(struct sock
*sk
)
427 __x25_destroy_socket(sk
);
433 * Handling for system calls applied via the various interfaces to a
434 * X.25 socket object.
437 static int x25_setsockopt(struct socket
*sock
, int level
, int optname
,
438 char __user
*optval
, unsigned int optlen
)
441 struct sock
*sk
= sock
->sk
;
442 int rc
= -ENOPROTOOPT
;
444 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
448 if (optlen
< sizeof(int))
452 if (get_user(opt
, (int __user
*)optval
))
456 set_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
458 clear_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
464 static int x25_getsockopt(struct socket
*sock
, int level
, int optname
,
465 char __user
*optval
, int __user
*optlen
)
467 struct sock
*sk
= sock
->sk
;
468 int val
, len
, rc
= -ENOPROTOOPT
;
470 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
474 if (get_user(len
, optlen
))
477 len
= min_t(unsigned int, len
, sizeof(int));
484 if (put_user(len
, optlen
))
487 val
= test_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
488 rc
= copy_to_user(optval
, &val
, len
) ? -EFAULT
: 0;
493 static int x25_listen(struct socket
*sock
, int backlog
)
495 struct sock
*sk
= sock
->sk
;
496 int rc
= -EOPNOTSUPP
;
499 if (sk
->sk_state
!= TCP_LISTEN
) {
500 memset(&x25_sk(sk
)->dest_addr
, 0, X25_ADDR_LEN
);
501 sk
->sk_max_ack_backlog
= backlog
;
502 sk
->sk_state
= TCP_LISTEN
;
510 static struct proto x25_proto
= {
512 .owner
= THIS_MODULE
,
513 .obj_size
= sizeof(struct x25_sock
),
516 static struct sock
*x25_alloc_socket(struct net
*net
)
518 struct x25_sock
*x25
;
519 struct sock
*sk
= sk_alloc(net
, AF_X25
, GFP_ATOMIC
, &x25_proto
);
524 sock_init_data(NULL
, sk
);
527 skb_queue_head_init(&x25
->ack_queue
);
528 skb_queue_head_init(&x25
->fragment_queue
);
529 skb_queue_head_init(&x25
->interrupt_in_queue
);
530 skb_queue_head_init(&x25
->interrupt_out_queue
);
535 static int x25_create(struct net
*net
, struct socket
*sock
, int protocol
,
539 struct x25_sock
*x25
;
540 int rc
= -EAFNOSUPPORT
;
542 if (!net_eq(net
, &init_net
))
545 rc
= -ESOCKTNOSUPPORT
;
546 if (sock
->type
!= SOCK_SEQPACKET
)
554 if ((sk
= x25_alloc_socket(net
)) == NULL
)
559 sock_init_data(sock
, sk
);
563 sock
->ops
= &x25_proto_ops
;
564 sk
->sk_protocol
= protocol
;
565 sk
->sk_backlog_rcv
= x25_backlog_rcv
;
567 x25
->t21
= sysctl_x25_call_request_timeout
;
568 x25
->t22
= sysctl_x25_reset_request_timeout
;
569 x25
->t23
= sysctl_x25_clear_request_timeout
;
570 x25
->t2
= sysctl_x25_ack_holdback_timeout
;
571 x25
->state
= X25_STATE_0
;
572 x25
->cudmatchlength
= 0;
573 set_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
); /* normally no cud */
576 x25
->facilities
.winsize_in
= X25_DEFAULT_WINDOW_SIZE
;
577 x25
->facilities
.winsize_out
= X25_DEFAULT_WINDOW_SIZE
;
578 x25
->facilities
.pacsize_in
= X25_DEFAULT_PACKET_SIZE
;
579 x25
->facilities
.pacsize_out
= X25_DEFAULT_PACKET_SIZE
;
580 x25
->facilities
.throughput
= 0; /* by default don't negotiate
582 x25
->facilities
.reverse
= X25_DEFAULT_REVERSE
;
583 x25
->dte_facilities
.calling_len
= 0;
584 x25
->dte_facilities
.called_len
= 0;
585 memset(x25
->dte_facilities
.called_ae
, '\0',
586 sizeof(x25
->dte_facilities
.called_ae
));
587 memset(x25
->dte_facilities
.calling_ae
, '\0',
588 sizeof(x25
->dte_facilities
.calling_ae
));
595 static struct sock
*x25_make_new(struct sock
*osk
)
597 struct sock
*sk
= NULL
;
598 struct x25_sock
*x25
, *ox25
;
600 if (osk
->sk_type
!= SOCK_SEQPACKET
)
603 if ((sk
= x25_alloc_socket(sock_net(osk
))) == NULL
)
608 sk
->sk_type
= osk
->sk_type
;
609 sk
->sk_priority
= osk
->sk_priority
;
610 sk
->sk_protocol
= osk
->sk_protocol
;
611 sk
->sk_rcvbuf
= osk
->sk_rcvbuf
;
612 sk
->sk_sndbuf
= osk
->sk_sndbuf
;
613 sk
->sk_state
= TCP_ESTABLISHED
;
614 sk
->sk_backlog_rcv
= osk
->sk_backlog_rcv
;
615 sock_copy_flags(sk
, osk
);
618 x25
->t21
= ox25
->t21
;
619 x25
->t22
= ox25
->t22
;
620 x25
->t23
= ox25
->t23
;
622 x25
->flags
= ox25
->flags
;
623 x25
->facilities
= ox25
->facilities
;
624 x25
->dte_facilities
= ox25
->dte_facilities
;
625 x25
->cudmatchlength
= ox25
->cudmatchlength
;
627 clear_bit(X25_INTERRUPT_FLAG
, &x25
->flags
);
633 static int x25_release(struct socket
*sock
)
635 struct sock
*sk
= sock
->sk
;
636 struct x25_sock
*x25
;
645 switch (x25
->state
) {
649 x25_disconnect(sk
, 0, 0, 0);
650 __x25_destroy_socket(sk
);
656 x25_clear_queues(sk
);
657 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
658 x25_start_t23timer(sk
);
659 x25
->state
= X25_STATE_2
;
660 sk
->sk_state
= TCP_CLOSE
;
661 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
662 sk
->sk_state_change(sk
);
663 sock_set_flag(sk
, SOCK_DEAD
);
664 sock_set_flag(sk
, SOCK_DESTROY
);
675 static int x25_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
677 struct sock
*sk
= sock
->sk
;
678 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
681 if (!sock_flag(sk
, SOCK_ZAPPED
) ||
682 addr_len
!= sizeof(struct sockaddr_x25
) ||
683 addr
->sx25_family
!= AF_X25
) {
688 len
= strlen(addr
->sx25_addr
.x25_addr
);
689 for (i
= 0; i
< len
; i
++) {
690 if (!isdigit(addr
->sx25_addr
.x25_addr
[i
])) {
697 x25_sk(sk
)->source_addr
= addr
->sx25_addr
;
698 x25_insert_socket(sk
);
699 sock_reset_flag(sk
, SOCK_ZAPPED
);
701 SOCK_DEBUG(sk
, "x25_bind: socket is bound\n");
706 static int x25_wait_for_connection_establishment(struct sock
*sk
)
708 DECLARE_WAITQUEUE(wait
, current
);
711 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
713 __set_current_state(TASK_INTERRUPTIBLE
);
715 if (signal_pending(current
))
719 sk
->sk_socket
->state
= SS_UNCONNECTED
;
723 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
730 __set_current_state(TASK_RUNNING
);
731 remove_wait_queue(sk_sleep(sk
), &wait
);
735 static int x25_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
736 int addr_len
, int flags
)
738 struct sock
*sk
= sock
->sk
;
739 struct x25_sock
*x25
= x25_sk(sk
);
740 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
741 struct x25_route
*rt
;
745 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
746 sock
->state
= SS_CONNECTED
;
747 goto out
; /* Connect completed during a ERESTARTSYS event */
751 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
752 sock
->state
= SS_UNCONNECTED
;
756 rc
= -EISCONN
; /* No reconnect on a seqpacket socket */
757 if (sk
->sk_state
== TCP_ESTABLISHED
)
760 sk
->sk_state
= TCP_CLOSE
;
761 sock
->state
= SS_UNCONNECTED
;
764 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
765 addr
->sx25_family
!= AF_X25
)
769 rt
= x25_get_route(&addr
->sx25_addr
);
773 x25
->neighbour
= x25_get_neigh(rt
->dev
);
777 x25_limit_facilities(&x25
->facilities
, x25
->neighbour
);
779 x25
->lci
= x25_new_lci(x25
->neighbour
);
784 if (sock_flag(sk
, SOCK_ZAPPED
)) /* Must bind first - autobinding does not work */
787 if (!strcmp(x25
->source_addr
.x25_addr
, null_x25_address
.x25_addr
))
788 memset(&x25
->source_addr
, '\0', X25_ADDR_LEN
);
790 x25
->dest_addr
= addr
->sx25_addr
;
792 /* Move to connecting socket, start sending Connect Requests */
793 sock
->state
= SS_CONNECTING
;
794 sk
->sk_state
= TCP_SYN_SENT
;
796 x25
->state
= X25_STATE_1
;
798 x25_write_internal(sk
, X25_CALL_REQUEST
);
800 x25_start_heartbeat(sk
);
801 x25_start_t21timer(sk
);
805 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
808 rc
= x25_wait_for_connection_establishment(sk
);
812 sock
->state
= SS_CONNECTED
;
816 x25_neigh_put(x25
->neighbour
);
824 static int x25_wait_for_data(struct sock
*sk
, long timeout
)
826 DECLARE_WAITQUEUE(wait
, current
);
829 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
831 __set_current_state(TASK_INTERRUPTIBLE
);
832 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
835 if (signal_pending(current
))
841 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
843 timeout
= schedule_timeout(timeout
);
848 __set_current_state(TASK_RUNNING
);
849 remove_wait_queue(sk_sleep(sk
), &wait
);
853 static int x25_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
855 struct sock
*sk
= sock
->sk
;
864 if (sk
->sk_type
!= SOCK_SEQPACKET
)
869 if (sk
->sk_state
!= TCP_LISTEN
)
872 rc
= x25_wait_for_data(sk
, sk
->sk_rcvtimeo
);
875 skb
= skb_dequeue(&sk
->sk_receive_queue
);
880 sock_graft(newsk
, newsock
);
882 /* Now attach up the new socket */
885 sk
->sk_ack_backlog
--;
886 newsock
->state
= SS_CONNECTED
;
894 static int x25_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
895 int *uaddr_len
, int peer
)
897 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)uaddr
;
898 struct sock
*sk
= sock
->sk
;
899 struct x25_sock
*x25
= x25_sk(sk
);
903 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
907 sx25
->sx25_addr
= x25
->dest_addr
;
909 sx25
->sx25_addr
= x25
->source_addr
;
911 sx25
->sx25_family
= AF_X25
;
912 *uaddr_len
= sizeof(*sx25
);
918 int x25_rx_call_request(struct sk_buff
*skb
, struct x25_neigh
*nb
,
923 struct x25_sock
*makex25
;
924 struct x25_address source_addr
, dest_addr
;
925 struct x25_facilities facilities
;
926 struct x25_dte_facilities dte_facilities
;
927 int len
, addr_len
, rc
;
930 * Remove the LCI and frame type.
932 skb_pull(skb
, X25_STD_MIN_LEN
);
935 * Extract the X.25 addresses and convert them to ASCII strings,
938 * Address block is mandatory in call request packets
940 addr_len
= x25_parse_address_block(skb
, &source_addr
, &dest_addr
);
942 goto out_clear_request
;
943 skb_pull(skb
, addr_len
);
946 * Get the length of the facilities, skip past them for the moment
947 * get the call user data because this is needed to determine
948 * the correct listener
950 * Facilities length is mandatory in call request packets
952 if (!pskb_may_pull(skb
, 1))
953 goto out_clear_request
;
954 len
= skb
->data
[0] + 1;
955 if (!pskb_may_pull(skb
, len
))
956 goto out_clear_request
;
960 * Ensure that the amount of call user data is valid.
962 if (skb
->len
> X25_MAX_CUD_LEN
)
963 goto out_clear_request
;
966 * Get all the call user data so it can be used in
967 * x25_find_listener and skb_copy_from_linear_data up ahead.
969 if (!pskb_may_pull(skb
, skb
->len
))
970 goto out_clear_request
;
973 * Find a listener for the particular address/cud pair.
975 sk
= x25_find_listener(&source_addr
,skb
);
978 if (sk
!= NULL
&& sk_acceptq_is_full(sk
)) {
983 * We dont have any listeners for this incoming call.
987 skb_push(skb
, addr_len
+ X25_STD_MIN_LEN
);
988 if (sysctl_x25_forward
&&
989 x25_forward_call(&dest_addr
, nb
, skb
, lci
) > 0)
991 /* Call was forwarded, dont process it any more */
996 /* No listeners, can't forward, clear the call */
997 goto out_clear_request
;
1002 * Try to reach a compromise on the requested facilities.
1004 len
= x25_negotiate_facilities(skb
, sk
, &facilities
, &dte_facilities
);
1009 * current neighbour/link might impose additional limits
1010 * on certain facilties
1013 x25_limit_facilities(&facilities
, nb
);
1016 * Try to create a new socket.
1018 make
= x25_make_new(sk
);
1023 * Remove the facilities
1028 make
->sk_state
= TCP_ESTABLISHED
;
1030 makex25
= x25_sk(make
);
1032 makex25
->dest_addr
= dest_addr
;
1033 makex25
->source_addr
= source_addr
;
1034 makex25
->neighbour
= nb
;
1035 makex25
->facilities
= facilities
;
1036 makex25
->dte_facilities
= dte_facilities
;
1037 makex25
->vc_facil_mask
= x25_sk(sk
)->vc_facil_mask
;
1038 /* ensure no reverse facil on accept */
1039 makex25
->vc_facil_mask
&= ~X25_MASK_REVERSE
;
1040 /* ensure no calling address extension on accept */
1041 makex25
->vc_facil_mask
&= ~X25_MASK_CALLING_AE
;
1042 makex25
->cudmatchlength
= x25_sk(sk
)->cudmatchlength
;
1044 /* Normally all calls are accepted immediately */
1045 if (test_bit(X25_ACCPT_APPRV_FLAG
, &makex25
->flags
)) {
1046 x25_write_internal(make
, X25_CALL_ACCEPTED
);
1047 makex25
->state
= X25_STATE_3
;
1051 * Incoming Call User Data.
1053 skb_copy_from_linear_data(skb
, makex25
->calluserdata
.cuddata
, skb
->len
);
1054 makex25
->calluserdata
.cudlength
= skb
->len
;
1056 sk
->sk_ack_backlog
++;
1058 x25_insert_socket(make
);
1060 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1062 x25_start_heartbeat(make
);
1064 if (!sock_flag(sk
, SOCK_DEAD
))
1065 sk
->sk_data_ready(sk
, skb
->len
);
1074 x25_transmit_clear_request(nb
, lci
, 0x01);
1078 static int x25_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1079 struct msghdr
*msg
, size_t len
)
1081 struct sock
*sk
= sock
->sk
;
1082 struct x25_sock
*x25
= x25_sk(sk
);
1083 struct sockaddr_x25
*usx25
= (struct sockaddr_x25
*)msg
->msg_name
;
1084 struct sockaddr_x25 sx25
;
1085 struct sk_buff
*skb
;
1086 unsigned char *asmptr
;
1087 int noblock
= msg
->msg_flags
& MSG_DONTWAIT
;
1089 int qbit
= 0, rc
= -EINVAL
;
1092 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_OOB
|MSG_EOR
|MSG_CMSG_COMPAT
))
1095 /* we currently don't support segmented records at the user interface */
1096 if (!(msg
->msg_flags
& (MSG_EOR
|MSG_OOB
)))
1099 rc
= -EADDRNOTAVAIL
;
1100 if (sock_flag(sk
, SOCK_ZAPPED
))
1104 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1105 send_sig(SIGPIPE
, current
, 0);
1110 if (!x25
->neighbour
)
1115 if (msg
->msg_namelen
< sizeof(sx25
))
1117 memcpy(&sx25
, usx25
, sizeof(sx25
));
1119 if (strcmp(x25
->dest_addr
.x25_addr
, sx25
.sx25_addr
.x25_addr
))
1122 if (sx25
.sx25_family
!= AF_X25
)
1126 * FIXME 1003.1g - if the socket is like this because
1127 * it has become closed (not started closed) we ought
1128 * to SIGPIPE, EPIPE;
1131 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1134 sx25
.sx25_family
= AF_X25
;
1135 sx25
.sx25_addr
= x25
->dest_addr
;
1138 /* Sanity check the packet size */
1144 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: Addresses built.\n");
1146 /* Build a packet */
1147 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: building packet.\n");
1149 if ((msg
->msg_flags
& MSG_OOB
) && len
> 32)
1152 size
= len
+ X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
;
1155 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
1159 X25_SKB_CB(skb
)->flags
= msg
->msg_flags
;
1161 skb_reserve(skb
, X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
);
1164 * Put the data on the end
1166 SOCK_DEBUG(sk
, "x25_sendmsg: Copying user data\n");
1168 skb_reset_transport_header(skb
);
1171 rc
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1176 * If the Q BIT Include socket option is in force, the first
1177 * byte of the user data is the logical value of the Q Bit.
1179 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1180 if (!pskb_may_pull(skb
, 1))
1183 qbit
= skb
->data
[0];
1188 * Push down the X.25 header
1190 SOCK_DEBUG(sk
, "x25_sendmsg: Building X.25 Header.\n");
1192 if (msg
->msg_flags
& MSG_OOB
) {
1193 if (x25
->neighbour
->extended
) {
1194 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1195 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1196 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1197 *asmptr
++ = X25_INTERRUPT
;
1199 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1200 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1201 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1202 *asmptr
++ = X25_INTERRUPT
;
1205 if (x25
->neighbour
->extended
) {
1206 /* Build an Extended X.25 header */
1207 asmptr
= skb_push(skb
, X25_EXT_MIN_LEN
);
1208 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1209 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1210 *asmptr
++ = X25_DATA
;
1211 *asmptr
++ = X25_DATA
;
1213 /* Build an Standard X.25 header */
1214 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1215 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1216 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1217 *asmptr
++ = X25_DATA
;
1221 skb
->data
[0] |= X25_Q_BIT
;
1224 SOCK_DEBUG(sk
, "x25_sendmsg: Built header.\n");
1225 SOCK_DEBUG(sk
, "x25_sendmsg: Transmitting buffer\n");
1228 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1231 if (msg
->msg_flags
& MSG_OOB
)
1232 skb_queue_tail(&x25
->interrupt_out_queue
, skb
);
1234 rc
= x25_output(sk
, skb
);
1238 else if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
))
1253 static int x25_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1254 struct msghdr
*msg
, size_t size
,
1257 struct sock
*sk
= sock
->sk
;
1258 struct x25_sock
*x25
= x25_sk(sk
);
1259 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)msg
->msg_name
;
1261 int qbit
, header_len
;
1262 struct sk_buff
*skb
;
1263 unsigned char *asmptr
;
1268 if (x25
->neighbour
== NULL
)
1271 header_len
= x25
->neighbour
->extended
?
1272 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
;
1275 * This works for seqpacket too. The receiver has ordered the queue for
1276 * us! We do one quick check first though
1278 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1281 if (flags
& MSG_OOB
) {
1283 if (sock_flag(sk
, SOCK_URGINLINE
) ||
1284 !skb_peek(&x25
->interrupt_in_queue
))
1287 skb
= skb_dequeue(&x25
->interrupt_in_queue
);
1289 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
))
1290 goto out_free_dgram
;
1292 skb_pull(skb
, X25_STD_MIN_LEN
);
1295 * No Q bit information on Interrupt data.
1297 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1298 asmptr
= skb_push(skb
, 1);
1302 msg
->msg_flags
|= MSG_OOB
;
1304 /* Now we can treat all alike */
1306 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1307 flags
& MSG_DONTWAIT
, &rc
);
1312 if (!pskb_may_pull(skb
, header_len
))
1313 goto out_free_dgram
;
1315 qbit
= (skb
->data
[0] & X25_Q_BIT
) == X25_Q_BIT
;
1317 skb_pull(skb
, header_len
);
1319 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1320 asmptr
= skb_push(skb
, 1);
1325 skb_reset_transport_header(skb
);
1328 if (copied
> size
) {
1330 msg
->msg_flags
|= MSG_TRUNC
;
1333 /* Currently, each datagram always contains a complete record */
1334 msg
->msg_flags
|= MSG_EOR
;
1336 rc
= skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1338 goto out_free_dgram
;
1341 sx25
->sx25_family
= AF_X25
;
1342 sx25
->sx25_addr
= x25
->dest_addr
;
1345 msg
->msg_namelen
= sizeof(struct sockaddr_x25
);
1350 skb_free_datagram(sk
, skb
);
1357 static int x25_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1359 struct sock
*sk
= sock
->sk
;
1360 struct x25_sock
*x25
= x25_sk(sk
);
1361 void __user
*argp
= (void __user
*)arg
;
1368 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1371 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1376 struct sk_buff
*skb
;
1379 * These two are safe on a single CPU system as
1380 * only user tasks fiddle here
1383 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1386 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1393 rc
= sock_get_timestamp(sk
,
1394 (struct timeval __user
*)argp
);
1399 rc
= sock_get_timestampns(sk
,
1400 (struct timespec __user
*)argp
);
1404 case SIOCGIFDSTADDR
:
1405 case SIOCSIFDSTADDR
:
1406 case SIOCGIFBRDADDR
:
1407 case SIOCSIFBRDADDR
:
1408 case SIOCGIFNETMASK
:
1409 case SIOCSIFNETMASK
:
1417 if (!capable(CAP_NET_ADMIN
))
1419 rc
= x25_route_ioctl(cmd
, argp
);
1421 case SIOCX25GSUBSCRIP
:
1422 rc
= x25_subscr_ioctl(cmd
, argp
);
1424 case SIOCX25SSUBSCRIP
:
1426 if (!capable(CAP_NET_ADMIN
))
1428 rc
= x25_subscr_ioctl(cmd
, argp
);
1430 case SIOCX25GFACILITIES
: {
1432 rc
= copy_to_user(argp
, &x25
->facilities
,
1433 sizeof(x25
->facilities
))
1439 case SIOCX25SFACILITIES
: {
1440 struct x25_facilities facilities
;
1442 if (copy_from_user(&facilities
, argp
, sizeof(facilities
)))
1446 if (sk
->sk_state
!= TCP_LISTEN
&&
1447 sk
->sk_state
!= TCP_CLOSE
)
1448 goto out_fac_release
;
1449 if (facilities
.pacsize_in
< X25_PS16
||
1450 facilities
.pacsize_in
> X25_PS4096
)
1451 goto out_fac_release
;
1452 if (facilities
.pacsize_out
< X25_PS16
||
1453 facilities
.pacsize_out
> X25_PS4096
)
1454 goto out_fac_release
;
1455 if (facilities
.winsize_in
< 1 ||
1456 facilities
.winsize_in
> 127)
1457 goto out_fac_release
;
1458 if (facilities
.throughput
) {
1459 int out
= facilities
.throughput
& 0xf0;
1460 int in
= facilities
.throughput
& 0x0f;
1462 facilities
.throughput
|=
1463 X25_DEFAULT_THROUGHPUT
<< 4;
1464 else if (out
< 0x30 || out
> 0xD0)
1465 goto out_fac_release
;
1467 facilities
.throughput
|=
1468 X25_DEFAULT_THROUGHPUT
;
1469 else if (in
< 0x03 || in
> 0x0D)
1470 goto out_fac_release
;
1472 if (facilities
.reverse
&&
1473 (facilities
.reverse
& 0x81) != 0x81)
1474 goto out_fac_release
;
1475 x25
->facilities
= facilities
;
1482 case SIOCX25GDTEFACILITIES
: {
1484 rc
= copy_to_user(argp
, &x25
->dte_facilities
,
1485 sizeof(x25
->dte_facilities
));
1492 case SIOCX25SDTEFACILITIES
: {
1493 struct x25_dte_facilities dtefacs
;
1495 if (copy_from_user(&dtefacs
, argp
, sizeof(dtefacs
)))
1499 if (sk
->sk_state
!= TCP_LISTEN
&&
1500 sk
->sk_state
!= TCP_CLOSE
)
1501 goto out_dtefac_release
;
1502 if (dtefacs
.calling_len
> X25_MAX_AE_LEN
)
1503 goto out_dtefac_release
;
1504 if (dtefacs
.calling_ae
== NULL
)
1505 goto out_dtefac_release
;
1506 if (dtefacs
.called_len
> X25_MAX_AE_LEN
)
1507 goto out_dtefac_release
;
1508 if (dtefacs
.called_ae
== NULL
)
1509 goto out_dtefac_release
;
1510 x25
->dte_facilities
= dtefacs
;
1517 case SIOCX25GCALLUSERDATA
: {
1519 rc
= copy_to_user(argp
, &x25
->calluserdata
,
1520 sizeof(x25
->calluserdata
))
1526 case SIOCX25SCALLUSERDATA
: {
1527 struct x25_calluserdata calluserdata
;
1530 if (copy_from_user(&calluserdata
, argp
, sizeof(calluserdata
)))
1533 if (calluserdata
.cudlength
> X25_MAX_CUD_LEN
)
1536 x25
->calluserdata
= calluserdata
;
1542 case SIOCX25GCAUSEDIAG
: {
1544 rc
= copy_to_user(argp
, &x25
->causediag
, sizeof(x25
->causediag
))
1550 case SIOCX25SCAUSEDIAG
: {
1551 struct x25_causediag causediag
;
1553 if (copy_from_user(&causediag
, argp
, sizeof(causediag
)))
1556 x25
->causediag
= causediag
;
1563 case SIOCX25SCUDMATCHLEN
: {
1564 struct x25_subaddr sub_addr
;
1567 if(sk
->sk_state
!= TCP_CLOSE
)
1568 goto out_cud_release
;
1570 if (copy_from_user(&sub_addr
, argp
,
1572 goto out_cud_release
;
1574 if (sub_addr
.cudmatchlength
> X25_MAX_CUD_LEN
)
1575 goto out_cud_release
;
1576 x25
->cudmatchlength
= sub_addr
.cudmatchlength
;
1583 case SIOCX25CALLACCPTAPPRV
: {
1586 if (sk
->sk_state
!= TCP_CLOSE
)
1588 clear_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
);
1594 case SIOCX25SENDCALLACCPT
: {
1597 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1599 /* must call accptapprv above */
1600 if (test_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
))
1602 x25_write_internal(sk
, X25_CALL_ACCEPTED
);
1603 x25
->state
= X25_STATE_3
;
1617 static const struct net_proto_family x25_family_ops
= {
1619 .create
= x25_create
,
1620 .owner
= THIS_MODULE
,
1623 #ifdef CONFIG_COMPAT
1624 static int compat_x25_subscr_ioctl(unsigned int cmd
,
1625 struct compat_x25_subscrip_struct __user
*x25_subscr32
)
1627 struct compat_x25_subscrip_struct x25_subscr
;
1628 struct x25_neigh
*nb
;
1629 struct net_device
*dev
;
1633 if (copy_from_user(&x25_subscr
, x25_subscr32
, sizeof(*x25_subscr32
)))
1637 dev
= x25_dev_get(x25_subscr
.device
);
1641 nb
= x25_get_neigh(dev
);
1647 if (cmd
== SIOCX25GSUBSCRIP
) {
1648 read_lock_bh(&x25_neigh_list_lock
);
1649 x25_subscr
.extended
= nb
->extended
;
1650 x25_subscr
.global_facil_mask
= nb
->global_facil_mask
;
1651 read_unlock_bh(&x25_neigh_list_lock
);
1652 rc
= copy_to_user(x25_subscr32
, &x25_subscr
,
1653 sizeof(*x25_subscr32
)) ? -EFAULT
: 0;
1656 if (x25_subscr
.extended
== 0 || x25_subscr
.extended
== 1) {
1658 write_lock_bh(&x25_neigh_list_lock
);
1659 nb
->extended
= x25_subscr
.extended
;
1660 nb
->global_facil_mask
= x25_subscr
.global_facil_mask
;
1661 write_unlock_bh(&x25_neigh_list_lock
);
1672 static int compat_x25_ioctl(struct socket
*sock
, unsigned int cmd
,
1675 void __user
*argp
= compat_ptr(arg
);
1676 struct sock
*sk
= sock
->sk
;
1678 int rc
= -ENOIOCTLCMD
;
1683 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1688 rc
= compat_sock_get_timestamp(sk
,
1689 (struct timeval __user
*)argp
);
1694 rc
= compat_sock_get_timestampns(sk
,
1695 (struct timespec __user
*)argp
);
1699 case SIOCGIFDSTADDR
:
1700 case SIOCSIFDSTADDR
:
1701 case SIOCGIFBRDADDR
:
1702 case SIOCSIFBRDADDR
:
1703 case SIOCGIFNETMASK
:
1704 case SIOCSIFNETMASK
:
1712 if (!capable(CAP_NET_ADMIN
))
1714 rc
= x25_route_ioctl(cmd
, argp
);
1716 case SIOCX25GSUBSCRIP
:
1717 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1719 case SIOCX25SSUBSCRIP
:
1721 if (!capable(CAP_NET_ADMIN
))
1723 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1725 case SIOCX25GFACILITIES
:
1726 case SIOCX25SFACILITIES
:
1727 case SIOCX25GDTEFACILITIES
:
1728 case SIOCX25SDTEFACILITIES
:
1729 case SIOCX25GCALLUSERDATA
:
1730 case SIOCX25SCALLUSERDATA
:
1731 case SIOCX25GCAUSEDIAG
:
1732 case SIOCX25SCAUSEDIAG
:
1733 case SIOCX25SCUDMATCHLEN
:
1734 case SIOCX25CALLACCPTAPPRV
:
1735 case SIOCX25SENDCALLACCPT
:
1736 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1746 static const struct proto_ops x25_proto_ops
= {
1748 .owner
= THIS_MODULE
,
1749 .release
= x25_release
,
1751 .connect
= x25_connect
,
1752 .socketpair
= sock_no_socketpair
,
1753 .accept
= x25_accept
,
1754 .getname
= x25_getname
,
1755 .poll
= datagram_poll
,
1757 #ifdef CONFIG_COMPAT
1758 .compat_ioctl
= compat_x25_ioctl
,
1760 .listen
= x25_listen
,
1761 .shutdown
= sock_no_shutdown
,
1762 .setsockopt
= x25_setsockopt
,
1763 .getsockopt
= x25_getsockopt
,
1764 .sendmsg
= x25_sendmsg
,
1765 .recvmsg
= x25_recvmsg
,
1766 .mmap
= sock_no_mmap
,
1767 .sendpage
= sock_no_sendpage
,
1770 static struct packet_type x25_packet_type __read_mostly
= {
1771 .type
= cpu_to_be16(ETH_P_X25
),
1772 .func
= x25_lapb_receive_frame
,
1775 static struct notifier_block x25_dev_notifier
= {
1776 .notifier_call
= x25_device_event
,
1779 void x25_kill_by_neigh(struct x25_neigh
*nb
)
1783 write_lock_bh(&x25_list_lock
);
1785 sk_for_each(s
, &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
);