1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * X.25 Packet Layer release 002
5 * This is ALPHA test software. This code may break your machine,
6 * randomly fail to work with new releases, misbehave and/or generally
7 * screw up. It might even work.
9 * This code REQUIRES 2.1.15 or higher
12 * X.25 001 Jonathan Naylor Started coding.
13 * X.25 002 Jonathan Naylor Centralised disconnect handling.
14 * New timer architecture.
15 * 2000-03-11 Henner Eisen MSG_EOR handling more POSIX compliant.
16 * 2000-03-22 Daniela Squassoni Allowed disabling/enabling of
17 * facilities negotiation and increased
18 * the throughput upper limit.
19 * 2000-08-27 Arnaldo C. Melo s/suser/capable/ + micro cleanups
20 * 2000-09-04 Henner Eisen Set sock->state in x25_accept().
21 * Fixed x25_output() related skb leakage.
22 * 2000-10-02 Henner Eisen Made x25_kick() single threaded per socket.
23 * 2000-10-27 Henner Eisen MSG_DONTWAIT for fragment allocation.
24 * 2000-11-14 Henner Eisen Closing datalink from NETDEV_GOING_DOWN
25 * 2002-10-06 Arnaldo C. Melo Get rid of cli/sti, move proc stuff to
26 * x25_proc.c, using seq_file
27 * 2005-04-02 Shaun Pereira Selective sub address matching
29 * 2005-04-15 Shaun Pereira Fast select with no restriction on
33 #define pr_fmt(fmt) "X25: " fmt
35 #include <linux/module.h>
36 #include <linux/capability.h>
37 #include <linux/errno.h>
38 #include <linux/kernel.h>
39 #include <linux/sched/signal.h>
40 #include <linux/timer.h>
41 #include <linux/string.h>
42 #include <linux/net.h>
43 #include <linux/netdevice.h>
44 #include <linux/if_arp.h>
45 #include <linux/skbuff.h>
46 #include <linux/slab.h>
48 #include <net/tcp_states.h>
49 #include <linux/uaccess.h>
50 #include <linux/fcntl.h>
51 #include <linux/termios.h> /* For TIOCINQ/OUTQ */
52 #include <linux/notifier.h>
53 #include <linux/init.h>
54 #include <linux/compat.h>
55 #include <linux/ctype.h>
58 #include <net/compat.h>
60 int sysctl_x25_restart_request_timeout
= X25_DEFAULT_T20
;
61 int sysctl_x25_call_request_timeout
= X25_DEFAULT_T21
;
62 int sysctl_x25_reset_request_timeout
= X25_DEFAULT_T22
;
63 int sysctl_x25_clear_request_timeout
= X25_DEFAULT_T23
;
64 int sysctl_x25_ack_holdback_timeout
= X25_DEFAULT_T2
;
65 int sysctl_x25_forward
= 0;
68 DEFINE_RWLOCK(x25_list_lock
);
70 static const struct proto_ops x25_proto_ops
;
72 static const 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
;
83 int x25_parse_address_block(struct sk_buff
*skb
,
84 struct x25_address
*called_addr
,
85 struct x25_address
*calling_addr
)
91 if (!pskb_may_pull(skb
, 1)) {
92 /* packet has no address block */
98 needed
= 1 + ((len
>> 4) + (len
& 0x0f) + 1) / 2;
100 if (!pskb_may_pull(skb
, needed
)) {
101 /* packet is too short to hold the addresses it claims
107 return x25_addr_ntoa(skb
->data
, called_addr
, calling_addr
);
110 *called_addr
->x25_addr
= 0;
111 *calling_addr
->x25_addr
= 0;
117 int x25_addr_ntoa(unsigned char *p
, struct x25_address
*called_addr
,
118 struct x25_address
*calling_addr
)
120 unsigned int called_len
, calling_len
;
121 char *called
, *calling
;
124 called_len
= (*p
>> 0) & 0x0F;
125 calling_len
= (*p
>> 4) & 0x0F;
127 called
= called_addr
->x25_addr
;
128 calling
= calling_addr
->x25_addr
;
131 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
132 if (i
< called_len
) {
134 *called
++ = ((*p
>> 0) & 0x0F) + '0';
137 *called
++ = ((*p
>> 4) & 0x0F) + '0';
141 *calling
++ = ((*p
>> 0) & 0x0F) + '0';
144 *calling
++ = ((*p
>> 4) & 0x0F) + '0';
149 *called
= *calling
= '\0';
151 return 1 + (called_len
+ calling_len
+ 1) / 2;
154 int x25_addr_aton(unsigned char *p
, struct x25_address
*called_addr
,
155 struct x25_address
*calling_addr
)
157 unsigned int called_len
, calling_len
;
158 char *called
, *calling
;
161 called
= called_addr
->x25_addr
;
162 calling
= calling_addr
->x25_addr
;
164 called_len
= strlen(called
);
165 calling_len
= strlen(calling
);
167 *p
++ = (calling_len
<< 4) | (called_len
<< 0);
169 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
170 if (i
< called_len
) {
172 *p
|= (*called
++ - '0') << 0;
176 *p
|= (*called
++ - '0') << 4;
180 *p
|= (*calling
++ - '0') << 0;
184 *p
|= (*calling
++ - '0') << 4;
189 return 1 + (called_len
+ calling_len
+ 1) / 2;
193 * Socket removal during an interrupt is now safe.
195 static void x25_remove_socket(struct sock
*sk
)
197 write_lock_bh(&x25_list_lock
);
198 sk_del_node_init(sk
);
199 write_unlock_bh(&x25_list_lock
);
203 * Handle device status changes.
205 static int x25_device_event(struct notifier_block
*this, unsigned long event
,
208 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
209 struct x25_neigh
*nb
;
211 if (!net_eq(dev_net(dev
), &init_net
))
214 if (dev
->type
== ARPHRD_X25
) {
216 case NETDEV_REGISTER
:
217 case NETDEV_POST_TYPE_CHANGE
:
218 x25_link_device_up(dev
);
221 nb
= x25_get_neigh(dev
);
223 x25_link_terminated(nb
);
226 x25_route_device_down(dev
);
228 case NETDEV_PRE_TYPE_CHANGE
:
229 case NETDEV_UNREGISTER
:
230 x25_link_device_down(dev
);
233 if (!netif_carrier_ok(dev
)) {
234 nb
= x25_get_neigh(dev
);
236 x25_link_terminated(nb
);
248 * Add a socket to the bound sockets list.
250 static void x25_insert_socket(struct sock
*sk
)
252 write_lock_bh(&x25_list_lock
);
253 sk_add_node(sk
, &x25_list
);
254 write_unlock_bh(&x25_list_lock
);
258 * Find a socket that wants to accept the Call Request we just
259 * received. Check the full list for an address/cud match.
260 * If no cuds match return the next_best thing, an address match.
261 * Note: if a listening socket has cud set it must only get calls
264 static struct sock
*x25_find_listener(struct x25_address
*addr
,
268 struct sock
*next_best
;
270 read_lock_bh(&x25_list_lock
);
273 sk_for_each(s
, &x25_list
)
274 if ((!strcmp(addr
->x25_addr
,
275 x25_sk(s
)->source_addr
.x25_addr
) ||
276 !strcmp(x25_sk(s
)->source_addr
.x25_addr
,
277 null_x25_address
.x25_addr
)) &&
278 s
->sk_state
== TCP_LISTEN
) {
280 * Found a listening socket, now check the incoming
281 * call user data vs this sockets call user data
283 if (x25_sk(s
)->cudmatchlength
> 0 &&
284 skb
->len
>= x25_sk(s
)->cudmatchlength
) {
285 if((memcmp(x25_sk(s
)->calluserdata
.cuddata
,
287 x25_sk(s
)->cudmatchlength
)) == 0) {
301 read_unlock_bh(&x25_list_lock
);
306 * Find a connected X.25 socket given my LCI and neighbour.
308 static struct sock
*__x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
312 sk_for_each(s
, &x25_list
)
313 if (x25_sk(s
)->lci
== lci
&& x25_sk(s
)->neighbour
== nb
) {
322 struct sock
*x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
326 read_lock_bh(&x25_list_lock
);
327 s
= __x25_find_socket(lci
, nb
);
328 read_unlock_bh(&x25_list_lock
);
333 * Find a unique LCI for a given device.
335 static unsigned int x25_new_lci(struct x25_neigh
*nb
)
337 unsigned int lci
= 1;
340 while ((sk
= x25_find_socket(lci
, nb
)) != NULL
) {
355 static void __x25_destroy_socket(struct sock
*);
358 * handler for deferred kills.
360 static void x25_destroy_timer(struct timer_list
*t
)
362 struct sock
*sk
= from_timer(sk
, t
, sk_timer
);
364 x25_destroy_socket_from_timer(sk
);
368 * This is called from user mode and the timers. Thus it protects itself
369 * against interrupting users but doesn't worry about being called during
370 * work. Once it is removed from the queue no interrupt or bottom half
371 * will touch it and we are (fairly 8-) ) safe.
372 * Not static as it's used by the timer
374 static void __x25_destroy_socket(struct sock
*sk
)
378 x25_stop_heartbeat(sk
);
381 x25_remove_socket(sk
);
382 x25_clear_queues(sk
); /* Flush the queues */
384 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
385 if (skb
->sk
!= sk
) { /* A pending connection */
387 * Queue the unaccepted socket for death
389 skb
->sk
->sk_state
= TCP_LISTEN
;
390 sock_set_flag(skb
->sk
, SOCK_DEAD
);
391 x25_start_heartbeat(skb
->sk
);
392 x25_sk(skb
->sk
)->state
= X25_STATE_0
;
398 if (sk_has_allocations(sk
)) {
399 /* Defer: outstanding buffers */
400 sk
->sk_timer
.expires
= jiffies
+ 10 * HZ
;
401 sk
->sk_timer
.function
= x25_destroy_timer
;
402 add_timer(&sk
->sk_timer
);
404 /* drop last reference so sock_put will free */
409 void x25_destroy_socket_from_timer(struct sock
*sk
)
413 __x25_destroy_socket(sk
);
419 * Handling for system calls applied via the various interfaces to a
420 * X.25 socket object.
423 static int x25_setsockopt(struct socket
*sock
, int level
, int optname
,
424 sockptr_t optval
, unsigned int optlen
)
427 struct sock
*sk
= sock
->sk
;
428 int rc
= -ENOPROTOOPT
;
430 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
434 if (optlen
< sizeof(int))
438 if (copy_from_sockptr(&opt
, optval
, sizeof(int)))
442 set_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
444 clear_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
450 static int x25_getsockopt(struct socket
*sock
, int level
, int optname
,
451 char __user
*optval
, int __user
*optlen
)
453 struct sock
*sk
= sock
->sk
;
454 int val
, len
, rc
= -ENOPROTOOPT
;
456 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
460 if (get_user(len
, optlen
))
467 len
= min_t(unsigned int, len
, sizeof(int));
470 if (put_user(len
, optlen
))
473 val
= test_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
474 rc
= copy_to_user(optval
, &val
, len
) ? -EFAULT
: 0;
479 static int x25_listen(struct socket
*sock
, int backlog
)
481 struct sock
*sk
= sock
->sk
;
482 int rc
= -EOPNOTSUPP
;
485 if (sock
->state
!= SS_UNCONNECTED
) {
491 if (sk
->sk_state
!= TCP_LISTEN
) {
492 memset(&x25_sk(sk
)->dest_addr
, 0, X25_ADDR_LEN
);
493 sk
->sk_max_ack_backlog
= backlog
;
494 sk
->sk_state
= TCP_LISTEN
;
502 static struct proto x25_proto
= {
504 .owner
= THIS_MODULE
,
505 .obj_size
= sizeof(struct x25_sock
),
508 static struct sock
*x25_alloc_socket(struct net
*net
, int kern
)
510 struct x25_sock
*x25
;
511 struct sock
*sk
= sk_alloc(net
, AF_X25
, GFP_ATOMIC
, &x25_proto
, kern
);
516 sock_init_data(NULL
, sk
);
519 skb_queue_head_init(&x25
->ack_queue
);
520 skb_queue_head_init(&x25
->fragment_queue
);
521 skb_queue_head_init(&x25
->interrupt_in_queue
);
522 skb_queue_head_init(&x25
->interrupt_out_queue
);
527 static int x25_create(struct net
*net
, struct socket
*sock
, int protocol
,
531 struct x25_sock
*x25
;
532 int rc
= -EAFNOSUPPORT
;
534 if (!net_eq(net
, &init_net
))
537 rc
= -ESOCKTNOSUPPORT
;
538 if (sock
->type
!= SOCK_SEQPACKET
)
546 if ((sk
= x25_alloc_socket(net
, kern
)) == NULL
)
551 sock_init_data(sock
, sk
);
555 sock
->ops
= &x25_proto_ops
;
556 sk
->sk_protocol
= protocol
;
557 sk
->sk_backlog_rcv
= x25_backlog_rcv
;
559 x25
->t21
= sysctl_x25_call_request_timeout
;
560 x25
->t22
= sysctl_x25_reset_request_timeout
;
561 x25
->t23
= sysctl_x25_clear_request_timeout
;
562 x25
->t2
= sysctl_x25_ack_holdback_timeout
;
563 x25
->state
= X25_STATE_0
;
564 x25
->cudmatchlength
= 0;
565 set_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
); /* normally no cud */
568 x25
->facilities
.winsize_in
= X25_DEFAULT_WINDOW_SIZE
;
569 x25
->facilities
.winsize_out
= X25_DEFAULT_WINDOW_SIZE
;
570 x25
->facilities
.pacsize_in
= X25_DEFAULT_PACKET_SIZE
;
571 x25
->facilities
.pacsize_out
= X25_DEFAULT_PACKET_SIZE
;
572 x25
->facilities
.throughput
= 0; /* by default don't negotiate
574 x25
->facilities
.reverse
= X25_DEFAULT_REVERSE
;
575 x25
->dte_facilities
.calling_len
= 0;
576 x25
->dte_facilities
.called_len
= 0;
577 memset(x25
->dte_facilities
.called_ae
, '\0',
578 sizeof(x25
->dte_facilities
.called_ae
));
579 memset(x25
->dte_facilities
.calling_ae
, '\0',
580 sizeof(x25
->dte_facilities
.calling_ae
));
587 static struct sock
*x25_make_new(struct sock
*osk
)
589 struct sock
*sk
= NULL
;
590 struct x25_sock
*x25
, *ox25
;
592 if (osk
->sk_type
!= SOCK_SEQPACKET
)
595 if ((sk
= x25_alloc_socket(sock_net(osk
), 0)) == NULL
)
600 sk
->sk_type
= osk
->sk_type
;
601 sk
->sk_priority
= READ_ONCE(osk
->sk_priority
);
602 sk
->sk_protocol
= osk
->sk_protocol
;
603 sk
->sk_rcvbuf
= osk
->sk_rcvbuf
;
604 sk
->sk_sndbuf
= osk
->sk_sndbuf
;
605 sk
->sk_state
= TCP_ESTABLISHED
;
606 sk
->sk_backlog_rcv
= osk
->sk_backlog_rcv
;
607 sock_copy_flags(sk
, osk
);
610 x25
->t21
= ox25
->t21
;
611 x25
->t22
= ox25
->t22
;
612 x25
->t23
= ox25
->t23
;
614 x25
->flags
= ox25
->flags
;
615 x25
->facilities
= ox25
->facilities
;
616 x25
->dte_facilities
= ox25
->dte_facilities
;
617 x25
->cudmatchlength
= ox25
->cudmatchlength
;
619 clear_bit(X25_INTERRUPT_FLAG
, &x25
->flags
);
625 static int x25_release(struct socket
*sock
)
627 struct sock
*sk
= sock
->sk
;
628 struct x25_sock
*x25
;
637 switch (x25
->state
) {
641 x25_disconnect(sk
, 0, 0, 0);
642 __x25_destroy_socket(sk
);
648 x25_clear_queues(sk
);
649 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
650 x25_start_t23timer(sk
);
651 x25
->state
= X25_STATE_2
;
652 sk
->sk_state
= TCP_CLOSE
;
653 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
654 sk
->sk_state_change(sk
);
655 sock_set_flag(sk
, SOCK_DEAD
);
656 sock_set_flag(sk
, SOCK_DESTROY
);
660 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
661 x25_disconnect(sk
, 0, 0, 0);
662 __x25_destroy_socket(sk
);
673 static int x25_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
675 struct sock
*sk
= sock
->sk
;
676 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
679 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
680 addr
->sx25_family
!= AF_X25
||
681 strnlen(addr
->sx25_addr
.x25_addr
, X25_ADDR_LEN
) == X25_ADDR_LEN
) {
686 /* check for the null_x25_address */
687 if (strcmp(addr
->sx25_addr
.x25_addr
, null_x25_address
.x25_addr
)) {
689 len
= strlen(addr
->sx25_addr
.x25_addr
);
690 for (i
= 0; i
< len
; i
++) {
691 if (!isdigit(addr
->sx25_addr
.x25_addr
[i
])) {
699 if (sock_flag(sk
, SOCK_ZAPPED
)) {
700 x25_sk(sk
)->source_addr
= addr
->sx25_addr
;
701 x25_insert_socket(sk
);
702 sock_reset_flag(sk
, SOCK_ZAPPED
);
707 net_dbg_ratelimited("x25_bind: socket is bound\n");
712 static int x25_wait_for_connection_establishment(struct sock
*sk
)
714 DECLARE_WAITQUEUE(wait
, current
);
717 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
719 __set_current_state(TASK_INTERRUPTIBLE
);
721 if (signal_pending(current
))
725 sk
->sk_socket
->state
= SS_UNCONNECTED
;
729 if (sk
->sk_state
== TCP_CLOSE
) {
730 sk
->sk_socket
->state
= SS_UNCONNECTED
;
734 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
741 __set_current_state(TASK_RUNNING
);
742 remove_wait_queue(sk_sleep(sk
), &wait
);
746 static int x25_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
747 int addr_len
, int flags
)
749 struct sock
*sk
= sock
->sk
;
750 struct x25_sock
*x25
= x25_sk(sk
);
751 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
752 struct x25_route
*rt
;
756 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
757 sock
->state
= SS_CONNECTED
;
758 goto out
; /* Connect completed during a ERESTARTSYS event */
762 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
763 sock
->state
= SS_UNCONNECTED
;
767 rc
= -EISCONN
; /* No reconnect on a seqpacket socket */
768 if (sk
->sk_state
== TCP_ESTABLISHED
)
771 rc
= -EALREADY
; /* Do nothing if call is already in progress */
772 if (sk
->sk_state
== TCP_SYN_SENT
)
775 sk
->sk_state
= TCP_CLOSE
;
776 sock
->state
= SS_UNCONNECTED
;
779 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
780 addr
->sx25_family
!= AF_X25
||
781 strnlen(addr
->sx25_addr
.x25_addr
, X25_ADDR_LEN
) == X25_ADDR_LEN
)
785 rt
= x25_get_route(&addr
->sx25_addr
);
789 x25
->neighbour
= x25_get_neigh(rt
->dev
);
793 x25_limit_facilities(&x25
->facilities
, x25
->neighbour
);
795 x25
->lci
= x25_new_lci(x25
->neighbour
);
800 if (sock_flag(sk
, SOCK_ZAPPED
)) /* Must bind first - autobinding does not work */
803 if (!strcmp(x25
->source_addr
.x25_addr
, null_x25_address
.x25_addr
))
804 memset(&x25
->source_addr
, '\0', X25_ADDR_LEN
);
806 x25
->dest_addr
= addr
->sx25_addr
;
808 /* Move to connecting socket, start sending Connect Requests */
809 sock
->state
= SS_CONNECTING
;
810 sk
->sk_state
= TCP_SYN_SENT
;
812 x25
->state
= X25_STATE_1
;
814 x25_write_internal(sk
, X25_CALL_REQUEST
);
816 x25_start_heartbeat(sk
);
817 x25_start_t21timer(sk
);
821 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
824 rc
= x25_wait_for_connection_establishment(sk
);
828 sock
->state
= SS_CONNECTED
;
831 if (rc
&& x25
->neighbour
) {
832 read_lock_bh(&x25_list_lock
);
833 x25_neigh_put(x25
->neighbour
);
834 x25
->neighbour
= NULL
;
835 read_unlock_bh(&x25_list_lock
);
836 x25
->state
= X25_STATE_0
;
845 static int x25_wait_for_data(struct sock
*sk
, long timeout
)
847 DECLARE_WAITQUEUE(wait
, current
);
850 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
852 __set_current_state(TASK_INTERRUPTIBLE
);
853 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
856 if (signal_pending(current
))
862 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
864 timeout
= schedule_timeout(timeout
);
869 __set_current_state(TASK_RUNNING
);
870 remove_wait_queue(sk_sleep(sk
), &wait
);
874 static int x25_accept(struct socket
*sock
, struct socket
*newsock
,
875 struct proto_accept_arg
*arg
)
877 struct sock
*sk
= sock
->sk
;
886 if (sk
->sk_type
!= SOCK_SEQPACKET
)
891 if (sk
->sk_state
!= TCP_LISTEN
)
894 rc
= x25_wait_for_data(sk
, sk
->sk_rcvtimeo
);
897 skb
= skb_dequeue(&sk
->sk_receive_queue
);
902 sock_graft(newsk
, newsock
);
904 /* Now attach up the new socket */
907 sk_acceptq_removed(sk
);
908 newsock
->state
= SS_CONNECTED
;
916 static int x25_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
919 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)uaddr
;
920 struct sock
*sk
= sock
->sk
;
921 struct x25_sock
*x25
= x25_sk(sk
);
925 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
929 sx25
->sx25_addr
= x25
->dest_addr
;
931 sx25
->sx25_addr
= x25
->source_addr
;
933 sx25
->sx25_family
= AF_X25
;
940 int x25_rx_call_request(struct sk_buff
*skb
, struct x25_neigh
*nb
,
945 struct x25_sock
*makex25
;
946 struct x25_address source_addr
, dest_addr
;
947 struct x25_facilities facilities
;
948 struct x25_dte_facilities dte_facilities
;
949 int len
, addr_len
, rc
;
952 * Remove the LCI and frame type.
954 skb_pull(skb
, X25_STD_MIN_LEN
);
957 * Extract the X.25 addresses and convert them to ASCII strings,
960 * Address block is mandatory in call request packets
962 addr_len
= x25_parse_address_block(skb
, &source_addr
, &dest_addr
);
964 goto out_clear_request
;
965 skb_pull(skb
, addr_len
);
968 * Get the length of the facilities, skip past them for the moment
969 * get the call user data because this is needed to determine
970 * the correct listener
972 * Facilities length is mandatory in call request packets
974 if (!pskb_may_pull(skb
, 1))
975 goto out_clear_request
;
976 len
= skb
->data
[0] + 1;
977 if (!pskb_may_pull(skb
, len
))
978 goto out_clear_request
;
982 * Ensure that the amount of call user data is valid.
984 if (skb
->len
> X25_MAX_CUD_LEN
)
985 goto out_clear_request
;
988 * Get all the call user data so it can be used in
989 * x25_find_listener and skb_copy_from_linear_data up ahead.
991 if (!pskb_may_pull(skb
, skb
->len
))
992 goto out_clear_request
;
995 * Find a listener for the particular address/cud pair.
997 sk
= x25_find_listener(&source_addr
,skb
);
1000 if (sk
!= NULL
&& sk_acceptq_is_full(sk
)) {
1005 * We dont have any listeners for this incoming call.
1006 * Try forwarding it.
1009 skb_push(skb
, addr_len
+ X25_STD_MIN_LEN
);
1010 if (sysctl_x25_forward
&&
1011 x25_forward_call(&dest_addr
, nb
, skb
, lci
) > 0)
1013 /* Call was forwarded, dont process it any more */
1018 /* No listeners, can't forward, clear the call */
1019 goto out_clear_request
;
1024 * Try to reach a compromise on the requested facilities.
1026 len
= x25_negotiate_facilities(skb
, sk
, &facilities
, &dte_facilities
);
1031 * current neighbour/link might impose additional limits
1032 * on certain facilities
1035 x25_limit_facilities(&facilities
, nb
);
1038 * Try to create a new socket.
1040 make
= x25_make_new(sk
);
1045 * Remove the facilities
1050 make
->sk_state
= TCP_ESTABLISHED
;
1052 makex25
= x25_sk(make
);
1054 makex25
->dest_addr
= dest_addr
;
1055 makex25
->source_addr
= source_addr
;
1057 makex25
->neighbour
= nb
;
1058 makex25
->facilities
= facilities
;
1059 makex25
->dte_facilities
= dte_facilities
;
1060 makex25
->vc_facil_mask
= x25_sk(sk
)->vc_facil_mask
;
1061 /* ensure no reverse facil on accept */
1062 makex25
->vc_facil_mask
&= ~X25_MASK_REVERSE
;
1063 /* ensure no calling address extension on accept */
1064 makex25
->vc_facil_mask
&= ~X25_MASK_CALLING_AE
;
1065 makex25
->cudmatchlength
= x25_sk(sk
)->cudmatchlength
;
1067 /* Normally all calls are accepted immediately */
1068 if (test_bit(X25_ACCPT_APPRV_FLAG
, &makex25
->flags
)) {
1069 x25_write_internal(make
, X25_CALL_ACCEPTED
);
1070 makex25
->state
= X25_STATE_3
;
1072 makex25
->state
= X25_STATE_5
;
1076 * Incoming Call User Data.
1078 skb_copy_from_linear_data(skb
, makex25
->calluserdata
.cuddata
, skb
->len
);
1079 makex25
->calluserdata
.cudlength
= skb
->len
;
1081 sk_acceptq_added(sk
);
1083 x25_insert_socket(make
);
1085 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1087 x25_start_heartbeat(make
);
1089 if (!sock_flag(sk
, SOCK_DEAD
))
1090 sk
->sk_data_ready(sk
);
1099 x25_transmit_clear_request(nb
, lci
, 0x01);
1103 static int x25_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
)
1105 struct sock
*sk
= sock
->sk
;
1106 struct x25_sock
*x25
= x25_sk(sk
);
1107 DECLARE_SOCKADDR(struct sockaddr_x25
*, usx25
, msg
->msg_name
);
1108 struct sockaddr_x25 sx25
;
1109 struct sk_buff
*skb
;
1110 unsigned char *asmptr
;
1111 int noblock
= msg
->msg_flags
& MSG_DONTWAIT
;
1113 int qbit
= 0, rc
= -EINVAL
;
1116 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_OOB
|MSG_EOR
|MSG_CMSG_COMPAT
))
1119 /* we currently don't support segmented records at the user interface */
1120 if (!(msg
->msg_flags
& (MSG_EOR
|MSG_OOB
)))
1123 rc
= -EADDRNOTAVAIL
;
1124 if (sock_flag(sk
, SOCK_ZAPPED
))
1128 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1129 send_sig(SIGPIPE
, current
, 0);
1134 if (!x25
->neighbour
)
1139 if (msg
->msg_namelen
< sizeof(sx25
))
1141 memcpy(&sx25
, usx25
, sizeof(sx25
));
1143 if (strcmp(x25
->dest_addr
.x25_addr
, sx25
.sx25_addr
.x25_addr
))
1146 if (sx25
.sx25_family
!= AF_X25
)
1150 * FIXME 1003.1g - if the socket is like this because
1151 * it has become closed (not started closed) we ought
1152 * to SIGPIPE, EPIPE;
1155 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1158 sx25
.sx25_family
= AF_X25
;
1159 sx25
.sx25_addr
= x25
->dest_addr
;
1162 /* Sanity check the packet size */
1168 net_dbg_ratelimited("x25_sendmsg: sendto: Addresses built.\n");
1170 /* Build a packet */
1171 net_dbg_ratelimited("x25_sendmsg: sendto: building packet.\n");
1173 if ((msg
->msg_flags
& MSG_OOB
) && len
> 32)
1176 size
= len
+ X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
;
1179 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
1183 X25_SKB_CB(skb
)->flags
= msg
->msg_flags
;
1185 skb_reserve(skb
, X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
);
1188 * Put the data on the end
1190 net_dbg_ratelimited("x25_sendmsg: Copying user data\n");
1192 skb_reset_transport_header(skb
);
1195 rc
= memcpy_from_msg(skb_transport_header(skb
), msg
, len
);
1200 * If the Q BIT Include socket option is in force, the first
1201 * byte of the user data is the logical value of the Q Bit.
1203 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1204 if (!pskb_may_pull(skb
, 1))
1207 qbit
= skb
->data
[0];
1212 * Push down the X.25 header
1214 net_dbg_ratelimited("x25_sendmsg: Building X.25 Header.\n");
1216 if (msg
->msg_flags
& MSG_OOB
) {
1217 if (x25
->neighbour
->extended
) {
1218 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1219 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1220 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1221 *asmptr
++ = X25_INTERRUPT
;
1223 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1224 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1225 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1226 *asmptr
++ = X25_INTERRUPT
;
1229 if (x25
->neighbour
->extended
) {
1230 /* Build an Extended X.25 header */
1231 asmptr
= skb_push(skb
, X25_EXT_MIN_LEN
);
1232 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1233 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1234 *asmptr
++ = X25_DATA
;
1235 *asmptr
++ = X25_DATA
;
1237 /* Build an Standard X.25 header */
1238 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1239 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1240 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1241 *asmptr
++ = X25_DATA
;
1245 skb
->data
[0] |= X25_Q_BIT
;
1248 net_dbg_ratelimited("x25_sendmsg: Built header.\n");
1249 net_dbg_ratelimited("x25_sendmsg: Transmitting buffer\n");
1252 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1255 if (msg
->msg_flags
& MSG_OOB
)
1256 skb_queue_tail(&x25
->interrupt_out_queue
, skb
);
1258 rc
= x25_output(sk
, skb
);
1262 else if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
))
1277 static int x25_recvmsg(struct socket
*sock
, struct msghdr
*msg
, size_t size
,
1280 struct sock
*sk
= sock
->sk
;
1281 struct x25_sock
*x25
= x25_sk(sk
);
1282 DECLARE_SOCKADDR(struct sockaddr_x25
*, sx25
, msg
->msg_name
);
1284 int qbit
, header_len
;
1285 struct sk_buff
*skb
;
1286 unsigned char *asmptr
;
1291 if (x25
->neighbour
== NULL
)
1294 header_len
= x25
->neighbour
->extended
?
1295 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
;
1298 * This works for seqpacket too. The receiver has ordered the queue for
1299 * us! We do one quick check first though
1301 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1304 if (flags
& MSG_OOB
) {
1306 if (sock_flag(sk
, SOCK_URGINLINE
) ||
1307 !skb_peek(&x25
->interrupt_in_queue
))
1310 skb
= skb_dequeue(&x25
->interrupt_in_queue
);
1312 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
))
1313 goto out_free_dgram
;
1315 skb_pull(skb
, X25_STD_MIN_LEN
);
1318 * No Q bit information on Interrupt data.
1320 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1321 asmptr
= skb_push(skb
, 1);
1325 msg
->msg_flags
|= MSG_OOB
;
1327 /* Now we can treat all alike */
1329 skb
= skb_recv_datagram(sk
, flags
, &rc
);
1334 if (!pskb_may_pull(skb
, header_len
))
1335 goto out_free_dgram
;
1337 qbit
= (skb
->data
[0] & X25_Q_BIT
) == X25_Q_BIT
;
1339 skb_pull(skb
, header_len
);
1341 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1342 asmptr
= skb_push(skb
, 1);
1347 skb_reset_transport_header(skb
);
1350 if (copied
> size
) {
1352 msg
->msg_flags
|= MSG_TRUNC
;
1355 /* Currently, each datagram always contains a complete record */
1356 msg
->msg_flags
|= MSG_EOR
;
1358 rc
= skb_copy_datagram_msg(skb
, 0, msg
, copied
);
1360 goto out_free_dgram
;
1363 sx25
->sx25_family
= AF_X25
;
1364 sx25
->sx25_addr
= x25
->dest_addr
;
1365 msg
->msg_namelen
= sizeof(*sx25
);
1371 skb_free_datagram(sk
, skb
);
1378 static int x25_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1380 struct sock
*sk
= sock
->sk
;
1381 struct x25_sock
*x25
= x25_sk(sk
);
1382 void __user
*argp
= (void __user
*)arg
;
1389 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1392 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1397 struct sk_buff
*skb
;
1400 * These two are safe on a single CPU system as
1401 * only user tasks fiddle here
1404 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1407 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1413 case SIOCGIFDSTADDR
:
1414 case SIOCSIFDSTADDR
:
1415 case SIOCGIFBRDADDR
:
1416 case SIOCSIFBRDADDR
:
1417 case SIOCGIFNETMASK
:
1418 case SIOCSIFNETMASK
:
1426 if (!capable(CAP_NET_ADMIN
))
1428 rc
= x25_route_ioctl(cmd
, argp
);
1430 case SIOCX25GSUBSCRIP
:
1431 rc
= x25_subscr_ioctl(cmd
, argp
);
1433 case SIOCX25SSUBSCRIP
:
1435 if (!capable(CAP_NET_ADMIN
))
1437 rc
= x25_subscr_ioctl(cmd
, argp
);
1439 case SIOCX25GFACILITIES
: {
1441 rc
= copy_to_user(argp
, &x25
->facilities
,
1442 sizeof(x25
->facilities
))
1448 case SIOCX25SFACILITIES
: {
1449 struct x25_facilities facilities
;
1451 if (copy_from_user(&facilities
, argp
, sizeof(facilities
)))
1455 if (sk
->sk_state
!= TCP_LISTEN
&&
1456 sk
->sk_state
!= TCP_CLOSE
)
1457 goto out_fac_release
;
1458 if (facilities
.pacsize_in
< X25_PS16
||
1459 facilities
.pacsize_in
> X25_PS4096
)
1460 goto out_fac_release
;
1461 if (facilities
.pacsize_out
< X25_PS16
||
1462 facilities
.pacsize_out
> X25_PS4096
)
1463 goto out_fac_release
;
1464 if (facilities
.winsize_in
< 1 ||
1465 facilities
.winsize_in
> 127)
1466 goto out_fac_release
;
1467 if (facilities
.throughput
) {
1468 int out
= facilities
.throughput
& 0xf0;
1469 int in
= facilities
.throughput
& 0x0f;
1471 facilities
.throughput
|=
1472 X25_DEFAULT_THROUGHPUT
<< 4;
1473 else if (out
< 0x30 || out
> 0xD0)
1474 goto out_fac_release
;
1476 facilities
.throughput
|=
1477 X25_DEFAULT_THROUGHPUT
;
1478 else if (in
< 0x03 || in
> 0x0D)
1479 goto out_fac_release
;
1481 if (facilities
.reverse
&&
1482 (facilities
.reverse
& 0x81) != 0x81)
1483 goto out_fac_release
;
1484 x25
->facilities
= facilities
;
1491 case SIOCX25GDTEFACILITIES
: {
1493 rc
= copy_to_user(argp
, &x25
->dte_facilities
,
1494 sizeof(x25
->dte_facilities
));
1501 case SIOCX25SDTEFACILITIES
: {
1502 struct x25_dte_facilities dtefacs
;
1504 if (copy_from_user(&dtefacs
, argp
, sizeof(dtefacs
)))
1508 if (sk
->sk_state
!= TCP_LISTEN
&&
1509 sk
->sk_state
!= TCP_CLOSE
)
1510 goto out_dtefac_release
;
1511 if (dtefacs
.calling_len
> X25_MAX_AE_LEN
)
1512 goto out_dtefac_release
;
1513 if (dtefacs
.called_len
> X25_MAX_AE_LEN
)
1514 goto out_dtefac_release
;
1515 x25
->dte_facilities
= dtefacs
;
1522 case SIOCX25GCALLUSERDATA
: {
1524 rc
= copy_to_user(argp
, &x25
->calluserdata
,
1525 sizeof(x25
->calluserdata
))
1531 case SIOCX25SCALLUSERDATA
: {
1532 struct x25_calluserdata calluserdata
;
1535 if (copy_from_user(&calluserdata
, argp
, sizeof(calluserdata
)))
1538 if (calluserdata
.cudlength
> X25_MAX_CUD_LEN
)
1541 x25
->calluserdata
= calluserdata
;
1547 case SIOCX25GCAUSEDIAG
: {
1549 rc
= copy_to_user(argp
, &x25
->causediag
, sizeof(x25
->causediag
))
1555 case SIOCX25SCAUSEDIAG
: {
1556 struct x25_causediag causediag
;
1558 if (copy_from_user(&causediag
, argp
, sizeof(causediag
)))
1561 x25
->causediag
= causediag
;
1568 case SIOCX25SCUDMATCHLEN
: {
1569 struct x25_subaddr sub_addr
;
1572 if(sk
->sk_state
!= TCP_CLOSE
)
1573 goto out_cud_release
;
1575 if (copy_from_user(&sub_addr
, argp
,
1577 goto out_cud_release
;
1579 if (sub_addr
.cudmatchlength
> X25_MAX_CUD_LEN
)
1580 goto out_cud_release
;
1581 x25
->cudmatchlength
= sub_addr
.cudmatchlength
;
1588 case SIOCX25CALLACCPTAPPRV
: {
1591 if (sk
->sk_state
== TCP_CLOSE
) {
1592 clear_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
);
1599 case SIOCX25SENDCALLACCPT
: {
1602 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1603 goto out_sendcallaccpt_release
;
1604 /* must call accptapprv above */
1605 if (test_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
))
1606 goto out_sendcallaccpt_release
;
1607 x25_write_internal(sk
, X25_CALL_ACCEPTED
);
1608 x25
->state
= X25_STATE_3
;
1610 out_sendcallaccpt_release
:
1623 static const struct net_proto_family x25_family_ops
= {
1625 .create
= x25_create
,
1626 .owner
= THIS_MODULE
,
1629 #ifdef CONFIG_COMPAT
1630 static int compat_x25_subscr_ioctl(unsigned int cmd
,
1631 struct compat_x25_subscrip_struct __user
*x25_subscr32
)
1633 struct compat_x25_subscrip_struct x25_subscr
;
1634 struct x25_neigh
*nb
;
1635 struct net_device
*dev
;
1639 if (copy_from_user(&x25_subscr
, x25_subscr32
, sizeof(*x25_subscr32
)))
1643 dev
= x25_dev_get(x25_subscr
.device
);
1647 nb
= x25_get_neigh(dev
);
1653 if (cmd
== SIOCX25GSUBSCRIP
) {
1654 read_lock_bh(&x25_neigh_list_lock
);
1655 x25_subscr
.extended
= nb
->extended
;
1656 x25_subscr
.global_facil_mask
= nb
->global_facil_mask
;
1657 read_unlock_bh(&x25_neigh_list_lock
);
1658 rc
= copy_to_user(x25_subscr32
, &x25_subscr
,
1659 sizeof(*x25_subscr32
)) ? -EFAULT
: 0;
1662 if (x25_subscr
.extended
== 0 || x25_subscr
.extended
== 1) {
1664 write_lock_bh(&x25_neigh_list_lock
);
1665 nb
->extended
= x25_subscr
.extended
;
1666 nb
->global_facil_mask
= x25_subscr
.global_facil_mask
;
1667 write_unlock_bh(&x25_neigh_list_lock
);
1678 static int compat_x25_ioctl(struct socket
*sock
, unsigned int cmd
,
1681 void __user
*argp
= compat_ptr(arg
);
1682 int rc
= -ENOIOCTLCMD
;
1687 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1691 case SIOCGIFDSTADDR
:
1692 case SIOCSIFDSTADDR
:
1693 case SIOCGIFBRDADDR
:
1694 case SIOCSIFBRDADDR
:
1695 case SIOCGIFNETMASK
:
1696 case SIOCSIFNETMASK
:
1704 if (!capable(CAP_NET_ADMIN
))
1706 rc
= x25_route_ioctl(cmd
, argp
);
1708 case SIOCX25GSUBSCRIP
:
1709 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1711 case SIOCX25SSUBSCRIP
:
1713 if (!capable(CAP_NET_ADMIN
))
1715 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1717 case SIOCX25GFACILITIES
:
1718 case SIOCX25SFACILITIES
:
1719 case SIOCX25GDTEFACILITIES
:
1720 case SIOCX25SDTEFACILITIES
:
1721 case SIOCX25GCALLUSERDATA
:
1722 case SIOCX25SCALLUSERDATA
:
1723 case SIOCX25GCAUSEDIAG
:
1724 case SIOCX25SCAUSEDIAG
:
1725 case SIOCX25SCUDMATCHLEN
:
1726 case SIOCX25CALLACCPTAPPRV
:
1727 case SIOCX25SENDCALLACCPT
:
1728 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1738 static const struct proto_ops x25_proto_ops
= {
1740 .owner
= THIS_MODULE
,
1741 .release
= x25_release
,
1743 .connect
= x25_connect
,
1744 .socketpair
= sock_no_socketpair
,
1745 .accept
= x25_accept
,
1746 .getname
= x25_getname
,
1747 .poll
= datagram_poll
,
1749 #ifdef CONFIG_COMPAT
1750 .compat_ioctl
= compat_x25_ioctl
,
1752 .gettstamp
= sock_gettstamp
,
1753 .listen
= x25_listen
,
1754 .shutdown
= sock_no_shutdown
,
1755 .setsockopt
= x25_setsockopt
,
1756 .getsockopt
= x25_getsockopt
,
1757 .sendmsg
= x25_sendmsg
,
1758 .recvmsg
= x25_recvmsg
,
1759 .mmap
= sock_no_mmap
,
1762 static struct packet_type x25_packet_type __read_mostly
= {
1763 .type
= cpu_to_be16(ETH_P_X25
),
1764 .func
= x25_lapb_receive_frame
,
1767 static struct notifier_block x25_dev_notifier
= {
1768 .notifier_call
= x25_device_event
,
1771 void x25_kill_by_neigh(struct x25_neigh
*nb
)
1775 write_lock_bh(&x25_list_lock
);
1777 sk_for_each(s
, &x25_list
) {
1778 if (x25_sk(s
)->neighbour
== nb
) {
1779 write_unlock_bh(&x25_list_lock
);
1781 x25_disconnect(s
, ENETUNREACH
, 0, 0);
1783 write_lock_bh(&x25_list_lock
);
1786 write_unlock_bh(&x25_list_lock
);
1788 /* Remove any related forwards */
1789 x25_clear_forward_by_dev(nb
->dev
);
1792 static int __init
x25_init(void)
1796 rc
= proto_register(&x25_proto
, 0);
1800 rc
= sock_register(&x25_family_ops
);
1804 dev_add_pack(&x25_packet_type
);
1806 rc
= register_netdevice_notifier(&x25_dev_notifier
);
1810 rc
= x25_register_sysctl();
1814 rc
= x25_proc_init();
1818 pr_info("Linux Version 0.2\n");
1823 x25_unregister_sysctl();
1825 unregister_netdevice_notifier(&x25_dev_notifier
);
1827 dev_remove_pack(&x25_packet_type
);
1828 sock_unregister(AF_X25
);
1830 proto_unregister(&x25_proto
);
1833 module_init(x25_init
);
1835 static void __exit
x25_exit(void)
1841 x25_unregister_sysctl();
1843 unregister_netdevice_notifier(&x25_dev_notifier
);
1845 dev_remove_pack(&x25_packet_type
);
1847 sock_unregister(AF_X25
);
1848 proto_unregister(&x25_proto
);
1850 module_exit(x25_exit
);
1852 MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
1853 MODULE_DESCRIPTION("The X.25 Packet Layer network layer protocol");
1854 MODULE_LICENSE("GPL");
1855 MODULE_ALIAS_NETPROTO(PF_X25
);