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