NFS: Use xdr_stream-based XDR encoder for MNT's dirpath argument
[safe/jmp/linux-2.6] / fs / nfs / mount_clnt.c
1 /*
2  * In-kernel MOUNT protocol client
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>
15 #include <linux/sunrpc/sched.h>
16 #include <linux/nfs_fs.h>
17 #include "internal.h"
18
19 #ifdef RPC_DEBUG
20 # define NFSDBG_FACILITY        NFSDBG_MOUNT
21 #endif
22
23 /*
24  * 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 /*
39  * Defined by RFC 1094, section A.5
40  */
41 enum {
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  */
53 enum {
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
62 static struct rpc_program       mnt_program;
63
64 struct mnt_fhstatus {
65         u32 status;
66         struct nfs_fh *fh;
67 };
68
69 /**
70  * nfs_mount - Obtain an NFS file handle for the given host and path
71  * @info: pointer to mount request arguments
72  *
73  * Uses default timeout parameters specified by underlying transport.
74  */
75 int nfs_mount(struct nfs_mount_request *info)
76 {
77         struct mnt_fhstatus     result = {
78                 .fh             = info->fh
79         };
80         struct rpc_message msg  = {
81                 .rpc_argp       = info->dirpath,
82                 .rpc_resp       = &result,
83         };
84         struct rpc_create_args args = {
85                 .protocol       = info->protocol,
86                 .address        = info->sap,
87                 .addrsize       = info->salen,
88                 .servername     = info->hostname,
89                 .program        = &mnt_program,
90                 .version        = info->version,
91                 .authflavor     = RPC_AUTH_UNIX,
92         };
93         struct rpc_clnt         *mnt_clnt;
94         int                     status;
95
96         dprintk("NFS: sending MNT request for %s:%s\n",
97                 (info->hostname ? info->hostname : "server"),
98                         info->dirpath);
99
100         if (info->noresvport)
101                 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
102
103         mnt_clnt = rpc_create(&args);
104         if (IS_ERR(mnt_clnt))
105                 goto out_clnt_err;
106
107         if (info->version == NFS_MNT3_VERSION)
108                 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
109         else
110                 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC_MNT];
111
112         status = rpc_call_sync(mnt_clnt, &msg, 0);
113         rpc_shutdown_client(mnt_clnt);
114
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
123 out:
124         return status;
125
126 out_clnt_err:
127         status = PTR_ERR(mnt_clnt);
128         dprintk("NFS: failed to create RPC client, status=%d\n", status);
129         goto out;
130
131 out_call_err:
132         dprintk("NFS: failed to start MNT request, status=%d\n", status);
133         goto out;
134
135 out_mnt_err:
136         dprintk("NFS: MNT server returned result %d\n", result.status);
137         status = nfs_stat_to_errno(result.status);
138         goto out;
139 }
140
141 /*
142  * XDR encode/decode functions for MOUNT
143  */
144 static int xdr_encode_dirpath(struct rpc_rqst *req, __be32 *p,
145                               const char *path)
146 {
147         p = xdr_encode_string(p, path);
148
149         req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
150         return 0;
151 }
152
153 static 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
169 static 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
178 static int xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p,
179                                struct mnt_fhstatus *res)
180 {
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
190 static int xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p,
191                                 struct mnt_fhstatus *res)
192 {
193         struct nfs_fh *fh = res->fh;
194         unsigned size;
195
196         if ((res->status = ntohl(*p++)) == 0) {
197                 size = ntohl(*p++);
198                 if (size <= NFS3_FHSIZE && size != 0) {
199                         fh->size = size;
200                         memcpy(fh->data, p, size);
201                 } else
202                         res->status = -EBADHANDLE;
203         }
204         return 0;
205 }
206
207 #define MNT_fhstatus_sz         (1 + 8)
208 #define MNT_fhstatus3_sz        (1 + 16)
209
210 static struct rpc_procinfo mnt_procedures[] = {
211         [MOUNTPROC_MNT] = {
212                 .p_proc         = MOUNTPROC_MNT,
213                 .p_encode       = (kxdrproc_t)mnt_enc_dirpath,
214                 .p_decode       = (kxdrproc_t) xdr_decode_fhstatus,
215                 .p_arglen       = MNT_enc_dirpath_sz,
216                 .p_replen       = MNT_fhstatus_sz,
217                 .p_statidx      = MOUNTPROC_MNT,
218                 .p_name         = "MOUNT",
219         },
220 };
221
222 static struct rpc_procinfo mnt3_procedures[] = {
223         [MOUNTPROC3_MNT] = {
224                 .p_proc         = MOUNTPROC3_MNT,
225                 .p_encode       = (kxdrproc_t)mnt_enc_dirpath,
226                 .p_decode       = (kxdrproc_t) xdr_decode_fhstatus3,
227                 .p_arglen       = MNT_enc_dirpath_sz,
228                 .p_replen       = MNT_fhstatus3_sz,
229                 .p_statidx      = MOUNTPROC3_MNT,
230                 .p_name         = "MOUNT",
231         },
232 };
233
234
235 static struct rpc_version mnt_version1 = {
236         .number         = 1,
237         .nrprocs        = 2,
238         .procs          = mnt_procedures,
239 };
240
241 static struct rpc_version mnt_version3 = {
242         .number         = 3,
243         .nrprocs        = 2,
244         .procs          = mnt3_procedures,
245 };
246
247 static struct rpc_version *mnt_version[] = {
248         NULL,
249         &mnt_version1,
250         NULL,
251         &mnt_version3,
252 };
253
254 static struct rpc_stat mnt_stats;
255
256 static struct rpc_program mnt_program = {
257         .name           = "mount",
258         .number         = NFS_MNT_PROGRAM,
259         .nrvers         = ARRAY_SIZE(mnt_version),
260         .version        = mnt_version,
261         .stats          = &mnt_stats,
262 };