Merge branch 'hns3-add-support-for-reset'
[linux-2.6-block.git] / net / rxrpc / af_rxrpc.c
CommitLineData
17926a79
DH
1/* AF_RXRPC implementation
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
9b6d5398
JP
12#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
17926a79 14#include <linux/module.h>
ce6654cf 15#include <linux/kernel.h>
17926a79 16#include <linux/net.h>
5a0e3ad6 17#include <linux/slab.h>
17926a79 18#include <linux/skbuff.h>
5f2d9c44 19#include <linux/random.h>
17926a79
DH
20#include <linux/poll.h>
21#include <linux/proc_fs.h>
76181c13 22#include <linux/key-type.h>
457c4cbc 23#include <net/net_namespace.h>
17926a79
DH
24#include <net/sock.h>
25#include <net/af_rxrpc.h>
df844fd4 26#define CREATE_TRACE_POINTS
17926a79
DH
27#include "ar-internal.h"
28
29MODULE_DESCRIPTION("RxRPC network protocol");
30MODULE_AUTHOR("Red Hat, Inc.");
31MODULE_LICENSE("GPL");
32MODULE_ALIAS_NETPROTO(PF_RXRPC);
33
95c96174 34unsigned int rxrpc_debug; // = RXRPC_DEBUG_KPROTO;
17926a79 35module_param_named(debug, rxrpc_debug, uint, S_IWUSR | S_IRUGO);
424b00e2 36MODULE_PARM_DESC(debug, "RxRPC debugging mask");
17926a79 37
17926a79
DH
38static struct proto rxrpc_proto;
39static const struct proto_ops rxrpc_rpc_ops;
40
17926a79
DH
41/* current debugging ID */
42atomic_t rxrpc_debug_id;
43
44/* count of skbs currently in use */
71f3ca40 45atomic_t rxrpc_n_tx_skbs, rxrpc_n_rx_skbs;
17926a79 46
651350d1
DH
47struct workqueue_struct *rxrpc_workqueue;
48
17926a79
DH
49static void rxrpc_sock_destructor(struct sock *);
50
51/*
52 * see if an RxRPC socket is currently writable
53 */
54static inline int rxrpc_writable(struct sock *sk)
55{
14afee4b 56 return refcount_read(&sk->sk_wmem_alloc) < (size_t) sk->sk_sndbuf;
17926a79
DH
57}
58
59/*
60 * wait for write bufferage to become available
61 */
62static void rxrpc_write_space(struct sock *sk)
63{
64 _enter("%p", sk);
43815482 65 rcu_read_lock();
17926a79 66 if (rxrpc_writable(sk)) {
43815482
ED
67 struct socket_wq *wq = rcu_dereference(sk->sk_wq);
68
1ce0bf50 69 if (skwq_has_sleeper(wq))
43815482 70 wake_up_interruptible(&wq->wait);
8d8ad9d7 71 sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT);
17926a79 72 }
43815482 73 rcu_read_unlock();
17926a79
DH
74}
75
76/*
77 * validate an RxRPC address
78 */
79static int rxrpc_validate_address(struct rxrpc_sock *rx,
80 struct sockaddr_rxrpc *srx,
81 int len)
82{
dad8aff7 83 unsigned int tail;
ab802ee0 84
17926a79
DH
85 if (len < sizeof(struct sockaddr_rxrpc))
86 return -EINVAL;
87
88 if (srx->srx_family != AF_RXRPC)
89 return -EAFNOSUPPORT;
90
91 if (srx->transport_type != SOCK_DGRAM)
92 return -ESOCKTNOSUPPORT;
93
94 len -= offsetof(struct sockaddr_rxrpc, transport);
95 if (srx->transport_len < sizeof(sa_family_t) ||
96 srx->transport_len > len)
97 return -EINVAL;
98
19ffa01c 99 if (srx->transport.family != rx->family)
17926a79
DH
100 return -EAFNOSUPPORT;
101
102 switch (srx->transport.family) {
103 case AF_INET:
4f95dd78
DH
104 if (srx->transport_len < sizeof(struct sockaddr_in))
105 return -EINVAL;
ab802ee0 106 tail = offsetof(struct sockaddr_rxrpc, transport.sin.__pad);
17926a79
DH
107 break;
108
d1912747 109#ifdef CONFIG_AF_RXRPC_IPV6
17926a79 110 case AF_INET6:
75b54cb5
DH
111 if (srx->transport_len < sizeof(struct sockaddr_in6))
112 return -EINVAL;
113 tail = offsetof(struct sockaddr_rxrpc, transport) +
114 sizeof(struct sockaddr_in6);
115 break;
d1912747 116#endif
75b54cb5 117
17926a79
DH
118 default:
119 return -EAFNOSUPPORT;
120 }
121
ab802ee0
DH
122 if (tail < len)
123 memset((void *)srx + tail, 0, len - tail);
75b54cb5 124 _debug("INET: %pISp", &srx->transport);
17926a79
DH
125 return 0;
126}
127
128/*
129 * bind a local address to an RxRPC socket
130 */
131static int rxrpc_bind(struct socket *sock, struct sockaddr *saddr, int len)
132{
b4f1342f 133 struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)saddr;
17926a79 134 struct rxrpc_local *local;
68d6d1ae 135 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
1e9e5c95 136 u16 service_id = srx->srx_service;
17926a79
DH
137 int ret;
138
139 _enter("%p,%p,%d", rx, saddr, len);
140
141 ret = rxrpc_validate_address(rx, srx, len);
142 if (ret < 0)
143 goto error;
144
145 lock_sock(&rx->sk);
146
28036f44
DH
147 switch (rx->sk.sk_state) {
148 case RXRPC_UNBOUND:
149 rx->srx = *srx;
150 local = rxrpc_lookup_local(sock_net(&rx->sk), &rx->srx);
151 if (IS_ERR(local)) {
152 ret = PTR_ERR(local);
153 goto error_unlock;
154 }
155
156 if (service_id) {
157 write_lock(&local->services_lock);
158 if (rcu_access_pointer(local->service))
159 goto service_in_use;
160 rx->local = local;
161 rcu_assign_pointer(local->service, rx);
162 write_unlock(&local->services_lock);
163
164 rx->sk.sk_state = RXRPC_SERVER_BOUND;
165 } else {
166 rx->local = local;
167 rx->sk.sk_state = RXRPC_CLIENT_BOUND;
168 }
169 break;
17926a79 170
28036f44
DH
171 case RXRPC_SERVER_BOUND:
172 ret = -EINVAL;
173 if (service_id == 0)
174 goto error_unlock;
175 ret = -EADDRINUSE;
176 if (service_id == rx->srx.srx_service)
177 goto error_unlock;
178 ret = -EINVAL;
179 srx->srx_service = rx->srx.srx_service;
180 if (memcmp(srx, &rx->srx, sizeof(*srx)) != 0)
181 goto error_unlock;
182 rx->second_service = service_id;
183 rx->sk.sk_state = RXRPC_SERVER_BOUND2;
184 break;
17926a79 185
28036f44
DH
186 default:
187 ret = -EINVAL;
17926a79
DH
188 goto error_unlock;
189 }
190
17926a79
DH
191 release_sock(&rx->sk);
192 _leave(" = 0");
193 return 0;
194
195service_in_use:
248f219c 196 write_unlock(&local->services_lock);
2341e077
DH
197 rxrpc_put_local(local);
198 ret = -EADDRINUSE;
17926a79
DH
199error_unlock:
200 release_sock(&rx->sk);
201error:
202 _leave(" = %d", ret);
203 return ret;
204}
205
206/*
207 * set the number of pending calls permitted on a listening socket
208 */
209static int rxrpc_listen(struct socket *sock, int backlog)
210{
211 struct sock *sk = sock->sk;
212 struct rxrpc_sock *rx = rxrpc_sk(sk);
00e90712 213 unsigned int max, old;
17926a79
DH
214 int ret;
215
216 _enter("%p,%d", rx, backlog);
217
218 lock_sock(&rx->sk);
219
220 switch (rx->sk.sk_state) {
2341e077 221 case RXRPC_UNBOUND:
17926a79
DH
222 ret = -EADDRNOTAVAIL;
223 break;
17926a79 224 case RXRPC_SERVER_BOUND:
28036f44 225 case RXRPC_SERVER_BOUND2:
17926a79 226 ASSERT(rx->local != NULL);
0e119b41
DH
227 max = READ_ONCE(rxrpc_max_backlog);
228 ret = -EINVAL;
229 if (backlog == INT_MAX)
230 backlog = max;
231 else if (backlog < 0 || backlog > max)
232 break;
00e90712 233 old = sk->sk_max_ack_backlog;
17926a79 234 sk->sk_max_ack_backlog = backlog;
00e90712
DH
235 ret = rxrpc_service_prealloc(rx, GFP_KERNEL);
236 if (ret == 0)
237 rx->sk.sk_state = RXRPC_SERVER_LISTENING;
238 else
239 sk->sk_max_ack_backlog = old;
17926a79 240 break;
210f0353
DH
241 case RXRPC_SERVER_LISTENING:
242 if (backlog == 0) {
243 rx->sk.sk_state = RXRPC_SERVER_LISTEN_DISABLED;
244 sk->sk_max_ack_backlog = 0;
245 rxrpc_discard_prealloc(rx);
246 ret = 0;
247 break;
248 }
e3cf3970 249 /* Fall through */
0e119b41
DH
250 default:
251 ret = -EBUSY;
252 break;
17926a79
DH
253 }
254
255 release_sock(&rx->sk);
256 _leave(" = %d", ret);
257 return ret;
258}
259
651350d1
DH
260/**
261 * rxrpc_kernel_begin_call - Allow a kernel service to begin a call
262 * @sock: The socket on which to make the call
2341e077 263 * @srx: The address of the peer to contact
651350d1
DH
264 * @key: The security context to use (defaults to socket setting)
265 * @user_call_ID: The ID to use
e754eba6 266 * @tx_total_len: Total length of data to transmit during the call (or -1)
d001648e
DH
267 * @gfp: The allocation constraints
268 * @notify_rx: Where to send notifications instead of socket queue
a68f4a27 269 * @upgrade: Request service upgrade for call
651350d1
DH
270 *
271 * Allow a kernel service to begin a call on the nominated socket. This just
272 * sets up all the internal tracking structures and allocates connection and
273 * call IDs as appropriate. The call to be used is returned.
274 *
275 * The default socket destination address and security may be overridden by
276 * supplying @srx and @key.
277 */
278struct rxrpc_call *rxrpc_kernel_begin_call(struct socket *sock,
279 struct sockaddr_rxrpc *srx,
280 struct key *key,
281 unsigned long user_call_ID,
e754eba6 282 s64 tx_total_len,
d001648e 283 gfp_t gfp,
a68f4a27
DH
284 rxrpc_notify_rx_t notify_rx,
285 bool upgrade)
651350d1 286{
19ffa01c 287 struct rxrpc_conn_parameters cp;
651350d1
DH
288 struct rxrpc_call *call;
289 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
f4552c2d 290 int ret;
651350d1
DH
291
292 _enter(",,%x,%lx", key_serial(key), user_call_ID);
293
f4552c2d
DH
294 ret = rxrpc_validate_address(rx, srx, sizeof(*srx));
295 if (ret < 0)
296 return ERR_PTR(ret);
297
651350d1
DH
298 lock_sock(&rx->sk);
299
19ffa01c
DH
300 if (!key)
301 key = rx->key;
302 if (key && !key->payload.data[0])
303 key = NULL; /* a no-security key */
304
305 memset(&cp, 0, sizeof(cp));
306 cp.local = rx->local;
307 cp.key = key;
308 cp.security_level = 0;
309 cp.exclusive = false;
a68f4a27 310 cp.upgrade = upgrade;
19ffa01c 311 cp.service_id = srx->srx_service;
e754eba6
DH
312 call = rxrpc_new_client_call(rx, &cp, srx, user_call_ID, tx_total_len,
313 gfp);
540b1c48 314 /* The socket has been unlocked. */
6cb3ece9 315 if (!IS_ERR(call)) {
d001648e 316 call->notify_rx = notify_rx;
6cb3ece9
DH
317 mutex_unlock(&call->user_mutex);
318 }
19ffa01c 319
651350d1
DH
320 _leave(" = %p", call);
321 return call;
322}
651350d1
DH
323EXPORT_SYMBOL(rxrpc_kernel_begin_call);
324
325/**
326 * rxrpc_kernel_end_call - Allow a kernel service to end a call it was using
4de48af6 327 * @sock: The socket the call is on
651350d1
DH
328 * @call: The call to end
329 *
330 * Allow a kernel service to end a call it was using. The call must be
331 * complete before this is called (the call should be aborted if necessary).
332 */
4de48af6 333void rxrpc_kernel_end_call(struct socket *sock, struct rxrpc_call *call)
651350d1
DH
334{
335 _enter("%d{%d}", call->debug_id, atomic_read(&call->usage));
540b1c48
DH
336
337 mutex_lock(&call->user_mutex);
8d94aa38 338 rxrpc_release_call(rxrpc_sk(sock->sk), call);
540b1c48 339 mutex_unlock(&call->user_mutex);
cbd00891 340 rxrpc_put_call(call, rxrpc_call_put_kernel);
651350d1 341}
651350d1
DH
342EXPORT_SYMBOL(rxrpc_kernel_end_call);
343
f4d15fb6
DH
344/**
345 * rxrpc_kernel_check_life - Check to see whether a call is still alive
346 * @sock: The socket the call is on
347 * @call: The call to check
348 *
349 * Allow a kernel service to find out whether a call is still alive - ie. we're
350 * getting ACKs from the server. Returns a number representing the life state
351 * which can be compared to that returned by a previous call.
352 *
353 * If this is a client call, ping ACKs will be sent to the server to find out
354 * whether it's still responsive and whether the call is still alive on the
355 * server.
356 */
357u32 rxrpc_kernel_check_life(struct socket *sock, struct rxrpc_call *call)
358{
359 return call->acks_latest;
360}
361EXPORT_SYMBOL(rxrpc_kernel_check_life);
362
c038a58c
DH
363/**
364 * rxrpc_kernel_check_call - Check a call's state
365 * @sock: The socket the call is on
366 * @call: The call to check
367 * @_compl: Where to store the completion state
368 * @_abort_code: Where to store any abort code
369 *
370 * Allow a kernel service to query the state of a call and find out the manner
371 * of its termination if it has completed. Returns -EINPROGRESS if the call is
372 * still going, 0 if the call finished successfully, -ECONNABORTED if the call
373 * was aborted and an appropriate error if the call failed in some other way.
374 */
375int rxrpc_kernel_check_call(struct socket *sock, struct rxrpc_call *call,
376 enum rxrpc_call_completion *_compl, u32 *_abort_code)
377{
378 if (call->state != RXRPC_CALL_COMPLETE)
379 return -EINPROGRESS;
380 smp_rmb();
381 *_compl = call->completion;
382 *_abort_code = call->abort_code;
383 return call->error;
384}
385EXPORT_SYMBOL(rxrpc_kernel_check_call);
386
387/**
388 * rxrpc_kernel_retry_call - Allow a kernel service to retry a call
389 * @sock: The socket the call is on
390 * @call: The call to retry
391 * @srx: The address of the peer to contact
392 * @key: The security context to use (defaults to socket setting)
393 *
394 * Allow a kernel service to try resending a client call that failed due to a
395 * network error to a new address. The Tx queue is maintained intact, thereby
396 * relieving the need to re-encrypt any request data that has already been
397 * buffered.
398 */
399int rxrpc_kernel_retry_call(struct socket *sock, struct rxrpc_call *call,
400 struct sockaddr_rxrpc *srx, struct key *key)
401{
402 struct rxrpc_conn_parameters cp;
403 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
404 int ret;
405
406 _enter("%d{%d}", call->debug_id, atomic_read(&call->usage));
407
408 if (!key)
409 key = rx->key;
410 if (key && !key->payload.data[0])
411 key = NULL; /* a no-security key */
412
413 memset(&cp, 0, sizeof(cp));
414 cp.local = rx->local;
415 cp.key = key;
416 cp.security_level = 0;
417 cp.exclusive = false;
418 cp.service_id = srx->srx_service;
419
420 mutex_lock(&call->user_mutex);
421
422 ret = rxrpc_prepare_call_for_retry(rx, call);
423 if (ret == 0)
424 ret = rxrpc_retry_client_call(rx, call, &cp, srx, GFP_KERNEL);
425
426 mutex_unlock(&call->user_mutex);
427 _leave(" = %d", ret);
428 return ret;
429}
430EXPORT_SYMBOL(rxrpc_kernel_retry_call);
431
651350d1 432/**
d001648e 433 * rxrpc_kernel_new_call_notification - Get notifications of new calls
651350d1 434 * @sock: The socket to intercept received messages on
d001648e 435 * @notify_new_call: Function to be called when new calls appear
00e90712 436 * @discard_new_call: Function to discard preallocated calls
651350d1 437 *
d001648e 438 * Allow a kernel service to be given notifications about new calls.
651350d1 439 */
d001648e
DH
440void rxrpc_kernel_new_call_notification(
441 struct socket *sock,
00e90712
DH
442 rxrpc_notify_new_call_t notify_new_call,
443 rxrpc_discard_new_call_t discard_new_call)
651350d1
DH
444{
445 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
446
d001648e 447 rx->notify_new_call = notify_new_call;
00e90712 448 rx->discard_new_call = discard_new_call;
651350d1 449}
d001648e 450EXPORT_SYMBOL(rxrpc_kernel_new_call_notification);
651350d1 451
17926a79
DH
452/*
453 * connect an RxRPC socket
454 * - this just targets it at a specific destination; no actual connection
455 * negotiation takes place
456 */
457static int rxrpc_connect(struct socket *sock, struct sockaddr *addr,
458 int addr_len, int flags)
459{
2341e077
DH
460 struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)addr;
461 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
17926a79
DH
462 int ret;
463
464 _enter("%p,%p,%d,%d", rx, addr, addr_len, flags);
465
466 ret = rxrpc_validate_address(rx, srx, addr_len);
467 if (ret < 0) {
468 _leave(" = %d [bad addr]", ret);
469 return ret;
470 }
471
472 lock_sock(&rx->sk);
473
2341e077
DH
474 ret = -EISCONN;
475 if (test_bit(RXRPC_SOCK_CONNECTED, &rx->flags))
476 goto error;
477
17926a79 478 switch (rx->sk.sk_state) {
2341e077
DH
479 case RXRPC_UNBOUND:
480 rx->sk.sk_state = RXRPC_CLIENT_UNBOUND;
481 case RXRPC_CLIENT_UNBOUND:
17926a79
DH
482 case RXRPC_CLIENT_BOUND:
483 break;
17926a79 484 default:
2341e077
DH
485 ret = -EBUSY;
486 goto error;
17926a79
DH
487 }
488
2341e077
DH
489 rx->connect_srx = *srx;
490 set_bit(RXRPC_SOCK_CONNECTED, &rx->flags);
491 ret = 0;
17926a79 492
2341e077 493error:
17926a79 494 release_sock(&rx->sk);
2341e077 495 return ret;
17926a79
DH
496}
497
498/*
499 * send a message through an RxRPC socket
500 * - in a client this does a number of things:
501 * - finds/sets up a connection for the security specified (if any)
502 * - initiates a call (ID in control data)
503 * - ends the request phase of a call (if MSG_MORE is not set)
504 * - sends a call data packet
505 * - may send an abort (abort code in control data)
506 */
1b784140 507static int rxrpc_sendmsg(struct socket *sock, struct msghdr *m, size_t len)
17926a79 508{
2341e077 509 struct rxrpc_local *local;
17926a79
DH
510 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
511 int ret;
512
513 _enter(",{%d},,%zu", rx->sk.sk_state, len);
514
515 if (m->msg_flags & MSG_OOB)
516 return -EOPNOTSUPP;
517
518 if (m->msg_name) {
519 ret = rxrpc_validate_address(rx, m->msg_name, m->msg_namelen);
520 if (ret < 0) {
521 _leave(" = %d [bad addr]", ret);
522 return ret;
523 }
524 }
525
17926a79
DH
526 lock_sock(&rx->sk);
527
17926a79 528 switch (rx->sk.sk_state) {
2341e077 529 case RXRPC_UNBOUND:
cd5892c7
DH
530 rx->srx.srx_family = AF_RXRPC;
531 rx->srx.srx_service = 0;
532 rx->srx.transport_type = SOCK_DGRAM;
533 rx->srx.transport.family = rx->family;
534 switch (rx->family) {
535 case AF_INET:
536 rx->srx.transport_len = sizeof(struct sockaddr_in);
537 break;
d1912747 538#ifdef CONFIG_AF_RXRPC_IPV6
75b54cb5
DH
539 case AF_INET6:
540 rx->srx.transport_len = sizeof(struct sockaddr_in6);
541 break;
d1912747 542#endif
cd5892c7
DH
543 default:
544 ret = -EAFNOSUPPORT;
545 goto error_unlock;
546 }
2baec2c3 547 local = rxrpc_lookup_local(sock_net(sock->sk), &rx->srx);
2341e077
DH
548 if (IS_ERR(local)) {
549 ret = PTR_ERR(local);
550 goto error_unlock;
17926a79 551 }
2341e077
DH
552
553 rx->local = local;
554 rx->sk.sk_state = RXRPC_CLIENT_UNBOUND;
555 /* Fall through */
556
557 case RXRPC_CLIENT_UNBOUND:
17926a79 558 case RXRPC_CLIENT_BOUND:
2341e077
DH
559 if (!m->msg_name &&
560 test_bit(RXRPC_SOCK_CONNECTED, &rx->flags)) {
561 m->msg_name = &rx->connect_srx;
562 m->msg_namelen = sizeof(rx->connect_srx);
17926a79 563 }
e3cf3970 564 /* Fall through */
2341e077
DH
565 case RXRPC_SERVER_BOUND:
566 case RXRPC_SERVER_LISTENING:
567 ret = rxrpc_do_sendmsg(rx, m, len);
540b1c48
DH
568 /* The socket has been unlocked */
569 goto out;
17926a79 570 default:
2341e077 571 ret = -EINVAL;
540b1c48 572 goto error_unlock;
17926a79
DH
573 }
574
2341e077 575error_unlock:
17926a79 576 release_sock(&rx->sk);
540b1c48 577out:
17926a79
DH
578 _leave(" = %d", ret);
579 return ret;
580}
581
582/*
583 * set RxRPC socket options
584 */
585static int rxrpc_setsockopt(struct socket *sock, int level, int optname,
b7058842 586 char __user *optval, unsigned int optlen)
17926a79
DH
587{
588 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
95c96174 589 unsigned int min_sec_level;
4722974d 590 u16 service_upgrade[2];
17926a79
DH
591 int ret;
592
593 _enter(",%d,%d,,%d", level, optname, optlen);
594
595 lock_sock(&rx->sk);
596 ret = -EOPNOTSUPP;
597
598 if (level == SOL_RXRPC) {
599 switch (optname) {
600 case RXRPC_EXCLUSIVE_CONNECTION:
601 ret = -EINVAL;
602 if (optlen != 0)
603 goto error;
604 ret = -EISCONN;
2341e077 605 if (rx->sk.sk_state != RXRPC_UNBOUND)
17926a79 606 goto error;
cc8feb8e 607 rx->exclusive = true;
17926a79
DH
608 goto success;
609
610 case RXRPC_SECURITY_KEY:
611 ret = -EINVAL;
612 if (rx->key)
613 goto error;
614 ret = -EISCONN;
2341e077 615 if (rx->sk.sk_state != RXRPC_UNBOUND)
17926a79
DH
616 goto error;
617 ret = rxrpc_request_key(rx, optval, optlen);
618 goto error;
619
620 case RXRPC_SECURITY_KEYRING:
621 ret = -EINVAL;
622 if (rx->key)
623 goto error;
624 ret = -EISCONN;
2341e077 625 if (rx->sk.sk_state != RXRPC_UNBOUND)
17926a79
DH
626 goto error;
627 ret = rxrpc_server_keyring(rx, optval, optlen);
628 goto error;
629
630 case RXRPC_MIN_SECURITY_LEVEL:
631 ret = -EINVAL;
95c96174 632 if (optlen != sizeof(unsigned int))
17926a79
DH
633 goto error;
634 ret = -EISCONN;
2341e077 635 if (rx->sk.sk_state != RXRPC_UNBOUND)
17926a79
DH
636 goto error;
637 ret = get_user(min_sec_level,
95c96174 638 (unsigned int __user *) optval);
17926a79
DH
639 if (ret < 0)
640 goto error;
641 ret = -EINVAL;
642 if (min_sec_level > RXRPC_SECURITY_MAX)
643 goto error;
644 rx->min_sec_level = min_sec_level;
645 goto success;
646
4722974d
DH
647 case RXRPC_UPGRADEABLE_SERVICE:
648 ret = -EINVAL;
649 if (optlen != sizeof(service_upgrade) ||
650 rx->service_upgrade.from != 0)
651 goto error;
652 ret = -EISCONN;
653 if (rx->sk.sk_state != RXRPC_SERVER_BOUND2)
654 goto error;
655 ret = -EFAULT;
656 if (copy_from_user(service_upgrade, optval,
657 sizeof(service_upgrade)) != 0)
658 goto error;
659 ret = -EINVAL;
660 if ((service_upgrade[0] != rx->srx.srx_service ||
661 service_upgrade[1] != rx->second_service) &&
662 (service_upgrade[0] != rx->second_service ||
663 service_upgrade[1] != rx->srx.srx_service))
664 goto error;
665 rx->service_upgrade.from = service_upgrade[0];
666 rx->service_upgrade.to = service_upgrade[1];
667 goto success;
668
17926a79
DH
669 default:
670 break;
671 }
672 }
673
674success:
675 ret = 0;
676error:
677 release_sock(&rx->sk);
678 return ret;
679}
680
515559ca
DH
681/*
682 * Get socket options.
683 */
684static int rxrpc_getsockopt(struct socket *sock, int level, int optname,
685 char __user *optval, int __user *_optlen)
686{
687 int optlen;
3ec0efde 688
515559ca
DH
689 if (level != SOL_RXRPC)
690 return -EOPNOTSUPP;
691
692 if (get_user(optlen, _optlen))
693 return -EFAULT;
3ec0efde 694
515559ca
DH
695 switch (optname) {
696 case RXRPC_SUPPORTED_CMSG:
697 if (optlen < sizeof(int))
698 return -ETOOSMALL;
699 if (put_user(RXRPC__SUPPORTED - 1, (int __user *)optval) ||
700 put_user(sizeof(int), _optlen))
701 return -EFAULT;
702 return 0;
3ec0efde 703
515559ca
DH
704 default:
705 return -EOPNOTSUPP;
706 }
707}
708
17926a79
DH
709/*
710 * permit an RxRPC socket to be polled
711 */
712static unsigned int rxrpc_poll(struct file *file, struct socket *sock,
713 poll_table *wait)
714{
17926a79 715 struct sock *sk = sock->sk;
248f219c
DH
716 struct rxrpc_sock *rx = rxrpc_sk(sk);
717 unsigned int mask;
17926a79 718
aa395145 719 sock_poll_wait(file, sk_sleep(sk), wait);
17926a79
DH
720 mask = 0;
721
722 /* the socket is readable if there are any messages waiting on the Rx
723 * queue */
248f219c 724 if (!list_empty(&rx->recvmsg_q))
17926a79
DH
725 mask |= POLLIN | POLLRDNORM;
726
727 /* the socket is writable if there is space to add new data to the
728 * socket; there is no guarantee that any particular call in progress
729 * on the socket may have space in the Tx ACK window */
730 if (rxrpc_writable(sk))
731 mask |= POLLOUT | POLLWRNORM;
732
733 return mask;
734}
735
736/*
737 * create an RxRPC socket
738 */
3f378b68
EP
739static int rxrpc_create(struct net *net, struct socket *sock, int protocol,
740 int kern)
17926a79
DH
741{
742 struct rxrpc_sock *rx;
743 struct sock *sk;
744
745 _enter("%p,%d", sock, protocol);
746
b4f1342f 747 /* we support transport protocol UDP/UDP6 only */
d1912747
DH
748 if (protocol != PF_INET &&
749 IS_ENABLED(CONFIG_AF_RXRPC_IPV6) && protocol != PF_INET6)
17926a79
DH
750 return -EPROTONOSUPPORT;
751
752 if (sock->type != SOCK_DGRAM)
753 return -ESOCKTNOSUPPORT;
754
755 sock->ops = &rxrpc_rpc_ops;
756 sock->state = SS_UNCONNECTED;
757
11aa9c28 758 sk = sk_alloc(net, PF_RXRPC, GFP_KERNEL, &rxrpc_proto, kern);
17926a79
DH
759 if (!sk)
760 return -ENOMEM;
761
762 sock_init_data(sock, sk);
8d94aa38 763 sock_set_flag(sk, SOCK_RCU_FREE);
2341e077 764 sk->sk_state = RXRPC_UNBOUND;
17926a79 765 sk->sk_write_space = rxrpc_write_space;
0e119b41 766 sk->sk_max_ack_backlog = 0;
17926a79
DH
767 sk->sk_destruct = rxrpc_sock_destructor;
768
769 rx = rxrpc_sk(sk);
19ffa01c 770 rx->family = protocol;
17926a79
DH
771 rx->calls = RB_ROOT;
772
248f219c
DH
773 spin_lock_init(&rx->incoming_lock);
774 INIT_LIST_HEAD(&rx->sock_calls);
775 INIT_LIST_HEAD(&rx->to_be_accepted);
776 INIT_LIST_HEAD(&rx->recvmsg_q);
777 rwlock_init(&rx->recvmsg_lock);
17926a79
DH
778 rwlock_init(&rx->call_lock);
779 memset(&rx->srx, 0, sizeof(rx->srx));
780
781 _leave(" = 0 [%p]", rx);
782 return 0;
783}
784
248f219c
DH
785/*
786 * Kill all the calls on a socket and shut it down.
787 */
788static int rxrpc_shutdown(struct socket *sock, int flags)
789{
790 struct sock *sk = sock->sk;
791 struct rxrpc_sock *rx = rxrpc_sk(sk);
792 int ret = 0;
793
794 _enter("%p,%d", sk, flags);
795
796 if (flags != SHUT_RDWR)
797 return -EOPNOTSUPP;
798 if (sk->sk_state == RXRPC_CLOSE)
799 return -ESHUTDOWN;
800
801 lock_sock(sk);
802
803 spin_lock_bh(&sk->sk_receive_queue.lock);
804 if (sk->sk_state < RXRPC_CLOSE) {
805 sk->sk_state = RXRPC_CLOSE;
806 sk->sk_shutdown = SHUTDOWN_MASK;
807 } else {
808 ret = -ESHUTDOWN;
809 }
810 spin_unlock_bh(&sk->sk_receive_queue.lock);
811
812 rxrpc_discard_prealloc(rx);
813
814 release_sock(sk);
815 return ret;
816}
817
17926a79
DH
818/*
819 * RxRPC socket destructor
820 */
821static void rxrpc_sock_destructor(struct sock *sk)
822{
823 _enter("%p", sk);
824
825 rxrpc_purge_queue(&sk->sk_receive_queue);
826
14afee4b 827 WARN_ON(refcount_read(&sk->sk_wmem_alloc));
547b792c
IJ
828 WARN_ON(!sk_unhashed(sk));
829 WARN_ON(sk->sk_socket);
17926a79
DH
830
831 if (!sock_flag(sk, SOCK_DEAD)) {
832 printk("Attempt to release alive rxrpc socket: %p\n", sk);
833 return;
834 }
835}
836
837/*
838 * release an RxRPC socket
839 */
840static int rxrpc_release_sock(struct sock *sk)
841{
842 struct rxrpc_sock *rx = rxrpc_sk(sk);
843
41c6d650 844 _enter("%p{%d,%d}", sk, sk->sk_state, refcount_read(&sk->sk_refcnt));
17926a79
DH
845
846 /* declare the socket closed for business */
847 sock_orphan(sk);
848 sk->sk_shutdown = SHUTDOWN_MASK;
849
850 spin_lock_bh(&sk->sk_receive_queue.lock);
851 sk->sk_state = RXRPC_CLOSE;
852 spin_unlock_bh(&sk->sk_receive_queue.lock);
853
b63452c1 854 if (rx->local && rcu_access_pointer(rx->local->service) == rx) {
248f219c 855 write_lock(&rx->local->services_lock);
b63452c1 856 rcu_assign_pointer(rx->local->service, NULL);
248f219c 857 write_unlock(&rx->local->services_lock);
17926a79
DH
858 }
859
860 /* try to flush out this socket */
00e90712 861 rxrpc_discard_prealloc(rx);
17926a79 862 rxrpc_release_calls_on_socket(rx);
651350d1 863 flush_workqueue(rxrpc_workqueue);
17926a79
DH
864 rxrpc_purge_queue(&sk->sk_receive_queue);
865
5627cc8b
DH
866 rxrpc_put_local(rx->local);
867 rx->local = NULL;
17926a79
DH
868 key_put(rx->key);
869 rx->key = NULL;
870 key_put(rx->securities);
871 rx->securities = NULL;
872 sock_put(sk);
873
874 _leave(" = 0");
875 return 0;
876}
877
878/*
879 * release an RxRPC BSD socket on close() or equivalent
880 */
881static int rxrpc_release(struct socket *sock)
882{
883 struct sock *sk = sock->sk;
884
885 _enter("%p{%p}", sock, sk);
886
887 if (!sk)
888 return 0;
889
890 sock->sk = NULL;
891
892 return rxrpc_release_sock(sk);
893}
894
895/*
896 * RxRPC network protocol
897 */
898static const struct proto_ops rxrpc_rpc_ops = {
e33b3d97 899 .family = PF_RXRPC,
17926a79
DH
900 .owner = THIS_MODULE,
901 .release = rxrpc_release,
902 .bind = rxrpc_bind,
903 .connect = rxrpc_connect,
904 .socketpair = sock_no_socketpair,
905 .accept = sock_no_accept,
906 .getname = sock_no_getname,
907 .poll = rxrpc_poll,
908 .ioctl = sock_no_ioctl,
909 .listen = rxrpc_listen,
248f219c 910 .shutdown = rxrpc_shutdown,
17926a79 911 .setsockopt = rxrpc_setsockopt,
515559ca 912 .getsockopt = rxrpc_getsockopt,
17926a79
DH
913 .sendmsg = rxrpc_sendmsg,
914 .recvmsg = rxrpc_recvmsg,
915 .mmap = sock_no_mmap,
916 .sendpage = sock_no_sendpage,
917};
918
919static struct proto rxrpc_proto = {
920 .name = "RXRPC",
921 .owner = THIS_MODULE,
922 .obj_size = sizeof(struct rxrpc_sock),
0d12f8a4 923 .max_header = sizeof(struct rxrpc_wire_header),
17926a79
DH
924};
925
ec1b4cf7 926static const struct net_proto_family rxrpc_family_ops = {
17926a79
DH
927 .family = PF_RXRPC,
928 .create = rxrpc_create,
929 .owner = THIS_MODULE,
930};
931
932/*
933 * initialise and register the RxRPC protocol
934 */
935static int __init af_rxrpc_init(void)
936{
17926a79 937 int ret = -1;
44430612 938 unsigned int tmp;
17926a79 939
ce6654cf 940 BUILD_BUG_ON(sizeof(struct rxrpc_skb_priv) > FIELD_SIZEOF(struct sk_buff, cb));
17926a79 941
44430612
MW
942 get_random_bytes(&tmp, sizeof(tmp));
943 tmp &= 0x3fffffff;
944 if (tmp == 0)
945 tmp = 1;
946 idr_set_cursor(&rxrpc_client_conn_ids, tmp);
17926a79 947
651350d1 948 ret = -ENOMEM;
17926a79
DH
949 rxrpc_call_jar = kmem_cache_create(
950 "rxrpc_call_jar", sizeof(struct rxrpc_call), 0,
20c2df83 951 SLAB_HWCACHE_ALIGN, NULL);
17926a79 952 if (!rxrpc_call_jar) {
9b6d5398 953 pr_notice("Failed to allocate call jar\n");
17926a79
DH
954 goto error_call_jar;
955 }
956
e1fcc7e2 957 rxrpc_workqueue = alloc_workqueue("krxrpcd", 0, 1);
651350d1 958 if (!rxrpc_workqueue) {
9b6d5398 959 pr_notice("Failed to allocate work queue\n");
651350d1
DH
960 goto error_work_queue;
961 }
962
648af7fc
DH
963 ret = rxrpc_init_security();
964 if (ret < 0) {
9b6d5398 965 pr_crit("Cannot initialise security\n");
648af7fc
DH
966 goto error_security;
967 }
968
2baec2c3
DH
969 ret = register_pernet_subsys(&rxrpc_net_ops);
970 if (ret)
971 goto error_pernet;
972
17926a79 973 ret = proto_register(&rxrpc_proto, 1);
1c899641 974 if (ret < 0) {
9b6d5398 975 pr_crit("Cannot register protocol\n");
17926a79
DH
976 goto error_proto;
977 }
978
979 ret = sock_register(&rxrpc_family_ops);
980 if (ret < 0) {
9b6d5398 981 pr_crit("Cannot register socket family\n");
17926a79
DH
982 goto error_sock;
983 }
984
985 ret = register_key_type(&key_type_rxrpc);
986 if (ret < 0) {
9b6d5398 987 pr_crit("Cannot register client key type\n");
17926a79
DH
988 goto error_key_type;
989 }
990
991 ret = register_key_type(&key_type_rxrpc_s);
992 if (ret < 0) {
9b6d5398 993 pr_crit("Cannot register server key type\n");
17926a79
DH
994 goto error_key_type_s;
995 }
996
5873c083
DH
997 ret = rxrpc_sysctl_init();
998 if (ret < 0) {
9b6d5398 999 pr_crit("Cannot register sysctls\n");
5873c083
DH
1000 goto error_sysctls;
1001 }
1002
17926a79
DH
1003 return 0;
1004
5873c083
DH
1005error_sysctls:
1006 unregister_key_type(&key_type_rxrpc_s);
17926a79
DH
1007error_key_type_s:
1008 unregister_key_type(&key_type_rxrpc);
1009error_key_type:
1010 sock_unregister(PF_RXRPC);
1011error_sock:
1012 proto_unregister(&rxrpc_proto);
1013error_proto:
2baec2c3
DH
1014 unregister_pernet_subsys(&rxrpc_net_ops);
1015error_pernet:
648af7fc 1016 rxrpc_exit_security();
8addc044
WY
1017error_security:
1018 destroy_workqueue(rxrpc_workqueue);
651350d1 1019error_work_queue:
17926a79
DH
1020 kmem_cache_destroy(rxrpc_call_jar);
1021error_call_jar:
1022 return ret;
1023}
1024
1025/*
1026 * unregister the RxRPC protocol
1027 */
1028static void __exit af_rxrpc_exit(void)
1029{
1030 _enter("");
5873c083 1031 rxrpc_sysctl_exit();
17926a79
DH
1032 unregister_key_type(&key_type_rxrpc_s);
1033 unregister_key_type(&key_type_rxrpc);
1034 sock_unregister(PF_RXRPC);
1035 proto_unregister(&rxrpc_proto);
2baec2c3 1036 unregister_pernet_subsys(&rxrpc_net_ops);
71f3ca40
DH
1037 ASSERTCMP(atomic_read(&rxrpc_n_tx_skbs), ==, 0);
1038 ASSERTCMP(atomic_read(&rxrpc_n_rx_skbs), ==, 0);
4f95dd78 1039
2baec2c3
DH
1040 /* Make sure the local and peer records pinned by any dying connections
1041 * are released.
1042 */
1043 rcu_barrier();
1044 rxrpc_destroy_client_conn_ids();
1045
651350d1 1046 destroy_workqueue(rxrpc_workqueue);
648af7fc 1047 rxrpc_exit_security();
17926a79
DH
1048 kmem_cache_destroy(rxrpc_call_jar);
1049 _leave("");
1050}
1051
1052module_init(af_rxrpc_init);
1053module_exit(af_rxrpc_exit);