af_llc.c 31.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * af_llc.c - LLC User Interface SAPs
 * Description:
 *   Functions in this module are implementation of socket based llc
 *   communications for the Linux operating system. Support of llc class
 *   one and class two is provided via SOCK_DGRAM and SOCK_STREAM
 *   respectively.
 *
 *   An llc2 connection is (mac + sap), only one llc2 sap connection
 *   is allowed per mac. Though one sap may have multiple mac + sap
 *   connections.
 *
 * Copyright (c) 2001 by Jay Schulist <jschlst@samba.org>
 *		 2002-2003 by Arnaldo Carvalho de Melo <acme@conectiva.com.br>
 *
 * This program can be redistributed or modified under the terms of the
 * GNU General Public License as published by the Free Software Foundation.
 * This program is distributed without any warranty or implied warranty
 * of merchantability or fitness for a particular purpose.
 *
 * See the GNU General Public License for more details.
 */
23
#include <linux/compiler.h>
L
Linus Torvalds 已提交
24 25 26 27
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/rtnetlink.h>
#include <linux/init.h>
28
#include <linux/slab.h>
29 30
#include <linux/sched/signal.h>

L
Linus Torvalds 已提交
31 32 33 34
#include <net/llc.h>
#include <net/llc_sap.h>
#include <net/llc_pdu.h>
#include <net/llc_conn.h>
35
#include <net/tcp_states.h>
L
Linus Torvalds 已提交
36 37 38 39 40

/* remember: uninitialized global data is zeroed because its in .bss */
static u16 llc_ui_sap_last_autoport = LLC_SAP_DYN_START;
static u16 llc_ui_sap_link_no_max[256];
static struct sockaddr_llc llc_ui_addrnull;
41
static const struct proto_ops llc_ui_ops;
L
Linus Torvalds 已提交
42

43
static bool llc_ui_wait_for_conn(struct sock *sk, long timeout);
44 45
static int llc_ui_wait_for_disc(struct sock *sk, long timeout);
static int llc_ui_wait_for_busy_core(struct sock *sk, long timeout);
L
Linus Torvalds 已提交
46 47 48 49 50 51 52

#if 0
#define dprintk(args...) printk(KERN_DEBUG args)
#else
#define dprintk(args...)
#endif

53 54 55 56
/* Maybe we'll add some more in the future. */
#define LLC_CMSG_PKTINFO	1


L
Linus Torvalds 已提交
57 58 59 60 61 62
/**
 *	llc_ui_next_link_no - return the next unused link number for a sap
 *	@sap: Address of sap to get link number from.
 *
 *	Return the next unused link number for a given sap.
 */
63
static inline u16 llc_ui_next_link_no(int sap)
L
Linus Torvalds 已提交
64 65 66 67 68 69 70 71 72 73
{
	return llc_ui_sap_link_no_max[sap]++;
}

/**
 *	llc_proto_type - return eth protocol for ARP header type
 *	@arphrd: ARP header type.
 *
 *	Given an ARP header type return the corresponding ethernet protocol.
 */
A
Al Viro 已提交
74
static inline __be16 llc_proto_type(u16 arphrd)
L
Linus Torvalds 已提交
75
{
76
	return htons(ETH_P_802_2);
L
Linus Torvalds 已提交
77 78 79 80 81 82
}

/**
 *	llc_ui_addr_null - determines if a address structure is null
 *	@addr: Address to test if null.
 */
83
static inline u8 llc_ui_addr_null(struct sockaddr_llc *addr)
L
Linus Torvalds 已提交
84 85 86 87 88 89 90 91 92 93 94 95 96
{
	return !memcmp(addr, &llc_ui_addrnull, sizeof(*addr));
}

/**
 *	llc_ui_header_len - return length of llc header based on operation
 *	@sk: Socket which contains a valid llc socket type.
 *	@addr: Complete sockaddr_llc structure received from the user.
 *
 *	Provide the length of the llc header depending on what kind of
 *	operation the user would like to perform and the type of socket.
 *	Returns the correct llc header length.
 */
97
static inline u8 llc_ui_header_len(struct sock *sk, struct sockaddr_llc *addr)
L
Linus Torvalds 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
{
	u8 rc = LLC_PDU_LEN_U;

	if (addr->sllc_test || addr->sllc_xid)
		rc = LLC_PDU_LEN_U;
	else if (sk->sk_type == SOCK_STREAM)
		rc = LLC_PDU_LEN_I;
	return rc;
}

/**
 *	llc_ui_send_data - send data via reliable llc2 connection
 *	@sk: Connection the socket is using.
 *	@skb: Data the user wishes to send.
 *	@noblock: can we block waiting for data?
 *
 *	Send data via reliable llc2 connection.
 *	Returns 0 upon success, non-zero if action did not succeed.
 */
static int llc_ui_send_data(struct sock* sk, struct sk_buff *skb, int noblock)
{
	struct llc_sock* llc = llc_sk(sk);
	int rc = 0;

122
	if (unlikely(llc_data_accept_state(llc->state) ||
123 124
		     llc->remote_busy_flag ||
		     llc->p_flag)) {
125
		long timeout = sock_sndtimeo(sk, noblock);
L
Linus Torvalds 已提交
126 127 128

		rc = llc_ui_wait_for_busy_core(sk, timeout);
	}
129
	if (unlikely(!rc))
L
Linus Torvalds 已提交
130 131 132 133 134 135
		rc = llc_build_and_send_pkt(sk, skb);
	return rc;
}

static void llc_ui_sk_init(struct socket *sock, struct sock *sk)
{
136
	sock_graft(sk, sock);
L
Linus Torvalds 已提交
137 138 139 140 141
	sk->sk_type	= sock->type;
	sock->ops	= &llc_ui_ops;
}

static struct proto llc_proto = {
142
	.name	  = "LLC",
L
Linus Torvalds 已提交
143 144
	.owner	  = THIS_MODULE,
	.obj_size = sizeof(struct llc_sock),
145
	.slab_flags = SLAB_TYPESAFE_BY_RCU,
L
Linus Torvalds 已提交
146 147 148 149
};

/**
 *	llc_ui_create - alloc and init a new llc_ui socket
150
 *	@net: network namespace (must be default network)
L
Linus Torvalds 已提交
151 152
 *	@sock: Socket to initialize and attach allocated sk to.
 *	@protocol: Unused.
153
 *	@kern: on behalf of kernel or userspace
L
Linus Torvalds 已提交
154 155 156 157 158
 *
 *	Allocate and initialize a new llc_ui socket, validate the user wants a
 *	socket type we have available.
 *	Returns 0 upon success, negative upon failure.
 */
