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 315

	lock_sock(sk);
316
	if (unlikely(!sock_flag(sk, SOCK_ZAPPED) || addrlen != sizeof(*addr)))
L
Linus Torvalds 已提交
317 318
		goto out;
	rc = -EAFNOSUPPORT;
319
	if (unlikely(addr->sllc_family != AF_LLC))
L
Linus Torvalds 已提交
320
		goto out;
321
	rc = -ENODEV;
322
	rcu_read_lock();
323
	if (sk->sk_bound_dev_if) {
324
		llc->dev = dev_get_by_index_rcu(&init_net, sk->sk_bound_dev_if);
325 326 327
		if (llc->dev) {
			if (!addr->sllc_arphrd)
				addr->sllc_arphrd = llc->dev->type;
328
			if (is_zero_ether_addr(addr->sllc_mac))
329 330 331
				memcpy(addr->sllc_mac, llc->dev->dev_addr,
				       IFHWADDRLEN);
			if (addr->sllc_arphrd != llc->dev->type ||
332 333
			    !ether_addr_equal(addr->sllc_mac,
					      llc->dev->dev_addr)) {
334 335 336 337 338
				rc = -EINVAL;
				llc->dev = NULL;
			}
		}
	} else
339
		llc->dev = dev_getbyhwaddr_rcu(&init_net, addr->sllc_arphrd,
340
					   addr->sllc_mac);
341 342 343
	if (llc->dev)
		dev_hold(llc->dev);
	rcu_read_unlock();
344 345
	if (!llc->dev)
		goto out;
L
Linus Torvalds 已提交
346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
	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));
		/*
365
		 * FIXME: check if the address is multicast,
L
Linus Torvalds 已提交
366 367 368 369 370 371 372 373
		 * 	  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);
374
			goto out_put;
L
Linus Torvalds 已提交
375 376 377 378 379 380 381 382 383
		}
	}
	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;
384 385
out_put:
	llc_sap_put(sap);
L
Linus Torvalds 已提交
386
out:
387
	release_sock(sk);
L
Linus Torvalds 已提交
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407
	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);
408
	if (unlikely(sk->sk_state != TCP_ESTABLISHED))
L
Linus Torvalds 已提交
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 443 444 445
		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);
446
	if (unlikely(addrlen != sizeof(*addr)))
L
Linus Torvalds 已提交
447 448
		goto out;
	rc = -EAFNOSUPPORT;
449 450 451 452 453 454
	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 已提交
455 456 457 458 459 460 461 462
		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;
	}
463 464
	llc->daddr.lsap = addr->sllc_sap;
	memcpy(llc->daddr.mac, addr->sllc_mac, IFHWADDRLEN);
L
Linus Torvalds 已提交
465 466 467
	sock->state = SS_CONNECTING;
	sk->sk_state   = TCP_SYN_SENT;
	llc->link   = llc_ui_next_link_no(llc->sap->laddr.lsap);
468
	rc = llc_establish_connection(sk, llc->dev->dev_addr,
L
Linus Torvalds 已提交
469 470
				      addr->sllc_mac, addr->sllc_sap);
	if (rc) {
471
		dprintk("%s: llc_ui_send_conn failed :-(\n", __func__);
L
Linus Torvalds 已提交
472 473 474 475
		sock->state  = SS_UNCONNECTED;
		sk->sk_state = TCP_CLOSE;
		goto out;
	}
476 477

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

		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 已提交
493 494 495
out:
	release_sock(sk);
	return rc;
496 497 498 499
sock_error:
	rc = sock_error(sk) ? : -ECONNABORTED;
	sock->state = SS_UNCONNECTED;
	goto out;
L
Linus Torvalds 已提交
500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
}

/**
 *	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);
516
	if (unlikely(sock->state != SS_UNCONNECTED))
L
Linus Torvalds 已提交
517 518
		goto out;
	rc = -EOPNOTSUPP;
519
	if (unlikely(sk->sk_type != SOCK_STREAM))
L
Linus Torvalds 已提交
520 521 522 523 524
		goto out;
	rc = -EAGAIN;
	if (sock_flag(sk, SOCK_ZAPPED))
		goto out;
	rc = 0;
525
	if (!(unsigned int)backlog)	/* BSDism */
L
Linus Torvalds 已提交
526 527 528 529 530 531 532 533 534 535 536 537
		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;
}

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

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

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

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

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

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

