2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * Copyright (C) Jonathan Naylor G4KLX (g4klx@g4klx.demon.co.uk)
8 * Copyright (C) Alan Cox GW4PTS (alan@lxorguk.ukuu.org.uk)
9 * Copyright (C) Terry Dawson VK2KTJ (terry@animats.net)
10 * Copyright (C) Tomi Manninen OH2BNS (oh2bns@sral.fi)
13 #include <linux/capability.h>
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/init.h>
17 #include <linux/errno.h>
18 #include <linux/types.h>
19 #include <linux/socket.h>
21 #include <linux/kernel.h>
22 #include <linux/sched.h>
23 #include <linux/spinlock.h>
24 #include <linux/timer.h>
25 #include <linux/string.h>
26 #include <linux/sockios.h>
27 #include <linux/net.h>
28 #include <linux/stat.h>
29 #include <net/net_namespace.h>
31 #include <linux/inet.h>
32 #include <linux/netdevice.h>
33 #include <linux/if_arp.h>
34 #include <linux/skbuff.h>
36 #include <asm/system.h>
37 #include <asm/uaccess.h>
38 #include <linux/fcntl.h>
39 #include <linux/termios.h>
41 #include <linux/interrupt.h>
42 #include <linux/notifier.h>
44 #include <linux/proc_fs.h>
45 #include <linux/seq_file.h>
46 #include <net/tcp_states.h>
50 static int rose_ndevs
= 10;
52 int sysctl_rose_restart_request_timeout
= ROSE_DEFAULT_T0
;
53 int sysctl_rose_call_request_timeout
= ROSE_DEFAULT_T1
;
54 int sysctl_rose_reset_request_timeout
= ROSE_DEFAULT_T2
;
55 int sysctl_rose_clear_request_timeout
= ROSE_DEFAULT_T3
;
56 int sysctl_rose_no_activity_timeout
= ROSE_DEFAULT_IDLE
;
57 int sysctl_rose_ack_hold_back_timeout
= ROSE_DEFAULT_HB
;
58 int sysctl_rose_routing_control
= ROSE_DEFAULT_ROUTING
;
59 int sysctl_rose_link_fail_timeout
= ROSE_DEFAULT_FAIL_TIMEOUT
;
60 int sysctl_rose_maximum_vcs
= ROSE_DEFAULT_MAXVC
;
61 int sysctl_rose_window_size
= ROSE_DEFAULT_WINDOW_SIZE
;
63 static HLIST_HEAD(rose_list
);
64 static DEFINE_SPINLOCK(rose_list_lock
);
66 static struct proto_ops rose_proto_ops
;
68 ax25_address rose_callsign
;
71 * ROSE network devices are virtual network devices encapsulating ROSE
72 * frames into AX.25 which will be sent through an AX.25 device, so form a
73 * special "super class" of normal net devices; split their locks off into a
74 * separate class since they always nest.
76 static struct lock_class_key rose_netdev_xmit_lock_key
;
77 static struct lock_class_key rose_netdev_addr_lock_key
;
79 static void rose_set_lockdep_one(struct net_device
*dev
,
80 struct netdev_queue
*txq
,
83 lockdep_set_class(&txq
->_xmit_lock
, &rose_netdev_xmit_lock_key
);
86 static void rose_set_lockdep_key(struct net_device
*dev
)
88 lockdep_set_class(&dev
->addr_list_lock
, &rose_netdev_addr_lock_key
);
89 netdev_for_each_tx_queue(dev
, rose_set_lockdep_one
, NULL
);
93 * Convert a ROSE address into text.
95 const char *rose2asc(const rose_address
*addr
)
97 static char buffer
[11];
99 if (addr
->rose_addr
[0] == 0x00 && addr
->rose_addr
[1] == 0x00 &&
100 addr
->rose_addr
[2] == 0x00 && addr
->rose_addr
[3] == 0x00 &&
101 addr
->rose_addr
[4] == 0x00) {
104 sprintf(buffer
, "%02X%02X%02X%02X%02X", addr
->rose_addr
[0] & 0xFF,
105 addr
->rose_addr
[1] & 0xFF,
106 addr
->rose_addr
[2] & 0xFF,
107 addr
->rose_addr
[3] & 0xFF,
108 addr
->rose_addr
[4] & 0xFF);
115 * Compare two ROSE addresses, 0 == equal.
117 int rosecmp(rose_address
*addr1
, rose_address
*addr2
)
121 for (i
= 0; i
< 5; i
++)
122 if (addr1
->rose_addr
[i
] != addr2
->rose_addr
[i
])
129 * Compare two ROSE addresses for only mask digits, 0 == equal.
131 int rosecmpm(rose_address
*addr1
, rose_address
*addr2
, unsigned short mask
)
138 for (i
= 0; i
< mask
; i
++) {
142 if ((addr1
->rose_addr
[j
] & 0x0F) != (addr2
->rose_addr
[j
] & 0x0F))
145 if ((addr1
->rose_addr
[j
] & 0xF0) != (addr2
->rose_addr
[j
] & 0xF0))
154 * Socket removal during an interrupt is now safe.
156 static void rose_remove_socket(struct sock
*sk
)
158 spin_lock_bh(&rose_list_lock
);
159 sk_del_node_init(sk
);
160 spin_unlock_bh(&rose_list_lock
);
164 * Kill all bound sockets on a broken link layer connection to a
165 * particular neighbour.
167 void rose_kill_by_neigh(struct rose_neigh
*neigh
)
170 struct hlist_node
*node
;
172 spin_lock_bh(&rose_list_lock
);
173 sk_for_each(s
, node
, &rose_list
) {
174 struct rose_sock
*rose
= rose_sk(s
);
176 if (rose
->neighbour
== neigh
) {
177 rose_disconnect(s
, ENETUNREACH
, ROSE_OUT_OF_ORDER
, 0);
178 rose
->neighbour
->use
--;
179 rose
->neighbour
= NULL
;
182 spin_unlock_bh(&rose_list_lock
);
186 * Kill all bound sockets on a dropped device.
188 static void rose_kill_by_device(struct net_device
*dev
)
191 struct hlist_node
*node
;
193 spin_lock_bh(&rose_list_lock
);
194 sk_for_each(s
, node
, &rose_list
) {
195 struct rose_sock
*rose
= rose_sk(s
);
197 if (rose
->device
== dev
) {
198 rose_disconnect(s
, ENETUNREACH
, ROSE_OUT_OF_ORDER
, 0);
199 rose
->neighbour
->use
--;
203 spin_unlock_bh(&rose_list_lock
);
207 * Handle device status changes.
209 static int rose_device_event(struct notifier_block
*this, unsigned long event
,
212 struct net_device
*dev
= (struct net_device
*)ptr
;
214 if (!net_eq(dev_net(dev
), &init_net
))
217 if (event
!= NETDEV_DOWN
)
222 rose_kill_by_device(dev
);
225 rose_link_device_down(dev
);
226 rose_rt_device_down(dev
);
234 * Add a socket to the bound sockets list.
236 static void rose_insert_socket(struct sock
*sk
)
239 spin_lock_bh(&rose_list_lock
);
240 sk_add_node(sk
, &rose_list
);
241 spin_unlock_bh(&rose_list_lock
);
245 * Find a socket that wants to accept the Call Request we just
248 static struct sock
*rose_find_listener(rose_address
*addr
, ax25_address
*call
)
251 struct hlist_node
*node
;
253 spin_lock_bh(&rose_list_lock
);
254 sk_for_each(s
, node
, &rose_list
) {
255 struct rose_sock
*rose
= rose_sk(s
);
257 if (!rosecmp(&rose
->source_addr
, addr
) &&
258 !ax25cmp(&rose
->source_call
, call
) &&
259 !rose
->source_ndigis
&& s
->sk_state
== TCP_LISTEN
)
263 sk_for_each(s
, node
, &rose_list
) {
264 struct rose_sock
*rose
= rose_sk(s
);
266 if (!rosecmp(&rose
->source_addr
, addr
) &&
267 !ax25cmp(&rose
->source_call
, &null_ax25_address
) &&
268 s
->sk_state
== TCP_LISTEN
)
273 spin_unlock_bh(&rose_list_lock
);
278 * Find a connected ROSE socket given my LCI and device.
280 struct sock
*rose_find_socket(unsigned int lci
, struct rose_neigh
*neigh
)
283 struct hlist_node
*node
;
285 spin_lock_bh(&rose_list_lock
);
286 sk_for_each(s
, node
, &rose_list
) {
287 struct rose_sock
*rose
= rose_sk(s
);
289 if (rose
->lci
== lci
&& rose
->neighbour
== neigh
)
294 spin_unlock_bh(&rose_list_lock
);
299 * Find a unique LCI for a given device.
301 unsigned int rose_new_lci(struct rose_neigh
*neigh
)
305 if (neigh
->dce_mode
) {
306 for (lci
= 1; lci
<= sysctl_rose_maximum_vcs
; lci
++)
307 if (rose_find_socket(lci
, neigh
) == NULL
&& rose_route_free_lci(lci
, neigh
) == NULL
)
310 for (lci
= sysctl_rose_maximum_vcs
; lci
> 0; lci
--)
311 if (rose_find_socket(lci
, neigh
) == NULL
&& rose_route_free_lci(lci
, neigh
) == NULL
)
321 void rose_destroy_socket(struct sock
*);
324 * Handler for deferred kills.
326 static void rose_destroy_timer(unsigned long data
)
328 rose_destroy_socket((struct sock
*)data
);
332 * This is called from user mode and the timers. Thus it protects itself
333 * against interrupt users but doesn't worry about being called during
334 * work. Once it is removed from the queue no interrupt or bottom half
335 * will touch it and we are (fairly 8-) ) safe.
337 void rose_destroy_socket(struct sock
*sk
)
341 rose_remove_socket(sk
);
342 rose_stop_heartbeat(sk
);
343 rose_stop_idletimer(sk
);
346 rose_clear_queues(sk
); /* Flush the queues */
348 while ((skb
= skb_dequeue(&sk
->sk_receive_queue
)) != NULL
) {
349 if (skb
->sk
!= sk
) { /* A pending connection */
350 /* Queue the unaccepted socket for death */
351 sock_set_flag(skb
->sk
, SOCK_DEAD
);
352 rose_start_heartbeat(skb
->sk
);
353 rose_sk(skb
->sk
)->state
= ROSE_STATE_0
;
359 if (atomic_read(&sk
->sk_wmem_alloc
) ||
360 atomic_read(&sk
->sk_rmem_alloc
)) {
361 /* Defer: outstanding buffers */
362 setup_timer(&sk
->sk_timer
, rose_destroy_timer
,
364 sk
->sk_timer
.expires
= jiffies
+ 10 * HZ
;
365 add_timer(&sk
->sk_timer
);
371 * Handling for system calls applied via the various interfaces to a
372 * ROSE socket object.
375 static int rose_setsockopt(struct socket
*sock
, int level
, int optname
,
376 char __user
*optval
, int optlen
)
378 struct sock
*sk
= sock
->sk
;
379 struct rose_sock
*rose
= rose_sk(sk
);
382 if (level
!= SOL_ROSE
)
385 if (optlen
< sizeof(int))
388 if (get_user(opt
, (int __user
*)optval
))
393 rose
->defer
= opt
? 1 : 0;
423 rose
->idle
= opt
* 60 * HZ
;
427 rose
->qbitincl
= opt
? 1 : 0;
435 static int rose_getsockopt(struct socket
*sock
, int level
, int optname
,
436 char __user
*optval
, int __user
*optlen
)
438 struct sock
*sk
= sock
->sk
;
439 struct rose_sock
*rose
= rose_sk(sk
);
443 if (level
!= SOL_ROSE
)
446 if (get_user(len
, optlen
))
474 val
= rose
->idle
/ (60 * HZ
);
478 val
= rose
->qbitincl
;
485 len
= min_t(unsigned int, len
, sizeof(int));
487 if (put_user(len
, optlen
))
490 return copy_to_user(optval
, &val
, len
) ? -EFAULT
: 0;
493 static int rose_listen(struct socket
*sock
, int backlog
)
495 struct sock
*sk
= sock
->sk
;
497 if (sk
->sk_state
!= TCP_LISTEN
) {
498 struct rose_sock
*rose
= rose_sk(sk
);
500 rose
->dest_ndigis
= 0;
501 memset(&rose
->dest_addr
, 0, ROSE_ADDR_LEN
);
502 memset(&rose
->dest_call
, 0, AX25_ADDR_LEN
);
503 memset(rose
->dest_digis
, 0, AX25_ADDR_LEN
* ROSE_MAX_DIGIS
);
504 sk
->sk_max_ack_backlog
= backlog
;
505 sk
->sk_state
= TCP_LISTEN
;
512 static struct proto rose_proto
= {
514 .owner
= THIS_MODULE
,
515 .obj_size
= sizeof(struct rose_sock
),
518 static int rose_create(struct net
*net
, struct socket
*sock
, int protocol
)
521 struct rose_sock
*rose
;
523 if (net
!= &init_net
)
524 return -EAFNOSUPPORT
;
526 if (sock
->type
!= SOCK_SEQPACKET
|| protocol
!= 0)
527 return -ESOCKTNOSUPPORT
;
529 sk
= sk_alloc(net
, PF_ROSE
, GFP_ATOMIC
, &rose_proto
);
535 sock_init_data(sock
, sk
);
537 skb_queue_head_init(&rose
->ack_queue
);
539 skb_queue_head_init(&rose
->frag_queue
);
543 sock
->ops
= &rose_proto_ops
;
544 sk
->sk_protocol
= protocol
;
546 init_timer(&rose
->timer
);
547 init_timer(&rose
->idletimer
);
549 rose
->t1
= msecs_to_jiffies(sysctl_rose_call_request_timeout
);
550 rose
->t2
= msecs_to_jiffies(sysctl_rose_reset_request_timeout
);
551 rose
->t3
= msecs_to_jiffies(sysctl_rose_clear_request_timeout
);
552 rose
->hb
= msecs_to_jiffies(sysctl_rose_ack_hold_back_timeout
);
553 rose
->idle
= msecs_to_jiffies(sysctl_rose_no_activity_timeout
);
555 rose
->state
= ROSE_STATE_0
;
560 static struct sock
*rose_make_new(struct sock
*osk
)
563 struct rose_sock
*rose
, *orose
;
565 if (osk
->sk_type
!= SOCK_SEQPACKET
)
568 sk
= sk_alloc(sock_net(osk
), PF_ROSE
, GFP_ATOMIC
, &rose_proto
);
574 sock_init_data(NULL
, sk
);
576 skb_queue_head_init(&rose
->ack_queue
);
578 skb_queue_head_init(&rose
->frag_queue
);
582 sk
->sk_type
= osk
->sk_type
;
583 sk
->sk_priority
= osk
->sk_priority
;
584 sk
->sk_protocol
= osk
->sk_protocol
;
585 sk
->sk_rcvbuf
= osk
->sk_rcvbuf
;
586 sk
->sk_sndbuf
= osk
->sk_sndbuf
;
587 sk
->sk_state
= TCP_ESTABLISHED
;
588 sock_copy_flags(sk
, osk
);
590 init_timer(&rose
->timer
);
591 init_timer(&rose
->idletimer
);
593 orose
= rose_sk(osk
);
594 rose
->t1
= orose
->t1
;
595 rose
->t2
= orose
->t2
;
596 rose
->t3
= orose
->t3
;
597 rose
->hb
= orose
->hb
;
598 rose
->idle
= orose
->idle
;
599 rose
->defer
= orose
->defer
;
600 rose
->device
= orose
->device
;
601 rose
->qbitincl
= orose
->qbitincl
;
606 static int rose_release(struct socket
*sock
)
608 struct sock
*sk
= sock
->sk
;
609 struct rose_sock
*rose
;
611 if (sk
== NULL
) return 0;
618 switch (rose
->state
) {
621 rose_disconnect(sk
, 0, -1, -1);
623 rose_destroy_socket(sk
);
627 rose
->neighbour
->use
--;
629 rose_disconnect(sk
, 0, -1, -1);
631 rose_destroy_socket(sk
);
638 rose_clear_queues(sk
);
639 rose_stop_idletimer(sk
);
640 rose_write_internal(sk
, ROSE_CLEAR_REQUEST
);
641 rose_start_t3timer(sk
);
642 rose
->state
= ROSE_STATE_2
;
643 sk
->sk_state
= TCP_CLOSE
;
644 sk
->sk_shutdown
|= SEND_SHUTDOWN
;
645 sk
->sk_state_change(sk
);
646 sock_set_flag(sk
, SOCK_DEAD
);
647 sock_set_flag(sk
, SOCK_DESTROY
);
661 static int rose_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
)
663 struct sock
*sk
= sock
->sk
;
664 struct rose_sock
*rose
= rose_sk(sk
);
665 struct sockaddr_rose
*addr
= (struct sockaddr_rose
*)uaddr
;
666 struct net_device
*dev
;
667 ax25_address
*source
;
668 ax25_uid_assoc
*user
;
671 if (!sock_flag(sk
, SOCK_ZAPPED
))
674 if (addr_len
!= sizeof(struct sockaddr_rose
) && addr_len
!= sizeof(struct full_sockaddr_rose
))
677 if (addr
->srose_family
!= AF_ROSE
)
680 if (addr_len
== sizeof(struct sockaddr_rose
) && addr
->srose_ndigis
> 1)
683 if (addr
->srose_ndigis
> ROSE_MAX_DIGIS
)
686 if ((dev
= rose_dev_get(&addr
->srose_addr
)) == NULL
) {
687 SOCK_DEBUG(sk
, "ROSE: bind failed: invalid address\n");
688 return -EADDRNOTAVAIL
;
691 source
= &addr
->srose_call
;
693 user
= ax25_findbyuid(current_euid());
695 rose
->source_call
= user
->call
;
698 if (ax25_uid_policy
&& !capable(CAP_NET_BIND_SERVICE
))
700 rose
->source_call
= *source
;
703 rose
->source_addr
= addr
->srose_addr
;
705 rose
->source_ndigis
= addr
->srose_ndigis
;
707 if (addr_len
== sizeof(struct full_sockaddr_rose
)) {
708 struct full_sockaddr_rose
*full_addr
= (struct full_sockaddr_rose
*)uaddr
;
709 for (n
= 0 ; n
< addr
->srose_ndigis
; n
++)
710 rose
->source_digis
[n
] = full_addr
->srose_digis
[n
];
712 if (rose
->source_ndigis
== 1) {
713 rose
->source_digis
[0] = addr
->srose_digi
;
717 rose_insert_socket(sk
);
719 sock_reset_flag(sk
, SOCK_ZAPPED
);
720 SOCK_DEBUG(sk
, "ROSE: socket is bound\n");
724 static int rose_connect(struct socket
*sock
, struct sockaddr
*uaddr
, int addr_len
, int flags
)
726 struct sock
*sk
= sock
->sk
;
727 struct rose_sock
*rose
= rose_sk(sk
);
728 struct sockaddr_rose
*addr
= (struct sockaddr_rose
*)uaddr
;
729 unsigned char cause
, diagnostic
;
730 struct net_device
*dev
;
731 ax25_uid_assoc
*user
;
734 if (addr_len
!= sizeof(struct sockaddr_rose
) && addr_len
!= sizeof(struct full_sockaddr_rose
))
737 if (addr
->srose_family
!= AF_ROSE
)
740 if (addr_len
== sizeof(struct sockaddr_rose
) && addr
->srose_ndigis
> 1)
743 if (addr
->srose_ndigis
> ROSE_MAX_DIGIS
)
746 /* Source + Destination digis should not exceed ROSE_MAX_DIGIS */
747 if ((rose
->source_ndigis
+ addr
->srose_ndigis
) > ROSE_MAX_DIGIS
)
752 if (sk
->sk_state
== TCP_ESTABLISHED
&& sock
->state
== SS_CONNECTING
) {
753 /* Connect completed during a ERESTARTSYS event */
754 sock
->state
= SS_CONNECTED
;
758 if (sk
->sk_state
== TCP_CLOSE
&& sock
->state
== SS_CONNECTING
) {
759 sock
->state
= SS_UNCONNECTED
;
764 if (sk
->sk_state
== TCP_ESTABLISHED
) {
765 /* No reconnect on a seqpacket socket */
770 sk
->sk_state
= TCP_CLOSE
;
771 sock
->state
= SS_UNCONNECTED
;
773 rose
->neighbour
= rose_get_neigh(&addr
->srose_addr
, &cause
,
775 if (!rose
->neighbour
) {
780 rose
->lci
= rose_new_lci(rose
->neighbour
);
786 if (sock_flag(sk
, SOCK_ZAPPED
)) { /* Must bind first - autobinding in this may or may not work */
787 sock_reset_flag(sk
, SOCK_ZAPPED
);
789 if ((dev
= rose_dev_first()) == NULL
) {
794 user
= ax25_findbyuid(current_euid());
800 memcpy(&rose
->source_addr
, dev
->dev_addr
, ROSE_ADDR_LEN
);
801 rose
->source_call
= user
->call
;
805 rose_insert_socket(sk
); /* Finish the bind */
808 rose
->dest_addr
= addr
->srose_addr
;
809 rose
->dest_call
= addr
->srose_call
;
810 rose
->rand
= ((long)rose
& 0xFFFF) + rose
->lci
;
811 rose
->dest_ndigis
= addr
->srose_ndigis
;
813 if (addr_len
== sizeof(struct full_sockaddr_rose
)) {
814 struct full_sockaddr_rose
*full_addr
= (struct full_sockaddr_rose
*)uaddr
;
815 for (n
= 0 ; n
< addr
->srose_ndigis
; n
++)
816 rose
->dest_digis
[n
] = full_addr
->srose_digis
[n
];
818 if (rose
->dest_ndigis
== 1) {
819 rose
->dest_digis
[0] = addr
->srose_digi
;
823 /* Move to connecting socket, start sending Connect Requests */
824 sock
->state
= SS_CONNECTING
;
825 sk
->sk_state
= TCP_SYN_SENT
;
827 rose
->state
= ROSE_STATE_1
;
829 rose
->neighbour
->use
++;
831 rose_write_internal(sk
, ROSE_CALL_REQUEST
);
832 rose_start_heartbeat(sk
);
833 rose_start_t1timer(sk
);
836 if (sk
->sk_state
!= TCP_ESTABLISHED
&& (flags
& O_NONBLOCK
)) {
842 * A Connect Ack with Choke or timeout or failed routing will go to
845 if (sk
->sk_state
== TCP_SYN_SENT
) {
849 prepare_to_wait(sk
->sk_sleep
, &wait
,
851 if (sk
->sk_state
!= TCP_SYN_SENT
)
853 if (!signal_pending(current
)) {
862 finish_wait(sk
->sk_sleep
, &wait
);
868 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
869 /* Try next neighbour */
870 rose
->neighbour
= rose_get_neigh(&addr
->srose_addr
, &cause
, &diagnostic
, 0);
872 goto rose_try_next_neigh
;
874 /* No more neighbours */
875 sock
->state
= SS_UNCONNECTED
;
876 err
= sock_error(sk
); /* Always set at this point */
880 sock
->state
= SS_CONNECTED
;
888 static int rose_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
896 if ((sk
= sock
->sk
) == NULL
)
900 if (sk
->sk_type
!= SOCK_SEQPACKET
) {
905 if (sk
->sk_state
!= TCP_LISTEN
) {
911 * The write queue this time is holding sockets ready to use
912 * hooked into the SABM we saved
915 prepare_to_wait(sk
->sk_sleep
, &wait
, TASK_INTERRUPTIBLE
);
917 skb
= skb_dequeue(&sk
->sk_receive_queue
);
921 if (flags
& O_NONBLOCK
) {
925 if (!signal_pending(current
)) {
934 finish_wait(sk
->sk_sleep
, &wait
);
939 sock_graft(newsk
, newsock
);
941 /* Now attach up the new socket */
944 sk
->sk_ack_backlog
--;
952 static int rose_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
953 int *uaddr_len
, int peer
)
955 struct full_sockaddr_rose
*srose
= (struct full_sockaddr_rose
*)uaddr
;
956 struct sock
*sk
= sock
->sk
;
957 struct rose_sock
*rose
= rose_sk(sk
);
961 if (sk
->sk_state
!= TCP_ESTABLISHED
)
963 srose
->srose_family
= AF_ROSE
;
964 srose
->srose_addr
= rose
->dest_addr
;
965 srose
->srose_call
= rose
->dest_call
;
966 srose
->srose_ndigis
= rose
->dest_ndigis
;
967 for (n
= 0; n
< rose
->dest_ndigis
; n
++)
968 srose
->srose_digis
[n
] = rose
->dest_digis
[n
];
970 srose
->srose_family
= AF_ROSE
;
971 srose
->srose_addr
= rose
->source_addr
;
972 srose
->srose_call
= rose
->source_call
;
973 srose
->srose_ndigis
= rose
->source_ndigis
;
974 for (n
= 0; n
< rose
->source_ndigis
; n
++)
975 srose
->srose_digis
[n
] = rose
->source_digis
[n
];
978 *uaddr_len
= sizeof(struct full_sockaddr_rose
);
982 int rose_rx_call_request(struct sk_buff
*skb
, struct net_device
*dev
, struct rose_neigh
*neigh
, unsigned int lci
)
986 struct rose_sock
*make_rose
;
987 struct rose_facilities_struct facilities
;
990 skb
->sk
= NULL
; /* Initially we don't know who it's for */
993 * skb->data points to the rose frame start
995 memset(&facilities
, 0x00, sizeof(struct rose_facilities_struct
));
997 len
= (((skb
->data
[3] >> 4) & 0x0F) + 1) >> 1;
998 len
+= (((skb
->data
[3] >> 0) & 0x0F) + 1) >> 1;
999 if (!rose_parse_facilities(skb
->data
+ len
+ 4, &facilities
)) {
1000 rose_transmit_clear_request(neigh
, lci
, ROSE_INVALID_FACILITY
, 76);
1004 sk
= rose_find_listener(&facilities
.source_addr
, &facilities
.source_call
);
1007 * We can't accept the Call Request.
1009 if (sk
== NULL
|| sk_acceptq_is_full(sk
) ||
1010 (make
= rose_make_new(sk
)) == NULL
) {
1011 rose_transmit_clear_request(neigh
, lci
, ROSE_NETWORK_CONGESTION
, 120);
1016 make
->sk_state
= TCP_ESTABLISHED
;
1017 make_rose
= rose_sk(make
);
1019 make_rose
->lci
= lci
;
1020 make_rose
->dest_addr
= facilities
.dest_addr
;
1021 make_rose
->dest_call
= facilities
.dest_call
;
1022 make_rose
->dest_ndigis
= facilities
.dest_ndigis
;
1023 for (n
= 0 ; n
< facilities
.dest_ndigis
; n
++)
1024 make_rose
->dest_digis
[n
] = facilities
.dest_digis
[n
];
1025 make_rose
->source_addr
= facilities
.source_addr
;
1026 make_rose
->source_call
= facilities
.source_call
;
1027 make_rose
->source_ndigis
= facilities
.source_ndigis
;
1028 for (n
= 0 ; n
< facilities
.source_ndigis
; n
++)
1029 make_rose
->source_digis
[n
]= facilities
.source_digis
[n
];
1030 make_rose
->neighbour
= neigh
;
1031 make_rose
->device
= dev
;
1032 make_rose
->facilities
= facilities
;
1034 make_rose
->neighbour
->use
++;
1036 if (rose_sk(sk
)->defer
) {
1037 make_rose
->state
= ROSE_STATE_5
;
1039 rose_write_internal(make
, ROSE_CALL_ACCEPTED
);
1040 make_rose
->state
= ROSE_STATE_3
;
1041 rose_start_idletimer(make
);
1044 make_rose
->condition
= 0x00;
1049 sk
->sk_ack_backlog
++;
1051 rose_insert_socket(make
);
1053 skb_queue_head(&sk
->sk_receive_queue
, skb
);
1055 rose_start_heartbeat(make
);
1057 if (!sock_flag(sk
, SOCK_DEAD
))
1058 sk
->sk_data_ready(sk
, skb
->len
);
1063 static int rose_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
1064 struct msghdr
*msg
, size_t len
)
1066 struct sock
*sk
= sock
->sk
;
1067 struct rose_sock
*rose
= rose_sk(sk
);
1068 struct sockaddr_rose
*usrose
= (struct sockaddr_rose
*)msg
->msg_name
;
1070 struct full_sockaddr_rose srose
;
1071 struct sk_buff
*skb
;
1072 unsigned char *asmptr
;
1073 int n
, size
, qbit
= 0;
1075 /* ROSE empty frame has no meaning : don't send */
1079 if (msg
->msg_flags
& ~(MSG_DONTWAIT
|MSG_EOR
|MSG_CMSG_COMPAT
))
1082 if (sock_flag(sk
, SOCK_ZAPPED
))
1083 return -EADDRNOTAVAIL
;
1085 if (sk
->sk_shutdown
& SEND_SHUTDOWN
) {
1086 send_sig(SIGPIPE
, current
, 0);
1090 if (rose
->neighbour
== NULL
|| rose
->device
== NULL
)
1091 return -ENETUNREACH
;
1093 if (usrose
!= NULL
) {
1094 if (msg
->msg_namelen
!= sizeof(struct sockaddr_rose
) && msg
->msg_namelen
!= sizeof(struct full_sockaddr_rose
))
1096 memset(&srose
, 0, sizeof(struct full_sockaddr_rose
));
1097 memcpy(&srose
, usrose
, msg
->msg_namelen
);
1098 if (rosecmp(&rose
->dest_addr
, &srose
.srose_addr
) != 0 ||
1099 ax25cmp(&rose
->dest_call
, &srose
.srose_call
) != 0)
1101 if (srose
.srose_ndigis
!= rose
->dest_ndigis
)
1103 if (srose
.srose_ndigis
== rose
->dest_ndigis
) {
1104 for (n
= 0 ; n
< srose
.srose_ndigis
; n
++)
1105 if (ax25cmp(&rose
->dest_digis
[n
],
1106 &srose
.srose_digis
[n
]))
1109 if (srose
.srose_family
!= AF_ROSE
)
1112 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1115 srose
.srose_family
= AF_ROSE
;
1116 srose
.srose_addr
= rose
->dest_addr
;
1117 srose
.srose_call
= rose
->dest_call
;
1118 srose
.srose_ndigis
= rose
->dest_ndigis
;
1119 for (n
= 0 ; n
< rose
->dest_ndigis
; n
++)
1120 srose
.srose_digis
[n
] = rose
->dest_digis
[n
];
1123 SOCK_DEBUG(sk
, "ROSE: sendto: Addresses built.\n");
1125 /* Build a packet */
1126 SOCK_DEBUG(sk
, "ROSE: sendto: building packet.\n");
1127 size
= len
+ AX25_BPQ_HEADER_LEN
+ AX25_MAX_HEADER_LEN
+ ROSE_MIN_LEN
;
1129 if ((skb
= sock_alloc_send_skb(sk
, size
, msg
->msg_flags
& MSG_DONTWAIT
, &err
)) == NULL
)
1132 skb_reserve(skb
, AX25_BPQ_HEADER_LEN
+ AX25_MAX_HEADER_LEN
+ ROSE_MIN_LEN
);
1135 * Put the data on the end
1137 SOCK_DEBUG(sk
, "ROSE: Appending user data\n");
1139 skb_reset_transport_header(skb
);
1142 err
= memcpy_fromiovec(skb_transport_header(skb
), msg
->msg_iov
, len
);
1149 * If the Q BIT Include socket option is in force, the first
1150 * byte of the user data is the logical value of the Q Bit.
1152 if (rose
->qbitincl
) {
1153 qbit
= skb
->data
[0];
1158 * Push down the ROSE header
1160 asmptr
= skb_push(skb
, ROSE_MIN_LEN
);
1162 SOCK_DEBUG(sk
, "ROSE: Building Network Header.\n");
1164 /* Build a ROSE Network header */
1165 asmptr
[0] = ((rose
->lci
>> 8) & 0x0F) | ROSE_GFI
;
1166 asmptr
[1] = (rose
->lci
>> 0) & 0xFF;
1167 asmptr
[2] = ROSE_DATA
;
1170 asmptr
[0] |= ROSE_Q_BIT
;
1172 SOCK_DEBUG(sk
, "ROSE: Built header.\n");
1174 SOCK_DEBUG(sk
, "ROSE: Transmitting buffer\n");
1176 if (sk
->sk_state
!= TCP_ESTABLISHED
) {
1182 #define ROSE_PACLEN (256-ROSE_MIN_LEN)
1183 if (skb
->len
- ROSE_MIN_LEN
> ROSE_PACLEN
) {
1184 unsigned char header
[ROSE_MIN_LEN
];
1185 struct sk_buff
*skbn
;
1189 /* Save a copy of the Header */
1190 skb_copy_from_linear_data(skb
, header
, ROSE_MIN_LEN
);
1191 skb_pull(skb
, ROSE_MIN_LEN
);
1193 frontlen
= skb_headroom(skb
);
1195 while (skb
->len
> 0) {
1196 if ((skbn
= sock_alloc_send_skb(sk
, frontlen
+ ROSE_PACLEN
, 0, &err
)) == NULL
) {
1205 skb_reserve(skbn
, frontlen
);
1207 lg
= (ROSE_PACLEN
> skb
->len
) ? skb
->len
: ROSE_PACLEN
;
1209 /* Copy the user data */
1210 skb_copy_from_linear_data(skb
, skb_put(skbn
, lg
), lg
);
1213 /* Duplicate the Header */
1214 skb_push(skbn
, ROSE_MIN_LEN
);
1215 skb_copy_to_linear_data(skbn
, header
, ROSE_MIN_LEN
);
1218 skbn
->data
[2] |= M_BIT
;
1220 skb_queue_tail(&sk
->sk_write_queue
, skbn
); /* Throw it on the queue */
1226 skb_queue_tail(&sk
->sk_write_queue
, skb
); /* Throw it on the queue */
1229 skb_queue_tail(&sk
->sk_write_queue
, skb
); /* Shove it onto the queue */
1238 static int rose_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
1239 struct msghdr
*msg
, size_t size
, int flags
)
1241 struct sock
*sk
= sock
->sk
;
1242 struct rose_sock
*rose
= rose_sk(sk
);
1243 struct sockaddr_rose
*srose
= (struct sockaddr_rose
*)msg
->msg_name
;
1245 unsigned char *asmptr
;
1246 struct sk_buff
*skb
;
1250 * This works for seqpacket too. The receiver has ordered the queue for
1251 * us! We do one quick check first though
1253 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1256 /* Now we can treat all alike */
1257 if ((skb
= skb_recv_datagram(sk
, flags
& ~MSG_DONTWAIT
, flags
& MSG_DONTWAIT
, &er
)) == NULL
)
1260 qbit
= (skb
->data
[0] & ROSE_Q_BIT
) == ROSE_Q_BIT
;
1262 skb_pull(skb
, ROSE_MIN_LEN
);
1264 if (rose
->qbitincl
) {
1265 asmptr
= skb_push(skb
, 1);
1269 skb_reset_transport_header(skb
);
1272 /* ROSE empty frame has no meaning : ignore it */
1274 skb_free_datagram(sk
, skb
);
1278 if (copied
> size
) {
1280 msg
->msg_flags
|= MSG_TRUNC
;
1283 skb_copy_datagram_iovec(skb
, 0, msg
->msg_iov
, copied
);
1285 if (srose
!= NULL
) {
1286 srose
->srose_family
= AF_ROSE
;
1287 srose
->srose_addr
= rose
->dest_addr
;
1288 srose
->srose_call
= rose
->dest_call
;
1289 srose
->srose_ndigis
= rose
->dest_ndigis
;
1290 if (msg
->msg_namelen
>= sizeof(struct full_sockaddr_rose
)) {
1291 struct full_sockaddr_rose
*full_srose
= (struct full_sockaddr_rose
*)msg
->msg_name
;
1292 for (n
= 0 ; n
< rose
->dest_ndigis
; n
++)
1293 full_srose
->srose_digis
[n
] = rose
->dest_digis
[n
];
1294 msg
->msg_namelen
= sizeof(struct full_sockaddr_rose
);
1296 if (rose
->dest_ndigis
>= 1) {
1297 srose
->srose_ndigis
= 1;
1298 srose
->srose_digi
= rose
->dest_digis
[0];
1300 msg
->msg_namelen
= sizeof(struct sockaddr_rose
);
1304 skb_free_datagram(sk
, skb
);
1310 static int rose_ioctl(struct socket
*sock
, unsigned int cmd
, unsigned long arg
)
1312 struct sock
*sk
= sock
->sk
;
1313 struct rose_sock
*rose
= rose_sk(sk
);
1314 void __user
*argp
= (void __user
*)arg
;
1319 amount
= sk
->sk_sndbuf
- atomic_read(&sk
->sk_wmem_alloc
);
1322 return put_user(amount
, (unsigned int __user
*) argp
);
1326 struct sk_buff
*skb
;
1328 /* These two are safe on a single CPU system as only user tasks fiddle here */
1329 if ((skb
= skb_peek(&sk
->sk_receive_queue
)) != NULL
)
1331 return put_user(amount
, (unsigned int __user
*) argp
);
1335 return sock_get_timestamp(sk
, (struct timeval __user
*) argp
);
1338 return sock_get_timestampns(sk
, (struct timespec __user
*) argp
);
1342 case SIOCGIFDSTADDR
:
1343 case SIOCSIFDSTADDR
:
1344 case SIOCGIFBRDADDR
:
1345 case SIOCSIFBRDADDR
:
1346 case SIOCGIFNETMASK
:
1347 case SIOCSIFNETMASK
:
1355 if (!capable(CAP_NET_ADMIN
))
1357 return rose_rt_ioctl(cmd
, argp
);
1359 case SIOCRSGCAUSE
: {
1360 struct rose_cause_struct rose_cause
;
1361 rose_cause
.cause
= rose
->cause
;
1362 rose_cause
.diagnostic
= rose
->diagnostic
;
1363 return copy_to_user(argp
, &rose_cause
, sizeof(struct rose_cause_struct
)) ? -EFAULT
: 0;
1366 case SIOCRSSCAUSE
: {
1367 struct rose_cause_struct rose_cause
;
1368 if (copy_from_user(&rose_cause
, argp
, sizeof(struct rose_cause_struct
)))
1370 rose
->cause
= rose_cause
.cause
;
1371 rose
->diagnostic
= rose_cause
.diagnostic
;
1376 if (!capable(CAP_NET_ADMIN
)) return -EPERM
;
1377 if (ax25cmp(&rose_callsign
, &null_ax25_address
) != 0)
1378 ax25_listen_release(&rose_callsign
, NULL
);
1379 if (copy_from_user(&rose_callsign
, argp
, sizeof(ax25_address
)))
1381 if (ax25cmp(&rose_callsign
, &null_ax25_address
) != 0)
1382 return ax25_listen_register(&rose_callsign
, NULL
);
1387 return copy_to_user(argp
, &rose_callsign
, sizeof(ax25_address
)) ? -EFAULT
: 0;
1390 if (rose
->state
== ROSE_STATE_5
) {
1391 rose_write_internal(sk
, ROSE_CALL_ACCEPTED
);
1392 rose_start_idletimer(sk
);
1393 rose
->condition
= 0x00;
1398 rose
->state
= ROSE_STATE_3
;
1403 return -ENOIOCTLCMD
;
1409 #ifdef CONFIG_PROC_FS
1410 static void *rose_info_start(struct seq_file
*seq
, loff_t
*pos
)
1411 __acquires(rose_list_lock
)
1415 struct hlist_node
*node
;
1417 spin_lock_bh(&rose_list_lock
);
1419 return SEQ_START_TOKEN
;
1422 sk_for_each(s
, node
, &rose_list
) {
1430 static void *rose_info_next(struct seq_file
*seq
, void *v
, loff_t
*pos
)
1434 return (v
== SEQ_START_TOKEN
) ? sk_head(&rose_list
)
1435 : sk_next((struct sock
*)v
);
1438 static void rose_info_stop(struct seq_file
*seq
, void *v
)
1439 __releases(rose_list_lock
)
1441 spin_unlock_bh(&rose_list_lock
);
1444 static int rose_info_show(struct seq_file
*seq
, void *v
)
1448 if (v
== SEQ_START_TOKEN
)
1450 "dest_addr dest_call src_addr src_call dev lci neigh st vs vr va t t1 t2 t3 hb idle Snd-Q Rcv-Q inode\n");
1454 struct rose_sock
*rose
= rose_sk(s
);
1455 const char *devname
, *callsign
;
1456 const struct net_device
*dev
= rose
->device
;
1461 devname
= dev
->name
;
1463 seq_printf(seq
, "%-10s %-9s ",
1464 rose2asc(&rose
->dest_addr
),
1465 ax2asc(buf
, &rose
->dest_call
));
1467 if (ax25cmp(&rose
->source_call
, &null_ax25_address
) == 0)
1468 callsign
= "??????-?";
1470 callsign
= ax2asc(buf
, &rose
->source_call
);
1473 "%-10s %-9s %-5s %3.3X %05d %d %d %d %d %3lu %3lu %3lu %3lu %3lu %3lu/%03lu %5d %5d %ld\n",
1474 rose2asc(&rose
->source_addr
),
1478 (rose
->neighbour
) ? rose
->neighbour
->number
: 0,
1483 ax25_display_timer(&rose
->timer
) / HZ
,
1488 ax25_display_timer(&rose
->idletimer
) / (60 * HZ
),
1489 rose
->idle
/ (60 * HZ
),
1490 atomic_read(&s
->sk_wmem_alloc
),
1491 atomic_read(&s
->sk_rmem_alloc
),
1492 s
->sk_socket
? SOCK_INODE(s
->sk_socket
)->i_ino
: 0L);
1498 static const struct seq_operations rose_info_seqops
= {
1499 .start
= rose_info_start
,
1500 .next
= rose_info_next
,
1501 .stop
= rose_info_stop
,
1502 .show
= rose_info_show
,
1505 static int rose_info_open(struct inode
*inode
, struct file
*file
)
1507 return seq_open(file
, &rose_info_seqops
);
1510 static const struct file_operations rose_info_fops
= {
1511 .owner
= THIS_MODULE
,
1512 .open
= rose_info_open
,
1514 .llseek
= seq_lseek
,
1515 .release
= seq_release
,
1517 #endif /* CONFIG_PROC_FS */
1519 static struct net_proto_family rose_family_ops
= {
1521 .create
= rose_create
,
1522 .owner
= THIS_MODULE
,
1525 static struct proto_ops rose_proto_ops
= {
1527 .owner
= THIS_MODULE
,
1528 .release
= rose_release
,
1530 .connect
= rose_connect
,
1531 .socketpair
= sock_no_socketpair
,
1532 .accept
= rose_accept
,
1533 .getname
= rose_getname
,
1534 .poll
= datagram_poll
,
1535 .ioctl
= rose_ioctl
,
1536 .listen
= rose_listen
,
1537 .shutdown
= sock_no_shutdown
,
1538 .setsockopt
= rose_setsockopt
,
1539 .getsockopt
= rose_getsockopt
,
1540 .sendmsg
= rose_sendmsg
,
1541 .recvmsg
= rose_recvmsg
,
1542 .mmap
= sock_no_mmap
,
1543 .sendpage
= sock_no_sendpage
,
1546 static struct notifier_block rose_dev_notifier
= {
1547 .notifier_call
= rose_device_event
,
1550 static struct net_device
**dev_rose
;
1552 static struct ax25_protocol rose_pid
= {
1554 .func
= rose_route_frame
1557 static struct ax25_linkfail rose_linkfail_notifier
= {
1558 .func
= rose_link_failed
1561 static int __init
rose_proto_init(void)
1566 if (rose_ndevs
> 0x7FFFFFFF/sizeof(struct net_device
*)) {
1567 printk(KERN_ERR
"ROSE: rose_proto_init - rose_ndevs parameter to large\n");
1572 rc
= proto_register(&rose_proto
, 0);
1576 rose_callsign
= null_ax25_address
;
1578 dev_rose
= kzalloc(rose_ndevs
* sizeof(struct net_device
*), GFP_KERNEL
);
1579 if (dev_rose
== NULL
) {
1580 printk(KERN_ERR
"ROSE: rose_proto_init - unable to allocate device structure\n");
1582 goto out_proto_unregister
;
1585 for (i
= 0; i
< rose_ndevs
; i
++) {
1586 struct net_device
*dev
;
1587 char name
[IFNAMSIZ
];
1589 sprintf(name
, "rose%d", i
);
1590 dev
= alloc_netdev(sizeof(struct net_device_stats
),
1593 printk(KERN_ERR
"ROSE: rose_proto_init - unable to allocate memory\n");
1597 rc
= register_netdev(dev
);
1599 printk(KERN_ERR
"ROSE: netdevice registration failed\n");
1603 rose_set_lockdep_key(dev
);
1607 sock_register(&rose_family_ops
);
1608 register_netdevice_notifier(&rose_dev_notifier
);
1610 ax25_register_pid(&rose_pid
);
1611 ax25_linkfail_register(&rose_linkfail_notifier
);
1613 #ifdef CONFIG_SYSCTL
1614 rose_register_sysctl();
1616 rose_loopback_init();
1618 rose_add_loopback_neigh();
1620 proc_net_fops_create(&init_net
, "rose", S_IRUGO
, &rose_info_fops
);
1621 proc_net_fops_create(&init_net
, "rose_neigh", S_IRUGO
, &rose_neigh_fops
);
1622 proc_net_fops_create(&init_net
, "rose_nodes", S_IRUGO
, &rose_nodes_fops
);
1623 proc_net_fops_create(&init_net
, "rose_routes", S_IRUGO
, &rose_routes_fops
);
1628 unregister_netdev(dev_rose
[i
]);
1629 free_netdev(dev_rose
[i
]);
1632 out_proto_unregister
:
1633 proto_unregister(&rose_proto
);
1636 module_init(rose_proto_init
);
1638 module_param(rose_ndevs
, int, 0);
1639 MODULE_PARM_DESC(rose_ndevs
, "number of ROSE devices");
1641 MODULE_AUTHOR("Jonathan Naylor G4KLX <g4klx@g4klx.demon.co.uk>");
1642 MODULE_DESCRIPTION("The amateur radio ROSE network layer protocol");
1643 MODULE_LICENSE("GPL");
1644 MODULE_ALIAS_NETPROTO(PF_ROSE
);
1646 static void __exit
rose_exit(void)
1650 proc_net_remove(&init_net
, "rose");
1651 proc_net_remove(&init_net
, "rose_neigh");
1652 proc_net_remove(&init_net
, "rose_nodes");
1653 proc_net_remove(&init_net
, "rose_routes");
1654 rose_loopback_clear();
1658 ax25_protocol_release(AX25_P_ROSE
);
1659 ax25_linkfail_release(&rose_linkfail_notifier
);
1661 if (ax25cmp(&rose_callsign
, &null_ax25_address
) != 0)
1662 ax25_listen_release(&rose_callsign
, NULL
);
1664 #ifdef CONFIG_SYSCTL
1665 rose_unregister_sysctl();
1667 unregister_netdevice_notifier(&rose_dev_notifier
);
1669 sock_unregister(PF_ROSE
);
1671 for (i
= 0; i
< rose_ndevs
; i
++) {
1672 struct net_device
*dev
= dev_rose
[i
];
1675 unregister_netdev(dev
);
1681 proto_unregister(&rose_proto
);
1684 module_exit(rose_exit
);