159 160
static int llc_ui_create(struct net *net, struct socket *sock, int protocol,
			 int kern)
L
Linus Torvalds 已提交
161 162 163 164
{
	struct sock *sk;
	int rc = -ESOCKTNOSUPPORT;

165
	if (!ns_capable(net->user_ns, CAP_NET_RAW))
166 167
		return -EPERM;

O
Octavian Purdila 已提交
168
	if (!net_eq(net, &init_net))
169 170
		return -EAFNOSUPPORT;

171
	if (likely(sock->type == SOCK_DGRAM || sock->type == SOCK_STREAM)) {
L
Linus Torvalds 已提交
172
		rc = -ENOMEM;
173
		sk = llc_sk_alloc(net, PF_LLC, GFP_KERNEL, &llc_proto, kern);
L
Linus Torvalds 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
		if (sk) {
			rc = 0;
			llc_ui_sk_init(sock, sk);
		}
	}
	return rc;
}

/**
 *	llc_ui_release - shutdown socket
 *	@sock: Socket to release.
 *
 *	Shutdown and deallocate an existing socket.
 */
static int llc_ui_release(struct socket *sock)
{
	struct sock *sk = sock->sk;
	struct llc_sock *llc;

193
	if (unlikely(sk == NULL))
L
Linus Torvalds 已提交
194 195 196 197
		goto out;
	sock_hold(sk);
	lock_sock(sk);
	llc = llc_sk(sk);
198
	dprintk("%s: closing local(%02X) remote(%02X)\n", __func__,
L
Linus Torvalds 已提交
199 200 201
		llc->laddr.lsap, llc->daddr.lsap);
	if (!llc_send_disc(sk))
		llc_ui_wait_for_disc(sk, sk->sk_rcvtimeo);
202
	if (!sock_flag(sk, SOCK_ZAPPED))
L
Linus Torvalds 已提交
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
		llc_sap_remove_socket(llc->sap, sk);
	release_sock(sk);
	if (llc->dev)
		dev_put(llc->dev);
	sock_put(sk);
	llc_sk_free(sk);
out:
	return 0;
}

/**
 *	llc_ui_autoport - provide dynamically allocate SAP number
 *
 *	Provide the caller with a dynamically allocated SAP number according
 *	to the rules that are set in this function. Returns: 0, upon failure,
 *	SAP number otherwise.
 */
static int llc_ui_autoport(void)
{
	struct llc_sap *sap;
	int i, tries = 0;

	while (tries < LLC_SAP_DYN_TRIES) {
		for (i = llc_ui_sap_last_autoport;
		     i < LLC_SAP_DYN_STOP; i += 2) {
			sap = llc_sap_find(i);
			if (!sap) {
				llc_ui_sap_last_autoport = i + 2;
				goto out;
			}
233
			llc_sap_put(sap);
L
Linus Torvalds 已提交
234 235 236 237 238 239 240 241 242 243
		}
		llc_ui_sap_last_autoport = LLC_SAP_DYN_START;
		tries++;
	}
	i = 0;
out:
	return i;
}

/**
244 245 246 247 248 249
 *	llc_ui_autobind - automatically bind a socket to a sap
 *	@sock: socket to bind
 *	@addr: address to connect to
 *
 * 	Used by llc_ui_connect and llc_ui_sendmsg when the user hasn't
 * 	specifically used llc_ui_bind to bind to an specific address/sap
L
Linus Torvalds 已提交
250 251 252 253 254 255 256 257 258 259 260 261 262
 *
 *	Returns: 0 upon success, negative otherwise.
 */
static int llc_ui_autobind(struct socket *sock, struct sockaddr_llc *addr)
{
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
	struct llc_sap *sap;
	int rc = -EINVAL;

	if (!sock_flag(sk, SOCK_ZAPPED))
		goto out;
	rc = -ENODEV;
263 264 265 266 267 268 269 270
	if (sk->sk_bound_dev_if) {
		llc->dev = dev_get_by_index(&init_net, sk->sk_bound_dev_if);
		if (llc->dev && addr->sllc_arphrd != llc->dev->type) {
			dev_put(llc->dev);
			llc->dev = NULL;
		}
	} else
		llc->dev = dev_getfirstbyhwtype(&init_net, addr->sllc_arphrd);
L
Linus Torvalds 已提交
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297
	if (!llc->dev)
		goto out;
	rc = -EUSERS;
	llc->laddr.lsap = llc_ui_autoport();
	if (!llc->laddr.lsap)
		goto out;
	rc = -EBUSY; /* some other network layer is using the sap */
	sap = llc_sap_open(llc->laddr.lsap, NULL);
	if (!sap)
		goto out;
	memcpy(llc->laddr.mac, llc->dev->dev_addr, IFHWADDRLEN);
	memcpy(&llc->addr, addr, sizeof(llc->addr));
	/* assign new connection to its SAP */
	llc_sap_add_socket(sap, sk);
	sock_reset_flag(sk, SOCK_ZAPPED);
	rc = 0;
out:
	return rc;
}

/**
 *	llc_ui_bind - bind a socket to a specific address.
 *	@sock: Socket to bind an address to.
 *	@uaddr: Address the user wants the socket bound to.
 *	@addrlen: Length of the uaddr structure.
 *
 *	Bind a socket to a specific address. For llc a user is able to bind to
298
 *	a specific sap only or mac + sap.
L
Linus Torvalds 已提交
299 300 301 302 303 304 305 306 307 308 309 310 311 312
 *	If the user desires to bind to a specific mac + sap, it is possible to
 *	have multiple sap connections via multiple macs.
 *	Bind and autobind for that matter must enforce the correct sap usage
 *	otherwise all hell will break loose.
 *	Returns: 0 upon success, negative otherwise.
 */
