6 * Copyright (C) 2008 by Eric Van Hensbergen <ericvh@gmail.com>
7 * Copyright (C) 2007 by Latchesar Ionkov <lucho@ionkov.net>
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.h>
36 #include <linux/uaccess.h>
37 #include <linux/uio.h>
38 #include <net/9p/9p.h>
39 #include <linux/parser.h>
40 #include <net/9p/client.h>
41 #include <net/9p/transport.h>
44 #define CREATE_TRACE_POINTS
45 #include <trace/events/9p.h>
48 * Client Option Parsing (code inspired by NFS code)
49 * - a little lazy - parse all client options
60 static const match_table_t tokens = {
61 {Opt_msize, "msize=%u"},
62 {Opt_legacy, "noextend"},
63 {Opt_trans, "trans=%s"},
64 {Opt_version, "version=%s"},
68 inline int p9_is_proto_dotl(struct p9_client *clnt)
70 return clnt->proto_version == p9_proto_2000L;
72 EXPORT_SYMBOL(p9_is_proto_dotl);
74 inline int p9_is_proto_dotu(struct p9_client *clnt)
76 return clnt->proto_version == p9_proto_2000u;
78 EXPORT_SYMBOL(p9_is_proto_dotu);
81 * Some error codes are taken directly from the server replies,
82 * make sure they are valid.
84 static int safe_errno(int err)
86 if ((err > 0) || (err < -MAX_ERRNO)) {
87 p9_debug(P9_DEBUG_ERROR, "Invalid error code %d\n", err);
94 /* Interpret mount option for protocol version */
95 static int get_protocol_version(char *s)
97 int version = -EINVAL;
99 if (!strcmp(s, "9p2000")) {
100 version = p9_proto_legacy;
101 p9_debug(P9_DEBUG_9P, "Protocol version: Legacy\n");
102 } else if (!strcmp(s, "9p2000.u")) {
103 version = p9_proto_2000u;
104 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.u\n");
105 } else if (!strcmp(s, "9p2000.L")) {
106 version = p9_proto_2000L;
107 p9_debug(P9_DEBUG_9P, "Protocol version: 9P2000.L\n");
109 pr_info("Unknown protocol version %s\n", s);
115 * parse_options - parse mount options into client structure
116 * @opts: options string passed from mount
117 * @clnt: existing v9fs client information
119 * Return 0 upon success, -ERRNO upon failure
122 static int parse_opts(char *opts, struct p9_client *clnt)
124 char *options, *tmp_options;
126 substring_t args[MAX_OPT_ARGS];
131 clnt->proto_version = p9_proto_2000L;
137 tmp_options = kstrdup(opts, GFP_KERNEL);
139 p9_debug(P9_DEBUG_ERROR,
140 "failed to allocate copy of option string\n");
143 options = tmp_options;
145 while ((p = strsep(&options, ",")) != NULL) {
149 token = match_token(p, tokens, args);
152 r = match_int(&args[0], &option);
154 p9_debug(P9_DEBUG_ERROR,
155 "integer field, but no integer?\n");
159 clnt->msize = option;
162 s = match_strdup(&args[0]);
165 p9_debug(P9_DEBUG_ERROR,
166 "problem allocating copy of trans arg\n");
167 goto free_and_return;
169 clnt->trans_mod = v9fs_get_trans_by_name(s);
170 if (clnt->trans_mod == NULL) {
171 pr_info("Could not find request transport: %s\n",
175 goto free_and_return;
180 clnt->proto_version = p9_proto_legacy;
183 s = match_strdup(&args[0]);
186 p9_debug(P9_DEBUG_ERROR,
187 "problem allocating copy of version arg\n");
188 goto free_and_return;
190 ret = get_protocol_version(s);
191 if (ret == -EINVAL) {
193 goto free_and_return;
196 clnt->proto_version = ret;
208 static struct p9_fcall *p9_fcall_alloc(int alloc_msize)
211 fc = kmalloc(sizeof(struct p9_fcall) + alloc_msize, GFP_NOFS);
214 fc->capacity = alloc_msize;
215 fc->sdata = (char *) fc + sizeof(struct p9_fcall);
220 * p9_tag_alloc - lookup/allocate a request by tag
221 * @c: client session to lookup tag within
222 * @tag: numeric id for transaction
224 * this is a simple array lookup, but will grow the
225 * request_slots as necessary to accommodate transaction
226 * ids which did not previously have a slot.
228 * this code relies on the client spinlock to manage locks, its
229 * possible we should switch to something else, but I'd rather
230 * stick with something low-overhead for the common case.
234 static struct p9_req_t *
235 p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
239 struct p9_req_t *req;
240 int alloc_msize = min(c->msize, max_size);
242 /* This looks up the original request by tag so we know which
243 * buffer to read the data into */
246 if (tag >= c->max_tag) {
247 spin_lock_irqsave(&c->lock, flags);
248 /* check again since original check was outside of lock */
249 while (tag >= c->max_tag) {
250 row = (tag / P9_ROW_MAXTAG);
251 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
252 sizeof(struct p9_req_t), GFP_ATOMIC);
255 pr_err("Couldn't grow tag array\n");
256 spin_unlock_irqrestore(&c->lock, flags);
257 return ERR_PTR(-ENOMEM);
259 for (col = 0; col < P9_ROW_MAXTAG; col++) {
260 c->reqs[row][col].status = REQ_STATUS_IDLE;
261 c->reqs[row][col].tc = NULL;
263 c->max_tag += P9_ROW_MAXTAG;
265 spin_unlock_irqrestore(&c->lock, flags);
267 row = tag / P9_ROW_MAXTAG;
268 col = tag % P9_ROW_MAXTAG;
270 req = &c->reqs[row][col];
272 req->wq = kmalloc(sizeof(wait_queue_head_t), GFP_NOFS);
275 init_waitqueue_head(req->wq);
279 req->tc = p9_fcall_alloc(alloc_msize);
281 req->rc = p9_fcall_alloc(alloc_msize);
282 if (!req->tc || !req->rc)
285 p9pdu_reset(req->tc);
286 p9pdu_reset(req->rc);
288 req->tc->tag = tag-1;
289 req->status = REQ_STATUS_ALLOC;
294 pr_err("Couldn't grow tag array\n");
298 req->tc = req->rc = NULL;
300 return ERR_PTR(-ENOMEM);
304 * p9_tag_lookup - lookup a request by tag
305 * @c: client session to lookup tag within
306 * @tag: numeric id for transaction
310 struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
314 /* This looks up the original request by tag so we know which
315 * buffer to read the data into */
318 if(tag >= c->max_tag)
321 row = tag / P9_ROW_MAXTAG;
322 col = tag % P9_ROW_MAXTAG;
324 return &c->reqs[row][col];
326 EXPORT_SYMBOL(p9_tag_lookup);
329 * p9_tag_init - setup tags structure and contents
330 * @c: v9fs client struct
332 * This initializes the tags structure for each client instance.
336 static int p9_tag_init(struct p9_client *c)
340 c->tagpool = p9_idpool_create();
341 if (IS_ERR(c->tagpool)) {
342 err = PTR_ERR(c->tagpool);
345 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
347 p9_idpool_destroy(c->tagpool);
356 * p9_tag_cleanup - cleans up tags structure and reclaims resources
357 * @c: v9fs client struct
359 * This frees resources associated with the tags structure
362 static void p9_tag_cleanup(struct p9_client *c)
366 /* check to insure all requests are idle */
367 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
368 for (col = 0; col < P9_ROW_MAXTAG; col++) {
369 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
370 p9_debug(P9_DEBUG_MUX,
371 "Attempting to cleanup non-free tag %d,%d\n",
373 /* TODO: delay execution of cleanup */
380 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
381 p9_idpool_destroy(c->tagpool);
384 /* free requests associated with tags */
385 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
386 for (col = 0; col < P9_ROW_MAXTAG; col++) {
387 kfree(c->reqs[row][col].wq);
388 kfree(c->reqs[row][col].tc);
389 kfree(c->reqs[row][col].rc);
397 * p9_free_req - free a request and clean-up as necessary
399 * r: request to release
403 static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
405 int tag = r->tc->tag;
406 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
408 r->status = REQ_STATUS_IDLE;
409 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
410 p9_idpool_put(tag, c->tagpool);
414 * p9_client_cb - call back from transport to client
416 * req: request received
419 void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
421 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
424 * This barrier is needed to make sure any change made to req before
425 * the other thread wakes up will indeed be seen by the waiting side.
428 req->status = status;
431 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
433 EXPORT_SYMBOL(p9_client_cb);
436 * p9_parse_header - parse header arguments out of a packet
437 * @pdu: packet to parse
438 * @size: size of packet
439 * @type: type of request
440 * @tag: tag of packet
441 * @rewind: set if we need to rewind offset afterwards
445 p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
451 int offset = pdu->offset;
458 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
460 goto rewind_and_exit;
466 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
467 pdu->size, pdu->id, pdu->tag);
479 pdu->offset = offset;
482 EXPORT_SYMBOL(p9_parse_header);
485 * p9_check_errors - check 9p packet for error return and process it
486 * @c: current client instance
487 * @req: request to parse and check for error conditions
489 * returns error code if one is discovered, otherwise returns 0
491 * this will have to be more complicated if we have multiple
495 static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
501 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
503 * dump the response from server
504 * This should be after check errors which poplulate pdu_fcall.
506 trace_9p_protocol_dump(c, req->rc);
508 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
511 if (type != P9_RERROR && type != P9_RLERROR)
514 if (!p9_is_proto_dotl(c)) {
516 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
521 if (p9_is_proto_dotu(c))
524 if (!err || !IS_ERR_VALUE(err)) {
525 err = p9_errstr2errno(ename, strlen(ename));
527 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
532 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
535 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
541 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
547 * p9_check_zc_errors - check 9p packet for error return and process it
548 * @c: current client instance
549 * @req: request to parse and check for error conditions
550 * @in_hdrlen: Size of response protocol buffer.
552 * returns error code if one is discovered, otherwise returns 0
554 * this will have to be more complicated if we have multiple
558 static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
559 struct iov_iter *uidata, int in_hdrlen)
566 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
568 * dump the response from server
569 * This should be after parse_header which poplulate pdu_fcall.
571 trace_9p_protocol_dump(c, req->rc);
573 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
577 if (type != P9_RERROR && type != P9_RLERROR)
580 if (!p9_is_proto_dotl(c)) {
581 /* Error is reported in string format */
583 /* 7 = header size for RERROR; */
584 int inline_len = in_hdrlen - 7;
586 len = req->rc->size - req->rc->offset;
587 if (len > (P9_ZC_HDR_SZ - 7)) {
592 ename = &req->rc->sdata[req->rc->offset];
593 if (len > inline_len) {
594 /* We have error in external buffer */
595 err = copy_from_iter(ename + inline_len,
596 len - inline_len, uidata);
597 if (err != len - inline_len) {
603 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
608 if (p9_is_proto_dotu(c))
611 if (!err || !IS_ERR_VALUE(err)) {
612 err = p9_errstr2errno(ename, strlen(ename));
614 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
619 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
622 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
627 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
631 static struct p9_req_t *
632 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
635 * p9_client_flush - flush (cancel) a request
637 * @oldreq: request to cancel
639 * This sents a flush for a particular request and links
640 * the flush request to the original request. The current
641 * code only supports a single flush request although the protocol
642 * allows for multiple flush requests to be sent for a single request.
646 static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
648 struct p9_req_t *req;
652 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
656 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
658 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
663 * if we haven't received a response for oldreq,
664 * remove it from the list
666 if (oldreq->status == REQ_STATUS_SENT)
667 if (c->trans_mod->cancelled)
668 c->trans_mod->cancelled(c, oldreq);
674 static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
675 int8_t type, int req_size,
676 const char *fmt, va_list ap)
679 struct p9_req_t *req;
681 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
683 /* we allow for any status other than disconnected */
684 if (c->status == Disconnected)
685 return ERR_PTR(-EIO);
687 /* if status is begin_disconnected we allow only clunk request */
688 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
689 return ERR_PTR(-EIO);
692 if (type != P9_TVERSION) {
693 tag = p9_idpool_get(c->tagpool);
695 return ERR_PTR(-ENOMEM);
698 req = p9_tag_alloc(c, tag, req_size);
702 /* marshall the data */
703 p9pdu_prepare(req->tc, tag, type);
704 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
707 p9pdu_finalize(c, req->tc);
708 trace_9p_client_req(c, type, tag);
716 * p9_client_rpc - issue a request and wait for a response
718 * @type: type of request
719 * @fmt: protocol format string (see protocol.c)
721 * Returns request structure (which client must free using p9_free_req)
724 static struct p9_req_t *
725 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
730 struct p9_req_t *req;
733 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
738 if (signal_pending(current)) {
740 clear_thread_flag(TIF_SIGPENDING);
744 err = c->trans_mod->request(c, req);
746 if (err != -ERESTARTSYS && err != -EFAULT)
747 c->status = Disconnected;
751 /* Wait for the response */
752 err = wait_event_interruptible(*req->wq,
753 req->status >= REQ_STATUS_RCVD);
756 * Make sure our req is coherent with regard to updates in other
757 * threads - echoes to wmb() in the callback
761 if ((err == -ERESTARTSYS) && (c->status == Connected)
762 && (type == P9_TFLUSH)) {
764 clear_thread_flag(TIF_SIGPENDING);
768 if (req->status == REQ_STATUS_ERROR) {
769 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
772 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
773 p9_debug(P9_DEBUG_MUX, "flushing\n");
775 clear_thread_flag(TIF_SIGPENDING);
777 if (c->trans_mod->cancel(c, req))
778 p9_client_flush(c, req);
780 /* if we received the response anyway, don't signal error */
781 if (req->status == REQ_STATUS_RCVD)
785 spin_lock_irqsave(¤t->sighand->siglock, flags);
787 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
792 err = p9_check_errors(c, req);
793 trace_9p_client_res(c, type, req->rc->tag, err);
798 return ERR_PTR(safe_errno(err));
802 * p9_client_zc_rpc - issue a request and wait for a response
804 * @type: type of request
805 * @uidata: destination for zero copy read
806 * @uodata: source for zero copy write
807 * @inlen: read buffer size
808 * @olen: write buffer size
809 * @hdrlen: reader header size, This is the size of response protocol data
810 * @fmt: protocol format string (see protocol.c)
812 * Returns request structure (which client must free using p9_free_req)
814 static struct p9_req_t *p9_client_zc_rpc(struct p9_client *c, int8_t type,
815 struct iov_iter *uidata,
816 struct iov_iter *uodata,
817 int inlen, int olen, int in_hdrlen,
818 const char *fmt, ...)
823 struct p9_req_t *req;
827 * We allocate a inline protocol data of only 4k bytes.
828 * The actual content is passed in zero-copy fashion.
830 req = p9_client_prepare_req(c, type, P9_ZC_HDR_SZ, fmt, ap);
835 if (signal_pending(current)) {
837 clear_thread_flag(TIF_SIGPENDING);
841 err = c->trans_mod->zc_request(c, req, uidata, uodata,
842 inlen, olen, in_hdrlen);
845 c->status = Disconnected;
846 if (err != -ERESTARTSYS)
849 if (req->status == REQ_STATUS_ERROR) {
850 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
853 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
854 p9_debug(P9_DEBUG_MUX, "flushing\n");
856 clear_thread_flag(TIF_SIGPENDING);
858 if (c->trans_mod->cancel(c, req))
859 p9_client_flush(c, req);
861 /* if we received the response anyway, don't signal error */
862 if (req->status == REQ_STATUS_RCVD)
866 spin_lock_irqsave(¤t->sighand->siglock, flags);
868 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
873 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
874 trace_9p_client_res(c, type, req->rc->tag, err);
879 return ERR_PTR(safe_errno(err));
882 static struct p9_fid *p9_fid_create(struct p9_client *clnt)
888 p9_debug(P9_DEBUG_FID, "clnt %p\n", clnt);
889 fid = kmalloc(sizeof(struct p9_fid), GFP_KERNEL);
891 return ERR_PTR(-ENOMEM);
893 ret = p9_idpool_get(clnt->fidpool);
900 memset(&fid->qid, 0, sizeof(struct p9_qid));
902 fid->uid = current_fsuid();
905 spin_lock_irqsave(&clnt->lock, flags);
906 list_add(&fid->flist, &clnt->fidlist);
907 spin_unlock_irqrestore(&clnt->lock, flags);
916 static void p9_fid_destroy(struct p9_fid *fid)
918 struct p9_client *clnt;
921 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
923 p9_idpool_put(fid->fid, clnt->fidpool);
924 spin_lock_irqsave(&clnt->lock, flags);
925 list_del(&fid->flist);
926 spin_unlock_irqrestore(&clnt->lock, flags);
931 static int p9_client_version(struct p9_client *c)
934 struct p9_req_t *req;
938 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
939 c->msize, c->proto_version);
941 switch (c->proto_version) {
943 req = p9_client_rpc(c, P9_TVERSION, "ds",
944 c->msize, "9P2000.L");
947 req = p9_client_rpc(c, P9_TVERSION, "ds",
948 c->msize, "9P2000.u");
950 case p9_proto_legacy:
951 req = p9_client_rpc(c, P9_TVERSION, "ds",
961 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
963 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
964 trace_9p_protocol_dump(c, req->rc);
968 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
969 if (!strncmp(version, "9P2000.L", 8))
970 c->proto_version = p9_proto_2000L;
971 else if (!strncmp(version, "9P2000.u", 8))
972 c->proto_version = p9_proto_2000u;
973 else if (!strncmp(version, "9P2000", 6))
974 c->proto_version = p9_proto_legacy;
980 if (msize < c->msize)
990 struct p9_client *p9_client_create(const char *dev_name, char *options)
993 struct p9_client *clnt;
997 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
999 return ERR_PTR(-ENOMEM);
1001 clnt->trans_mod = NULL;
1004 client_id = utsname()->nodename;
1005 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1007 spin_lock_init(&clnt->lock);
1008 INIT_LIST_HEAD(&clnt->fidlist);
1010 err = p9_tag_init(clnt);
1014 err = parse_opts(options, clnt);
1016 goto destroy_tagpool;
1018 if (!clnt->trans_mod)
1019 clnt->trans_mod = v9fs_get_default_trans();
1021 if (clnt->trans_mod == NULL) {
1022 err = -EPROTONOSUPPORT;
1023 p9_debug(P9_DEBUG_ERROR,
1024 "No transport defined or default transport\n");
1025 goto destroy_tagpool;
1028 clnt->fidpool = p9_idpool_create();
1029 if (IS_ERR(clnt->fidpool)) {
1030 err = PTR_ERR(clnt->fidpool);
1034 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1035 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
1037 err = clnt->trans_mod->create(clnt, dev_name, options);
1039 goto destroy_fidpool;
1041 if (clnt->msize > clnt->trans_mod->maxsize)
1042 clnt->msize = clnt->trans_mod->maxsize;
1044 err = p9_client_version(clnt);
1051 clnt->trans_mod->close(clnt);
1053 p9_idpool_destroy(clnt->fidpool);
1055 v9fs_put_trans(clnt->trans_mod);
1057 p9_idpool_destroy(clnt->tagpool);
1060 return ERR_PTR(err);
1062 EXPORT_SYMBOL(p9_client_create);
1064 void p9_client_destroy(struct p9_client *clnt)
1066 struct p9_fid *fid, *fidptr;
1068 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
1070 if (clnt->trans_mod)
1071 clnt->trans_mod->close(clnt);
1073 v9fs_put_trans(clnt->trans_mod);
1075 list_for_each_entry_safe(fid, fidptr, &clnt->fidlist, flist) {
1076 pr_info("Found fid %d not clunked\n", fid->fid);
1077 p9_fid_destroy(fid);
1081 p9_idpool_destroy(clnt->fidpool);
1083 p9_tag_cleanup(clnt);
1087 EXPORT_SYMBOL(p9_client_destroy);
1089 void p9_client_disconnect(struct p9_client *clnt)
1091 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1092 clnt->status = Disconnected;
1094 EXPORT_SYMBOL(p9_client_disconnect);
1096 void p9_client_begin_disconnect(struct p9_client *clnt)
1098 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1099 clnt->status = BeginDisconnect;
1101 EXPORT_SYMBOL(p9_client_begin_disconnect);
1103 struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
1104 char *uname, kuid_t n_uname, char *aname)
1107 struct p9_req_t *req;
1112 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1113 afid ? afid->fid : -1, uname, aname);
1114 fid = p9_fid_create(clnt);
1122 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
1123 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1129 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
1131 trace_9p_protocol_dump(clnt, req->rc);
1132 p9_free_req(clnt, req);
1136 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1137 qid.type, (unsigned long long)qid.path, qid.version);
1139 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1141 p9_free_req(clnt, req);
1146 p9_fid_destroy(fid);
1147 return ERR_PTR(err);
1149 EXPORT_SYMBOL(p9_client_attach);
1151 struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1152 char **wnames, int clone)
1155 struct p9_client *clnt;
1157 struct p9_qid *wqids;
1158 struct p9_req_t *req;
1159 uint16_t nwqids, count;
1163 clnt = oldfid->clnt;
1165 fid = p9_fid_create(clnt);
1172 fid->uid = oldfid->uid;
1177 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1178 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
1180 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1187 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
1189 trace_9p_protocol_dump(clnt, req->rc);
1190 p9_free_req(clnt, req);
1193 p9_free_req(clnt, req);
1195 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
1197 if (nwqids != nwname) {
1202 for (count = 0; count < nwqids; count++)
1203 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
1204 count, wqids[count].type,
1205 (unsigned long long)wqids[count].path,
1206 wqids[count].version);
1209 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
1211 fid->qid = oldfid->qid;
1218 p9_client_clunk(fid);
1222 if (fid && (fid != oldfid))
1223 p9_fid_destroy(fid);
1225 return ERR_PTR(err);
1227 EXPORT_SYMBOL(p9_client_walk);
1229 int p9_client_open(struct p9_fid *fid, int mode)
1232 struct p9_client *clnt;
1233 struct p9_req_t *req;
1238 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
1239 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1242 if (fid->mode != -1)
1245 if (p9_is_proto_dotl(clnt))
1246 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1248 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
1254 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1256 trace_9p_protocol_dump(clnt, req->rc);
1257 goto free_and_error;
1260 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
1261 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1262 (unsigned long long)qid.path, qid.version, iounit);
1265 fid->iounit = iounit;
1268 p9_free_req(clnt, req);
1272 EXPORT_SYMBOL(p9_client_open);
1274 int p9_client_create_dotl(struct p9_fid *ofid, char *name, u32 flags, u32 mode,
1275 kgid_t gid, struct p9_qid *qid)
1278 struct p9_client *clnt;
1279 struct p9_req_t *req;
1282 p9_debug(P9_DEBUG_9P,
1283 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1284 ofid->fid, name, flags, mode,
1285 from_kgid(&init_user_ns, gid));
1288 if (ofid->mode != -1)
1291 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
1298 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1300 trace_9p_protocol_dump(clnt, req->rc);
1301 goto free_and_error;
1304 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1306 (unsigned long long)qid->path,
1307 qid->version, iounit);
1310 ofid->iounit = iounit;
1313 p9_free_req(clnt, req);
1317 EXPORT_SYMBOL(p9_client_create_dotl);
1319 int p9_client_fcreate(struct p9_fid *fid, char *name, u32 perm, int mode,
1323 struct p9_client *clnt;
1324 struct p9_req_t *req;
1328 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1329 fid->fid, name, perm, mode);
1333 if (fid->mode != -1)
1336 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1343 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1345 trace_9p_protocol_dump(clnt, req->rc);
1346 goto free_and_error;
1349 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1351 (unsigned long long)qid.path,
1352 qid.version, iounit);
1355 fid->iounit = iounit;
1358 p9_free_req(clnt, req);
1362 EXPORT_SYMBOL(p9_client_fcreate);
1364 int p9_client_symlink(struct p9_fid *dfid, char *name, char *symtgt, kgid_t gid,
1368 struct p9_client *clnt;
1369 struct p9_req_t *req;
1371 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1372 dfid->fid, name, symtgt);
1375 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
1382 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1384 trace_9p_protocol_dump(clnt, req->rc);
1385 goto free_and_error;
1388 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
1389 qid->type, (unsigned long long)qid->path, qid->version);
1392 p9_free_req(clnt, req);
1396 EXPORT_SYMBOL(p9_client_symlink);
1398 int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, char *newname)
1400 struct p9_client *clnt;
1401 struct p9_req_t *req;
1403 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
1404 dfid->fid, oldfid->fid, newname);
1406 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1409 return PTR_ERR(req);
1411 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
1412 p9_free_req(clnt, req);
1415 EXPORT_SYMBOL(p9_client_link);
1417 int p9_client_fsync(struct p9_fid *fid, int datasync)
1420 struct p9_client *clnt;
1421 struct p9_req_t *req;
1423 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
1424 fid->fid, datasync);
1428 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
1434 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
1436 p9_free_req(clnt, req);
1441 EXPORT_SYMBOL(p9_client_fsync);
1443 int p9_client_clunk(struct p9_fid *fid)
1446 struct p9_client *clnt;
1447 struct p9_req_t *req;
1451 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1452 __func__, task_pid_nr(current));
1458 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1463 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1469 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
1471 p9_free_req(clnt, req);
1474 * Fid is not valid even after a failed clunk
1475 * If interrupted, retry once then give up and
1476 * leak fid until umount.
1478 if (err == -ERESTARTSYS) {
1482 p9_fid_destroy(fid);
1485 EXPORT_SYMBOL(p9_client_clunk);
1487 int p9_client_remove(struct p9_fid *fid)
1490 struct p9_client *clnt;
1491 struct p9_req_t *req;
1493 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
1497 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1503 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
1505 p9_free_req(clnt, req);
1507 if (err == -ERESTARTSYS)
1508 p9_client_clunk(fid);
1510 p9_fid_destroy(fid);
1513 EXPORT_SYMBOL(p9_client_remove);
1515 int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1518 struct p9_req_t *req;
1519 struct p9_client *clnt;
1521 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
1522 dfid->fid, name, flags);
1525 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1530 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
1532 p9_free_req(clnt, req);
1536 EXPORT_SYMBOL(p9_client_unlinkat);
1539 p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
1541 struct p9_client *clnt = fid->clnt;
1542 struct p9_req_t *req;
1545 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
1546 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
1548 while (iov_iter_count(to)) {
1549 int count = iov_iter_count(to);
1550 int rsize, non_zc = 0;
1553 rsize = fid->iounit;
1554 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1555 rsize = clnt->msize - P9_IOHDRSZ;
1560 /* Don't bother zerocopy for small IO (< 1024) */
1561 if (clnt->trans_mod->zc_request && rsize > 1024) {
1563 * response header len is 11
1564 * PDU Header(7) + IO Size (4)
1566 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1567 0, 11, "dqd", fid->fid,
1571 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1575 *err = PTR_ERR(req);
1579 *err = p9pdu_readf(req->rc, clnt->proto_version,
1580 "D", &count, &dataptr);
1582 trace_9p_protocol_dump(clnt, req->rc);
1583 p9_free_req(clnt, req);
1586 if (rsize < count) {
1587 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1591 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1593 p9_free_req(clnt, req);
1598 int n = copy_to_iter(dataptr, count, to);
1603 p9_free_req(clnt, req);
1607 iov_iter_advance(to, count);
1611 p9_free_req(clnt, req);
1615 EXPORT_SYMBOL(p9_client_read);
1618 p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
1620 struct p9_client *clnt = fid->clnt;
1621 struct p9_req_t *req;
1624 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1625 fid->fid, (unsigned long long) offset,
1626 iov_iter_count(from));
1628 while (iov_iter_count(from)) {
1629 int count = iov_iter_count(from);
1630 int rsize = fid->iounit;
1631 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1632 rsize = clnt->msize - P9_IOHDRSZ;
1637 /* Don't bother zerocopy for small IO (< 1024) */
1638 if (clnt->trans_mod->zc_request && rsize > 1024) {
1639 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1640 rsize, P9_ZC_HDR_SZ, "dqd",
1641 fid->fid, offset, rsize);
1643 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1644 offset, rsize, from);
1647 *err = PTR_ERR(req);
1651 *err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
1653 trace_9p_protocol_dump(clnt, req->rc);
1654 p9_free_req(clnt, req);
1657 if (rsize < count) {
1658 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1662 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1664 p9_free_req(clnt, req);
1665 iov_iter_advance(from, count);
1671 EXPORT_SYMBOL(p9_client_write);
1673 struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1676 struct p9_client *clnt;
1677 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1678 struct p9_req_t *req;
1681 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1684 return ERR_PTR(-ENOMEM);
1689 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1695 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
1697 trace_9p_protocol_dump(clnt, req->rc);
1698 p9_free_req(clnt, req);
1702 p9_debug(P9_DEBUG_9P,
1703 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1704 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1705 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1706 "<<< uid=%d gid=%d n_muid=%d\n",
1707 ret->size, ret->type, ret->dev, ret->qid.type,
1708 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1709 ret->atime, ret->mtime, (unsigned long long)ret->length,
1710 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
1711 from_kuid(&init_user_ns, ret->n_uid),
1712 from_kgid(&init_user_ns, ret->n_gid),
1713 from_kuid(&init_user_ns, ret->n_muid));
1715 p9_free_req(clnt, req);
1720 return ERR_PTR(err);
1722 EXPORT_SYMBOL(p9_client_stat);
1724 struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1728 struct p9_client *clnt;
1729 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1731 struct p9_req_t *req;
1733 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
1734 fid->fid, request_mask);
1737 return ERR_PTR(-ENOMEM);
1742 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1748 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1750 trace_9p_protocol_dump(clnt, req->rc);
1751 p9_free_req(clnt, req);
1755 p9_debug(P9_DEBUG_9P,
1756 "<<< RGETATTR st_result_mask=%lld\n"
1757 "<<< qid=%x.%llx.%x\n"
1758 "<<< st_mode=%8.8x st_nlink=%llu\n"
1759 "<<< st_uid=%d st_gid=%d\n"
1760 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1761 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1762 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1763 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1764 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1765 "<<< st_gen=%lld st_data_version=%lld",
1766 ret->st_result_mask, ret->qid.type, ret->qid.path,
1767 ret->qid.version, ret->st_mode, ret->st_nlink,
1768 from_kuid(&init_user_ns, ret->st_uid),
1769 from_kgid(&init_user_ns, ret->st_gid),
1770 ret->st_rdev, ret->st_size, ret->st_blksize,
1771 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1772 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1773 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1774 ret->st_gen, ret->st_data_version);
1776 p9_free_req(clnt, req);
1781 return ERR_PTR(err);
1783 EXPORT_SYMBOL(p9_client_getattr_dotl);
1785 static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
1789 /* NOTE: size shouldn't include its own length */
1790 /* size[2] type[2] dev[4] qid[13] */
1791 /* mode[4] atime[4] mtime[4] length[8]*/
1792 /* name[s] uid[s] gid[s] muid[s] */
1793 ret = 2+4+13+4+4+4+8+2+2+2+2;
1796 ret += strlen(wst->name);
1798 ret += strlen(wst->uid);
1800 ret += strlen(wst->gid);
1802 ret += strlen(wst->muid);
1804 if ((proto_version == p9_proto_2000u) ||
1805 (proto_version == p9_proto_2000L)) {
1806 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1808 ret += strlen(wst->extension);
1814 int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1817 struct p9_req_t *req;
1818 struct p9_client *clnt;
1822 wst->size = p9_client_statsize(wst, clnt->proto_version);
1823 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1824 p9_debug(P9_DEBUG_9P,
1825 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1826 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1827 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1828 " uid=%d gid=%d n_muid=%d\n",
1829 wst->size, wst->type, wst->dev, wst->qid.type,
1830 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1831 wst->atime, wst->mtime, (unsigned long long)wst->length,
1832 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
1833 from_kuid(&init_user_ns, wst->n_uid),
1834 from_kgid(&init_user_ns, wst->n_gid),
1835 from_kuid(&init_user_ns, wst->n_muid));
1837 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
1843 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
1845 p9_free_req(clnt, req);
1849 EXPORT_SYMBOL(p9_client_wstat);
1851 int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1854 struct p9_req_t *req;
1855 struct p9_client *clnt;
1859 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1860 p9_debug(P9_DEBUG_9P,
1861 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1862 " atime_sec=%lld atime_nsec=%lld\n"
1863 " mtime_sec=%lld mtime_nsec=%lld\n",
1864 p9attr->valid, p9attr->mode,
1865 from_kuid(&init_user_ns, p9attr->uid),
1866 from_kgid(&init_user_ns, p9attr->gid),
1867 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1868 p9attr->mtime_sec, p9attr->mtime_nsec);
1870 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1876 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
1877 p9_free_req(clnt, req);
1881 EXPORT_SYMBOL(p9_client_setattr);
1883 int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1886 struct p9_req_t *req;
1887 struct p9_client *clnt;
1892 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
1894 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1900 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1901 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1902 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1904 trace_9p_protocol_dump(clnt, req->rc);
1905 p9_free_req(clnt, req);
1909 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
1910 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1911 "fsid %llu namelen %ld\n",
1912 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1913 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1914 sb->fsid, (long int)sb->namelen);
1916 p9_free_req(clnt, req);
1920 EXPORT_SYMBOL(p9_client_statfs);
1922 int p9_client_rename(struct p9_fid *fid,
1923 struct p9_fid *newdirfid, const char *name)
1926 struct p9_req_t *req;
1927 struct p9_client *clnt;
1932 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
1933 fid->fid, newdirfid->fid, name);
1935 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1936 newdirfid->fid, name);
1942 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
1944 p9_free_req(clnt, req);
1948 EXPORT_SYMBOL(p9_client_rename);
1950 int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1951 struct p9_fid *newdirfid, const char *new_name)
1954 struct p9_req_t *req;
1955 struct p9_client *clnt;
1958 clnt = olddirfid->clnt;
1960 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
1961 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1962 newdirfid->fid, new_name);
1964 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1965 old_name, newdirfid->fid, new_name);
1971 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
1972 newdirfid->fid, new_name);
1974 p9_free_req(clnt, req);
1978 EXPORT_SYMBOL(p9_client_renameat);
1981 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1983 struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1984 const char *attr_name, u64 *attr_size)
1987 struct p9_req_t *req;
1988 struct p9_client *clnt;
1989 struct p9_fid *attr_fid;
1992 clnt = file_fid->clnt;
1993 attr_fid = p9_fid_create(clnt);
1994 if (IS_ERR(attr_fid)) {
1995 err = PTR_ERR(attr_fid);
1999 p9_debug(P9_DEBUG_9P,
2000 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2001 file_fid->fid, attr_fid->fid, attr_name);
2003 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2004 file_fid->fid, attr_fid->fid, attr_name);
2009 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2011 trace_9p_protocol_dump(clnt, req->rc);
2012 p9_free_req(clnt, req);
2015 p9_free_req(clnt, req);
2016 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
2017 attr_fid->fid, *attr_size);
2020 p9_client_clunk(attr_fid);
2023 if (attr_fid && (attr_fid != file_fid))
2024 p9_fid_destroy(attr_fid);
2026 return ERR_PTR(err);
2028 EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2030 int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2031 u64 attr_size, int flags)
2034 struct p9_req_t *req;
2035 struct p9_client *clnt;
2037 p9_debug(P9_DEBUG_9P,
2038 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2039 fid->fid, name, (long long)attr_size, flags);
2042 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2043 fid->fid, name, attr_size, flags);
2048 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
2049 p9_free_req(clnt, req);
2053 EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2055 int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2057 int err, rsize, non_zc = 0;
2058 struct p9_client *clnt;
2059 struct p9_req_t *req;
2061 struct kvec kv = {.iov_base = data, .iov_len = count};
2064 iov_iter_kvec(&to, READ | ITER_KVEC, &kv, 1, count);
2066 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
2067 fid->fid, (unsigned long long) offset, count);
2072 rsize = fid->iounit;
2073 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2074 rsize = clnt->msize - P9_READDIRHDRSZ;
2079 /* Don't bother zerocopy for small IO (< 1024) */
2080 if (clnt->trans_mod->zc_request && rsize > 1024) {
2082 * response header len is 11
2083 * PDU Header(7) + IO Size (4)
2085 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2086 11, "dqd", fid->fid, offset, rsize);
2089 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
2097 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2099 trace_9p_protocol_dump(clnt, req->rc);
2100 goto free_and_error;
2103 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
2106 memmove(data, dataptr, count);
2108 p9_free_req(clnt, req);
2112 p9_free_req(clnt, req);
2116 EXPORT_SYMBOL(p9_client_readdir);
2118 int p9_client_mknod_dotl(struct p9_fid *fid, char *name, int mode,
2119 dev_t rdev, kgid_t gid, struct p9_qid *qid)
2122 struct p9_client *clnt;
2123 struct p9_req_t *req;
2127 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
2128 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2129 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
2130 MAJOR(rdev), MINOR(rdev), gid);
2132 return PTR_ERR(req);
2134 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2136 trace_9p_protocol_dump(clnt, req->rc);
2139 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
2140 (unsigned long long)qid->path, qid->version);
2143 p9_free_req(clnt, req);
2147 EXPORT_SYMBOL(p9_client_mknod_dotl);
2149 int p9_client_mkdir_dotl(struct p9_fid *fid, char *name, int mode,
2150 kgid_t gid, struct p9_qid *qid)
2153 struct p9_client *clnt;
2154 struct p9_req_t *req;
2158 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2159 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2160 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
2163 return PTR_ERR(req);
2165 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2167 trace_9p_protocol_dump(clnt, req->rc);
2170 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
2171 (unsigned long long)qid->path, qid->version);
2174 p9_free_req(clnt, req);
2178 EXPORT_SYMBOL(p9_client_mkdir_dotl);
2180 int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2183 struct p9_client *clnt;
2184 struct p9_req_t *req;
2188 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
2189 "start %lld length %lld proc_id %d client_id %s\n",
2190 fid->fid, flock->type, flock->flags, flock->start,
2191 flock->length, flock->proc_id, flock->client_id);
2193 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2194 flock->flags, flock->start, flock->length,
2195 flock->proc_id, flock->client_id);
2198 return PTR_ERR(req);
2200 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2202 trace_9p_protocol_dump(clnt, req->rc);
2205 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
2207 p9_free_req(clnt, req);
2211 EXPORT_SYMBOL(p9_client_lock_dotl);
2213 int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2216 struct p9_client *clnt;
2217 struct p9_req_t *req;
2221 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
2222 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2223 glock->start, glock->length, glock->proc_id, glock->client_id);
2225 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2226 glock->start, glock->length, glock->proc_id, glock->client_id);
2229 return PTR_ERR(req);
2231 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2232 &glock->start, &glock->length, &glock->proc_id,
2235 trace_9p_protocol_dump(clnt, req->rc);
2238 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
2239 "proc_id %d client_id %s\n", glock->type, glock->start,
2240 glock->length, glock->proc_id, glock->client_id);
2242 p9_free_req(clnt, req);
2245 EXPORT_SYMBOL(p9_client_getlock_dotl);
2247 int p9_client_readlink(struct p9_fid *fid, char **target)
2250 struct p9_client *clnt;
2251 struct p9_req_t *req;
2255 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
2257 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2259 return PTR_ERR(req);
2261 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2263 trace_9p_protocol_dump(clnt, req->rc);
2266 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
2268 p9_free_req(clnt, req);
2271 EXPORT_SYMBOL(p9_client_readlink);