NFS: remove unused function in fs/nfs/mount_clnt.c
[pandora-kernel.git] / 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
145 static int encode_mntdirpath(struct xdr_stream *xdr, const char *pathname)
146 {
147         const u32 pathname_len = strlen(pathname);
148         __be32 *p;
149
150         if (unlikely(pathname_len > MNTPATHLEN))
151                 return -EIO;
152
153         p = xdr_reserve_space(xdr, sizeof(u32) + pathname_len);
154         if (unlikely(p == NULL))
155                 return -EIO;
156         xdr_encode_opaque(p, pathname, pathname_len);
157
158         return 0;
159 }
160
161 static int mnt_enc_dirpath(struct rpc_rqst *req, __be32 *p,
162                            const char *dirpath)
163 {
164         struct xdr_stream xdr;
165
166         xdr_init_encode(&xdr, &req->rq_snd_buf, p);
167         return encode_mntdirpath(&xdr, dirpath);
168 }
169
170 static int xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p,
171                                struct mnt_fhstatus *res)
172 {
173         struct nfs_fh *fh = res->fh;
174
175         if ((res->status = ntohl(*p++)) == 0) {
176                 fh->size = NFS2_FHSIZE;
177                 memcpy(fh->data, p, NFS2_FHSIZE);
178         }
179         return 0;
180 }
181
182 static int xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p,
183                                 struct mnt_fhstatus *res)
184 {
185         struct nfs_fh *fh = res->fh;
186         unsigned size;
187
188         if ((res->status = ntohl(*p++)) == 0) {
189                 size = ntohl(*p++);
190                 if (size <= NFS3_FHSIZE && size != 0) {
191                         fh->size = size;
192                         memcpy(fh->data, p, size);
193                 } else
194                         res->status = -EBADHANDLE;
195         }
196         return 0;
197 }
198
199 #define MNT_fhstatus_sz         (1 + 8)
200 #define MNT_fhstatus3_sz        (1 + 16)
201
202 static struct rpc_procinfo mnt_procedures[] = {
203         [MOUNTPROC_MNT] = {
204                 .p_proc         = MOUNTPROC_MNT,
205                 .p_encode       = (kxdrproc_t)mnt_enc_dirpath,
206                 .p_decode       = (kxdrproc_t) xdr_decode_fhstatus,
207                 .p_arglen       = MNT_enc_dirpath_sz,
208                 .p_replen       = MNT_fhstatus_sz,
209                 .p_statidx      = MOUNTPROC_MNT,
210                 .p_name         = "MOUNT",
211         },
212 };
213
214 static struct rpc_procinfo mnt3_procedures[] = {
215         [MOUNTPROC3_MNT] = {
216                 .p_proc         = MOUNTPROC3_MNT,
217                 .p_encode       = (kxdrproc_t)mnt_enc_dirpath,
218                 .p_decode       = (kxdrproc_t) xdr_decode_fhstatus3,
219                 .p_arglen       = MNT_enc_dirpath_sz,
220                 .p_replen       = MNT_fhstatus3_sz,
221                 .p_statidx      = MOUNTPROC3_MNT,
222                 .p_name         = "MOUNT",
223         },
224 };
225
226
227 static struct rpc_version mnt_version1 = {
228         .number         = 1,
229         .nrprocs        = 2,
230         .procs          = mnt_procedures,
231 };
232
233 static struct rpc_version mnt_version3 = {
234         .number         = 3,
235         .nrprocs        = 2,
236         .procs          = mnt3_procedures,
237 };
238
239 static struct rpc_version *mnt_version[] = {
240         NULL,
241         &mnt_version1,
242         NULL,
243         &mnt_version3,
244 };
245
246 static struct rpc_stat mnt_stats;
247
248 static struct rpc_program mnt_program = {
249         .name           = "mount",
250         .number         = NFS_MNT_PROGRAM,
251         .nrvers         = ARRAY_SIZE(mnt_version),
252         .version        = mnt_version,
253         .stats          = &mnt_stats,
254 };