static int llc_ui_bind(struct socket *sock, struct sockaddr *uaddr, int addrlen)
{
	struct sockaddr_llc *addr = (struct sockaddr_llc *)uaddr;
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
	struct llc_sap *sap;
	int rc = -EINVAL;

313
	dprintk("%s: binding %02X\n", __func__, addr->sllc_sap);
314
	if (unlikely(!sock_flag(sk, SOCK_ZAPPED) || addrlen != sizeof(*addr)))
L
Linus Torvalds 已提交
315 316
		goto out;
	rc = -EAFNOSUPPORT;
317
	if (unlikely(addr->sllc_family != AF_LLC))
L
Linus Torvalds 已提交
318
		goto out;
319
	rc = -ENODEV;
320
	rcu_read_lock();
321
	if (sk->sk_bound_dev_if) {
322
		llc->dev = dev_get_by_index_rcu(&init_net, sk->sk_bound_dev_if);
323 324 325
		if (llc->dev) {
			if (!addr->sllc_arphrd)
				addr->sllc_arphrd = llc->dev->type;
326
			if (is_zero_ether_addr(addr->sllc_mac))
327 328 329
				memcpy(addr->sllc_mac, llc->dev->dev_addr,
				       IFHWADDRLEN);
			if (addr->sllc_arphrd != llc->dev->type ||
330 331
			    !ether_addr_equal(addr->sllc_mac,
					      llc->dev->dev_addr)) {
332 333 334 335 336
				rc = -EINVAL;
				llc->dev = NULL;
			}
		}
	} else
337
		llc->dev = dev_getbyhwaddr_rcu(&init_net, addr->sllc_arphrd,
338
					   addr->sllc_mac);
339 340 341
	if (llc->dev)
		dev_hold(llc->dev);
	rcu_read_unlock();
342 343
	if (!llc->dev)
		goto out;
L
Linus Torvalds 已提交
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
	if (!addr->sllc_sap) {
		rc = -EUSERS;
		addr->sllc_sap = llc_ui_autoport();
		if (!addr->sllc_sap)
			goto out;
	}
	sap = llc_sap_find(addr->sllc_sap);
	if (!sap) {
		sap = llc_sap_open(addr->sllc_sap, NULL);
		rc = -EBUSY; /* some other network layer is using the sap */
		if (!sap)
			goto out;
	} else {
		struct llc_addr laddr, daddr;
		struct sock *ask;

		memset(&laddr, 0, sizeof(laddr));
		memset(&daddr, 0, sizeof(daddr));
		/*
363
		 * FIXME: check if the address is multicast,
L
Linus Torvalds 已提交
364 365 366 367 368 369 370 371
		 * 	  only SOCK_DGRAM can do this.
		 */
		memcpy(laddr.mac, addr->sllc_mac, IFHWADDRLEN);
		laddr.lsap = addr->sllc_sap;
		rc = -EADDRINUSE; /* mac + sap clash. */
		ask = llc_lookup_established(sap, &daddr, &laddr);
		if (ask) {
			sock_put(ask);
372
			goto out_put;
L
Linus Torvalds 已提交
373 374 375 376 377 378 379 380 381
		}
	}
	llc->laddr.lsap = addr->sllc_sap;
	memcpy(llc->laddr.mac, addr->sllc_mac, IFHWADDRLEN);
	memcpy(&llc->addr, addr, sizeof(llc->addr));
	/* assign new connection to its SAP */
	llc_sap_add_socket(sap, sk);
	sock_reset_flag(sk, SOCK_ZAPPED);
	rc = 0;
382 383
out_put:
	llc_sap_put(sap);
L
Linus Torvalds 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404
out:
	return rc;
}

/**
 *	llc_ui_shutdown - shutdown a connect llc2 socket.
 *	@sock: Socket to shutdown.
 *	@how: What part of the socket to shutdown.
 *
 *	Shutdown a connected llc2 socket. Currently this function only supports
 *	shutting down both sends and receives (2), we could probably make this
 *	function such that a user can shutdown only half the connection but not
 *	right now.
 *	Returns: 0 upon success, negative otherwise.
 */
static int llc_ui_shutdown(struct socket *sock, int how)
{
	struct sock *sk = sock->sk;
	int rc = -ENOTCONN;

	lock_sock(sk);
405
	if (unlikely(sk->sk_state != TCP_ESTABLISHED))
L
Linus Torvalds 已提交
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
		goto out;
	rc = -EINVAL;
	if (how != 2)
		goto out;
	rc = llc_send_disc(sk);
	if (!rc)
		rc = llc_ui_wait_for_disc(sk, sk->sk_rcvtimeo);
	/* Wake up anyone sleeping in poll */
	sk->sk_state_change(sk);
out:
	release_sock(sk);
	return rc;
}

/**
 *	llc_ui_connect - Connect to a remote llc2 mac + sap.
 *	@sock: Socket which will be connected to the remote destination.
 *	@uaddr: Remote and possibly the local address of the new connection.
 *	@addrlen: Size of uaddr structure.
 *	@flags: Operational flags specified by the user.
 *
 *	Connect to a remote llc2 mac + sap. The caller must specify the
 *	destination mac and address to connect to. If the user hasn't previously
 *	called bind(2) with a smac the address of the first interface of the
 *	specified arp type will be used.
 *	This function will autobind if user did not previously call bind.
 *	Returns: 0 upon success, negative otherwise.
 */
