blob: 1b0ff7e0e86977d4a9b9ff6505ad0ee1805dbfbc [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
9#include <linux/config.h>
10#include <linux/module.h>
11
12#include <linux/types.h>
13#include <linux/socket.h>
14#include <linux/sched.h>
15#include <linux/uio.h>
16#include <linux/unistd.h>
17#include <linux/init.h>
18
19#include <linux/sunrpc/sched.h>
20#include <linux/sunrpc/clnt.h>
21#include <linux/sunrpc/svc.h>
22#include <linux/sunrpc/svcsock.h>
23#include <linux/sunrpc/auth.h>
24#include <linux/workqueue.h>
25#include <linux/sunrpc/rpc_pipe_fs.h>
26
27
28/* RPC scheduler */
29EXPORT_SYMBOL(rpc_execute);
30EXPORT_SYMBOL(rpc_init_task);
31EXPORT_SYMBOL(rpc_sleep_on);
32EXPORT_SYMBOL(rpc_wake_up_next);
33EXPORT_SYMBOL(rpc_wake_up_task);
34EXPORT_SYMBOL(rpc_new_child);
35EXPORT_SYMBOL(rpc_run_child);
36EXPORT_SYMBOL(rpciod_down);
37EXPORT_SYMBOL(rpciod_up);
38EXPORT_SYMBOL(rpc_new_task);
39EXPORT_SYMBOL(rpc_wake_up_status);
40EXPORT_SYMBOL(rpc_release_task);
41
42/* RPC client functions */
43EXPORT_SYMBOL(rpc_create_client);
44EXPORT_SYMBOL(rpc_clone_client);
45EXPORT_SYMBOL(rpc_destroy_client);
46EXPORT_SYMBOL(rpc_shutdown_client);
47EXPORT_SYMBOL(rpc_release_client);
48EXPORT_SYMBOL(rpc_killall_tasks);
49EXPORT_SYMBOL(rpc_call_sync);
50EXPORT_SYMBOL(rpc_call_async);
51EXPORT_SYMBOL(rpc_call_setup);
52EXPORT_SYMBOL(rpc_clnt_sigmask);
53EXPORT_SYMBOL(rpc_clnt_sigunmask);
54EXPORT_SYMBOL(rpc_delay);
55EXPORT_SYMBOL(rpc_restart_call);
56EXPORT_SYMBOL(rpc_setbufsize);
57EXPORT_SYMBOL(rpc_unlink);
58EXPORT_SYMBOL(rpc_wake_up);
59EXPORT_SYMBOL(rpc_queue_upcall);
60EXPORT_SYMBOL(rpc_mkpipe);
61
62/* Client transport */
63EXPORT_SYMBOL(xprt_create_proto);
Linus Torvalds1da177e2005-04-16 15:20:36 -070064EXPORT_SYMBOL(xprt_set_timeout);
65EXPORT_SYMBOL(xprt_udp_slot_table_entries);
66EXPORT_SYMBOL(xprt_tcp_slot_table_entries);
67
68/* Client credential cache */
69EXPORT_SYMBOL(rpcauth_register);
70EXPORT_SYMBOL(rpcauth_unregister);
71EXPORT_SYMBOL(rpcauth_create);
72EXPORT_SYMBOL(rpcauth_lookupcred);
73EXPORT_SYMBOL(rpcauth_lookup_credcache);
74EXPORT_SYMBOL(rpcauth_free_credcache);
75EXPORT_SYMBOL(rpcauth_init_credcache);
76EXPORT_SYMBOL(put_rpccred);
77
78/* RPC server stuff */
79EXPORT_SYMBOL(svc_create);
80EXPORT_SYMBOL(svc_create_thread);
81EXPORT_SYMBOL(svc_exit_thread);
82EXPORT_SYMBOL(svc_destroy);
83EXPORT_SYMBOL(svc_drop);
84EXPORT_SYMBOL(svc_process);
85EXPORT_SYMBOL(svc_recv);
86EXPORT_SYMBOL(svc_wake_up);
87EXPORT_SYMBOL(svc_makesock);
88EXPORT_SYMBOL(svc_reserve);
89EXPORT_SYMBOL(svc_auth_register);
90EXPORT_SYMBOL(auth_domain_lookup);
91EXPORT_SYMBOL(svc_authenticate);
92EXPORT_SYMBOL(svc_set_client);
93
94/* RPC statistics */
95#ifdef CONFIG_PROC_FS
96EXPORT_SYMBOL(rpc_proc_register);
97EXPORT_SYMBOL(rpc_proc_unregister);
98EXPORT_SYMBOL(svc_proc_register);
99EXPORT_SYMBOL(svc_proc_unregister);
100EXPORT_SYMBOL(svc_seq_show);
101#endif
102
103/* caching... */
104EXPORT_SYMBOL(auth_domain_find);
105EXPORT_SYMBOL(auth_domain_put);
106EXPORT_SYMBOL(auth_unix_add_addr);
107EXPORT_SYMBOL(auth_unix_forget_old);
108EXPORT_SYMBOL(auth_unix_lookup);
109EXPORT_SYMBOL(cache_check);
110EXPORT_SYMBOL(cache_flush);
111EXPORT_SYMBOL(cache_purge);
112EXPORT_SYMBOL(cache_fresh);
113EXPORT_SYMBOL(cache_init);
114EXPORT_SYMBOL(cache_register);
115EXPORT_SYMBOL(cache_unregister);
116EXPORT_SYMBOL(qword_add);
117EXPORT_SYMBOL(qword_addhex);
118EXPORT_SYMBOL(qword_get);
119EXPORT_SYMBOL(svcauth_unix_purge);
120EXPORT_SYMBOL(unix_domain_find);
121
122/* Generic XDR */
123EXPORT_SYMBOL(xdr_encode_string);
124EXPORT_SYMBOL(xdr_decode_string);
125EXPORT_SYMBOL(xdr_decode_string_inplace);
126EXPORT_SYMBOL(xdr_decode_netobj);
127EXPORT_SYMBOL(xdr_encode_netobj);
128EXPORT_SYMBOL(xdr_encode_pages);
129EXPORT_SYMBOL(xdr_inline_pages);
130EXPORT_SYMBOL(xdr_shift_buf);
131EXPORT_SYMBOL(xdr_buf_from_iov);
132EXPORT_SYMBOL(xdr_buf_subsegment);
133EXPORT_SYMBOL(xdr_buf_read_netobj);
134EXPORT_SYMBOL(read_bytes_from_xdr_buf);
135
136/* Debugging symbols */
137#ifdef RPC_DEBUG
138EXPORT_SYMBOL(rpc_debug);
139EXPORT_SYMBOL(nfs_debug);
140EXPORT_SYMBOL(nfsd_debug);
141EXPORT_SYMBOL(nlm_debug);
142#endif
143
144extern int register_rpc_pipefs(void);
145extern void unregister_rpc_pipefs(void);
146
147static int __init
148init_sunrpc(void)
149{
150 int err = register_rpc_pipefs();
151 if (err)
152 goto out;
153 err = rpc_init_mempool() != 0;
154 if (err)
155 goto out;
156#ifdef RPC_DEBUG
157 rpc_register_sysctl();
158#endif
159#ifdef CONFIG_PROC_FS
160 rpc_proc_init();
161#endif
162 cache_register(&auth_domain_cache);
163 cache_register(&ip_map_cache);
164out:
165 return err;
166}
167
168static void __exit
169cleanup_sunrpc(void)
170{
171 unregister_rpc_pipefs();
172 rpc_destroy_mempool();
173 cache_unregister(&auth_domain_cache);
174 cache_unregister(&ip_map_cache);
175#ifdef RPC_DEBUG
176 rpc_unregister_sysctl();
177#endif
178#ifdef CONFIG_PROC_FS
179 rpc_proc_exit();
180#endif
181}
182MODULE_LICENSE("GPL");
183module_init(init_sunrpc);
184module_exit(cleanup_sunrpc);