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;
195 v9fs_put_trans(clnt->trans_mod);
196 clnt->trans_mod = v9fs_get_trans_by_name(s);
197 if (clnt->trans_mod == NULL) {
198 pr_info("Could not find request transport: %s\n",
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 r = get_protocol_version(s);
219 clnt->proto_version = r;
229 v9fs_put_trans(clnt->trans_mod);
234 static struct p9_fcall *p9_fcall_alloc(int alloc_msize)
237 fc = kmalloc(sizeof(struct p9_fcall) + alloc_msize, GFP_NOFS);
240 fc->capacity = alloc_msize;
241 fc->sdata = (char *) fc + sizeof(struct p9_fcall);
246 * p9_tag_alloc - lookup/allocate a request by tag
247 * @c: client session to lookup tag within
248 * @tag: numeric id for transaction
250 * this is a simple array lookup, but will grow the
251 * request_slots as necessary to accommodate transaction
252 * ids which did not previously have a slot.
254 * this code relies on the client spinlock to manage locks, its
255 * possible we should switch to something else, but I'd rather
256 * stick with something low-overhead for the common case.
260 static struct p9_req_t *
261 p9_tag_alloc(struct p9_client *c, u16 tag, unsigned int max_size)
265 struct p9_req_t *req;
266 int alloc_msize = min(c->msize, max_size);
268 /* This looks up the original request by tag so we know which
269 * buffer to read the data into */
272 if (tag >= c->max_tag) {
273 spin_lock_irqsave(&c->lock, flags);
274 /* check again since original check was outside of lock */
275 while (tag >= c->max_tag) {
276 row = (tag / P9_ROW_MAXTAG);
277 c->reqs[row] = kcalloc(P9_ROW_MAXTAG,
278 sizeof(struct p9_req_t), GFP_ATOMIC);
281 pr_err("Couldn't grow tag array\n");
282 spin_unlock_irqrestore(&c->lock, flags);
283 return ERR_PTR(-ENOMEM);
285 for (col = 0; col < P9_ROW_MAXTAG; col++) {
286 req = &c->reqs[row][col];
287 req->status = REQ_STATUS_IDLE;
288 init_waitqueue_head(&req->wq);
290 c->max_tag += P9_ROW_MAXTAG;
292 spin_unlock_irqrestore(&c->lock, flags);
294 row = tag / P9_ROW_MAXTAG;
295 col = tag % P9_ROW_MAXTAG;
297 req = &c->reqs[row][col];
299 req->tc = p9_fcall_alloc(alloc_msize);
301 req->rc = p9_fcall_alloc(alloc_msize);
302 if (!req->tc || !req->rc)
305 p9pdu_reset(req->tc);
306 p9pdu_reset(req->rc);
308 req->tc->tag = tag-1;
309 req->status = REQ_STATUS_ALLOC;
314 pr_err("Couldn't grow tag array\n");
317 req->tc = req->rc = NULL;
318 return ERR_PTR(-ENOMEM);
322 * p9_tag_lookup - lookup a request by tag
323 * @c: client session to lookup tag within
324 * @tag: numeric id for transaction
328 struct p9_req_t *p9_tag_lookup(struct p9_client *c, u16 tag)
332 /* This looks up the original request by tag so we know which
333 * buffer to read the data into */
336 if (tag >= c->max_tag)
339 row = tag / P9_ROW_MAXTAG;
340 col = tag % P9_ROW_MAXTAG;
342 return &c->reqs[row][col];
344 EXPORT_SYMBOL(p9_tag_lookup);
347 * p9_tag_init - setup tags structure and contents
348 * @c: v9fs client struct
350 * This initializes the tags structure for each client instance.
354 static int p9_tag_init(struct p9_client *c)
358 c->tagpool = p9_idpool_create();
359 if (IS_ERR(c->tagpool)) {
360 err = PTR_ERR(c->tagpool);
363 err = p9_idpool_get(c->tagpool); /* reserve tag 0 */
365 p9_idpool_destroy(c->tagpool);
374 * p9_tag_cleanup - cleans up tags structure and reclaims resources
375 * @c: v9fs client struct
377 * This frees resources associated with the tags structure
380 static void p9_tag_cleanup(struct p9_client *c)
384 /* check to insure all requests are idle */
385 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
386 for (col = 0; col < P9_ROW_MAXTAG; col++) {
387 if (c->reqs[row][col].status != REQ_STATUS_IDLE) {
388 p9_debug(P9_DEBUG_MUX,
389 "Attempting to cleanup non-free tag %d,%d\n",
391 /* TODO: delay execution of cleanup */
398 p9_idpool_put(0, c->tagpool); /* free reserved tag 0 */
399 p9_idpool_destroy(c->tagpool);
402 /* free requests associated with tags */
403 for (row = 0; row < (c->max_tag/P9_ROW_MAXTAG); row++) {
404 for (col = 0; col < P9_ROW_MAXTAG; col++) {
405 kfree(c->reqs[row][col].tc);
406 kfree(c->reqs[row][col].rc);
414 * p9_free_req - free a request and clean-up as necessary
416 * r: request to release
420 static void p9_free_req(struct p9_client *c, struct p9_req_t *r)
422 int tag = r->tc->tag;
423 p9_debug(P9_DEBUG_MUX, "clnt %p req %p tag: %d\n", c, r, tag);
425 r->status = REQ_STATUS_IDLE;
426 if (tag != P9_NOTAG && p9_idpool_check(tag, c->tagpool))
427 p9_idpool_put(tag, c->tagpool);
431 * p9_client_cb - call back from transport to client
433 * req: request received
436 void p9_client_cb(struct p9_client *c, struct p9_req_t *req, int status)
438 p9_debug(P9_DEBUG_MUX, " tag %d\n", req->tc->tag);
441 * This barrier is needed to make sure any change made to req before
442 * the status change is visible to another thread
445 req->status = status;
448 p9_debug(P9_DEBUG_MUX, "wakeup: %d\n", req->tc->tag);
450 EXPORT_SYMBOL(p9_client_cb);
453 * p9_parse_header - parse header arguments out of a packet
454 * @pdu: packet to parse
455 * @size: size of packet
456 * @type: type of request
457 * @tag: tag of packet
458 * @rewind: set if we need to rewind offset afterwards
462 p9_parse_header(struct p9_fcall *pdu, int32_t *size, int8_t *type, int16_t *tag,
468 int offset = pdu->offset;
473 err = p9pdu_readf(pdu, 0, "dbw", &r_size, &r_type, &r_tag);
475 goto rewind_and_exit;
484 if (pdu->size != r_size || r_size < 7) {
486 goto rewind_and_exit;
492 p9_debug(P9_DEBUG_9P, "<<< size=%d type: %d tag: %d\n",
493 pdu->size, pdu->id, pdu->tag);
497 pdu->offset = offset;
500 EXPORT_SYMBOL(p9_parse_header);
503 * p9_check_errors - check 9p packet for error return and process it
504 * @c: current client instance
505 * @req: request to parse and check for error conditions
507 * returns error code if one is discovered, otherwise returns 0
509 * this will have to be more complicated if we have multiple
513 static int p9_check_errors(struct p9_client *c, struct p9_req_t *req)
519 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
520 if (req->rc->size >= c->msize) {
521 p9_debug(P9_DEBUG_ERROR,
522 "requested packet size too big: %d\n",
527 * dump the response from server
528 * This should be after check errors which poplulate pdu_fcall.
530 trace_9p_protocol_dump(c, req->rc);
532 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
535 if (type != P9_RERROR && type != P9_RLERROR)
538 if (!p9_is_proto_dotl(c)) {
540 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
545 if (p9_is_proto_dotu(c) && ecode < 512)
549 err = p9_errstr2errno(ename, strlen(ename));
551 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
556 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
559 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
565 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
571 * p9_check_zc_errors - check 9p packet for error return and process it
572 * @c: current client instance
573 * @req: request to parse and check for error conditions
574 * @in_hdrlen: Size of response protocol buffer.
576 * returns error code if one is discovered, otherwise returns 0
578 * this will have to be more complicated if we have multiple
582 static int p9_check_zc_errors(struct p9_client *c, struct p9_req_t *req,
583 struct iov_iter *uidata, int in_hdrlen)
590 err = p9_parse_header(req->rc, NULL, &type, NULL, 0);
592 * dump the response from server
593 * This should be after parse_header which poplulate pdu_fcall.
595 trace_9p_protocol_dump(c, req->rc);
597 p9_debug(P9_DEBUG_ERROR, "couldn't parse header %d\n", err);
601 if (type != P9_RERROR && type != P9_RLERROR)
604 if (!p9_is_proto_dotl(c)) {
605 /* Error is reported in string format */
607 /* 7 = header size for RERROR; */
608 int inline_len = in_hdrlen - 7;
610 len = req->rc->size - req->rc->offset;
611 if (len > (P9_ZC_HDR_SZ - 7)) {
616 ename = &req->rc->sdata[req->rc->offset];
617 if (len > inline_len) {
618 /* We have error in external buffer */
619 if (!copy_from_iter_full(ename + inline_len,
620 len - inline_len, uidata)) {
626 err = p9pdu_readf(req->rc, c->proto_version, "s?d",
631 if (p9_is_proto_dotu(c) && ecode < 512)
635 err = p9_errstr2errno(ename, strlen(ename));
637 p9_debug(P9_DEBUG_9P, "<<< RERROR (%d) %s\n",
642 err = p9pdu_readf(req->rc, c->proto_version, "d", &ecode);
645 p9_debug(P9_DEBUG_9P, "<<< RLERROR (%d)\n", -ecode);
650 p9_debug(P9_DEBUG_ERROR, "couldn't parse error%d\n", err);
654 static struct p9_req_t *
655 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...);
658 * p9_client_flush - flush (cancel) a request
660 * @oldreq: request to cancel
662 * This sents a flush for a particular request and links
663 * the flush request to the original request. The current
664 * code only supports a single flush request although the protocol
665 * allows for multiple flush requests to be sent for a single request.
669 static int p9_client_flush(struct p9_client *c, struct p9_req_t *oldreq)
671 struct p9_req_t *req;
675 err = p9_parse_header(oldreq->tc, NULL, NULL, &oldtag, 1);
679 p9_debug(P9_DEBUG_9P, ">>> TFLUSH tag %d\n", oldtag);
681 req = p9_client_rpc(c, P9_TFLUSH, "w", oldtag);
686 * if we haven't received a response for oldreq,
687 * remove it from the list
689 if (oldreq->status == REQ_STATUS_SENT)
690 if (c->trans_mod->cancelled)
691 c->trans_mod->cancelled(c, oldreq);
697 static struct p9_req_t *p9_client_prepare_req(struct p9_client *c,
698 int8_t type, int req_size,
699 const char *fmt, va_list ap)
702 struct p9_req_t *req;
704 p9_debug(P9_DEBUG_MUX, "client %p op %d\n", c, type);
706 /* we allow for any status other than disconnected */
707 if (c->status == Disconnected)
708 return ERR_PTR(-EIO);
710 /* if status is begin_disconnected we allow only clunk request */
711 if ((c->status == BeginDisconnect) && (type != P9_TCLUNK))
712 return ERR_PTR(-EIO);
715 if (type != P9_TVERSION) {
716 tag = p9_idpool_get(c->tagpool);
718 return ERR_PTR(-ENOMEM);
721 req = p9_tag_alloc(c, tag, req_size);
725 /* marshall the data */
726 p9pdu_prepare(req->tc, tag, type);
727 err = p9pdu_vwritef(req->tc, c->proto_version, fmt, ap);
730 p9pdu_finalize(c, req->tc);
731 trace_9p_client_req(c, type, tag);
739 * p9_client_rpc - issue a request and wait for a response
741 * @type: type of request
742 * @fmt: protocol format string (see protocol.c)
744 * Returns request structure (which client must free using p9_free_req)
747 static struct p9_req_t *
748 p9_client_rpc(struct p9_client *c, int8_t type, const char *fmt, ...)
753 struct p9_req_t *req;
756 req = p9_client_prepare_req(c, type, c->msize, fmt, ap);
761 if (signal_pending(current)) {
763 clear_thread_flag(TIF_SIGPENDING);
767 err = c->trans_mod->request(c, req);
769 if (err != -ERESTARTSYS && err != -EFAULT)
770 c->status = Disconnected;
771 goto recalc_sigpending;
774 /* Wait for the response */
775 err = wait_event_killable(req->wq, req->status >= REQ_STATUS_RCVD);
778 * Make sure our req is coherent with regard to updates in other
779 * threads - echoes to wmb() in the callback
783 if ((err == -ERESTARTSYS) && (c->status == Connected)
784 && (type == P9_TFLUSH)) {
786 clear_thread_flag(TIF_SIGPENDING);
790 if (req->status == REQ_STATUS_ERROR) {
791 p9_debug(P9_DEBUG_ERROR, "req_status error %d\n", req->t_err);
794 if ((err == -ERESTARTSYS) && (c->status == Connected)) {
795 p9_debug(P9_DEBUG_MUX, "flushing\n");
797 clear_thread_flag(TIF_SIGPENDING);
799 if (c->trans_mod->cancel(c, req))
800 p9_client_flush(c, req);
802 /* if we received the response anyway, don't signal error */
803 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)
870 goto recalc_sigpending;
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)
890 spin_lock_irqsave(¤t->sighand->siglock, flags);
892 spin_unlock_irqrestore(¤t->sighand->siglock, flags);
897 err = p9_check_zc_errors(c, req, uidata, in_hdrlen);
898 trace_9p_client_res(c, type, req->rc->tag, err);
903 return ERR_PTR(safe_errno(err));
906 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);
916 memset(&fid->qid, 0, sizeof(struct p9_qid));
918 fid->uid = current_fsuid();
923 idr_preload(GFP_KERNEL);
924 spin_lock_irq(&clnt->lock);
925 ret = idr_alloc_u32(&clnt->fids, fid, &fid->fid, P9_NOFID - 1,
927 spin_unlock_irq(&clnt->lock);
937 static void p9_fid_destroy(struct p9_fid *fid)
939 struct p9_client *clnt;
942 p9_debug(P9_DEBUG_FID, "fid %d\n", fid->fid);
944 spin_lock_irqsave(&clnt->lock, flags);
945 idr_remove(&clnt->fids, fid->fid);
946 spin_unlock_irqrestore(&clnt->lock, flags);
951 static int p9_client_version(struct p9_client *c)
954 struct p9_req_t *req;
955 char *version = NULL;
958 p9_debug(P9_DEBUG_9P, ">>> TVERSION msize %d protocol %d\n",
959 c->msize, c->proto_version);
961 switch (c->proto_version) {
963 req = p9_client_rpc(c, P9_TVERSION, "ds",
964 c->msize, "9P2000.L");
967 req = p9_client_rpc(c, P9_TVERSION, "ds",
968 c->msize, "9P2000.u");
970 case p9_proto_legacy:
971 req = p9_client_rpc(c, P9_TVERSION, "ds",
981 err = p9pdu_readf(req->rc, c->proto_version, "ds", &msize, &version);
983 p9_debug(P9_DEBUG_9P, "version error %d\n", err);
984 trace_9p_protocol_dump(c, req->rc);
988 p9_debug(P9_DEBUG_9P, "<<< RVERSION msize %d %s\n", msize, version);
989 if (!strncmp(version, "9P2000.L", 8))
990 c->proto_version = p9_proto_2000L;
991 else if (!strncmp(version, "9P2000.u", 8))
992 c->proto_version = p9_proto_2000u;
993 else if (!strncmp(version, "9P2000", 6))
994 c->proto_version = p9_proto_legacy;
1000 if (msize < c->msize)
1005 p9_free_req(c, req);
1010 struct p9_client *p9_client_create(const char *dev_name, char *options)
1013 struct p9_client *clnt;
1017 clnt = kmalloc(sizeof(struct p9_client), GFP_KERNEL);
1019 return ERR_PTR(-ENOMEM);
1021 clnt->trans_mod = NULL;
1024 client_id = utsname()->nodename;
1025 memcpy(clnt->name, client_id, strlen(client_id) + 1);
1027 spin_lock_init(&clnt->lock);
1028 idr_init(&clnt->fids);
1030 err = p9_tag_init(clnt);
1034 err = parse_opts(options, clnt);
1036 goto destroy_tagpool;
1038 if (!clnt->trans_mod)
1039 clnt->trans_mod = v9fs_get_default_trans();
1041 if (clnt->trans_mod == NULL) {
1042 err = -EPROTONOSUPPORT;
1043 p9_debug(P9_DEBUG_ERROR,
1044 "No transport defined or default transport\n");
1045 goto destroy_tagpool;
1048 p9_debug(P9_DEBUG_MUX, "clnt %p trans %p msize %d protocol %d\n",
1049 clnt, clnt->trans_mod, clnt->msize, clnt->proto_version);
1051 err = clnt->trans_mod->create(clnt, dev_name, options);
1055 if (clnt->msize > clnt->trans_mod->maxsize)
1056 clnt->msize = clnt->trans_mod->maxsize;
1058 err = p9_client_version(clnt);
1065 clnt->trans_mod->close(clnt);
1067 v9fs_put_trans(clnt->trans_mod);
1069 p9_idpool_destroy(clnt->tagpool);
1072 return ERR_PTR(err);
1074 EXPORT_SYMBOL(p9_client_create);
1076 void p9_client_destroy(struct p9_client *clnt)
1081 p9_debug(P9_DEBUG_MUX, "clnt %p\n", clnt);
1083 if (clnt->trans_mod)
1084 clnt->trans_mod->close(clnt);
1086 v9fs_put_trans(clnt->trans_mod);
1088 idr_for_each_entry(&clnt->fids, fid, id) {
1089 pr_info("Found fid %d not clunked\n", fid->fid);
1090 p9_fid_destroy(fid);
1093 p9_tag_cleanup(clnt);
1097 EXPORT_SYMBOL(p9_client_destroy);
1099 void p9_client_disconnect(struct p9_client *clnt)
1101 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1102 clnt->status = Disconnected;
1104 EXPORT_SYMBOL(p9_client_disconnect);
1106 void p9_client_begin_disconnect(struct p9_client *clnt)
1108 p9_debug(P9_DEBUG_9P, "clnt %p\n", clnt);
1109 clnt->status = BeginDisconnect;
1111 EXPORT_SYMBOL(p9_client_begin_disconnect);
1113 struct p9_fid *p9_client_attach(struct p9_client *clnt, struct p9_fid *afid,
1114 const char *uname, kuid_t n_uname, const char *aname)
1117 struct p9_req_t *req;
1122 p9_debug(P9_DEBUG_9P, ">>> TATTACH afid %d uname %s aname %s\n",
1123 afid ? afid->fid : -1, uname, aname);
1124 fid = p9_fid_create(clnt);
1131 req = p9_client_rpc(clnt, P9_TATTACH, "ddss?u", fid->fid,
1132 afid ? afid->fid : P9_NOFID, uname, aname, n_uname);
1138 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", &qid);
1140 trace_9p_protocol_dump(clnt, req->rc);
1141 p9_free_req(clnt, req);
1145 p9_debug(P9_DEBUG_9P, "<<< RATTACH qid %x.%llx.%x\n",
1146 qid.type, (unsigned long long)qid.path, qid.version);
1148 memmove(&fid->qid, &qid, sizeof(struct p9_qid));
1150 p9_free_req(clnt, req);
1155 p9_fid_destroy(fid);
1156 return ERR_PTR(err);
1158 EXPORT_SYMBOL(p9_client_attach);
1160 struct p9_fid *p9_client_walk(struct p9_fid *oldfid, uint16_t nwname,
1161 const unsigned char * const *wnames, int clone)
1164 struct p9_client *clnt;
1166 struct p9_qid *wqids;
1167 struct p9_req_t *req;
1168 uint16_t nwqids, count;
1172 clnt = oldfid->clnt;
1174 fid = p9_fid_create(clnt);
1180 fid->uid = oldfid->uid;
1185 p9_debug(P9_DEBUG_9P, ">>> TWALK fids %d,%d nwname %ud wname[0] %s\n",
1186 oldfid->fid, fid->fid, nwname, wnames ? wnames[0] : NULL);
1188 req = p9_client_rpc(clnt, P9_TWALK, "ddT", oldfid->fid, fid->fid,
1195 err = p9pdu_readf(req->rc, clnt->proto_version, "R", &nwqids, &wqids);
1197 trace_9p_protocol_dump(clnt, req->rc);
1198 p9_free_req(clnt, req);
1201 p9_free_req(clnt, req);
1203 p9_debug(P9_DEBUG_9P, "<<< RWALK nwqid %d:\n", nwqids);
1205 if (nwqids != nwname) {
1210 for (count = 0; count < nwqids; count++)
1211 p9_debug(P9_DEBUG_9P, "<<< [%d] %x.%llx.%x\n",
1212 count, wqids[count].type,
1213 (unsigned long long)wqids[count].path,
1214 wqids[count].version);
1217 memmove(&fid->qid, &wqids[nwqids - 1], sizeof(struct p9_qid));
1219 fid->qid = oldfid->qid;
1226 p9_client_clunk(fid);
1230 if (fid && (fid != oldfid))
1231 p9_fid_destroy(fid);
1233 return ERR_PTR(err);
1235 EXPORT_SYMBOL(p9_client_walk);
1237 int p9_client_open(struct p9_fid *fid, int mode)
1240 struct p9_client *clnt;
1241 struct p9_req_t *req;
1246 p9_debug(P9_DEBUG_9P, ">>> %s fid %d mode %d\n",
1247 p9_is_proto_dotl(clnt) ? "TLOPEN" : "TOPEN", fid->fid, mode);
1250 if (fid->mode != -1)
1253 if (p9_is_proto_dotl(clnt))
1254 req = p9_client_rpc(clnt, P9_TLOPEN, "dd", fid->fid, mode);
1256 req = p9_client_rpc(clnt, P9_TOPEN, "db", fid->fid, mode);
1262 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1264 trace_9p_protocol_dump(clnt, req->rc);
1265 goto free_and_error;
1268 p9_debug(P9_DEBUG_9P, "<<< %s qid %x.%llx.%x iounit %x\n",
1269 p9_is_proto_dotl(clnt) ? "RLOPEN" : "ROPEN", qid.type,
1270 (unsigned long long)qid.path, qid.version, iounit);
1273 fid->iounit = iounit;
1276 p9_free_req(clnt, req);
1280 EXPORT_SYMBOL(p9_client_open);
1282 int p9_client_create_dotl(struct p9_fid *ofid, const char *name, u32 flags, u32 mode,
1283 kgid_t gid, struct p9_qid *qid)
1286 struct p9_client *clnt;
1287 struct p9_req_t *req;
1290 p9_debug(P9_DEBUG_9P,
1291 ">>> TLCREATE fid %d name %s flags %d mode %d gid %d\n",
1292 ofid->fid, name, flags, mode,
1293 from_kgid(&init_user_ns, gid));
1296 if (ofid->mode != -1)
1299 req = p9_client_rpc(clnt, P9_TLCREATE, "dsddg", ofid->fid, name, flags,
1306 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", qid, &iounit);
1308 trace_9p_protocol_dump(clnt, req->rc);
1309 goto free_and_error;
1312 p9_debug(P9_DEBUG_9P, "<<< RLCREATE qid %x.%llx.%x iounit %x\n",
1314 (unsigned long long)qid->path,
1315 qid->version, iounit);
1318 ofid->iounit = iounit;
1321 p9_free_req(clnt, req);
1325 EXPORT_SYMBOL(p9_client_create_dotl);
1327 int p9_client_fcreate(struct p9_fid *fid, const char *name, u32 perm, int mode,
1331 struct p9_client *clnt;
1332 struct p9_req_t *req;
1336 p9_debug(P9_DEBUG_9P, ">>> TCREATE fid %d name %s perm %d mode %d\n",
1337 fid->fid, name, perm, mode);
1341 if (fid->mode != -1)
1344 req = p9_client_rpc(clnt, P9_TCREATE, "dsdb?s", fid->fid, name, perm,
1351 err = p9pdu_readf(req->rc, clnt->proto_version, "Qd", &qid, &iounit);
1353 trace_9p_protocol_dump(clnt, req->rc);
1354 goto free_and_error;
1357 p9_debug(P9_DEBUG_9P, "<<< RCREATE qid %x.%llx.%x iounit %x\n",
1359 (unsigned long long)qid.path,
1360 qid.version, iounit);
1363 fid->iounit = iounit;
1366 p9_free_req(clnt, req);
1370 EXPORT_SYMBOL(p9_client_fcreate);
1372 int p9_client_symlink(struct p9_fid *dfid, const char *name,
1373 const char *symtgt, kgid_t gid, struct p9_qid *qid)
1376 struct p9_client *clnt;
1377 struct p9_req_t *req;
1379 p9_debug(P9_DEBUG_9P, ">>> TSYMLINK dfid %d name %s symtgt %s\n",
1380 dfid->fid, name, symtgt);
1383 req = p9_client_rpc(clnt, P9_TSYMLINK, "dssg", dfid->fid, name, symtgt,
1390 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
1392 trace_9p_protocol_dump(clnt, req->rc);
1393 goto free_and_error;
1396 p9_debug(P9_DEBUG_9P, "<<< RSYMLINK qid %x.%llx.%x\n",
1397 qid->type, (unsigned long long)qid->path, qid->version);
1400 p9_free_req(clnt, req);
1404 EXPORT_SYMBOL(p9_client_symlink);
1406 int p9_client_link(struct p9_fid *dfid, struct p9_fid *oldfid, const char *newname)
1408 struct p9_client *clnt;
1409 struct p9_req_t *req;
1411 p9_debug(P9_DEBUG_9P, ">>> TLINK dfid %d oldfid %d newname %s\n",
1412 dfid->fid, oldfid->fid, newname);
1414 req = p9_client_rpc(clnt, P9_TLINK, "dds", dfid->fid, oldfid->fid,
1417 return PTR_ERR(req);
1419 p9_debug(P9_DEBUG_9P, "<<< RLINK\n");
1420 p9_free_req(clnt, req);
1423 EXPORT_SYMBOL(p9_client_link);
1425 int p9_client_fsync(struct p9_fid *fid, int datasync)
1428 struct p9_client *clnt;
1429 struct p9_req_t *req;
1431 p9_debug(P9_DEBUG_9P, ">>> TFSYNC fid %d datasync:%d\n",
1432 fid->fid, datasync);
1436 req = p9_client_rpc(clnt, P9_TFSYNC, "dd", fid->fid, datasync);
1442 p9_debug(P9_DEBUG_9P, "<<< RFSYNC fid %d\n", fid->fid);
1444 p9_free_req(clnt, req);
1449 EXPORT_SYMBOL(p9_client_fsync);
1451 int p9_client_clunk(struct p9_fid *fid)
1454 struct p9_client *clnt;
1455 struct p9_req_t *req;
1459 pr_warn("%s (%d): Trying to clunk with NULL fid\n",
1460 __func__, task_pid_nr(current));
1466 p9_debug(P9_DEBUG_9P, ">>> TCLUNK fid %d (try %d)\n", fid->fid,
1471 req = p9_client_rpc(clnt, P9_TCLUNK, "d", fid->fid);
1477 p9_debug(P9_DEBUG_9P, "<<< RCLUNK fid %d\n", fid->fid);
1479 p9_free_req(clnt, req);
1482 * Fid is not valid even after a failed clunk
1483 * If interrupted, retry once then give up and
1484 * leak fid until umount.
1486 if (err == -ERESTARTSYS) {
1490 p9_fid_destroy(fid);
1493 EXPORT_SYMBOL(p9_client_clunk);
1495 int p9_client_remove(struct p9_fid *fid)
1498 struct p9_client *clnt;
1499 struct p9_req_t *req;
1501 p9_debug(P9_DEBUG_9P, ">>> TREMOVE fid %d\n", fid->fid);
1505 req = p9_client_rpc(clnt, P9_TREMOVE, "d", fid->fid);
1511 p9_debug(P9_DEBUG_9P, "<<< RREMOVE fid %d\n", fid->fid);
1513 p9_free_req(clnt, req);
1515 if (err == -ERESTARTSYS)
1516 p9_client_clunk(fid);
1518 p9_fid_destroy(fid);
1521 EXPORT_SYMBOL(p9_client_remove);
1523 int p9_client_unlinkat(struct p9_fid *dfid, const char *name, int flags)
1526 struct p9_req_t *req;
1527 struct p9_client *clnt;
1529 p9_debug(P9_DEBUG_9P, ">>> TUNLINKAT fid %d %s %d\n",
1530 dfid->fid, name, flags);
1533 req = p9_client_rpc(clnt, P9_TUNLINKAT, "dsd", dfid->fid, name, flags);
1538 p9_debug(P9_DEBUG_9P, "<<< RUNLINKAT fid %d %s\n", dfid->fid, name);
1540 p9_free_req(clnt, req);
1544 EXPORT_SYMBOL(p9_client_unlinkat);
1547 p9_client_read(struct p9_fid *fid, u64 offset, struct iov_iter *to, int *err)
1549 struct p9_client *clnt = fid->clnt;
1550 struct p9_req_t *req;
1554 p9_debug(P9_DEBUG_9P, ">>> TREAD fid %d offset %llu %d\n",
1555 fid->fid, (unsigned long long) offset, (int)iov_iter_count(to));
1557 while (iov_iter_count(to)) {
1558 int count = iov_iter_count(to);
1559 int rsize, non_zc = 0;
1562 rsize = fid->iounit;
1563 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1564 rsize = clnt->msize - P9_IOHDRSZ;
1569 /* Don't bother zerocopy for small IO (< 1024) */
1570 if (clnt->trans_mod->zc_request && rsize > 1024) {
1572 * response header len is 11
1573 * PDU Header(7) + IO Size (4)
1575 req = p9_client_zc_rpc(clnt, P9_TREAD, to, NULL, rsize,
1576 0, 11, "dqd", fid->fid,
1580 req = p9_client_rpc(clnt, P9_TREAD, "dqd", fid->fid, offset,
1584 *err = PTR_ERR(req);
1588 *err = p9pdu_readf(req->rc, clnt->proto_version,
1589 "D", &count, &dataptr);
1591 trace_9p_protocol_dump(clnt, req->rc);
1592 p9_free_req(clnt, req);
1595 if (rsize < count) {
1596 pr_err("bogus RREAD count (%d > %d)\n", count, rsize);
1600 p9_debug(P9_DEBUG_9P, "<<< RREAD count %d\n", count);
1602 p9_free_req(clnt, req);
1607 int n = copy_to_iter(dataptr, count, to);
1612 p9_free_req(clnt, req);
1616 iov_iter_advance(to, count);
1620 p9_free_req(clnt, req);
1624 EXPORT_SYMBOL(p9_client_read);
1627 p9_client_write(struct p9_fid *fid, u64 offset, struct iov_iter *from, int *err)
1629 struct p9_client *clnt = fid->clnt;
1630 struct p9_req_t *req;
1634 p9_debug(P9_DEBUG_9P, ">>> TWRITE fid %d offset %llu count %zd\n",
1635 fid->fid, (unsigned long long) offset,
1636 iov_iter_count(from));
1638 while (iov_iter_count(from)) {
1639 int count = iov_iter_count(from);
1640 int rsize = fid->iounit;
1641 if (!rsize || rsize > clnt->msize-P9_IOHDRSZ)
1642 rsize = clnt->msize - P9_IOHDRSZ;
1647 /* Don't bother zerocopy for small IO (< 1024) */
1648 if (clnt->trans_mod->zc_request && rsize > 1024) {
1649 req = p9_client_zc_rpc(clnt, P9_TWRITE, NULL, from, 0,
1650 rsize, P9_ZC_HDR_SZ, "dqd",
1651 fid->fid, offset, rsize);
1653 req = p9_client_rpc(clnt, P9_TWRITE, "dqV", fid->fid,
1654 offset, rsize, from);
1657 *err = PTR_ERR(req);
1661 *err = p9pdu_readf(req->rc, clnt->proto_version, "d", &count);
1663 trace_9p_protocol_dump(clnt, req->rc);
1664 p9_free_req(clnt, req);
1667 if (rsize < count) {
1668 pr_err("bogus RWRITE count (%d > %d)\n", count, rsize);
1672 p9_debug(P9_DEBUG_9P, "<<< RWRITE count %d\n", count);
1674 p9_free_req(clnt, req);
1675 iov_iter_advance(from, count);
1681 EXPORT_SYMBOL(p9_client_write);
1683 struct p9_wstat *p9_client_stat(struct p9_fid *fid)
1686 struct p9_client *clnt;
1687 struct p9_wstat *ret = kmalloc(sizeof(struct p9_wstat), GFP_KERNEL);
1688 struct p9_req_t *req;
1691 p9_debug(P9_DEBUG_9P, ">>> TSTAT fid %d\n", fid->fid);
1694 return ERR_PTR(-ENOMEM);
1699 req = p9_client_rpc(clnt, P9_TSTAT, "d", fid->fid);
1705 err = p9pdu_readf(req->rc, clnt->proto_version, "wS", &ignored, ret);
1707 trace_9p_protocol_dump(clnt, req->rc);
1708 p9_free_req(clnt, req);
1712 p9_debug(P9_DEBUG_9P,
1713 "<<< RSTAT sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1714 "<<< mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1715 "<<< name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1716 "<<< uid=%d gid=%d n_muid=%d\n",
1717 ret->size, ret->type, ret->dev, ret->qid.type,
1718 (unsigned long long)ret->qid.path, ret->qid.version, ret->mode,
1719 ret->atime, ret->mtime, (unsigned long long)ret->length,
1720 ret->name, ret->uid, ret->gid, ret->muid, ret->extension,
1721 from_kuid(&init_user_ns, ret->n_uid),
1722 from_kgid(&init_user_ns, ret->n_gid),
1723 from_kuid(&init_user_ns, ret->n_muid));
1725 p9_free_req(clnt, req);
1730 return ERR_PTR(err);
1732 EXPORT_SYMBOL(p9_client_stat);
1734 struct p9_stat_dotl *p9_client_getattr_dotl(struct p9_fid *fid,
1738 struct p9_client *clnt;
1739 struct p9_stat_dotl *ret = kmalloc(sizeof(struct p9_stat_dotl),
1741 struct p9_req_t *req;
1743 p9_debug(P9_DEBUG_9P, ">>> TGETATTR fid %d, request_mask %lld\n",
1744 fid->fid, request_mask);
1747 return ERR_PTR(-ENOMEM);
1752 req = p9_client_rpc(clnt, P9_TGETATTR, "dq", fid->fid, request_mask);
1758 err = p9pdu_readf(req->rc, clnt->proto_version, "A", ret);
1760 trace_9p_protocol_dump(clnt, req->rc);
1761 p9_free_req(clnt, req);
1765 p9_debug(P9_DEBUG_9P,
1766 "<<< RGETATTR st_result_mask=%lld\n"
1767 "<<< qid=%x.%llx.%x\n"
1768 "<<< st_mode=%8.8x st_nlink=%llu\n"
1769 "<<< st_uid=%d st_gid=%d\n"
1770 "<<< st_rdev=%llx st_size=%llx st_blksize=%llu st_blocks=%llu\n"
1771 "<<< st_atime_sec=%lld st_atime_nsec=%lld\n"
1772 "<<< st_mtime_sec=%lld st_mtime_nsec=%lld\n"
1773 "<<< st_ctime_sec=%lld st_ctime_nsec=%lld\n"
1774 "<<< st_btime_sec=%lld st_btime_nsec=%lld\n"
1775 "<<< st_gen=%lld st_data_version=%lld\n",
1776 ret->st_result_mask, ret->qid.type, ret->qid.path,
1777 ret->qid.version, ret->st_mode, ret->st_nlink,
1778 from_kuid(&init_user_ns, ret->st_uid),
1779 from_kgid(&init_user_ns, ret->st_gid),
1780 ret->st_rdev, ret->st_size, ret->st_blksize,
1781 ret->st_blocks, ret->st_atime_sec, ret->st_atime_nsec,
1782 ret->st_mtime_sec, ret->st_mtime_nsec, ret->st_ctime_sec,
1783 ret->st_ctime_nsec, ret->st_btime_sec, ret->st_btime_nsec,
1784 ret->st_gen, ret->st_data_version);
1786 p9_free_req(clnt, req);
1791 return ERR_PTR(err);
1793 EXPORT_SYMBOL(p9_client_getattr_dotl);
1795 static int p9_client_statsize(struct p9_wstat *wst, int proto_version)
1799 /* NOTE: size shouldn't include its own length */
1800 /* size[2] type[2] dev[4] qid[13] */
1801 /* mode[4] atime[4] mtime[4] length[8]*/
1802 /* name[s] uid[s] gid[s] muid[s] */
1803 ret = 2+4+13+4+4+4+8+2+2+2+2;
1806 ret += strlen(wst->name);
1808 ret += strlen(wst->uid);
1810 ret += strlen(wst->gid);
1812 ret += strlen(wst->muid);
1814 if ((proto_version == p9_proto_2000u) ||
1815 (proto_version == p9_proto_2000L)) {
1816 ret += 2+4+4+4; /* extension[s] n_uid[4] n_gid[4] n_muid[4] */
1818 ret += strlen(wst->extension);
1824 int p9_client_wstat(struct p9_fid *fid, struct p9_wstat *wst)
1827 struct p9_req_t *req;
1828 struct p9_client *clnt;
1832 wst->size = p9_client_statsize(wst, clnt->proto_version);
1833 p9_debug(P9_DEBUG_9P, ">>> TWSTAT fid %d\n", fid->fid);
1834 p9_debug(P9_DEBUG_9P,
1835 " sz=%x type=%x dev=%x qid=%x.%llx.%x\n"
1836 " mode=%8.8x atime=%8.8x mtime=%8.8x length=%llx\n"
1837 " name=%s uid=%s gid=%s muid=%s extension=(%s)\n"
1838 " uid=%d gid=%d n_muid=%d\n",
1839 wst->size, wst->type, wst->dev, wst->qid.type,
1840 (unsigned long long)wst->qid.path, wst->qid.version, wst->mode,
1841 wst->atime, wst->mtime, (unsigned long long)wst->length,
1842 wst->name, wst->uid, wst->gid, wst->muid, wst->extension,
1843 from_kuid(&init_user_ns, wst->n_uid),
1844 from_kgid(&init_user_ns, wst->n_gid),
1845 from_kuid(&init_user_ns, wst->n_muid));
1847 req = p9_client_rpc(clnt, P9_TWSTAT, "dwS", fid->fid, wst->size+2, wst);
1853 p9_debug(P9_DEBUG_9P, "<<< RWSTAT fid %d\n", fid->fid);
1855 p9_free_req(clnt, req);
1859 EXPORT_SYMBOL(p9_client_wstat);
1861 int p9_client_setattr(struct p9_fid *fid, struct p9_iattr_dotl *p9attr)
1864 struct p9_req_t *req;
1865 struct p9_client *clnt;
1869 p9_debug(P9_DEBUG_9P, ">>> TSETATTR fid %d\n", fid->fid);
1870 p9_debug(P9_DEBUG_9P,
1871 " valid=%x mode=%x uid=%d gid=%d size=%lld\n"
1872 " atime_sec=%lld atime_nsec=%lld\n"
1873 " mtime_sec=%lld mtime_nsec=%lld\n",
1874 p9attr->valid, p9attr->mode,
1875 from_kuid(&init_user_ns, p9attr->uid),
1876 from_kgid(&init_user_ns, p9attr->gid),
1877 p9attr->size, p9attr->atime_sec, p9attr->atime_nsec,
1878 p9attr->mtime_sec, p9attr->mtime_nsec);
1880 req = p9_client_rpc(clnt, P9_TSETATTR, "dI", fid->fid, p9attr);
1886 p9_debug(P9_DEBUG_9P, "<<< RSETATTR fid %d\n", fid->fid);
1887 p9_free_req(clnt, req);
1891 EXPORT_SYMBOL(p9_client_setattr);
1893 int p9_client_statfs(struct p9_fid *fid, struct p9_rstatfs *sb)
1896 struct p9_req_t *req;
1897 struct p9_client *clnt;
1902 p9_debug(P9_DEBUG_9P, ">>> TSTATFS fid %d\n", fid->fid);
1904 req = p9_client_rpc(clnt, P9_TSTATFS, "d", fid->fid);
1910 err = p9pdu_readf(req->rc, clnt->proto_version, "ddqqqqqqd", &sb->type,
1911 &sb->bsize, &sb->blocks, &sb->bfree, &sb->bavail,
1912 &sb->files, &sb->ffree, &sb->fsid, &sb->namelen);
1914 trace_9p_protocol_dump(clnt, req->rc);
1915 p9_free_req(clnt, req);
1919 p9_debug(P9_DEBUG_9P, "<<< RSTATFS fid %d type 0x%lx bsize %ld "
1920 "blocks %llu bfree %llu bavail %llu files %llu ffree %llu "
1921 "fsid %llu namelen %ld\n",
1922 fid->fid, (long unsigned int)sb->type, (long int)sb->bsize,
1923 sb->blocks, sb->bfree, sb->bavail, sb->files, sb->ffree,
1924 sb->fsid, (long int)sb->namelen);
1926 p9_free_req(clnt, req);
1930 EXPORT_SYMBOL(p9_client_statfs);
1932 int p9_client_rename(struct p9_fid *fid,
1933 struct p9_fid *newdirfid, const char *name)
1936 struct p9_req_t *req;
1937 struct p9_client *clnt;
1942 p9_debug(P9_DEBUG_9P, ">>> TRENAME fid %d newdirfid %d name %s\n",
1943 fid->fid, newdirfid->fid, name);
1945 req = p9_client_rpc(clnt, P9_TRENAME, "dds", fid->fid,
1946 newdirfid->fid, name);
1952 p9_debug(P9_DEBUG_9P, "<<< RRENAME fid %d\n", fid->fid);
1954 p9_free_req(clnt, req);
1958 EXPORT_SYMBOL(p9_client_rename);
1960 int p9_client_renameat(struct p9_fid *olddirfid, const char *old_name,
1961 struct p9_fid *newdirfid, const char *new_name)
1964 struct p9_req_t *req;
1965 struct p9_client *clnt;
1968 clnt = olddirfid->clnt;
1970 p9_debug(P9_DEBUG_9P, ">>> TRENAMEAT olddirfid %d old name %s"
1971 " newdirfid %d new name %s\n", olddirfid->fid, old_name,
1972 newdirfid->fid, new_name);
1974 req = p9_client_rpc(clnt, P9_TRENAMEAT, "dsds", olddirfid->fid,
1975 old_name, newdirfid->fid, new_name);
1981 p9_debug(P9_DEBUG_9P, "<<< RRENAMEAT newdirfid %d new name %s\n",
1982 newdirfid->fid, new_name);
1984 p9_free_req(clnt, req);
1988 EXPORT_SYMBOL(p9_client_renameat);
1991 * An xattrwalk without @attr_name gives the fid for the lisxattr namespace
1993 struct p9_fid *p9_client_xattrwalk(struct p9_fid *file_fid,
1994 const char *attr_name, u64 *attr_size)
1997 struct p9_req_t *req;
1998 struct p9_client *clnt;
1999 struct p9_fid *attr_fid;
2002 clnt = file_fid->clnt;
2003 attr_fid = p9_fid_create(clnt);
2008 p9_debug(P9_DEBUG_9P,
2009 ">>> TXATTRWALK file_fid %d, attr_fid %d name %s\n",
2010 file_fid->fid, attr_fid->fid, attr_name);
2012 req = p9_client_rpc(clnt, P9_TXATTRWALK, "dds",
2013 file_fid->fid, attr_fid->fid, attr_name);
2018 err = p9pdu_readf(req->rc, clnt->proto_version, "q", attr_size);
2020 trace_9p_protocol_dump(clnt, req->rc);
2021 p9_free_req(clnt, req);
2024 p9_free_req(clnt, req);
2025 p9_debug(P9_DEBUG_9P, "<<< RXATTRWALK fid %d size %llu\n",
2026 attr_fid->fid, *attr_size);
2029 p9_client_clunk(attr_fid);
2032 if (attr_fid && (attr_fid != file_fid))
2033 p9_fid_destroy(attr_fid);
2035 return ERR_PTR(err);
2037 EXPORT_SYMBOL_GPL(p9_client_xattrwalk);
2039 int p9_client_xattrcreate(struct p9_fid *fid, const char *name,
2040 u64 attr_size, int flags)
2043 struct p9_req_t *req;
2044 struct p9_client *clnt;
2046 p9_debug(P9_DEBUG_9P,
2047 ">>> TXATTRCREATE fid %d name %s size %lld flag %d\n",
2048 fid->fid, name, (long long)attr_size, flags);
2051 req = p9_client_rpc(clnt, P9_TXATTRCREATE, "dsqd",
2052 fid->fid, name, attr_size, flags);
2057 p9_debug(P9_DEBUG_9P, "<<< RXATTRCREATE fid %d\n", fid->fid);
2058 p9_free_req(clnt, req);
2062 EXPORT_SYMBOL_GPL(p9_client_xattrcreate);
2064 int p9_client_readdir(struct p9_fid *fid, char *data, u32 count, u64 offset)
2066 int err, rsize, non_zc = 0;
2067 struct p9_client *clnt;
2068 struct p9_req_t *req;
2070 struct kvec kv = {.iov_base = data, .iov_len = count};
2073 iov_iter_kvec(&to, READ | ITER_KVEC, &kv, 1, count);
2075 p9_debug(P9_DEBUG_9P, ">>> TREADDIR fid %d offset %llu count %d\n",
2076 fid->fid, (unsigned long long) offset, count);
2081 rsize = fid->iounit;
2082 if (!rsize || rsize > clnt->msize-P9_READDIRHDRSZ)
2083 rsize = clnt->msize - P9_READDIRHDRSZ;
2088 /* Don't bother zerocopy for small IO (< 1024) */
2089 if (clnt->trans_mod->zc_request && rsize > 1024) {
2091 * response header len is 11
2092 * PDU Header(7) + IO Size (4)
2094 req = p9_client_zc_rpc(clnt, P9_TREADDIR, &to, NULL, rsize, 0,
2095 11, "dqd", fid->fid, offset, rsize);
2098 req = p9_client_rpc(clnt, P9_TREADDIR, "dqd", fid->fid,
2106 err = p9pdu_readf(req->rc, clnt->proto_version, "D", &count, &dataptr);
2108 trace_9p_protocol_dump(clnt, req->rc);
2109 goto free_and_error;
2111 if (rsize < count) {
2112 pr_err("bogus RREADDIR count (%d > %d)\n", count, rsize);
2116 p9_debug(P9_DEBUG_9P, "<<< RREADDIR count %d\n", count);
2119 memmove(data, dataptr, count);
2121 p9_free_req(clnt, req);
2125 p9_free_req(clnt, req);
2129 EXPORT_SYMBOL(p9_client_readdir);
2131 int p9_client_mknod_dotl(struct p9_fid *fid, const char *name, int mode,
2132 dev_t rdev, kgid_t gid, struct p9_qid *qid)
2135 struct p9_client *clnt;
2136 struct p9_req_t *req;
2140 p9_debug(P9_DEBUG_9P, ">>> TMKNOD fid %d name %s mode %d major %d "
2141 "minor %d\n", fid->fid, name, mode, MAJOR(rdev), MINOR(rdev));
2142 req = p9_client_rpc(clnt, P9_TMKNOD, "dsdddg", fid->fid, name, mode,
2143 MAJOR(rdev), MINOR(rdev), gid);
2145 return PTR_ERR(req);
2147 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2149 trace_9p_protocol_dump(clnt, req->rc);
2152 p9_debug(P9_DEBUG_9P, "<<< RMKNOD qid %x.%llx.%x\n", qid->type,
2153 (unsigned long long)qid->path, qid->version);
2156 p9_free_req(clnt, req);
2160 EXPORT_SYMBOL(p9_client_mknod_dotl);
2162 int p9_client_mkdir_dotl(struct p9_fid *fid, const char *name, int mode,
2163 kgid_t gid, struct p9_qid *qid)
2166 struct p9_client *clnt;
2167 struct p9_req_t *req;
2171 p9_debug(P9_DEBUG_9P, ">>> TMKDIR fid %d name %s mode %d gid %d\n",
2172 fid->fid, name, mode, from_kgid(&init_user_ns, gid));
2173 req = p9_client_rpc(clnt, P9_TMKDIR, "dsdg", fid->fid, name, mode,
2176 return PTR_ERR(req);
2178 err = p9pdu_readf(req->rc, clnt->proto_version, "Q", qid);
2180 trace_9p_protocol_dump(clnt, req->rc);
2183 p9_debug(P9_DEBUG_9P, "<<< RMKDIR qid %x.%llx.%x\n", qid->type,
2184 (unsigned long long)qid->path, qid->version);
2187 p9_free_req(clnt, req);
2191 EXPORT_SYMBOL(p9_client_mkdir_dotl);
2193 int p9_client_lock_dotl(struct p9_fid *fid, struct p9_flock *flock, u8 *status)
2196 struct p9_client *clnt;
2197 struct p9_req_t *req;
2201 p9_debug(P9_DEBUG_9P, ">>> TLOCK fid %d type %i flags %d "
2202 "start %lld length %lld proc_id %d client_id %s\n",
2203 fid->fid, flock->type, flock->flags, flock->start,
2204 flock->length, flock->proc_id, flock->client_id);
2206 req = p9_client_rpc(clnt, P9_TLOCK, "dbdqqds", fid->fid, flock->type,
2207 flock->flags, flock->start, flock->length,
2208 flock->proc_id, flock->client_id);
2211 return PTR_ERR(req);
2213 err = p9pdu_readf(req->rc, clnt->proto_version, "b", status);
2215 trace_9p_protocol_dump(clnt, req->rc);
2218 p9_debug(P9_DEBUG_9P, "<<< RLOCK status %i\n", *status);
2220 p9_free_req(clnt, req);
2224 EXPORT_SYMBOL(p9_client_lock_dotl);
2226 int p9_client_getlock_dotl(struct p9_fid *fid, struct p9_getlock *glock)
2229 struct p9_client *clnt;
2230 struct p9_req_t *req;
2234 p9_debug(P9_DEBUG_9P, ">>> TGETLOCK fid %d, type %i start %lld "
2235 "length %lld proc_id %d client_id %s\n", fid->fid, glock->type,
2236 glock->start, glock->length, glock->proc_id, glock->client_id);
2238 req = p9_client_rpc(clnt, P9_TGETLOCK, "dbqqds", fid->fid, glock->type,
2239 glock->start, glock->length, glock->proc_id, glock->client_id);
2242 return PTR_ERR(req);
2244 err = p9pdu_readf(req->rc, clnt->proto_version, "bqqds", &glock->type,
2245 &glock->start, &glock->length, &glock->proc_id,
2248 trace_9p_protocol_dump(clnt, req->rc);
2251 p9_debug(P9_DEBUG_9P, "<<< RGETLOCK type %i start %lld length %lld "
2252 "proc_id %d client_id %s\n", glock->type, glock->start,
2253 glock->length, glock->proc_id, glock->client_id);
2255 p9_free_req(clnt, req);
2258 EXPORT_SYMBOL(p9_client_getlock_dotl);
2260 int p9_client_readlink(struct p9_fid *fid, char **target)
2263 struct p9_client *clnt;
2264 struct p9_req_t *req;
2268 p9_debug(P9_DEBUG_9P, ">>> TREADLINK fid %d\n", fid->fid);
2270 req = p9_client_rpc(clnt, P9_TREADLINK, "d", fid->fid);
2272 return PTR_ERR(req);
2274 err = p9pdu_readf(req->rc, clnt->proto_version, "s", target);
2276 trace_9p_protocol_dump(clnt, req->rc);
2279 p9_debug(P9_DEBUG_9P, "<<< RREADLINK target %s\n", *target);
2281 p9_free_req(clnt, req);
2284 EXPORT_SYMBOL(p9_client_readlink);