static int llc_ui_connect(struct socket *sock, struct sockaddr *uaddr,
			  int addrlen, int flags)
{
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
	struct sockaddr_llc *addr = (struct sockaddr_llc *)uaddr;
	int rc = -EINVAL;

	lock_sock(sk);
443
	if (unlikely(addrlen != sizeof(*addr)))
L
Linus Torvalds 已提交
444 445
		goto out;
	rc = -EAFNOSUPPORT;
446 447 448 449 450 451
	if (unlikely(addr->sllc_family != AF_LLC))
		goto out;
	if (unlikely(sk->sk_type != SOCK_STREAM))
		goto out;
	rc = -EALREADY;
	if (unlikely(sock->state == SS_CONNECTING))
L
Linus Torvalds 已提交
452 453 454 455 456 457 458 459
		goto out;
	/* bind connection to sap if user hasn't done it. */
	if (sock_flag(sk, SOCK_ZAPPED)) {
		/* bind to sap with null dev, exclusive */
		rc = llc_ui_autobind(sock, addr);
		if (rc)
			goto out;
	}
460 461
	llc->daddr.lsap = addr->sllc_sap;
	memcpy(llc->daddr.mac, addr->sllc_mac, IFHWADDRLEN);
L
Linus Torvalds 已提交
462 463 464
	sock->state = SS_CONNECTING;
	sk->sk_state   = TCP_SYN_SENT;
	llc->link   = llc_ui_next_link_no(llc->sap->laddr.lsap);
465
	rc = llc_establish_connection(sk, llc->dev->dev_addr,
L
Linus Torvalds 已提交
466 467
				      addr->sllc_mac, addr->sllc_sap);
	if (rc) {
468
		dprintk("%s: llc_ui_send_conn failed :-(\n", __func__);
L
Linus Torvalds 已提交
469 470 471 472
		sock->state  = SS_UNCONNECTED;
		sk->sk_state = TCP_CLOSE;
		goto out;
	}
473 474

	if (sk->sk_state == TCP_SYN_SENT) {
475
		const long timeo = sock_sndtimeo(sk, flags & O_NONBLOCK);
476 477 478 479 480 481 482 483 484 485 486 487 488 489

		if (!timeo || !llc_ui_wait_for_conn(sk, timeo))
			goto out;

		rc = sock_intr_errno(timeo);
		if (signal_pending(current))
			goto out;
	}

	if (sk->sk_state == TCP_CLOSE)
		goto sock_error;

	sock->state = SS_CONNECTED;
	rc = 0;
L
Linus Torvalds 已提交
490 491 492
out:
	release_sock(sk);
	return rc;
493 494 495 496
sock_error:
	rc = sock_error(sk) ? : -ECONNABORTED;
	sock->state = SS_UNCONNECTED;
	goto out;
L
Linus Torvalds 已提交
497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512
}

/**
 *	llc_ui_listen - allow a normal socket to accept incoming connections
 *	@sock: Socket to allow incoming connections on.
 *	@backlog: Number of connections to queue.
 *
 *	Allow a normal socket to accept incoming connections.
 *	Returns 0 upon success, negative otherwise.
 */
static int llc_ui_listen(struct socket *sock, int backlog)
{
	struct sock *sk = sock->sk;
	int rc = -EINVAL;

	lock_sock(sk);
513
	if (unlikely(sock->state != SS_UNCONNECTED))
L
Linus Torvalds 已提交
514 515
		goto out;
	rc = -EOPNOTSUPP;
516
	if (unlikely(sk->sk_type != SOCK_STREAM))
L
Linus Torvalds 已提交
517 518 519 520 521
		goto out;
	rc = -EAGAIN;
	if (sock_flag(sk, SOCK_ZAPPED))
		goto out;
	rc = 0;
522
	if (!(unsigned int)backlog)	/* BSDism */
L
Linus Torvalds 已提交
523 524 525 526 527 528 529 530 531 532 533 534
		backlog = 1;
	sk->sk_max_ack_backlog = backlog;
	if (sk->sk_state != TCP_LISTEN) {
		sk->sk_ack_backlog = 0;
		sk->sk_state	   = TCP_LISTEN;
	}
	sk->sk_socket->flags |= __SO_ACCEPTCON;
out:
	release_sock(sk);
	return rc;
}

535
static int llc_ui_wait_for_disc(struct sock *sk, long timeout)
L
Linus Torvalds 已提交
536
{
W
WANG Cong 已提交
537
	DEFINE_WAIT_FUNC(wait, woken_wake_function);
538
	int rc = 0;
L
Linus Torvalds 已提交
539

W
WANG Cong 已提交
540
	add_wait_queue(sk_sleep(sk), &wait);
541
	while (1) {
W
WANG Cong 已提交
542
		if (sk_wait_event(sk, &timeout, sk->sk_state == TCP_CLOSE, &wait))
543
			break;
L
Linus Torvalds 已提交
544 545 546 547 548 549
		rc = -ERESTARTSYS;
		if (signal_pending(current))
			break;
		rc = -EAGAIN;
		if (!timeout)
			break;
550
		rc = 0;
L
Linus Torvalds 已提交
551
	}
W
WANG Cong 已提交
552
	remove_wait_queue(sk_sleep(sk), &wait);
L
Linus Torvalds 已提交
553 554 555
	return rc;
}

556
static bool llc_ui_wait_for_conn(struct sock *sk, long timeout)
L
Linus Torvalds 已提交
557
{
W
WANG Cong 已提交
558
	DEFINE_WAIT_FUNC(wait, woken_wake_function);
L
Linus Torvalds 已提交
559

W
WANG Cong 已提交
560
	add_wait_queue(sk_sleep(sk), &wait);
561
	while (1) {
W
WANG Cong 已提交
562
		if (sk_wait_event(sk, &timeout, sk->sk_state != TCP_SYN_SENT, &wait))
563
			break;
564
		if (signal_pending(current) || !timeout)
L
Linus Torvalds 已提交
565 566
			break;
	}
W
WANG Cong 已提交
567
	remove_wait_queue(sk_sleep(sk), &wait);
568
	return timeout;
L
Linus Torvalds 已提交
569 570
}

571
static int llc_ui_wait_for_busy_core(struct sock *sk, long timeout)
L
Linus Torvalds 已提交
572
{
W
WANG Cong 已提交
573
	DEFINE_WAIT_FUNC(wait, woken_wake_function);
574 575
	struct llc_sock *llc = llc_sk(sk);
	int rc;
L
Linus Torvalds 已提交
576

W
WANG Cong 已提交
577
	add_wait_queue(sk_sleep(sk), &wait);
578
	while (1) {
579
		rc = 0;
580 581
		if (sk_wait_event(sk, &timeout,
				  (sk->sk_shutdown & RCV_SHUTDOWN) ||
582
				  (!llc_data_accept_state(llc->state) &&
583
				   !llc->remote_busy_flag &&
W
WANG Cong 已提交
584
				   !llc->p_flag), &wait))
L
Linus Torvalds 已提交
585 586 587 588 589 590 591 592
			break;
		rc = -ERESTARTSYS;
		if (signal_pending(current))
			break;
		rc = -EAGAIN;
		if (!timeout)
			break;
	}
W
WANG Cong 已提交
593
	remove_wait_queue(sk_sleep(sk), &wait);
L
Linus Torvalds 已提交
594 595 596
	return rc;
}

