4 * The kernel statd client.
6 * Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
9 #include <linux/types.h>
10 #include <linux/utsname.h>
11 #include <linux/kernel.h>
12 #include <linux/sunrpc/clnt.h>
13 #include <linux/sunrpc/xprtsock.h>
14 #include <linux/sunrpc/svc.h>
15 #include <linux/lockd/lockd.h>
16 #include <linux/lockd/sm_inter.h>
19 #define NLMDBG_FACILITY NLMDBG_MONITOR
21 static struct rpc_clnt * nsm_create(void);
23 static struct rpc_program nsm_program;
31 * Common procedure for SM_MON/SM_UNMON calls
34 nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res)
36 struct rpc_clnt *clnt;
38 struct nsm_args args = {
39 .addr = nsm_addr_in(nsm)->sin_addr.s_addr,
42 .proc = NLMPROC_NSM_NOTIFY,
43 .mon_name = nsm->sm_mon_name,
45 struct rpc_message msg = {
52 status = PTR_ERR(clnt);
53 dprintk("lockd: failed to create NSM upcall transport, "
54 "status=%d\n", status);
58 memset(res, 0, sizeof(*res));
60 msg.rpc_proc = &clnt->cl_procinfo[proc];
61 status = rpc_call_sync(clnt, &msg, 0);
63 dprintk("lockd: NSM upcall RPC failed, status=%d\n",
67 rpc_shutdown_client(clnt);
73 * Set up monitoring of a remote host
76 nsm_monitor(struct nlm_host *host)
78 struct nsm_handle *nsm = host->h_nsmhandle;
82 dprintk("lockd: nsm_monitor(%s)\n", nsm->sm_name);
84 if (nsm->sm_monitored)
88 * Choose whether to record the caller_name or IP address of
89 * this peer in the local rpc.statd's database.
91 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
93 status = nsm_mon_unmon(nsm, SM_MON, &res);
97 printk(KERN_NOTICE "lockd: cannot monitor %s\n", nsm->sm_name);
99 nsm->sm_monitored = 1;
104 * Cease to monitor remote host
107 nsm_unmonitor(struct nlm_host *host)
109 struct nsm_handle *nsm = host->h_nsmhandle;
115 host->h_nsmhandle = NULL;
117 if (atomic_read(&nsm->sm_count) == 1
118 && nsm->sm_monitored && !nsm->sm_sticky) {
119 dprintk("lockd: nsm_unmonitor(%s)\n", nsm->sm_name);
121 status = nsm_mon_unmon(nsm, SM_UNMON, &res);
123 printk(KERN_NOTICE "lockd: cannot unmonitor %s\n",
126 nsm->sm_monitored = 0;
133 * Create NSM client for the local host
135 static struct rpc_clnt *
138 struct sockaddr_in sin = {
139 .sin_family = AF_INET,
140 .sin_addr.s_addr = htonl(INADDR_LOOPBACK),
143 struct rpc_create_args args = {
144 .protocol = XPRT_TRANSPORT_UDP,
145 .address = (struct sockaddr *)&sin,
146 .addrsize = sizeof(sin),
147 .servername = "localhost",
148 .program = &nsm_program,
149 .version = SM_VERSION,
150 .authflavor = RPC_AUTH_NULL,
153 return rpc_create(&args);
157 * XDR functions for NSM.
159 * See http://www.opengroup.org/ for details on the Network
160 * Status Monitor wire protocol.
163 static __be32 *xdr_encode_nsm_string(__be32 *p, char *string)
165 size_t len = strlen(string);
167 if (len > SM_MAXSTRLEN)
169 return xdr_encode_opaque(p, string, len);
173 * "mon_name" specifies the host to be monitored.
175 static __be32 *xdr_encode_mon_name(__be32 *p, struct nsm_args *argp)
177 return xdr_encode_nsm_string(p, argp->mon_name);
181 * The "my_id" argument specifies the hostname and RPC procedure
182 * to be called when the status manager receives notification
183 * (via the SM_NOTIFY call) that the state of host "mon_name"
186 static __be32 *xdr_encode_my_id(__be32 *p, struct nsm_args *argp)
188 p = xdr_encode_nsm_string(p, utsname()->nodename);
190 return ERR_PTR(-EIO);
192 *p++ = htonl(argp->prog);
193 *p++ = htonl(argp->vers);
194 *p++ = htonl(argp->proc);
200 * The "mon_id" argument specifies the non-private arguments
201 * of an SM_MON or SM_UNMON call.
203 static __be32 *xdr_encode_mon_id(__be32 *p, struct nsm_args *argp)
205 p = xdr_encode_mon_name(p, argp);
207 return ERR_PTR(-EIO);
209 return xdr_encode_my_id(p, argp);
213 * The "priv" argument may contain private information required
214 * by the SM_MON call. This information will be supplied in the
217 * Linux provides the raw IP address of the monitored host,
218 * left in network byte order.
220 static __be32 *xdr_encode_priv(__be32 *p, struct nsm_args *argp)
231 xdr_encode_mon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp)
233 p = xdr_encode_mon_id(p, argp);
237 p = xdr_encode_priv(p, argp);
241 rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p);
246 xdr_encode_unmon(struct rpc_rqst *rqstp, __be32 *p, struct nsm_args *argp)
248 p = xdr_encode_mon_id(p, argp);
251 rqstp->rq_slen = xdr_adjust_iovec(rqstp->rq_svec, p);
256 xdr_decode_stat_res(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp)
258 resp->status = ntohl(*p++);
259 resp->state = ntohl(*p++);
260 dprintk("nsm: xdr_decode_stat_res status %d state %d\n",
261 resp->status, resp->state);
266 xdr_decode_stat(struct rpc_rqst *rqstp, __be32 *p, struct nsm_res *resp)
268 resp->state = ntohl(*p++);
272 #define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
273 #define SM_my_id_sz (SM_my_name_sz+3)
274 #define SM_mon_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
275 #define SM_mon_id_sz (SM_mon_name_sz+SM_my_id_sz)
276 #define SM_priv_sz (XDR_QUADLEN(SM_PRIV_SIZE))
277 #define SM_mon_sz (SM_mon_id_sz+SM_priv_sz)
278 #define SM_monres_sz 2
279 #define SM_unmonres_sz 1
281 static struct rpc_procinfo nsm_procedures[] = {
284 .p_encode = (kxdrproc_t) xdr_encode_mon,
285 .p_decode = (kxdrproc_t) xdr_decode_stat_res,
286 .p_arglen = SM_mon_sz,
287 .p_replen = SM_monres_sz,
293 .p_encode = (kxdrproc_t) xdr_encode_unmon,
294 .p_decode = (kxdrproc_t) xdr_decode_stat,
295 .p_arglen = SM_mon_id_sz,
296 .p_replen = SM_unmonres_sz,
297 .p_statidx = SM_UNMON,
298 .p_name = "UNMONITOR",
302 static struct rpc_version nsm_version1 = {
304 .nrprocs = ARRAY_SIZE(nsm_procedures),
305 .procs = nsm_procedures
308 static struct rpc_version * nsm_version[] = {
312 static struct rpc_stat nsm_stats;
314 static struct rpc_program nsm_program = {
316 .number = SM_PROGRAM,
317 .nrvers = ARRAY_SIZE(nsm_version),
318 .version = nsm_version,