1 // SPDX-License-Identifier: GPL-2.0-only
5 * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
6 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
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 /* DEFAULT MSIZE = 32 pages worth of payload + P9_HDRSZ +
32 * room for write (16 extra) or read (11 extra) operands.
35 #define DEFAULT_MSIZE ((128 * 1024) + P9_IOHDRSZ)
37 /* Client Option Parsing (code inspired by NFS code)
38 * - a little lazy - parse all client options
49 static const match_table_t tokens = {
50 {Opt_msize, "msize=%u"},
51 {Opt_legacy, "noextend"},
52 {Opt_trans, "trans=%s"},
53 {Opt_version, "version=%s"},
57 inline int p9_is_proto_dotl(struct p9_client *clnt)
59 return clnt->proto_version == p9_proto_2000L;
61 EXPORT_SYMBOL(p9_is_proto_dotl);
63 inline int p9_is_proto_dotu(struct p9_client *clnt)
65 return clnt->proto_version == p9_proto_2000u;
67 EXPORT_SYMBOL(p9_is_proto_dotu);
69 int p9_show_client_options(struct seq_file *m, struct p9_client *clnt)
71 if (clnt->msize != DEFAULT_MSIZE)
72 seq_printf(m, ",msize=%u", clnt->msize);
73 seq_printf(m, ",trans=%s", clnt->trans_mod->name);
75 switch (clnt->proto_version) {
77 seq_puts(m, ",noextend");
80 seq_puts(m, ",version=9p2000.u");
87 if (clnt->trans_mod->show_options)
88 return clnt->trans_mod->show_options(m, clnt);
91 EXPORT_SYMBOL(p9_show_client_options);
93 /* Some error codes are taken directly from the server replies,
94 * make sure they are valid.
96 static int safe_errno(int err)
98 if (err > 0 || err < -MAX_ERRNO) {
99 p9_debug(P9_DEBUG_ERROR, "Invalid error code %d\n", err);
105 /* Interpret mount option for protocol version */
106 static int get_protocol_version(char *s)
108 int version = -EINVAL;
110 if (!strcmp(s, "9p2000")) {
111 version = p9_proto_legacy;
112 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
113 } else if (!strcmp(s, "9p2000.u")) {
114 version = p9_proto_2000u;
115 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
116 } else if (!strcmp(s, "9p2000.L")) {
117 version = p9_proto_2000L;
118 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
120 pr_info("Unknown protocol version %s\n", s);
127 * parse_opts - parse mount options into client structure
128 * @opts: options string passed from mount
129 * @clnt: existing v9fs client information
131 * Return 0 upon success, -ERRNO upon failure
134 static int parse_opts(char *opts, struct p9_client *clnt)
136 char *options, *tmp_options;
138 substring_t args[MAX_OPT_ARGS];
143 clnt->proto_version = p9_proto_2000L;
144 clnt->msize = DEFAULT_MSIZE;
149 tmp_options = kstrdup(opts, GFP_KERNEL);
152 options = tmp_options;
154 while ((p = strsep(&options, ",")) != NULL) {
159 token = match_token(p, tokens, args);
162 r = match_int(&args[0], &option);
164 p9_debug(P9_DEBUG_ERROR,
165 "integer field, but no integer?\n");
170 p9_debug(P9_DEBUG_ERROR,
171 "msize should be at least 4k\n");
175 clnt->msize = option;
178 s = match_strdup(&args[0]);
181 p9_debug(P9_DEBUG_ERROR,
182 "problem allocating copy of trans arg\n");
183 goto free_and_return;
186 v9fs_put_trans(clnt->trans_mod);
187 clnt->trans_mod = v9fs_get_trans_by_name(s);
188 if (!clnt->trans_mod) {
189 pr_info("Could not find request transport: %s\n",
196 clnt->proto_version = p9_proto_legacy;
199 s = match_strdup(&args[0]);
202 p9_debug(P9_DEBUG_ERROR,
203 "problem allocating copy of version arg\n");
204 goto free_and_return;
206 r = get_protocol_version(s);
210 clnt->proto_version = r;
220 v9fs_put_trans(clnt->trans_mod);
225 static int p9_fcall_init(struct p9_client *c, struct p9_fcall *fc,
228 if (likely(c->fcall_cache) && alloc_msize == c->msize) {
229 fc->sdata = kmem_cache_alloc(c->fcall_cache, GFP_NOFS);
230 fc->cache = c->fcall_cache;
232 fc->sdata = kmalloc(alloc_msize, GFP_NOFS);
237 fc->capacity = alloc_msize;
241 void p9_fcall_fini(struct p9_fcall *fc)
243 /* sdata can be NULL for interrupted requests in trans_rdma,
244 * and kmem_cache_free does not do NULL-check for us
246 if (unlikely(!fc->sdata))
250 kmem_cache_free(fc->cache, fc->sdata);
254 EXPORT_SYMBOL(p9_fcall_fini);
256 static struct kmem_cache *p9_req_cache;
259 * p9_tag_alloc - Allocate a new request.
260 * @c: Client session.
261 * @type: Transaction type.
262 * @t_size: Buffer size for holding this request
263 * (automatic calculation by format template if 0).
264 * @r_size: Buffer size for holding server's reply on this request
265 * (automatic calculation by format template if 0).
266 * @fmt: Format template for assembling 9p request message
267 * (see p9pdu_vwritef).
268 * @ap: Variable arguments to be fed to passed format template
269 * (see p9pdu_vwritef).
271 * Context: Process context.
272 * Return: Pointer to new request.
274 static struct p9_req_t *
275 p9_tag_alloc(struct p9_client *c, int8_t type, uint t_size, uint r_size,
276 const char *fmt, va_list ap)
278 struct p9_req_t *req = kmem_cache_alloc(p9_req_cache, GFP_NOFS);
285 alloc_tsize = min_t(size_t, c->msize,
286 t_size ?: p9_msg_buf_size(c, type, fmt, apc));
289 alloc_rsize = min_t(size_t, c->msize,
290 r_size ?: p9_msg_buf_size(c, type + 1, fmt, ap));
293 return ERR_PTR(-ENOMEM);
295 if (p9_fcall_init(c, &req->tc, alloc_tsize))
297 if (p9_fcall_init(c, &req->rc, alloc_rsize))
300 p9pdu_reset(&req->tc);
301 p9pdu_reset(&req->rc);
303 req->status = REQ_STATUS_ALLOC;
304 /* refcount needs to be set to 0 before inserting into the idr
305 * so p9_tag_lookup does not accept a request that is not fully
306 * initialized. refcount_set to 2 below will mark request ready.
308 refcount_set(&req->refcount, 0);
309 init_waitqueue_head(&req->wq);
310 INIT_LIST_HEAD(&req->req_list);
312 idr_preload(GFP_NOFS);
313 spin_lock_irq(&c->lock);
314 if (type == P9_TVERSION)
315 tag = idr_alloc(&c->reqs, req, P9_NOTAG, P9_NOTAG + 1,
318 tag = idr_alloc(&c->reqs, req, 0, P9_NOTAG, GFP_NOWAIT);
320 spin_unlock_irq(&c->lock);
325 /* Init ref to two because in the general case there is one ref
326 * that is put asynchronously by a writer thread, one ref
327 * temporarily given by p9_tag_lookup and put by p9_client_cb
328 * in the recv thread, and one ref put by p9_req_put in the
329 * main thread. The only exception is virtio that does not use
330 * p9_tag_lookup but does not have a writer thread either
331 * (the write happens synchronously in the request/zc_request
332 * callback), so p9_client_cb eats the second ref there
333 * as the pointer is duplicated directly by virtqueue_add_sgs()
335 refcount_set(&req->refcount, 2);
340 p9_fcall_fini(&req->tc);
341 p9_fcall_fini(&req->rc);
343 kmem_cache_free(p9_req_cache, req);
344 return ERR_PTR(-ENOMEM);
348 * p9_tag_lookup - Look up a request by tag.
349 * @c: Client session.
350 * @tag: Transaction ID.
352 * Context: Any context.
353 * Return: A request, or %NULL if there is no request with that tag.
355 struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
357 struct p9_req_t *req;
361 req = idr_find(&c->reqs, tag);
363 /* We have to be careful with the req found under rcu_read_lock
364 * Thanks to SLAB_TYPESAFE_BY_RCU we can safely try to get the
365 * ref again without corrupting other data, then check again
366 * that the tag matches once we have the ref
368 if (!p9_req_try_get(req))
370 if (req->tc.tag != tag) {
379 EXPORT_SYMBOL(p9_tag_lookup);
382 * p9_tag_remove - Remove a tag.
383 * @c: Client session.
384 * @r: Request of reference.
386 * Context: Any context.
388 static void p9_tag_remove(struct p9_client *c, struct p9_req_t *r)
393 p9_debug(P9_DEBUG_MUX, "freeing clnt %p req %p tag: %d\n", c, r, tag);
394 spin_lock_irqsave(&c->lock, flags);
395 idr_remove(&c->reqs, tag);
396 spin_unlock_irqrestore(&c->lock, flags);
399 int p9_req_put(struct p9_client *c, struct p9_req_t *r)
401 if (refcount_dec_and_test(&r->refcount)) {
404 p9_fcall_fini(&r->tc);
405 p9_fcall_fini(&r->rc);
406 kmem_cache_free(p9_req_cache, r);
411 EXPORT_SYMBOL(p9_req_put);
414 * p9_tag_cleanup - cleans up tags structure and reclaims resources
415 * @c: v9fs client struct
417 * This frees resources associated with the tags structure
420 static void p9_tag_cleanup(struct p9_client *c)
422 struct p9_req_t *req;
426 idr_for_each_entry(&c->reqs, req, id) {
427 pr_info("Tag %d still in use\n", id);
428 if (p9_req_put(c, req) == 0)
429 pr_warn("Packet with tag %d has still references",
436 * p9_client_cb - call back from transport to client
438 * @req: request received
439 * @status: request status, one of REQ_STATUS_*
442 void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
444 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc.tag);
446 /* This barrier is needed to make sure any change made to req before
447 * the status change is visible to another thread
450 WRITE_ONCE(req->status, status);
453 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc.tag);
456 EXPORT_SYMBOL(p9_client_cb);
459 * p9_parse_header - parse header arguments out of a packet
460 * @pdu: packet to parse
461 * @size: size of packet
462 * @type: type of request
463 * @tag: tag of packet
464 * @rewind: set if we need to rewind offset afterwards
468 p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type,
469 int16_t *tag, int rewind)
474 int offset = pdu->offset;
479 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
481 goto rewind_and_exit;
490 if (pdu->size != r_size || r_size < 7) {
492 goto rewind_and_exit;
498 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
499 pdu->size, pdu->id, pdu->tag);
503 pdu->offset = offset;
506 EXPORT_SYMBOL(p9_parse_header);
509 * p9_check_errors - check 9p packet for error return and process it
510 * @c: current client instance
511 * @req: request to parse and check for error conditions
513 * returns error code if one is discovered, otherwise returns 0
515 * this will have to be more complicated if we have multiple
519 static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
525 err = p9_parse_header(&req->rc, NULL, &type, NULL, 0);
526 if (req->rc.size > req->rc.capacity && !req->rc.zc) {
527 pr_err("requested packet size too big: %d does not fit %zu (type=%d)\n",
528 req->rc.size, req->rc.capacity, req->rc.id);
531 /* dump the response from server
532 * This should be after check errors which poplulate pdu_fcall.
534 trace_9p_protocol_dump(c, &req->rc);
536 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
539 if (type != P9_RERROR && type != P9_RLERROR)
542 if (!p9_is_proto_dotl(c)) {
545 err = p9pdu_readf(&req->rc, c->proto_version, "s?d",
552 if (p9_is_proto_dotu(c) && ecode < 512)
556 err = p9_errstr2errno(ename, strlen(ename));
558 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
563 err = p9pdu_readf(&req->rc, c->proto_version, "d", &ecode);
568 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
574 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
579 static struct p9_req_t *
580 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
583 * p9_client_flush - flush (cancel) a request
585 * @oldreq: request to cancel
587 * This sents a flush for a particular request and links
588 * the flush request to the original request. The current
589 * code only supports a single flush request although the protocol
590 * allows for multiple flush requests to be sent for a single request.
594 static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
596 struct p9_req_t *req;
600 err = p9_parse_header(&oldreq->tc, NULL, NULL, &oldtag, 1);
604 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
606 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
610 /* if we haven't received a response for oldreq,
611 * remove it from the list
613 if (READ_ONCE(oldreq->status) == REQ_STATUS_SENT) {
614 if (c->trans_mod->cancelled)
615 c->trans_mod->cancelled(c, oldreq);
622 static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
623 int8_t type, uint t_size, uint r_size,
624 const char *fmt, va_list ap)
627 struct p9_req_t *req;
630 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
632 /* we allow for any status other than disconnected */
633 if (c->status == Disconnected)
634 return ERR_PTR(-EIO);
636 /* if status is begin_disconnected we allow only clunk request */
637 if (c->status == BeginDisconnect && type != P9_TCLUNK)
638 return ERR_PTR(-EIO);
641 req = p9_tag_alloc(c, type, t_size, r_size, fmt, apc);
646 /* marshall the data */
647 p9pdu_prepare(&req->tc, req->tc.tag, type);
648 err = p9pdu_vwritef(&req->tc, c->proto_version, fmt, ap);
651 p9pdu_finalize(c, &req->tc);
652 trace_9p_client_req(c, type, req->tc.tag);
656 /* We have to put also the 2nd reference as it won't be used */
662 * p9_client_rpc - issue a request and wait for a response
664 * @type: type of request
665 * @fmt: protocol format string (see protocol.c)
667 * Returns request structure (which client must free using p9_req_put)
670 static struct p9_req_t *
671 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
676 struct p9_req_t *req;
677 /* Passing zero for tsize/rsize to p9_client_prepare_req() tells it to
678 * auto determine an appropriate (small) request/response size
679 * according to actual message data being sent. Currently RDMA
680 * transport is excluded from this response message size optimization,
681 * as it would not cope with it, due to its pooled response buffers
682 * (using an optimized request size for RDMA as well though).
684 const uint tsize = 0;
685 const uint rsize = c->trans_mod->pooled_rbuffers ? c->msize : 0;
688 req = p9_client_prepare_req(c, type, tsize, rsize, fmt, ap);
696 if (signal_pending(current)) {
698 clear_thread_flag(TIF_SIGPENDING);
703 err = c->trans_mod->request(c, req);
705 /* write won't happen */
707 if (err != -ERESTARTSYS && err != -EFAULT)
708 c->status = Disconnected;
709 goto recalc_sigpending;
712 /* Wait for the response */
713 err = wait_event_killable(req->wq,
714 READ_ONCE(req->status) >= REQ_STATUS_RCVD);
716 /* Make sure our req is coherent with regard to updates in other
717 * threads - echoes to wmb() in the callback
721 if (err == -ERESTARTSYS && c->status == Connected &&
724 clear_thread_flag(TIF_SIGPENDING);
728 if (READ_ONCE(req->status) == REQ_STATUS_ERROR) {
729 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
732 if (err == -ERESTARTSYS && c->status == Connected) {
733 p9_debug(P9_DEBUG_MUX, "flushing\n");
735 clear_thread_flag(TIF_SIGPENDING);
737 if (c->trans_mod->cancel(c, req))
738 p9_client_flush(c, req);
740 /* if we received the response anyway, don't signal error */
741 if (READ_ONCE(req->status) == REQ_STATUS_RCVD)
746 spin_lock_irqsave(¤t->sighand->siglock, flags);
748 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
753 err = p9_check_errors(c, req);
754 trace_9p_client_res(c, type, req->rc.tag, err);
759 return ERR_PTR(safe_errno(err));
763 * p9_client_zc_rpc - issue a request and wait for a response
765 * @type: type of request
766 * @uidata: destination for zero copy read
767 * @uodata: source for zero copy write
768 * @inlen: read buffer size
769 * @olen: write buffer size
770 * @in_hdrlen: reader header size, This is the size of response protocol data
771 * @fmt: protocol format string (see protocol.c)
773 * Returns request structure (which client must free using p9_req_put)
775 static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
776 struct iov_iter *uidata,
777 struct iov_iter *uodata,
778 int inlen, int olen, int in_hdrlen,
779 const char *fmt, ...)
784 struct p9_req_t *req;
787 /* We allocate a inline protocol data of only 4k bytes.
788 * The actual content is passed in zero-copy fashion.
790 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, P9_ZC_HDR_SZ, fmt, ap);
798 if (signal_pending(current)) {
800 clear_thread_flag(TIF_SIGPENDING);
805 err = c->trans_mod->zc_request(c, req, uidata, uodata,
806 inlen, olen, in_hdrlen);
809 c->status = Disconnected;
810 if (err != -ERESTARTSYS)
811 goto recalc_sigpending;
813 if (READ_ONCE(req->status) == REQ_STATUS_ERROR) {
814 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
817 if (err == -ERESTARTSYS && c->status == Connected) {
818 p9_debug(P9_DEBUG_MUX, "flushing\n");
820 clear_thread_flag(TIF_SIGPENDING);
822 if (c->trans_mod->cancel(c, req))
823 p9_client_flush(c, req);
825 /* if we received the response anyway, don't signal error */
826 if (READ_ONCE(req->status) == REQ_STATUS_RCVD)
831 spin_lock_irqsave(¤t->sighand->siglock, flags);
833 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
838 err = p9_check_errors(c, req);
839 trace_9p_client_res(c, type, req->rc.tag, err);
844 return ERR_PTR(safe_errno(err));
847 static struct p9_fid *p9_fid_create(struct p9_client *clnt)
852 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
853 fid = kzalloc(sizeof(*fid), GFP_KERNEL);
858 fid->uid = current_fsuid();
860 refcount_set(&fid->count, 1);
862 idr_preload(GFP_KERNEL);
863 spin_lock_irq(&clnt->lock);
864 ret = idr_alloc_u32(&clnt->fids, fid, &fid->fid, P9_NOFID - 1,
866 spin_unlock_irq(&clnt->lock);
869 trace_9p_fid_ref(fid, P9_FID_REF_CREATE);
877 static void p9_fid_destroy(struct p9_fid *fid)
879 struct p9_client *clnt;
882 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
883 trace_9p_fid_ref(fid, P9_FID_REF_DESTROY);
885 spin_lock_irqsave(&clnt->lock, flags);
886 idr_remove(&clnt->fids, fid->fid);
887 spin_unlock_irqrestore(&clnt->lock, flags);
892 /* We also need to export tracepoint symbols for tracepoint_enabled() */
893 EXPORT_TRACEPOINT_SYMBOL(9p_fid_ref);
895 void do_trace_9p_fid_get(struct p9_fid *fid)
897 trace_9p_fid_ref(fid, P9_FID_REF_GET);
899 EXPORT_SYMBOL(do_trace_9p_fid_get);
901 void do_trace_9p_fid_put(struct p9_fid *fid)
903 trace_9p_fid_ref(fid, P9_FID_REF_PUT);
905 EXPORT_SYMBOL(do_trace_9p_fid_put);
907 static int p9_client_version(struct p9_client *c)
910 struct p9_req_t *req;
911 char *version = NULL;
914 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
915 c->msize, c->proto_version);
917 switch (c->proto_version) {
919 req = p9_client_rpc(c, P9_TVERSION, "ds",
920 c->msize, "9P2000.L");
923 req = p9_client_rpc(c, P9_TVERSION, "ds",
924 c->msize, "9P2000.u");
926 case p9_proto_legacy:
927 req = p9_client_rpc(c, P9_TVERSION, "ds",
937 err = p9pdu_readf(&req->rc, c->proto_version, "ds", &msize, &version);
939 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
940 trace_9p_protocol_dump(c, &req->rc);
944 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
945 if (!strncmp(version, "9P2000.L", 8)) {
946 c->proto_version = p9_proto_2000L;
947 } else if (!strncmp(version, "9P2000.u", 8)) {
948 c->proto_version = p9_proto_2000u;
949 } else if (!strncmp(version, "9P2000", 6)) {
950 c->proto_version = p9_proto_legacy;
952 p9_debug(P9_DEBUG_ERROR,
953 "server returned an unknown version: %s\n", version);
959 p9_debug(P9_DEBUG_ERROR,
960 "server returned a msize < 4096: %d\n", msize);
964 if (msize < c->msize)
974 struct p9_client *p9_client_create(const char *dev_name, char *options)
977 struct p9_client *clnt;
980 clnt = kmalloc(sizeof(*clnt), GFP_KERNEL);
982 return ERR_PTR(-ENOMEM);
984 clnt->trans_mod = NULL;
986 clnt->fcall_cache = NULL;
988 client_id = utsname()->nodename;
989 memcpy(clnt->name, client_id, strlen(client_id) + 1);
991 spin_lock_init(&clnt->lock);
992 idr_init(&clnt->fids);
993 idr_init(&clnt->reqs);
995 err = parse_opts(options, clnt);
999 if (!clnt->trans_mod)
1000 clnt->trans_mod = v9fs_get_default_trans();
1002 if (!clnt->trans_mod) {
1003 err = -EPROTONOSUPPORT;
1004 p9_debug(P9_DEBUG_ERROR,
1005 "No transport defined or default transport\n");
1009 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1010 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
1012 err = clnt->trans_mod->create(clnt, dev_name, options);
1016 if (clnt->msize > clnt->trans_mod->maxsize) {
1017 clnt->msize = clnt->trans_mod->maxsize;
1018 pr_info("Limiting 'msize' to %d as this is the maximum "
1019 "supported by transport %s\n",
1020 clnt->msize, clnt->trans_mod->name
1024 if (clnt->msize < 4096) {
1025 p9_debug(P9_DEBUG_ERROR,
1026 "Please specify a msize of at least 4k\n");
1031 err = p9_client_version(clnt);
1035 /* P9_HDRSZ + 4 is the smallest packet header we can have that is
1036 * followed by data accessed from userspace by read
1039 kmem_cache_create_usercopy("9p-fcall-cache", clnt->msize,
1041 clnt->msize - (P9_HDRSZ + 4),
1047 clnt->trans_mod->close(clnt);
1049 v9fs_put_trans(clnt->trans_mod);
1052 return ERR_PTR(err);
1054 EXPORT_SYMBOL(p9_client_create);
1056 void p9_client_destroy(struct p9_client *clnt)
1061 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
1063 if (clnt->trans_mod)
1064 clnt->trans_mod->close(clnt);
1066 v9fs_put_trans(clnt->trans_mod);
1068 idr_for_each_entry(&clnt->fids, fid, id) {
1069 pr_info("Found fid %d not clunked\n", fid->fid);
1070 p9_fid_destroy(fid);
1073 p9_tag_cleanup(clnt);
1075 kmem_cache_destroy(clnt->fcall_cache);
1078 EXPORT_SYMBOL(p9_client_destroy);
1080 void p9_client_disconnect(struct p9_client *clnt)
1082 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1083 clnt->status = Disconnected;
1085 EXPORT_SYMBOL(p9_client_disconnect);
1087 void p9_client_begin_disconnect(struct p9_client *clnt)
1089 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1090 clnt->status = BeginDisconnect;
1092 EXPORT_SYMBOL(p9_client_begin_disconnect);
1094 struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
1095 const char *uname, kuid_t n_uname,
1099 struct p9_req_t *req;
1103 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1104 afid ? afid->fid : -1, uname, aname);
1105 fid = p9_fid_create(clnt);
1112 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
1113 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1119 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", &qid);
1121 trace_9p_protocol_dump(clnt, &req->rc);
1122 p9_req_put(clnt, req);
1126 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1127 qid.type, qid.path, qid.version);
1129 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1131 p9_req_put(clnt, req);
1136 p9_fid_destroy(fid);
1137 return ERR_PTR(err);
1139 EXPORT_SYMBOL(p9_client_attach);
1141 struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1142 const unsigned char * const *wnames, int clone)
1145 struct p9_client *clnt;
1147 struct p9_qid *wqids;
1148 struct p9_req_t *req;
1152 clnt = oldfid->clnt;
1154 fid = p9_fid_create(clnt);
1160 fid->uid = oldfid->uid;
1165 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1166 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
1167 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1174 err = p9pdu_readf(&req->rc, clnt->proto_version, "R", &nwqids, &wqids);
1176 trace_9p_protocol_dump(clnt, &req->rc);
1177 p9_req_put(clnt, req);
1180 p9_req_put(clnt, req);
1182 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
1184 if (nwqids != nwname) {
1189 for (count = 0; count < nwqids; count++)
1190 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
1191 count, wqids[count].type,
1193 wqids[count].version);
1196 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
1198 memmove(&fid->qid, &oldfid->qid, sizeof(struct p9_qid));
1209 if (fid && fid != oldfid)
1210 p9_fid_destroy(fid);
1212 return ERR_PTR(err);
1214 EXPORT_SYMBOL(p9_client_walk);
1216 int p9_client_open(struct p9_fid *fid, int mode)
1219 struct p9_client *clnt;
1220 struct p9_req_t *req;
1225 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
1226 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1228 if (fid->mode != -1)
1231 if (p9_is_proto_dotl(clnt))
1232 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode & P9L_MODE_MASK);
1234 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode & P9L_MODE_MASK);
1240 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1242 trace_9p_protocol_dump(clnt, &req->rc);
1243 goto free_and_error;
1246 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
1247 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1248 qid.path, qid.version, iounit);
1250 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1252 fid->iounit = iounit;
1255 p9_req_put(clnt, req);
1259 EXPORT_SYMBOL(p9_client_open);
1261 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags,
1262 u32 mode, kgid_t gid, struct p9_qid *qid)
1265 struct p9_client *clnt;
1266 struct p9_req_t *req;
1269 p9_debug(P9_DEBUG_9P,
1270 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1271 ofid->fid, name, flags, mode,
1272 from_kgid(&init_user_ns, gid));
1275 if (ofid->mode != -1)
1278 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
1279 mode & P9L_MODE_MASK, gid);
1285 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", qid, &iounit);
1287 trace_9p_protocol_dump(clnt, &req->rc);
1288 goto free_and_error;
1291 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1292 qid->type, qid->path, qid->version, iounit);
1294 memmove(&ofid->qid, qid, sizeof(struct p9_qid));
1296 ofid->iounit = iounit;
1299 p9_req_put(clnt, req);
1303 EXPORT_SYMBOL(p9_client_create_dotl);
1305 int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
1309 struct p9_client *clnt;
1310 struct p9_req_t *req;
1314 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1315 fid->fid, name, perm, mode);
1318 if (fid->mode != -1)
1321 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1322 mode & P9L_MODE_MASK, extension);
1328 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1330 trace_9p_protocol_dump(clnt, &req->rc);
1331 goto free_and_error;
1334 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1335 qid.type, qid.path, qid.version, iounit);
1337 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1339 fid->iounit = iounit;
1342 p9_req_put(clnt, req);
1346 EXPORT_SYMBOL(p9_client_fcreate);
1348 int p9_client_symlink(struct p9_fid *dfid, const char *name,
1349 const char *symtgt, kgid_t gid, struct p9_qid *qid)
1352 struct p9_client *clnt;
1353 struct p9_req_t *req;
1355 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1356 dfid->fid, name, symtgt);
1359 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
1366 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
1368 trace_9p_protocol_dump(clnt, &req->rc);
1369 goto free_and_error;
1372 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
1373 qid->type, qid->path, qid->version);
1376 p9_req_put(clnt, req);
1380 EXPORT_SYMBOL(p9_client_symlink);
1382 int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
1384 struct p9_client *clnt;
1385 struct p9_req_t *req;
1387 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
1388 dfid->fid, oldfid->fid, newname);
1390 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1393 return PTR_ERR(req);
1395 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
1396 p9_req_put(clnt, req);
1399 EXPORT_SYMBOL(p9_client_link);
1401 int p9_client_fsync(struct p9_fid *fid, int datasync)
1404 struct p9_client *clnt;
1405 struct p9_req_t *req;
1407 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
1408 fid->fid, datasync);
1411 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
1417 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
1419 p9_req_put(clnt, req);
1424 EXPORT_SYMBOL(p9_client_fsync);
1426 int p9_client_clunk(struct p9_fid *fid)
1429 struct p9_client *clnt;
1430 struct p9_req_t *req;
1434 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);
1471 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1477 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
1479 p9_req_put(clnt, req);
1481 if (err == -ERESTARTSYS)
1484 p9_fid_destroy(fid);
1487 EXPORT_SYMBOL(p9_client_remove);
1489 int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1492 struct p9_req_t *req;
1493 struct p9_client *clnt;
1495 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
1496 dfid->fid, name, flags);
1499 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1504 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
1506 p9_req_put(clnt, req);
1510 EXPORT_SYMBOL(p9_client_unlinkat);
1513 p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
1518 while (iov_iter_count(to)) {
1521 count = p9_client_read_once(fid, offset, to, err);
1529 EXPORT_SYMBOL(p9_client_read);
1532 p9_client_read_once(struct p9_fid *fid, u64 offset, struct iov_iter *to,
1535 struct p9_client *clnt = fid->clnt;
1536 struct p9_req_t *req;
1537 int count = iov_iter_count(to);
1538 int rsize, received, non_zc = 0;
1542 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %zu\n",
1543 fid->fid, offset, iov_iter_count(to));
1545 rsize = fid->iounit;
1546 if (!rsize || rsize > clnt->msize - P9_IOHDRSZ)
1547 rsize = clnt->msize - P9_IOHDRSZ;
1552 /* Don't bother zerocopy for small IO (< 1024) */
1553 if (clnt->trans_mod->zc_request && rsize > 1024) {
1554 /* response header len is 11
1555 * PDU Header(7) + IO Size (4)
1557 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1558 0, 11, "dqd", fid->fid,
1562 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1566 *err = PTR_ERR(req);
1568 iov_iter_revert(to, count - iov_iter_count(to));
1572 *err = p9pdu_readf(&req->rc, clnt->proto_version,
1573 "D", &received, &dataptr);
1576 iov_iter_revert(to, count - iov_iter_count(to));
1577 trace_9p_protocol_dump(clnt, &req->rc);
1578 p9_req_put(clnt, req);
1581 if (rsize < received) {
1582 pr_err("bogus RREAD count (%d > %d)\n", received, rsize);
1586 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1589 int n = copy_to_iter(dataptr, received, to);
1591 if (n != received) {
1593 p9_req_put(clnt, req);
1597 iov_iter_revert(to, count - received - iov_iter_count(to));
1599 p9_req_put(clnt, req);
1602 EXPORT_SYMBOL(p9_client_read_once);
1605 p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
1607 struct p9_client *clnt = fid->clnt;
1608 struct p9_req_t *req;
1612 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1613 fid->fid, offset, iov_iter_count(from));
1615 while (iov_iter_count(from)) {
1616 int count = iov_iter_count(from);
1617 int rsize = fid->iounit;
1620 if (!rsize || rsize > clnt->msize - P9_IOHDRSZ)
1621 rsize = clnt->msize - P9_IOHDRSZ;
1626 /* Don't bother zerocopy for small IO (< 1024) */
1627 if (clnt->trans_mod->zc_request && rsize > 1024) {
1628 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1629 rsize, P9_ZC_HDR_SZ, "dqd",
1630 fid->fid, offset, rsize);
1632 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1633 offset, rsize, from);
1636 iov_iter_revert(from, count - iov_iter_count(from));
1637 *err = PTR_ERR(req);
1641 *err = p9pdu_readf(&req->rc, clnt->proto_version, "d", &written);
1643 iov_iter_revert(from, count - iov_iter_count(from));
1644 trace_9p_protocol_dump(clnt, &req->rc);
1645 p9_req_put(clnt, req);
1648 if (rsize < written) {
1649 pr_err("bogus RWRITE count (%d > %d)\n", written, rsize);
1653 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1655 p9_req_put(clnt, req);
1656 iov_iter_revert(from, count - written - iov_iter_count(from));
1662 EXPORT_SYMBOL(p9_client_write);
1664 struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1667 struct p9_client *clnt;
1668 struct p9_wstat *ret;
1669 struct p9_req_t *req;
1672 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1674 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
1676 return ERR_PTR(-ENOMEM);
1680 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1686 err = p9pdu_readf(&req->rc, clnt->proto_version, "wS", &ignored, ret);
1688 trace_9p_protocol_dump(clnt, &req->rc);
1689 p9_req_put(clnt, req);
1693 p9_debug(P9_DEBUG_9P,
1694 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1695 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1696 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1697 "<<< uid=%d gid=%d n_muid=%d\n",
1698 ret->size, ret->type, ret->dev, ret->qid.type, ret->qid.path,
1699 ret->qid.version, ret->mode,
1700 ret->atime, ret->mtime, ret->length,
1701 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
1702 from_kuid(&init_user_ns, ret->n_uid),
1703 from_kgid(&init_user_ns, ret->n_gid),
1704 from_kuid(&init_user_ns, ret->n_muid));
1706 p9_req_put(clnt, req);
1711 return ERR_PTR(err);
1713 EXPORT_SYMBOL(p9_client_stat);
1715 struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1719 struct p9_client *clnt;
1720 struct p9_stat_dotl *ret;
1721 struct p9_req_t *req;
1723 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
1724 fid->fid, request_mask);
1726 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
1728 return ERR_PTR(-ENOMEM);
1732 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1738 err = p9pdu_readf(&req->rc, clnt->proto_version, "A", ret);
1740 trace_9p_protocol_dump(clnt, &req->rc);
1741 p9_req_put(clnt, req);
1745 p9_debug(P9_DEBUG_9P, "<<< RGETATTR st_result_mask=%lld\n"
1746 "<<< qid=%x.%llx.%x\n"
1747 "<<< st_mode=%8.8x st_nlink=%llu\n"
1748 "<<< st_uid=%d st_gid=%d\n"
1749 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1750 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1751 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1752 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1753 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1754 "<<< st_gen=%lld st_data_version=%lld\n",
1755 ret->st_result_mask,
1756 ret->qid.type, ret->qid.path, ret->qid.version,
1757 ret->st_mode, ret->st_nlink,
1758 from_kuid(&init_user_ns, ret->st_uid),
1759 from_kgid(&init_user_ns, ret->st_gid),
1760 ret->st_rdev, ret->st_size, ret->st_blksize, ret->st_blocks,
1761 ret->st_atime_sec, ret->st_atime_nsec,
1762 ret->st_mtime_sec, ret->st_mtime_nsec,
1763 ret->st_ctime_sec, ret->st_ctime_nsec,
1764 ret->st_btime_sec, ret->st_btime_nsec,
1765 ret->st_gen, ret->st_data_version);
1767 p9_req_put(clnt, req);
1772 return ERR_PTR(err);
1774 EXPORT_SYMBOL(p9_client_getattr_dotl);
1776 static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
1780 /* NOTE: size shouldn't include its own length */
1781 /* size[2] type[2] dev[4] qid[13] */
1782 /* mode[4] atime[4] mtime[4] length[8]*/
1783 /* name[s] uid[s] gid[s] muid[s] */
1784 ret = 2 + 4 + 13 + 4 + 4 + 4 + 8 + 2 + 2 + 2 + 2;
1787 ret += strlen(wst->name);
1789 ret += strlen(wst->uid);
1791 ret += strlen(wst->gid);
1793 ret += strlen(wst->muid);
1795 if (proto_version == p9_proto_2000u ||
1796 proto_version == p9_proto_2000L) {
1797 /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1798 ret += 2 + 4 + 4 + 4;
1800 ret += strlen(wst->extension);
1806 int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1809 struct p9_req_t *req;
1810 struct p9_client *clnt;
1813 wst->size = p9_client_statsize(wst, clnt->proto_version);
1814 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n",
1816 p9_debug(P9_DEBUG_9P,
1817 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1818 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1819 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1820 " uid=%d gid=%d n_muid=%d\n",
1821 wst->size, wst->type, wst->dev, wst->qid.type,
1822 wst->qid.path, wst->qid.version,
1823 wst->mode, wst->atime, wst->mtime, wst->length,
1824 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
1825 from_kuid(&init_user_ns, wst->n_uid),
1826 from_kgid(&init_user_ns, wst->n_gid),
1827 from_kuid(&init_user_ns, wst->n_muid));
1829 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS",
1830 fid->fid, wst->size + 2, wst);
1836 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
1838 p9_req_put(clnt, req);
1842 EXPORT_SYMBOL(p9_client_wstat);
1844 int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1847 struct p9_req_t *req;
1848 struct p9_client *clnt;
1851 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1852 p9_debug(P9_DEBUG_9P, " valid=%x mode=%x uid=%d gid=%d size=%lld\n",
1853 p9attr->valid, p9attr->mode,
1854 from_kuid(&init_user_ns, p9attr->uid),
1855 from_kgid(&init_user_ns, p9attr->gid),
1857 p9_debug(P9_DEBUG_9P, " atime_sec=%lld atime_nsec=%lld\n",
1858 p9attr->atime_sec, p9attr->atime_nsec);
1859 p9_debug(P9_DEBUG_9P, " mtime_sec=%lld mtime_nsec=%lld\n",
1860 p9attr->mtime_sec, p9attr->mtime_nsec);
1862 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1868 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
1869 p9_req_put(clnt, req);
1873 EXPORT_SYMBOL(p9_client_setattr);
1875 int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1878 struct p9_req_t *req;
1879 struct p9_client *clnt;
1883 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
1885 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1891 err = p9pdu_readf(&req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1892 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1893 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1895 trace_9p_protocol_dump(clnt, &req->rc);
1896 p9_req_put(clnt, req);
1900 p9_debug(P9_DEBUG_9P,
1901 "<<< RSTATFS fid %d type 0x%x bsize %u blocks %llu bfree %llu bavail %llu files %llu ffree %llu fsid %llu namelen %u\n",
1902 fid->fid, sb->type, sb->bsize, sb->blocks, sb->bfree,
1903 sb->bavail, sb->files, sb->ffree, sb->fsid, sb->namelen);
1905 p9_req_put(clnt, req);
1909 EXPORT_SYMBOL(p9_client_statfs);
1911 int p9_client_rename(struct p9_fid *fid,
1912 struct p9_fid *newdirfid, const char *name)
1915 struct p9_req_t *req;
1916 struct p9_client *clnt;
1920 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
1921 fid->fid, newdirfid->fid, name);
1923 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1924 newdirfid->fid, name);
1930 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
1932 p9_req_put(clnt, req);
1936 EXPORT_SYMBOL(p9_client_rename);
1938 int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1939 struct p9_fid *newdirfid, const char *new_name)
1942 struct p9_req_t *req;
1943 struct p9_client *clnt;
1945 clnt = olddirfid->clnt;
1947 p9_debug(P9_DEBUG_9P,
1948 ">>> TRENAMEAT olddirfid %d old name %s newdirfid %d new name %s\n",
1949 olddirfid->fid, old_name, newdirfid->fid, new_name);
1951 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1952 old_name, newdirfid->fid, new_name);
1958 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
1959 newdirfid->fid, new_name);
1961 p9_req_put(clnt, req);
1965 EXPORT_SYMBOL(p9_client_renameat);
1967 /* An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1969 struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1970 const char *attr_name, u64 *attr_size)
1973 struct p9_req_t *req;
1974 struct p9_client *clnt;
1975 struct p9_fid *attr_fid;
1977 clnt = file_fid->clnt;
1978 attr_fid = p9_fid_create(clnt);
1983 p9_debug(P9_DEBUG_9P,
1984 ">>> TXATTRWALK file_fid %d, attr_fid %d name '%s'\n",
1985 file_fid->fid, attr_fid->fid, attr_name);
1987 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
1988 file_fid->fid, attr_fid->fid, attr_name);
1993 err = p9pdu_readf(&req->rc, clnt->proto_version, "q", attr_size);
1995 trace_9p_protocol_dump(clnt, &req->rc);
1996 p9_req_put(clnt, req);
1999 p9_req_put(clnt, req);
2000 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
2001 attr_fid->fid, *attr_size);
2004 p9_fid_put(attr_fid);
2007 if (attr_fid && attr_fid != file_fid)
2008 p9_fid_destroy(attr_fid);
2010 return ERR_PTR(err);
2012 EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2014 int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2015 u64 attr_size, int flags)
2018 struct p9_req_t *req;
2019 struct p9_client *clnt;
2021 p9_debug(P9_DEBUG_9P,
2022 ">>> TXATTRCREATE fid %d name %s size %llu flag %d\n",
2023 fid->fid, name, attr_size, flags);
2025 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2026 fid->fid, name, attr_size, flags);
2031 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
2032 p9_req_put(clnt, req);
2036 EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2038 int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2040 int err, rsize, non_zc = 0;
2041 struct p9_client *clnt;
2042 struct p9_req_t *req;
2044 struct kvec kv = {.iov_base = data, .iov_len = count};
2047 iov_iter_kvec(&to, ITER_DEST, &kv, 1, count);
2049 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
2050 fid->fid, offset, count);
2054 rsize = fid->iounit;
2055 if (!rsize || rsize > clnt->msize - P9_READDIRHDRSZ)
2056 rsize = clnt->msize - P9_READDIRHDRSZ;
2061 /* Don't bother zerocopy for small IO (< 1024) */
2062 if (clnt->trans_mod->zc_request && rsize > 1024) {
2063 /* response header len is 11
2064 * PDU Header(7) + IO Size (4)
2066 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2067 11, "dqd", fid->fid, offset, rsize);
2070 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
2078 err = p9pdu_readf(&req->rc, clnt->proto_version, "D", &count, &dataptr);
2080 trace_9p_protocol_dump(clnt, &req->rc);
2081 goto free_and_error;
2083 if (rsize < count) {
2084 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2088 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
2091 memmove(data, dataptr, count);
2093 p9_req_put(clnt, req);
2097 p9_req_put(clnt, req);
2101 EXPORT_SYMBOL(p9_client_readdir);
2103 int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
2104 dev_t rdev, kgid_t gid, struct p9_qid *qid)
2107 struct p9_client *clnt;
2108 struct p9_req_t *req;
2111 p9_debug(P9_DEBUG_9P,
2112 ">>> TMKNOD fid %d name %s mode %d major %d minor %d\n",
2113 fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2114 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
2115 MAJOR(rdev), MINOR(rdev), gid);
2117 return PTR_ERR(req);
2119 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2121 trace_9p_protocol_dump(clnt, &req->rc);
2124 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n",
2125 qid->type, qid->path, qid->version);
2128 p9_req_put(clnt, req);
2131 EXPORT_SYMBOL(p9_client_mknod_dotl);
2133 int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
2134 kgid_t gid, struct p9_qid *qid)
2137 struct p9_client *clnt;
2138 struct p9_req_t *req;
2141 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2142 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2143 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg",
2144 fid->fid, name, mode, gid);
2146 return PTR_ERR(req);
2148 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2150 trace_9p_protocol_dump(clnt, &req->rc);
2153 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
2154 qid->path, qid->version);
2157 p9_req_put(clnt, req);
2160 EXPORT_SYMBOL(p9_client_mkdir_dotl);
2162 int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2165 struct p9_client *clnt;
2166 struct p9_req_t *req;
2169 p9_debug(P9_DEBUG_9P,
2170 ">>> TLOCK fid %d type %i flags %d start %lld length %lld proc_id %d client_id %s\n",
2171 fid->fid, flock->type, flock->flags, flock->start,
2172 flock->length, flock->proc_id, flock->client_id);
2174 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2175 flock->flags, flock->start, flock->length,
2176 flock->proc_id, flock->client_id);
2179 return PTR_ERR(req);
2181 err = p9pdu_readf(&req->rc, clnt->proto_version, "b", status);
2183 trace_9p_protocol_dump(clnt, &req->rc);
2186 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
2188 p9_req_put(clnt, req);
2191 EXPORT_SYMBOL(p9_client_lock_dotl);
2193 int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2196 struct p9_client *clnt;
2197 struct p9_req_t *req;
2200 p9_debug(P9_DEBUG_9P,
2201 ">>> TGETLOCK fid %d, type %i start %lld length %lld proc_id %d client_id %s\n",
2202 fid->fid, glock->type, glock->start, glock->length,
2203 glock->proc_id, glock->client_id);
2205 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid,
2206 glock->type, glock->start, glock->length,
2207 glock->proc_id, glock->client_id);
2210 return PTR_ERR(req);
2212 err = p9pdu_readf(&req->rc, clnt->proto_version, "bqqds", &glock->type,
2213 &glock->start, &glock->length, &glock->proc_id,
2216 trace_9p_protocol_dump(clnt, &req->rc);
2219 p9_debug(P9_DEBUG_9P,
2220 "<<< RGETLOCK type %i start %lld length %lld proc_id %d client_id %s\n",
2221 glock->type, glock->start, glock->length,
2222 glock->proc_id, glock->client_id);
2224 p9_req_put(clnt, req);
2227 EXPORT_SYMBOL(p9_client_getlock_dotl);
2229 int p9_client_readlink(struct p9_fid *fid, char **target)
2232 struct p9_client *clnt;
2233 struct p9_req_t *req;
2236 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
2238 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2240 return PTR_ERR(req);
2242 err = p9pdu_readf(&req->rc, clnt->proto_version, "s", target);
2244 trace_9p_protocol_dump(clnt, &req->rc);
2247 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
2249 p9_req_put(clnt, req);
2252 EXPORT_SYMBOL(p9_client_readlink);
2254 int __init p9_client_init(void)
2256 p9_req_cache = KMEM_CACHE(p9_req_t, SLAB_TYPESAFE_BY_RCU);
2257 return p9_req_cache ? 0 : -ENOMEM;
2260 void __exit p9_client_exit(void)
2262 kmem_cache_destroy(p9_req_cache);