597
static int llc_wait_data(struct sock *sk, long timeo)
L
Linus Torvalds 已提交
598 599 600
{
	int rc;

601
	while (1) {
602 603 604
		/*
		 * POSIX 1003.1g mandates this order.
		 */
605 606
		rc = sock_error(sk);
		if (rc)
607
			break;
L
Linus Torvalds 已提交
608
		rc = 0;
609
		if (sk->sk_shutdown & RCV_SHUTDOWN)
L
Linus Torvalds 已提交
610
			break;
611 612 613 614
		rc = -EAGAIN;
		if (!timeo)
			break;
		rc = sock_intr_errno(timeo);
L
Linus Torvalds 已提交
615 616
		if (signal_pending(current))
			break;
617
		rc = 0;
618
		if (sk_wait_data(sk, &timeo, NULL))
L
Linus Torvalds 已提交
619 620 621 622 623
			break;
	}
	return rc;
}

624 625 626 627 628 629 630
static void llc_cmsg_rcv(struct msghdr *msg, struct sk_buff *skb)
{
	struct llc_sock *llc = llc_sk(skb->sk);

	if (llc->cmsg_flags & LLC_CMSG_PKTINFO) {
		struct llc_pktinfo info;

K
Kangjie Lu 已提交
631
		memset(&info, 0, sizeof(info));
632 633 634 635 636 637 638
		info.lpi_ifindex = llc_sk(skb->sk)->dev->ifindex;
		llc_pdu_decode_dsap(skb, &info.lpi_sap);
		llc_pdu_decode_da(skb, info.lpi_mac);
		put_cmsg(msg, SOL_LLC, LLC_OPT_PKTINFO, sizeof(info), &info);
	}
}

L
Linus Torvalds 已提交
639 640 641 642 643
/**
 *	llc_ui_accept - accept a new incoming connection.
 *	@sock: Socket which connections arrive on.
 *	@newsock: Socket to move incoming connection to.
 *	@flags: User specified operational flags.
644
 *	@kern: If the socket is kernel internal
L
Linus Torvalds 已提交
645 646 647 648
 *
 *	Accept a new incoming connection.
 *	Returns 0 upon success, negative otherwise.
 */
649 650
static int llc_ui_accept(struct socket *sock, struct socket *newsock, int flags,
			 bool kern)
L
Linus Torvalds 已提交
651 652 653 654 655 656
{
	struct sock *sk = sock->sk, *newsk;
	struct llc_sock *llc, *newllc;
	struct sk_buff *skb;
	int rc = -EOPNOTSUPP;

657
	dprintk("%s: accepting on %02X\n", __func__,
658
		llc_sk(sk)->laddr.lsap);
L
Linus Torvalds 已提交
659
	lock_sock(sk);
660
	if (unlikely(sk->sk_type != SOCK_STREAM))
L
Linus Torvalds 已提交
661 662
		goto out;
	rc = -EINVAL;
663 664
	if (unlikely(sock->state != SS_UNCONNECTED ||
		     sk->sk_state != TCP_LISTEN))
L
Linus Torvalds 已提交
665 666
		goto out;
	/* wait for a connection to arrive. */
667
	if (skb_queue_empty(&sk->sk_receive_queue)) {
668
		rc = llc_wait_data(sk, sk->sk_rcvtimeo);
669 670 671
		if (rc)
			goto out;
	}
672
	dprintk("%s: got a new connection on %02X\n", __func__,
673
		llc_sk(sk)->laddr.lsap);
L
Linus Torvalds 已提交
674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692
	skb = skb_dequeue(&sk->sk_receive_queue);
	rc = -EINVAL;
	if (!skb->sk)
		goto frees;
	rc = 0;
	newsk = skb->sk;
	/* attach connection to a new socket. */
	llc_ui_sk_init(newsock, newsk);
	sock_reset_flag(newsk, SOCK_ZAPPED);
	newsk->sk_state		= TCP_ESTABLISHED;
	newsock->state		= SS_CONNECTED;
	llc			= llc_sk(sk);
	newllc			= llc_sk(newsk);
	memcpy(&newllc->addr, &llc->addr, sizeof(newllc->addr));
	newllc->link = llc_ui_next_link_no(newllc->laddr.lsap);

	/* put original socket back into a clean listen state. */
	sk->sk_state = TCP_LISTEN;
	sk->sk_ack_backlog--;
693
	dprintk("%s: ok success on %02X, client on %02X\n", __func__,
L
Linus Torvalds 已提交
694 695 696 697 698 699 700 701 702 703 704 705
		llc_sk(sk)->addr.sllc_sap, newllc->daddr.lsap);
frees:
	kfree_skb(skb);
out:
	release_sock(sk);
	return rc;
}

/**
 *	llc_ui_recvmsg - copy received data to the socket user.
 *	@sock: Socket to copy data from.
 *	@msg: Various user space related information.
706
 *	@len: Size of user buffer.
L
Linus Torvalds 已提交
707 708 709 710 711
 *	@flags: User specified flags.
 *
 *	Copy received data to the socket user.
 *	Returns non-negative upon success, negative otherwise.
 */
712 713
static int llc_ui_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
			  int flags)
