blob: c148e6ba07e5cc10a2642e4b176a77aeece22ee6 [file] [log] [blame]
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -07001/*
2 * linux/fs/9p/9p.c
3 *
Latchesar Ionkov531b1092006-01-08 01:05:00 -08004 * This file contains functions to perform synchronous 9P calls
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -07005 *
Latchesar Ionkov531b1092006-01-08 01:05:00 -08006 * Copyright (C) 2004 by Latchesar Ionkov <lucho@ionkov.net>
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -07007 * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
8 * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to:
22 * Free Software Foundation
23 * 51 Franklin Street, Fifth Floor
24 * Boston, MA 02111-1301 USA
25 *
26 */
27
28#include <linux/config.h>
29#include <linux/module.h>
30#include <linux/errno.h>
31#include <linux/fs.h>
32#include <linux/idr.h>
33
34#include "debug.h"
35#include "v9fs.h"
36#include "9p.h"
Latchesar Ionkov531b1092006-01-08 01:05:00 -080037#include "conv.h"
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -070038#include "mux.h"
39
40/**
41 * v9fs_t_version - negotiate protocol parameters with sever
42 * @v9ses: 9P2000 session information
43 * @msize: requested max size packet
44 * @version: requested version.extension string
45 * @fcall: pointer to response fcall pointer
46 *
47 */
48
49int
50v9fs_t_version(struct v9fs_session_info *v9ses, u32 msize,
Latchesar Ionkov531b1092006-01-08 01:05:00 -080051 char *version, struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -070052{
Latchesar Ionkov531b1092006-01-08 01:05:00 -080053 int ret;
54 struct v9fs_fcall *tc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -070055
56 dprintk(DEBUG_9P, "msize: %d version: %s\n", msize, version);
Latchesar Ionkov531b1092006-01-08 01:05:00 -080057 tc = v9fs_create_tversion(msize, version);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -070058
Latchesar Ionkov531b1092006-01-08 01:05:00 -080059 if (!IS_ERR(tc)) {
60 ret = v9fs_mux_rpc(v9ses->mux, tc, rcp);
61 kfree(tc);
62 } else
63 ret = PTR_ERR(tc);
64
65 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -070066}
67
68/**
69 * v9fs_t_attach - mount the server
70 * @v9ses: 9P2000 session information
71 * @uname: user name doing the attach
72 * @aname: remote name being attached to
73 * @fid: mount fid to attatch to root node
74 * @afid: authentication fid (in this case result key)
75 * @fcall: pointer to response fcall pointer
76 *
77 */
78
79int
80v9fs_t_attach(struct v9fs_session_info *v9ses, char *uname, char *aname,
Latchesar Ionkov531b1092006-01-08 01:05:00 -080081 u32 fid, u32 afid, struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -070082{
Latchesar Ionkov531b1092006-01-08 01:05:00 -080083 int ret;
84 struct v9fs_fcall* tc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -070085
86 dprintk(DEBUG_9P, "uname '%s' aname '%s' fid %d afid %d\n", uname,
87 aname, fid, afid);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -070088
Latchesar Ionkov531b1092006-01-08 01:05:00 -080089 tc = v9fs_create_tattach(fid, afid, uname, aname);
90 if (!IS_ERR(tc)) {
91 ret = v9fs_mux_rpc(v9ses->mux, tc, rcp);
92 kfree(tc);
93 } else
94 ret = PTR_ERR(tc);
95
96 return ret;
Latchesar Ionkov3cf64292006-01-08 01:04:58 -080097}
98
99static void v9fs_t_clunk_cb(void *a, struct v9fs_fcall *tc,
100 struct v9fs_fcall *rc, int err)
101{
102 int fid;
103 struct v9fs_session_info *v9ses;
104
105 if (err)
106 return;
107
108 fid = tc->params.tclunk.fid;
109 kfree(tc);
110
111 if (!rc)
112 return;
113
Latchesar Ionkov3cf64292006-01-08 01:04:58 -0800114 v9ses = a;
115 if (rc->id == RCLUNK)
116 v9fs_put_idpool(fid, &v9ses->fidpool);
117
118 kfree(rc);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700119}
120
121/**
122 * v9fs_t_clunk - release a fid (finish a transaction)
123 * @v9ses: 9P2000 session information
124 * @fid: fid to release
125 * @fcall: pointer to response fcall pointer
126 *
127 */
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800128
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700129int
Latchesar Ionkov3cf64292006-01-08 01:04:58 -0800130v9fs_t_clunk(struct v9fs_session_info *v9ses, u32 fid)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700131{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800132 int ret;
Latchesar Ionkov3cf64292006-01-08 01:04:58 -0800133 struct v9fs_fcall *tc, *rc;
134
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700135 dprintk(DEBUG_9P, "fid %d\n", fid);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700136
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800137 rc = NULL;
138 tc = v9fs_create_tclunk(fid);
139 if (!IS_ERR(tc))
140 ret = v9fs_mux_rpc(v9ses->mux, tc, &rc);
141 else
142 ret = PTR_ERR(tc);
Latchesar Ionkov3cf64292006-01-08 01:04:58 -0800143
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800144 if (ret)
145 dprintk(DEBUG_ERROR, "failed fid %d err %d\n", fid, ret);
146
147 v9fs_t_clunk_cb(v9ses, tc, rc, ret);
148 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700149}
150
Adrian Bunk29c6e482006-03-24 03:15:52 -0800151#if 0
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700152/**
153 * v9fs_v9fs_t_flush - flush a pending transaction
154 * @v9ses: 9P2000 session information
155 * @tag: tid to release
156 *
157 */
158
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800159int v9fs_t_flush(struct v9fs_session_info *v9ses, u16 oldtag)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700160{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800161 int ret;
162 struct v9fs_fcall *tc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700163
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800164 dprintk(DEBUG_9P, "oldtag %d\n", oldtag);
165
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800166 tc = v9fs_create_tflush(oldtag);
167 if (!IS_ERR(tc)) {
168 ret = v9fs_mux_rpc(v9ses->mux, tc, NULL);
169 kfree(tc);
170 } else
171 ret = PTR_ERR(tc);
172
173 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700174}
Adrian Bunk29c6e482006-03-24 03:15:52 -0800175#endif /* 0 */
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700176
177/**
178 * v9fs_t_stat - read a file's meta-data
179 * @v9ses: 9P2000 session information
180 * @fid: fid pointing to file or directory to get info about
181 * @fcall: pointer to response fcall
182 *
183 */
184
185int
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800186v9fs_t_stat(struct v9fs_session_info *v9ses, u32 fid, struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700187{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800188 int ret;
189 struct v9fs_fcall *tc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700190
191 dprintk(DEBUG_9P, "fid %d\n", fid);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700192
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800193 ret = -ENOMEM;
194 tc = v9fs_create_tstat(fid);
195 if (!IS_ERR(tc)) {
196 ret = v9fs_mux_rpc(v9ses->mux, tc, rcp);
197 kfree(tc);
198 } else
199 ret = PTR_ERR(tc);
200
201 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700202}
203
204/**
205 * v9fs_t_wstat - write a file's meta-data
206 * @v9ses: 9P2000 session information
207 * @fid: fid pointing to file or directory to write info about
208 * @stat: metadata
209 * @fcall: pointer to response fcall
210 *
211 */
212
213int
214v9fs_t_wstat(struct v9fs_session_info *v9ses, u32 fid,
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800215 struct v9fs_wstat *wstat, struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700216{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800217 int ret;
218 struct v9fs_fcall *tc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700219
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800220 dprintk(DEBUG_9P, "fid %d\n", fid);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700221
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800222 tc = v9fs_create_twstat(fid, wstat, v9ses->extended);
223 if (!IS_ERR(tc)) {
224 ret = v9fs_mux_rpc(v9ses->mux, tc, rcp);
225 kfree(tc);
226 } else
227 ret = PTR_ERR(tc);
228
229 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700230}
231
232/**
233 * v9fs_t_walk - walk a fid to a new file or directory
234 * @v9ses: 9P2000 session information
235 * @fid: fid to walk
236 * @newfid: new fid (for clone operations)
237 * @name: path to walk fid to
238 * @fcall: pointer to response fcall
239 *
240 */
241
242/* TODO: support multiple walk */
243
244int
245v9fs_t_walk(struct v9fs_session_info *v9ses, u32 fid, u32 newfid,
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800246 char *name, struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700247{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800248 int ret;
249 struct v9fs_fcall *tc;
250 int nwname;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700251
252 dprintk(DEBUG_9P, "fid %d newfid %d wname '%s'\n", fid, newfid, name);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700253
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800254 if (name)
255 nwname = 1;
256 else
257 nwname = 0;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700258
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800259 tc = v9fs_create_twalk(fid, newfid, nwname, &name);
260 if (!IS_ERR(tc)) {
261 ret = v9fs_mux_rpc(v9ses->mux, tc, rcp);
262 kfree(tc);
263 } else
264 ret = PTR_ERR(tc);
265
266 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700267}
268
269/**
270 * v9fs_t_open - open a file
271 *
272 * @v9ses - 9P2000 session information
273 * @fid - fid to open
274 * @mode - mode to open file (R, RW, etc)
275 * @fcall - pointer to response fcall
276 *
277 */
278
279int
280v9fs_t_open(struct v9fs_session_info *v9ses, u32 fid, u8 mode,
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800281 struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700282{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800283 int ret;
284 struct v9fs_fcall *tc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700285
286 dprintk(DEBUG_9P, "fid %d mode %d\n", fid, mode);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700287
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800288 tc = v9fs_create_topen(fid, mode);
289 if (!IS_ERR(tc)) {
290 ret = v9fs_mux_rpc(v9ses->mux, tc, rcp);
291 kfree(tc);
292 } else
293 ret = PTR_ERR(tc);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700294
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800295 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700296}
297
298/**
299 * v9fs_t_remove - remove a file or directory
300 * @v9ses: 9P2000 session information
301 * @fid: fid to remove
302 * @fcall: pointer to response fcall
303 *
304 */
305
306int
307v9fs_t_remove(struct v9fs_session_info *v9ses, u32 fid,
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800308 struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700309{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800310 int ret;
311 struct v9fs_fcall *tc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700312
313 dprintk(DEBUG_9P, "fid %d\n", fid);
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800314
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800315 tc = v9fs_create_tremove(fid);
316 if (!IS_ERR(tc)) {
317 ret = v9fs_mux_rpc(v9ses->mux, tc, rcp);
318 kfree(tc);
319 } else
320 ret = PTR_ERR(tc);
321
322 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700323}
324
325/**
326 * v9fs_t_create - create a file or directory
327 * @v9ses: 9P2000 session information
328 * @fid: fid to create
329 * @name: name of the file or directory to create
330 * @perm: permissions to create with
331 * @mode: mode to open file (R, RW, etc)
332 * @fcall: pointer to response fcall
333 *
334 */
335
336int
337v9fs_t_create(struct v9fs_session_info *v9ses, u32 fid, char *name,
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800338 u32 perm, u8 mode, struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700339{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800340 int ret;
341 struct v9fs_fcall *tc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700342
343 dprintk(DEBUG_9P, "fid %d name '%s' perm %x mode %d\n",
344 fid, name, perm, mode);
345
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800346 tc = v9fs_create_tcreate(fid, name, perm, mode);
347 if (!IS_ERR(tc)) {
348 ret = v9fs_mux_rpc(v9ses->mux, tc, rcp);
349 kfree(tc);
350 } else
351 ret = PTR_ERR(tc);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700352
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800353 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700354}
355
356/**
357 * v9fs_t_read - read data
358 * @v9ses: 9P2000 session information
359 * @fid: fid to read from
360 * @offset: offset to start read at
361 * @count: how many bytes to read
362 * @fcall: pointer to response fcall (with data)
363 *
364 */
365
366int
367v9fs_t_read(struct v9fs_session_info *v9ses, u32 fid, u64 offset,
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800368 u32 count, struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700369{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800370 int ret;
371 struct v9fs_fcall *tc, *rc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700372
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800373 dprintk(DEBUG_9P, "fid %d offset 0x%llux count 0x%x\n", fid,
374 (long long unsigned) offset, count);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700375
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800376 tc = v9fs_create_tread(fid, offset, count);
377 if (!IS_ERR(tc)) {
378 ret = v9fs_mux_rpc(v9ses->mux, tc, &rc);
379 if (!ret)
380 ret = rc->params.rread.count;
381 if (rcp)
382 *rcp = rc;
383 else
384 kfree(rc);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700385
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800386 kfree(tc);
387 } else
388 ret = PTR_ERR(tc);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700389
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800390 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700391}
392
393/**
394 * v9fs_t_write - write data
395 * @v9ses: 9P2000 session information
396 * @fid: fid to write to
397 * @offset: offset to start write at
398 * @count: how many bytes to write
399 * @fcall: pointer to response fcall
400 *
401 */
402
403int
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800404v9fs_t_write(struct v9fs_session_info *v9ses, u32 fid, u64 offset, u32 count,
405 const char __user *data, struct v9fs_fcall **rcp)
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700406{
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800407 int ret;
408 struct v9fs_fcall *tc, *rc;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700409
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800410 dprintk(DEBUG_9P, "fid %d offset 0x%llux count 0x%x\n", fid,
411 (long long unsigned) offset, count);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700412
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800413 tc = v9fs_create_twrite(fid, offset, count, data);
414 if (!IS_ERR(tc)) {
415 ret = v9fs_mux_rpc(v9ses->mux, tc, &rc);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700416
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800417 if (!ret)
418 ret = rc->params.rwrite.count;
419 if (rcp)
420 *rcp = rc;
421 else
422 kfree(rc);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700423
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800424 kfree(tc);
425 } else
426 ret = PTR_ERR(tc);
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700427
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800428 return ret;
Eric Van Hensbergenb8cf9452005-09-09 13:04:21 -0700429}
Latchesar Ionkov531b1092006-01-08 01:05:00 -0800430