blob: d16ac088f6d8a9f5645b4f25d2a421863b2f110c [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);
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040053 return 0;
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040054
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040055err_unixgid:
56 ip_map_cache_destroy(net);
Pavel Emelyanov90d51b02010-09-27 14:02:29 +040057err_ipmap:
58 rpc_proc_exit(net);
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040059err_proc:
60 return err;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040061}
62
63static __net_exit void sunrpc_exit_net(struct net *net)
64{
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040065 unix_gid_cache_destroy(net);
Pavel Emelyanov90d51b02010-09-27 14:02:29 +040066 ip_map_cache_destroy(net);
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040067 rpc_proc_exit(net);
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040068}
69
70static struct pernet_operations sunrpc_net_ops = {
71 .init = sunrpc_init_net,
72 .exit = sunrpc_exit_net,
73 .id = &sunrpc_net_id,
74 .size = sizeof(struct sunrpc_net),
75};
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077static int __init
78init_sunrpc(void)
79{
80 int err = register_rpc_pipefs();
81 if (err)
82 goto out;
Akinobu Mita5bd5f582007-05-09 02:34:51 -070083 err = rpc_init_mempool();
Trond Myklebust5d8d9a42010-07-31 14:29:07 -040084 if (err)
85 goto out2;
86 err = rpcauth_init_module();
87 if (err)
88 goto out3;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040089
90 cache_initialize();
91
92 err = register_pernet_subsys(&sunrpc_net_ops);
93 if (err)
94 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#ifdef RPC_DEBUG
96 rpc_register_sysctl();
97#endif
Tom Tucker360d87382007-12-30 21:07:17 -060098 svc_init_xprt_sock(); /* svc sock transport */
99 init_socket_xprt(); /* clnt sock transport */
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400100 return 0;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +0400101
102out4:
103 rpcauth_remove_module();
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400104out3:
105 rpc_destroy_mempool();
106out2:
107 unregister_rpc_pipefs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108out:
109 return err;
110}
111
112static void __exit
113cleanup_sunrpc(void)
114{
Trond Myklebustf5c21872007-06-25 17:11:20 -0400115 rpcauth_remove_module();
Chuck Lever282b32e2006-12-05 16:35:51 -0500116 cleanup_socket_xprt();
Tom Tucker360d87382007-12-30 21:07:17 -0600117 svc_cleanup_xprt_sock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118 unregister_rpc_pipefs();
119 rpc_destroy_mempool();
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +0400120 unregister_pernet_subsys(&sunrpc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#ifdef RPC_DEBUG
122 rpc_unregister_sysctl();
123#endif
Jesper Dangaard Brouer75de8742009-06-26 10:45:58 +0000124 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125}
126MODULE_LICENSE("GPL");
Trond Myklebust405d8f82009-08-21 08:17:56 -0400127fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128module_exit(cleanup_sunrpc);