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_put(0, c
->tagpool
); /* free reserved tag 0 */
336 p9_idpool_destroy(c
->tagpool
);
339 /* free requests associated with tags */
340 for (row
= 0; row
< (c
->max_tag
/P9_ROW_MAXTAG
); row
++) {
341 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
342 kfree(c
->reqs
[row
][col
].wq
);
343 kfree(c
->reqs
[row
][col
].tc
);
344 kfree(c
->reqs
[row
][col
].rc
);
352 * p9_free_req - free a request and clean-up as necessary
354 * r: request to release
358 static void p9_free_req(struct p9_client
*c
, struct p9_req_t
*r
)
360 int tag
= r
->tc
->tag
;
361 P9_DPRINTK(P9_DEBUG_MUX
, "clnt %p req %p tag: %d\n", c
, r
, tag
);
363 r
->status
= REQ_STATUS_IDLE
;
364 if (tag
!= P9_NOTAG
&& p9_idpool_check(tag
, c
->tagpool
))
365 p9_idpool_put(tag
, c
->tagpool
);
369 * p9_client_cb - call back from transport to client
371 * req: request received
374 void p9_client_cb(struct p9_client
*c
, struct p9_req_t
*req
)
376 P9_DPRINTK(P9_DEBUG_MUX
, " tag %d\n", req
->tc
->tag
);
378 P9_DPRINTK(P9_DEBUG_MUX
, "wakeup: %d\n", req
->tc
->tag
);
380 EXPORT_SYMBOL(p9_client_cb
);
383 * p9_parse_header - parse header arguments out of a packet
384 * @pdu: packet to parse
385 * @size: size of packet
386 * @type: type of request
387 * @tag: tag of packet
388 * @rewind: set if we need to rewind offset afterwards
392 p9_parse_header(struct p9_fcall
*pdu
, int32_t *size
, int8_t *type
, int16_t *tag
,
398 int offset
= pdu
->offset
;
405 err
= p9pdu_readf(pdu
, 0, "dbw", &r_size
, &r_type
, &r_tag
);
407 goto rewind_and_exit
;
413 P9_DPRINTK(P9_DEBUG_9P
, "<<< size=%d type: %d tag: %d\n", pdu
->size
,
426 pdu
->offset
= offset
;
429 EXPORT_SYMBOL(p9_parse_header
);
432 * p9_check_errors - check 9p packet for error return and process it
433 * @c: current client instance
434 * @req: request to parse and check for error conditions
436 * returns error code if one is discovered, otherwise returns 0
438 * this will have to be more complicated if we have multiple
442 static int p9_check_errors(struct p9_client
*c
, struct p9_req_t
*req
)
447 err
= p9_parse_header(req
->rc
, NULL
, &type
, NULL
, 0);
449 P9_DPRINTK(P9_DEBUG_ERROR
, "couldn't parse header %d\n", err
);
453 if (type
== P9_RERROR
|| type
== P9_RLERROR
) {
456 if (!p9_is_proto_dotl(c
)) {
459 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "s?d",
464 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
);
475 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "d", &ecode
);
478 P9_DPRINTK(P9_DEBUG_9P
, "<<< RLERROR (%d)\n", -ecode
);
487 P9_DPRINTK(P9_DEBUG_ERROR
, "couldn't parse error%d\n", err
);
493 * p9_client_flush - flush (cancel) a request
495 * @oldreq: request to cancel
497 * This sents a flush for a particular requests and links
498 * the flush request to the original request. The current
499 * code only supports a single flush request although the protocol
500 * allows for multiple flush requests to be sent for a single request.
504 static int p9_client_flush(struct p9_client
*c
, struct p9_req_t
*oldreq
)
506 struct p9_req_t
*req
;
510 err
= p9_parse_header(oldreq
->tc
, NULL
, NULL
, &oldtag
, 1);
514 P9_DPRINTK(P9_DEBUG_9P
, ">>> TFLUSH tag %d\n", oldtag
);
516 req
= p9_client_rpc(c
, P9_TFLUSH
, "w", oldtag
);
521 /* if we haven't received a response for oldreq,
522 remove it from the list. */
524 if (oldreq
->status
== REQ_STATUS_FLSH
)
525 list_del(&oldreq
->req_list
);
526 spin_unlock(&c
->lock
);
533 * p9_client_rpc - issue a request and wait for a response
535 * @type: type of request
536 * @fmt: protocol format string (see protocol.c)
538 * Returns request structure (which client must free using p9_free_req)
541 static struct p9_req_t
*
542 p9_client_rpc(struct p9_client
*c
, int8_t type
, const char *fmt
, ...)
546 struct p9_req_t
*req
;
550 P9_DPRINTK(P9_DEBUG_MUX
, "client %p op %d\n", c
, type
);
552 /* we allow for any status other than disconnected */
553 if (c
->status
== Disconnected
)
554 return ERR_PTR(-EIO
);
556 /* if status is begin_disconnected we allow only clunk request */
557 if ((c
->status
== BeginDisconnect
) && (type
!= P9_TCLUNK
))
558 return ERR_PTR(-EIO
);
560 if (signal_pending(current
)) {
562 clear_thread_flag(TIF_SIGPENDING
);
567 if (type
!= P9_TVERSION
) {
568 tag
= p9_idpool_get(c
->tagpool
);
570 return ERR_PTR(-ENOMEM
);
573 req
= p9_tag_alloc(c
, tag
);
577 /* marshall the data */
578 p9pdu_prepare(req
->tc
, tag
, type
);
580 err
= p9pdu_vwritef(req
->tc
, c
->proto_version
, fmt
, ap
);
584 p9pdu_finalize(req
->tc
);
586 err
= c
->trans_mod
->request(c
, req
);
588 if (err
!= -ERESTARTSYS
)
589 c
->status
= Disconnected
;
593 P9_DPRINTK(P9_DEBUG_MUX
, "wait %p tag: %d\n", req
->wq
, tag
);
594 err
= wait_event_interruptible(*req
->wq
,
595 req
->status
>= REQ_STATUS_RCVD
);
596 P9_DPRINTK(P9_DEBUG_MUX
, "wait %p tag: %d returned %d\n",
599 if (req
->status
== REQ_STATUS_ERROR
) {
600 P9_DPRINTK(P9_DEBUG_ERROR
, "req_status error %d\n", req
->t_err
);
604 if ((err
== -ERESTARTSYS
) && (c
->status
== Connected
)) {
605 P9_DPRINTK(P9_DEBUG_MUX
, "flushing\n");
607 clear_thread_flag(TIF_SIGPENDING
);
609 if (c
->trans_mod
->cancel(c
, req
))
610 p9_client_flush(c
, req
);
612 /* if we received the response anyway, don't signal error */
613 if (req
->status
== REQ_STATUS_RCVD
)
618 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
620 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
626 err
= p9_check_errors(c
, req
);
628 P9_DPRINTK(P9_DEBUG_MUX
, "exit: client %p op %d\n", c
, type
);
633 P9_DPRINTK(P9_DEBUG_MUX
, "exit: client %p op %d error: %d\n", c
, type
,
639 static struct p9_fid
*p9_fid_create(struct p9_client
*clnt
)
645 P9_DPRINTK(P9_DEBUG_FID
, "clnt %p\n", clnt
);
646 fid
= kmalloc(sizeof(struct p9_fid
), GFP_KERNEL
);
648 return ERR_PTR(-ENOMEM
);
650 ret
= p9_idpool_get(clnt
->fidpool
);
657 memset(&fid
->qid
, 0, sizeof(struct p9_qid
));
659 fid
->uid
= current_fsuid();
662 spin_lock_irqsave(&clnt
->lock
, flags
);
663 list_add(&fid
->flist
, &clnt
->fidlist
);
664 spin_unlock_irqrestore(&clnt
->lock
, flags
);
673 static void p9_fid_destroy(struct p9_fid
*fid
)
675 struct p9_client
*clnt
;
678 P9_DPRINTK(P9_DEBUG_FID
, "fid %d\n", fid
->fid
);
680 p9_idpool_put(fid
->fid
, clnt
->fidpool
);
681 spin_lock_irqsave(&clnt
->lock
, flags
);
682 list_del(&fid
->flist
);
683 spin_unlock_irqrestore(&clnt
->lock
, flags
);
688 static int p9_client_version(struct p9_client
*c
)
691 struct p9_req_t
*req
;
695 P9_DPRINTK(P9_DEBUG_9P
, ">>> TVERSION msize %d protocol %d\n",
696 c
->msize
, c
->proto_version
);
698 switch (c
->proto_version
) {
700 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
701 c
->msize
, "9P2000.L");
704 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
705 c
->msize
, "9P2000.u");
707 case p9_proto_legacy
:
708 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
719 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "ds", &msize
, &version
);
721 P9_DPRINTK(P9_DEBUG_9P
, "version error %d\n", err
);
722 p9pdu_dump(1, req
->rc
);
726 P9_DPRINTK(P9_DEBUG_9P
, "<<< RVERSION msize %d %s\n", msize
, version
);
727 if (!strncmp(version
, "9P2000.L", 8))
728 c
->proto_version
= p9_proto_2000L
;
729 else if (!strncmp(version
, "9P2000.u", 8))
730 c
->proto_version
= p9_proto_2000u
;
731 else if (!strncmp(version
, "9P2000", 6))
732 c
->proto_version
= p9_proto_legacy
;
738 if (msize
< c
->msize
)
748 struct p9_client
*p9_client_create(const char *dev_name
, char *options
)
751 struct p9_client
*clnt
;
754 clnt
= kmalloc(sizeof(struct p9_client
), GFP_KERNEL
);
756 return ERR_PTR(-ENOMEM
);
758 clnt
->trans_mod
= NULL
;
760 spin_lock_init(&clnt
->lock
);
761 INIT_LIST_HEAD(&clnt
->fidlist
);
765 err
= parse_opts(options
, clnt
);
769 if (!clnt
->trans_mod
)
770 clnt
->trans_mod
= v9fs_get_default_trans();
772 if (clnt
->trans_mod
== NULL
) {
773 err
= -EPROTONOSUPPORT
;
774 P9_DPRINTK(P9_DEBUG_ERROR
,
775 "No transport defined or default transport\n");
779 clnt
->fidpool
= p9_idpool_create();
780 if (IS_ERR(clnt
->fidpool
)) {
781 err
= PTR_ERR(clnt
->fidpool
);
782 clnt
->fidpool
= NULL
;
786 P9_DPRINTK(P9_DEBUG_MUX
, "clnt %p trans %p msize %d protocol %d\n",
787 clnt
, clnt
->trans_mod
, clnt
->msize
, clnt
->proto_version
);
789 err
= clnt
->trans_mod
->create(clnt
, dev_name
, options
);
791 goto destroy_fidpool
;
793 if ((clnt
->msize
+P9_IOHDRSZ
) > clnt
->trans_mod
->maxsize
)
794 clnt
->msize
= clnt
->trans_mod
->maxsize
-P9_IOHDRSZ
;
796 err
= p9_client_version(clnt
);
803 clnt
->trans_mod
->close(clnt
);
805 p9_idpool_destroy(clnt
->fidpool
);
807 v9fs_put_trans(clnt
->trans_mod
);
812 EXPORT_SYMBOL(p9_client_create
);
814 void p9_client_destroy(struct p9_client
*clnt
)
816 struct p9_fid
*fid
, *fidptr
;
818 P9_DPRINTK(P9_DEBUG_MUX
, "clnt %p\n", clnt
);
821 clnt
->trans_mod
->close(clnt
);
823 v9fs_put_trans(clnt
->trans_mod
);
825 list_for_each_entry_safe(fid
, fidptr
, &clnt
->fidlist
, flist
) {
826 printk(KERN_INFO
"Found fid %d not clunked\n", fid
->fid
);
831 p9_idpool_destroy(clnt
->fidpool
);
833 p9_tag_cleanup(clnt
);
837 EXPORT_SYMBOL(p9_client_destroy
);
839 void p9_client_disconnect(struct p9_client
*clnt
)
841 P9_DPRINTK(P9_DEBUG_9P
, "clnt %p\n", clnt
);
842 clnt
->status
= Disconnected
;
844 EXPORT_SYMBOL(p9_client_disconnect
);
846 void p9_client_begin_disconnect(struct p9_client
*clnt
)
848 P9_DPRINTK(P9_DEBUG_9P
, "clnt %p\n", clnt
);
849 clnt
->status
= BeginDisconnect
;
851 EXPORT_SYMBOL(p9_client_begin_disconnect
);
853 struct p9_fid
*p9_client_attach(struct p9_client
*clnt
, struct p9_fid
*afid
,
854 char *uname
, u32 n_uname
, char *aname
)
857 struct p9_req_t
*req
;
861 P9_DPRINTK(P9_DEBUG_9P
, ">>> TATTACH afid %d uname %s aname %s\n",
862 afid
? afid
->fid
: -1, uname
, aname
);
865 fid
= p9_fid_create(clnt
);
872 req
= p9_client_rpc(clnt
, P9_TATTACH
, "ddss?d", fid
->fid
,
873 afid
? afid
->fid
: P9_NOFID
, uname
, aname
, n_uname
);
879 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", &qid
);
881 p9pdu_dump(1, req
->rc
);
882 p9_free_req(clnt
, req
);
886 P9_DPRINTK(P9_DEBUG_9P
, "<<< RATTACH qid %x.%llx.%x\n",
888 (unsigned long long)qid
.path
,
891 memmove(&fid
->qid
, &qid
, sizeof(struct p9_qid
));
893 p9_free_req(clnt
, req
);
901 EXPORT_SYMBOL(p9_client_attach
);
903 struct p9_fid
*p9_client_walk(struct p9_fid
*oldfid
, int nwname
, char **wnames
,
907 struct p9_client
*clnt
;
909 struct p9_qid
*wqids
;
910 struct p9_req_t
*req
;
911 int16_t nwqids
, count
;
917 fid
= p9_fid_create(clnt
);
924 fid
->uid
= oldfid
->uid
;
929 P9_DPRINTK(P9_DEBUG_9P
, ">>> TWALK fids %d,%d nwname %d wname[0] %s\n",
930 oldfid
->fid
, fid
->fid
, nwname
, wnames
? wnames
[0] : NULL
);
932 req
= p9_client_rpc(clnt
, P9_TWALK
, "ddT", oldfid
->fid
, fid
->fid
,
939 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "R", &nwqids
, &wqids
);
941 p9pdu_dump(1, req
->rc
);
942 p9_free_req(clnt
, req
);
945 p9_free_req(clnt
, req
);
947 P9_DPRINTK(P9_DEBUG_9P
, "<<< RWALK nwqid %d:\n", nwqids
);
949 if (nwqids
!= nwname
) {
954 for (count
= 0; count
< nwqids
; count
++)
955 P9_DPRINTK(P9_DEBUG_9P
, "<<< [%d] %x.%llx.%x\n",
956 count
, wqids
[count
].type
,
957 (unsigned long long)wqids
[count
].path
,
958 wqids
[count
].version
);
961 memmove(&fid
->qid
, &wqids
[nwqids
- 1], sizeof(struct p9_qid
));
963 fid
->qid
= oldfid
->qid
;
970 p9_client_clunk(fid
);
974 if (fid
&& (fid
!= oldfid
))
979 EXPORT_SYMBOL(p9_client_walk
);
981 int p9_client_open(struct p9_fid
*fid
, int mode
)
984 struct p9_client
*clnt
;
985 struct p9_req_t
*req
;
990 P9_DPRINTK(P9_DEBUG_9P
, ">>> %s fid %d mode %d\n",
991 p9_is_proto_dotl(clnt
) ? "TLOPEN" : "TOPEN", fid
->fid
, mode
);
997 if (p9_is_proto_dotl(clnt
))
998 req
= p9_client_rpc(clnt
, P9_TLOPEN
, "dd", fid
->fid
, mode
);
1000 req
= p9_client_rpc(clnt
, P9_TOPEN
, "db", fid
->fid
, mode
);
1006 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Qd", &qid
, &iounit
);
1008 p9pdu_dump(1, req
->rc
);
1009 goto free_and_error
;
1012 P9_DPRINTK(P9_DEBUG_9P
, "<<< %s qid %x.%llx.%x iounit %x\n",
1013 p9_is_proto_dotl(clnt
) ? "RLOPEN" : "ROPEN", qid
.type
,
1014 (unsigned long long)qid
.path
, qid
.version
, iounit
);
1017 fid
->iounit
= iounit
;
1020 p9_free_req(clnt
, req
);
1024 EXPORT_SYMBOL(p9_client_open
);
1026 int p9_client_create_dotl(struct p9_fid
*ofid
, char *name
, u32 flags
, u32 mode
,
1027 gid_t gid
, struct p9_qid
*qid
)
1030 struct p9_client
*clnt
;
1031 struct p9_req_t
*req
;
1034 P9_DPRINTK(P9_DEBUG_9P
,
1035 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1036 ofid
->fid
, name
, flags
, mode
, gid
);
1039 if (ofid
->mode
!= -1)
1042 req
= p9_client_rpc(clnt
, P9_TLCREATE
, "dsddd", ofid
->fid
, name
, flags
,
1049 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Qd", qid
, &iounit
);
1051 p9pdu_dump(1, req
->rc
);
1052 goto free_and_error
;
1055 P9_DPRINTK(P9_DEBUG_9P
, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1057 (unsigned long long)qid
->path
,
1058 qid
->version
, iounit
);
1061 ofid
->iounit
= iounit
;
1064 p9_free_req(clnt
, req
);
1068 EXPORT_SYMBOL(p9_client_create_dotl
);
1070 int p9_client_fcreate(struct p9_fid
*fid
, char *name
, u32 perm
, int mode
,
1074 struct p9_client
*clnt
;
1075 struct p9_req_t
*req
;
1079 P9_DPRINTK(P9_DEBUG_9P
, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1080 fid
->fid
, name
, perm
, mode
);
1084 if (fid
->mode
!= -1)
1087 req
= p9_client_rpc(clnt
, P9_TCREATE
, "dsdb?s", fid
->fid
, name
, perm
,
1094 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Qd", &qid
, &iounit
);
1096 p9pdu_dump(1, req
->rc
);
1097 goto free_and_error
;
1100 P9_DPRINTK(P9_DEBUG_9P
, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1102 (unsigned long long)qid
.path
,
1103 qid
.version
, iounit
);
1106 fid
->iounit
= iounit
;
1109 p9_free_req(clnt
, req
);
1113 EXPORT_SYMBOL(p9_client_fcreate
);
1115 int p9_client_symlink(struct p9_fid
*dfid
, char *name
, char *symtgt
, gid_t gid
,
1119 struct p9_client
*clnt
;
1120 struct p9_req_t
*req
;
1122 P9_DPRINTK(P9_DEBUG_9P
, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1123 dfid
->fid
, name
, symtgt
);
1126 req
= p9_client_rpc(clnt
, P9_TSYMLINK
, "dssd", dfid
->fid
, name
, symtgt
,
1133 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", qid
);
1135 p9pdu_dump(1, req
->rc
);
1136 goto free_and_error
;
1139 P9_DPRINTK(P9_DEBUG_9P
, "<<< RSYMLINK qid %x.%llx.%x\n",
1140 qid
->type
, (unsigned long long)qid
->path
, qid
->version
);
1143 p9_free_req(clnt
, req
);
1147 EXPORT_SYMBOL(p9_client_symlink
);
1149 int p9_client_link(struct p9_fid
*dfid
, struct p9_fid
*oldfid
, char *newname
)
1151 struct p9_client
*clnt
;
1152 struct p9_req_t
*req
;
1154 P9_DPRINTK(P9_DEBUG_9P
, ">>> TLINK dfid %d oldfid %d newname %s\n",
1155 dfid
->fid
, oldfid
->fid
, newname
);
1157 req
= p9_client_rpc(clnt
, P9_TLINK
, "dds", dfid
->fid
, oldfid
->fid
,
1160 return PTR_ERR(req
);
1162 P9_DPRINTK(P9_DEBUG_9P
, "<<< RLINK\n");
1163 p9_free_req(clnt
, req
);
1166 EXPORT_SYMBOL(p9_client_link
);
1168 int p9_client_fsync(struct p9_fid
*fid
, int datasync
)
1171 struct p9_client
*clnt
;
1172 struct p9_req_t
*req
;
1174 P9_DPRINTK(P9_DEBUG_9P
, ">>> TFSYNC fid %d datasync:%d\n",
1175 fid
->fid
, datasync
);
1179 req
= p9_client_rpc(clnt
, P9_TFSYNC
, "dd", fid
->fid
, datasync
);
1185 P9_DPRINTK(P9_DEBUG_9P
, "<<< RFSYNC fid %d\n", fid
->fid
);
1187 p9_free_req(clnt
, req
);
1192 EXPORT_SYMBOL(p9_client_fsync
);
1194 int p9_client_clunk(struct p9_fid
*fid
)
1197 struct p9_client
*clnt
;
1198 struct p9_req_t
*req
;
1201 P9_EPRINTK(KERN_WARNING
, "Trying to clunk with NULL fid\n");
1206 P9_DPRINTK(P9_DEBUG_9P
, ">>> TCLUNK fid %d\n", fid
->fid
);
1210 req
= p9_client_rpc(clnt
, P9_TCLUNK
, "d", fid
->fid
);
1216 P9_DPRINTK(P9_DEBUG_9P
, "<<< RCLUNK fid %d\n", fid
->fid
);
1218 p9_free_req(clnt
, req
);
1219 p9_fid_destroy(fid
);
1224 EXPORT_SYMBOL(p9_client_clunk
);
1226 int p9_client_remove(struct p9_fid
*fid
)
1229 struct p9_client
*clnt
;
1230 struct p9_req_t
*req
;
1232 P9_DPRINTK(P9_DEBUG_9P
, ">>> TREMOVE fid %d\n", fid
->fid
);
1236 req
= p9_client_rpc(clnt
, P9_TREMOVE
, "d", fid
->fid
);
1242 P9_DPRINTK(P9_DEBUG_9P
, "<<< RREMOVE fid %d\n", fid
->fid
);
1244 p9_free_req(clnt
, req
);
1246 p9_fid_destroy(fid
);
1249 EXPORT_SYMBOL(p9_client_remove
);
1252 p9_client_read(struct p9_fid
*fid
, char *data
, char __user
*udata
, u64 offset
,
1255 int err
, rsize
, total
;
1256 struct p9_client
*clnt
;
1257 struct p9_req_t
*req
;
1260 P9_DPRINTK(P9_DEBUG_9P
, ">>> TREAD fid %d offset %llu %d\n", fid
->fid
,
1261 (long long unsigned) offset
, count
);
1266 rsize
= fid
->iounit
;
1267 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1268 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1273 req
= p9_client_rpc(clnt
, P9_TREAD
, "dqd", fid
->fid
, offset
, rsize
);
1279 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "D", &count
, &dataptr
);
1281 p9pdu_dump(1, req
->rc
);
1282 goto free_and_error
;
1285 P9_DPRINTK(P9_DEBUG_9P
, "<<< RREAD count %d\n", count
);
1288 memmove(data
, dataptr
, count
);
1290 err
= copy_to_user(udata
, dataptr
, count
);
1293 goto free_and_error
;
1296 p9_free_req(clnt
, req
);
1300 p9_free_req(clnt
, req
);
1304 EXPORT_SYMBOL(p9_client_read
);
1307 p9_client_write(struct p9_fid
*fid
, char *data
, const char __user
*udata
,
1308 u64 offset
, u32 count
)
1310 int err
, rsize
, total
;
1311 struct p9_client
*clnt
;
1312 struct p9_req_t
*req
;
1314 P9_DPRINTK(P9_DEBUG_9P
, ">>> TWRITE fid %d offset %llu count %d\n",
1315 fid
->fid
, (long long unsigned) offset
, count
);
1320 rsize
= fid
->iounit
;
1321 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1322 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1327 req
= p9_client_rpc(clnt
, P9_TWRITE
, "dqD", fid
->fid
, offset
,
1330 req
= p9_client_rpc(clnt
, P9_TWRITE
, "dqU", fid
->fid
, offset
,
1337 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "d", &count
);
1339 p9pdu_dump(1, req
->rc
);
1340 goto free_and_error
;
1343 P9_DPRINTK(P9_DEBUG_9P
, "<<< RWRITE count %d\n", count
);
1345 p9_free_req(clnt
, req
);
1349 p9_free_req(clnt
, req
);
1353 EXPORT_SYMBOL(p9_client_write
);
1355 struct p9_wstat
*p9_client_stat(struct p9_fid
*fid
)
1358 struct p9_client
*clnt
;
1359 struct p9_wstat
*ret
= kmalloc(sizeof(struct p9_wstat
), GFP_KERNEL
);
1360 struct p9_req_t
*req
;
1363 P9_DPRINTK(P9_DEBUG_9P
, ">>> TSTAT fid %d\n", fid
->fid
);
1366 return ERR_PTR(-ENOMEM
);
1371 req
= p9_client_rpc(clnt
, P9_TSTAT
, "d", fid
->fid
);
1377 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "wS", &ignored
, ret
);
1379 p9pdu_dump(1, req
->rc
);
1380 p9_free_req(clnt
, req
);
1384 P9_DPRINTK(P9_DEBUG_9P
,
1385 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1386 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1387 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1388 "<<< uid=%d gid=%d n_muid=%d\n",
1389 ret
->size
, ret
->type
, ret
->dev
, ret
->qid
.type
,
1390 (unsigned long long)ret
->qid
.path
, ret
->qid
.version
, ret
->mode
,
1391 ret
->atime
, ret
->mtime
, (unsigned long long)ret
->length
,
1392 ret
->name
, ret
->uid
, ret
->gid
, ret
->muid
, ret
->extension
,
1393 ret
->n_uid
, ret
->n_gid
, ret
->n_muid
);
1395 p9_free_req(clnt
, req
);
1400 return ERR_PTR(err
);
1402 EXPORT_SYMBOL(p9_client_stat
);
1404 struct p9_stat_dotl
*p9_client_getattr_dotl(struct p9_fid
*fid
,
1408 struct p9_client
*clnt
;
1409 struct p9_stat_dotl
*ret
= kmalloc(sizeof(struct p9_stat_dotl
),
1411 struct p9_req_t
*req
;
1413 P9_DPRINTK(P9_DEBUG_9P
, ">>> TGETATTR fid %d, request_mask %lld\n",
1414 fid
->fid
, request_mask
);
1417 return ERR_PTR(-ENOMEM
);
1422 req
= p9_client_rpc(clnt
, P9_TGETATTR
, "dq", fid
->fid
, request_mask
);
1428 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "A", ret
);
1430 p9pdu_dump(1, req
->rc
);
1431 p9_free_req(clnt
, req
);
1435 P9_DPRINTK(P9_DEBUG_9P
,
1436 "<<< RGETATTR st_result_mask=%lld\n"
1437 "<<< qid=%x.%llx.%x\n"
1438 "<<< st_mode=%8.8x st_nlink=%llu\n"
1439 "<<< st_uid=%d st_gid=%d\n"
1440 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1441 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1442 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1443 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1444 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1445 "<<< st_gen=%lld st_data_version=%lld",
1446 ret
->st_result_mask
, ret
->qid
.type
, ret
->qid
.path
,
1447 ret
->qid
.version
, ret
->st_mode
, ret
->st_nlink
, ret
->st_uid
,
1448 ret
->st_gid
, ret
->st_rdev
, ret
->st_size
, ret
->st_blksize
,
1449 ret
->st_blocks
, ret
->st_atime_sec
, ret
->st_atime_nsec
,
1450 ret
->st_mtime_sec
, ret
->st_mtime_nsec
, ret
->st_ctime_sec
,
1451 ret
->st_ctime_nsec
, ret
->st_btime_sec
, ret
->st_btime_nsec
,
1452 ret
->st_gen
, ret
->st_data_version
);
1454 p9_free_req(clnt
, req
);
1459 return ERR_PTR(err
);
1461 EXPORT_SYMBOL(p9_client_getattr_dotl
);
1463 static int p9_client_statsize(struct p9_wstat
*wst
, int proto_version
)
1467 /* NOTE: size shouldn't include its own length */
1468 /* size[2] type[2] dev[4] qid[13] */
1469 /* mode[4] atime[4] mtime[4] length[8]*/
1470 /* name[s] uid[s] gid[s] muid[s] */
1471 ret
= 2+4+13+4+4+4+8+2+2+2+2;
1474 ret
+= strlen(wst
->name
);
1476 ret
+= strlen(wst
->uid
);
1478 ret
+= strlen(wst
->gid
);
1480 ret
+= strlen(wst
->muid
);
1482 if ((proto_version
== p9_proto_2000u
) ||
1483 (proto_version
== p9_proto_2000L
)) {
1484 ret
+= 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1486 ret
+= strlen(wst
->extension
);
1492 int p9_client_wstat(struct p9_fid
*fid
, struct p9_wstat
*wst
)
1495 struct p9_req_t
*req
;
1496 struct p9_client
*clnt
;
1500 wst
->size
= p9_client_statsize(wst
, clnt
->proto_version
);
1501 P9_DPRINTK(P9_DEBUG_9P
, ">>> TWSTAT fid %d\n", fid
->fid
);
1502 P9_DPRINTK(P9_DEBUG_9P
,
1503 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1504 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1505 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1506 " uid=%d gid=%d n_muid=%d\n",
1507 wst
->size
, wst
->type
, wst
->dev
, wst
->qid
.type
,
1508 (unsigned long long)wst
->qid
.path
, wst
->qid
.version
, wst
->mode
,
1509 wst
->atime
, wst
->mtime
, (unsigned long long)wst
->length
,
1510 wst
->name
, wst
->uid
, wst
->gid
, wst
->muid
, wst
->extension
,
1511 wst
->n_uid
, wst
->n_gid
, wst
->n_muid
);
1513 req
= p9_client_rpc(clnt
, P9_TWSTAT
, "dwS", fid
->fid
, wst
->size
+2, wst
);
1519 P9_DPRINTK(P9_DEBUG_9P
, "<<< RWSTAT fid %d\n", fid
->fid
);
1521 p9_free_req(clnt
, req
);
1525 EXPORT_SYMBOL(p9_client_wstat
);
1527 int p9_client_setattr(struct p9_fid
*fid
, struct p9_iattr_dotl
*p9attr
)
1530 struct p9_req_t
*req
;
1531 struct p9_client
*clnt
;
1535 P9_DPRINTK(P9_DEBUG_9P
, ">>> TSETATTR fid %d\n", fid
->fid
);
1536 P9_DPRINTK(P9_DEBUG_9P
,
1537 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1538 " atime_sec=%lld atime_nsec=%lld\n"
1539 " mtime_sec=%lld mtime_nsec=%lld\n",
1540 p9attr
->valid
, p9attr
->mode
, p9attr
->uid
, p9attr
->gid
,
1541 p9attr
->size
, p9attr
->atime_sec
, p9attr
->atime_nsec
,
1542 p9attr
->mtime_sec
, p9attr
->mtime_nsec
);
1544 req
= p9_client_rpc(clnt
, P9_TSETATTR
, "dI", fid
->fid
, p9attr
);
1550 P9_DPRINTK(P9_DEBUG_9P
, "<<< RSETATTR fid %d\n", fid
->fid
);
1551 p9_free_req(clnt
, req
);
1555 EXPORT_SYMBOL(p9_client_setattr
);
1557 int p9_client_statfs(struct p9_fid
*fid
, struct p9_rstatfs
*sb
)
1560 struct p9_req_t
*req
;
1561 struct p9_client
*clnt
;
1566 P9_DPRINTK(P9_DEBUG_9P
, ">>> TSTATFS fid %d\n", fid
->fid
);
1568 req
= p9_client_rpc(clnt
, P9_TSTATFS
, "d", fid
->fid
);
1574 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "ddqqqqqqd", &sb
->type
,
1575 &sb
->bsize
, &sb
->blocks
, &sb
->bfree
, &sb
->bavail
,
1576 &sb
->files
, &sb
->ffree
, &sb
->fsid
, &sb
->namelen
);
1578 p9pdu_dump(1, req
->rc
);
1579 p9_free_req(clnt
, req
);
1583 P9_DPRINTK(P9_DEBUG_9P
, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
1584 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1585 "fsid %llu namelen %ld\n",
1586 fid
->fid
, (long unsigned int)sb
->type
, (long int)sb
->bsize
,
1587 sb
->blocks
, sb
->bfree
, sb
->bavail
, sb
->files
, sb
->ffree
,
1588 sb
->fsid
, (long int)sb
->namelen
);
1590 p9_free_req(clnt
, req
);
1594 EXPORT_SYMBOL(p9_client_statfs
);
1596 int p9_client_rename(struct p9_fid
*fid
, struct p9_fid
*newdirfid
, char *name
)
1599 struct p9_req_t
*req
;
1600 struct p9_client
*clnt
;
1605 P9_DPRINTK(P9_DEBUG_9P
, ">>> TRENAME fid %d newdirfid %d name %s\n",
1606 fid
->fid
, newdirfid
->fid
, name
);
1608 req
= p9_client_rpc(clnt
, P9_TRENAME
, "dds", fid
->fid
,
1609 newdirfid
->fid
, name
);
1615 P9_DPRINTK(P9_DEBUG_9P
, "<<< RRENAME fid %d\n", fid
->fid
);
1617 p9_free_req(clnt
, req
);
1621 EXPORT_SYMBOL(p9_client_rename
);
1624 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1626 struct p9_fid
*p9_client_xattrwalk(struct p9_fid
*file_fid
,
1627 const char *attr_name
, u64
*attr_size
)
1630 struct p9_req_t
*req
;
1631 struct p9_client
*clnt
;
1632 struct p9_fid
*attr_fid
;
1635 clnt
= file_fid
->clnt
;
1636 attr_fid
= p9_fid_create(clnt
);
1637 if (IS_ERR(attr_fid
)) {
1638 err
= PTR_ERR(attr_fid
);
1642 P9_DPRINTK(P9_DEBUG_9P
,
1643 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
1644 file_fid
->fid
, attr_fid
->fid
, attr_name
);
1646 req
= p9_client_rpc(clnt
, P9_TXATTRWALK
, "dds",
1647 file_fid
->fid
, attr_fid
->fid
, attr_name
);
1652 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "q", attr_size
);
1654 p9pdu_dump(1, req
->rc
);
1655 p9_free_req(clnt
, req
);
1658 p9_free_req(clnt
, req
);
1659 P9_DPRINTK(P9_DEBUG_9P
, "<<< RXATTRWALK fid %d size %llu\n",
1660 attr_fid
->fid
, *attr_size
);
1663 p9_client_clunk(attr_fid
);
1666 if (attr_fid
&& (attr_fid
!= file_fid
))
1667 p9_fid_destroy(attr_fid
);
1669 return ERR_PTR(err
);
1671 EXPORT_SYMBOL_GPL(p9_client_xattrwalk
);
1673 int p9_client_xattrcreate(struct p9_fid
*fid
, const char *name
,
1674 u64 attr_size
, int flags
)
1677 struct p9_req_t
*req
;
1678 struct p9_client
*clnt
;
1680 P9_DPRINTK(P9_DEBUG_9P
,
1681 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
1682 fid
->fid
, name
, (long long)attr_size
, flags
);
1685 req
= p9_client_rpc(clnt
, P9_TXATTRCREATE
, "dsqd",
1686 fid
->fid
, name
, attr_size
, flags
);
1691 P9_DPRINTK(P9_DEBUG_9P
, "<<< RXATTRCREATE fid %d\n", fid
->fid
);
1692 p9_free_req(clnt
, req
);
1696 EXPORT_SYMBOL_GPL(p9_client_xattrcreate
);
1698 int p9_client_readdir(struct p9_fid
*fid
, char *data
, u32 count
, u64 offset
)
1700 int err
, rsize
, total
;
1701 struct p9_client
*clnt
;
1702 struct p9_req_t
*req
;
1705 P9_DPRINTK(P9_DEBUG_9P
, ">>> TREADDIR fid %d offset %llu count %d\n",
1706 fid
->fid
, (long long unsigned) offset
, count
);
1712 rsize
= fid
->iounit
;
1713 if (!rsize
|| rsize
> clnt
->msize
-P9_READDIRHDRSZ
)
1714 rsize
= clnt
->msize
- P9_READDIRHDRSZ
;
1719 req
= p9_client_rpc(clnt
, P9_TREADDIR
, "dqd", fid
->fid
, offset
, rsize
);
1725 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "D", &count
, &dataptr
);
1727 p9pdu_dump(1, req
->rc
);
1728 goto free_and_error
;
1731 P9_DPRINTK(P9_DEBUG_9P
, "<<< RREADDIR count %d\n", count
);
1734 memmove(data
, dataptr
, count
);
1736 p9_free_req(clnt
, req
);
1740 p9_free_req(clnt
, req
);
1744 EXPORT_SYMBOL(p9_client_readdir
);
1746 int p9_client_mknod_dotl(struct p9_fid
*fid
, char *name
, int mode
,
1747 dev_t rdev
, gid_t gid
, struct p9_qid
*qid
)
1750 struct p9_client
*clnt
;
1751 struct p9_req_t
*req
;
1755 P9_DPRINTK(P9_DEBUG_9P
, ">>> TMKNOD fid %d name %s mode %d major %d "
1756 "minor %d\n", fid
->fid
, name
, mode
, MAJOR(rdev
), MINOR(rdev
));
1757 req
= p9_client_rpc(clnt
, P9_TMKNOD
, "dsdddd", fid
->fid
, name
, mode
,
1758 MAJOR(rdev
), MINOR(rdev
), gid
);
1760 return PTR_ERR(req
);
1762 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", qid
);
1764 p9pdu_dump(1, req
->rc
);
1767 P9_DPRINTK(P9_DEBUG_9P
, "<<< RMKNOD qid %x.%llx.%x\n", qid
->type
,
1768 (unsigned long long)qid
->path
, qid
->version
);
1771 p9_free_req(clnt
, req
);
1775 EXPORT_SYMBOL(p9_client_mknod_dotl
);
1777 int p9_client_mkdir_dotl(struct p9_fid
*fid
, char *name
, int mode
,
1778 gid_t gid
, struct p9_qid
*qid
)
1781 struct p9_client
*clnt
;
1782 struct p9_req_t
*req
;
1786 P9_DPRINTK(P9_DEBUG_9P
, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
1787 fid
->fid
, name
, mode
, gid
);
1788 req
= p9_client_rpc(clnt
, P9_TMKDIR
, "dsdd", fid
->fid
, name
, mode
,
1791 return PTR_ERR(req
);
1793 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", qid
);
1795 p9pdu_dump(1, req
->rc
);
1798 P9_DPRINTK(P9_DEBUG_9P
, "<<< RMKDIR qid %x.%llx.%x\n", qid
->type
,
1799 (unsigned long long)qid
->path
, qid
->version
);
1802 p9_free_req(clnt
, req
);
1806 EXPORT_SYMBOL(p9_client_mkdir_dotl
);
1808 int p9_client_lock_dotl(struct p9_fid
*fid
, struct p9_flock
*flock
, u8
*status
)
1811 struct p9_client
*clnt
;
1812 struct p9_req_t
*req
;
1816 P9_DPRINTK(P9_DEBUG_9P
, ">>> TLOCK fid %d type %i flags %d "
1817 "start %lld length %lld proc_id %d client_id %s\n",
1818 fid
->fid
, flock
->type
, flock
->flags
, flock
->start
,
1819 flock
->length
, flock
->proc_id
, flock
->client_id
);
1821 req
= p9_client_rpc(clnt
, P9_TLOCK
, "dbdqqds", fid
->fid
, flock
->type
,
1822 flock
->flags
, flock
->start
, flock
->length
,
1823 flock
->proc_id
, flock
->client_id
);
1826 return PTR_ERR(req
);
1828 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "b", status
);
1830 p9pdu_dump(1, req
->rc
);
1833 P9_DPRINTK(P9_DEBUG_9P
, "<<< RLOCK status %i\n", *status
);
1835 p9_free_req(clnt
, req
);
1839 EXPORT_SYMBOL(p9_client_lock_dotl
);
1841 int p9_client_getlock_dotl(struct p9_fid
*fid
, struct p9_getlock
*glock
)
1844 struct p9_client
*clnt
;
1845 struct p9_req_t
*req
;
1849 P9_DPRINTK(P9_DEBUG_9P
, ">>> TGETLOCK fid %d, type %i start %lld "
1850 "length %lld proc_id %d client_id %s\n", fid
->fid
, glock
->type
,
1851 glock
->start
, glock
->length
, glock
->proc_id
, glock
->client_id
);
1853 req
= p9_client_rpc(clnt
, P9_TGETLOCK
, "dbqqds", fid
->fid
, glock
->type
,
1854 glock
->start
, glock
->length
, glock
->proc_id
, glock
->client_id
);
1857 return PTR_ERR(req
);
1859 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "bqqds", &glock
->type
,
1860 &glock
->start
, &glock
->length
, &glock
->proc_id
,
1863 p9pdu_dump(1, req
->rc
);
1866 P9_DPRINTK(P9_DEBUG_9P
, "<<< RGETLOCK type %i start %lld length %lld "
1867 "proc_id %d client_id %s\n", glock
->type
, glock
->start
,
1868 glock
->length
, glock
->proc_id
, glock
->client_id
);
1870 p9_free_req(clnt
, req
);
1873 EXPORT_SYMBOL(p9_client_getlock_dotl
);
1875 int p9_client_readlink(struct p9_fid
*fid
, char **target
)
1878 struct p9_client
*clnt
;
1879 struct p9_req_t
*req
;
1883 P9_DPRINTK(P9_DEBUG_9P
, ">>> TREADLINK fid %d\n", fid
->fid
);
1885 req
= p9_client_rpc(clnt
, P9_TREADLINK
, "d", fid
->fid
);
1887 return PTR_ERR(req
);
1889 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "s", target
);
1891 p9pdu_dump(1, req
->rc
);
1894 P9_DPRINTK(P9_DEBUG_9P
, "<<< RREADLINK target %s\n", *target
);
1896 p9_free_req(clnt
, req
);
1899 EXPORT_SYMBOL(p9_client_readlink
);