aboutsummaryrefslogtreecommitdiffstats
path: root/fs/lockd/mon.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/lockd/mon.c')
-rw-r--r--fs/lockd/mon.c27
1 files changed, 8 insertions, 19 deletions
diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c
index 497dfea02e8a..a606fbbf804d 100644
--- a/fs/lockd/mon.c
+++ b/fs/lockd/mon.c
@@ -18,8 +18,6 @@
18 18
19#define NLMDBG_FACILITY NLMDBG_MONITOR 19#define NLMDBG_FACILITY NLMDBG_MONITOR
20 20
21#define XDR_ADDRBUF_LEN (20)
22
23static struct rpc_clnt * nsm_create(void); 21static struct rpc_clnt * nsm_create(void);
24 22
25static struct rpc_program nsm_program; 23static struct rpc_program nsm_program;
@@ -42,7 +40,7 @@ nsm_mon_unmon(struct nsm_handle *nsm, u32 proc, struct nsm_res *res)
42 .prog = NLM_PROGRAM, 40 .prog = NLM_PROGRAM,
43 .vers = 3, 41 .vers = 3,
44 .proc = NLMPROC_NSM_NOTIFY, 42 .proc = NLMPROC_NSM_NOTIFY,
45 .mon_name = nsm->sm_name, 43 .mon_name = nsm->sm_mon_name,
46 }; 44 };
47 struct rpc_message msg = { 45 struct rpc_message msg = {
48 .rpc_argp = &args, 46 .rpc_argp = &args,
@@ -87,6 +85,12 @@ nsm_monitor(struct nlm_host *host)
87 if (nsm->sm_monitored) 85 if (nsm->sm_monitored)
88 return 0; 86 return 0;
89 87
88 /*
89 * Choose whether to record the caller_name or IP address of
90 * this peer in the local rpc.statd's database.
91 */
92 nsm->sm_mon_name = nsm_use_hostnames ? nsm->sm_name : nsm->sm_addrbuf;
93
90 status = nsm_mon_unmon(nsm, SM_MON, &res); 94 status = nsm_mon_unmon(nsm, SM_MON, &res);
91 95
92 if (status < 0 || res.status != 0) 96 if (status < 0 || res.status != 0)
@@ -167,25 +171,10 @@ static __be32 *xdr_encode_nsm_string(__be32 *p, char *string)
167 171
168/* 172/*
169 * "mon_name" specifies the host to be monitored. 173 * "mon_name" specifies the host to be monitored.
170 *
171 * Linux uses a text version of the IP address of the remote
172 * host as the host identifier (the "mon_name" argument).
173 *
174 * Linux statd always looks up the canonical hostname first for
175 * whatever remote hostname it receives, so this works alright.
176 */ 174 */
177static __be32 *xdr_encode_mon_name(__be32 *p, struct nsm_args *argp) 175static __be32 *xdr_encode_mon_name(__be32 *p, struct nsm_args *argp)
178{ 176{
179 char buffer[XDR_ADDRBUF_LEN + 1]; 177 return xdr_encode_nsm_string(p, argp->mon_name);
180 char *name = argp->mon_name;
181
182 if (!nsm_use_hostnames) {
183 snprintf(buffer, XDR_ADDRBUF_LEN,
184 "%pI4", &argp->addr);
185 name = buffer;
186 }
187
188 return xdr_encode_nsm_string(p, name);
189} 178}
190 179
191/* 180/*