L
Linus Torvalds 已提交
714
{
715
	DECLARE_SOCKADDR(struct sockaddr_llc *, uaddr, msg->msg_name);
716 717 718 719
	const int nonblock = flags & MSG_DONTWAIT;
	struct sk_buff *skb = NULL;
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
720
	unsigned long cpu_flags;
L
Linus Torvalds 已提交
721
	size_t copied = 0;
722
	u32 peek_seq = 0;
723
	u32 *seq, skb_len;
724 725 726
	unsigned long used;
	int target;	/* Read at least this many bytes */
	long timeo;
L
Linus Torvalds 已提交
727 728

	lock_sock(sk);
729
	copied = -ENOTCONN;
730
	if (unlikely(sk->sk_type == SOCK_STREAM && sk->sk_state == TCP_LISTEN))
L
Linus Torvalds 已提交
731
		goto out;
732 733 734 735 736 737 738

	timeo = sock_rcvtimeo(sk, nonblock);

	seq = &llc->copied_seq;
	if (flags & MSG_PEEK) {
		peek_seq = llc->copied_seq;
		seq = &peek_seq;
739
	}
740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788

	target = sock_rcvlowat(sk, flags & MSG_WAITALL, len);
	copied = 0;

	do {
		u32 offset;

		/*
		 * We need to check signals first, to get correct SIGURG
		 * handling. FIXME: Need to check this doesn't impact 1003.1g
		 * and move it down to the bottom of the loop
		 */
		if (signal_pending(current)) {
			if (copied)
				break;
			copied = timeo ? sock_intr_errno(timeo) : -EAGAIN;
			break;
		}

		/* Next get a buffer. */

		skb = skb_peek(&sk->sk_receive_queue);
		if (skb) {
			offset = *seq;
			goto found_ok_skb;
		}
		/* Well, if we have backlog, try to process it now yet. */

		if (copied >= target && !sk->sk_backlog.tail)
			break;

		if (copied) {
			if (sk->sk_err ||
			    sk->sk_state == TCP_CLOSE ||
			    (sk->sk_shutdown & RCV_SHUTDOWN) ||
			    !timeo ||
			    (flags & MSG_PEEK))
				break;
		} else {
			if (sock_flag(sk, SOCK_DONE))
				break;

			if (sk->sk_err) {
				copied = sock_error(sk);
				break;
			}
			if (sk->sk_shutdown & RCV_SHUTDOWN)
				break;

789
			if (sk->sk_type == SOCK_STREAM && sk->sk_state == TCP_CLOSE) {
790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809
				if (!sock_flag(sk, SOCK_DONE)) {
					/*
					 * This occurs when user tries to read
					 * from never connected socket.
					 */
					copied = -ENOTCONN;
					break;
				}
				break;
			}
			if (!timeo) {
				copied = -EAGAIN;
				break;
			}
		}

		if (copied >= target) { /* Do not sleep, just process backlog. */
			release_sock(sk);
			lock_sock(sk);
		} else
810
			sk_wait_data(sk, &timeo, NULL);
811 812

		if ((flags & MSG_PEEK) && peek_seq != llc->copied_seq) {
813 814 815
			net_dbg_ratelimited("LLC(%s:%d): Application bug, race in MSG_PEEK\n",
					    current->comm,
					    task_pid_nr(current));
816 817 818 819
			peek_seq = llc->copied_seq;
		}
		continue;
	found_ok_skb:
820
		skb_len = skb->len;
821 822 823 824 825 826
		/* Ok so how much can we use? */
		used = skb->len - offset;
		if (len < used)
			used = len;

		if (!(flags & MSG_TRUNC)) {
827
			int rc = skb_copy_datagram_msg(skb, offset, msg, used);
828 829 830 831 832 833 834 835 836 837 838 839
			if (rc) {
				/* Exception. Bailout! */
				if (!copied)
					copied = -EFAULT;
				break;
			}
		}

		*seq += used;
		copied += used;
		len -= used;

840 841 842 843
		/* For non stream protcols we get one packet per recvmsg call */
		if (sk->sk_type != SOCK_STREAM)
			goto copy_uaddr;

844
		if (!(flags & MSG_PEEK)) {
845
			spin_lock_irqsave(&sk->sk_receive_queue.lock, cpu_flags);
D
Dan Williams 已提交
846
			sk_eat_skb(sk, skb);
847
			spin_unlock_irqrestore(&sk->sk_receive_queue.lock, cpu_flags);
848 849
			*seq = 0;
		}
850 851

		/* Partial read */
852
		if (used + offset < skb_len)
853
			continue;
854 855
	} while (len > 0);

L
Linus Torvalds 已提交
856 857
out:
	release_sock(sk);
858 859 860 861 862 863
	return copied;
copy_uaddr:
	if (uaddr != NULL && skb != NULL) {
		memcpy(uaddr, llc_ui_skb_cb(skb), sizeof(*uaddr));
		msg->msg_namelen = sizeof(*uaddr);
	}
864 865
	if (llc_sk(sk)->cmsg_flags)
		llc_cmsg_rcv(msg, skb);
866 867

	if (!(flags & MSG_PEEK)) {
D
Dan Williams 已提交
868 869 870 871
		spin_lock_irqsave(&sk->sk_receive_queue.lock, cpu_flags);
		sk_eat_skb(sk, skb);
		spin_unlock_irqrestore(&sk->sk_receive_queue.lock, cpu_flags);
		*seq = 0;
872 873
	}

874
	goto out;
L
Linus Torvalds 已提交
875 876 877 878 879 880 881 882 883 884 885
}

/**
 *	llc_ui_sendmsg - Transmit data provided by the socket user.
 *	@sock: Socket to transmit data from.
 *	@msg: Various user related information.
 *	@len: Length of data to transmit.
 *
 *	Transmit data provided by the socket user.
 *	Returns non-negative upon success, negative otherwise.
 */
886
static int llc_ui_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
L
Linus Torvalds 已提交
887 888 889
{
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
890
	DECLARE_SOCKADDR(struct sockaddr_llc *, addr, msg->msg_name);
L
Linus Torvalds 已提交
891 892 893 894 895 896
	int flags = msg->msg_flags;
	int noblock = flags & MSG_DONTWAIT;
	struct sk_buff *skb;
	size_t size = 0;
	int rc = -EINVAL, copied = 0, hdrlen;

897
	dprintk("%s: sending from %02X to %02X\n", __func__,
L
Linus Torvalds 已提交
898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914
		llc->laddr.lsap, llc->daddr.lsap);
	lock_sock(sk);
	if (addr) {
		if (msg->msg_namelen < sizeof(*addr))
			goto release;
	} else {
		if (llc_ui_addr_null(&llc->addr))
			goto release;
		addr = &llc->addr;
	}
	/* must bind connection to sap if user hasn't done it. */
	if (sock_flag(sk, SOCK_ZAPPED)) {
		/* bind to sap with null dev, exclusive. */
		rc = llc_ui_autobind(sock, addr);
		if (rc)
			goto release;
	}
915
	hdrlen = llc->dev->hard_header_len + llc_ui_header_len(sk, addr);
L
Linus Torvalds 已提交
916
	size = hdrlen + len;
917 918
	if (size > llc->dev->mtu)
		size = llc->dev->mtu;
L
Linus Torvalds 已提交
919 920 921 922 923 924
	copied = size - hdrlen;
	release_sock(sk);
	skb = sock_alloc_send_skb(sk, size, noblock, &rc);
	lock_sock(sk);
	if (!skb)
		goto release;
925
	skb->dev      = llc->dev;
L
Linus Torvalds 已提交
926
	skb->protocol = llc_proto_type(addr->sllc_arphrd);
927
	skb_reserve(skb, hdrlen);
A
Al Viro 已提交
928
	rc = memcpy_from_msg(skb_put(skb, copied), msg, copied);
L
Linus Torvalds 已提交
929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950
	if (rc)
		goto out;
	if (sk->sk_type == SOCK_DGRAM || addr->sllc_ua) {
		llc_build_and_send_ui_pkt(llc->sap, skb, addr->sllc_mac,
					  addr->sllc_sap);
		goto out;
	}
	if (addr->sllc_test) {
		llc_build_and_send_test_pkt(llc->sap, skb, addr->sllc_mac,
					    addr->sllc_sap);
		goto out;
	}
	if (addr->sllc_xid) {
		llc_build_and_send_xid_pkt(llc->sap, skb, addr->sllc_mac,
					   addr->sllc_sap);
		goto out;
	}
	rc = -ENOPROTOOPT;
	if (!(sk->sk_type == SOCK_STREAM && !addr->sllc_ua))
		goto out;
	rc = llc_ui_send_data(sk, skb, noblock);
out:
951
	if (rc) {
L
Linus Torvalds 已提交
952 953 954
		kfree_skb(skb);
release:
		dprintk("%s: failed sending from %02X to %02X: %d\n",
955
			__func__, llc->laddr.lsap, llc->daddr.lsap, rc);
956
	}
L
Linus Torvalds 已提交
957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975
	release_sock(sk);
	return rc ? : copied;
}

