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/slab.h>
33 #include <linux/sched.h>
34 #include <linux/uaccess.h>
35 #include <net/9p/9p.h>
36 #include <linux/parser.h>
37 #include <net/9p/client.h>
38 #include <net/9p/transport.h>
42 * Client Option Parsing (code inspired by NFS code)
43 * - a little lazy - parse all client options
54 static const match_table_t tokens
= {
55 {Opt_msize
, "msize=%u"},
56 {Opt_legacy
, "noextend"},
57 {Opt_trans
, "trans=%s"},
58 {Opt_version
, "version=%s"},
62 inline int p9_is_proto_dotl(struct p9_client
*clnt
)
64 return (clnt
->proto_version
== p9_proto_2000L
);
66 EXPORT_SYMBOL(p9_is_proto_dotl
);
68 inline int p9_is_proto_dotu(struct p9_client
*clnt
)
70 return (clnt
->proto_version
== p9_proto_2000u
);
72 EXPORT_SYMBOL(p9_is_proto_dotu
);
74 /* Interpret mount option for protocol version */
75 static int get_protocol_version(const substring_t
*name
)
77 int version
= -EINVAL
;
79 if (!strncmp("9p2000", name
->from
, name
->to
-name
->from
)) {
80 version
= p9_proto_legacy
;
81 P9_DPRINTK(P9_DEBUG_9P
, "Protocol version: Legacy\n");
82 } else if (!strncmp("9p2000.u", name
->from
, name
->to
-name
->from
)) {
83 version
= p9_proto_2000u
;
84 P9_DPRINTK(P9_DEBUG_9P
, "Protocol version: 9P2000.u\n");
85 } else if (!strncmp("9p2000.L", name
->from
, name
->to
-name
->from
)) {
86 version
= p9_proto_2000L
;
87 P9_DPRINTK(P9_DEBUG_9P
, "Protocol version: 9P2000.L\n");
89 P9_DPRINTK(P9_DEBUG_ERROR
, "Unknown protocol version %s. ",
95 static struct p9_req_t
*
96 p9_client_rpc(struct p9_client
*c
, int8_t type
, const char *fmt
, ...);
99 * parse_options - parse mount options into client structure
100 * @opts: options string passed from mount
101 * @clnt: existing v9fs client information
103 * Return 0 upon success, -ERRNO upon failure
106 static int parse_opts(char *opts
, struct p9_client
*clnt
)
108 char *options
, *tmp_options
;
110 substring_t args
[MAX_OPT_ARGS
];
114 clnt
->proto_version
= p9_proto_2000u
;
120 tmp_options
= kstrdup(opts
, GFP_KERNEL
);
122 P9_DPRINTK(P9_DEBUG_ERROR
,
123 "failed to allocate copy of option string\n");
126 options
= tmp_options
;
128 while ((p
= strsep(&options
, ",")) != NULL
) {
132 token
= match_token(p
, tokens
, args
);
133 if (token
< Opt_trans
) {
134 int r
= match_int(&args
[0], &option
);
136 P9_DPRINTK(P9_DEBUG_ERROR
,
137 "integer field, but no integer?\n");
144 clnt
->msize
= option
;
147 clnt
->trans_mod
= v9fs_get_trans_by_name(&args
[0]);
148 if(clnt
->trans_mod
== NULL
) {
149 P9_DPRINTK(P9_DEBUG_ERROR
,
150 "Could not find request transport: %s\n",
153 goto free_and_return
;
157 clnt
->proto_version
= p9_proto_legacy
;
160 ret
= get_protocol_version(&args
[0]);
162 goto free_and_return
;
163 clnt
->proto_version
= ret
;
176 * p9_tag_alloc - lookup/allocate a request by tag
177 * @c: client session to lookup tag within
178 * @tag: numeric id for transaction
180 * this is a simple array lookup, but will grow the
181 * request_slots as necessary to accomodate transaction
182 * ids which did not previously have a slot.
184 * this code relies on the client spinlock to manage locks, its
185 * possible we should switch to something else, but I'd rather
186 * stick with something low-overhead for the common case.
190 static struct p9_req_t
*p9_tag_alloc(struct p9_client
*c
, u16 tag
)
194 struct p9_req_t
*req
;
196 /* This looks up the original request by tag so we know which
197 * buffer to read the data into */
200 if (tag
>= c
->max_tag
) {
201 spin_lock_irqsave(&c
->lock
, flags
);
202 /* check again since original check was outside of lock */
203 while (tag
>= c
->max_tag
) {
204 row
= (tag
/ P9_ROW_MAXTAG
);
205 c
->reqs
[row
] = kcalloc(P9_ROW_MAXTAG
,
206 sizeof(struct p9_req_t
), GFP_ATOMIC
);
209 printk(KERN_ERR
"Couldn't grow tag array\n");
210 spin_unlock_irqrestore(&c
->lock
, flags
);
211 return ERR_PTR(-ENOMEM
);
213 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
214 c
->reqs
[row
][col
].status
= REQ_STATUS_IDLE
;
215 c
->reqs
[row
][col
].tc
= NULL
;
217 c
->max_tag
+= P9_ROW_MAXTAG
;
219 spin_unlock_irqrestore(&c
->lock
, flags
);
221 row
= tag
/ P9_ROW_MAXTAG
;
222 col
= tag
% P9_ROW_MAXTAG
;
224 req
= &c
->reqs
[row
][col
];
226 req
->wq
= kmalloc(sizeof(wait_queue_head_t
), GFP_KERNEL
);
228 printk(KERN_ERR
"Couldn't grow tag array\n");
229 return ERR_PTR(-ENOMEM
);
231 init_waitqueue_head(req
->wq
);
232 req
->tc
= kmalloc(sizeof(struct p9_fcall
)+c
->msize
,
234 req
->rc
= kmalloc(sizeof(struct p9_fcall
)+c
->msize
,
236 if ((!req
->tc
) || (!req
->rc
)) {
237 printk(KERN_ERR
"Couldn't grow tag array\n");
241 req
->tc
= req
->rc
= NULL
;
243 return ERR_PTR(-ENOMEM
);
245 req
->tc
->sdata
= (char *) req
->tc
+ sizeof(struct p9_fcall
);
246 req
->tc
->capacity
= c
->msize
;
247 req
->rc
->sdata
= (char *) req
->rc
+ sizeof(struct p9_fcall
);
248 req
->rc
->capacity
= c
->msize
;
251 p9pdu_reset(req
->tc
);
252 p9pdu_reset(req
->rc
);
254 req
->tc
->tag
= tag
-1;
255 req
->status
= REQ_STATUS_ALLOC
;
257 return &c
->reqs
[row
][col
];
261 * p9_tag_lookup - lookup a request by tag
262 * @c: client session to lookup tag within
263 * @tag: numeric id for transaction
267 struct p9_req_t
*p9_tag_lookup(struct p9_client
*c
, u16 tag
)
271 /* This looks up the original request by tag so we know which
272 * buffer to read the data into */
275 BUG_ON(tag
>= c
->max_tag
);
277 row
= tag
/ P9_ROW_MAXTAG
;
278 col
= tag
% P9_ROW_MAXTAG
;
280 return &c
->reqs
[row
][col
];
282 EXPORT_SYMBOL(p9_tag_lookup
);
285 * p9_tag_init - setup tags structure and contents
286 * @c: v9fs client struct
288 * This initializes the tags structure for each client instance.
292 static int p9_tag_init(struct p9_client
*c
)
296 c
->tagpool
= p9_idpool_create();
297 if (IS_ERR(c
->tagpool
)) {
298 err
= PTR_ERR(c
->tagpool
);
303 p9_idpool_get(c
->tagpool
); /* reserve tag 0 */
311 * p9_tag_cleanup - cleans up tags structure and reclaims resources
312 * @c: v9fs client struct
314 * This frees resources associated with the tags structure
317 static void p9_tag_cleanup(struct p9_client
*c
)
321 /* check to insure all requests are idle */
322 for (row
= 0; row
< (c
->max_tag
/P9_ROW_MAXTAG
); row
++) {
323 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
324 if (c
->reqs
[row
][col
].status
!= REQ_STATUS_IDLE
) {
325 P9_DPRINTK(P9_DEBUG_MUX
,
326 "Attempting to cleanup non-free tag %d,%d\n",
328 /* TODO: delay execution of cleanup */
335 p9_idpool_destroy(c
->tagpool
);
337 /* free requests associated with tags */
338 for (row
= 0; row
< (c
->max_tag
/P9_ROW_MAXTAG
); row
++) {
339 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
340 kfree(c
->reqs
[row
][col
].wq
);
341 kfree(c
->reqs
[row
][col
].tc
);
342 kfree(c
->reqs
[row
][col
].rc
);
350 * p9_free_req - free a request and clean-up as necessary
352 * r: request to release
356 static void p9_free_req(struct p9_client
*c
, struct p9_req_t
*r
)
358 int tag
= r
->tc
->tag
;
359 P9_DPRINTK(P9_DEBUG_MUX
, "clnt %p req %p tag: %d\n", c
, r
, tag
);
361 r
->status
= REQ_STATUS_IDLE
;
362 if (tag
!= P9_NOTAG
&& p9_idpool_check(tag
, c
->tagpool
))
363 p9_idpool_put(tag
, c
->tagpool
);
367 * p9_client_cb - call back from transport to client
369 * req: request received
372 void p9_client_cb(struct p9_client
*c
, struct p9_req_t
*req
)
374 P9_DPRINTK(P9_DEBUG_MUX
, " tag %d\n", req
->tc
->tag
);
376 P9_DPRINTK(P9_DEBUG_MUX
, "wakeup: %d\n", req
->tc
->tag
);
378 EXPORT_SYMBOL(p9_client_cb
);
381 * p9_parse_header - parse header arguments out of a packet
382 * @pdu: packet to parse
383 * @size: size of packet
384 * @type: type of request
385 * @tag: tag of packet
386 * @rewind: set if we need to rewind offset afterwards
390 p9_parse_header(struct p9_fcall
*pdu
, int32_t *size
, int8_t *type
, int16_t *tag
,
396 int offset
= pdu
->offset
;
403 err
= p9pdu_readf(pdu
, 0, "dbw", &r_size
, &r_type
, &r_tag
);
405 goto rewind_and_exit
;
411 P9_DPRINTK(P9_DEBUG_9P
, "<<< size=%d type: %d tag: %d\n", pdu
->size
,
424 pdu
->offset
= offset
;
427 EXPORT_SYMBOL(p9_parse_header
);
430 * p9_check_errors - check 9p packet for error return and process it
431 * @c: current client instance
432 * @req: request to parse and check for error conditions
434 * returns error code if one is discovered, otherwise returns 0
436 * this will have to be more complicated if we have multiple
440 static int p9_check_errors(struct p9_client
*c
, struct p9_req_t
*req
)
445 err
= p9_parse_header(req
->rc
, NULL
, &type
, NULL
, 0);
447 P9_DPRINTK(P9_DEBUG_ERROR
, "couldn't parse header %d\n", err
);
451 if (type
== P9_RERROR
) {
455 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "s?d",
458 P9_DPRINTK(P9_DEBUG_ERROR
, "couldn't parse error%d\n",
463 if (p9_is_proto_dotu(c
) ||
467 if (!err
|| !IS_ERR_VALUE(err
))
468 err
= p9_errstr2errno(ename
, strlen(ename
));
470 P9_DPRINTK(P9_DEBUG_9P
, "<<< RERROR (%d) %s\n", -ecode
, ename
);
480 * p9_client_flush - flush (cancel) a request
482 * @oldreq: request to cancel
484 * This sents a flush for a particular requests and links
485 * the flush request to the original request. The current
486 * code only supports a single flush request although the protocol
487 * allows for multiple flush requests to be sent for a single request.
491 static int p9_client_flush(struct p9_client
*c
, struct p9_req_t
*oldreq
)
493 struct p9_req_t
*req
;
497 err
= p9_parse_header(oldreq
->tc
, NULL
, NULL
, &oldtag
, 1);
501 P9_DPRINTK(P9_DEBUG_9P
, ">>> TFLUSH tag %d\n", oldtag
);
503 req
= p9_client_rpc(c
, P9_TFLUSH
, "w", oldtag
);
508 /* if we haven't received a response for oldreq,
509 remove it from the list. */
511 if (oldreq
->status
== REQ_STATUS_FLSH
)
512 list_del(&oldreq
->req_list
);
513 spin_unlock(&c
->lock
);
520 * p9_client_rpc - issue a request and wait for a response
522 * @type: type of request
523 * @fmt: protocol format string (see protocol.c)
525 * Returns request structure (which client must free using p9_free_req)
528 static struct p9_req_t
*
529 p9_client_rpc(struct p9_client
*c
, int8_t type
, const char *fmt
, ...)
533 struct p9_req_t
*req
;
537 P9_DPRINTK(P9_DEBUG_MUX
, "client %p op %d\n", c
, type
);
539 /* we allow for any status other than disconnected */
540 if (c
->status
== Disconnected
)
541 return ERR_PTR(-EIO
);
543 /* if status is begin_disconnected we allow only clunk request */
544 if ((c
->status
== BeginDisconnect
) && (type
!= P9_TCLUNK
))
545 return ERR_PTR(-EIO
);
547 if (signal_pending(current
)) {
549 clear_thread_flag(TIF_SIGPENDING
);
554 if (type
!= P9_TVERSION
) {
555 tag
= p9_idpool_get(c
->tagpool
);
557 return ERR_PTR(-ENOMEM
);
560 req
= p9_tag_alloc(c
, tag
);
564 /* marshall the data */
565 p9pdu_prepare(req
->tc
, tag
, type
);
567 err
= p9pdu_vwritef(req
->tc
, c
->proto_version
, fmt
, ap
);
569 p9pdu_finalize(req
->tc
);
571 err
= c
->trans_mod
->request(c
, req
);
573 c
->status
= Disconnected
;
577 P9_DPRINTK(P9_DEBUG_MUX
, "wait %p tag: %d\n", req
->wq
, tag
);
578 err
= wait_event_interruptible(*req
->wq
,
579 req
->status
>= REQ_STATUS_RCVD
);
580 P9_DPRINTK(P9_DEBUG_MUX
, "wait %p tag: %d returned %d\n",
583 if (req
->status
== REQ_STATUS_ERROR
) {
584 P9_DPRINTK(P9_DEBUG_ERROR
, "req_status error %d\n", req
->t_err
);
588 if ((err
== -ERESTARTSYS
) && (c
->status
== Connected
)) {
589 P9_DPRINTK(P9_DEBUG_MUX
, "flushing\n");
591 clear_thread_flag(TIF_SIGPENDING
);
593 if (c
->trans_mod
->cancel(c
, req
))
594 p9_client_flush(c
, req
);
596 /* if we received the response anyway, don't signal error */
597 if (req
->status
== REQ_STATUS_RCVD
)
602 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
604 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
610 err
= p9_check_errors(c
, req
);
612 P9_DPRINTK(P9_DEBUG_MUX
, "exit: client %p op %d\n", c
, type
);
617 P9_DPRINTK(P9_DEBUG_MUX
, "exit: client %p op %d error: %d\n", c
, type
,
623 static struct p9_fid
*p9_fid_create(struct p9_client
*clnt
)
629 P9_DPRINTK(P9_DEBUG_FID
, "clnt %p\n", clnt
);
630 fid
= kmalloc(sizeof(struct p9_fid
), GFP_KERNEL
);
632 return ERR_PTR(-ENOMEM
);
634 ret
= p9_idpool_get(clnt
->fidpool
);
641 memset(&fid
->qid
, 0, sizeof(struct p9_qid
));
643 fid
->uid
= current_fsuid();
646 spin_lock_irqsave(&clnt
->lock
, flags
);
647 list_add(&fid
->flist
, &clnt
->fidlist
);
648 spin_unlock_irqrestore(&clnt
->lock
, flags
);
657 static void p9_fid_destroy(struct p9_fid
*fid
)
659 struct p9_client
*clnt
;
662 P9_DPRINTK(P9_DEBUG_FID
, "fid %d\n", fid
->fid
);
664 p9_idpool_put(fid
->fid
, clnt
->fidpool
);
665 spin_lock_irqsave(&clnt
->lock
, flags
);
666 list_del(&fid
->flist
);
667 spin_unlock_irqrestore(&clnt
->lock
, flags
);
672 int p9_client_version(struct p9_client
*c
)
675 struct p9_req_t
*req
;
679 P9_DPRINTK(P9_DEBUG_9P
, ">>> TVERSION msize %d protocol %d\n",
680 c
->msize
, c
->proto_version
);
682 switch (c
->proto_version
) {
684 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
685 c
->msize
, "9P2000.L");
688 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
689 c
->msize
, "9P2000.u");
691 case p9_proto_legacy
:
692 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
703 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "ds", &msize
, &version
);
705 P9_DPRINTK(P9_DEBUG_9P
, "version error %d\n", err
);
706 p9pdu_dump(1, req
->rc
);
710 P9_DPRINTK(P9_DEBUG_9P
, "<<< RVERSION msize %d %s\n", msize
, version
);
711 if (!strncmp(version
, "9P2000.L", 8))
712 c
->proto_version
= p9_proto_2000L
;
713 else if (!strncmp(version
, "9P2000.u", 8))
714 c
->proto_version
= p9_proto_2000u
;
715 else if (!strncmp(version
, "9P2000", 6))
716 c
->proto_version
= p9_proto_legacy
;
722 if (msize
< c
->msize
)
731 EXPORT_SYMBOL(p9_client_version
);
733 struct p9_client
*p9_client_create(const char *dev_name
, char *options
)
736 struct p9_client
*clnt
;
739 clnt
= kmalloc(sizeof(struct p9_client
), GFP_KERNEL
);
741 return ERR_PTR(-ENOMEM
);
743 clnt
->trans_mod
= NULL
;
745 spin_lock_init(&clnt
->lock
);
746 INIT_LIST_HEAD(&clnt
->fidlist
);
750 err
= parse_opts(options
, clnt
);
754 if (!clnt
->trans_mod
)
755 clnt
->trans_mod
= v9fs_get_default_trans();
757 if (clnt
->trans_mod
== NULL
) {
758 err
= -EPROTONOSUPPORT
;
759 P9_DPRINTK(P9_DEBUG_ERROR
,
760 "No transport defined or default transport\n");
764 clnt
->fidpool
= p9_idpool_create();
765 if (IS_ERR(clnt
->fidpool
)) {
766 err
= PTR_ERR(clnt
->fidpool
);
767 clnt
->fidpool
= NULL
;
771 P9_DPRINTK(P9_DEBUG_MUX
, "clnt %p trans %p msize %d protocol %d\n",
772 clnt
, clnt
->trans_mod
, clnt
->msize
, clnt
->proto_version
);
774 err
= clnt
->trans_mod
->create(clnt
, dev_name
, options
);
776 goto destroy_fidpool
;
778 if ((clnt
->msize
+P9_IOHDRSZ
) > clnt
->trans_mod
->maxsize
)
779 clnt
->msize
= clnt
->trans_mod
->maxsize
-P9_IOHDRSZ
;
781 err
= p9_client_version(clnt
);
788 clnt
->trans_mod
->close(clnt
);
790 p9_idpool_destroy(clnt
->fidpool
);
792 v9fs_put_trans(clnt
->trans_mod
);
797 EXPORT_SYMBOL(p9_client_create
);
799 void p9_client_destroy(struct p9_client
*clnt
)
801 struct p9_fid
*fid
, *fidptr
;
803 P9_DPRINTK(P9_DEBUG_MUX
, "clnt %p\n", clnt
);
806 clnt
->trans_mod
->close(clnt
);
808 v9fs_put_trans(clnt
->trans_mod
);
810 list_for_each_entry_safe(fid
, fidptr
, &clnt
->fidlist
, flist
) {
811 printk(KERN_INFO
"Found fid %d not clunked\n", fid
->fid
);
816 p9_idpool_destroy(clnt
->fidpool
);
818 p9_tag_cleanup(clnt
);
822 EXPORT_SYMBOL(p9_client_destroy
);
824 void p9_client_disconnect(struct p9_client
*clnt
)
826 P9_DPRINTK(P9_DEBUG_9P
, "clnt %p\n", clnt
);
827 clnt
->status
= Disconnected
;
829 EXPORT_SYMBOL(p9_client_disconnect
);
831 void p9_client_begin_disconnect(struct p9_client
*clnt
)
833 P9_DPRINTK(P9_DEBUG_9P
, "clnt %p\n", clnt
);
834 clnt
->status
= BeginDisconnect
;
836 EXPORT_SYMBOL(p9_client_begin_disconnect
);
838 struct p9_fid
*p9_client_attach(struct p9_client
*clnt
, struct p9_fid
*afid
,
839 char *uname
, u32 n_uname
, char *aname
)
842 struct p9_req_t
*req
;
846 P9_DPRINTK(P9_DEBUG_9P
, ">>> TATTACH afid %d uname %s aname %s\n",
847 afid
? afid
->fid
: -1, uname
, aname
);
850 fid
= p9_fid_create(clnt
);
857 req
= p9_client_rpc(clnt
, P9_TATTACH
, "ddss?d", fid
->fid
,
858 afid
? afid
->fid
: P9_NOFID
, uname
, aname
, n_uname
);
864 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", &qid
);
866 p9pdu_dump(1, req
->rc
);
867 p9_free_req(clnt
, req
);
871 P9_DPRINTK(P9_DEBUG_9P
, "<<< RATTACH qid %x.%llx.%x\n",
873 (unsigned long long)qid
.path
,
876 memmove(&fid
->qid
, &qid
, sizeof(struct p9_qid
));
878 p9_free_req(clnt
, req
);
886 EXPORT_SYMBOL(p9_client_attach
);
889 p9_client_auth(struct p9_client
*clnt
, char *uname
, u32 n_uname
, char *aname
)
892 struct p9_req_t
*req
;
896 P9_DPRINTK(P9_DEBUG_9P
, ">>> TAUTH uname %s aname %s\n", uname
, aname
);
899 afid
= p9_fid_create(clnt
);
906 req
= p9_client_rpc(clnt
, P9_TAUTH
, "dss?d",
907 afid
? afid
->fid
: P9_NOFID
, uname
, aname
, n_uname
);
913 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", &qid
);
915 p9pdu_dump(1, req
->rc
);
916 p9_free_req(clnt
, req
);
920 P9_DPRINTK(P9_DEBUG_9P
, "<<< RAUTH qid %x.%llx.%x\n",
922 (unsigned long long)qid
.path
,
925 memmove(&afid
->qid
, &qid
, sizeof(struct p9_qid
));
926 p9_free_req(clnt
, req
);
931 p9_fid_destroy(afid
);
934 EXPORT_SYMBOL(p9_client_auth
);
936 struct p9_fid
*p9_client_walk(struct p9_fid
*oldfid
, int nwname
, char **wnames
,
940 struct p9_client
*clnt
;
942 struct p9_qid
*wqids
;
943 struct p9_req_t
*req
;
944 int16_t nwqids
, count
;
949 fid
= p9_fid_create(clnt
);
956 fid
->uid
= oldfid
->uid
;
961 P9_DPRINTK(P9_DEBUG_9P
, ">>> TWALK fids %d,%d nwname %d wname[0] %s\n",
962 oldfid
->fid
, fid
->fid
, nwname
, wnames
? wnames
[0] : NULL
);
964 req
= p9_client_rpc(clnt
, P9_TWALK
, "ddT", oldfid
->fid
, fid
->fid
,
971 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "R", &nwqids
, &wqids
);
973 p9pdu_dump(1, req
->rc
);
974 p9_free_req(clnt
, req
);
977 p9_free_req(clnt
, req
);
979 P9_DPRINTK(P9_DEBUG_9P
, "<<< RWALK nwqid %d:\n", nwqids
);
981 if (nwqids
!= nwname
) {
986 for (count
= 0; count
< nwqids
; count
++)
987 P9_DPRINTK(P9_DEBUG_9P
, "<<< [%d] %x.%llx.%x\n",
988 count
, wqids
[count
].type
,
989 (unsigned long long)wqids
[count
].path
,
990 wqids
[count
].version
);
993 memmove(&fid
->qid
, &wqids
[nwqids
- 1], sizeof(struct p9_qid
));
995 fid
->qid
= oldfid
->qid
;
1000 p9_client_clunk(fid
);
1004 if (fid
&& (fid
!= oldfid
))
1005 p9_fid_destroy(fid
);
1007 return ERR_PTR(err
);
1009 EXPORT_SYMBOL(p9_client_walk
);
1011 int p9_client_open(struct p9_fid
*fid
, int mode
)
1014 struct p9_client
*clnt
;
1015 struct p9_req_t
*req
;
1020 P9_DPRINTK(P9_DEBUG_9P
, ">>> %s fid %d mode %d\n",
1021 p9_is_proto_dotl(clnt
) ? "TLOPEN" : "TOPEN", fid
->fid
, mode
);
1024 if (fid
->mode
!= -1)
1027 if (p9_is_proto_dotl(clnt
))
1028 req
= p9_client_rpc(clnt
, P9_TLOPEN
, "dd", fid
->fid
, mode
);
1030 req
= p9_client_rpc(clnt
, P9_TOPEN
, "db", fid
->fid
, mode
);
1036 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Qd", &qid
, &iounit
);
1038 p9pdu_dump(1, req
->rc
);
1039 goto free_and_error
;
1042 P9_DPRINTK(P9_DEBUG_9P
, "<<< %s qid %x.%llx.%x iounit %x\n",
1043 p9_is_proto_dotl(clnt
) ? "RLOPEN" : "ROPEN", qid
.type
,
1044 (unsigned long long)qid
.path
, qid
.version
, iounit
);
1047 fid
->iounit
= iounit
;
1050 p9_free_req(clnt
, req
);
1054 EXPORT_SYMBOL(p9_client_open
);
1056 int p9_client_create_dotl(struct p9_fid
*ofid
, char *name
, u32 flags
, u32 mode
,
1057 gid_t gid
, struct p9_qid
*qid
)
1060 struct p9_client
*clnt
;
1061 struct p9_req_t
*req
;
1064 P9_DPRINTK(P9_DEBUG_9P
,
1065 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1066 ofid
->fid
, name
, flags
, mode
, gid
);
1069 if (ofid
->mode
!= -1)
1072 req
= p9_client_rpc(clnt
, P9_TLCREATE
, "dsddd", ofid
->fid
, name
, flags
,
1079 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Qd", qid
, &iounit
);
1081 p9pdu_dump(1, req
->rc
);
1082 goto free_and_error
;
1085 P9_DPRINTK(P9_DEBUG_9P
, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1087 (unsigned long long)qid
->path
,
1088 qid
->version
, iounit
);
1091 ofid
->iounit
= iounit
;
1094 p9_free_req(clnt
, req
);
1098 EXPORT_SYMBOL(p9_client_create_dotl
);
1100 int p9_client_fcreate(struct p9_fid
*fid
, char *name
, u32 perm
, int mode
,
1104 struct p9_client
*clnt
;
1105 struct p9_req_t
*req
;
1109 P9_DPRINTK(P9_DEBUG_9P
, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1110 fid
->fid
, name
, perm
, mode
);
1114 if (fid
->mode
!= -1)
1117 req
= p9_client_rpc(clnt
, P9_TCREATE
, "dsdb?s", fid
->fid
, name
, perm
,
1124 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Qd", &qid
, &iounit
);
1126 p9pdu_dump(1, req
->rc
);
1127 goto free_and_error
;
1130 P9_DPRINTK(P9_DEBUG_9P
, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1132 (unsigned long long)qid
.path
,
1133 qid
.version
, iounit
);
1136 fid
->iounit
= iounit
;
1139 p9_free_req(clnt
, req
);
1143 EXPORT_SYMBOL(p9_client_fcreate
);
1145 int p9_client_symlink(struct p9_fid
*dfid
, char *name
, char *symtgt
, gid_t gid
,
1149 struct p9_client
*clnt
;
1150 struct p9_req_t
*req
;
1152 P9_DPRINTK(P9_DEBUG_9P
, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1153 dfid
->fid
, name
, symtgt
);
1156 req
= p9_client_rpc(clnt
, P9_TSYMLINK
, "dssd", dfid
->fid
, name
, symtgt
,
1163 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", qid
);
1165 p9pdu_dump(1, req
->rc
);
1166 goto free_and_error
;
1169 P9_DPRINTK(P9_DEBUG_9P
, "<<< RSYMLINK qid %x.%llx.%x\n",
1170 qid
->type
, (unsigned long long)qid
->path
, qid
->version
);
1173 p9_free_req(clnt
, req
);
1177 EXPORT_SYMBOL(p9_client_symlink
);
1179 int p9_client_link(struct p9_fid
*dfid
, struct p9_fid
*oldfid
, char *newname
)
1181 struct p9_client
*clnt
;
1182 struct p9_req_t
*req
;
1184 P9_DPRINTK(P9_DEBUG_9P
, ">>> TLINK dfid %d oldfid %d newname %s\n",
1185 dfid
->fid
, oldfid
->fid
, newname
);
1187 req
= p9_client_rpc(clnt
, P9_TLINK
, "dds", dfid
->fid
, oldfid
->fid
,
1190 return PTR_ERR(req
);
1192 P9_DPRINTK(P9_DEBUG_9P
, "<<< RLINK\n");
1193 p9_free_req(clnt
, req
);
1196 EXPORT_SYMBOL(p9_client_link
);
1198 int p9_client_clunk(struct p9_fid
*fid
)
1201 struct p9_client
*clnt
;
1202 struct p9_req_t
*req
;
1204 P9_DPRINTK(P9_DEBUG_9P
, ">>> TCLUNK fid %d\n", fid
->fid
);
1208 req
= p9_client_rpc(clnt
, P9_TCLUNK
, "d", fid
->fid
);
1214 P9_DPRINTK(P9_DEBUG_9P
, "<<< RCLUNK fid %d\n", fid
->fid
);
1216 p9_free_req(clnt
, req
);
1217 p9_fid_destroy(fid
);
1222 EXPORT_SYMBOL(p9_client_clunk
);
1224 int p9_client_remove(struct p9_fid
*fid
)
1227 struct p9_client
*clnt
;
1228 struct p9_req_t
*req
;
1230 P9_DPRINTK(P9_DEBUG_9P
, ">>> TREMOVE fid %d\n", fid
->fid
);
1234 req
= p9_client_rpc(clnt
, P9_TREMOVE
, "d", fid
->fid
);
1240 P9_DPRINTK(P9_DEBUG_9P
, "<<< RREMOVE fid %d\n", fid
->fid
);
1242 p9_free_req(clnt
, req
);
1244 p9_fid_destroy(fid
);
1247 EXPORT_SYMBOL(p9_client_remove
);
1250 p9_client_read(struct p9_fid
*fid
, char *data
, char __user
*udata
, u64 offset
,
1253 int err
, rsize
, total
;
1254 struct p9_client
*clnt
;
1255 struct p9_req_t
*req
;
1258 P9_DPRINTK(P9_DEBUG_9P
, ">>> TREAD fid %d offset %llu %d\n", fid
->fid
,
1259 (long long unsigned) offset
, count
);
1264 rsize
= fid
->iounit
;
1265 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1266 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1271 req
= p9_client_rpc(clnt
, P9_TREAD
, "dqd", fid
->fid
, offset
, rsize
);
1277 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "D", &count
, &dataptr
);
1279 p9pdu_dump(1, req
->rc
);
1280 goto free_and_error
;
1283 P9_DPRINTK(P9_DEBUG_9P
, "<<< RREAD count %d\n", count
);
1286 memmove(data
, dataptr
, count
);
1290 err
= copy_to_user(udata
, dataptr
, count
);
1293 goto free_and_error
;
1297 p9_free_req(clnt
, req
);
1301 p9_free_req(clnt
, req
);
1305 EXPORT_SYMBOL(p9_client_read
);
1308 p9_client_write(struct p9_fid
*fid
, char *data
, const char __user
*udata
,
1309 u64 offset
, u32 count
)
1311 int err
, rsize
, total
;
1312 struct p9_client
*clnt
;
1313 struct p9_req_t
*req
;
1315 P9_DPRINTK(P9_DEBUG_9P
, ">>> TWRITE fid %d offset %llu count %d\n",
1316 fid
->fid
, (long long unsigned) offset
, count
);
1321 rsize
= fid
->iounit
;
1322 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1323 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1328 req
= p9_client_rpc(clnt
, P9_TWRITE
, "dqD", fid
->fid
, offset
,
1331 req
= p9_client_rpc(clnt
, P9_TWRITE
, "dqU", fid
->fid
, offset
,
1338 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "d", &count
);
1340 p9pdu_dump(1, req
->rc
);
1341 goto free_and_error
;
1344 P9_DPRINTK(P9_DEBUG_9P
, "<<< RWRITE count %d\n", count
);
1346 p9_free_req(clnt
, req
);
1350 p9_free_req(clnt
, req
);
1354 EXPORT_SYMBOL(p9_client_write
);
1356 struct p9_wstat
*p9_client_stat(struct p9_fid
*fid
)
1359 struct p9_client
*clnt
;
1360 struct p9_wstat
*ret
= kmalloc(sizeof(struct p9_wstat
), GFP_KERNEL
);
1361 struct p9_req_t
*req
;
1364 P9_DPRINTK(P9_DEBUG_9P
, ">>> TSTAT fid %d\n", fid
->fid
);
1367 return ERR_PTR(-ENOMEM
);
1372 req
= p9_client_rpc(clnt
, P9_TSTAT
, "d", fid
->fid
);
1378 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "wS", &ignored
, ret
);
1380 p9pdu_dump(1, req
->rc
);
1381 p9_free_req(clnt
, req
);
1385 P9_DPRINTK(P9_DEBUG_9P
,
1386 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1387 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1388 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1389 "<<< uid=%d gid=%d n_muid=%d\n",
1390 ret
->size
, ret
->type
, ret
->dev
, ret
->qid
.type
,
1391 (unsigned long long)ret
->qid
.path
, ret
->qid
.version
, ret
->mode
,
1392 ret
->atime
, ret
->mtime
, (unsigned long long)ret
->length
,
1393 ret
->name
, ret
->uid
, ret
->gid
, ret
->muid
, ret
->extension
,
1394 ret
->n_uid
, ret
->n_gid
, ret
->n_muid
);
1396 p9_free_req(clnt
, req
);
1401 return ERR_PTR(err
);
1403 EXPORT_SYMBOL(p9_client_stat
);
1405 struct p9_stat_dotl
*p9_client_getattr_dotl(struct p9_fid
*fid
,
1409 struct p9_client
*clnt
;
1410 struct p9_stat_dotl
*ret
= kmalloc(sizeof(struct p9_stat_dotl
),
1412 struct p9_req_t
*req
;
1414 P9_DPRINTK(P9_DEBUG_9P
, ">>> TGETATTR fid %d, request_mask %lld\n",
1415 fid
->fid
, request_mask
);
1418 return ERR_PTR(-ENOMEM
);
1423 req
= p9_client_rpc(clnt
, P9_TGETATTR
, "dq", fid
->fid
, request_mask
);
1429 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "A", ret
);
1431 p9pdu_dump(1, req
->rc
);
1432 p9_free_req(clnt
, req
);
1436 P9_DPRINTK(P9_DEBUG_9P
,
1437 "<<< RGETATTR st_result_mask=%lld\n"
1438 "<<< qid=%x.%llx.%x\n"
1439 "<<< st_mode=%8.8x st_nlink=%llu\n"
1440 "<<< st_uid=%d st_gid=%d\n"
1441 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1442 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1443 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1444 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1445 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1446 "<<< st_gen=%lld st_data_version=%lld",
1447 ret
->st_result_mask
, ret
->qid
.type
, ret
->qid
.path
,
1448 ret
->qid
.version
, ret
->st_mode
, ret
->st_nlink
, ret
->st_uid
,
1449 ret
->st_gid
, ret
->st_rdev
, ret
->st_size
, ret
->st_blksize
,
1450 ret
->st_blocks
, ret
->st_atime_sec
, ret
->st_atime_nsec
,
1451 ret
->st_mtime_sec
, ret
->st_mtime_nsec
, ret
->st_ctime_sec
,
1452 ret
->st_ctime_nsec
, ret
->st_btime_sec
, ret
->st_btime_nsec
,
1453 ret
->st_gen
, ret
->st_data_version
);
1455 p9_free_req(clnt
, req
);
1460 return ERR_PTR(err
);
1462 EXPORT_SYMBOL(p9_client_getattr_dotl
);
1464 static int p9_client_statsize(struct p9_wstat
*wst
, int proto_version
)
1468 /* NOTE: size shouldn't include its own length */
1469 /* size[2] type[2] dev[4] qid[13] */
1470 /* mode[4] atime[4] mtime[4] length[8]*/
1471 /* name[s] uid[s] gid[s] muid[s] */
1472 ret
= 2+4+13+4+4+4+8+2+2+2+2;
1475 ret
+= strlen(wst
->name
);
1477 ret
+= strlen(wst
->uid
);
1479 ret
+= strlen(wst
->gid
);
1481 ret
+= strlen(wst
->muid
);
1483 if ((proto_version
== p9_proto_2000u
) ||
1484 (proto_version
== p9_proto_2000L
)) {
1485 ret
+= 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1487 ret
+= strlen(wst
->extension
);
1493 int p9_client_wstat(struct p9_fid
*fid
, struct p9_wstat
*wst
)
1496 struct p9_req_t
*req
;
1497 struct p9_client
*clnt
;
1501 wst
->size
= p9_client_statsize(wst
, clnt
->proto_version
);
1502 P9_DPRINTK(P9_DEBUG_9P
, ">>> TWSTAT fid %d\n", fid
->fid
);
1503 P9_DPRINTK(P9_DEBUG_9P
,
1504 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1505 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1506 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1507 " uid=%d gid=%d n_muid=%d\n",
1508 wst
->size
, wst
->type
, wst
->dev
, wst
->qid
.type
,
1509 (unsigned long long)wst
->qid
.path
, wst
->qid
.version
, wst
->mode
,
1510 wst
->atime
, wst
->mtime
, (unsigned long long)wst
->length
,
1511 wst
->name
, wst
->uid
, wst
->gid
, wst
->muid
, wst
->extension
,
1512 wst
->n_uid
, wst
->n_gid
, wst
->n_muid
);
1514 req
= p9_client_rpc(clnt
, P9_TWSTAT
, "dwS", fid
->fid
, wst
->size
+2, wst
);
1520 P9_DPRINTK(P9_DEBUG_9P
, "<<< RWSTAT fid %d\n", fid
->fid
);
1522 p9_free_req(clnt
, req
);
1526 EXPORT_SYMBOL(p9_client_wstat
);
1528 int p9_client_setattr(struct p9_fid
*fid
, struct p9_iattr_dotl
*p9attr
)
1531 struct p9_req_t
*req
;
1532 struct p9_client
*clnt
;
1536 P9_DPRINTK(P9_DEBUG_9P
, ">>> TSETATTR fid %d\n", fid
->fid
);
1537 P9_DPRINTK(P9_DEBUG_9P
,
1538 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1539 " atime_sec=%lld atime_nsec=%lld\n"
1540 " mtime_sec=%lld mtime_nsec=%lld\n",
1541 p9attr
->valid
, p9attr
->mode
, p9attr
->uid
, p9attr
->gid
,
1542 p9attr
->size
, p9attr
->atime_sec
, p9attr
->atime_nsec
,
1543 p9attr
->mtime_sec
, p9attr
->mtime_nsec
);
1545 req
= p9_client_rpc(clnt
, P9_TSETATTR
, "dI", fid
->fid
, p9attr
);
1551 P9_DPRINTK(P9_DEBUG_9P
, "<<< RSETATTR fid %d\n", fid
->fid
);
1552 p9_free_req(clnt
, req
);
1556 EXPORT_SYMBOL(p9_client_setattr
);
1558 int p9_client_statfs(struct p9_fid
*fid
, struct p9_rstatfs
*sb
)
1561 struct p9_req_t
*req
;
1562 struct p9_client
*clnt
;
1567 P9_DPRINTK(P9_DEBUG_9P
, ">>> TSTATFS fid %d\n", fid
->fid
);
1569 req
= p9_client_rpc(clnt
, P9_TSTATFS
, "d", fid
->fid
);
1575 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "ddqqqqqqd", &sb
->type
,
1576 &sb
->bsize
, &sb
->blocks
, &sb
->bfree
, &sb
->bavail
,
1577 &sb
->files
, &sb
->ffree
, &sb
->fsid
, &sb
->namelen
);
1579 p9pdu_dump(1, req
->rc
);
1580 p9_free_req(clnt
, req
);
1584 P9_DPRINTK(P9_DEBUG_9P
, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
1585 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1586 "fsid %llu namelen %ld\n",
1587 fid
->fid
, (long unsigned int)sb
->type
, (long int)sb
->bsize
,
1588 sb
->blocks
, sb
->bfree
, sb
->bavail
, sb
->files
, sb
->ffree
,
1589 sb
->fsid
, (long int)sb
->namelen
);
1591 p9_free_req(clnt
, req
);
1595 EXPORT_SYMBOL(p9_client_statfs
);
1597 int p9_client_rename(struct p9_fid
*fid
, struct p9_fid
*newdirfid
, char *name
)
1600 struct p9_req_t
*req
;
1601 struct p9_client
*clnt
;
1606 P9_DPRINTK(P9_DEBUG_9P
, ">>> TRENAME fid %d newdirfid %d name %s\n",
1607 fid
->fid
, newdirfid
->fid
, name
);
1609 req
= p9_client_rpc(clnt
, P9_TRENAME
, "dds", fid
->fid
,
1610 newdirfid
->fid
, name
);
1616 P9_DPRINTK(P9_DEBUG_9P
, "<<< RRENAME fid %d\n", fid
->fid
);
1618 p9_free_req(clnt
, req
);
1622 EXPORT_SYMBOL(p9_client_rename
);
1625 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1627 struct p9_fid
*p9_client_xattrwalk(struct p9_fid
*file_fid
,
1628 const char *attr_name
, u64
*attr_size
)
1631 struct p9_req_t
*req
;
1632 struct p9_client
*clnt
;
1633 struct p9_fid
*attr_fid
;
1636 clnt
= file_fid
->clnt
;
1637 attr_fid
= p9_fid_create(clnt
);
1638 if (IS_ERR(attr_fid
)) {
1639 err
= PTR_ERR(attr_fid
);
1643 P9_DPRINTK(P9_DEBUG_9P
,
1644 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
1645 file_fid
->fid
, attr_fid
->fid
, attr_name
);
1647 req
= p9_client_rpc(clnt
, P9_TXATTRWALK
, "dds",
1648 file_fid
->fid
, attr_fid
->fid
, attr_name
);
1653 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "q", attr_size
);
1655 p9pdu_dump(1, req
->rc
);
1656 p9_free_req(clnt
, req
);
1659 p9_free_req(clnt
, req
);
1660 P9_DPRINTK(P9_DEBUG_9P
, "<<< RXATTRWALK fid %d size %llu\n",
1661 attr_fid
->fid
, *attr_size
);
1664 p9_client_clunk(attr_fid
);
1667 if (attr_fid
&& (attr_fid
!= file_fid
))
1668 p9_fid_destroy(attr_fid
);
1670 return ERR_PTR(err
);
1672 EXPORT_SYMBOL_GPL(p9_client_xattrwalk
);
1674 int p9_client_xattrcreate(struct p9_fid
*fid
, const char *name
,
1675 u64 attr_size
, int flags
)
1678 struct p9_req_t
*req
;
1679 struct p9_client
*clnt
;
1681 P9_DPRINTK(P9_DEBUG_9P
,
1682 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
1683 fid
->fid
, name
, (long long)attr_size
, flags
);
1686 req
= p9_client_rpc(clnt
, P9_TXATTRCREATE
, "dsqd",
1687 fid
->fid
, name
, attr_size
, flags
);
1692 P9_DPRINTK(P9_DEBUG_9P
, "<<< RXATTRCREATE fid %d\n", fid
->fid
);
1693 p9_free_req(clnt
, req
);
1697 EXPORT_SYMBOL_GPL(p9_client_xattrcreate
);
1699 int p9_client_readdir(struct p9_fid
*fid
, char *data
, u32 count
, u64 offset
)
1701 int err
, rsize
, total
;
1702 struct p9_client
*clnt
;
1703 struct p9_req_t
*req
;
1706 P9_DPRINTK(P9_DEBUG_9P
, ">>> TREADDIR fid %d offset %llu count %d\n",
1707 fid
->fid
, (long long unsigned) offset
, count
);
1713 rsize
= fid
->iounit
;
1714 if (!rsize
|| rsize
> clnt
->msize
-P9_READDIRHDRSZ
)
1715 rsize
= clnt
->msize
- P9_READDIRHDRSZ
;
1720 req
= p9_client_rpc(clnt
, P9_TREADDIR
, "dqd", fid
->fid
, offset
, rsize
);
1726 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "D", &count
, &dataptr
);
1728 p9pdu_dump(1, req
->rc
);
1729 goto free_and_error
;
1732 P9_DPRINTK(P9_DEBUG_9P
, "<<< RREADDIR count %d\n", count
);
1735 memmove(data
, dataptr
, count
);
1737 p9_free_req(clnt
, req
);
1741 p9_free_req(clnt
, req
);
1745 EXPORT_SYMBOL(p9_client_readdir
);
1747 int p9_client_mknod_dotl(struct p9_fid
*fid
, char *name
, int mode
,
1748 dev_t rdev
, gid_t gid
, struct p9_qid
*qid
)
1751 struct p9_client
*clnt
;
1752 struct p9_req_t
*req
;
1756 P9_DPRINTK(P9_DEBUG_9P
, ">>> TMKNOD fid %d name %s mode %d major %d "
1757 "minor %d\n", fid
->fid
, name
, mode
, MAJOR(rdev
), MINOR(rdev
));
1758 req
= p9_client_rpc(clnt
, P9_TMKNOD
, "dsdddd", fid
->fid
, name
, mode
,
1759 MAJOR(rdev
), MINOR(rdev
), gid
);
1761 return PTR_ERR(req
);
1763 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", qid
);
1765 p9pdu_dump(1, req
->rc
);
1768 P9_DPRINTK(P9_DEBUG_9P
, "<<< RMKNOD qid %x.%llx.%x\n", qid
->type
,
1769 (unsigned long long)qid
->path
, qid
->version
);
1772 p9_free_req(clnt
, req
);
1776 EXPORT_SYMBOL(p9_client_mknod_dotl
);
1778 int p9_client_mkdir_dotl(struct p9_fid
*fid
, char *name
, int mode
,
1779 gid_t gid
, struct p9_qid
*qid
)
1782 struct p9_client
*clnt
;
1783 struct p9_req_t
*req
;
1787 P9_DPRINTK(P9_DEBUG_9P
, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
1788 fid
->fid
, name
, mode
, gid
);
1789 req
= p9_client_rpc(clnt
, P9_TMKDIR
, "dsdd", fid
->fid
, name
, mode
,
1792 return PTR_ERR(req
);
1794 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", qid
);
1796 p9pdu_dump(1, req
->rc
);
1799 P9_DPRINTK(P9_DEBUG_9P
, "<<< RMKDIR qid %x.%llx.%x\n", qid
->type
,
1800 (unsigned long long)qid
->path
, qid
->version
);
1803 p9_free_req(clnt
, req
);
1807 EXPORT_SYMBOL(p9_client_mkdir_dotl
);