| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* | 
| Chuck Lever | c4a5692 | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 2 | * linux/net/sunrpc/pmap_clnt.c | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * | 
| Chuck Lever | c4a5692 | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 4 | * In-kernel RPC portmapper client. | 
|  | 5 | * | 
|  | 6 | * Portmapper supports version 2 of the rpcbind protocol (RFC 1833). | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * | 
|  | 8 | * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> | 
|  | 9 | */ | 
|  | 10 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/types.h> | 
|  | 12 | #include <linux/socket.h> | 
|  | 13 | #include <linux/kernel.h> | 
|  | 14 | #include <linux/errno.h> | 
|  | 15 | #include <linux/uio.h> | 
|  | 16 | #include <linux/in.h> | 
|  | 17 | #include <linux/sunrpc/clnt.h> | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 18 | #include <linux/sunrpc/sched.h> | 
|  | 19 |  | 
|  | 20 | #ifdef RPC_DEBUG | 
|  | 21 | # define RPCDBG_FACILITY	RPCDBG_PMAP | 
|  | 22 | #endif | 
|  | 23 |  | 
|  | 24 | #define PMAP_SET		1 | 
|  | 25 | #define PMAP_UNSET		2 | 
|  | 26 | #define PMAP_GETPORT		3 | 
|  | 27 |  | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 28 | struct portmap_args { | 
|  | 29 | u32			pm_prog; | 
|  | 30 | u32			pm_vers; | 
|  | 31 | u32			pm_prot; | 
|  | 32 | unsigned short		pm_port; | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 33 | struct rpc_xprt *	pm_xprt; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 34 | }; | 
|  | 35 |  | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | static struct rpc_procinfo	pmap_procedures[]; | 
| Chuck Lever | 6cd7525 | 2005-09-22 21:24:59 -0400 | [diff] [blame] | 37 | static struct rpc_clnt *	pmap_create(char *, struct sockaddr_in *, int, int); | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 38 | static void			pmap_getport_done(struct rpc_task *, void *); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | static struct rpc_program	pmap_program; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 40 |  | 
|  | 41 | static void pmap_getport_prepare(struct rpc_task *task, void *calldata) | 
|  | 42 | { | 
|  | 43 | struct portmap_args *map = calldata; | 
|  | 44 | struct rpc_message msg = { | 
|  | 45 | .rpc_proc	= &pmap_procedures[PMAP_GETPORT], | 
|  | 46 | .rpc_argp	= map, | 
|  | 47 | .rpc_resp	= &map->pm_port, | 
|  | 48 | }; | 
|  | 49 |  | 
|  | 50 | rpc_call_setup(task, &msg, 0); | 
|  | 51 | } | 
|  | 52 |  | 
|  | 53 | static inline struct portmap_args *pmap_map_alloc(void) | 
|  | 54 | { | 
|  | 55 | return kmalloc(sizeof(struct portmap_args), GFP_NOFS); | 
|  | 56 | } | 
|  | 57 |  | 
|  | 58 | static inline void pmap_map_free(struct portmap_args *map) | 
|  | 59 | { | 
|  | 60 | kfree(map); | 
|  | 61 | } | 
|  | 62 |  | 
|  | 63 | static void pmap_map_release(void *data) | 
|  | 64 | { | 
| Trond Myklebust | 54cc533 | 2007-02-03 13:38:40 -0800 | [diff] [blame] | 65 | struct portmap_args *map = data; | 
|  | 66 |  | 
|  | 67 | xprt_put(map->pm_xprt); | 
|  | 68 | pmap_map_free(map); | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 69 | } | 
|  | 70 |  | 
|  | 71 | static const struct rpc_call_ops pmap_getport_ops = { | 
|  | 72 | .rpc_call_prepare	= pmap_getport_prepare, | 
|  | 73 | .rpc_call_done		= pmap_getport_done, | 
|  | 74 | .rpc_release		= pmap_map_release, | 
|  | 75 | }; | 
|  | 76 |  | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 77 | static inline void pmap_wake_portmap_waiters(struct rpc_xprt *xprt, int status) | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 78 | { | 
|  | 79 | xprt_clear_binding(xprt); | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 80 | rpc_wake_up_status(&xprt->binding, status); | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 81 | } | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 |  | 
| Chuck Lever | c4a5692 | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 83 | /** | 
|  | 84 | * rpc_getport - obtain the port for a given RPC service on a given host | 
|  | 85 | * @task: task that is waiting for portmapper request | 
| Chuck Lever | c4a5692 | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 86 | * | 
|  | 87 | * This one can be called for an ongoing RPC request, and can be used in | 
|  | 88 | * an async (rpciod) context. | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | */ | 
| Chuck Lever | bbf7c1d | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 90 | void rpc_getport(struct rpc_task *task) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | { | 
| Chuck Lever | bbf7c1d | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 92 | struct rpc_clnt *clnt = task->tk_client; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 93 | struct rpc_xprt *xprt = task->tk_xprt; | 
| Chuck Lever | 081f79a | 2006-08-22 20:06:17 -0400 | [diff] [blame] | 94 | struct sockaddr_in addr; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 95 | struct portmap_args *map; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | struct rpc_clnt	*pmap_clnt; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 97 | struct rpc_task *child; | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 98 | int status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 |  | 
| Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 100 | dprintk("RPC: %5u rpc_getport(%s, %u, %u, %d)\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | task->tk_pid, clnt->cl_server, | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 102 | clnt->cl_prog, clnt->cl_vers, xprt->prot); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 |  | 
| Andreas Gruenbacher | 007e251 | 2005-06-22 17:16:23 +0000 | [diff] [blame] | 104 | /* Autobind on cloned rpc clients is discouraged */ | 
|  | 105 | BUG_ON(clnt->cl_parent != clnt); | 
|  | 106 |  | 
| Chuck Lever | 2b577f1 | 2006-11-16 15:03:38 -0500 | [diff] [blame] | 107 | status = -EACCES;		/* tell caller to check again */ | 
|  | 108 | if (xprt_test_and_set_binding(xprt)) | 
|  | 109 | goto bailout_nowake; | 
|  | 110 |  | 
| Chuck Lever | 71bdcf8 | 2006-10-19 23:28:43 -0700 | [diff] [blame] | 111 | /* Put self on queue before sending rpcbind request, in case | 
|  | 112 | * pmap_getport_done completes before we return from rpc_run_task */ | 
|  | 113 | rpc_sleep_on(&xprt->binding, task, NULL, NULL); | 
|  | 114 |  | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 115 | /* Someone else may have bound if we slept */ | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 116 | status = 0; | 
|  | 117 | if (xprt_bound(xprt)) | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 118 | goto bailout_nofree; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 119 |  | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 120 | status = -ENOMEM; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 121 | map = pmap_map_alloc(); | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 122 | if (!map) | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 123 | goto bailout_nofree; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 124 | map->pm_prog = clnt->cl_prog; | 
|  | 125 | map->pm_vers = clnt->cl_vers; | 
|  | 126 | map->pm_prot = xprt->prot; | 
|  | 127 | map->pm_port = 0; | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 128 | map->pm_xprt = xprt_get(xprt); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 |  | 
| Chuck Lever | 081f79a | 2006-08-22 20:06:17 -0400 | [diff] [blame] | 130 | rpc_peeraddr(clnt, (struct sockaddr *) &addr, sizeof(addr)); | 
|  | 131 | pmap_clnt = pmap_create(clnt->cl_server, &addr, map->pm_prot, 0); | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 132 | status = PTR_ERR(pmap_clnt); | 
|  | 133 | if (IS_ERR(pmap_clnt)) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | goto bailout; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 135 |  | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 136 | status = -EIO; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 137 | child = rpc_run_task(pmap_clnt, RPC_TASK_ASYNC, &pmap_getport_ops, map); | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 138 | if (IS_ERR(child)) | 
| Trond Myklebust | 54cc533 | 2007-02-03 13:38:40 -0800 | [diff] [blame] | 139 | goto bailout_nofree; | 
| Trond Myklebust | e6b3c4d | 2006-11-11 22:18:03 -0500 | [diff] [blame] | 140 | rpc_put_task(child); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 |  | 
| Chuck Lever | 262ca07 | 2006-03-20 13:44:16 -0500 | [diff] [blame] | 142 | task->tk_xprt->stat.bind_count++; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | return; | 
|  | 144 |  | 
|  | 145 | bailout: | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 146 | pmap_map_free(map); | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 147 | xprt_put(xprt); | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 148 | bailout_nofree: | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 149 | pmap_wake_portmap_waiters(xprt, status); | 
| Chuck Lever | 2b577f1 | 2006-11-16 15:03:38 -0500 | [diff] [blame] | 150 | bailout_nowake: | 
|  | 151 | task->tk_status = status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | } | 
|  | 153 |  | 
|  | 154 | #ifdef CONFIG_ROOT_NFS | 
| Chuck Lever | c4a5692 | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 155 | /** | 
|  | 156 | * rpc_getport_external - obtain the port for a given RPC service on a given host | 
|  | 157 | * @sin: address of remote peer | 
|  | 158 | * @prog: RPC program number to bind | 
|  | 159 | * @vers: RPC version number to bind | 
|  | 160 | * @prot: transport protocol to use to make this request | 
|  | 161 | * | 
|  | 162 | * This one is called from outside the RPC client in a synchronous task context. | 
|  | 163 | */ | 
|  | 164 | int rpc_getport_external(struct sockaddr_in *sin, __u32 prog, __u32 vers, int prot) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 166 | struct portmap_args map = { | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | .pm_prog	= prog, | 
|  | 168 | .pm_vers	= vers, | 
|  | 169 | .pm_prot	= prot, | 
|  | 170 | .pm_port	= 0 | 
|  | 171 | }; | 
| Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 172 | struct rpc_message msg = { | 
|  | 173 | .rpc_proc	= &pmap_procedures[PMAP_GETPORT], | 
|  | 174 | .rpc_argp	= &map, | 
|  | 175 | .rpc_resp	= &map.pm_port, | 
|  | 176 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | struct rpc_clnt	*pmap_clnt; | 
|  | 178 | char		hostname[32]; | 
|  | 179 | int		status; | 
|  | 180 |  | 
| Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 181 | dprintk("RPC:       rpc_getport_external(%u.%u.%u.%u, %u, %u, %d)\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 182 | NIPQUAD(sin->sin_addr.s_addr), prog, vers, prot); | 
|  | 183 |  | 
|  | 184 | sprintf(hostname, "%u.%u.%u.%u", NIPQUAD(sin->sin_addr.s_addr)); | 
| Chuck Lever | 6cd7525 | 2005-09-22 21:24:59 -0400 | [diff] [blame] | 185 | pmap_clnt = pmap_create(hostname, sin, prot, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 186 | if (IS_ERR(pmap_clnt)) | 
|  | 187 | return PTR_ERR(pmap_clnt); | 
|  | 188 |  | 
|  | 189 | /* Setup the call info struct */ | 
| Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 190 | status = rpc_call_sync(pmap_clnt, &msg, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 |  | 
|  | 192 | if (status >= 0) { | 
|  | 193 | if (map.pm_port != 0) | 
|  | 194 | return map.pm_port; | 
|  | 195 | status = -EACCES; | 
|  | 196 | } | 
|  | 197 | return status; | 
|  | 198 | } | 
|  | 199 | #endif | 
|  | 200 |  | 
| Chuck Lever | c4a5692 | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 201 | /* | 
|  | 202 | * Portmapper child task invokes this callback via tk_exit. | 
|  | 203 | */ | 
|  | 204 | static void pmap_getport_done(struct rpc_task *child, void *data) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | { | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 206 | struct portmap_args *map = data; | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 207 | struct rpc_xprt *xprt = map->pm_xprt; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 208 | int status = child->tk_status; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 |  | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 210 | if (status < 0) { | 
|  | 211 | /* Portmapper not available */ | 
| Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 212 | xprt->ops->set_port(xprt, 0); | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 213 | } else if (map->pm_port == 0) { | 
|  | 214 | /* Requested RPC service wasn't registered */ | 
| Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 215 | xprt->ops->set_port(xprt, 0); | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 216 | status = -EACCES; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | } else { | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 218 | /* Succeeded */ | 
|  | 219 | xprt->ops->set_port(xprt, map->pm_port); | 
| Chuck Lever | ec739ef | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 220 | xprt_set_bound(xprt); | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 221 | status = 0; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | } | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 223 |  | 
| Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 224 | dprintk("RPC: %5u pmap_getport_done(status %d, port %u)\n", | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 225 | child->tk_pid, status, map->pm_port); | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 226 |  | 
| Trond Myklebust | 762d452 | 2006-09-03 00:51:55 -0400 | [diff] [blame] | 227 | pmap_wake_portmap_waiters(xprt, status); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | } | 
|  | 229 |  | 
| Chuck Lever | c4a5692 | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 230 | /** | 
|  | 231 | * rpc_register - set or unset a port registration with the local portmapper | 
|  | 232 | * @prog: RPC program number to bind | 
|  | 233 | * @vers: RPC version number to bind | 
|  | 234 | * @prot: transport protocol to use to make this request | 
|  | 235 | * @port: port value to register | 
|  | 236 | * @okay: result code | 
|  | 237 | * | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | * port == 0 means unregister, port != 0 means register. | 
|  | 239 | */ | 
| Chuck Lever | c4a5692 | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 240 | int rpc_register(u32 prog, u32 vers, int prot, unsigned short port, int *okay) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | { | 
| Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 242 | struct sockaddr_in	sin = { | 
|  | 243 | .sin_family	= AF_INET, | 
|  | 244 | .sin_addr.s_addr = htonl(INADDR_LOOPBACK), | 
|  | 245 | }; | 
| Chuck Lever | 4a68179 | 2006-08-22 20:06:15 -0400 | [diff] [blame] | 246 | struct portmap_args	map = { | 
| Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 247 | .pm_prog	= prog, | 
|  | 248 | .pm_vers	= vers, | 
|  | 249 | .pm_prot	= prot, | 
|  | 250 | .pm_port	= port, | 
|  | 251 | }; | 
|  | 252 | struct rpc_message msg = { | 
|  | 253 | .rpc_proc	= &pmap_procedures[port ? PMAP_SET : PMAP_UNSET], | 
|  | 254 | .rpc_argp	= &map, | 
|  | 255 | .rpc_resp	= okay, | 
|  | 256 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | struct rpc_clnt		*pmap_clnt; | 
|  | 258 | int error = 0; | 
|  | 259 |  | 
| Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 260 | dprintk("RPC:       registering (%u, %u, %d, %u) with portmapper.\n", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | prog, vers, prot, port); | 
|  | 262 |  | 
| Chuck Lever | 6cd7525 | 2005-09-22 21:24:59 -0400 | [diff] [blame] | 263 | pmap_clnt = pmap_create("localhost", &sin, IPPROTO_UDP, 1); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | if (IS_ERR(pmap_clnt)) { | 
|  | 265 | error = PTR_ERR(pmap_clnt); | 
| Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 266 | dprintk("RPC:       couldn't create pmap client. Error = %d\n", | 
|  | 267 | error); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | return error; | 
|  | 269 | } | 
|  | 270 |  | 
| Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 271 | error = rpc_call_sync(pmap_clnt, &msg, 0); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 |  | 
|  | 273 | if (error < 0) { | 
|  | 274 | printk(KERN_WARNING | 
|  | 275 | "RPC: failed to contact portmap (errno %d).\n", | 
|  | 276 | error); | 
|  | 277 | } | 
| Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 278 | dprintk("RPC:       registration status %d/%d\n", error, *okay); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 |  | 
|  | 280 | /* Client deleted automatically because cl_oneshot == 1 */ | 
|  | 281 | return error; | 
|  | 282 | } | 
|  | 283 |  | 
| Chuck Lever | c4a5692 | 2006-08-22 20:06:16 -0400 | [diff] [blame] | 284 | static struct rpc_clnt *pmap_create(char *hostname, struct sockaddr_in *srvaddr, int proto, int privileged) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 285 | { | 
| Chuck Lever | 9e1968c | 2006-08-22 20:06:21 -0400 | [diff] [blame] | 286 | struct rpc_create_args args = { | 
|  | 287 | .protocol	= proto, | 
|  | 288 | .address	= (struct sockaddr *)srvaddr, | 
|  | 289 | .addrsize	= sizeof(*srvaddr), | 
|  | 290 | .servername	= hostname, | 
|  | 291 | .program	= &pmap_program, | 
|  | 292 | .version	= RPC_PMAP_VERSION, | 
|  | 293 | .authflavor	= RPC_AUTH_UNIX, | 
|  | 294 | .flags		= (RPC_CLNT_CREATE_ONESHOT | | 
|  | 295 | RPC_CLNT_CREATE_NOPING), | 
|  | 296 | }; | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 |  | 
| Chuck Lever | 9e1968c | 2006-08-22 20:06:21 -0400 | [diff] [blame] | 298 | srvaddr->sin_port = htons(RPC_PMAP_PORT); | 
| Chuck Lever | 6cd7525 | 2005-09-22 21:24:59 -0400 | [diff] [blame] | 299 | if (!privileged) | 
| Chuck Lever | 9e1968c | 2006-08-22 20:06:21 -0400 | [diff] [blame] | 300 | args.flags |= RPC_CLNT_CREATE_NONPRIVPORT; | 
|  | 301 | return rpc_create(&args); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | } | 
|  | 303 |  | 
|  | 304 | /* | 
|  | 305 | * XDR encode/decode functions for PMAP | 
|  | 306 | */ | 
| Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 307 | static int xdr_encode_mapping(struct rpc_rqst *req, __be32 *p, struct portmap_args *map) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | { | 
| Chuck Lever | 46121cf | 2007-01-31 12:14:08 -0500 | [diff] [blame] | 309 | dprintk("RPC:       xdr_encode_mapping(%u, %u, %u, %u)\n", | 
|  | 310 | map->pm_prog, map->pm_vers, | 
|  | 311 | map->pm_prot, map->pm_port); | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | *p++ = htonl(map->pm_prog); | 
|  | 313 | *p++ = htonl(map->pm_vers); | 
|  | 314 | *p++ = htonl(map->pm_prot); | 
|  | 315 | *p++ = htonl(map->pm_port); | 
|  | 316 |  | 
|  | 317 | req->rq_slen = xdr_adjust_iovec(req->rq_svec, p); | 
|  | 318 | return 0; | 
|  | 319 | } | 
|  | 320 |  | 
| Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 321 | static int xdr_decode_port(struct rpc_rqst *req, __be32 *p, unsigned short *portp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | { | 
|  | 323 | *portp = (unsigned short) ntohl(*p++); | 
|  | 324 | return 0; | 
|  | 325 | } | 
|  | 326 |  | 
| Alexey Dobriyan | d8ed029 | 2006-09-26 22:29:38 -0700 | [diff] [blame] | 327 | static int xdr_decode_bool(struct rpc_rqst *req, __be32 *p, unsigned int *boolp) | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { | 
|  | 329 | *boolp = (unsigned int) ntohl(*p++); | 
|  | 330 | return 0; | 
|  | 331 | } | 
|  | 332 |  | 
|  | 333 | static struct rpc_procinfo	pmap_procedures[] = { | 
|  | 334 | [PMAP_SET] = { | 
|  | 335 | .p_proc		= PMAP_SET, | 
| YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 336 | .p_encode		= (kxdrproc_t) xdr_encode_mapping, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | .p_decode		= (kxdrproc_t) xdr_decode_bool, | 
|  | 338 | .p_bufsiz		= 4, | 
|  | 339 | .p_count		= 1, | 
| Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 340 | .p_statidx		= PMAP_SET, | 
|  | 341 | .p_name		= "SET", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | }, | 
|  | 343 | [PMAP_UNSET] = { | 
|  | 344 | .p_proc		= PMAP_UNSET, | 
| YOSHIFUJI Hideaki | cca5172 | 2007-02-09 15:38:13 -0800 | [diff] [blame] | 345 | .p_encode		= (kxdrproc_t) xdr_encode_mapping, | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | .p_decode		= (kxdrproc_t) xdr_decode_bool, | 
|  | 347 | .p_bufsiz		= 4, | 
|  | 348 | .p_count		= 1, | 
| Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 349 | .p_statidx		= PMAP_UNSET, | 
|  | 350 | .p_name		= "UNSET", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | }, | 
|  | 352 | [PMAP_GETPORT] = { | 
|  | 353 | .p_proc		= PMAP_GETPORT, | 
|  | 354 | .p_encode		= (kxdrproc_t) xdr_encode_mapping, | 
|  | 355 | .p_decode		= (kxdrproc_t) xdr_decode_port, | 
|  | 356 | .p_bufsiz		= 4, | 
|  | 357 | .p_count		= 1, | 
| Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 358 | .p_statidx		= PMAP_GETPORT, | 
|  | 359 | .p_name		= "GETPORT", | 
| Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | }, | 
|  | 361 | }; | 
|  | 362 |  | 
|  | 363 | static struct rpc_version	pmap_version2 = { | 
|  | 364 | .number		= 2, | 
|  | 365 | .nrprocs	= 4, | 
|  | 366 | .procs		= pmap_procedures | 
|  | 367 | }; | 
|  | 368 |  | 
|  | 369 | static struct rpc_version *	pmap_version[] = { | 
|  | 370 | NULL, | 
|  | 371 | NULL, | 
|  | 372 | &pmap_version2 | 
|  | 373 | }; | 
|  | 374 |  | 
|  | 375 | static struct rpc_stat		pmap_stats; | 
|  | 376 |  | 
|  | 377 | static struct rpc_program	pmap_program = { | 
|  | 378 | .name		= "portmap", | 
|  | 379 | .number		= RPC_PMAP_PROGRAM, | 
|  | 380 | .nrvers		= ARRAY_SIZE(pmap_version), | 
|  | 381 | .version	= pmap_version, | 
|  | 382 | .stats		= &pmap_stats, | 
|  | 383 | }; |