/**
 *	llc_ui_getname - return the address info of a socket
 *	@sock: Socket to get address of.
 *	@uaddr: Address structure to return information.
 *	@uaddrlen: Length of address structure.
 *	@peer: Does user want local or remote address information.
 *
 *	Return the address information of a socket.
 */
static int llc_ui_getname(struct socket *sock, struct sockaddr *uaddr,
			  int *uaddrlen, int peer)
{
	struct sockaddr_llc sllc;
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
976
	int rc = -EBADF;
L
Linus Torvalds 已提交
977

J
Jiri Slaby 已提交
978
	memset(&sllc, 0, sizeof(sllc));
L
Linus Torvalds 已提交
979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998
	lock_sock(sk);
	if (sock_flag(sk, SOCK_ZAPPED))
		goto out;
	*uaddrlen = sizeof(sllc);
	if (peer) {
		rc = -ENOTCONN;
		if (sk->sk_state != TCP_ESTABLISHED)
			goto out;
		if(llc->dev)
			sllc.sllc_arphrd = llc->dev->type;
		sllc.sllc_sap = llc->daddr.lsap;
		memcpy(&sllc.sllc_mac, &llc->daddr.mac, IFHWADDRLEN);
	} else {
		rc = -EINVAL;
		if (!llc->sap)
			goto out;
		sllc.sllc_sap = llc->sap->laddr.lsap;

		if (llc->dev) {
			sllc.sllc_arphrd = llc->dev->type;
999
			memcpy(&sllc.sllc_mac, llc->dev->dev_addr,
L
Linus Torvalds 已提交
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
			       IFHWADDRLEN);
		}
	}
	rc = 0;
	sllc.sllc_family = AF_LLC;
	memcpy(uaddr, &sllc, sizeof(sllc));
out:
	release_sock(sk);
	return rc;
}

/**
 *	llc_ui_ioctl - io controls for PF_LLC
 *	@sock: Socket to get/set info
 *	@cmd: command
 *	@arg: optional argument for cmd
 *
 *	get/set info on llc sockets
 */
static int llc_ui_ioctl(struct socket *sock, unsigned int cmd,
			unsigned long arg)
{
1022
	return -ENOIOCTLCMD;
L
Linus Torvalds 已提交
1023 1024 1025 1026 1027 1028 1029
}

/**
 *	llc_ui_setsockopt - set various connection specific parameters.
 *	@sock: Socket to set options on.
 *	@level: Socket level user is requesting operations on.
 *	@optname: Operation name.
1030
 *	@optval: User provided operation data.
L
Linus Torvalds 已提交
1031 1032 1033 1034 1035
 *	@optlen: Length of optval.
 *
 *	Set various connection specific parameters.
 */
static int llc_ui_setsockopt(struct socket *sock, int level, int optname,
1036
			     char __user *optval, unsigned int optlen)
L
Linus Torvalds 已提交
1037 1038 1039
{
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
1040 1041
	unsigned int opt;
	int rc = -EINVAL;
L
Linus Torvalds 已提交
1042 1043

	lock_sock(sk);
1044
	if (unlikely(level != SOL_LLC || optlen != sizeof(int)))
L
Linus Torvalds 已提交
1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
		goto out;
	rc = get_user(opt, (int __user *)optval);
	if (rc)
		goto out;
	rc = -EINVAL;
	switch (optname) {
	case LLC_OPT_RETRY:
		if (opt > LLC_OPT_MAX_RETRY)
			goto out;
		llc->n2 = opt;
		break;
	case LLC_OPT_SIZE:
		if (opt > LLC_OPT_MAX_SIZE)
			goto out;
		llc->n1 = opt;
		break;
	case LLC_OPT_ACK_TMR_EXP:
		if (opt > LLC_OPT_MAX_ACK_TMR_EXP)
			goto out;
1064
		llc->ack_timer.expire = opt * HZ;
L
Linus Torvalds 已提交
1065 1066 1067 1068
		break;
	case LLC_OPT_P_TMR_EXP:
		if (opt > LLC_OPT_MAX_P_TMR_EXP)
			goto out;
1069
		llc->pf_cycle_timer.expire = opt * HZ;
L
Linus Torvalds 已提交
1070 1071 1072 1073
		break;
	case LLC_OPT_REJ_TMR_EXP:
		if (opt > LLC_OPT_MAX_REJ_TMR_EXP)
			goto out;
1074
		llc->rej_sent_timer.expire = opt * HZ;
L
Linus Torvalds 已提交
1075 1076 1077 1078
		break;
	case LLC_OPT_BUSY_TMR_EXP:
		if (opt > LLC_OPT_MAX_BUSY_TMR_EXP)
			goto out;
1079
		llc->busy_state_timer.expire = opt * HZ;
L
Linus Torvalds 已提交
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090
		break;
	case LLC_OPT_TX_WIN:
		if (opt > LLC_OPT_MAX_WIN)
			goto out;
		llc->k = opt;
		break;
	case LLC_OPT_RX_WIN:
		if (opt > LLC_OPT_MAX_WIN)
			goto out;
		llc->rw = opt;
		break;
1091 1092 1093 1094 1095 1096
	case LLC_OPT_PKTINFO:
		if (opt)
			llc->cmsg_flags |= LLC_CMSG_PKTINFO;
		else
			llc->cmsg_flags &= ~LLC_CMSG_PKTINFO;
		break;
L
Linus Torvalds 已提交
1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124
	default:
		rc = -ENOPROTOOPT;
		goto out;
	}
	rc = 0;
out:
	release_sock(sk);
	return rc;
}

