GNU Linux-libre 4.19.264-gnu1
[releases.git] / net / rxrpc / af_rxrpc.c
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
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
14 #include <linux/module.h>
15 #include <linux/kernel.h>
16 #include <linux/net.h>
17 #include <linux/slab.h>
18 #include <linux/skbuff.h>
19 #include <linux/random.h>
20 #include <linux/poll.h>
21 #include <linux/proc_fs.h>
22 #include <linux/key-type.h>
23 #include <net/net_namespace.h>
24 #include <net/sock.h>
25 #include <net/af_rxrpc.h>
26 #define CREATE_TRACE_POINTS
27 #include "ar-internal.h"
28
29 MODULE_DESCRIPTION("RxRPC network protocol");
30 MODULE_AUTHOR("Red Hat, Inc.");
31 MODULE_LICENSE("GPL");
32 MODULE_ALIAS_NETPROTO(PF_RXRPC);
33
34 unsigned int rxrpc_debug; // = RXRPC_DEBUG_KPROTO;
35 module_param_named(debug, rxrpc_debug, uint, 0644);
36 MODULE_PARM_DESC(debug, "RxRPC debugging mask");
37
38 static struct proto rxrpc_proto;
39 static const struct proto_ops rxrpc_rpc_ops;
40
41 /* current debugging ID */
42 atomic_t rxrpc_debug_id;
43 EXPORT_SYMBOL(rxrpc_debug_id);
44
45 /* count of skbs currently in use */
46 atomic_t rxrpc_n_tx_skbs, rxrpc_n_rx_skbs;
47
48 struct workqueue_struct *rxrpc_workqueue;
49
50 static void rxrpc_sock_destructor(struct sock *);
51
52 /*
53  * see if an RxRPC socket is currently writable
54  */
55 static inline int rxrpc_writable(struct sock *sk)
56 {
57         return refcount_read(&sk->sk_wmem_alloc) < (size_t) sk->sk_sndbuf;
58 }
59
60 /*
61  * wait for write bufferage to become available
62  */
63 static void rxrpc_write_space(struct sock *sk)
64 {
65         _enter("%p", sk);
66         rcu_read_lock();
67         if (rxrpc_writable(sk)) {
68                 struct socket_wq *wq = rcu_dereference(sk->sk_wq);
69
70                 if (skwq_has_sleeper(wq))
71                         wake_up_interruptible(&wq->wait);
72                 sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT);
73         }
74         rcu_read_unlock();
75 }
76
77 /*
78  * validate an RxRPC address
79  */
80 static int rxrpc_validate_address(struct rxrpc_sock *rx,
81                                   struct sockaddr_rxrpc *srx,
82                                   int len)
83 {
84         unsigned int tail;
85
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
100         if (srx->transport.family != rx->family)
101                 return -EAFNOSUPPORT;
102
103         switch (srx->transport.family) {
104         case AF_INET:
105                 if (srx->transport_len < sizeof(struct sockaddr_in))
106                         return -EINVAL;
107                 tail = offsetof(struct sockaddr_rxrpc, transport.sin.__pad);
108                 break;
109
110 #ifdef CONFIG_AF_RXRPC_IPV6
111         case AF_INET6:
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;
117 #endif
118
119         default:
120                 return -EAFNOSUPPORT;
121         }
122
123         if (tail < len)
124                 memset((void *)srx + tail, 0, len - tail);
125         _debug("INET: %pISp", &srx->transport);
126         return 0;
127 }
128
129 /*
130  * bind a local address to an RxRPC socket
131  */
132 static int rxrpc_bind(struct socket *sock, struct sockaddr *saddr, int len)
133 {
134         struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)saddr;
135         struct rxrpc_local *local;
136         struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
137         u16 service_id = srx->srx_service;
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
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;
171
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;
186
187         default:
188                 ret = -EINVAL;
189                 goto error_unlock;
190         }
191
192         release_sock(&rx->sk);
193         _leave(" = 0");
194         return 0;
195
196 service_in_use:
197         write_unlock(&local->services_lock);
198         rxrpc_unuse_local(local);
199         rxrpc_put_local(local);
200         ret = -EADDRINUSE;
201 error_unlock:
202         release_sock(&rx->sk);
203 error:
204         _leave(" = %d", ret);
205         return ret;
206 }
207
208 /*
209  * set the number of pending calls permitted on a listening socket
210  */
211 static int rxrpc_listen(struct socket *sock, int backlog)
212 {
213         struct sock *sk = sock->sk;
214         struct rxrpc_sock *rx = rxrpc_sk(sk);
215         unsigned int max, old;
216         int ret;
217
218         _enter("%p,%d", rx, backlog);
219
220         lock_sock(&rx->sk);
221
222         switch (rx->sk.sk_state) {
223         case RXRPC_UNBOUND:
224                 ret = -EADDRNOTAVAIL;
225                 break;
226         case RXRPC_SERVER_BOUND:
227         case RXRPC_SERVER_BOUND2:
228                 ASSERT(rx->local != NULL);
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;
235                 old = sk->sk_max_ack_backlog;
236                 sk->sk_max_ack_backlog = backlog;
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;
242                 break;
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                 }
251                 /* Fall through */
252         default:
253                 ret = -EBUSY;
254                 break;
255         }
256
257         release_sock(&rx->sk);
258         _leave(" = %d", ret);
259         return ret;
260 }
261
262 /**
263  * rxrpc_kernel_begin_call - Allow a kernel service to begin a call
264  * @sock: The socket on which to make the call
265  * @srx: The address of the peer to contact
266  * @key: The security context to use (defaults to socket setting)
267  * @user_call_ID: The ID to use
268  * @tx_total_len: Total length of data to transmit during the call (or -1)
269  * @gfp: The allocation constraints
270  * @notify_rx: Where to send notifications instead of socket queue
271  * @upgrade: Request service upgrade for call
272  * @debug_id: The debug ID for tracing to be assigned to the call
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  */
281 struct rxrpc_call *rxrpc_kernel_begin_call(struct socket *sock,
282                                            struct sockaddr_rxrpc *srx,
283                                            struct key *key,
284                                            unsigned long user_call_ID,
285                                            s64 tx_total_len,
286                                            gfp_t gfp,
287                                            rxrpc_notify_rx_t notify_rx,
288                                            bool upgrade,
289                                            unsigned int debug_id)
290 {
291         struct rxrpc_conn_parameters cp;
292         struct rxrpc_call_params p;
293         struct rxrpc_call *call;
294         struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
295         int ret;
296
297         _enter(",,%x,%lx", key_serial(key), user_call_ID);
298
299         ret = rxrpc_validate_address(rx, srx, sizeof(*srx));
300         if (ret < 0)
301                 return ERR_PTR(ret);
302
303         lock_sock(&rx->sk);
304
305         if (!key)
306                 key = rx->key;
307         if (key && !key->payload.data[0])
308                 key = NULL; /* a no-security key */
309
310         memset(&p, 0, sizeof(p));
311         p.user_call_ID = user_call_ID;
312         p.tx_total_len = tx_total_len;
313
314         memset(&cp, 0, sizeof(cp));
315         cp.local                = rx->local;
316         cp.key                  = key;
317         cp.security_level       = rx->min_sec_level;
318         cp.exclusive            = false;
319         cp.upgrade              = upgrade;
320         cp.service_id           = srx->srx_service;
321         call = rxrpc_new_client_call(rx, &cp, srx, &p, gfp, debug_id);
322         /* The socket has been unlocked. */
323         if (!IS_ERR(call)) {
324                 call->notify_rx = notify_rx;
325                 mutex_unlock(&call->user_mutex);
326         }
327
328         rxrpc_put_peer(cp.peer);
329         _leave(" = %p", call);
330         return call;
331 }
332 EXPORT_SYMBOL(rxrpc_kernel_begin_call);
333
334 /*
335  * Dummy function used to stop the notifier talking to recvmsg().
336  */
337 static void rxrpc_dummy_notify_rx(struct sock *sk, struct rxrpc_call *rxcall,
338                                   unsigned long call_user_ID)
339 {
340 }
341
342 /**
343  * rxrpc_kernel_end_call - Allow a kernel service to end a call it was using
344  * @sock: The socket the call is on
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  */
350 void rxrpc_kernel_end_call(struct socket *sock, struct rxrpc_call *call)
351 {
352         _enter("%d{%d}", call->debug_id, atomic_read(&call->usage));
353
354         mutex_lock(&call->user_mutex);
355         rxrpc_release_call(rxrpc_sk(sock->sk), call);
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
364         mutex_unlock(&call->user_mutex);
365         rxrpc_put_call(call, rxrpc_call_put_kernel);
366 }
367 EXPORT_SYMBOL(rxrpc_kernel_end_call);
368
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  */
382 u32 rxrpc_kernel_check_life(struct socket *sock, struct rxrpc_call *call)
383 {
384         return call->acks_latest;
385 }
386 EXPORT_SYMBOL(rxrpc_kernel_check_life);
387
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  */
400 int 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 }
410 EXPORT_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  */
424 int 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);
452         rxrpc_put_peer(cp.peer);
453         _leave(" = %d", ret);
454         return ret;
455 }
456 EXPORT_SYMBOL(rxrpc_kernel_retry_call);
457
458 /**
459  * rxrpc_kernel_new_call_notification - Get notifications of new calls
460  * @sock: The socket to intercept received messages on
461  * @notify_new_call: Function to be called when new calls appear
462  * @discard_new_call: Function to discard preallocated calls
463  *
464  * Allow a kernel service to be given notifications about new calls.
465  */
466 void rxrpc_kernel_new_call_notification(
467         struct socket *sock,
468         rxrpc_notify_new_call_t notify_new_call,
469         rxrpc_discard_new_call_t discard_new_call)
470 {
471         struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
472
473         rx->notify_new_call = notify_new_call;
474         rx->discard_new_call = discard_new_call;
475 }
476 EXPORT_SYMBOL(rxrpc_kernel_new_call_notification);
477
478 /*
479  * connect an RxRPC socket
480  * - this just targets it at a specific destination; no actual connection
481  *   negotiation takes place
482  */
483 static int rxrpc_connect(struct socket *sock, struct sockaddr *addr,
484                          int addr_len, int flags)
485 {
486         struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)addr;
487         struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
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
500         ret = -EISCONN;
501         if (test_bit(RXRPC_SOCK_CONNECTED, &rx->flags))
502                 goto error;
503
504         switch (rx->sk.sk_state) {
505         case RXRPC_UNBOUND:
506                 rx->sk.sk_state = RXRPC_CLIENT_UNBOUND;
507         case RXRPC_CLIENT_UNBOUND:
508         case RXRPC_CLIENT_BOUND:
509                 break;
510         default:
511                 ret = -EBUSY;
512                 goto error;
513         }
514
515         rx->connect_srx = *srx;
516         set_bit(RXRPC_SOCK_CONNECTED, &rx->flags);
517         ret = 0;
518
519 error:
520         release_sock(&rx->sk);
521         return ret;
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  */
533 static int rxrpc_sendmsg(struct socket *sock, struct msghdr *m, size_t len)
534 {
535         struct rxrpc_local *local;
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
552         lock_sock(&rx->sk);
553
554         switch (rx->sk.sk_state) {
555         case RXRPC_UNBOUND:
556         case RXRPC_CLIENT_UNBOUND:
557                 rx->srx.srx_family = AF_RXRPC;
558                 rx->srx.srx_service = 0;
559                 rx->srx.transport_type = SOCK_DGRAM;
560                 rx->srx.transport.family = rx->family;
561                 switch (rx->family) {
562                 case AF_INET:
563                         rx->srx.transport_len = sizeof(struct sockaddr_in);
564                         break;
565 #ifdef CONFIG_AF_RXRPC_IPV6
566                 case AF_INET6:
567                         rx->srx.transport_len = sizeof(struct sockaddr_in6);
568                         break;
569 #endif
570                 default:
571                         ret = -EAFNOSUPPORT;
572                         goto error_unlock;
573                 }
574                 local = rxrpc_lookup_local(sock_net(sock->sk), &rx->srx);
575                 if (IS_ERR(local)) {
576                         ret = PTR_ERR(local);
577                         goto error_unlock;
578                 }
579
580                 rx->local = local;
581                 rx->sk.sk_state = RXRPC_CLIENT_BOUND;
582                 /* Fall through */
583
584         case RXRPC_CLIENT_BOUND:
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);
589                 }
590                 /* Fall through */
591         case RXRPC_SERVER_BOUND:
592         case RXRPC_SERVER_LISTENING:
593                 ret = rxrpc_do_sendmsg(rx, m, len);
594                 /* The socket has been unlocked */
595                 goto out;
596         default:
597                 ret = -EINVAL;
598                 goto error_unlock;
599         }
600
601 error_unlock:
602         release_sock(&rx->sk);
603 out:
604         _leave(" = %d", ret);
605         return ret;
606 }
607
608 /*
609  * set RxRPC socket options
610  */
611 static int rxrpc_setsockopt(struct socket *sock, int level, int optname,
612                             char __user *optval, unsigned int optlen)
613 {
614         struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
615         unsigned int min_sec_level;
616         u16 service_upgrade[2];
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;
631                         if (rx->sk.sk_state != RXRPC_UNBOUND)
632                                 goto error;
633                         rx->exclusive = true;
634                         goto success;
635
636                 case RXRPC_SECURITY_KEY:
637                         ret = -EINVAL;
638                         if (rx->key)
639                                 goto error;
640                         ret = -EISCONN;
641                         if (rx->sk.sk_state != RXRPC_UNBOUND)
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;
651                         if (rx->sk.sk_state != RXRPC_UNBOUND)
652                                 goto error;
653                         ret = rxrpc_server_keyring(rx, optval, optlen);
654                         goto error;
655
656                 case RXRPC_MIN_SECURITY_LEVEL:
657                         ret = -EINVAL;
658                         if (optlen != sizeof(unsigned int))
659                                 goto error;
660                         ret = -EISCONN;
661                         if (rx->sk.sk_state != RXRPC_UNBOUND)
662                                 goto error;
663                         ret = get_user(min_sec_level,
664                                        (unsigned int __user *) optval);
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
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
695                 default:
696                         break;
697                 }
698         }
699
700 success:
701         ret = 0;
702 error:
703         release_sock(&rx->sk);
704         return ret;
705 }
706
707 /*
708  * Get socket options.
709  */
710 static int rxrpc_getsockopt(struct socket *sock, int level, int optname,
711                             char __user *optval, int __user *_optlen)
712 {
713         int optlen;
714
715         if (level != SOL_RXRPC)
716                 return -EOPNOTSUPP;
717
718         if (get_user(optlen, _optlen))
719                 return -EFAULT;
720
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;
729
730         default:
731                 return -EOPNOTSUPP;
732         }
733 }
734
735 /*
736  * permit an RxRPC socket to be polled
737  */
738 static __poll_t rxrpc_poll(struct file *file, struct socket *sock,
739                                poll_table *wait)
740 {
741         struct sock *sk = sock->sk;
742         struct rxrpc_sock *rx = rxrpc_sk(sk);
743         __poll_t mask;
744
745         sock_poll_wait(file, sock, wait);
746         mask = 0;
747
748         /* the socket is readable if there are any messages waiting on the Rx
749          * queue */
750         if (!list_empty(&rx->recvmsg_q))
751                 mask |= EPOLLIN | EPOLLRDNORM;
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))
757                 mask |= EPOLLOUT | EPOLLWRNORM;
758
759         return mask;
760 }
761
762 /*
763  * create an RxRPC socket
764  */
765 static int rxrpc_create(struct net *net, struct socket *sock, int protocol,
766                         int kern)
767 {
768         struct rxrpc_net *rxnet;
769         struct rxrpc_sock *rx;
770         struct sock *sk;
771
772         _enter("%p,%d", sock, protocol);
773
774         /* we support transport protocol UDP/UDP6 only */
775         if (protocol != PF_INET &&
776             IS_ENABLED(CONFIG_AF_RXRPC_IPV6) && protocol != PF_INET6)
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
785         sk = sk_alloc(net, PF_RXRPC, GFP_KERNEL, &rxrpc_proto, kern);
786         if (!sk)
787                 return -ENOMEM;
788
789         sock_init_data(sock, sk);
790         sock_set_flag(sk, SOCK_RCU_FREE);
791         sk->sk_state            = RXRPC_UNBOUND;
792         sk->sk_write_space      = rxrpc_write_space;
793         sk->sk_max_ack_backlog  = 0;
794         sk->sk_destruct         = rxrpc_sock_destructor;
795
796         rx = rxrpc_sk(sk);
797         rx->family = protocol;
798         rx->calls = RB_ROOT;
799
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);
805         rwlock_init(&rx->call_lock);
806         memset(&rx->srx, 0, sizeof(rx->srx));
807
808         rxnet = rxrpc_net(sock_net(&rx->sk));
809         timer_reduce(&rxnet->peer_keepalive_timer, jiffies + 1);
810
811         _leave(" = 0 [%p]", rx);
812         return 0;
813 }
814
815 /*
816  * Kill all the calls on a socket and shut it down.
817  */
818 static 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
848 /*
849  * RxRPC socket destructor
850  */
851 static void rxrpc_sock_destructor(struct sock *sk)
852 {
853         _enter("%p", sk);
854
855         rxrpc_purge_queue(&sk->sk_receive_queue);
856
857         WARN_ON(refcount_read(&sk->sk_wmem_alloc));
858         WARN_ON(!sk_unhashed(sk));
859         WARN_ON(sk->sk_socket);
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  */
870 static int rxrpc_release_sock(struct sock *sk)
871 {
872         struct rxrpc_sock *rx = rxrpc_sk(sk);
873
874         _enter("%p{%d,%d}", sk, sk->sk_state, refcount_read(&sk->sk_refcnt));
875
876         /* declare the socket closed for business */
877         sock_orphan(sk);
878         sk->sk_shutdown = SHUTDOWN_MASK;
879
880         /* We want to kill off all connections from a service socket
881          * as fast as possible because we can't share these; client
882          * sockets, on the other hand, can share an endpoint.
883          */
884         switch (sk->sk_state) {
885         case RXRPC_SERVER_BOUND:
886         case RXRPC_SERVER_BOUND2:
887         case RXRPC_SERVER_LISTENING:
888         case RXRPC_SERVER_LISTEN_DISABLED:
889                 rx->local->service_closed = true;
890                 break;
891         }
892
893         spin_lock_bh(&sk->sk_receive_queue.lock);
894         sk->sk_state = RXRPC_CLOSE;
895         spin_unlock_bh(&sk->sk_receive_queue.lock);
896
897         if (rx->local && rcu_access_pointer(rx->local->service) == rx) {
898                 write_lock(&rx->local->services_lock);
899                 rcu_assign_pointer(rx->local->service, NULL);
900                 write_unlock(&rx->local->services_lock);
901         }
902
903         /* try to flush out this socket */
904         rxrpc_discard_prealloc(rx);
905         rxrpc_release_calls_on_socket(rx);
906         flush_workqueue(rxrpc_workqueue);
907         rxrpc_purge_queue(&sk->sk_receive_queue);
908
909         rxrpc_unuse_local(rx->local);
910         rxrpc_put_local(rx->local);
911         rx->local = NULL;
912         key_put(rx->key);
913         rx->key = NULL;
914         key_put(rx->securities);
915         rx->securities = NULL;
916         sock_put(sk);
917
918         _leave(" = 0");
919         return 0;
920 }
921
922 /*
923  * release an RxRPC BSD socket on close() or equivalent
924  */
925 static int rxrpc_release(struct socket *sock)
926 {
927         struct sock *sk = sock->sk;
928
929         _enter("%p{%p}", sock, sk);
930
931         if (!sk)
932                 return 0;
933
934         sock->sk = NULL;
935
936         return rxrpc_release_sock(sk);
937 }
938
939 /*
940  * RxRPC network protocol
941  */
942 static const struct proto_ops rxrpc_rpc_ops = {
943         .family         = PF_RXRPC,
944         .owner          = THIS_MODULE,
945         .release        = rxrpc_release,
946         .bind           = rxrpc_bind,
947         .connect        = rxrpc_connect,
948         .socketpair     = sock_no_socketpair,
949         .accept         = sock_no_accept,
950         .getname        = sock_no_getname,
951         .poll           = rxrpc_poll,
952         .ioctl          = sock_no_ioctl,
953         .listen         = rxrpc_listen,
954         .shutdown       = rxrpc_shutdown,
955         .setsockopt     = rxrpc_setsockopt,
956         .getsockopt     = rxrpc_getsockopt,
957         .sendmsg        = rxrpc_sendmsg,
958         .recvmsg        = rxrpc_recvmsg,
959         .mmap           = sock_no_mmap,
960         .sendpage       = sock_no_sendpage,
961 };
962
963 static struct proto rxrpc_proto = {
964         .name           = "RXRPC",
965         .owner          = THIS_MODULE,
966         .obj_size       = sizeof(struct rxrpc_sock),
967         .max_header     = sizeof(struct rxrpc_wire_header),
968 };
969
970 static const struct net_proto_family rxrpc_family_ops = {
971         .family = PF_RXRPC,
972         .create = rxrpc_create,
973         .owner  = THIS_MODULE,
974 };
975
976 /*
977  * initialise and register the RxRPC protocol
978  */
979 static int __init af_rxrpc_init(void)
980 {
981         int ret = -1;
982         unsigned int tmp;
983
984         BUILD_BUG_ON(sizeof(struct rxrpc_skb_priv) > FIELD_SIZEOF(struct sk_buff, cb));
985
986         get_random_bytes(&tmp, sizeof(tmp));
987         tmp &= 0x3fffffff;
988         if (tmp == 0)
989                 tmp = 1;
990         idr_set_cursor(&rxrpc_client_conn_ids, tmp);
991
992         ret = -ENOMEM;
993         rxrpc_call_jar = kmem_cache_create(
994                 "rxrpc_call_jar", sizeof(struct rxrpc_call), 0,
995                 SLAB_HWCACHE_ALIGN, NULL);
996         if (!rxrpc_call_jar) {
997                 pr_notice("Failed to allocate call jar\n");
998                 goto error_call_jar;
999         }
1000
1001         rxrpc_workqueue = alloc_workqueue("krxrpcd", 0, 1);
1002         if (!rxrpc_workqueue) {
1003                 pr_notice("Failed to allocate work queue\n");
1004                 goto error_work_queue;
1005         }
1006
1007         ret = rxrpc_init_security();
1008         if (ret < 0) {
1009                 pr_crit("Cannot initialise security\n");
1010                 goto error_security;
1011         }
1012
1013         ret = register_pernet_device(&rxrpc_net_ops);
1014         if (ret)
1015                 goto error_pernet;
1016
1017         ret = proto_register(&rxrpc_proto, 1);
1018         if (ret < 0) {
1019                 pr_crit("Cannot register protocol\n");
1020                 goto error_proto;
1021         }
1022
1023         ret = sock_register(&rxrpc_family_ops);
1024         if (ret < 0) {
1025                 pr_crit("Cannot register socket family\n");
1026                 goto error_sock;
1027         }
1028
1029         ret = register_key_type(&key_type_rxrpc);
1030         if (ret < 0) {
1031                 pr_crit("Cannot register client key type\n");
1032                 goto error_key_type;
1033         }
1034
1035         ret = register_key_type(&key_type_rxrpc_s);
1036         if (ret < 0) {
1037                 pr_crit("Cannot register server key type\n");
1038                 goto error_key_type_s;
1039         }
1040
1041         ret = rxrpc_sysctl_init();
1042         if (ret < 0) {
1043                 pr_crit("Cannot register sysctls\n");
1044                 goto error_sysctls;
1045         }
1046
1047         return 0;
1048
1049 error_sysctls:
1050         unregister_key_type(&key_type_rxrpc_s);
1051 error_key_type_s:
1052         unregister_key_type(&key_type_rxrpc);
1053 error_key_type:
1054         sock_unregister(PF_RXRPC);
1055 error_sock:
1056         proto_unregister(&rxrpc_proto);
1057 error_proto:
1058         unregister_pernet_device(&rxrpc_net_ops);
1059 error_pernet:
1060         rxrpc_exit_security();
1061 error_security:
1062         destroy_workqueue(rxrpc_workqueue);
1063 error_work_queue:
1064         kmem_cache_destroy(rxrpc_call_jar);
1065 error_call_jar:
1066         return ret;
1067 }
1068
1069 /*
1070  * unregister the RxRPC protocol
1071  */
1072 static void __exit af_rxrpc_exit(void)
1073 {
1074         _enter("");
1075         rxrpc_sysctl_exit();
1076         unregister_key_type(&key_type_rxrpc_s);
1077         unregister_key_type(&key_type_rxrpc);
1078         sock_unregister(PF_RXRPC);
1079         proto_unregister(&rxrpc_proto);
1080         unregister_pernet_device(&rxrpc_net_ops);
1081         ASSERTCMP(atomic_read(&rxrpc_n_tx_skbs), ==, 0);
1082         ASSERTCMP(atomic_read(&rxrpc_n_rx_skbs), ==, 0);
1083
1084         /* Make sure the local and peer records pinned by any dying connections
1085          * are released.
1086          */
1087         rcu_barrier();
1088         rxrpc_destroy_client_conn_ids();
1089
1090         destroy_workqueue(rxrpc_workqueue);
1091         rxrpc_exit_security();
1092         kmem_cache_destroy(rxrpc_call_jar);
1093         _leave("");
1094 }
1095
1096 module_init(af_rxrpc_init);
1097 module_exit(af_rxrpc_exit);