blob: 84fd84cb67b7d388a9d0052dcb7d6c133d2eb10f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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\0896a722007-09-10 13:48:23 -040013#include <linux/sunrpc/xprtsock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#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
21static struct rpc_clnt * nsm_create(void);
22
23static struct rpc_program nsm_program;
24
25/*
26 * Local NSM state
27 */
Olaf Kirch460f5ca2006-10-04 02:16:03 -070028int nsm_local_state;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029
30/*
31 * Common procedure for SM_MON/SM_UNMON calls
32 */
33static int
Olaf Kirch9502c522006-10-04 02:15:56 -070034nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
36 struct rpc_clnt *clnt;
37 int status;
38 struct nsm_args args;
Chuck Leverdead28d2006-03-20 13:44:23 -050039 struct rpc_message msg = {
40 .rpc_argp = &args,
41 .rpc_resp = res,
42 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44 clnt = nsm_create();
45 if (IS_ERR(clnt)) {
46 status = PTR_ERR(clnt);
47 goto out;
48 }
49
Olaf Kirch9502c522006-10-04 02:15:56 -070050 memset(&args, 0, sizeof(args));
Olaf Kirchabd1f502006-10-04 02:16:01 -070051 args.mon_name = nsm->sm_name;
Olaf Kirch9502c522006-10-04 02:15:56 -070052 args.addr = nsm->sm_addr.sin_addr.s_addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 args.prog = NLM_PROGRAM;
Olaf Kirch9502c522006-10-04 02:15:56 -070054 args.vers = 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 args.proc = NLMPROC_NSM_NOTIFY;
56 memset(res, 0, sizeof(*res));
57
Chuck Leverdead28d2006-03-20 13:44:23 -050058 msg.rpc_proc = &clnt->cl_procinfo[proc];
59 status = rpc_call_sync(clnt, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 if (status < 0)
61 printk(KERN_DEBUG "nsm_mon_unmon: rpc failed, status=%d\n",
62 status);
63 else
64 status = 0;
Trond Myklebust90c57552007-06-09 19:49:36 -040065 rpc_shutdown_client(clnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 out:
67 return status;
68}
69
70/*
71 * Set up monitoring of a remote host
72 */
73int
74nsm_monitor(struct nlm_host *host)
75{
Olaf Kirch8dead0d2006-10-04 02:15:53 -070076 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct nsm_res res;
78 int status;
79
80 dprintk("lockd: nsm_monitor(%s)\n", host->h_name);
Olaf Kirch8dead0d2006-10-04 02:15:53 -070081 BUG_ON(nsm == NULL);
82
83 if (nsm->sm_monitored)
Olaf Kirch977faf32006-10-04 02:15:51 -070084 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Olaf Kirch9502c522006-10-04 02:15:56 -070086 status = nsm_mon_unmon(nsm, SM_MON, &res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
88 if (status < 0 || res.status != 0)
89 printk(KERN_NOTICE "lockd: cannot monitor %s\n", host->h_name);
90 else
Olaf Kirch8dead0d2006-10-04 02:15:53 -070091 nsm->sm_monitored = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 return status;
93}
94
95/*
96 * Cease to monitor remote host
97 */
98int
99nsm_unmonitor(struct nlm_host *host)
100{
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700101 struct nsm_handle *nsm = host->h_nsmhandle;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 struct nsm_res res;
Olaf Kirch977faf32006-10-04 02:15:51 -0700103 int status = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700105 if (nsm == NULL)
Olaf Kirch977faf32006-10-04 02:15:51 -0700106 return 0;
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700107 host->h_nsmhandle = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Olaf Kirch9502c522006-10-04 02:15:56 -0700109 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 Kirch977faf32006-10-04 02:15:51 -0700114 if (status < 0)
Olaf Kirch9502c522006-10-04 02:15:56 -0700115 printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
116 host->h_name);
117 else
118 nsm->sm_monitored = 0;
Olaf Kirch977faf32006-10-04 02:15:51 -0700119 }
Olaf Kirch8dead0d2006-10-04 02:15:53 -0700120 nsm_release(nsm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 return status;
122}
123
124/*
125 * Create NSM client for the local host
126 */
127static struct rpc_clnt *
128nsm_create(void)
129{
Chuck Levere1ec7892006-08-22 20:06:20 -0400130 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\0896a722007-09-10 13:48:23 -0400136 .protocol = XPRT_TRANSPORT_UDP,
Chuck Levere1ec7892006-08-22 20:06:20 -0400137 .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 Levere1ec7892006-08-22 20:06:20 -0400143 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Chuck Levere1ec7892006-08-22 20:06:20 -0400145 return rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146}
147
148/*
149 * XDR functions for NSM.
150 */
151
Chuck Lever099bd052008-03-14 14:25:32 -0400152static __be32 *xdr_encode_nsm_string(__be32 *p, char *string)
153{
154 size_t len = strlen(string);
155
156 if (len > SM_MAXSTRLEN)
157 len = SM_MAXSTRLEN;
158 return xdr_encode_opaque(p, string, len);
159}
160
Al Viro52921e02006-10-19 23:28:46 -0700161static __be32 *
162xdr_encode_common(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163{
Olaf Kirchabd1f502006-10-04 02:16:01 -0700164 char buffer[20], *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
166 /*
167 * Use the dotted-quad IP address of the remote host as
168 * identifier. Linux statd always looks up the canonical
169 * hostname first for whatever remote hostname it receives,
170 * so this works alright.
171 */
Olaf Kirchabd1f502006-10-04 02:16:01 -0700172 if (nsm_use_hostnames) {
173 name = argp->mon_name;
174 } else {
175 sprintf(buffer, "%u.%u.%u.%u", NIPQUAD(argp->addr));
176 name = buffer;
177 }
178 if (!(p = xdr_encode_string(p, name))
Serge E. Hallyne9ff3992006-10-02 02:18:11 -0700179 || !(p = xdr_encode_string(p, utsname()->nodename)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 return ERR_PTR(-EIO);
181 *p++ = htonl(argp->prog);
182 *p++ = htonl(argp->vers);
183 *p++ = htonl(argp->proc);
184
185 return p;
186}
187
188static int
Al Viro52921e02006-10-19 23:28:46 -0700189xdr_encode_mon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190{
191 p = xdr_encode_common(rqstp, p, argp);
192 if (IS_ERR(p))
193 return PTR_ERR(p);
Olaf Kirch9502c522006-10-04 02:15:56 -0700194
195 /* Surprise - there may even be room for an IPv6 address now */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 *p++ = argp->addr;
Olaf Kirch9502c522006-10-04 02:15:56 -0700197 *p++ = 0;
198 *p++ = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *p++ = 0;
200 rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p);
201 return 0;
202}
203
204static int
Al Viro52921e02006-10-19 23:28:46 -0700205xdr_encode_unmon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 p = xdr_encode_common(rqstp, p, argp);
208 if (IS_ERR(p))
209 return PTR_ERR(p);
210 rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p);
211 return 0;
212}
213
214static int
Al Viro52921e02006-10-19 23:28:46 -0700215xdr_decode_stat_res(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 resp->status = ntohl(*p++);
218 resp->state = ntohl(*p++);
219 dprintk("nsm: xdr_decode_stat_res status %d state %d\n",
220 resp->status, resp->state);
221 return 0;
222}
223
224static int
Al Viro52921e02006-10-19 23:28:46 -0700225xdr_decode_stat(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226{
227 resp->state = ntohl(*p++);
228 return 0;
229}
230
231#define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
232#define SM_my_id_sz (3+1+SM_my_name_sz)
233#define SM_mon_id_sz (1+XDR_QUADLEN(20)+SM_my_id_sz)
234#define SM_mon_sz (SM_mon_id_sz+4)
235#define SM_monres_sz 2
236#define SM_unmonres_sz 1
237
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238static struct rpc_procinfo nsm_procedures[] = {
239[SM_MON] = {
240 .p_proc = SM_MON,
241 .p_encode = (kxdrproc_t) xdr_encode_mon,
242 .p_decode = (kxdrproc_t) xdr_decode_stat_res,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400243 .p_arglen = SM_mon_sz,
244 .p_replen = SM_monres_sz,
Chuck Levercc0175c2006-03-20 13:44:22 -0500245 .p_statidx = SM_MON,
246 .p_name = "MONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 },
248[SM_UNMON] = {
249 .p_proc = SM_UNMON,
250 .p_encode = (kxdrproc_t) xdr_encode_unmon,
251 .p_decode = (kxdrproc_t) xdr_decode_stat,
Chuck Lever2bea90d2007-03-29 16:47:53 -0400252 .p_arglen = SM_mon_id_sz,
253 .p_replen = SM_unmonres_sz,
Chuck Levercc0175c2006-03-20 13:44:22 -0500254 .p_statidx = SM_UNMON,
255 .p_name = "UNMONITOR",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 },
257};
258
259static struct rpc_version nsm_version1 = {
Tobias Klausere8c96f82006-03-24 03:15:34 -0800260 .number = 1,
261 .nrprocs = ARRAY_SIZE(nsm_procedures),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 .procs = nsm_procedures
263};
264
265static struct rpc_version * nsm_version[] = {
266 [1] = &nsm_version1,
267};
268
269static struct rpc_stat nsm_stats;
270
271static struct rpc_program nsm_program = {
272 .name = "statd",
273 .number = SM_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800274 .nrvers = ARRAY_SIZE(nsm_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 .version = nsm_version,
276 .stats = &nsm_stats
277};