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 * Kill all bound sockets on a dropped device.
205 static void x25_kill_by_device(struct net_device
*dev
)
209 write_lock_bh(&x25_list_lock
);
211 sk_for_each(s
, &x25_list
)
212 if (x25_sk(s
)->neighbour
&& x25_sk(s
)->neighbour
->dev
== dev
)
213 x25_disconnect(s
, ENETUNREACH
, 0, 0);
215 write_unlock_bh(&x25_list_lock
);
219 * Handle device status changes.
221 static int x25_device_event(struct notifier_block
*this, unsigned long event
,
224 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
225 struct x25_neigh
*nb
;
227 if (!net_eq(dev_net(dev
), &init_net
))
230 if (dev
->type
== ARPHRD_X25
231 #if IS_ENABLED(CONFIG_LLC)
232 || dev
->type
== ARPHRD_ETHER
237 x25_link_device_up(dev
);
239 case NETDEV_GOING_DOWN
:
240 nb
= x25_get_neigh(dev
);
242 x25_terminate_link(nb
);
247 x25_kill_by_device(dev
);
248 x25_route_device_down(dev
);
249 x25_link_device_down(dev
);
258 * Add a socket to the bound sockets list.
260 static void x25_insert_socket(struct sock
*sk
)
262 write_lock_bh(&x25_list_lock
);
263 sk_add_node(sk
, &x25_list
);
264 write_unlock_bh(&x25_list_lock
);
268 * Find a socket that wants to accept the Call Request we just
269 * received. Check the full list for an address/cud match.
270 * If no cuds match return the next_best thing, an address match.
271 * Note: if a listening socket has cud set it must only get calls
274 static struct sock
*x25_find_listener(struct x25_address
*addr
,
278 struct sock
*next_best
;
280 read_lock_bh(&x25_list_lock
);
283 sk_for_each(s
, &x25_list
)
284 if ((!strcmp(addr
->x25_addr
,
285 x25_sk(s
)->source_addr
.x25_addr
) ||
286 !strcmp(x25_sk(s
)->source_addr
.x25_addr
,
287 null_x25_address
.x25_addr
)) &&
288 s
->sk_state
== TCP_LISTEN
) {
290 * Found a listening socket, now check the incoming
291 * call user data vs this sockets call user data
293 if (x25_sk(s
)->cudmatchlength
> 0 &&
294 skb
->len
>= x25_sk(s
)->cudmatchlength
) {
295 if((memcmp(x25_sk(s
)->calluserdata
.cuddata
,
297 x25_sk(s
)->cudmatchlength
)) == 0) {
311 read_unlock_bh(&x25_list_lock
);
316 * Find a connected X.25 socket given my LCI and neighbour.
318 static struct sock
*__x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
322 sk_for_each(s
, &x25_list
)
323 if (x25_sk(s
)->lci
== lci
&& x25_sk(s
)->neighbour
== nb
) {
332 struct sock
*x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
336 read_lock_bh(&x25_list_lock
);
337 s
= __x25_find_socket(lci
, nb
);
338 read_unlock_bh(&x25_list_lock
);
343 * Find a unique LCI for a given device.
345 static unsigned int x25_new_lci(struct x25_neigh
*nb
)
347 unsigned int lci
= 1;
350 while ((sk
= x25_find_socket(lci
, nb
)) != NULL
) {
365 static void __x25_destroy_socket(struct sock
*);
368 * handler for deferred kills.
370 static void x25_destroy_timer(struct timer_list
*t
)
372 struct sock
*sk
= from_timer(sk
, t
, sk_timer
);
374 x25_destroy_socket_from_timer(sk
);
378 * This is called from user mode and the timers. Thus it protects itself
379 * against interrupt users but doesn't worry about being called during
380 * work. Once it is removed from the queue no interrupt or bottom half
381 * will touch it and we are (fairly 8-) ) safe.
382 * Not static as it's used by the timer
384 static void __x25_destroy_socket(struct sock
*sk
)
388 x25_stop_heartbeat(sk
);
391 x25_remove_socket(sk
);
392 x25_clear_queues(sk
); /* Flush the queues */
394 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
395 if (skb
->sk
!= sk
) { /* A pending connection */
397 * Queue the unaccepted socket for death
399 skb
->sk
->sk_state
= TCP_LISTEN
;
400 sock_set_flag(skb
->sk
, SOCK_DEAD
);
401 x25_start_heartbeat(skb
->sk
);
402 x25_sk(skb
->sk
)->state
= X25_STATE_0
;
408 if (sk_has_allocations(sk
)) {
409 /* Defer: outstanding buffers */
410 sk
->sk_timer
.expires
= jiffies
+ 10 * HZ
;
411 sk
->sk_timer
.function
= x25_destroy_timer
;
412 add_timer(&sk
->sk_timer
);
414 /* drop last reference so sock_put will free */
419 void x25_destroy_socket_from_timer(struct sock
*sk
)
423 __x25_destroy_socket(sk
);
429 * Handling for system calls applied via the various interfaces to a
430 * X.25 socket object.
433 static int x25_setsockopt(struct socket
*sock
, int level
, int optname
,
434 char __user
*optval
, unsigned int optlen
)
437 struct sock
*sk
= sock
->sk
;
438 int rc
= -ENOPROTOOPT
;
440 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
444 if (optlen
< sizeof(int))
448 if (get_user(opt
, (int __user
*)optval
))
452 set_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
454 clear_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
460 static int x25_getsockopt(struct socket
*sock
, int level
, int optname
,
461 char __user
*optval
, int __user
*optlen
)
463 struct sock
*sk
= sock
->sk
;
464 int val
, len
, rc
= -ENOPROTOOPT
;
466 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
470 if (get_user(len
, optlen
))
473 len
= min_t(unsigned int, len
, sizeof(int));
480 if (put_user(len
, optlen
))
483 val
= test_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
484 rc
= copy_to_user(optval
, &val
, len
) ? -EFAULT
: 0;
489 static int x25_listen(struct socket
*sock
, int backlog
)
491 struct sock
*sk
= sock
->sk
;
492 int rc
= -EOPNOTSUPP
;
495 if (sk
->sk_state
!= TCP_LISTEN
) {
496 memset(&x25_sk(sk
)->dest_addr
, 0, X25_ADDR_LEN
);
497 sk
->sk_max_ack_backlog
= backlog
;
498 sk
->sk_state
= TCP_LISTEN
;
506 static struct proto x25_proto
= {
508 .owner
= THIS_MODULE
,
509 .obj_size
= sizeof(struct x25_sock
),
512 static struct sock
*x25_alloc_socket(struct net
*net
, int kern
)
514 struct x25_sock
*x25
;
515 struct sock
*sk
= sk_alloc(net
, AF_X25
, GFP_ATOMIC
, &x25_proto
, kern
);
520 sock_init_data(NULL
, sk
);
523 skb_queue_head_init(&x25
->ack_queue
);
524 skb_queue_head_init(&x25
->fragment_queue
);
525 skb_queue_head_init(&x25
->interrupt_in_queue
);
526 skb_queue_head_init(&x25
->interrupt_out_queue
);
531 static int x25_create(struct net
*net
, struct socket
*sock
, int protocol
,
535 struct x25_sock
*x25
;
536 int rc
= -EAFNOSUPPORT
;
538 if (!net_eq(net
, &init_net
))
541 rc
= -ESOCKTNOSUPPORT
;
542 if (sock
->type
!= SOCK_SEQPACKET
)
550 if ((sk
= x25_alloc_socket(net
, kern
)) == NULL
)
555 sock_init_data(sock
, sk
);
559 sock
->ops
= &x25_proto_ops
;
560 sk
->sk_protocol
= protocol
;
561 sk
->sk_backlog_rcv
= x25_backlog_rcv
;
563 x25
->t21
= sysctl_x25_call_request_timeout
;
564 x25
->t22
= sysctl_x25_reset_request_timeout
;
565 x25
->t23
= sysctl_x25_clear_request_timeout
;
566 x25
->t2
= sysctl_x25_ack_holdback_timeout
;
567 x25
->state
= X25_STATE_0
;
568 x25
->cudmatchlength
= 0;
569 set_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
); /* normally no cud */
572 x25
->facilities
.winsize_in
= X25_DEFAULT_WINDOW_SIZE
;
573 x25
->facilities
.winsize_out
= X25_DEFAULT_WINDOW_SIZE
;
574 x25
->facilities
.pacsize_in
= X25_DEFAULT_PACKET_SIZE
;
575 x25
->facilities
.pacsize_out
= X25_DEFAULT_PACKET_SIZE
;
576 x25
->facilities
.throughput
= 0; /* by default don't negotiate
578 x25
->facilities
.reverse
= X25_DEFAULT_REVERSE
;
579 x25
->dte_facilities
.calling_len
= 0;
580 x25
->dte_facilities
.called_len
= 0;
581 memset(x25
->dte_facilities
.called_ae
, '\0',
582 sizeof(x25
->dte_facilities
.called_ae
));
583 memset(x25
->dte_facilities
.calling_ae
, '\0',
584 sizeof(x25
->dte_facilities
.calling_ae
));
591 static struct sock
*x25_make_new(struct sock
*osk
)
593 struct sock
*sk
= NULL
;
594 struct x25_sock
*x25
, *ox25
;
596 if (osk
->sk_type
!= SOCK_SEQPACKET
)
599 if ((sk
= x25_alloc_socket(sock_net(osk
), 0)) == NULL
)
604 sk
->sk_type
= osk
->sk_type
;
605 sk
->sk_priority
= osk
->sk_priority
;
606 sk
->sk_protocol
= osk
->sk_protocol
;
607 sk
->sk_rcvbuf
= osk
->sk_rcvbuf
;
608 sk
->sk_sndbuf
= osk
->sk_sndbuf
;
609 sk
->sk_state
= TCP_ESTABLISHED
;
610 sk
->sk_backlog_rcv
= osk
->sk_backlog_rcv
;
611 sock_copy_flags(sk
, osk
);
614 x25
->t21
= ox25
->t21
;
615 x25
->t22
= ox25
->t22
;
616 x25
->t23
= ox25
->t23
;
618 x25
->flags
= ox25
->flags
;
619 x25
->facilities
= ox25
->facilities
;
620 x25
->dte_facilities
= ox25
->dte_facilities
;
621 x25
->cudmatchlength
= ox25
->cudmatchlength
;
623 clear_bit(X25_INTERRUPT_FLAG
, &x25
->flags
);
629 static int x25_release(struct socket
*sock
)
631 struct sock
*sk
= sock
->sk
;
632 struct x25_sock
*x25
;
641 switch (x25
->state
) {
645 x25_disconnect(sk
, 0, 0, 0);
646 __x25_destroy_socket(sk
);
652 x25_clear_queues(sk
);
653 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
654 x25_start_t23timer(sk
);
655 x25
->state
= X25_STATE_2
;
656 sk
->sk_state
= TCP_CLOSE
;
657 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
658 sk
->sk_state_change(sk
);
659 sock_set_flag(sk
, SOCK_DEAD
);
660 sock_set_flag(sk
, SOCK_DESTROY
);
671 static int x25_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
673 struct sock
*sk
= sock
->sk
;
674 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
677 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
678 addr
->sx25_family
!= AF_X25
) {
683 /* check for the null_x25_address */
684 if (strcmp(addr
->sx25_addr
.x25_addr
, null_x25_address
.x25_addr
)) {
686 len
= strlen(addr
->sx25_addr
.x25_addr
);
687 for (i
= 0; i
< len
; i
++) {
688 if (!isdigit(addr
->sx25_addr
.x25_addr
[i
])) {
696 if (sock_flag(sk
, SOCK_ZAPPED
)) {
697 x25_sk(sk
)->source_addr
= addr
->sx25_addr
;
698 x25_insert_socket(sk
);
699 sock_reset_flag(sk
, SOCK_ZAPPED
);
704 SOCK_DEBUG(sk
, "x25_bind: socket is bound\n");
709 static int x25_wait_for_connection_establishment(struct sock
*sk
)
711 DECLARE_WAITQUEUE(wait
, current
);
714 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
716 __set_current_state(TASK_INTERRUPTIBLE
);
718 if (signal_pending(current
))
722 sk
->sk_socket
->state
= SS_UNCONNECTED
;
726 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
733 __set_current_state(TASK_RUNNING
);
734 remove_wait_queue(sk_sleep(sk
), &wait
);
738 static int x25_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
739 int addr_len
, int flags
)
741 struct sock
*sk
= sock
->sk
;
742 struct x25_sock
*x25
= x25_sk(sk
);
743 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
744 struct x25_route
*rt
;
748 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
749 sock
->state
= SS_CONNECTED
;
750 goto out
; /* Connect completed during a ERESTARTSYS event */
754 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
755 sock
->state
= SS_UNCONNECTED
;
759 rc
= -EISCONN
; /* No reconnect on a seqpacket socket */
760 if (sk
->sk_state
== TCP_ESTABLISHED
)
763 sk
->sk_state
= TCP_CLOSE
;
764 sock
->state
= SS_UNCONNECTED
;
767 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
768 addr
->sx25_family
!= AF_X25
)
772 rt
= x25_get_route(&addr
->sx25_addr
);
776 x25
->neighbour
= x25_get_neigh(rt
->dev
);
780 x25_limit_facilities(&x25
->facilities
, x25
->neighbour
);
782 x25
->lci
= x25_new_lci(x25
->neighbour
);
787 if (sock_flag(sk
, SOCK_ZAPPED
)) /* Must bind first - autobinding does not work */
790 if (!strcmp(x25
->source_addr
.x25_addr
, null_x25_address
.x25_addr
))
791 memset(&x25
->source_addr
, '\0', X25_ADDR_LEN
);
793 x25
->dest_addr
= addr
->sx25_addr
;
795 /* Move to connecting socket, start sending Connect Requests */
796 sock
->state
= SS_CONNECTING
;
797 sk
->sk_state
= TCP_SYN_SENT
;
799 x25
->state
= X25_STATE_1
;
801 x25_write_internal(sk
, X25_CALL_REQUEST
);
803 x25_start_heartbeat(sk
);
804 x25_start_t21timer(sk
);
808 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
811 rc
= x25_wait_for_connection_establishment(sk
);
815 sock
->state
= SS_CONNECTED
;
819 read_lock_bh(&x25_list_lock
);
820 x25_neigh_put(x25
->neighbour
);
821 x25
->neighbour
= NULL
;
822 read_unlock_bh(&x25_list_lock
);
823 x25
->state
= X25_STATE_0
;
832 static int x25_wait_for_data(struct sock
*sk
, long timeout
)
834 DECLARE_WAITQUEUE(wait
, current
);
837 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
839 __set_current_state(TASK_INTERRUPTIBLE
);
840 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
843 if (signal_pending(current
))
849 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
851 timeout
= schedule_timeout(timeout
);
856 __set_current_state(TASK_RUNNING
);
857 remove_wait_queue(sk_sleep(sk
), &wait
);
861 static int x25_accept(struct socket
*sock
, struct socket
*newsock
, int flags
,
864 struct sock
*sk
= sock
->sk
;
873 if (sk
->sk_type
!= SOCK_SEQPACKET
)
878 if (sk
->sk_state
!= TCP_LISTEN
)
881 rc
= x25_wait_for_data(sk
, sk
->sk_rcvtimeo
);
884 skb
= skb_dequeue(&sk
->sk_receive_queue
);
889 sock_graft(newsk
, newsock
);
891 /* Now attach up the new socket */
894 sk
->sk_ack_backlog
--;
895 newsock
->state
= SS_CONNECTED
;
903 static int x25_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
906 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)uaddr
;
907 struct sock
*sk
= sock
->sk
;
908 struct x25_sock
*x25
= x25_sk(sk
);
912 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
916 sx25
->sx25_addr
= x25
->dest_addr
;
918 sx25
->sx25_addr
= x25
->source_addr
;
920 sx25
->sx25_family
= AF_X25
;
927 int x25_rx_call_request(struct sk_buff
*skb
, struct x25_neigh
*nb
,
932 struct x25_sock
*makex25
;
933 struct x25_address source_addr
, dest_addr
;
934 struct x25_facilities facilities
;
935 struct x25_dte_facilities dte_facilities
;
936 int len
, addr_len
, rc
;
939 * Remove the LCI and frame type.
941 skb_pull(skb
, X25_STD_MIN_LEN
);
944 * Extract the X.25 addresses and convert them to ASCII strings,
947 * Address block is mandatory in call request packets
949 addr_len
= x25_parse_address_block(skb
, &source_addr
, &dest_addr
);
951 goto out_clear_request
;
952 skb_pull(skb
, addr_len
);
955 * Get the length of the facilities, skip past them for the moment
956 * get the call user data because this is needed to determine
957 * the correct listener
959 * Facilities length is mandatory in call request packets
961 if (!pskb_may_pull(skb
, 1))
962 goto out_clear_request
;
963 len
= skb
->data
[0] + 1;
964 if (!pskb_may_pull(skb
, len
))
965 goto out_clear_request
;
969 * Ensure that the amount of call user data is valid.
971 if (skb
->len
> X25_MAX_CUD_LEN
)
972 goto out_clear_request
;
975 * Get all the call user data so it can be used in
976 * x25_find_listener and skb_copy_from_linear_data up ahead.
978 if (!pskb_may_pull(skb
, skb
->len
))
979 goto out_clear_request
;
982 * Find a listener for the particular address/cud pair.
984 sk
= x25_find_listener(&source_addr
,skb
);
987 if (sk
!= NULL
&& sk_acceptq_is_full(sk
)) {
992 * We dont have any listeners for this incoming call.
996 skb_push(skb
, addr_len
+ X25_STD_MIN_LEN
);
997 if (sysctl_x25_forward
&&
998 x25_forward_call(&dest_addr
, nb
, skb
, lci
) > 0)
1000 /* Call was forwarded, dont process it any more */
1005 /* No listeners, can't forward, clear the call */
1006 goto out_clear_request
;
1011 * Try to reach a compromise on the requested facilities.
1013 len
= x25_negotiate_facilities(skb
, sk
, &facilities
, &dte_facilities
);
1018 * current neighbour/link might impose additional limits
1019 * on certain facilties
1022 x25_limit_facilities(&facilities
, nb
);
1025 * Try to create a new socket.
1027 make
= x25_make_new(sk
);
1032 * Remove the facilities
1037 make
->sk_state
= TCP_ESTABLISHED
;
1039 makex25
= x25_sk(make
);
1041 makex25
->dest_addr
= dest_addr
;
1042 makex25
->source_addr
= source_addr
;
1043 makex25
->neighbour
= nb
;
1044 makex25
->facilities
= facilities
;
1045 makex25
->dte_facilities
= dte_facilities
;
1046 makex25
->vc_facil_mask
= x25_sk(sk
)->vc_facil_mask
;
1047 /* ensure no reverse facil on accept */
1048 makex25
->vc_facil_mask
&= ~X25_MASK_REVERSE
;
1049 /* ensure no calling address extension on accept */
1050 makex25
->vc_facil_mask
&= ~X25_MASK_CALLING_AE
;
1051 makex25
->cudmatchlength
= x25_sk(sk
)->cudmatchlength
;
1053 /* Normally all calls are accepted immediately */
1054 if (test_bit(X25_ACCPT_APPRV_FLAG
, &makex25
->flags
)) {
1055 x25_write_internal(make
, X25_CALL_ACCEPTED
);
1056 makex25
->state
= X25_STATE_3
;
1060 * Incoming Call User Data.
1062 skb_copy_from_linear_data(skb
, makex25
->calluserdata
.cuddata
, skb
->len
);
1063 makex25
->calluserdata
.cudlength
= skb
->len
;
1065 sk
->sk_ack_backlog
++;
1067 x25_insert_socket(make
);
1069 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1071 x25_start_heartbeat(make
);
1073 if (!sock_flag(sk
, SOCK_DEAD
))
1074 sk
->sk_data_ready(sk
);
1083 x25_transmit_clear_request(nb
, lci
, 0x01);
1087 static int x25_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
)
1089 struct sock
*sk
= sock
->sk
;
1090 struct x25_sock
*x25
= x25_sk(sk
);
1091 DECLARE_SOCKADDR(struct sockaddr_x25
*, usx25
, msg
->msg_name
);
1092 struct sockaddr_x25 sx25
;
1093 struct sk_buff
*skb
;
1094 unsigned char *asmptr
;
1095 int noblock
= msg
->msg_flags
& MSG_DONTWAIT
;
1097 int qbit
= 0, rc
= -EINVAL
;
1100 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_OOB
|MSG_EOR
|MSG_CMSG_COMPAT
))
1103 /* we currently don't support segmented records at the user interface */
1104 if (!(msg
->msg_flags
& (MSG_EOR
|MSG_OOB
)))
1107 rc
= -EADDRNOTAVAIL
;
1108 if (sock_flag(sk
, SOCK_ZAPPED
))
1112 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1113 send_sig(SIGPIPE
, current
, 0);
1118 if (!x25
->neighbour
)
1123 if (msg
->msg_namelen
< sizeof(sx25
))
1125 memcpy(&sx25
, usx25
, sizeof(sx25
));
1127 if (strcmp(x25
->dest_addr
.x25_addr
, sx25
.sx25_addr
.x25_addr
))
1130 if (sx25
.sx25_family
!= AF_X25
)
1134 * FIXME 1003.1g - if the socket is like this because
1135 * it has become closed (not started closed) we ought
1136 * to SIGPIPE, EPIPE;
1139 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1142 sx25
.sx25_family
= AF_X25
;
1143 sx25
.sx25_addr
= x25
->dest_addr
;
1146 /* Sanity check the packet size */
1152 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: Addresses built.\n");
1154 /* Build a packet */
1155 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: building packet.\n");
1157 if ((msg
->msg_flags
& MSG_OOB
) && len
> 32)
1160 size
= len
+ X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
;
1163 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
1167 X25_SKB_CB(skb
)->flags
= msg
->msg_flags
;
1169 skb_reserve(skb
, X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
);
1172 * Put the data on the end
1174 SOCK_DEBUG(sk
, "x25_sendmsg: Copying user data\n");
1176 skb_reset_transport_header(skb
);
1179 rc
= memcpy_from_msg(skb_transport_header(skb
), msg
, len
);
1184 * If the Q BIT Include socket option is in force, the first
1185 * byte of the user data is the logical value of the Q Bit.
1187 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1188 if (!pskb_may_pull(skb
, 1))
1191 qbit
= skb
->data
[0];
1196 * Push down the X.25 header
1198 SOCK_DEBUG(sk
, "x25_sendmsg: Building X.25 Header.\n");
1200 if (msg
->msg_flags
& MSG_OOB
) {
1201 if (x25
->neighbour
->extended
) {
1202 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1203 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1204 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1205 *asmptr
++ = X25_INTERRUPT
;
1207 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1208 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1209 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1210 *asmptr
++ = X25_INTERRUPT
;
1213 if (x25
->neighbour
->extended
) {
1214 /* Build an Extended X.25 header */
1215 asmptr
= skb_push(skb
, X25_EXT_MIN_LEN
);
1216 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1217 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1218 *asmptr
++ = X25_DATA
;
1219 *asmptr
++ = X25_DATA
;
1221 /* Build an Standard X.25 header */
1222 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1223 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1224 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1225 *asmptr
++ = X25_DATA
;
1229 skb
->data
[0] |= X25_Q_BIT
;
1232 SOCK_DEBUG(sk
, "x25_sendmsg: Built header.\n");
1233 SOCK_DEBUG(sk
, "x25_sendmsg: Transmitting buffer\n");
1236 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1239 if (msg
->msg_flags
& MSG_OOB
)
1240 skb_queue_tail(&x25
->interrupt_out_queue
, skb
);
1242 rc
= x25_output(sk
, skb
);
1246 else if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
))
1261 static int x25_recvmsg(struct socket
*sock
, struct msghdr
*msg
, size_t size
,
1264 struct sock
*sk
= sock
->sk
;
1265 struct x25_sock
*x25
= x25_sk(sk
);
1266 DECLARE_SOCKADDR(struct sockaddr_x25
*, sx25
, msg
->msg_name
);
1268 int qbit
, header_len
;
1269 struct sk_buff
*skb
;
1270 unsigned char *asmptr
;
1275 if (x25
->neighbour
== NULL
)
1278 header_len
= x25
->neighbour
->extended
?
1279 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
;
1282 * This works for seqpacket too. The receiver has ordered the queue for
1283 * us! We do one quick check first though
1285 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1288 if (flags
& MSG_OOB
) {
1290 if (sock_flag(sk
, SOCK_URGINLINE
) ||
1291 !skb_peek(&x25
->interrupt_in_queue
))
1294 skb
= skb_dequeue(&x25
->interrupt_in_queue
);
1296 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
))
1297 goto out_free_dgram
;
1299 skb_pull(skb
, X25_STD_MIN_LEN
);
1302 * No Q bit information on Interrupt data.
1304 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1305 asmptr
= skb_push(skb
, 1);
1309 msg
->msg_flags
|= MSG_OOB
;
1311 /* Now we can treat all alike */
1313 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1314 flags
& MSG_DONTWAIT
, &rc
);
1319 if (!pskb_may_pull(skb
, header_len
))
1320 goto out_free_dgram
;
1322 qbit
= (skb
->data
[0] & X25_Q_BIT
) == X25_Q_BIT
;
1324 skb_pull(skb
, header_len
);
1326 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1327 asmptr
= skb_push(skb
, 1);
1332 skb_reset_transport_header(skb
);
1335 if (copied
> size
) {
1337 msg
->msg_flags
|= MSG_TRUNC
;
1340 /* Currently, each datagram always contains a complete record */
1341 msg
->msg_flags
|= MSG_EOR
;
1343 rc
= skb_copy_datagram_msg(skb
, 0, msg
, copied
);
1345 goto out_free_dgram
;
1348 sx25
->sx25_family
= AF_X25
;
1349 sx25
->sx25_addr
= x25
->dest_addr
;
1350 msg
->msg_namelen
= sizeof(*sx25
);
1356 skb_free_datagram(sk
, skb
);
1363 static int x25_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1365 struct sock
*sk
= sock
->sk
;
1366 struct x25_sock
*x25
= x25_sk(sk
);
1367 void __user
*argp
= (void __user
*)arg
;
1374 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1377 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1382 struct sk_buff
*skb
;
1385 * These two are safe on a single CPU system as
1386 * only user tasks fiddle here
1389 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1392 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1398 case SIOCGIFDSTADDR
:
1399 case SIOCSIFDSTADDR
:
1400 case SIOCGIFBRDADDR
:
1401 case SIOCSIFBRDADDR
:
1402 case SIOCGIFNETMASK
:
1403 case SIOCSIFNETMASK
:
1411 if (!capable(CAP_NET_ADMIN
))
1413 rc
= x25_route_ioctl(cmd
, argp
);
1415 case SIOCX25GSUBSCRIP
:
1416 rc
= x25_subscr_ioctl(cmd
, argp
);
1418 case SIOCX25SSUBSCRIP
:
1420 if (!capable(CAP_NET_ADMIN
))
1422 rc
= x25_subscr_ioctl(cmd
, argp
);
1424 case SIOCX25GFACILITIES
: {
1426 rc
= copy_to_user(argp
, &x25
->facilities
,
1427 sizeof(x25
->facilities
))
1433 case SIOCX25SFACILITIES
: {
1434 struct x25_facilities facilities
;
1436 if (copy_from_user(&facilities
, argp
, sizeof(facilities
)))
1440 if (sk
->sk_state
!= TCP_LISTEN
&&
1441 sk
->sk_state
!= TCP_CLOSE
)
1442 goto out_fac_release
;
1443 if (facilities
.pacsize_in
< X25_PS16
||
1444 facilities
.pacsize_in
> X25_PS4096
)
1445 goto out_fac_release
;
1446 if (facilities
.pacsize_out
< X25_PS16
||
1447 facilities
.pacsize_out
> X25_PS4096
)
1448 goto out_fac_release
;
1449 if (facilities
.winsize_in
< 1 ||
1450 facilities
.winsize_in
> 127)
1451 goto out_fac_release
;
1452 if (facilities
.throughput
) {
1453 int out
= facilities
.throughput
& 0xf0;
1454 int in
= facilities
.throughput
& 0x0f;
1456 facilities
.throughput
|=
1457 X25_DEFAULT_THROUGHPUT
<< 4;
1458 else if (out
< 0x30 || out
> 0xD0)
1459 goto out_fac_release
;
1461 facilities
.throughput
|=
1462 X25_DEFAULT_THROUGHPUT
;
1463 else if (in
< 0x03 || in
> 0x0D)
1464 goto out_fac_release
;
1466 if (facilities
.reverse
&&
1467 (facilities
.reverse
& 0x81) != 0x81)
1468 goto out_fac_release
;
1469 x25
->facilities
= facilities
;
1476 case SIOCX25GDTEFACILITIES
: {
1478 rc
= copy_to_user(argp
, &x25
->dte_facilities
,
1479 sizeof(x25
->dte_facilities
));
1486 case SIOCX25SDTEFACILITIES
: {
1487 struct x25_dte_facilities dtefacs
;
1489 if (copy_from_user(&dtefacs
, argp
, sizeof(dtefacs
)))
1493 if (sk
->sk_state
!= TCP_LISTEN
&&
1494 sk
->sk_state
!= TCP_CLOSE
)
1495 goto out_dtefac_release
;
1496 if (dtefacs
.calling_len
> X25_MAX_AE_LEN
)
1497 goto out_dtefac_release
;
1498 if (dtefacs
.called_len
> X25_MAX_AE_LEN
)
1499 goto out_dtefac_release
;
1500 x25
->dte_facilities
= dtefacs
;
1507 case SIOCX25GCALLUSERDATA
: {
1509 rc
= copy_to_user(argp
, &x25
->calluserdata
,
1510 sizeof(x25
->calluserdata
))
1516 case SIOCX25SCALLUSERDATA
: {
1517 struct x25_calluserdata calluserdata
;
1520 if (copy_from_user(&calluserdata
, argp
, sizeof(calluserdata
)))
1523 if (calluserdata
.cudlength
> X25_MAX_CUD_LEN
)
1526 x25
->calluserdata
= calluserdata
;
1532 case SIOCX25GCAUSEDIAG
: {
1534 rc
= copy_to_user(argp
, &x25
->causediag
, sizeof(x25
->causediag
))
1540 case SIOCX25SCAUSEDIAG
: {
1541 struct x25_causediag causediag
;
1543 if (copy_from_user(&causediag
, argp
, sizeof(causediag
)))
1546 x25
->causediag
= causediag
;
1553 case SIOCX25SCUDMATCHLEN
: {
1554 struct x25_subaddr sub_addr
;
1557 if(sk
->sk_state
!= TCP_CLOSE
)
1558 goto out_cud_release
;
1560 if (copy_from_user(&sub_addr
, argp
,
1562 goto out_cud_release
;
1564 if (sub_addr
.cudmatchlength
> X25_MAX_CUD_LEN
)
1565 goto out_cud_release
;
1566 x25
->cudmatchlength
= sub_addr
.cudmatchlength
;
1573 case SIOCX25CALLACCPTAPPRV
: {
1576 if (sk
->sk_state
== TCP_CLOSE
) {
1577 clear_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
);
1584 case SIOCX25SENDCALLACCPT
: {
1587 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1588 goto out_sendcallaccpt_release
;
1589 /* must call accptapprv above */
1590 if (test_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
))
1591 goto out_sendcallaccpt_release
;
1592 x25_write_internal(sk
, X25_CALL_ACCEPTED
);
1593 x25
->state
= X25_STATE_3
;
1595 out_sendcallaccpt_release
:
1608 static const struct net_proto_family x25_family_ops
= {
1610 .create
= x25_create
,
1611 .owner
= THIS_MODULE
,
1614 #ifdef CONFIG_COMPAT
1615 static int compat_x25_subscr_ioctl(unsigned int cmd
,
1616 struct compat_x25_subscrip_struct __user
*x25_subscr32
)
1618 struct compat_x25_subscrip_struct x25_subscr
;
1619 struct x25_neigh
*nb
;
1620 struct net_device
*dev
;
1624 if (copy_from_user(&x25_subscr
, x25_subscr32
, sizeof(*x25_subscr32
)))
1628 dev
= x25_dev_get(x25_subscr
.device
);
1632 nb
= x25_get_neigh(dev
);
1638 if (cmd
== SIOCX25GSUBSCRIP
) {
1639 read_lock_bh(&x25_neigh_list_lock
);
1640 x25_subscr
.extended
= nb
->extended
;
1641 x25_subscr
.global_facil_mask
= nb
->global_facil_mask
;
1642 read_unlock_bh(&x25_neigh_list_lock
);
1643 rc
= copy_to_user(x25_subscr32
, &x25_subscr
,
1644 sizeof(*x25_subscr32
)) ? -EFAULT
: 0;
1647 if (x25_subscr
.extended
== 0 || x25_subscr
.extended
== 1) {
1649 write_lock_bh(&x25_neigh_list_lock
);
1650 nb
->extended
= x25_subscr
.extended
;
1651 nb
->global_facil_mask
= x25_subscr
.global_facil_mask
;
1652 write_unlock_bh(&x25_neigh_list_lock
);
1663 static int compat_x25_ioctl(struct socket
*sock
, unsigned int cmd
,
1666 void __user
*argp
= compat_ptr(arg
);
1667 int rc
= -ENOIOCTLCMD
;
1672 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1676 case SIOCGIFDSTADDR
:
1677 case SIOCSIFDSTADDR
:
1678 case SIOCGIFBRDADDR
:
1679 case SIOCSIFBRDADDR
:
1680 case SIOCGIFNETMASK
:
1681 case SIOCSIFNETMASK
:
1689 if (!capable(CAP_NET_ADMIN
))
1691 rc
= x25_route_ioctl(cmd
, argp
);
1693 case SIOCX25GSUBSCRIP
:
1694 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1696 case SIOCX25SSUBSCRIP
:
1698 if (!capable(CAP_NET_ADMIN
))
1700 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1702 case SIOCX25GFACILITIES
:
1703 case SIOCX25SFACILITIES
:
1704 case SIOCX25GDTEFACILITIES
:
1705 case SIOCX25SDTEFACILITIES
:
1706 case SIOCX25GCALLUSERDATA
:
1707 case SIOCX25SCALLUSERDATA
:
1708 case SIOCX25GCAUSEDIAG
:
1709 case SIOCX25SCAUSEDIAG
:
1710 case SIOCX25SCUDMATCHLEN
:
1711 case SIOCX25CALLACCPTAPPRV
:
1712 case SIOCX25SENDCALLACCPT
:
1713 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1723 static const struct proto_ops x25_proto_ops
= {
1725 .owner
= THIS_MODULE
,
1726 .release
= x25_release
,
1728 .connect
= x25_connect
,
1729 .socketpair
= sock_no_socketpair
,
1730 .accept
= x25_accept
,
1731 .getname
= x25_getname
,
1732 .poll
= datagram_poll
,
1734 #ifdef CONFIG_COMPAT
1735 .compat_ioctl
= compat_x25_ioctl
,
1737 .gettstamp
= sock_gettstamp
,
1738 .listen
= x25_listen
,
1739 .shutdown
= sock_no_shutdown
,
1740 .setsockopt
= x25_setsockopt
,
1741 .getsockopt
= x25_getsockopt
,
1742 .sendmsg
= x25_sendmsg
,
1743 .recvmsg
= x25_recvmsg
,
1744 .mmap
= sock_no_mmap
,
1745 .sendpage
= sock_no_sendpage
,
1748 static struct packet_type x25_packet_type __read_mostly
= {
1749 .type
= cpu_to_be16(ETH_P_X25
),
1750 .func
= x25_lapb_receive_frame
,
1753 static struct notifier_block x25_dev_notifier
= {
1754 .notifier_call
= x25_device_event
,
1757 void x25_kill_by_neigh(struct x25_neigh
*nb
)
1761 write_lock_bh(&x25_list_lock
);
1763 sk_for_each(s
, &x25_list
)
1764 if (x25_sk(s
)->neighbour
== nb
)
1765 x25_disconnect(s
, ENETUNREACH
, 0, 0);
1767 write_unlock_bh(&x25_list_lock
);
1769 /* Remove any related forwards */
1770 x25_clear_forward_by_dev(nb
->dev
);
1773 static int __init
x25_init(void)
1777 rc
= proto_register(&x25_proto
, 0);
1781 rc
= sock_register(&x25_family_ops
);
1785 dev_add_pack(&x25_packet_type
);
1787 rc
= register_netdevice_notifier(&x25_dev_notifier
);
1791 rc
= x25_register_sysctl();
1795 rc
= x25_proc_init();
1799 pr_info("Linux Version 0.2\n");
1804 x25_unregister_sysctl();
1806 unregister_netdevice_notifier(&x25_dev_notifier
);
1808 dev_remove_pack(&x25_packet_type
);
1809 sock_unregister(AF_X25
);
1811 proto_unregister(&x25_proto
);
1814 module_init(x25_init
);
1816 static void __exit
x25_exit(void)
1822 x25_unregister_sysctl();
1824 unregister_netdevice_notifier(&x25_dev_notifier
);
1826 dev_remove_pack(&x25_packet_type
);
1828 sock_unregister(AF_X25
);
1829 proto_unregister(&x25_proto
);
1831 module_exit(x25_exit
);
1833 MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
1834 MODULE_DESCRIPTION("The X.25 Packet Layer network layer protocol");
1835 MODULE_LICENSE("GPL");
1836 MODULE_ALIAS_NETPROTO(PF_X25
);