blob: af45a374d56f6e8b7be3d1e1d87f232b1a82a304 [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/*
24 * Defined by RFC 1094, section A.5
25 */
26enum {
27 MOUNTPROC_NULL = 0,
28 MOUNTPROC_MNT = 1,
29 MOUNTPROC_DUMP = 2,
30 MOUNTPROC_UMNT = 3,
31 MOUNTPROC_UMNTALL = 4,
32 MOUNTPROC_EXPORT = 5,
33};
34
35/*
36 * Defined by RFC 1813, section 5.2
37 */
38enum {
39 MOUNTPROC3_NULL = 0,
40 MOUNTPROC3_MNT = 1,
41 MOUNTPROC3_DUMP = 2,
42 MOUNTPROC3_UMNT = 3,
43 MOUNTPROC3_UMNTALL = 4,
44 MOUNTPROC3_EXPORT = 5,
45};
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047static struct rpc_program mnt_program;
48
49struct mnt_fhstatus {
Chuck Lever19207232007-07-01 12:13:33 -040050 u32 status;
51 struct nfs_fh *fh;
Linus Torvalds1da177e2005-04-16 15:20:36 -070052};
53
Chuck Lever3ea97302007-07-01 12:13:27 -040054/**
55 * nfs_mount - Obtain an NFS file handle for the given host and path
Chuck Leverc5d120f2008-12-23 15:21:35 -050056 * @info: pointer to mount request arguments
Chuck Lever3ea97302007-07-01 12:13:27 -040057 *
58 * Uses default timeout parameters specified by underlying transport.
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 */
Chuck Leverc5d120f2008-12-23 15:21:35 -050060int nfs_mount(struct nfs_mount_request *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 struct mnt_fhstatus result = {
Chuck Leverc5d120f2008-12-23 15:21:35 -050063 .fh = info->fh
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 };
Chuck Leverdead28d2006-03-20 13:44:23 -050065 struct rpc_message msg = {
Chuck Leverc5d120f2008-12-23 15:21:35 -050066 .rpc_argp = info->dirpath,
Chuck Leverdead28d2006-03-20 13:44:23 -050067 .rpc_resp = &result,
68 };
Chuck Lever3ea97302007-07-01 12:13:27 -040069 struct rpc_create_args args = {
Chuck Leverc5d120f2008-12-23 15:21:35 -050070 .protocol = info->protocol,
71 .address = info->sap,
72 .addrsize = info->salen,
73 .servername = info->hostname,
Chuck Lever3ea97302007-07-01 12:13:27 -040074 .program = &mnt_program,
Chuck Leverc5d120f2008-12-23 15:21:35 -050075 .version = info->version,
Chuck Lever3ea97302007-07-01 12:13:27 -040076 .authflavor = RPC_AUTH_UNIX,
Chuck Lever3ea97302007-07-01 12:13:27 -040077 };
78 struct rpc_clnt *mnt_clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070080
Chuck Lever3ea97302007-07-01 12:13:27 -040081 dprintk("NFS: sending MNT request for %s:%s\n",
Chuck Leverc5d120f2008-12-23 15:21:35 -050082 (info->hostname ? info->hostname : "server"),
83 info->dirpath);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084
Chuck Lever50a737f2008-12-23 15:21:37 -050085 if (info->noresvport)
86 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
87
Chuck Lever3ea97302007-07-01 12:13:27 -040088 mnt_clnt = rpc_create(&args);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 if (IS_ERR(mnt_clnt))
Chuck Lever013a8c12007-07-01 12:13:38 -040090 goto out_clnt_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
Chuck Leverc5d120f2008-12-23 15:21:35 -050092 if (info->version == NFS_MNT3_VERSION)
Chuck Leverdead28d2006-03-20 13:44:23 -050093 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
94 else
Chuck Lever2ad78092009-06-17 18:02:11 -070095 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC_MNT];
Chuck Leverdead28d2006-03-20 13:44:23 -050096
97 status = rpc_call_sync(mnt_clnt, &msg, 0);
Trond Myklebust90c57552007-06-09 19:49:36 -040098 rpc_shutdown_client(mnt_clnt);
Chuck Lever013a8c12007-07-01 12:13:38 -040099
100 if (status < 0)
101 goto out_call_err;
102 if (result.status != 0)
103 goto out_mnt_err;
104
105 dprintk("NFS: MNT request succeeded\n");
106 status = 0;
107
108out:
109 return status;
110
111out_clnt_err:
112 status = PTR_ERR(mnt_clnt);
113 dprintk("NFS: failed to create RPC client, status=%d\n", status);
114 goto out;
115
116out_call_err:
117 dprintk("NFS: failed to start MNT request, status=%d\n", status);
118 goto out;
119
120out_mnt_err:
121 dprintk("NFS: MNT server returned result %d\n", result.status);
Steve Dickson84919452008-04-11 20:03:06 -0400122 status = nfs_stat_to_errno(result.status);
Chuck Lever013a8c12007-07-01 12:13:38 -0400123 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124}
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/*
127 * XDR encode/decode functions for MOUNT
128 */
Chuck Lever19207232007-07-01 12:13:33 -0400129static int xdr_encode_dirpath(struct rpc_rqst *req, __be32 *p,
130 const char *path)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132 p = xdr_encode_string(p, path);
133
134 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
135 return 0;
136}
137
Chuck Lever19207232007-07-01 12:13:33 -0400138static int xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p,
139 struct mnt_fhstatus *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
141 struct nfs_fh *fh = res->fh;
142
143 if ((res->status = ntohl(*p++)) == 0) {
144 fh->size = NFS2_FHSIZE;
145 memcpy(fh->data, p, NFS2_FHSIZE);
146 }
147 return 0;
148}
149
Chuck Lever19207232007-07-01 12:13:33 -0400150static int xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p,
151 struct mnt_fhstatus *res)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152{
153 struct nfs_fh *fh = res->fh;
Trond Myklebustb7e24452008-06-19 15:21:11 -0400154 unsigned size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156 if ((res->status = ntohl(*p++)) == 0) {
Trond Myklebustb7e24452008-06-19 15:21:11 -0400157 size = ntohl(*p++);
158 if (size <= NFS3_FHSIZE && size != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 fh->size = size;
160 memcpy(fh->data, p, size);
161 } else
162 res->status = -EBADHANDLE;
163 }
164 return 0;
165}
166
167#define MNT_dirpath_sz (1 + 256)
168#define MNT_fhstatus_sz (1 + 8)
Chuck Lever2bea90d2007-03-29 16:47:53 -0400169#define MNT_fhstatus3_sz (1 + 16)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Chuck Lever19207232007-07-01 12:13:33 -0400171static struct rpc_procinfo mnt_procedures[] = {
Chuck Lever2ad78092009-06-17 18:02:11 -0700172 [MOUNTPROC_MNT] = {
173 .p_proc = MOUNTPROC_MNT,
Chuck Lever19207232007-07-01 12:13:33 -0400174 .p_encode = (kxdrproc_t) xdr_encode_dirpath,
175 .p_decode = (kxdrproc_t) xdr_decode_fhstatus,
176 .p_arglen = MNT_dirpath_sz,
177 .p_replen = MNT_fhstatus_sz,
Chuck Lever2ad78092009-06-17 18:02:11 -0700178 .p_statidx = MOUNTPROC_MNT,
Chuck Lever19207232007-07-01 12:13:33 -0400179 .p_name = "MOUNT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 },
181};
182
183static struct rpc_procinfo mnt3_procedures[] = {
Chuck Lever19207232007-07-01 12:13:33 -0400184 [MOUNTPROC3_MNT] = {
185 .p_proc = MOUNTPROC3_MNT,
186 .p_encode = (kxdrproc_t) xdr_encode_dirpath,
187 .p_decode = (kxdrproc_t) xdr_decode_fhstatus3,
188 .p_arglen = MNT_dirpath_sz,
189 .p_replen = MNT_fhstatus3_sz,
190 .p_statidx = MOUNTPROC3_MNT,
191 .p_name = "MOUNT",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 },
193};
194
195
Chuck Lever19207232007-07-01 12:13:33 -0400196static struct rpc_version mnt_version1 = {
197 .number = 1,
198 .nrprocs = 2,
199 .procs = mnt_procedures,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200};
201
Chuck Lever19207232007-07-01 12:13:33 -0400202static struct rpc_version mnt_version3 = {
203 .number = 3,
204 .nrprocs = 2,
205 .procs = mnt3_procedures,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206};
207
Chuck Lever19207232007-07-01 12:13:33 -0400208static struct rpc_version *mnt_version[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 NULL,
210 &mnt_version1,
211 NULL,
212 &mnt_version3,
213};
214
Chuck Lever19207232007-07-01 12:13:33 -0400215static struct rpc_stat mnt_stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Chuck Lever19207232007-07-01 12:13:33 -0400217static struct rpc_program mnt_program = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 .name = "mount",
219 .number = NFS_MNT_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800220 .nrvers = ARRAY_SIZE(mnt_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221 .version = mnt_version,
222 .stats = &mnt_stats,
223};