blob: ed0a27ed538dd750e2021a13597daf4dd3c8ba59 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Chuck Lever19207232007-07-01 12:13:33 -04002 * In-kernel MOUNT protocol client
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 1997, Olaf Kirch <okir@monad.swb.de>
5 */
6
7#include <linux/types.h>
8#include <linux/socket.h>
9#include <linux/kernel.h>
10#include <linux/errno.h>
11#include <linux/uio.h>
12#include <linux/net.h>
13#include <linux/in.h>
14#include <linux/sunrpc/clnt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/sunrpc/sched.h>
16#include <linux/nfs_fs.h>
Steve Dickson84919452008-04-11 20:03:06 -040017#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070018
19#ifdef RPC_DEBUG
Chuck Lever3ea97302007-07-01 12:13:27 -040020# define NFSDBG_FACILITY NFSDBG_MOUNT
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#endif
22
Chuck Lever2ad78092009-06-17 18:02:11 -070023/*
Chuck Lever29a1bd62009-06-17 18:02:11 -070024 * Defined by RFC 1094, section A.3; and RFC 1813, section 5.1.4
25 */
26#define MNTPATHLEN (1024)
27
28/*
29 * XDR data type sizes
30 */
31#define encode_dirpath_sz (1 + XDR_QUADLEN(MNTPATHLEN))
Chuck Leverfb125292009-06-17 18:02:12 -070032#define MNT_status_sz (1)
33#define MNT_fhs_status_sz (1)
Chuck Lever4fdcd992009-06-17 18:02:12 -070034#define MNT_fhandle_sz XDR_QUADLEN(NFS2_FHSIZE)
35#define MNT_fhandle3_sz (1 + XDR_QUADLEN(NFS3_FHSIZE))
Chuck Levera14017d2009-06-17 18:02:12 -070036#define MNT_authflav3_sz (1 + NFS_MAX_SECFLAVORS)
Chuck Lever29a1bd62009-06-17 18:02:11 -070037
38/*
39 * XDR argument and result sizes
40 */
41#define MNT_enc_dirpath_sz encode_dirpath_sz
42
43/*
Chuck Lever2ad78092009-06-17 18:02:11 -070044 * Defined by RFC 1094, section A.5
45 */
46enum {
47 MOUNTPROC_NULL = 0,
48 MOUNTPROC_MNT = 1,
49 MOUNTPROC_DUMP = 2,
50 MOUNTPROC_UMNT = 3,
51 MOUNTPROC_UMNTALL = 4,
52 MOUNTPROC_EXPORT = 5,
53};
54
55/*
56 * Defined by RFC 1813, section 5.2
57 */
58enum {
59 MOUNTPROC3_NULL = 0,
60 MOUNTPROC3_MNT = 1,
61 MOUNTPROC3_DUMP = 2,
62 MOUNTPROC3_UMNT = 3,
63 MOUNTPROC3_UMNTALL = 4,
64 MOUNTPROC3_EXPORT = 5,
65};
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067static struct rpc_program mnt_program;
68
Chuck Leverfb125292009-06-17 18:02:12 -070069/*
70 * Defined by OpenGroup XNFS Version 3W, chapter 8
71 */
72enum mountstat {
73 MNT_OK = 0,
74 MNT_EPERM = 1,
75 MNT_ENOENT = 2,
76 MNT_EACCES = 13,
77 MNT_EINVAL = 22,
78};
79
80static struct {
81 u32 status;
82 int errno;
83} mnt_errtbl[] = {
84 { .status = MNT_OK, .errno = 0, },
85 { .status = MNT_EPERM, .errno = -EPERM, },
86 { .status = MNT_ENOENT, .errno = -ENOENT, },
87 { .status = MNT_EACCES, .errno = -EACCES, },
88 { .status = MNT_EINVAL, .errno = -EINVAL, },
89};
90
91/*
92 * Defined by RFC 1813, section 5.1.5
93 */
94enum mountstat3 {
95 MNT3_OK = 0, /* no error */
96 MNT3ERR_PERM = 1, /* Not owner */
97 MNT3ERR_NOENT = 2, /* No such file or directory */
98 MNT3ERR_IO = 5, /* I/O error */
99 MNT3ERR_ACCES = 13, /* Permission denied */
100 MNT3ERR_NOTDIR = 20, /* Not a directory */
101 MNT3ERR_INVAL = 22, /* Invalid argument */
102 MNT3ERR_NAMETOOLONG = 63, /* Filename too long */
103 MNT3ERR_NOTSUPP = 10004, /* Operation not supported */
104 MNT3ERR_SERVERFAULT = 10006, /* A failure on the server */
105};
106
107static struct {
108 u32 status;
109 int errno;
110} mnt3_errtbl[] = {
111 { .status = MNT3_OK, .errno = 0, },
112 { .status = MNT3ERR_PERM, .errno = -EPERM, },
113 { .status = MNT3ERR_NOENT, .errno = -ENOENT, },
114 { .status = MNT3ERR_IO, .errno = -EIO, },
115 { .status = MNT3ERR_ACCES, .errno = -EACCES, },
116 { .status = MNT3ERR_NOTDIR, .errno = -ENOTDIR, },
117 { .status = MNT3ERR_INVAL, .errno = -EINVAL, },
118 { .status = MNT3ERR_NAMETOOLONG, .errno = -ENAMETOOLONG, },
119 { .status = MNT3ERR_NOTSUPP, .errno = -ENOTSUPP, },
120 { .status = MNT3ERR_SERVERFAULT, .errno = -ESERVERFAULT, },
121};
122
123struct mountres {
124 int errno;
125 struct nfs_fh *fh;
Chuck Levera14017d2009-06-17 18:02:12 -0700126 unsigned int *auth_count;
127 rpc_authflavor_t *auth_flavors;
Chuck Leverfb125292009-06-17 18:02:12 -0700128};
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130struct mnt_fhstatus {
Chuck Lever19207232007-07-01 12:13:33 -0400131 u32 status;
132 struct nfs_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
Chuck Lever3ea97302007-07-01 12:13:27 -0400135/**
136 * nfs_mount - Obtain an NFS file handle for the given host and path
Chuck Leverc5d120f2008-12-23 15:21:35 -0500137 * @info: pointer to mount request arguments
Chuck Lever3ea97302007-07-01 12:13:27 -0400138 *
139 * Uses default timeout parameters specified by underlying transport.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 */
Chuck Leverc5d120f2008-12-23 15:21:35 -0500141int nfs_mount(struct nfs_mount_request *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct mnt_fhstatus result = {
Chuck Leverc5d120f2008-12-23 15:21:35 -0500144 .fh = info->fh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500146 struct rpc_message msg = {
Chuck Leverc5d120f2008-12-23 15:21:35 -0500147 .rpc_argp = info->dirpath,
Chuck Leverdead28d2006-03-20 13:44:23 -0500148 .rpc_resp = &result,
149 };
Chuck Lever3ea97302007-07-01 12:13:27 -0400150 struct rpc_create_args args = {
Chuck Leverc5d120f2008-12-23 15:21:35 -0500151 .protocol = info->protocol,
152 .address = info->sap,
153 .addrsize = info->salen,
154 .servername = info->hostname,
Chuck Lever3ea97302007-07-01 12:13:27 -0400155 .program = &mnt_program,
Chuck Leverc5d120f2008-12-23 15:21:35 -0500156 .version = info->version,
Chuck Lever3ea97302007-07-01 12:13:27 -0400157 .authflavor = RPC_AUTH_UNIX,
Chuck Lever3ea97302007-07-01 12:13:27 -0400158 };
159 struct rpc_clnt *mnt_clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
Chuck Lever3ea97302007-07-01 12:13:27 -0400162 dprintk("NFS: sending MNT request for %s:%s\n",
Chuck Leverc5d120f2008-12-23 15:21:35 -0500163 (info->hostname ? info->hostname : "server"),
164 info->dirpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Chuck Lever50a737f2008-12-23 15:21:37 -0500166 if (info->noresvport)
167 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
168
Chuck Lever3ea97302007-07-01 12:13:27 -0400169 mnt_clnt = rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 if (IS_ERR(mnt_clnt))
Chuck Lever013a8c12007-07-01 12:13:38 -0400171 goto out_clnt_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Chuck Leverc5d120f2008-12-23 15:21:35 -0500173 if (info->version == NFS_MNT3_VERSION)
Chuck Leverdead28d2006-03-20 13:44:23 -0500174 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
175 else
Chuck Lever2ad78092009-06-17 18:02:11 -0700176 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC_MNT];
Chuck Leverdead28d2006-03-20 13:44:23 -0500177
178 status = rpc_call_sync(mnt_clnt, &msg, 0);
Trond Myklebust90c57552007-06-09 19:49:36 -0400179 rpc_shutdown_client(mnt_clnt);
Chuck Lever013a8c12007-07-01 12:13:38 -0400180
181 if (status < 0)
182 goto out_call_err;
183 if (result.status != 0)
184 goto out_mnt_err;
185
186 dprintk("NFS: MNT request succeeded\n");
187 status = 0;
188
189out:
190 return status;
191
192out_clnt_err:
193 status = PTR_ERR(mnt_clnt);
194 dprintk("NFS: failed to create RPC client, status=%d\n", status);
195 goto out;
196
197out_call_err:
198 dprintk("NFS: failed to start MNT request, status=%d\n", status);
199 goto out;
200
201out_mnt_err:
202 dprintk("NFS: MNT server returned result %d\n", result.status);
Steve Dickson84919452008-04-11 20:03:06 -0400203 status = nfs_stat_to_errno(result.status);
Chuck Lever013a8c12007-07-01 12:13:38 -0400204 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/*
208 * XDR encode/decode functions for MOUNT
209 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Chuck Lever29a1bd62009-06-17 18:02:11 -0700211static int encode_mntdirpath(struct xdr_stream *xdr, const char *pathname)
212{
213 const u32 pathname_len = strlen(pathname);
214 __be32 *p;
215
216 if (unlikely(pathname_len > MNTPATHLEN))
217 return -EIO;
218
219 p = xdr_reserve_space(xdr, sizeof(u32) + pathname_len);
220 if (unlikely(p == NULL))
221 return -EIO;
222 xdr_encode_opaque(p, pathname, pathname_len);
223
224 return 0;
225}
226
227static int mnt_enc_dirpath(struct rpc_rqst *req, __be32 *p,
228 const char *dirpath)
229{
230 struct xdr_stream xdr;
231
232 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
233 return encode_mntdirpath(&xdr, dirpath);
234}
235
Chuck Lever19207232007-07-01 12:13:33 -0400236static int xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p,
237 struct mnt_fhstatus *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 struct nfs_fh *fh = res->fh;
240
241 if ((res->status = ntohl(*p++)) == 0) {
242 fh->size = NFS2_FHSIZE;
243 memcpy(fh->data, p, NFS2_FHSIZE);
244 }
245 return 0;
246}
247
Chuck Leverfb125292009-06-17 18:02:12 -0700248/*
249 * RFC 1094: "A non-zero status indicates some sort of error. In this
250 * case, the status is a UNIX error number." This can be problematic
251 * if the server and client use different errno values for the same
252 * error.
253 *
254 * However, the OpenGroup XNFS spec provides a simple mapping that is
255 * independent of local errno values on the server and the client.
256 */
257static int decode_status(struct xdr_stream *xdr, struct mountres *res)
258{
259 unsigned int i;
260 u32 status;
261 __be32 *p;
262
263 p = xdr_inline_decode(xdr, sizeof(status));
264 if (unlikely(p == NULL))
265 return -EIO;
266 status = ntohl(*p);
267
268 for (i = 0; i <= ARRAY_SIZE(mnt_errtbl); i++) {
269 if (mnt_errtbl[i].status == status) {
270 res->errno = mnt_errtbl[i].errno;
271 return 0;
272 }
273 }
274
275 dprintk("NFS: unrecognized MNT status code: %u\n", status);
276 res->errno = -EACCES;
277 return 0;
278}
279
Chuck Lever4fdcd992009-06-17 18:02:12 -0700280static int decode_fhandle(struct xdr_stream *xdr, struct mountres *res)
281{
282 struct nfs_fh *fh = res->fh;
283 __be32 *p;
284
285 p = xdr_inline_decode(xdr, NFS2_FHSIZE);
286 if (unlikely(p == NULL))
287 return -EIO;
288
289 fh->size = NFS2_FHSIZE;
290 memcpy(fh->data, p, NFS2_FHSIZE);
291 return 0;
292}
293
Chuck Leverfb125292009-06-17 18:02:12 -0700294static int decode_fhs_status(struct xdr_stream *xdr, struct mountres *res)
295{
296 unsigned int i;
297 u32 status;
298 __be32 *p;
299
300 p = xdr_inline_decode(xdr, sizeof(status));
301 if (unlikely(p == NULL))
302 return -EIO;
303 status = ntohl(*p);
304
305 for (i = 0; i <= ARRAY_SIZE(mnt3_errtbl); i++) {
306 if (mnt3_errtbl[i].status == status) {
307 res->errno = mnt3_errtbl[i].errno;
308 return 0;
309 }
310 }
311
312 dprintk("NFS: unrecognized MNT3 status code: %u\n", status);
313 res->errno = -EACCES;
314 return 0;
315}
316
Chuck Lever4fdcd992009-06-17 18:02:12 -0700317static int decode_fhandle3(struct xdr_stream *xdr, struct mountres *res)
318{
319 struct nfs_fh *fh = res->fh;
320 u32 size;
321 __be32 *p;
322
323 p = xdr_inline_decode(xdr, sizeof(size));
324 if (unlikely(p == NULL))
325 return -EIO;
326
327 size = ntohl(*p++);
328 if (size > NFS3_FHSIZE || size == 0)
329 return -EIO;
330
331 p = xdr_inline_decode(xdr, size);
332 if (unlikely(p == NULL))
333 return -EIO;
334
335 fh->size = size;
336 memcpy(fh->data, p, size);
337 return 0;
338}
339
Chuck Levera14017d2009-06-17 18:02:12 -0700340static int decode_auth_flavors(struct xdr_stream *xdr, struct mountres *res)
341{
342 rpc_authflavor_t *flavors = res->auth_flavors;
343 unsigned int *count = res->auth_count;
344 u32 entries, i;
345 __be32 *p;
346
347 if (*count == 0)
348 return 0;
349
350 p = xdr_inline_decode(xdr, sizeof(entries));
351 if (unlikely(p == NULL))
352 return -EIO;
353 entries = ntohl(*p);
354 dprintk("NFS: received %u auth flavors\n", entries);
355 if (entries > NFS_MAX_SECFLAVORS)
356 entries = NFS_MAX_SECFLAVORS;
357
358 p = xdr_inline_decode(xdr, sizeof(u32) * entries);
359 if (unlikely(p == NULL))
360 return -EIO;
361
362 if (entries > *count)
363 entries = *count;
364
365 for (i = 0; i < entries; i++) {
366 flavors[i] = ntohl(*p++);
367 dprintk("NFS:\tflavor %u: %d\n", i, flavors[i]);
368 }
369 *count = i;
370
371 return 0;
372}
373
Chuck Lever19207232007-07-01 12:13:33 -0400374static int xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p,
375 struct mnt_fhstatus *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376{
377 struct nfs_fh *fh = res->fh;
Trond Myklebustb7e24452008-06-19 15:21:11 -0400378 unsigned size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379
380 if ((res->status = ntohl(*p++)) == 0) {
Trond Myklebustb7e24452008-06-19 15:21:11 -0400381 size = ntohl(*p++);
382 if (size <= NFS3_FHSIZE && size != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 fh->size = size;
384 memcpy(fh->data, p, size);
385 } else
386 res->status = -EBADHANDLE;
387 }
388 return 0;
389}
390
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391#define MNT_fhstatus_sz (1 + 8)
Chuck Lever2bea90d2007-03-29 16:47:53 -0400392#define MNT_fhstatus3_sz (1 + 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Chuck Lever19207232007-07-01 12:13:33 -0400394static struct rpc_procinfo mnt_procedures[] = {
Chuck Lever2ad78092009-06-17 18:02:11 -0700395 [MOUNTPROC_MNT] = {
396 .p_proc = MOUNTPROC_MNT,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700397 .p_encode = (kxdrproc_t)mnt_enc_dirpath,
Chuck Lever19207232007-07-01 12:13:33 -0400398 .p_decode = (kxdrproc_t) xdr_decode_fhstatus,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700399 .p_arglen = MNT_enc_dirpath_sz,
Chuck Lever19207232007-07-01 12:13:33 -0400400 .p_replen = MNT_fhstatus_sz,
Chuck Lever2ad78092009-06-17 18:02:11 -0700401 .p_statidx = MOUNTPROC_MNT,
Chuck Lever19207232007-07-01 12:13:33 -0400402 .p_name = "MOUNT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 },
404};
405
406static struct rpc_procinfo mnt3_procedures[] = {
Chuck Lever19207232007-07-01 12:13:33 -0400407 [MOUNTPROC3_MNT] = {
408 .p_proc = MOUNTPROC3_MNT,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700409 .p_encode = (kxdrproc_t)mnt_enc_dirpath,
Chuck Lever19207232007-07-01 12:13:33 -0400410 .p_decode = (kxdrproc_t) xdr_decode_fhstatus3,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700411 .p_arglen = MNT_enc_dirpath_sz,
Chuck Lever19207232007-07-01 12:13:33 -0400412 .p_replen = MNT_fhstatus3_sz,
413 .p_statidx = MOUNTPROC3_MNT,
414 .p_name = "MOUNT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 },
416};
417
418
Chuck Lever19207232007-07-01 12:13:33 -0400419static struct rpc_version mnt_version1 = {
420 .number = 1,
421 .nrprocs = 2,
422 .procs = mnt_procedures,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423};
424
Chuck Lever19207232007-07-01 12:13:33 -0400425static struct rpc_version mnt_version3 = {
426 .number = 3,
427 .nrprocs = 2,
428 .procs = mnt3_procedures,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429};
430
Chuck Lever19207232007-07-01 12:13:33 -0400431static struct rpc_version *mnt_version[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 NULL,
433 &mnt_version1,
434 NULL,
435 &mnt_version3,
436};
437
Chuck Lever19207232007-07-01 12:13:33 -0400438static struct rpc_stat mnt_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Chuck Lever19207232007-07-01 12:13:33 -0400440static struct rpc_program mnt_program = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 .name = "mount",
442 .number = NFS_MNT_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800443 .nrvers = ARRAY_SIZE(mnt_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 .version = mnt_version,
445 .stats = &mnt_stats,
446};