1 // SPDX-License-Identifier: GPL-2.0-only
7 * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
8 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
11 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13 #include <linux/module.h>
14 #include <linux/errno.h>
16 #include <linux/poll.h>
17 #include <linux/idr.h>
18 #include <linux/mutex.h>
19 #include <linux/slab.h>
20 #include <linux/sched/signal.h>
21 #include <linux/uaccess.h>
22 #include <linux/uio.h>
23 #include <net/9p/9p.h>
24 #include <linux/parser.h>
25 #include <linux/seq_file.h>
26 #include <net/9p/client.h>
27 #include <net/9p/transport.h>
30 #define CREATE_TRACE_POINTS
31 #include <trace/events/9p.h>
33 #define DEFAULT_MSIZE (128 * 1024)
36 * Client Option Parsing (code inspired by NFS code)
37 * - a little lazy - parse all client options
48 static const match_table_t tokens = {
49 {Opt_msize, "msize=%u"},
50 {Opt_legacy, "noextend"},
51 {Opt_trans, "trans=%s"},
52 {Opt_version, "version=%s"},
56 inline int p9_is_proto_dotl(struct p9_client *clnt)
58 return clnt->proto_version == p9_proto_2000L;
60 EXPORT_SYMBOL(p9_is_proto_dotl);
62 inline int p9_is_proto_dotu(struct p9_client *clnt)
64 return clnt->proto_version == p9_proto_2000u;
66 EXPORT_SYMBOL(p9_is_proto_dotu);
68 int p9_show_client_options(struct seq_file *m, struct p9_client *clnt)
70 if (clnt->msize != DEFAULT_MSIZE)
71 seq_printf(m, ",msize=%u", clnt->msize);
72 seq_printf(m, ",trans=%s", clnt->trans_mod->name);
74 switch (clnt->proto_version) {
76 seq_puts(m, ",noextend");
79 seq_puts(m, ",version=9p2000.u");
86 if (clnt->trans_mod->show_options)
87 return clnt->trans_mod->show_options(m, clnt);
90 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);
106 /* Interpret mount option for protocol version */
107 static int get_protocol_version(char *s)
109 int version = -EINVAL;
111 if (!strcmp(s, "9p2000")) {
112 version = p9_proto_legacy;
113 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
114 } else if (!strcmp(s, "9p2000.u")) {
115 version = p9_proto_2000u;
116 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
117 } else if (!strcmp(s, "9p2000.L")) {
118 version = p9_proto_2000L;
119 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
121 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);
151 p9_debug(P9_DEBUG_ERROR,
152 "failed to allocate copy of option string\n");
155 options = tmp_options;
157 while ((p = strsep(&options, ",")) != NULL) {
161 token = match_token(p, tokens, args);
164 r = match_int(&args[0], &option);
166 p9_debug(P9_DEBUG_ERROR,
167 "integer field, but no integer?\n");
172 p9_debug(P9_DEBUG_ERROR,
173 "msize should be at least 4k\n");
177 clnt->msize = option;
180 s = match_strdup(&args[0]);
183 p9_debug(P9_DEBUG_ERROR,
184 "problem allocating copy of trans arg\n");
185 goto free_and_return;
188 v9fs_put_trans(clnt->trans_mod);
189 clnt->trans_mod = v9fs_get_trans_by_name(s);
190 if (clnt->trans_mod == NULL) {
191 pr_info("Could not find request transport: %s\n",
198 clnt->proto_version = p9_proto_legacy;
201 s = match_strdup(&args[0]);
204 p9_debug(P9_DEBUG_ERROR,
205 "problem allocating copy of version arg\n");
206 goto free_and_return;
208 r = get_protocol_version(s);
212 clnt->proto_version = r;
222 v9fs_put_trans(clnt->trans_mod);
227 static int p9_fcall_init(struct p9_client *c, struct p9_fcall *fc,
230 if (likely(c->fcall_cache) && alloc_msize == c->msize) {
231 fc->sdata = kmem_cache_alloc(c->fcall_cache, GFP_NOFS);
232 fc->cache = c->fcall_cache;
234 fc->sdata = kmalloc(alloc_msize, GFP_NOFS);
239 fc->capacity = alloc_msize;
243 void p9_fcall_fini(struct p9_fcall *fc)
245 /* sdata can be NULL for interrupted requests in trans_rdma,
246 * and kmem_cache_free does not do NULL-check for us
248 if (unlikely(!fc->sdata))
252 kmem_cache_free(fc->cache, fc->sdata);
256 EXPORT_SYMBOL(p9_fcall_fini);
258 static struct kmem_cache *p9_req_cache;
261 * p9_tag_alloc - Allocate a new request.
262 * @c: Client session.
263 * @type: Transaction type.
264 * @max_size: Maximum packet size for this request.
266 * Context: Process context.
267 * Return: Pointer to new request.
269 static struct p9_req_t *
270 p9_tag_alloc(struct p9_client *c, int8_t type, unsigned int max_size)
272 struct p9_req_t *req = kmem_cache_alloc(p9_req_cache, GFP_NOFS);
273 int alloc_msize = min(c->msize, max_size);
277 return ERR_PTR(-ENOMEM);
279 if (p9_fcall_init(c, &req->tc, alloc_msize))
281 if (p9_fcall_init(c, &req->rc, alloc_msize))
284 p9pdu_reset(&req->tc);
285 p9pdu_reset(&req->rc);
287 req->status = REQ_STATUS_ALLOC;
288 init_waitqueue_head(&req->wq);
289 INIT_LIST_HEAD(&req->req_list);
291 idr_preload(GFP_NOFS);
292 spin_lock_irq(&c->lock);
293 if (type == P9_TVERSION)
294 tag = idr_alloc(&c->reqs, req, P9_NOTAG, P9_NOTAG + 1,
297 tag = idr_alloc(&c->reqs, req, 0, P9_NOTAG, GFP_NOWAIT);
299 spin_unlock_irq(&c->lock);
304 /* Init ref to two because in the general case there is one ref
305 * that is put asynchronously by a writer thread, one ref
306 * temporarily given by p9_tag_lookup and put by p9_client_cb
307 * in the recv thread, and one ref put by p9_tag_remove in the
308 * main thread. The only exception is virtio that does not use
309 * p9_tag_lookup but does not have a writer thread either
310 * (the write happens synchronously in the request/zc_request
311 * callback), so p9_client_cb eats the second ref there
312 * as the pointer is duplicated directly by virtqueue_add_sgs()
314 refcount_set(&req->refcount.refcount, 2);
319 p9_fcall_fini(&req->tc);
320 p9_fcall_fini(&req->rc);
322 kmem_cache_free(p9_req_cache, req);
323 return ERR_PTR(-ENOMEM);
327 * p9_tag_lookup - Look up a request by tag.
328 * @c: Client session.
329 * @tag: Transaction ID.
331 * Context: Any context.
332 * Return: A request, or %NULL if there is no request with that tag.
334 struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
336 struct p9_req_t *req;
340 req = idr_find(&c->reqs, tag);
342 /* We have to be careful with the req found under rcu_read_lock
343 * Thanks to SLAB_TYPESAFE_BY_RCU we can safely try to get the
344 * ref again without corrupting other data, then check again
345 * that the tag matches once we have the ref
347 if (!p9_req_try_get(req))
349 if (req->tc.tag != tag) {
358 EXPORT_SYMBOL(p9_tag_lookup);
361 * p9_tag_remove - Remove a tag.
362 * @c: Client session.
363 * @r: Request of reference.
365 * Context: Any context.
367 static int p9_tag_remove(struct p9_client *c, struct p9_req_t *r)
372 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
373 spin_lock_irqsave(&c->lock, flags);
374 idr_remove(&c->reqs, tag);
375 spin_unlock_irqrestore(&c->lock, flags);
376 return p9_req_put(r);
379 static void p9_req_free(struct kref *ref)
381 struct p9_req_t *r = container_of(ref, struct p9_req_t, refcount);
382 p9_fcall_fini(&r->tc);
383 p9_fcall_fini(&r->rc);
384 kmem_cache_free(p9_req_cache, r);
387 int p9_req_put(struct p9_req_t *r)
389 return kref_put(&r->refcount, p9_req_free);
391 EXPORT_SYMBOL(p9_req_put);
394 * p9_tag_cleanup - cleans up tags structure and reclaims resources
395 * @c: v9fs client struct
397 * This frees resources associated with the tags structure
400 static void p9_tag_cleanup(struct p9_client *c)
402 struct p9_req_t *req;
406 idr_for_each_entry(&c->reqs, req, id) {
407 pr_info("Tag %d still in use\n", id);
408 if (p9_tag_remove(c, req) == 0)
409 pr_warn("Packet with tag %d has still references",
416 * p9_client_cb - call back from transport to client
418 * @req: request received
419 * @status: request status, one of REQ_STATUS_*
422 void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
424 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc.tag);
427 * This barrier is needed to make sure any change made to req before
428 * the status change is visible to another thread
431 req->status = status;
434 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc.tag);
437 EXPORT_SYMBOL(p9_client_cb);
440 * p9_parse_header - parse header arguments out of a packet
441 * @pdu: packet to parse
442 * @size: size of packet
443 * @type: type of request
444 * @tag: tag of packet
445 * @rewind: set if we need to rewind offset afterwards
449 p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
455 int offset = pdu->offset;
460 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
462 goto rewind_and_exit;
471 if (pdu->size != r_size || r_size < 7) {
473 goto rewind_and_exit;
479 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
480 pdu->size, pdu->id, pdu->tag);
484 pdu->offset = offset;
487 EXPORT_SYMBOL(p9_parse_header);
490 * p9_check_errors - check 9p packet for error return and process it
491 * @c: current client instance
492 * @req: request to parse and check for error conditions
494 * returns error code if one is discovered, otherwise returns 0
496 * this will have to be more complicated if we have multiple
500 static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
506 err = p9_parse_header(&req->rc, NULL, &type, NULL, 0);
507 if (req->rc.size >= c->msize) {
508 p9_debug(P9_DEBUG_ERROR,
509 "requested packet size too big: %d\n",
514 * dump the response from server
515 * This should be after check errors which poplulate pdu_fcall.
517 trace_9p_protocol_dump(c, &req->rc);
519 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
522 if (type != P9_RERROR && type != P9_RLERROR)
525 if (!p9_is_proto_dotl(c)) {
527 err = p9pdu_readf(&req->rc, c->proto_version, "s?d",
532 if (p9_is_proto_dotu(c) && ecode < 512)
536 err = p9_errstr2errno(ename, strlen(ename));
538 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
543 err = p9pdu_readf(&req->rc, c->proto_version, "d", &ecode);
546 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
552 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
558 * p9_check_zc_errors - check 9p packet for error return and process it
559 * @c: current client instance
560 * @req: request to parse and check for error conditions
561 * @uidata: external buffer containing error
562 * @in_hdrlen: Size of response protocol buffer.
564 * returns error code if one is discovered, otherwise returns 0
566 * this will have to be more complicated if we have multiple
570 static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
571 struct iov_iter *uidata, int in_hdrlen)
578 err = p9_parse_header(&req->rc, NULL, &type, NULL, 0);
580 * dump the response from server
581 * This should be after parse_header which poplulate pdu_fcall.
583 trace_9p_protocol_dump(c, &req->rc);
585 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
589 if (type != P9_RERROR && type != P9_RLERROR)
592 if (!p9_is_proto_dotl(c)) {
593 /* Error is reported in string format */
595 /* 7 = header size for RERROR; */
596 int inline_len = in_hdrlen - 7;
598 len = req->rc.size - req->rc.offset;
599 if (len > (P9_ZC_HDR_SZ - 7)) {
604 ename = &req->rc.sdata[req->rc.offset];
605 if (len > inline_len) {
606 /* We have error in external buffer */
607 if (!copy_from_iter_full(ename + inline_len,
608 len - inline_len, uidata)) {
614 err = p9pdu_readf(&req->rc, c->proto_version, "s?d",
619 if (p9_is_proto_dotu(c) && ecode < 512)
623 err = p9_errstr2errno(ename, strlen(ename));
625 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
630 err = p9pdu_readf(&req->rc, c->proto_version, "d", &ecode);
633 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
638 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
642 static struct p9_req_t *
643 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
646 * p9_client_flush - flush (cancel) a request
648 * @oldreq: request to cancel
650 * This sents a flush for a particular request and links
651 * the flush request to the original request. The current
652 * code only supports a single flush request although the protocol
653 * allows for multiple flush requests to be sent for a single request.
657 static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
659 struct p9_req_t *req;
663 err = p9_parse_header(&oldreq->tc, NULL, NULL, &oldtag, 1);
667 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
669 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
674 * if we haven't received a response for oldreq,
675 * remove it from the list
677 if (oldreq->status == REQ_STATUS_SENT) {
678 if (c->trans_mod->cancelled)
679 c->trans_mod->cancelled(c, oldreq);
682 p9_tag_remove(c, req);
686 static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
687 int8_t type, int req_size,
688 const char *fmt, va_list ap)
691 struct p9_req_t *req;
693 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
695 /* we allow for any status other than disconnected */
696 if (c->status == Disconnected)
697 return ERR_PTR(-EIO);
699 /* if status is begin_disconnected we allow only clunk request */
700 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
701 return ERR_PTR(-EIO);
703 req = p9_tag_alloc(c, type, req_size);
707 /* marshall the data */
708 p9pdu_prepare(&req->tc, req->tc.tag, type);
709 err = p9pdu_vwritef(&req->tc, c->proto_version, fmt, ap);
712 p9pdu_finalize(c, &req->tc);
713 trace_9p_client_req(c, type, req->tc.tag);
716 p9_tag_remove(c, req);
717 /* We have to put also the 2nd reference as it won't be used */
723 * p9_client_rpc - issue a request and wait for a response
725 * @type: type of request
726 * @fmt: protocol format string (see protocol.c)
728 * Returns request structure (which client must free using p9_tag_remove)
731 static struct p9_req_t *
732 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
737 struct p9_req_t *req;
740 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
745 if (signal_pending(current)) {
747 clear_thread_flag(TIF_SIGPENDING);
751 err = c->trans_mod->request(c, req);
753 /* write won't happen */
755 if (err != -ERESTARTSYS && err != -EFAULT)
756 c->status = Disconnected;
757 goto recalc_sigpending;
760 /* Wait for the response */
761 err = wait_event_killable(req->wq, req->status >= REQ_STATUS_RCVD);
764 * Make sure our req is coherent with regard to updates in other
765 * threads - echoes to wmb() in the callback
769 if ((err == -ERESTARTSYS) && (c->status == Connected)
770 && (type == P9_TFLUSH)) {
772 clear_thread_flag(TIF_SIGPENDING);
776 if (req->status == REQ_STATUS_ERROR) {
777 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
780 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
781 p9_debug(P9_DEBUG_MUX, "flushing\n");
783 clear_thread_flag(TIF_SIGPENDING);
785 if (c->trans_mod->cancel(c, req))
786 p9_client_flush(c, req);
788 /* if we received the response anyway, don't signal error */
789 if (req->status == REQ_STATUS_RCVD)
794 spin_lock_irqsave(¤t->sighand->siglock, flags);
796 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
801 err = p9_check_errors(c, req);
802 trace_9p_client_res(c, type, req->rc.tag, err);
806 p9_tag_remove(c, req);
807 return ERR_PTR(safe_errno(err));
811 * p9_client_zc_rpc - issue a request and wait for a response
813 * @type: type of request
814 * @uidata: destination for zero copy read
815 * @uodata: source for zero copy write
816 * @inlen: read buffer size
817 * @olen: write buffer size
818 * @in_hdrlen: reader header size, This is the size of response protocol data
819 * @fmt: protocol format string (see protocol.c)
821 * Returns request structure (which client must free using p9_tag_remove)
823 static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
824 struct iov_iter *uidata,
825 struct iov_iter *uodata,
826 int inlen, int olen, int in_hdrlen,
827 const char *fmt, ...)
832 struct p9_req_t *req;
836 * We allocate a inline protocol data of only 4k bytes.
837 * The actual content is passed in zero-copy fashion.
839 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
844 if (signal_pending(current)) {
846 clear_thread_flag(TIF_SIGPENDING);
850 err = c->trans_mod->zc_request(c, req, uidata, uodata,
851 inlen, olen, in_hdrlen);
854 c->status = Disconnected;
855 if (err != -ERESTARTSYS)
856 goto recalc_sigpending;
858 if (req->status == REQ_STATUS_ERROR) {
859 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
862 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
863 p9_debug(P9_DEBUG_MUX, "flushing\n");
865 clear_thread_flag(TIF_SIGPENDING);
867 if (c->trans_mod->cancel(c, req))
868 p9_client_flush(c, req);
870 /* if we received the response anyway, don't signal error */
871 if (req->status == REQ_STATUS_RCVD)
876 spin_lock_irqsave(¤t->sighand->siglock, flags);
878 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
883 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
884 trace_9p_client_res(c, type, req->rc.tag, err);
888 p9_tag_remove(c, req);
889 return ERR_PTR(safe_errno(err));
892 static struct p9_fid *p9_fid_create(struct p9_client *clnt)
897 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
898 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
902 memset(&fid->qid, 0, sizeof(struct p9_qid));
904 fid->uid = current_fsuid();
908 refcount_set(&fid->count, 1);
910 idr_preload(GFP_KERNEL);
911 spin_lock_irq(&clnt->lock);
912 ret = idr_alloc_u32(&clnt->fids, fid, &fid->fid, P9_NOFID - 1,
914 spin_unlock_irq(&clnt->lock);
923 static void p9_fid_destroy(struct p9_fid *fid)
925 struct p9_client *clnt;
928 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
930 spin_lock_irqsave(&clnt->lock, flags);
931 idr_remove(&clnt->fids, fid->fid);
932 spin_unlock_irqrestore(&clnt->lock, flags);
937 static int p9_client_version(struct p9_client *c)
940 struct p9_req_t *req;
941 char *version = NULL;
944 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
945 c->msize, c->proto_version);
947 switch (c->proto_version) {
949 req = p9_client_rpc(c, P9_TVERSION, "ds",
950 c->msize, "9P2000.L");
953 req = p9_client_rpc(c, P9_TVERSION, "ds",
954 c->msize, "9P2000.u");
956 case p9_proto_legacy:
957 req = p9_client_rpc(c, P9_TVERSION, "ds",
967 err = p9pdu_readf(&req->rc, c->proto_version, "ds", &msize, &version);
969 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
970 trace_9p_protocol_dump(c, &req->rc);
974 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
975 if (!strncmp(version, "9P2000.L", 8))
976 c->proto_version = p9_proto_2000L;
977 else if (!strncmp(version, "9P2000.u", 8))
978 c->proto_version = p9_proto_2000u;
979 else if (!strncmp(version, "9P2000", 6))
980 c->proto_version = p9_proto_legacy;
982 p9_debug(P9_DEBUG_ERROR,
983 "server returned an unknown version: %s\n", version);
989 p9_debug(P9_DEBUG_ERROR,
990 "server returned a msize < 4096: %d\n", msize);
994 if (msize < c->msize)
999 p9_tag_remove(c, req);
1004 struct p9_client *p9_client_create(const char *dev_name, char *options)
1007 struct p9_client *clnt;
1011 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1013 return ERR_PTR(-ENOMEM);
1015 clnt->trans_mod = NULL;
1017 clnt->fcall_cache = NULL;
1019 client_id = utsname()->nodename;
1020 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1022 spin_lock_init(&clnt->lock);
1023 idr_init(&clnt->fids);
1024 idr_init(&clnt->reqs);
1026 err = parse_opts(options, clnt);
1030 if (!clnt->trans_mod)
1031 clnt->trans_mod = v9fs_get_default_trans();
1033 if (clnt->trans_mod == NULL) {
1034 err = -EPROTONOSUPPORT;
1035 p9_debug(P9_DEBUG_ERROR,
1036 "No transport defined or default transport\n");
1040 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1041 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
1043 err = clnt->trans_mod->create(clnt, dev_name, options);
1047 if (clnt->msize > clnt->trans_mod->maxsize)
1048 clnt->msize = clnt->trans_mod->maxsize;
1050 if (clnt->msize < 4096) {
1051 p9_debug(P9_DEBUG_ERROR,
1052 "Please specify a msize of at least 4k\n");
1057 err = p9_client_version(clnt);
1061 /* P9_HDRSZ + 4 is the smallest packet header we can have that is
1062 * followed by data accessed from userspace by read
1065 kmem_cache_create_usercopy("9p-fcall-cache", clnt->msize,
1067 clnt->msize - (P9_HDRSZ + 4),
1073 clnt->trans_mod->close(clnt);
1075 v9fs_put_trans(clnt->trans_mod);
1078 return ERR_PTR(err);
1080 EXPORT_SYMBOL(p9_client_create);
1082 void p9_client_destroy(struct p9_client *clnt)
1087 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
1089 if (clnt->trans_mod)
1090 clnt->trans_mod->close(clnt);
1092 v9fs_put_trans(clnt->trans_mod);
1094 idr_for_each_entry(&clnt->fids, fid, id) {
1095 pr_info("Found fid %d not clunked\n", fid->fid);
1096 p9_fid_destroy(fid);
1099 p9_tag_cleanup(clnt);
1101 kmem_cache_destroy(clnt->fcall_cache);
1104 EXPORT_SYMBOL(p9_client_destroy);
1106 void p9_client_disconnect(struct p9_client *clnt)
1108 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1109 clnt->status = Disconnected;
1111 EXPORT_SYMBOL(p9_client_disconnect);
1113 void p9_client_begin_disconnect(struct p9_client *clnt)
1115 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1116 clnt->status = BeginDisconnect;
1118 EXPORT_SYMBOL(p9_client_begin_disconnect);
1120 struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
1121 const char *uname, kuid_t n_uname, const char *aname)
1124 struct p9_req_t *req;
1129 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1130 afid ? afid->fid : -1, uname, aname);
1131 fid = p9_fid_create(clnt);
1138 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
1139 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1145 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", &qid);
1147 trace_9p_protocol_dump(clnt, &req->rc);
1148 p9_tag_remove(clnt, req);
1152 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1153 qid.type, (unsigned long long)qid.path, qid.version);
1155 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1157 p9_tag_remove(clnt, req);
1162 p9_fid_destroy(fid);
1163 return ERR_PTR(err);
1165 EXPORT_SYMBOL(p9_client_attach);
1167 struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1168 const unsigned char * const *wnames, int clone)
1171 struct p9_client *clnt;
1173 struct p9_qid *wqids;
1174 struct p9_req_t *req;
1175 uint16_t nwqids, count;
1179 clnt = oldfid->clnt;
1181 fid = p9_fid_create(clnt);
1187 fid->uid = oldfid->uid;
1192 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1193 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
1194 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1201 err = p9pdu_readf(&req->rc, clnt->proto_version, "R", &nwqids, &wqids);
1203 trace_9p_protocol_dump(clnt, &req->rc);
1204 p9_tag_remove(clnt, req);
1207 p9_tag_remove(clnt, req);
1209 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
1211 if (nwqids != nwname) {
1216 for (count = 0; count < nwqids; count++)
1217 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
1218 count, wqids[count].type,
1219 (unsigned long long)wqids[count].path,
1220 wqids[count].version);
1223 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
1225 memmove(&fid->qid, &oldfid->qid, sizeof(struct p9_qid));
1232 p9_client_clunk(fid);
1236 if (fid && (fid != oldfid))
1237 p9_fid_destroy(fid);
1239 return ERR_PTR(err);
1241 EXPORT_SYMBOL(p9_client_walk);
1243 int p9_client_open(struct p9_fid *fid, int mode)
1246 struct p9_client *clnt;
1247 struct p9_req_t *req;
1252 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
1253 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1256 if (fid->mode != -1)
1259 if (p9_is_proto_dotl(clnt))
1260 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1262 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
1268 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1270 trace_9p_protocol_dump(clnt, &req->rc);
1271 goto free_and_error;
1274 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
1275 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1276 (unsigned long long)qid.path, qid.version, iounit);
1278 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1280 fid->iounit = iounit;
1283 p9_tag_remove(clnt, req);
1287 EXPORT_SYMBOL(p9_client_open);
1289 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
1290 kgid_t gid, struct p9_qid *qid)
1293 struct p9_client *clnt;
1294 struct p9_req_t *req;
1297 p9_debug(P9_DEBUG_9P,
1298 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1299 ofid->fid, name, flags, mode,
1300 from_kgid(&init_user_ns, gid));
1303 if (ofid->mode != -1)
1306 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
1313 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", qid, &iounit);
1315 trace_9p_protocol_dump(clnt, &req->rc);
1316 goto free_and_error;
1319 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1321 (unsigned long long)qid->path,
1322 qid->version, iounit);
1324 memmove(&ofid->qid, qid, sizeof(struct p9_qid));
1326 ofid->iounit = iounit;
1329 p9_tag_remove(clnt, req);
1333 EXPORT_SYMBOL(p9_client_create_dotl);
1335 int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
1339 struct p9_client *clnt;
1340 struct p9_req_t *req;
1344 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1345 fid->fid, name, perm, mode);
1349 if (fid->mode != -1)
1352 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1359 err = p9pdu_readf(&req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1361 trace_9p_protocol_dump(clnt, &req->rc);
1362 goto free_and_error;
1365 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1367 (unsigned long long)qid.path,
1368 qid.version, iounit);
1370 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1372 fid->iounit = iounit;
1375 p9_tag_remove(clnt, req);
1379 EXPORT_SYMBOL(p9_client_fcreate);
1381 int p9_client_symlink(struct p9_fid *dfid, const char *name,
1382 const char *symtgt, kgid_t gid, struct p9_qid *qid)
1385 struct p9_client *clnt;
1386 struct p9_req_t *req;
1388 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1389 dfid->fid, name, symtgt);
1392 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
1399 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
1401 trace_9p_protocol_dump(clnt, &req->rc);
1402 goto free_and_error;
1405 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
1406 qid->type, (unsigned long long)qid->path, qid->version);
1409 p9_tag_remove(clnt, req);
1413 EXPORT_SYMBOL(p9_client_symlink);
1415 int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
1417 struct p9_client *clnt;
1418 struct p9_req_t *req;
1420 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
1421 dfid->fid, oldfid->fid, newname);
1423 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1426 return PTR_ERR(req);
1428 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
1429 p9_tag_remove(clnt, req);
1432 EXPORT_SYMBOL(p9_client_link);
1434 int p9_client_fsync(struct p9_fid *fid, int datasync)
1437 struct p9_client *clnt;
1438 struct p9_req_t *req;
1440 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
1441 fid->fid, datasync);
1445 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
1451 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
1453 p9_tag_remove(clnt, req);
1458 EXPORT_SYMBOL(p9_client_fsync);
1460 int p9_client_clunk(struct p9_fid *fid)
1463 struct p9_client *clnt;
1464 struct p9_req_t *req;
1467 if (!fid || IS_ERR(fid)) {
1468 pr_warn("%s (%d): Trying to clunk with invalid fid\n",
1469 __func__, task_pid_nr(current));
1473 if (!refcount_dec_and_test(&fid->count))
1477 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1482 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1488 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
1490 p9_tag_remove(clnt, req);
1493 * Fid is not valid even after a failed clunk
1494 * If interrupted, retry once then give up and
1495 * leak fid until umount.
1497 if (err == -ERESTARTSYS) {
1501 p9_fid_destroy(fid);
1504 EXPORT_SYMBOL(p9_client_clunk);
1506 int p9_client_remove(struct p9_fid *fid)
1509 struct p9_client *clnt;
1510 struct p9_req_t *req;
1512 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
1516 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1522 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
1524 p9_tag_remove(clnt, req);
1526 if (err == -ERESTARTSYS)
1527 p9_client_clunk(fid);
1529 p9_fid_destroy(fid);
1532 EXPORT_SYMBOL(p9_client_remove);
1534 int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1537 struct p9_req_t *req;
1538 struct p9_client *clnt;
1540 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
1541 dfid->fid, name, flags);
1544 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1549 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
1551 p9_tag_remove(clnt, req);
1555 EXPORT_SYMBOL(p9_client_unlinkat);
1558 p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
1563 while (iov_iter_count(to)) {
1566 count = p9_client_read_once(fid, offset, to, err);
1574 EXPORT_SYMBOL(p9_client_read);
1577 p9_client_read_once(struct p9_fid *fid, u64 offset, struct iov_iter *to,
1580 struct p9_client *clnt = fid->clnt;
1581 struct p9_req_t *req;
1582 int count = iov_iter_count(to);
1583 int rsize, non_zc = 0;
1587 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
1588 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
1590 rsize = fid->iounit;
1591 if (!rsize || rsize > clnt->msize - P9_IOHDRSZ)
1592 rsize = clnt->msize - P9_IOHDRSZ;
1597 /* Don't bother zerocopy for small IO (< 1024) */
1598 if (clnt->trans_mod->zc_request && rsize > 1024) {
1599 /* response header len is 11
1600 * PDU Header(7) + IO Size (4)
1602 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1603 0, 11, "dqd", fid->fid,
1607 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1611 *err = PTR_ERR(req);
1615 *err = p9pdu_readf(&req->rc, clnt->proto_version,
1616 "D", &count, &dataptr);
1618 trace_9p_protocol_dump(clnt, &req->rc);
1619 p9_tag_remove(clnt, req);
1622 if (rsize < count) {
1623 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1627 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1630 int n = copy_to_iter(dataptr, count, to);
1634 p9_tag_remove(clnt, req);
1638 iov_iter_advance(to, count);
1640 p9_tag_remove(clnt, req);
1643 EXPORT_SYMBOL(p9_client_read_once);
1646 p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
1648 struct p9_client *clnt = fid->clnt;
1649 struct p9_req_t *req;
1653 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1654 fid->fid, (unsigned long long) offset,
1655 iov_iter_count(from));
1657 while (iov_iter_count(from)) {
1658 int count = iov_iter_count(from);
1659 int rsize = fid->iounit;
1660 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1661 rsize = clnt->msize - P9_IOHDRSZ;
1666 /* Don't bother zerocopy for small IO (< 1024) */
1667 if (clnt->trans_mod->zc_request && rsize > 1024) {
1668 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1669 rsize, P9_ZC_HDR_SZ, "dqd",
1670 fid->fid, offset, rsize);
1672 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1673 offset, rsize, from);
1676 *err = PTR_ERR(req);
1680 *err = p9pdu_readf(&req->rc, clnt->proto_version, "d", &count);
1682 trace_9p_protocol_dump(clnt, &req->rc);
1683 p9_tag_remove(clnt, req);
1686 if (rsize < count) {
1687 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1691 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1693 p9_tag_remove(clnt, req);
1694 iov_iter_advance(from, count);
1700 EXPORT_SYMBOL(p9_client_write);
1702 struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1705 struct p9_client *clnt;
1706 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1707 struct p9_req_t *req;
1710 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1713 return ERR_PTR(-ENOMEM);
1718 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1724 err = p9pdu_readf(&req->rc, clnt->proto_version, "wS", &ignored, ret);
1726 trace_9p_protocol_dump(clnt, &req->rc);
1727 p9_tag_remove(clnt, req);
1731 p9_debug(P9_DEBUG_9P,
1732 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1733 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1734 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1735 "<<< uid=%d gid=%d n_muid=%d\n",
1736 ret->size, ret->type, ret->dev, ret->qid.type,
1737 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1738 ret->atime, ret->mtime, (unsigned long long)ret->length,
1739 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
1740 from_kuid(&init_user_ns, ret->n_uid),
1741 from_kgid(&init_user_ns, ret->n_gid),
1742 from_kuid(&init_user_ns, ret->n_muid));
1744 p9_tag_remove(clnt, req);
1749 return ERR_PTR(err);
1751 EXPORT_SYMBOL(p9_client_stat);
1753 struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1757 struct p9_client *clnt;
1758 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1760 struct p9_req_t *req;
1762 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
1763 fid->fid, request_mask);
1766 return ERR_PTR(-ENOMEM);
1771 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1777 err = p9pdu_readf(&req->rc, clnt->proto_version, "A", ret);
1779 trace_9p_protocol_dump(clnt, &req->rc);
1780 p9_tag_remove(clnt, req);
1784 p9_debug(P9_DEBUG_9P,
1785 "<<< RGETATTR st_result_mask=%lld\n"
1786 "<<< qid=%x.%llx.%x\n"
1787 "<<< st_mode=%8.8x st_nlink=%llu\n"
1788 "<<< st_uid=%d st_gid=%d\n"
1789 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1790 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1791 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1792 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1793 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1794 "<<< st_gen=%lld st_data_version=%lld\n",
1795 ret->st_result_mask, ret->qid.type, ret->qid.path,
1796 ret->qid.version, ret->st_mode, ret->st_nlink,
1797 from_kuid(&init_user_ns, ret->st_uid),
1798 from_kgid(&init_user_ns, ret->st_gid),
1799 ret->st_rdev, ret->st_size, ret->st_blksize,
1800 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1801 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1802 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1803 ret->st_gen, ret->st_data_version);
1805 p9_tag_remove(clnt, req);
1810 return ERR_PTR(err);
1812 EXPORT_SYMBOL(p9_client_getattr_dotl);
1814 static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
1818 /* NOTE: size shouldn't include its own length */
1819 /* size[2] type[2] dev[4] qid[13] */
1820 /* mode[4] atime[4] mtime[4] length[8]*/
1821 /* name[s] uid[s] gid[s] muid[s] */
1822 ret = 2+4+13+4+4+4+8+2+2+2+2;
1825 ret += strlen(wst->name);
1827 ret += strlen(wst->uid);
1829 ret += strlen(wst->gid);
1831 ret += strlen(wst->muid);
1833 if ((proto_version == p9_proto_2000u) ||
1834 (proto_version == p9_proto_2000L)) {
1835 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1837 ret += strlen(wst->extension);
1843 int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1846 struct p9_req_t *req;
1847 struct p9_client *clnt;
1851 wst->size = p9_client_statsize(wst, clnt->proto_version);
1852 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1853 p9_debug(P9_DEBUG_9P,
1854 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1855 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1856 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1857 " uid=%d gid=%d n_muid=%d\n",
1858 wst->size, wst->type, wst->dev, wst->qid.type,
1859 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1860 wst->atime, wst->mtime, (unsigned long long)wst->length,
1861 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
1862 from_kuid(&init_user_ns, wst->n_uid),
1863 from_kgid(&init_user_ns, wst->n_gid),
1864 from_kuid(&init_user_ns, wst->n_muid));
1866 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
1872 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
1874 p9_tag_remove(clnt, req);
1878 EXPORT_SYMBOL(p9_client_wstat);
1880 int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1883 struct p9_req_t *req;
1884 struct p9_client *clnt;
1888 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1889 p9_debug(P9_DEBUG_9P,
1890 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1891 " atime_sec=%lld atime_nsec=%lld\n"
1892 " mtime_sec=%lld mtime_nsec=%lld\n",
1893 p9attr->valid, p9attr->mode,
1894 from_kuid(&init_user_ns, p9attr->uid),
1895 from_kgid(&init_user_ns, p9attr->gid),
1896 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1897 p9attr->mtime_sec, p9attr->mtime_nsec);
1899 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1905 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
1906 p9_tag_remove(clnt, req);
1910 EXPORT_SYMBOL(p9_client_setattr);
1912 int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1915 struct p9_req_t *req;
1916 struct p9_client *clnt;
1921 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
1923 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1929 err = p9pdu_readf(&req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1930 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1931 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1933 trace_9p_protocol_dump(clnt, &req->rc);
1934 p9_tag_remove(clnt, req);
1938 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
1939 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1940 "fsid %llu namelen %ld\n",
1941 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1942 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1943 sb->fsid, (long int)sb->namelen);
1945 p9_tag_remove(clnt, req);
1949 EXPORT_SYMBOL(p9_client_statfs);
1951 int p9_client_rename(struct p9_fid *fid,
1952 struct p9_fid *newdirfid, const char *name)
1955 struct p9_req_t *req;
1956 struct p9_client *clnt;
1961 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
1962 fid->fid, newdirfid->fid, name);
1964 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1965 newdirfid->fid, name);
1971 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
1973 p9_tag_remove(clnt, req);
1977 EXPORT_SYMBOL(p9_client_rename);
1979 int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1980 struct p9_fid *newdirfid, const char *new_name)
1983 struct p9_req_t *req;
1984 struct p9_client *clnt;
1987 clnt = olddirfid->clnt;
1989 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
1990 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1991 newdirfid->fid, new_name);
1993 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1994 old_name, newdirfid->fid, new_name);
2000 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
2001 newdirfid->fid, new_name);
2003 p9_tag_remove(clnt, req);
2007 EXPORT_SYMBOL(p9_client_renameat);
2010 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
2012 struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
2013 const char *attr_name, u64 *attr_size)
2016 struct p9_req_t *req;
2017 struct p9_client *clnt;
2018 struct p9_fid *attr_fid;
2021 clnt = file_fid->clnt;
2022 attr_fid = p9_fid_create(clnt);
2027 p9_debug(P9_DEBUG_9P,
2028 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2029 file_fid->fid, attr_fid->fid, attr_name);
2031 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2032 file_fid->fid, attr_fid->fid, attr_name);
2037 err = p9pdu_readf(&req->rc, clnt->proto_version, "q", attr_size);
2039 trace_9p_protocol_dump(clnt, &req->rc);
2040 p9_tag_remove(clnt, req);
2043 p9_tag_remove(clnt, req);
2044 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
2045 attr_fid->fid, *attr_size);
2048 p9_client_clunk(attr_fid);
2051 if (attr_fid && (attr_fid != file_fid))
2052 p9_fid_destroy(attr_fid);
2054 return ERR_PTR(err);
2056 EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2058 int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2059 u64 attr_size, int flags)
2062 struct p9_req_t *req;
2063 struct p9_client *clnt;
2065 p9_debug(P9_DEBUG_9P,
2066 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2067 fid->fid, name, (long long)attr_size, flags);
2070 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2071 fid->fid, name, attr_size, flags);
2076 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
2077 p9_tag_remove(clnt, req);
2081 EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2083 int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2085 int err, rsize, non_zc = 0;
2086 struct p9_client *clnt;
2087 struct p9_req_t *req;
2089 struct kvec kv = {.iov_base = data, .iov_len = count};
2092 iov_iter_kvec(&to, READ, &kv, 1, count);
2094 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
2095 fid->fid, (unsigned long long) offset, count);
2100 rsize = fid->iounit;
2101 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2102 rsize = clnt->msize - P9_READDIRHDRSZ;
2107 /* Don't bother zerocopy for small IO (< 1024) */
2108 if (clnt->trans_mod->zc_request && rsize > 1024) {
2110 * response header len is 11
2111 * PDU Header(7) + IO Size (4)
2113 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2114 11, "dqd", fid->fid, offset, rsize);
2117 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
2125 err = p9pdu_readf(&req->rc, clnt->proto_version, "D", &count, &dataptr);
2127 trace_9p_protocol_dump(clnt, &req->rc);
2128 goto free_and_error;
2130 if (rsize < count) {
2131 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2135 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
2138 memmove(data, dataptr, count);
2140 p9_tag_remove(clnt, req);
2144 p9_tag_remove(clnt, req);
2148 EXPORT_SYMBOL(p9_client_readdir);
2150 int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
2151 dev_t rdev, kgid_t gid, struct p9_qid *qid)
2154 struct p9_client *clnt;
2155 struct p9_req_t *req;
2159 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
2160 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2161 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
2162 MAJOR(rdev), MINOR(rdev), gid);
2164 return PTR_ERR(req);
2166 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2168 trace_9p_protocol_dump(clnt, &req->rc);
2171 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
2172 (unsigned long long)qid->path, qid->version);
2175 p9_tag_remove(clnt, req);
2179 EXPORT_SYMBOL(p9_client_mknod_dotl);
2181 int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
2182 kgid_t gid, struct p9_qid *qid)
2185 struct p9_client *clnt;
2186 struct p9_req_t *req;
2190 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2191 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2192 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
2195 return PTR_ERR(req);
2197 err = p9pdu_readf(&req->rc, clnt->proto_version, "Q", qid);
2199 trace_9p_protocol_dump(clnt, &req->rc);
2202 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
2203 (unsigned long long)qid->path, qid->version);
2206 p9_tag_remove(clnt, req);
2210 EXPORT_SYMBOL(p9_client_mkdir_dotl);
2212 int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2215 struct p9_client *clnt;
2216 struct p9_req_t *req;
2220 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
2221 "start %lld length %lld proc_id %d client_id %s\n",
2222 fid->fid, flock->type, flock->flags, flock->start,
2223 flock->length, flock->proc_id, flock->client_id);
2225 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2226 flock->flags, flock->start, flock->length,
2227 flock->proc_id, flock->client_id);
2230 return PTR_ERR(req);
2232 err = p9pdu_readf(&req->rc, clnt->proto_version, "b", status);
2234 trace_9p_protocol_dump(clnt, &req->rc);
2237 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
2239 p9_tag_remove(clnt, req);
2243 EXPORT_SYMBOL(p9_client_lock_dotl);
2245 int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2248 struct p9_client *clnt;
2249 struct p9_req_t *req;
2253 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
2254 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2255 glock->start, glock->length, glock->proc_id, glock->client_id);
2257 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2258 glock->start, glock->length, glock->proc_id, glock->client_id);
2261 return PTR_ERR(req);
2263 err = p9pdu_readf(&req->rc, clnt->proto_version, "bqqds", &glock->type,
2264 &glock->start, &glock->length, &glock->proc_id,
2267 trace_9p_protocol_dump(clnt, &req->rc);
2270 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
2271 "proc_id %d client_id %s\n", glock->type, glock->start,
2272 glock->length, glock->proc_id, glock->client_id);
2274 p9_tag_remove(clnt, req);
2277 EXPORT_SYMBOL(p9_client_getlock_dotl);
2279 int p9_client_readlink(struct p9_fid *fid, char **target)
2282 struct p9_client *clnt;
2283 struct p9_req_t *req;
2287 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
2289 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2291 return PTR_ERR(req);
2293 err = p9pdu_readf(&req->rc, clnt->proto_version, "s", target);
2295 trace_9p_protocol_dump(clnt, &req->rc);
2298 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
2300 p9_tag_remove(clnt, req);
2303 EXPORT_SYMBOL(p9_client_readlink);
2305 int __init p9_client_init(void)
2307 p9_req_cache = KMEM_CACHE(p9_req_t, SLAB_TYPESAFE_BY_RCU);
2308 return p9_req_cache ? 0 : -ENOMEM;
2311 void __exit p9_client_exit(void)
2313 kmem_cache_destroy(p9_req_cache);