2 * af_llc.c - LLC User Interface SAPs
4 * Functions in this module are implementation of socket based llc
5 * communications for the Linux operating system. Support of llc class
6 * one and class two is provided via SOCK_DGRAM and SOCK_STREAM
9 * An llc2 connection is (mac + sap), only one llc2 sap connection
10 * is allowed per mac. Though one sap may have multiple mac + sap
13 * Copyright (c) 2001 by Jay Schulist <jschlst@samba.org>
14 * 2002-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
16 * This program can be redistributed or modified under the terms of the
17 * GNU General Public License as published by the Free Software Foundation.
18 * This program is distributed without any warranty or implied warranty
19 * of merchantability or fitness for a particular purpose.
21 * See the GNU General Public License for more details.
23 #include <linux/compiler.h>
24 #include <linux/kernel.h>
25 #include <linux/module.h>
26 #include <linux/rtnetlink.h>
27 #include <linux/init.h>
28 #include <linux/slab.h>
29 #include <linux/sched/signal.h>
32 #include <net/llc_sap.h>
33 #include <net/llc_pdu.h>
34 #include <net/llc_conn.h>
35 #include <net/tcp_states.h>
37 /* remember: uninitialized global data is zeroed because its in .bss */
38 static u16 llc_ui_sap_last_autoport
= LLC_SAP_DYN_START
;
39 static u16 llc_ui_sap_link_no_max
[256];
40 static struct sockaddr_llc llc_ui_addrnull
;
41 static const struct proto_ops llc_ui_ops
;
43 static bool llc_ui_wait_for_conn(struct sock
*sk
, long timeout
);
44 static int llc_ui_wait_for_disc(struct sock
*sk
, long timeout
);
45 static int llc_ui_wait_for_busy_core(struct sock
*sk
, long timeout
);
48 #define dprintk(args...) printk(KERN_DEBUG args)
50 #define dprintk(args...)
53 /* Maybe we'll add some more in the future. */
54 #define LLC_CMSG_PKTINFO 1
58 * llc_ui_next_link_no - return the next unused link number for a sap
59 * @sap: Address of sap to get link number from.
61 * Return the next unused link number for a given sap.
63 static inline u16
llc_ui_next_link_no(int sap
)
65 return llc_ui_sap_link_no_max
[sap
]++;
69 * llc_proto_type - return eth protocol for ARP header type
70 * @arphrd: ARP header type.
72 * Given an ARP header type return the corresponding ethernet protocol.
74 static inline __be16
llc_proto_type(u16 arphrd
)
76 return htons(ETH_P_802_2
);
80 * llc_ui_addr_null - determines if a address structure is null
81 * @addr: Address to test if null.
83 static inline u8
llc_ui_addr_null(struct sockaddr_llc
*addr
)
85 return !memcmp(addr
, &llc_ui_addrnull
, sizeof(*addr
));
89 * llc_ui_header_len - return length of llc header based on operation
90 * @sk: Socket which contains a valid llc socket type.
91 * @addr: Complete sockaddr_llc structure received from the user.
93 * Provide the length of the llc header depending on what kind of
94 * operation the user would like to perform and the type of socket.
95 * Returns the correct llc header length.
97 static inline u8
llc_ui_header_len(struct sock
*sk
, struct sockaddr_llc
*addr
)
99 u8 rc
= LLC_PDU_LEN_U
;
101 if (addr
->sllc_test
|| addr
->sllc_xid
)
103 else if (sk
->sk_type
== SOCK_STREAM
)
109 * llc_ui_send_data - send data via reliable llc2 connection
110 * @sk: Connection the socket is using.
111 * @skb: Data the user wishes to send.
112 * @noblock: can we block waiting for data?
114 * Send data via reliable llc2 connection.
115 * Returns 0 upon success, non-zero if action did not succeed.
117 static int llc_ui_send_data(struct sock
* sk
, struct sk_buff
*skb
, int noblock
)
119 struct llc_sock
* llc
= llc_sk(sk
);
122 if (unlikely(llc_data_accept_state(llc
->state
) ||
123 llc
->remote_busy_flag
||
125 long timeout
= sock_sndtimeo(sk
, noblock
);
127 rc
= llc_ui_wait_for_busy_core(sk
, timeout
);
130 rc
= llc_build_and_send_pkt(sk
, skb
);
134 static void llc_ui_sk_init(struct socket
*sock
, struct sock
*sk
)
136 sock_graft(sk
, sock
);
137 sk
->sk_type
= sock
->type
;
138 sock
->ops
= &llc_ui_ops
;
141 static struct proto llc_proto
= {
143 .owner
= THIS_MODULE
,
144 .obj_size
= sizeof(struct llc_sock
),
145 .slab_flags
= SLAB_TYPESAFE_BY_RCU
,
149 * llc_ui_create - alloc and init a new llc_ui socket
150 * @net: network namespace (must be default network)
151 * @sock: Socket to initialize and attach allocated sk to.
153 * @kern: on behalf of kernel or userspace
155 * Allocate and initialize a new llc_ui socket, validate the user wants a
156 * socket type we have available.
157 * Returns 0 upon success, negative upon failure.
159 static int llc_ui_create(struct net
*net
, struct socket
*sock
, int protocol
,
163 int rc
= -ESOCKTNOSUPPORT
;
165 if (!ns_capable(net
->user_ns
, CAP_NET_RAW
))
168 if (!net_eq(net
, &init_net
))
169 return -EAFNOSUPPORT
;
171 if (likely(sock
->type
== SOCK_DGRAM
|| sock
->type
== SOCK_STREAM
)) {
173 sk
= llc_sk_alloc(net
, PF_LLC
, GFP_KERNEL
, &llc_proto
, kern
);
176 llc_ui_sk_init(sock
, sk
);
183 * llc_ui_release - shutdown socket
184 * @sock: Socket to release.
186 * Shutdown and deallocate an existing socket.
188 static int llc_ui_release(struct socket
*sock
)
190 struct sock
*sk
= sock
->sk
;
191 struct llc_sock
*llc
;
193 if (unlikely(sk
== NULL
))
198 dprintk("%s: closing local(%02X) remote(%02X)\n", __func__
,
199 llc
->laddr
.lsap
, llc
->daddr
.lsap
);
200 if (!llc_send_disc(sk
))
201 llc_ui_wait_for_disc(sk
, sk
->sk_rcvtimeo
);
202 if (!sock_flag(sk
, SOCK_ZAPPED
)) {
203 struct llc_sap
*sap
= llc
->sap
;
205 /* Hold this for release_sock(), so that llc_backlog_rcv()
206 * could still use it.
209 llc_sap_remove_socket(llc
->sap
, sk
);
224 * llc_ui_autoport - provide dynamically allocate SAP number
226 * Provide the caller with a dynamically allocated SAP number according
227 * to the rules that are set in this function. Returns: 0, upon failure,
228 * SAP number otherwise.
230 static int llc_ui_autoport(void)
235 while (tries
< LLC_SAP_DYN_TRIES
) {
236 for (i
= llc_ui_sap_last_autoport
;
237 i
< LLC_SAP_DYN_STOP
; i
+= 2) {
238 sap
= llc_sap_find(i
);
240 llc_ui_sap_last_autoport
= i
+ 2;
245 llc_ui_sap_last_autoport
= LLC_SAP_DYN_START
;
254 * llc_ui_autobind - automatically bind a socket to a sap
255 * @sock: socket to bind
256 * @addr: address to connect to
258 * Used by llc_ui_connect and llc_ui_sendmsg when the user hasn't
259 * specifically used llc_ui_bind to bind to an specific address/sap
261 * Returns: 0 upon success, negative otherwise.
263 static int llc_ui_autobind(struct socket
*sock
, struct sockaddr_llc
*addr
)
265 struct sock
*sk
= sock
->sk
;
266 struct llc_sock
*llc
= llc_sk(sk
);
270 if (!sock_flag(sk
, SOCK_ZAPPED
))
273 if (sk
->sk_bound_dev_if
) {
274 llc
->dev
= dev_get_by_index(&init_net
, sk
->sk_bound_dev_if
);
275 if (llc
->dev
&& addr
->sllc_arphrd
!= llc
->dev
->type
) {
280 llc
->dev
= dev_getfirstbyhwtype(&init_net
, addr
->sllc_arphrd
);
284 llc
->laddr
.lsap
= llc_ui_autoport();
285 if (!llc
->laddr
.lsap
)
287 rc
= -EBUSY
; /* some other network layer is using the sap */
288 sap
= llc_sap_open(llc
->laddr
.lsap
, NULL
);
291 memcpy(llc
->laddr
.mac
, llc
->dev
->dev_addr
, IFHWADDRLEN
);
292 memcpy(&llc
->addr
, addr
, sizeof(llc
->addr
));
293 /* assign new connection to its SAP */
294 llc_sap_add_socket(sap
, sk
);
295 sock_reset_flag(sk
, SOCK_ZAPPED
);
302 * llc_ui_bind - bind a socket to a specific address.
303 * @sock: Socket to bind an address to.
304 * @uaddr: Address the user wants the socket bound to.
305 * @addrlen: Length of the uaddr structure.
307 * Bind a socket to a specific address. For llc a user is able to bind to
308 * a specific sap only or mac + sap.
309 * If the user desires to bind to a specific mac + sap, it is possible to
310 * have multiple sap connections via multiple macs.
311 * Bind and autobind for that matter must enforce the correct sap usage
312 * otherwise all hell will break loose.
313 * Returns: 0 upon success, negative otherwise.
315 static int llc_ui_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addrlen
)
317 struct sockaddr_llc
*addr
= (struct sockaddr_llc
*)uaddr
;
318 struct sock
*sk
= sock
->sk
;
319 struct llc_sock
*llc
= llc_sk(sk
);
323 dprintk("%s: binding %02X\n", __func__
, addr
->sllc_sap
);
326 if (unlikely(!sock_flag(sk
, SOCK_ZAPPED
) || addrlen
!= sizeof(*addr
)))
329 if (unlikely(addr
->sllc_family
!= AF_LLC
))
333 if (sk
->sk_bound_dev_if
) {
334 llc
->dev
= dev_get_by_index_rcu(&init_net
, sk
->sk_bound_dev_if
);
336 if (!addr
->sllc_arphrd
)
337 addr
->sllc_arphrd
= llc
->dev
->type
;
338 if (is_zero_ether_addr(addr
->sllc_mac
))
339 memcpy(addr
->sllc_mac
, llc
->dev
->dev_addr
,
341 if (addr
->sllc_arphrd
!= llc
->dev
->type
||
342 !ether_addr_equal(addr
->sllc_mac
,
343 llc
->dev
->dev_addr
)) {
349 llc
->dev
= dev_getbyhwaddr_rcu(&init_net
, addr
->sllc_arphrd
,
356 if (!addr
->sllc_sap
) {
358 addr
->sllc_sap
= llc_ui_autoport();
362 sap
= llc_sap_find(addr
->sllc_sap
);
364 sap
= llc_sap_open(addr
->sllc_sap
, NULL
);
365 rc
= -EBUSY
; /* some other network layer is using the sap */
369 struct llc_addr laddr
, daddr
;
372 memset(&laddr
, 0, sizeof(laddr
));
373 memset(&daddr
, 0, sizeof(daddr
));
375 * FIXME: check if the address is multicast,
376 * only SOCK_DGRAM can do this.
378 memcpy(laddr
.mac
, addr
->sllc_mac
, IFHWADDRLEN
);
379 laddr
.lsap
= addr
->sllc_sap
;
380 rc
= -EADDRINUSE
; /* mac + sap clash. */
381 ask
= llc_lookup_established(sap
, &daddr
, &laddr
);
387 llc
->laddr
.lsap
= addr
->sllc_sap
;
388 memcpy(llc
->laddr
.mac
, addr
->sllc_mac
, IFHWADDRLEN
);
389 memcpy(&llc
->addr
, addr
, sizeof(llc
->addr
));
390 /* assign new connection to its SAP */
391 llc_sap_add_socket(sap
, sk
);
392 sock_reset_flag(sk
, SOCK_ZAPPED
);
402 * llc_ui_shutdown - shutdown a connect llc2 socket.
403 * @sock: Socket to shutdown.
404 * @how: What part of the socket to shutdown.
406 * Shutdown a connected llc2 socket. Currently this function only supports
407 * shutting down both sends and receives (2), we could probably make this
408 * function such that a user can shutdown only half the connection but not
410 * Returns: 0 upon success, negative otherwise.
412 static int llc_ui_shutdown(struct socket
*sock
, int how
)
414 struct sock
*sk
= sock
->sk
;
418 if (unlikely(sk
->sk_state
!= TCP_ESTABLISHED
))
423 rc
= llc_send_disc(sk
);
425 rc
= llc_ui_wait_for_disc(sk
, sk
->sk_rcvtimeo
);
426 /* Wake up anyone sleeping in poll */
427 sk
->sk_state_change(sk
);
434 * llc_ui_connect - Connect to a remote llc2 mac + sap.
435 * @sock: Socket which will be connected to the remote destination.
436 * @uaddr: Remote and possibly the local address of the new connection.
437 * @addrlen: Size of uaddr structure.
438 * @flags: Operational flags specified by the user.
440 * Connect to a remote llc2 mac + sap. The caller must specify the
441 * destination mac and address to connect to. If the user hasn't previously
442 * called bind(2) with a smac the address of the first interface of the
443 * specified arp type will be used.
444 * This function will autobind if user did not previously call bind.
445 * Returns: 0 upon success, negative otherwise.
447 static int llc_ui_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
448 int addrlen
, int flags
)
450 struct sock
*sk
= sock
->sk
;
451 struct llc_sock
*llc
= llc_sk(sk
);
452 struct sockaddr_llc
*addr
= (struct sockaddr_llc
*)uaddr
;
456 if (unlikely(addrlen
!= sizeof(*addr
)))
459 if (unlikely(addr
->sllc_family
!= AF_LLC
))
461 if (unlikely(sk
->sk_type
!= SOCK_STREAM
))
464 if (unlikely(sock
->state
== SS_CONNECTING
))
466 /* bind connection to sap if user hasn't done it. */
467 if (sock_flag(sk
, SOCK_ZAPPED
)) {
468 /* bind to sap with null dev, exclusive */
469 rc
= llc_ui_autobind(sock
, addr
);
473 llc
->daddr
.lsap
= addr
->sllc_sap
;
474 memcpy(llc
->daddr
.mac
, addr
->sllc_mac
, IFHWADDRLEN
);
475 sock
->state
= SS_CONNECTING
;
476 sk
->sk_state
= TCP_SYN_SENT
;
477 llc
->link
= llc_ui_next_link_no(llc
->sap
->laddr
.lsap
);
478 rc
= llc_establish_connection(sk
, llc
->dev
->dev_addr
,
479 addr
->sllc_mac
, addr
->sllc_sap
);
481 dprintk("%s: llc_ui_send_conn failed :-(\n", __func__
);
482 sock
->state
= SS_UNCONNECTED
;
483 sk
->sk_state
= TCP_CLOSE
;
487 if (sk
->sk_state
== TCP_SYN_SENT
) {
488 const long timeo
= sock_sndtimeo(sk
, flags
& O_NONBLOCK
);
490 if (!timeo
|| !llc_ui_wait_for_conn(sk
, timeo
))
493 rc
= sock_intr_errno(timeo
);
494 if (signal_pending(current
))
498 if (sk
->sk_state
== TCP_CLOSE
)
501 sock
->state
= SS_CONNECTED
;
507 rc
= sock_error(sk
) ? : -ECONNABORTED
;
508 sock
->state
= SS_UNCONNECTED
;
513 * llc_ui_listen - allow a normal socket to accept incoming connections
514 * @sock: Socket to allow incoming connections on.
515 * @backlog: Number of connections to queue.
517 * Allow a normal socket to accept incoming connections.
518 * Returns 0 upon success, negative otherwise.
520 static int llc_ui_listen(struct socket
*sock
, int backlog
)
522 struct sock
*sk
= sock
->sk
;
526 if (unlikely(sock
->state
!= SS_UNCONNECTED
))
529 if (unlikely(sk
->sk_type
!= SOCK_STREAM
))
532 if (sock_flag(sk
, SOCK_ZAPPED
))
535 if (!(unsigned int)backlog
) /* BSDism */
537 sk
->sk_max_ack_backlog
= backlog
;
538 if (sk
->sk_state
!= TCP_LISTEN
) {
539 sk
->sk_ack_backlog
= 0;
540 sk
->sk_state
= TCP_LISTEN
;
542 sk
->sk_socket
->flags
|= __SO_ACCEPTCON
;
548 static int llc_ui_wait_for_disc(struct sock
*sk
, long timeout
)
550 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
553 add_wait_queue(sk_sleep(sk
), &wait
);
555 if (sk_wait_event(sk
, &timeout
, sk
->sk_state
== TCP_CLOSE
, &wait
))
558 if (signal_pending(current
))
565 remove_wait_queue(sk_sleep(sk
), &wait
);
569 static bool llc_ui_wait_for_conn(struct sock
*sk
, long timeout
)
571 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
573 add_wait_queue(sk_sleep(sk
), &wait
);
575 if (sk_wait_event(sk
, &timeout
, sk
->sk_state
!= TCP_SYN_SENT
, &wait
))
577 if (signal_pending(current
) || !timeout
)
580 remove_wait_queue(sk_sleep(sk
), &wait
);
584 static int llc_ui_wait_for_busy_core(struct sock
*sk
, long timeout
)
586 DEFINE_WAIT_FUNC(wait
, woken_wake_function
);
587 struct llc_sock
*llc
= llc_sk(sk
);
590 add_wait_queue(sk_sleep(sk
), &wait
);
593 if (sk_wait_event(sk
, &timeout
,
594 (sk
->sk_shutdown
& RCV_SHUTDOWN
) ||
595 (!llc_data_accept_state(llc
->state
) &&
596 !llc
->remote_busy_flag
&&
597 !llc
->p_flag
), &wait
))
600 if (signal_pending(current
))
606 remove_wait_queue(sk_sleep(sk
), &wait
);
610 static int llc_wait_data(struct sock
*sk
, long timeo
)
616 * POSIX 1003.1g mandates this order.
622 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
627 rc
= sock_intr_errno(timeo
);
628 if (signal_pending(current
))
631 if (sk_wait_data(sk
, &timeo
, NULL
))
637 static void llc_cmsg_rcv(struct msghdr
*msg
, struct sk_buff
*skb
)
639 struct llc_sock
*llc
= llc_sk(skb
->sk
);
641 if (llc
->cmsg_flags
& LLC_CMSG_PKTINFO
) {
642 struct llc_pktinfo info
;
644 memset(&info
, 0, sizeof(info
));
645 info
.lpi_ifindex
= llc_sk(skb
->sk
)->dev
->ifindex
;
646 llc_pdu_decode_dsap(skb
, &info
.lpi_sap
);
647 llc_pdu_decode_da(skb
, info
.lpi_mac
);
648 put_cmsg(msg
, SOL_LLC
, LLC_OPT_PKTINFO
, sizeof(info
), &info
);
653 * llc_ui_accept - accept a new incoming connection.
654 * @sock: Socket which connections arrive on.
655 * @newsock: Socket to move incoming connection to.
656 * @flags: User specified operational flags.
657 * @kern: If the socket is kernel internal
659 * Accept a new incoming connection.
660 * Returns 0 upon success, negative otherwise.
662 static int llc_ui_accept(struct socket
*sock
, struct socket
*newsock
, int flags
,
665 struct sock
*sk
= sock
->sk
, *newsk
;
666 struct llc_sock
*llc
, *newllc
;
668 int rc
= -EOPNOTSUPP
;
670 dprintk("%s: accepting on %02X\n", __func__
,
671 llc_sk(sk
)->laddr
.lsap
);
673 if (unlikely(sk
->sk_type
!= SOCK_STREAM
))
676 if (unlikely(sock
->state
!= SS_UNCONNECTED
||
677 sk
->sk_state
!= TCP_LISTEN
))
679 /* wait for a connection to arrive. */
680 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
681 rc
= llc_wait_data(sk
, sk
->sk_rcvtimeo
);
685 dprintk("%s: got a new connection on %02X\n", __func__
,
686 llc_sk(sk
)->laddr
.lsap
);
687 skb
= skb_dequeue(&sk
->sk_receive_queue
);
693 /* attach connection to a new socket. */
694 llc_ui_sk_init(newsock
, newsk
);
695 sock_reset_flag(newsk
, SOCK_ZAPPED
);
696 newsk
->sk_state
= TCP_ESTABLISHED
;
697 newsock
->state
= SS_CONNECTED
;
699 newllc
= llc_sk(newsk
);
700 memcpy(&newllc
->addr
, &llc
->addr
, sizeof(newllc
->addr
));
701 newllc
->link
= llc_ui_next_link_no(newllc
->laddr
.lsap
);
703 /* put original socket back into a clean listen state. */
704 sk
->sk_state
= TCP_LISTEN
;
705 sk
->sk_ack_backlog
--;
706 dprintk("%s: ok success on %02X, client on %02X\n", __func__
,
707 llc_sk(sk
)->addr
.sllc_sap
, newllc
->daddr
.lsap
);
716 * llc_ui_recvmsg - copy received data to the socket user.
717 * @sock: Socket to copy data from.
718 * @msg: Various user space related information.
719 * @len: Size of user buffer.
720 * @flags: User specified flags.
722 * Copy received data to the socket user.
723 * Returns non-negative upon success, negative otherwise.
725 static int llc_ui_recvmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
,
728 DECLARE_SOCKADDR(struct sockaddr_llc
*, uaddr
, msg
->msg_name
);
729 const int nonblock
= flags
& MSG_DONTWAIT
;
730 struct sk_buff
*skb
= NULL
;
731 struct sock
*sk
= sock
->sk
;
732 struct llc_sock
*llc
= llc_sk(sk
);
733 unsigned long cpu_flags
;
738 int target
; /* Read at least this many bytes */
743 if (unlikely(sk
->sk_type
== SOCK_STREAM
&& sk
->sk_state
== TCP_LISTEN
))
746 timeo
= sock_rcvtimeo(sk
, nonblock
);
748 seq
= &llc
->copied_seq
;
749 if (flags
& MSG_PEEK
) {
750 peek_seq
= llc
->copied_seq
;
754 target
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, len
);
761 * We need to check signals first, to get correct SIGURG
762 * handling. FIXME: Need to check this doesn't impact 1003.1g
763 * and move it down to the bottom of the loop
765 if (signal_pending(current
)) {
768 copied
= timeo
? sock_intr_errno(timeo
) : -EAGAIN
;
772 /* Next get a buffer. */
774 skb
= skb_peek(&sk
->sk_receive_queue
);
779 /* Well, if we have backlog, try to process it now yet. */
781 if (copied
>= target
&& !sk
->sk_backlog
.tail
)
786 sk
->sk_state
== TCP_CLOSE
||
787 (sk
->sk_shutdown
& RCV_SHUTDOWN
) ||
792 if (sock_flag(sk
, SOCK_DONE
))
796 copied
= sock_error(sk
);
799 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
802 if (sk
->sk_type
== SOCK_STREAM
&& sk
->sk_state
== TCP_CLOSE
) {
803 if (!sock_flag(sk
, SOCK_DONE
)) {
805 * This occurs when user tries to read
806 * from never connected socket.
819 if (copied
>= target
) { /* Do not sleep, just process backlog. */
823 sk_wait_data(sk
, &timeo
, NULL
);
825 if ((flags
& MSG_PEEK
) && peek_seq
!= llc
->copied_seq
) {
826 net_dbg_ratelimited("LLC(%s:%d): Application bug, race in MSG_PEEK\n",
828 task_pid_nr(current
));
829 peek_seq
= llc
->copied_seq
;
834 /* Ok so how much can we use? */
835 used
= skb
->len
- offset
;
839 if (!(flags
& MSG_TRUNC
)) {
840 int rc
= skb_copy_datagram_msg(skb
, offset
, msg
, used
);
842 /* Exception. Bailout! */
853 /* For non stream protcols we get one packet per recvmsg call */
854 if (sk
->sk_type
!= SOCK_STREAM
)
857 if (!(flags
& MSG_PEEK
)) {
858 spin_lock_irqsave(&sk
->sk_receive_queue
.lock
, cpu_flags
);
860 spin_unlock_irqrestore(&sk
->sk_receive_queue
.lock
, cpu_flags
);
865 if (used
+ offset
< skb_len
)
873 if (uaddr
!= NULL
&& skb
!= NULL
) {
874 memcpy(uaddr
, llc_ui_skb_cb(skb
), sizeof(*uaddr
));
875 msg
->msg_namelen
= sizeof(*uaddr
);
877 if (llc_sk(sk
)->cmsg_flags
)
878 llc_cmsg_rcv(msg
, skb
);
880 if (!(flags
& MSG_PEEK
)) {
881 spin_lock_irqsave(&sk
->sk_receive_queue
.lock
, cpu_flags
);
883 spin_unlock_irqrestore(&sk
->sk_receive_queue
.lock
, cpu_flags
);
891 * llc_ui_sendmsg - Transmit data provided by the socket user.
892 * @sock: Socket to transmit data from.
893 * @msg: Various user related information.
894 * @len: Length of data to transmit.
896 * Transmit data provided by the socket user.
897 * Returns non-negative upon success, negative otherwise.
899 static int llc_ui_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
)
901 struct sock
*sk
= sock
->sk
;
902 struct llc_sock
*llc
= llc_sk(sk
);
903 DECLARE_SOCKADDR(struct sockaddr_llc
*, addr
, msg
->msg_name
);
904 int flags
= msg
->msg_flags
;
905 int noblock
= flags
& MSG_DONTWAIT
;
908 int rc
= -EINVAL
, copied
= 0, hdrlen
;
910 dprintk("%s: sending from %02X to %02X\n", __func__
,
911 llc
->laddr
.lsap
, llc
->daddr
.lsap
);
914 if (msg
->msg_namelen
< sizeof(*addr
))
917 if (llc_ui_addr_null(&llc
->addr
))
921 /* must bind connection to sap if user hasn't done it. */
922 if (sock_flag(sk
, SOCK_ZAPPED
)) {
923 /* bind to sap with null dev, exclusive. */
924 rc
= llc_ui_autobind(sock
, addr
);
928 hdrlen
= llc
->dev
->hard_header_len
+ llc_ui_header_len(sk
, addr
);
930 if (size
> llc
->dev
->mtu
)
931 size
= llc
->dev
->mtu
;
932 copied
= size
- hdrlen
;
937 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
942 skb
->protocol
= llc_proto_type(addr
->sllc_arphrd
);
943 skb_reserve(skb
, hdrlen
);
944 rc
= memcpy_from_msg(skb_put(skb
, copied
), msg
, copied
);
947 if (sk
->sk_type
== SOCK_DGRAM
|| addr
->sllc_ua
) {
948 llc_build_and_send_ui_pkt(llc
->sap
, skb
, addr
->sllc_mac
,
952 if (addr
->sllc_test
) {
953 llc_build_and_send_test_pkt(llc
->sap
, skb
, addr
->sllc_mac
,
957 if (addr
->sllc_xid
) {
958 llc_build_and_send_xid_pkt(llc
->sap
, skb
, addr
->sllc_mac
,
963 if (!(sk
->sk_type
== SOCK_STREAM
&& !addr
->sllc_ua
))
965 rc
= llc_ui_send_data(sk
, skb
, noblock
);
970 dprintk("%s: failed sending from %02X to %02X: %d\n",
971 __func__
, llc
->laddr
.lsap
, llc
->daddr
.lsap
, rc
);
974 return rc
? : copied
;
978 * llc_ui_getname - return the address info of a socket
979 * @sock: Socket to get address of.
980 * @uaddr: Address structure to return information.
981 * @uaddrlen: Length of address structure.
982 * @peer: Does user want local or remote address information.
984 * Return the address information of a socket.
986 static int llc_ui_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
989 struct sockaddr_llc sllc
;
990 struct sock
*sk
= sock
->sk
;
991 struct llc_sock
*llc
= llc_sk(sk
);
994 memset(&sllc
, 0, sizeof(sllc
));
996 if (sock_flag(sk
, SOCK_ZAPPED
))
1000 if (sk
->sk_state
!= TCP_ESTABLISHED
)
1003 sllc
.sllc_arphrd
= llc
->dev
->type
;
1004 sllc
.sllc_sap
= llc
->daddr
.lsap
;
1005 memcpy(&sllc
.sllc_mac
, &llc
->daddr
.mac
, IFHWADDRLEN
);
1010 sllc
.sllc_sap
= llc
->sap
->laddr
.lsap
;
1013 sllc
.sllc_arphrd
= llc
->dev
->type
;
1014 memcpy(&sllc
.sllc_mac
, llc
->dev
->dev_addr
,
1018 sllc
.sllc_family
= AF_LLC
;
1019 memcpy(uaddr
, &sllc
, sizeof(sllc
));
1027 * llc_ui_ioctl - io controls for PF_LLC
1028 * @sock: Socket to get/set info
1030 * @arg: optional argument for cmd
1032 * get/set info on llc sockets
1034 static int llc_ui_ioctl(struct socket
*sock
, unsigned int cmd
,
1037 return -ENOIOCTLCMD
;
1041 * llc_ui_setsockopt - set various connection specific parameters.
1042 * @sock: Socket to set options on.
1043 * @level: Socket level user is requesting operations on.
1044 * @optname: Operation name.
1045 * @optval: User provided operation data.
1046 * @optlen: Length of optval.
1048 * Set various connection specific parameters.
1050 static int llc_ui_setsockopt(struct socket
*sock
, int level
, int optname
,
1051 char __user
*optval
, unsigned int optlen
)
1053 struct sock
*sk
= sock
->sk
;
1054 struct llc_sock
*llc
= llc_sk(sk
);
1059 if (unlikely(level
!= SOL_LLC
|| optlen
!= sizeof(int)))
1061 rc
= get_user(opt
, (int __user
*)optval
);
1067 if (opt
> LLC_OPT_MAX_RETRY
)
1072 if (opt
> LLC_OPT_MAX_SIZE
)
1076 case LLC_OPT_ACK_TMR_EXP
:
1077 if (opt
> LLC_OPT_MAX_ACK_TMR_EXP
)
1079 llc
->ack_timer
.expire
= opt
* HZ
;
1081 case LLC_OPT_P_TMR_EXP
:
1082 if (opt
> LLC_OPT_MAX_P_TMR_EXP
)
1084 llc
->pf_cycle_timer
.expire
= opt
* HZ
;
1086 case LLC_OPT_REJ_TMR_EXP
:
1087 if (opt
> LLC_OPT_MAX_REJ_TMR_EXP
)
1089 llc
->rej_sent_timer
.expire
= opt
* HZ
;
1091 case LLC_OPT_BUSY_TMR_EXP
:
1092 if (opt
> LLC_OPT_MAX_BUSY_TMR_EXP
)
1094 llc
->busy_state_timer
.expire
= opt
* HZ
;
1096 case LLC_OPT_TX_WIN
:
1097 if (opt
> LLC_OPT_MAX_WIN
)
1101 case LLC_OPT_RX_WIN
:
1102 if (opt
> LLC_OPT_MAX_WIN
)
1106 case LLC_OPT_PKTINFO
:
1108 llc
->cmsg_flags
|= LLC_CMSG_PKTINFO
;
1110 llc
->cmsg_flags
&= ~LLC_CMSG_PKTINFO
;
1123 * llc_ui_getsockopt - get connection specific socket info
1124 * @sock: Socket to get information from.
1125 * @level: Socket level user is requesting operations on.
1126 * @optname: Operation name.
1127 * @optval: Variable to return operation data in.
1128 * @optlen: Length of optval.
1130 * Get connection specific socket information.
1132 static int llc_ui_getsockopt(struct socket
*sock
, int level
, int optname
,
1133 char __user
*optval
, int __user
*optlen
)
1135 struct sock
*sk
= sock
->sk
;
1136 struct llc_sock
*llc
= llc_sk(sk
);
1137 int val
= 0, len
= 0, rc
= -EINVAL
;
1140 if (unlikely(level
!= SOL_LLC
))
1142 rc
= get_user(len
, optlen
);
1146 if (len
!= sizeof(int))
1150 val
= llc
->n2
; break;
1152 val
= llc
->n1
; break;
1153 case LLC_OPT_ACK_TMR_EXP
:
1154 val
= llc
->ack_timer
.expire
/ HZ
; break;
1155 case LLC_OPT_P_TMR_EXP
:
1156 val
= llc
->pf_cycle_timer
.expire
/ HZ
; break;
1157 case LLC_OPT_REJ_TMR_EXP
:
1158 val
= llc
->rej_sent_timer
.expire
/ HZ
; break;
1159 case LLC_OPT_BUSY_TMR_EXP
:
1160 val
= llc
->busy_state_timer
.expire
/ HZ
; break;
1161 case LLC_OPT_TX_WIN
:
1162 val
= llc
->k
; break;
1163 case LLC_OPT_RX_WIN
:
1164 val
= llc
->rw
; break;
1165 case LLC_OPT_PKTINFO
:
1166 val
= (llc
->cmsg_flags
& LLC_CMSG_PKTINFO
) != 0;
1173 if (put_user(len
, optlen
) || copy_to_user(optval
, &val
, len
))
1180 static const struct net_proto_family llc_ui_family_ops
= {
1182 .create
= llc_ui_create
,
1183 .owner
= THIS_MODULE
,
1186 static const struct proto_ops llc_ui_ops
= {
1188 .owner
= THIS_MODULE
,
1189 .release
= llc_ui_release
,
1190 .bind
= llc_ui_bind
,
1191 .connect
= llc_ui_connect
,
1192 .socketpair
= sock_no_socketpair
,
1193 .accept
= llc_ui_accept
,
1194 .getname
= llc_ui_getname
,
1195 .poll
= datagram_poll
,
1196 .ioctl
= llc_ui_ioctl
,
1197 .listen
= llc_ui_listen
,
1198 .shutdown
= llc_ui_shutdown
,
1199 .setsockopt
= llc_ui_setsockopt
,
1200 .getsockopt
= llc_ui_getsockopt
,
1201 .sendmsg
= llc_ui_sendmsg
,
1202 .recvmsg
= llc_ui_recvmsg
,
1203 .mmap
= sock_no_mmap
,
1204 .sendpage
= sock_no_sendpage
,
1207 static const char llc_proc_err_msg
[] __initconst
=
1208 KERN_CRIT
"LLC: Unable to register the proc_fs entries\n";
1209 static const char llc_sysctl_err_msg
[] __initconst
=
1210 KERN_CRIT
"LLC: Unable to register the sysctl entries\n";
1211 static const char llc_sock_err_msg
[] __initconst
=
1212 KERN_CRIT
"LLC: Unable to register the network family\n";
1214 static int __init
llc2_init(void)
1216 int rc
= proto_register(&llc_proto
, 0);
1221 llc_build_offset_table();
1223 llc_ui_sap_last_autoport
= LLC_SAP_DYN_START
;
1224 rc
= llc_proc_init();
1226 printk(llc_proc_err_msg
);
1229 rc
= llc_sysctl_init();
1231 printk(llc_sysctl_err_msg
);
1234 rc
= sock_register(&llc_ui_family_ops
);
1236 printk(llc_sock_err_msg
);
1239 llc_add_pack(LLC_DEST_SAP
, llc_sap_handler
);
1240 llc_add_pack(LLC_DEST_CONN
, llc_conn_handler
);
1249 proto_unregister(&llc_proto
);
1253 static void __exit
llc2_exit(void)
1256 llc_remove_pack(LLC_DEST_SAP
);
1257 llc_remove_pack(LLC_DEST_CONN
);
1258 sock_unregister(PF_LLC
);
1261 proto_unregister(&llc_proto
);
1264 module_init(llc2_init
);
1265 module_exit(llc2_exit
);
1267 MODULE_LICENSE("GPL");
1268 MODULE_AUTHOR("Procom 1997, Jay Schullist 2001, Arnaldo C. Melo 2001-2003");
1269 MODULE_DESCRIPTION("IEEE 802.2 PF_LLC support");
1270 MODULE_ALIAS_NETPROTO(PF_LLC
);