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))
463 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 (sk->sk_state != TCP_LISTEN) {
486 memset(&x25_sk(sk)->dest_addr, 0, X25_ADDR_LEN);
487 sk->sk_max_ack_backlog = backlog;
488 sk->sk_state = TCP_LISTEN;
496 static struct proto x25_proto = {
498 .owner = THIS_MODULE,
499 .obj_size = sizeof(struct x25_sock),
502 static struct sock *x25_alloc_socket(struct net *net, int kern)
504 struct x25_sock *x25;
505 struct sock *sk = sk_alloc(net, AF_X25, GFP_ATOMIC, &x25_proto, kern);
510 sock_init_data(NULL, sk);
513 skb_queue_head_init(&x25->ack_queue);
514 skb_queue_head_init(&x25->fragment_queue);
515 skb_queue_head_init(&x25->interrupt_in_queue);
516 skb_queue_head_init(&x25->interrupt_out_queue);
521 static int x25_create(struct net *net, struct socket *sock, int protocol,
525 struct x25_sock *x25;
526 int rc = -EAFNOSUPPORT;
528 if (!net_eq(net, &init_net))
531 rc = -ESOCKTNOSUPPORT;
532 if (sock->type != SOCK_SEQPACKET)
540 if ((sk = x25_alloc_socket(net, kern)) == NULL)
545 sock_init_data(sock, sk);
549 sock->ops = &x25_proto_ops;
550 sk->sk_protocol = protocol;
551 sk->sk_backlog_rcv = x25_backlog_rcv;
553 x25->t21 = sysctl_x25_call_request_timeout;
554 x25->t22 = sysctl_x25_reset_request_timeout;
555 x25->t23 = sysctl_x25_clear_request_timeout;
556 x25->t2 = sysctl_x25_ack_holdback_timeout;
557 x25->state = X25_STATE_0;
558 x25->cudmatchlength = 0;
559 set_bit(X25_ACCPT_APPRV_FLAG, &x25->flags); /* normally no cud */
562 x25->facilities.winsize_in = X25_DEFAULT_WINDOW_SIZE;
563 x25->facilities.winsize_out = X25_DEFAULT_WINDOW_SIZE;
564 x25->facilities.pacsize_in = X25_DEFAULT_PACKET_SIZE;
565 x25->facilities.pacsize_out = X25_DEFAULT_PACKET_SIZE;
566 x25->facilities.throughput = 0; /* by default don't negotiate
568 x25->facilities.reverse = X25_DEFAULT_REVERSE;
569 x25->dte_facilities.calling_len = 0;
570 x25->dte_facilities.called_len = 0;
571 memset(x25->dte_facilities.called_ae, '\0',
572 sizeof(x25->dte_facilities.called_ae));
573 memset(x25->dte_facilities.calling_ae, '\0',
574 sizeof(x25->dte_facilities.calling_ae));
581 static struct sock *x25_make_new(struct sock *osk)
583 struct sock *sk = NULL;
584 struct x25_sock *x25, *ox25;
586 if (osk->sk_type != SOCK_SEQPACKET)
589 if ((sk = x25_alloc_socket(sock_net(osk), 0)) == NULL)
594 sk->sk_type = osk->sk_type;
595 sk->sk_priority = osk->sk_priority;
596 sk->sk_protocol = osk->sk_protocol;
597 sk->sk_rcvbuf = osk->sk_rcvbuf;
598 sk->sk_sndbuf = osk->sk_sndbuf;
599 sk->sk_state = TCP_ESTABLISHED;
600 sk->sk_backlog_rcv = osk->sk_backlog_rcv;
601 sock_copy_flags(sk, osk);
604 x25->t21 = ox25->t21;
605 x25->t22 = ox25->t22;
606 x25->t23 = ox25->t23;
608 x25->flags = ox25->flags;
609 x25->facilities = ox25->facilities;
610 x25->dte_facilities = ox25->dte_facilities;
611 x25->cudmatchlength = ox25->cudmatchlength;
613 clear_bit(X25_INTERRUPT_FLAG, &x25->flags);
619 static int x25_release(struct socket *sock)
621 struct sock *sk = sock->sk;
622 struct x25_sock *x25;
631 switch (x25->state) {
635 x25_disconnect(sk, 0, 0, 0);
636 __x25_destroy_socket(sk);
642 x25_clear_queues(sk);
643 x25_write_internal(sk, X25_CLEAR_REQUEST);
644 x25_start_t23timer(sk);
645 x25->state = X25_STATE_2;
646 sk->sk_state = TCP_CLOSE;
647 sk->sk_shutdown |= SEND_SHUTDOWN;
648 sk->sk_state_change(sk);
649 sock_set_flag(sk, SOCK_DEAD);
650 sock_set_flag(sk, SOCK_DESTROY);
654 x25_write_internal(sk, X25_CLEAR_REQUEST);
655 x25_disconnect(sk, 0, 0, 0);
656 __x25_destroy_socket(sk);
667 static int x25_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
669 struct sock *sk = sock->sk;
670 struct sockaddr_x25 *addr = (struct sockaddr_x25 *)uaddr;
673 if (addr_len != sizeof(struct sockaddr_x25) ||
674 addr->sx25_family != AF_X25 ||
675 strnlen(addr->sx25_addr.x25_addr, X25_ADDR_LEN) == X25_ADDR_LEN) {
680 /* check for the null_x25_address */
681 if (strcmp(addr->sx25_addr.x25_addr, null_x25_address.x25_addr)) {
683 len = strlen(addr->sx25_addr.x25_addr);
684 for (i = 0; i < len; i++) {
685 if (!isdigit(addr->sx25_addr.x25_addr[i])) {
693 if (sock_flag(sk, SOCK_ZAPPED)) {
694 x25_sk(sk)->source_addr = addr->sx25_addr;
695 x25_insert_socket(sk);
696 sock_reset_flag(sk, SOCK_ZAPPED);
701 SOCK_DEBUG(sk, "x25_bind: socket is bound\n");
706 static int x25_wait_for_connection_establishment(struct sock *sk)
708 DECLARE_WAITQUEUE(wait, current);
711 add_wait_queue_exclusive(sk_sleep(sk), &wait);
713 __set_current_state(TASK_INTERRUPTIBLE);
715 if (signal_pending(current))
719 sk->sk_socket->state = SS_UNCONNECTED;
723 if (sk->sk_state == TCP_CLOSE) {
724 sk->sk_socket->state = SS_UNCONNECTED;
728 if (sk->sk_state != TCP_ESTABLISHED) {
735 __set_current_state(TASK_RUNNING);
736 remove_wait_queue(sk_sleep(sk), &wait);
740 static int x25_connect(struct socket *sock, struct sockaddr *uaddr,
741 int addr_len, int flags)
743 struct sock *sk = sock->sk;
744 struct x25_sock *x25 = x25_sk(sk);
745 struct sockaddr_x25 *addr = (struct sockaddr_x25 *)uaddr;
746 struct x25_route *rt;
750 if (sk->sk_state == TCP_ESTABLISHED && sock->state == SS_CONNECTING) {
751 sock->state = SS_CONNECTED;
752 goto out; /* Connect completed during a ERESTARTSYS event */
756 if (sk->sk_state == TCP_CLOSE && sock->state == SS_CONNECTING) {
757 sock->state = SS_UNCONNECTED;
761 rc = -EISCONN; /* No reconnect on a seqpacket socket */
762 if (sk->sk_state == TCP_ESTABLISHED)
765 rc = -EALREADY; /* Do nothing if call is already in progress */
766 if (sk->sk_state == TCP_SYN_SENT)
769 sk->sk_state = TCP_CLOSE;
770 sock->state = SS_UNCONNECTED;
773 if (addr_len != sizeof(struct sockaddr_x25) ||
774 addr->sx25_family != AF_X25 ||
775 strnlen(addr->sx25_addr.x25_addr, X25_ADDR_LEN) == X25_ADDR_LEN)
779 rt = x25_get_route(&addr->sx25_addr);
783 x25->neighbour = x25_get_neigh(rt->dev);
787 x25_limit_facilities(&x25->facilities, x25->neighbour);
789 x25->lci = x25_new_lci(x25->neighbour);
794 if (sock_flag(sk, SOCK_ZAPPED)) /* Must bind first - autobinding does not work */
797 if (!strcmp(x25->source_addr.x25_addr, null_x25_address.x25_addr))
798 memset(&x25->source_addr, '\0', X25_ADDR_LEN);
800 x25->dest_addr = addr->sx25_addr;
802 /* Move to connecting socket, start sending Connect Requests */
803 sock->state = SS_CONNECTING;
804 sk->sk_state = TCP_SYN_SENT;
806 x25->state = X25_STATE_1;
808 x25_write_internal(sk, X25_CALL_REQUEST);
810 x25_start_heartbeat(sk);
811 x25_start_t21timer(sk);
815 if (sk->sk_state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
818 rc = x25_wait_for_connection_establishment(sk);
822 sock->state = SS_CONNECTED;
825 if (rc && x25->neighbour) {
826 read_lock_bh(&x25_list_lock);
827 x25_neigh_put(x25->neighbour);
828 x25->neighbour = NULL;
829 read_unlock_bh(&x25_list_lock);
830 x25->state = X25_STATE_0;
839 static int x25_wait_for_data(struct sock *sk, long timeout)
841 DECLARE_WAITQUEUE(wait, current);
844 add_wait_queue_exclusive(sk_sleep(sk), &wait);
846 __set_current_state(TASK_INTERRUPTIBLE);
847 if (sk->sk_shutdown & RCV_SHUTDOWN)
850 if (signal_pending(current))
856 if (skb_queue_empty(&sk->sk_receive_queue)) {
858 timeout = schedule_timeout(timeout);
863 __set_current_state(TASK_RUNNING);
864 remove_wait_queue(sk_sleep(sk), &wait);
868 static int x25_accept(struct socket *sock, struct socket *newsock, int flags,
871 struct sock *sk = sock->sk;
880 if (sk->sk_type != SOCK_SEQPACKET)
885 if (sk->sk_state != TCP_LISTEN)
888 rc = x25_wait_for_data(sk, sk->sk_rcvtimeo);
891 skb = skb_dequeue(&sk->sk_receive_queue);
896 sock_graft(newsk, newsock);
898 /* Now attach up the new socket */
901 sk_acceptq_removed(sk);
902 newsock->state = SS_CONNECTED;
910 static int x25_getname(struct socket *sock, struct sockaddr *uaddr,
913 struct sockaddr_x25 *sx25 = (struct sockaddr_x25 *)uaddr;
914 struct sock *sk = sock->sk;
915 struct x25_sock *x25 = x25_sk(sk);
919 if (sk->sk_state != TCP_ESTABLISHED) {
923 sx25->sx25_addr = x25->dest_addr;
925 sx25->sx25_addr = x25->source_addr;
927 sx25->sx25_family = AF_X25;
934 int x25_rx_call_request(struct sk_buff *skb, struct x25_neigh *nb,
939 struct x25_sock *makex25;
940 struct x25_address source_addr, dest_addr;
941 struct x25_facilities facilities;
942 struct x25_dte_facilities dte_facilities;
943 int len, addr_len, rc;
946 * Remove the LCI and frame type.
948 skb_pull(skb, X25_STD_MIN_LEN);
951 * Extract the X.25 addresses and convert them to ASCII strings,
954 * Address block is mandatory in call request packets
956 addr_len = x25_parse_address_block(skb, &source_addr, &dest_addr);
958 goto out_clear_request;
959 skb_pull(skb, addr_len);
962 * Get the length of the facilities, skip past them for the moment
963 * get the call user data because this is needed to determine
964 * the correct listener
966 * Facilities length is mandatory in call request packets
968 if (!pskb_may_pull(skb, 1))
969 goto out_clear_request;
970 len = skb->data[0] + 1;
971 if (!pskb_may_pull(skb, len))
972 goto out_clear_request;
976 * Ensure that the amount of call user data is valid.
978 if (skb->len > X25_MAX_CUD_LEN)
979 goto out_clear_request;
982 * Get all the call user data so it can be used in
983 * x25_find_listener and skb_copy_from_linear_data up ahead.
985 if (!pskb_may_pull(skb, skb->len))
986 goto out_clear_request;
989 * Find a listener for the particular address/cud pair.
991 sk = x25_find_listener(&source_addr,skb);
994 if (sk != NULL && sk_acceptq_is_full(sk)) {
999 * We dont have any listeners for this incoming call.
1000 * Try forwarding it.
1003 skb_push(skb, addr_len + X25_STD_MIN_LEN);
1004 if (sysctl_x25_forward &&
1005 x25_forward_call(&dest_addr, nb, skb, lci) > 0)
1007 /* Call was forwarded, dont process it any more */
1012 /* No listeners, can't forward, clear the call */
1013 goto out_clear_request;
1018 * Try to reach a compromise on the requested facilities.
1020 len = x25_negotiate_facilities(skb, sk, &facilities, &dte_facilities);
1025 * current neighbour/link might impose additional limits
1026 * on certain facilities
1029 x25_limit_facilities(&facilities, nb);
1032 * Try to create a new socket.
1034 make = x25_make_new(sk);
1039 * Remove the facilities
1044 make->sk_state = TCP_ESTABLISHED;
1046 makex25 = x25_sk(make);
1048 makex25->dest_addr = dest_addr;
1049 makex25->source_addr = source_addr;
1051 makex25->neighbour = nb;
1052 makex25->facilities = facilities;
1053 makex25->dte_facilities= dte_facilities;
1054 makex25->vc_facil_mask = x25_sk(sk)->vc_facil_mask;
1055 /* ensure no reverse facil on accept */
1056 makex25->vc_facil_mask &= ~X25_MASK_REVERSE;
1057 /* ensure no calling address extension on accept */
1058 makex25->vc_facil_mask &= ~X25_MASK_CALLING_AE;
1059 makex25->cudmatchlength = x25_sk(sk)->cudmatchlength;
1061 /* Normally all calls are accepted immediately */
1062 if (test_bit(X25_ACCPT_APPRV_FLAG, &makex25->flags)) {
1063 x25_write_internal(make, X25_CALL_ACCEPTED);
1064 makex25->state = X25_STATE_3;
1066 makex25->state = X25_STATE_5;
1070 * Incoming Call User Data.
1072 skb_copy_from_linear_data(skb, makex25->calluserdata.cuddata, skb->len);
1073 makex25->calluserdata.cudlength = skb->len;
1075 sk_acceptq_added(sk);
1077 x25_insert_socket(make);
1079 skb_queue_head(&sk->sk_receive_queue, skb);
1081 x25_start_heartbeat(make);
1083 if (!sock_flag(sk, SOCK_DEAD))
1084 sk->sk_data_ready(sk);
1093 x25_transmit_clear_request(nb, lci, 0x01);
1097 static int x25_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
1099 struct sock *sk = sock->sk;
1100 struct x25_sock *x25 = x25_sk(sk);
1101 DECLARE_SOCKADDR(struct sockaddr_x25 *, usx25, msg->msg_name);
1102 struct sockaddr_x25 sx25;
1103 struct sk_buff *skb;
1104 unsigned char *asmptr;
1105 int noblock = msg->msg_flags & MSG_DONTWAIT;
1107 int qbit = 0, rc = -EINVAL;
1110 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_OOB|MSG_EOR|MSG_CMSG_COMPAT))
1113 /* we currently don't support segmented records at the user interface */
1114 if (!(msg->msg_flags & (MSG_EOR|MSG_OOB)))
1117 rc = -EADDRNOTAVAIL;
1118 if (sock_flag(sk, SOCK_ZAPPED))
1122 if (sk->sk_shutdown & SEND_SHUTDOWN) {
1123 send_sig(SIGPIPE, current, 0);
1128 if (!x25->neighbour)
1133 if (msg->msg_namelen < sizeof(sx25))
1135 memcpy(&sx25, usx25, sizeof(sx25));
1137 if (strcmp(x25->dest_addr.x25_addr, sx25.sx25_addr.x25_addr))
1140 if (sx25.sx25_family != AF_X25)
1144 * FIXME 1003.1g - if the socket is like this because
1145 * it has become closed (not started closed) we ought
1146 * to SIGPIPE, EPIPE;
1149 if (sk->sk_state != TCP_ESTABLISHED)
1152 sx25.sx25_family = AF_X25;
1153 sx25.sx25_addr = x25->dest_addr;
1156 /* Sanity check the packet size */
1162 SOCK_DEBUG(sk, "x25_sendmsg: sendto: Addresses built.\n");
1164 /* Build a packet */
1165 SOCK_DEBUG(sk, "x25_sendmsg: sendto: building packet.\n");
1167 if ((msg->msg_flags & MSG_OOB) && len > 32)
1170 size = len + X25_MAX_L2_LEN + X25_EXT_MIN_LEN;
1173 skb = sock_alloc_send_skb(sk, size, noblock, &rc);
1177 X25_SKB_CB(skb)->flags = msg->msg_flags;
1179 skb_reserve(skb, X25_MAX_L2_LEN + X25_EXT_MIN_LEN);
1182 * Put the data on the end
1184 SOCK_DEBUG(sk, "x25_sendmsg: Copying user data\n");
1186 skb_reset_transport_header(skb);
1189 rc = memcpy_from_msg(skb_transport_header(skb), msg, len);
1194 * If the Q BIT Include socket option is in force, the first
1195 * byte of the user data is the logical value of the Q Bit.
1197 if (test_bit(X25_Q_BIT_FLAG, &x25->flags)) {
1198 if (!pskb_may_pull(skb, 1))
1201 qbit = skb->data[0];
1206 * Push down the X.25 header
1208 SOCK_DEBUG(sk, "x25_sendmsg: Building X.25 Header.\n");
1210 if (msg->msg_flags & MSG_OOB) {
1211 if (x25->neighbour->extended) {
1212 asmptr = skb_push(skb, X25_STD_MIN_LEN);
1213 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_EXTSEQ;
1214 *asmptr++ = (x25->lci >> 0) & 0xFF;
1215 *asmptr++ = X25_INTERRUPT;
1217 asmptr = skb_push(skb, X25_STD_MIN_LEN);
1218 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_STDSEQ;
1219 *asmptr++ = (x25->lci >> 0) & 0xFF;
1220 *asmptr++ = X25_INTERRUPT;
1223 if (x25->neighbour->extended) {
1224 /* Build an Extended X.25 header */
1225 asmptr = skb_push(skb, X25_EXT_MIN_LEN);
1226 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_EXTSEQ;
1227 *asmptr++ = (x25->lci >> 0) & 0xFF;
1228 *asmptr++ = X25_DATA;
1229 *asmptr++ = X25_DATA;
1231 /* Build an Standard X.25 header */
1232 asmptr = skb_push(skb, X25_STD_MIN_LEN);
1233 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_STDSEQ;
1234 *asmptr++ = (x25->lci >> 0) & 0xFF;
1235 *asmptr++ = X25_DATA;
1239 skb->data[0] |= X25_Q_BIT;
1242 SOCK_DEBUG(sk, "x25_sendmsg: Built header.\n");
1243 SOCK_DEBUG(sk, "x25_sendmsg: Transmitting buffer\n");
1246 if (sk->sk_state != TCP_ESTABLISHED)
1249 if (msg->msg_flags & MSG_OOB)
1250 skb_queue_tail(&x25->interrupt_out_queue, skb);
1252 rc = x25_output(sk, skb);
1256 else if (test_bit(X25_Q_BIT_FLAG, &x25->flags))
1271 static int x25_recvmsg(struct socket *sock, struct msghdr *msg, size_t size,
1274 struct sock *sk = sock->sk;
1275 struct x25_sock *x25 = x25_sk(sk);
1276 DECLARE_SOCKADDR(struct sockaddr_x25 *, sx25, msg->msg_name);
1278 int qbit, header_len;
1279 struct sk_buff *skb;
1280 unsigned char *asmptr;
1285 if (x25->neighbour == NULL)
1288 header_len = x25->neighbour->extended ?
1289 X25_EXT_MIN_LEN : X25_STD_MIN_LEN;
1292 * This works for seqpacket too. The receiver has ordered the queue for
1293 * us! We do one quick check first though
1295 if (sk->sk_state != TCP_ESTABLISHED)
1298 if (flags & MSG_OOB) {
1300 if (sock_flag(sk, SOCK_URGINLINE) ||
1301 !skb_peek(&x25->interrupt_in_queue))
1304 skb = skb_dequeue(&x25->interrupt_in_queue);
1306 if (!pskb_may_pull(skb, X25_STD_MIN_LEN))
1307 goto out_free_dgram;
1309 skb_pull(skb, X25_STD_MIN_LEN);
1312 * No Q bit information on Interrupt data.
1314 if (test_bit(X25_Q_BIT_FLAG, &x25->flags)) {
1315 asmptr = skb_push(skb, 1);
1319 msg->msg_flags |= MSG_OOB;
1321 /* Now we can treat all alike */
1323 skb = skb_recv_datagram(sk, flags, &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);
1407 case SIOCGIFDSTADDR:
1408 case SIOCSIFDSTADDR:
1409 case SIOCGIFBRDADDR:
1410 case SIOCSIFBRDADDR:
1411 case SIOCGIFNETMASK:
1412 case SIOCSIFNETMASK:
1420 if (!capable(CAP_NET_ADMIN))
1422 rc = x25_route_ioctl(cmd, argp);
1424 case SIOCX25GSUBSCRIP:
1425 rc = x25_subscr_ioctl(cmd, argp);
1427 case SIOCX25SSUBSCRIP:
1429 if (!capable(CAP_NET_ADMIN))
1431 rc = x25_subscr_ioctl(cmd, argp);
1433 case SIOCX25GFACILITIES: {
1435 rc = copy_to_user(argp, &x25->facilities,
1436 sizeof(x25->facilities))
1442 case SIOCX25SFACILITIES: {
1443 struct x25_facilities facilities;
1445 if (copy_from_user(&facilities, argp, sizeof(facilities)))
1449 if (sk->sk_state != TCP_LISTEN &&
1450 sk->sk_state != TCP_CLOSE)
1451 goto out_fac_release;
1452 if (facilities.pacsize_in < X25_PS16 ||
1453 facilities.pacsize_in > X25_PS4096)
1454 goto out_fac_release;
1455 if (facilities.pacsize_out < X25_PS16 ||
1456 facilities.pacsize_out > X25_PS4096)
1457 goto out_fac_release;
1458 if (facilities.winsize_in < 1 ||
1459 facilities.winsize_in > 127)
1460 goto out_fac_release;
1461 if (facilities.throughput) {
1462 int out = facilities.throughput & 0xf0;
1463 int in = facilities.throughput & 0x0f;
1465 facilities.throughput |=
1466 X25_DEFAULT_THROUGHPUT << 4;
1467 else if (out < 0x30 || out > 0xD0)
1468 goto out_fac_release;
1470 facilities.throughput |=
1471 X25_DEFAULT_THROUGHPUT;
1472 else if (in < 0x03 || in > 0x0D)
1473 goto out_fac_release;
1475 if (facilities.reverse &&
1476 (facilities.reverse & 0x81) != 0x81)
1477 goto out_fac_release;
1478 x25->facilities = facilities;
1485 case SIOCX25GDTEFACILITIES: {
1487 rc = copy_to_user(argp, &x25->dte_facilities,
1488 sizeof(x25->dte_facilities));
1495 case SIOCX25SDTEFACILITIES: {
1496 struct x25_dte_facilities dtefacs;
1498 if (copy_from_user(&dtefacs, argp, sizeof(dtefacs)))
1502 if (sk->sk_state != TCP_LISTEN &&
1503 sk->sk_state != TCP_CLOSE)
1504 goto out_dtefac_release;
1505 if (dtefacs.calling_len > X25_MAX_AE_LEN)
1506 goto out_dtefac_release;
1507 if (dtefacs.called_len > X25_MAX_AE_LEN)
1508 goto out_dtefac_release;
1509 x25->dte_facilities = dtefacs;
1516 case SIOCX25GCALLUSERDATA: {
1518 rc = copy_to_user(argp, &x25->calluserdata,
1519 sizeof(x25->calluserdata))
1525 case SIOCX25SCALLUSERDATA: {
1526 struct x25_calluserdata calluserdata;
1529 if (copy_from_user(&calluserdata, argp, sizeof(calluserdata)))
1532 if (calluserdata.cudlength > X25_MAX_CUD_LEN)
1535 x25->calluserdata = calluserdata;
1541 case SIOCX25GCAUSEDIAG: {
1543 rc = copy_to_user(argp, &x25->causediag, sizeof(x25->causediag))
1549 case SIOCX25SCAUSEDIAG: {
1550 struct x25_causediag causediag;
1552 if (copy_from_user(&causediag, argp, sizeof(causediag)))
1555 x25->causediag = causediag;
1562 case SIOCX25SCUDMATCHLEN: {
1563 struct x25_subaddr sub_addr;
1566 if(sk->sk_state != TCP_CLOSE)
1567 goto out_cud_release;
1569 if (copy_from_user(&sub_addr, argp,
1571 goto out_cud_release;
1573 if (sub_addr.cudmatchlength > X25_MAX_CUD_LEN)
1574 goto out_cud_release;
1575 x25->cudmatchlength = sub_addr.cudmatchlength;
1582 case SIOCX25CALLACCPTAPPRV: {
1585 if (sk->sk_state == TCP_CLOSE) {
1586 clear_bit(X25_ACCPT_APPRV_FLAG, &x25->flags);
1593 case SIOCX25SENDCALLACCPT: {
1596 if (sk->sk_state != TCP_ESTABLISHED)
1597 goto out_sendcallaccpt_release;
1598 /* must call accptapprv above */
1599 if (test_bit(X25_ACCPT_APPRV_FLAG, &x25->flags))
1600 goto out_sendcallaccpt_release;
1601 x25_write_internal(sk, X25_CALL_ACCEPTED);
1602 x25->state = X25_STATE_3;
1604 out_sendcallaccpt_release:
1617 static const struct net_proto_family x25_family_ops = {
1619 .create = x25_create,
1620 .owner = THIS_MODULE,
1623 #ifdef CONFIG_COMPAT
1624 static int compat_x25_subscr_ioctl(unsigned int cmd,
1625 struct compat_x25_subscrip_struct __user *x25_subscr32)
1627 struct compat_x25_subscrip_struct x25_subscr;
1628 struct x25_neigh *nb;
1629 struct net_device *dev;
1633 if (copy_from_user(&x25_subscr, x25_subscr32, sizeof(*x25_subscr32)))
1637 dev = x25_dev_get(x25_subscr.device);
1641 nb = x25_get_neigh(dev);
1647 if (cmd == SIOCX25GSUBSCRIP) {
1648 read_lock_bh(&x25_neigh_list_lock);
1649 x25_subscr.extended = nb->extended;
1650 x25_subscr.global_facil_mask = nb->global_facil_mask;
1651 read_unlock_bh(&x25_neigh_list_lock);
1652 rc = copy_to_user(x25_subscr32, &x25_subscr,
1653 sizeof(*x25_subscr32)) ? -EFAULT : 0;
1656 if (x25_subscr.extended == 0 || x25_subscr.extended == 1) {
1658 write_lock_bh(&x25_neigh_list_lock);
1659 nb->extended = x25_subscr.extended;
1660 nb->global_facil_mask = x25_subscr.global_facil_mask;
1661 write_unlock_bh(&x25_neigh_list_lock);
1672 static int compat_x25_ioctl(struct socket *sock, unsigned int cmd,
1675 void __user *argp = compat_ptr(arg);
1676 int rc = -ENOIOCTLCMD;
1681 rc = x25_ioctl(sock, cmd, (unsigned long)argp);
1685 case SIOCGIFDSTADDR:
1686 case SIOCSIFDSTADDR:
1687 case SIOCGIFBRDADDR:
1688 case SIOCSIFBRDADDR:
1689 case SIOCGIFNETMASK:
1690 case SIOCSIFNETMASK:
1698 if (!capable(CAP_NET_ADMIN))
1700 rc = x25_route_ioctl(cmd, argp);
1702 case SIOCX25GSUBSCRIP:
1703 rc = compat_x25_subscr_ioctl(cmd, argp);
1705 case SIOCX25SSUBSCRIP:
1707 if (!capable(CAP_NET_ADMIN))
1709 rc = compat_x25_subscr_ioctl(cmd, argp);
1711 case SIOCX25GFACILITIES:
1712 case SIOCX25SFACILITIES:
1713 case SIOCX25GDTEFACILITIES:
1714 case SIOCX25SDTEFACILITIES:
1715 case SIOCX25GCALLUSERDATA:
1716 case SIOCX25SCALLUSERDATA:
1717 case SIOCX25GCAUSEDIAG:
1718 case SIOCX25SCAUSEDIAG:
1719 case SIOCX25SCUDMATCHLEN:
1720 case SIOCX25CALLACCPTAPPRV:
1721 case SIOCX25SENDCALLACCPT:
1722 rc = x25_ioctl(sock, cmd, (unsigned long)argp);
1732 static const struct proto_ops x25_proto_ops = {
1734 .owner = THIS_MODULE,
1735 .release = x25_release,
1737 .connect = x25_connect,
1738 .socketpair = sock_no_socketpair,
1739 .accept = x25_accept,
1740 .getname = x25_getname,
1741 .poll = datagram_poll,
1743 #ifdef CONFIG_COMPAT
1744 .compat_ioctl = compat_x25_ioctl,
1746 .gettstamp = sock_gettstamp,
1747 .listen = x25_listen,
1748 .shutdown = sock_no_shutdown,
1749 .setsockopt = x25_setsockopt,
1750 .getsockopt = x25_getsockopt,
1751 .sendmsg = x25_sendmsg,
1752 .recvmsg = x25_recvmsg,
1753 .mmap = sock_no_mmap,
1754 .sendpage = sock_no_sendpage,
1757 static struct packet_type x25_packet_type __read_mostly = {
1758 .type = cpu_to_be16(ETH_P_X25),
1759 .func = x25_lapb_receive_frame,
1762 static struct notifier_block x25_dev_notifier = {
1763 .notifier_call = x25_device_event,
1766 void x25_kill_by_neigh(struct x25_neigh *nb)
1770 write_lock_bh(&x25_list_lock);
1772 sk_for_each(s, &x25_list) {
1773 if (x25_sk(s)->neighbour == nb) {
1774 write_unlock_bh(&x25_list_lock);
1776 x25_disconnect(s, ENETUNREACH, 0, 0);
1778 write_lock_bh(&x25_list_lock);
1781 write_unlock_bh(&x25_list_lock);
1783 /* Remove any related forwards */
1784 x25_clear_forward_by_dev(nb->dev);
1787 static int __init x25_init(void)
1791 rc = proto_register(&x25_proto, 0);
1795 rc = sock_register(&x25_family_ops);
1799 dev_add_pack(&x25_packet_type);
1801 rc = register_netdevice_notifier(&x25_dev_notifier);
1805 rc = x25_register_sysctl();
1809 rc = x25_proc_init();
1813 pr_info("Linux Version 0.2\n");
1818 x25_unregister_sysctl();
1820 unregister_netdevice_notifier(&x25_dev_notifier);
1822 dev_remove_pack(&x25_packet_type);
1823 sock_unregister(AF_X25);
1825 proto_unregister(&x25_proto);
1828 module_init(x25_init);
1830 static void __exit x25_exit(void)
1836 x25_unregister_sysctl();
1838 unregister_netdevice_notifier(&x25_dev_notifier);
1840 dev_remove_pack(&x25_packet_type);
1842 sock_unregister(AF_X25);
1843 proto_unregister(&x25_proto);
1845 module_exit(x25_exit);
1848 MODULE_DESCRIPTION("The X.25 Packet Layer network layer protocol");
1849 MODULE_LICENSE("GPL");
1850 MODULE_ALIAS_NETPROTO(PF_X25);