1 // SPDX-License-Identifier: GPL-2.0-only
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/module.h>
12 #include <linux/errno.h>
14 #include <linux/poll.h>
15 #include <linux/idr.h>
16 #include <linux/mutex.h>
17 #include <linux/slab.h>
18 #include <linux/sched/signal.h>
19 #include <linux/uaccess.h>
20 #include <linux/uio.h>
21 #include <net/9p/9p.h>
22 #include <linux/parser.h>
23 #include <linux/seq_file.h>
24 #include <net/9p/client.h>
25 #include <net/9p/transport.h>
28 #define CREATE_TRACE_POINTS
29 #include <trace/events/9p.h>
31 /* 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;
978 clnt = kmalloc(sizeof(*clnt), GFP_KERNEL);
980 return ERR_PTR(-ENOMEM);
982 clnt->trans_mod = NULL;
984 clnt->fcall_cache = NULL;
986 client_id = utsname()->nodename;
987 memcpy(clnt->name, client_id, strlen(client_id) + 1);
989 spin_lock_init(&clnt->lock);
990 idr_init(&clnt->fids);
991 idr_init(&clnt->reqs);
993 err = parse_opts(options, clnt);
997 if (!clnt->trans_mod)
998 clnt->trans_mod = v9fs_get_default_trans();
1000 if (!clnt->trans_mod) {
1001 err = -EPROTONOSUPPORT;
1002 p9_debug(P9_DEBUG_ERROR,
1003 "No transport defined or default transport\n");
1007 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1008 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
1010 err = clnt->trans_mod->create(clnt, dev_name, options);
1014 if (clnt->msize > clnt->trans_mod->maxsize) {
1015 clnt->msize = clnt->trans_mod->maxsize;
1016 pr_info("Limiting 'msize' to %d as this is the maximum "
1017 "supported by transport %s\n",
1018 clnt->msize, clnt->trans_mod->name
1022 if (clnt->msize < 4096) {
1023 p9_debug(P9_DEBUG_ERROR,
1024 "Please specify a msize of at least 4k\n");
1029 err = p9_client_version(clnt);
1033 /* P9_HDRSZ + 4 is the smallest packet header we can have that is
1034 * followed by data accessed from userspace by read
1037 kmem_cache_create_usercopy("9p-fcall-cache", clnt->msize,
1039 clnt->msize - (P9_HDRSZ + 4),
1045 clnt->trans_mod->close(clnt);
1047 v9fs_put_trans(clnt->trans_mod);
1050 return ERR_PTR(err);
1052 EXPORT_SYMBOL(p9_client_create);
1054 void p9_client_destroy(struct p9_client *clnt)
1059 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
1061 if (clnt->trans_mod)
1062 clnt->trans_mod->close(clnt);
1064 v9fs_put_trans(clnt->trans_mod);
1066 idr_for_each_entry(&clnt->fids, fid, id) {
1067 pr_info("Found fid %d not clunked\n", fid->fid);
1068 p9_fid_destroy(fid);
1071 p9_tag_cleanup(clnt);
1073 kmem_cache_destroy(clnt->fcall_cache);
1076 EXPORT_SYMBOL(p9_client_destroy);
1078 void p9_client_disconnect(struct p9_client *clnt)
1080 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1081 clnt->status = Disconnected;
1083 EXPORT_SYMBOL(p9_client_disconnect);
1085 void p9_client_begin_disconnect(struct p9_client *clnt)
1087 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1088 clnt->status = BeginDisconnect;
1090 EXPORT_SYMBOL(p9_client_begin_disconnect);
1092 struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
1093 const char *uname, kuid_t n_uname,
1097 struct p9_req_t *req;
1101 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1102 afid ? afid->fid : -1, uname, aname);
1103 fid = p9_fid_create(clnt);
1110 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
1111 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1117 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", &qid);
1119 trace_9p_protocol_dump(clnt, &req->rc);
1120 p9_req_put(clnt, req);
1124 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1125 qid.type, qid.path, qid.version);
1127 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1129 p9_req_put(clnt, req);
1134 p9_fid_destroy(fid);
1135 return ERR_PTR(err);
1137 EXPORT_SYMBOL(p9_client_attach);
1139 struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1140 const unsigned char * const *wnames, int clone)
1143 struct p9_client *clnt;
1145 struct p9_qid *wqids;
1146 struct p9_req_t *req;
1150 clnt = oldfid->clnt;
1152 fid = p9_fid_create(clnt);
1158 fid->uid = oldfid->uid;
1163 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1164 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
1165 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1172 err = p9pdu_readf(&req->rc, clnt->proto_version, "R", &nwqids, &wqids);
1174 trace_9p_protocol_dump(clnt, &req->rc);
1175 p9_req_put(clnt, req);
1178 p9_req_put(clnt, req);
1180 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
1182 if (nwqids != nwname) {
1187 for (count = 0; count < nwqids; count++)
1188 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
1189 count, wqids[count].type,
1191 wqids[count].version);
1194 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
1196 memmove(&fid->qid, &oldfid->qid, sizeof(struct p9_qid));
1207 if (fid && fid != oldfid)
1208 p9_fid_destroy(fid);
1210 return ERR_PTR(err);
1212 EXPORT_SYMBOL(p9_client_walk);
1214 int p9_client_open(struct p9_fid *fid, int mode)
1217 struct p9_client *clnt;
1218 struct p9_req_t *req;
1223 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
1224 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1226 if (fid->mode != -1)
1229 if (p9_is_proto_dotl(clnt))
1230 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode & P9L_MODE_MASK);
1232 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode & P9L_MODE_MASK);
1238 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1240 trace_9p_protocol_dump(clnt, &req->rc);
1241 goto free_and_error;
1244 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
1245 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1246 qid.path, qid.version, iounit);
1248 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1250 fid->iounit = iounit;
1253 p9_req_put(clnt, req);
1257 EXPORT_SYMBOL(p9_client_open);
1259 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags,
1260 u32 mode, kgid_t gid, struct p9_qid *qid)
1263 struct p9_client *clnt;
1264 struct p9_req_t *req;
1267 p9_debug(P9_DEBUG_9P,
1268 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1269 ofid->fid, name, flags, mode,
1270 from_kgid(&init_user_ns, gid));
1273 if (ofid->mode != -1)
1276 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
1277 mode & P9L_MODE_MASK, gid);
1283 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", qid, &iounit);
1285 trace_9p_protocol_dump(clnt, &req->rc);
1286 goto free_and_error;
1289 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1290 qid->type, qid->path, qid->version, iounit);
1292 memmove(&ofid->qid, qid, sizeof(struct p9_qid));
1294 ofid->iounit = iounit;
1297 p9_req_put(clnt, req);
1301 EXPORT_SYMBOL(p9_client_create_dotl);
1303 int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
1307 struct p9_client *clnt;
1308 struct p9_req_t *req;
1312 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1313 fid->fid, name, perm, mode);
1316 if (fid->mode != -1)
1319 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1320 mode & P9L_MODE_MASK, extension);
1326 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1328 trace_9p_protocol_dump(clnt, &req->rc);
1329 goto free_and_error;
1332 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1333 qid.type, qid.path, qid.version, iounit);
1335 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1337 fid->iounit = iounit;
1340 p9_req_put(clnt, req);
1344 EXPORT_SYMBOL(p9_client_fcreate);
1346 int p9_client_symlink(struct p9_fid *dfid, const char *name,
1347 const char *symtgt, kgid_t gid, struct p9_qid *qid)
1350 struct p9_client *clnt;
1351 struct p9_req_t *req;
1353 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1354 dfid->fid, name, symtgt);
1357 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
1364 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
1366 trace_9p_protocol_dump(clnt, &req->rc);
1367 goto free_and_error;
1370 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
1371 qid->type, qid->path, qid->version);
1374 p9_req_put(clnt, req);
1378 EXPORT_SYMBOL(p9_client_symlink);
1380 int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
1382 struct p9_client *clnt;
1383 struct p9_req_t *req;
1385 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
1386 dfid->fid, oldfid->fid, newname);
1388 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1391 return PTR_ERR(req);
1393 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
1394 p9_req_put(clnt, req);
1397 EXPORT_SYMBOL(p9_client_link);
1399 int p9_client_fsync(struct p9_fid *fid, int datasync)
1402 struct p9_client *clnt;
1403 struct p9_req_t *req;
1405 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
1406 fid->fid, datasync);
1409 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
1415 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
1417 p9_req_put(clnt, req);
1422 EXPORT_SYMBOL(p9_client_fsync);
1424 int p9_client_clunk(struct p9_fid *fid)
1427 struct p9_client *clnt;
1428 struct p9_req_t *req;
1432 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n",
1436 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1442 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
1444 p9_req_put(clnt, req);
1446 /* Fid is not valid even after a failed clunk
1447 * If interrupted, retry once then give up and
1448 * leak fid until umount.
1450 if (err == -ERESTARTSYS) {
1454 p9_fid_destroy(fid);
1458 EXPORT_SYMBOL(p9_client_clunk);
1460 int p9_client_remove(struct p9_fid *fid)
1463 struct p9_client *clnt;
1464 struct p9_req_t *req;
1466 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
1469 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1475 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
1477 p9_req_put(clnt, req);
1479 if (err == -ERESTARTSYS)
1482 p9_fid_destroy(fid);
1485 EXPORT_SYMBOL(p9_client_remove);
1487 int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1490 struct p9_req_t *req;
1491 struct p9_client *clnt;
1493 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
1494 dfid->fid, name, flags);
1497 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1502 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
1504 p9_req_put(clnt, req);
1508 EXPORT_SYMBOL(p9_client_unlinkat);
1511 p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
1516 while (iov_iter_count(to)) {
1519 count = p9_client_read_once(fid, offset, to, err);
1527 EXPORT_SYMBOL(p9_client_read);
1530 p9_client_read_once(struct p9_fid *fid, u64 offset, struct iov_iter *to,
1533 struct p9_client *clnt = fid->clnt;
1534 struct p9_req_t *req;
1535 int count = iov_iter_count(to);
1536 int rsize, received, non_zc = 0;
1540 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %zu\n",
1541 fid->fid, offset, iov_iter_count(to));
1543 rsize = fid->iounit;
1544 if (!rsize || rsize > clnt->msize - P9_IOHDRSZ)
1545 rsize = clnt->msize - P9_IOHDRSZ;
1550 /* Don't bother zerocopy for small IO (< 1024) */
1551 if (clnt->trans_mod->zc_request && rsize > 1024) {
1552 /* response header len is 11
1553 * PDU Header(7) + IO Size (4)
1555 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1556 0, 11, "dqd", fid->fid,
1560 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1564 *err = PTR_ERR(req);
1566 iov_iter_revert(to, count - iov_iter_count(to));
1570 *err = p9pdu_readf(&req->rc, clnt->proto_version,
1571 "D", &received, &dataptr);
1574 iov_iter_revert(to, count - iov_iter_count(to));
1575 trace_9p_protocol_dump(clnt, &req->rc);
1576 p9_req_put(clnt, req);
1579 if (rsize < received) {
1580 pr_err("bogus RREAD count (%d > %d)\n", received, rsize);
1584 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1587 int n = copy_to_iter(dataptr, received, to);
1589 if (n != received) {
1591 p9_req_put(clnt, req);
1595 iov_iter_revert(to, count - received - iov_iter_count(to));
1597 p9_req_put(clnt, req);
1600 EXPORT_SYMBOL(p9_client_read_once);
1603 p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
1605 struct p9_client *clnt = fid->clnt;
1606 struct p9_req_t *req;
1610 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1611 fid->fid, offset, iov_iter_count(from));
1613 while (iov_iter_count(from)) {
1614 int count = iov_iter_count(from);
1615 int rsize = fid->iounit;
1618 if (!rsize || rsize > clnt->msize - P9_IOHDRSZ)
1619 rsize = clnt->msize - P9_IOHDRSZ;
1624 /* Don't bother zerocopy for small IO (< 1024) */
1625 if (clnt->trans_mod->zc_request && rsize > 1024) {
1626 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1627 rsize, P9_ZC_HDR_SZ, "dqd",
1628 fid->fid, offset, rsize);
1630 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1631 offset, rsize, from);
1634 iov_iter_revert(from, count - iov_iter_count(from));
1635 *err = PTR_ERR(req);
1639 *err = p9pdu_readf(&req->rc, clnt->proto_version, "d", &written);
1641 iov_iter_revert(from, count - iov_iter_count(from));
1642 trace_9p_protocol_dump(clnt, &req->rc);
1643 p9_req_put(clnt, req);
1646 if (rsize < written) {
1647 pr_err("bogus RWRITE count (%d > %d)\n", written, rsize);
1651 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1653 p9_req_put(clnt, req);
1654 iov_iter_revert(from, count - written - iov_iter_count(from));
1660 EXPORT_SYMBOL(p9_client_write);
1662 struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1665 struct p9_client *clnt;
1666 struct p9_wstat *ret;
1667 struct p9_req_t *req;
1670 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1672 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
1674 return ERR_PTR(-ENOMEM);
1678 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1684 err = p9pdu_readf(&req->rc, clnt->proto_version, "wS", &ignored, ret);
1686 trace_9p_protocol_dump(clnt, &req->rc);
1687 p9_req_put(clnt, req);
1691 p9_debug(P9_DEBUG_9P,
1692 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1693 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1694 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1695 "<<< uid=%d gid=%d n_muid=%d\n",
1696 ret->size, ret->type, ret->dev, ret->qid.type, ret->qid.path,
1697 ret->qid.version, ret->mode,
1698 ret->atime, ret->mtime, ret->length,
1699 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
1700 from_kuid(&init_user_ns, ret->n_uid),
1701 from_kgid(&init_user_ns, ret->n_gid),
1702 from_kuid(&init_user_ns, ret->n_muid));
1704 p9_req_put(clnt, req);
1709 return ERR_PTR(err);
1711 EXPORT_SYMBOL(p9_client_stat);
1713 struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1717 struct p9_client *clnt;
1718 struct p9_stat_dotl *ret;
1719 struct p9_req_t *req;
1721 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
1722 fid->fid, request_mask);
1724 ret = kmalloc(sizeof(*ret), GFP_KERNEL);
1726 return ERR_PTR(-ENOMEM);
1730 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1736 err = p9pdu_readf(&req->rc, clnt->proto_version, "A", ret);
1738 trace_9p_protocol_dump(clnt, &req->rc);
1739 p9_req_put(clnt, req);
1743 p9_debug(P9_DEBUG_9P, "<<< RGETATTR st_result_mask=%lld\n"
1744 "<<< qid=%x.%llx.%x\n"
1745 "<<< st_mode=%8.8x st_nlink=%llu\n"
1746 "<<< st_uid=%d st_gid=%d\n"
1747 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1748 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1749 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1750 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1751 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1752 "<<< st_gen=%lld st_data_version=%lld\n",
1753 ret->st_result_mask,
1754 ret->qid.type, ret->qid.path, ret->qid.version,
1755 ret->st_mode, ret->st_nlink,
1756 from_kuid(&init_user_ns, ret->st_uid),
1757 from_kgid(&init_user_ns, ret->st_gid),
1758 ret->st_rdev, ret->st_size, ret->st_blksize, ret->st_blocks,
1759 ret->st_atime_sec, ret->st_atime_nsec,
1760 ret->st_mtime_sec, ret->st_mtime_nsec,
1761 ret->st_ctime_sec, ret->st_ctime_nsec,
1762 ret->st_btime_sec, ret->st_btime_nsec,
1763 ret->st_gen, ret->st_data_version);
1765 p9_req_put(clnt, req);
1770 return ERR_PTR(err);
1772 EXPORT_SYMBOL(p9_client_getattr_dotl);
1774 static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
1778 /* NOTE: size shouldn't include its own length */
1779 /* size[2] type[2] dev[4] qid[13] */
1780 /* mode[4] atime[4] mtime[4] length[8]*/
1781 /* name[s] uid[s] gid[s] muid[s] */
1782 ret = 2 + 4 + 13 + 4 + 4 + 4 + 8 + 2 + 2 + 2 + 2;
1785 ret += strlen(wst->name);
1787 ret += strlen(wst->uid);
1789 ret += strlen(wst->gid);
1791 ret += strlen(wst->muid);
1793 if (proto_version == p9_proto_2000u ||
1794 proto_version == p9_proto_2000L) {
1795 /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1796 ret += 2 + 4 + 4 + 4;
1798 ret += strlen(wst->extension);
1804 int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1807 struct p9_req_t *req;
1808 struct p9_client *clnt;
1811 wst->size = p9_client_statsize(wst, clnt->proto_version);
1812 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n",
1814 p9_debug(P9_DEBUG_9P,
1815 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1816 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1817 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1818 " uid=%d gid=%d n_muid=%d\n",
1819 wst->size, wst->type, wst->dev, wst->qid.type,
1820 wst->qid.path, wst->qid.version,
1821 wst->mode, wst->atime, wst->mtime, wst->length,
1822 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
1823 from_kuid(&init_user_ns, wst->n_uid),
1824 from_kgid(&init_user_ns, wst->n_gid),
1825 from_kuid(&init_user_ns, wst->n_muid));
1827 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS",
1828 fid->fid, wst->size + 2, wst);
1834 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
1836 p9_req_put(clnt, req);
1840 EXPORT_SYMBOL(p9_client_wstat);
1842 int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1845 struct p9_req_t *req;
1846 struct p9_client *clnt;
1849 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1850 p9_debug(P9_DEBUG_9P, " valid=%x mode=%x uid=%d gid=%d size=%lld\n",
1851 p9attr->valid, p9attr->mode,
1852 from_kuid(&init_user_ns, p9attr->uid),
1853 from_kgid(&init_user_ns, p9attr->gid),
1855 p9_debug(P9_DEBUG_9P, " atime_sec=%lld atime_nsec=%lld\n",
1856 p9attr->atime_sec, p9attr->atime_nsec);
1857 p9_debug(P9_DEBUG_9P, " mtime_sec=%lld mtime_nsec=%lld\n",
1858 p9attr->mtime_sec, p9attr->mtime_nsec);
1860 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1866 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
1867 p9_req_put(clnt, req);
1871 EXPORT_SYMBOL(p9_client_setattr);
1873 int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1876 struct p9_req_t *req;
1877 struct p9_client *clnt;
1881 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
1883 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1889 err = p9pdu_readf(&req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1890 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1891 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1893 trace_9p_protocol_dump(clnt, &req->rc);
1894 p9_req_put(clnt, req);
1898 p9_debug(P9_DEBUG_9P,
1899 "<<< RSTATFS fid %d type 0x%x bsize %u blocks %llu bfree %llu bavail %llu files %llu ffree %llu fsid %llu namelen %u\n",
1900 fid->fid, sb->type, sb->bsize, sb->blocks, sb->bfree,
1901 sb->bavail, sb->files, sb->ffree, sb->fsid, sb->namelen);
1903 p9_req_put(clnt, req);
1907 EXPORT_SYMBOL(p9_client_statfs);
1909 int p9_client_rename(struct p9_fid *fid,
1910 struct p9_fid *newdirfid, const char *name)
1913 struct p9_req_t *req;
1914 struct p9_client *clnt;
1918 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
1919 fid->fid, newdirfid->fid, name);
1921 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1922 newdirfid->fid, name);
1928 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
1930 p9_req_put(clnt, req);
1934 EXPORT_SYMBOL(p9_client_rename);
1936 int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1937 struct p9_fid *newdirfid, const char *new_name)
1940 struct p9_req_t *req;
1941 struct p9_client *clnt;
1943 clnt = olddirfid->clnt;
1945 p9_debug(P9_DEBUG_9P,
1946 ">>> TRENAMEAT olddirfid %d old name %s newdirfid %d new name %s\n",
1947 olddirfid->fid, old_name, newdirfid->fid, new_name);
1949 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1950 old_name, newdirfid->fid, new_name);
1956 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
1957 newdirfid->fid, new_name);
1959 p9_req_put(clnt, req);
1963 EXPORT_SYMBOL(p9_client_renameat);
1965 /* An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1967 struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1968 const char *attr_name, u64 *attr_size)
1971 struct p9_req_t *req;
1972 struct p9_client *clnt;
1973 struct p9_fid *attr_fid;
1975 clnt = file_fid->clnt;
1976 attr_fid = p9_fid_create(clnt);
1981 p9_debug(P9_DEBUG_9P,
1982 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
1983 file_fid->fid, attr_fid->fid, attr_name);
1985 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
1986 file_fid->fid, attr_fid->fid, attr_name);
1991 err = p9pdu_readf(&req->rc, clnt->proto_version, "q", attr_size);
1993 trace_9p_protocol_dump(clnt, &req->rc);
1994 p9_req_put(clnt, req);
1997 p9_req_put(clnt, req);
1998 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
1999 attr_fid->fid, *attr_size);
2002 p9_fid_put(attr_fid);
2005 if (attr_fid && attr_fid != file_fid)
2006 p9_fid_destroy(attr_fid);
2008 return ERR_PTR(err);
2010 EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2012 int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2013 u64 attr_size, int flags)
2016 struct p9_req_t *req;
2017 struct p9_client *clnt;
2019 p9_debug(P9_DEBUG_9P,
2020 ">>> TXATTRCREATE fid %d name %s size %llu flag %d\n",
2021 fid->fid, name, attr_size, flags);
2023 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2024 fid->fid, name, attr_size, flags);
2029 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
2030 p9_req_put(clnt, req);
2034 EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2036 int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2038 int err, rsize, non_zc = 0;
2039 struct p9_client *clnt;
2040 struct p9_req_t *req;
2042 struct kvec kv = {.iov_base = data, .iov_len = count};
2045 iov_iter_kvec(&to, ITER_DEST, &kv, 1, count);
2047 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
2048 fid->fid, offset, count);
2052 rsize = fid->iounit;
2053 if (!rsize || rsize > clnt->msize - P9_READDIRHDRSZ)
2054 rsize = clnt->msize - P9_READDIRHDRSZ;
2059 /* Don't bother zerocopy for small IO (< 1024) */
2060 if (clnt->trans_mod->zc_request && rsize > 1024) {
2061 /* response header len is 11
2062 * PDU Header(7) + IO Size (4)
2064 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2065 11, "dqd", fid->fid, offset, rsize);
2068 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
2076 err = p9pdu_readf(&req->rc, clnt->proto_version, "D", &count, &dataptr);
2078 trace_9p_protocol_dump(clnt, &req->rc);
2079 goto free_and_error;
2081 if (rsize < count) {
2082 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2086 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
2089 memmove(data, dataptr, count);
2091 p9_req_put(clnt, req);
2095 p9_req_put(clnt, req);
2099 EXPORT_SYMBOL(p9_client_readdir);
2101 int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
2102 dev_t rdev, kgid_t gid, struct p9_qid *qid)
2105 struct p9_client *clnt;
2106 struct p9_req_t *req;
2109 p9_debug(P9_DEBUG_9P,
2110 ">>> TMKNOD fid %d name %s mode %d major %d minor %d\n",
2111 fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2112 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
2113 MAJOR(rdev), MINOR(rdev), gid);
2115 return PTR_ERR(req);
2117 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2119 trace_9p_protocol_dump(clnt, &req->rc);
2122 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n",
2123 qid->type, qid->path, qid->version);
2126 p9_req_put(clnt, req);
2129 EXPORT_SYMBOL(p9_client_mknod_dotl);
2131 int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
2132 kgid_t gid, struct p9_qid *qid)
2135 struct p9_client *clnt;
2136 struct p9_req_t *req;
2139 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2140 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2141 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg",
2142 fid->fid, name, mode, gid);
2144 return PTR_ERR(req);
2146 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2148 trace_9p_protocol_dump(clnt, &req->rc);
2151 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
2152 qid->path, qid->version);
2155 p9_req_put(clnt, req);
2158 EXPORT_SYMBOL(p9_client_mkdir_dotl);
2160 int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2163 struct p9_client *clnt;
2164 struct p9_req_t *req;
2167 p9_debug(P9_DEBUG_9P,
2168 ">>> TLOCK fid %d type %i flags %d start %lld length %lld proc_id %d client_id %s\n",
2169 fid->fid, flock->type, flock->flags, flock->start,
2170 flock->length, flock->proc_id, flock->client_id);
2172 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2173 flock->flags, flock->start, flock->length,
2174 flock->proc_id, flock->client_id);
2177 return PTR_ERR(req);
2179 err = p9pdu_readf(&req->rc, clnt->proto_version, "b", status);
2181 trace_9p_protocol_dump(clnt, &req->rc);
2184 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
2186 p9_req_put(clnt, req);
2189 EXPORT_SYMBOL(p9_client_lock_dotl);
2191 int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2194 struct p9_client *clnt;
2195 struct p9_req_t *req;
2198 p9_debug(P9_DEBUG_9P,
2199 ">>> TGETLOCK fid %d, type %i start %lld length %lld proc_id %d client_id %s\n",
2200 fid->fid, glock->type, glock->start, glock->length,
2201 glock->proc_id, glock->client_id);
2203 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid,
2204 glock->type, glock->start, glock->length,
2205 glock->proc_id, glock->client_id);
2208 return PTR_ERR(req);
2210 err = p9pdu_readf(&req->rc, clnt->proto_version, "bqqds", &glock->type,
2211 &glock->start, &glock->length, &glock->proc_id,
2214 trace_9p_protocol_dump(clnt, &req->rc);
2217 p9_debug(P9_DEBUG_9P,
2218 "<<< RGETLOCK type %i start %lld length %lld proc_id %d client_id %s\n",
2219 glock->type, glock->start, glock->length,
2220 glock->proc_id, glock->client_id);
2222 p9_req_put(clnt, req);
2225 EXPORT_SYMBOL(p9_client_getlock_dotl);
2227 int p9_client_readlink(struct p9_fid *fid, char **target)
2230 struct p9_client *clnt;
2231 struct p9_req_t *req;
2234 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
2236 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2238 return PTR_ERR(req);
2240 err = p9pdu_readf(&req->rc, clnt->proto_version, "s", target);
2242 trace_9p_protocol_dump(clnt, &req->rc);
2245 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
2247 p9_req_put(clnt, req);
2250 EXPORT_SYMBOL(p9_client_readlink);
2252 int __init p9_client_init(void)
2254 p9_req_cache = KMEM_CACHE(p9_req_t, SLAB_TYPESAFE_BY_RCU);
2255 return p9_req_cache ? 0 : -ENOMEM;
2258 void __exit p9_client_exit(void)
2260 kmem_cache_destroy(p9_req_cache);