9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2
11 * as published by the Free Software Foundation.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to:
20 * Free Software Foundation
21 * 51 Franklin Street, Fifth Floor
22 * Boston, MA 02111-1301 USA
26 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28 #include <linux/module.h>
29 #include <linux/errno.h>
31 #include <linux/poll.h>
32 #include <linux/idr.h>
33 #include <linux/mutex.h>
34 #include <linux/slab.h>
35 #include <linux/sched/signal.h>
36 #include <linux/uaccess.h>
37 #include <linux/uio.h>
38 #include <net/9p/9p.h>
39 #include <linux/parser.h>
40 #include <linux/seq_file.h>
41 #include <net/9p/client.h>
42 #include <net/9p/transport.h>
45 #define CREATE_TRACE_POINTS
46 #include <trace/events/9p.h>
49 * Client Option Parsing (code inspired by NFS code)
50 * - a little lazy - parse all client options
61 static const match_table_t tokens = {
62 {Opt_msize, "msize=%u"},
63 {Opt_legacy, "noextend"},
64 {Opt_trans, "trans=%s"},
65 {Opt_version, "version=%s"},
69 inline int p9_is_proto_dotl(struct p9_client *clnt)
71 return clnt->proto_version == p9_proto_2000L;
73 EXPORT_SYMBOL(p9_is_proto_dotl);
75 inline int p9_is_proto_dotu(struct p9_client *clnt)
77 return clnt->proto_version == p9_proto_2000u;
79 EXPORT_SYMBOL(p9_is_proto_dotu);
81 int p9_show_client_options(struct seq_file *m, struct p9_client *clnt)
83 if (clnt->msize != 8192)
84 seq_printf(m, ",msize=%u", clnt->msize);
85 seq_printf(m, ",trans=%s", clnt->trans_mod->name);
87 switch (clnt->proto_version) {
89 seq_puts(m, ",noextend");
92 seq_puts(m, ",version=9p2000.u");
99 if (clnt->trans_mod->show_options)
100 return clnt->trans_mod->show_options(m, clnt);
103 EXPORT_SYMBOL(p9_show_client_options);
106 * Some error codes are taken directly from the server replies,
107 * make sure they are valid.
109 static int safe_errno(int err)
111 if ((err > 0) || (err < -MAX_ERRNO)) {
112 p9_debug(P9_DEBUG_ERROR, "Invalid error code %d\n", err);
119 /* Interpret mount option for protocol version */
120 static int get_protocol_version(char *s)
122 int version = -EINVAL;
124 if (!strcmp(s, "9p2000")) {
125 version = p9_proto_legacy;
126 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
127 } else if (!strcmp(s, "9p2000.u")) {
128 version = p9_proto_2000u;
129 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
130 } else if (!strcmp(s, "9p2000.L")) {
131 version = p9_proto_2000L;
132 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
134 pr_info("Unknown protocol version %s\n", s);
140 * parse_options - parse mount options into client structure
141 * @opts: options string passed from mount
142 * @clnt: existing v9fs client information
144 * Return 0 upon success, -ERRNO upon failure
147 static int parse_opts(char *opts, struct p9_client *clnt)
149 char *options, *tmp_options;
151 substring_t args[MAX_OPT_ARGS];
156 clnt->proto_version = p9_proto_2000L;
162 tmp_options = kstrdup(opts, GFP_KERNEL);
164 p9_debug(P9_DEBUG_ERROR,
165 "failed to allocate copy of option string\n");
168 options = tmp_options;
170 while ((p = strsep(&options, ",")) != NULL) {
174 token = match_token(p, tokens, args);
177 r = match_int(&args[0], &option);
179 p9_debug(P9_DEBUG_ERROR,
180 "integer field, but no integer?\n");
184 clnt->msize = option;
187 s = match_strdup(&args[0]);
190 p9_debug(P9_DEBUG_ERROR,
191 "problem allocating copy of trans arg\n");
192 goto free_and_return;
194 clnt->trans_mod = v9fs_get_trans_by_name(s);
195 if (clnt->trans_mod == NULL) {
196 pr_info("Could not find request transport: %s\n",
200 goto free_and_return;
205 clnt->proto_version = p9_proto_legacy;
208 s = match_strdup(&args[0]);
211 p9_debug(P9_DEBUG_ERROR,
212 "problem allocating copy of version arg\n");
213 goto free_and_return;
215 ret = get_protocol_version(s);
216 if (ret == -EINVAL) {
218 goto free_and_return;
221 clnt->proto_version = ret;
233 static struct p9_fcall *p9_fcall_alloc(int alloc_msize)
236 fc = kmalloc(sizeof(struct p9_fcall) + alloc_msize, GFP_NOFS);
239 fc->capacity = alloc_msize;
240 fc->sdata = (char *) fc + sizeof(struct p9_fcall);
245 * p9_tag_alloc - lookup/allocate a request by tag
246 * @c: client session to lookup tag within
247 * @tag: numeric id for transaction
249 * this is a simple array lookup, but will grow the
250 * request_slots as necessary to accommodate transaction
251 * ids which did not previously have a slot.
253 * this code relies on the client spinlock to manage locks, its
254 * possible we should switch to something else, but I'd rather
255 * stick with something low-overhead for the common case.
259 static struct p9_req_t *
260 p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
264 struct p9_req_t *req;
265 int alloc_msize = min(c->msize, max_size);
267 /* This looks up the original request by tag so we know which
268 * buffer to read the data into */
271 if (tag >= c->max_tag) {
272 spin_lock_irqsave(&c->lock, flags);
273 /* check again since original check was outside of lock */
274 while (tag >= c->max_tag) {
275 row = (tag / P9_ROW_MAXTAG);
276 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
277 sizeof(struct p9_req_t), GFP_ATOMIC);
280 pr_err("Couldn't grow tag array\n");
281 spin_unlock_irqrestore(&c->lock, flags);
282 return ERR_PTR(-ENOMEM);
284 for (col = 0; col < P9_ROW_MAXTAG; col++) {
285 c->reqs[row][col].status = REQ_STATUS_IDLE;
286 c->reqs[row][col].tc = NULL;
288 c->max_tag += P9_ROW_MAXTAG;
290 spin_unlock_irqrestore(&c->lock, flags);
292 row = tag / P9_ROW_MAXTAG;
293 col = tag % P9_ROW_MAXTAG;
295 req = &c->reqs[row][col];
297 req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
300 init_waitqueue_head(req->wq);
304 req->tc = p9_fcall_alloc(alloc_msize);
306 req->rc = p9_fcall_alloc(alloc_msize);
307 if (!req->tc || !req->rc)
310 p9pdu_reset(req->tc);
311 p9pdu_reset(req->rc);
313 req->tc->tag = tag-1;
314 req->status = REQ_STATUS_ALLOC;
319 pr_err("Couldn't grow tag array\n");
323 req->tc = req->rc = NULL;
325 return ERR_PTR(-ENOMEM);
329 * p9_tag_lookup - lookup a request by tag
330 * @c: client session to lookup tag within
331 * @tag: numeric id for transaction
335 struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
339 /* This looks up the original request by tag so we know which
340 * buffer to read the data into */
343 if(tag >= c->max_tag)
346 row = tag / P9_ROW_MAXTAG;
347 col = tag % P9_ROW_MAXTAG;
349 return &c->reqs[row][col];
351 EXPORT_SYMBOL(p9_tag_lookup);
354 * p9_tag_init - setup tags structure and contents
355 * @c: v9fs client struct
357 * This initializes the tags structure for each client instance.
361 static int p9_tag_init(struct p9_client *c)
365 c->tagpool = p9_idpool_create();
366 if (IS_ERR(c->tagpool)) {
367 err = PTR_ERR(c->tagpool);
370 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
372 p9_idpool_destroy(c->tagpool);
381 * p9_tag_cleanup - cleans up tags structure and reclaims resources
382 * @c: v9fs client struct
384 * This frees resources associated with the tags structure
387 static void p9_tag_cleanup(struct p9_client *c)
391 /* check to insure all requests are idle */
392 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
393 for (col = 0; col < P9_ROW_MAXTAG; col++) {
394 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
395 p9_debug(P9_DEBUG_MUX,
396 "Attempting to cleanup non-free tag %d,%d\n",
398 /* TODO: delay execution of cleanup */
405 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
406 p9_idpool_destroy(c->tagpool);
409 /* free requests associated with tags */
410 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
411 for (col = 0; col < P9_ROW_MAXTAG; col++) {
412 kfree(c->reqs[row][col].wq);
413 kfree(c->reqs[row][col].tc);
414 kfree(c->reqs[row][col].rc);
422 * p9_free_req - free a request and clean-up as necessary
424 * r: request to release
428 static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
430 int tag = r->tc->tag;
431 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
433 r->status = REQ_STATUS_IDLE;
434 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
435 p9_idpool_put(tag, c->tagpool);
439 * p9_client_cb - call back from transport to client
441 * req: request received
444 void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
446 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
449 * This barrier is needed to make sure any change made to req before
450 * the other thread wakes up will indeed be seen by the waiting side.
453 req->status = status;
456 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
458 EXPORT_SYMBOL(p9_client_cb);
461 * p9_parse_header - parse header arguments out of a packet
462 * @pdu: packet to parse
463 * @size: size of packet
464 * @type: type of request
465 * @tag: tag of packet
466 * @rewind: set if we need to rewind offset afterwards
470 p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
476 int offset = pdu->offset;
483 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
485 goto rewind_and_exit;
491 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
492 pdu->size, pdu->id, pdu->tag);
504 pdu->offset = offset;
507 EXPORT_SYMBOL(p9_parse_header);
510 * p9_check_errors - check 9p packet for error return and process it
511 * @c: current client instance
512 * @req: request to parse and check for error conditions
514 * returns error code if one is discovered, otherwise returns 0
516 * this will have to be more complicated if we have multiple
520 static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
526 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
528 * dump the response from server
529 * This should be after check errors which poplulate pdu_fcall.
531 trace_9p_protocol_dump(c, req->rc);
533 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
536 if (type != P9_RERROR && type != P9_RLERROR)
539 if (!p9_is_proto_dotl(c)) {
541 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
546 if (p9_is_proto_dotu(c) && ecode < 512)
550 err = p9_errstr2errno(ename, strlen(ename));
552 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
557 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
560 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
566 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
572 * p9_check_zc_errors - check 9p packet for error return and process it
573 * @c: current client instance
574 * @req: request to parse and check for error conditions
575 * @in_hdrlen: Size of response protocol buffer.
577 * returns error code if one is discovered, otherwise returns 0
579 * this will have to be more complicated if we have multiple
583 static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
584 struct iov_iter *uidata, int in_hdrlen)
591 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
593 * dump the response from server
594 * This should be after parse_header which poplulate pdu_fcall.
596 trace_9p_protocol_dump(c, req->rc);
598 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
602 if (type != P9_RERROR && type != P9_RLERROR)
605 if (!p9_is_proto_dotl(c)) {
606 /* Error is reported in string format */
608 /* 7 = header size for RERROR; */
609 int inline_len = in_hdrlen - 7;
611 len = req->rc->size - req->rc->offset;
612 if (len > (P9_ZC_HDR_SZ - 7)) {
617 ename = &req->rc->sdata[req->rc->offset];
618 if (len > inline_len) {
619 /* We have error in external buffer */
620 if (!copy_from_iter_full(ename + inline_len,
621 len - inline_len, uidata)) {
627 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
632 if (p9_is_proto_dotu(c) && ecode < 512)
636 err = p9_errstr2errno(ename, strlen(ename));
638 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
643 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
646 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
651 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
655 static struct p9_req_t *
656 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
659 * p9_client_flush - flush (cancel) a request
661 * @oldreq: request to cancel
663 * This sents a flush for a particular request and links
664 * the flush request to the original request. The current
665 * code only supports a single flush request although the protocol
666 * allows for multiple flush requests to be sent for a single request.
670 static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
672 struct p9_req_t *req;
676 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
680 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
682 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
687 * if we haven't received a response for oldreq,
688 * remove it from the list
690 if (oldreq->status == REQ_STATUS_SENT)
691 if (c->trans_mod->cancelled)
692 c->trans_mod->cancelled(c, oldreq);
698 static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
699 int8_t type, int req_size,
700 const char *fmt, va_list ap)
703 struct p9_req_t *req;
705 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
707 /* we allow for any status other than disconnected */
708 if (c->status == Disconnected)
709 return ERR_PTR(-EIO);
711 /* if status is begin_disconnected we allow only clunk request */
712 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
713 return ERR_PTR(-EIO);
716 if (type != P9_TVERSION) {
717 tag = p9_idpool_get(c->tagpool);
719 return ERR_PTR(-ENOMEM);
722 req = p9_tag_alloc(c, tag, req_size);
726 /* marshall the data */
727 p9pdu_prepare(req->tc, tag, type);
728 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
731 p9pdu_finalize(c, req->tc);
732 trace_9p_client_req(c, type, tag);
740 * p9_client_rpc - issue a request and wait for a response
742 * @type: type of request
743 * @fmt: protocol format string (see protocol.c)
745 * Returns request structure (which client must free using p9_free_req)
748 static struct p9_req_t *
749 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
754 struct p9_req_t *req;
757 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
762 if (signal_pending(current)) {
764 clear_thread_flag(TIF_SIGPENDING);
768 err = c->trans_mod->request(c, req);
770 if (err != -ERESTARTSYS && err != -EFAULT)
771 c->status = Disconnected;
775 /* Wait for the response */
776 err = wait_event_killable(*req->wq, req->status >= REQ_STATUS_RCVD);
779 * Make sure our req is coherent with regard to updates in other
780 * threads - echoes to wmb() in the callback
784 if ((err == -ERESTARTSYS) && (c->status == Connected)
785 && (type == P9_TFLUSH)) {
787 clear_thread_flag(TIF_SIGPENDING);
791 if (req->status == REQ_STATUS_ERROR) {
792 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
795 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
796 p9_debug(P9_DEBUG_MUX, "flushing\n");
798 clear_thread_flag(TIF_SIGPENDING);
800 if (c->trans_mod->cancel(c, req))
801 p9_client_flush(c, req);
803 /* if we received the response anyway, don't signal error */
804 if (req->status == REQ_STATUS_RCVD)
808 spin_lock_irqsave(¤t->sighand->siglock, flags);
810 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
815 err = p9_check_errors(c, req);
816 trace_9p_client_res(c, type, req->rc->tag, err);
821 return ERR_PTR(safe_errno(err));
825 * p9_client_zc_rpc - issue a request and wait for a response
827 * @type: type of request
828 * @uidata: destination for zero copy read
829 * @uodata: source for zero copy write
830 * @inlen: read buffer size
831 * @olen: write buffer size
832 * @hdrlen: reader header size, This is the size of response protocol data
833 * @fmt: protocol format string (see protocol.c)
835 * Returns request structure (which client must free using p9_free_req)
837 static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
838 struct iov_iter *uidata,
839 struct iov_iter *uodata,
840 int inlen, int olen, int in_hdrlen,
841 const char *fmt, ...)
846 struct p9_req_t *req;
850 * We allocate a inline protocol data of only 4k bytes.
851 * The actual content is passed in zero-copy fashion.
853 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
858 if (signal_pending(current)) {
860 clear_thread_flag(TIF_SIGPENDING);
864 err = c->trans_mod->zc_request(c, req, uidata, uodata,
865 inlen, olen, in_hdrlen);
868 c->status = Disconnected;
869 if (err != -ERESTARTSYS)
872 if (req->status == REQ_STATUS_ERROR) {
873 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
876 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
877 p9_debug(P9_DEBUG_MUX, "flushing\n");
879 clear_thread_flag(TIF_SIGPENDING);
881 if (c->trans_mod->cancel(c, req))
882 p9_client_flush(c, req);
884 /* if we received the response anyway, don't signal error */
885 if (req->status == REQ_STATUS_RCVD)
889 spin_lock_irqsave(¤t->sighand->siglock, flags);
891 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
896 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
897 trace_9p_client_res(c, type, req->rc->tag, err);
902 return ERR_PTR(safe_errno(err));
905 static struct p9_fid *p9_fid_create(struct p9_client *clnt)
911 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
912 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
914 return ERR_PTR(-ENOMEM);
916 ret = p9_idpool_get(clnt->fidpool);
923 memset(&fid->qid, 0, sizeof(struct p9_qid));
925 fid->uid = current_fsuid();
928 spin_lock_irqsave(&clnt->lock, flags);
929 list_add(&fid->flist, &clnt->fidlist);
930 spin_unlock_irqrestore(&clnt->lock, flags);
939 static void p9_fid_destroy(struct p9_fid *fid)
941 struct p9_client *clnt;
944 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
946 p9_idpool_put(fid->fid, clnt->fidpool);
947 spin_lock_irqsave(&clnt->lock, flags);
948 list_del(&fid->flist);
949 spin_unlock_irqrestore(&clnt->lock, flags);
954 static int p9_client_version(struct p9_client *c)
957 struct p9_req_t *req;
961 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
962 c->msize, c->proto_version);
964 switch (c->proto_version) {
966 req = p9_client_rpc(c, P9_TVERSION, "ds",
967 c->msize, "9P2000.L");
970 req = p9_client_rpc(c, P9_TVERSION, "ds",
971 c->msize, "9P2000.u");
973 case p9_proto_legacy:
974 req = p9_client_rpc(c, P9_TVERSION, "ds",
984 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
986 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
987 trace_9p_protocol_dump(c, req->rc);
991 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
992 if (!strncmp(version, "9P2000.L", 8))
993 c->proto_version = p9_proto_2000L;
994 else if (!strncmp(version, "9P2000.u", 8))
995 c->proto_version = p9_proto_2000u;
996 else if (!strncmp(version, "9P2000", 6))
997 c->proto_version = p9_proto_legacy;
1003 if (msize < c->msize)
1008 p9_free_req(c, req);
1013 struct p9_client *p9_client_create(const char *dev_name, char *options)
1016 struct p9_client *clnt;
1020 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1022 return ERR_PTR(-ENOMEM);
1024 clnt->trans_mod = NULL;
1027 client_id = utsname()->nodename;
1028 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1030 spin_lock_init(&clnt->lock);
1031 INIT_LIST_HEAD(&clnt->fidlist);
1033 err = p9_tag_init(clnt);
1037 err = parse_opts(options, clnt);
1039 goto destroy_tagpool;
1041 if (!clnt->trans_mod)
1042 clnt->trans_mod = v9fs_get_default_trans();
1044 if (clnt->trans_mod == NULL) {
1045 err = -EPROTONOSUPPORT;
1046 p9_debug(P9_DEBUG_ERROR,
1047 "No transport defined or default transport\n");
1048 goto destroy_tagpool;
1051 clnt->fidpool = p9_idpool_create();
1052 if (IS_ERR(clnt->fidpool)) {
1053 err = PTR_ERR(clnt->fidpool);
1057 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1058 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
1060 err = clnt->trans_mod->create(clnt, dev_name, options);
1062 goto destroy_fidpool;
1064 if (clnt->msize > clnt->trans_mod->maxsize)
1065 clnt->msize = clnt->trans_mod->maxsize;
1067 err = p9_client_version(clnt);
1074 clnt->trans_mod->close(clnt);
1076 p9_idpool_destroy(clnt->fidpool);
1078 v9fs_put_trans(clnt->trans_mod);
1080 p9_idpool_destroy(clnt->tagpool);
1083 return ERR_PTR(err);
1085 EXPORT_SYMBOL(p9_client_create);
1087 void p9_client_destroy(struct p9_client *clnt)
1089 struct p9_fid *fid, *fidptr;
1091 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
1093 if (clnt->trans_mod)
1094 clnt->trans_mod->close(clnt);
1096 v9fs_put_trans(clnt->trans_mod);
1098 list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
1099 pr_info("Found fid %d not clunked\n", fid->fid);
1100 p9_fid_destroy(fid);
1104 p9_idpool_destroy(clnt->fidpool);
1106 p9_tag_cleanup(clnt);
1110 EXPORT_SYMBOL(p9_client_destroy);
1112 void p9_client_disconnect(struct p9_client *clnt)
1114 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1115 clnt->status = Disconnected;
1117 EXPORT_SYMBOL(p9_client_disconnect);
1119 void p9_client_begin_disconnect(struct p9_client *clnt)
1121 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1122 clnt->status = BeginDisconnect;
1124 EXPORT_SYMBOL(p9_client_begin_disconnect);
1126 struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
1127 const char *uname, kuid_t n_uname, const char *aname)
1130 struct p9_req_t *req;
1135 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1136 afid ? afid->fid : -1, uname, aname);
1137 fid = p9_fid_create(clnt);
1145 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
1146 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1152 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
1154 trace_9p_protocol_dump(clnt, req->rc);
1155 p9_free_req(clnt, req);
1159 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1160 qid.type, (unsigned long long)qid.path, qid.version);
1162 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1164 p9_free_req(clnt, req);
1169 p9_fid_destroy(fid);
1170 return ERR_PTR(err);
1172 EXPORT_SYMBOL(p9_client_attach);
1174 struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1175 const unsigned char * const *wnames, int clone)
1178 struct p9_client *clnt;
1180 struct p9_qid *wqids;
1181 struct p9_req_t *req;
1182 uint16_t nwqids, count;
1186 clnt = oldfid->clnt;
1188 fid = p9_fid_create(clnt);
1195 fid->uid = oldfid->uid;
1200 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1201 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
1203 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1210 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
1212 trace_9p_protocol_dump(clnt, req->rc);
1213 p9_free_req(clnt, req);
1216 p9_free_req(clnt, req);
1218 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
1220 if (nwqids != nwname) {
1225 for (count = 0; count < nwqids; count++)
1226 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
1227 count, wqids[count].type,
1228 (unsigned long long)wqids[count].path,
1229 wqids[count].version);
1232 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
1234 fid->qid = oldfid->qid;
1241 p9_client_clunk(fid);
1245 if (fid && (fid != oldfid))
1246 p9_fid_destroy(fid);
1248 return ERR_PTR(err);
1250 EXPORT_SYMBOL(p9_client_walk);
1252 int p9_client_open(struct p9_fid *fid, int mode)
1255 struct p9_client *clnt;
1256 struct p9_req_t *req;
1261 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
1262 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1265 if (fid->mode != -1)
1268 if (p9_is_proto_dotl(clnt))
1269 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1271 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
1277 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1279 trace_9p_protocol_dump(clnt, req->rc);
1280 goto free_and_error;
1283 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
1284 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1285 (unsigned long long)qid.path, qid.version, iounit);
1288 fid->iounit = iounit;
1291 p9_free_req(clnt, req);
1295 EXPORT_SYMBOL(p9_client_open);
1297 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
1298 kgid_t gid, struct p9_qid *qid)
1301 struct p9_client *clnt;
1302 struct p9_req_t *req;
1305 p9_debug(P9_DEBUG_9P,
1306 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1307 ofid->fid, name, flags, mode,
1308 from_kgid(&init_user_ns, gid));
1311 if (ofid->mode != -1)
1314 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
1321 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1323 trace_9p_protocol_dump(clnt, req->rc);
1324 goto free_and_error;
1327 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1329 (unsigned long long)qid->path,
1330 qid->version, iounit);
1333 ofid->iounit = iounit;
1336 p9_free_req(clnt, req);
1340 EXPORT_SYMBOL(p9_client_create_dotl);
1342 int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
1346 struct p9_client *clnt;
1347 struct p9_req_t *req;
1351 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1352 fid->fid, name, perm, mode);
1356 if (fid->mode != -1)
1359 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1366 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1368 trace_9p_protocol_dump(clnt, req->rc);
1369 goto free_and_error;
1372 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1374 (unsigned long long)qid.path,
1375 qid.version, iounit);
1378 fid->iounit = iounit;
1381 p9_free_req(clnt, req);
1385 EXPORT_SYMBOL(p9_client_fcreate);
1387 int p9_client_symlink(struct p9_fid *dfid, const char *name,
1388 const char *symtgt, kgid_t gid, struct p9_qid *qid)
1391 struct p9_client *clnt;
1392 struct p9_req_t *req;
1394 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1395 dfid->fid, name, symtgt);
1398 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
1405 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1407 trace_9p_protocol_dump(clnt, req->rc);
1408 goto free_and_error;
1411 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
1412 qid->type, (unsigned long long)qid->path, qid->version);
1415 p9_free_req(clnt, req);
1419 EXPORT_SYMBOL(p9_client_symlink);
1421 int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
1423 struct p9_client *clnt;
1424 struct p9_req_t *req;
1426 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
1427 dfid->fid, oldfid->fid, newname);
1429 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1432 return PTR_ERR(req);
1434 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
1435 p9_free_req(clnt, req);
1438 EXPORT_SYMBOL(p9_client_link);
1440 int p9_client_fsync(struct p9_fid *fid, int datasync)
1443 struct p9_client *clnt;
1444 struct p9_req_t *req;
1446 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
1447 fid->fid, datasync);
1451 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
1457 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
1459 p9_free_req(clnt, req);
1464 EXPORT_SYMBOL(p9_client_fsync);
1466 int p9_client_clunk(struct p9_fid *fid)
1469 struct p9_client *clnt;
1470 struct p9_req_t *req;
1474 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1475 __func__, task_pid_nr(current));
1481 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1486 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1492 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
1494 p9_free_req(clnt, req);
1497 * Fid is not valid even after a failed clunk
1498 * If interrupted, retry once then give up and
1499 * leak fid until umount.
1501 if (err == -ERESTARTSYS) {
1505 p9_fid_destroy(fid);
1508 EXPORT_SYMBOL(p9_client_clunk);
1510 int p9_client_remove(struct p9_fid *fid)
1513 struct p9_client *clnt;
1514 struct p9_req_t *req;
1516 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
1520 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1526 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
1528 p9_free_req(clnt, req);
1530 if (err == -ERESTARTSYS)
1531 p9_client_clunk(fid);
1533 p9_fid_destroy(fid);
1536 EXPORT_SYMBOL(p9_client_remove);
1538 int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1541 struct p9_req_t *req;
1542 struct p9_client *clnt;
1544 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
1545 dfid->fid, name, flags);
1548 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1553 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
1555 p9_free_req(clnt, req);
1559 EXPORT_SYMBOL(p9_client_unlinkat);
1562 p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
1564 struct p9_client *clnt = fid->clnt;
1565 struct p9_req_t *req;
1569 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
1570 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
1572 while (iov_iter_count(to)) {
1573 int count = iov_iter_count(to);
1574 int rsize, non_zc = 0;
1577 rsize = fid->iounit;
1578 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1579 rsize = clnt->msize - P9_IOHDRSZ;
1584 /* Don't bother zerocopy for small IO (< 1024) */
1585 if (clnt->trans_mod->zc_request && rsize > 1024) {
1587 * response header len is 11
1588 * PDU Header(7) + IO Size (4)
1590 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1591 0, 11, "dqd", fid->fid,
1595 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1599 *err = PTR_ERR(req);
1603 *err = p9pdu_readf(req->rc, clnt->proto_version,
1604 "D", &count, &dataptr);
1606 trace_9p_protocol_dump(clnt, req->rc);
1607 p9_free_req(clnt, req);
1610 if (rsize < count) {
1611 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1615 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1617 p9_free_req(clnt, req);
1622 int n = copy_to_iter(dataptr, count, to);
1627 p9_free_req(clnt, req);
1631 iov_iter_advance(to, count);
1635 p9_free_req(clnt, req);
1639 EXPORT_SYMBOL(p9_client_read);
1642 p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
1644 struct p9_client *clnt = fid->clnt;
1645 struct p9_req_t *req;
1649 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1650 fid->fid, (unsigned long long) offset,
1651 iov_iter_count(from));
1653 while (iov_iter_count(from)) {
1654 int count = iov_iter_count(from);
1655 int rsize = fid->iounit;
1656 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1657 rsize = clnt->msize - P9_IOHDRSZ;
1662 /* Don't bother zerocopy for small IO (< 1024) */
1663 if (clnt->trans_mod->zc_request && rsize > 1024) {
1664 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1665 rsize, P9_ZC_HDR_SZ, "dqd",
1666 fid->fid, offset, rsize);
1668 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1669 offset, rsize, from);
1672 *err = PTR_ERR(req);
1676 *err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
1678 trace_9p_protocol_dump(clnt, req->rc);
1679 p9_free_req(clnt, req);
1682 if (rsize < count) {
1683 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1687 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1689 p9_free_req(clnt, req);
1690 iov_iter_advance(from, count);
1696 EXPORT_SYMBOL(p9_client_write);
1698 struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1701 struct p9_client *clnt;
1702 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1703 struct p9_req_t *req;
1706 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1709 return ERR_PTR(-ENOMEM);
1714 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1720 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
1722 trace_9p_protocol_dump(clnt, req->rc);
1723 p9_free_req(clnt, req);
1727 p9_debug(P9_DEBUG_9P,
1728 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1729 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1730 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1731 "<<< uid=%d gid=%d n_muid=%d\n",
1732 ret->size, ret->type, ret->dev, ret->qid.type,
1733 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1734 ret->atime, ret->mtime, (unsigned long long)ret->length,
1735 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
1736 from_kuid(&init_user_ns, ret->n_uid),
1737 from_kgid(&init_user_ns, ret->n_gid),
1738 from_kuid(&init_user_ns, ret->n_muid));
1740 p9_free_req(clnt, req);
1745 return ERR_PTR(err);
1747 EXPORT_SYMBOL(p9_client_stat);
1749 struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1753 struct p9_client *clnt;
1754 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1756 struct p9_req_t *req;
1758 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
1759 fid->fid, request_mask);
1762 return ERR_PTR(-ENOMEM);
1767 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1773 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1775 trace_9p_protocol_dump(clnt, req->rc);
1776 p9_free_req(clnt, req);
1780 p9_debug(P9_DEBUG_9P,
1781 "<<< RGETATTR st_result_mask=%lld\n"
1782 "<<< qid=%x.%llx.%x\n"
1783 "<<< st_mode=%8.8x st_nlink=%llu\n"
1784 "<<< st_uid=%d st_gid=%d\n"
1785 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1786 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1787 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1788 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1789 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1790 "<<< st_gen=%lld st_data_version=%lld",
1791 ret->st_result_mask, ret->qid.type, ret->qid.path,
1792 ret->qid.version, ret->st_mode, ret->st_nlink,
1793 from_kuid(&init_user_ns, ret->st_uid),
1794 from_kgid(&init_user_ns, ret->st_gid),
1795 ret->st_rdev, ret->st_size, ret->st_blksize,
1796 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1797 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1798 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1799 ret->st_gen, ret->st_data_version);
1801 p9_free_req(clnt, req);
1806 return ERR_PTR(err);
1808 EXPORT_SYMBOL(p9_client_getattr_dotl);
1810 static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
1814 /* NOTE: size shouldn't include its own length */
1815 /* size[2] type[2] dev[4] qid[13] */
1816 /* mode[4] atime[4] mtime[4] length[8]*/
1817 /* name[s] uid[s] gid[s] muid[s] */
1818 ret = 2+4+13+4+4+4+8+2+2+2+2;
1821 ret += strlen(wst->name);
1823 ret += strlen(wst->uid);
1825 ret += strlen(wst->gid);
1827 ret += strlen(wst->muid);
1829 if ((proto_version == p9_proto_2000u) ||
1830 (proto_version == p9_proto_2000L)) {
1831 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1833 ret += strlen(wst->extension);
1839 int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1842 struct p9_req_t *req;
1843 struct p9_client *clnt;
1847 wst->size = p9_client_statsize(wst, clnt->proto_version);
1848 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1849 p9_debug(P9_DEBUG_9P,
1850 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1851 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1852 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1853 " uid=%d gid=%d n_muid=%d\n",
1854 wst->size, wst->type, wst->dev, wst->qid.type,
1855 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1856 wst->atime, wst->mtime, (unsigned long long)wst->length,
1857 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
1858 from_kuid(&init_user_ns, wst->n_uid),
1859 from_kgid(&init_user_ns, wst->n_gid),
1860 from_kuid(&init_user_ns, wst->n_muid));
1862 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
1868 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
1870 p9_free_req(clnt, req);
1874 EXPORT_SYMBOL(p9_client_wstat);
1876 int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1879 struct p9_req_t *req;
1880 struct p9_client *clnt;
1884 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1885 p9_debug(P9_DEBUG_9P,
1886 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1887 " atime_sec=%lld atime_nsec=%lld\n"
1888 " mtime_sec=%lld mtime_nsec=%lld\n",
1889 p9attr->valid, p9attr->mode,
1890 from_kuid(&init_user_ns, p9attr->uid),
1891 from_kgid(&init_user_ns, p9attr->gid),
1892 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1893 p9attr->mtime_sec, p9attr->mtime_nsec);
1895 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1901 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
1902 p9_free_req(clnt, req);
1906 EXPORT_SYMBOL(p9_client_setattr);
1908 int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1911 struct p9_req_t *req;
1912 struct p9_client *clnt;
1917 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
1919 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1925 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1926 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1927 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1929 trace_9p_protocol_dump(clnt, req->rc);
1930 p9_free_req(clnt, req);
1934 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
1935 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1936 "fsid %llu namelen %ld\n",
1937 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1938 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1939 sb->fsid, (long int)sb->namelen);
1941 p9_free_req(clnt, req);
1945 EXPORT_SYMBOL(p9_client_statfs);
1947 int p9_client_rename(struct p9_fid *fid,
1948 struct p9_fid *newdirfid, const char *name)
1951 struct p9_req_t *req;
1952 struct p9_client *clnt;
1957 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
1958 fid->fid, newdirfid->fid, name);
1960 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1961 newdirfid->fid, name);
1967 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
1969 p9_free_req(clnt, req);
1973 EXPORT_SYMBOL(p9_client_rename);
1975 int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1976 struct p9_fid *newdirfid, const char *new_name)
1979 struct p9_req_t *req;
1980 struct p9_client *clnt;
1983 clnt = olddirfid->clnt;
1985 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
1986 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1987 newdirfid->fid, new_name);
1989 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1990 old_name, newdirfid->fid, new_name);
1996 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
1997 newdirfid->fid, new_name);
1999 p9_free_req(clnt, req);
2003 EXPORT_SYMBOL(p9_client_renameat);
2006 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
2008 struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
2009 const char *attr_name, u64 *attr_size)
2012 struct p9_req_t *req;
2013 struct p9_client *clnt;
2014 struct p9_fid *attr_fid;
2017 clnt = file_fid->clnt;
2018 attr_fid = p9_fid_create(clnt);
2019 if (IS_ERR(attr_fid)) {
2020 err = PTR_ERR(attr_fid);
2024 p9_debug(P9_DEBUG_9P,
2025 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2026 file_fid->fid, attr_fid->fid, attr_name);
2028 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2029 file_fid->fid, attr_fid->fid, attr_name);
2034 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2036 trace_9p_protocol_dump(clnt, req->rc);
2037 p9_free_req(clnt, req);
2040 p9_free_req(clnt, req);
2041 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
2042 attr_fid->fid, *attr_size);
2045 p9_client_clunk(attr_fid);
2048 if (attr_fid && (attr_fid != file_fid))
2049 p9_fid_destroy(attr_fid);
2051 return ERR_PTR(err);
2053 EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2055 int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2056 u64 attr_size, int flags)
2059 struct p9_req_t *req;
2060 struct p9_client *clnt;
2062 p9_debug(P9_DEBUG_9P,
2063 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2064 fid->fid, name, (long long)attr_size, flags);
2067 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2068 fid->fid, name, attr_size, flags);
2073 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
2074 p9_free_req(clnt, req);
2078 EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2080 int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2082 int err, rsize, non_zc = 0;
2083 struct p9_client *clnt;
2084 struct p9_req_t *req;
2086 struct kvec kv = {.iov_base = data, .iov_len = count};
2089 iov_iter_kvec(&to, READ | ITER_KVEC, &kv, 1, count);
2091 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
2092 fid->fid, (unsigned long long) offset, count);
2097 rsize = fid->iounit;
2098 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2099 rsize = clnt->msize - P9_READDIRHDRSZ;
2104 /* Don't bother zerocopy for small IO (< 1024) */
2105 if (clnt->trans_mod->zc_request && rsize > 1024) {
2107 * response header len is 11
2108 * PDU Header(7) + IO Size (4)
2110 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2111 11, "dqd", fid->fid, offset, rsize);
2114 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
2122 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2124 trace_9p_protocol_dump(clnt, req->rc);
2125 goto free_and_error;
2127 if (rsize < count) {
2128 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2132 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
2135 memmove(data, dataptr, count);
2137 p9_free_req(clnt, req);
2141 p9_free_req(clnt, req);
2145 EXPORT_SYMBOL(p9_client_readdir);
2147 int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
2148 dev_t rdev, kgid_t gid, struct p9_qid *qid)
2151 struct p9_client *clnt;
2152 struct p9_req_t *req;
2156 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
2157 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2158 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
2159 MAJOR(rdev), MINOR(rdev), gid);
2161 return PTR_ERR(req);
2163 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2165 trace_9p_protocol_dump(clnt, req->rc);
2168 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
2169 (unsigned long long)qid->path, qid->version);
2172 p9_free_req(clnt, req);
2176 EXPORT_SYMBOL(p9_client_mknod_dotl);
2178 int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
2179 kgid_t gid, struct p9_qid *qid)
2182 struct p9_client *clnt;
2183 struct p9_req_t *req;
2187 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2188 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2189 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
2192 return PTR_ERR(req);
2194 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2196 trace_9p_protocol_dump(clnt, req->rc);
2199 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
2200 (unsigned long long)qid->path, qid->version);
2203 p9_free_req(clnt, req);
2207 EXPORT_SYMBOL(p9_client_mkdir_dotl);
2209 int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2212 struct p9_client *clnt;
2213 struct p9_req_t *req;
2217 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
2218 "start %lld length %lld proc_id %d client_id %s\n",
2219 fid->fid, flock->type, flock->flags, flock->start,
2220 flock->length, flock->proc_id, flock->client_id);
2222 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2223 flock->flags, flock->start, flock->length,
2224 flock->proc_id, flock->client_id);
2227 return PTR_ERR(req);
2229 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2231 trace_9p_protocol_dump(clnt, req->rc);
2234 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
2236 p9_free_req(clnt, req);
2240 EXPORT_SYMBOL(p9_client_lock_dotl);
2242 int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2245 struct p9_client *clnt;
2246 struct p9_req_t *req;
2250 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
2251 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2252 glock->start, glock->length, glock->proc_id, glock->client_id);
2254 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2255 glock->start, glock->length, glock->proc_id, glock->client_id);
2258 return PTR_ERR(req);
2260 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2261 &glock->start, &glock->length, &glock->proc_id,
2264 trace_9p_protocol_dump(clnt, req->rc);
2267 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
2268 "proc_id %d client_id %s\n", glock->type, glock->start,
2269 glock->length, glock->proc_id, glock->client_id);
2271 p9_free_req(clnt, req);
2274 EXPORT_SYMBOL(p9_client_getlock_dotl);
2276 int p9_client_readlink(struct p9_fid *fid, char **target)
2279 struct p9_client *clnt;
2280 struct p9_req_t *req;
2284 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
2286 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2288 return PTR_ERR(req);
2290 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2292 trace_9p_protocol_dump(clnt, req->rc);
2295 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
2297 p9_free_req(clnt, req);
2300 EXPORT_SYMBOL(p9_client_readlink);