6 * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
26 #include <linux/module.h>
27 #include <linux/errno.h>
29 #include <linux/poll.h>
30 #include <linux/idr.h>
31 #include <linux/mutex.h>
32 #include <linux/sched.h>
33 #include <linux/uaccess.h>
34 #include <net/9p/9p.h>
35 #include <linux/parser.h>
36 #include <net/9p/client.h>
37 #include <net/9p/transport.h>
41 * Client Option Parsing (code inspired by NFS code)
42 * - a little lazy - parse all client options
52 static const match_table_t tokens
= {
53 {Opt_msize
, "msize=%u"},
54 {Opt_legacy
, "noextend"},
55 {Opt_trans
, "trans=%s"},
59 static struct p9_req_t
*
60 p9_client_rpc(struct p9_client
*c
, int8_t type
, const char *fmt
, ...);
63 * v9fs_parse_options - parse mount options into session structure
64 * @options: options string passed from mount
65 * @v9ses: existing v9fs session information
67 * Return 0 upon success, -ERRNO upon failure
70 static int parse_opts(char *opts
, struct p9_client
*clnt
)
74 substring_t args
[MAX_OPT_ARGS
];
84 options
= kstrdup(opts
, GFP_KERNEL
);
86 P9_DPRINTK(P9_DEBUG_ERROR
,
87 "failed to allocate copy of option string\n");
91 while ((p
= strsep(&options
, ",")) != NULL
) {
95 token
= match_token(p
, tokens
, args
);
96 if (token
< Opt_trans
) {
97 int r
= match_int(&args
[0], &option
);
99 P9_DPRINTK(P9_DEBUG_ERROR
,
100 "integer field, but no integer?\n");
107 clnt
->msize
= option
;
110 clnt
->trans_mod
= v9fs_get_trans_by_name(&args
[0]);
120 if (!clnt
->trans_mod
)
121 clnt
->trans_mod
= v9fs_get_default_trans();
128 * p9_tag_alloc - lookup/allocate a request by tag
129 * @c: client session to lookup tag within
130 * @tag: numeric id for transaction
132 * this is a simple array lookup, but will grow the
133 * request_slots as necessary to accomodate transaction
134 * ids which did not previously have a slot.
136 * this code relies on the client spinlock to manage locks, its
137 * possible we should switch to something else, but I'd rather
138 * stick with something low-overhead for the common case.
142 static struct p9_req_t
*p9_tag_alloc(struct p9_client
*c
, u16 tag
)
146 struct p9_req_t
*req
;
148 /* This looks up the original request by tag so we know which
149 * buffer to read the data into */
152 if (tag
>= c
->max_tag
) {
153 spin_lock_irqsave(&c
->lock
, flags
);
154 /* check again since original check was outside of lock */
155 while (tag
>= c
->max_tag
) {
156 row
= (tag
/ P9_ROW_MAXTAG
);
157 c
->reqs
[row
] = kcalloc(P9_ROW_MAXTAG
,
158 sizeof(struct p9_req_t
), GFP_ATOMIC
);
161 printk(KERN_ERR
"Couldn't grow tag array\n");
162 spin_unlock_irqrestore(&c
->lock
, flags
);
163 return ERR_PTR(-ENOMEM
);
165 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
166 c
->reqs
[row
][col
].status
= REQ_STATUS_IDLE
;
167 c
->reqs
[row
][col
].tc
= NULL
;
169 c
->max_tag
+= P9_ROW_MAXTAG
;
171 spin_unlock_irqrestore(&c
->lock
, flags
);
173 row
= tag
/ P9_ROW_MAXTAG
;
174 col
= tag
% P9_ROW_MAXTAG
;
176 req
= &c
->reqs
[row
][col
];
178 req
->wq
= kmalloc(sizeof(wait_queue_head_t
), GFP_KERNEL
);
180 printk(KERN_ERR
"Couldn't grow tag array\n");
181 return ERR_PTR(-ENOMEM
);
183 init_waitqueue_head(req
->wq
);
184 req
->tc
= kmalloc(sizeof(struct p9_fcall
)+c
->msize
,
186 req
->rc
= kmalloc(sizeof(struct p9_fcall
)+c
->msize
,
188 if ((!req
->tc
) || (!req
->rc
)) {
189 printk(KERN_ERR
"Couldn't grow tag array\n");
193 req
->tc
= req
->rc
= NULL
;
195 return ERR_PTR(-ENOMEM
);
197 req
->tc
->sdata
= (char *) req
->tc
+ sizeof(struct p9_fcall
);
198 req
->tc
->capacity
= c
->msize
;
199 req
->rc
->sdata
= (char *) req
->rc
+ sizeof(struct p9_fcall
);
200 req
->rc
->capacity
= c
->msize
;
203 p9pdu_reset(req
->tc
);
204 p9pdu_reset(req
->rc
);
207 req
->tc
->tag
= tag
-1;
208 req
->status
= REQ_STATUS_ALLOC
;
210 return &c
->reqs
[row
][col
];
214 * p9_tag_lookup - lookup a request by tag
215 * @c: client session to lookup tag within
216 * @tag: numeric id for transaction
220 struct p9_req_t
*p9_tag_lookup(struct p9_client
*c
, u16 tag
)
224 /* This looks up the original request by tag so we know which
225 * buffer to read the data into */
228 BUG_ON(tag
>= c
->max_tag
);
230 row
= tag
/ P9_ROW_MAXTAG
;
231 col
= tag
% P9_ROW_MAXTAG
;
233 return &c
->reqs
[row
][col
];
235 EXPORT_SYMBOL(p9_tag_lookup
);
238 * p9_tag_init - setup tags structure and contents
239 * @tags: tags structure from the client struct
241 * This initializes the tags structure for each client instance.
245 static int p9_tag_init(struct p9_client
*c
)
249 c
->tagpool
= p9_idpool_create();
250 if (IS_ERR(c
->tagpool
)) {
251 err
= PTR_ERR(c
->tagpool
);
256 p9_idpool_get(c
->tagpool
); /* reserve tag 0 */
264 * p9_tag_cleanup - cleans up tags structure and reclaims resources
265 * @tags: tags structure from the client struct
267 * This frees resources associated with the tags structure
270 static void p9_tag_cleanup(struct p9_client
*c
)
274 /* check to insure all requests are idle */
275 for (row
= 0; row
< (c
->max_tag
/P9_ROW_MAXTAG
); row
++) {
276 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
277 if (c
->reqs
[row
][col
].status
!= REQ_STATUS_IDLE
) {
278 P9_DPRINTK(P9_DEBUG_MUX
,
279 "Attempting to cleanup non-free tag %d,%d\n",
281 /* TODO: delay execution of cleanup */
288 p9_idpool_destroy(c
->tagpool
);
290 /* free requests associated with tags */
291 for (row
= 0; row
< (c
->max_tag
/P9_ROW_MAXTAG
); row
++) {
292 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
293 kfree(c
->reqs
[row
][col
].wq
);
294 kfree(c
->reqs
[row
][col
].tc
);
295 kfree(c
->reqs
[row
][col
].rc
);
303 * p9_free_req - free a request and clean-up as necessary
305 * r: request to release
309 static void p9_free_req(struct p9_client
*c
, struct p9_req_t
*r
)
311 int tag
= r
->tc
->tag
;
312 P9_DPRINTK(P9_DEBUG_MUX
, "clnt %p req %p tag: %d\n", c
, r
, tag
);
314 r
->status
= REQ_STATUS_IDLE
;
315 if (tag
!= P9_NOTAG
&& p9_idpool_check(tag
, c
->tagpool
))
316 p9_idpool_put(tag
, c
->tagpool
);
320 * p9_client_cb - call back from transport to client
322 * req: request received
325 void p9_client_cb(struct p9_client
*c
, struct p9_req_t
*req
)
327 struct p9_req_t
*other_req
;
330 P9_DPRINTK(P9_DEBUG_MUX
, " tag %d\n", req
->tc
->tag
);
332 if (req
->status
== REQ_STATUS_ERROR
)
335 if (req
->flush_tag
) { /* flush receive path */
336 P9_DPRINTK(P9_DEBUG_9P
, "<<< RFLUSH %d\n", req
->tc
->tag
);
337 spin_lock_irqsave(&c
->lock
, flags
);
338 other_req
= p9_tag_lookup(c
, req
->flush_tag
);
339 if (other_req
->status
!= REQ_STATUS_FLSH
) /* stale flush */
340 spin_unlock_irqrestore(&c
->lock
, flags
);
342 other_req
->status
= REQ_STATUS_FLSHD
;
343 spin_unlock_irqrestore(&c
->lock
, flags
);
344 wake_up(other_req
->wq
);
347 } else { /* normal receive path */
348 P9_DPRINTK(P9_DEBUG_MUX
, "normal: tag %d\n", req
->tc
->tag
);
349 spin_lock_irqsave(&c
->lock
, flags
);
350 if (req
->status
!= REQ_STATUS_FLSHD
)
351 req
->status
= REQ_STATUS_RCVD
;
352 spin_unlock_irqrestore(&c
->lock
, flags
);
354 P9_DPRINTK(P9_DEBUG_MUX
, "wakeup: %d\n", req
->tc
->tag
);
357 EXPORT_SYMBOL(p9_client_cb
);
360 * p9_parse_header - parse header arguments out of a packet
361 * @pdu: packet to parse
362 * @size: size of packet
363 * @type: type of request
364 * @tag: tag of packet
365 * @rewind: set if we need to rewind offset afterwards
369 p9_parse_header(struct p9_fcall
*pdu
, int32_t *size
, int8_t *type
, int16_t *tag
,
375 int offset
= pdu
->offset
;
382 err
= p9pdu_readf(pdu
, 0, "dbw", &r_size
, &r_type
, &r_tag
);
384 goto rewind_and_exit
;
390 P9_DPRINTK(P9_DEBUG_9P
, "<<< size=%d type: %d tag: %d\n", pdu
->size
,
403 pdu
->offset
= offset
;
406 EXPORT_SYMBOL(p9_parse_header
);
409 * p9_check_errors - check 9p packet for error return and process it
410 * @c: current client instance
411 * @req: request to parse and check for error conditions
413 * returns error code if one is discovered, otherwise returns 0
415 * this will have to be more complicated if we have multiple
419 static int p9_check_errors(struct p9_client
*c
, struct p9_req_t
*req
)
424 err
= p9_parse_header(req
->rc
, NULL
, &type
, NULL
, 0);
426 P9_DPRINTK(P9_DEBUG_ERROR
, "couldn't parse header %d\n", err
);
430 if (type
== P9_RERROR
) {
434 err
= p9pdu_readf(req
->rc
, c
->dotu
, "s?d", &ename
, &ecode
);
436 P9_DPRINTK(P9_DEBUG_ERROR
, "couldn't parse error%d\n",
445 err
= p9_errstr2errno(ename
, strlen(ename
));
447 /* string match failed */
452 P9_DPRINTK(P9_DEBUG_9P
, "<<< RERROR (%d) %s\n", -ecode
, ename
);
462 * p9_client_flush - flush (cancel) a request
464 * req: request to cancel
466 * This sents a flush for a particular requests and links
467 * the flush request to the original request. The current
468 * code only supports a single flush request although the protocol
469 * allows for multiple flush requests to be sent for a single request.
473 static int p9_client_flush(struct p9_client
*c
, struct p9_req_t
*oldreq
)
475 struct p9_req_t
*req
;
479 err
= p9_parse_header(oldreq
->tc
, NULL
, NULL
, &oldtag
, 1);
483 P9_DPRINTK(P9_DEBUG_9P
, ">>> TFLUSH tag %d\n", oldtag
);
485 req
= p9_client_rpc(c
, P9_TFLUSH
, "w", oldtag
);
489 req
->flush_tag
= oldtag
;
491 /* we don't free anything here because RPC isn't complete */
496 * p9_client_rpc - issue a request and wait for a response
498 * @type: type of request
499 * @fmt: protocol format string (see protocol.c)
501 * Returns request structure (which client must free using p9_free_req)
504 static struct p9_req_t
*
505 p9_client_rpc(struct p9_client
*c
, int8_t type
, const char *fmt
, ...)
509 struct p9_req_t
*req
;
514 P9_DPRINTK(P9_DEBUG_MUX
, "client %p op %d\n", c
, type
);
516 if (c
->status
!= Connected
)
517 return ERR_PTR(-EIO
);
519 if (signal_pending(current
)) {
521 clear_thread_flag(TIF_SIGPENDING
);
526 if (type
!= P9_TVERSION
) {
527 tag
= p9_idpool_get(c
->tagpool
);
529 return ERR_PTR(-ENOMEM
);
532 req
= p9_tag_alloc(c
, tag
);
536 /* marshall the data */
537 p9pdu_prepare(req
->tc
, tag
, type
);
539 err
= p9pdu_vwritef(req
->tc
, c
->dotu
, fmt
, ap
);
541 p9pdu_finalize(req
->tc
);
543 err
= c
->trans_mod
->request(c
, req
);
545 c
->status
= Disconnected
;
549 /* if it was a flush we just transmitted, return our tag */
550 if (type
== P9_TFLUSH
)
553 P9_DPRINTK(P9_DEBUG_MUX
, "wait %p tag: %d\n", req
->wq
, tag
);
554 err
= wait_event_interruptible(*req
->wq
,
555 req
->status
>= REQ_STATUS_RCVD
);
556 P9_DPRINTK(P9_DEBUG_MUX
, "wait %p tag: %d returned %d (flushed=%d)\n",
557 req
->wq
, tag
, err
, flushed
);
559 if (req
->status
== REQ_STATUS_ERROR
) {
560 P9_DPRINTK(P9_DEBUG_ERROR
, "req_status error %d\n", req
->t_err
);
562 } else if (err
== -ERESTARTSYS
&& flushed
) {
563 P9_DPRINTK(P9_DEBUG_MUX
, "flushed - going again\n");
565 } else if (req
->status
== REQ_STATUS_FLSHD
) {
566 P9_DPRINTK(P9_DEBUG_MUX
, "flushed - erestartsys\n");
570 if ((err
== -ERESTARTSYS
) && (c
->status
== Connected
) && (!flushed
)) {
571 P9_DPRINTK(P9_DEBUG_MUX
, "flushing\n");
572 spin_lock_irqsave(&c
->lock
, flags
);
573 if (req
->status
== REQ_STATUS_SENT
)
574 req
->status
= REQ_STATUS_FLSH
;
575 spin_unlock_irqrestore(&c
->lock
, flags
);
578 clear_thread_flag(TIF_SIGPENDING
);
580 if (c
->trans_mod
->cancel(c
, req
)) {
581 err
= p9_client_flush(c
, req
);
588 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
590 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
596 err
= p9_check_errors(c
, req
);
598 P9_DPRINTK(P9_DEBUG_MUX
, "exit: client %p op %d\n", c
, type
);
603 P9_DPRINTK(P9_DEBUG_MUX
, "exit: client %p op %d error: %d\n", c
, type
,
609 static struct p9_fid
*p9_fid_create(struct p9_client
*clnt
)
615 P9_DPRINTK(P9_DEBUG_FID
, "clnt %p\n", clnt
);
616 fid
= kmalloc(sizeof(struct p9_fid
), GFP_KERNEL
);
618 return ERR_PTR(-ENOMEM
);
620 ret
= p9_idpool_get(clnt
->fidpool
);
627 memset(&fid
->qid
, 0, sizeof(struct p9_qid
));
630 fid
->uid
= current_fsuid();
634 spin_lock_irqsave(&clnt
->lock
, flags
);
635 list_add(&fid
->flist
, &clnt
->fidlist
);
636 spin_unlock_irqrestore(&clnt
->lock
, flags
);
645 static void p9_fid_destroy(struct p9_fid
*fid
)
647 struct p9_client
*clnt
;
650 P9_DPRINTK(P9_DEBUG_FID
, "fid %d\n", fid
->fid
);
652 p9_idpool_put(fid
->fid
, clnt
->fidpool
);
653 spin_lock_irqsave(&clnt
->lock
, flags
);
654 list_del(&fid
->flist
);
655 spin_unlock_irqrestore(&clnt
->lock
, flags
);
659 int p9_client_version(struct p9_client
*c
)
662 struct p9_req_t
*req
;
666 P9_DPRINTK(P9_DEBUG_9P
, ">>> TVERSION msize %d extended %d\n",
668 req
= p9_client_rpc(c
, P9_TVERSION
, "ds", c
->msize
,
669 c
->dotu
? "9P2000.u" : "9P2000");
673 err
= p9pdu_readf(req
->rc
, c
->dotu
, "ds", &msize
, &version
);
675 P9_DPRINTK(P9_DEBUG_9P
, "version error %d\n", err
);
676 p9pdu_dump(1, req
->rc
);
680 P9_DPRINTK(P9_DEBUG_9P
, "<<< RVERSION msize %d %s\n", msize
, version
);
681 if (!memcmp(version
, "9P2000.u", 8))
683 else if (!memcmp(version
, "9P2000", 6))
690 if (msize
< c
->msize
)
699 EXPORT_SYMBOL(p9_client_version
);
701 struct p9_client
*p9_client_create(const char *dev_name
, char *options
)
704 struct p9_client
*clnt
;
707 clnt
= kmalloc(sizeof(struct p9_client
), GFP_KERNEL
);
709 return ERR_PTR(-ENOMEM
);
711 clnt
->trans_mod
= NULL
;
713 spin_lock_init(&clnt
->lock
);
714 INIT_LIST_HEAD(&clnt
->fidlist
);
715 clnt
->fidpool
= p9_idpool_create();
716 if (IS_ERR(clnt
->fidpool
)) {
717 err
= PTR_ERR(clnt
->fidpool
);
718 clnt
->fidpool
= NULL
;
724 err
= parse_opts(options
, clnt
);
728 if (clnt
->trans_mod
== NULL
) {
729 err
= -EPROTONOSUPPORT
;
730 P9_DPRINTK(P9_DEBUG_ERROR
,
731 "No transport defined or default transport\n");
735 P9_DPRINTK(P9_DEBUG_MUX
, "clnt %p trans %p msize %d dotu %d\n",
736 clnt
, clnt
->trans_mod
, clnt
->msize
, clnt
->dotu
);
738 err
= clnt
->trans_mod
->create(clnt
, dev_name
, options
);
742 if ((clnt
->msize
+P9_IOHDRSZ
) > clnt
->trans_mod
->maxsize
)
743 clnt
->msize
= clnt
->trans_mod
->maxsize
-P9_IOHDRSZ
;
745 err
= p9_client_version(clnt
);
752 p9_client_destroy(clnt
);
755 EXPORT_SYMBOL(p9_client_create
);
757 void p9_client_destroy(struct p9_client
*clnt
)
759 struct p9_fid
*fid
, *fidptr
;
761 P9_DPRINTK(P9_DEBUG_MUX
, "clnt %p\n", clnt
);
764 clnt
->trans_mod
->close(clnt
);
766 v9fs_put_trans(clnt
->trans_mod
);
768 list_for_each_entry_safe(fid
, fidptr
, &clnt
->fidlist
, flist
)
772 p9_idpool_destroy(clnt
->fidpool
);
774 p9_tag_cleanup(clnt
);
778 EXPORT_SYMBOL(p9_client_destroy
);
780 void p9_client_disconnect(struct p9_client
*clnt
)
782 P9_DPRINTK(P9_DEBUG_9P
, "clnt %p\n", clnt
);
783 clnt
->status
= Disconnected
;
785 EXPORT_SYMBOL(p9_client_disconnect
);
787 struct p9_fid
*p9_client_attach(struct p9_client
*clnt
, struct p9_fid
*afid
,
788 char *uname
, u32 n_uname
, char *aname
)
791 struct p9_req_t
*req
;
795 P9_DPRINTK(P9_DEBUG_9P
, ">>> TATTACH afid %d uname %s aname %s\n",
796 afid
? afid
->fid
: -1, uname
, aname
);
799 fid
= p9_fid_create(clnt
);
806 req
= p9_client_rpc(clnt
, P9_TATTACH
, "ddss?d", fid
->fid
,
807 afid
? afid
->fid
: P9_NOFID
, uname
, aname
, n_uname
);
813 err
= p9pdu_readf(req
->rc
, clnt
->dotu
, "Q", &qid
);
815 p9pdu_dump(1, req
->rc
);
816 p9_free_req(clnt
, req
);
820 P9_DPRINTK(P9_DEBUG_9P
, "<<< RATTACH qid %x.%llx.%x\n",
822 (unsigned long long)qid
.path
,
825 memmove(&fid
->qid
, &qid
, sizeof(struct p9_qid
));
827 p9_free_req(clnt
, req
);
835 EXPORT_SYMBOL(p9_client_attach
);
838 p9_client_auth(struct p9_client
*clnt
, char *uname
, u32 n_uname
, char *aname
)
841 struct p9_req_t
*req
;
845 P9_DPRINTK(P9_DEBUG_9P
, ">>> TAUTH uname %s aname %s\n", uname
, aname
);
848 afid
= p9_fid_create(clnt
);
855 req
= p9_client_rpc(clnt
, P9_TAUTH
, "dss?d",
856 afid
? afid
->fid
: P9_NOFID
, uname
, aname
, n_uname
);
862 err
= p9pdu_readf(req
->rc
, clnt
->dotu
, "Q", &qid
);
864 p9pdu_dump(1, req
->rc
);
865 p9_free_req(clnt
, req
);
869 P9_DPRINTK(P9_DEBUG_9P
, "<<< RAUTH qid %x.%llx.%x\n",
871 (unsigned long long)qid
.path
,
874 memmove(&afid
->qid
, &qid
, sizeof(struct p9_qid
));
875 p9_free_req(clnt
, req
);
880 p9_fid_destroy(afid
);
883 EXPORT_SYMBOL(p9_client_auth
);
885 struct p9_fid
*p9_client_walk(struct p9_fid
*oldfid
, int nwname
, char **wnames
,
889 struct p9_client
*clnt
;
891 struct p9_qid
*wqids
;
892 struct p9_req_t
*req
;
893 int16_t nwqids
, count
;
898 fid
= p9_fid_create(clnt
);
905 fid
->uid
= oldfid
->uid
;
910 P9_DPRINTK(P9_DEBUG_9P
, ">>> TWALK fids %d,%d nwname %d wname[0] %s\n",
911 oldfid
->fid
, fid
->fid
, nwname
, wnames
? wnames
[0] : NULL
);
913 req
= p9_client_rpc(clnt
, P9_TWALK
, "ddT", oldfid
->fid
, fid
->fid
,
920 err
= p9pdu_readf(req
->rc
, clnt
->dotu
, "R", &nwqids
, &wqids
);
922 p9pdu_dump(1, req
->rc
);
923 p9_free_req(clnt
, req
);
926 p9_free_req(clnt
, req
);
928 P9_DPRINTK(P9_DEBUG_9P
, "<<< RWALK nwqid %d:\n", nwqids
);
930 if (nwqids
!= nwname
) {
935 for (count
= 0; count
< nwqids
; count
++)
936 P9_DPRINTK(P9_DEBUG_9P
, "<<< [%d] %x.%llx.%x\n",
937 count
, wqids
[count
].type
,
938 (unsigned long long)wqids
[count
].path
,
939 wqids
[count
].version
);
942 memmove(&fid
->qid
, &wqids
[nwqids
- 1], sizeof(struct p9_qid
));
944 fid
->qid
= oldfid
->qid
;
949 p9_client_clunk(fid
);
953 if (fid
&& (fid
!= oldfid
))
958 EXPORT_SYMBOL(p9_client_walk
);
960 int p9_client_open(struct p9_fid
*fid
, int mode
)
963 struct p9_client
*clnt
;
964 struct p9_req_t
*req
;
968 P9_DPRINTK(P9_DEBUG_9P
, ">>> TOPEN fid %d mode %d\n", fid
->fid
, mode
);
975 req
= p9_client_rpc(clnt
, P9_TOPEN
, "db", fid
->fid
, mode
);
981 err
= p9pdu_readf(req
->rc
, clnt
->dotu
, "Qd", &qid
, &iounit
);
983 p9pdu_dump(1, req
->rc
);
987 P9_DPRINTK(P9_DEBUG_9P
, "<<< ROPEN qid %x.%llx.%x iounit %x\n",
989 (unsigned long long)qid
.path
,
990 qid
.version
, iounit
);
993 fid
->iounit
= iounit
;
996 p9_free_req(clnt
, req
);
1000 EXPORT_SYMBOL(p9_client_open
);
1002 int p9_client_fcreate(struct p9_fid
*fid
, char *name
, u32 perm
, int mode
,
1006 struct p9_client
*clnt
;
1007 struct p9_req_t
*req
;
1011 P9_DPRINTK(P9_DEBUG_9P
, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1012 fid
->fid
, name
, perm
, mode
);
1016 if (fid
->mode
!= -1)
1019 req
= p9_client_rpc(clnt
, P9_TCREATE
, "dsdb?s", fid
->fid
, name
, perm
,
1026 err
= p9pdu_readf(req
->rc
, clnt
->dotu
, "Qd", &qid
, &iounit
);
1028 p9pdu_dump(1, req
->rc
);
1029 goto free_and_error
;
1032 P9_DPRINTK(P9_DEBUG_9P
, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1034 (unsigned long long)qid
.path
,
1035 qid
.version
, iounit
);
1038 fid
->iounit
= iounit
;
1041 p9_free_req(clnt
, req
);
1045 EXPORT_SYMBOL(p9_client_fcreate
);
1047 int p9_client_clunk(struct p9_fid
*fid
)
1050 struct p9_client
*clnt
;
1051 struct p9_req_t
*req
;
1053 P9_DPRINTK(P9_DEBUG_9P
, ">>> TCLUNK fid %d\n", fid
->fid
);
1057 req
= p9_client_rpc(clnt
, P9_TCLUNK
, "d", fid
->fid
);
1063 P9_DPRINTK(P9_DEBUG_9P
, "<<< RCLUNK fid %d\n", fid
->fid
);
1065 p9_free_req(clnt
, req
);
1066 p9_fid_destroy(fid
);
1071 EXPORT_SYMBOL(p9_client_clunk
);
1073 int p9_client_remove(struct p9_fid
*fid
)
1076 struct p9_client
*clnt
;
1077 struct p9_req_t
*req
;
1079 P9_DPRINTK(P9_DEBUG_9P
, ">>> TREMOVE fid %d\n", fid
->fid
);
1083 req
= p9_client_rpc(clnt
, P9_TREMOVE
, "d", fid
->fid
);
1089 P9_DPRINTK(P9_DEBUG_9P
, "<<< RREMOVE fid %d\n", fid
->fid
);
1091 p9_free_req(clnt
, req
);
1092 p9_fid_destroy(fid
);
1097 EXPORT_SYMBOL(p9_client_remove
);
1100 p9_client_read(struct p9_fid
*fid
, char *data
, char __user
*udata
, u64 offset
,
1103 int err
, rsize
, total
;
1104 struct p9_client
*clnt
;
1105 struct p9_req_t
*req
;
1108 P9_DPRINTK(P9_DEBUG_9P
, ">>> TREAD fid %d offset %llu %d\n", fid
->fid
,
1109 (long long unsigned) offset
, count
);
1114 rsize
= fid
->iounit
;
1115 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1116 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1121 req
= p9_client_rpc(clnt
, P9_TREAD
, "dqd", fid
->fid
, offset
, rsize
);
1127 err
= p9pdu_readf(req
->rc
, clnt
->dotu
, "D", &count
, &dataptr
);
1129 p9pdu_dump(1, req
->rc
);
1130 goto free_and_error
;
1133 P9_DPRINTK(P9_DEBUG_9P
, "<<< RREAD count %d\n", count
);
1136 memmove(data
, dataptr
, count
);
1141 err
= copy_to_user(udata
, dataptr
, count
);
1144 goto free_and_error
;
1148 p9_free_req(clnt
, req
);
1152 p9_free_req(clnt
, req
);
1156 EXPORT_SYMBOL(p9_client_read
);
1159 p9_client_write(struct p9_fid
*fid
, char *data
, const char __user
*udata
,
1160 u64 offset
, u32 count
)
1162 int err
, rsize
, total
;
1163 struct p9_client
*clnt
;
1164 struct p9_req_t
*req
;
1166 P9_DPRINTK(P9_DEBUG_9P
, ">>> TWRITE fid %d offset %llu count %d\n",
1167 fid
->fid
, (long long unsigned) offset
, count
);
1172 rsize
= fid
->iounit
;
1173 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1174 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1179 req
= p9_client_rpc(clnt
, P9_TWRITE
, "dqD", fid
->fid
, offset
,
1182 req
= p9_client_rpc(clnt
, P9_TWRITE
, "dqU", fid
->fid
, offset
,
1189 err
= p9pdu_readf(req
->rc
, clnt
->dotu
, "d", &count
);
1191 p9pdu_dump(1, req
->rc
);
1192 goto free_and_error
;
1195 P9_DPRINTK(P9_DEBUG_9P
, "<<< RWRITE count %d\n", count
);
1197 p9_free_req(clnt
, req
);
1201 p9_free_req(clnt
, req
);
1205 EXPORT_SYMBOL(p9_client_write
);
1207 struct p9_wstat
*p9_client_stat(struct p9_fid
*fid
)
1210 struct p9_client
*clnt
;
1211 struct p9_wstat
*ret
= kmalloc(sizeof(struct p9_wstat
), GFP_KERNEL
);
1212 struct p9_req_t
*req
;
1215 P9_DPRINTK(P9_DEBUG_9P
, ">>> TSTAT fid %d\n", fid
->fid
);
1218 return ERR_PTR(-ENOMEM
);
1223 req
= p9_client_rpc(clnt
, P9_TSTAT
, "d", fid
->fid
);
1229 err
= p9pdu_readf(req
->rc
, clnt
->dotu
, "wS", &ignored
, ret
);
1232 p9pdu_dump(1, req
->rc
);
1233 goto free_and_error
;
1236 P9_DPRINTK(P9_DEBUG_9P
,
1237 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1238 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1239 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1240 "<<< uid=%d gid=%d n_muid=%d\n",
1241 ret
->size
, ret
->type
, ret
->dev
, ret
->qid
.type
,
1242 (unsigned long long)ret
->qid
.path
, ret
->qid
.version
, ret
->mode
,
1243 ret
->atime
, ret
->mtime
, (unsigned long long)ret
->length
,
1244 ret
->name
, ret
->uid
, ret
->gid
, ret
->muid
, ret
->extension
,
1245 ret
->n_uid
, ret
->n_gid
, ret
->n_muid
);
1248 p9_free_req(clnt
, req
);
1252 EXPORT_SYMBOL(p9_client_stat
);
1254 int p9_client_wstat(struct p9_fid
*fid
, struct p9_wstat
*wst
)
1257 struct p9_req_t
*req
;
1258 struct p9_client
*clnt
;
1260 P9_DPRINTK(P9_DEBUG_9P
, ">>> TWSTAT fid %d\n", fid
->fid
);
1261 P9_DPRINTK(P9_DEBUG_9P
,
1262 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1263 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1264 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1265 " uid=%d gid=%d n_muid=%d\n",
1266 wst
->size
, wst
->type
, wst
->dev
, wst
->qid
.type
,
1267 (unsigned long long)wst
->qid
.path
, wst
->qid
.version
, wst
->mode
,
1268 wst
->atime
, wst
->mtime
, (unsigned long long)wst
->length
,
1269 wst
->name
, wst
->uid
, wst
->gid
, wst
->muid
, wst
->extension
,
1270 wst
->n_uid
, wst
->n_gid
, wst
->n_muid
);
1274 req
= p9_client_rpc(clnt
, P9_TWSTAT
, "dwS", fid
->fid
, 0, wst
);
1280 P9_DPRINTK(P9_DEBUG_9P
, "<<< RWSTAT fid %d\n", fid
->fid
);
1282 p9_free_req(clnt
, req
);
1286 EXPORT_SYMBOL(p9_client_wstat
);