Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/lockd/mon.c |
| 3 | * |
| 4 | * The kernel statd client. |
| 5 | * |
| 6 | * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de> |
| 7 | */ |
| 8 | |
| 9 | #include <linux/types.h> |
| 10 | #include <linux/utsname.h> |
| 11 | #include <linux/kernel.h> |
| 12 | #include <linux/sunrpc/clnt.h> |
\"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame^] | 13 | #include <linux/sunrpc/xprtsock.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/sunrpc/svc.h> |
| 15 | #include <linux/lockd/lockd.h> |
| 16 | #include <linux/lockd/sm_inter.h> |
| 17 | |
| 18 | |
| 19 | #define NLMDBG_FACILITY NLMDBG_MONITOR |
| 20 | |
| 21 | static struct rpc_clnt * nsm_create(void); |
| 22 | |
| 23 | static struct rpc_program nsm_program; |
| 24 | |
| 25 | /* |
| 26 | * Local NSM state |
| 27 | */ |
Olaf Kirch | 460f5ca | 2006-10-04 02:16:03 -0700 | [diff] [blame] | 28 | int nsm_local_state; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | |
| 30 | /* |
| 31 | * Common procedure for SM_MON/SM_UNMON calls |
| 32 | */ |
| 33 | static int |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 34 | nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | { |
| 36 | struct rpc_clnt *clnt; |
| 37 | int status; |
| 38 | struct nsm_args args; |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 39 | struct rpc_message msg = { |
| 40 | .rpc_argp = &args, |
| 41 | .rpc_resp = res, |
| 42 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
| 44 | clnt = nsm_create(); |
| 45 | if (IS_ERR(clnt)) { |
| 46 | status = PTR_ERR(clnt); |
| 47 | goto out; |
| 48 | } |
| 49 | |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 50 | memset(&args, 0, sizeof(args)); |
Olaf Kirch | abd1f50 | 2006-10-04 02:16:01 -0700 | [diff] [blame] | 51 | args.mon_name = nsm->sm_name; |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 52 | args.addr = nsm->sm_addr.sin_addr.s_addr; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | args.prog = NLM_PROGRAM; |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 54 | args.vers = 3; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | args.proc = NLMPROC_NSM_NOTIFY; |
| 56 | memset(res, 0, sizeof(*res)); |
| 57 | |
Chuck Lever | dead28d | 2006-03-20 13:44:23 -0500 | [diff] [blame] | 58 | msg.rpc_proc = &clnt->cl_procinfo[proc]; |
| 59 | status = rpc_call_sync(clnt, &msg, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | if (status < 0) |
| 61 | printk(KERN_DEBUG "nsm_mon_unmon: rpc failed, status=%d\n", |
| 62 | status); |
| 63 | else |
| 64 | status = 0; |
Trond Myklebust | 90c5755 | 2007-06-09 19:49:36 -0400 | [diff] [blame] | 65 | rpc_shutdown_client(clnt); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | out: |
| 67 | return status; |
| 68 | } |
| 69 | |
| 70 | /* |
| 71 | * Set up monitoring of a remote host |
| 72 | */ |
| 73 | int |
| 74 | nsm_monitor(struct nlm_host *host) |
| 75 | { |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 76 | struct nsm_handle *nsm = host->h_nsmhandle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | struct nsm_res res; |
| 78 | int status; |
| 79 | |
| 80 | dprintk("lockd: nsm_monitor(%s)\n", host->h_name); |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 81 | BUG_ON(nsm == NULL); |
| 82 | |
| 83 | if (nsm->sm_monitored) |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 84 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 86 | status = nsm_mon_unmon(nsm, SM_MON, &res); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
| 88 | if (status < 0 || res.status != 0) |
| 89 | printk(KERN_NOTICE "lockd: cannot monitor %s\n", host->h_name); |
| 90 | else |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 91 | nsm->sm_monitored = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | return status; |
| 93 | } |
| 94 | |
| 95 | /* |
| 96 | * Cease to monitor remote host |
| 97 | */ |
| 98 | int |
| 99 | nsm_unmonitor(struct nlm_host *host) |
| 100 | { |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 101 | struct nsm_handle *nsm = host->h_nsmhandle; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | struct nsm_res res; |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 103 | int status = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 105 | if (nsm == NULL) |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 106 | return 0; |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 107 | host->h_nsmhandle = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 109 | if (atomic_read(&nsm->sm_count) == 1 |
| 110 | && nsm->sm_monitored && !nsm->sm_sticky) { |
| 111 | dprintk("lockd: nsm_unmonitor(%s)\n", host->h_name); |
| 112 | |
| 113 | status = nsm_mon_unmon(nsm, SM_UNMON, &res); |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 114 | if (status < 0) |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 115 | printk(KERN_NOTICE "lockd: cannot unmonitor %s\n", |
| 116 | host->h_name); |
| 117 | else |
| 118 | nsm->sm_monitored = 0; |
Olaf Kirch | 977faf3 | 2006-10-04 02:15:51 -0700 | [diff] [blame] | 119 | } |
Olaf Kirch | 8dead0d | 2006-10-04 02:15:53 -0700 | [diff] [blame] | 120 | nsm_release(nsm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 121 | return status; |
| 122 | } |
| 123 | |
| 124 | /* |
| 125 | * Create NSM client for the local host |
| 126 | */ |
| 127 | static struct rpc_clnt * |
| 128 | nsm_create(void) |
| 129 | { |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 130 | struct sockaddr_in sin = { |
| 131 | .sin_family = AF_INET, |
| 132 | .sin_addr.s_addr = htonl(INADDR_LOOPBACK), |
| 133 | .sin_port = 0, |
| 134 | }; |
| 135 | struct rpc_create_args args = { |
\"Talpey, Thomas\ | 0896a72 | 2007-09-10 13:48:23 -0400 | [diff] [blame^] | 136 | .protocol = XPRT_TRANSPORT_UDP, |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 137 | .address = (struct sockaddr *)&sin, |
| 138 | .addrsize = sizeof(sin), |
| 139 | .servername = "localhost", |
| 140 | .program = &nsm_program, |
| 141 | .version = SM_VERSION, |
| 142 | .authflavor = RPC_AUTH_NULL, |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 143 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 144 | |
Chuck Lever | e1ec789 | 2006-08-22 20:06:20 -0400 | [diff] [blame] | 145 | return rpc_create(&args); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | } |
| 147 | |
| 148 | /* |
| 149 | * XDR functions for NSM. |
| 150 | */ |
| 151 | |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 152 | static __be32 * |
| 153 | xdr_encode_common(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | { |
Olaf Kirch | abd1f50 | 2006-10-04 02:16:01 -0700 | [diff] [blame] | 155 | char buffer[20], *name; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 156 | |
| 157 | /* |
| 158 | * Use the dotted-quad IP address of the remote host as |
| 159 | * identifier. Linux statd always looks up the canonical |
| 160 | * hostname first for whatever remote hostname it receives, |
| 161 | * so this works alright. |
| 162 | */ |
Olaf Kirch | abd1f50 | 2006-10-04 02:16:01 -0700 | [diff] [blame] | 163 | if (nsm_use_hostnames) { |
| 164 | name = argp->mon_name; |
| 165 | } else { |
| 166 | sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(argp->addr)); |
| 167 | name = buffer; |
| 168 | } |
| 169 | if (!(p = xdr_encode_string(p, name)) |
Serge E. Hallyn | e9ff399 | 2006-10-02 02:18:11 -0700 | [diff] [blame] | 170 | || !(p = xdr_encode_string(p, utsname()->nodename))) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | return ERR_PTR(-EIO); |
| 172 | *p++ = htonl(argp->prog); |
| 173 | *p++ = htonl(argp->vers); |
| 174 | *p++ = htonl(argp->proc); |
| 175 | |
| 176 | return p; |
| 177 | } |
| 178 | |
| 179 | static int |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 180 | xdr_encode_mon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 181 | { |
| 182 | p = xdr_encode_common(rqstp, p, argp); |
| 183 | if (IS_ERR(p)) |
| 184 | return PTR_ERR(p); |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 185 | |
| 186 | /* Surprise - there may even be room for an IPv6 address now */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | *p++ = argp->addr; |
Olaf Kirch | 9502c52 | 2006-10-04 02:15:56 -0700 | [diff] [blame] | 188 | *p++ = 0; |
| 189 | *p++ = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | *p++ = 0; |
| 191 | rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p); |
| 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | static int |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 196 | xdr_encode_unmon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | { |
| 198 | p = xdr_encode_common(rqstp, p, argp); |
| 199 | if (IS_ERR(p)) |
| 200 | return PTR_ERR(p); |
| 201 | rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p); |
| 202 | return 0; |
| 203 | } |
| 204 | |
| 205 | static int |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 206 | xdr_decode_stat_res(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | { |
| 208 | resp->status = ntohl(*p++); |
| 209 | resp->state = ntohl(*p++); |
| 210 | dprintk("nsm: xdr_decode_stat_res status %d state %d\n", |
| 211 | resp->status, resp->state); |
| 212 | return 0; |
| 213 | } |
| 214 | |
| 215 | static int |
Al Viro | 52921e0 | 2006-10-19 23:28:46 -0700 | [diff] [blame] | 216 | xdr_decode_stat(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | { |
| 218 | resp->state = ntohl(*p++); |
| 219 | return 0; |
| 220 | } |
| 221 | |
| 222 | #define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN)) |
| 223 | #define SM_my_id_sz (3+1+SM_my_name_sz) |
| 224 | #define SM_mon_id_sz (1+XDR_QUADLEN(20)+SM_my_id_sz) |
| 225 | #define SM_mon_sz (SM_mon_id_sz+4) |
| 226 | #define SM_monres_sz 2 |
| 227 | #define SM_unmonres_sz 1 |
| 228 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | static struct rpc_procinfo nsm_procedures[] = { |
| 230 | [SM_MON] = { |
| 231 | .p_proc = SM_MON, |
| 232 | .p_encode = (kxdrproc_t) xdr_encode_mon, |
| 233 | .p_decode = (kxdrproc_t) xdr_decode_stat_res, |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 234 | .p_arglen = SM_mon_sz, |
| 235 | .p_replen = SM_monres_sz, |
Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 236 | .p_statidx = SM_MON, |
| 237 | .p_name = "MONITOR", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | }, |
| 239 | [SM_UNMON] = { |
| 240 | .p_proc = SM_UNMON, |
| 241 | .p_encode = (kxdrproc_t) xdr_encode_unmon, |
| 242 | .p_decode = (kxdrproc_t) xdr_decode_stat, |
Chuck Lever | 2bea90d | 2007-03-29 16:47:53 -0400 | [diff] [blame] | 243 | .p_arglen = SM_mon_id_sz, |
| 244 | .p_replen = SM_unmonres_sz, |
Chuck Lever | cc0175c | 2006-03-20 13:44:22 -0500 | [diff] [blame] | 245 | .p_statidx = SM_UNMON, |
| 246 | .p_name = "UNMONITOR", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | }, |
| 248 | }; |
| 249 | |
| 250 | static struct rpc_version nsm_version1 = { |
Tobias Klauser | e8c96f8 | 2006-03-24 03:15:34 -0800 | [diff] [blame] | 251 | .number = 1, |
| 252 | .nrprocs = ARRAY_SIZE(nsm_procedures), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | .procs = nsm_procedures |
| 254 | }; |
| 255 | |
| 256 | static struct rpc_version * nsm_version[] = { |
| 257 | [1] = &nsm_version1, |
| 258 | }; |
| 259 | |
| 260 | static struct rpc_stat nsm_stats; |
| 261 | |
| 262 | static struct rpc_program nsm_program = { |
| 263 | .name = "statd", |
| 264 | .number = SM_PROGRAM, |
Tobias Klauser | e8c96f8 | 2006-03-24 03:15:34 -0800 | [diff] [blame] | 265 | .nrvers = ARRAY_SIZE(nsm_version), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | .version = nsm_version, |
| 267 | .stats = &nsm_stats |
| 268 | }; |