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 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28 #include <linux/module.h>
29 #include <linux/errno.h>
31 #include <linux/poll.h>
32 #include <linux/idr.h>
33 #include <linux/mutex.h>
34 #include <linux/slab.h>
35 #include <linux/sched.h>
36 #include <linux/uaccess.h>
37 #include <net/9p/9p.h>
38 #include <linux/parser.h>
39 #include <net/9p/client.h>
40 #include <net/9p/transport.h>
43 #define CREATE_TRACE_POINTS
44 #include <trace/events/9p.h>
47 * Client Option Parsing (code inspired by NFS code)
48 * - a little lazy - parse all client options
59 static const match_table_t tokens
= {
60 {Opt_msize
, "msize=%u"},
61 {Opt_legacy
, "noextend"},
62 {Opt_trans
, "trans=%s"},
63 {Opt_version
, "version=%s"},
67 inline int p9_is_proto_dotl(struct p9_client
*clnt
)
69 return clnt
->proto_version
== p9_proto_2000L
;
71 EXPORT_SYMBOL(p9_is_proto_dotl
);
73 inline int p9_is_proto_dotu(struct p9_client
*clnt
)
75 return clnt
->proto_version
== p9_proto_2000u
;
77 EXPORT_SYMBOL(p9_is_proto_dotu
);
79 /* Interpret mount option for protocol version */
80 static int get_protocol_version(char *s
)
82 int version
= -EINVAL
;
84 if (!strcmp(s
, "9p2000")) {
85 version
= p9_proto_legacy
;
86 p9_debug(P9_DEBUG_9P
, "Protocol version: Legacy\n");
87 } else if (!strcmp(s
, "9p2000.u")) {
88 version
= p9_proto_2000u
;
89 p9_debug(P9_DEBUG_9P
, "Protocol version: 9P2000.u\n");
90 } else if (!strcmp(s
, "9p2000.L")) {
91 version
= p9_proto_2000L
;
92 p9_debug(P9_DEBUG_9P
, "Protocol version: 9P2000.L\n");
94 pr_info("Unknown protocol version %s\n", s
);
100 * parse_options - parse mount options into client structure
101 * @opts: options string passed from mount
102 * @clnt: existing v9fs client information
104 * Return 0 upon success, -ERRNO upon failure
107 static int parse_opts(char *opts
, struct p9_client
*clnt
)
109 char *options
, *tmp_options
;
111 substring_t args
[MAX_OPT_ARGS
];
116 clnt
->proto_version
= p9_proto_2000u
;
122 tmp_options
= kstrdup(opts
, GFP_KERNEL
);
124 p9_debug(P9_DEBUG_ERROR
,
125 "failed to allocate copy of option string\n");
128 options
= tmp_options
;
130 while ((p
= strsep(&options
, ",")) != NULL
) {
134 token
= match_token(p
, tokens
, args
);
137 r
= match_int(&args
[0], &option
);
139 p9_debug(P9_DEBUG_ERROR
,
140 "integer field, but no integer?\n");
144 clnt
->msize
= option
;
147 s
= match_strdup(&args
[0]);
150 p9_debug(P9_DEBUG_ERROR
,
151 "problem allocating copy of trans arg\n");
152 goto free_and_return
;
154 clnt
->trans_mod
= v9fs_get_trans_by_name(s
);
155 if (clnt
->trans_mod
== NULL
) {
156 pr_info("Could not find request transport: %s\n",
160 goto free_and_return
;
165 clnt
->proto_version
= p9_proto_legacy
;
168 s
= match_strdup(&args
[0]);
171 p9_debug(P9_DEBUG_ERROR
,
172 "problem allocating copy of version arg\n");
173 goto free_and_return
;
175 ret
= get_protocol_version(s
);
176 if (ret
== -EINVAL
) {
178 goto free_and_return
;
181 clnt
->proto_version
= ret
;
194 * p9_tag_alloc - lookup/allocate a request by tag
195 * @c: client session to lookup tag within
196 * @tag: numeric id for transaction
198 * this is a simple array lookup, but will grow the
199 * request_slots as necessary to accommodate transaction
200 * ids which did not previously have a slot.
202 * this code relies on the client spinlock to manage locks, its
203 * possible we should switch to something else, but I'd rather
204 * stick with something low-overhead for the common case.
208 static struct p9_req_t
*
209 p9_tag_alloc(struct p9_client
*c
, u16 tag
, unsigned int max_size
)
213 struct p9_req_t
*req
;
214 int alloc_msize
= min(c
->msize
, max_size
);
216 /* This looks up the original request by tag so we know which
217 * buffer to read the data into */
220 if (tag
>= c
->max_tag
) {
221 spin_lock_irqsave(&c
->lock
, flags
);
222 /* check again since original check was outside of lock */
223 while (tag
>= c
->max_tag
) {
224 row
= (tag
/ P9_ROW_MAXTAG
);
225 c
->reqs
[row
] = kcalloc(P9_ROW_MAXTAG
,
226 sizeof(struct p9_req_t
), GFP_ATOMIC
);
229 pr_err("Couldn't grow tag array\n");
230 spin_unlock_irqrestore(&c
->lock
, flags
);
231 return ERR_PTR(-ENOMEM
);
233 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
234 c
->reqs
[row
][col
].status
= REQ_STATUS_IDLE
;
235 c
->reqs
[row
][col
].tc
= NULL
;
237 c
->max_tag
+= P9_ROW_MAXTAG
;
239 spin_unlock_irqrestore(&c
->lock
, flags
);
241 row
= tag
/ P9_ROW_MAXTAG
;
242 col
= tag
% P9_ROW_MAXTAG
;
244 req
= &c
->reqs
[row
][col
];
246 req
->wq
= kmalloc(sizeof(wait_queue_head_t
), GFP_NOFS
);
248 pr_err("Couldn't grow tag array\n");
249 return ERR_PTR(-ENOMEM
);
251 init_waitqueue_head(req
->wq
);
252 req
->tc
= kmalloc(sizeof(struct p9_fcall
) + alloc_msize
,
254 req
->rc
= kmalloc(sizeof(struct p9_fcall
) + alloc_msize
,
256 if ((!req
->tc
) || (!req
->rc
)) {
257 pr_err("Couldn't grow tag array\n");
261 req
->tc
= req
->rc
= NULL
;
263 return ERR_PTR(-ENOMEM
);
265 req
->tc
->capacity
= alloc_msize
;
266 req
->rc
->capacity
= alloc_msize
;
267 req
->tc
->sdata
= (char *) req
->tc
+ sizeof(struct p9_fcall
);
268 req
->rc
->sdata
= (char *) req
->rc
+ sizeof(struct p9_fcall
);
271 p9pdu_reset(req
->tc
);
272 p9pdu_reset(req
->rc
);
274 req
->tc
->tag
= tag
-1;
275 req
->status
= REQ_STATUS_ALLOC
;
277 return &c
->reqs
[row
][col
];
281 * p9_tag_lookup - lookup a request by tag
282 * @c: client session to lookup tag within
283 * @tag: numeric id for transaction
287 struct p9_req_t
*p9_tag_lookup(struct p9_client
*c
, u16 tag
)
291 /* This looks up the original request by tag so we know which
292 * buffer to read the data into */
295 if(tag
>= c
->max_tag
)
298 row
= tag
/ P9_ROW_MAXTAG
;
299 col
= tag
% P9_ROW_MAXTAG
;
301 return &c
->reqs
[row
][col
];
303 EXPORT_SYMBOL(p9_tag_lookup
);
306 * p9_tag_init - setup tags structure and contents
307 * @c: v9fs client struct
309 * This initializes the tags structure for each client instance.
313 static int p9_tag_init(struct p9_client
*c
)
317 c
->tagpool
= p9_idpool_create();
318 if (IS_ERR(c
->tagpool
)) {
319 err
= PTR_ERR(c
->tagpool
);
322 err
= p9_idpool_get(c
->tagpool
); /* reserve tag 0 */
324 p9_idpool_destroy(c
->tagpool
);
333 * p9_tag_cleanup - cleans up tags structure and reclaims resources
334 * @c: v9fs client struct
336 * This frees resources associated with the tags structure
339 static void p9_tag_cleanup(struct p9_client
*c
)
343 /* check to insure all requests are idle */
344 for (row
= 0; row
< (c
->max_tag
/P9_ROW_MAXTAG
); row
++) {
345 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
346 if (c
->reqs
[row
][col
].status
!= REQ_STATUS_IDLE
) {
347 p9_debug(P9_DEBUG_MUX
,
348 "Attempting to cleanup non-free tag %d,%d\n",
350 /* TODO: delay execution of cleanup */
357 p9_idpool_put(0, c
->tagpool
); /* free reserved tag 0 */
358 p9_idpool_destroy(c
->tagpool
);
361 /* free requests associated with tags */
362 for (row
= 0; row
< (c
->max_tag
/P9_ROW_MAXTAG
); row
++) {
363 for (col
= 0; col
< P9_ROW_MAXTAG
; col
++) {
364 kfree(c
->reqs
[row
][col
].wq
);
365 kfree(c
->reqs
[row
][col
].tc
);
366 kfree(c
->reqs
[row
][col
].rc
);
374 * p9_free_req - free a request and clean-up as necessary
376 * r: request to release
380 static void p9_free_req(struct p9_client
*c
, struct p9_req_t
*r
)
382 int tag
= r
->tc
->tag
;
383 p9_debug(P9_DEBUG_MUX
, "clnt %p req %p tag: %d\n", c
, r
, tag
);
385 r
->status
= REQ_STATUS_IDLE
;
386 if (tag
!= P9_NOTAG
&& p9_idpool_check(tag
, c
->tagpool
))
387 p9_idpool_put(tag
, c
->tagpool
);
391 * p9_client_cb - call back from transport to client
393 * req: request received
396 void p9_client_cb(struct p9_client
*c
, struct p9_req_t
*req
)
398 p9_debug(P9_DEBUG_MUX
, " tag %d\n", req
->tc
->tag
);
400 p9_debug(P9_DEBUG_MUX
, "wakeup: %d\n", req
->tc
->tag
);
402 EXPORT_SYMBOL(p9_client_cb
);
405 * p9_parse_header - parse header arguments out of a packet
406 * @pdu: packet to parse
407 * @size: size of packet
408 * @type: type of request
409 * @tag: tag of packet
410 * @rewind: set if we need to rewind offset afterwards
414 p9_parse_header(struct p9_fcall
*pdu
, int32_t *size
, int8_t *type
, int16_t *tag
,
420 int offset
= pdu
->offset
;
427 err
= p9pdu_readf(pdu
, 0, "dbw", &r_size
, &r_type
, &r_tag
);
429 goto rewind_and_exit
;
435 p9_debug(P9_DEBUG_9P
, "<<< size=%d type: %d tag: %d\n",
436 pdu
->size
, pdu
->id
, pdu
->tag
);
448 pdu
->offset
= offset
;
451 EXPORT_SYMBOL(p9_parse_header
);
454 * p9_check_errors - check 9p packet for error return and process it
455 * @c: current client instance
456 * @req: request to parse and check for error conditions
458 * returns error code if one is discovered, otherwise returns 0
460 * this will have to be more complicated if we have multiple
464 static int p9_check_errors(struct p9_client
*c
, struct p9_req_t
*req
)
470 err
= p9_parse_header(req
->rc
, NULL
, &type
, NULL
, 0);
472 * dump the response from server
473 * This should be after check errors which poplulate pdu_fcall.
475 trace_9p_protocol_dump(c
, req
->rc
);
477 p9_debug(P9_DEBUG_ERROR
, "couldn't parse header %d\n", err
);
480 if (type
!= P9_RERROR
&& type
!= P9_RLERROR
)
483 if (!p9_is_proto_dotl(c
)) {
485 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "s?d",
490 if (p9_is_proto_dotu(c
))
493 if (!err
|| !IS_ERR_VALUE(err
)) {
494 err
= p9_errstr2errno(ename
, strlen(ename
));
496 p9_debug(P9_DEBUG_9P
, "<<< RERROR (%d) %s\n",
501 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "d", &ecode
);
504 p9_debug(P9_DEBUG_9P
, "<<< RLERROR (%d)\n", -ecode
);
510 p9_debug(P9_DEBUG_ERROR
, "couldn't parse error%d\n", err
);
516 * p9_check_zc_errors - check 9p packet for error return and process it
517 * @c: current client instance
518 * @req: request to parse and check for error conditions
519 * @in_hdrlen: Size of response protocol buffer.
521 * returns error code if one is discovered, otherwise returns 0
523 * this will have to be more complicated if we have multiple
527 static int p9_check_zc_errors(struct p9_client
*c
, struct p9_req_t
*req
,
528 char *uidata
, int in_hdrlen
, int kern_buf
)
535 err
= p9_parse_header(req
->rc
, NULL
, &type
, NULL
, 0);
537 * dump the response from server
538 * This should be after parse_header which poplulate pdu_fcall.
540 trace_9p_protocol_dump(c
, req
->rc
);
542 p9_debug(P9_DEBUG_ERROR
, "couldn't parse header %d\n", err
);
546 if (type
!= P9_RERROR
&& type
!= P9_RLERROR
)
549 if (!p9_is_proto_dotl(c
)) {
550 /* Error is reported in string format */
552 /* 7 = header size for RERROR, 2 is the size of string len; */
553 int inline_len
= in_hdrlen
- (7 + 2);
555 /* Read the size of error string */
556 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "w", &len
);
560 ename
= kmalloc(len
+ 1, GFP_NOFS
);
565 if (len
<= inline_len
) {
566 /* We have error in protocol buffer itself */
567 if (pdu_read(req
->rc
, ename
, len
)) {
574 * Part of the data is in user space buffer.
576 if (pdu_read(req
->rc
, ename
, inline_len
)) {
582 memcpy(ename
+ inline_len
, uidata
,
585 err
= copy_from_user(ename
+ inline_len
,
586 uidata
, len
- inline_len
);
594 if (p9_is_proto_dotu(c
)) {
595 /* For dotu we also have error code */
596 err
= p9pdu_readf(req
->rc
,
597 c
->proto_version
, "d", &ecode
);
602 if (!err
|| !IS_ERR_VALUE(err
)) {
603 err
= p9_errstr2errno(ename
, strlen(ename
));
605 p9_debug(P9_DEBUG_9P
, "<<< RERROR (%d) %s\n",
610 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "d", &ecode
);
613 p9_debug(P9_DEBUG_9P
, "<<< RLERROR (%d)\n", -ecode
);
620 p9_debug(P9_DEBUG_ERROR
, "couldn't parse error%d\n", err
);
624 static struct p9_req_t
*
625 p9_client_rpc(struct p9_client
*c
, int8_t type
, const char *fmt
, ...);
628 * p9_client_flush - flush (cancel) a request
630 * @oldreq: request to cancel
632 * This sents a flush for a particular request and links
633 * the flush request to the original request. The current
634 * code only supports a single flush request although the protocol
635 * allows for multiple flush requests to be sent for a single request.
639 static int p9_client_flush(struct p9_client
*c
, struct p9_req_t
*oldreq
)
641 struct p9_req_t
*req
;
645 err
= p9_parse_header(oldreq
->tc
, NULL
, NULL
, &oldtag
, 1);
649 p9_debug(P9_DEBUG_9P
, ">>> TFLUSH tag %d\n", oldtag
);
651 req
= p9_client_rpc(c
, P9_TFLUSH
, "w", oldtag
);
656 /* if we haven't received a response for oldreq,
657 remove it from the list. */
659 if (oldreq
->status
== REQ_STATUS_FLSH
)
660 list_del(&oldreq
->req_list
);
661 spin_unlock(&c
->lock
);
667 static struct p9_req_t
*p9_client_prepare_req(struct p9_client
*c
,
668 int8_t type
, int req_size
,
669 const char *fmt
, va_list ap
)
672 struct p9_req_t
*req
;
674 p9_debug(P9_DEBUG_MUX
, "client %p op %d\n", c
, type
);
676 /* we allow for any status other than disconnected */
677 if (c
->status
== Disconnected
)
678 return ERR_PTR(-EIO
);
680 /* if status is begin_disconnected we allow only clunk request */
681 if ((c
->status
== BeginDisconnect
) && (type
!= P9_TCLUNK
))
682 return ERR_PTR(-EIO
);
685 if (type
!= P9_TVERSION
) {
686 tag
= p9_idpool_get(c
->tagpool
);
688 return ERR_PTR(-ENOMEM
);
691 req
= p9_tag_alloc(c
, tag
, req_size
);
695 /* marshall the data */
696 p9pdu_prepare(req
->tc
, tag
, type
);
697 err
= p9pdu_vwritef(req
->tc
, c
->proto_version
, fmt
, ap
);
700 p9pdu_finalize(c
, req
->tc
);
701 trace_9p_client_req(c
, type
, tag
);
709 * p9_client_rpc - issue a request and wait for a response
711 * @type: type of request
712 * @fmt: protocol format string (see protocol.c)
714 * Returns request structure (which client must free using p9_free_req)
717 static struct p9_req_t
*
718 p9_client_rpc(struct p9_client
*c
, int8_t type
, const char *fmt
, ...)
723 struct p9_req_t
*req
;
726 req
= p9_client_prepare_req(c
, type
, c
->msize
, fmt
, ap
);
731 if (signal_pending(current
)) {
733 clear_thread_flag(TIF_SIGPENDING
);
737 err
= c
->trans_mod
->request(c
, req
);
739 if (err
!= -ERESTARTSYS
&& err
!= -EFAULT
)
740 c
->status
= Disconnected
;
744 /* Wait for the response */
745 err
= wait_event_interruptible(*req
->wq
,
746 req
->status
>= REQ_STATUS_RCVD
);
748 if ((err
== -ERESTARTSYS
) && (c
->status
== Connected
)
749 && (type
== P9_TFLUSH
)) {
751 clear_thread_flag(TIF_SIGPENDING
);
755 if (req
->status
== REQ_STATUS_ERROR
) {
756 p9_debug(P9_DEBUG_ERROR
, "req_status error %d\n", req
->t_err
);
759 if ((err
== -ERESTARTSYS
) && (c
->status
== Connected
)) {
760 p9_debug(P9_DEBUG_MUX
, "flushing\n");
762 clear_thread_flag(TIF_SIGPENDING
);
764 if (c
->trans_mod
->cancel(c
, req
))
765 p9_client_flush(c
, req
);
767 /* if we received the response anyway, don't signal error */
768 if (req
->status
== REQ_STATUS_RCVD
)
772 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
774 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
779 err
= p9_check_errors(c
, req
);
780 trace_9p_client_res(c
, type
, req
->rc
->tag
, err
);
789 * p9_client_zc_rpc - issue a request and wait for a response
791 * @type: type of request
792 * @uidata: user bffer that should be ued for zero copy read
793 * @uodata: user buffer that shoud be user for zero copy write
794 * @inlen: read buffer size
795 * @olen: write buffer size
796 * @hdrlen: reader header size, This is the size of response protocol data
797 * @fmt: protocol format string (see protocol.c)
799 * Returns request structure (which client must free using p9_free_req)
801 static struct p9_req_t
*p9_client_zc_rpc(struct p9_client
*c
, int8_t type
,
802 char *uidata
, char *uodata
,
803 int inlen
, int olen
, int in_hdrlen
,
804 int kern_buf
, const char *fmt
, ...)
809 struct p9_req_t
*req
;
813 * We allocate a inline protocol data of only 4k bytes.
814 * The actual content is passed in zero-copy fashion.
816 req
= p9_client_prepare_req(c
, type
, P9_ZC_HDR_SZ
, fmt
, ap
);
821 if (signal_pending(current
)) {
823 clear_thread_flag(TIF_SIGPENDING
);
827 /* If we are called with KERNEL_DS force kern_buf */
828 if (segment_eq(get_fs(), KERNEL_DS
))
831 err
= c
->trans_mod
->zc_request(c
, req
, uidata
, uodata
,
832 inlen
, olen
, in_hdrlen
, kern_buf
);
835 c
->status
= Disconnected
;
838 if (req
->status
== REQ_STATUS_ERROR
) {
839 p9_debug(P9_DEBUG_ERROR
, "req_status error %d\n", req
->t_err
);
842 if ((err
== -ERESTARTSYS
) && (c
->status
== Connected
)) {
843 p9_debug(P9_DEBUG_MUX
, "flushing\n");
845 clear_thread_flag(TIF_SIGPENDING
);
847 if (c
->trans_mod
->cancel(c
, req
))
848 p9_client_flush(c
, req
);
850 /* if we received the response anyway, don't signal error */
851 if (req
->status
== REQ_STATUS_RCVD
)
855 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
857 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
862 err
= p9_check_zc_errors(c
, req
, uidata
, in_hdrlen
, kern_buf
);
863 trace_9p_client_res(c
, type
, req
->rc
->tag
, err
);
871 static struct p9_fid
*p9_fid_create(struct p9_client
*clnt
)
877 p9_debug(P9_DEBUG_FID
, "clnt %p\n", clnt
);
878 fid
= kmalloc(sizeof(struct p9_fid
), GFP_KERNEL
);
880 return ERR_PTR(-ENOMEM
);
882 ret
= p9_idpool_get(clnt
->fidpool
);
889 memset(&fid
->qid
, 0, sizeof(struct p9_qid
));
891 fid
->uid
= current_fsuid();
894 spin_lock_irqsave(&clnt
->lock
, flags
);
895 list_add(&fid
->flist
, &clnt
->fidlist
);
896 spin_unlock_irqrestore(&clnt
->lock
, flags
);
905 static void p9_fid_destroy(struct p9_fid
*fid
)
907 struct p9_client
*clnt
;
910 p9_debug(P9_DEBUG_FID
, "fid %d\n", fid
->fid
);
912 p9_idpool_put(fid
->fid
, clnt
->fidpool
);
913 spin_lock_irqsave(&clnt
->lock
, flags
);
914 list_del(&fid
->flist
);
915 spin_unlock_irqrestore(&clnt
->lock
, flags
);
920 static int p9_client_version(struct p9_client
*c
)
923 struct p9_req_t
*req
;
927 p9_debug(P9_DEBUG_9P
, ">>> TVERSION msize %d protocol %d\n",
928 c
->msize
, c
->proto_version
);
930 switch (c
->proto_version
) {
932 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
933 c
->msize
, "9P2000.L");
936 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
937 c
->msize
, "9P2000.u");
939 case p9_proto_legacy
:
940 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
951 err
= p9pdu_readf(req
->rc
, c
->proto_version
, "ds", &msize
, &version
);
953 p9_debug(P9_DEBUG_9P
, "version error %d\n", err
);
954 trace_9p_protocol_dump(c
, req
->rc
);
958 p9_debug(P9_DEBUG_9P
, "<<< RVERSION msize %d %s\n", msize
, version
);
959 if (!strncmp(version
, "9P2000.L", 8))
960 c
->proto_version
= p9_proto_2000L
;
961 else if (!strncmp(version
, "9P2000.u", 8))
962 c
->proto_version
= p9_proto_2000u
;
963 else if (!strncmp(version
, "9P2000", 6))
964 c
->proto_version
= p9_proto_legacy
;
970 if (msize
< c
->msize
)
980 struct p9_client
*p9_client_create(const char *dev_name
, char *options
)
983 struct p9_client
*clnt
;
986 clnt
= kmalloc(sizeof(struct p9_client
), GFP_KERNEL
);
988 return ERR_PTR(-ENOMEM
);
990 clnt
->trans_mod
= NULL
;
992 spin_lock_init(&clnt
->lock
);
993 INIT_LIST_HEAD(&clnt
->fidlist
);
995 err
= p9_tag_init(clnt
);
999 err
= parse_opts(options
, clnt
);
1001 goto destroy_tagpool
;
1003 if (!clnt
->trans_mod
)
1004 clnt
->trans_mod
= v9fs_get_default_trans();
1006 if (clnt
->trans_mod
== NULL
) {
1007 err
= -EPROTONOSUPPORT
;
1008 p9_debug(P9_DEBUG_ERROR
,
1009 "No transport defined or default transport\n");
1010 goto destroy_tagpool
;
1013 clnt
->fidpool
= p9_idpool_create();
1014 if (IS_ERR(clnt
->fidpool
)) {
1015 err
= PTR_ERR(clnt
->fidpool
);
1019 p9_debug(P9_DEBUG_MUX
, "clnt %p trans %p msize %d protocol %d\n",
1020 clnt
, clnt
->trans_mod
, clnt
->msize
, clnt
->proto_version
);
1022 err
= clnt
->trans_mod
->create(clnt
, dev_name
, options
);
1024 goto destroy_fidpool
;
1026 if (clnt
->msize
> clnt
->trans_mod
->maxsize
)
1027 clnt
->msize
= clnt
->trans_mod
->maxsize
;
1029 err
= p9_client_version(clnt
);
1036 clnt
->trans_mod
->close(clnt
);
1038 p9_idpool_destroy(clnt
->fidpool
);
1040 v9fs_put_trans(clnt
->trans_mod
);
1042 p9_idpool_destroy(clnt
->tagpool
);
1045 return ERR_PTR(err
);
1047 EXPORT_SYMBOL(p9_client_create
);
1049 void p9_client_destroy(struct p9_client
*clnt
)
1051 struct p9_fid
*fid
, *fidptr
;
1053 p9_debug(P9_DEBUG_MUX
, "clnt %p\n", clnt
);
1055 if (clnt
->trans_mod
)
1056 clnt
->trans_mod
->close(clnt
);
1058 v9fs_put_trans(clnt
->trans_mod
);
1060 list_for_each_entry_safe(fid
, fidptr
, &clnt
->fidlist
, flist
) {
1061 pr_info("Found fid %d not clunked\n", fid
->fid
);
1062 p9_fid_destroy(fid
);
1066 p9_idpool_destroy(clnt
->fidpool
);
1068 p9_tag_cleanup(clnt
);
1072 EXPORT_SYMBOL(p9_client_destroy
);
1074 void p9_client_disconnect(struct p9_client
*clnt
)
1076 p9_debug(P9_DEBUG_9P
, "clnt %p\n", clnt
);
1077 clnt
->status
= Disconnected
;
1079 EXPORT_SYMBOL(p9_client_disconnect
);
1081 void p9_client_begin_disconnect(struct p9_client
*clnt
)
1083 p9_debug(P9_DEBUG_9P
, "clnt %p\n", clnt
);
1084 clnt
->status
= BeginDisconnect
;
1086 EXPORT_SYMBOL(p9_client_begin_disconnect
);
1088 struct p9_fid
*p9_client_attach(struct p9_client
*clnt
, struct p9_fid
*afid
,
1089 char *uname
, u32 n_uname
, char *aname
)
1092 struct p9_req_t
*req
;
1097 p9_debug(P9_DEBUG_9P
, ">>> TATTACH afid %d uname %s aname %s\n",
1098 afid
? afid
->fid
: -1, uname
, aname
);
1099 fid
= p9_fid_create(clnt
);
1106 req
= p9_client_rpc(clnt
, P9_TATTACH
, "ddss?d", fid
->fid
,
1107 afid
? afid
->fid
: P9_NOFID
, uname
, aname
, n_uname
);
1113 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", &qid
);
1115 trace_9p_protocol_dump(clnt
, req
->rc
);
1116 p9_free_req(clnt
, req
);
1120 p9_debug(P9_DEBUG_9P
, "<<< RATTACH qid %x.%llx.%x\n",
1121 qid
.type
, (unsigned long long)qid
.path
, qid
.version
);
1123 memmove(&fid
->qid
, &qid
, sizeof(struct p9_qid
));
1125 p9_free_req(clnt
, req
);
1130 p9_fid_destroy(fid
);
1131 return ERR_PTR(err
);
1133 EXPORT_SYMBOL(p9_client_attach
);
1135 struct p9_fid
*p9_client_walk(struct p9_fid
*oldfid
, uint16_t nwname
,
1136 char **wnames
, int clone
)
1139 struct p9_client
*clnt
;
1141 struct p9_qid
*wqids
;
1142 struct p9_req_t
*req
;
1143 uint16_t nwqids
, count
;
1147 clnt
= oldfid
->clnt
;
1149 fid
= p9_fid_create(clnt
);
1156 fid
->uid
= oldfid
->uid
;
1161 p9_debug(P9_DEBUG_9P
, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1162 oldfid
->fid
, fid
->fid
, nwname
, wnames
? wnames
[0] : NULL
);
1164 req
= p9_client_rpc(clnt
, P9_TWALK
, "ddT", oldfid
->fid
, fid
->fid
,
1171 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "R", &nwqids
, &wqids
);
1173 trace_9p_protocol_dump(clnt
, req
->rc
);
1174 p9_free_req(clnt
, req
);
1177 p9_free_req(clnt
, req
);
1179 p9_debug(P9_DEBUG_9P
, "<<< RWALK nwqid %d:\n", nwqids
);
1181 if (nwqids
!= nwname
) {
1186 for (count
= 0; count
< nwqids
; count
++)
1187 p9_debug(P9_DEBUG_9P
, "<<< [%d] %x.%llx.%x\n",
1188 count
, wqids
[count
].type
,
1189 (unsigned long long)wqids
[count
].path
,
1190 wqids
[count
].version
);
1193 memmove(&fid
->qid
, &wqids
[nwqids
- 1], sizeof(struct p9_qid
));
1195 fid
->qid
= oldfid
->qid
;
1202 p9_client_clunk(fid
);
1206 if (fid
&& (fid
!= oldfid
))
1207 p9_fid_destroy(fid
);
1209 return ERR_PTR(err
);
1211 EXPORT_SYMBOL(p9_client_walk
);
1213 int p9_client_open(struct p9_fid
*fid
, int mode
)
1216 struct p9_client
*clnt
;
1217 struct p9_req_t
*req
;
1222 p9_debug(P9_DEBUG_9P
, ">>> %s fid %d mode %d\n",
1223 p9_is_proto_dotl(clnt
) ? "TLOPEN" : "TOPEN", fid
->fid
, mode
);
1226 if (fid
->mode
!= -1)
1229 if (p9_is_proto_dotl(clnt
))
1230 req
= p9_client_rpc(clnt
, P9_TLOPEN
, "dd", fid
->fid
, mode
);
1232 req
= p9_client_rpc(clnt
, P9_TOPEN
, "db", fid
->fid
, mode
);
1238 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Qd", &qid
, &iounit
);
1240 trace_9p_protocol_dump(clnt
, req
->rc
);
1241 goto free_and_error
;
1244 p9_debug(P9_DEBUG_9P
, "<<< %s qid %x.%llx.%x iounit %x\n",
1245 p9_is_proto_dotl(clnt
) ? "RLOPEN" : "ROPEN", qid
.type
,
1246 (unsigned long long)qid
.path
, qid
.version
, iounit
);
1249 fid
->iounit
= iounit
;
1252 p9_free_req(clnt
, req
);
1256 EXPORT_SYMBOL(p9_client_open
);
1258 int p9_client_create_dotl(struct p9_fid
*ofid
, char *name
, u32 flags
, u32 mode
,
1259 gid_t gid
, struct p9_qid
*qid
)
1262 struct p9_client
*clnt
;
1263 struct p9_req_t
*req
;
1266 p9_debug(P9_DEBUG_9P
,
1267 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1268 ofid
->fid
, name
, flags
, mode
, gid
);
1271 if (ofid
->mode
!= -1)
1274 req
= p9_client_rpc(clnt
, P9_TLCREATE
, "dsddd", ofid
->fid
, name
, flags
,
1281 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Qd", qid
, &iounit
);
1283 trace_9p_protocol_dump(clnt
, req
->rc
);
1284 goto free_and_error
;
1287 p9_debug(P9_DEBUG_9P
, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1289 (unsigned long long)qid
->path
,
1290 qid
->version
, iounit
);
1293 ofid
->iounit
= iounit
;
1296 p9_free_req(clnt
, req
);
1300 EXPORT_SYMBOL(p9_client_create_dotl
);
1302 int p9_client_fcreate(struct p9_fid
*fid
, char *name
, u32 perm
, int mode
,
1306 struct p9_client
*clnt
;
1307 struct p9_req_t
*req
;
1311 p9_debug(P9_DEBUG_9P
, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1312 fid
->fid
, name
, perm
, mode
);
1316 if (fid
->mode
!= -1)
1319 req
= p9_client_rpc(clnt
, P9_TCREATE
, "dsdb?s", fid
->fid
, name
, perm
,
1326 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Qd", &qid
, &iounit
);
1328 trace_9p_protocol_dump(clnt
, req
->rc
);
1329 goto free_and_error
;
1332 p9_debug(P9_DEBUG_9P
, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1334 (unsigned long long)qid
.path
,
1335 qid
.version
, iounit
);
1338 fid
->iounit
= iounit
;
1341 p9_free_req(clnt
, req
);
1345 EXPORT_SYMBOL(p9_client_fcreate
);
1347 int p9_client_symlink(struct p9_fid
*dfid
, char *name
, char *symtgt
, gid_t gid
,
1351 struct p9_client
*clnt
;
1352 struct p9_req_t
*req
;
1354 p9_debug(P9_DEBUG_9P
, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1355 dfid
->fid
, name
, symtgt
);
1358 req
= p9_client_rpc(clnt
, P9_TSYMLINK
, "dssd", dfid
->fid
, name
, symtgt
,
1365 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", qid
);
1367 trace_9p_protocol_dump(clnt
, req
->rc
);
1368 goto free_and_error
;
1371 p9_debug(P9_DEBUG_9P
, "<<< RSYMLINK qid %x.%llx.%x\n",
1372 qid
->type
, (unsigned long long)qid
->path
, qid
->version
);
1375 p9_free_req(clnt
, req
);
1379 EXPORT_SYMBOL(p9_client_symlink
);
1381 int p9_client_link(struct p9_fid
*dfid
, struct p9_fid
*oldfid
, char *newname
)
1383 struct p9_client
*clnt
;
1384 struct p9_req_t
*req
;
1386 p9_debug(P9_DEBUG_9P
, ">>> TLINK dfid %d oldfid %d newname %s\n",
1387 dfid
->fid
, oldfid
->fid
, newname
);
1389 req
= p9_client_rpc(clnt
, P9_TLINK
, "dds", dfid
->fid
, oldfid
->fid
,
1392 return PTR_ERR(req
);
1394 p9_debug(P9_DEBUG_9P
, "<<< RLINK\n");
1395 p9_free_req(clnt
, req
);
1398 EXPORT_SYMBOL(p9_client_link
);
1400 int p9_client_fsync(struct p9_fid
*fid
, int datasync
)
1403 struct p9_client
*clnt
;
1404 struct p9_req_t
*req
;
1406 p9_debug(P9_DEBUG_9P
, ">>> TFSYNC fid %d datasync:%d\n",
1407 fid
->fid
, datasync
);
1411 req
= p9_client_rpc(clnt
, P9_TFSYNC
, "dd", fid
->fid
, datasync
);
1417 p9_debug(P9_DEBUG_9P
, "<<< RFSYNC fid %d\n", fid
->fid
);
1419 p9_free_req(clnt
, req
);
1424 EXPORT_SYMBOL(p9_client_fsync
);
1426 int p9_client_clunk(struct p9_fid
*fid
)
1429 struct p9_client
*clnt
;
1430 struct p9_req_t
*req
;
1434 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1435 __func__
, task_pid_nr(current
));
1441 p9_debug(P9_DEBUG_9P
, ">>> TCLUNK fid %d (try %d)\n", fid
->fid
,
1446 req
= p9_client_rpc(clnt
, P9_TCLUNK
, "d", fid
->fid
);
1452 p9_debug(P9_DEBUG_9P
, "<<< RCLUNK fid %d\n", fid
->fid
);
1454 p9_free_req(clnt
, req
);
1457 * Fid is not valid even after a failed clunk
1458 * If interrupted, retry once then give up and
1459 * leak fid until umount.
1461 if (err
== -ERESTARTSYS
) {
1465 p9_fid_destroy(fid
);
1468 EXPORT_SYMBOL(p9_client_clunk
);
1470 int p9_client_remove(struct p9_fid
*fid
)
1473 struct p9_client
*clnt
;
1474 struct p9_req_t
*req
;
1476 p9_debug(P9_DEBUG_9P
, ">>> TREMOVE fid %d\n", fid
->fid
);
1480 req
= p9_client_rpc(clnt
, P9_TREMOVE
, "d", fid
->fid
);
1486 p9_debug(P9_DEBUG_9P
, "<<< RREMOVE fid %d\n", fid
->fid
);
1488 p9_free_req(clnt
, req
);
1490 if (err
== -ERESTARTSYS
)
1491 p9_client_clunk(fid
);
1493 p9_fid_destroy(fid
);
1496 EXPORT_SYMBOL(p9_client_remove
);
1498 int p9_client_unlinkat(struct p9_fid
*dfid
, const char *name
, int flags
)
1501 struct p9_req_t
*req
;
1502 struct p9_client
*clnt
;
1504 p9_debug(P9_DEBUG_9P
, ">>> TUNLINKAT fid %d %s %d\n",
1505 dfid
->fid
, name
, flags
);
1508 req
= p9_client_rpc(clnt
, P9_TUNLINKAT
, "dsd", dfid
->fid
, name
, flags
);
1513 p9_debug(P9_DEBUG_9P
, "<<< RUNLINKAT fid %d %s\n", dfid
->fid
, name
);
1515 p9_free_req(clnt
, req
);
1519 EXPORT_SYMBOL(p9_client_unlinkat
);
1522 p9_client_read(struct p9_fid
*fid
, char *data
, char __user
*udata
, u64 offset
,
1527 struct p9_req_t
*req
;
1528 struct p9_client
*clnt
;
1529 int err
, rsize
, non_zc
= 0;
1532 p9_debug(P9_DEBUG_9P
, ">>> TREAD fid %d offset %llu %d\n",
1533 fid
->fid
, (unsigned long long) offset
, count
);
1537 rsize
= fid
->iounit
;
1538 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1539 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1544 /* Don't bother zerocopy for small IO (< 1024) */
1545 if (clnt
->trans_mod
->zc_request
&& rsize
> 1024) {
1551 indata
= (char *)udata
;
1553 * response header len is 11
1554 * PDU Header(7) + IO Size (4)
1556 req
= p9_client_zc_rpc(clnt
, P9_TREAD
, indata
, NULL
, rsize
, 0,
1557 11, kernel_buf
, "dqd", fid
->fid
,
1561 req
= p9_client_rpc(clnt
, P9_TREAD
, "dqd", fid
->fid
, offset
,
1569 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "D", &count
, &dataptr
);
1571 trace_9p_protocol_dump(clnt
, req
->rc
);
1572 goto free_and_error
;
1575 p9_debug(P9_DEBUG_9P
, "<<< RREAD count %d\n", count
);
1579 memmove(data
, dataptr
, count
);
1581 err
= copy_to_user(udata
, dataptr
, count
);
1584 goto free_and_error
;
1588 p9_free_req(clnt
, req
);
1592 p9_free_req(clnt
, req
);
1596 EXPORT_SYMBOL(p9_client_read
);
1599 p9_client_write(struct p9_fid
*fid
, char *data
, const char __user
*udata
,
1600 u64 offset
, u32 count
)
1604 struct p9_client
*clnt
;
1605 struct p9_req_t
*req
;
1607 p9_debug(P9_DEBUG_9P
, ">>> TWRITE fid %d offset %llu count %d\n",
1608 fid
->fid
, (unsigned long long) offset
, count
);
1612 rsize
= fid
->iounit
;
1613 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1614 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1619 /* Don't bother zerocopy for small IO (< 1024) */
1620 if (clnt
->trans_mod
->zc_request
&& rsize
> 1024) {
1626 odata
= (char *)udata
;
1627 req
= p9_client_zc_rpc(clnt
, P9_TWRITE
, NULL
, odata
, 0, rsize
,
1628 P9_ZC_HDR_SZ
, kernel_buf
, "dqd",
1629 fid
->fid
, offset
, rsize
);
1632 req
= p9_client_rpc(clnt
, P9_TWRITE
, "dqD", fid
->fid
,
1633 offset
, rsize
, data
);
1635 req
= p9_client_rpc(clnt
, P9_TWRITE
, "dqU", fid
->fid
,
1636 offset
, rsize
, udata
);
1643 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "d", &count
);
1645 trace_9p_protocol_dump(clnt
, req
->rc
);
1646 goto free_and_error
;
1649 p9_debug(P9_DEBUG_9P
, "<<< RWRITE count %d\n", count
);
1651 p9_free_req(clnt
, req
);
1655 p9_free_req(clnt
, req
);
1659 EXPORT_SYMBOL(p9_client_write
);
1661 struct p9_wstat
*p9_client_stat(struct p9_fid
*fid
)
1664 struct p9_client
*clnt
;
1665 struct p9_wstat
*ret
= kmalloc(sizeof(struct p9_wstat
), GFP_KERNEL
);
1666 struct p9_req_t
*req
;
1669 p9_debug(P9_DEBUG_9P
, ">>> TSTAT fid %d\n", fid
->fid
);
1672 return ERR_PTR(-ENOMEM
);
1677 req
= p9_client_rpc(clnt
, P9_TSTAT
, "d", fid
->fid
);
1683 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "wS", &ignored
, ret
);
1685 trace_9p_protocol_dump(clnt
, req
->rc
);
1686 p9_free_req(clnt
, req
);
1690 p9_debug(P9_DEBUG_9P
,
1691 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1692 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1693 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1694 "<<< uid=%d gid=%d n_muid=%d\n",
1695 ret
->size
, ret
->type
, ret
->dev
, ret
->qid
.type
,
1696 (unsigned long long)ret
->qid
.path
, ret
->qid
.version
, ret
->mode
,
1697 ret
->atime
, ret
->mtime
, (unsigned long long)ret
->length
,
1698 ret
->name
, ret
->uid
, ret
->gid
, ret
->muid
, ret
->extension
,
1699 ret
->n_uid
, ret
->n_gid
, ret
->n_muid
);
1701 p9_free_req(clnt
, req
);
1706 return ERR_PTR(err
);
1708 EXPORT_SYMBOL(p9_client_stat
);
1710 struct p9_stat_dotl
*p9_client_getattr_dotl(struct p9_fid
*fid
,
1714 struct p9_client
*clnt
;
1715 struct p9_stat_dotl
*ret
= kmalloc(sizeof(struct p9_stat_dotl
),
1717 struct p9_req_t
*req
;
1719 p9_debug(P9_DEBUG_9P
, ">>> TGETATTR fid %d, request_mask %lld\n",
1720 fid
->fid
, request_mask
);
1723 return ERR_PTR(-ENOMEM
);
1728 req
= p9_client_rpc(clnt
, P9_TGETATTR
, "dq", fid
->fid
, request_mask
);
1734 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "A", ret
);
1736 trace_9p_protocol_dump(clnt
, req
->rc
);
1737 p9_free_req(clnt
, req
);
1741 p9_debug(P9_DEBUG_9P
,
1742 "<<< RGETATTR st_result_mask=%lld\n"
1743 "<<< qid=%x.%llx.%x\n"
1744 "<<< st_mode=%8.8x st_nlink=%llu\n"
1745 "<<< st_uid=%d st_gid=%d\n"
1746 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1747 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1748 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1749 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1750 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1751 "<<< st_gen=%lld st_data_version=%lld",
1752 ret
->st_result_mask
, ret
->qid
.type
, ret
->qid
.path
,
1753 ret
->qid
.version
, ret
->st_mode
, ret
->st_nlink
, ret
->st_uid
,
1754 ret
->st_gid
, ret
->st_rdev
, ret
->st_size
, ret
->st_blksize
,
1755 ret
->st_blocks
, ret
->st_atime_sec
, ret
->st_atime_nsec
,
1756 ret
->st_mtime_sec
, ret
->st_mtime_nsec
, ret
->st_ctime_sec
,
1757 ret
->st_ctime_nsec
, ret
->st_btime_sec
, ret
->st_btime_nsec
,
1758 ret
->st_gen
, ret
->st_data_version
);
1760 p9_free_req(clnt
, req
);
1765 return ERR_PTR(err
);
1767 EXPORT_SYMBOL(p9_client_getattr_dotl
);
1769 static int p9_client_statsize(struct p9_wstat
*wst
, int proto_version
)
1773 /* NOTE: size shouldn't include its own length */
1774 /* size[2] type[2] dev[4] qid[13] */
1775 /* mode[4] atime[4] mtime[4] length[8]*/
1776 /* name[s] uid[s] gid[s] muid[s] */
1777 ret
= 2+4+13+4+4+4+8+2+2+2+2;
1780 ret
+= strlen(wst
->name
);
1782 ret
+= strlen(wst
->uid
);
1784 ret
+= strlen(wst
->gid
);
1786 ret
+= strlen(wst
->muid
);
1788 if ((proto_version
== p9_proto_2000u
) ||
1789 (proto_version
== p9_proto_2000L
)) {
1790 ret
+= 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1792 ret
+= strlen(wst
->extension
);
1798 int p9_client_wstat(struct p9_fid
*fid
, struct p9_wstat
*wst
)
1801 struct p9_req_t
*req
;
1802 struct p9_client
*clnt
;
1806 wst
->size
= p9_client_statsize(wst
, clnt
->proto_version
);
1807 p9_debug(P9_DEBUG_9P
, ">>> TWSTAT fid %d\n", fid
->fid
);
1808 p9_debug(P9_DEBUG_9P
,
1809 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1810 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1811 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1812 " uid=%d gid=%d n_muid=%d\n",
1813 wst
->size
, wst
->type
, wst
->dev
, wst
->qid
.type
,
1814 (unsigned long long)wst
->qid
.path
, wst
->qid
.version
, wst
->mode
,
1815 wst
->atime
, wst
->mtime
, (unsigned long long)wst
->length
,
1816 wst
->name
, wst
->uid
, wst
->gid
, wst
->muid
, wst
->extension
,
1817 wst
->n_uid
, wst
->n_gid
, wst
->n_muid
);
1819 req
= p9_client_rpc(clnt
, P9_TWSTAT
, "dwS", fid
->fid
, wst
->size
+2, wst
);
1825 p9_debug(P9_DEBUG_9P
, "<<< RWSTAT fid %d\n", fid
->fid
);
1827 p9_free_req(clnt
, req
);
1831 EXPORT_SYMBOL(p9_client_wstat
);
1833 int p9_client_setattr(struct p9_fid
*fid
, struct p9_iattr_dotl
*p9attr
)
1836 struct p9_req_t
*req
;
1837 struct p9_client
*clnt
;
1841 p9_debug(P9_DEBUG_9P
, ">>> TSETATTR fid %d\n", fid
->fid
);
1842 p9_debug(P9_DEBUG_9P
,
1843 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1844 " atime_sec=%lld atime_nsec=%lld\n"
1845 " mtime_sec=%lld mtime_nsec=%lld\n",
1846 p9attr
->valid
, p9attr
->mode
, p9attr
->uid
, p9attr
->gid
,
1847 p9attr
->size
, p9attr
->atime_sec
, p9attr
->atime_nsec
,
1848 p9attr
->mtime_sec
, p9attr
->mtime_nsec
);
1850 req
= p9_client_rpc(clnt
, P9_TSETATTR
, "dI", fid
->fid
, p9attr
);
1856 p9_debug(P9_DEBUG_9P
, "<<< RSETATTR fid %d\n", fid
->fid
);
1857 p9_free_req(clnt
, req
);
1861 EXPORT_SYMBOL(p9_client_setattr
);
1863 int p9_client_statfs(struct p9_fid
*fid
, struct p9_rstatfs
*sb
)
1866 struct p9_req_t
*req
;
1867 struct p9_client
*clnt
;
1872 p9_debug(P9_DEBUG_9P
, ">>> TSTATFS fid %d\n", fid
->fid
);
1874 req
= p9_client_rpc(clnt
, P9_TSTATFS
, "d", fid
->fid
);
1880 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "ddqqqqqqd", &sb
->type
,
1881 &sb
->bsize
, &sb
->blocks
, &sb
->bfree
, &sb
->bavail
,
1882 &sb
->files
, &sb
->ffree
, &sb
->fsid
, &sb
->namelen
);
1884 trace_9p_protocol_dump(clnt
, req
->rc
);
1885 p9_free_req(clnt
, req
);
1889 p9_debug(P9_DEBUG_9P
, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
1890 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1891 "fsid %llu namelen %ld\n",
1892 fid
->fid
, (long unsigned int)sb
->type
, (long int)sb
->bsize
,
1893 sb
->blocks
, sb
->bfree
, sb
->bavail
, sb
->files
, sb
->ffree
,
1894 sb
->fsid
, (long int)sb
->namelen
);
1896 p9_free_req(clnt
, req
);
1900 EXPORT_SYMBOL(p9_client_statfs
);
1902 int p9_client_rename(struct p9_fid
*fid
,
1903 struct p9_fid
*newdirfid
, const char *name
)
1906 struct p9_req_t
*req
;
1907 struct p9_client
*clnt
;
1912 p9_debug(P9_DEBUG_9P
, ">>> TRENAME fid %d newdirfid %d name %s\n",
1913 fid
->fid
, newdirfid
->fid
, name
);
1915 req
= p9_client_rpc(clnt
, P9_TRENAME
, "dds", fid
->fid
,
1916 newdirfid
->fid
, name
);
1922 p9_debug(P9_DEBUG_9P
, "<<< RRENAME fid %d\n", fid
->fid
);
1924 p9_free_req(clnt
, req
);
1928 EXPORT_SYMBOL(p9_client_rename
);
1930 int p9_client_renameat(struct p9_fid
*olddirfid
, const char *old_name
,
1931 struct p9_fid
*newdirfid
, const char *new_name
)
1934 struct p9_req_t
*req
;
1935 struct p9_client
*clnt
;
1938 clnt
= olddirfid
->clnt
;
1940 p9_debug(P9_DEBUG_9P
, ">>> TRENAMEAT olddirfid %d old name %s"
1941 " newdirfid %d new name %s\n", olddirfid
->fid
, old_name
,
1942 newdirfid
->fid
, new_name
);
1944 req
= p9_client_rpc(clnt
, P9_TRENAMEAT
, "dsds", olddirfid
->fid
,
1945 old_name
, newdirfid
->fid
, new_name
);
1951 p9_debug(P9_DEBUG_9P
, "<<< RRENAMEAT newdirfid %d new name %s\n",
1952 newdirfid
->fid
, new_name
);
1954 p9_free_req(clnt
, req
);
1958 EXPORT_SYMBOL(p9_client_renameat
);
1961 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1963 struct p9_fid
*p9_client_xattrwalk(struct p9_fid
*file_fid
,
1964 const char *attr_name
, u64
*attr_size
)
1967 struct p9_req_t
*req
;
1968 struct p9_client
*clnt
;
1969 struct p9_fid
*attr_fid
;
1972 clnt
= file_fid
->clnt
;
1973 attr_fid
= p9_fid_create(clnt
);
1974 if (IS_ERR(attr_fid
)) {
1975 err
= PTR_ERR(attr_fid
);
1979 p9_debug(P9_DEBUG_9P
,
1980 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
1981 file_fid
->fid
, attr_fid
->fid
, attr_name
);
1983 req
= p9_client_rpc(clnt
, P9_TXATTRWALK
, "dds",
1984 file_fid
->fid
, attr_fid
->fid
, attr_name
);
1989 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "q", attr_size
);
1991 trace_9p_protocol_dump(clnt
, req
->rc
);
1992 p9_free_req(clnt
, req
);
1995 p9_free_req(clnt
, req
);
1996 p9_debug(P9_DEBUG_9P
, "<<< RXATTRWALK fid %d size %llu\n",
1997 attr_fid
->fid
, *attr_size
);
2000 p9_client_clunk(attr_fid
);
2003 if (attr_fid
&& (attr_fid
!= file_fid
))
2004 p9_fid_destroy(attr_fid
);
2006 return ERR_PTR(err
);
2008 EXPORT_SYMBOL_GPL(p9_client_xattrwalk
);
2010 int p9_client_xattrcreate(struct p9_fid
*fid
, const char *name
,
2011 u64 attr_size
, int flags
)
2014 struct p9_req_t
*req
;
2015 struct p9_client
*clnt
;
2017 p9_debug(P9_DEBUG_9P
,
2018 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2019 fid
->fid
, name
, (long long)attr_size
, flags
);
2022 req
= p9_client_rpc(clnt
, P9_TXATTRCREATE
, "dsqd",
2023 fid
->fid
, name
, attr_size
, flags
);
2028 p9_debug(P9_DEBUG_9P
, "<<< RXATTRCREATE fid %d\n", fid
->fid
);
2029 p9_free_req(clnt
, req
);
2033 EXPORT_SYMBOL_GPL(p9_client_xattrcreate
);
2035 int p9_client_readdir(struct p9_fid
*fid
, char *data
, u32 count
, u64 offset
)
2037 int err
, rsize
, non_zc
= 0;
2038 struct p9_client
*clnt
;
2039 struct p9_req_t
*req
;
2042 p9_debug(P9_DEBUG_9P
, ">>> TREADDIR fid %d offset %llu count %d\n",
2043 fid
->fid
, (unsigned long long) offset
, count
);
2048 rsize
= fid
->iounit
;
2049 if (!rsize
|| rsize
> clnt
->msize
-P9_READDIRHDRSZ
)
2050 rsize
= clnt
->msize
- P9_READDIRHDRSZ
;
2055 /* Don't bother zerocopy for small IO (< 1024) */
2056 if (clnt
->trans_mod
->zc_request
&& rsize
> 1024) {
2058 * response header len is 11
2059 * PDU Header(7) + IO Size (4)
2061 req
= p9_client_zc_rpc(clnt
, P9_TREADDIR
, data
, NULL
, rsize
, 0,
2062 11, 1, "dqd", fid
->fid
, offset
, rsize
);
2065 req
= p9_client_rpc(clnt
, P9_TREADDIR
, "dqd", fid
->fid
,
2073 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "D", &count
, &dataptr
);
2075 trace_9p_protocol_dump(clnt
, req
->rc
);
2076 goto free_and_error
;
2079 p9_debug(P9_DEBUG_9P
, "<<< RREADDIR count %d\n", count
);
2082 memmove(data
, dataptr
, count
);
2084 p9_free_req(clnt
, req
);
2088 p9_free_req(clnt
, req
);
2092 EXPORT_SYMBOL(p9_client_readdir
);
2094 int p9_client_mknod_dotl(struct p9_fid
*fid
, char *name
, int mode
,
2095 dev_t rdev
, gid_t gid
, struct p9_qid
*qid
)
2098 struct p9_client
*clnt
;
2099 struct p9_req_t
*req
;
2103 p9_debug(P9_DEBUG_9P
, ">>> TMKNOD fid %d name %s mode %d major %d "
2104 "minor %d\n", fid
->fid
, name
, mode
, MAJOR(rdev
), MINOR(rdev
));
2105 req
= p9_client_rpc(clnt
, P9_TMKNOD
, "dsdddd", fid
->fid
, name
, mode
,
2106 MAJOR(rdev
), MINOR(rdev
), gid
);
2108 return PTR_ERR(req
);
2110 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", qid
);
2112 trace_9p_protocol_dump(clnt
, req
->rc
);
2115 p9_debug(P9_DEBUG_9P
, "<<< RMKNOD qid %x.%llx.%x\n", qid
->type
,
2116 (unsigned long long)qid
->path
, qid
->version
);
2119 p9_free_req(clnt
, req
);
2123 EXPORT_SYMBOL(p9_client_mknod_dotl
);
2125 int p9_client_mkdir_dotl(struct p9_fid
*fid
, char *name
, int mode
,
2126 gid_t gid
, struct p9_qid
*qid
)
2129 struct p9_client
*clnt
;
2130 struct p9_req_t
*req
;
2134 p9_debug(P9_DEBUG_9P
, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2135 fid
->fid
, name
, mode
, gid
);
2136 req
= p9_client_rpc(clnt
, P9_TMKDIR
, "dsdd", fid
->fid
, name
, mode
,
2139 return PTR_ERR(req
);
2141 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "Q", qid
);
2143 trace_9p_protocol_dump(clnt
, req
->rc
);
2146 p9_debug(P9_DEBUG_9P
, "<<< RMKDIR qid %x.%llx.%x\n", qid
->type
,
2147 (unsigned long long)qid
->path
, qid
->version
);
2150 p9_free_req(clnt
, req
);
2154 EXPORT_SYMBOL(p9_client_mkdir_dotl
);
2156 int p9_client_lock_dotl(struct p9_fid
*fid
, struct p9_flock
*flock
, u8
*status
)
2159 struct p9_client
*clnt
;
2160 struct p9_req_t
*req
;
2164 p9_debug(P9_DEBUG_9P
, ">>> TLOCK fid %d type %i flags %d "
2165 "start %lld length %lld proc_id %d client_id %s\n",
2166 fid
->fid
, flock
->type
, flock
->flags
, flock
->start
,
2167 flock
->length
, flock
->proc_id
, flock
->client_id
);
2169 req
= p9_client_rpc(clnt
, P9_TLOCK
, "dbdqqds", fid
->fid
, flock
->type
,
2170 flock
->flags
, flock
->start
, flock
->length
,
2171 flock
->proc_id
, flock
->client_id
);
2174 return PTR_ERR(req
);
2176 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "b", status
);
2178 trace_9p_protocol_dump(clnt
, req
->rc
);
2181 p9_debug(P9_DEBUG_9P
, "<<< RLOCK status %i\n", *status
);
2183 p9_free_req(clnt
, req
);
2187 EXPORT_SYMBOL(p9_client_lock_dotl
);
2189 int p9_client_getlock_dotl(struct p9_fid
*fid
, struct p9_getlock
*glock
)
2192 struct p9_client
*clnt
;
2193 struct p9_req_t
*req
;
2197 p9_debug(P9_DEBUG_9P
, ">>> TGETLOCK fid %d, type %i start %lld "
2198 "length %lld proc_id %d client_id %s\n", fid
->fid
, glock
->type
,
2199 glock
->start
, glock
->length
, glock
->proc_id
, glock
->client_id
);
2201 req
= p9_client_rpc(clnt
, P9_TGETLOCK
, "dbqqds", fid
->fid
, glock
->type
,
2202 glock
->start
, glock
->length
, glock
->proc_id
, glock
->client_id
);
2205 return PTR_ERR(req
);
2207 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "bqqds", &glock
->type
,
2208 &glock
->start
, &glock
->length
, &glock
->proc_id
,
2211 trace_9p_protocol_dump(clnt
, req
->rc
);
2214 p9_debug(P9_DEBUG_9P
, "<<< RGETLOCK type %i start %lld length %lld "
2215 "proc_id %d client_id %s\n", glock
->type
, glock
->start
,
2216 glock
->length
, glock
->proc_id
, glock
->client_id
);
2218 p9_free_req(clnt
, req
);
2221 EXPORT_SYMBOL(p9_client_getlock_dotl
);
2223 int p9_client_readlink(struct p9_fid
*fid
, char **target
)
2226 struct p9_client
*clnt
;
2227 struct p9_req_t
*req
;
2231 p9_debug(P9_DEBUG_9P
, ">>> TREADLINK fid %d\n", fid
->fid
);
2233 req
= p9_client_rpc(clnt
, P9_TREADLINK
, "d", fid
->fid
);
2235 return PTR_ERR(req
);
2237 err
= p9pdu_readf(req
->rc
, clnt
->proto_version
, "s", target
);
2239 trace_9p_protocol_dump(clnt
, req
->rc
);
2242 p9_debug(P9_DEBUG_9P
, "<<< RREADLINK target %s\n", *target
);
2244 p9_free_req(clnt
, req
);
2247 EXPORT_SYMBOL(p9_client_readlink
);