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 * @addr: Source and destination fields provided by the user.
107 * @noblock: can we block waiting for data?
109 * Send data via reliable llc2 connection.
110 * Returns 0 upon success, non-zero if action did not succeed.
112 static int llc_ui_send_data(struct sock* sk, struct sk_buff *skb, int noblock)
114 struct llc_sock* llc = llc_sk(sk);
117 if (unlikely(llc_data_accept_state(llc->state) ||
118 llc->remote_busy_flag ||
120 long timeout = sock_sndtimeo(sk, noblock);
122 rc = llc_ui_wait_for_busy_core(sk, timeout);
125 rc = llc_build_and_send_pkt(sk, skb);
129 static void llc_ui_sk_init(struct socket *sock, struct sock *sk)
131 sk->sk_type = sock->type;
132 sk->sk_sleep = &sock->wait;
133 sk->sk_socket = sock;
135 sock->ops = &llc_ui_ops;
138 static struct proto llc_proto = {
140 .owner = THIS_MODULE,
141 .obj_size = sizeof(struct llc_sock),
145 * llc_ui_create - alloc and init a new llc_ui socket
146 * @sock: Socket to initialize and attach allocated sk to.
149 * Allocate and initialize a new llc_ui socket, validate the user wants a
150 * socket type we have available.
151 * Returns 0 upon success, negative upon failure.
153 static int llc_ui_create(struct socket *sock, int protocol)
156 int rc = -ESOCKTNOSUPPORT;
158 if (likely(sock->type == SOCK_DGRAM || sock->type == SOCK_STREAM)) {
160 sk = llc_sk_alloc(PF_LLC, GFP_KERNEL, &llc_proto);
163 llc_ui_sk_init(sock, sk);
170 * llc_ui_release - shutdown socket
171 * @sock: Socket to release.
173 * Shutdown and deallocate an existing socket.
175 static int llc_ui_release(struct socket *sock)
177 struct sock *sk = sock->sk;
178 struct llc_sock *llc;
180 if (unlikely(sk == NULL))
185 dprintk("%s: closing local(%02X) remote(%02X)\n", __FUNCTION__,
186 llc->laddr.lsap, llc->daddr.lsap);
187 if (!llc_send_disc(sk))
188 llc_ui_wait_for_disc(sk, sk->sk_rcvtimeo);
189 if (!sock_flag(sk, SOCK_ZAPPED)) {
190 llc_sap_put(llc->sap);
191 llc_sap_remove_socket(llc->sap, sk);
203 * llc_ui_autoport - provide dynamically allocate SAP number
205 * Provide the caller with a dynamically allocated SAP number according
206 * to the rules that are set in this function. Returns: 0, upon failure,
207 * SAP number otherwise.
209 static int llc_ui_autoport(void)
214 while (tries < LLC_SAP_DYN_TRIES) {
215 for (i = llc_ui_sap_last_autoport;
216 i < LLC_SAP_DYN_STOP; i += 2) {
217 sap = llc_sap_find(i);
219 llc_ui_sap_last_autoport = i + 2;
224 llc_ui_sap_last_autoport = LLC_SAP_DYN_START;
233 * llc_ui_autobind - automatically bind a socket to a sap
234 * @sock: socket to bind
235 * @addr: address to connect to
237 * Used by llc_ui_connect and llc_ui_sendmsg when the user hasn't
238 * specifically used llc_ui_bind to bind to an specific address/sap
240 * Returns: 0 upon success, negative otherwise.
242 static int llc_ui_autobind(struct socket *sock, struct sockaddr_llc *addr)
244 struct sock *sk = sock->sk;
245 struct llc_sock *llc = llc_sk(sk);
249 if (!sock_flag(sk, SOCK_ZAPPED))
252 llc->dev = dev_getfirstbyhwtype(addr->sllc_arphrd);
256 llc->laddr.lsap = llc_ui_autoport();
257 if (!llc->laddr.lsap)
259 rc = -EBUSY; /* some other network layer is using the sap */
260 sap = llc_sap_open(llc->laddr.lsap, NULL);
263 memcpy(llc->laddr.mac, llc->dev->dev_addr, IFHWADDRLEN);
264 memcpy(&llc->addr, addr, sizeof(llc->addr));
265 /* assign new connection to its SAP */
266 llc_sap_add_socket(sap, sk);
267 sock_reset_flag(sk, SOCK_ZAPPED);
274 * llc_ui_bind - bind a socket to a specific address.
275 * @sock: Socket to bind an address to.
276 * @uaddr: Address the user wants the socket bound to.
277 * @addrlen: Length of the uaddr structure.
279 * Bind a socket to a specific address. For llc a user is able to bind to
280 * a specific sap only or mac + sap.
281 * If the user desires to bind to a specific mac + sap, it is possible to
282 * have multiple sap connections via multiple macs.
283 * Bind and autobind for that matter must enforce the correct sap usage
284 * otherwise all hell will break loose.
285 * Returns: 0 upon success, negative otherwise.
287 static int llc_ui_bind(struct socket *sock, struct sockaddr *uaddr, int addrlen)
289 struct sockaddr_llc *addr = (struct sockaddr_llc *)uaddr;
290 struct sock *sk = sock->sk;
291 struct llc_sock *llc = llc_sk(sk);
295 dprintk("%s: binding %02X\n", __FUNCTION__, addr->sllc_sap);
296 if (unlikely(!sock_flag(sk, SOCK_ZAPPED) || addrlen != sizeof(*addr)))
299 if (unlikely(addr->sllc_family != AF_LLC))
303 llc->dev = dev_getbyhwaddr(addr->sllc_arphrd, addr->sllc_mac);
307 if (!addr->sllc_sap) {
309 addr->sllc_sap = llc_ui_autoport();
313 sap = llc_sap_find(addr->sllc_sap);
315 sap = llc_sap_open(addr->sllc_sap, NULL);
316 rc = -EBUSY; /* some other network layer is using the sap */
321 struct llc_addr laddr, daddr;
324 memset(&laddr, 0, sizeof(laddr));
325 memset(&daddr, 0, sizeof(daddr));
327 * FIXME: check if the the address is multicast,
328 * only SOCK_DGRAM can do this.
330 memcpy(laddr.mac, addr->sllc_mac, IFHWADDRLEN);
331 laddr.lsap = addr->sllc_sap;
332 rc = -EADDRINUSE; /* mac + sap clash. */
333 ask = llc_lookup_established(sap, &daddr, &laddr);
339 llc->laddr.lsap = addr->sllc_sap;
340 memcpy(llc->laddr.mac, addr->sllc_mac, IFHWADDRLEN);
341 memcpy(&llc->addr, addr, sizeof(llc->addr));
342 /* assign new connection to its SAP */
343 llc_sap_add_socket(sap, sk);
344 sock_reset_flag(sk, SOCK_ZAPPED);
353 * llc_ui_shutdown - shutdown a connect llc2 socket.
354 * @sock: Socket to shutdown.
355 * @how: What part of the socket to shutdown.
357 * Shutdown a connected llc2 socket. Currently this function only supports
358 * shutting down both sends and receives (2), we could probably make this
359 * function such that a user can shutdown only half the connection but not
361 * Returns: 0 upon success, negative otherwise.
363 static int llc_ui_shutdown(struct socket *sock, int how)
365 struct sock *sk = sock->sk;
369 if (unlikely(sk->sk_state != TCP_ESTABLISHED))
374 rc = llc_send_disc(sk);
376 rc = llc_ui_wait_for_disc(sk, sk->sk_rcvtimeo);
377 /* Wake up anyone sleeping in poll */
378 sk->sk_state_change(sk);
385 * llc_ui_connect - Connect to a remote llc2 mac + sap.
386 * @sock: Socket which will be connected to the remote destination.
387 * @uaddr: Remote and possibly the local address of the new connection.
388 * @addrlen: Size of uaddr structure.
389 * @flags: Operational flags specified by the user.
391 * Connect to a remote llc2 mac + sap. The caller must specify the
392 * destination mac and address to connect to. If the user hasn't previously
393 * called bind(2) with a smac the address of the first interface of the
394 * specified arp type will be used.
395 * This function will autobind if user did not previously call bind.
396 * Returns: 0 upon success, negative otherwise.
398 static int llc_ui_connect(struct socket *sock, struct sockaddr *uaddr,
399 int addrlen, int flags)
401 struct sock *sk = sock->sk;
402 struct llc_sock *llc = llc_sk(sk);
403 struct sockaddr_llc *addr = (struct sockaddr_llc *)uaddr;
407 if (unlikely(addrlen != sizeof(*addr)))
410 if (unlikely(addr->sllc_family != AF_LLC))
412 if (unlikely(sk->sk_type != SOCK_STREAM))
415 if (unlikely(sock->state == SS_CONNECTING))
417 /* bind connection to sap if user hasn't done it. */
418 if (sock_flag(sk, SOCK_ZAPPED)) {
419 /* bind to sap with null dev, exclusive */
420 rc = llc_ui_autobind(sock, addr);
424 llc->daddr.lsap = addr->sllc_sap;
425 memcpy(llc->daddr.mac, addr->sllc_mac, IFHWADDRLEN);
426 sock->state = SS_CONNECTING;
427 sk->sk_state = TCP_SYN_SENT;
428 llc->link = llc_ui_next_link_no(llc->sap->laddr.lsap);
429 rc = llc_establish_connection(sk, llc->dev->dev_addr,
430 addr->sllc_mac, addr->sllc_sap);
432 dprintk("%s: llc_ui_send_conn failed :-(\n", __FUNCTION__);
433 sock->state = SS_UNCONNECTED;
434 sk->sk_state = TCP_CLOSE;
438 if (sk->sk_state == TCP_SYN_SENT) {
439 const long timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
441 if (!timeo || !llc_ui_wait_for_conn(sk, timeo))
444 rc = sock_intr_errno(timeo);
445 if (signal_pending(current))
449 if (sk->sk_state == TCP_CLOSE)
452 sock->state = SS_CONNECTED;
458 rc = sock_error(sk) ? : -ECONNABORTED;
459 sock->state = SS_UNCONNECTED;
464 * llc_ui_listen - allow a normal socket to accept incoming connections
465 * @sock: Socket to allow incoming connections on.
466 * @backlog: Number of connections to queue.
468 * Allow a normal socket to accept incoming connections.
469 * Returns 0 upon success, negative otherwise.
471 static int llc_ui_listen(struct socket *sock, int backlog)
473 struct sock *sk = sock->sk;
477 if (unlikely(sock->state != SS_UNCONNECTED))
480 if (unlikely(sk->sk_type != SOCK_STREAM))
483 if (sock_flag(sk, SOCK_ZAPPED))
486 if (!(unsigned)backlog) /* BSDism */
488 sk->sk_max_ack_backlog = backlog;
489 if (sk->sk_state != TCP_LISTEN) {
490 sk->sk_ack_backlog = 0;
491 sk->sk_state = TCP_LISTEN;
493 sk->sk_socket->flags |= __SO_ACCEPTCON;
499 static int llc_ui_wait_for_disc(struct sock *sk, long timeout)
505 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
506 if (sk_wait_event(sk, &timeout, sk->sk_state == TCP_CLOSE))
509 if (signal_pending(current))
516 finish_wait(sk->sk_sleep, &wait);
520 static int llc_ui_wait_for_conn(struct sock *sk, long timeout)
525 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
526 if (sk_wait_event(sk, &timeout, sk->sk_state != TCP_SYN_SENT))
528 if (signal_pending(current) || !timeout)
531 finish_wait(sk->sk_sleep, &wait);
535 static int llc_ui_wait_for_busy_core(struct sock *sk, long timeout)
538 struct llc_sock *llc = llc_sk(sk);
542 prepare_to_wait(sk->sk_sleep, &wait, TASK_INTERRUPTIBLE);
544 if (sk_wait_event(sk, &timeout,
545 (sk->sk_shutdown & RCV_SHUTDOWN) ||
546 (!llc_data_accept_state(llc->state) &&
547 !llc->remote_busy_flag &&
551 if (signal_pending(current))
557 finish_wait(sk->sk_sleep, &wait);
561 static int llc_wait_data(struct sock *sk, long timeo)
567 * POSIX 1003.1g mandates this order.
573 if (sk->sk_shutdown & RCV_SHUTDOWN)
578 rc = sock_intr_errno(timeo);
579 if (signal_pending(current))
582 if (sk_wait_data(sk, &timeo))
589 * llc_ui_accept - accept a new incoming connection.
590 * @sock: Socket which connections arrive on.
591 * @newsock: Socket to move incoming connection to.
592 * @flags: User specified operational flags.
594 * Accept a new incoming connection.
595 * Returns 0 upon success, negative otherwise.
597 static int llc_ui_accept(struct socket *sock, struct socket *newsock, int flags)
599 struct sock *sk = sock->sk, *newsk;
600 struct llc_sock *llc, *newllc;
602 int rc = -EOPNOTSUPP;
604 dprintk("%s: accepting on %02X\n", __FUNCTION__,
605 llc_sk(sk)->laddr.lsap);
607 if (unlikely(sk->sk_type != SOCK_STREAM))
610 if (unlikely(sock->state != SS_UNCONNECTED ||
611 sk->sk_state != TCP_LISTEN))
613 /* wait for a connection to arrive. */
614 if (skb_queue_empty(&sk->sk_receive_queue)) {
615 rc = llc_wait_data(sk, sk->sk_rcvtimeo);
619 dprintk("%s: got a new connection on %02X\n", __FUNCTION__,
620 llc_sk(sk)->laddr.lsap);
621 skb = skb_dequeue(&sk->sk_receive_queue);
627 /* attach connection to a new socket. */
628 llc_ui_sk_init(newsock, newsk);
629 sock_reset_flag(newsk, SOCK_ZAPPED);
630 newsk->sk_state = TCP_ESTABLISHED;
631 newsock->state = SS_CONNECTED;
633 newllc = llc_sk(newsk);
634 memcpy(&newllc->addr, &llc->addr, sizeof(newllc->addr));
635 newllc->link = llc_ui_next_link_no(newllc->laddr.lsap);
637 /* put original socket back into a clean listen state. */
638 sk->sk_state = TCP_LISTEN;
639 sk->sk_ack_backlog--;
640 dprintk("%s: ok success on %02X, client on %02X\n", __FUNCTION__,
641 llc_sk(sk)->addr.sllc_sap, newllc->daddr.lsap);
650 * llc_ui_recvmsg - copy received data to the socket user.
651 * @sock: Socket to copy data from.
652 * @msg: Various user space related information.
653 * @len: Size of user buffer.
654 * @flags: User specified flags.
656 * Copy received data to the socket user.
657 * Returns non-negative upon success, negative otherwise.
659 static int llc_ui_recvmsg(struct kiocb *iocb, struct socket *sock,
660 struct msghdr *msg, size_t len, int flags)
662 struct sockaddr_llc *uaddr = (struct sockaddr_llc *)msg->msg_name;
663 const int nonblock = flags & MSG_DONTWAIT;
664 struct sk_buff *skb = NULL;
665 struct sock *sk = sock->sk;
666 struct llc_sock *llc = llc_sk(sk);
671 int target; /* Read at least this many bytes */
676 if (unlikely(sk->sk_type == SOCK_STREAM && sk->sk_state == TCP_LISTEN))
679 timeo = sock_rcvtimeo(sk, nonblock);
681 seq = &llc->copied_seq;
682 if (flags & MSG_PEEK) {
683 peek_seq = llc->copied_seq;
687 target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
694 * We need to check signals first, to get correct SIGURG
695 * handling. FIXME: Need to check this doesn't impact 1003.1g
696 * and move it down to the bottom of the loop
698 if (signal_pending(current)) {
701 copied = timeo ? sock_intr_errno(timeo) : -EAGAIN;
705 /* Next get a buffer. */
707 skb = skb_peek(&sk->sk_receive_queue);
712 /* Well, if we have backlog, try to process it now yet. */
714 if (copied >= target && !sk->sk_backlog.tail)
719 sk->sk_state == TCP_CLOSE ||
720 (sk->sk_shutdown & RCV_SHUTDOWN) ||
725 if (sock_flag(sk, SOCK_DONE))
729 copied = sock_error(sk);
732 if (sk->sk_shutdown & RCV_SHUTDOWN)
735 if (sk->sk_type == SOCK_STREAM && sk->sk_state == TCP_CLOSE) {
736 if (!sock_flag(sk, SOCK_DONE)) {
738 * This occurs when user tries to read
739 * from never connected socket.
752 if (copied >= target) { /* Do not sleep, just process backlog. */
756 sk_wait_data(sk, &timeo);
758 if ((flags & MSG_PEEK) && peek_seq != llc->copied_seq) {
760 printk(KERN_DEBUG "LLC(%s:%d): Application "
761 "bug, race in MSG_PEEK.\n",
762 current->comm, current->pid);
763 peek_seq = llc->copied_seq;
767 /* Ok so how much can we use? */
768 used = skb->len - offset;
772 if (!(flags & MSG_TRUNC)) {
773 int rc = skb_copy_datagram_iovec(skb, offset,
776 /* Exception. Bailout! */
787 if (!(flags & MSG_PEEK)) {
788 sk_eat_skb(sk, skb, 0);
792 /* For non stream protcols we get one packet per recvmsg call */
793 if (sk->sk_type != SOCK_STREAM)
797 if (used + offset < skb->len)
805 if (uaddr != NULL && skb != NULL) {
806 memcpy(uaddr, llc_ui_skb_cb(skb), sizeof(*uaddr));
807 msg->msg_namelen = sizeof(*uaddr);
813 * llc_ui_sendmsg - Transmit data provided by the socket user.
814 * @sock: Socket to transmit data from.
815 * @msg: Various user related information.
816 * @len: Length of data to transmit.
818 * Transmit data provided by the socket user.
819 * Returns non-negative upon success, negative otherwise.
821 static int llc_ui_sendmsg(struct kiocb *iocb, struct socket *sock,
822 struct msghdr *msg, size_t len)
824 struct sock *sk = sock->sk;
825 struct llc_sock *llc = llc_sk(sk);
826 struct sockaddr_llc *addr = (struct sockaddr_llc *)msg->msg_name;
827 int flags = msg->msg_flags;
828 int noblock = flags & MSG_DONTWAIT;
831 int rc = -EINVAL, copied = 0, hdrlen;
833 dprintk("%s: sending from %02X to %02X\n", __FUNCTION__,
834 llc->laddr.lsap, llc->daddr.lsap);
837 if (msg->msg_namelen < sizeof(*addr))
840 if (llc_ui_addr_null(&llc->addr))
844 /* must bind connection to sap if user hasn't done it. */
845 if (sock_flag(sk, SOCK_ZAPPED)) {
846 /* bind to sap with null dev, exclusive. */
847 rc = llc_ui_autobind(sock, addr);
851 hdrlen = llc->dev->hard_header_len + llc_ui_header_len(sk, addr);
853 if (size > llc->dev->mtu)
854 size = llc->dev->mtu;
855 copied = size - hdrlen;
857 skb = sock_alloc_send_skb(sk, size, noblock, &rc);
862 skb->protocol = llc_proto_type(addr->sllc_arphrd);
863 skb_reserve(skb, hdrlen);
864 rc = memcpy_fromiovec(skb_put(skb, copied), msg->msg_iov, copied);
867 if (sk->sk_type == SOCK_DGRAM || addr->sllc_ua) {
868 llc_build_and_send_ui_pkt(llc->sap, skb, addr->sllc_mac,
872 if (addr->sllc_test) {
873 llc_build_and_send_test_pkt(llc->sap, skb, addr->sllc_mac,
877 if (addr->sllc_xid) {
878 llc_build_and_send_xid_pkt(llc->sap, skb, addr->sllc_mac,
883 if (!(sk->sk_type == SOCK_STREAM && !addr->sllc_ua))
885 rc = llc_ui_send_data(sk, skb, noblock);
890 dprintk("%s: failed sending from %02X to %02X: %d\n",
891 __FUNCTION__, llc->laddr.lsap, llc->daddr.lsap, rc);
894 return rc ? : copied;
898 * llc_ui_getname - return the address info of a socket
899 * @sock: Socket to get address of.
900 * @uaddr: Address structure to return information.
901 * @uaddrlen: Length of address structure.
902 * @peer: Does user want local or remote address information.
904 * Return the address information of a socket.
906 static int llc_ui_getname(struct socket *sock, struct sockaddr *uaddr,
907 int *uaddrlen, int peer)
909 struct sockaddr_llc sllc;
910 struct sock *sk = sock->sk;
911 struct llc_sock *llc = llc_sk(sk);
915 if (sock_flag(sk, SOCK_ZAPPED))
917 *uaddrlen = sizeof(sllc);
918 memset(uaddr, 0, *uaddrlen);
921 if (sk->sk_state != TCP_ESTABLISHED)
924 sllc.sllc_arphrd = llc->dev->type;
925 sllc.sllc_sap = llc->daddr.lsap;
926 memcpy(&sllc.sllc_mac, &llc->daddr.mac, IFHWADDRLEN);
931 sllc.sllc_sap = llc->sap->laddr.lsap;
934 sllc.sllc_arphrd = llc->dev->type;
935 memcpy(&sllc.sllc_mac, &llc->dev->dev_addr,
940 sllc.sllc_family = AF_LLC;
941 memcpy(uaddr, &sllc, sizeof(sllc));
948 * llc_ui_ioctl - io controls for PF_LLC
949 * @sock: Socket to get/set info
951 * @arg: optional argument for cmd
953 * get/set info on llc sockets
955 static int llc_ui_ioctl(struct socket *sock, unsigned int cmd,
962 * llc_ui_setsockopt - set various connection specific parameters.
963 * @sock: Socket to set options on.
964 * @level: Socket level user is requesting operations on.
965 * @optname: Operation name.
966 * @optval User provided operation data.
967 * @optlen: Length of optval.
969 * Set various connection specific parameters.
971 static int llc_ui_setsockopt(struct socket *sock, int level, int optname,
972 char __user *optval, int optlen)
974 struct sock *sk = sock->sk;
975 struct llc_sock *llc = llc_sk(sk);
976 int rc = -EINVAL, opt;
979 if (unlikely(level != SOL_LLC || optlen != sizeof(int)))
981 rc = get_user(opt, (int __user *)optval);
987 if (opt > LLC_OPT_MAX_RETRY)
992 if (opt > LLC_OPT_MAX_SIZE)
996 case LLC_OPT_ACK_TMR_EXP:
997 if (opt > LLC_OPT_MAX_ACK_TMR_EXP)
999 llc->ack_timer.expire = opt * HZ;
1001 case LLC_OPT_P_TMR_EXP:
1002 if (opt > LLC_OPT_MAX_P_TMR_EXP)
1004 llc->pf_cycle_timer.expire = opt * HZ;
1006 case LLC_OPT_REJ_TMR_EXP:
1007 if (opt > LLC_OPT_MAX_REJ_TMR_EXP)
1009 llc->rej_sent_timer.expire = opt * HZ;
1011 case LLC_OPT_BUSY_TMR_EXP:
1012 if (opt > LLC_OPT_MAX_BUSY_TMR_EXP)
1014 llc->busy_state_timer.expire = opt * HZ;
1016 case LLC_OPT_TX_WIN:
1017 if (opt > LLC_OPT_MAX_WIN)
1021 case LLC_OPT_RX_WIN:
1022 if (opt > LLC_OPT_MAX_WIN)
1037 * llc_ui_getsockopt - get connection specific socket info
1038 * @sock: Socket to get information from.
1039 * @level: Socket level user is requesting operations on.
1040 * @optname: Operation name.
1041 * @optval: Variable to return operation data in.
1042 * @optlen: Length of optval.
1044 * Get connection specific socket information.
1046 static int llc_ui_getsockopt(struct socket *sock, int level, int optname,
1047 char __user *optval, int __user *optlen)
1049 struct sock *sk = sock->sk;
1050 struct llc_sock *llc = llc_sk(sk);
1051 int val = 0, len = 0, rc = -EINVAL;
1054 if (unlikely(level != SOL_LLC))
1056 rc = get_user(len, optlen);
1060 if (len != sizeof(int))
1064 val = llc->n2; break;
1066 val = llc->n1; break;
1067 case LLC_OPT_ACK_TMR_EXP:
1068 val = llc->ack_timer.expire / HZ; break;
1069 case LLC_OPT_P_TMR_EXP:
1070 val = llc->pf_cycle_timer.expire / HZ; break;
1071 case LLC_OPT_REJ_TMR_EXP:
1072 val = llc->rej_sent_timer.expire / HZ; break;
1073 case LLC_OPT_BUSY_TMR_EXP:
1074 val = llc->busy_state_timer.expire / HZ; break;
1075 case LLC_OPT_TX_WIN:
1076 val = llc->k; break;
1077 case LLC_OPT_RX_WIN:
1078 val = llc->rw; break;
1084 if (put_user(len, optlen) || copy_to_user(optval, &val, len))
1091 static struct net_proto_family llc_ui_family_ops = {
1093 .create = llc_ui_create,
1094 .owner = THIS_MODULE,
1097 static const struct proto_ops llc_ui_ops = {
1099 .owner = THIS_MODULE,
1100 .release = llc_ui_release,
1101 .bind = llc_ui_bind,
1102 .connect = llc_ui_connect,
1103 .socketpair = sock_no_socketpair,
1104 .accept = llc_ui_accept,
1105 .getname = llc_ui_getname,
1106 .poll = datagram_poll,
1107 .ioctl = llc_ui_ioctl,
1108 .listen = llc_ui_listen,
1109 .shutdown = llc_ui_shutdown,
1110 .setsockopt = llc_ui_setsockopt,
1111 .getsockopt = llc_ui_getsockopt,
1112 .sendmsg = llc_ui_sendmsg,
1113 .recvmsg = llc_ui_recvmsg,
1114 .mmap = sock_no_mmap,
1115 .sendpage = sock_no_sendpage,
1118 static char llc_proc_err_msg[] __initdata =
1119 KERN_CRIT "LLC: Unable to register the proc_fs entries\n";
1120 static char llc_sysctl_err_msg[] __initdata =
1121 KERN_CRIT "LLC: Unable to register the sysctl entries\n";
1122 static char llc_sock_err_msg[] __initdata =
1123 KERN_CRIT "LLC: Unable to register the network family\n";
1125 static int __init llc2_init(void)
1127 int rc = proto_register(&llc_proto, 0);
1132 llc_build_offset_table();
1134 llc_ui_sap_last_autoport = LLC_SAP_DYN_START;
1135 rc = llc_proc_init();
1137 printk(llc_proc_err_msg);
1138 goto out_unregister_llc_proto;
1140 rc = llc_sysctl_init();
1142 printk(llc_sysctl_err_msg);
1145 rc = sock_register(&llc_ui_family_ops);
1147 printk(llc_sock_err_msg);
1150 llc_add_pack(LLC_DEST_SAP, llc_sap_handler);
1151 llc_add_pack(LLC_DEST_CONN, llc_conn_handler);
1158 out_unregister_llc_proto:
1159 proto_unregister(&llc_proto);
1163 static void __exit llc2_exit(void)
1166 llc_remove_pack(LLC_DEST_SAP);
1167 llc_remove_pack(LLC_DEST_CONN);
1168 sock_unregister(PF_LLC);
1171 proto_unregister(&llc_proto);
1174 module_init(llc2_init);
1175 module_exit(llc2_exit);
1177 MODULE_LICENSE("GPL");
1178 MODULE_AUTHOR("Procom 1997, Jay Schullist 2001, Arnaldo C. Melo 2001-2003");
1179 MODULE_DESCRIPTION("IEEE 802.2 PF_LLC support");
1180 MODULE_ALIAS_NETPROTO(PF_LLC);