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);
664 x25_write_internal(sk, X25_CLEAR_REQUEST);
665 x25_disconnect(sk, 0, 0, 0);
666 __x25_destroy_socket(sk);
677 static int x25_bind(struct socket *sock, struct sockaddr *uaddr, int addr_len)
679 struct sock *sk = sock->sk;
680 struct sockaddr_x25 *addr = (struct sockaddr_x25 *)uaddr;
683 if (addr_len != sizeof(struct sockaddr_x25) ||
684 addr->sx25_family != AF_X25) {
689 /* check for the null_x25_address */
690 if (strcmp(addr->sx25_addr.x25_addr, null_x25_address.x25_addr)) {
692 len = strlen(addr->sx25_addr.x25_addr);
693 for (i = 0; i < len; i++) {
694 if (!isdigit(addr->sx25_addr.x25_addr[i])) {
702 if (sock_flag(sk, SOCK_ZAPPED)) {
703 x25_sk(sk)->source_addr = addr->sx25_addr;
704 x25_insert_socket(sk);
705 sock_reset_flag(sk, SOCK_ZAPPED);
710 SOCK_DEBUG(sk, "x25_bind: socket is bound\n");
715 static int x25_wait_for_connection_establishment(struct sock *sk)
717 DECLARE_WAITQUEUE(wait, current);
720 add_wait_queue_exclusive(sk_sleep(sk), &wait);
722 __set_current_state(TASK_INTERRUPTIBLE);
724 if (signal_pending(current))
728 sk->sk_socket->state = SS_UNCONNECTED;
732 if (sk->sk_state != TCP_ESTABLISHED) {
739 __set_current_state(TASK_RUNNING);
740 remove_wait_queue(sk_sleep(sk), &wait);
744 static int x25_connect(struct socket *sock, struct sockaddr *uaddr,
745 int addr_len, int flags)
747 struct sock *sk = sock->sk;
748 struct x25_sock *x25 = x25_sk(sk);
749 struct sockaddr_x25 *addr = (struct sockaddr_x25 *)uaddr;
750 struct x25_route *rt;
754 if (sk->sk_state == TCP_ESTABLISHED && sock->state == SS_CONNECTING) {
755 sock->state = SS_CONNECTED;
756 goto out; /* Connect completed during a ERESTARTSYS event */
760 if (sk->sk_state == TCP_CLOSE && sock->state == SS_CONNECTING) {
761 sock->state = SS_UNCONNECTED;
765 rc = -EISCONN; /* No reconnect on a seqpacket socket */
766 if (sk->sk_state == TCP_ESTABLISHED)
769 rc = -EALREADY; /* Do nothing if call is already in progress */
770 if (sk->sk_state == TCP_SYN_SENT)
773 sk->sk_state = TCP_CLOSE;
774 sock->state = SS_UNCONNECTED;
777 if (addr_len != sizeof(struct sockaddr_x25) ||
778 addr->sx25_family != AF_X25)
782 rt = x25_get_route(&addr->sx25_addr);
786 x25->neighbour = x25_get_neigh(rt->dev);
790 x25_limit_facilities(&x25->facilities, x25->neighbour);
792 x25->lci = x25_new_lci(x25->neighbour);
797 if (sock_flag(sk, SOCK_ZAPPED)) /* Must bind first - autobinding does not work */
800 if (!strcmp(x25->source_addr.x25_addr, null_x25_address.x25_addr))
801 memset(&x25->source_addr, '\0', X25_ADDR_LEN);
803 x25->dest_addr = addr->sx25_addr;
805 /* Move to connecting socket, start sending Connect Requests */
806 sock->state = SS_CONNECTING;
807 sk->sk_state = TCP_SYN_SENT;
809 x25->state = X25_STATE_1;
811 x25_write_internal(sk, X25_CALL_REQUEST);
813 x25_start_heartbeat(sk);
814 x25_start_t21timer(sk);
818 if (sk->sk_state != TCP_ESTABLISHED && (flags & O_NONBLOCK))
821 rc = x25_wait_for_connection_establishment(sk);
825 sock->state = SS_CONNECTED;
829 read_lock_bh(&x25_list_lock);
830 x25_neigh_put(x25->neighbour);
831 x25->neighbour = NULL;
832 read_unlock_bh(&x25_list_lock);
833 x25->state = X25_STATE_0;
842 static int x25_wait_for_data(struct sock *sk, long timeout)
844 DECLARE_WAITQUEUE(wait, current);
847 add_wait_queue_exclusive(sk_sleep(sk), &wait);
849 __set_current_state(TASK_INTERRUPTIBLE);
850 if (sk->sk_shutdown & RCV_SHUTDOWN)
853 if (signal_pending(current))
859 if (skb_queue_empty(&sk->sk_receive_queue)) {
861 timeout = schedule_timeout(timeout);
866 __set_current_state(TASK_RUNNING);
867 remove_wait_queue(sk_sleep(sk), &wait);
871 static int x25_accept(struct socket *sock, struct socket *newsock, int flags,
874 struct sock *sk = sock->sk;
883 if (sk->sk_type != SOCK_SEQPACKET)
888 if (sk->sk_state != TCP_LISTEN)
891 rc = x25_wait_for_data(sk, sk->sk_rcvtimeo);
894 skb = skb_dequeue(&sk->sk_receive_queue);
899 sock_graft(newsk, newsock);
901 /* Now attach up the new socket */
904 sk_acceptq_removed(sk);
905 newsock->state = SS_CONNECTED;
913 static int x25_getname(struct socket *sock, struct sockaddr *uaddr,
916 struct sockaddr_x25 *sx25 = (struct sockaddr_x25 *)uaddr;
917 struct sock *sk = sock->sk;
918 struct x25_sock *x25 = x25_sk(sk);
922 if (sk->sk_state != TCP_ESTABLISHED) {
926 sx25->sx25_addr = x25->dest_addr;
928 sx25->sx25_addr = x25->source_addr;
930 sx25->sx25_family = AF_X25;
937 int x25_rx_call_request(struct sk_buff *skb, struct x25_neigh *nb,
942 struct x25_sock *makex25;
943 struct x25_address source_addr, dest_addr;
944 struct x25_facilities facilities;
945 struct x25_dte_facilities dte_facilities;
946 int len, addr_len, rc;
949 * Remove the LCI and frame type.
951 skb_pull(skb, X25_STD_MIN_LEN);
954 * Extract the X.25 addresses and convert them to ASCII strings,
957 * Address block is mandatory in call request packets
959 addr_len = x25_parse_address_block(skb, &source_addr, &dest_addr);
961 goto out_clear_request;
962 skb_pull(skb, addr_len);
965 * Get the length of the facilities, skip past them for the moment
966 * get the call user data because this is needed to determine
967 * the correct listener
969 * Facilities length is mandatory in call request packets
971 if (!pskb_may_pull(skb, 1))
972 goto out_clear_request;
973 len = skb->data[0] + 1;
974 if (!pskb_may_pull(skb, len))
975 goto out_clear_request;
979 * Ensure that the amount of call user data is valid.
981 if (skb->len > X25_MAX_CUD_LEN)
982 goto out_clear_request;
985 * Get all the call user data so it can be used in
986 * x25_find_listener and skb_copy_from_linear_data up ahead.
988 if (!pskb_may_pull(skb, skb->len))
989 goto out_clear_request;
992 * Find a listener for the particular address/cud pair.
994 sk = x25_find_listener(&source_addr,skb);
997 if (sk != NULL && sk_acceptq_is_full(sk)) {
1002 * We dont have any listeners for this incoming call.
1003 * Try forwarding it.
1006 skb_push(skb, addr_len + X25_STD_MIN_LEN);
1007 if (sysctl_x25_forward &&
1008 x25_forward_call(&dest_addr, nb, skb, lci) > 0)
1010 /* Call was forwarded, dont process it any more */
1015 /* No listeners, can't forward, clear the call */
1016 goto out_clear_request;
1021 * Try to reach a compromise on the requested facilities.
1023 len = x25_negotiate_facilities(skb, sk, &facilities, &dte_facilities);
1028 * current neighbour/link might impose additional limits
1029 * on certain facilties
1032 x25_limit_facilities(&facilities, nb);
1035 * Try to create a new socket.
1037 make = x25_make_new(sk);
1042 * Remove the facilities
1047 make->sk_state = TCP_ESTABLISHED;
1049 makex25 = x25_sk(make);
1051 makex25->dest_addr = dest_addr;
1052 makex25->source_addr = source_addr;
1053 makex25->neighbour = nb;
1054 makex25->facilities = facilities;
1055 makex25->dte_facilities= dte_facilities;
1056 makex25->vc_facil_mask = x25_sk(sk)->vc_facil_mask;
1057 /* ensure no reverse facil on accept */
1058 makex25->vc_facil_mask &= ~X25_MASK_REVERSE;
1059 /* ensure no calling address extension on accept */
1060 makex25->vc_facil_mask &= ~X25_MASK_CALLING_AE;
1061 makex25->cudmatchlength = x25_sk(sk)->cudmatchlength;
1063 /* Normally all calls are accepted immediately */
1064 if (test_bit(X25_ACCPT_APPRV_FLAG, &makex25->flags)) {
1065 x25_write_internal(make, X25_CALL_ACCEPTED);
1066 makex25->state = X25_STATE_3;
1068 makex25->state = X25_STATE_5;
1072 * Incoming Call User Data.
1074 skb_copy_from_linear_data(skb, makex25->calluserdata.cuddata, skb->len);
1075 makex25->calluserdata.cudlength = skb->len;
1077 sk_acceptq_added(sk);
1079 x25_insert_socket(make);
1081 skb_queue_head(&sk->sk_receive_queue, skb);
1083 x25_start_heartbeat(make);
1085 if (!sock_flag(sk, SOCK_DEAD))
1086 sk->sk_data_ready(sk);
1095 x25_transmit_clear_request(nb, lci, 0x01);
1099 static int x25_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
1101 struct sock *sk = sock->sk;
1102 struct x25_sock *x25 = x25_sk(sk);
1103 DECLARE_SOCKADDR(struct sockaddr_x25 *, usx25, msg->msg_name);
1104 struct sockaddr_x25 sx25;
1105 struct sk_buff *skb;
1106 unsigned char *asmptr;
1107 int noblock = msg->msg_flags & MSG_DONTWAIT;
1109 int qbit = 0, rc = -EINVAL;
1112 if (msg->msg_flags & ~(MSG_DONTWAIT|MSG_OOB|MSG_EOR|MSG_CMSG_COMPAT))
1115 /* we currently don't support segmented records at the user interface */
1116 if (!(msg->msg_flags & (MSG_EOR|MSG_OOB)))
1119 rc = -EADDRNOTAVAIL;
1120 if (sock_flag(sk, SOCK_ZAPPED))
1124 if (sk->sk_shutdown & SEND_SHUTDOWN) {
1125 send_sig(SIGPIPE, current, 0);
1130 if (!x25->neighbour)
1135 if (msg->msg_namelen < sizeof(sx25))
1137 memcpy(&sx25, usx25, sizeof(sx25));
1139 if (strcmp(x25->dest_addr.x25_addr, sx25.sx25_addr.x25_addr))
1142 if (sx25.sx25_family != AF_X25)
1146 * FIXME 1003.1g - if the socket is like this because
1147 * it has become closed (not started closed) we ought
1148 * to SIGPIPE, EPIPE;
1151 if (sk->sk_state != TCP_ESTABLISHED)
1154 sx25.sx25_family = AF_X25;
1155 sx25.sx25_addr = x25->dest_addr;
1158 /* Sanity check the packet size */
1164 SOCK_DEBUG(sk, "x25_sendmsg: sendto: Addresses built.\n");
1166 /* Build a packet */
1167 SOCK_DEBUG(sk, "x25_sendmsg: sendto: building packet.\n");
1169 if ((msg->msg_flags & MSG_OOB) && len > 32)
1172 size = len + X25_MAX_L2_LEN + X25_EXT_MIN_LEN;
1175 skb = sock_alloc_send_skb(sk, size, noblock, &rc);
1179 X25_SKB_CB(skb)->flags = msg->msg_flags;
1181 skb_reserve(skb, X25_MAX_L2_LEN + X25_EXT_MIN_LEN);
1184 * Put the data on the end
1186 SOCK_DEBUG(sk, "x25_sendmsg: Copying user data\n");
1188 skb_reset_transport_header(skb);
1191 rc = memcpy_from_msg(skb_transport_header(skb), msg, len);
1196 * If the Q BIT Include socket option is in force, the first
1197 * byte of the user data is the logical value of the Q Bit.
1199 if (test_bit(X25_Q_BIT_FLAG, &x25->flags)) {
1200 if (!pskb_may_pull(skb, 1))
1203 qbit = skb->data[0];
1208 * Push down the X.25 header
1210 SOCK_DEBUG(sk, "x25_sendmsg: Building X.25 Header.\n");
1212 if (msg->msg_flags & MSG_OOB) {
1213 if (x25->neighbour->extended) {
1214 asmptr = skb_push(skb, X25_STD_MIN_LEN);
1215 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_EXTSEQ;
1216 *asmptr++ = (x25->lci >> 0) & 0xFF;
1217 *asmptr++ = X25_INTERRUPT;
1219 asmptr = skb_push(skb, X25_STD_MIN_LEN);
1220 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_STDSEQ;
1221 *asmptr++ = (x25->lci >> 0) & 0xFF;
1222 *asmptr++ = X25_INTERRUPT;
1225 if (x25->neighbour->extended) {
1226 /* Build an Extended X.25 header */
1227 asmptr = skb_push(skb, X25_EXT_MIN_LEN);
1228 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_EXTSEQ;
1229 *asmptr++ = (x25->lci >> 0) & 0xFF;
1230 *asmptr++ = X25_DATA;
1231 *asmptr++ = X25_DATA;
1233 /* Build an Standard X.25 header */
1234 asmptr = skb_push(skb, X25_STD_MIN_LEN);
1235 *asmptr++ = ((x25->lci >> 8) & 0x0F) | X25_GFI_STDSEQ;
1236 *asmptr++ = (x25->lci >> 0) & 0xFF;
1237 *asmptr++ = X25_DATA;
1241 skb->data[0] |= X25_Q_BIT;
1244 SOCK_DEBUG(sk, "x25_sendmsg: Built header.\n");
1245 SOCK_DEBUG(sk, "x25_sendmsg: Transmitting buffer\n");
1248 if (sk->sk_state != TCP_ESTABLISHED)
1251 if (msg->msg_flags & MSG_OOB)
1252 skb_queue_tail(&x25->interrupt_out_queue, skb);
1254 rc = x25_output(sk, skb);
1258 else if (test_bit(X25_Q_BIT_FLAG, &x25->flags))
1273 static int x25_recvmsg(struct socket *sock, struct msghdr *msg, size_t size,
1276 struct sock *sk = sock->sk;
1277 struct x25_sock *x25 = x25_sk(sk);
1278 DECLARE_SOCKADDR(struct sockaddr_x25 *, sx25, msg->msg_name);
1280 int qbit, header_len;
1281 struct sk_buff *skb;
1282 unsigned char *asmptr;
1287 if (x25->neighbour == NULL)
1290 header_len = x25->neighbour->extended ?
1291 X25_EXT_MIN_LEN : X25_STD_MIN_LEN;
1294 * This works for seqpacket too. The receiver has ordered the queue for
1295 * us! We do one quick check first though
1297 if (sk->sk_state != TCP_ESTABLISHED)
1300 if (flags & MSG_OOB) {
1302 if (sock_flag(sk, SOCK_URGINLINE) ||
1303 !skb_peek(&x25->interrupt_in_queue))
1306 skb = skb_dequeue(&x25->interrupt_in_queue);
1308 if (!pskb_may_pull(skb, X25_STD_MIN_LEN))
1309 goto out_free_dgram;
1311 skb_pull(skb, X25_STD_MIN_LEN);
1314 * No Q bit information on Interrupt data.
1316 if (test_bit(X25_Q_BIT_FLAG, &x25->flags)) {
1317 asmptr = skb_push(skb, 1);
1321 msg->msg_flags |= MSG_OOB;
1323 /* Now we can treat all alike */
1325 skb = skb_recv_datagram(sk, flags & ~MSG_DONTWAIT,
1326 flags & MSG_DONTWAIT, &rc);
1331 if (!pskb_may_pull(skb, header_len))
1332 goto out_free_dgram;
1334 qbit = (skb->data[0] & X25_Q_BIT) == X25_Q_BIT;
1336 skb_pull(skb, header_len);
1338 if (test_bit(X25_Q_BIT_FLAG, &x25->flags)) {
1339 asmptr = skb_push(skb, 1);
1344 skb_reset_transport_header(skb);
1347 if (copied > size) {
1349 msg->msg_flags |= MSG_TRUNC;
1352 /* Currently, each datagram always contains a complete record */
1353 msg->msg_flags |= MSG_EOR;
1355 rc = skb_copy_datagram_msg(skb, 0, msg, copied);
1357 goto out_free_dgram;
1360 sx25->sx25_family = AF_X25;
1361 sx25->sx25_addr = x25->dest_addr;
1362 msg->msg_namelen = sizeof(*sx25);
1368 skb_free_datagram(sk, skb);
1375 static int x25_ioctl(struct socket *sock, unsigned int cmd, unsigned long arg)
1377 struct sock *sk = sock->sk;
1378 struct x25_sock *x25 = x25_sk(sk);
1379 void __user *argp = (void __user *)arg;
1386 amount = sk->sk_sndbuf - sk_wmem_alloc_get(sk);
1389 rc = put_user(amount, (unsigned int __user *)argp);
1394 struct sk_buff *skb;
1397 * These two are safe on a single CPU system as
1398 * only user tasks fiddle here
1401 if ((skb = skb_peek(&sk->sk_receive_queue)) != NULL)
1404 rc = put_user(amount, (unsigned int __user *)argp);
1410 case SIOCGIFDSTADDR:
1411 case SIOCSIFDSTADDR:
1412 case SIOCGIFBRDADDR:
1413 case SIOCSIFBRDADDR:
1414 case SIOCGIFNETMASK:
1415 case SIOCSIFNETMASK:
1423 if (!capable(CAP_NET_ADMIN))
1425 rc = x25_route_ioctl(cmd, argp);
1427 case SIOCX25GSUBSCRIP:
1428 rc = x25_subscr_ioctl(cmd, argp);
1430 case SIOCX25SSUBSCRIP:
1432 if (!capable(CAP_NET_ADMIN))
1434 rc = x25_subscr_ioctl(cmd, argp);
1436 case SIOCX25GFACILITIES: {
1438 rc = copy_to_user(argp, &x25->facilities,
1439 sizeof(x25->facilities))
1445 case SIOCX25SFACILITIES: {
1446 struct x25_facilities facilities;
1448 if (copy_from_user(&facilities, argp, sizeof(facilities)))
1452 if (sk->sk_state != TCP_LISTEN &&
1453 sk->sk_state != TCP_CLOSE)
1454 goto out_fac_release;
1455 if (facilities.pacsize_in < X25_PS16 ||
1456 facilities.pacsize_in > X25_PS4096)
1457 goto out_fac_release;
1458 if (facilities.pacsize_out < X25_PS16 ||
1459 facilities.pacsize_out > X25_PS4096)
1460 goto out_fac_release;
1461 if (facilities.winsize_in < 1 ||
1462 facilities.winsize_in > 127)
1463 goto out_fac_release;
1464 if (facilities.throughput) {
1465 int out = facilities.throughput & 0xf0;
1466 int in = facilities.throughput & 0x0f;
1468 facilities.throughput |=
1469 X25_DEFAULT_THROUGHPUT << 4;
1470 else if (out < 0x30 || out > 0xD0)
1471 goto out_fac_release;
1473 facilities.throughput |=
1474 X25_DEFAULT_THROUGHPUT;
1475 else if (in < 0x03 || in > 0x0D)
1476 goto out_fac_release;
1478 if (facilities.reverse &&
1479 (facilities.reverse & 0x81) != 0x81)
1480 goto out_fac_release;
1481 x25->facilities = facilities;
1488 case SIOCX25GDTEFACILITIES: {
1490 rc = copy_to_user(argp, &x25->dte_facilities,
1491 sizeof(x25->dte_facilities));
1498 case SIOCX25SDTEFACILITIES: {
1499 struct x25_dte_facilities dtefacs;
1501 if (copy_from_user(&dtefacs, argp, sizeof(dtefacs)))
1505 if (sk->sk_state != TCP_LISTEN &&
1506 sk->sk_state != TCP_CLOSE)
1507 goto out_dtefac_release;
1508 if (dtefacs.calling_len > X25_MAX_AE_LEN)
1509 goto out_dtefac_release;
1510 if (dtefacs.called_len > X25_MAX_AE_LEN)
1511 goto out_dtefac_release;
1512 x25->dte_facilities = dtefacs;
1519 case SIOCX25GCALLUSERDATA: {
1521 rc = copy_to_user(argp, &x25->calluserdata,
1522 sizeof(x25->calluserdata))
1528 case SIOCX25SCALLUSERDATA: {
1529 struct x25_calluserdata calluserdata;
1532 if (copy_from_user(&calluserdata, argp, sizeof(calluserdata)))
1535 if (calluserdata.cudlength > X25_MAX_CUD_LEN)
1538 x25->calluserdata = calluserdata;
1544 case SIOCX25GCAUSEDIAG: {
1546 rc = copy_to_user(argp, &x25->causediag, sizeof(x25->causediag))
1552 case SIOCX25SCAUSEDIAG: {
1553 struct x25_causediag causediag;
1555 if (copy_from_user(&causediag, argp, sizeof(causediag)))
1558 x25->causediag = causediag;
1565 case SIOCX25SCUDMATCHLEN: {
1566 struct x25_subaddr sub_addr;
1569 if(sk->sk_state != TCP_CLOSE)
1570 goto out_cud_release;
1572 if (copy_from_user(&sub_addr, argp,
1574 goto out_cud_release;
1576 if (sub_addr.cudmatchlength > X25_MAX_CUD_LEN)
1577 goto out_cud_release;
1578 x25->cudmatchlength = sub_addr.cudmatchlength;
1585 case SIOCX25CALLACCPTAPPRV: {
1588 if (sk->sk_state == TCP_CLOSE) {
1589 clear_bit(X25_ACCPT_APPRV_FLAG, &x25->flags);
1596 case SIOCX25SENDCALLACCPT: {
1599 if (sk->sk_state != TCP_ESTABLISHED)
1600 goto out_sendcallaccpt_release;
1601 /* must call accptapprv above */
1602 if (test_bit(X25_ACCPT_APPRV_FLAG, &x25->flags))
1603 goto out_sendcallaccpt_release;
1604 x25_write_internal(sk, X25_CALL_ACCEPTED);
1605 x25->state = X25_STATE_3;
1607 out_sendcallaccpt_release:
1620 static const struct net_proto_family x25_family_ops = {
1622 .create = x25_create,
1623 .owner = THIS_MODULE,
1626 #ifdef CONFIG_COMPAT
1627 static int compat_x25_subscr_ioctl(unsigned int cmd,
1628 struct compat_x25_subscrip_struct __user *x25_subscr32)
1630 struct compat_x25_subscrip_struct x25_subscr;
1631 struct x25_neigh *nb;
1632 struct net_device *dev;
1636 if (copy_from_user(&x25_subscr, x25_subscr32, sizeof(*x25_subscr32)))
1640 dev = x25_dev_get(x25_subscr.device);
1644 nb = x25_get_neigh(dev);
1650 if (cmd == SIOCX25GSUBSCRIP) {
1651 read_lock_bh(&x25_neigh_list_lock);
1652 x25_subscr.extended = nb->extended;
1653 x25_subscr.global_facil_mask = nb->global_facil_mask;
1654 read_unlock_bh(&x25_neigh_list_lock);
1655 rc = copy_to_user(x25_subscr32, &x25_subscr,
1656 sizeof(*x25_subscr32)) ? -EFAULT : 0;
1659 if (x25_subscr.extended == 0 || x25_subscr.extended == 1) {
1661 write_lock_bh(&x25_neigh_list_lock);
1662 nb->extended = x25_subscr.extended;
1663 nb->global_facil_mask = x25_subscr.global_facil_mask;
1664 write_unlock_bh(&x25_neigh_list_lock);
1675 static int compat_x25_ioctl(struct socket *sock, unsigned int cmd,
1678 void __user *argp = compat_ptr(arg);
1679 int rc = -ENOIOCTLCMD;
1684 rc = x25_ioctl(sock, cmd, (unsigned long)argp);
1688 case SIOCGIFDSTADDR:
1689 case SIOCSIFDSTADDR:
1690 case SIOCGIFBRDADDR:
1691 case SIOCSIFBRDADDR:
1692 case SIOCGIFNETMASK:
1693 case SIOCSIFNETMASK:
1701 if (!capable(CAP_NET_ADMIN))
1703 rc = x25_route_ioctl(cmd, argp);
1705 case SIOCX25GSUBSCRIP:
1706 rc = compat_x25_subscr_ioctl(cmd, argp);
1708 case SIOCX25SSUBSCRIP:
1710 if (!capable(CAP_NET_ADMIN))
1712 rc = compat_x25_subscr_ioctl(cmd, argp);
1714 case SIOCX25GFACILITIES:
1715 case SIOCX25SFACILITIES:
1716 case SIOCX25GDTEFACILITIES:
1717 case SIOCX25SDTEFACILITIES:
1718 case SIOCX25GCALLUSERDATA:
1719 case SIOCX25SCALLUSERDATA:
1720 case SIOCX25GCAUSEDIAG:
1721 case SIOCX25SCAUSEDIAG:
1722 case SIOCX25SCUDMATCHLEN:
1723 case SIOCX25CALLACCPTAPPRV:
1724 case SIOCX25SENDCALLACCPT:
1725 rc = x25_ioctl(sock, cmd, (unsigned long)argp);
1735 static const struct proto_ops x25_proto_ops = {
1737 .owner = THIS_MODULE,
1738 .release = x25_release,
1740 .connect = x25_connect,
1741 .socketpair = sock_no_socketpair,
1742 .accept = x25_accept,
1743 .getname = x25_getname,
1744 .poll = datagram_poll,
1746 #ifdef CONFIG_COMPAT
1747 .compat_ioctl = compat_x25_ioctl,
1749 .gettstamp = sock_gettstamp,
1750 .listen = x25_listen,
1751 .shutdown = sock_no_shutdown,
1752 .setsockopt = x25_setsockopt,
1753 .getsockopt = x25_getsockopt,
1754 .sendmsg = x25_sendmsg,
1755 .recvmsg = x25_recvmsg,
1756 .mmap = sock_no_mmap,
1757 .sendpage = sock_no_sendpage,
1760 static struct packet_type x25_packet_type __read_mostly = {
1761 .type = cpu_to_be16(ETH_P_X25),
1762 .func = x25_lapb_receive_frame,
1765 static struct notifier_block x25_dev_notifier = {
1766 .notifier_call = x25_device_event,
1769 void x25_kill_by_neigh(struct x25_neigh *nb)
1773 write_lock_bh(&x25_list_lock);
1775 sk_for_each(s, &x25_list)
1776 if (x25_sk(s)->neighbour == nb)
1777 x25_disconnect(s, ENETUNREACH, 0, 0);
1779 write_unlock_bh(&x25_list_lock);
1781 /* Remove any related forwards */
1782 x25_clear_forward_by_dev(nb->dev);
1785 static int __init x25_init(void)
1789 rc = proto_register(&x25_proto, 0);
1793 rc = sock_register(&x25_family_ops);
1797 dev_add_pack(&x25_packet_type);
1799 rc = register_netdevice_notifier(&x25_dev_notifier);
1803 rc = x25_register_sysctl();
1807 rc = x25_proc_init();
1811 pr_info("Linux Version 0.2\n");
1816 x25_unregister_sysctl();
1818 unregister_netdevice_notifier(&x25_dev_notifier);
1820 dev_remove_pack(&x25_packet_type);
1821 sock_unregister(AF_X25);
1823 proto_unregister(&x25_proto);
1826 module_init(x25_init);
1828 static void __exit x25_exit(void)
1834 x25_unregister_sysctl();
1836 unregister_netdevice_notifier(&x25_dev_notifier);
1838 dev_remove_pack(&x25_packet_type);
1840 sock_unregister(AF_X25);
1841 proto_unregister(&x25_proto);
1843 module_exit(x25_exit);
1846 MODULE_DESCRIPTION("The X.25 Packet Layer network layer protocol");
1847 MODULE_LICENSE("GPL");
1848 MODULE_ALIAS_NETPROTO(PF_X25);