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/svc.h>
14 #include <linux/lockd/lockd.h>
15 #include <linux/lockd/sm_inter.h>
18 #define NLMDBG_FACILITY NLMDBG_MONITOR
20 static struct rpc_clnt
* nsm_create(void);
22 static struct rpc_program nsm_program
;
30 * Common procedure for SM_MON/SM_UNMON calls
33 nsm_mon_unmon(struct nlm_host
*host
, u32 proc
, struct nsm_res
*res
)
35 struct rpc_clnt
*clnt
;
41 status
= PTR_ERR(clnt
);
45 args
.addr
= host
->h_addr
.sin_addr
.s_addr
;
46 args
.proto
= (host
->h_proto
<<1) | host
->h_server
;
47 args
.prog
= NLM_PROGRAM
;
48 args
.vers
= host
->h_version
;
49 args
.proc
= NLMPROC_NSM_NOTIFY
;
50 memset(res
, 0, sizeof(*res
));
52 status
= rpc_call(clnt
, proc
, &args
, res
, 0);
54 printk(KERN_DEBUG
"nsm_mon_unmon: rpc failed, status=%d\n",
63 * Set up monitoring of a remote host
66 nsm_monitor(struct nlm_host
*host
)
71 dprintk("lockd: nsm_monitor(%s)\n", host
->h_name
);
73 status
= nsm_mon_unmon(host
, SM_MON
, &res
);
75 if (status
< 0 || res
.status
!= 0)
76 printk(KERN_NOTICE
"lockd: cannot monitor %s\n", host
->h_name
);
78 host
->h_monitored
= 1;
83 * Cease to monitor remote host
86 nsm_unmonitor(struct nlm_host
*host
)
91 dprintk("lockd: nsm_unmonitor(%s)\n", host
->h_name
);
93 status
= nsm_mon_unmon(host
, SM_UNMON
, &res
);
95 printk(KERN_NOTICE
"lockd: cannot unmonitor %s\n", host
->h_name
);
97 host
->h_monitored
= 0;
102 * Create NSM client for the local host
104 static struct rpc_clnt
*
107 struct rpc_xprt
*xprt
;
108 struct rpc_clnt
*clnt
;
109 struct sockaddr_in sin
;
111 sin
.sin_family
= AF_INET
;
112 sin
.sin_addr
.s_addr
= htonl(INADDR_LOOPBACK
);
115 xprt
= xprt_create_proto(IPPROTO_UDP
, &sin
, NULL
);
117 return (struct rpc_clnt
*)xprt
;
118 xprt
->resvport
= 1; /* NSM requires a reserved port */
120 clnt
= rpc_create_client(xprt
, "localhost",
121 &nsm_program
, SM_VERSION
,
125 clnt
->cl_softrtry
= 1;
127 clnt
->cl_oneshot
= 1;
135 * XDR functions for NSM.
139 xdr_encode_common(struct rpc_rqst
*rqstp
, u32
*p
, struct nsm_args
*argp
)
144 * Use the dotted-quad IP address of the remote host as
145 * identifier. Linux statd always looks up the canonical
146 * hostname first for whatever remote hostname it receives,
147 * so this works alright.
149 sprintf(buffer
, "%u.%u.%u.%u", NIPQUAD(argp
->addr
));
150 if (!(p
= xdr_encode_string(p
, buffer
))
151 || !(p
= xdr_encode_string(p
, system_utsname
.nodename
)))
152 return ERR_PTR(-EIO
);
153 *p
++ = htonl(argp
->prog
);
154 *p
++ = htonl(argp
->vers
);
155 *p
++ = htonl(argp
->proc
);
161 xdr_encode_mon(struct rpc_rqst
*rqstp
, u32
*p
, struct nsm_args
*argp
)
163 p
= xdr_encode_common(rqstp
, p
, argp
);
170 rqstp
->rq_slen
= xdr_adjust_iovec(rqstp
->rq_svec
, p
);
175 xdr_encode_unmon(struct rpc_rqst
*rqstp
, u32
*p
, struct nsm_args
*argp
)
177 p
= xdr_encode_common(rqstp
, p
, argp
);
180 rqstp
->rq_slen
= xdr_adjust_iovec(rqstp
->rq_svec
, p
);
185 xdr_decode_stat_res(struct rpc_rqst
*rqstp
, u32
*p
, struct nsm_res
*resp
)
187 resp
->status
= ntohl(*p
++);
188 resp
->state
= ntohl(*p
++);
189 dprintk("nsm: xdr_decode_stat_res status %d state %d\n",
190 resp
->status
, resp
->state
);
195 xdr_decode_stat(struct rpc_rqst
*rqstp
, u32
*p
, struct nsm_res
*resp
)
197 resp
->state
= ntohl(*p
++);
201 #define SM_my_name_sz (1+XDR_QUADLEN(SM_MAXSTRLEN))
202 #define SM_my_id_sz (3+1+SM_my_name_sz)
203 #define SM_mon_id_sz (1+XDR_QUADLEN(20)+SM_my_id_sz)
204 #define SM_mon_sz (SM_mon_id_sz+4)
205 #define SM_monres_sz 2
206 #define SM_unmonres_sz 1
209 # define MAX(a, b) (((a) > (b))? (a) : (b))
212 static struct rpc_procinfo nsm_procedures
[] = {
215 .p_encode
= (kxdrproc_t
) xdr_encode_mon
,
216 .p_decode
= (kxdrproc_t
) xdr_decode_stat_res
,
217 .p_bufsiz
= MAX(SM_mon_sz
, SM_monres_sz
) << 2,
221 .p_encode
= (kxdrproc_t
) xdr_encode_unmon
,
222 .p_decode
= (kxdrproc_t
) xdr_decode_stat
,
223 .p_bufsiz
= MAX(SM_mon_id_sz
, SM_unmonres_sz
) << 2,
227 static struct rpc_version nsm_version1
= {
229 .nrprocs
= sizeof(nsm_procedures
)/sizeof(nsm_procedures
[0]),
230 .procs
= nsm_procedures
233 static struct rpc_version
* nsm_version
[] = {
237 static struct rpc_stat nsm_stats
;
239 static struct rpc_program nsm_program
= {
241 .number
= SM_PROGRAM
,
242 .nrvers
= sizeof(nsm_version
)/sizeof(nsm_version
[0]),
243 .version
= nsm_version
,