NFS: introduce nfs_mount_info struct for calling nfs_mount()
[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 static struct rpc_program       mnt_program;
24
25 struct mnt_fhstatus {
26         u32 status;
27         struct nfs_fh *fh;
28 };
29
30 /**
31  * nfs_mount - Obtain an NFS file handle for the given host and path
32  * @info: pointer to mount request arguments
33  *
34  * Uses default timeout parameters specified by underlying transport.
35  */
36 int nfs_mount(struct nfs_mount_request *info)
37 {
38         struct mnt_fhstatus     result = {
39                 .fh             = info->fh
40         };
41         struct rpc_message msg  = {
42                 .rpc_argp       = info->dirpath,
43                 .rpc_resp       = &result,
44         };
45         struct rpc_create_args args = {
46                 .protocol       = info->protocol,
47                 .address        = info->sap,
48                 .addrsize       = info->salen,
49                 .servername     = info->hostname,
50                 .program        = &mnt_program,
51                 .version        = info->version,
52                 .authflavor     = RPC_AUTH_UNIX,
53                 .flags          = 0,
54         };
55         struct rpc_clnt         *mnt_clnt;
56         int                     status;
57
58         dprintk("NFS: sending MNT request for %s:%s\n",
59                 (info->hostname ? info->hostname : "server"),
60                         info->dirpath);
61
62         mnt_clnt = rpc_create(&args);
63         if (IS_ERR(mnt_clnt))
64                 goto out_clnt_err;
65
66         if (info->version == NFS_MNT3_VERSION)
67                 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
68         else
69                 msg.rpc_proc = &mnt_clnt->cl_procinfo[MNTPROC_MNT];
70
71         status = rpc_call_sync(mnt_clnt, &msg, 0);
72         rpc_shutdown_client(mnt_clnt);
73
74         if (status < 0)
75                 goto out_call_err;
76         if (result.status != 0)
77                 goto out_mnt_err;
78
79         dprintk("NFS: MNT request succeeded\n");
80         status = 0;
81
82 out:
83         return status;
84
85 out_clnt_err:
86         status = PTR_ERR(mnt_clnt);
87         dprintk("NFS: failed to create RPC client, status=%d\n", status);
88         goto out;
89
90 out_call_err:
91         dprintk("NFS: failed to start MNT request, status=%d\n", status);
92         goto out;
93
94 out_mnt_err:
95         dprintk("NFS: MNT server returned result %d\n", result.status);
96         status = nfs_stat_to_errno(result.status);
97         goto out;
98 }
99
100 /*
101  * XDR encode/decode functions for MOUNT
102  */
103 static int xdr_encode_dirpath(struct rpc_rqst *req, __be32 *p,
104                               const char *path)
105 {
106         p = xdr_encode_string(p, path);
107
108         req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
109         return 0;
110 }
111
112 static int xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p,
113                                struct mnt_fhstatus *res)
114 {
115         struct nfs_fh *fh = res->fh;
116
117         if ((res->status = ntohl(*p++)) == 0) {
118                 fh->size = NFS2_FHSIZE;
119                 memcpy(fh->data, p, NFS2_FHSIZE);
120         }
121         return 0;
122 }
123
124 static int xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p,
125                                 struct mnt_fhstatus *res)
126 {
127         struct nfs_fh *fh = res->fh;
128         unsigned size;
129
130         if ((res->status = ntohl(*p++)) == 0) {
131                 size = ntohl(*p++);
132                 if (size <= NFS3_FHSIZE && size != 0) {
133                         fh->size = size;
134                         memcpy(fh->data, p, size);
135                 } else
136                         res->status = -EBADHANDLE;
137         }
138         return 0;
139 }
140
141 #define MNT_dirpath_sz          (1 + 256)
142 #define MNT_fhstatus_sz         (1 + 8)
143 #define MNT_fhstatus3_sz        (1 + 16)
144
145 static struct rpc_procinfo mnt_procedures[] = {
146         [MNTPROC_MNT] = {
147                 .p_proc         = MNTPROC_MNT,
148                 .p_encode       = (kxdrproc_t) xdr_encode_dirpath,
149                 .p_decode       = (kxdrproc_t) xdr_decode_fhstatus,
150                 .p_arglen       = MNT_dirpath_sz,
151                 .p_replen       = MNT_fhstatus_sz,
152                 .p_statidx      = MNTPROC_MNT,
153                 .p_name         = "MOUNT",
154         },
155 };
156
157 static struct rpc_procinfo mnt3_procedures[] = {
158         [MOUNTPROC3_MNT] = {
159                 .p_proc         = MOUNTPROC3_MNT,
160                 .p_encode       = (kxdrproc_t) xdr_encode_dirpath,
161                 .p_decode       = (kxdrproc_t) xdr_decode_fhstatus3,
162                 .p_arglen       = MNT_dirpath_sz,
163                 .p_replen       = MNT_fhstatus3_sz,
164                 .p_statidx      = MOUNTPROC3_MNT,
165                 .p_name         = "MOUNT",
166         },
167 };
168
169
170 static struct rpc_version mnt_version1 = {
171         .number         = 1,
172         .nrprocs        = 2,
173         .procs          = mnt_procedures,
174 };
175
176 static struct rpc_version mnt_version3 = {
177         .number         = 3,
178         .nrprocs        = 2,
179         .procs          = mnt3_procedures,
180 };
181
182 static struct rpc_version *mnt_version[] = {
183         NULL,
184         &mnt_version1,
185         NULL,
186         &mnt_version3,
187 };
188
189 static struct rpc_stat mnt_stats;
190
191 static struct rpc_program mnt_program = {
192         .name           = "mount",
193         .number         = NFS_MNT_PROGRAM,
194         .nrvers         = ARRAY_SIZE(mnt_version),
195         .version        = mnt_version,
196         .stats          = &mnt_stats,
197 };