blob: 8429885bc72935ffe116c09757494c8838b3fc9d [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 Lever29a1bd62009-06-17 18:02:11 -070034
35/*
36 * XDR argument and result sizes
37 */
38#define MNT_enc_dirpath_sz encode_dirpath_sz
39
40/*
Chuck Lever2ad78092009-06-17 18:02:11 -070041 * Defined by RFC 1094, section A.5
42 */
43enum {
44 MOUNTPROC_NULL = 0,
45 MOUNTPROC_MNT = 1,
46 MOUNTPROC_DUMP = 2,
47 MOUNTPROC_UMNT = 3,
48 MOUNTPROC_UMNTALL = 4,
49 MOUNTPROC_EXPORT = 5,
50};
51
52/*
53 * Defined by RFC 1813, section 5.2
54 */
55enum {
56 MOUNTPROC3_NULL = 0,
57 MOUNTPROC3_MNT = 1,
58 MOUNTPROC3_DUMP = 2,
59 MOUNTPROC3_UMNT = 3,
60 MOUNTPROC3_UMNTALL = 4,
61 MOUNTPROC3_EXPORT = 5,
62};
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064static struct rpc_program mnt_program;
65
Chuck Leverfb125292009-06-17 18:02:12 -070066/*
67 * Defined by OpenGroup XNFS Version 3W, chapter 8
68 */
69enum mountstat {
70 MNT_OK = 0,
71 MNT_EPERM = 1,
72 MNT_ENOENT = 2,
73 MNT_EACCES = 13,
74 MNT_EINVAL = 22,
75};
76
77static struct {
78 u32 status;
79 int errno;
80} mnt_errtbl[] = {
81 { .status = MNT_OK, .errno = 0, },
82 { .status = MNT_EPERM, .errno = -EPERM, },
83 { .status = MNT_ENOENT, .errno = -ENOENT, },
84 { .status = MNT_EACCES, .errno = -EACCES, },
85 { .status = MNT_EINVAL, .errno = -EINVAL, },
86};
87
88/*
89 * Defined by RFC 1813, section 5.1.5
90 */
91enum mountstat3 {
92 MNT3_OK = 0, /* no error */
93 MNT3ERR_PERM = 1, /* Not owner */
94 MNT3ERR_NOENT = 2, /* No such file or directory */
95 MNT3ERR_IO = 5, /* I/O error */
96 MNT3ERR_ACCES = 13, /* Permission denied */
97 MNT3ERR_NOTDIR = 20, /* Not a directory */
98 MNT3ERR_INVAL = 22, /* Invalid argument */
99 MNT3ERR_NAMETOOLONG = 63, /* Filename too long */
100 MNT3ERR_NOTSUPP = 10004, /* Operation not supported */
101 MNT3ERR_SERVERFAULT = 10006, /* A failure on the server */
102};
103
104static struct {
105 u32 status;
106 int errno;
107} mnt3_errtbl[] = {
108 { .status = MNT3_OK, .errno = 0, },
109 { .status = MNT3ERR_PERM, .errno = -EPERM, },
110 { .status = MNT3ERR_NOENT, .errno = -ENOENT, },
111 { .status = MNT3ERR_IO, .errno = -EIO, },
112 { .status = MNT3ERR_ACCES, .errno = -EACCES, },
113 { .status = MNT3ERR_NOTDIR, .errno = -ENOTDIR, },
114 { .status = MNT3ERR_INVAL, .errno = -EINVAL, },
115 { .status = MNT3ERR_NAMETOOLONG, .errno = -ENAMETOOLONG, },
116 { .status = MNT3ERR_NOTSUPP, .errno = -ENOTSUPP, },
117 { .status = MNT3ERR_SERVERFAULT, .errno = -ESERVERFAULT, },
118};
119
120struct mountres {
121 int errno;
122 struct nfs_fh *fh;
123};
124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125struct mnt_fhstatus {
Chuck Lever19207232007-07-01 12:13:33 -0400126 u32 status;
127 struct nfs_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128};
129
Chuck Lever3ea97302007-07-01 12:13:27 -0400130/**
131 * nfs_mount - Obtain an NFS file handle for the given host and path
Chuck Leverc5d120f2008-12-23 15:21:35 -0500132 * @info: pointer to mount request arguments
Chuck Lever3ea97302007-07-01 12:13:27 -0400133 *
134 * Uses default timeout parameters specified by underlying transport.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
Chuck Leverc5d120f2008-12-23 15:21:35 -0500136int nfs_mount(struct nfs_mount_request *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 struct mnt_fhstatus result = {
Chuck Leverc5d120f2008-12-23 15:21:35 -0500139 .fh = info->fh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 };
Chuck Leverdead28d2006-03-20 13:44:23 -0500141 struct rpc_message msg = {
Chuck Leverc5d120f2008-12-23 15:21:35 -0500142 .rpc_argp = info->dirpath,
Chuck Leverdead28d2006-03-20 13:44:23 -0500143 .rpc_resp = &result,
144 };
Chuck Lever3ea97302007-07-01 12:13:27 -0400145 struct rpc_create_args args = {
Chuck Leverc5d120f2008-12-23 15:21:35 -0500146 .protocol = info->protocol,
147 .address = info->sap,
148 .addrsize = info->salen,
149 .servername = info->hostname,
Chuck Lever3ea97302007-07-01 12:13:27 -0400150 .program = &mnt_program,
Chuck Leverc5d120f2008-12-23 15:21:35 -0500151 .version = info->version,
Chuck Lever3ea97302007-07-01 12:13:27 -0400152 .authflavor = RPC_AUTH_UNIX,
Chuck Lever3ea97302007-07-01 12:13:27 -0400153 };
154 struct rpc_clnt *mnt_clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Chuck Lever3ea97302007-07-01 12:13:27 -0400157 dprintk("NFS: sending MNT request for %s:%s\n",
Chuck Leverc5d120f2008-12-23 15:21:35 -0500158 (info->hostname ? info->hostname : "server"),
159 info->dirpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Chuck Lever50a737f2008-12-23 15:21:37 -0500161 if (info->noresvport)
162 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
163
Chuck Lever3ea97302007-07-01 12:13:27 -0400164 mnt_clnt = rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 if (IS_ERR(mnt_clnt))
Chuck Lever013a8c12007-07-01 12:13:38 -0400166 goto out_clnt_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Chuck Leverc5d120f2008-12-23 15:21:35 -0500168 if (info->version == NFS_MNT3_VERSION)
Chuck Leverdead28d2006-03-20 13:44:23 -0500169 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
170 else
Chuck Lever2ad78092009-06-17 18:02:11 -0700171 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC_MNT];
Chuck Leverdead28d2006-03-20 13:44:23 -0500172
173 status = rpc_call_sync(mnt_clnt, &msg, 0);
Trond Myklebust90c57552007-06-09 19:49:36 -0400174 rpc_shutdown_client(mnt_clnt);
Chuck Lever013a8c12007-07-01 12:13:38 -0400175
176 if (status < 0)
177 goto out_call_err;
178 if (result.status != 0)
179 goto out_mnt_err;
180
181 dprintk("NFS: MNT request succeeded\n");
182 status = 0;
183
184out:
185 return status;
186
187out_clnt_err:
188 status = PTR_ERR(mnt_clnt);
189 dprintk("NFS: failed to create RPC client, status=%d\n", status);
190 goto out;
191
192out_call_err:
193 dprintk("NFS: failed to start MNT request, status=%d\n", status);
194 goto out;
195
196out_mnt_err:
197 dprintk("NFS: MNT server returned result %d\n", result.status);
Steve Dickson84919452008-04-11 20:03:06 -0400198 status = nfs_stat_to_errno(result.status);
Chuck Lever013a8c12007-07-01 12:13:38 -0400199 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202/*
203 * XDR encode/decode functions for MOUNT
204 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
Chuck Lever29a1bd62009-06-17 18:02:11 -0700206static int encode_mntdirpath(struct xdr_stream *xdr, const char *pathname)
207{
208 const u32 pathname_len = strlen(pathname);
209 __be32 *p;
210
211 if (unlikely(pathname_len > MNTPATHLEN))
212 return -EIO;
213
214 p = xdr_reserve_space(xdr, sizeof(u32) + pathname_len);
215 if (unlikely(p == NULL))
216 return -EIO;
217 xdr_encode_opaque(p, pathname, pathname_len);
218
219 return 0;
220}
221
222static int mnt_enc_dirpath(struct rpc_rqst *req, __be32 *p,
223 const char *dirpath)
224{
225 struct xdr_stream xdr;
226
227 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
228 return encode_mntdirpath(&xdr, dirpath);
229}
230
Chuck Lever19207232007-07-01 12:13:33 -0400231static int xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p,
232 struct mnt_fhstatus *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233{
234 struct nfs_fh *fh = res->fh;
235
236 if ((res->status = ntohl(*p++)) == 0) {
237 fh->size = NFS2_FHSIZE;
238 memcpy(fh->data, p, NFS2_FHSIZE);
239 }
240 return 0;
241}
242
Chuck Leverfb125292009-06-17 18:02:12 -0700243/*
244 * RFC 1094: "A non-zero status indicates some sort of error. In this
245 * case, the status is a UNIX error number." This can be problematic
246 * if the server and client use different errno values for the same
247 * error.
248 *
249 * However, the OpenGroup XNFS spec provides a simple mapping that is
250 * independent of local errno values on the server and the client.
251 */
252static int decode_status(struct xdr_stream *xdr, struct mountres *res)
253{
254 unsigned int i;
255 u32 status;
256 __be32 *p;
257
258 p = xdr_inline_decode(xdr, sizeof(status));
259 if (unlikely(p == NULL))
260 return -EIO;
261 status = ntohl(*p);
262
263 for (i = 0; i <= ARRAY_SIZE(mnt_errtbl); i++) {
264 if (mnt_errtbl[i].status == status) {
265 res->errno = mnt_errtbl[i].errno;
266 return 0;
267 }
268 }
269
270 dprintk("NFS: unrecognized MNT status code: %u\n", status);
271 res->errno = -EACCES;
272 return 0;
273}
274
275static int decode_fhs_status(struct xdr_stream *xdr, struct mountres *res)
276{
277 unsigned int i;
278 u32 status;
279 __be32 *p;
280
281 p = xdr_inline_decode(xdr, sizeof(status));
282 if (unlikely(p == NULL))
283 return -EIO;
284 status = ntohl(*p);
285
286 for (i = 0; i <= ARRAY_SIZE(mnt3_errtbl); i++) {
287 if (mnt3_errtbl[i].status == status) {
288 res->errno = mnt3_errtbl[i].errno;
289 return 0;
290 }
291 }
292
293 dprintk("NFS: unrecognized MNT3 status code: %u\n", status);
294 res->errno = -EACCES;
295 return 0;
296}
297
Chuck Lever19207232007-07-01 12:13:33 -0400298static int xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p,
299 struct mnt_fhstatus *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 struct nfs_fh *fh = res->fh;
Trond Myklebustb7e24452008-06-19 15:21:11 -0400302 unsigned size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303
304 if ((res->status = ntohl(*p++)) == 0) {
Trond Myklebustb7e24452008-06-19 15:21:11 -0400305 size = ntohl(*p++);
306 if (size <= NFS3_FHSIZE && size != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 fh->size = size;
308 memcpy(fh->data, p, size);
309 } else
310 res->status = -EBADHANDLE;
311 }
312 return 0;
313}
314
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315#define MNT_fhstatus_sz (1 + 8)
Chuck Lever2bea90d2007-03-29 16:47:53 -0400316#define MNT_fhstatus3_sz (1 + 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317
Chuck Lever19207232007-07-01 12:13:33 -0400318static struct rpc_procinfo mnt_procedures[] = {
Chuck Lever2ad78092009-06-17 18:02:11 -0700319 [MOUNTPROC_MNT] = {
320 .p_proc = MOUNTPROC_MNT,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700321 .p_encode = (kxdrproc_t)mnt_enc_dirpath,
Chuck Lever19207232007-07-01 12:13:33 -0400322 .p_decode = (kxdrproc_t) xdr_decode_fhstatus,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700323 .p_arglen = MNT_enc_dirpath_sz,
Chuck Lever19207232007-07-01 12:13:33 -0400324 .p_replen = MNT_fhstatus_sz,
Chuck Lever2ad78092009-06-17 18:02:11 -0700325 .p_statidx = MOUNTPROC_MNT,
Chuck Lever19207232007-07-01 12:13:33 -0400326 .p_name = "MOUNT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 },
328};
329
330static struct rpc_procinfo mnt3_procedures[] = {
Chuck Lever19207232007-07-01 12:13:33 -0400331 [MOUNTPROC3_MNT] = {
332 .p_proc = MOUNTPROC3_MNT,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700333 .p_encode = (kxdrproc_t)mnt_enc_dirpath,
Chuck Lever19207232007-07-01 12:13:33 -0400334 .p_decode = (kxdrproc_t) xdr_decode_fhstatus3,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700335 .p_arglen = MNT_enc_dirpath_sz,
Chuck Lever19207232007-07-01 12:13:33 -0400336 .p_replen = MNT_fhstatus3_sz,
337 .p_statidx = MOUNTPROC3_MNT,
338 .p_name = "MOUNT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 },
340};
341
342
Chuck Lever19207232007-07-01 12:13:33 -0400343static struct rpc_version mnt_version1 = {
344 .number = 1,
345 .nrprocs = 2,
346 .procs = mnt_procedures,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347};
348
Chuck Lever19207232007-07-01 12:13:33 -0400349static struct rpc_version mnt_version3 = {
350 .number = 3,
351 .nrprocs = 2,
352 .procs = mnt3_procedures,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353};
354
Chuck Lever19207232007-07-01 12:13:33 -0400355static struct rpc_version *mnt_version[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 NULL,
357 &mnt_version1,
358 NULL,
359 &mnt_version3,
360};
361
Chuck Lever19207232007-07-01 12:13:33 -0400362static struct rpc_stat mnt_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Chuck Lever19207232007-07-01 12:13:33 -0400364static struct rpc_program mnt_program = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 .name = "mount",
366 .number = NFS_MNT_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800367 .nrvers = ARRAY_SIZE(mnt_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 .version = mnt_version,
369 .stats = &mnt_stats,
370};