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