blob: 38a72a1b465bf83cccff09c407752b6ecc74150f [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;
28
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040029extern int unix_gid_cache_create(struct net *net);
30extern int unix_gid_cache_destroy(struct net *net);
31
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040032static __net_init int sunrpc_init_net(struct net *net)
33{
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040034 int err;
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040035 struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040036
37 err = rpc_proc_init(net);
38 if (err)
39 goto err_proc;
40
Pavel Emelyanov90d51b02010-09-27 14:02:29 +040041 err = ip_map_cache_create(net);
42 if (err)
43 goto err_ipmap;
44
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040045 err = unix_gid_cache_create(net);
46 if (err)
47 goto err_unixgid;
48
Stanislav Kinsburskyc21a5882011-12-26 15:39:39 +030049 rpc_pipefs_init_net(net);
Stanislav Kinsbursky70abc492012-01-12 22:07:51 +040050 INIT_LIST_HEAD(&sn->all_clients);
51 spin_lock_init(&sn->rpc_client_lock);
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040052 return 0;
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040053
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040054err_unixgid:
55 ip_map_cache_destroy(net);
Pavel Emelyanov90d51b02010-09-27 14:02:29 +040056err_ipmap:
57 rpc_proc_exit(net);
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040058err_proc:
59 return err;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040060}
61
62static __net_exit void sunrpc_exit_net(struct net *net)
63{
Stanislav Kinsbursky73393232012-01-19 21:42:29 +040064 unix_gid_cache_destroy(net);
Pavel Emelyanov90d51b02010-09-27 14:02:29 +040065 ip_map_cache_destroy(net);
Pavel Emelyanov4f42d0d2010-09-27 14:01:58 +040066 rpc_proc_exit(net);
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040067}
68
69static struct pernet_operations sunrpc_net_ops = {
70 .init = sunrpc_init_net,
71 .exit = sunrpc_exit_net,
72 .id = &sunrpc_net_id,
73 .size = sizeof(struct sunrpc_net),
74};
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076static int __init
77init_sunrpc(void)
78{
79 int err = register_rpc_pipefs();
80 if (err)
81 goto out;
Akinobu Mita5bd5f582007-05-09 02:34:51 -070082 err = rpc_init_mempool();
Trond Myklebust5d8d9a42010-07-31 14:29:07 -040083 if (err)
84 goto out2;
85 err = rpcauth_init_module();
86 if (err)
87 goto out3;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +040088
89 cache_initialize();
90
91 err = register_pernet_subsys(&sunrpc_net_ops);
92 if (err)
93 goto out4;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#ifdef RPC_DEBUG
95 rpc_register_sysctl();
96#endif
Tom Tucker360d87382007-12-30 21:07:17 -060097 svc_init_xprt_sock(); /* svc sock transport */
98 init_socket_xprt(); /* clnt sock transport */
Trond Myklebust5d8d9a42010-07-31 14:29:07 -040099 return 0;
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +0400100
101out4:
102 rpcauth_remove_module();
Trond Myklebust5d8d9a42010-07-31 14:29:07 -0400103out3:
104 rpc_destroy_mempool();
105out2:
106 unregister_rpc_pipefs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107out:
108 return err;
109}
110
111static void __exit
112cleanup_sunrpc(void)
113{
Trond Myklebustf5c21872007-06-25 17:11:20 -0400114 rpcauth_remove_module();
Chuck Lever282b32e2006-12-05 16:35:51 -0500115 cleanup_socket_xprt();
Tom Tucker360d87382007-12-30 21:07:17 -0600116 svc_cleanup_xprt_sock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 unregister_rpc_pipefs();
118 rpc_destroy_mempool();
Pavel Emelyanov2f72c9b2010-09-27 14:01:27 +0400119 unregister_pernet_subsys(&sunrpc_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#ifdef RPC_DEBUG
121 rpc_unregister_sysctl();
122#endif
Jesper Dangaard Brouer75de8742009-06-26 10:45:58 +0000123 rcu_barrier(); /* Wait for completion of call_rcu()'s */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125MODULE_LICENSE("GPL");
Trond Myklebust405d8f82009-08-21 08:17:56 -0400126fs_initcall(init_sunrpc); /* Ensure we're initialised before nfs */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127module_exit(cleanup_sunrpc);