/**
 *	llc_ui_getsockopt - get connection specific socket info
 *	@sock: Socket to get information from.
 *	@level: Socket level user is requesting operations on.
 *	@optname: Operation name.
 *	@optval: Variable to return operation data in.
 *	@optlen: Length of optval.
 *
 *	Get connection specific socket information.
 */
static int llc_ui_getsockopt(struct socket *sock, int level, int optname,
			     char __user *optval, int __user *optlen)
{
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
	int val = 0, len = 0, rc = -EINVAL;

	lock_sock(sk);
1125
	if (unlikely(level != SOL_LLC))
L
Linus Torvalds 已提交
1126 1127 1128 1129 1130 1131 1132 1133 1134
		goto out;
	rc = get_user(len, optlen);
	if (rc)
		goto out;
	rc = -EINVAL;
	if (len != sizeof(int))
		goto out;
	switch (optname) {
	case LLC_OPT_RETRY:
1135
		val = llc->n2;					break;
L
Linus Torvalds 已提交
1136
	case LLC_OPT_SIZE:
1137
		val = llc->n1;					break;
L
Linus Torvalds 已提交
1138
	case LLC_OPT_ACK_TMR_EXP:
1139
		val = llc->ack_timer.expire / HZ;		break;
L
Linus Torvalds 已提交
1140
	case LLC_OPT_P_TMR_EXP:
1141
		val = llc->pf_cycle_timer.expire / HZ;		break;
L
Linus Torvalds 已提交
1142
	case LLC_OPT_REJ_TMR_EXP:
1143
		val = llc->rej_sent_timer.expire / HZ;		break;
L
Linus Torvalds 已提交
1144
	case LLC_OPT_BUSY_TMR_EXP:
1145
		val = llc->busy_state_timer.expire / HZ;	break;
L
Linus Torvalds 已提交
1146 1147 1148 1149
	case LLC_OPT_TX_WIN:
		val = llc->k;				break;
	case LLC_OPT_RX_WIN:
		val = llc->rw;				break;
1150 1151 1152
	case LLC_OPT_PKTINFO:
		val = (llc->cmsg_flags & LLC_CMSG_PKTINFO) != 0;
		break;
L
Linus Torvalds 已提交
1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164
	default:
		rc = -ENOPROTOOPT;
		goto out;
	}
	rc = 0;
	if (put_user(len, optlen) || copy_to_user(optval, &val, len))
		rc = -EFAULT;
out:
	release_sock(sk);
	return rc;
}

1165
static const struct net_proto_family llc_ui_family_ops = {
L
Linus Torvalds 已提交
1166 1167 1168 1169 1170
	.family = PF_LLC,
	.create = llc_ui_create,
	.owner	= THIS_MODULE,
};

1171
static const struct proto_ops llc_ui_ops = {
L
Linus Torvalds 已提交
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191
	.family	     = PF_LLC,
	.owner       = THIS_MODULE,
	.release     = llc_ui_release,
	.bind	     = llc_ui_bind,
	.connect     = llc_ui_connect,
	.socketpair  = sock_no_socketpair,
	.accept      = llc_ui_accept,
	.getname     = llc_ui_getname,
	.poll	     = datagram_poll,
	.ioctl       = llc_ui_ioctl,
	.listen      = llc_ui_listen,
	.shutdown    = llc_ui_shutdown,
	.setsockopt  = llc_ui_setsockopt,
	.getsockopt  = llc_ui_getsockopt,
	.sendmsg     = llc_ui_sendmsg,
	.recvmsg     = llc_ui_recvmsg,
	.mmap	     = sock_no_mmap,
	.sendpage    = sock_no_sendpage,
};

1192
static const char llc_proc_err_msg[] __initconst =
1193
	KERN_CRIT "LLC: Unable to register the proc_fs entries\n";
1194
static const char llc_sysctl_err_msg[] __initconst =
1195
	KERN_CRIT "LLC: Unable to register the sysctl entries\n";
1196
static const char llc_sock_err_msg[] __initconst =
1197
	KERN_CRIT "LLC: Unable to register the network family\n";
1198

L
Linus Torvalds 已提交
1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209
static int __init llc2_init(void)
{
	int rc = proto_register(&llc_proto, 0);

	if (rc != 0)
		goto out;

	llc_build_offset_table();
	llc_station_init();
	llc_ui_sap_last_autoport = LLC_SAP_DYN_START;
	rc = llc_proc_init();
1210 1211
	if (rc != 0) {
		printk(llc_proc_err_msg);
1212
		goto out_station;
1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
	}
	rc = llc_sysctl_init();
	if (rc) {
		printk(llc_sysctl_err_msg);
		goto out_proc;
	}
	rc = sock_register(&llc_ui_family_ops);
	if (rc) {
		printk(llc_sock_err_msg);
		goto out_sysctl;
	}
L
Linus Torvalds 已提交
1224 1225 1226 1227
	llc_add_pack(LLC_DEST_SAP, llc_sap_handler);
	llc_add_pack(LLC_DEST_CONN, llc_conn_handler);
out:
	return rc;
1228 1229 1230 1231
out_sysctl:
	llc_sysctl_exit();
out_proc:
	llc_proc_exit();
1232 1233
out_station:
	llc_station_exit();
L
Linus Torvalds 已提交
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244
	proto_unregister(&llc_proto);
	goto out;
}

static void __exit llc2_exit(void)
{
	llc_station_exit();
	llc_remove_pack(LLC_DEST_SAP);
	llc_remove_pack(LLC_DEST_CONN);
	sock_unregister(PF_LLC);
	llc_proc_exit();
1245
	llc_sysctl_exit();
L
Linus Torvalds 已提交
1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
	proto_unregister(&llc_proto);
}

module_init(llc2_init);
module_exit(llc2_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Procom 1997, Jay Schullist 2001, Arnaldo C. Melo 2001-2003");
MODULE_DESCRIPTION("IEEE 802.2 PF_LLC support");
MODULE_ALIAS_NETPROTO(PF_LLC);