blob: 21d106e2ca06fb7f4d6a3f12ae3640f8d6956966 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/net/sunrpc/sunrpc_syms.c
3 *
4 * Symbols exported by the sunrpc module.
5 *
6 * Copyright (C) 1997 Olaf Kirch <okir@monad.swb.de>
7 */
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/module.h>
10
11#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/uio.h>
13#include <linux/unistd.h>
14#include <linux/init.h>
15
16#include <linux/sunrpc/sched.h>
17#include <linux/sunrpc/clnt.h>
18#include <linux/sunrpc/svc.h>
19#include <linux/sunrpc/svcsock.h>
20#include <linux/sunrpc/auth.h>
21#include <linux/workqueue.h>
22#include <linux/sunrpc/rpc_pipe_fs.h>
\"Talpey, Thomas\49c36fc2007-09-10 13:47:31 -040023#include <linux/sunrpc/xprtsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040025#include "netns.h"
26
27int sunrpc_net_id;
Stanislav Kinsburskya1db4102012-01-19 21:42:37 +040028EXPORT_SYMBOL_GPL(sunrpc_net_id);
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040029
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040030extern int unix_gid_cache_create(struct net *net);
31extern int unix_gid_cache_destroy(struct net *net);
32
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040033static __net_init int sunrpc_init_net(struct net *net)
34{
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040035 int err;
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040036 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040037
38 err = rpc_proc_init(net);
39 if (err)
40 goto err_proc;
41
Pavel Emelyanov90d51b02010-09-27 14:02:29 +040042 err = ip_map_cache_create(net);
43 if (err)
44 goto err_ipmap;
45
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040046 err = unix_gid_cache_create(net);
47 if (err)
48 goto err_unixgid;
49
Stanislav Kinsburskyc21a5882011-12-26 15:39:39 +030050 rpc_pipefs_init_net(net);
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040051 INIT_LIST_HEAD(&sn->all_clients);
52 spin_lock_init(&sn->rpc_client_lock);
Stanislav Kinsbursky1d96e802012-02-16 17:42:12 +040053 spin_lock_init(&sn->rpcb_clnt_lock);
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040054 return 0;
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040055
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040056err_unixgid:
57 ip_map_cache_destroy(net);
Pavel Emelyanov90d51b02010-09-27 14:02:29 +040058err_ipmap:
59 rpc_proc_exit(net);
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040060err_proc:
61 return err;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040062}
63
64static __net_exit void sunrpc_exit_net(struct net *net)
65{
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040066 unix_gid_cache_destroy(net);
Pavel Emelyanov90d51b02010-09-27 14:02:29 +040067 ip_map_cache_destroy(net);
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040068 rpc_proc_exit(net);
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040069}
70
71static struct pernet_operations sunrpc_net_ops = {
72 .init = sunrpc_init_net,
73 .exit = sunrpc_exit_net,
74 .id = &sunrpc_net_id,
75 .size = sizeof(struct sunrpc_net),
76};
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078static int __init
79init_sunrpc(void)
80{
81 int err = register_rpc_pipefs();
82 if (err)
83 goto out;
Akinobu Mita5bd5f582007-05-09 02:34:51 -070084 err = rpc_init_mempool();
Trond Myklebust5d8d9a42010-07-31 14:29:07 -040085 if (err)
86 goto out2;
87 err = rpcauth_init_module();
88 if (err)
89 goto out3;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040090
91 cache_initialize();
92
93 err = register_pernet_subsys(&sunrpc_net_ops);
94 if (err)
95 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#ifdef RPC_DEBUG
97 rpc_register_sysctl();
98#endif
Tom Tucker360d87382007-12-30 21:07:17 -060099 svc_init_xprt_sock(); /* svc sock transport */
100 init_socket_xprt(); /* clnt sock transport */
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400101 return 0;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +0400102
103out4:
104 rpcauth_remove_module();
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400105out3:
106 rpc_destroy_mempool();
107out2:
108 unregister_rpc_pipefs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109out:
110 return err;
111}
112
113static void __exit
114cleanup_sunrpc(void)
115{
Trond Myklebustf5c21872007-06-25 17:11:20 -0400116 rpcauth_remove_module();
Chuck Lever282b32e2006-12-05 16:35:51 -0500117 cleanup_socket_xprt();
Tom Tucker360d87382007-12-30 21:07:17 -0600118 svc_cleanup_xprt_sock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 unregister_rpc_pipefs();
120 rpc_destroy_mempool();
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +0400121 unregister_pernet_subsys(&sunrpc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#ifdef RPC_DEBUG
123 rpc_unregister_sysctl();
124#endif
Jesper Dangaard Brouer75de8742009-06-26 10:45:58 +0000125 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126}
127MODULE_LICENSE("GPL");
Trond Myklebust405d8f82009-08-21 08:17:56 -0400128fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129module_exit(cleanup_sunrpc);