1 /* AF_RXRPC implementation
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
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.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
25 #include <net/af_rxrpc.h>
26 #define CREATE_TRACE_POINTS
27 #include "ar-internal.h"
29 MODULE_DESCRIPTION("RxRPC network protocol");
30 MODULE_AUTHOR("Red Hat, Inc.");
31 MODULE_LICENSE("GPL");
32 MODULE_ALIAS_NETPROTO(PF_RXRPC);
34 unsigned int rxrpc_debug; // = RXRPC_DEBUG_KPROTO;
35 module_param_named(debug, rxrpc_debug, uint, S_IWUSR | S_IRUGO);
36 MODULE_PARM_DESC(debug, "RxRPC debugging mask");
38 static struct proto rxrpc_proto;
39 static const struct proto_ops rxrpc_rpc_ops;
41 /* current debugging ID */
42 atomic_t rxrpc_debug_id;
44 /* count of skbs currently in use */
45 atomic_t rxrpc_n_tx_skbs, rxrpc_n_rx_skbs;
47 struct workqueue_struct *rxrpc_workqueue;
49 static void rxrpc_sock_destructor(struct sock *);
52 * see if an RxRPC socket is currently writable
54 static inline int rxrpc_writable(struct sock *sk)
56 return refcount_read(&sk->sk_wmem_alloc) < (size_t) sk->sk_sndbuf;
60 * wait for write bufferage to become available
62 static void rxrpc_write_space(struct sock *sk)
66 if (rxrpc_writable(sk)) {
67 struct socket_wq *wq = rcu_dereference(sk->sk_wq);
69 if (skwq_has_sleeper(wq))
70 wake_up_interruptible(&wq->wait);
71 sk_wake_async(sk, SOCK_WAKE_SPACE, POLL_OUT);
77 * validate an RxRPC address
79 static int rxrpc_validate_address(struct rxrpc_sock *rx,
80 struct sockaddr_rxrpc *srx,
85 if (len < sizeof(struct sockaddr_rxrpc))
88 if (srx->srx_family != AF_RXRPC)
91 if (srx->transport_type != SOCK_DGRAM)
92 return -ESOCKTNOSUPPORT;
94 len -= offsetof(struct sockaddr_rxrpc, transport);
95 if (srx->transport_len < sizeof(sa_family_t) ||
96 srx->transport_len > len)
99 if (srx->transport.family != rx->family)
100 return -EAFNOSUPPORT;
102 switch (srx->transport.family) {
104 if (srx->transport_len < sizeof(struct sockaddr_in))
106 tail = offsetof(struct sockaddr_rxrpc, transport.sin.__pad);
109 #ifdef CONFIG_AF_RXRPC_IPV6
111 if (srx->transport_len < sizeof(struct sockaddr_in6))
113 tail = offsetof(struct sockaddr_rxrpc, transport) +
114 sizeof(struct sockaddr_in6);
119 return -EAFNOSUPPORT;
123 memset((void *)srx + tail, 0, len - tail);
124 _debug("INET: %pISp", &srx->transport);
129 * bind a local address to an RxRPC socket
131 static int rxrpc_bind(struct socket *sock, struct sockaddr *saddr, int len)
133 struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)saddr;
134 struct rxrpc_local *local;
135 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
136 u16 service_id = srx->srx_service;
139 _enter("%p,%p,%d", rx, saddr, len);
141 ret = rxrpc_validate_address(rx, srx, len);
147 switch (rx->sk.sk_state) {
150 local = rxrpc_lookup_local(sock_net(&rx->sk), &rx->srx);
152 ret = PTR_ERR(local);
157 write_lock(&local->services_lock);
158 if (rcu_access_pointer(local->service))
161 rcu_assign_pointer(local->service, rx);
162 write_unlock(&local->services_lock);
164 rx->sk.sk_state = RXRPC_SERVER_BOUND;
167 rx->sk.sk_state = RXRPC_CLIENT_BOUND;
171 case RXRPC_SERVER_BOUND:
176 if (service_id == rx->srx.srx_service)
179 srx->srx_service = rx->srx.srx_service;
180 if (memcmp(srx, &rx->srx, sizeof(*srx)) != 0)
182 rx->second_service = service_id;
183 rx->sk.sk_state = RXRPC_SERVER_BOUND2;
191 release_sock(&rx->sk);
196 write_unlock(&local->services_lock);
197 rxrpc_put_local(local);
200 release_sock(&rx->sk);
202 _leave(" = %d", ret);
207 * set the number of pending calls permitted on a listening socket
209 static int rxrpc_listen(struct socket *sock, int backlog)
211 struct sock *sk = sock->sk;
212 struct rxrpc_sock *rx = rxrpc_sk(sk);
213 unsigned int max, old;
216 _enter("%p,%d", rx, backlog);
220 switch (rx->sk.sk_state) {
222 ret = -EADDRNOTAVAIL;
224 case RXRPC_SERVER_BOUND:
225 case RXRPC_SERVER_BOUND2:
226 ASSERT(rx->local != NULL);
227 max = READ_ONCE(rxrpc_max_backlog);
229 if (backlog == INT_MAX)
231 else if (backlog < 0 || backlog > max)
233 old = sk->sk_max_ack_backlog;
234 sk->sk_max_ack_backlog = backlog;
235 ret = rxrpc_service_prealloc(rx, GFP_KERNEL);
237 rx->sk.sk_state = RXRPC_SERVER_LISTENING;
239 sk->sk_max_ack_backlog = old;
241 case RXRPC_SERVER_LISTENING:
243 rx->sk.sk_state = RXRPC_SERVER_LISTEN_DISABLED;
244 sk->sk_max_ack_backlog = 0;
245 rxrpc_discard_prealloc(rx);
255 release_sock(&rx->sk);
256 _leave(" = %d", ret);
261 * rxrpc_kernel_begin_call - Allow a kernel service to begin a call
262 * @sock: The socket on which to make the call
263 * @srx: The address of the peer to contact
264 * @key: The security context to use (defaults to socket setting)
265 * @user_call_ID: The ID to use
266 * @tx_total_len: Total length of data to transmit during the call (or -1)
267 * @gfp: The allocation constraints
268 * @notify_rx: Where to send notifications instead of socket queue
269 * @upgrade: Request service upgrade for call
271 * Allow a kernel service to begin a call on the nominated socket. This just
272 * sets up all the internal tracking structures and allocates connection and
273 * call IDs as appropriate. The call to be used is returned.
275 * The default socket destination address and security may be overridden by
276 * supplying @srx and @key.
278 struct rxrpc_call *rxrpc_kernel_begin_call(struct socket *sock,
279 struct sockaddr_rxrpc *srx,
281 unsigned long user_call_ID,
284 rxrpc_notify_rx_t notify_rx,
287 struct rxrpc_conn_parameters cp;
288 struct rxrpc_call *call;
289 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
292 _enter(",,%x,%lx", key_serial(key), user_call_ID);
294 ret = rxrpc_validate_address(rx, srx, sizeof(*srx));
302 if (key && !key->payload.data[0])
303 key = NULL; /* a no-security key */
305 memset(&cp, 0, sizeof(cp));
306 cp.local = rx->local;
308 cp.security_level = 0;
309 cp.exclusive = false;
310 cp.upgrade = upgrade;
311 cp.service_id = srx->srx_service;
312 call = rxrpc_new_client_call(rx, &cp, srx, user_call_ID, tx_total_len,
314 /* The socket has been unlocked. */
316 call->notify_rx = notify_rx;
317 mutex_unlock(&call->user_mutex);
320 _leave(" = %p", call);
323 EXPORT_SYMBOL(rxrpc_kernel_begin_call);
326 * Dummy function used to stop the notifier talking to recvmsg().
328 static void rxrpc_dummy_notify_rx(struct sock *sk, struct rxrpc_call *rxcall,
329 unsigned long call_user_ID)
334 * rxrpc_kernel_end_call - Allow a kernel service to end a call it was using
335 * @sock: The socket the call is on
336 * @call: The call to end
338 * Allow a kernel service to end a call it was using. The call must be
339 * complete before this is called (the call should be aborted if necessary).
341 void rxrpc_kernel_end_call(struct socket *sock, struct rxrpc_call *call)
343 _enter("%d{%d}", call->debug_id, atomic_read(&call->usage));
345 mutex_lock(&call->user_mutex);
346 rxrpc_release_call(rxrpc_sk(sock->sk), call);
348 /* Make sure we're not going to call back into a kernel service */
349 if (call->notify_rx) {
350 spin_lock_bh(&call->notify_lock);
351 call->notify_rx = rxrpc_dummy_notify_rx;
352 spin_unlock_bh(&call->notify_lock);
355 mutex_unlock(&call->user_mutex);
356 rxrpc_put_call(call, rxrpc_call_put_kernel);
358 EXPORT_SYMBOL(rxrpc_kernel_end_call);
361 * rxrpc_kernel_check_life - Check to see whether a call is still alive
362 * @sock: The socket the call is on
363 * @call: The call to check
365 * Allow a kernel service to find out whether a call is still alive - ie. we're
366 * getting ACKs from the server. Returns a number representing the life state
367 * which can be compared to that returned by a previous call.
369 * If this is a client call, ping ACKs will be sent to the server to find out
370 * whether it's still responsive and whether the call is still alive on the
373 u32 rxrpc_kernel_check_life(struct socket *sock, struct rxrpc_call *call)
375 return call->acks_latest;
377 EXPORT_SYMBOL(rxrpc_kernel_check_life);
380 * rxrpc_kernel_check_call - Check a call's state
381 * @sock: The socket the call is on
382 * @call: The call to check
383 * @_compl: Where to store the completion state
384 * @_abort_code: Where to store any abort code
386 * Allow a kernel service to query the state of a call and find out the manner
387 * of its termination if it has completed. Returns -EINPROGRESS if the call is
388 * still going, 0 if the call finished successfully, -ECONNABORTED if the call
389 * was aborted and an appropriate error if the call failed in some other way.
391 int rxrpc_kernel_check_call(struct socket *sock, struct rxrpc_call *call,
392 enum rxrpc_call_completion *_compl, u32 *_abort_code)
394 if (call->state != RXRPC_CALL_COMPLETE)
397 *_compl = call->completion;
398 *_abort_code = call->abort_code;
401 EXPORT_SYMBOL(rxrpc_kernel_check_call);
404 * rxrpc_kernel_retry_call - Allow a kernel service to retry a call
405 * @sock: The socket the call is on
406 * @call: The call to retry
407 * @srx: The address of the peer to contact
408 * @key: The security context to use (defaults to socket setting)
410 * Allow a kernel service to try resending a client call that failed due to a
411 * network error to a new address. The Tx queue is maintained intact, thereby
412 * relieving the need to re-encrypt any request data that has already been
415 int rxrpc_kernel_retry_call(struct socket *sock, struct rxrpc_call *call,
416 struct sockaddr_rxrpc *srx, struct key *key)
418 struct rxrpc_conn_parameters cp;
419 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
422 _enter("%d{%d}", call->debug_id, atomic_read(&call->usage));
426 if (key && !key->payload.data[0])
427 key = NULL; /* a no-security key */
429 memset(&cp, 0, sizeof(cp));
430 cp.local = rx->local;
432 cp.security_level = 0;
433 cp.exclusive = false;
434 cp.service_id = srx->srx_service;
436 mutex_lock(&call->user_mutex);
438 ret = rxrpc_prepare_call_for_retry(rx, call);
440 ret = rxrpc_retry_client_call(rx, call, &cp, srx, GFP_KERNEL);
442 mutex_unlock(&call->user_mutex);
443 _leave(" = %d", ret);
446 EXPORT_SYMBOL(rxrpc_kernel_retry_call);
449 * rxrpc_kernel_new_call_notification - Get notifications of new calls
450 * @sock: The socket to intercept received messages on
451 * @notify_new_call: Function to be called when new calls appear
452 * @discard_new_call: Function to discard preallocated calls
454 * Allow a kernel service to be given notifications about new calls.
456 void rxrpc_kernel_new_call_notification(
458 rxrpc_notify_new_call_t notify_new_call,
459 rxrpc_discard_new_call_t discard_new_call)
461 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
463 rx->notify_new_call = notify_new_call;
464 rx->discard_new_call = discard_new_call;
466 EXPORT_SYMBOL(rxrpc_kernel_new_call_notification);
469 * connect an RxRPC socket
470 * - this just targets it at a specific destination; no actual connection
471 * negotiation takes place
473 static int rxrpc_connect(struct socket *sock, struct sockaddr *addr,
474 int addr_len, int flags)
476 struct sockaddr_rxrpc *srx = (struct sockaddr_rxrpc *)addr;
477 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
480 _enter("%p,%p,%d,%d", rx, addr, addr_len, flags);
482 ret = rxrpc_validate_address(rx, srx, addr_len);
484 _leave(" = %d [bad addr]", ret);
491 if (test_bit(RXRPC_SOCK_CONNECTED, &rx->flags))
494 switch (rx->sk.sk_state) {
496 rx->sk.sk_state = RXRPC_CLIENT_UNBOUND;
497 case RXRPC_CLIENT_UNBOUND:
498 case RXRPC_CLIENT_BOUND:
505 rx->connect_srx = *srx;
506 set_bit(RXRPC_SOCK_CONNECTED, &rx->flags);
510 release_sock(&rx->sk);
515 * send a message through an RxRPC socket
516 * - in a client this does a number of things:
517 * - finds/sets up a connection for the security specified (if any)
518 * - initiates a call (ID in control data)
519 * - ends the request phase of a call (if MSG_MORE is not set)
520 * - sends a call data packet
521 * - may send an abort (abort code in control data)
523 static int rxrpc_sendmsg(struct socket *sock, struct msghdr *m, size_t len)
525 struct rxrpc_local *local;
526 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
529 _enter(",{%d},,%zu", rx->sk.sk_state, len);
531 if (m->msg_flags & MSG_OOB)
535 ret = rxrpc_validate_address(rx, m->msg_name, m->msg_namelen);
537 _leave(" = %d [bad addr]", ret);
544 switch (rx->sk.sk_state) {
546 rx->srx.srx_family = AF_RXRPC;
547 rx->srx.srx_service = 0;
548 rx->srx.transport_type = SOCK_DGRAM;
549 rx->srx.transport.family = rx->family;
550 switch (rx->family) {
552 rx->srx.transport_len = sizeof(struct sockaddr_in);
554 #ifdef CONFIG_AF_RXRPC_IPV6
556 rx->srx.transport_len = sizeof(struct sockaddr_in6);
563 local = rxrpc_lookup_local(sock_net(sock->sk), &rx->srx);
565 ret = PTR_ERR(local);
570 rx->sk.sk_state = RXRPC_CLIENT_UNBOUND;
573 case RXRPC_CLIENT_UNBOUND:
574 case RXRPC_CLIENT_BOUND:
576 test_bit(RXRPC_SOCK_CONNECTED, &rx->flags)) {
577 m->msg_name = &rx->connect_srx;
578 m->msg_namelen = sizeof(rx->connect_srx);
581 case RXRPC_SERVER_BOUND:
582 case RXRPC_SERVER_LISTENING:
583 ret = rxrpc_do_sendmsg(rx, m, len);
584 /* The socket has been unlocked */
592 release_sock(&rx->sk);
594 _leave(" = %d", ret);
599 * set RxRPC socket options
601 static int rxrpc_setsockopt(struct socket *sock, int level, int optname,
602 char __user *optval, unsigned int optlen)
604 struct rxrpc_sock *rx = rxrpc_sk(sock->sk);
605 unsigned int min_sec_level;
606 u16 service_upgrade[2];
609 _enter(",%d,%d,,%d", level, optname, optlen);
614 if (level == SOL_RXRPC) {
616 case RXRPC_EXCLUSIVE_CONNECTION:
621 if (rx->sk.sk_state != RXRPC_UNBOUND)
623 rx->exclusive = true;
626 case RXRPC_SECURITY_KEY:
631 if (rx->sk.sk_state != RXRPC_UNBOUND)
633 ret = rxrpc_request_key(rx, optval, optlen);
636 case RXRPC_SECURITY_KEYRING:
641 if (rx->sk.sk_state != RXRPC_UNBOUND)
643 ret = rxrpc_server_keyring(rx, optval, optlen);
646 case RXRPC_MIN_SECURITY_LEVEL:
648 if (optlen != sizeof(unsigned int))
651 if (rx->sk.sk_state != RXRPC_UNBOUND)
653 ret = get_user(min_sec_level,
654 (unsigned int __user *) optval);
658 if (min_sec_level > RXRPC_SECURITY_MAX)
660 rx->min_sec_level = min_sec_level;
663 case RXRPC_UPGRADEABLE_SERVICE:
665 if (optlen != sizeof(service_upgrade) ||
666 rx->service_upgrade.from != 0)
669 if (rx->sk.sk_state != RXRPC_SERVER_BOUND2)
672 if (copy_from_user(service_upgrade, optval,
673 sizeof(service_upgrade)) != 0)
676 if ((service_upgrade[0] != rx->srx.srx_service ||
677 service_upgrade[1] != rx->second_service) &&
678 (service_upgrade[0] != rx->second_service ||
679 service_upgrade[1] != rx->srx.srx_service))
681 rx->service_upgrade.from = service_upgrade[0];
682 rx->service_upgrade.to = service_upgrade[1];
693 release_sock(&rx->sk);
698 * Get socket options.
700 static int rxrpc_getsockopt(struct socket *sock, int level, int optname,
701 char __user *optval, int __user *_optlen)
705 if (level != SOL_RXRPC)
708 if (get_user(optlen, _optlen))
712 case RXRPC_SUPPORTED_CMSG:
713 if (optlen < sizeof(int))
715 if (put_user(RXRPC__SUPPORTED - 1, (int __user *)optval) ||
716 put_user(sizeof(int), _optlen))
726 * permit an RxRPC socket to be polled
728 static unsigned int rxrpc_poll(struct file *file, struct socket *sock,
731 struct sock *sk = sock->sk;
732 struct rxrpc_sock *rx = rxrpc_sk(sk);
735 sock_poll_wait(file, sk_sleep(sk), wait);
738 /* the socket is readable if there are any messages waiting on the Rx
740 if (!list_empty(&rx->recvmsg_q))
741 mask |= POLLIN | POLLRDNORM;
743 /* the socket is writable if there is space to add new data to the
744 * socket; there is no guarantee that any particular call in progress
745 * on the socket may have space in the Tx ACK window */
746 if (rxrpc_writable(sk))
747 mask |= POLLOUT | POLLWRNORM;
753 * create an RxRPC socket
755 static int rxrpc_create(struct net *net, struct socket *sock, int protocol,
758 struct rxrpc_sock *rx;
761 _enter("%p,%d", sock, protocol);
763 /* we support transport protocol UDP/UDP6 only */
764 if (protocol != PF_INET &&
765 IS_ENABLED(CONFIG_AF_RXRPC_IPV6) && protocol != PF_INET6)
766 return -EPROTONOSUPPORT;
768 if (sock->type != SOCK_DGRAM)
769 return -ESOCKTNOSUPPORT;
771 sock->ops = &rxrpc_rpc_ops;
772 sock->state = SS_UNCONNECTED;
774 sk = sk_alloc(net, PF_RXRPC, GFP_KERNEL, &rxrpc_proto, kern);
778 sock_init_data(sock, sk);
779 sock_set_flag(sk, SOCK_RCU_FREE);
780 sk->sk_state = RXRPC_UNBOUND;
781 sk->sk_write_space = rxrpc_write_space;
782 sk->sk_max_ack_backlog = 0;
783 sk->sk_destruct = rxrpc_sock_destructor;
786 rx->family = protocol;
789 spin_lock_init(&rx->incoming_lock);
790 INIT_LIST_HEAD(&rx->sock_calls);
791 INIT_LIST_HEAD(&rx->to_be_accepted);
792 INIT_LIST_HEAD(&rx->recvmsg_q);
793 rwlock_init(&rx->recvmsg_lock);
794 rwlock_init(&rx->call_lock);
795 memset(&rx->srx, 0, sizeof(rx->srx));
797 _leave(" = 0 [%p]", rx);
802 * Kill all the calls on a socket and shut it down.
804 static int rxrpc_shutdown(struct socket *sock, int flags)
806 struct sock *sk = sock->sk;
807 struct rxrpc_sock *rx = rxrpc_sk(sk);
810 _enter("%p,%d", sk, flags);
812 if (flags != SHUT_RDWR)
814 if (sk->sk_state == RXRPC_CLOSE)
819 spin_lock_bh(&sk->sk_receive_queue.lock);
820 if (sk->sk_state < RXRPC_CLOSE) {
821 sk->sk_state = RXRPC_CLOSE;
822 sk->sk_shutdown = SHUTDOWN_MASK;
826 spin_unlock_bh(&sk->sk_receive_queue.lock);
828 rxrpc_discard_prealloc(rx);
835 * RxRPC socket destructor
837 static void rxrpc_sock_destructor(struct sock *sk)
841 rxrpc_purge_queue(&sk->sk_receive_queue);
843 WARN_ON(refcount_read(&sk->sk_wmem_alloc));
844 WARN_ON(!sk_unhashed(sk));
845 WARN_ON(sk->sk_socket);
847 if (!sock_flag(sk, SOCK_DEAD)) {
848 printk("Attempt to release alive rxrpc socket: %p\n", sk);
854 * release an RxRPC socket
856 static int rxrpc_release_sock(struct sock *sk)
858 struct rxrpc_sock *rx = rxrpc_sk(sk);
860 _enter("%p{%d,%d}", sk, sk->sk_state, refcount_read(&sk->sk_refcnt));
862 /* declare the socket closed for business */
864 sk->sk_shutdown = SHUTDOWN_MASK;
866 spin_lock_bh(&sk->sk_receive_queue.lock);
867 sk->sk_state = RXRPC_CLOSE;
868 spin_unlock_bh(&sk->sk_receive_queue.lock);
870 if (rx->local && rcu_access_pointer(rx->local->service) == rx) {
871 write_lock(&rx->local->services_lock);
872 rcu_assign_pointer(rx->local->service, NULL);
873 write_unlock(&rx->local->services_lock);
876 /* try to flush out this socket */
877 rxrpc_discard_prealloc(rx);
878 rxrpc_release_calls_on_socket(rx);
879 flush_workqueue(rxrpc_workqueue);
880 rxrpc_purge_queue(&sk->sk_receive_queue);
882 rxrpc_put_local(rx->local);
886 key_put(rx->securities);
887 rx->securities = NULL;
895 * release an RxRPC BSD socket on close() or equivalent
897 static int rxrpc_release(struct socket *sock)
899 struct sock *sk = sock->sk;
901 _enter("%p{%p}", sock, sk);
908 return rxrpc_release_sock(sk);
912 * RxRPC network protocol
914 static const struct proto_ops rxrpc_rpc_ops = {
916 .owner = THIS_MODULE,
917 .release = rxrpc_release,
919 .connect = rxrpc_connect,
920 .socketpair = sock_no_socketpair,
921 .accept = sock_no_accept,
922 .getname = sock_no_getname,
924 .ioctl = sock_no_ioctl,
925 .listen = rxrpc_listen,
926 .shutdown = rxrpc_shutdown,
927 .setsockopt = rxrpc_setsockopt,
928 .getsockopt = rxrpc_getsockopt,
929 .sendmsg = rxrpc_sendmsg,
930 .recvmsg = rxrpc_recvmsg,
931 .mmap = sock_no_mmap,
932 .sendpage = sock_no_sendpage,
935 static struct proto rxrpc_proto = {
937 .owner = THIS_MODULE,
938 .obj_size = sizeof(struct rxrpc_sock),
939 .max_header = sizeof(struct rxrpc_wire_header),
942 static const struct net_proto_family rxrpc_family_ops = {
944 .create = rxrpc_create,
945 .owner = THIS_MODULE,
949 * initialise and register the RxRPC protocol
951 static int __init af_rxrpc_init(void)
956 BUILD_BUG_ON(sizeof(struct rxrpc_skb_priv) > FIELD_SIZEOF(struct sk_buff, cb));
958 get_random_bytes(&tmp, sizeof(tmp));
962 idr_set_cursor(&rxrpc_client_conn_ids, tmp);
965 rxrpc_call_jar = kmem_cache_create(
966 "rxrpc_call_jar", sizeof(struct rxrpc_call), 0,
967 SLAB_HWCACHE_ALIGN, NULL);
968 if (!rxrpc_call_jar) {
969 pr_notice("Failed to allocate call jar\n");
973 rxrpc_workqueue = alloc_workqueue("krxrpcd", 0, 1);
974 if (!rxrpc_workqueue) {
975 pr_notice("Failed to allocate work queue\n");
976 goto error_work_queue;
979 ret = rxrpc_init_security();
981 pr_crit("Cannot initialise security\n");
985 ret = register_pernet_subsys(&rxrpc_net_ops);
989 ret = proto_register(&rxrpc_proto, 1);
991 pr_crit("Cannot register protocol\n");
995 ret = sock_register(&rxrpc_family_ops);
997 pr_crit("Cannot register socket family\n");
1001 ret = register_key_type(&key_type_rxrpc);
1003 pr_crit("Cannot register client key type\n");
1004 goto error_key_type;
1007 ret = register_key_type(&key_type_rxrpc_s);
1009 pr_crit("Cannot register server key type\n");
1010 goto error_key_type_s;
1013 ret = rxrpc_sysctl_init();
1015 pr_crit("Cannot register sysctls\n");
1022 unregister_key_type(&key_type_rxrpc_s);
1024 unregister_key_type(&key_type_rxrpc);
1026 sock_unregister(PF_RXRPC);
1028 proto_unregister(&rxrpc_proto);
1030 unregister_pernet_subsys(&rxrpc_net_ops);
1032 rxrpc_exit_security();
1034 destroy_workqueue(rxrpc_workqueue);
1036 kmem_cache_destroy(rxrpc_call_jar);
1042 * unregister the RxRPC protocol
1044 static void __exit af_rxrpc_exit(void)
1047 rxrpc_sysctl_exit();
1048 unregister_key_type(&key_type_rxrpc_s);
1049 unregister_key_type(&key_type_rxrpc);
1050 sock_unregister(PF_RXRPC);
1051 proto_unregister(&rxrpc_proto);
1052 unregister_pernet_subsys(&rxrpc_net_ops);
1053 ASSERTCMP(atomic_read(&rxrpc_n_tx_skbs), ==, 0);
1054 ASSERTCMP(atomic_read(&rxrpc_n_rx_skbs), ==, 0);
1056 /* Make sure the local and peer records pinned by any dying connections
1060 rxrpc_destroy_client_conn_ids();
1062 destroy_workqueue(rxrpc_workqueue);
1063 rxrpc_exit_security();
1064 kmem_cache_destroy(rxrpc_call_jar);
1068 module_init(af_rxrpc_init);
1069 module_exit(af_rxrpc_exit);