600
static int llc_wait_data(struct sock *sk, long timeo)
L
Linus Torvalds 已提交
601 602 603
{
	int rc;

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

627 628 629 630 631 632 633
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 已提交
634
		memset(&info, 0, sizeof(info));
635 636 637 638 639 640 641
		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 已提交
642 643 644 645 646
/**
 *	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.
647
 *	@kern: If the socket is kernel internal
L
Linus Torvalds 已提交
648 649 650 651
 *
 *	Accept a new incoming connection.
 *	Returns 0 upon success, negative otherwise.
 */
652 653
static int llc_ui_accept(struct socket *sock, struct socket *newsock, int flags,
			 bool kern)
L
Linus Torvalds 已提交
654 655 656 657 658 659
{
	struct sock *sk = sock->sk, *newsk;
	struct llc_sock *llc, *newllc;
	struct sk_buff *skb;
	int rc = -EOPNOTSUPP;

660
	dprintk("%s: accepting on %02X\n", __func__,
661
		llc_sk(sk)->laddr.lsap);
L
Linus Torvalds 已提交
662
	lock_sock(sk);
663
	if (unlikely(sk->sk_type != SOCK_STREAM))
L
Linus Torvalds 已提交
664 665
		goto out;
	rc = -EINVAL;
666 667
	if (unlikely(sock->state != SS_UNCONNECTED ||
		     sk->sk_state != TCP_LISTEN))
L
Linus Torvalds 已提交
668 669
		goto out;
	/* wait for a connection to arrive. */
670
	if (skb_queue_empty(&sk->sk_receive_queue)) {
671
		rc = llc_wait_data(sk, sk->sk_rcvtimeo);
672 673 674
		if (rc)
			goto out;
	}
675
	dprintk("%s: got a new connection on %02X\n", __func__,
676
		llc_sk(sk)->laddr.lsap);
L
Linus Torvalds 已提交
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
	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--;
696
	dprintk("%s: ok success on %02X, client on %02X\n", __func__,
L
Linus Torvalds 已提交
697 698 699 700 701 702 703 704 705 706 707 708
		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.
709
 *	@len: Size of user buffer.
L
Linus Torvalds 已提交
710 711 712 713 714
 *	@flags: User specified flags.
 *
 *	Copy received data to the socket user.
 *	Returns non-negative upon success, negative otherwise.
 */
715 716
static int llc_ui_recvmsg(struct socket *sock, struct msghdr *msg, size_t len,
			  int flags)
L
Linus Torvalds 已提交
717
{
718
	DECLARE_SOCKADDR(struct sockaddr_llc *, uaddr, msg->msg_name);
719 720 721 722
	const int nonblock = flags & MSG_DONTWAIT;
	struct sk_buff *skb = NULL;
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
723
	unsigned long cpu_flags;
L
Linus Torvalds 已提交
724
	size_t copied = 0;
725
	u32 peek_seq = 0;
726
	u32 *seq, skb_len;
727 728 729
	unsigned long used;
	int target;	/* Read at least this many bytes */
	long timeo;
L
Linus Torvalds 已提交
730 731

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

	timeo = sock_rcvtimeo(sk, nonblock);

	seq = &llc->copied_seq;
	if (flags & MSG_PEEK) {
		peek_seq = llc->copied_seq;
		seq = &peek_seq;
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 789 790 791

	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;

792
			if (sk->sk_type == SOCK_STREAM && sk->sk_state == TCP_CLOSE) {
793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
				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
813
			sk_wait_data(sk, &timeo, NULL);
814 815

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

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

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

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

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

		/* Partial read */
855
		if (used + offset < skb_len)
856
			continue;
857 858
	} while (len > 0);

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

	if (!(flags & MSG_PEEK)) {
D
Dan Williams 已提交
871 872 873 874
		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;
875 876
	}

877
	goto out;
L
Linus Torvalds 已提交
878 879 880 881 882 883 884 885 886 887 888
}

/**
 *	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.
 */
889
static int llc_ui_sendmsg(struct socket *sock, struct msghdr *msg, size_t len)
L
Linus Torvalds 已提交
890 891 892
{
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
893
	DECLARE_SOCKADDR(struct sockaddr_llc *, addr, msg->msg_name);
L
Linus Torvalds 已提交
894 895 896 897 898 899
	int flags = msg->msg_flags;
	int noblock = flags & MSG_DONTWAIT;
	struct sk_buff *skb;
	size_t size = 0;
	int rc = -EINVAL, copied = 0, hdrlen;

900
	dprintk("%s: sending from %02X to %02X\n", __func__,
L
Linus Torvalds 已提交
901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917
		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;
	}
918
	hdrlen = llc->dev->hard_header_len + llc_ui_header_len(sk, addr);
L
Linus Torvalds 已提交
919
	size = hdrlen + len;
920 921
	if (size > llc->dev->mtu)
		size = llc->dev->mtu;
L
Linus Torvalds 已提交
922 923 924 925 926 927
	copied = size - hdrlen;
	release_sock(sk);
	skb = sock_alloc_send_skb(sk, size, noblock, &rc);
	lock_sock(sk);
	if (!skb)
		goto release;
928
	skb->dev      = llc->dev;
L
Linus Torvalds 已提交
929
	skb->protocol = llc_proto_type(addr->sllc_arphrd);
930
	skb_reserve(skb, hdrlen);
A
Al Viro 已提交
931
	rc = memcpy_from_msg(skb_put(skb, copied), msg, copied);
L
Linus Torvalds 已提交
932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953
	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:
954
	if (rc) {
L
Linus Torvalds 已提交
955 956 957
		kfree_skb(skb);
release:
		dprintk("%s: failed sending from %02X to %02X: %d\n",
958
			__func__, llc->laddr.lsap, llc->daddr.lsap, rc);
959
	}
L
Linus Torvalds 已提交
960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978
	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);
979
	int rc = -EBADF;
L
Linus Torvalds 已提交
980

J
Jiri Slaby 已提交
981
	memset(&sllc, 0, sizeof(sllc));
L
Linus Torvalds 已提交
982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001
	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;
1002
			memcpy(&sllc.sllc_mac, llc->dev->dev_addr,
L
Linus Torvalds 已提交
1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024
			       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)
{
1025
	return -ENOIOCTLCMD;
L
Linus Torvalds 已提交
1026 1027 1028 1029 1030 1031 1032
}

/**
 *	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.
1033
 *	@optval: User provided operation data.
L
Linus Torvalds 已提交
1034 1035 1036 1037 1038
 *	@optlen: Length of optval.
 *
 *	Set various connection specific parameters.
 */
static int llc_ui_setsockopt(struct socket *sock, int level, int optname,
1039
			     char __user *optval, unsigned int optlen)
L
Linus Torvalds 已提交
1040 1041 1042
{
	struct sock *sk = sock->sk;
	struct llc_sock *llc = llc_sk(sk);
1043 1044
	unsigned int opt;
	int rc = -EINVAL;
L
Linus Torvalds 已提交
1045 1046

	lock_sock(sk);
1047
	if (unlikely(level != SOL_LLC || optlen != sizeof(int)))
L
Linus Torvalds 已提交
1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066
		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;
1067
		llc->ack_timer.expire = opt * HZ;
L
Linus Torvalds 已提交
1068 1069 1070 1071
		break;
	case LLC_OPT_P_TMR_EXP:
		if (opt > LLC_OPT_MAX_P_TMR_EXP)
			goto out;
1072
		llc->pf_cycle_timer.expire = opt * HZ;
L
Linus Torvalds 已提交
1073 1074 1075 1076
		break;
	case LLC_OPT_REJ_TMR_EXP:
		if (opt > LLC_OPT_MAX_REJ_TMR_EXP)
			goto out;
1077
		llc->rej_sent_timer.expire = opt * HZ;
L
Linus Torvalds 已提交
1078 1079 1080 1081
		break;
	case LLC_OPT_BUSY_TMR_EXP:
		if (opt > LLC_OPT_MAX_BUSY_TMR_EXP)
			goto out;
1082
		llc->busy_state_timer.expire = opt * HZ;
L
Linus Torvalds 已提交
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093
		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;
1094 1095 1096 1097 1098 1099
	case LLC_OPT_PKTINFO:
		if (opt)
			llc->cmsg_flags |= LLC_CMSG_PKTINFO;
		else
			llc->cmsg_flags &= ~LLC_CMSG_PKTINFO;
		break;
L
Linus Torvalds 已提交
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 1125 1126 1127
	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);
1128
	if (unlikely(level != SOL_LLC))
L
Linus Torvalds 已提交
1129 1130 1131 1132 1133 1134 1135 1136 1137
		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:
1138
		val = llc->n2;					break;
L
Linus Torvalds 已提交
1139
	case LLC_OPT_SIZE:
1140
		val = llc->n1;					break;
L
Linus Torvalds 已提交
1141
	case LLC_OPT_ACK_TMR_EXP:
1142
		val = llc->ack_timer.expire / HZ;		break;
L
Linus Torvalds 已提交
1143
	case LLC_OPT_P_TMR_EXP:
1144
		val = llc->pf_cycle_timer.expire / HZ;		break;
L
Linus Torvalds 已提交
1145
	case LLC_OPT_REJ_TMR_EXP:
1146
		val = llc->rej_sent_timer.expire / HZ;		break;
L
Linus Torvalds 已提交
1147
	case LLC_OPT_BUSY_TMR_EXP:
1148
		val = llc->busy_state_timer.expire / HZ;	break;
L
Linus Torvalds 已提交
1149 1150 1151 1152
	case LLC_OPT_TX_WIN:
		val = llc->k;				break;
	case LLC_OPT_RX_WIN:
		val = llc->rw;				break;
1153 1154 1155
	case LLC_OPT_PKTINFO:
		val = (llc->cmsg_flags & LLC_CMSG_PKTINFO) != 0;
		break;
L
Linus Torvalds 已提交
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
	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;
}

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

1174
static const struct proto_ops llc_ui_ops = {
L
Linus Torvalds 已提交
1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194
	.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,
};

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

L
Linus Torvalds 已提交
1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
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();
1213 1214
	if (rc != 0) {
		printk(llc_proc_err_msg);
1215
		goto out_station;
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226
	}
	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 已提交
1227 1228 1229 1230
	llc_add_pack(LLC_DEST_SAP, llc_sap_handler);
	llc_add_pack(LLC_DEST_CONN, llc_conn_handler);
out:
	return rc;
1231 1232 1233 1234
out_sysctl:
	llc_sysctl_exit();
out_proc:
	llc_proc_exit();
1235 1236
out_station:
	llc_station_exit();
L
Linus Torvalds 已提交
1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247
	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();
1248
	llc_sysctl_exit();
L
Linus Torvalds 已提交
1249 1250 1251 1252 1253 1254 1255 1256 1257 1258
	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);