SUNRPC: Add a convenient default for the hostname when calling rpc_create()
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / nfs / mount_clnt.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/nfs/mount_clnt.c
3 *
4 * MOUNT client to support NFSroot.
5 *
6 * Copyright (C) 1997, Olaf Kirch <okir@monad.swb.de>
7 */
8
9#include <linux/types.h>
10#include <linux/socket.h>
11#include <linux/kernel.h>
12#include <linux/errno.h>
13#include <linux/uio.h>
14#include <linux/net.h>
15#include <linux/in.h>
16#include <linux/sunrpc/clnt.h>
1da177e4
LT
17#include <linux/sunrpc/sched.h>
18#include <linux/nfs_fs.h>
19
20#ifdef RPC_DEBUG
21# define NFSDBG_FACILITY NFSDBG_ROOT
22#endif
23
24/*
25#define MOUNT_PROGRAM 100005
26#define MOUNT_VERSION 1
27#define MOUNT_MNT 1
28#define MOUNT_UMNT 3
29 */
30
43780b87 31static struct rpc_clnt * mnt_create(struct sockaddr_in *, int, int);
1da177e4
LT
32static struct rpc_program mnt_program;
33
34struct mnt_fhstatus {
35 unsigned int status;
36 struct nfs_fh * fh;
37};
38
39/*
40 * Obtain an NFS file handle for the given host and path
41 */
42int
43nfsroot_mount(struct sockaddr_in *addr, char *path, struct nfs_fh *fh,
44 int version, int protocol)
45{
46 struct rpc_clnt *mnt_clnt;
47 struct mnt_fhstatus result = {
48 .fh = fh
49 };
dead28da
CL
50 struct rpc_message msg = {
51 .rpc_argp = path,
52 .rpc_resp = &result,
53 };
1da177e4 54 int status;
1da177e4
LT
55
56 dprintk("NFS: nfs_mount(%08x:%s)\n",
57 (unsigned)ntohl(addr->sin_addr.s_addr), path);
58
43780b87 59 mnt_clnt = mnt_create(addr, version, protocol);
1da177e4
LT
60 if (IS_ERR(mnt_clnt))
61 return PTR_ERR(mnt_clnt);
62
dead28da
CL
63 if (version == NFS_MNT3_VERSION)
64 msg.rpc_proc = &mnt_clnt->cl_procinfo[MOUNTPROC3_MNT];
65 else
66 msg.rpc_proc = &mnt_clnt->cl_procinfo[MNTPROC_MNT];
67
68 status = rpc_call_sync(mnt_clnt, &msg, 0);
90c5755f 69 rpc_shutdown_client(mnt_clnt);
1da177e4
LT
70 return status < 0? status : (result.status? -EACCES : 0);
71}
72
43780b87
CL
73static struct rpc_clnt *mnt_create(struct sockaddr_in *srvaddr, int version,
74 int protocol)
1da177e4 75{
058ad9cb
CL
76 struct rpc_create_args args = {
77 .protocol = protocol,
78 .address = (struct sockaddr *)srvaddr,
79 .addrsize = sizeof(*srvaddr),
058ad9cb
CL
80 .program = &mnt_program,
81 .version = version,
82 .authflavor = RPC_AUTH_UNIX,
90c5755f 83 .flags = RPC_CLNT_CREATE_INTR,
058ad9cb
CL
84 };
85
86 return rpc_create(&args);
1da177e4
LT
87}
88
89/*
90 * XDR encode/decode functions for MOUNT
91 */
92static int
d21ec0c3 93xdr_encode_dirpath(struct rpc_rqst *req, __be32 *p, const char *path)
1da177e4
LT
94{
95 p = xdr_encode_string(p, path);
96
97 req->rq_slen = xdr_adjust_iovec(req->rq_svec, p);
98 return 0;
99}
100
101static int
d21ec0c3 102xdr_decode_fhstatus(struct rpc_rqst *req, __be32 *p, struct mnt_fhstatus *res)
1da177e4
LT
103{
104 struct nfs_fh *fh = res->fh;
105
106 if ((res->status = ntohl(*p++)) == 0) {
107 fh->size = NFS2_FHSIZE;
108 memcpy(fh->data, p, NFS2_FHSIZE);
109 }
110 return 0;
111}
112
113static int
d21ec0c3 114xdr_decode_fhstatus3(struct rpc_rqst *req, __be32 *p, struct mnt_fhstatus *res)
1da177e4
LT
115{
116 struct nfs_fh *fh = res->fh;
117
118 if ((res->status = ntohl(*p++)) == 0) {
119 int size = ntohl(*p++);
120 if (size <= NFS3_FHSIZE) {
121 fh->size = size;
122 memcpy(fh->data, p, size);
123 } else
124 res->status = -EBADHANDLE;
125 }
126 return 0;
127}
128
129#define MNT_dirpath_sz (1 + 256)
130#define MNT_fhstatus_sz (1 + 8)
2bea90d4 131#define MNT_fhstatus3_sz (1 + 16)
1da177e4
LT
132
133static struct rpc_procinfo mnt_procedures[] = {
134[MNTPROC_MNT] = {
135 .p_proc = MNTPROC_MNT,
136 .p_encode = (kxdrproc_t) xdr_encode_dirpath,
137 .p_decode = (kxdrproc_t) xdr_decode_fhstatus,
2bea90d4
CL
138 .p_arglen = MNT_dirpath_sz,
139 .p_replen = MNT_fhstatus_sz,
cc0175c1
CL
140 .p_statidx = MNTPROC_MNT,
141 .p_name = "MOUNT",
1da177e4
LT
142 },
143};
144
145static struct rpc_procinfo mnt3_procedures[] = {
146[MOUNTPROC3_MNT] = {
147 .p_proc = MOUNTPROC3_MNT,
148 .p_encode = (kxdrproc_t) xdr_encode_dirpath,
149 .p_decode = (kxdrproc_t) xdr_decode_fhstatus3,
2bea90d4
CL
150 .p_arglen = MNT_dirpath_sz,
151 .p_replen = MNT_fhstatus3_sz,
cc0175c1
CL
152 .p_statidx = MOUNTPROC3_MNT,
153 .p_name = "MOUNT",
1da177e4
LT
154 },
155};
156
157
158static struct rpc_version mnt_version1 = {
159 .number = 1,
160 .nrprocs = 2,
161 .procs = mnt_procedures
162};
163
164static struct rpc_version mnt_version3 = {
165 .number = 3,
166 .nrprocs = 2,
167 .procs = mnt3_procedures
168};
169
170static struct rpc_version * mnt_version[] = {
171 NULL,
172 &mnt_version1,
173 NULL,
174 &mnt_version3,
175};
176
177static struct rpc_stat mnt_stats;
178
179static struct rpc_program mnt_program = {
180 .name = "mount",
181 .number = NFS_MNT_PROGRAM,
e8c96f8c 182 .nrvers = ARRAY_SIZE(mnt_version),
1da177e4
LT
183 .version = mnt_version,
184 .stats = &mnt_stats,
185};