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>
30 #include <net/llc_sap.h>
31 #include <net/llc_pdu.h>
32 #include <net/llc_conn.h>
33 #include <net/tcp_states.h>
35 /* remember: uninitialized global data is zeroed because its in .bss */
36 static u16 llc_ui_sap_last_autoport
= LLC_SAP_DYN_START
;
37 static u16 llc_ui_sap_link_no_max
[256];
38 static struct sockaddr_llc llc_ui_addrnull
;
39 static const struct proto_ops llc_ui_ops
;
41 static int llc_ui_wait_for_conn(struct sock
*sk
, long timeout
);
42 static int llc_ui_wait_for_disc(struct sock
*sk
, long timeout
);
43 static int llc_ui_wait_for_busy_core(struct sock
*sk
, long timeout
);
46 #define dprintk(args...) printk(KERN_DEBUG args)
48 #define dprintk(args...)
51 /* Maybe we'll add some more in the future. */
52 #define LLC_CMSG_PKTINFO 1
56 * llc_ui_next_link_no - return the next unused link number for a sap
57 * @sap: Address of sap to get link number from.
59 * Return the next unused link number for a given sap.
61 static inline u16
llc_ui_next_link_no(int sap
)
63 return llc_ui_sap_link_no_max
[sap
]++;
67 * llc_proto_type - return eth protocol for ARP header type
68 * @arphrd: ARP header type.
70 * Given an ARP header type return the corresponding ethernet protocol.
72 static inline __be16
llc_proto_type(u16 arphrd
)
74 return htons(ETH_P_802_2
);
78 * llc_ui_addr_null - determines if a address structure is null
79 * @addr: Address to test if null.
81 static inline u8
llc_ui_addr_null(struct sockaddr_llc
*addr
)
83 return !memcmp(addr
, &llc_ui_addrnull
, sizeof(*addr
));
87 * llc_ui_header_len - return length of llc header based on operation
88 * @sk: Socket which contains a valid llc socket type.
89 * @addr: Complete sockaddr_llc structure received from the user.
91 * Provide the length of the llc header depending on what kind of
92 * operation the user would like to perform and the type of socket.
93 * Returns the correct llc header length.
95 static inline u8
llc_ui_header_len(struct sock
*sk
, struct sockaddr_llc
*addr
)
97 u8 rc
= LLC_PDU_LEN_U
;
99 if (addr
->sllc_test
|| addr
->sllc_xid
)
101 else if (sk
->sk_type
== SOCK_STREAM
)
107 * llc_ui_send_data - send data via reliable llc2 connection
108 * @sk: Connection the socket is using.
109 * @skb: Data the user wishes to send.
110 * @noblock: can we block waiting for data?
112 * Send data via reliable llc2 connection.
113 * Returns 0 upon success, non-zero if action did not succeed.
115 static int llc_ui_send_data(struct sock
* sk
, struct sk_buff
*skb
, int noblock
)
117 struct llc_sock
* llc
= llc_sk(sk
);
120 if (unlikely(llc_data_accept_state(llc
->state
) ||
121 llc
->remote_busy_flag
||
123 long timeout
= sock_sndtimeo(sk
, noblock
);
125 rc
= llc_ui_wait_for_busy_core(sk
, timeout
);
128 rc
= llc_build_and_send_pkt(sk
, skb
);
132 static void llc_ui_sk_init(struct socket
*sock
, struct sock
*sk
)
134 sock_graft(sk
, sock
);
135 sk
->sk_type
= sock
->type
;
136 sock
->ops
= &llc_ui_ops
;
139 static struct proto llc_proto
= {
141 .owner
= THIS_MODULE
,
142 .obj_size
= sizeof(struct llc_sock
),
143 .slab_flags
= SLAB_DESTROY_BY_RCU
,
147 * llc_ui_create - alloc and init a new llc_ui socket
148 * @net: network namespace (must be default network)
149 * @sock: Socket to initialize and attach allocated sk to.
151 * @kern: on behalf of kernel or userspace
153 * Allocate and initialize a new llc_ui socket, validate the user wants a
154 * socket type we have available.
155 * Returns 0 upon success, negative upon failure.
157 static int llc_ui_create(struct net
*net
, struct socket
*sock
, int protocol
,
161 int rc
= -ESOCKTNOSUPPORT
;
163 if (!ns_capable(net
->user_ns
, CAP_NET_RAW
))
166 if (!net_eq(net
, &init_net
))
167 return -EAFNOSUPPORT
;
169 if (likely(sock
->type
== SOCK_DGRAM
|| sock
->type
== SOCK_STREAM
)) {
171 sk
= llc_sk_alloc(net
, PF_LLC
, GFP_KERNEL
, &llc_proto
, kern
);
174 llc_ui_sk_init(sock
, sk
);
181 * llc_ui_release - shutdown socket
182 * @sock: Socket to release.
184 * Shutdown and deallocate an existing socket.
186 static int llc_ui_release(struct socket
*sock
)
188 struct sock
*sk
= sock
->sk
;
189 struct llc_sock
*llc
;
191 if (unlikely(sk
== NULL
))
196 dprintk("%s: closing local(%02X) remote(%02X)\n", __func__
,
197 llc
->laddr
.lsap
, llc
->daddr
.lsap
);
198 if (!llc_send_disc(sk
))
199 llc_ui_wait_for_disc(sk
, sk
->sk_rcvtimeo
);
200 if (!sock_flag(sk
, SOCK_ZAPPED
)) {
201 struct llc_sap
*sap
= llc
->sap
;
203 /* Hold this for release_sock(), so that llc_backlog_rcv()
204 * could still use it.
207 llc_sap_remove_socket(llc
->sap
, sk
);
222 * llc_ui_autoport - provide dynamically allocate SAP number
224 * Provide the caller with a dynamically allocated SAP number according
225 * to the rules that are set in this function. Returns: 0, upon failure,
226 * SAP number otherwise.
228 static int llc_ui_autoport(void)
233 while (tries
< LLC_SAP_DYN_TRIES
) {
234 for (i
= llc_ui_sap_last_autoport
;
235 i
< LLC_SAP_DYN_STOP
; i
+= 2) {
236 sap
= llc_sap_find(i
);
238 llc_ui_sap_last_autoport
= i
+ 2;
243 llc_ui_sap_last_autoport
= LLC_SAP_DYN_START
;
252 * llc_ui_autobind - automatically bind a socket to a sap
253 * @sock: socket to bind
254 * @addr: address to connect to
256 * Used by llc_ui_connect and llc_ui_sendmsg when the user hasn't
257 * specifically used llc_ui_bind to bind to an specific address/sap
259 * Returns: 0 upon success, negative otherwise.
261 static int llc_ui_autobind(struct socket
*sock
, struct sockaddr_llc
*addr
)
263 struct sock
*sk
= sock
->sk
;
264 struct llc_sock
*llc
= llc_sk(sk
);
268 if (!sock_flag(sk
, SOCK_ZAPPED
))
271 if (sk
->sk_bound_dev_if
) {
272 llc
->dev
= dev_get_by_index(&init_net
, sk
->sk_bound_dev_if
);
273 if (llc
->dev
&& addr
->sllc_arphrd
!= llc
->dev
->type
) {
278 llc
->dev
= dev_getfirstbyhwtype(&init_net
, addr
->sllc_arphrd
);
282 llc
->laddr
.lsap
= llc_ui_autoport();
283 if (!llc
->laddr
.lsap
)
285 rc
= -EBUSY
; /* some other network layer is using the sap */
286 sap
= llc_sap_open(llc
->laddr
.lsap
, NULL
);
289 memcpy(llc
->laddr
.mac
, llc
->dev
->dev_addr
, IFHWADDRLEN
);
290 memcpy(&llc
->addr
, addr
, sizeof(llc
->addr
));
291 /* assign new connection to its SAP */
292 llc_sap_add_socket(sap
, sk
);
293 sock_reset_flag(sk
, SOCK_ZAPPED
);
300 * llc_ui_bind - bind a socket to a specific address.
301 * @sock: Socket to bind an address to.
302 * @uaddr: Address the user wants the socket bound to.
303 * @addrlen: Length of the uaddr structure.
305 * Bind a socket to a specific address. For llc a user is able to bind to
306 * a specific sap only or mac + sap.
307 * If the user desires to bind to a specific mac + sap, it is possible to
308 * have multiple sap connections via multiple macs.
309 * Bind and autobind for that matter must enforce the correct sap usage
310 * otherwise all hell will break loose.
311 * Returns: 0 upon success, negative otherwise.
313 static int llc_ui_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addrlen
)
315 struct sockaddr_llc
*addr
= (struct sockaddr_llc
*)uaddr
;
316 struct sock
*sk
= sock
->sk
;
317 struct llc_sock
*llc
= llc_sk(sk
);
321 dprintk("%s: binding %02X\n", __func__
, addr
->sllc_sap
);
324 if (unlikely(!sock_flag(sk
, SOCK_ZAPPED
) || addrlen
!= sizeof(*addr
)))
327 if (unlikely(addr
->sllc_family
!= AF_LLC
))
331 if (sk
->sk_bound_dev_if
) {
332 llc
->dev
= dev_get_by_index_rcu(&init_net
, sk
->sk_bound_dev_if
);
334 if (!addr
->sllc_arphrd
)
335 addr
->sllc_arphrd
= llc
->dev
->type
;
336 if (is_zero_ether_addr(addr
->sllc_mac
))
337 memcpy(addr
->sllc_mac
, llc
->dev
->dev_addr
,
339 if (addr
->sllc_arphrd
!= llc
->dev
->type
||
340 !ether_addr_equal(addr
->sllc_mac
,
341 llc
->dev
->dev_addr
)) {
347 llc
->dev
= dev_getbyhwaddr_rcu(&init_net
, addr
->sllc_arphrd
,
354 if (!addr
->sllc_sap
) {
356 addr
->sllc_sap
= llc_ui_autoport();
360 sap
= llc_sap_find(addr
->sllc_sap
);
362 sap
= llc_sap_open(addr
->sllc_sap
, NULL
);
363 rc
= -EBUSY
; /* some other network layer is using the sap */
367 struct llc_addr laddr
, daddr
;
370 memset(&laddr
, 0, sizeof(laddr
));
371 memset(&daddr
, 0, sizeof(daddr
));
373 * FIXME: check if the address is multicast,
374 * only SOCK_DGRAM can do this.
376 memcpy(laddr
.mac
, addr
->sllc_mac
, IFHWADDRLEN
);
377 laddr
.lsap
= addr
->sllc_sap
;
378 rc
= -EADDRINUSE
; /* mac + sap clash. */
379 ask
= llc_lookup_established(sap
, &daddr
, &laddr
);
385 llc
->laddr
.lsap
= addr
->sllc_sap
;
386 memcpy(llc
->laddr
.mac
, addr
->sllc_mac
, IFHWADDRLEN
);
387 memcpy(&llc
->addr
, addr
, sizeof(llc
->addr
));
388 /* assign new connection to its SAP */
389 llc_sap_add_socket(sap
, sk
);
390 sock_reset_flag(sk
, SOCK_ZAPPED
);
400 * llc_ui_shutdown - shutdown a connect llc2 socket.
401 * @sock: Socket to shutdown.
402 * @how: What part of the socket to shutdown.
404 * Shutdown a connected llc2 socket. Currently this function only supports
405 * shutting down both sends and receives (2), we could probably make this
406 * function such that a user can shutdown only half the connection but not
408 * Returns: 0 upon success, negative otherwise.
410 static int llc_ui_shutdown(struct socket
*sock
, int how
)
412 struct sock
*sk
= sock
->sk
;
416 if (unlikely(sk
->sk_state
!= TCP_ESTABLISHED
))
421 rc
= llc_send_disc(sk
);
423 rc
= llc_ui_wait_for_disc(sk
, sk
->sk_rcvtimeo
);
424 /* Wake up anyone sleeping in poll */
425 sk
->sk_state_change(sk
);
432 * llc_ui_connect - Connect to a remote llc2 mac + sap.
433 * @sock: Socket which will be connected to the remote destination.
434 * @uaddr: Remote and possibly the local address of the new connection.
435 * @addrlen: Size of uaddr structure.
436 * @flags: Operational flags specified by the user.
438 * Connect to a remote llc2 mac + sap. The caller must specify the
439 * destination mac and address to connect to. If the user hasn't previously
440 * called bind(2) with a smac the address of the first interface of the
441 * specified arp type will be used.
442 * This function will autobind if user did not previously call bind.
443 * Returns: 0 upon success, negative otherwise.
445 static int llc_ui_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
446 int addrlen
, int flags
)
448 struct sock
*sk
= sock
->sk
;
449 struct llc_sock
*llc
= llc_sk(sk
);
450 struct sockaddr_llc
*addr
= (struct sockaddr_llc
*)uaddr
;
454 if (unlikely(addrlen
!= sizeof(*addr
)))
457 if (unlikely(addr
->sllc_family
!= AF_LLC
))
459 if (unlikely(sk
->sk_type
!= SOCK_STREAM
))
462 if (unlikely(sock
->state
== SS_CONNECTING
))
464 /* bind connection to sap if user hasn't done it. */
465 if (sock_flag(sk
, SOCK_ZAPPED
)) {
466 /* bind to sap with null dev, exclusive */
467 rc
= llc_ui_autobind(sock
, addr
);
471 llc
->daddr
.lsap
= addr
->sllc_sap
;
472 memcpy(llc
->daddr
.mac
, addr
->sllc_mac
, IFHWADDRLEN
);
473 sock
->state
= SS_CONNECTING
;
474 sk
->sk_state
= TCP_SYN_SENT
;
475 llc
->link
= llc_ui_next_link_no(llc
->sap
->laddr
.lsap
);
476 rc
= llc_establish_connection(sk
, llc
->dev
->dev_addr
,
477 addr
->sllc_mac
, addr
->sllc_sap
);
479 dprintk("%s: llc_ui_send_conn failed :-(\n", __func__
);
480 sock
->state
= SS_UNCONNECTED
;
481 sk
->sk_state
= TCP_CLOSE
;
485 if (sk
->sk_state
== TCP_SYN_SENT
) {
486 const long timeo
= sock_sndtimeo(sk
, flags
& O_NONBLOCK
);
488 if (!timeo
|| !llc_ui_wait_for_conn(sk
, timeo
))
491 rc
= sock_intr_errno(timeo
);
492 if (signal_pending(current
))
496 if (sk
->sk_state
== TCP_CLOSE
)
499 sock
->state
= SS_CONNECTED
;
505 rc
= sock_error(sk
) ? : -ECONNABORTED
;
506 sock
->state
= SS_UNCONNECTED
;
511 * llc_ui_listen - allow a normal socket to accept incoming connections
512 * @sock: Socket to allow incoming connections on.
513 * @backlog: Number of connections to queue.
515 * Allow a normal socket to accept incoming connections.
516 * Returns 0 upon success, negative otherwise.
518 static int llc_ui_listen(struct socket
*sock
, int backlog
)
520 struct sock
*sk
= sock
->sk
;
524 if (unlikely(sock
->state
!= SS_UNCONNECTED
))
527 if (unlikely(sk
->sk_type
!= SOCK_STREAM
))
530 if (sock_flag(sk
, SOCK_ZAPPED
))
533 if (!(unsigned int)backlog
) /* BSDism */
535 sk
->sk_max_ack_backlog
= backlog
;
536 if (sk
->sk_state
!= TCP_LISTEN
) {
537 sk
->sk_ack_backlog
= 0;
538 sk
->sk_state
= TCP_LISTEN
;
540 sk
->sk_socket
->flags
|= __SO_ACCEPTCON
;
546 static int llc_ui_wait_for_disc(struct sock
*sk
, long timeout
)
552 prepare_to_wait(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
553 if (sk_wait_event(sk
, &timeout
, sk
->sk_state
== TCP_CLOSE
))
556 if (signal_pending(current
))
563 finish_wait(sk_sleep(sk
), &wait
);
567 static int llc_ui_wait_for_conn(struct sock
*sk
, long timeout
)
572 prepare_to_wait(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
573 if (sk_wait_event(sk
, &timeout
, sk
->sk_state
!= TCP_SYN_SENT
))
575 if (signal_pending(current
) || !timeout
)
578 finish_wait(sk_sleep(sk
), &wait
);
582 static int llc_ui_wait_for_busy_core(struct sock
*sk
, long timeout
)
585 struct llc_sock
*llc
= llc_sk(sk
);
589 prepare_to_wait(sk_sleep(sk
), &wait
, TASK_INTERRUPTIBLE
);
591 if (sk_wait_event(sk
, &timeout
,
592 (sk
->sk_shutdown
& RCV_SHUTDOWN
) ||
593 (!llc_data_accept_state(llc
->state
) &&
594 !llc
->remote_busy_flag
&&
598 if (signal_pending(current
))
604 finish_wait(sk_sleep(sk
), &wait
);
608 static int llc_wait_data(struct sock
*sk
, long timeo
)
614 * POSIX 1003.1g mandates this order.
620 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
625 rc
= sock_intr_errno(timeo
);
626 if (signal_pending(current
))
629 if (sk_wait_data(sk
, &timeo
, NULL
))
635 static void llc_cmsg_rcv(struct msghdr
*msg
, struct sk_buff
*skb
)
637 struct llc_sock
*llc
= llc_sk(skb
->sk
);
639 if (llc
->cmsg_flags
& LLC_CMSG_PKTINFO
) {
640 struct llc_pktinfo info
;
642 memset(&info
, 0, sizeof(info
));
643 info
.lpi_ifindex
= llc_sk(skb
->sk
)->dev
->ifindex
;
644 llc_pdu_decode_dsap(skb
, &info
.lpi_sap
);
645 llc_pdu_decode_da(skb
, info
.lpi_mac
);
646 put_cmsg(msg
, SOL_LLC
, LLC_OPT_PKTINFO
, sizeof(info
), &info
);
651 * llc_ui_accept - accept a new incoming connection.
652 * @sock: Socket which connections arrive on.
653 * @newsock: Socket to move incoming connection to.
654 * @flags: User specified operational flags.
656 * Accept a new incoming connection.
657 * Returns 0 upon success, negative otherwise.
659 static int llc_ui_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
661 struct sock
*sk
= sock
->sk
, *newsk
;
662 struct llc_sock
*llc
, *newllc
;
664 int rc
= -EOPNOTSUPP
;
666 dprintk("%s: accepting on %02X\n", __func__
,
667 llc_sk(sk
)->laddr
.lsap
);
669 if (unlikely(sk
->sk_type
!= SOCK_STREAM
))
672 if (unlikely(sock
->state
!= SS_UNCONNECTED
||
673 sk
->sk_state
!= TCP_LISTEN
))
675 /* wait for a connection to arrive. */
676 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
677 rc
= llc_wait_data(sk
, sk
->sk_rcvtimeo
);
681 dprintk("%s: got a new connection on %02X\n", __func__
,
682 llc_sk(sk
)->laddr
.lsap
);
683 skb
= skb_dequeue(&sk
->sk_receive_queue
);
689 /* attach connection to a new socket. */
690 llc_ui_sk_init(newsock
, newsk
);
691 sock_reset_flag(newsk
, SOCK_ZAPPED
);
692 newsk
->sk_state
= TCP_ESTABLISHED
;
693 newsock
->state
= SS_CONNECTED
;
695 newllc
= llc_sk(newsk
);
696 memcpy(&newllc
->addr
, &llc
->addr
, sizeof(newllc
->addr
));
697 newllc
->link
= llc_ui_next_link_no(newllc
->laddr
.lsap
);
699 /* put original socket back into a clean listen state. */
700 sk
->sk_state
= TCP_LISTEN
;
701 sk
->sk_ack_backlog
--;
702 dprintk("%s: ok success on %02X, client on %02X\n", __func__
,
703 llc_sk(sk
)->addr
.sllc_sap
, newllc
->daddr
.lsap
);
712 * llc_ui_recvmsg - copy received data to the socket user.
713 * @sock: Socket to copy data from.
714 * @msg: Various user space related information.
715 * @len: Size of user buffer.
716 * @flags: User specified flags.
718 * Copy received data to the socket user.
719 * Returns non-negative upon success, negative otherwise.
721 static int llc_ui_recvmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
,
724 DECLARE_SOCKADDR(struct sockaddr_llc
*, uaddr
, msg
->msg_name
);
725 const int nonblock
= flags
& MSG_DONTWAIT
;
726 struct sk_buff
*skb
= NULL
;
727 struct sock
*sk
= sock
->sk
;
728 struct llc_sock
*llc
= llc_sk(sk
);
729 unsigned long cpu_flags
;
734 int target
; /* Read at least this many bytes */
739 if (unlikely(sk
->sk_type
== SOCK_STREAM
&& sk
->sk_state
== TCP_LISTEN
))
742 timeo
= sock_rcvtimeo(sk
, nonblock
);
744 seq
= &llc
->copied_seq
;
745 if (flags
& MSG_PEEK
) {
746 peek_seq
= llc
->copied_seq
;
750 target
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, len
);
757 * We need to check signals first, to get correct SIGURG
758 * handling. FIXME: Need to check this doesn't impact 1003.1g
759 * and move it down to the bottom of the loop
761 if (signal_pending(current
)) {
764 copied
= timeo
? sock_intr_errno(timeo
) : -EAGAIN
;
768 /* Next get a buffer. */
770 skb
= skb_peek(&sk
->sk_receive_queue
);
775 /* Well, if we have backlog, try to process it now yet. */
777 if (copied
>= target
&& !sk
->sk_backlog
.tail
)
782 sk
->sk_state
== TCP_CLOSE
||
783 (sk
->sk_shutdown
& RCV_SHUTDOWN
) ||
788 if (sock_flag(sk
, SOCK_DONE
))
792 copied
= sock_error(sk
);
795 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
798 if (sk
->sk_type
== SOCK_STREAM
&& sk
->sk_state
== TCP_CLOSE
) {
799 if (!sock_flag(sk
, SOCK_DONE
)) {
801 * This occurs when user tries to read
802 * from never connected socket.
815 if (copied
>= target
) { /* Do not sleep, just process backlog. */
819 sk_wait_data(sk
, &timeo
, NULL
);
821 if ((flags
& MSG_PEEK
) && peek_seq
!= llc
->copied_seq
) {
822 net_dbg_ratelimited("LLC(%s:%d): Application bug, race in MSG_PEEK\n",
824 task_pid_nr(current
));
825 peek_seq
= llc
->copied_seq
;
830 /* Ok so how much can we use? */
831 used
= skb
->len
- offset
;
835 if (!(flags
& MSG_TRUNC
)) {
836 int rc
= skb_copy_datagram_msg(skb
, offset
, msg
, used
);
838 /* Exception. Bailout! */
849 /* For non stream protcols we get one packet per recvmsg call */
850 if (sk
->sk_type
!= SOCK_STREAM
)
853 if (!(flags
& MSG_PEEK
)) {
854 spin_lock_irqsave(&sk
->sk_receive_queue
.lock
, cpu_flags
);
856 spin_unlock_irqrestore(&sk
->sk_receive_queue
.lock
, cpu_flags
);
861 if (used
+ offset
< skb_len
)
869 if (uaddr
!= NULL
&& skb
!= NULL
) {
870 memcpy(uaddr
, llc_ui_skb_cb(skb
), sizeof(*uaddr
));
871 msg
->msg_namelen
= sizeof(*uaddr
);
873 if (llc_sk(sk
)->cmsg_flags
)
874 llc_cmsg_rcv(msg
, skb
);
876 if (!(flags
& MSG_PEEK
)) {
877 spin_lock_irqsave(&sk
->sk_receive_queue
.lock
, cpu_flags
);
879 spin_unlock_irqrestore(&sk
->sk_receive_queue
.lock
, cpu_flags
);
887 * llc_ui_sendmsg - Transmit data provided by the socket user.
888 * @sock: Socket to transmit data from.
889 * @msg: Various user related information.
890 * @len: Length of data to transmit.
892 * Transmit data provided by the socket user.
893 * Returns non-negative upon success, negative otherwise.
895 static int llc_ui_sendmsg(struct socket
*sock
, struct msghdr
*msg
, size_t len
)
897 struct sock
*sk
= sock
->sk
;
898 struct llc_sock
*llc
= llc_sk(sk
);
899 DECLARE_SOCKADDR(struct sockaddr_llc
*, addr
, msg
->msg_name
);
900 int flags
= msg
->msg_flags
;
901 int noblock
= flags
& MSG_DONTWAIT
;
904 int rc
= -EINVAL
, copied
= 0, hdrlen
;
906 dprintk("%s: sending from %02X to %02X\n", __func__
,
907 llc
->laddr
.lsap
, llc
->daddr
.lsap
);
910 if (msg
->msg_namelen
< sizeof(*addr
))
913 if (llc_ui_addr_null(&llc
->addr
))
917 /* must bind connection to sap if user hasn't done it. */
918 if (sock_flag(sk
, SOCK_ZAPPED
)) {
919 /* bind to sap with null dev, exclusive. */
920 rc
= llc_ui_autobind(sock
, addr
);
924 hdrlen
= llc
->dev
->hard_header_len
+ llc_ui_header_len(sk
, addr
);
926 if (size
> llc
->dev
->mtu
)
927 size
= llc
->dev
->mtu
;
928 copied
= size
- hdrlen
;
930 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
935 skb
->protocol
= llc_proto_type(addr
->sllc_arphrd
);
936 skb_reserve(skb
, hdrlen
);
937 rc
= memcpy_from_msg(skb_put(skb
, copied
), msg
, copied
);
940 if (sk
->sk_type
== SOCK_DGRAM
|| addr
->sllc_ua
) {
941 llc_build_and_send_ui_pkt(llc
->sap
, skb
, addr
->sllc_mac
,
945 if (addr
->sllc_test
) {
946 llc_build_and_send_test_pkt(llc
->sap
, skb
, addr
->sllc_mac
,
950 if (addr
->sllc_xid
) {
951 llc_build_and_send_xid_pkt(llc
->sap
, skb
, addr
->sllc_mac
,
956 if (!(sk
->sk_type
== SOCK_STREAM
&& !addr
->sllc_ua
))
958 rc
= llc_ui_send_data(sk
, skb
, noblock
);
963 dprintk("%s: failed sending from %02X to %02X: %d\n",
964 __func__
, llc
->laddr
.lsap
, llc
->daddr
.lsap
, rc
);
967 return rc
? : copied
;
971 * llc_ui_getname - return the address info of a socket
972 * @sock: Socket to get address of.
973 * @uaddr: Address structure to return information.
974 * @uaddrlen: Length of address structure.
975 * @peer: Does user want local or remote address information.
977 * Return the address information of a socket.
979 static int llc_ui_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
980 int *uaddrlen
, int peer
)
982 struct sockaddr_llc sllc
;
983 struct sock
*sk
= sock
->sk
;
984 struct llc_sock
*llc
= llc_sk(sk
);
987 memset(&sllc
, 0, sizeof(sllc
));
989 if (sock_flag(sk
, SOCK_ZAPPED
))
991 *uaddrlen
= sizeof(sllc
);
994 if (sk
->sk_state
!= TCP_ESTABLISHED
)
997 sllc
.sllc_arphrd
= llc
->dev
->type
;
998 sllc
.sllc_sap
= llc
->daddr
.lsap
;
999 memcpy(&sllc
.sllc_mac
, &llc
->daddr
.mac
, IFHWADDRLEN
);
1004 sllc
.sllc_sap
= llc
->sap
->laddr
.lsap
;
1007 sllc
.sllc_arphrd
= llc
->dev
->type
;
1008 memcpy(&sllc
.sllc_mac
, llc
->dev
->dev_addr
,
1013 sllc
.sllc_family
= AF_LLC
;
1014 memcpy(uaddr
, &sllc
, sizeof(sllc
));
1021 * llc_ui_ioctl - io controls for PF_LLC
1022 * @sock: Socket to get/set info
1024 * @arg: optional argument for cmd
1026 * get/set info on llc sockets
1028 static int llc_ui_ioctl(struct socket
*sock
, unsigned int cmd
,
1031 return -ENOIOCTLCMD
;
1035 * llc_ui_setsockopt - set various connection specific parameters.
1036 * @sock: Socket to set options on.
1037 * @level: Socket level user is requesting operations on.
1038 * @optname: Operation name.
1039 * @optval: User provided operation data.
1040 * @optlen: Length of optval.
1042 * Set various connection specific parameters.
1044 static int llc_ui_setsockopt(struct socket
*sock
, int level
, int optname
,
1045 char __user
*optval
, unsigned int optlen
)
1047 struct sock
*sk
= sock
->sk
;
1048 struct llc_sock
*llc
= llc_sk(sk
);
1053 if (unlikely(level
!= SOL_LLC
|| optlen
!= sizeof(int)))
1055 rc
= get_user(opt
, (int __user
*)optval
);
1061 if (opt
> LLC_OPT_MAX_RETRY
)
1066 if (opt
> LLC_OPT_MAX_SIZE
)
1070 case LLC_OPT_ACK_TMR_EXP
:
1071 if (opt
> LLC_OPT_MAX_ACK_TMR_EXP
)
1073 llc
->ack_timer
.expire
= opt
* HZ
;
1075 case LLC_OPT_P_TMR_EXP
:
1076 if (opt
> LLC_OPT_MAX_P_TMR_EXP
)
1078 llc
->pf_cycle_timer
.expire
= opt
* HZ
;
1080 case LLC_OPT_REJ_TMR_EXP
:
1081 if (opt
> LLC_OPT_MAX_REJ_TMR_EXP
)
1083 llc
->rej_sent_timer
.expire
= opt
* HZ
;
1085 case LLC_OPT_BUSY_TMR_EXP
:
1086 if (opt
> LLC_OPT_MAX_BUSY_TMR_EXP
)
1088 llc
->busy_state_timer
.expire
= opt
* HZ
;
1090 case LLC_OPT_TX_WIN
:
1091 if (opt
> LLC_OPT_MAX_WIN
)
1095 case LLC_OPT_RX_WIN
:
1096 if (opt
> LLC_OPT_MAX_WIN
)
1100 case LLC_OPT_PKTINFO
:
1102 llc
->cmsg_flags
|= LLC_CMSG_PKTINFO
;
1104 llc
->cmsg_flags
&= ~LLC_CMSG_PKTINFO
;
1117 * llc_ui_getsockopt - get connection specific socket info
1118 * @sock: Socket to get information from.
1119 * @level: Socket level user is requesting operations on.
1120 * @optname: Operation name.
1121 * @optval: Variable to return operation data in.
1122 * @optlen: Length of optval.
1124 * Get connection specific socket information.
1126 static int llc_ui_getsockopt(struct socket
*sock
, int level
, int optname
,
1127 char __user
*optval
, int __user
*optlen
)
1129 struct sock
*sk
= sock
->sk
;
1130 struct llc_sock
*llc
= llc_sk(sk
);
1131 int val
= 0, len
= 0, rc
= -EINVAL
;
1134 if (unlikely(level
!= SOL_LLC
))
1136 rc
= get_user(len
, optlen
);
1140 if (len
!= sizeof(int))
1144 val
= llc
->n2
; break;
1146 val
= llc
->n1
; break;
1147 case LLC_OPT_ACK_TMR_EXP
:
1148 val
= llc
->ack_timer
.expire
/ HZ
; break;
1149 case LLC_OPT_P_TMR_EXP
:
1150 val
= llc
->pf_cycle_timer
.expire
/ HZ
; break;
1151 case LLC_OPT_REJ_TMR_EXP
:
1152 val
= llc
->rej_sent_timer
.expire
/ HZ
; break;
1153 case LLC_OPT_BUSY_TMR_EXP
:
1154 val
= llc
->busy_state_timer
.expire
/ HZ
; break;
1155 case LLC_OPT_TX_WIN
:
1156 val
= llc
->k
; break;
1157 case LLC_OPT_RX_WIN
:
1158 val
= llc
->rw
; break;
1159 case LLC_OPT_PKTINFO
:
1160 val
= (llc
->cmsg_flags
& LLC_CMSG_PKTINFO
) != 0;
1167 if (put_user(len
, optlen
) || copy_to_user(optval
, &val
, len
))
1174 static const struct net_proto_family llc_ui_family_ops
= {
1176 .create
= llc_ui_create
,
1177 .owner
= THIS_MODULE
,
1180 static const struct proto_ops llc_ui_ops
= {
1182 .owner
= THIS_MODULE
,
1183 .release
= llc_ui_release
,
1184 .bind
= llc_ui_bind
,
1185 .connect
= llc_ui_connect
,
1186 .socketpair
= sock_no_socketpair
,
1187 .accept
= llc_ui_accept
,
1188 .getname
= llc_ui_getname
,
1189 .poll
= datagram_poll
,
1190 .ioctl
= llc_ui_ioctl
,
1191 .listen
= llc_ui_listen
,
1192 .shutdown
= llc_ui_shutdown
,
1193 .setsockopt
= llc_ui_setsockopt
,
1194 .getsockopt
= llc_ui_getsockopt
,
1195 .sendmsg
= llc_ui_sendmsg
,
1196 .recvmsg
= llc_ui_recvmsg
,
1197 .mmap
= sock_no_mmap
,
1198 .sendpage
= sock_no_sendpage
,
1201 static const char llc_proc_err_msg
[] __initconst
=
1202 KERN_CRIT
"LLC: Unable to register the proc_fs entries\n";
1203 static const char llc_sysctl_err_msg
[] __initconst
=
1204 KERN_CRIT
"LLC: Unable to register the sysctl entries\n";
1205 static const char llc_sock_err_msg
[] __initconst
=
1206 KERN_CRIT
"LLC: Unable to register the network family\n";
1208 static int __init
llc2_init(void)
1210 int rc
= proto_register(&llc_proto
, 0);
1215 llc_build_offset_table();
1217 llc_ui_sap_last_autoport
= LLC_SAP_DYN_START
;
1218 rc
= llc_proc_init();
1220 printk(llc_proc_err_msg
);
1223 rc
= llc_sysctl_init();
1225 printk(llc_sysctl_err_msg
);
1228 rc
= sock_register(&llc_ui_family_ops
);
1230 printk(llc_sock_err_msg
);
1233 llc_add_pack(LLC_DEST_SAP
, llc_sap_handler
);
1234 llc_add_pack(LLC_DEST_CONN
, llc_conn_handler
);
1243 proto_unregister(&llc_proto
);
1247 static void __exit
llc2_exit(void)
1250 llc_remove_pack(LLC_DEST_SAP
);
1251 llc_remove_pack(LLC_DEST_CONN
);
1252 sock_unregister(PF_LLC
);
1255 proto_unregister(&llc_proto
);
1258 module_init(llc2_init
);
1259 module_exit(llc2_exit
);
1261 MODULE_LICENSE("GPL");
1262 MODULE_AUTHOR("Procom 1997, Jay Schullist 2001, Arnaldo C. Melo 2001-2003");
1263 MODULE_DESCRIPTION("IEEE 802.2 PF_LLC support");
1264 MODULE_ALIAS_NETPROTO(PF_LLC
);