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/signal.h>
36 #include <linux/uaccess.h>
37 #include <linux/uio.h>
38 #include <net/9p/9p.h>
39 #include <linux/parser.h>
40 #include <linux/seq_file.h>
41 #include <net/9p/client.h>
42 #include <net/9p/transport.h>
45 #define CREATE_TRACE_POINTS
46 #include <trace/events/9p.h>
49 * Client Option Parsing (code inspired by NFS code)
50 * - a little lazy - parse all client options
61 static const match_table_t tokens
= {
62 {Opt_msize
, "msize=%u"},
63 {Opt_legacy
, "noextend"},
64 {Opt_trans
, "trans=%s"},
65 {Opt_version
, "version=%s"},
69 inline int p9_is_proto_dotl(struct p9_client
*clnt
)
71 return clnt
->proto_version
== p9_proto_2000L
;
73 EXPORT_SYMBOL(p9_is_proto_dotl
);
75 inline int p9_is_proto_dotu(struct p9_client
*clnt
)
77 return clnt
->proto_version
== p9_proto_2000u
;
79 EXPORT_SYMBOL(p9_is_proto_dotu
);
81 int p9_show_client_options(struct seq_file
*m
, struct p9_client
*clnt
)
83 if (clnt
->msize
!= 8192)
84 seq_printf(m
, ",msize=%u", clnt
->msize
);
85 seq_printf(m
, ",trans=%s", clnt
->trans_mod
->name
);
87 switch (clnt
->proto_version
) {
89 seq_puts(m
, ",noextend");
92 seq_puts(m
, ",version=9p2000.u");
99 if (clnt
->trans_mod
->show_options
)
100 return clnt
->trans_mod
->show_options(m
, clnt
);
103 EXPORT_SYMBOL(p9_show_client_options
);
106 * Some error codes are taken directly from the server replies,
107 * make sure they are valid.
109 static int safe_errno(int err
)
111 if ((err
> 0) || (err
< -MAX_ERRNO
)) {
112 p9_debug(P9_DEBUG_ERROR
, "Invalid error code %d\n", err
);
119 /* Interpret mount option for protocol version */
120 static int get_protocol_version(char *s
)
122 int version
= -EINVAL
;
124 if (!strcmp(s
, "9p2000")) {
125 version
= p9_proto_legacy
;
126 p9_debug(P9_DEBUG_9P
, "Protocol version: Legacy\n");
127 } else if (!strcmp(s
, "9p2000.u")) {
128 version
= p9_proto_2000u
;
129 p9_debug(P9_DEBUG_9P
, "Protocol version: 9P2000.u\n");
130 } else if (!strcmp(s
, "9p2000.L")) {
131 version
= p9_proto_2000L
;
132 p9_debug(P9_DEBUG_9P
, "Protocol version: 9P2000.L\n");
134 pr_info("Unknown protocol version %s\n", s
);
140 * parse_options - parse mount options into client structure
141 * @opts: options string passed from mount
142 * @clnt: existing v9fs client information
144 * Return 0 upon success, -ERRNO upon failure
147 static int parse_opts(char *opts
, struct p9_client
*clnt
)
149 char *options
, *tmp_options
;
151 substring_t args
[MAX_OPT_ARGS
];
156 clnt
->proto_version
= p9_proto_2000L
;
162 tmp_options
= kstrdup(opts
, GFP_KERNEL
);
164 p9_debug(P9_DEBUG_ERROR
,
165 "failed to allocate copy of option string\n");
168 options
= tmp_options
;
170 while ((p
= strsep(&options
, ",")) != NULL
) {
174 token
= match_token(p
, tokens
, args
);
177 r
= match_int(&args
[0], &option
);
179 p9_debug(P9_DEBUG_ERROR
,
180 "integer field, but no integer?\n");
184 clnt
->msize
= option
;
187 s
= match_strdup(&args
[0]);
190 p9_debug(P9_DEBUG_ERROR
,
191 "problem allocating copy of trans arg\n");
192 goto free_and_return
;
195 v9fs_put_trans(clnt
->trans_mod
);
196 clnt
->trans_mod
= v9fs_get_trans_by_name(s
);
197 if (clnt
->trans_mod
== NULL
) {
198 pr_info("Could not find request transport: %s\n",
205 clnt
->proto_version
= p9_proto_legacy
;
208 s
= match_strdup(&args
[0]);
211 p9_debug(P9_DEBUG_ERROR
,
212 "problem allocating copy of version arg\n");
213 goto free_and_return
;
215 r
= get_protocol_version(s
);
219 clnt
->proto_version
= r
;
229 v9fs_put_trans(clnt
->trans_mod
);
234 static int p9_fcall_init(struct p9_client
*c
, struct p9_fcall
*fc
,
237 if (likely(c
->fcall_cache
) && alloc_msize
== c
->msize
) {
238 fc
->sdata
= kmem_cache_alloc(c
->fcall_cache
, GFP_NOFS
);
239 fc
->cache
= c
->fcall_cache
;
241 fc
->sdata
= kmalloc(alloc_msize
, GFP_NOFS
);
246 fc
->capacity
= alloc_msize
;
250 void p9_fcall_fini(struct p9_fcall
*fc
)
252 /* sdata can be NULL for interrupted requests in trans_rdma,
253 * and kmem_cache_free does not do NULL-check for us
255 if (unlikely(!fc
->sdata
))
259 kmem_cache_free(fc
->cache
, fc
->sdata
);
263 EXPORT_SYMBOL(p9_fcall_fini
);
265 static struct kmem_cache
*p9_req_cache
;
268 * p9_req_alloc - Allocate a new request.
269 * @c: Client session.
270 * @type: Transaction type.
271 * @max_size: Maximum packet size for this request.
273 * Context: Process context.
274 * Return: Pointer to new request.
276 static struct p9_req_t
*
277 p9_tag_alloc(struct p9_client
*c
, int8_t type
, unsigned int max_size
)
279 struct p9_req_t
*req
= kmem_cache_alloc(p9_req_cache
, GFP_NOFS
);
280 int alloc_msize
= min(c
->msize
, max_size
);
284 return ERR_PTR(-ENOMEM
);
286 if (p9_fcall_init(c
, &req
->tc
, alloc_msize
))
288 if (p9_fcall_init(c
, &req
->rc
, alloc_msize
))
291 p9pdu_reset(&req
->tc
);
292 p9pdu_reset(&req
->rc
);
293 req
->status
= REQ_STATUS_ALLOC
;
294 init_waitqueue_head(&req
->wq
);
295 INIT_LIST_HEAD(&req
->req_list
);
297 idr_preload(GFP_NOFS
);
298 spin_lock_irq(&c
->lock
);
299 if (type
== P9_TVERSION
)
300 tag
= idr_alloc(&c
->reqs
, req
, P9_NOTAG
, P9_NOTAG
+ 1,
303 tag
= idr_alloc(&c
->reqs
, req
, 0, P9_NOTAG
, GFP_NOWAIT
);
305 spin_unlock_irq(&c
->lock
);
310 /* Init ref to two because in the general case there is one ref
311 * that is put asynchronously by a writer thread, one ref
312 * temporarily given by p9_tag_lookup and put by p9_client_cb
313 * in the recv thread, and one ref put by p9_tag_remove in the
314 * main thread. The only exception is virtio that does not use
315 * p9_tag_lookup but does not have a writer thread either
316 * (the write happens synchronously in the request/zc_request
317 * callback), so p9_client_cb eats the second ref there
318 * as the pointer is duplicated directly by virtqueue_add_sgs()
320 refcount_set(&req
->refcount
.refcount
, 2);
325 p9_fcall_fini(&req
->tc
);
326 p9_fcall_fini(&req
->rc
);
328 kmem_cache_free(p9_req_cache
, req
);
329 return ERR_PTR(-ENOMEM
);
333 * p9_tag_lookup - Look up a request by tag.
334 * @c: Client session.
335 * @tag: Transaction ID.
337 * Context: Any context.
338 * Return: A request, or %NULL if there is no request with that tag.
340 struct p9_req_t
*p9_tag_lookup(struct p9_client
*c
, u16 tag
)
342 struct p9_req_t
*req
;
346 req
= idr_find(&c
->reqs
, tag
);
348 /* We have to be careful with the req found under rcu_read_lock
349 * Thanks to SLAB_TYPESAFE_BY_RCU we can safely try to get the
350 * ref again without corrupting other data, then check again
351 * that the tag matches once we have the ref
353 if (!p9_req_try_get(req
))
355 if (req
->tc
.tag
!= tag
) {
364 EXPORT_SYMBOL(p9_tag_lookup
);
367 * p9_tag_remove - Remove a tag.
368 * @c: Client session.
369 * @r: Request of reference.
371 * Context: Any context.
373 static int p9_tag_remove(struct p9_client
*c
, struct p9_req_t
*r
)
378 p9_debug(P9_DEBUG_MUX
, "clnt %p req %p tag: %d\n", c
, r
, tag
);
379 spin_lock_irqsave(&c
->lock
, flags
);
380 idr_remove(&c
->reqs
, tag
);
381 spin_unlock_irqrestore(&c
->lock
, flags
);
382 return p9_req_put(r
);
385 static void p9_req_free(struct kref
*ref
)
387 struct p9_req_t
*r
= container_of(ref
, struct p9_req_t
, refcount
);
388 p9_fcall_fini(&r
->tc
);
389 p9_fcall_fini(&r
->rc
);
390 kmem_cache_free(p9_req_cache
, r
);
393 int p9_req_put(struct p9_req_t
*r
)
395 return kref_put(&r
->refcount
, p9_req_free
);
397 EXPORT_SYMBOL(p9_req_put
);
400 * p9_tag_cleanup - cleans up tags structure and reclaims resources
401 * @c: v9fs client struct
403 * This frees resources associated with the tags structure
406 static void p9_tag_cleanup(struct p9_client
*c
)
408 struct p9_req_t
*req
;
412 idr_for_each_entry(&c
->reqs
, req
, id
) {
413 pr_info("Tag %d still in use\n", id
);
414 if (p9_tag_remove(c
, req
) == 0)
415 pr_warn("Packet with tag %d has still references",
422 * p9_client_cb - call back from transport to client
424 * req: request received
427 void p9_client_cb(struct p9_client
*c
, struct p9_req_t
*req
, int status
)
429 p9_debug(P9_DEBUG_MUX
, " tag %d\n", req
->tc
.tag
);
432 * This barrier is needed to make sure any change made to req before
433 * the status change is visible to another thread
436 req
->status
= status
;
439 p9_debug(P9_DEBUG_MUX
, "wakeup: %d\n", req
->tc
.tag
);
442 EXPORT_SYMBOL(p9_client_cb
);
445 * p9_parse_header - parse header arguments out of a packet
446 * @pdu: packet to parse
447 * @size: size of packet
448 * @type: type of request
449 * @tag: tag of packet
450 * @rewind: set if we need to rewind offset afterwards
454 p9_parse_header(struct p9_fcall
*pdu
, int32_t *size
, int8_t *type
, int16_t *tag
,
460 int offset
= pdu
->offset
;
465 err
= p9pdu_readf(pdu
, 0, "dbw", &r_size
, &r_type
, &r_tag
);
467 goto rewind_and_exit
;
476 if (pdu
->size
!= r_size
|| r_size
< 7) {
478 goto rewind_and_exit
;
484 p9_debug(P9_DEBUG_9P
, "<<< size=%d type: %d tag: %d\n",
485 pdu
->size
, pdu
->id
, pdu
->tag
);
489 pdu
->offset
= offset
;
492 EXPORT_SYMBOL(p9_parse_header
);
495 * p9_check_errors - check 9p packet for error return and process it
496 * @c: current client instance
497 * @req: request to parse and check for error conditions
499 * returns error code if one is discovered, otherwise returns 0
501 * this will have to be more complicated if we have multiple
505 static int p9_check_errors(struct p9_client
*c
, struct p9_req_t
*req
)
511 err
= p9_parse_header(&req
->rc
, NULL
, &type
, NULL
, 0);
512 if (req
->rc
.size
>= c
->msize
) {
513 p9_debug(P9_DEBUG_ERROR
,
514 "requested packet size too big: %d\n",
519 * dump the response from server
520 * This should be after check errors which poplulate pdu_fcall.
522 trace_9p_protocol_dump(c
, &req
->rc
);
524 p9_debug(P9_DEBUG_ERROR
, "couldn't parse header %d\n", err
);
527 if (type
!= P9_RERROR
&& type
!= P9_RLERROR
)
530 if (!p9_is_proto_dotl(c
)) {
532 err
= p9pdu_readf(&req
->rc
, c
->proto_version
, "s?d",
537 if (p9_is_proto_dotu(c
) && ecode
< 512)
541 err
= p9_errstr2errno(ename
, strlen(ename
));
543 p9_debug(P9_DEBUG_9P
, "<<< RERROR (%d) %s\n",
548 err
= p9pdu_readf(&req
->rc
, c
->proto_version
, "d", &ecode
);
551 p9_debug(P9_DEBUG_9P
, "<<< RLERROR (%d)\n", -ecode
);
557 p9_debug(P9_DEBUG_ERROR
, "couldn't parse error%d\n", err
);
563 * p9_check_zc_errors - check 9p packet for error return and process it
564 * @c: current client instance
565 * @req: request to parse and check for error conditions
566 * @in_hdrlen: Size of response protocol buffer.
568 * returns error code if one is discovered, otherwise returns 0
570 * this will have to be more complicated if we have multiple
574 static int p9_check_zc_errors(struct p9_client
*c
, struct p9_req_t
*req
,
575 struct iov_iter
*uidata
, int in_hdrlen
)
582 err
= p9_parse_header(&req
->rc
, NULL
, &type
, NULL
, 0);
584 * dump the response from server
585 * This should be after parse_header which poplulate pdu_fcall.
587 trace_9p_protocol_dump(c
, &req
->rc
);
589 p9_debug(P9_DEBUG_ERROR
, "couldn't parse header %d\n", err
);
593 if (type
!= P9_RERROR
&& type
!= P9_RLERROR
)
596 if (!p9_is_proto_dotl(c
)) {
597 /* Error is reported in string format */
599 /* 7 = header size for RERROR; */
600 int inline_len
= in_hdrlen
- 7;
602 len
= req
->rc
.size
- req
->rc
.offset
;
603 if (len
> (P9_ZC_HDR_SZ
- 7)) {
608 ename
= &req
->rc
.sdata
[req
->rc
.offset
];
609 if (len
> inline_len
) {
610 /* We have error in external buffer */
611 if (!copy_from_iter_full(ename
+ inline_len
,
612 len
- inline_len
, uidata
)) {
618 err
= p9pdu_readf(&req
->rc
, c
->proto_version
, "s?d",
623 if (p9_is_proto_dotu(c
) && ecode
< 512)
627 err
= p9_errstr2errno(ename
, strlen(ename
));
629 p9_debug(P9_DEBUG_9P
, "<<< RERROR (%d) %s\n",
634 err
= p9pdu_readf(&req
->rc
, c
->proto_version
, "d", &ecode
);
637 p9_debug(P9_DEBUG_9P
, "<<< RLERROR (%d)\n", -ecode
);
642 p9_debug(P9_DEBUG_ERROR
, "couldn't parse error%d\n", err
);
646 static struct p9_req_t
*
647 p9_client_rpc(struct p9_client
*c
, int8_t type
, const char *fmt
, ...);
650 * p9_client_flush - flush (cancel) a request
652 * @oldreq: request to cancel
654 * This sents a flush for a particular request and links
655 * the flush request to the original request. The current
656 * code only supports a single flush request although the protocol
657 * allows for multiple flush requests to be sent for a single request.
661 static int p9_client_flush(struct p9_client
*c
, struct p9_req_t
*oldreq
)
663 struct p9_req_t
*req
;
667 err
= p9_parse_header(&oldreq
->tc
, NULL
, NULL
, &oldtag
, 1);
671 p9_debug(P9_DEBUG_9P
, ">>> TFLUSH tag %d\n", oldtag
);
673 req
= p9_client_rpc(c
, P9_TFLUSH
, "w", oldtag
);
678 * if we haven't received a response for oldreq,
679 * remove it from the list
681 if (oldreq
->status
== REQ_STATUS_SENT
) {
682 if (c
->trans_mod
->cancelled
)
683 c
->trans_mod
->cancelled(c
, oldreq
);
686 p9_tag_remove(c
, req
);
690 static struct p9_req_t
*p9_client_prepare_req(struct p9_client
*c
,
691 int8_t type
, int req_size
,
692 const char *fmt
, va_list ap
)
695 struct p9_req_t
*req
;
697 p9_debug(P9_DEBUG_MUX
, "client %p op %d\n", c
, type
);
699 /* we allow for any status other than disconnected */
700 if (c
->status
== Disconnected
)
701 return ERR_PTR(-EIO
);
703 /* if status is begin_disconnected we allow only clunk request */
704 if ((c
->status
== BeginDisconnect
) && (type
!= P9_TCLUNK
))
705 return ERR_PTR(-EIO
);
707 req
= p9_tag_alloc(c
, type
, req_size
);
711 /* marshall the data */
712 p9pdu_prepare(&req
->tc
, req
->tc
.tag
, type
);
713 err
= p9pdu_vwritef(&req
->tc
, c
->proto_version
, fmt
, ap
);
716 p9pdu_finalize(c
, &req
->tc
);
717 trace_9p_client_req(c
, type
, req
->tc
.tag
);
720 p9_tag_remove(c
, req
);
721 /* We have to put also the 2nd reference as it won't be used */
727 * p9_client_rpc - issue a request and wait for a response
729 * @type: type of request
730 * @fmt: protocol format string (see protocol.c)
732 * Returns request structure (which client must free using p9_tag_remove)
735 static struct p9_req_t
*
736 p9_client_rpc(struct p9_client
*c
, int8_t type
, const char *fmt
, ...)
741 struct p9_req_t
*req
;
744 req
= p9_client_prepare_req(c
, type
, c
->msize
, fmt
, ap
);
749 if (signal_pending(current
)) {
751 clear_thread_flag(TIF_SIGPENDING
);
755 err
= c
->trans_mod
->request(c
, req
);
757 /* write won't happen */
759 if (err
!= -ERESTARTSYS
&& err
!= -EFAULT
)
760 c
->status
= Disconnected
;
761 goto recalc_sigpending
;
764 /* Wait for the response */
765 err
= wait_event_killable(req
->wq
, req
->status
>= REQ_STATUS_RCVD
);
768 * Make sure our req is coherent with regard to updates in other
769 * threads - echoes to wmb() in the callback
773 if ((err
== -ERESTARTSYS
) && (c
->status
== Connected
)
774 && (type
== P9_TFLUSH
)) {
776 clear_thread_flag(TIF_SIGPENDING
);
780 if (req
->status
== REQ_STATUS_ERROR
) {
781 p9_debug(P9_DEBUG_ERROR
, "req_status error %d\n", req
->t_err
);
784 if ((err
== -ERESTARTSYS
) && (c
->status
== Connected
)) {
785 p9_debug(P9_DEBUG_MUX
, "flushing\n");
787 clear_thread_flag(TIF_SIGPENDING
);
789 if (c
->trans_mod
->cancel(c
, req
))
790 p9_client_flush(c
, req
);
792 /* if we received the response anyway, don't signal error */
793 if (req
->status
== REQ_STATUS_RCVD
)
798 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
800 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
805 err
= p9_check_errors(c
, req
);
806 trace_9p_client_res(c
, type
, req
->rc
.tag
, err
);
810 p9_tag_remove(c
, req
);
811 return ERR_PTR(safe_errno(err
));
815 * p9_client_zc_rpc - issue a request and wait for a response
817 * @type: type of request
818 * @uidata: destination for zero copy read
819 * @uodata: source for zero copy write
820 * @inlen: read buffer size
821 * @olen: write buffer size
822 * @hdrlen: reader header size, This is the size of response protocol data
823 * @fmt: protocol format string (see protocol.c)
825 * Returns request structure (which client must free using p9_tag_remove)
827 static struct p9_req_t
*p9_client_zc_rpc(struct p9_client
*c
, int8_t type
,
828 struct iov_iter
*uidata
,
829 struct iov_iter
*uodata
,
830 int inlen
, int olen
, int in_hdrlen
,
831 const char *fmt
, ...)
836 struct p9_req_t
*req
;
840 * We allocate a inline protocol data of only 4k bytes.
841 * The actual content is passed in zero-copy fashion.
843 req
= p9_client_prepare_req(c
, type
, P9_ZC_HDR_SZ
, fmt
, ap
);
848 if (signal_pending(current
)) {
850 clear_thread_flag(TIF_SIGPENDING
);
854 err
= c
->trans_mod
->zc_request(c
, req
, uidata
, uodata
,
855 inlen
, olen
, in_hdrlen
);
858 c
->status
= Disconnected
;
859 if (err
!= -ERESTARTSYS
)
860 goto recalc_sigpending
;
862 if (req
->status
== REQ_STATUS_ERROR
) {
863 p9_debug(P9_DEBUG_ERROR
, "req_status error %d\n", req
->t_err
);
866 if ((err
== -ERESTARTSYS
) && (c
->status
== Connected
)) {
867 p9_debug(P9_DEBUG_MUX
, "flushing\n");
869 clear_thread_flag(TIF_SIGPENDING
);
871 if (c
->trans_mod
->cancel(c
, req
))
872 p9_client_flush(c
, req
);
874 /* if we received the response anyway, don't signal error */
875 if (req
->status
== REQ_STATUS_RCVD
)
880 spin_lock_irqsave(¤t
->sighand
->siglock
, flags
);
882 spin_unlock_irqrestore(¤t
->sighand
->siglock
, flags
);
887 err
= p9_check_zc_errors(c
, req
, uidata
, in_hdrlen
);
888 trace_9p_client_res(c
, type
, req
->rc
.tag
, err
);
892 p9_tag_remove(c
, req
);
893 return ERR_PTR(safe_errno(err
));
896 static struct p9_fid
*p9_fid_create(struct p9_client
*clnt
)
901 p9_debug(P9_DEBUG_FID
, "clnt %p\n", clnt
);
902 fid
= kmalloc(sizeof(struct p9_fid
), GFP_KERNEL
);
906 memset(&fid
->qid
, 0, sizeof(struct p9_qid
));
908 fid
->uid
= current_fsuid();
913 idr_preload(GFP_KERNEL
);
914 spin_lock_irq(&clnt
->lock
);
915 ret
= idr_alloc_u32(&clnt
->fids
, fid
, &fid
->fid
, P9_NOFID
- 1,
917 spin_unlock_irq(&clnt
->lock
);
927 static void p9_fid_destroy(struct p9_fid
*fid
)
929 struct p9_client
*clnt
;
932 p9_debug(P9_DEBUG_FID
, "fid %d\n", fid
->fid
);
934 spin_lock_irqsave(&clnt
->lock
, flags
);
935 idr_remove(&clnt
->fids
, fid
->fid
);
936 spin_unlock_irqrestore(&clnt
->lock
, flags
);
941 static int p9_client_version(struct p9_client
*c
)
944 struct p9_req_t
*req
;
945 char *version
= NULL
;
948 p9_debug(P9_DEBUG_9P
, ">>> TVERSION msize %d protocol %d\n",
949 c
->msize
, c
->proto_version
);
951 switch (c
->proto_version
) {
953 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
954 c
->msize
, "9P2000.L");
957 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
958 c
->msize
, "9P2000.u");
960 case p9_proto_legacy
:
961 req
= p9_client_rpc(c
, P9_TVERSION
, "ds",
971 err
= p9pdu_readf(&req
->rc
, c
->proto_version
, "ds", &msize
, &version
);
973 p9_debug(P9_DEBUG_9P
, "version error %d\n", err
);
974 trace_9p_protocol_dump(c
, &req
->rc
);
978 p9_debug(P9_DEBUG_9P
, "<<< RVERSION msize %d %s\n", msize
, version
);
979 if (!strncmp(version
, "9P2000.L", 8))
980 c
->proto_version
= p9_proto_2000L
;
981 else if (!strncmp(version
, "9P2000.u", 8))
982 c
->proto_version
= p9_proto_2000u
;
983 else if (!strncmp(version
, "9P2000", 6))
984 c
->proto_version
= p9_proto_legacy
;
990 if (msize
< c
->msize
)
995 p9_tag_remove(c
, req
);
1000 struct p9_client
*p9_client_create(const char *dev_name
, char *options
)
1003 struct p9_client
*clnt
;
1007 clnt
= kmalloc(sizeof(struct p9_client
), GFP_KERNEL
);
1009 return ERR_PTR(-ENOMEM
);
1011 clnt
->trans_mod
= NULL
;
1013 clnt
->fcall_cache
= NULL
;
1015 client_id
= utsname()->nodename
;
1016 memcpy(clnt
->name
, client_id
, strlen(client_id
) + 1);
1018 spin_lock_init(&clnt
->lock
);
1019 idr_init(&clnt
->fids
);
1020 idr_init(&clnt
->reqs
);
1022 err
= parse_opts(options
, clnt
);
1026 if (!clnt
->trans_mod
)
1027 clnt
->trans_mod
= v9fs_get_default_trans();
1029 if (clnt
->trans_mod
== NULL
) {
1030 err
= -EPROTONOSUPPORT
;
1031 p9_debug(P9_DEBUG_ERROR
,
1032 "No transport defined or default transport\n");
1036 p9_debug(P9_DEBUG_MUX
, "clnt %p trans %p msize %d protocol %d\n",
1037 clnt
, clnt
->trans_mod
, clnt
->msize
, clnt
->proto_version
);
1039 err
= clnt
->trans_mod
->create(clnt
, dev_name
, options
);
1043 if (clnt
->msize
> clnt
->trans_mod
->maxsize
)
1044 clnt
->msize
= clnt
->trans_mod
->maxsize
;
1046 err
= p9_client_version(clnt
);
1050 /* P9_HDRSZ + 4 is the smallest packet header we can have that is
1051 * followed by data accessed from userspace by read
1054 kmem_cache_create_usercopy("9p-fcall-cache", clnt
->msize
,
1056 clnt
->msize
- (P9_HDRSZ
+ 4),
1062 clnt
->trans_mod
->close(clnt
);
1064 v9fs_put_trans(clnt
->trans_mod
);
1067 return ERR_PTR(err
);
1069 EXPORT_SYMBOL(p9_client_create
);
1071 void p9_client_destroy(struct p9_client
*clnt
)
1076 p9_debug(P9_DEBUG_MUX
, "clnt %p\n", clnt
);
1078 if (clnt
->trans_mod
)
1079 clnt
->trans_mod
->close(clnt
);
1081 v9fs_put_trans(clnt
->trans_mod
);
1083 idr_for_each_entry(&clnt
->fids
, fid
, id
) {
1084 pr_info("Found fid %d not clunked\n", fid
->fid
);
1085 p9_fid_destroy(fid
);
1088 p9_tag_cleanup(clnt
);
1090 kmem_cache_destroy(clnt
->fcall_cache
);
1093 EXPORT_SYMBOL(p9_client_destroy
);
1095 void p9_client_disconnect(struct p9_client
*clnt
)
1097 p9_debug(P9_DEBUG_9P
, "clnt %p\n", clnt
);
1098 clnt
->status
= Disconnected
;
1100 EXPORT_SYMBOL(p9_client_disconnect
);
1102 void p9_client_begin_disconnect(struct p9_client
*clnt
)
1104 p9_debug(P9_DEBUG_9P
, "clnt %p\n", clnt
);
1105 clnt
->status
= BeginDisconnect
;
1107 EXPORT_SYMBOL(p9_client_begin_disconnect
);
1109 struct p9_fid
*p9_client_attach(struct p9_client
*clnt
, struct p9_fid
*afid
,
1110 const char *uname
, kuid_t n_uname
, const char *aname
)
1113 struct p9_req_t
*req
;
1118 p9_debug(P9_DEBUG_9P
, ">>> TATTACH afid %d uname %s aname %s\n",
1119 afid
? afid
->fid
: -1, uname
, aname
);
1120 fid
= p9_fid_create(clnt
);
1127 req
= p9_client_rpc(clnt
, P9_TATTACH
, "ddss?u", fid
->fid
,
1128 afid
? afid
->fid
: P9_NOFID
, uname
, aname
, n_uname
);
1134 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "Q", &qid
);
1136 trace_9p_protocol_dump(clnt
, &req
->rc
);
1137 p9_tag_remove(clnt
, req
);
1141 p9_debug(P9_DEBUG_9P
, "<<< RATTACH qid %x.%llx.%x\n",
1142 qid
.type
, (unsigned long long)qid
.path
, qid
.version
);
1144 memmove(&fid
->qid
, &qid
, sizeof(struct p9_qid
));
1146 p9_tag_remove(clnt
, req
);
1151 p9_fid_destroy(fid
);
1152 return ERR_PTR(err
);
1154 EXPORT_SYMBOL(p9_client_attach
);
1156 struct p9_fid
*p9_client_walk(struct p9_fid
*oldfid
, uint16_t nwname
,
1157 const unsigned char * const *wnames
, int clone
)
1160 struct p9_client
*clnt
;
1162 struct p9_qid
*wqids
;
1163 struct p9_req_t
*req
;
1164 uint16_t nwqids
, count
;
1168 clnt
= oldfid
->clnt
;
1170 fid
= p9_fid_create(clnt
);
1176 fid
->uid
= oldfid
->uid
;
1181 p9_debug(P9_DEBUG_9P
, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1182 oldfid
->fid
, fid
->fid
, nwname
, wnames
? wnames
[0] : NULL
);
1184 req
= p9_client_rpc(clnt
, P9_TWALK
, "ddT", oldfid
->fid
, fid
->fid
,
1191 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "R", &nwqids
, &wqids
);
1193 trace_9p_protocol_dump(clnt
, &req
->rc
);
1194 p9_tag_remove(clnt
, req
);
1197 p9_tag_remove(clnt
, req
);
1199 p9_debug(P9_DEBUG_9P
, "<<< RWALK nwqid %d:\n", nwqids
);
1201 if (nwqids
!= nwname
) {
1206 for (count
= 0; count
< nwqids
; count
++)
1207 p9_debug(P9_DEBUG_9P
, "<<< [%d] %x.%llx.%x\n",
1208 count
, wqids
[count
].type
,
1209 (unsigned long long)wqids
[count
].path
,
1210 wqids
[count
].version
);
1213 memmove(&fid
->qid
, &wqids
[nwqids
- 1], sizeof(struct p9_qid
));
1215 fid
->qid
= oldfid
->qid
;
1222 p9_client_clunk(fid
);
1226 if (fid
&& (fid
!= oldfid
))
1227 p9_fid_destroy(fid
);
1229 return ERR_PTR(err
);
1231 EXPORT_SYMBOL(p9_client_walk
);
1233 int p9_client_open(struct p9_fid
*fid
, int mode
)
1236 struct p9_client
*clnt
;
1237 struct p9_req_t
*req
;
1242 p9_debug(P9_DEBUG_9P
, ">>> %s fid %d mode %d\n",
1243 p9_is_proto_dotl(clnt
) ? "TLOPEN" : "TOPEN", fid
->fid
, mode
);
1246 if (fid
->mode
!= -1)
1249 if (p9_is_proto_dotl(clnt
))
1250 req
= p9_client_rpc(clnt
, P9_TLOPEN
, "dd", fid
->fid
, mode
);
1252 req
= p9_client_rpc(clnt
, P9_TOPEN
, "db", fid
->fid
, mode
);
1258 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "Qd", &qid
, &iounit
);
1260 trace_9p_protocol_dump(clnt
, &req
->rc
);
1261 goto free_and_error
;
1264 p9_debug(P9_DEBUG_9P
, "<<< %s qid %x.%llx.%x iounit %x\n",
1265 p9_is_proto_dotl(clnt
) ? "RLOPEN" : "ROPEN", qid
.type
,
1266 (unsigned long long)qid
.path
, qid
.version
, iounit
);
1269 fid
->iounit
= iounit
;
1272 p9_tag_remove(clnt
, req
);
1276 EXPORT_SYMBOL(p9_client_open
);
1278 int p9_client_create_dotl(struct p9_fid
*ofid
, const char *name
, u32 flags
, u32 mode
,
1279 kgid_t gid
, struct p9_qid
*qid
)
1282 struct p9_client
*clnt
;
1283 struct p9_req_t
*req
;
1286 p9_debug(P9_DEBUG_9P
,
1287 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1288 ofid
->fid
, name
, flags
, mode
,
1289 from_kgid(&init_user_ns
, gid
));
1292 if (ofid
->mode
!= -1)
1295 req
= p9_client_rpc(clnt
, P9_TLCREATE
, "dsddg", ofid
->fid
, name
, flags
,
1302 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "Qd", qid
, &iounit
);
1304 trace_9p_protocol_dump(clnt
, &req
->rc
);
1305 goto free_and_error
;
1308 p9_debug(P9_DEBUG_9P
, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1310 (unsigned long long)qid
->path
,
1311 qid
->version
, iounit
);
1314 ofid
->iounit
= iounit
;
1317 p9_tag_remove(clnt
, req
);
1321 EXPORT_SYMBOL(p9_client_create_dotl
);
1323 int p9_client_fcreate(struct p9_fid
*fid
, const char *name
, u32 perm
, int mode
,
1327 struct p9_client
*clnt
;
1328 struct p9_req_t
*req
;
1332 p9_debug(P9_DEBUG_9P
, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1333 fid
->fid
, name
, perm
, mode
);
1337 if (fid
->mode
!= -1)
1340 req
= p9_client_rpc(clnt
, P9_TCREATE
, "dsdb?s", fid
->fid
, name
, perm
,
1347 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "Qd", &qid
, &iounit
);
1349 trace_9p_protocol_dump(clnt
, &req
->rc
);
1350 goto free_and_error
;
1353 p9_debug(P9_DEBUG_9P
, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1355 (unsigned long long)qid
.path
,
1356 qid
.version
, iounit
);
1359 fid
->iounit
= iounit
;
1362 p9_tag_remove(clnt
, req
);
1366 EXPORT_SYMBOL(p9_client_fcreate
);
1368 int p9_client_symlink(struct p9_fid
*dfid
, const char *name
,
1369 const char *symtgt
, kgid_t gid
, struct p9_qid
*qid
)
1372 struct p9_client
*clnt
;
1373 struct p9_req_t
*req
;
1375 p9_debug(P9_DEBUG_9P
, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1376 dfid
->fid
, name
, symtgt
);
1379 req
= p9_client_rpc(clnt
, P9_TSYMLINK
, "dssg", dfid
->fid
, name
, symtgt
,
1386 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "Q", qid
);
1388 trace_9p_protocol_dump(clnt
, &req
->rc
);
1389 goto free_and_error
;
1392 p9_debug(P9_DEBUG_9P
, "<<< RSYMLINK qid %x.%llx.%x\n",
1393 qid
->type
, (unsigned long long)qid
->path
, qid
->version
);
1396 p9_tag_remove(clnt
, req
);
1400 EXPORT_SYMBOL(p9_client_symlink
);
1402 int p9_client_link(struct p9_fid
*dfid
, struct p9_fid
*oldfid
, const char *newname
)
1404 struct p9_client
*clnt
;
1405 struct p9_req_t
*req
;
1407 p9_debug(P9_DEBUG_9P
, ">>> TLINK dfid %d oldfid %d newname %s\n",
1408 dfid
->fid
, oldfid
->fid
, newname
);
1410 req
= p9_client_rpc(clnt
, P9_TLINK
, "dds", dfid
->fid
, oldfid
->fid
,
1413 return PTR_ERR(req
);
1415 p9_debug(P9_DEBUG_9P
, "<<< RLINK\n");
1416 p9_tag_remove(clnt
, req
);
1419 EXPORT_SYMBOL(p9_client_link
);
1421 int p9_client_fsync(struct p9_fid
*fid
, int datasync
)
1424 struct p9_client
*clnt
;
1425 struct p9_req_t
*req
;
1427 p9_debug(P9_DEBUG_9P
, ">>> TFSYNC fid %d datasync:%d\n",
1428 fid
->fid
, datasync
);
1432 req
= p9_client_rpc(clnt
, P9_TFSYNC
, "dd", fid
->fid
, datasync
);
1438 p9_debug(P9_DEBUG_9P
, "<<< RFSYNC fid %d\n", fid
->fid
);
1440 p9_tag_remove(clnt
, req
);
1445 EXPORT_SYMBOL(p9_client_fsync
);
1447 int p9_client_clunk(struct p9_fid
*fid
)
1450 struct p9_client
*clnt
;
1451 struct p9_req_t
*req
;
1455 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1456 __func__
, task_pid_nr(current
));
1462 p9_debug(P9_DEBUG_9P
, ">>> TCLUNK fid %d (try %d)\n", fid
->fid
,
1467 req
= p9_client_rpc(clnt
, P9_TCLUNK
, "d", fid
->fid
);
1473 p9_debug(P9_DEBUG_9P
, "<<< RCLUNK fid %d\n", fid
->fid
);
1475 p9_tag_remove(clnt
, req
);
1478 * Fid is not valid even after a failed clunk
1479 * If interrupted, retry once then give up and
1480 * leak fid until umount.
1482 if (err
== -ERESTARTSYS
) {
1486 p9_fid_destroy(fid
);
1489 EXPORT_SYMBOL(p9_client_clunk
);
1491 int p9_client_remove(struct p9_fid
*fid
)
1494 struct p9_client
*clnt
;
1495 struct p9_req_t
*req
;
1497 p9_debug(P9_DEBUG_9P
, ">>> TREMOVE fid %d\n", fid
->fid
);
1501 req
= p9_client_rpc(clnt
, P9_TREMOVE
, "d", fid
->fid
);
1507 p9_debug(P9_DEBUG_9P
, "<<< RREMOVE fid %d\n", fid
->fid
);
1509 p9_tag_remove(clnt
, req
);
1511 if (err
== -ERESTARTSYS
)
1512 p9_client_clunk(fid
);
1514 p9_fid_destroy(fid
);
1517 EXPORT_SYMBOL(p9_client_remove
);
1519 int p9_client_unlinkat(struct p9_fid
*dfid
, const char *name
, int flags
)
1522 struct p9_req_t
*req
;
1523 struct p9_client
*clnt
;
1525 p9_debug(P9_DEBUG_9P
, ">>> TUNLINKAT fid %d %s %d\n",
1526 dfid
->fid
, name
, flags
);
1529 req
= p9_client_rpc(clnt
, P9_TUNLINKAT
, "dsd", dfid
->fid
, name
, flags
);
1534 p9_debug(P9_DEBUG_9P
, "<<< RUNLINKAT fid %d %s\n", dfid
->fid
, name
);
1536 p9_tag_remove(clnt
, req
);
1540 EXPORT_SYMBOL(p9_client_unlinkat
);
1543 p9_client_read(struct p9_fid
*fid
, u64 offset
, struct iov_iter
*to
, int *err
)
1545 struct p9_client
*clnt
= fid
->clnt
;
1546 struct p9_req_t
*req
;
1550 p9_debug(P9_DEBUG_9P
, ">>> TREAD fid %d offset %llu %d\n",
1551 fid
->fid
, (unsigned long long) offset
, (int)iov_iter_count(to
));
1553 while (iov_iter_count(to
)) {
1554 int count
= iov_iter_count(to
);
1555 int rsize
, non_zc
= 0;
1558 rsize
= fid
->iounit
;
1559 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1560 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1565 /* Don't bother zerocopy for small IO (< 1024) */
1566 if (clnt
->trans_mod
->zc_request
&& rsize
> 1024) {
1568 * response header len is 11
1569 * PDU Header(7) + IO Size (4)
1571 req
= p9_client_zc_rpc(clnt
, P9_TREAD
, to
, NULL
, rsize
,
1572 0, 11, "dqd", fid
->fid
,
1576 req
= p9_client_rpc(clnt
, P9_TREAD
, "dqd", fid
->fid
, offset
,
1580 *err
= PTR_ERR(req
);
1584 *err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
,
1585 "D", &count
, &dataptr
);
1587 trace_9p_protocol_dump(clnt
, &req
->rc
);
1588 p9_tag_remove(clnt
, req
);
1591 if (rsize
< count
) {
1592 pr_err("bogus RREAD count (%d > %d)\n", count
, rsize
);
1596 p9_debug(P9_DEBUG_9P
, "<<< RREAD count %d\n", count
);
1598 p9_tag_remove(clnt
, req
);
1603 int n
= copy_to_iter(dataptr
, count
, to
);
1608 p9_tag_remove(clnt
, req
);
1612 iov_iter_advance(to
, count
);
1616 p9_tag_remove(clnt
, req
);
1620 EXPORT_SYMBOL(p9_client_read
);
1623 p9_client_write(struct p9_fid
*fid
, u64 offset
, struct iov_iter
*from
, int *err
)
1625 struct p9_client
*clnt
= fid
->clnt
;
1626 struct p9_req_t
*req
;
1630 p9_debug(P9_DEBUG_9P
, ">>> TWRITE fid %d offset %llu count %zd\n",
1631 fid
->fid
, (unsigned long long) offset
,
1632 iov_iter_count(from
));
1634 while (iov_iter_count(from
)) {
1635 int count
= iov_iter_count(from
);
1636 int rsize
= fid
->iounit
;
1637 if (!rsize
|| rsize
> clnt
->msize
-P9_IOHDRSZ
)
1638 rsize
= clnt
->msize
- P9_IOHDRSZ
;
1643 /* Don't bother zerocopy for small IO (< 1024) */
1644 if (clnt
->trans_mod
->zc_request
&& rsize
> 1024) {
1645 req
= p9_client_zc_rpc(clnt
, P9_TWRITE
, NULL
, from
, 0,
1646 rsize
, P9_ZC_HDR_SZ
, "dqd",
1647 fid
->fid
, offset
, rsize
);
1649 req
= p9_client_rpc(clnt
, P9_TWRITE
, "dqV", fid
->fid
,
1650 offset
, rsize
, from
);
1653 *err
= PTR_ERR(req
);
1657 *err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "d", &count
);
1659 trace_9p_protocol_dump(clnt
, &req
->rc
);
1660 p9_tag_remove(clnt
, req
);
1663 if (rsize
< count
) {
1664 pr_err("bogus RWRITE count (%d > %d)\n", count
, rsize
);
1668 p9_debug(P9_DEBUG_9P
, "<<< RWRITE count %d\n", count
);
1670 p9_tag_remove(clnt
, req
);
1671 iov_iter_advance(from
, count
);
1677 EXPORT_SYMBOL(p9_client_write
);
1679 struct p9_wstat
*p9_client_stat(struct p9_fid
*fid
)
1682 struct p9_client
*clnt
;
1683 struct p9_wstat
*ret
= kmalloc(sizeof(struct p9_wstat
), GFP_KERNEL
);
1684 struct p9_req_t
*req
;
1687 p9_debug(P9_DEBUG_9P
, ">>> TSTAT fid %d\n", fid
->fid
);
1690 return ERR_PTR(-ENOMEM
);
1695 req
= p9_client_rpc(clnt
, P9_TSTAT
, "d", fid
->fid
);
1701 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "wS", &ignored
, ret
);
1703 trace_9p_protocol_dump(clnt
, &req
->rc
);
1704 p9_tag_remove(clnt
, req
);
1708 p9_debug(P9_DEBUG_9P
,
1709 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1710 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1711 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1712 "<<< uid=%d gid=%d n_muid=%d\n",
1713 ret
->size
, ret
->type
, ret
->dev
, ret
->qid
.type
,
1714 (unsigned long long)ret
->qid
.path
, ret
->qid
.version
, ret
->mode
,
1715 ret
->atime
, ret
->mtime
, (unsigned long long)ret
->length
,
1716 ret
->name
, ret
->uid
, ret
->gid
, ret
->muid
, ret
->extension
,
1717 from_kuid(&init_user_ns
, ret
->n_uid
),
1718 from_kgid(&init_user_ns
, ret
->n_gid
),
1719 from_kuid(&init_user_ns
, ret
->n_muid
));
1721 p9_tag_remove(clnt
, req
);
1726 return ERR_PTR(err
);
1728 EXPORT_SYMBOL(p9_client_stat
);
1730 struct p9_stat_dotl
*p9_client_getattr_dotl(struct p9_fid
*fid
,
1734 struct p9_client
*clnt
;
1735 struct p9_stat_dotl
*ret
= kmalloc(sizeof(struct p9_stat_dotl
),
1737 struct p9_req_t
*req
;
1739 p9_debug(P9_DEBUG_9P
, ">>> TGETATTR fid %d, request_mask %lld\n",
1740 fid
->fid
, request_mask
);
1743 return ERR_PTR(-ENOMEM
);
1748 req
= p9_client_rpc(clnt
, P9_TGETATTR
, "dq", fid
->fid
, request_mask
);
1754 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "A", ret
);
1756 trace_9p_protocol_dump(clnt
, &req
->rc
);
1757 p9_tag_remove(clnt
, req
);
1761 p9_debug(P9_DEBUG_9P
,
1762 "<<< RGETATTR st_result_mask=%lld\n"
1763 "<<< qid=%x.%llx.%x\n"
1764 "<<< st_mode=%8.8x st_nlink=%llu\n"
1765 "<<< st_uid=%d st_gid=%d\n"
1766 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1767 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1768 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1769 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1770 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1771 "<<< st_gen=%lld st_data_version=%lld\n",
1772 ret
->st_result_mask
, ret
->qid
.type
, ret
->qid
.path
,
1773 ret
->qid
.version
, ret
->st_mode
, ret
->st_nlink
,
1774 from_kuid(&init_user_ns
, ret
->st_uid
),
1775 from_kgid(&init_user_ns
, ret
->st_gid
),
1776 ret
->st_rdev
, ret
->st_size
, ret
->st_blksize
,
1777 ret
->st_blocks
, ret
->st_atime_sec
, ret
->st_atime_nsec
,
1778 ret
->st_mtime_sec
, ret
->st_mtime_nsec
, ret
->st_ctime_sec
,
1779 ret
->st_ctime_nsec
, ret
->st_btime_sec
, ret
->st_btime_nsec
,
1780 ret
->st_gen
, ret
->st_data_version
);
1782 p9_tag_remove(clnt
, req
);
1787 return ERR_PTR(err
);
1789 EXPORT_SYMBOL(p9_client_getattr_dotl
);
1791 static int p9_client_statsize(struct p9_wstat
*wst
, int proto_version
)
1795 /* NOTE: size shouldn't include its own length */
1796 /* size[2] type[2] dev[4] qid[13] */
1797 /* mode[4] atime[4] mtime[4] length[8]*/
1798 /* name[s] uid[s] gid[s] muid[s] */
1799 ret
= 2+4+13+4+4+4+8+2+2+2+2;
1802 ret
+= strlen(wst
->name
);
1804 ret
+= strlen(wst
->uid
);
1806 ret
+= strlen(wst
->gid
);
1808 ret
+= strlen(wst
->muid
);
1810 if ((proto_version
== p9_proto_2000u
) ||
1811 (proto_version
== p9_proto_2000L
)) {
1812 ret
+= 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1814 ret
+= strlen(wst
->extension
);
1820 int p9_client_wstat(struct p9_fid
*fid
, struct p9_wstat
*wst
)
1823 struct p9_req_t
*req
;
1824 struct p9_client
*clnt
;
1828 wst
->size
= p9_client_statsize(wst
, clnt
->proto_version
);
1829 p9_debug(P9_DEBUG_9P
, ">>> TWSTAT fid %d\n", fid
->fid
);
1830 p9_debug(P9_DEBUG_9P
,
1831 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1832 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1833 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1834 " uid=%d gid=%d n_muid=%d\n",
1835 wst
->size
, wst
->type
, wst
->dev
, wst
->qid
.type
,
1836 (unsigned long long)wst
->qid
.path
, wst
->qid
.version
, wst
->mode
,
1837 wst
->atime
, wst
->mtime
, (unsigned long long)wst
->length
,
1838 wst
->name
, wst
->uid
, wst
->gid
, wst
->muid
, wst
->extension
,
1839 from_kuid(&init_user_ns
, wst
->n_uid
),
1840 from_kgid(&init_user_ns
, wst
->n_gid
),
1841 from_kuid(&init_user_ns
, wst
->n_muid
));
1843 req
= p9_client_rpc(clnt
, P9_TWSTAT
, "dwS", fid
->fid
, wst
->size
+2, wst
);
1849 p9_debug(P9_DEBUG_9P
, "<<< RWSTAT fid %d\n", fid
->fid
);
1851 p9_tag_remove(clnt
, req
);
1855 EXPORT_SYMBOL(p9_client_wstat
);
1857 int p9_client_setattr(struct p9_fid
*fid
, struct p9_iattr_dotl
*p9attr
)
1860 struct p9_req_t
*req
;
1861 struct p9_client
*clnt
;
1865 p9_debug(P9_DEBUG_9P
, ">>> TSETATTR fid %d\n", fid
->fid
);
1866 p9_debug(P9_DEBUG_9P
,
1867 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1868 " atime_sec=%lld atime_nsec=%lld\n"
1869 " mtime_sec=%lld mtime_nsec=%lld\n",
1870 p9attr
->valid
, p9attr
->mode
,
1871 from_kuid(&init_user_ns
, p9attr
->uid
),
1872 from_kgid(&init_user_ns
, p9attr
->gid
),
1873 p9attr
->size
, p9attr
->atime_sec
, p9attr
->atime_nsec
,
1874 p9attr
->mtime_sec
, p9attr
->mtime_nsec
);
1876 req
= p9_client_rpc(clnt
, P9_TSETATTR
, "dI", fid
->fid
, p9attr
);
1882 p9_debug(P9_DEBUG_9P
, "<<< RSETATTR fid %d\n", fid
->fid
);
1883 p9_tag_remove(clnt
, req
);
1887 EXPORT_SYMBOL(p9_client_setattr
);
1889 int p9_client_statfs(struct p9_fid
*fid
, struct p9_rstatfs
*sb
)
1892 struct p9_req_t
*req
;
1893 struct p9_client
*clnt
;
1898 p9_debug(P9_DEBUG_9P
, ">>> TSTATFS fid %d\n", fid
->fid
);
1900 req
= p9_client_rpc(clnt
, P9_TSTATFS
, "d", fid
->fid
);
1906 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "ddqqqqqqd", &sb
->type
,
1907 &sb
->bsize
, &sb
->blocks
, &sb
->bfree
, &sb
->bavail
,
1908 &sb
->files
, &sb
->ffree
, &sb
->fsid
, &sb
->namelen
);
1910 trace_9p_protocol_dump(clnt
, &req
->rc
);
1911 p9_tag_remove(clnt
, req
);
1915 p9_debug(P9_DEBUG_9P
, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
1916 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1917 "fsid %llu namelen %ld\n",
1918 fid
->fid
, (long unsigned int)sb
->type
, (long int)sb
->bsize
,
1919 sb
->blocks
, sb
->bfree
, sb
->bavail
, sb
->files
, sb
->ffree
,
1920 sb
->fsid
, (long int)sb
->namelen
);
1922 p9_tag_remove(clnt
, req
);
1926 EXPORT_SYMBOL(p9_client_statfs
);
1928 int p9_client_rename(struct p9_fid
*fid
,
1929 struct p9_fid
*newdirfid
, const char *name
)
1932 struct p9_req_t
*req
;
1933 struct p9_client
*clnt
;
1938 p9_debug(P9_DEBUG_9P
, ">>> TRENAME fid %d newdirfid %d name %s\n",
1939 fid
->fid
, newdirfid
->fid
, name
);
1941 req
= p9_client_rpc(clnt
, P9_TRENAME
, "dds", fid
->fid
,
1942 newdirfid
->fid
, name
);
1948 p9_debug(P9_DEBUG_9P
, "<<< RRENAME fid %d\n", fid
->fid
);
1950 p9_tag_remove(clnt
, req
);
1954 EXPORT_SYMBOL(p9_client_rename
);
1956 int p9_client_renameat(struct p9_fid
*olddirfid
, const char *old_name
,
1957 struct p9_fid
*newdirfid
, const char *new_name
)
1960 struct p9_req_t
*req
;
1961 struct p9_client
*clnt
;
1964 clnt
= olddirfid
->clnt
;
1966 p9_debug(P9_DEBUG_9P
, ">>> TRENAMEAT olddirfid %d old name %s"
1967 " newdirfid %d new name %s\n", olddirfid
->fid
, old_name
,
1968 newdirfid
->fid
, new_name
);
1970 req
= p9_client_rpc(clnt
, P9_TRENAMEAT
, "dsds", olddirfid
->fid
,
1971 old_name
, newdirfid
->fid
, new_name
);
1977 p9_debug(P9_DEBUG_9P
, "<<< RRENAMEAT newdirfid %d new name %s\n",
1978 newdirfid
->fid
, new_name
);
1980 p9_tag_remove(clnt
, req
);
1984 EXPORT_SYMBOL(p9_client_renameat
);
1987 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1989 struct p9_fid
*p9_client_xattrwalk(struct p9_fid
*file_fid
,
1990 const char *attr_name
, u64
*attr_size
)
1993 struct p9_req_t
*req
;
1994 struct p9_client
*clnt
;
1995 struct p9_fid
*attr_fid
;
1998 clnt
= file_fid
->clnt
;
1999 attr_fid
= p9_fid_create(clnt
);
2004 p9_debug(P9_DEBUG_9P
,
2005 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2006 file_fid
->fid
, attr_fid
->fid
, attr_name
);
2008 req
= p9_client_rpc(clnt
, P9_TXATTRWALK
, "dds",
2009 file_fid
->fid
, attr_fid
->fid
, attr_name
);
2014 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "q", attr_size
);
2016 trace_9p_protocol_dump(clnt
, &req
->rc
);
2017 p9_tag_remove(clnt
, req
);
2020 p9_tag_remove(clnt
, req
);
2021 p9_debug(P9_DEBUG_9P
, "<<< RXATTRWALK fid %d size %llu\n",
2022 attr_fid
->fid
, *attr_size
);
2025 p9_client_clunk(attr_fid
);
2028 if (attr_fid
&& (attr_fid
!= file_fid
))
2029 p9_fid_destroy(attr_fid
);
2031 return ERR_PTR(err
);
2033 EXPORT_SYMBOL_GPL(p9_client_xattrwalk
);
2035 int p9_client_xattrcreate(struct p9_fid
*fid
, const char *name
,
2036 u64 attr_size
, int flags
)
2039 struct p9_req_t
*req
;
2040 struct p9_client
*clnt
;
2042 p9_debug(P9_DEBUG_9P
,
2043 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2044 fid
->fid
, name
, (long long)attr_size
, flags
);
2047 req
= p9_client_rpc(clnt
, P9_TXATTRCREATE
, "dsqd",
2048 fid
->fid
, name
, attr_size
, flags
);
2053 p9_debug(P9_DEBUG_9P
, "<<< RXATTRCREATE fid %d\n", fid
->fid
);
2054 p9_tag_remove(clnt
, req
);
2058 EXPORT_SYMBOL_GPL(p9_client_xattrcreate
);
2060 int p9_client_readdir(struct p9_fid
*fid
, char *data
, u32 count
, u64 offset
)
2062 int err
, rsize
, non_zc
= 0;
2063 struct p9_client
*clnt
;
2064 struct p9_req_t
*req
;
2066 struct kvec kv
= {.iov_base
= data
, .iov_len
= count
};
2069 iov_iter_kvec(&to
, READ
, &kv
, 1, count
);
2071 p9_debug(P9_DEBUG_9P
, ">>> TREADDIR fid %d offset %llu count %d\n",
2072 fid
->fid
, (unsigned long long) offset
, count
);
2077 rsize
= fid
->iounit
;
2078 if (!rsize
|| rsize
> clnt
->msize
-P9_READDIRHDRSZ
)
2079 rsize
= clnt
->msize
- P9_READDIRHDRSZ
;
2084 /* Don't bother zerocopy for small IO (< 1024) */
2085 if (clnt
->trans_mod
->zc_request
&& rsize
> 1024) {
2087 * response header len is 11
2088 * PDU Header(7) + IO Size (4)
2090 req
= p9_client_zc_rpc(clnt
, P9_TREADDIR
, &to
, NULL
, rsize
, 0,
2091 11, "dqd", fid
->fid
, offset
, rsize
);
2094 req
= p9_client_rpc(clnt
, P9_TREADDIR
, "dqd", fid
->fid
,
2102 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "D", &count
, &dataptr
);
2104 trace_9p_protocol_dump(clnt
, &req
->rc
);
2105 goto free_and_error
;
2107 if (rsize
< count
) {
2108 pr_err("bogus RREADDIR count (%d > %d)\n", count
, rsize
);
2112 p9_debug(P9_DEBUG_9P
, "<<< RREADDIR count %d\n", count
);
2115 memmove(data
, dataptr
, count
);
2117 p9_tag_remove(clnt
, req
);
2121 p9_tag_remove(clnt
, req
);
2125 EXPORT_SYMBOL(p9_client_readdir
);
2127 int p9_client_mknod_dotl(struct p9_fid
*fid
, const char *name
, int mode
,
2128 dev_t rdev
, kgid_t gid
, struct p9_qid
*qid
)
2131 struct p9_client
*clnt
;
2132 struct p9_req_t
*req
;
2136 p9_debug(P9_DEBUG_9P
, ">>> TMKNOD fid %d name %s mode %d major %d "
2137 "minor %d\n", fid
->fid
, name
, mode
, MAJOR(rdev
), MINOR(rdev
));
2138 req
= p9_client_rpc(clnt
, P9_TMKNOD
, "dsdddg", fid
->fid
, name
, mode
,
2139 MAJOR(rdev
), MINOR(rdev
), gid
);
2141 return PTR_ERR(req
);
2143 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "Q", qid
);
2145 trace_9p_protocol_dump(clnt
, &req
->rc
);
2148 p9_debug(P9_DEBUG_9P
, "<<< RMKNOD qid %x.%llx.%x\n", qid
->type
,
2149 (unsigned long long)qid
->path
, qid
->version
);
2152 p9_tag_remove(clnt
, req
);
2156 EXPORT_SYMBOL(p9_client_mknod_dotl
);
2158 int p9_client_mkdir_dotl(struct p9_fid
*fid
, const char *name
, int mode
,
2159 kgid_t gid
, struct p9_qid
*qid
)
2162 struct p9_client
*clnt
;
2163 struct p9_req_t
*req
;
2167 p9_debug(P9_DEBUG_9P
, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2168 fid
->fid
, name
, mode
, from_kgid(&init_user_ns
, gid
));
2169 req
= p9_client_rpc(clnt
, P9_TMKDIR
, "dsdg", fid
->fid
, name
, mode
,
2172 return PTR_ERR(req
);
2174 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "Q", qid
);
2176 trace_9p_protocol_dump(clnt
, &req
->rc
);
2179 p9_debug(P9_DEBUG_9P
, "<<< RMKDIR qid %x.%llx.%x\n", qid
->type
,
2180 (unsigned long long)qid
->path
, qid
->version
);
2183 p9_tag_remove(clnt
, req
);
2187 EXPORT_SYMBOL(p9_client_mkdir_dotl
);
2189 int p9_client_lock_dotl(struct p9_fid
*fid
, struct p9_flock
*flock
, u8
*status
)
2192 struct p9_client
*clnt
;
2193 struct p9_req_t
*req
;
2197 p9_debug(P9_DEBUG_9P
, ">>> TLOCK fid %d type %i flags %d "
2198 "start %lld length %lld proc_id %d client_id %s\n",
2199 fid
->fid
, flock
->type
, flock
->flags
, flock
->start
,
2200 flock
->length
, flock
->proc_id
, flock
->client_id
);
2202 req
= p9_client_rpc(clnt
, P9_TLOCK
, "dbdqqds", fid
->fid
, flock
->type
,
2203 flock
->flags
, flock
->start
, flock
->length
,
2204 flock
->proc_id
, flock
->client_id
);
2207 return PTR_ERR(req
);
2209 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "b", status
);
2211 trace_9p_protocol_dump(clnt
, &req
->rc
);
2214 p9_debug(P9_DEBUG_9P
, "<<< RLOCK status %i\n", *status
);
2216 p9_tag_remove(clnt
, req
);
2220 EXPORT_SYMBOL(p9_client_lock_dotl
);
2222 int p9_client_getlock_dotl(struct p9_fid
*fid
, struct p9_getlock
*glock
)
2225 struct p9_client
*clnt
;
2226 struct p9_req_t
*req
;
2230 p9_debug(P9_DEBUG_9P
, ">>> TGETLOCK fid %d, type %i start %lld "
2231 "length %lld proc_id %d client_id %s\n", fid
->fid
, glock
->type
,
2232 glock
->start
, glock
->length
, glock
->proc_id
, glock
->client_id
);
2234 req
= p9_client_rpc(clnt
, P9_TGETLOCK
, "dbqqds", fid
->fid
, glock
->type
,
2235 glock
->start
, glock
->length
, glock
->proc_id
, glock
->client_id
);
2238 return PTR_ERR(req
);
2240 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "bqqds", &glock
->type
,
2241 &glock
->start
, &glock
->length
, &glock
->proc_id
,
2244 trace_9p_protocol_dump(clnt
, &req
->rc
);
2247 p9_debug(P9_DEBUG_9P
, "<<< RGETLOCK type %i start %lld length %lld "
2248 "proc_id %d client_id %s\n", glock
->type
, glock
->start
,
2249 glock
->length
, glock
->proc_id
, glock
->client_id
);
2251 p9_tag_remove(clnt
, req
);
2254 EXPORT_SYMBOL(p9_client_getlock_dotl
);
2256 int p9_client_readlink(struct p9_fid
*fid
, char **target
)
2259 struct p9_client
*clnt
;
2260 struct p9_req_t
*req
;
2264 p9_debug(P9_DEBUG_9P
, ">>> TREADLINK fid %d\n", fid
->fid
);
2266 req
= p9_client_rpc(clnt
, P9_TREADLINK
, "d", fid
->fid
);
2268 return PTR_ERR(req
);
2270 err
= p9pdu_readf(&req
->rc
, clnt
->proto_version
, "s", target
);
2272 trace_9p_protocol_dump(clnt
, &req
->rc
);
2275 p9_debug(P9_DEBUG_9P
, "<<< RREADLINK target %s\n", *target
);
2277 p9_tag_remove(clnt
, req
);
2280 EXPORT_SYMBOL(p9_client_readlink
);
2282 int __init
p9_client_init(void)
2284 p9_req_cache
= KMEM_CACHE(p9_req_t
, SLAB_TYPESAFE_BY_RCU
);
2285 return p9_req_cache
? 0 : -ENOMEM
;
2288 void __exit
p9_client_exit(void)
2290 kmem_cache_destroy(p9_req_cache
);