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
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...) do {} while (0)
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;
103 else if (addr->sllc_xid)
104 /* We need to expand header to sizeof(struct llc_xid_info)
105 * since llc_pdu_init_as_xid_cmd() sets 4,5,6 bytes of LLC header
106 * as XID PDU. In llc_ui_sendmsg() we reserved header size and then
107 * filled all other space with user data. If we won't reserve this
108 * bytes, llc_pdu_init_as_xid_cmd() will overwrite user data
110 rc = LLC_PDU_LEN_U_XID;
111 else if (sk->sk_type == SOCK_STREAM)
117 * llc_ui_send_data - send data via reliable llc2 connection
118 * @sk: Connection the socket is using.
119 * @skb: Data the user wishes to send.
120 * @noblock: can we block waiting for data?
122 * Send data via reliable llc2 connection.
123 * Returns 0 upon success, non-zero if action did not succeed.
125 * This function always consumes a reference to the skb.
127 static int llc_ui_send_data(struct sock* sk, struct sk_buff *skb, int noblock)
129 struct llc_sock* llc = llc_sk(sk);
131 if (unlikely(llc_data_accept_state(llc->state) ||
132 llc->remote_busy_flag ||
134 long timeout = sock_sndtimeo(sk, noblock);
137 rc = llc_ui_wait_for_busy_core(sk, timeout);
143 return llc_build_and_send_pkt(sk, skb);
146 static void llc_ui_sk_init(struct socket *sock, struct sock *sk)
148 sock_graft(sk, sock);
149 sk->sk_type = sock->type;
150 sock->ops = &llc_ui_ops;
153 static struct proto llc_proto = {
155 .owner = THIS_MODULE,
156 .obj_size = sizeof(struct llc_sock),
157 .slab_flags = SLAB_TYPESAFE_BY_RCU,
161 * llc_ui_create - alloc and init a new llc_ui socket
162 * @net: network namespace (must be default network)
163 * @sock: Socket to initialize and attach allocated sk to.
165 * @kern: on behalf of kernel or userspace
167 * Allocate and initialize a new llc_ui socket, validate the user wants a
168 * socket type we have available.
169 * Returns 0 upon success, negative upon failure.
171 static int llc_ui_create(struct net *net, struct socket *sock, int protocol,
175 int rc = -ESOCKTNOSUPPORT;
177 if (!ns_capable(net->user_ns, CAP_NET_RAW))
180 if (!net_eq(net, &init_net))
181 return -EAFNOSUPPORT;
183 if (likely(sock->type == SOCK_DGRAM || sock->type == SOCK_STREAM)) {
185 sk = llc_sk_alloc(net, PF_LLC, GFP_KERNEL, &llc_proto, kern);
188 llc_ui_sk_init(sock, sk);
195 * llc_ui_release - shutdown socket
196 * @sock: Socket to release.
198 * Shutdown and deallocate an existing socket.
200 static int llc_ui_release(struct socket *sock)
202 struct sock *sk = sock->sk;
203 struct llc_sock *llc;
205 if (unlikely(sk == NULL))
210 dprintk("%s: closing local(%02X) remote(%02X)\n", __func__,
211 llc->laddr.lsap, llc->daddr.lsap);
212 if (!llc_send_disc(sk))
213 llc_ui_wait_for_disc(sk, sk->sk_rcvtimeo);
214 if (!sock_flag(sk, SOCK_ZAPPED)) {
215 struct llc_sap *sap = llc->sap;
217 /* Hold this for release_sock(), so that llc_backlog_rcv()
218 * could still use it.
221 llc_sap_remove_socket(llc->sap, sk);
227 netdev_put(llc->dev, &llc->dev_tracker);
237 * llc_ui_autoport - provide dynamically allocate SAP number
239 * Provide the caller with a dynamically allocated SAP number according
240 * to the rules that are set in this function. Returns: 0, upon failure,
241 * SAP number otherwise.
243 static int llc_ui_autoport(void)
248 while (tries < LLC_SAP_DYN_TRIES) {
249 for (i = llc_ui_sap_last_autoport;
250 i < LLC_SAP_DYN_STOP; i += 2) {
251 sap = llc_sap_find(i);
253 llc_ui_sap_last_autoport = i + 2;
258 llc_ui_sap_last_autoport = LLC_SAP_DYN_START;
267 * llc_ui_autobind - automatically bind a socket to a sap
268 * @sock: socket to bind
269 * @addr: address to connect to
271 * Used by llc_ui_connect and llc_ui_sendmsg when the user hasn't
272 * specifically used llc_ui_bind to bind to an specific address/sap
274 * Returns: 0 upon success, negative otherwise.
276 static int llc_ui_autobind(struct socket *sock, struct sockaddr_llc *addr)
278 struct sock *sk = sock->sk;
279 struct llc_sock *llc = llc_sk(sk);
280 struct net_device *dev = NULL;
284 if (!sock_flag(sk, SOCK_ZAPPED))
286 if (!addr->sllc_arphrd)
287 addr->sllc_arphrd = ARPHRD_ETHER;
288 if (addr->sllc_arphrd != ARPHRD_ETHER)
291 if (sk->sk_bound_dev_if) {
292 dev = dev_get_by_index(&init_net, sk->sk_bound_dev_if);
293 if (dev && addr->sllc_arphrd != dev->type) {
298 dev = dev_getfirstbyhwtype(&init_net, addr->sllc_arphrd);
302 llc->laddr.lsap = llc_ui_autoport();
303 if (!llc->laddr.lsap)
305 rc = -EBUSY; /* some other network layer is using the sap */
306 sap = llc_sap_open(llc->laddr.lsap, NULL);
310 /* Note: We do not expect errors from this point. */
312 netdev_tracker_alloc(llc->dev, &llc->dev_tracker, GFP_KERNEL);
315 memcpy(llc->laddr.mac, llc->dev->dev_addr, IFHWADDRLEN);
316 memcpy(&llc->addr, addr, sizeof(llc->addr));
317 /* assign new connection to its SAP */
318 llc_sap_add_socket(sap, sk);
319 sock_reset_flag(sk, SOCK_ZAPPED);
327 * llc_ui_bind - bind a socket to a specific address.
328 * @sock: Socket to bind an address to.
329 * @uaddr: Address the user wants the socket bound to.
330 * @addrlen: Length of the uaddr structure.
332 * Bind a socket to a specific address. For llc a user is able to bind to
333 * a specific sap only or mac + sap.
334 * If the user desires to bind to a specific mac + sap, it is possible to
335 * have multiple sap connections via multiple macs.
336 * Bind and autobind for that matter must enforce the correct sap usage
337 * otherwise all hell will break loose.
338 * Returns: 0 upon success, negative otherwise.
340 static int llc_ui_bind(struct socket *sock, struct sockaddr *uaddr, int addrlen)
342 struct sockaddr_llc *addr = (struct sockaddr_llc *)uaddr;
343 struct sock *sk = sock->sk;
344 struct llc_sock *llc = llc_sk(sk);
345 struct net_device *dev = NULL;
350 if (unlikely(!sock_flag(sk, SOCK_ZAPPED) || addrlen != sizeof(*addr)))
353 if (!addr->sllc_arphrd)
354 addr->sllc_arphrd = ARPHRD_ETHER;
355 if (unlikely(addr->sllc_family != AF_LLC || addr->sllc_arphrd != ARPHRD_ETHER))
357 dprintk("%s: binding %02X\n", __func__, addr->sllc_sap);
360 if (sk->sk_bound_dev_if) {
361 dev = dev_get_by_index_rcu(&init_net, sk->sk_bound_dev_if);
363 if (is_zero_ether_addr(addr->sllc_mac))
364 memcpy(addr->sllc_mac, dev->dev_addr,
366 if (addr->sllc_arphrd != dev->type ||
367 !ether_addr_equal(addr->sllc_mac,
374 dev = dev_getbyhwaddr_rcu(&init_net, addr->sllc_arphrd,
382 if (!addr->sllc_sap) {
384 addr->sllc_sap = llc_ui_autoport();
388 sap = llc_sap_find(addr->sllc_sap);
390 sap = llc_sap_open(addr->sllc_sap, NULL);
391 rc = -EBUSY; /* some other network layer is using the sap */
395 struct llc_addr laddr, daddr;
398 memset(&laddr, 0, sizeof(laddr));
399 memset(&daddr, 0, sizeof(daddr));
401 * FIXME: check if the address is multicast,
402 * only SOCK_DGRAM can do this.
404 memcpy(laddr.mac, addr->sllc_mac, IFHWADDRLEN);
405 laddr.lsap = addr->sllc_sap;
406 rc = -EADDRINUSE; /* mac + sap clash. */
407 ask = llc_lookup_established(sap, &daddr, &laddr, &init_net);
414 /* Note: We do not expect errors from this point. */
416 netdev_tracker_alloc(llc->dev, &llc->dev_tracker, GFP_KERNEL);
419 llc->laddr.lsap = addr->sllc_sap;
420 memcpy(llc->laddr.mac, addr->sllc_mac, IFHWADDRLEN);
421 memcpy(&llc->addr, addr, sizeof(llc->addr));
422 /* assign new connection to its SAP */
423 llc_sap_add_socket(sap, sk);
424 sock_reset_flag(sk, SOCK_ZAPPED);
435 * llc_ui_shutdown - shutdown a connect llc2 socket.
436 * @sock: Socket to shutdown.
437 * @how: What part of the socket to shutdown.
439 * Shutdown a connected llc2 socket. Currently this function only supports
440 * shutting down both sends and receives (2), we could probably make this
441 * function such that a user can shutdown only half the connection but not
443 * Returns: 0 upon success, negative otherwise.
445 static int llc_ui_shutdown(struct socket *sock, int how)
447 struct sock *sk = sock->sk;
451 if (unlikely(sk->sk_state != TCP_ESTABLISHED))
456 rc = llc_send_disc(sk);
458 rc = llc_ui_wait_for_disc(sk, sk->sk_rcvtimeo);
459 /* Wake up anyone sleeping in poll */
460 sk->sk_state_change(sk);
467 * llc_ui_connect - Connect to a remote llc2 mac + sap.
468 * @sock: Socket which will be connected to the remote destination.
469 * @uaddr: Remote and possibly the local address of the new connection.
470 * @addrlen: Size of uaddr structure.
471 * @flags: Operational flags specified by the user.
473 * Connect to a remote llc2 mac + sap. The caller must specify the
474 * destination mac and address to connect to. If the user hasn't previously
475 * called bind(2) with a smac the address of the first interface of the
476 * specified arp type will be used.
477 * This function will autobind if user did not previously call bind.
478 * Returns: 0 upon success, negative otherwise.
480 static int llc_ui_connect(struct socket *sock, struct sockaddr *uaddr,
481 int addrlen, int flags)
483 struct sock *sk = sock->sk;
484 struct llc_sock *llc = llc_sk(sk);
485 struct sockaddr_llc *addr = (struct sockaddr_llc *)uaddr;
489 if (unlikely(addrlen != sizeof(*addr)))
492 if (unlikely(addr->sllc_family != AF_LLC))
494 if (unlikely(sk->sk_type != SOCK_STREAM))
497 if (unlikely(sock->state == SS_CONNECTING))
499 /* bind connection to sap if user hasn't done it. */
500 if (sock_flag(sk, SOCK_ZAPPED)) {
501 /* bind to sap with null dev, exclusive */
502 rc = llc_ui_autobind(sock, addr);
506 llc->daddr.lsap = addr->sllc_sap;
507 memcpy(llc->daddr.mac, addr->sllc_mac, IFHWADDRLEN);
508 sock->state = SS_CONNECTING;
509 sk->sk_state = TCP_SYN_SENT;
510 llc->link = llc_ui_next_link_no(llc->sap->laddr.lsap);
511 rc = llc_establish_connection(sk, llc->dev->dev_addr,
512 addr->sllc_mac, addr->sllc_sap);
514 dprintk("%s: llc_ui_send_conn failed :-(\n", __func__);
515 sock->state = SS_UNCONNECTED;
516 sk->sk_state = TCP_CLOSE;
520 if (sk->sk_state == TCP_SYN_SENT) {
521 const long timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
523 if (!timeo || !llc_ui_wait_for_conn(sk, timeo))
526 rc = sock_intr_errno(timeo);
527 if (signal_pending(current))
531 if (sk->sk_state == TCP_CLOSE)
534 sock->state = SS_CONNECTED;
540 rc = sock_error(sk) ? : -ECONNABORTED;
541 sock->state = SS_UNCONNECTED;
546 * llc_ui_listen - allow a normal socket to accept incoming connections
547 * @sock: Socket to allow incoming connections on.
548 * @backlog: Number of connections to queue.
550 * Allow a normal socket to accept incoming connections.
551 * Returns 0 upon success, negative otherwise.
553 static int llc_ui_listen(struct socket *sock, int backlog)
555 struct sock *sk = sock->sk;
559 if (unlikely(sock->state != SS_UNCONNECTED))
562 if (unlikely(sk->sk_type != SOCK_STREAM))
565 if (sock_flag(sk, SOCK_ZAPPED))
568 if (!(unsigned int)backlog) /* BSDism */
570 sk->sk_max_ack_backlog = backlog;
571 if (sk->sk_state != TCP_LISTEN) {
572 sk->sk_ack_backlog = 0;
573 sk->sk_state = TCP_LISTEN;
575 sk->sk_socket->flags |= __SO_ACCEPTCON;
581 static int llc_ui_wait_for_disc(struct sock *sk, long timeout)
583 DEFINE_WAIT_FUNC(wait, woken_wake_function);
586 add_wait_queue(sk_sleep(sk), &wait);
588 if (sk_wait_event(sk, &timeout,
589 READ_ONCE(sk->sk_state) == TCP_CLOSE, &wait))
592 if (signal_pending(current))
599 remove_wait_queue(sk_sleep(sk), &wait);
603 static bool llc_ui_wait_for_conn(struct sock *sk, long timeout)
605 DEFINE_WAIT_FUNC(wait, woken_wake_function);
607 add_wait_queue(sk_sleep(sk), &wait);
609 if (sk_wait_event(sk, &timeout,
610 READ_ONCE(sk->sk_state) != TCP_SYN_SENT, &wait))
612 if (signal_pending(current) || !timeout)
615 remove_wait_queue(sk_sleep(sk), &wait);
619 static int llc_ui_wait_for_busy_core(struct sock *sk, long timeout)
621 DEFINE_WAIT_FUNC(wait, woken_wake_function);
622 struct llc_sock *llc = llc_sk(sk);
625 add_wait_queue(sk_sleep(sk), &wait);
628 if (sk_wait_event(sk, &timeout,
629 (READ_ONCE(sk->sk_shutdown) & RCV_SHUTDOWN) ||
630 (!llc_data_accept_state(llc->state) &&
631 !llc->remote_busy_flag &&
632 !llc->p_flag), &wait))
635 if (signal_pending(current))
641 remove_wait_queue(sk_sleep(sk), &wait);
645 static int llc_wait_data(struct sock *sk, long timeo)
651 * POSIX 1003.1g mandates this order.
657 if (sk->sk_shutdown & RCV_SHUTDOWN)
662 rc = sock_intr_errno(timeo);
663 if (signal_pending(current))
666 if (sk_wait_data(sk, &timeo, NULL))
672 static void llc_cmsg_rcv(struct msghdr *msg, struct sk_buff *skb)
674 struct llc_sock *llc = llc_sk(skb->sk);
676 if (llc->cmsg_flags & LLC_CMSG_PKTINFO) {
677 struct llc_pktinfo info;
679 memset(&info, 0, sizeof(info));
680 info.lpi_ifindex = llc_sk(skb->sk)->dev->ifindex;
681 llc_pdu_decode_dsap(skb, &info.lpi_sap);
682 llc_pdu_decode_da(skb, info.lpi_mac);
683 put_cmsg(msg, SOL_LLC, LLC_OPT_PKTINFO, sizeof(info), &info);
688 * llc_ui_accept - accept a new incoming connection.
689 * @sock: Socket which connections arrive on.
690 * @newsock: Socket to move incoming connection to.
691 * @flags: User specified operational flags.
692 * @kern: If the socket is kernel internal
694 * Accept a new incoming connection.
695 * Returns 0 upon success, negative otherwise.
697 static int llc_ui_accept(struct socket *sock, struct socket *newsock, int flags,
700 struct sock *sk = sock->sk, *newsk;
701 struct llc_sock *llc, *newllc;
703 int rc = -EOPNOTSUPP;
705 dprintk("%s: accepting on %02X\n", __func__,
706 llc_sk(sk)->laddr.lsap);
708 if (unlikely(sk->sk_type != SOCK_STREAM))
711 if (unlikely(sock->state != SS_UNCONNECTED ||
712 sk->sk_state != TCP_LISTEN))
714 /* wait for a connection to arrive. */
715 if (skb_queue_empty(&sk->sk_receive_queue)) {
716 rc = llc_wait_data(sk, sk->sk_rcvtimeo);
720 dprintk("%s: got a new connection on %02X\n", __func__,
721 llc_sk(sk)->laddr.lsap);
722 skb = skb_dequeue(&sk->sk_receive_queue);
728 /* attach connection to a new socket. */
729 llc_ui_sk_init(newsock, newsk);
730 sock_reset_flag(newsk, SOCK_ZAPPED);
731 newsk->sk_state = TCP_ESTABLISHED;
732 newsock->state = SS_CONNECTED;
734 newllc = llc_sk(newsk);
735 memcpy(&newllc->addr, &llc->addr, sizeof(newllc->addr));
736 newllc->link = llc_ui_next_link_no(newllc->laddr.lsap);
738 /* put original socket back into a clean listen state. */
739 sk->sk_state = TCP_LISTEN;
740 sk_acceptq_removed(sk);
741 dprintk("%s: ok success on %02X, client on %02X\n", __func__,
742 llc_sk(sk)->addr.sllc_sap, newllc->daddr.lsap);
751 * llc_ui_recvmsg - copy received data to the socket user.
752 * @sock: Socket to copy data from.
753 * @msg: Various user space related information.
754 * @len: Size of user buffer.
755 * @flags: User specified flags.
757 * Copy received data to the socket user.
758 * Returns non-negative upon success, negative otherwise.
760 static int llc_ui_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
763 DECLARE_SOCKADDR(struct sockaddr_llc *, uaddr, msg->msg_name);
764 const int nonblock = flags & MSG_DONTWAIT;
765 struct sk_buff *skb = NULL;
766 struct sock *sk = sock->sk;
767 struct llc_sock *llc = llc_sk(sk);
772 int target; /* Read at least this many bytes */
777 if (unlikely(sk->sk_type == SOCK_STREAM && sk->sk_state == TCP_LISTEN))
780 timeo = sock_rcvtimeo(sk, nonblock);
782 seq = &llc->copied_seq;
783 if (flags & MSG_PEEK) {
784 peek_seq = llc->copied_seq;
788 target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
795 * We need to check signals first, to get correct SIGURG
796 * handling. FIXME: Need to check this doesn't impact 1003.1g
797 * and move it down to the bottom of the loop
799 if (signal_pending(current)) {
802 copied = timeo ? sock_intr_errno(timeo) : -EAGAIN;
806 /* Next get a buffer. */
808 skb = skb_peek(&sk->sk_receive_queue);
813 /* Well, if we have backlog, try to process it now yet. */
815 if (copied >= target && !READ_ONCE(sk->sk_backlog.tail))
820 sk->sk_state == TCP_CLOSE ||
821 (sk->sk_shutdown & RCV_SHUTDOWN) ||
826 if (sock_flag(sk, SOCK_DONE))
830 copied = sock_error(sk);
833 if (sk->sk_shutdown & RCV_SHUTDOWN)
836 if (sk->sk_type == SOCK_STREAM && sk->sk_state == TCP_CLOSE) {
837 if (!sock_flag(sk, SOCK_DONE)) {
839 * This occurs when user tries to read
840 * from never connected socket.
853 if (copied >= target) { /* Do not sleep, just process backlog. */
857 sk_wait_data(sk, &timeo, NULL);
859 if ((flags & MSG_PEEK) && peek_seq != llc->copied_seq) {
860 net_dbg_ratelimited("LLC(%s:%d): Application bug, race in MSG_PEEK\n",
862 task_pid_nr(current));
863 peek_seq = llc->copied_seq;
868 /* Ok so how much can we use? */
869 used = skb->len - offset;
873 if (!(flags & MSG_TRUNC)) {
874 int rc = skb_copy_datagram_msg(skb, offset, msg, used);
876 /* Exception. Bailout! */
887 /* For non stream protcols we get one packet per recvmsg call */
888 if (sk->sk_type != SOCK_STREAM)
891 if (!(flags & MSG_PEEK)) {
892 skb_unlink(skb, &sk->sk_receive_queue);
898 if (used + offset < skb_len)
906 if (uaddr != NULL && skb != NULL) {
907 memcpy(uaddr, llc_ui_skb_cb(skb), sizeof(*uaddr));
908 msg->msg_namelen = sizeof(*uaddr);
910 if (llc_sk(sk)->cmsg_flags)
911 llc_cmsg_rcv(msg, skb);
913 if (!(flags & MSG_PEEK)) {
914 skb_unlink(skb, &sk->sk_receive_queue);
923 * llc_ui_sendmsg - Transmit data provided by the socket user.
924 * @sock: Socket to transmit data from.
925 * @msg: Various user related information.
926 * @len: Length of data to transmit.
928 * Transmit data provided by the socket user.
929 * Returns non-negative upon success, negative otherwise.
931 static int llc_ui_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
933 DECLARE_SOCKADDR(struct sockaddr_llc *, addr, msg->msg_name);
934 struct sock *sk = sock->sk;
935 struct llc_sock *llc = llc_sk(sk);
936 int flags = msg->msg_flags;
937 int noblock = flags & MSG_DONTWAIT;
938 int rc = -EINVAL, copied = 0, hdrlen, hh_len;
939 struct sk_buff *skb = NULL;
940 struct net_device *dev;
943 dprintk("%s: sending from %02X to %02X\n", __func__,
944 llc->laddr.lsap, llc->daddr.lsap);
947 if (msg->msg_namelen < sizeof(*addr))
950 if (llc_ui_addr_null(&llc->addr))
954 /* must bind connection to sap if user hasn't done it. */
955 if (sock_flag(sk, SOCK_ZAPPED)) {
956 /* bind to sap with null dev, exclusive. */
957 rc = llc_ui_autobind(sock, addr);
962 hh_len = LL_RESERVED_SPACE(dev);
963 hdrlen = llc_ui_header_len(sk, addr);
965 size = min_t(size_t, size, READ_ONCE(dev->mtu));
966 copied = size - hdrlen;
971 skb = sock_alloc_send_skb(sk, hh_len + size, noblock, &rc);
975 if (sock_flag(sk, SOCK_ZAPPED) ||
977 hdrlen != llc_ui_header_len(sk, addr) ||
978 hh_len != LL_RESERVED_SPACE(dev) ||
979 size > READ_ONCE(dev->mtu))
982 skb->protocol = llc_proto_type(addr->sllc_arphrd);
983 skb_reserve(skb, hh_len + hdrlen);
984 rc = memcpy_from_msg(skb_put(skb, copied), msg, copied);
987 if (sk->sk_type == SOCK_DGRAM || addr->sllc_ua) {
988 llc_build_and_send_ui_pkt(llc->sap, skb, addr->sllc_mac,
993 if (addr->sllc_test) {
994 llc_build_and_send_test_pkt(llc->sap, skb, addr->sllc_mac,
999 if (addr->sllc_xid) {
1000 llc_build_and_send_xid_pkt(llc->sap, skb, addr->sllc_mac,
1006 if (!(sk->sk_type == SOCK_STREAM && !addr->sllc_ua))
1008 rc = llc_ui_send_data(sk, skb, noblock);
1013 dprintk("%s: failed sending from %02X to %02X: %d\n",
1014 __func__, llc->laddr.lsap, llc->daddr.lsap, rc);
1016 return rc ? : copied;
1020 * llc_ui_getname - return the address info of a socket
1021 * @sock: Socket to get address of.
1022 * @uaddr: Address structure to return information.
1023 * @peer: Does user want local or remote address information.
1025 * Return the address information of a socket.
1027 static int llc_ui_getname(struct socket *sock, struct sockaddr *uaddr,
1030 struct sockaddr_llc sllc;
1031 struct sock *sk = sock->sk;
1032 struct llc_sock *llc = llc_sk(sk);
1035 memset(&sllc, 0, sizeof(sllc));
1037 if (sock_flag(sk, SOCK_ZAPPED))
1041 if (sk->sk_state != TCP_ESTABLISHED)
1044 sllc.sllc_arphrd = llc->dev->type;
1045 sllc.sllc_sap = llc->daddr.lsap;
1046 memcpy(&sllc.sllc_mac, &llc->daddr.mac, IFHWADDRLEN);
1051 sllc.sllc_sap = llc->sap->laddr.lsap;
1054 sllc.sllc_arphrd = llc->dev->type;
1055 memcpy(&sllc.sllc_mac, llc->dev->dev_addr,
1059 sllc.sllc_family = AF_LLC;
1060 memcpy(uaddr, &sllc, sizeof(sllc));
1068 * llc_ui_ioctl - io controls for PF_LLC
1069 * @sock: Socket to get/set info
1071 * @arg: optional argument for cmd
1073 * get/set info on llc sockets
1075 static int llc_ui_ioctl(struct socket *sock, unsigned int cmd,
1078 return -ENOIOCTLCMD;
1082 * llc_ui_setsockopt - set various connection specific parameters.
1083 * @sock: Socket to set options on.
1084 * @level: Socket level user is requesting operations on.
1085 * @optname: Operation name.
1086 * @optval: User provided operation data.
1087 * @optlen: Length of optval.
1089 * Set various connection specific parameters.
1091 static int llc_ui_setsockopt(struct socket *sock, int level, int optname,
1092 sockptr_t optval, unsigned int optlen)
1094 struct sock *sk = sock->sk;
1095 struct llc_sock *llc = llc_sk(sk);
1100 if (unlikely(level != SOL_LLC || optlen != sizeof(int)))
1102 rc = copy_from_sockptr(&opt, optval, sizeof(opt));
1108 if (opt > LLC_OPT_MAX_RETRY)
1113 if (opt > LLC_OPT_MAX_SIZE)
1117 case LLC_OPT_ACK_TMR_EXP:
1118 if (opt > LLC_OPT_MAX_ACK_TMR_EXP)
1120 llc->ack_timer.expire = opt * HZ;
1122 case LLC_OPT_P_TMR_EXP:
1123 if (opt > LLC_OPT_MAX_P_TMR_EXP)
1125 llc->pf_cycle_timer.expire = opt * HZ;
1127 case LLC_OPT_REJ_TMR_EXP:
1128 if (opt > LLC_OPT_MAX_REJ_TMR_EXP)
1130 llc->rej_sent_timer.expire = opt * HZ;
1132 case LLC_OPT_BUSY_TMR_EXP:
1133 if (opt > LLC_OPT_MAX_BUSY_TMR_EXP)
1135 llc->busy_state_timer.expire = opt * HZ;
1137 case LLC_OPT_TX_WIN:
1138 if (opt > LLC_OPT_MAX_WIN)
1142 case LLC_OPT_RX_WIN:
1143 if (opt > LLC_OPT_MAX_WIN)
1147 case LLC_OPT_PKTINFO:
1149 llc->cmsg_flags |= LLC_CMSG_PKTINFO;
1151 llc->cmsg_flags &= ~LLC_CMSG_PKTINFO;
1164 * llc_ui_getsockopt - get connection specific socket info
1165 * @sock: Socket to get information from.
1166 * @level: Socket level user is requesting operations on.
1167 * @optname: Operation name.
1168 * @optval: Variable to return operation data in.
1169 * @optlen: Length of optval.
1171 * Get connection specific socket information.
1173 static int llc_ui_getsockopt(struct socket *sock, int level, int optname,
1174 char __user *optval, int __user *optlen)
1176 struct sock *sk = sock->sk;
1177 struct llc_sock *llc = llc_sk(sk);
1178 int val = 0, len = 0, rc = -EINVAL;
1181 if (unlikely(level != SOL_LLC))
1183 rc = get_user(len, optlen);
1187 if (len != sizeof(int))
1191 val = llc->n2; break;
1193 val = llc->n1; break;
1194 case LLC_OPT_ACK_TMR_EXP:
1195 val = llc->ack_timer.expire / HZ; break;
1196 case LLC_OPT_P_TMR_EXP:
1197 val = llc->pf_cycle_timer.expire / HZ; break;
1198 case LLC_OPT_REJ_TMR_EXP:
1199 val = llc->rej_sent_timer.expire / HZ; break;
1200 case LLC_OPT_BUSY_TMR_EXP:
1201 val = llc->busy_state_timer.expire / HZ; break;
1202 case LLC_OPT_TX_WIN:
1203 val = llc->k; break;
1204 case LLC_OPT_RX_WIN:
1205 val = llc->rw; break;
1206 case LLC_OPT_PKTINFO:
1207 val = (llc->cmsg_flags & LLC_CMSG_PKTINFO) != 0;
1214 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
1221 static const struct net_proto_family llc_ui_family_ops = {
1223 .create = llc_ui_create,
1224 .owner = THIS_MODULE,
1227 static const struct proto_ops llc_ui_ops = {
1229 .owner = THIS_MODULE,
1230 .release = llc_ui_release,
1231 .bind = llc_ui_bind,
1232 .connect = llc_ui_connect,
1233 .socketpair = sock_no_socketpair,
1234 .accept = llc_ui_accept,
1235 .getname = llc_ui_getname,
1236 .poll = datagram_poll,
1237 .ioctl = llc_ui_ioctl,
1238 .listen = llc_ui_listen,
1239 .shutdown = llc_ui_shutdown,
1240 .setsockopt = llc_ui_setsockopt,
1241 .getsockopt = llc_ui_getsockopt,
1242 .sendmsg = llc_ui_sendmsg,
1243 .recvmsg = llc_ui_recvmsg,
1244 .mmap = sock_no_mmap,
1247 static const char llc_proc_err_msg[] __initconst =
1248 KERN_CRIT "LLC: Unable to register the proc_fs entries\n";
1249 static const char llc_sysctl_err_msg[] __initconst =
1250 KERN_CRIT "LLC: Unable to register the sysctl entries\n";
1251 static const char llc_sock_err_msg[] __initconst =
1252 KERN_CRIT "LLC: Unable to register the network family\n";
1254 static int __init llc2_init(void)
1256 int rc = proto_register(&llc_proto, 0);
1261 llc_build_offset_table();
1263 llc_ui_sap_last_autoport = LLC_SAP_DYN_START;
1264 rc = llc_proc_init();
1266 printk(llc_proc_err_msg);
1269 rc = llc_sysctl_init();
1271 printk(llc_sysctl_err_msg);
1274 rc = sock_register(&llc_ui_family_ops);
1276 printk(llc_sock_err_msg);
1279 llc_add_pack(LLC_DEST_SAP, llc_sap_handler);
1280 llc_add_pack(LLC_DEST_CONN, llc_conn_handler);
1289 proto_unregister(&llc_proto);
1293 static void __exit llc2_exit(void)
1296 llc_remove_pack(LLC_DEST_SAP);
1297 llc_remove_pack(LLC_DEST_CONN);
1298 sock_unregister(PF_LLC);
1301 proto_unregister(&llc_proto);
1304 module_init(llc2_init);
1305 module_exit(llc2_exit);
1307 MODULE_LICENSE("GPL");
1308 MODULE_AUTHOR("Procom 1997, Jay Schullist 2001, Arnaldo C. Melo 2001-2003");
1309 MODULE_DESCRIPTION("IEEE 802.2 PF_LLC support");
1310 MODULE_ALIAS_NETPROTO(PF_LLC);