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