NFS: Clean up MNT program definitions
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / nfs / mount_clnt.c
CommitLineData
1da177e4 1/*
19207231 2 * In-kernel MOUNT protocol client
1da177e4
LT
3 *
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>
1da177e4
LT
15#include <linux/sunrpc/sched.h>
16#include <linux/nfs_fs.h>
8491945f 17#include "internal.h"
1da177e4
LT
18
19#ifdef RPC_DEBUG
3ea97309 20# define NFSDBG_FACILITY NFSDBG_MOUNT
1da177e4
LT
21#endif
22
2ad78097
CL
23/*
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
1da177e4
LT
47static struct rpc_program mnt_program;
48
49struct mnt_fhstatus {
19207231
CL
50 u32 status;
51 struct nfs_fh *fh;
1da177e4
LT
52};
53
3ea97309
CL
54/**
55 * nfs_mount - Obtain an NFS file handle for the given host and path
c5d120f8 56 * @info: pointer to mount request arguments
3ea97309
CL
57 *
58 * Uses default timeout parameters specified by underlying transport.
1da177e4 59 */
c5d120f8 60int nfs_mount(struct nfs_mount_request *info)
1da177e4 61{
1da177e4 62 struct mnt_fhstatus result = {
c5d120f8 63 .fh = info->fh
1da177e4 64 };
dead28da 65 struct rpc_message msg = {
c5d120f8 66 .rpc_argp = info->dirpath,
dead28da
CL
67 .rpc_resp = &result,
68 };
3ea97309 69 struct rpc_create_args args = {
c5d120f8
CL
70 .protocol = info->protocol,
71 .address = info->sap,
72 .addrsize = info->salen,
73 .servername = info->hostname,
3ea97309 74 .program = &mnt_program,
c5d120f8 75 .version = info->version,
3ea97309 76 .authflavor = RPC_AUTH_UNIX,
3ea97309
CL
77 };
78 struct rpc_clnt *mnt_clnt;
1da177e4 79 int status;
1da177e4 80
3ea97309 81 dprintk("NFS: sending MNT request for %s:%s\n",
c5d120f8
CL
82 (info->hostname ? info->hostname : "server"),
83 info->dirpath);
1da177e4 84
50a737f8
CL
85 if (info->noresvport)
86 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
87
3ea97309 88 mnt_clnt = rpc_create(&args);
1da177e4 89 if (IS_ERR(mnt_clnt))
013a8c1a 90 goto out_clnt_err;
1da177e4 91
c5d120f8 92 if (info->version == NFS_MNT3_VERSION)
dead28da
CL
93 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
94 else
2ad78097 95 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC_MNT];
dead28da
CL
96
97 status = rpc_call_sync(mnt_clnt, &msg, 0);
90c5755f 98 rpc_shutdown_client(mnt_clnt);
013a8c1a
CL
99
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);
8491945f 122 status = nfs_stat_to_errno(result.status);
013a8c1a 123 goto out;
1da177e4
LT
124}
125
1da177e4
LT
126/*
127 * XDR encode/decode functions for MOUNT
128 */
19207231
CL
129static int xdr_encode_dirpath(struct rpc_rqst *req, __be32 *p,
130 const char *path)
1da177e4
LT
131{
132 p = xdr_encode_string(p, path);
133
134 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
135 return 0;
136}
137
19207231
CL
138static int xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p,
139 struct mnt_fhstatus *res)
1da177e4
LT
140{
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
19207231
CL
150static int xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p,
151 struct mnt_fhstatus *res)
1da177e4
LT
152{
153 struct nfs_fh *fh = res->fh;
b7e24457 154 unsigned size;
1da177e4
LT
155
156 if ((res->status = ntohl(*p++)) == 0) {
b7e24457
TM
157 size = ntohl(*p++);
158 if (size <= NFS3_FHSIZE && size != 0) {
1da177e4
LT
159 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)
2bea90d4 169#define MNT_fhstatus3_sz (1 + 16)
1da177e4 170
19207231 171static struct rpc_procinfo mnt_procedures[] = {
2ad78097
CL
172 [MOUNTPROC_MNT] = {
173 .p_proc = MOUNTPROC_MNT,
19207231
CL
174 .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,
2ad78097 178 .p_statidx = MOUNTPROC_MNT,
19207231 179 .p_name = "MOUNT",
1da177e4
LT
180 },
181};
182
183static struct rpc_procinfo mnt3_procedures[] = {
19207231
CL
184 [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",
1da177e4
LT
192 },
193};
194
195
19207231
CL
196static struct rpc_version mnt_version1 = {
197 .number = 1,
198 .nrprocs = 2,
199 .procs = mnt_procedures,
1da177e4
LT
200};
201
19207231
CL
202static struct rpc_version mnt_version3 = {
203 .number = 3,
204 .nrprocs = 2,
205 .procs = mnt3_procedures,
1da177e4
LT
206};
207
19207231 208static struct rpc_version *mnt_version[] = {
1da177e4
LT
209 NULL,
210 &mnt_version1,
211 NULL,
212 &mnt_version3,
213};
214
19207231 215static struct rpc_stat mnt_stats;
1da177e4 216
19207231 217static struct rpc_program mnt_program = {
1da177e4
LT
218 .name = "mount",
219 .number = NFS_MNT_PROGRAM,
e8c96f8c 220 .nrvers = ARRAY_SIZE(mnt_version),
1da177e4
LT
221 .version = mnt_version,
222 .stats = &mnt_stats,
223};