4 * 9P Protocol Support Code
9 * Copyright (C) 2008 by IBM, Corp.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2
13 * as published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to:
22 * Free Software Foundation
23 * 51 Franklin Street, Fifth Floor
24 * Boston, MA 02111-1301 USA
28 #include <linux/module.h>
29 #include <linux/errno.h>
30 #include <linux/uaccess.h>
31 #include <linux/slab.h>
32 #include <linux/sched.h>
33 #include <linux/types.h>
34 #include <net/9p/9p.h>
35 #include <net/9p/client.h>
39 #define MIN(a, b) (((a) < (b)) ? (a) : (b))
43 #define MAX(a, b) (((a) > (b)) ? (a) : (b))
47 #define offset_of(type, memb) \
48 ((unsigned long)(&((type *)0)->memb))
51 #define container_of(obj, type, memb) \
52 ((type *)(((char *)obj) - offset_of(type, memb)))
56 p9pdu_writef(struct p9_fcall *pdu, int proto_version, const char *fmt, ...);
58 #ifdef CONFIG_NET_9P_DEBUG
60 p9pdu_dump(int way, struct p9_fcall *pdu)
63 u8 *data = pdu->sdata;
64 int datalen = pdu->size;
69 if (datalen > (buflen-16))
72 n += scnprintf(buf + n, buflen - n, "%02x ", data[i]);
74 n += scnprintf(buf + n, buflen - n, " ");
76 n += scnprintf(buf + n, buflen - n, "\n");
80 n += scnprintf(buf + n, buflen - n, "\n");
83 P9_DPRINTK(P9_DEBUG_PKT, "[[[(%d) %s\n", datalen, buf);
85 P9_DPRINTK(P9_DEBUG_PKT, "]]](%d) %s\n", datalen, buf);
89 p9pdu_dump(int way, struct p9_fcall *pdu)
93 EXPORT_SYMBOL(p9pdu_dump);
95 void p9stat_free(struct p9_wstat *stbuf)
101 kfree(stbuf->extension);
103 EXPORT_SYMBOL(p9stat_free);
105 static size_t pdu_read(struct p9_fcall *pdu, void *data, size_t size)
107 size_t len = MIN(pdu->size - pdu->offset, size);
108 memcpy(data, &pdu->sdata[pdu->offset], len);
113 static size_t pdu_write(struct p9_fcall *pdu, const void *data, size_t size)
115 size_t len = MIN(pdu->capacity - pdu->size, size);
116 memcpy(&pdu->sdata[pdu->size], data, len);
122 pdu_write_u(struct p9_fcall *pdu, const char __user *udata, size_t size)
124 size_t len = MIN(pdu->capacity - pdu->size, size);
125 int err = copy_from_user(&pdu->sdata[pdu->size], udata, len);
127 printk(KERN_WARNING "pdu_write_u returning: %d\n", err);
141 D - data blob (int32_t size followed by void *, results are not freed)
142 T - array of strings (int16_t count, followed by strings)
143 R - array of qids (int16_t count, followed by qids)
144 ? - if optional = 1, continue parsing
148 p9pdu_vreadf(struct p9_fcall *pdu, int proto_version, const char *fmt,
154 for (ptr = fmt; *ptr; ptr++) {
157 int8_t *val = va_arg(ap, int8_t *);
158 if (pdu_read(pdu, val, sizeof(*val))) {
165 int16_t *val = va_arg(ap, int16_t *);
167 if (pdu_read(pdu, &le_val, sizeof(le_val))) {
171 *val = le16_to_cpu(le_val);
175 int32_t *val = va_arg(ap, int32_t *);
177 if (pdu_read(pdu, &le_val, sizeof(le_val))) {
181 *val = le32_to_cpu(le_val);
185 int64_t *val = va_arg(ap, int64_t *);
187 if (pdu_read(pdu, &le_val, sizeof(le_val))) {
191 *val = le64_to_cpu(le_val);
195 char **sptr = va_arg(ap, char **);
199 errcode = p9pdu_readf(pdu, proto_version,
206 *sptr = kmalloc(size + 1, GFP_KERNEL);
211 if (pdu_read(pdu, *sptr, size)) {
221 va_arg(ap, struct p9_qid *);
223 errcode = p9pdu_readf(pdu, proto_version, "bdq",
224 &qid->type, &qid->version,
229 struct p9_wstat *stbuf =
230 va_arg(ap, struct p9_wstat *);
232 memset(stbuf, 0, sizeof(struct p9_wstat));
233 stbuf->n_uid = stbuf->n_gid = stbuf->n_muid =
236 p9pdu_readf(pdu, proto_version,
238 &stbuf->size, &stbuf->type,
239 &stbuf->dev, &stbuf->qid,
240 &stbuf->mode, &stbuf->atime,
241 &stbuf->mtime, &stbuf->length,
242 &stbuf->name, &stbuf->uid,
243 &stbuf->gid, &stbuf->muid,
245 &stbuf->n_uid, &stbuf->n_gid,
252 int32_t *count = va_arg(ap, int32_t *);
253 void **data = va_arg(ap, void **);
256 p9pdu_readf(pdu, proto_version, "d", count);
260 pdu->size - pdu->offset);
261 *data = &pdu->sdata[pdu->offset];
266 int16_t *nwname = va_arg(ap, int16_t *);
267 char ***wnames = va_arg(ap, char ***);
269 errcode = p9pdu_readf(pdu, proto_version,
273 kmalloc(sizeof(char *) * *nwname,
282 for (i = 0; i < *nwname; i++) {
297 for (i = 0; i < *nwname; i++)
306 int16_t *nwqid = va_arg(ap, int16_t *);
307 struct p9_qid **wqids =
308 va_arg(ap, struct p9_qid **);
313 p9pdu_readf(pdu, proto_version, "w", nwqid);
317 sizeof(struct p9_qid),
326 for (i = 0; i < *nwqid; i++) {
344 if (proto_version != p9_proto_2000u)
360 p9pdu_vwritef(struct p9_fcall *pdu, int proto_version, const char *fmt,
366 for (ptr = fmt; *ptr; ptr++) {
369 int8_t val = va_arg(ap, int);
370 if (pdu_write(pdu, &val, sizeof(val)))
375 __le16 val = cpu_to_le16(va_arg(ap, int));
376 if (pdu_write(pdu, &val, sizeof(val)))
381 __le32 val = cpu_to_le32(va_arg(ap, int32_t));
382 if (pdu_write(pdu, &val, sizeof(val)))
387 __le64 val = cpu_to_le64(va_arg(ap, int64_t));
388 if (pdu_write(pdu, &val, sizeof(val)))
393 const char *sptr = va_arg(ap, const char *);
396 len = MIN(strlen(sptr), USHORT_MAX);
398 errcode = p9pdu_writef(pdu, proto_version,
400 if (!errcode && pdu_write(pdu, sptr, len))
405 const struct p9_qid *qid =
406 va_arg(ap, const struct p9_qid *);
408 p9pdu_writef(pdu, proto_version, "bdq",
409 qid->type, qid->version,
413 const struct p9_wstat *stbuf =
414 va_arg(ap, const struct p9_wstat *);
416 p9pdu_writef(pdu, proto_version,
418 stbuf->size, stbuf->type,
419 stbuf->dev, &stbuf->qid,
420 stbuf->mode, stbuf->atime,
421 stbuf->mtime, stbuf->length,
422 stbuf->name, stbuf->uid,
423 stbuf->gid, stbuf->muid,
424 stbuf->extension, stbuf->n_uid,
425 stbuf->n_gid, stbuf->n_muid);
428 int32_t count = va_arg(ap, int32_t);
429 const void *data = va_arg(ap, const void *);
431 errcode = p9pdu_writef(pdu, proto_version, "d",
433 if (!errcode && pdu_write(pdu, data, count))
438 int32_t count = va_arg(ap, int32_t);
439 const char __user *udata =
440 va_arg(ap, const void __user *);
441 errcode = p9pdu_writef(pdu, proto_version, "d",
443 if (!errcode && pdu_write_u(pdu, udata, count))
448 int16_t nwname = va_arg(ap, int);
449 const char **wnames = va_arg(ap, const char **);
451 errcode = p9pdu_writef(pdu, proto_version, "w",
456 for (i = 0; i < nwname; i++) {
469 int16_t nwqid = va_arg(ap, int);
470 struct p9_qid *wqids =
471 va_arg(ap, struct p9_qid *);
473 errcode = p9pdu_writef(pdu, proto_version, "w",
478 for (i = 0; i < nwqid; i++) {
491 if (proto_version != p9_proto_2000u)
506 int p9pdu_readf(struct p9_fcall *pdu, int proto_version, const char *fmt, ...)
512 ret = p9pdu_vreadf(pdu, proto_version, fmt, ap);
519 p9pdu_writef(struct p9_fcall *pdu, int proto_version, const char *fmt, ...)
525 ret = p9pdu_vwritef(pdu, proto_version, fmt, ap);
531 int p9stat_read(char *buf, int len, struct p9_wstat *st, int proto_version)
533 struct p9_fcall fake_pdu;
537 fake_pdu.capacity = len;
538 fake_pdu.sdata = buf;
541 ret = p9pdu_readf(&fake_pdu, proto_version, "S", st);
543 P9_DPRINTK(P9_DEBUG_9P, "<<< p9stat_read failed: %d\n", ret);
544 p9pdu_dump(1, &fake_pdu);
549 EXPORT_SYMBOL(p9stat_read);
551 int p9pdu_prepare(struct p9_fcall *pdu, int16_t tag, int8_t type)
553 return p9pdu_writef(pdu, 0, "dbw", 0, type, tag);
556 int p9pdu_finalize(struct p9_fcall *pdu)
558 int size = pdu->size;
562 err = p9pdu_writef(pdu, 0, "d", size);
565 #ifdef CONFIG_NET_9P_DEBUG
566 if ((p9_debug_level & P9_DEBUG_PKT) == P9_DEBUG_PKT)
570 P9_DPRINTK(P9_DEBUG_9P, ">>> size=%d type: %d tag: %d\n", pdu->size,
576 void p9pdu_reset(struct p9_fcall *pdu)