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 #define pr_fmt(fmt) "X25: " fmt
40 #include <linux/module.h>
41 #include <linux/capability.h>
42 #include <linux/errno.h>
43 #include <linux/kernel.h>
44 #include <linux/sched/signal.h>
45 #include <linux/timer.h>
46 #include <linux/string.h>
47 #include <linux/net.h>
48 #include <linux/netdevice.h>
49 #include <linux/if_arp.h>
50 #include <linux/skbuff.h>
51 #include <linux/slab.h>
53 #include <net/tcp_states.h>
54 #include <linux/uaccess.h>
55 #include <linux/fcntl.h>
56 #include <linux/termios.h> /* For TIOCINQ/OUTQ */
57 #include <linux/notifier.h>
58 #include <linux/init.h>
59 #include <linux/compat.h>
60 #include <linux/ctype.h>
63 #include <net/compat.h>
65 int sysctl_x25_restart_request_timeout
= X25_DEFAULT_T20
;
66 int sysctl_x25_call_request_timeout
= X25_DEFAULT_T21
;
67 int sysctl_x25_reset_request_timeout
= X25_DEFAULT_T22
;
68 int sysctl_x25_clear_request_timeout
= X25_DEFAULT_T23
;
69 int sysctl_x25_ack_holdback_timeout
= X25_DEFAULT_T2
;
70 int sysctl_x25_forward
= 0;
73 DEFINE_RWLOCK(x25_list_lock
);
75 static const struct proto_ops x25_proto_ops
;
77 static const struct x25_address null_x25_address
= {" "};
80 struct compat_x25_subscrip_struct
{
81 char device
[200-sizeof(compat_ulong_t
)];
82 compat_ulong_t global_facil_mask
;
83 compat_uint_t extended
;
88 int x25_parse_address_block(struct sk_buff
*skb
,
89 struct x25_address
*called_addr
,
90 struct x25_address
*calling_addr
)
96 if (!pskb_may_pull(skb
, 1)) {
97 /* packet has no address block */
103 needed
= 1 + ((len
>> 4) + (len
& 0x0f) + 1) / 2;
105 if (!pskb_may_pull(skb
, needed
)) {
106 /* packet is too short to hold the addresses it claims
112 return x25_addr_ntoa(skb
->data
, called_addr
, calling_addr
);
115 *called_addr
->x25_addr
= 0;
116 *calling_addr
->x25_addr
= 0;
122 int x25_addr_ntoa(unsigned char *p
, struct x25_address
*called_addr
,
123 struct x25_address
*calling_addr
)
125 unsigned int called_len
, calling_len
;
126 char *called
, *calling
;
129 called_len
= (*p
>> 0) & 0x0F;
130 calling_len
= (*p
>> 4) & 0x0F;
132 called
= called_addr
->x25_addr
;
133 calling
= calling_addr
->x25_addr
;
136 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
137 if (i
< called_len
) {
139 *called
++ = ((*p
>> 0) & 0x0F) + '0';
142 *called
++ = ((*p
>> 4) & 0x0F) + '0';
146 *calling
++ = ((*p
>> 0) & 0x0F) + '0';
149 *calling
++ = ((*p
>> 4) & 0x0F) + '0';
154 *called
= *calling
= '\0';
156 return 1 + (called_len
+ calling_len
+ 1) / 2;
159 int x25_addr_aton(unsigned char *p
, struct x25_address
*called_addr
,
160 struct x25_address
*calling_addr
)
162 unsigned int called_len
, calling_len
;
163 char *called
, *calling
;
166 called
= called_addr
->x25_addr
;
167 calling
= calling_addr
->x25_addr
;
169 called_len
= strlen(called
);
170 calling_len
= strlen(calling
);
172 *p
++ = (calling_len
<< 4) | (called_len
<< 0);
174 for (i
= 0; i
< (called_len
+ calling_len
); i
++) {
175 if (i
< called_len
) {
177 *p
|= (*called
++ - '0') << 0;
181 *p
|= (*called
++ - '0') << 4;
185 *p
|= (*calling
++ - '0') << 0;
189 *p
|= (*calling
++ - '0') << 4;
194 return 1 + (called_len
+ calling_len
+ 1) / 2;
198 * Socket removal during an interrupt is now safe.
200 static void x25_remove_socket(struct sock
*sk
)
202 write_lock_bh(&x25_list_lock
);
203 sk_del_node_init(sk
);
204 write_unlock_bh(&x25_list_lock
);
208 * Kill all bound sockets on a dropped device.
210 static void x25_kill_by_device(struct net_device
*dev
)
214 write_lock_bh(&x25_list_lock
);
216 sk_for_each(s
, &x25_list
)
217 if (x25_sk(s
)->neighbour
&& x25_sk(s
)->neighbour
->dev
== dev
)
218 x25_disconnect(s
, ENETUNREACH
, 0, 0);
220 write_unlock_bh(&x25_list_lock
);
224 * Handle device status changes.
226 static int x25_device_event(struct notifier_block
*this, unsigned long event
,
229 struct net_device
*dev
= netdev_notifier_info_to_dev(ptr
);
230 struct x25_neigh
*nb
;
232 if (!net_eq(dev_net(dev
), &init_net
))
235 if (dev
->type
== ARPHRD_X25
236 #if IS_ENABLED(CONFIG_LLC)
237 || dev
->type
== ARPHRD_ETHER
242 x25_link_device_up(dev
);
244 case NETDEV_GOING_DOWN
:
245 nb
= x25_get_neigh(dev
);
247 x25_terminate_link(nb
);
252 x25_kill_by_device(dev
);
253 x25_route_device_down(dev
);
254 x25_link_device_down(dev
);
263 * Add a socket to the bound sockets list.
265 static void x25_insert_socket(struct sock
*sk
)
267 write_lock_bh(&x25_list_lock
);
268 sk_add_node(sk
, &x25_list
);
269 write_unlock_bh(&x25_list_lock
);
273 * Find a socket that wants to accept the Call Request we just
274 * received. Check the full list for an address/cud match.
275 * If no cuds match return the next_best thing, an address match.
276 * Note: if a listening socket has cud set it must only get calls
279 static struct sock
*x25_find_listener(struct x25_address
*addr
,
283 struct sock
*next_best
;
285 read_lock_bh(&x25_list_lock
);
288 sk_for_each(s
, &x25_list
)
289 if ((!strcmp(addr
->x25_addr
,
290 x25_sk(s
)->source_addr
.x25_addr
) ||
291 !strcmp(x25_sk(s
)->source_addr
.x25_addr
,
292 null_x25_address
.x25_addr
)) &&
293 s
->sk_state
== TCP_LISTEN
) {
295 * Found a listening socket, now check the incoming
296 * call user data vs this sockets call user data
298 if (x25_sk(s
)->cudmatchlength
> 0 &&
299 skb
->len
>= x25_sk(s
)->cudmatchlength
) {
300 if((memcmp(x25_sk(s
)->calluserdata
.cuddata
,
302 x25_sk(s
)->cudmatchlength
)) == 0) {
316 read_unlock_bh(&x25_list_lock
);
321 * Find a connected X.25 socket given my LCI and neighbour.
323 static struct sock
*__x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
327 sk_for_each(s
, &x25_list
)
328 if (x25_sk(s
)->lci
== lci
&& x25_sk(s
)->neighbour
== nb
) {
337 struct sock
*x25_find_socket(unsigned int lci
, struct x25_neigh
*nb
)
341 read_lock_bh(&x25_list_lock
);
342 s
= __x25_find_socket(lci
, nb
);
343 read_unlock_bh(&x25_list_lock
);
348 * Find a unique LCI for a given device.
350 static unsigned int x25_new_lci(struct x25_neigh
*nb
)
352 unsigned int lci
= 1;
355 while ((sk
= x25_find_socket(lci
, nb
)) != NULL
) {
370 static void __x25_destroy_socket(struct sock
*);
373 * handler for deferred kills.
375 static void x25_destroy_timer(struct timer_list
*t
)
377 struct sock
*sk
= from_timer(sk
, t
, sk_timer
);
379 x25_destroy_socket_from_timer(sk
);
383 * This is called from user mode and the timers. Thus it protects itself
384 * against interrupt users but doesn't worry about being called during
385 * work. Once it is removed from the queue no interrupt or bottom half
386 * will touch it and we are (fairly 8-) ) safe.
387 * Not static as it's used by the timer
389 static void __x25_destroy_socket(struct sock
*sk
)
393 x25_stop_heartbeat(sk
);
396 x25_remove_socket(sk
);
397 x25_clear_queues(sk
); /* Flush the queues */
399 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
400 if (skb
->sk
!= sk
) { /* A pending connection */
402 * Queue the unaccepted socket for death
404 skb
->sk
->sk_state
= TCP_LISTEN
;
405 sock_set_flag(skb
->sk
, SOCK_DEAD
);
406 x25_start_heartbeat(skb
->sk
);
407 x25_sk(skb
->sk
)->state
= X25_STATE_0
;
413 if (sk_has_allocations(sk
)) {
414 /* Defer: outstanding buffers */
415 sk
->sk_timer
.expires
= jiffies
+ 10 * HZ
;
416 sk
->sk_timer
.function
= x25_destroy_timer
;
417 add_timer(&sk
->sk_timer
);
419 /* drop last reference so sock_put will free */
424 void x25_destroy_socket_from_timer(struct sock
*sk
)
428 __x25_destroy_socket(sk
);
434 * Handling for system calls applied via the various interfaces to a
435 * X.25 socket object.
438 static int x25_setsockopt(struct socket
*sock
, int level
, int optname
,
439 char __user
*optval
, unsigned int optlen
)
442 struct sock
*sk
= sock
->sk
;
443 int rc
= -ENOPROTOOPT
;
445 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
449 if (optlen
< sizeof(int))
453 if (get_user(opt
, (int __user
*)optval
))
457 set_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
459 clear_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
465 static int x25_getsockopt(struct socket
*sock
, int level
, int optname
,
466 char __user
*optval
, int __user
*optlen
)
468 struct sock
*sk
= sock
->sk
;
469 int val
, len
, rc
= -ENOPROTOOPT
;
471 if (level
!= SOL_X25
|| optname
!= X25_QBITINCL
)
475 if (get_user(len
, optlen
))
478 len
= min_t(unsigned int, len
, sizeof(int));
485 if (put_user(len
, optlen
))
488 val
= test_bit(X25_Q_BIT_FLAG
, &x25_sk(sk
)->flags
);
489 rc
= copy_to_user(optval
, &val
, len
) ? -EFAULT
: 0;
494 static int x25_listen(struct socket
*sock
, int backlog
)
496 struct sock
*sk
= sock
->sk
;
497 int rc
= -EOPNOTSUPP
;
500 if (sk
->sk_state
!= TCP_LISTEN
) {
501 memset(&x25_sk(sk
)->dest_addr
, 0, X25_ADDR_LEN
);
502 sk
->sk_max_ack_backlog
= backlog
;
503 sk
->sk_state
= TCP_LISTEN
;
511 static struct proto x25_proto
= {
513 .owner
= THIS_MODULE
,
514 .obj_size
= sizeof(struct x25_sock
),
517 static struct sock
*x25_alloc_socket(struct net
*net
, int kern
)
519 struct x25_sock
*x25
;
520 struct sock
*sk
= sk_alloc(net
, AF_X25
, GFP_ATOMIC
, &x25_proto
, kern
);
525 sock_init_data(NULL
, sk
);
528 skb_queue_head_init(&x25
->ack_queue
);
529 skb_queue_head_init(&x25
->fragment_queue
);
530 skb_queue_head_init(&x25
->interrupt_in_queue
);
531 skb_queue_head_init(&x25
->interrupt_out_queue
);
536 static int x25_create(struct net
*net
, struct socket
*sock
, int protocol
,
540 struct x25_sock
*x25
;
541 int rc
= -EAFNOSUPPORT
;
543 if (!net_eq(net
, &init_net
))
546 rc
= -ESOCKTNOSUPPORT
;
547 if (sock
->type
!= SOCK_SEQPACKET
)
555 if ((sk
= x25_alloc_socket(net
, kern
)) == NULL
)
560 sock_init_data(sock
, sk
);
564 sock
->ops
= &x25_proto_ops
;
565 sk
->sk_protocol
= protocol
;
566 sk
->sk_backlog_rcv
= x25_backlog_rcv
;
568 x25
->t21
= sysctl_x25_call_request_timeout
;
569 x25
->t22
= sysctl_x25_reset_request_timeout
;
570 x25
->t23
= sysctl_x25_clear_request_timeout
;
571 x25
->t2
= sysctl_x25_ack_holdback_timeout
;
572 x25
->state
= X25_STATE_0
;
573 x25
->cudmatchlength
= 0;
574 set_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
); /* normally no cud */
577 x25
->facilities
.winsize_in
= X25_DEFAULT_WINDOW_SIZE
;
578 x25
->facilities
.winsize_out
= X25_DEFAULT_WINDOW_SIZE
;
579 x25
->facilities
.pacsize_in
= X25_DEFAULT_PACKET_SIZE
;
580 x25
->facilities
.pacsize_out
= X25_DEFAULT_PACKET_SIZE
;
581 x25
->facilities
.throughput
= 0; /* by default don't negotiate
583 x25
->facilities
.reverse
= X25_DEFAULT_REVERSE
;
584 x25
->dte_facilities
.calling_len
= 0;
585 x25
->dte_facilities
.called_len
= 0;
586 memset(x25
->dte_facilities
.called_ae
, '\0',
587 sizeof(x25
->dte_facilities
.called_ae
));
588 memset(x25
->dte_facilities
.calling_ae
, '\0',
589 sizeof(x25
->dte_facilities
.calling_ae
));
596 static struct sock
*x25_make_new(struct sock
*osk
)
598 struct sock
*sk
= NULL
;
599 struct x25_sock
*x25
, *ox25
;
601 if (osk
->sk_type
!= SOCK_SEQPACKET
)
604 if ((sk
= x25_alloc_socket(sock_net(osk
), 0)) == NULL
)
609 sk
->sk_type
= osk
->sk_type
;
610 sk
->sk_priority
= osk
->sk_priority
;
611 sk
->sk_protocol
= osk
->sk_protocol
;
612 sk
->sk_rcvbuf
= osk
->sk_rcvbuf
;
613 sk
->sk_sndbuf
= osk
->sk_sndbuf
;
614 sk
->sk_state
= TCP_ESTABLISHED
;
615 sk
->sk_backlog_rcv
= osk
->sk_backlog_rcv
;
616 sock_copy_flags(sk
, osk
);
619 x25
->t21
= ox25
->t21
;
620 x25
->t22
= ox25
->t22
;
621 x25
->t23
= ox25
->t23
;
623 x25
->flags
= ox25
->flags
;
624 x25
->facilities
= ox25
->facilities
;
625 x25
->dte_facilities
= ox25
->dte_facilities
;
626 x25
->cudmatchlength
= ox25
->cudmatchlength
;
628 clear_bit(X25_INTERRUPT_FLAG
, &x25
->flags
);
634 static int x25_release(struct socket
*sock
)
636 struct sock
*sk
= sock
->sk
;
637 struct x25_sock
*x25
;
646 switch (x25
->state
) {
650 x25_disconnect(sk
, 0, 0, 0);
651 __x25_destroy_socket(sk
);
657 x25_clear_queues(sk
);
658 x25_write_internal(sk
, X25_CLEAR_REQUEST
);
659 x25_start_t23timer(sk
);
660 x25
->state
= X25_STATE_2
;
661 sk
->sk_state
= TCP_CLOSE
;
662 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
663 sk
->sk_state_change(sk
);
664 sock_set_flag(sk
, SOCK_DEAD
);
665 sock_set_flag(sk
, SOCK_DESTROY
);
676 static int x25_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
678 struct sock
*sk
= sock
->sk
;
679 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
682 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
683 addr
->sx25_family
!= AF_X25
) {
688 /* check for the null_x25_address */
689 if (strcmp(addr
->sx25_addr
.x25_addr
, null_x25_address
.x25_addr
)) {
691 len
= strlen(addr
->sx25_addr
.x25_addr
);
692 for (i
= 0; i
< len
; i
++) {
693 if (!isdigit(addr
->sx25_addr
.x25_addr
[i
])) {
701 if (sock_flag(sk
, SOCK_ZAPPED
)) {
702 x25_sk(sk
)->source_addr
= addr
->sx25_addr
;
703 x25_insert_socket(sk
);
704 sock_reset_flag(sk
, SOCK_ZAPPED
);
709 SOCK_DEBUG(sk
, "x25_bind: socket is bound\n");
714 static int x25_wait_for_connection_establishment(struct sock
*sk
)
716 DECLARE_WAITQUEUE(wait
, current
);
719 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
721 __set_current_state(TASK_INTERRUPTIBLE
);
723 if (signal_pending(current
))
727 sk
->sk_socket
->state
= SS_UNCONNECTED
;
731 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
738 __set_current_state(TASK_RUNNING
);
739 remove_wait_queue(sk_sleep(sk
), &wait
);
743 static int x25_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
744 int addr_len
, int flags
)
746 struct sock
*sk
= sock
->sk
;
747 struct x25_sock
*x25
= x25_sk(sk
);
748 struct sockaddr_x25
*addr
= (struct sockaddr_x25
*)uaddr
;
749 struct x25_route
*rt
;
753 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
754 sock
->state
= SS_CONNECTED
;
755 goto out
; /* Connect completed during a ERESTARTSYS event */
759 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
760 sock
->state
= SS_UNCONNECTED
;
764 rc
= -EISCONN
; /* No reconnect on a seqpacket socket */
765 if (sk
->sk_state
== TCP_ESTABLISHED
)
768 rc
= -EALREADY
; /* Do nothing if call is already in progress */
769 if (sk
->sk_state
== TCP_SYN_SENT
)
772 sk
->sk_state
= TCP_CLOSE
;
773 sock
->state
= SS_UNCONNECTED
;
776 if (addr_len
!= sizeof(struct sockaddr_x25
) ||
777 addr
->sx25_family
!= AF_X25
)
781 rt
= x25_get_route(&addr
->sx25_addr
);
785 x25
->neighbour
= x25_get_neigh(rt
->dev
);
789 x25_limit_facilities(&x25
->facilities
, x25
->neighbour
);
791 x25
->lci
= x25_new_lci(x25
->neighbour
);
796 if (sock_flag(sk
, SOCK_ZAPPED
)) /* Must bind first - autobinding does not work */
799 if (!strcmp(x25
->source_addr
.x25_addr
, null_x25_address
.x25_addr
))
800 memset(&x25
->source_addr
, '\0', X25_ADDR_LEN
);
802 x25
->dest_addr
= addr
->sx25_addr
;
804 /* Move to connecting socket, start sending Connect Requests */
805 sock
->state
= SS_CONNECTING
;
806 sk
->sk_state
= TCP_SYN_SENT
;
808 x25
->state
= X25_STATE_1
;
810 x25_write_internal(sk
, X25_CALL_REQUEST
);
812 x25_start_heartbeat(sk
);
813 x25_start_t21timer(sk
);
817 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
))
820 rc
= x25_wait_for_connection_establishment(sk
);
824 sock
->state
= SS_CONNECTED
;
828 read_lock_bh(&x25_list_lock
);
829 x25_neigh_put(x25
->neighbour
);
830 x25
->neighbour
= NULL
;
831 read_unlock_bh(&x25_list_lock
);
832 x25
->state
= X25_STATE_0
;
841 static int x25_wait_for_data(struct sock
*sk
, long timeout
)
843 DECLARE_WAITQUEUE(wait
, current
);
846 add_wait_queue_exclusive(sk_sleep(sk
), &wait
);
848 __set_current_state(TASK_INTERRUPTIBLE
);
849 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
852 if (signal_pending(current
))
858 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
860 timeout
= schedule_timeout(timeout
);
865 __set_current_state(TASK_RUNNING
);
866 remove_wait_queue(sk_sleep(sk
), &wait
);
870 static int x25_accept(struct socket
*sock
, struct socket
*newsock
, int flags
,
873 struct sock
*sk
= sock
->sk
;
882 if (sk
->sk_type
!= SOCK_SEQPACKET
)
887 if (sk
->sk_state
!= TCP_LISTEN
)
890 rc
= x25_wait_for_data(sk
, sk
->sk_rcvtimeo
);
893 skb
= skb_dequeue(&sk
->sk_receive_queue
);
898 sock_graft(newsk
, newsock
);
900 /* Now attach up the new socket */
903 sk
->sk_ack_backlog
--;
904 newsock
->state
= SS_CONNECTED
;
912 static int x25_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
915 struct sockaddr_x25
*sx25
= (struct sockaddr_x25
*)uaddr
;
916 struct sock
*sk
= sock
->sk
;
917 struct x25_sock
*x25
= x25_sk(sk
);
921 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
925 sx25
->sx25_addr
= x25
->dest_addr
;
927 sx25
->sx25_addr
= x25
->source_addr
;
929 sx25
->sx25_family
= AF_X25
;
936 int x25_rx_call_request(struct sk_buff
*skb
, struct x25_neigh
*nb
,
941 struct x25_sock
*makex25
;
942 struct x25_address source_addr
, dest_addr
;
943 struct x25_facilities facilities
;
944 struct x25_dte_facilities dte_facilities
;
945 int len
, addr_len
, rc
;
948 * Remove the LCI and frame type.
950 skb_pull(skb
, X25_STD_MIN_LEN
);
953 * Extract the X.25 addresses and convert them to ASCII strings,
956 * Address block is mandatory in call request packets
958 addr_len
= x25_parse_address_block(skb
, &source_addr
, &dest_addr
);
960 goto out_clear_request
;
961 skb_pull(skb
, addr_len
);
964 * Get the length of the facilities, skip past them for the moment
965 * get the call user data because this is needed to determine
966 * the correct listener
968 * Facilities length is mandatory in call request packets
970 if (!pskb_may_pull(skb
, 1))
971 goto out_clear_request
;
972 len
= skb
->data
[0] + 1;
973 if (!pskb_may_pull(skb
, len
))
974 goto out_clear_request
;
978 * Ensure that the amount of call user data is valid.
980 if (skb
->len
> X25_MAX_CUD_LEN
)
981 goto out_clear_request
;
984 * Get all the call user data so it can be used in
985 * x25_find_listener and skb_copy_from_linear_data up ahead.
987 if (!pskb_may_pull(skb
, skb
->len
))
988 goto out_clear_request
;
991 * Find a listener for the particular address/cud pair.
993 sk
= x25_find_listener(&source_addr
,skb
);
996 if (sk
!= NULL
&& sk_acceptq_is_full(sk
)) {
1001 * We dont have any listeners for this incoming call.
1002 * Try forwarding it.
1005 skb_push(skb
, addr_len
+ X25_STD_MIN_LEN
);
1006 if (sysctl_x25_forward
&&
1007 x25_forward_call(&dest_addr
, nb
, skb
, lci
) > 0)
1009 /* Call was forwarded, dont process it any more */
1014 /* No listeners, can't forward, clear the call */
1015 goto out_clear_request
;
1020 * Try to reach a compromise on the requested facilities.
1022 len
= x25_negotiate_facilities(skb
, sk
, &facilities
, &dte_facilities
);
1027 * current neighbour/link might impose additional limits
1028 * on certain facilties
1031 x25_limit_facilities(&facilities
, nb
);
1034 * Try to create a new socket.
1036 make
= x25_make_new(sk
);
1041 * Remove the facilities
1046 make
->sk_state
= TCP_ESTABLISHED
;
1048 makex25
= x25_sk(make
);
1050 makex25
->dest_addr
= dest_addr
;
1051 makex25
->source_addr
= source_addr
;
1052 makex25
->neighbour
= nb
;
1053 makex25
->facilities
= facilities
;
1054 makex25
->dte_facilities
= dte_facilities
;
1055 makex25
->vc_facil_mask
= x25_sk(sk
)->vc_facil_mask
;
1056 /* ensure no reverse facil on accept */
1057 makex25
->vc_facil_mask
&= ~X25_MASK_REVERSE
;
1058 /* ensure no calling address extension on accept */
1059 makex25
->vc_facil_mask
&= ~X25_MASK_CALLING_AE
;
1060 makex25
->cudmatchlength
= x25_sk(sk
)->cudmatchlength
;
1062 /* Normally all calls are accepted immediately */
1063 if (test_bit(X25_ACCPT_APPRV_FLAG
, &makex25
->flags
)) {
1064 x25_write_internal(make
, X25_CALL_ACCEPTED
);
1065 makex25
->state
= X25_STATE_3
;
1069 * Incoming Call User Data.
1071 skb_copy_from_linear_data(skb
, makex25
->calluserdata
.cuddata
, skb
->len
);
1072 makex25
->calluserdata
.cudlength
= skb
->len
;
1074 sk
->sk_ack_backlog
++;
1076 x25_insert_socket(make
);
1078 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1080 x25_start_heartbeat(make
);
1082 if (!sock_flag(sk
, SOCK_DEAD
))
1083 sk
->sk_data_ready(sk
);
1092 x25_transmit_clear_request(nb
, lci
, 0x01);
1096 static int x25_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
)
1098 struct sock
*sk
= sock
->sk
;
1099 struct x25_sock
*x25
= x25_sk(sk
);
1100 DECLARE_SOCKADDR(struct sockaddr_x25
*, usx25
, msg
->msg_name
);
1101 struct sockaddr_x25 sx25
;
1102 struct sk_buff
*skb
;
1103 unsigned char *asmptr
;
1104 int noblock
= msg
->msg_flags
& MSG_DONTWAIT
;
1106 int qbit
= 0, rc
= -EINVAL
;
1109 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_OOB
|MSG_EOR
|MSG_CMSG_COMPAT
))
1112 /* we currently don't support segmented records at the user interface */
1113 if (!(msg
->msg_flags
& (MSG_EOR
|MSG_OOB
)))
1116 rc
= -EADDRNOTAVAIL
;
1117 if (sock_flag(sk
, SOCK_ZAPPED
))
1121 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1122 send_sig(SIGPIPE
, current
, 0);
1127 if (!x25
->neighbour
)
1132 if (msg
->msg_namelen
< sizeof(sx25
))
1134 memcpy(&sx25
, usx25
, sizeof(sx25
));
1136 if (strcmp(x25
->dest_addr
.x25_addr
, sx25
.sx25_addr
.x25_addr
))
1139 if (sx25
.sx25_family
!= AF_X25
)
1143 * FIXME 1003.1g - if the socket is like this because
1144 * it has become closed (not started closed) we ought
1145 * to SIGPIPE, EPIPE;
1148 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1151 sx25
.sx25_family
= AF_X25
;
1152 sx25
.sx25_addr
= x25
->dest_addr
;
1155 /* Sanity check the packet size */
1161 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: Addresses built.\n");
1163 /* Build a packet */
1164 SOCK_DEBUG(sk
, "x25_sendmsg: sendto: building packet.\n");
1166 if ((msg
->msg_flags
& MSG_OOB
) && len
> 32)
1169 size
= len
+ X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
;
1172 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
1176 X25_SKB_CB(skb
)->flags
= msg
->msg_flags
;
1178 skb_reserve(skb
, X25_MAX_L2_LEN
+ X25_EXT_MIN_LEN
);
1181 * Put the data on the end
1183 SOCK_DEBUG(sk
, "x25_sendmsg: Copying user data\n");
1185 skb_reset_transport_header(skb
);
1188 rc
= memcpy_from_msg(skb_transport_header(skb
), msg
, len
);
1193 * If the Q BIT Include socket option is in force, the first
1194 * byte of the user data is the logical value of the Q Bit.
1196 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1197 if (!pskb_may_pull(skb
, 1))
1200 qbit
= skb
->data
[0];
1205 * Push down the X.25 header
1207 SOCK_DEBUG(sk
, "x25_sendmsg: Building X.25 Header.\n");
1209 if (msg
->msg_flags
& MSG_OOB
) {
1210 if (x25
->neighbour
->extended
) {
1211 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1212 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1213 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1214 *asmptr
++ = X25_INTERRUPT
;
1216 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1217 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1218 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1219 *asmptr
++ = X25_INTERRUPT
;
1222 if (x25
->neighbour
->extended
) {
1223 /* Build an Extended X.25 header */
1224 asmptr
= skb_push(skb
, X25_EXT_MIN_LEN
);
1225 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_EXTSEQ
;
1226 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1227 *asmptr
++ = X25_DATA
;
1228 *asmptr
++ = X25_DATA
;
1230 /* Build an Standard X.25 header */
1231 asmptr
= skb_push(skb
, X25_STD_MIN_LEN
);
1232 *asmptr
++ = ((x25
->lci
>> 8) & 0x0F) | X25_GFI_STDSEQ
;
1233 *asmptr
++ = (x25
->lci
>> 0) & 0xFF;
1234 *asmptr
++ = X25_DATA
;
1238 skb
->data
[0] |= X25_Q_BIT
;
1241 SOCK_DEBUG(sk
, "x25_sendmsg: Built header.\n");
1242 SOCK_DEBUG(sk
, "x25_sendmsg: Transmitting buffer\n");
1245 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1248 if (msg
->msg_flags
& MSG_OOB
)
1249 skb_queue_tail(&x25
->interrupt_out_queue
, skb
);
1251 rc
= x25_output(sk
, skb
);
1255 else if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
))
1270 static int x25_recvmsg(struct socket
*sock
, struct msghdr
*msg
, size_t size
,
1273 struct sock
*sk
= sock
->sk
;
1274 struct x25_sock
*x25
= x25_sk(sk
);
1275 DECLARE_SOCKADDR(struct sockaddr_x25
*, sx25
, msg
->msg_name
);
1277 int qbit
, header_len
;
1278 struct sk_buff
*skb
;
1279 unsigned char *asmptr
;
1284 if (x25
->neighbour
== NULL
)
1287 header_len
= x25
->neighbour
->extended
?
1288 X25_EXT_MIN_LEN
: X25_STD_MIN_LEN
;
1291 * This works for seqpacket too. The receiver has ordered the queue for
1292 * us! We do one quick check first though
1294 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1297 if (flags
& MSG_OOB
) {
1299 if (sock_flag(sk
, SOCK_URGINLINE
) ||
1300 !skb_peek(&x25
->interrupt_in_queue
))
1303 skb
= skb_dequeue(&x25
->interrupt_in_queue
);
1305 if (!pskb_may_pull(skb
, X25_STD_MIN_LEN
))
1306 goto out_free_dgram
;
1308 skb_pull(skb
, X25_STD_MIN_LEN
);
1311 * No Q bit information on Interrupt data.
1313 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1314 asmptr
= skb_push(skb
, 1);
1318 msg
->msg_flags
|= MSG_OOB
;
1320 /* Now we can treat all alike */
1322 skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
,
1323 flags
& MSG_DONTWAIT
, &rc
);
1328 if (!pskb_may_pull(skb
, header_len
))
1329 goto out_free_dgram
;
1331 qbit
= (skb
->data
[0] & X25_Q_BIT
) == X25_Q_BIT
;
1333 skb_pull(skb
, header_len
);
1335 if (test_bit(X25_Q_BIT_FLAG
, &x25
->flags
)) {
1336 asmptr
= skb_push(skb
, 1);
1341 skb_reset_transport_header(skb
);
1344 if (copied
> size
) {
1346 msg
->msg_flags
|= MSG_TRUNC
;
1349 /* Currently, each datagram always contains a complete record */
1350 msg
->msg_flags
|= MSG_EOR
;
1352 rc
= skb_copy_datagram_msg(skb
, 0, msg
, copied
);
1354 goto out_free_dgram
;
1357 sx25
->sx25_family
= AF_X25
;
1358 sx25
->sx25_addr
= x25
->dest_addr
;
1359 msg
->msg_namelen
= sizeof(*sx25
);
1365 skb_free_datagram(sk
, skb
);
1372 static int x25_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1374 struct sock
*sk
= sock
->sk
;
1375 struct x25_sock
*x25
= x25_sk(sk
);
1376 void __user
*argp
= (void __user
*)arg
;
1383 amount
= sk
->sk_sndbuf
- sk_wmem_alloc_get(sk
);
1386 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1391 struct sk_buff
*skb
;
1394 * These two are safe on a single CPU system as
1395 * only user tasks fiddle here
1398 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1401 rc
= put_user(amount
, (unsigned int __user
*)argp
);
1408 rc
= sock_get_timestamp(sk
,
1409 (struct timeval __user
*)argp
);
1414 rc
= sock_get_timestampns(sk
,
1415 (struct timespec __user
*)argp
);
1419 case SIOCGIFDSTADDR
:
1420 case SIOCSIFDSTADDR
:
1421 case SIOCGIFBRDADDR
:
1422 case SIOCSIFBRDADDR
:
1423 case SIOCGIFNETMASK
:
1424 case SIOCSIFNETMASK
:
1432 if (!capable(CAP_NET_ADMIN
))
1434 rc
= x25_route_ioctl(cmd
, argp
);
1436 case SIOCX25GSUBSCRIP
:
1437 rc
= x25_subscr_ioctl(cmd
, argp
);
1439 case SIOCX25SSUBSCRIP
:
1441 if (!capable(CAP_NET_ADMIN
))
1443 rc
= x25_subscr_ioctl(cmd
, argp
);
1445 case SIOCX25GFACILITIES
: {
1447 rc
= copy_to_user(argp
, &x25
->facilities
,
1448 sizeof(x25
->facilities
))
1454 case SIOCX25SFACILITIES
: {
1455 struct x25_facilities facilities
;
1457 if (copy_from_user(&facilities
, argp
, sizeof(facilities
)))
1461 if (sk
->sk_state
!= TCP_LISTEN
&&
1462 sk
->sk_state
!= TCP_CLOSE
)
1463 goto out_fac_release
;
1464 if (facilities
.pacsize_in
< X25_PS16
||
1465 facilities
.pacsize_in
> X25_PS4096
)
1466 goto out_fac_release
;
1467 if (facilities
.pacsize_out
< X25_PS16
||
1468 facilities
.pacsize_out
> X25_PS4096
)
1469 goto out_fac_release
;
1470 if (facilities
.winsize_in
< 1 ||
1471 facilities
.winsize_in
> 127)
1472 goto out_fac_release
;
1473 if (facilities
.throughput
) {
1474 int out
= facilities
.throughput
& 0xf0;
1475 int in
= facilities
.throughput
& 0x0f;
1477 facilities
.throughput
|=
1478 X25_DEFAULT_THROUGHPUT
<< 4;
1479 else if (out
< 0x30 || out
> 0xD0)
1480 goto out_fac_release
;
1482 facilities
.throughput
|=
1483 X25_DEFAULT_THROUGHPUT
;
1484 else if (in
< 0x03 || in
> 0x0D)
1485 goto out_fac_release
;
1487 if (facilities
.reverse
&&
1488 (facilities
.reverse
& 0x81) != 0x81)
1489 goto out_fac_release
;
1490 x25
->facilities
= facilities
;
1497 case SIOCX25GDTEFACILITIES
: {
1499 rc
= copy_to_user(argp
, &x25
->dte_facilities
,
1500 sizeof(x25
->dte_facilities
));
1507 case SIOCX25SDTEFACILITIES
: {
1508 struct x25_dte_facilities dtefacs
;
1510 if (copy_from_user(&dtefacs
, argp
, sizeof(dtefacs
)))
1514 if (sk
->sk_state
!= TCP_LISTEN
&&
1515 sk
->sk_state
!= TCP_CLOSE
)
1516 goto out_dtefac_release
;
1517 if (dtefacs
.calling_len
> X25_MAX_AE_LEN
)
1518 goto out_dtefac_release
;
1519 if (dtefacs
.called_len
> X25_MAX_AE_LEN
)
1520 goto out_dtefac_release
;
1521 x25
->dte_facilities
= dtefacs
;
1528 case SIOCX25GCALLUSERDATA
: {
1530 rc
= copy_to_user(argp
, &x25
->calluserdata
,
1531 sizeof(x25
->calluserdata
))
1537 case SIOCX25SCALLUSERDATA
: {
1538 struct x25_calluserdata calluserdata
;
1541 if (copy_from_user(&calluserdata
, argp
, sizeof(calluserdata
)))
1544 if (calluserdata
.cudlength
> X25_MAX_CUD_LEN
)
1547 x25
->calluserdata
= calluserdata
;
1553 case SIOCX25GCAUSEDIAG
: {
1555 rc
= copy_to_user(argp
, &x25
->causediag
, sizeof(x25
->causediag
))
1561 case SIOCX25SCAUSEDIAG
: {
1562 struct x25_causediag causediag
;
1564 if (copy_from_user(&causediag
, argp
, sizeof(causediag
)))
1567 x25
->causediag
= causediag
;
1574 case SIOCX25SCUDMATCHLEN
: {
1575 struct x25_subaddr sub_addr
;
1578 if(sk
->sk_state
!= TCP_CLOSE
)
1579 goto out_cud_release
;
1581 if (copy_from_user(&sub_addr
, argp
,
1583 goto out_cud_release
;
1585 if (sub_addr
.cudmatchlength
> X25_MAX_CUD_LEN
)
1586 goto out_cud_release
;
1587 x25
->cudmatchlength
= sub_addr
.cudmatchlength
;
1594 case SIOCX25CALLACCPTAPPRV
: {
1597 if (sk
->sk_state
== TCP_CLOSE
) {
1598 clear_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
);
1605 case SIOCX25SENDCALLACCPT
: {
1608 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1609 goto out_sendcallaccpt_release
;
1610 /* must call accptapprv above */
1611 if (test_bit(X25_ACCPT_APPRV_FLAG
, &x25
->flags
))
1612 goto out_sendcallaccpt_release
;
1613 x25_write_internal(sk
, X25_CALL_ACCEPTED
);
1614 x25
->state
= X25_STATE_3
;
1616 out_sendcallaccpt_release
:
1629 static const struct net_proto_family x25_family_ops
= {
1631 .create
= x25_create
,
1632 .owner
= THIS_MODULE
,
1635 #ifdef CONFIG_COMPAT
1636 static int compat_x25_subscr_ioctl(unsigned int cmd
,
1637 struct compat_x25_subscrip_struct __user
*x25_subscr32
)
1639 struct compat_x25_subscrip_struct x25_subscr
;
1640 struct x25_neigh
*nb
;
1641 struct net_device
*dev
;
1645 if (copy_from_user(&x25_subscr
, x25_subscr32
, sizeof(*x25_subscr32
)))
1649 dev
= x25_dev_get(x25_subscr
.device
);
1653 nb
= x25_get_neigh(dev
);
1659 if (cmd
== SIOCX25GSUBSCRIP
) {
1660 read_lock_bh(&x25_neigh_list_lock
);
1661 x25_subscr
.extended
= nb
->extended
;
1662 x25_subscr
.global_facil_mask
= nb
->global_facil_mask
;
1663 read_unlock_bh(&x25_neigh_list_lock
);
1664 rc
= copy_to_user(x25_subscr32
, &x25_subscr
,
1665 sizeof(*x25_subscr32
)) ? -EFAULT
: 0;
1668 if (x25_subscr
.extended
== 0 || x25_subscr
.extended
== 1) {
1670 write_lock_bh(&x25_neigh_list_lock
);
1671 nb
->extended
= x25_subscr
.extended
;
1672 nb
->global_facil_mask
= x25_subscr
.global_facil_mask
;
1673 write_unlock_bh(&x25_neigh_list_lock
);
1684 static int compat_x25_ioctl(struct socket
*sock
, unsigned int cmd
,
1687 void __user
*argp
= compat_ptr(arg
);
1688 struct sock
*sk
= sock
->sk
;
1690 int rc
= -ENOIOCTLCMD
;
1695 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1700 rc
= compat_sock_get_timestamp(sk
,
1701 (struct timeval __user
*)argp
);
1706 rc
= compat_sock_get_timestampns(sk
,
1707 (struct timespec __user
*)argp
);
1711 case SIOCGIFDSTADDR
:
1712 case SIOCSIFDSTADDR
:
1713 case SIOCGIFBRDADDR
:
1714 case SIOCSIFBRDADDR
:
1715 case SIOCGIFNETMASK
:
1716 case SIOCSIFNETMASK
:
1724 if (!capable(CAP_NET_ADMIN
))
1726 rc
= x25_route_ioctl(cmd
, argp
);
1728 case SIOCX25GSUBSCRIP
:
1729 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1731 case SIOCX25SSUBSCRIP
:
1733 if (!capable(CAP_NET_ADMIN
))
1735 rc
= compat_x25_subscr_ioctl(cmd
, argp
);
1737 case SIOCX25GFACILITIES
:
1738 case SIOCX25SFACILITIES
:
1739 case SIOCX25GDTEFACILITIES
:
1740 case SIOCX25SDTEFACILITIES
:
1741 case SIOCX25GCALLUSERDATA
:
1742 case SIOCX25SCALLUSERDATA
:
1743 case SIOCX25GCAUSEDIAG
:
1744 case SIOCX25SCAUSEDIAG
:
1745 case SIOCX25SCUDMATCHLEN
:
1746 case SIOCX25CALLACCPTAPPRV
:
1747 case SIOCX25SENDCALLACCPT
:
1748 rc
= x25_ioctl(sock
, cmd
, (unsigned long)argp
);
1758 static const struct proto_ops x25_proto_ops
= {
1760 .owner
= THIS_MODULE
,
1761 .release
= x25_release
,
1763 .connect
= x25_connect
,
1764 .socketpair
= sock_no_socketpair
,
1765 .accept
= x25_accept
,
1766 .getname
= x25_getname
,
1767 .poll
= datagram_poll
,
1769 #ifdef CONFIG_COMPAT
1770 .compat_ioctl
= compat_x25_ioctl
,
1772 .listen
= x25_listen
,
1773 .shutdown
= sock_no_shutdown
,
1774 .setsockopt
= x25_setsockopt
,
1775 .getsockopt
= x25_getsockopt
,
1776 .sendmsg
= x25_sendmsg
,
1777 .recvmsg
= x25_recvmsg
,
1778 .mmap
= sock_no_mmap
,
1779 .sendpage
= sock_no_sendpage
,
1782 static struct packet_type x25_packet_type __read_mostly
= {
1783 .type
= cpu_to_be16(ETH_P_X25
),
1784 .func
= x25_lapb_receive_frame
,
1787 static struct notifier_block x25_dev_notifier
= {
1788 .notifier_call
= x25_device_event
,
1791 void x25_kill_by_neigh(struct x25_neigh
*nb
)
1795 write_lock_bh(&x25_list_lock
);
1797 sk_for_each(s
, &x25_list
)
1798 if (x25_sk(s
)->neighbour
== nb
)
1799 x25_disconnect(s
, ENETUNREACH
, 0, 0);
1801 write_unlock_bh(&x25_list_lock
);
1803 /* Remove any related forwards */
1804 x25_clear_forward_by_dev(nb
->dev
);
1807 static int __init
x25_init(void)
1811 rc
= proto_register(&x25_proto
, 0);
1815 rc
= sock_register(&x25_family_ops
);
1819 dev_add_pack(&x25_packet_type
);
1821 rc
= register_netdevice_notifier(&x25_dev_notifier
);
1825 rc
= x25_register_sysctl();
1829 rc
= x25_proc_init();
1833 pr_info("Linux Version 0.2\n");
1838 x25_unregister_sysctl();
1840 unregister_netdevice_notifier(&x25_dev_notifier
);
1842 dev_remove_pack(&x25_packet_type
);
1843 sock_unregister(AF_X25
);
1845 proto_unregister(&x25_proto
);
1848 module_init(x25_init
);
1850 static void __exit
x25_exit(void)
1856 x25_unregister_sysctl();
1858 unregister_netdevice_notifier(&x25_dev_notifier
);
1860 dev_remove_pack(&x25_packet_type
);
1862 sock_unregister(AF_X25
);
1863 proto_unregister(&x25_proto
);
1865 module_exit(x25_exit
);
1867 MODULE_AUTHOR("Jonathan Naylor <g4klx@g4klx.demon.co.uk>");
1868 MODULE_DESCRIPTION("The X.25 Packet Layer network layer protocol");
1869 MODULE_LICENSE("GPL");
1870 MODULE_ALIAS_NETPROTO(PF_X25
);