1 // SPDX-License-Identifier: GPL-2.0-only
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/module.h>
12 #include <linux/errno.h>
14 #include <linux/poll.h>
15 #include <linux/idr.h>
16 #include <linux/mutex.h>
17 #include <linux/slab.h>
18 #include <linux/sched/signal.h>
19 #include <linux/uaccess.h>
20 #include <linux/uio.h>
21 #include <net/9p/9p.h>
22 #include <linux/parser.h>
23 #include <linux/seq_file.h>
24 #include <net/9p/client.h>
25 #include <net/9p/transport.h>
28 #define CREATE_TRACE_POINTS
29 #include <trace/events/9p.h>
31 #define DEFAULT_MSIZE (128 * 1024)
33 /* Client Option Parsing (code inspired by NFS code)
34 * - a little lazy - parse all client options
45 static const match_table_t tokens = {
46 {Opt_msize, "msize=%u"},
47 {Opt_legacy, "noextend"},
48 {Opt_trans, "trans=%s"},
49 {Opt_version, "version=%s"},
53 inline int p9_is_proto_dotl(struct p9_client *clnt)
55 return clnt->proto_version == p9_proto_2000L;
57 EXPORT_SYMBOL(p9_is_proto_dotl);
59 inline int p9_is_proto_dotu(struct p9_client *clnt)
61 return clnt->proto_version == p9_proto_2000u;
63 EXPORT_SYMBOL(p9_is_proto_dotu);
65 int p9_show_client_options(struct seq_file *m, struct p9_client *clnt)
67 if (clnt->msize != DEFAULT_MSIZE)
68 seq_printf(m, ",msize=%u", clnt->msize);
69 seq_printf(m, ",trans=%s", clnt->trans_mod->name);
71 switch (clnt->proto_version) {
73 seq_puts(m, ",noextend");
76 seq_puts(m, ",version=9p2000.u");
83 if (clnt->trans_mod->show_options)
84 return clnt->trans_mod->show_options(m, clnt);
87 EXPORT_SYMBOL(p9_show_client_options);
89 /* Some error codes are taken directly from the server replies,
90 * make sure they are valid.
92 static int safe_errno(int err)
94 if (err > 0 || err < -MAX_ERRNO) {
95 p9_debug(P9_DEBUG_ERROR, "Invalid error code %d\n", err);
101 /* Interpret mount option for protocol version */
102 static int get_protocol_version(char *s)
104 int version = -EINVAL;
106 if (!strcmp(s, "9p2000")) {
107 version = p9_proto_legacy;
108 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
109 } else if (!strcmp(s, "9p2000.u")) {
110 version = p9_proto_2000u;
111 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
112 } else if (!strcmp(s, "9p2000.L")) {
113 version = p9_proto_2000L;
114 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
116 pr_info("Unknown protocol version %s\n", s);
123 * parse_opts - parse mount options into client structure
124 * @opts: options string passed from mount
125 * @clnt: existing v9fs client information
127 * Return 0 upon success, -ERRNO upon failure
130 static int parse_opts(char *opts, struct p9_client *clnt)
132 char *options, *tmp_options;
134 substring_t args[MAX_OPT_ARGS];
139 clnt->proto_version = p9_proto_2000L;
140 clnt->msize = DEFAULT_MSIZE;
145 tmp_options = kstrdup(opts, GFP_KERNEL);
148 options = tmp_options;
150 while ((p = strsep(&options, ",")) != NULL) {
155 token = match_token(p, tokens, args);
158 r = match_int(&args[0], &option);
160 p9_debug(P9_DEBUG_ERROR,
161 "integer field, but no integer?\n");
166 p9_debug(P9_DEBUG_ERROR,
167 "msize should be at least 4k\n");
171 clnt->msize = option;
174 s = match_strdup(&args[0]);
177 p9_debug(P9_DEBUG_ERROR,
178 "problem allocating copy of trans arg\n");
179 goto free_and_return;
182 v9fs_put_trans(clnt->trans_mod);
183 clnt->trans_mod = v9fs_get_trans_by_name(s);
184 if (!clnt->trans_mod) {
185 pr_info("Could not find request transport: %s\n",
192 clnt->proto_version = p9_proto_legacy;
195 s = match_strdup(&args[0]);
198 p9_debug(P9_DEBUG_ERROR,
199 "problem allocating copy of version arg\n");
200 goto free_and_return;
202 r = get_protocol_version(s);
206 clnt->proto_version = r;
216 v9fs_put_trans(clnt->trans_mod);
221 static int p9_fcall_init(struct p9_client *c, struct p9_fcall *fc,
224 if (likely(c->fcall_cache) && alloc_msize == c->msize) {
225 fc->sdata = kmem_cache_alloc(c->fcall_cache, GFP_NOFS);
226 fc->cache = c->fcall_cache;
228 fc->sdata = kmalloc(alloc_msize, GFP_NOFS);
233 fc->capacity = alloc_msize;
237 void p9_fcall_fini(struct p9_fcall *fc)
239 /* sdata can be NULL for interrupted requests in trans_rdma,
240 * and kmem_cache_free does not do NULL-check for us
242 if (unlikely(!fc->sdata))
246 kmem_cache_free(fc->cache, fc->sdata);
250 EXPORT_SYMBOL(p9_fcall_fini);
252 static struct kmem_cache *p9_req_cache;
255 * p9_tag_alloc - Allocate a new request.
256 * @c: Client session.
257 * @type: Transaction type.
258 * @t_size: Buffer size for holding this request
259 * (automatic calculation by format template if 0).
260 * @r_size: Buffer size for holding server's reply on this request
261 * (automatic calculation by format template if 0).
262 * @fmt: Format template for assembling 9p request message
263 * (see p9pdu_vwritef).
264 * @ap: Variable arguments to be fed to passed format template
265 * (see p9pdu_vwritef).
267 * Context: Process context.
268 * Return: Pointer to new request.
270 static struct p9_req_t *
271 p9_tag_alloc(struct p9_client *c, int8_t type, uint t_size, uint r_size,
272 const char *fmt, va_list ap)
274 struct p9_req_t *req = kmem_cache_alloc(p9_req_cache, GFP_NOFS);
281 alloc_tsize = min_t(size_t, c->msize,
282 t_size ?: p9_msg_buf_size(c, type, fmt, apc));
285 alloc_rsize = min_t(size_t, c->msize,
286 r_size ?: p9_msg_buf_size(c, type + 1, fmt, ap));
289 return ERR_PTR(-ENOMEM);
291 if (p9_fcall_init(c, &req->tc, alloc_tsize))
293 if (p9_fcall_init(c, &req->rc, alloc_rsize))
296 p9pdu_reset(&req->tc);
297 p9pdu_reset(&req->rc);
299 req->status = REQ_STATUS_ALLOC;
300 /* refcount needs to be set to 0 before inserting into the idr
301 * so p9_tag_lookup does not accept a request that is not fully
302 * initialized. refcount_set to 2 below will mark request ready.
304 refcount_set(&req->refcount, 0);
305 init_waitqueue_head(&req->wq);
306 INIT_LIST_HEAD(&req->req_list);
308 idr_preload(GFP_NOFS);
309 spin_lock_irq(&c->lock);
310 if (type == P9_TVERSION)
311 tag = idr_alloc(&c->reqs, req, P9_NOTAG, P9_NOTAG + 1,
314 tag = idr_alloc(&c->reqs, req, 0, P9_NOTAG, GFP_NOWAIT);
316 spin_unlock_irq(&c->lock);
321 /* Init ref to two because in the general case there is one ref
322 * that is put asynchronously by a writer thread, one ref
323 * temporarily given by p9_tag_lookup and put by p9_client_cb
324 * in the recv thread, and one ref put by p9_req_put in the
325 * main thread. The only exception is virtio that does not use
326 * p9_tag_lookup but does not have a writer thread either
327 * (the write happens synchronously in the request/zc_request
328 * callback), so p9_client_cb eats the second ref there
329 * as the pointer is duplicated directly by virtqueue_add_sgs()
331 refcount_set(&req->refcount, 2);
336 p9_fcall_fini(&req->tc);
337 p9_fcall_fini(&req->rc);
339 kmem_cache_free(p9_req_cache, req);
340 return ERR_PTR(-ENOMEM);
344 * p9_tag_lookup - Look up a request by tag.
345 * @c: Client session.
346 * @tag: Transaction ID.
348 * Context: Any context.
349 * Return: A request, or %NULL if there is no request with that tag.
351 struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
353 struct p9_req_t *req;
357 req = idr_find(&c->reqs, tag);
359 /* We have to be careful with the req found under rcu_read_lock
360 * Thanks to SLAB_TYPESAFE_BY_RCU we can safely try to get the
361 * ref again without corrupting other data, then check again
362 * that the tag matches once we have the ref
364 if (!p9_req_try_get(req))
366 if (req->tc.tag != tag) {
375 EXPORT_SYMBOL(p9_tag_lookup);
378 * p9_tag_remove - Remove a tag.
379 * @c: Client session.
380 * @r: Request of reference.
382 * Context: Any context.
384 static void p9_tag_remove(struct p9_client *c, struct p9_req_t *r)
389 p9_debug(P9_DEBUG_MUX, "freeing clnt %p req %p tag: %d\n", c, r, tag);
390 spin_lock_irqsave(&c->lock, flags);
391 idr_remove(&c->reqs, tag);
392 spin_unlock_irqrestore(&c->lock, flags);
395 int p9_req_put(struct p9_client *c, struct p9_req_t *r)
397 if (refcount_dec_and_test(&r->refcount)) {
400 p9_fcall_fini(&r->tc);
401 p9_fcall_fini(&r->rc);
402 kmem_cache_free(p9_req_cache, r);
407 EXPORT_SYMBOL(p9_req_put);
410 * p9_tag_cleanup - cleans up tags structure and reclaims resources
411 * @c: v9fs client struct
413 * This frees resources associated with the tags structure
416 static void p9_tag_cleanup(struct p9_client *c)
418 struct p9_req_t *req;
422 idr_for_each_entry(&c->reqs, req, id) {
423 pr_info("Tag %d still in use\n", id);
424 if (p9_req_put(c, req) == 0)
425 pr_warn("Packet with tag %d has still references",
432 * p9_client_cb - call back from transport to client
434 * @req: request received
435 * @status: request status, one of REQ_STATUS_*
438 void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
440 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc.tag);
442 /* This barrier is needed to make sure any change made to req before
443 * the status change is visible to another thread
446 WRITE_ONCE(req->status, status);
449 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc.tag);
452 EXPORT_SYMBOL(p9_client_cb);
455 * p9_parse_header - parse header arguments out of a packet
456 * @pdu: packet to parse
457 * @size: size of packet
458 * @type: type of request
459 * @tag: tag of packet
460 * @rewind: set if we need to rewind offset afterwards
464 p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type,
465 int16_t *tag, int rewind)
470 int offset = pdu->offset;
475 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
477 goto rewind_and_exit;
486 if (pdu->size != r_size || r_size < 7) {
488 goto rewind_and_exit;
494 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
495 pdu->size, pdu->id, pdu->tag);
499 pdu->offset = offset;
502 EXPORT_SYMBOL(p9_parse_header);
505 * p9_check_errors - check 9p packet for error return and process it
506 * @c: current client instance
507 * @req: request to parse and check for error conditions
509 * returns error code if one is discovered, otherwise returns 0
511 * this will have to be more complicated if we have multiple
515 static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
521 err = p9_parse_header(&req->rc, NULL, &type, NULL, 0);
522 if (req->rc.size > req->rc.capacity && !req->rc.zc) {
523 pr_err("requested packet size too big: %d does not fit %zu (type=%d)\n",
524 req->rc.size, req->rc.capacity, req->rc.id);
527 /* dump the response from server
528 * This should be after check errors which poplulate pdu_fcall.
530 trace_9p_protocol_dump(c, &req->rc);
532 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
535 if (type != P9_RERROR && type != P9_RLERROR)
538 if (!p9_is_proto_dotl(c)) {
541 err = p9pdu_readf(&req->rc, c->proto_version, "s?d",
546 if (p9_is_proto_dotu(c) && ecode < 512)
550 err = p9_errstr2errno(ename, strlen(ename));
552 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
557 err = p9pdu_readf(&req->rc, c->proto_version, "d", &ecode);
562 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
568 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
573 static struct p9_req_t *
574 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
577 * p9_client_flush - flush (cancel) a request
579 * @oldreq: request to cancel
581 * This sents a flush for a particular request and links
582 * the flush request to the original request. The current
583 * code only supports a single flush request although the protocol
584 * allows for multiple flush requests to be sent for a single request.
588 static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
590 struct p9_req_t *req;
594 err = p9_parse_header(&oldreq->tc, NULL, NULL, &oldtag, 1);
598 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
600 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
604 /* if we haven't received a response for oldreq,
605 * remove it from the list
607 if (READ_ONCE(oldreq->status) == REQ_STATUS_SENT) {
608 if (c->trans_mod->cancelled)
609 c->trans_mod->cancelled(c, oldreq);
616 static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
617 int8_t type, uint t_size, uint r_size,
618 const char *fmt, va_list ap)
621 struct p9_req_t *req;
624 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
626 /* we allow for any status other than disconnected */
627 if (c->status == Disconnected)
628 return ERR_PTR(-EIO);
630 /* if status is begin_disconnected we allow only clunk request */
631 if (c->status == BeginDisconnect && type != P9_TCLUNK)
632 return ERR_PTR(-EIO);
635 req = p9_tag_alloc(c, type, t_size, r_size, fmt, apc);
640 /* marshall the data */
641 p9pdu_prepare(&req->tc, req->tc.tag, type);
642 err = p9pdu_vwritef(&req->tc, c->proto_version, fmt, ap);
645 p9pdu_finalize(c, &req->tc);
646 trace_9p_client_req(c, type, req->tc.tag);
650 /* We have to put also the 2nd reference as it won't be used */
656 * p9_client_rpc - issue a request and wait for a response
658 * @type: type of request
659 * @fmt: protocol format string (see protocol.c)
661 * Returns request structure (which client must free using p9_req_put)
664 static struct p9_req_t *
665 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
670 struct p9_req_t *req;
671 /* Passing zero for tsize/rsize to p9_client_prepare_req() tells it to
672 * auto determine an appropriate (small) request/response size
673 * according to actual message data being sent. Currently RDMA
674 * transport is excluded from this response message size optimization,
675 * as it would not cope with it, due to its pooled response buffers
676 * (using an optimized request size for RDMA as well though).
678 const uint tsize = 0;
679 const uint rsize = c->trans_mod->pooled_rbuffers ? c->msize : 0;
682 req = p9_client_prepare_req(c, type, tsize, rsize, fmt, ap);
690 if (signal_pending(current)) {
692 clear_thread_flag(TIF_SIGPENDING);
697 err = c->trans_mod->request(c, req);
699 /* write won't happen */
701 if (err != -ERESTARTSYS && err != -EFAULT)
702 c->status = Disconnected;
703 goto recalc_sigpending;
706 /* Wait for the response */
707 err = wait_event_killable(req->wq,
708 READ_ONCE(req->status) >= REQ_STATUS_RCVD);
710 /* Make sure our req is coherent with regard to updates in other
711 * threads - echoes to wmb() in the callback
715 if (err == -ERESTARTSYS && c->status == Connected &&
718 clear_thread_flag(TIF_SIGPENDING);
722 if (READ_ONCE(req->status) == REQ_STATUS_ERROR) {
723 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
726 if (err == -ERESTARTSYS && c->status == Connected) {
727 p9_debug(P9_DEBUG_MUX, "flushing\n");
729 clear_thread_flag(TIF_SIGPENDING);
731 if (c->trans_mod->cancel(c, req))
732 p9_client_flush(c, req);
734 /* if we received the response anyway, don't signal error */
735 if (READ_ONCE(req->status) == REQ_STATUS_RCVD)
740 spin_lock_irqsave(¤t->sighand->siglock, flags);
742 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
747 err = p9_check_errors(c, req);
748 trace_9p_client_res(c, type, req->rc.tag, err);
753 return ERR_PTR(safe_errno(err));
757 * p9_client_zc_rpc - issue a request and wait for a response
759 * @type: type of request
760 * @uidata: destination for zero copy read
761 * @uodata: source for zero copy write
762 * @inlen: read buffer size
763 * @olen: write buffer size
764 * @in_hdrlen: reader header size, This is the size of response protocol data
765 * @fmt: protocol format string (see protocol.c)
767 * Returns request structure (which client must free using p9_req_put)
769 static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
770 struct iov_iter *uidata,
771 struct iov_iter *uodata,
772 int inlen, int olen, int in_hdrlen,
773 const char *fmt, ...)
778 struct p9_req_t *req;
781 /* We allocate a inline protocol data of only 4k bytes.
782 * The actual content is passed in zero-copy fashion.
784 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, P9_ZC_HDR_SZ, fmt, ap);
792 if (signal_pending(current)) {
794 clear_thread_flag(TIF_SIGPENDING);
799 err = c->trans_mod->zc_request(c, req, uidata, uodata,
800 inlen, olen, in_hdrlen);
803 c->status = Disconnected;
804 if (err != -ERESTARTSYS)
805 goto recalc_sigpending;
807 if (READ_ONCE(req->status) == REQ_STATUS_ERROR) {
808 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
811 if (err == -ERESTARTSYS && c->status == Connected) {
812 p9_debug(P9_DEBUG_MUX, "flushing\n");
814 clear_thread_flag(TIF_SIGPENDING);
816 if (c->trans_mod->cancel(c, req))
817 p9_client_flush(c, req);
819 /* if we received the response anyway, don't signal error */
820 if (READ_ONCE(req->status) == REQ_STATUS_RCVD)
825 spin_lock_irqsave(¤t->sighand->siglock, flags);
827 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
832 err = p9_check_errors(c, req);
833 trace_9p_client_res(c, type, req->rc.tag, err);
838 return ERR_PTR(safe_errno(err));
841 static struct p9_fid *p9_fid_create(struct p9_client *clnt)
846 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
847 fid = kzalloc(sizeof(*fid), GFP_KERNEL);
852 fid->uid = current_fsuid();
854 refcount_set(&fid->count, 1);
856 idr_preload(GFP_KERNEL);
857 spin_lock_irq(&clnt->lock);
858 ret = idr_alloc_u32(&clnt->fids, fid, &fid->fid, P9_NOFID - 1,
860 spin_unlock_irq(&clnt->lock);
863 trace_9p_fid_ref(fid, P9_FID_REF_CREATE);
871 static void p9_fid_destroy(struct p9_fid *fid)
873 struct p9_client *clnt;
876 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
877 trace_9p_fid_ref(fid, P9_FID_REF_DESTROY);
879 spin_lock_irqsave(&clnt->lock, flags);
880 idr_remove(&clnt->fids, fid->fid);
881 spin_unlock_irqrestore(&clnt->lock, flags);
886 /* We also need to export tracepoint symbols for tracepoint_enabled() */
887 EXPORT_TRACEPOINT_SYMBOL(9p_fid_ref);
889 void do_trace_9p_fid_get(struct p9_fid *fid)
891 trace_9p_fid_ref(fid, P9_FID_REF_GET);
893 EXPORT_SYMBOL(do_trace_9p_fid_get);
895 void do_trace_9p_fid_put(struct p9_fid *fid)
897 trace_9p_fid_ref(fid, P9_FID_REF_PUT);
899 EXPORT_SYMBOL(do_trace_9p_fid_put);
901 static int p9_client_version(struct p9_client *c)
904 struct p9_req_t *req;
905 char *version = NULL;
908 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
909 c->msize, c->proto_version);
911 switch (c->proto_version) {
913 req = p9_client_rpc(c, P9_TVERSION, "ds",
914 c->msize, "9P2000.L");
917 req = p9_client_rpc(c, P9_TVERSION, "ds",
918 c->msize, "9P2000.u");
920 case p9_proto_legacy:
921 req = p9_client_rpc(c, P9_TVERSION, "ds",
931 err = p9pdu_readf(&req->rc, c->proto_version, "ds", &msize, &version);
933 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
934 trace_9p_protocol_dump(c, &req->rc);
938 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
939 if (!strncmp(version, "9P2000.L", 8)) {
940 c->proto_version = p9_proto_2000L;
941 } else if (!strncmp(version, "9P2000.u", 8)) {
942 c->proto_version = p9_proto_2000u;
943 } else if (!strncmp(version, "9P2000", 6)) {
944 c->proto_version = p9_proto_legacy;
946 p9_debug(P9_DEBUG_ERROR,
947 "server returned an unknown version: %s\n", version);
953 p9_debug(P9_DEBUG_ERROR,
954 "server returned a msize < 4096: %d\n", msize);
958 if (msize < c->msize)
968 struct p9_client *p9_client_create(const char *dev_name, char *options)
971 struct p9_client *clnt;
975 clnt = kmalloc(sizeof(*clnt), GFP_KERNEL);
977 return ERR_PTR(-ENOMEM);
979 clnt->trans_mod = NULL;
981 clnt->fcall_cache = NULL;
983 client_id = utsname()->nodename;
984 memcpy(clnt->name, client_id, strlen(client_id) + 1);
986 spin_lock_init(&clnt->lock);
987 idr_init(&clnt->fids);
988 idr_init(&clnt->reqs);
990 err = parse_opts(options, clnt);
994 if (!clnt->trans_mod)
995 clnt->trans_mod = v9fs_get_default_trans();
997 if (!clnt->trans_mod) {
998 err = -EPROTONOSUPPORT;
999 p9_debug(P9_DEBUG_ERROR,
1000 "No transport defined or default transport\n");
1004 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1005 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
1007 err = clnt->trans_mod->create(clnt, dev_name, options);
1011 if (clnt->msize > clnt->trans_mod->maxsize) {
1012 clnt->msize = clnt->trans_mod->maxsize;
1013 pr_info("Limiting 'msize' to %d as this is the maximum "
1014 "supported by transport %s\n",
1015 clnt->msize, clnt->trans_mod->name
1019 if (clnt->msize < 4096) {
1020 p9_debug(P9_DEBUG_ERROR,
1021 "Please specify a msize of at least 4k\n");
1026 err = p9_client_version(clnt);
1030 /* P9_HDRSZ + 4 is the smallest packet header we can have that is
1031 * followed by data accessed from userspace by read
1034 kmem_cache_create_usercopy("9p-fcall-cache", clnt->msize,
1036 clnt->msize - (P9_HDRSZ + 4),
1042 clnt->trans_mod->close(clnt);
1044 v9fs_put_trans(clnt->trans_mod);
1047 return ERR_PTR(err);
1049 EXPORT_SYMBOL(p9_client_create);
1051 void p9_client_destroy(struct p9_client *clnt)
1056 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
1058 if (clnt->trans_mod)
1059 clnt->trans_mod->close(clnt);
1061 v9fs_put_trans(clnt->trans_mod);
1063 idr_for_each_entry(&clnt->fids, fid, id) {
1064 pr_info("Found fid %d not clunked\n", fid->fid);
1065 p9_fid_destroy(fid);
1068 p9_tag_cleanup(clnt);
1070 kmem_cache_destroy(clnt->fcall_cache);
1073 EXPORT_SYMBOL(p9_client_destroy);
1075 void p9_client_disconnect(struct p9_client *clnt)
1077 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1078 clnt->status = Disconnected;
1080 EXPORT_SYMBOL(p9_client_disconnect);
1082 void p9_client_begin_disconnect(struct p9_client *clnt)
1084 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1085 clnt->status = BeginDisconnect;
1087 EXPORT_SYMBOL(p9_client_begin_disconnect);
1089 struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
1090 const char *uname, kuid_t n_uname,
1094 struct p9_req_t *req;
1098 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1099 afid ? afid->fid : -1, uname, aname);
1100 fid = p9_fid_create(clnt);
1107 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
1108 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1114 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", &qid);
1116 trace_9p_protocol_dump(clnt, &req->rc);
1117 p9_req_put(clnt, req);
1121 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1122 qid.type, qid.path, qid.version);
1124 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1126 p9_req_put(clnt, req);
1131 p9_fid_destroy(fid);
1132 return ERR_PTR(err);
1134 EXPORT_SYMBOL(p9_client_attach);
1136 struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1137 const unsigned char * const *wnames, int clone)
1140 struct p9_client *clnt;
1142 struct p9_qid *wqids;
1143 struct p9_req_t *req;
1148 clnt = oldfid->clnt;
1150 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);
1163 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1170 err = p9pdu_readf(&req->rc, clnt->proto_version, "R", &nwqids, &wqids);
1172 trace_9p_protocol_dump(clnt, &req->rc);
1173 p9_req_put(clnt, req);
1176 p9_req_put(clnt, req);
1178 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
1180 if (nwqids != nwname) {
1185 for (count = 0; count < nwqids; count++)
1186 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
1187 count, wqids[count].type,
1189 wqids[count].version);
1192 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
1194 memmove(&fid->qid, &oldfid->qid, sizeof(struct p9_qid));
1205 if (fid && fid != oldfid)
1206 p9_fid_destroy(fid);
1208 return ERR_PTR(err);
1210 EXPORT_SYMBOL(p9_client_walk);
1212 int p9_client_open(struct p9_fid *fid, int mode)
1215 struct p9_client *clnt;
1216 struct p9_req_t *req;
1221 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
1222 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1225 if (fid->mode != -1)
1228 if (p9_is_proto_dotl(clnt))
1229 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1231 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
1237 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1239 trace_9p_protocol_dump(clnt, &req->rc);
1240 goto free_and_error;
1243 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
1244 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1245 qid.path, qid.version, iounit);
1247 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1249 fid->iounit = iounit;
1252 p9_req_put(clnt, req);
1256 EXPORT_SYMBOL(p9_client_open);
1258 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags,
1259 u32 mode, kgid_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,
1269 from_kgid(&init_user_ns, gid));
1272 if (ofid->mode != -1)
1275 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
1282 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", qid, &iounit);
1284 trace_9p_protocol_dump(clnt, &req->rc);
1285 goto free_and_error;
1288 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1289 qid->type, qid->path, qid->version, iounit);
1291 memmove(&ofid->qid, qid, sizeof(struct p9_qid));
1293 ofid->iounit = iounit;
1296 p9_req_put(clnt, req);
1300 EXPORT_SYMBOL(p9_client_create_dotl);
1302 int p9_client_fcreate(struct p9_fid *fid, const 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",
1333 qid.type, qid.path, qid.version, iounit);
1335 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1337 fid->iounit = iounit;
1340 p9_req_put(clnt, req);
1344 EXPORT_SYMBOL(p9_client_fcreate);
1346 int p9_client_symlink(struct p9_fid *dfid, const char *name,
1347 const char *symtgt, kgid_t gid, struct p9_qid *qid)
1350 struct p9_client *clnt;
1351 struct p9_req_t *req;
1353 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1354 dfid->fid, name, symtgt);
1357 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
1364 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
1366 trace_9p_protocol_dump(clnt, &req->rc);
1367 goto free_and_error;
1370 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
1371 qid->type, qid->path, qid->version);
1374 p9_req_put(clnt, req);
1378 EXPORT_SYMBOL(p9_client_symlink);
1380 int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
1382 struct p9_client *clnt;
1383 struct p9_req_t *req;
1385 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
1386 dfid->fid, oldfid->fid, newname);
1388 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1391 return PTR_ERR(req);
1393 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
1394 p9_req_put(clnt, req);
1397 EXPORT_SYMBOL(p9_client_link);
1399 int p9_client_fsync(struct p9_fid *fid, int datasync)
1402 struct p9_client *clnt;
1403 struct p9_req_t *req;
1405 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
1406 fid->fid, datasync);
1410 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
1416 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
1418 p9_req_put(clnt, req);
1423 EXPORT_SYMBOL(p9_client_fsync);
1425 int p9_client_clunk(struct p9_fid *fid)
1428 struct p9_client *clnt;
1429 struct p9_req_t *req;
1433 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n",
1438 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1444 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
1446 p9_req_put(clnt, req);
1448 /* Fid is not valid even after a failed clunk
1449 * If interrupted, retry once then give up and
1450 * leak fid until umount.
1452 if (err == -ERESTARTSYS) {
1456 p9_fid_destroy(fid);
1460 EXPORT_SYMBOL(p9_client_clunk);
1462 int p9_client_remove(struct p9_fid *fid)
1465 struct p9_client *clnt;
1466 struct p9_req_t *req;
1468 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
1472 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1478 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
1480 p9_req_put(clnt, req);
1482 if (err == -ERESTARTSYS)
1485 p9_fid_destroy(fid);
1488 EXPORT_SYMBOL(p9_client_remove);
1490 int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1493 struct p9_req_t *req;
1494 struct p9_client *clnt;
1496 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
1497 dfid->fid, name, flags);
1500 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1505 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
1507 p9_req_put(clnt, req);
1511 EXPORT_SYMBOL(p9_client_unlinkat);
1514 p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
1519 while (iov_iter_count(to)) {
1522 count = p9_client_read_once(fid, offset, to, err);
1530 EXPORT_SYMBOL(p9_client_read);
1533 p9_client_read_once(struct p9_fid *fid, u64 offset, struct iov_iter *to,
1536 struct p9_client *clnt = fid->clnt;
1537 struct p9_req_t *req;
1538 int count = iov_iter_count(to);
1539 int rsize, received, non_zc = 0;
1543 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %zu\n",
1544 fid->fid, offset, iov_iter_count(to));
1546 rsize = fid->iounit;
1547 if (!rsize || rsize > clnt->msize - P9_IOHDRSZ)
1548 rsize = clnt->msize - P9_IOHDRSZ;
1553 /* Don't bother zerocopy for small IO (< 1024) */
1554 if (clnt->trans_mod->zc_request && rsize > 1024) {
1555 /* response header len is 11
1556 * PDU Header(7) + IO Size (4)
1558 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1559 0, 11, "dqd", fid->fid,
1563 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1567 *err = PTR_ERR(req);
1569 iov_iter_revert(to, count - iov_iter_count(to));
1573 *err = p9pdu_readf(&req->rc, clnt->proto_version,
1574 "D", &received, &dataptr);
1577 iov_iter_revert(to, count - iov_iter_count(to));
1578 trace_9p_protocol_dump(clnt, &req->rc);
1579 p9_req_put(clnt, req);
1582 if (rsize < received) {
1583 pr_err("bogus RREAD count (%d > %d)\n", received, rsize);
1587 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1590 int n = copy_to_iter(dataptr, received, to);
1592 if (n != received) {
1594 p9_req_put(clnt, req);
1598 iov_iter_revert(to, count - received - iov_iter_count(to));
1600 p9_req_put(clnt, req);
1603 EXPORT_SYMBOL(p9_client_read_once);
1606 p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
1608 struct p9_client *clnt = fid->clnt;
1609 struct p9_req_t *req;
1613 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1614 fid->fid, offset, iov_iter_count(from));
1616 while (iov_iter_count(from)) {
1617 int count = iov_iter_count(from);
1618 int rsize = fid->iounit;
1621 if (!rsize || rsize > clnt->msize - P9_IOHDRSZ)
1622 rsize = clnt->msize - P9_IOHDRSZ;
1627 /* Don't bother zerocopy for small IO (< 1024) */
1628 if (clnt->trans_mod->zc_request && rsize > 1024) {
1629 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1630 rsize, P9_ZC_HDR_SZ, "dqd",
1631 fid->fid, offset, rsize);
1633 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1634 offset, rsize, from);
1637 iov_iter_revert(from, count - iov_iter_count(from));
1638 *err = PTR_ERR(req);
1642 *err = p9pdu_readf(&req->rc, clnt->proto_version, "d", &written);
1644 iov_iter_revert(from, count - iov_iter_count(from));
1645 trace_9p_protocol_dump(clnt, &req->rc);
1646 p9_req_put(clnt, req);
1649 if (rsize < written) {
1650 pr_err("bogus RWRITE count (%d > %d)\n", written, rsize);
1654 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1656 p9_req_put(clnt, req);
1657 iov_iter_revert(from, count - written - iov_iter_count(from));
1663 EXPORT_SYMBOL(p9_client_write);
1665 struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1668 struct p9_client *clnt;
1669 struct p9_wstat *ret;
1670 struct p9_req_t *req;
1673 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1675 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
1677 return ERR_PTR(-ENOMEM);
1682 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1688 err = p9pdu_readf(&req->rc, clnt->proto_version, "wS", &ignored, ret);
1690 trace_9p_protocol_dump(clnt, &req->rc);
1691 p9_req_put(clnt, req);
1695 p9_debug(P9_DEBUG_9P,
1696 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1697 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1698 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1699 "<<< uid=%d gid=%d n_muid=%d\n",
1700 ret->size, ret->type, ret->dev, ret->qid.type, ret->qid.path,
1701 ret->qid.version, ret->mode,
1702 ret->atime, ret->mtime, ret->length,
1703 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
1704 from_kuid(&init_user_ns, ret->n_uid),
1705 from_kgid(&init_user_ns, ret->n_gid),
1706 from_kuid(&init_user_ns, ret->n_muid));
1708 p9_req_put(clnt, req);
1713 return ERR_PTR(err);
1715 EXPORT_SYMBOL(p9_client_stat);
1717 struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1721 struct p9_client *clnt;
1722 struct p9_stat_dotl *ret;
1723 struct p9_req_t *req;
1725 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
1726 fid->fid, request_mask);
1728 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
1730 return ERR_PTR(-ENOMEM);
1735 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1741 err = p9pdu_readf(&req->rc, clnt->proto_version, "A", ret);
1743 trace_9p_protocol_dump(clnt, &req->rc);
1744 p9_req_put(clnt, req);
1748 p9_debug(P9_DEBUG_9P, "<<< RGETATTR st_result_mask=%lld\n"
1749 "<<< qid=%x.%llx.%x\n"
1750 "<<< st_mode=%8.8x st_nlink=%llu\n"
1751 "<<< st_uid=%d st_gid=%d\n"
1752 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1753 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1754 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1755 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1756 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1757 "<<< st_gen=%lld st_data_version=%lld\n",
1758 ret->st_result_mask,
1759 ret->qid.type, ret->qid.path, ret->qid.version,
1760 ret->st_mode, ret->st_nlink,
1761 from_kuid(&init_user_ns, ret->st_uid),
1762 from_kgid(&init_user_ns, ret->st_gid),
1763 ret->st_rdev, ret->st_size, ret->st_blksize, ret->st_blocks,
1764 ret->st_atime_sec, ret->st_atime_nsec,
1765 ret->st_mtime_sec, ret->st_mtime_nsec,
1766 ret->st_ctime_sec, ret->st_ctime_nsec,
1767 ret->st_btime_sec, ret->st_btime_nsec,
1768 ret->st_gen, ret->st_data_version);
1770 p9_req_put(clnt, req);
1775 return ERR_PTR(err);
1777 EXPORT_SYMBOL(p9_client_getattr_dotl);
1779 static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
1783 /* NOTE: size shouldn't include its own length */
1784 /* size[2] type[2] dev[4] qid[13] */
1785 /* mode[4] atime[4] mtime[4] length[8]*/
1786 /* name[s] uid[s] gid[s] muid[s] */
1787 ret = 2 + 4 + 13 + 4 + 4 + 4 + 8 + 2 + 2 + 2 + 2;
1790 ret += strlen(wst->name);
1792 ret += strlen(wst->uid);
1794 ret += strlen(wst->gid);
1796 ret += strlen(wst->muid);
1798 if (proto_version == p9_proto_2000u ||
1799 proto_version == p9_proto_2000L) {
1800 /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1801 ret += 2 + 4 + 4 + 4;
1803 ret += strlen(wst->extension);
1809 int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1812 struct p9_req_t *req;
1813 struct p9_client *clnt;
1817 wst->size = p9_client_statsize(wst, clnt->proto_version);
1818 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n",
1820 p9_debug(P9_DEBUG_9P,
1821 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1822 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1823 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1824 " uid=%d gid=%d n_muid=%d\n",
1825 wst->size, wst->type, wst->dev, wst->qid.type,
1826 wst->qid.path, wst->qid.version,
1827 wst->mode, wst->atime, wst->mtime, wst->length,
1828 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
1829 from_kuid(&init_user_ns, wst->n_uid),
1830 from_kgid(&init_user_ns, wst->n_gid),
1831 from_kuid(&init_user_ns, wst->n_muid));
1833 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS",
1834 fid->fid, wst->size + 2, wst);
1840 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
1842 p9_req_put(clnt, req);
1846 EXPORT_SYMBOL(p9_client_wstat);
1848 int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1851 struct p9_req_t *req;
1852 struct p9_client *clnt;
1856 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1857 p9_debug(P9_DEBUG_9P, " valid=%x mode=%x uid=%d gid=%d size=%lld\n",
1858 p9attr->valid, p9attr->mode,
1859 from_kuid(&init_user_ns, p9attr->uid),
1860 from_kgid(&init_user_ns, p9attr->gid),
1862 p9_debug(P9_DEBUG_9P, " atime_sec=%lld atime_nsec=%lld\n",
1863 p9attr->atime_sec, p9attr->atime_nsec);
1864 p9_debug(P9_DEBUG_9P, " mtime_sec=%lld mtime_nsec=%lld\n",
1865 p9attr->mtime_sec, p9attr->mtime_nsec);
1867 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1873 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
1874 p9_req_put(clnt, req);
1878 EXPORT_SYMBOL(p9_client_setattr);
1880 int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1883 struct p9_req_t *req;
1884 struct p9_client *clnt;
1889 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
1891 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1897 err = p9pdu_readf(&req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1898 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1899 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1901 trace_9p_protocol_dump(clnt, &req->rc);
1902 p9_req_put(clnt, req);
1906 p9_debug(P9_DEBUG_9P,
1907 "<<< RSTATFS fid %d type 0x%x bsize %u blocks %llu bfree %llu bavail %llu files %llu ffree %llu fsid %llu namelen %u\n",
1908 fid->fid, sb->type, sb->bsize, sb->blocks, sb->bfree,
1909 sb->bavail, sb->files, sb->ffree, sb->fsid, sb->namelen);
1911 p9_req_put(clnt, req);
1915 EXPORT_SYMBOL(p9_client_statfs);
1917 int p9_client_rename(struct p9_fid *fid,
1918 struct p9_fid *newdirfid, const char *name)
1921 struct p9_req_t *req;
1922 struct p9_client *clnt;
1927 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
1928 fid->fid, newdirfid->fid, name);
1930 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1931 newdirfid->fid, name);
1937 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
1939 p9_req_put(clnt, req);
1943 EXPORT_SYMBOL(p9_client_rename);
1945 int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1946 struct p9_fid *newdirfid, const char *new_name)
1949 struct p9_req_t *req;
1950 struct p9_client *clnt;
1953 clnt = olddirfid->clnt;
1955 p9_debug(P9_DEBUG_9P,
1956 ">>> TRENAMEAT olddirfid %d old name %s newdirfid %d new name %s\n",
1957 olddirfid->fid, old_name, newdirfid->fid, new_name);
1959 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1960 old_name, newdirfid->fid, new_name);
1966 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
1967 newdirfid->fid, new_name);
1969 p9_req_put(clnt, req);
1973 EXPORT_SYMBOL(p9_client_renameat);
1975 /* An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1977 struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1978 const char *attr_name, u64 *attr_size)
1981 struct p9_req_t *req;
1982 struct p9_client *clnt;
1983 struct p9_fid *attr_fid;
1986 clnt = file_fid->clnt;
1987 attr_fid = p9_fid_create(clnt);
1992 p9_debug(P9_DEBUG_9P,
1993 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
1994 file_fid->fid, attr_fid->fid, attr_name);
1996 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
1997 file_fid->fid, attr_fid->fid, attr_name);
2002 err = p9pdu_readf(&req->rc, clnt->proto_version, "q", attr_size);
2004 trace_9p_protocol_dump(clnt, &req->rc);
2005 p9_req_put(clnt, req);
2008 p9_req_put(clnt, req);
2009 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
2010 attr_fid->fid, *attr_size);
2013 p9_fid_put(attr_fid);
2016 if (attr_fid && attr_fid != file_fid)
2017 p9_fid_destroy(attr_fid);
2019 return ERR_PTR(err);
2021 EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2023 int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2024 u64 attr_size, int flags)
2027 struct p9_req_t *req;
2028 struct p9_client *clnt;
2030 p9_debug(P9_DEBUG_9P,
2031 ">>> TXATTRCREATE fid %d name %s size %llu flag %d\n",
2032 fid->fid, name, attr_size, flags);
2035 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2036 fid->fid, name, attr_size, flags);
2041 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
2042 p9_req_put(clnt, req);
2046 EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2048 int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2050 int err, rsize, non_zc = 0;
2051 struct p9_client *clnt;
2052 struct p9_req_t *req;
2054 struct kvec kv = {.iov_base = data, .iov_len = count};
2057 iov_iter_kvec(&to, ITER_DEST, &kv, 1, count);
2059 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
2060 fid->fid, offset, count);
2065 rsize = fid->iounit;
2066 if (!rsize || rsize > clnt->msize - P9_READDIRHDRSZ)
2067 rsize = clnt->msize - P9_READDIRHDRSZ;
2072 /* Don't bother zerocopy for small IO (< 1024) */
2073 if (clnt->trans_mod->zc_request && rsize > 1024) {
2074 /* response header len is 11
2075 * PDU Header(7) + IO Size (4)
2077 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2078 11, "dqd", fid->fid, offset, rsize);
2081 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
2089 err = p9pdu_readf(&req->rc, clnt->proto_version, "D", &count, &dataptr);
2091 trace_9p_protocol_dump(clnt, &req->rc);
2092 goto free_and_error;
2094 if (rsize < count) {
2095 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2099 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
2102 memmove(data, dataptr, count);
2104 p9_req_put(clnt, req);
2108 p9_req_put(clnt, req);
2112 EXPORT_SYMBOL(p9_client_readdir);
2114 int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
2115 dev_t rdev, kgid_t gid, struct p9_qid *qid)
2118 struct p9_client *clnt;
2119 struct p9_req_t *req;
2123 p9_debug(P9_DEBUG_9P,
2124 ">>> TMKNOD fid %d name %s mode %d major %d minor %d\n",
2125 fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2126 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
2127 MAJOR(rdev), MINOR(rdev), gid);
2129 return PTR_ERR(req);
2131 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2133 trace_9p_protocol_dump(clnt, &req->rc);
2136 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n",
2137 qid->type, qid->path, qid->version);
2140 p9_req_put(clnt, req);
2143 EXPORT_SYMBOL(p9_client_mknod_dotl);
2145 int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
2146 kgid_t gid, struct p9_qid *qid)
2149 struct p9_client *clnt;
2150 struct p9_req_t *req;
2154 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2155 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2156 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg",
2157 fid->fid, name, mode, gid);
2159 return PTR_ERR(req);
2161 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2163 trace_9p_protocol_dump(clnt, &req->rc);
2166 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
2167 qid->path, qid->version);
2170 p9_req_put(clnt, req);
2173 EXPORT_SYMBOL(p9_client_mkdir_dotl);
2175 int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2178 struct p9_client *clnt;
2179 struct p9_req_t *req;
2183 p9_debug(P9_DEBUG_9P,
2184 ">>> TLOCK fid %d type %i flags %d start %lld length %lld proc_id %d client_id %s\n",
2185 fid->fid, flock->type, flock->flags, flock->start,
2186 flock->length, flock->proc_id, flock->client_id);
2188 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2189 flock->flags, flock->start, flock->length,
2190 flock->proc_id, flock->client_id);
2193 return PTR_ERR(req);
2195 err = p9pdu_readf(&req->rc, clnt->proto_version, "b", status);
2197 trace_9p_protocol_dump(clnt, &req->rc);
2200 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
2202 p9_req_put(clnt, req);
2205 EXPORT_SYMBOL(p9_client_lock_dotl);
2207 int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2210 struct p9_client *clnt;
2211 struct p9_req_t *req;
2215 p9_debug(P9_DEBUG_9P,
2216 ">>> TGETLOCK fid %d, type %i start %lld length %lld proc_id %d client_id %s\n",
2217 fid->fid, glock->type, glock->start, glock->length,
2218 glock->proc_id, glock->client_id);
2220 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid,
2221 glock->type, glock->start, glock->length,
2222 glock->proc_id, glock->client_id);
2225 return PTR_ERR(req);
2227 err = p9pdu_readf(&req->rc, clnt->proto_version, "bqqds", &glock->type,
2228 &glock->start, &glock->length, &glock->proc_id,
2231 trace_9p_protocol_dump(clnt, &req->rc);
2234 p9_debug(P9_DEBUG_9P,
2235 "<<< RGETLOCK type %i start %lld length %lld proc_id %d client_id %s\n",
2236 glock->type, glock->start, glock->length,
2237 glock->proc_id, glock->client_id);
2239 p9_req_put(clnt, req);
2242 EXPORT_SYMBOL(p9_client_getlock_dotl);
2244 int p9_client_readlink(struct p9_fid *fid, char **target)
2247 struct p9_client *clnt;
2248 struct p9_req_t *req;
2252 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
2254 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2256 return PTR_ERR(req);
2258 err = p9pdu_readf(&req->rc, clnt->proto_version, "s", target);
2260 trace_9p_protocol_dump(clnt, &req->rc);
2263 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
2265 p9_req_put(clnt, req);
2268 EXPORT_SYMBOL(p9_client_readlink);
2270 int __init p9_client_init(void)
2272 p9_req_cache = KMEM_CACHE(p9_req_t, SLAB_TYPESAFE_BY_RCU);
2273 return p9_req_cache ? 0 : -ENOMEM;
2276 void __exit p9_client_exit(void)
2278 kmem_cache_destroy(p9_req_cache);