blob: 93361afcd5daca9ade0a779ad55d6225c4b274ae [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))
32
33/*
34 * XDR argument and result sizes
35 */
36#define MNT_enc_dirpath_sz encode_dirpath_sz
37
38/*
Chuck Lever2ad78092009-06-17 18:02:11 -070039 * Defined by RFC 1094, section A.5
40 */
41enum {
42 MOUNTPROC_NULL = 0,
43 MOUNTPROC_MNT = 1,
44 MOUNTPROC_DUMP = 2,
45 MOUNTPROC_UMNT = 3,
46 MOUNTPROC_UMNTALL = 4,
47 MOUNTPROC_EXPORT = 5,
48};
49
50/*
51 * Defined by RFC 1813, section 5.2
52 */
53enum {
54 MOUNTPROC3_NULL = 0,
55 MOUNTPROC3_MNT = 1,
56 MOUNTPROC3_DUMP = 2,
57 MOUNTPROC3_UMNT = 3,
58 MOUNTPROC3_UMNTALL = 4,
59 MOUNTPROC3_EXPORT = 5,
60};
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062static struct rpc_program mnt_program;
63
64struct mnt_fhstatus {
Chuck Lever19207232007-07-01 12:13:33 -040065 u32 status;
66 struct nfs_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067};
68
Chuck Lever3ea97302007-07-01 12:13:27 -040069/**
70 * nfs_mount - Obtain an NFS file handle for the given host and path
Chuck Leverc5d120f2008-12-23 15:21:35 -050071 * @info: pointer to mount request arguments
Chuck Lever3ea97302007-07-01 12:13:27 -040072 *
73 * Uses default timeout parameters specified by underlying transport.
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 */
Chuck Leverc5d120f2008-12-23 15:21:35 -050075int nfs_mount(struct nfs_mount_request *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 struct mnt_fhstatus result = {
Chuck Leverc5d120f2008-12-23 15:21:35 -050078 .fh = info->fh
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 };
Chuck Leverdead28d2006-03-20 13:44:23 -050080 struct rpc_message msg = {
Chuck Leverc5d120f2008-12-23 15:21:35 -050081 .rpc_argp = info->dirpath,
Chuck Leverdead28d2006-03-20 13:44:23 -050082 .rpc_resp = &result,
83 };
Chuck Lever3ea97302007-07-01 12:13:27 -040084 struct rpc_create_args args = {
Chuck Leverc5d120f2008-12-23 15:21:35 -050085 .protocol = info->protocol,
86 .address = info->sap,
87 .addrsize = info->salen,
88 .servername = info->hostname,
Chuck Lever3ea97302007-07-01 12:13:27 -040089 .program = &mnt_program,
Chuck Leverc5d120f2008-12-23 15:21:35 -050090 .version = info->version,
Chuck Lever3ea97302007-07-01 12:13:27 -040091 .authflavor = RPC_AUTH_UNIX,
Chuck Lever3ea97302007-07-01 12:13:27 -040092 };
93 struct rpc_clnt *mnt_clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Chuck Lever3ea97302007-07-01 12:13:27 -040096 dprintk("NFS: sending MNT request for %s:%s\n",
Chuck Leverc5d120f2008-12-23 15:21:35 -050097 (info->hostname ? info->hostname : "server"),
98 info->dirpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Chuck Lever50a737f2008-12-23 15:21:37 -0500100 if (info->noresvport)
101 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
102
Chuck Lever3ea97302007-07-01 12:13:27 -0400103 mnt_clnt = rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 if (IS_ERR(mnt_clnt))
Chuck Lever013a8c12007-07-01 12:13:38 -0400105 goto out_clnt_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
Chuck Leverc5d120f2008-12-23 15:21:35 -0500107 if (info->version == NFS_MNT3_VERSION)
Chuck Leverdead28d2006-03-20 13:44:23 -0500108 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
109 else
Chuck Lever2ad78092009-06-17 18:02:11 -0700110 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC_MNT];
Chuck Leverdead28d2006-03-20 13:44:23 -0500111
112 status = rpc_call_sync(mnt_clnt, &msg, 0);
Trond Myklebust90c57552007-06-09 19:49:36 -0400113 rpc_shutdown_client(mnt_clnt);
Chuck Lever013a8c12007-07-01 12:13:38 -0400114
115 if (status < 0)
116 goto out_call_err;
117 if (result.status != 0)
118 goto out_mnt_err;
119
120 dprintk("NFS: MNT request succeeded\n");
121 status = 0;
122
123out:
124 return status;
125
126out_clnt_err:
127 status = PTR_ERR(mnt_clnt);
128 dprintk("NFS: failed to create RPC client, status=%d\n", status);
129 goto out;
130
131out_call_err:
132 dprintk("NFS: failed to start MNT request, status=%d\n", status);
133 goto out;
134
135out_mnt_err:
136 dprintk("NFS: MNT server returned result %d\n", result.status);
Steve Dickson84919452008-04-11 20:03:06 -0400137 status = nfs_stat_to_errno(result.status);
Chuck Lever013a8c12007-07-01 12:13:38 -0400138 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139}
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/*
142 * XDR encode/decode functions for MOUNT
143 */
Chuck Lever19207232007-07-01 12:13:33 -0400144static int xdr_encode_dirpath(struct rpc_rqst *req, __be32 *p,
145 const char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
147 p = xdr_encode_string(p, path);
148
149 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
150 return 0;
151}
152
Chuck Lever29a1bd62009-06-17 18:02:11 -0700153static int encode_mntdirpath(struct xdr_stream *xdr, const char *pathname)
154{
155 const u32 pathname_len = strlen(pathname);
156 __be32 *p;
157
158 if (unlikely(pathname_len > MNTPATHLEN))
159 return -EIO;
160
161 p = xdr_reserve_space(xdr, sizeof(u32) + pathname_len);
162 if (unlikely(p == NULL))
163 return -EIO;
164 xdr_encode_opaque(p, pathname, pathname_len);
165
166 return 0;
167}
168
169static int mnt_enc_dirpath(struct rpc_rqst *req, __be32 *p,
170 const char *dirpath)
171{
172 struct xdr_stream xdr;
173
174 xdr_init_encode(&xdr, &req->rq_snd_buf, p);
175 return encode_mntdirpath(&xdr, dirpath);
176}
177
Chuck Lever19207232007-07-01 12:13:33 -0400178static int xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p,
179 struct mnt_fhstatus *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180{
181 struct nfs_fh *fh = res->fh;
182
183 if ((res->status = ntohl(*p++)) == 0) {
184 fh->size = NFS2_FHSIZE;
185 memcpy(fh->data, p, NFS2_FHSIZE);
186 }
187 return 0;
188}
189
Chuck Lever19207232007-07-01 12:13:33 -0400190static int xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p,
191 struct mnt_fhstatus *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 struct nfs_fh *fh = res->fh;
Trond Myklebustb7e24452008-06-19 15:21:11 -0400194 unsigned size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196 if ((res->status = ntohl(*p++)) == 0) {
Trond Myklebustb7e24452008-06-19 15:21:11 -0400197 size = ntohl(*p++);
198 if (size <= NFS3_FHSIZE && size != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 fh->size = size;
200 memcpy(fh->data, p, size);
201 } else
202 res->status = -EBADHANDLE;
203 }
204 return 0;
205}
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207#define MNT_fhstatus_sz (1 + 8)
Chuck Lever2bea90d2007-03-29 16:47:53 -0400208#define MNT_fhstatus3_sz (1 + 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Chuck Lever19207232007-07-01 12:13:33 -0400210static struct rpc_procinfo mnt_procedures[] = {
Chuck Lever2ad78092009-06-17 18:02:11 -0700211 [MOUNTPROC_MNT] = {
212 .p_proc = MOUNTPROC_MNT,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700213 .p_encode = (kxdrproc_t)mnt_enc_dirpath,
Chuck Lever19207232007-07-01 12:13:33 -0400214 .p_decode = (kxdrproc_t) xdr_decode_fhstatus,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700215 .p_arglen = MNT_enc_dirpath_sz,
Chuck Lever19207232007-07-01 12:13:33 -0400216 .p_replen = MNT_fhstatus_sz,
Chuck Lever2ad78092009-06-17 18:02:11 -0700217 .p_statidx = MOUNTPROC_MNT,
Chuck Lever19207232007-07-01 12:13:33 -0400218 .p_name = "MOUNT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 },
220};
221
222static struct rpc_procinfo mnt3_procedures[] = {
Chuck Lever19207232007-07-01 12:13:33 -0400223 [MOUNTPROC3_MNT] = {
224 .p_proc = MOUNTPROC3_MNT,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700225 .p_encode = (kxdrproc_t)mnt_enc_dirpath,
Chuck Lever19207232007-07-01 12:13:33 -0400226 .p_decode = (kxdrproc_t) xdr_decode_fhstatus3,
Chuck Lever29a1bd62009-06-17 18:02:11 -0700227 .p_arglen = MNT_enc_dirpath_sz,
Chuck Lever19207232007-07-01 12:13:33 -0400228 .p_replen = MNT_fhstatus3_sz,
229 .p_statidx = MOUNTPROC3_MNT,
230 .p_name = "MOUNT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 },
232};
233
234
Chuck Lever19207232007-07-01 12:13:33 -0400235static struct rpc_version mnt_version1 = {
236 .number = 1,
237 .nrprocs = 2,
238 .procs = mnt_procedures,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239};
240
Chuck Lever19207232007-07-01 12:13:33 -0400241static struct rpc_version mnt_version3 = {
242 .number = 3,
243 .nrprocs = 2,
244 .procs = mnt3_procedures,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245};
246
Chuck Lever19207232007-07-01 12:13:33 -0400247static struct rpc_version *mnt_version[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 NULL,
249 &mnt_version1,
250 NULL,
251 &mnt_version3,
252};
253
Chuck Lever19207232007-07-01 12:13:33 -0400254static struct rpc_stat mnt_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Chuck Lever19207232007-07-01 12:13:33 -0400256static struct rpc_program mnt_program = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 .name = "mount",
258 .number = NFS_MNT_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800259 .nrvers = ARRAY_SIZE(mnt_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 .version = mnt_version,
261 .stats = &mnt_stats,
262};