Rewrite MSI-HOWTO
[linux-2.6/mini2440.git] / fs / nfs / mount_clnt.c
blobca905a5bb1ba7457270953e18e06cd2b3b7596de
1 /*
2 * In-kernel MOUNT protocol client
4 * Copyright (C) 1997, Olaf Kirch <okir@monad.swb.de>
5 */
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"
19 #ifdef RPC_DEBUG
20 # define NFSDBG_FACILITY NFSDBG_MOUNT
21 #endif
23 static struct rpc_program mnt_program;
25 struct mnt_fhstatus {
26 u32 status;
27 struct nfs_fh *fh;
30 /**
31 * nfs_mount - Obtain an NFS file handle for the given host and path
32 * @info: pointer to mount request arguments
34 * Uses default timeout parameters specified by underlying transport.
36 int nfs_mount(struct nfs_mount_request *info)
38 struct mnt_fhstatus result = {
39 .fh = info->fh
41 struct rpc_message msg = {
42 .rpc_argp = info->dirpath,
43 .rpc_resp = &result,
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,
54 struct rpc_clnt *mnt_clnt;
55 int status;
57 dprintk("NFS: sending MNT request for %s:%s\n",
58 (info->hostname ? info->hostname : "server"),
59 info->dirpath);
61 if (info->noresvport)
62 args.flags |= RPC_CLNT_CREATE_NONPRIVPORT;
64 mnt_clnt = rpc_create(&args);
65 if (IS_ERR(mnt_clnt))
66 goto out_clnt_err;
68 if (info->version == NFS_MNT3_VERSION)
69 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
70 else
71 msg.rpc_proc = &mnt_clnt->cl_procinfo[MNTPROC_MNT];
73 status = rpc_call_sync(mnt_clnt, &msg, 0);
74 rpc_shutdown_client(mnt_clnt);
76 if (status < 0)
77 goto out_call_err;
78 if (result.status != 0)
79 goto out_mnt_err;
81 dprintk("NFS: MNT request succeeded\n");
82 status = 0;
84 out:
85 return status;
87 out_clnt_err:
88 status = PTR_ERR(mnt_clnt);
89 dprintk("NFS: failed to create RPC client, status=%d\n", status);
90 goto out;
92 out_call_err:
93 dprintk("NFS: failed to start MNT request, status=%d\n", status);
94 goto out;
96 out_mnt_err:
97 dprintk("NFS: MNT server returned result %d\n", result.status);
98 status = nfs_stat_to_errno(result.status);
99 goto out;
103 * XDR encode/decode functions for MOUNT
105 static int xdr_encode_dirpath(struct rpc_rqst *req, __be32 *p,
106 const char *path)
108 p = xdr_encode_string(p, path);
110 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
111 return 0;
114 static int xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p,
115 struct mnt_fhstatus *res)
117 struct nfs_fh *fh = res->fh;
119 if ((res->status = ntohl(*p++)) == 0) {
120 fh->size = NFS2_FHSIZE;
121 memcpy(fh->data, p, NFS2_FHSIZE);
123 return 0;
126 static int xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p,
127 struct mnt_fhstatus *res)
129 struct nfs_fh *fh = res->fh;
130 unsigned size;
132 if ((res->status = ntohl(*p++)) == 0) {
133 size = ntohl(*p++);
134 if (size <= NFS3_FHSIZE && size != 0) {
135 fh->size = size;
136 memcpy(fh->data, p, size);
137 } else
138 res->status = -EBADHANDLE;
140 return 0;
143 #define MNT_dirpath_sz (1 + 256)
144 #define MNT_fhstatus_sz (1 + 8)
145 #define MNT_fhstatus3_sz (1 + 16)
147 static struct rpc_procinfo mnt_procedures[] = {
148 [MNTPROC_MNT] = {
149 .p_proc = MNTPROC_MNT,
150 .p_encode = (kxdrproc_t) xdr_encode_dirpath,
151 .p_decode = (kxdrproc_t) xdr_decode_fhstatus,
152 .p_arglen = MNT_dirpath_sz,
153 .p_replen = MNT_fhstatus_sz,
154 .p_statidx = MNTPROC_MNT,
155 .p_name = "MOUNT",
159 static struct rpc_procinfo mnt3_procedures[] = {
160 [MOUNTPROC3_MNT] = {
161 .p_proc = MOUNTPROC3_MNT,
162 .p_encode = (kxdrproc_t) xdr_encode_dirpath,
163 .p_decode = (kxdrproc_t) xdr_decode_fhstatus3,
164 .p_arglen = MNT_dirpath_sz,
165 .p_replen = MNT_fhstatus3_sz,
166 .p_statidx = MOUNTPROC3_MNT,
167 .p_name = "MOUNT",
172 static struct rpc_version mnt_version1 = {
173 .number = 1,
174 .nrprocs = 2,
175 .procs = mnt_procedures,
178 static struct rpc_version mnt_version3 = {
179 .number = 3,
180 .nrprocs = 2,
181 .procs = mnt3_procedures,
184 static struct rpc_version *mnt_version[] = {
185 NULL,
186 &mnt_version1,
187 NULL,
188 &mnt_version3,
191 static struct rpc_stat mnt_stats;
193 static struct rpc_program mnt_program = {
194 .name = "mount",
195 .number = NFS_MNT_PROGRAM,
196 .nrvers = ARRAY_SIZE(mnt_version),
197 .version = mnt_version,
198 .stats = &mnt_stats,