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>
29 #include <net/llc_sap.h>
30 #include <net/llc_pdu.h>
31 #include <net/llc_conn.h>
32 #include <net/tcp_states.h>
34 /* remember: uninitialized global data is zeroed because its in .bss */
35 static u16 llc_ui_sap_last_autoport
= LLC_SAP_DYN_START
;
36 static u16 llc_ui_sap_link_no_max
[256];
37 static struct sockaddr_llc llc_ui_addrnull
;
38 static const struct proto_ops llc_ui_ops
;
40 static int llc_ui_wait_for_conn(struct sock
*sk
, long timeout
);
41 static int llc_ui_wait_for_disc(struct sock
*sk
, long timeout
);
42 static int llc_ui_wait_for_busy_core(struct sock
*sk
, long timeout
);
45 #define dprintk(args...) printk(KERN_DEBUG args)
47 #define dprintk(args...)
51 * llc_ui_next_link_no - return the next unused link number for a sap
52 * @sap: Address of sap to get link number from.
54 * Return the next unused link number for a given sap.
56 static inline u16
llc_ui_next_link_no(int sap
)
58 return llc_ui_sap_link_no_max
[sap
]++;
62 * llc_proto_type - return eth protocol for ARP header type
63 * @arphrd: ARP header type.
65 * Given an ARP header type return the corresponding ethernet protocol.
67 static inline __be16
llc_proto_type(u16 arphrd
)
69 return arphrd
== ARPHRD_IEEE802_TR
?
70 htons(ETH_P_TR_802_2
) : htons(ETH_P_802_2
);
74 * llc_ui_addr_null - determines if a address structure is null
75 * @addr: Address to test if null.
77 static inline u8
llc_ui_addr_null(struct sockaddr_llc
*addr
)
79 return !memcmp(addr
, &llc_ui_addrnull
, sizeof(*addr
));
83 * llc_ui_header_len - return length of llc header based on operation
84 * @sk: Socket which contains a valid llc socket type.
85 * @addr: Complete sockaddr_llc structure received from the user.
87 * Provide the length of the llc header depending on what kind of
88 * operation the user would like to perform and the type of socket.
89 * Returns the correct llc header length.
91 static inline u8
llc_ui_header_len(struct sock
*sk
, struct sockaddr_llc
*addr
)
93 u8 rc
= LLC_PDU_LEN_U
;
95 if (addr
->sllc_test
|| addr
->sllc_xid
)
97 else if (sk
->sk_type
== SOCK_STREAM
)
103 * llc_ui_send_data - send data via reliable llc2 connection
104 * @sk: Connection the socket is using.
105 * @skb: Data the user wishes to send.
106 * @noblock: can we block waiting for data?
108 * Send data via reliable llc2 connection.
109 * Returns 0 upon success, non-zero if action did not succeed.
111 static int llc_ui_send_data(struct sock
* sk
, struct sk_buff
*skb
, int noblock
)
113 struct llc_sock
* llc
= llc_sk(sk
);
116 if (unlikely(llc_data_accept_state(llc
->state
) ||
117 llc
->remote_busy_flag
||
119 long timeout
= sock_sndtimeo(sk
, noblock
);
121 rc
= llc_ui_wait_for_busy_core(sk
, timeout
);
124 rc
= llc_build_and_send_pkt(sk
, skb
);
128 static void llc_ui_sk_init(struct socket
*sock
, struct sock
*sk
)
130 sock_graft(sk
, sock
);
131 sk
->sk_type
= sock
->type
;
132 sock
->ops
= &llc_ui_ops
;
135 static struct proto llc_proto
= {
137 .owner
= THIS_MODULE
,
138 .obj_size
= sizeof(struct llc_sock
),
142 * llc_ui_create - alloc and init a new llc_ui socket
143 * @sock: Socket to initialize and attach allocated sk to.
146 * Allocate and initialize a new llc_ui socket, validate the user wants a
147 * socket type we have available.
148 * Returns 0 upon success, negative upon failure.
150 static int llc_ui_create(struct net
*net
, struct socket
*sock
, int protocol
)
153 int rc
= -ESOCKTNOSUPPORT
;
155 if (!capable(CAP_NET_RAW
))
158 if (net
!= &init_net
)
159 return -EAFNOSUPPORT
;
161 if (likely(sock
->type
== SOCK_DGRAM
|| sock
->type
== SOCK_STREAM
)) {
163 sk
= llc_sk_alloc(net
, PF_LLC
, GFP_KERNEL
, &llc_proto
);
166 llc_ui_sk_init(sock
, sk
);
173 * llc_ui_release - shutdown socket
174 * @sock: Socket to release.
176 * Shutdown and deallocate an existing socket.
178 static int llc_ui_release(struct socket
*sock
)
180 struct sock
*sk
= sock
->sk
;
181 struct llc_sock
*llc
;
183 if (unlikely(sk
== NULL
))
188 dprintk("%s: closing local(%02X) remote(%02X)\n", __func__
,
189 llc
->laddr
.lsap
, llc
->daddr
.lsap
);
190 if (!llc_send_disc(sk
))
191 llc_ui_wait_for_disc(sk
, sk
->sk_rcvtimeo
);
192 if (!sock_flag(sk
, SOCK_ZAPPED
)) {
193 llc_sap_put(llc
->sap
);
194 llc_sap_remove_socket(llc
->sap
, sk
);
206 * llc_ui_autoport - provide dynamically allocate SAP number
208 * Provide the caller with a dynamically allocated SAP number according
209 * to the rules that are set in this function. Returns: 0, upon failure,
210 * SAP number otherwise.
212 static int llc_ui_autoport(void)
217 while (tries
< LLC_SAP_DYN_TRIES
) {
218 for (i
= llc_ui_sap_last_autoport
;
219 i
< LLC_SAP_DYN_STOP
; i
+= 2) {
220 sap
= llc_sap_find(i
);
222 llc_ui_sap_last_autoport
= i
+ 2;
227 llc_ui_sap_last_autoport
= LLC_SAP_DYN_START
;
236 * llc_ui_autobind - automatically bind a socket to a sap
237 * @sock: socket to bind
238 * @addr: address to connect to
240 * Used by llc_ui_connect and llc_ui_sendmsg when the user hasn't
241 * specifically used llc_ui_bind to bind to an specific address/sap
243 * Returns: 0 upon success, negative otherwise.
245 static int llc_ui_autobind(struct socket
*sock
, struct sockaddr_llc
*addr
)
247 struct sock
*sk
= sock
->sk
;
248 struct llc_sock
*llc
= llc_sk(sk
);
252 if (!sock_flag(sk
, SOCK_ZAPPED
))
255 llc
->dev
= dev_getfirstbyhwtype(&init_net
, addr
->sllc_arphrd
);
259 llc
->laddr
.lsap
= llc_ui_autoport();
260 if (!llc
->laddr
.lsap
)
262 rc
= -EBUSY
; /* some other network layer is using the sap */
263 sap
= llc_sap_open(llc
->laddr
.lsap
, NULL
);
266 memcpy(llc
->laddr
.mac
, llc
->dev
->dev_addr
, IFHWADDRLEN
);
267 memcpy(&llc
->addr
, addr
, sizeof(llc
->addr
));
268 /* assign new connection to its SAP */
269 llc_sap_add_socket(sap
, sk
);
270 sock_reset_flag(sk
, SOCK_ZAPPED
);
277 * llc_ui_bind - bind a socket to a specific address.
278 * @sock: Socket to bind an address to.
279 * @uaddr: Address the user wants the socket bound to.
280 * @addrlen: Length of the uaddr structure.
282 * Bind a socket to a specific address. For llc a user is able to bind to
283 * a specific sap only or mac + sap.
284 * If the user desires to bind to a specific mac + sap, it is possible to
285 * have multiple sap connections via multiple macs.
286 * Bind and autobind for that matter must enforce the correct sap usage
287 * otherwise all hell will break loose.
288 * Returns: 0 upon success, negative otherwise.
290 static int llc_ui_bind(struct socket
*sock
, struct sockaddr
*uaddr
, int addrlen
)
292 struct sockaddr_llc
*addr
= (struct sockaddr_llc
*)uaddr
;
293 struct sock
*sk
= sock
->sk
;
294 struct llc_sock
*llc
= llc_sk(sk
);
298 dprintk("%s: binding %02X\n", __func__
, addr
->sllc_sap
);
299 if (unlikely(!sock_flag(sk
, SOCK_ZAPPED
) || addrlen
!= sizeof(*addr
)))
302 if (unlikely(addr
->sllc_family
!= AF_LLC
))
306 llc
->dev
= dev_getbyhwaddr(&init_net
, addr
->sllc_arphrd
, addr
->sllc_mac
);
310 if (!addr
->sllc_sap
) {
312 addr
->sllc_sap
= llc_ui_autoport();
316 sap
= llc_sap_find(addr
->sllc_sap
);
318 sap
= llc_sap_open(addr
->sllc_sap
, NULL
);
319 rc
= -EBUSY
; /* some other network layer is using the sap */
324 struct llc_addr laddr
, daddr
;
327 memset(&laddr
, 0, sizeof(laddr
));
328 memset(&daddr
, 0, sizeof(daddr
));
330 * FIXME: check if the address is multicast,
331 * only SOCK_DGRAM can do this.
333 memcpy(laddr
.mac
, addr
->sllc_mac
, IFHWADDRLEN
);
334 laddr
.lsap
= addr
->sllc_sap
;
335 rc
= -EADDRINUSE
; /* mac + sap clash. */
336 ask
= llc_lookup_established(sap
, &daddr
, &laddr
);
342 llc
->laddr
.lsap
= addr
->sllc_sap
;
343 memcpy(llc
->laddr
.mac
, addr
->sllc_mac
, IFHWADDRLEN
);
344 memcpy(&llc
->addr
, addr
, sizeof(llc
->addr
));
345 /* assign new connection to its SAP */
346 llc_sap_add_socket(sap
, sk
);
347 sock_reset_flag(sk
, SOCK_ZAPPED
);
356 * llc_ui_shutdown - shutdown a connect llc2 socket.
357 * @sock: Socket to shutdown.
358 * @how: What part of the socket to shutdown.
360 * Shutdown a connected llc2 socket. Currently this function only supports
361 * shutting down both sends and receives (2), we could probably make this
362 * function such that a user can shutdown only half the connection but not
364 * Returns: 0 upon success, negative otherwise.
366 static int llc_ui_shutdown(struct socket
*sock
, int how
)
368 struct sock
*sk
= sock
->sk
;
372 if (unlikely(sk
->sk_state
!= TCP_ESTABLISHED
))
377 rc
= llc_send_disc(sk
);
379 rc
= llc_ui_wait_for_disc(sk
, sk
->sk_rcvtimeo
);
380 /* Wake up anyone sleeping in poll */
381 sk
->sk_state_change(sk
);
388 * llc_ui_connect - Connect to a remote llc2 mac + sap.
389 * @sock: Socket which will be connected to the remote destination.
390 * @uaddr: Remote and possibly the local address of the new connection.
391 * @addrlen: Size of uaddr structure.
392 * @flags: Operational flags specified by the user.
394 * Connect to a remote llc2 mac + sap. The caller must specify the
395 * destination mac and address to connect to. If the user hasn't previously
396 * called bind(2) with a smac the address of the first interface of the
397 * specified arp type will be used.
398 * This function will autobind if user did not previously call bind.
399 * Returns: 0 upon success, negative otherwise.
401 static int llc_ui_connect(struct socket
*sock
, struct sockaddr
*uaddr
,
402 int addrlen
, int flags
)
404 struct sock
*sk
= sock
->sk
;
405 struct llc_sock
*llc
= llc_sk(sk
);
406 struct sockaddr_llc
*addr
= (struct sockaddr_llc
*)uaddr
;
410 if (unlikely(addrlen
!= sizeof(*addr
)))
413 if (unlikely(addr
->sllc_family
!= AF_LLC
))
415 if (unlikely(sk
->sk_type
!= SOCK_STREAM
))
418 if (unlikely(sock
->state
== SS_CONNECTING
))
420 /* bind connection to sap if user hasn't done it. */
421 if (sock_flag(sk
, SOCK_ZAPPED
)) {
422 /* bind to sap with null dev, exclusive */
423 rc
= llc_ui_autobind(sock
, addr
);
427 llc
->daddr
.lsap
= addr
->sllc_sap
;
428 memcpy(llc
->daddr
.mac
, addr
->sllc_mac
, IFHWADDRLEN
);
429 sock
->state
= SS_CONNECTING
;
430 sk
->sk_state
= TCP_SYN_SENT
;
431 llc
->link
= llc_ui_next_link_no(llc
->sap
->laddr
.lsap
);
432 rc
= llc_establish_connection(sk
, llc
->dev
->dev_addr
,
433 addr
->sllc_mac
, addr
->sllc_sap
);
435 dprintk("%s: llc_ui_send_conn failed :-(\n", __func__
);
436 sock
->state
= SS_UNCONNECTED
;
437 sk
->sk_state
= TCP_CLOSE
;
441 if (sk
->sk_state
== TCP_SYN_SENT
) {
442 const long timeo
= sock_sndtimeo(sk
, flags
& O_NONBLOCK
);
444 if (!timeo
|| !llc_ui_wait_for_conn(sk
, timeo
))
447 rc
= sock_intr_errno(timeo
);
448 if (signal_pending(current
))
452 if (sk
->sk_state
== TCP_CLOSE
)
455 sock
->state
= SS_CONNECTED
;
461 rc
= sock_error(sk
) ? : -ECONNABORTED
;
462 sock
->state
= SS_UNCONNECTED
;
467 * llc_ui_listen - allow a normal socket to accept incoming connections
468 * @sock: Socket to allow incoming connections on.
469 * @backlog: Number of connections to queue.
471 * Allow a normal socket to accept incoming connections.
472 * Returns 0 upon success, negative otherwise.
474 static int llc_ui_listen(struct socket
*sock
, int backlog
)
476 struct sock
*sk
= sock
->sk
;
480 if (unlikely(sock
->state
!= SS_UNCONNECTED
))
483 if (unlikely(sk
->sk_type
!= SOCK_STREAM
))
486 if (sock_flag(sk
, SOCK_ZAPPED
))
489 if (!(unsigned)backlog
) /* BSDism */
491 sk
->sk_max_ack_backlog
= backlog
;
492 if (sk
->sk_state
!= TCP_LISTEN
) {
493 sk
->sk_ack_backlog
= 0;
494 sk
->sk_state
= TCP_LISTEN
;
496 sk
->sk_socket
->flags
|= __SO_ACCEPTCON
;
502 static int llc_ui_wait_for_disc(struct sock
*sk
, long timeout
)
508 prepare_to_wait(sk
->sk_sleep
, &wait
, TASK_INTERRUPTIBLE
);
509 if (sk_wait_event(sk
, &timeout
, sk
->sk_state
== TCP_CLOSE
))
512 if (signal_pending(current
))
519 finish_wait(sk
->sk_sleep
, &wait
);
523 static int llc_ui_wait_for_conn(struct sock
*sk
, long timeout
)
528 prepare_to_wait(sk
->sk_sleep
, &wait
, TASK_INTERRUPTIBLE
);
529 if (sk_wait_event(sk
, &timeout
, sk
->sk_state
!= TCP_SYN_SENT
))
531 if (signal_pending(current
) || !timeout
)
534 finish_wait(sk
->sk_sleep
, &wait
);
538 static int llc_ui_wait_for_busy_core(struct sock
*sk
, long timeout
)
541 struct llc_sock
*llc
= llc_sk(sk
);
545 prepare_to_wait(sk
->sk_sleep
, &wait
, TASK_INTERRUPTIBLE
);
547 if (sk_wait_event(sk
, &timeout
,
548 (sk
->sk_shutdown
& RCV_SHUTDOWN
) ||
549 (!llc_data_accept_state(llc
->state
) &&
550 !llc
->remote_busy_flag
&&
554 if (signal_pending(current
))
560 finish_wait(sk
->sk_sleep
, &wait
);
564 static int llc_wait_data(struct sock
*sk
, long timeo
)
570 * POSIX 1003.1g mandates this order.
576 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
581 rc
= sock_intr_errno(timeo
);
582 if (signal_pending(current
))
585 if (sk_wait_data(sk
, &timeo
))
592 * llc_ui_accept - accept a new incoming connection.
593 * @sock: Socket which connections arrive on.
594 * @newsock: Socket to move incoming connection to.
595 * @flags: User specified operational flags.
597 * Accept a new incoming connection.
598 * Returns 0 upon success, negative otherwise.
600 static int llc_ui_accept(struct socket
*sock
, struct socket
*newsock
, int flags
)
602 struct sock
*sk
= sock
->sk
, *newsk
;
603 struct llc_sock
*llc
, *newllc
;
605 int rc
= -EOPNOTSUPP
;
607 dprintk("%s: accepting on %02X\n", __func__
,
608 llc_sk(sk
)->laddr
.lsap
);
610 if (unlikely(sk
->sk_type
!= SOCK_STREAM
))
613 if (unlikely(sock
->state
!= SS_UNCONNECTED
||
614 sk
->sk_state
!= TCP_LISTEN
))
616 /* wait for a connection to arrive. */
617 if (skb_queue_empty(&sk
->sk_receive_queue
)) {
618 rc
= llc_wait_data(sk
, sk
->sk_rcvtimeo
);
622 dprintk("%s: got a new connection on %02X\n", __func__
,
623 llc_sk(sk
)->laddr
.lsap
);
624 skb
= skb_dequeue(&sk
->sk_receive_queue
);
630 /* attach connection to a new socket. */
631 llc_ui_sk_init(newsock
, newsk
);
632 sock_reset_flag(newsk
, SOCK_ZAPPED
);
633 newsk
->sk_state
= TCP_ESTABLISHED
;
634 newsock
->state
= SS_CONNECTED
;
636 newllc
= llc_sk(newsk
);
637 memcpy(&newllc
->addr
, &llc
->addr
, sizeof(newllc
->addr
));
638 newllc
->link
= llc_ui_next_link_no(newllc
->laddr
.lsap
);
640 /* put original socket back into a clean listen state. */
641 sk
->sk_state
= TCP_LISTEN
;
642 sk
->sk_ack_backlog
--;
643 dprintk("%s: ok success on %02X, client on %02X\n", __func__
,
644 llc_sk(sk
)->addr
.sllc_sap
, newllc
->daddr
.lsap
);
653 * llc_ui_recvmsg - copy received data to the socket user.
654 * @sock: Socket to copy data from.
655 * @msg: Various user space related information.
656 * @len: Size of user buffer.
657 * @flags: User specified flags.
659 * Copy received data to the socket user.
660 * Returns non-negative upon success, negative otherwise.
662 static int llc_ui_recvmsg(struct kiocb
*iocb
, struct socket
*sock
,
663 struct msghdr
*msg
, size_t len
, int flags
)
665 struct sockaddr_llc
*uaddr
= (struct sockaddr_llc
*)msg
->msg_name
;
666 const int nonblock
= flags
& MSG_DONTWAIT
;
667 struct sk_buff
*skb
= NULL
;
668 struct sock
*sk
= sock
->sk
;
669 struct llc_sock
*llc
= llc_sk(sk
);
674 int target
; /* Read at least this many bytes */
679 if (unlikely(sk
->sk_type
== SOCK_STREAM
&& sk
->sk_state
== TCP_LISTEN
))
682 timeo
= sock_rcvtimeo(sk
, nonblock
);
684 seq
= &llc
->copied_seq
;
685 if (flags
& MSG_PEEK
) {
686 peek_seq
= llc
->copied_seq
;
690 target
= sock_rcvlowat(sk
, flags
& MSG_WAITALL
, len
);
697 * We need to check signals first, to get correct SIGURG
698 * handling. FIXME: Need to check this doesn't impact 1003.1g
699 * and move it down to the bottom of the loop
701 if (signal_pending(current
)) {
704 copied
= timeo
? sock_intr_errno(timeo
) : -EAGAIN
;
708 /* Next get a buffer. */
710 skb
= skb_peek(&sk
->sk_receive_queue
);
715 /* Well, if we have backlog, try to process it now yet. */
717 if (copied
>= target
&& !sk
->sk_backlog
.tail
)
722 sk
->sk_state
== TCP_CLOSE
||
723 (sk
->sk_shutdown
& RCV_SHUTDOWN
) ||
728 if (sock_flag(sk
, SOCK_DONE
))
732 copied
= sock_error(sk
);
735 if (sk
->sk_shutdown
& RCV_SHUTDOWN
)
738 if (sk
->sk_type
== SOCK_STREAM
&& sk
->sk_state
== TCP_CLOSE
) {
739 if (!sock_flag(sk
, SOCK_DONE
)) {
741 * This occurs when user tries to read
742 * from never connected socket.
755 if (copied
>= target
) { /* Do not sleep, just process backlog. */
759 sk_wait_data(sk
, &timeo
);
761 if ((flags
& MSG_PEEK
) && peek_seq
!= llc
->copied_seq
) {
763 printk(KERN_DEBUG
"LLC(%s:%d): Application "
764 "bug, race in MSG_PEEK.\n",
765 current
->comm
, task_pid_nr(current
));
766 peek_seq
= llc
->copied_seq
;
770 /* Ok so how much can we use? */
771 used
= skb
->len
- offset
;
775 if (!(flags
& MSG_TRUNC
)) {
776 int rc
= skb_copy_datagram_iovec(skb
, offset
,
779 /* Exception. Bailout! */
790 if (!(flags
& MSG_PEEK
)) {
791 sk_eat_skb(sk
, skb
, 0);
795 /* For non stream protcols we get one packet per recvmsg call */
796 if (sk
->sk_type
!= SOCK_STREAM
)
800 if (used
+ offset
< skb
->len
)
808 if (uaddr
!= NULL
&& skb
!= NULL
) {
809 memcpy(uaddr
, llc_ui_skb_cb(skb
), sizeof(*uaddr
));
810 msg
->msg_namelen
= sizeof(*uaddr
);
816 * llc_ui_sendmsg - Transmit data provided by the socket user.
817 * @sock: Socket to transmit data from.
818 * @msg: Various user related information.
819 * @len: Length of data to transmit.
821 * Transmit data provided by the socket user.
822 * Returns non-negative upon success, negative otherwise.
824 static int llc_ui_sendmsg(struct kiocb
*iocb
, struct socket
*sock
,
825 struct msghdr
*msg
, size_t len
)
827 struct sock
*sk
= sock
->sk
;
828 struct llc_sock
*llc
= llc_sk(sk
);
829 struct sockaddr_llc
*addr
= (struct sockaddr_llc
*)msg
->msg_name
;
830 int flags
= msg
->msg_flags
;
831 int noblock
= flags
& MSG_DONTWAIT
;
834 int rc
= -EINVAL
, copied
= 0, hdrlen
;
836 dprintk("%s: sending from %02X to %02X\n", __func__
,
837 llc
->laddr
.lsap
, llc
->daddr
.lsap
);
840 if (msg
->msg_namelen
< sizeof(*addr
))
843 if (llc_ui_addr_null(&llc
->addr
))
847 /* must bind connection to sap if user hasn't done it. */
848 if (sock_flag(sk
, SOCK_ZAPPED
)) {
849 /* bind to sap with null dev, exclusive. */
850 rc
= llc_ui_autobind(sock
, addr
);
854 hdrlen
= llc
->dev
->hard_header_len
+ llc_ui_header_len(sk
, addr
);
856 if (size
> llc
->dev
->mtu
)
857 size
= llc
->dev
->mtu
;
858 copied
= size
- hdrlen
;
860 skb
= sock_alloc_send_skb(sk
, size
, noblock
, &rc
);
865 skb
->protocol
= llc_proto_type(addr
->sllc_arphrd
);
866 skb_reserve(skb
, hdrlen
);
867 rc
= memcpy_fromiovec(skb_put(skb
, copied
), msg
->msg_iov
, copied
);
870 if (sk
->sk_type
== SOCK_DGRAM
|| addr
->sllc_ua
) {
871 llc_build_and_send_ui_pkt(llc
->sap
, skb
, addr
->sllc_mac
,
875 if (addr
->sllc_test
) {
876 llc_build_and_send_test_pkt(llc
->sap
, skb
, addr
->sllc_mac
,
880 if (addr
->sllc_xid
) {
881 llc_build_and_send_xid_pkt(llc
->sap
, skb
, addr
->sllc_mac
,
886 if (!(sk
->sk_type
== SOCK_STREAM
&& !addr
->sllc_ua
))
888 rc
= llc_ui_send_data(sk
, skb
, noblock
);
893 dprintk("%s: failed sending from %02X to %02X: %d\n",
894 __func__
, llc
->laddr
.lsap
, llc
->daddr
.lsap
, rc
);
897 return rc
? : copied
;
901 * llc_ui_getname - return the address info of a socket
902 * @sock: Socket to get address of.
903 * @uaddr: Address structure to return information.
904 * @uaddrlen: Length of address structure.
905 * @peer: Does user want local or remote address information.
907 * Return the address information of a socket.
909 static int llc_ui_getname(struct socket
*sock
, struct sockaddr
*uaddr
,
910 int *uaddrlen
, int peer
)
912 struct sockaddr_llc sllc
;
913 struct sock
*sk
= sock
->sk
;
914 struct llc_sock
*llc
= llc_sk(sk
);
918 if (sock_flag(sk
, SOCK_ZAPPED
))
920 *uaddrlen
= sizeof(sllc
);
921 memset(uaddr
, 0, *uaddrlen
);
924 if (sk
->sk_state
!= TCP_ESTABLISHED
)
927 sllc
.sllc_arphrd
= llc
->dev
->type
;
928 sllc
.sllc_sap
= llc
->daddr
.lsap
;
929 memcpy(&sllc
.sllc_mac
, &llc
->daddr
.mac
, IFHWADDRLEN
);
934 sllc
.sllc_sap
= llc
->sap
->laddr
.lsap
;
937 sllc
.sllc_arphrd
= llc
->dev
->type
;
938 memcpy(&sllc
.sllc_mac
, llc
->dev
->dev_addr
,
943 sllc
.sllc_family
= AF_LLC
;
944 memcpy(uaddr
, &sllc
, sizeof(sllc
));
951 * llc_ui_ioctl - io controls for PF_LLC
952 * @sock: Socket to get/set info
954 * @arg: optional argument for cmd
956 * get/set info on llc sockets
958 static int llc_ui_ioctl(struct socket
*sock
, unsigned int cmd
,
965 * llc_ui_setsockopt - set various connection specific parameters.
966 * @sock: Socket to set options on.
967 * @level: Socket level user is requesting operations on.
968 * @optname: Operation name.
969 * @optval User provided operation data.
970 * @optlen: Length of optval.
972 * Set various connection specific parameters.
974 static int llc_ui_setsockopt(struct socket
*sock
, int level
, int optname
,
975 char __user
*optval
, int optlen
)
977 struct sock
*sk
= sock
->sk
;
978 struct llc_sock
*llc
= llc_sk(sk
);
979 int rc
= -EINVAL
, opt
;
982 if (unlikely(level
!= SOL_LLC
|| optlen
!= sizeof(int)))
984 rc
= get_user(opt
, (int __user
*)optval
);
990 if (opt
> LLC_OPT_MAX_RETRY
)
995 if (opt
> LLC_OPT_MAX_SIZE
)
999 case LLC_OPT_ACK_TMR_EXP
:
1000 if (opt
> LLC_OPT_MAX_ACK_TMR_EXP
)
1002 llc
->ack_timer
.expire
= opt
* HZ
;
1004 case LLC_OPT_P_TMR_EXP
:
1005 if (opt
> LLC_OPT_MAX_P_TMR_EXP
)
1007 llc
->pf_cycle_timer
.expire
= opt
* HZ
;
1009 case LLC_OPT_REJ_TMR_EXP
:
1010 if (opt
> LLC_OPT_MAX_REJ_TMR_EXP
)
1012 llc
->rej_sent_timer
.expire
= opt
* HZ
;
1014 case LLC_OPT_BUSY_TMR_EXP
:
1015 if (opt
> LLC_OPT_MAX_BUSY_TMR_EXP
)
1017 llc
->busy_state_timer
.expire
= opt
* HZ
;
1019 case LLC_OPT_TX_WIN
:
1020 if (opt
> LLC_OPT_MAX_WIN
)
1024 case LLC_OPT_RX_WIN
:
1025 if (opt
> LLC_OPT_MAX_WIN
)
1040 * llc_ui_getsockopt - get connection specific socket info
1041 * @sock: Socket to get information from.
1042 * @level: Socket level user is requesting operations on.
1043 * @optname: Operation name.
1044 * @optval: Variable to return operation data in.
1045 * @optlen: Length of optval.
1047 * Get connection specific socket information.
1049 static int llc_ui_getsockopt(struct socket
*sock
, int level
, int optname
,
1050 char __user
*optval
, int __user
*optlen
)
1052 struct sock
*sk
= sock
->sk
;
1053 struct llc_sock
*llc
= llc_sk(sk
);
1054 int val
= 0, len
= 0, rc
= -EINVAL
;
1057 if (unlikely(level
!= SOL_LLC
))
1059 rc
= get_user(len
, optlen
);
1063 if (len
!= sizeof(int))
1067 val
= llc
->n2
; break;
1069 val
= llc
->n1
; break;
1070 case LLC_OPT_ACK_TMR_EXP
:
1071 val
= llc
->ack_timer
.expire
/ HZ
; break;
1072 case LLC_OPT_P_TMR_EXP
:
1073 val
= llc
->pf_cycle_timer
.expire
/ HZ
; break;
1074 case LLC_OPT_REJ_TMR_EXP
:
1075 val
= llc
->rej_sent_timer
.expire
/ HZ
; break;
1076 case LLC_OPT_BUSY_TMR_EXP
:
1077 val
= llc
->busy_state_timer
.expire
/ HZ
; break;
1078 case LLC_OPT_TX_WIN
:
1079 val
= llc
->k
; break;
1080 case LLC_OPT_RX_WIN
:
1081 val
= llc
->rw
; break;
1087 if (put_user(len
, optlen
) || copy_to_user(optval
, &val
, len
))
1094 static struct net_proto_family llc_ui_family_ops
= {
1096 .create
= llc_ui_create
,
1097 .owner
= THIS_MODULE
,
1100 static const struct proto_ops llc_ui_ops
= {
1102 .owner
= THIS_MODULE
,
1103 .release
= llc_ui_release
,
1104 .bind
= llc_ui_bind
,
1105 .connect
= llc_ui_connect
,
1106 .socketpair
= sock_no_socketpair
,
1107 .accept
= llc_ui_accept
,
1108 .getname
= llc_ui_getname
,
1109 .poll
= datagram_poll
,
1110 .ioctl
= llc_ui_ioctl
,
1111 .listen
= llc_ui_listen
,
1112 .shutdown
= llc_ui_shutdown
,
1113 .setsockopt
= llc_ui_setsockopt
,
1114 .getsockopt
= llc_ui_getsockopt
,
1115 .sendmsg
= llc_ui_sendmsg
,
1116 .recvmsg
= llc_ui_recvmsg
,
1117 .mmap
= sock_no_mmap
,
1118 .sendpage
= sock_no_sendpage
,
1121 static const char llc_proc_err_msg
[] __initconst
=
1122 KERN_CRIT
"LLC: Unable to register the proc_fs entries\n";
1123 static const char llc_sysctl_err_msg
[] __initconst
=
1124 KERN_CRIT
"LLC: Unable to register the sysctl entries\n";
1125 static const char llc_sock_err_msg
[] __initconst
=
1126 KERN_CRIT
"LLC: Unable to register the network family\n";
1128 static int __init
llc2_init(void)
1130 int rc
= proto_register(&llc_proto
, 0);
1135 llc_build_offset_table();
1137 llc_ui_sap_last_autoport
= LLC_SAP_DYN_START
;
1138 rc
= llc_proc_init();
1140 printk(llc_proc_err_msg
);
1141 goto out_unregister_llc_proto
;
1143 rc
= llc_sysctl_init();
1145 printk(llc_sysctl_err_msg
);
1148 rc
= sock_register(&llc_ui_family_ops
);
1150 printk(llc_sock_err_msg
);
1153 llc_add_pack(LLC_DEST_SAP
, llc_sap_handler
);
1154 llc_add_pack(LLC_DEST_CONN
, llc_conn_handler
);
1161 out_unregister_llc_proto
:
1162 proto_unregister(&llc_proto
);
1166 static void __exit
llc2_exit(void)
1169 llc_remove_pack(LLC_DEST_SAP
);
1170 llc_remove_pack(LLC_DEST_CONN
);
1171 sock_unregister(PF_LLC
);
1174 proto_unregister(&llc_proto
);
1177 module_init(llc2_init
);
1178 module_exit(llc2_exit
);
1180 MODULE_LICENSE("GPL");
1181 MODULE_AUTHOR("Procom 1997, Jay Schullist 2001, Arnaldo C. Melo 2001-2003");
1182 MODULE_DESCRIPTION("IEEE 802.2 PF_LLC support");
1183 MODULE_ALIAS_NETPROTO(PF_LLC
);