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",
550 if (p9_is_proto_dotu(c) && ecode < 512)
554 err = p9_errstr2errno(ename, strlen(ename));
556 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
561 err = p9pdu_readf(&req->rc, c->proto_version, "d", &ecode);
566 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
572 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
577 static struct p9_req_t *
578 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
581 * p9_client_flush - flush (cancel) a request
583 * @oldreq: request to cancel
585 * This sents a flush for a particular request and links
586 * the flush request to the original request. The current
587 * code only supports a single flush request although the protocol
588 * allows for multiple flush requests to be sent for a single request.
592 static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
594 struct p9_req_t *req;
598 err = p9_parse_header(&oldreq->tc, NULL, NULL, &oldtag, 1);
602 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
604 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
608 /* if we haven't received a response for oldreq,
609 * remove it from the list
611 if (READ_ONCE(oldreq->status) == REQ_STATUS_SENT) {
612 if (c->trans_mod->cancelled)
613 c->trans_mod->cancelled(c, oldreq);
620 static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
621 int8_t type, uint t_size, uint r_size,
622 const char *fmt, va_list ap)
625 struct p9_req_t *req;
628 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
630 /* we allow for any status other than disconnected */
631 if (c->status == Disconnected)
632 return ERR_PTR(-EIO);
634 /* if status is begin_disconnected we allow only clunk request */
635 if (c->status == BeginDisconnect && type != P9_TCLUNK)
636 return ERR_PTR(-EIO);
639 req = p9_tag_alloc(c, type, t_size, r_size, fmt, apc);
644 /* marshall the data */
645 p9pdu_prepare(&req->tc, req->tc.tag, type);
646 err = p9pdu_vwritef(&req->tc, c->proto_version, fmt, ap);
649 p9pdu_finalize(c, &req->tc);
650 trace_9p_client_req(c, type, req->tc.tag);
654 /* We have to put also the 2nd reference as it won't be used */
660 * p9_client_rpc - issue a request and wait for a response
662 * @type: type of request
663 * @fmt: protocol format string (see protocol.c)
665 * Returns request structure (which client must free using p9_req_put)
668 static struct p9_req_t *
669 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
674 struct p9_req_t *req;
675 /* Passing zero for tsize/rsize to p9_client_prepare_req() tells it to
676 * auto determine an appropriate (small) request/response size
677 * according to actual message data being sent. Currently RDMA
678 * transport is excluded from this response message size optimization,
679 * as it would not cope with it, due to its pooled response buffers
680 * (using an optimized request size for RDMA as well though).
682 const uint tsize = 0;
683 const uint rsize = c->trans_mod->pooled_rbuffers ? c->msize : 0;
686 req = p9_client_prepare_req(c, type, tsize, rsize, fmt, ap);
694 if (signal_pending(current)) {
696 clear_thread_flag(TIF_SIGPENDING);
701 err = c->trans_mod->request(c, req);
703 /* write won't happen */
705 if (err != -ERESTARTSYS && err != -EFAULT)
706 c->status = Disconnected;
707 goto recalc_sigpending;
710 /* Wait for the response */
711 err = wait_event_killable(req->wq,
712 READ_ONCE(req->status) >= REQ_STATUS_RCVD);
714 /* Make sure our req is coherent with regard to updates in other
715 * threads - echoes to wmb() in the callback
719 if (err == -ERESTARTSYS && c->status == Connected &&
722 clear_thread_flag(TIF_SIGPENDING);
726 if (READ_ONCE(req->status) == REQ_STATUS_ERROR) {
727 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
730 if (err == -ERESTARTSYS && c->status == Connected) {
731 p9_debug(P9_DEBUG_MUX, "flushing\n");
733 clear_thread_flag(TIF_SIGPENDING);
735 if (c->trans_mod->cancel(c, req))
736 p9_client_flush(c, req);
738 /* if we received the response anyway, don't signal error */
739 if (READ_ONCE(req->status) == REQ_STATUS_RCVD)
744 spin_lock_irqsave(¤t->sighand->siglock, flags);
746 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
751 err = p9_check_errors(c, req);
752 trace_9p_client_res(c, type, req->rc.tag, err);
757 return ERR_PTR(safe_errno(err));
761 * p9_client_zc_rpc - issue a request and wait for a response
763 * @type: type of request
764 * @uidata: destination for zero copy read
765 * @uodata: source for zero copy write
766 * @inlen: read buffer size
767 * @olen: write buffer size
768 * @in_hdrlen: reader header size, This is the size of response protocol data
769 * @fmt: protocol format string (see protocol.c)
771 * Returns request structure (which client must free using p9_req_put)
773 static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
774 struct iov_iter *uidata,
775 struct iov_iter *uodata,
776 int inlen, int olen, int in_hdrlen,
777 const char *fmt, ...)
782 struct p9_req_t *req;
785 /* We allocate a inline protocol data of only 4k bytes.
786 * The actual content is passed in zero-copy fashion.
788 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, P9_ZC_HDR_SZ, fmt, ap);
796 if (signal_pending(current)) {
798 clear_thread_flag(TIF_SIGPENDING);
803 err = c->trans_mod->zc_request(c, req, uidata, uodata,
804 inlen, olen, in_hdrlen);
807 c->status = Disconnected;
808 if (err != -ERESTARTSYS)
809 goto recalc_sigpending;
811 if (READ_ONCE(req->status) == REQ_STATUS_ERROR) {
812 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
815 if (err == -ERESTARTSYS && c->status == Connected) {
816 p9_debug(P9_DEBUG_MUX, "flushing\n");
818 clear_thread_flag(TIF_SIGPENDING);
820 if (c->trans_mod->cancel(c, req))
821 p9_client_flush(c, req);
823 /* if we received the response anyway, don't signal error */
824 if (READ_ONCE(req->status) == REQ_STATUS_RCVD)
829 spin_lock_irqsave(¤t->sighand->siglock, flags);
831 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
836 err = p9_check_errors(c, req);
837 trace_9p_client_res(c, type, req->rc.tag, err);
842 return ERR_PTR(safe_errno(err));
845 static struct p9_fid *p9_fid_create(struct p9_client *clnt)
850 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
851 fid = kzalloc(sizeof(*fid), GFP_KERNEL);
856 fid->uid = current_fsuid();
858 refcount_set(&fid->count, 1);
860 idr_preload(GFP_KERNEL);
861 spin_lock_irq(&clnt->lock);
862 ret = idr_alloc_u32(&clnt->fids, fid, &fid->fid, P9_NOFID - 1,
864 spin_unlock_irq(&clnt->lock);
867 trace_9p_fid_ref(fid, P9_FID_REF_CREATE);
875 static void p9_fid_destroy(struct p9_fid *fid)
877 struct p9_client *clnt;
880 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
881 trace_9p_fid_ref(fid, P9_FID_REF_DESTROY);
883 spin_lock_irqsave(&clnt->lock, flags);
884 idr_remove(&clnt->fids, fid->fid);
885 spin_unlock_irqrestore(&clnt->lock, flags);
890 /* We also need to export tracepoint symbols for tracepoint_enabled() */
891 EXPORT_TRACEPOINT_SYMBOL(9p_fid_ref);
893 void do_trace_9p_fid_get(struct p9_fid *fid)
895 trace_9p_fid_ref(fid, P9_FID_REF_GET);
897 EXPORT_SYMBOL(do_trace_9p_fid_get);
899 void do_trace_9p_fid_put(struct p9_fid *fid)
901 trace_9p_fid_ref(fid, P9_FID_REF_PUT);
903 EXPORT_SYMBOL(do_trace_9p_fid_put);
905 static int p9_client_version(struct p9_client *c)
908 struct p9_req_t *req;
909 char *version = NULL;
912 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
913 c->msize, c->proto_version);
915 switch (c->proto_version) {
917 req = p9_client_rpc(c, P9_TVERSION, "ds",
918 c->msize, "9P2000.L");
921 req = p9_client_rpc(c, P9_TVERSION, "ds",
922 c->msize, "9P2000.u");
924 case p9_proto_legacy:
925 req = p9_client_rpc(c, P9_TVERSION, "ds",
935 err = p9pdu_readf(&req->rc, c->proto_version, "ds", &msize, &version);
937 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
938 trace_9p_protocol_dump(c, &req->rc);
942 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
943 if (!strncmp(version, "9P2000.L", 8)) {
944 c->proto_version = p9_proto_2000L;
945 } else if (!strncmp(version, "9P2000.u", 8)) {
946 c->proto_version = p9_proto_2000u;
947 } else if (!strncmp(version, "9P2000", 6)) {
948 c->proto_version = p9_proto_legacy;
950 p9_debug(P9_DEBUG_ERROR,
951 "server returned an unknown version: %s\n", version);
957 p9_debug(P9_DEBUG_ERROR,
958 "server returned a msize < 4096: %d\n", msize);
962 if (msize < c->msize)
972 struct p9_client *p9_client_create(const char *dev_name, char *options)
975 struct p9_client *clnt;
979 clnt = kmalloc(sizeof(*clnt), GFP_KERNEL);
981 return ERR_PTR(-ENOMEM);
983 clnt->trans_mod = NULL;
985 clnt->fcall_cache = NULL;
987 client_id = utsname()->nodename;
988 memcpy(clnt->name, client_id, strlen(client_id) + 1);
990 spin_lock_init(&clnt->lock);
991 idr_init(&clnt->fids);
992 idr_init(&clnt->reqs);
994 err = parse_opts(options, clnt);
998 if (!clnt->trans_mod)
999 clnt->trans_mod = v9fs_get_default_trans();
1001 if (!clnt->trans_mod) {
1002 err = -EPROTONOSUPPORT;
1003 p9_debug(P9_DEBUG_ERROR,
1004 "No transport defined or default transport\n");
1008 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1009 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
1011 err = clnt->trans_mod->create(clnt, dev_name, options);
1015 if (clnt->msize > clnt->trans_mod->maxsize) {
1016 clnt->msize = clnt->trans_mod->maxsize;
1017 pr_info("Limiting 'msize' to %d as this is the maximum "
1018 "supported by transport %s\n",
1019 clnt->msize, clnt->trans_mod->name
1023 if (clnt->msize < 4096) {
1024 p9_debug(P9_DEBUG_ERROR,
1025 "Please specify a msize of at least 4k\n");
1030 err = p9_client_version(clnt);
1034 /* P9_HDRSZ + 4 is the smallest packet header we can have that is
1035 * followed by data accessed from userspace by read
1038 kmem_cache_create_usercopy("9p-fcall-cache", clnt->msize,
1040 clnt->msize - (P9_HDRSZ + 4),
1046 clnt->trans_mod->close(clnt);
1048 v9fs_put_trans(clnt->trans_mod);
1051 return ERR_PTR(err);
1053 EXPORT_SYMBOL(p9_client_create);
1055 void p9_client_destroy(struct p9_client *clnt)
1060 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
1062 if (clnt->trans_mod)
1063 clnt->trans_mod->close(clnt);
1065 v9fs_put_trans(clnt->trans_mod);
1067 idr_for_each_entry(&clnt->fids, fid, id) {
1068 pr_info("Found fid %d not clunked\n", fid->fid);
1069 p9_fid_destroy(fid);
1072 p9_tag_cleanup(clnt);
1074 kmem_cache_destroy(clnt->fcall_cache);
1077 EXPORT_SYMBOL(p9_client_destroy);
1079 void p9_client_disconnect(struct p9_client *clnt)
1081 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1082 clnt->status = Disconnected;
1084 EXPORT_SYMBOL(p9_client_disconnect);
1086 void p9_client_begin_disconnect(struct p9_client *clnt)
1088 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1089 clnt->status = BeginDisconnect;
1091 EXPORT_SYMBOL(p9_client_begin_disconnect);
1093 struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
1094 const char *uname, kuid_t n_uname,
1098 struct p9_req_t *req;
1102 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1103 afid ? afid->fid : -1, uname, aname);
1104 fid = p9_fid_create(clnt);
1111 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
1112 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1118 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", &qid);
1120 trace_9p_protocol_dump(clnt, &req->rc);
1121 p9_req_put(clnt, req);
1125 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1126 qid.type, qid.path, qid.version);
1128 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1130 p9_req_put(clnt, req);
1135 p9_fid_destroy(fid);
1136 return ERR_PTR(err);
1138 EXPORT_SYMBOL(p9_client_attach);
1140 struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1141 const unsigned char * const *wnames, int clone)
1144 struct p9_client *clnt;
1146 struct p9_qid *wqids;
1147 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);
1229 if (fid->mode != -1)
1232 if (p9_is_proto_dotl(clnt))
1233 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode & P9L_MODE_MASK);
1235 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode & P9L_MODE_MASK);
1241 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1243 trace_9p_protocol_dump(clnt, &req->rc);
1244 goto free_and_error;
1247 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
1248 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1249 qid.path, qid.version, iounit);
1251 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1253 fid->iounit = iounit;
1256 p9_req_put(clnt, req);
1260 EXPORT_SYMBOL(p9_client_open);
1262 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags,
1263 u32 mode, kgid_t gid, struct p9_qid *qid)
1266 struct p9_client *clnt;
1267 struct p9_req_t *req;
1270 p9_debug(P9_DEBUG_9P,
1271 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1272 ofid->fid, name, flags, mode,
1273 from_kgid(&init_user_ns, gid));
1276 if (ofid->mode != -1)
1279 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
1280 mode & P9L_MODE_MASK, gid);
1286 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", qid, &iounit);
1288 trace_9p_protocol_dump(clnt, &req->rc);
1289 goto free_and_error;
1292 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1293 qid->type, qid->path, qid->version, iounit);
1295 memmove(&ofid->qid, qid, sizeof(struct p9_qid));
1297 ofid->iounit = iounit;
1300 p9_req_put(clnt, req);
1304 EXPORT_SYMBOL(p9_client_create_dotl);
1306 int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
1310 struct p9_client *clnt;
1311 struct p9_req_t *req;
1315 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1316 fid->fid, name, perm, mode);
1320 if (fid->mode != -1)
1323 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1324 mode & P9L_MODE_MASK, extension);
1330 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1332 trace_9p_protocol_dump(clnt, &req->rc);
1333 goto free_and_error;
1336 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1337 qid.type, qid.path, qid.version, iounit);
1339 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1341 fid->iounit = iounit;
1344 p9_req_put(clnt, req);
1348 EXPORT_SYMBOL(p9_client_fcreate);
1350 int p9_client_symlink(struct p9_fid *dfid, const char *name,
1351 const char *symtgt, kgid_t gid, struct p9_qid *qid)
1354 struct p9_client *clnt;
1355 struct p9_req_t *req;
1357 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1358 dfid->fid, name, symtgt);
1361 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
1368 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
1370 trace_9p_protocol_dump(clnt, &req->rc);
1371 goto free_and_error;
1374 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
1375 qid->type, qid->path, qid->version);
1378 p9_req_put(clnt, req);
1382 EXPORT_SYMBOL(p9_client_symlink);
1384 int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
1386 struct p9_client *clnt;
1387 struct p9_req_t *req;
1389 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
1390 dfid->fid, oldfid->fid, newname);
1392 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1395 return PTR_ERR(req);
1397 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
1398 p9_req_put(clnt, req);
1401 EXPORT_SYMBOL(p9_client_link);
1403 int p9_client_fsync(struct p9_fid *fid, int datasync)
1406 struct p9_client *clnt;
1407 struct p9_req_t *req;
1409 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
1410 fid->fid, datasync);
1414 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
1420 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
1422 p9_req_put(clnt, req);
1427 EXPORT_SYMBOL(p9_client_fsync);
1429 int p9_client_clunk(struct p9_fid *fid)
1432 struct p9_client *clnt;
1433 struct p9_req_t *req;
1437 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n",
1442 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1448 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
1450 p9_req_put(clnt, req);
1452 /* Fid is not valid even after a failed clunk
1453 * If interrupted, retry once then give up and
1454 * leak fid until umount.
1456 if (err == -ERESTARTSYS) {
1460 p9_fid_destroy(fid);
1464 EXPORT_SYMBOL(p9_client_clunk);
1466 int p9_client_remove(struct p9_fid *fid)
1469 struct p9_client *clnt;
1470 struct p9_req_t *req;
1472 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
1476 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1482 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
1484 p9_req_put(clnt, req);
1486 if (err == -ERESTARTSYS)
1489 p9_fid_destroy(fid);
1492 EXPORT_SYMBOL(p9_client_remove);
1494 int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1497 struct p9_req_t *req;
1498 struct p9_client *clnt;
1500 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
1501 dfid->fid, name, flags);
1504 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1509 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
1511 p9_req_put(clnt, req);
1515 EXPORT_SYMBOL(p9_client_unlinkat);
1518 p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
1523 while (iov_iter_count(to)) {
1526 count = p9_client_read_once(fid, offset, to, err);
1534 EXPORT_SYMBOL(p9_client_read);
1537 p9_client_read_once(struct p9_fid *fid, u64 offset, struct iov_iter *to,
1540 struct p9_client *clnt = fid->clnt;
1541 struct p9_req_t *req;
1542 int count = iov_iter_count(to);
1543 int rsize, received, non_zc = 0;
1547 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %zu\n",
1548 fid->fid, offset, iov_iter_count(to));
1550 rsize = fid->iounit;
1551 if (!rsize || rsize > clnt->msize - P9_IOHDRSZ)
1552 rsize = clnt->msize - P9_IOHDRSZ;
1557 /* Don't bother zerocopy for small IO (< 1024) */
1558 if (clnt->trans_mod->zc_request && rsize > 1024) {
1559 /* response header len is 11
1560 * PDU Header(7) + IO Size (4)
1562 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1563 0, 11, "dqd", fid->fid,
1567 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1571 *err = PTR_ERR(req);
1573 iov_iter_revert(to, count - iov_iter_count(to));
1577 *err = p9pdu_readf(&req->rc, clnt->proto_version,
1578 "D", &received, &dataptr);
1581 iov_iter_revert(to, count - iov_iter_count(to));
1582 trace_9p_protocol_dump(clnt, &req->rc);
1583 p9_req_put(clnt, req);
1586 if (rsize < received) {
1587 pr_err("bogus RREAD count (%d > %d)\n", received, rsize);
1591 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1594 int n = copy_to_iter(dataptr, received, to);
1596 if (n != received) {
1598 p9_req_put(clnt, req);
1602 iov_iter_revert(to, count - received - iov_iter_count(to));
1604 p9_req_put(clnt, req);
1607 EXPORT_SYMBOL(p9_client_read_once);
1610 p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
1612 struct p9_client *clnt = fid->clnt;
1613 struct p9_req_t *req;
1617 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1618 fid->fid, offset, iov_iter_count(from));
1620 while (iov_iter_count(from)) {
1621 int count = iov_iter_count(from);
1622 int rsize = fid->iounit;
1625 if (!rsize || rsize > clnt->msize - P9_IOHDRSZ)
1626 rsize = clnt->msize - P9_IOHDRSZ;
1631 /* Don't bother zerocopy for small IO (< 1024) */
1632 if (clnt->trans_mod->zc_request && rsize > 1024) {
1633 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1634 rsize, P9_ZC_HDR_SZ, "dqd",
1635 fid->fid, offset, rsize);
1637 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1638 offset, rsize, from);
1641 iov_iter_revert(from, count - iov_iter_count(from));
1642 *err = PTR_ERR(req);
1646 *err = p9pdu_readf(&req->rc, clnt->proto_version, "d", &written);
1648 iov_iter_revert(from, count - iov_iter_count(from));
1649 trace_9p_protocol_dump(clnt, &req->rc);
1650 p9_req_put(clnt, req);
1653 if (rsize < written) {
1654 pr_err("bogus RWRITE count (%d > %d)\n", written, rsize);
1658 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1660 p9_req_put(clnt, req);
1661 iov_iter_revert(from, count - written - iov_iter_count(from));
1667 EXPORT_SYMBOL(p9_client_write);
1669 struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1672 struct p9_client *clnt;
1673 struct p9_wstat *ret;
1674 struct p9_req_t *req;
1677 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1679 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
1681 return ERR_PTR(-ENOMEM);
1686 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1692 err = p9pdu_readf(&req->rc, clnt->proto_version, "wS", &ignored, ret);
1694 trace_9p_protocol_dump(clnt, &req->rc);
1695 p9_req_put(clnt, req);
1699 p9_debug(P9_DEBUG_9P,
1700 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1701 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1702 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1703 "<<< uid=%d gid=%d n_muid=%d\n",
1704 ret->size, ret->type, ret->dev, ret->qid.type, ret->qid.path,
1705 ret->qid.version, ret->mode,
1706 ret->atime, ret->mtime, ret->length,
1707 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
1708 from_kuid(&init_user_ns, ret->n_uid),
1709 from_kgid(&init_user_ns, ret->n_gid),
1710 from_kuid(&init_user_ns, ret->n_muid));
1712 p9_req_put(clnt, req);
1717 return ERR_PTR(err);
1719 EXPORT_SYMBOL(p9_client_stat);
1721 struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1725 struct p9_client *clnt;
1726 struct p9_stat_dotl *ret;
1727 struct p9_req_t *req;
1729 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
1730 fid->fid, request_mask);
1732 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
1734 return ERR_PTR(-ENOMEM);
1739 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1745 err = p9pdu_readf(&req->rc, clnt->proto_version, "A", ret);
1747 trace_9p_protocol_dump(clnt, &req->rc);
1748 p9_req_put(clnt, req);
1752 p9_debug(P9_DEBUG_9P, "<<< RGETATTR st_result_mask=%lld\n"
1753 "<<< qid=%x.%llx.%x\n"
1754 "<<< st_mode=%8.8x st_nlink=%llu\n"
1755 "<<< st_uid=%d st_gid=%d\n"
1756 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1757 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1758 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1759 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1760 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1761 "<<< st_gen=%lld st_data_version=%lld\n",
1762 ret->st_result_mask,
1763 ret->qid.type, ret->qid.path, ret->qid.version,
1764 ret->st_mode, ret->st_nlink,
1765 from_kuid(&init_user_ns, ret->st_uid),
1766 from_kgid(&init_user_ns, ret->st_gid),
1767 ret->st_rdev, ret->st_size, ret->st_blksize, ret->st_blocks,
1768 ret->st_atime_sec, ret->st_atime_nsec,
1769 ret->st_mtime_sec, ret->st_mtime_nsec,
1770 ret->st_ctime_sec, ret->st_ctime_nsec,
1771 ret->st_btime_sec, ret->st_btime_nsec,
1772 ret->st_gen, ret->st_data_version);
1774 p9_req_put(clnt, req);
1779 return ERR_PTR(err);
1781 EXPORT_SYMBOL(p9_client_getattr_dotl);
1783 static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
1787 /* NOTE: size shouldn't include its own length */
1788 /* size[2] type[2] dev[4] qid[13] */
1789 /* mode[4] atime[4] mtime[4] length[8]*/
1790 /* name[s] uid[s] gid[s] muid[s] */
1791 ret = 2 + 4 + 13 + 4 + 4 + 4 + 8 + 2 + 2 + 2 + 2;
1794 ret += strlen(wst->name);
1796 ret += strlen(wst->uid);
1798 ret += strlen(wst->gid);
1800 ret += strlen(wst->muid);
1802 if (proto_version == p9_proto_2000u ||
1803 proto_version == p9_proto_2000L) {
1804 /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1805 ret += 2 + 4 + 4 + 4;
1807 ret += strlen(wst->extension);
1813 int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1816 struct p9_req_t *req;
1817 struct p9_client *clnt;
1821 wst->size = p9_client_statsize(wst, clnt->proto_version);
1822 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n",
1824 p9_debug(P9_DEBUG_9P,
1825 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1826 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1827 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1828 " uid=%d gid=%d n_muid=%d\n",
1829 wst->size, wst->type, wst->dev, wst->qid.type,
1830 wst->qid.path, wst->qid.version,
1831 wst->mode, wst->atime, wst->mtime, wst->length,
1832 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
1833 from_kuid(&init_user_ns, wst->n_uid),
1834 from_kgid(&init_user_ns, wst->n_gid),
1835 from_kuid(&init_user_ns, wst->n_muid));
1837 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS",
1838 fid->fid, wst->size + 2, wst);
1844 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
1846 p9_req_put(clnt, req);
1850 EXPORT_SYMBOL(p9_client_wstat);
1852 int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1855 struct p9_req_t *req;
1856 struct p9_client *clnt;
1860 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1861 p9_debug(P9_DEBUG_9P, " valid=%x mode=%x uid=%d gid=%d size=%lld\n",
1862 p9attr->valid, p9attr->mode,
1863 from_kuid(&init_user_ns, p9attr->uid),
1864 from_kgid(&init_user_ns, p9attr->gid),
1866 p9_debug(P9_DEBUG_9P, " atime_sec=%lld atime_nsec=%lld\n",
1867 p9attr->atime_sec, p9attr->atime_nsec);
1868 p9_debug(P9_DEBUG_9P, " mtime_sec=%lld mtime_nsec=%lld\n",
1869 p9attr->mtime_sec, p9attr->mtime_nsec);
1871 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1877 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
1878 p9_req_put(clnt, req);
1882 EXPORT_SYMBOL(p9_client_setattr);
1884 int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1887 struct p9_req_t *req;
1888 struct p9_client *clnt;
1893 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
1895 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1901 err = p9pdu_readf(&req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1902 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1903 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1905 trace_9p_protocol_dump(clnt, &req->rc);
1906 p9_req_put(clnt, req);
1910 p9_debug(P9_DEBUG_9P,
1911 "<<< RSTATFS fid %d type 0x%x bsize %u blocks %llu bfree %llu bavail %llu files %llu ffree %llu fsid %llu namelen %u\n",
1912 fid->fid, sb->type, sb->bsize, sb->blocks, sb->bfree,
1913 sb->bavail, sb->files, sb->ffree, sb->fsid, sb->namelen);
1915 p9_req_put(clnt, req);
1919 EXPORT_SYMBOL(p9_client_statfs);
1921 int p9_client_rename(struct p9_fid *fid,
1922 struct p9_fid *newdirfid, const char *name)
1925 struct p9_req_t *req;
1926 struct p9_client *clnt;
1931 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
1932 fid->fid, newdirfid->fid, name);
1934 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1935 newdirfid->fid, name);
1941 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
1943 p9_req_put(clnt, req);
1947 EXPORT_SYMBOL(p9_client_rename);
1949 int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1950 struct p9_fid *newdirfid, const char *new_name)
1953 struct p9_req_t *req;
1954 struct p9_client *clnt;
1957 clnt = olddirfid->clnt;
1959 p9_debug(P9_DEBUG_9P,
1960 ">>> TRENAMEAT olddirfid %d old name %s newdirfid %d new name %s\n",
1961 olddirfid->fid, old_name, newdirfid->fid, new_name);
1963 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1964 old_name, newdirfid->fid, new_name);
1970 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
1971 newdirfid->fid, new_name);
1973 p9_req_put(clnt, req);
1977 EXPORT_SYMBOL(p9_client_renameat);
1979 /* An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1981 struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1982 const char *attr_name, u64 *attr_size)
1985 struct p9_req_t *req;
1986 struct p9_client *clnt;
1987 struct p9_fid *attr_fid;
1990 clnt = file_fid->clnt;
1991 attr_fid = p9_fid_create(clnt);
1996 p9_debug(P9_DEBUG_9P,
1997 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
1998 file_fid->fid, attr_fid->fid, attr_name);
2000 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2001 file_fid->fid, attr_fid->fid, attr_name);
2006 err = p9pdu_readf(&req->rc, clnt->proto_version, "q", attr_size);
2008 trace_9p_protocol_dump(clnt, &req->rc);
2009 p9_req_put(clnt, req);
2012 p9_req_put(clnt, req);
2013 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
2014 attr_fid->fid, *attr_size);
2017 p9_fid_put(attr_fid);
2020 if (attr_fid && attr_fid != file_fid)
2021 p9_fid_destroy(attr_fid);
2023 return ERR_PTR(err);
2025 EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2027 int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2028 u64 attr_size, int flags)
2031 struct p9_req_t *req;
2032 struct p9_client *clnt;
2034 p9_debug(P9_DEBUG_9P,
2035 ">>> TXATTRCREATE fid %d name %s size %llu flag %d\n",
2036 fid->fid, name, attr_size, flags);
2039 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2040 fid->fid, name, attr_size, flags);
2045 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
2046 p9_req_put(clnt, req);
2050 EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2052 int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2054 int err, rsize, non_zc = 0;
2055 struct p9_client *clnt;
2056 struct p9_req_t *req;
2058 struct kvec kv = {.iov_base = data, .iov_len = count};
2061 iov_iter_kvec(&to, ITER_DEST, &kv, 1, count);
2063 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
2064 fid->fid, offset, count);
2069 rsize = fid->iounit;
2070 if (!rsize || rsize > clnt->msize - P9_READDIRHDRSZ)
2071 rsize = clnt->msize - P9_READDIRHDRSZ;
2076 /* Don't bother zerocopy for small IO (< 1024) */
2077 if (clnt->trans_mod->zc_request && rsize > 1024) {
2078 /* response header len is 11
2079 * PDU Header(7) + IO Size (4)
2081 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2082 11, "dqd", fid->fid, offset, rsize);
2085 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
2093 err = p9pdu_readf(&req->rc, clnt->proto_version, "D", &count, &dataptr);
2095 trace_9p_protocol_dump(clnt, &req->rc);
2096 goto free_and_error;
2098 if (rsize < count) {
2099 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2103 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
2106 memmove(data, dataptr, count);
2108 p9_req_put(clnt, req);
2112 p9_req_put(clnt, req);
2116 EXPORT_SYMBOL(p9_client_readdir);
2118 int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
2119 dev_t rdev, kgid_t gid, struct p9_qid *qid)
2122 struct p9_client *clnt;
2123 struct p9_req_t *req;
2127 p9_debug(P9_DEBUG_9P,
2128 ">>> TMKNOD fid %d name %s mode %d major %d minor %d\n",
2129 fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2130 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
2131 MAJOR(rdev), MINOR(rdev), gid);
2133 return PTR_ERR(req);
2135 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2137 trace_9p_protocol_dump(clnt, &req->rc);
2140 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n",
2141 qid->type, qid->path, qid->version);
2144 p9_req_put(clnt, req);
2147 EXPORT_SYMBOL(p9_client_mknod_dotl);
2149 int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
2150 kgid_t gid, struct p9_qid *qid)
2153 struct p9_client *clnt;
2154 struct p9_req_t *req;
2158 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2159 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2160 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg",
2161 fid->fid, name, mode, gid);
2163 return PTR_ERR(req);
2165 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2167 trace_9p_protocol_dump(clnt, &req->rc);
2170 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
2171 qid->path, qid->version);
2174 p9_req_put(clnt, req);
2177 EXPORT_SYMBOL(p9_client_mkdir_dotl);
2179 int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2182 struct p9_client *clnt;
2183 struct p9_req_t *req;
2187 p9_debug(P9_DEBUG_9P,
2188 ">>> TLOCK fid %d type %i flags %d start %lld length %lld proc_id %d client_id %s\n",
2189 fid->fid, flock->type, flock->flags, flock->start,
2190 flock->length, flock->proc_id, flock->client_id);
2192 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2193 flock->flags, flock->start, flock->length,
2194 flock->proc_id, flock->client_id);
2197 return PTR_ERR(req);
2199 err = p9pdu_readf(&req->rc, clnt->proto_version, "b", status);
2201 trace_9p_protocol_dump(clnt, &req->rc);
2204 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
2206 p9_req_put(clnt, req);
2209 EXPORT_SYMBOL(p9_client_lock_dotl);
2211 int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2214 struct p9_client *clnt;
2215 struct p9_req_t *req;
2219 p9_debug(P9_DEBUG_9P,
2220 ">>> TGETLOCK fid %d, type %i start %lld length %lld proc_id %d client_id %s\n",
2221 fid->fid, glock->type, glock->start, glock->length,
2222 glock->proc_id, glock->client_id);
2224 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid,
2225 glock->type, glock->start, glock->length,
2226 glock->proc_id, glock->client_id);
2229 return PTR_ERR(req);
2231 err = p9pdu_readf(&req->rc, clnt->proto_version, "bqqds", &glock->type,
2232 &glock->start, &glock->length, &glock->proc_id,
2235 trace_9p_protocol_dump(clnt, &req->rc);
2238 p9_debug(P9_DEBUG_9P,
2239 "<<< RGETLOCK type %i start %lld length %lld proc_id %d client_id %s\n",
2240 glock->type, glock->start, glock->length,
2241 glock->proc_id, glock->client_id);
2243 p9_req_put(clnt, req);
2246 EXPORT_SYMBOL(p9_client_getlock_dotl);
2248 int p9_client_readlink(struct p9_fid *fid, char **target)
2251 struct p9_client *clnt;
2252 struct p9_req_t *req;
2256 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
2258 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2260 return PTR_ERR(req);
2262 err = p9pdu_readf(&req->rc, clnt->proto_version, "s", target);
2264 trace_9p_protocol_dump(clnt, &req->rc);
2267 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
2269 p9_req_put(clnt, req);
2272 EXPORT_SYMBOL(p9_client_readlink);
2274 int __init p9_client_init(void)
2276 p9_req_cache = KMEM_CACHE(p9_req_t, SLAB_TYPESAFE_BY_RCU);
2277 return p9_req_cache ? 0 : -ENOMEM;
2280 void __exit p9_client_exit(void)
2282 kmem_cache_destroy(p9_req_cache);