9pfs-proxy: tiny cleanups in proxy_pwritev and proxy_preadv
[qemu/ar7.git] / hw / 9pfs / virtio-9p-proxy.c
blob6bb191ee6ab8d830a72affc887f078ea835e108d
1 /*
2 * Virtio 9p Proxy callback
4 * Copyright IBM, Corp. 2011
6 * Authors:
7 * M. Mohan Kumar <mohan@in.ibm.com>
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
12 #include <sys/socket.h>
13 #include <sys/un.h>
14 #include "hw/virtio/virtio.h"
15 #include "virtio-9p.h"
16 #include "qemu/error-report.h"
17 #include "fsdev/qemu-fsdev.h"
18 #include "virtio-9p-proxy.h"
20 typedef struct V9fsProxy {
21 int sockfd;
22 QemuMutex mutex;
23 struct iovec in_iovec;
24 struct iovec out_iovec;
25 } V9fsProxy;
28 * Return received file descriptor on success in *status.
29 * errno is also returned on *status (which will be < 0)
30 * return < 0 on transport error.
32 static int v9fs_receivefd(int sockfd, int *status)
34 struct iovec iov;
35 struct msghdr msg;
36 struct cmsghdr *cmsg;
37 int retval, data, fd;
38 union MsgControl msg_control;
40 iov.iov_base = &data;
41 iov.iov_len = sizeof(data);
43 memset(&msg, 0, sizeof(msg));
44 msg.msg_iov = &iov;
45 msg.msg_iovlen = 1;
46 msg.msg_control = &msg_control;
47 msg.msg_controllen = sizeof(msg_control);
49 do {
50 retval = recvmsg(sockfd, &msg, 0);
51 } while (retval < 0 && errno == EINTR);
52 if (retval <= 0) {
53 return retval;
56 * data is set to V9FS_FD_VALID, if ancillary data is sent. If this
57 * request doesn't need ancillary data (fd) or an error occurred,
58 * data is set to negative errno value.
60 if (data != V9FS_FD_VALID) {
61 *status = data;
62 return 0;
65 * File descriptor (fd) is sent in the ancillary data. Check if we
66 * indeed received it. One of the reasons to fail to receive it is if
67 * we exceeded the maximum number of file descriptors!
69 for (cmsg = CMSG_FIRSTHDR(&msg); cmsg; cmsg = CMSG_NXTHDR(&msg, cmsg)) {
70 if (cmsg->cmsg_len != CMSG_LEN(sizeof(int)) ||
71 cmsg->cmsg_level != SOL_SOCKET ||
72 cmsg->cmsg_type != SCM_RIGHTS) {
73 continue;
75 fd = *((int *)CMSG_DATA(cmsg));
76 *status = fd;
77 return 0;
79 *status = -ENFILE; /* Ancillary data sent but not received */
80 return 0;
83 static ssize_t socket_read(int sockfd, void *buff, size_t size)
85 ssize_t retval, total = 0;
87 while (size) {
88 retval = read(sockfd, buff, size);
89 if (retval == 0) {
90 return -EIO;
92 if (retval < 0) {
93 if (errno == EINTR) {
94 continue;
96 return -errno;
98 size -= retval;
99 buff += retval;
100 total += retval;
102 return total;
105 /* Converts proxy_statfs to VFS statfs structure */
106 static void prstatfs_to_statfs(struct statfs *stfs, ProxyStatFS *prstfs)
108 memset(stfs, 0, sizeof(*stfs));
109 stfs->f_type = prstfs->f_type;
110 stfs->f_bsize = prstfs->f_bsize;
111 stfs->f_blocks = prstfs->f_blocks;
112 stfs->f_bfree = prstfs->f_bfree;
113 stfs->f_bavail = prstfs->f_bavail;
114 stfs->f_files = prstfs->f_files;
115 stfs->f_ffree = prstfs->f_ffree;
116 stfs->f_fsid.__val[0] = prstfs->f_fsid[0] & 0xFFFFFFFFU;
117 stfs->f_fsid.__val[1] = prstfs->f_fsid[1] >> 32 & 0xFFFFFFFFU;
118 stfs->f_namelen = prstfs->f_namelen;
119 stfs->f_frsize = prstfs->f_frsize;
122 /* Converts proxy_stat structure to VFS stat structure */
123 static void prstat_to_stat(struct stat *stbuf, ProxyStat *prstat)
125 memset(stbuf, 0, sizeof(*stbuf));
126 stbuf->st_dev = prstat->st_dev;
127 stbuf->st_ino = prstat->st_ino;
128 stbuf->st_nlink = prstat->st_nlink;
129 stbuf->st_mode = prstat->st_mode;
130 stbuf->st_uid = prstat->st_uid;
131 stbuf->st_gid = prstat->st_gid;
132 stbuf->st_rdev = prstat->st_rdev;
133 stbuf->st_size = prstat->st_size;
134 stbuf->st_blksize = prstat->st_blksize;
135 stbuf->st_blocks = prstat->st_blocks;
136 stbuf->st_atim.tv_sec = prstat->st_atim_sec;
137 stbuf->st_atim.tv_nsec = prstat->st_atim_nsec;
138 stbuf->st_mtime = prstat->st_mtim_sec;
139 stbuf->st_mtim.tv_nsec = prstat->st_mtim_nsec;
140 stbuf->st_ctime = prstat->st_ctim_sec;
141 stbuf->st_ctim.tv_nsec = prstat->st_ctim_nsec;
145 * Response contains two parts
146 * {header, data}
147 * header.type == T_ERROR, data -> -errno
148 * header.type == T_SUCCESS, data -> response
149 * size of errno/response is given by header.size
150 * returns < 0, on transport error. response is
151 * valid only if status >= 0.
153 static int v9fs_receive_response(V9fsProxy *proxy, int type,
154 int *status, void *response)
156 int retval;
157 ProxyHeader header;
158 struct iovec *reply = &proxy->in_iovec;
160 *status = 0;
161 reply->iov_len = 0;
162 retval = socket_read(proxy->sockfd, reply->iov_base, PROXY_HDR_SZ);
163 if (retval < 0) {
164 return retval;
166 reply->iov_len = PROXY_HDR_SZ;
167 proxy_unmarshal(reply, 0, "dd", &header.type, &header.size);
169 * if response size > PROXY_MAX_IO_SZ, read the response but ignore it and
170 * return -ENOBUFS
172 if (header.size > PROXY_MAX_IO_SZ) {
173 int count;
174 while (header.size > 0) {
175 count = MIN(PROXY_MAX_IO_SZ, header.size);
176 count = socket_read(proxy->sockfd, reply->iov_base, count);
177 if (count < 0) {
178 return count;
180 header.size -= count;
182 *status = -ENOBUFS;
183 return 0;
186 retval = socket_read(proxy->sockfd,
187 reply->iov_base + PROXY_HDR_SZ, header.size);
188 if (retval < 0) {
189 return retval;
191 reply->iov_len += header.size;
192 /* there was an error during processing request */
193 if (header.type == T_ERROR) {
194 int ret;
195 ret = proxy_unmarshal(reply, PROXY_HDR_SZ, "d", status);
196 if (ret < 0) {
197 *status = ret;
199 return 0;
202 switch (type) {
203 case T_LSTAT: {
204 ProxyStat prstat;
205 retval = proxy_unmarshal(reply, PROXY_HDR_SZ,
206 "qqqdddqqqqqqqqqq", &prstat.st_dev,
207 &prstat.st_ino, &prstat.st_nlink,
208 &prstat.st_mode, &prstat.st_uid,
209 &prstat.st_gid, &prstat.st_rdev,
210 &prstat.st_size, &prstat.st_blksize,
211 &prstat.st_blocks,
212 &prstat.st_atim_sec, &prstat.st_atim_nsec,
213 &prstat.st_mtim_sec, &prstat.st_mtim_nsec,
214 &prstat.st_ctim_sec, &prstat.st_ctim_nsec);
215 prstat_to_stat(response, &prstat);
216 break;
218 case T_STATFS: {
219 ProxyStatFS prstfs;
220 retval = proxy_unmarshal(reply, PROXY_HDR_SZ,
221 "qqqqqqqqqqq", &prstfs.f_type,
222 &prstfs.f_bsize, &prstfs.f_blocks,
223 &prstfs.f_bfree, &prstfs.f_bavail,
224 &prstfs.f_files, &prstfs.f_ffree,
225 &prstfs.f_fsid[0], &prstfs.f_fsid[1],
226 &prstfs.f_namelen, &prstfs.f_frsize);
227 prstatfs_to_statfs(response, &prstfs);
228 break;
230 case T_READLINK: {
231 V9fsString target;
232 v9fs_string_init(&target);
233 retval = proxy_unmarshal(reply, PROXY_HDR_SZ, "s", &target);
234 strcpy(response, target.data);
235 v9fs_string_free(&target);
236 break;
238 case T_LGETXATTR:
239 case T_LLISTXATTR: {
240 V9fsString xattr;
241 v9fs_string_init(&xattr);
242 retval = proxy_unmarshal(reply, PROXY_HDR_SZ, "s", &xattr);
243 memcpy(response, xattr.data, xattr.size);
244 v9fs_string_free(&xattr);
245 break;
247 case T_GETVERSION:
248 proxy_unmarshal(reply, PROXY_HDR_SZ, "q", response);
249 break;
250 default:
251 return -1;
253 if (retval < 0) {
254 *status = retval;
256 return 0;
260 * return < 0 on transport error.
261 * *status is valid only if return >= 0
263 static int v9fs_receive_status(V9fsProxy *proxy,
264 struct iovec *reply, int *status)
266 int retval;
267 ProxyHeader header;
269 *status = 0;
270 reply->iov_len = 0;
271 retval = socket_read(proxy->sockfd, reply->iov_base, PROXY_HDR_SZ);
272 if (retval < 0) {
273 return retval;
275 reply->iov_len = PROXY_HDR_SZ;
276 proxy_unmarshal(reply, 0, "dd", &header.type, &header.size);
277 if (header.size != sizeof(int)) {
278 *status = -ENOBUFS;
279 return 0;
281 retval = socket_read(proxy->sockfd,
282 reply->iov_base + PROXY_HDR_SZ, header.size);
283 if (retval < 0) {
284 return retval;
286 reply->iov_len += header.size;
287 proxy_unmarshal(reply, PROXY_HDR_SZ, "d", status);
288 return 0;
292 * Proxy->header and proxy->request written to socket by QEMU process.
293 * This request read by proxy helper process
294 * returns 0 on success and -errno on error
296 static int v9fs_request(V9fsProxy *proxy, int type,
297 void *response, const char *fmt, ...)
299 dev_t rdev;
300 va_list ap;
301 int size = 0;
302 int retval = 0;
303 uint64_t offset;
304 ProxyHeader header = { 0, 0};
305 struct timespec spec[2];
306 int flags, mode, uid, gid;
307 V9fsString *name, *value;
308 V9fsString *path, *oldpath;
309 struct iovec *iovec = NULL, *reply = NULL;
311 qemu_mutex_lock(&proxy->mutex);
313 if (proxy->sockfd == -1) {
314 retval = -EIO;
315 goto err_out;
317 iovec = &proxy->out_iovec;
318 reply = &proxy->in_iovec;
319 va_start(ap, fmt);
320 switch (type) {
321 case T_OPEN:
322 path = va_arg(ap, V9fsString *);
323 flags = va_arg(ap, int);
324 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "sd", path, flags);
325 if (retval > 0) {
326 header.size = retval;
327 header.type = T_OPEN;
329 break;
330 case T_CREATE:
331 path = va_arg(ap, V9fsString *);
332 flags = va_arg(ap, int);
333 mode = va_arg(ap, int);
334 uid = va_arg(ap, int);
335 gid = va_arg(ap, int);
336 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "sdddd", path,
337 flags, mode, uid, gid);
338 if (retval > 0) {
339 header.size = retval;
340 header.type = T_CREATE;
342 break;
343 case T_MKNOD:
344 path = va_arg(ap, V9fsString *);
345 mode = va_arg(ap, int);
346 rdev = va_arg(ap, long int);
347 uid = va_arg(ap, int);
348 gid = va_arg(ap, int);
349 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "ddsdq",
350 uid, gid, path, mode, rdev);
351 if (retval > 0) {
352 header.size = retval;
353 header.type = T_MKNOD;
355 break;
356 case T_MKDIR:
357 path = va_arg(ap, V9fsString *);
358 mode = va_arg(ap, int);
359 uid = va_arg(ap, int);
360 gid = va_arg(ap, int);
361 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "ddsd",
362 uid, gid, path, mode);
363 if (retval > 0) {
364 header.size = retval;
365 header.type = T_MKDIR;
367 break;
368 case T_SYMLINK:
369 oldpath = va_arg(ap, V9fsString *);
370 path = va_arg(ap, V9fsString *);
371 uid = va_arg(ap, int);
372 gid = va_arg(ap, int);
373 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "ddss",
374 uid, gid, oldpath, path);
375 if (retval > 0) {
376 header.size = retval;
377 header.type = T_SYMLINK;
379 break;
380 case T_LINK:
381 oldpath = va_arg(ap, V9fsString *);
382 path = va_arg(ap, V9fsString *);
383 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "ss",
384 oldpath, path);
385 if (retval > 0) {
386 header.size = retval;
387 header.type = T_LINK;
389 break;
390 case T_LSTAT:
391 path = va_arg(ap, V9fsString *);
392 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "s", path);
393 if (retval > 0) {
394 header.size = retval;
395 header.type = T_LSTAT;
397 break;
398 case T_READLINK:
399 path = va_arg(ap, V9fsString *);
400 size = va_arg(ap, int);
401 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "sd", path, size);
402 if (retval > 0) {
403 header.size = retval;
404 header.type = T_READLINK;
406 break;
407 case T_STATFS:
408 path = va_arg(ap, V9fsString *);
409 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "s", path);
410 if (retval > 0) {
411 header.size = retval;
412 header.type = T_STATFS;
414 break;
415 case T_CHMOD:
416 path = va_arg(ap, V9fsString *);
417 mode = va_arg(ap, int);
418 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "sd", path, mode);
419 if (retval > 0) {
420 header.size = retval;
421 header.type = T_CHMOD;
423 break;
424 case T_CHOWN:
425 path = va_arg(ap, V9fsString *);
426 uid = va_arg(ap, int);
427 gid = va_arg(ap, int);
428 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "sdd", path, uid, gid);
429 if (retval > 0) {
430 header.size = retval;
431 header.type = T_CHOWN;
433 break;
434 case T_TRUNCATE:
435 path = va_arg(ap, V9fsString *);
436 offset = va_arg(ap, uint64_t);
437 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "sq", path, offset);
438 if (retval > 0) {
439 header.size = retval;
440 header.type = T_TRUNCATE;
442 break;
443 case T_UTIME:
444 path = va_arg(ap, V9fsString *);
445 spec[0].tv_sec = va_arg(ap, long);
446 spec[0].tv_nsec = va_arg(ap, long);
447 spec[1].tv_sec = va_arg(ap, long);
448 spec[1].tv_nsec = va_arg(ap, long);
449 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "sqqqq", path,
450 spec[0].tv_sec, spec[1].tv_nsec,
451 spec[1].tv_sec, spec[1].tv_nsec);
452 if (retval > 0) {
453 header.size = retval;
454 header.type = T_UTIME;
456 break;
457 case T_RENAME:
458 oldpath = va_arg(ap, V9fsString *);
459 path = va_arg(ap, V9fsString *);
460 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "ss", oldpath, path);
461 if (retval > 0) {
462 header.size = retval;
463 header.type = T_RENAME;
465 break;
466 case T_REMOVE:
467 path = va_arg(ap, V9fsString *);
468 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "s", path);
469 if (retval > 0) {
470 header.size = retval;
471 header.type = T_REMOVE;
473 break;
474 case T_LGETXATTR:
475 size = va_arg(ap, int);
476 path = va_arg(ap, V9fsString *);
477 name = va_arg(ap, V9fsString *);
478 retval = proxy_marshal(iovec, PROXY_HDR_SZ,
479 "dss", size, path, name);
480 if (retval > 0) {
481 header.size = retval;
482 header.type = T_LGETXATTR;
484 break;
485 case T_LLISTXATTR:
486 size = va_arg(ap, int);
487 path = va_arg(ap, V9fsString *);
488 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "ds", size, path);
489 if (retval > 0) {
490 header.size = retval;
491 header.type = T_LLISTXATTR;
493 break;
494 case T_LSETXATTR:
495 path = va_arg(ap, V9fsString *);
496 name = va_arg(ap, V9fsString *);
497 value = va_arg(ap, V9fsString *);
498 size = va_arg(ap, int);
499 flags = va_arg(ap, int);
500 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "sssdd",
501 path, name, value, size, flags);
502 if (retval > 0) {
503 header.size = retval;
504 header.type = T_LSETXATTR;
506 break;
507 case T_LREMOVEXATTR:
508 path = va_arg(ap, V9fsString *);
509 name = va_arg(ap, V9fsString *);
510 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "ss", path, name);
511 if (retval > 0) {
512 header.size = retval;
513 header.type = T_LREMOVEXATTR;
515 break;
516 case T_GETVERSION:
517 path = va_arg(ap, V9fsString *);
518 retval = proxy_marshal(iovec, PROXY_HDR_SZ, "s", path);
519 if (retval > 0) {
520 header.size = retval;
521 header.type = T_GETVERSION;
523 break;
524 default:
525 error_report("Invalid type %d", type);
526 retval = -EINVAL;
527 break;
529 va_end(ap);
531 if (retval < 0) {
532 goto err_out;
535 /* marshal the header details */
536 proxy_marshal(iovec, 0, "dd", header.type, header.size);
537 header.size += PROXY_HDR_SZ;
539 retval = qemu_write_full(proxy->sockfd, iovec->iov_base, header.size);
540 if (retval != header.size) {
541 goto close_error;
544 switch (type) {
545 case T_OPEN:
546 case T_CREATE:
548 * A file descriptor is returned as response for
549 * T_OPEN,T_CREATE on success
551 if (v9fs_receivefd(proxy->sockfd, &retval) < 0) {
552 goto close_error;
554 break;
555 case T_MKNOD:
556 case T_MKDIR:
557 case T_SYMLINK:
558 case T_LINK:
559 case T_CHMOD:
560 case T_CHOWN:
561 case T_RENAME:
562 case T_TRUNCATE:
563 case T_UTIME:
564 case T_REMOVE:
565 case T_LSETXATTR:
566 case T_LREMOVEXATTR:
567 if (v9fs_receive_status(proxy, reply, &retval) < 0) {
568 goto close_error;
570 break;
571 case T_LSTAT:
572 case T_READLINK:
573 case T_STATFS:
574 case T_GETVERSION:
575 if (v9fs_receive_response(proxy, type, &retval, response) < 0) {
576 goto close_error;
578 break;
579 case T_LGETXATTR:
580 case T_LLISTXATTR:
581 if (!size) {
582 if (v9fs_receive_status(proxy, reply, &retval) < 0) {
583 goto close_error;
585 } else {
586 if (v9fs_receive_response(proxy, type, &retval, response) < 0) {
587 goto close_error;
590 break;
593 err_out:
594 qemu_mutex_unlock(&proxy->mutex);
595 return retval;
597 close_error:
598 close(proxy->sockfd);
599 proxy->sockfd = -1;
600 qemu_mutex_unlock(&proxy->mutex);
601 return -EIO;
604 static int proxy_lstat(FsContext *fs_ctx, V9fsPath *fs_path, struct stat *stbuf)
606 int retval;
607 retval = v9fs_request(fs_ctx->private, T_LSTAT, stbuf, "s", fs_path);
608 if (retval < 0) {
609 errno = -retval;
610 return -1;
612 return retval;
615 static ssize_t proxy_readlink(FsContext *fs_ctx, V9fsPath *fs_path,
616 char *buf, size_t bufsz)
618 int retval;
619 retval = v9fs_request(fs_ctx->private, T_READLINK, buf, "sd",
620 fs_path, bufsz);
621 if (retval < 0) {
622 errno = -retval;
623 return -1;
625 return strlen(buf);
628 static int proxy_close(FsContext *ctx, V9fsFidOpenState *fs)
630 return close(fs->fd);
633 static int proxy_closedir(FsContext *ctx, V9fsFidOpenState *fs)
635 return closedir(fs->dir);
638 static int proxy_open(FsContext *ctx, V9fsPath *fs_path,
639 int flags, V9fsFidOpenState *fs)
641 fs->fd = v9fs_request(ctx->private, T_OPEN, NULL, "sd", fs_path, flags);
642 if (fs->fd < 0) {
643 errno = -fs->fd;
644 fs->fd = -1;
646 return fs->fd;
649 static int proxy_opendir(FsContext *ctx,
650 V9fsPath *fs_path, V9fsFidOpenState *fs)
652 int serrno, fd;
654 fs->dir = NULL;
655 fd = v9fs_request(ctx->private, T_OPEN, NULL, "sd", fs_path, O_DIRECTORY);
656 if (fd < 0) {
657 errno = -fd;
658 return -1;
660 fs->dir = fdopendir(fd);
661 if (!fs->dir) {
662 serrno = errno;
663 close(fd);
664 errno = serrno;
665 return -1;
667 return 0;
670 static void proxy_rewinddir(FsContext *ctx, V9fsFidOpenState *fs)
672 return rewinddir(fs->dir);
675 static off_t proxy_telldir(FsContext *ctx, V9fsFidOpenState *fs)
677 return telldir(fs->dir);
680 static int proxy_readdir_r(FsContext *ctx, V9fsFidOpenState *fs,
681 struct dirent *entry,
682 struct dirent **result)
684 return readdir_r(fs->dir, entry, result);
687 static void proxy_seekdir(FsContext *ctx, V9fsFidOpenState *fs, off_t off)
689 return seekdir(fs->dir, off);
692 static ssize_t proxy_preadv(FsContext *ctx, V9fsFidOpenState *fs,
693 const struct iovec *iov,
694 int iovcnt, off_t offset)
696 ssize_t ret;
697 #ifdef CONFIG_PREADV
698 ret = preadv(fs->fd, iov, iovcnt, offset);
699 #else
700 ret = lseek(fs->fd, offset, SEEK_SET);
701 if (ret >= 0) {
702 ret = readv(fs->fd, iov, iovcnt);
704 #endif
705 return ret;
708 static ssize_t proxy_pwritev(FsContext *ctx, V9fsFidOpenState *fs,
709 const struct iovec *iov,
710 int iovcnt, off_t offset)
712 ssize_t ret;
714 #ifdef CONFIG_PREADV
715 ret = pwritev(fs->fd, iov, iovcnt, offset);
716 #else
717 ret = lseek(fs->fd, offset, SEEK_SET);
718 if (ret >= 0) {
719 ret = writev(fs->fd, iov, iovcnt);
721 #endif
722 #ifdef CONFIG_SYNC_FILE_RANGE
723 if (ret > 0 && ctx->export_flags & V9FS_IMMEDIATE_WRITEOUT) {
725 * Initiate a writeback. This is not a data integrity sync.
726 * We want to ensure that we don't leave dirty pages in the cache
727 * after write when writeout=immediate is sepcified.
729 sync_file_range(fs->fd, offset, ret,
730 SYNC_FILE_RANGE_WAIT_BEFORE | SYNC_FILE_RANGE_WRITE);
732 #endif
733 return ret;
736 static int proxy_chmod(FsContext *fs_ctx, V9fsPath *fs_path, FsCred *credp)
738 int retval;
739 retval = v9fs_request(fs_ctx->private, T_CHMOD, NULL, "sd",
740 fs_path, credp->fc_mode);
741 if (retval < 0) {
742 errno = -retval;
744 return retval;
747 static int proxy_mknod(FsContext *fs_ctx, V9fsPath *dir_path,
748 const char *name, FsCred *credp)
750 int retval;
751 V9fsString fullname;
753 v9fs_string_init(&fullname);
754 v9fs_string_sprintf(&fullname, "%s/%s", dir_path->data, name);
756 retval = v9fs_request(fs_ctx->private, T_MKNOD, NULL, "sdqdd",
757 &fullname, credp->fc_mode, credp->fc_rdev,
758 credp->fc_uid, credp->fc_gid);
759 v9fs_string_free(&fullname);
760 if (retval < 0) {
761 errno = -retval;
762 retval = -1;
764 return retval;
767 static int proxy_mkdir(FsContext *fs_ctx, V9fsPath *dir_path,
768 const char *name, FsCred *credp)
770 int retval;
771 V9fsString fullname;
773 v9fs_string_init(&fullname);
774 v9fs_string_sprintf(&fullname, "%s/%s", dir_path->data, name);
776 retval = v9fs_request(fs_ctx->private, T_MKDIR, NULL, "sddd", &fullname,
777 credp->fc_mode, credp->fc_uid, credp->fc_gid);
778 v9fs_string_free(&fullname);
779 if (retval < 0) {
780 errno = -retval;
781 retval = -1;
783 v9fs_string_free(&fullname);
784 return retval;
787 static int proxy_fstat(FsContext *fs_ctx, int fid_type,
788 V9fsFidOpenState *fs, struct stat *stbuf)
790 int fd;
792 if (fid_type == P9_FID_DIR) {
793 fd = dirfd(fs->dir);
794 } else {
795 fd = fs->fd;
797 return fstat(fd, stbuf);
800 static int proxy_open2(FsContext *fs_ctx, V9fsPath *dir_path, const char *name,
801 int flags, FsCred *credp, V9fsFidOpenState *fs)
803 V9fsString fullname;
805 v9fs_string_init(&fullname);
806 v9fs_string_sprintf(&fullname, "%s/%s", dir_path->data, name);
808 fs->fd = v9fs_request(fs_ctx->private, T_CREATE, NULL, "sdddd",
809 &fullname, flags, credp->fc_mode,
810 credp->fc_uid, credp->fc_gid);
811 v9fs_string_free(&fullname);
812 if (fs->fd < 0) {
813 errno = -fs->fd;
814 fs->fd = -1;
816 return fs->fd;
819 static int proxy_symlink(FsContext *fs_ctx, const char *oldpath,
820 V9fsPath *dir_path, const char *name, FsCred *credp)
822 int retval;
823 V9fsString fullname, target;
825 v9fs_string_init(&fullname);
826 v9fs_string_init(&target);
828 v9fs_string_sprintf(&fullname, "%s/%s", dir_path->data, name);
829 v9fs_string_sprintf(&target, "%s", oldpath);
831 retval = v9fs_request(fs_ctx->private, T_SYMLINK, NULL, "ssdd",
832 &target, &fullname, credp->fc_uid, credp->fc_gid);
833 v9fs_string_free(&fullname);
834 v9fs_string_free(&target);
835 if (retval < 0) {
836 errno = -retval;
837 retval = -1;
839 return retval;
842 static int proxy_link(FsContext *ctx, V9fsPath *oldpath,
843 V9fsPath *dirpath, const char *name)
845 int retval;
846 V9fsString newpath;
848 v9fs_string_init(&newpath);
849 v9fs_string_sprintf(&newpath, "%s/%s", dirpath->data, name);
851 retval = v9fs_request(ctx->private, T_LINK, NULL, "ss", oldpath, &newpath);
852 v9fs_string_free(&newpath);
853 if (retval < 0) {
854 errno = -retval;
855 retval = -1;
857 return retval;
860 static int proxy_truncate(FsContext *ctx, V9fsPath *fs_path, off_t size)
862 int retval;
864 retval = v9fs_request(ctx->private, T_TRUNCATE, NULL, "sq", fs_path, size);
865 if (retval < 0) {
866 errno = -retval;
867 return -1;
869 return 0;
872 static int proxy_rename(FsContext *ctx, const char *oldpath,
873 const char *newpath)
875 int retval;
876 V9fsString oldname, newname;
878 v9fs_string_init(&oldname);
879 v9fs_string_init(&newname);
881 v9fs_string_sprintf(&oldname, "%s", oldpath);
882 v9fs_string_sprintf(&newname, "%s", newpath);
883 retval = v9fs_request(ctx->private, T_RENAME, NULL, "ss",
884 &oldname, &newname);
885 v9fs_string_free(&oldname);
886 v9fs_string_free(&newname);
887 if (retval < 0) {
888 errno = -retval;
890 return retval;
893 static int proxy_chown(FsContext *fs_ctx, V9fsPath *fs_path, FsCred *credp)
895 int retval;
896 retval = v9fs_request(fs_ctx->private, T_CHOWN, NULL, "sdd",
897 fs_path, credp->fc_uid, credp->fc_gid);
898 if (retval < 0) {
899 errno = -retval;
901 return retval;
904 static int proxy_utimensat(FsContext *s, V9fsPath *fs_path,
905 const struct timespec *buf)
907 int retval;
908 retval = v9fs_request(s->private, T_UTIME, NULL, "sqqqq",
909 fs_path,
910 buf[0].tv_sec, buf[0].tv_nsec,
911 buf[1].tv_sec, buf[1].tv_nsec);
912 if (retval < 0) {
913 errno = -retval;
915 return retval;
918 static int proxy_remove(FsContext *ctx, const char *path)
920 int retval;
921 V9fsString name;
922 v9fs_string_init(&name);
923 v9fs_string_sprintf(&name, "%s", path);
924 retval = v9fs_request(ctx->private, T_REMOVE, NULL, "s", &name);
925 v9fs_string_free(&name);
926 if (retval < 0) {
927 errno = -retval;
929 return retval;
932 static int proxy_fsync(FsContext *ctx, int fid_type,
933 V9fsFidOpenState *fs, int datasync)
935 int fd;
937 if (fid_type == P9_FID_DIR) {
938 fd = dirfd(fs->dir);
939 } else {
940 fd = fs->fd;
943 if (datasync) {
944 return qemu_fdatasync(fd);
945 } else {
946 return fsync(fd);
950 static int proxy_statfs(FsContext *s, V9fsPath *fs_path, struct statfs *stbuf)
952 int retval;
953 retval = v9fs_request(s->private, T_STATFS, stbuf, "s", fs_path);
954 if (retval < 0) {
955 errno = -retval;
956 return -1;
958 return retval;
961 static ssize_t proxy_lgetxattr(FsContext *ctx, V9fsPath *fs_path,
962 const char *name, void *value, size_t size)
964 int retval;
965 V9fsString xname;
967 v9fs_string_init(&xname);
968 v9fs_string_sprintf(&xname, "%s", name);
969 retval = v9fs_request(ctx->private, T_LGETXATTR, value, "dss", size,
970 fs_path, &xname);
971 v9fs_string_free(&xname);
972 if (retval < 0) {
973 errno = -retval;
975 return retval;
978 static ssize_t proxy_llistxattr(FsContext *ctx, V9fsPath *fs_path,
979 void *value, size_t size)
981 int retval;
982 retval = v9fs_request(ctx->private, T_LLISTXATTR, value, "ds", size,
983 fs_path);
984 if (retval < 0) {
985 errno = -retval;
987 return retval;
990 static int proxy_lsetxattr(FsContext *ctx, V9fsPath *fs_path, const char *name,
991 void *value, size_t size, int flags)
993 int retval;
994 V9fsString xname, xvalue;
996 v9fs_string_init(&xname);
997 v9fs_string_sprintf(&xname, "%s", name);
999 v9fs_string_init(&xvalue);
1000 xvalue.size = size;
1001 xvalue.data = g_malloc(size);
1002 memcpy(xvalue.data, value, size);
1004 retval = v9fs_request(ctx->private, T_LSETXATTR, value, "sssdd",
1005 fs_path, &xname, &xvalue, size, flags);
1006 v9fs_string_free(&xname);
1007 v9fs_string_free(&xvalue);
1008 if (retval < 0) {
1009 errno = -retval;
1011 return retval;
1014 static int proxy_lremovexattr(FsContext *ctx, V9fsPath *fs_path,
1015 const char *name)
1017 int retval;
1018 V9fsString xname;
1020 v9fs_string_init(&xname);
1021 v9fs_string_sprintf(&xname, "%s", name);
1022 retval = v9fs_request(ctx->private, T_LREMOVEXATTR, NULL, "ss",
1023 fs_path, &xname);
1024 v9fs_string_free(&xname);
1025 if (retval < 0) {
1026 errno = -retval;
1028 return retval;
1031 static int proxy_name_to_path(FsContext *ctx, V9fsPath *dir_path,
1032 const char *name, V9fsPath *target)
1034 if (dir_path) {
1035 v9fs_string_sprintf((V9fsString *)target, "%s/%s",
1036 dir_path->data, name);
1037 } else {
1038 v9fs_string_sprintf((V9fsString *)target, "%s", name);
1040 /* Bump the size for including terminating NULL */
1041 target->size++;
1042 return 0;
1045 static int proxy_renameat(FsContext *ctx, V9fsPath *olddir,
1046 const char *old_name, V9fsPath *newdir,
1047 const char *new_name)
1049 int ret;
1050 V9fsString old_full_name, new_full_name;
1052 v9fs_string_init(&old_full_name);
1053 v9fs_string_init(&new_full_name);
1055 v9fs_string_sprintf(&old_full_name, "%s/%s", olddir->data, old_name);
1056 v9fs_string_sprintf(&new_full_name, "%s/%s", newdir->data, new_name);
1058 ret = proxy_rename(ctx, old_full_name.data, new_full_name.data);
1059 v9fs_string_free(&old_full_name);
1060 v9fs_string_free(&new_full_name);
1061 return ret;
1064 static int proxy_unlinkat(FsContext *ctx, V9fsPath *dir,
1065 const char *name, int flags)
1067 int ret;
1068 V9fsString fullname;
1069 v9fs_string_init(&fullname);
1071 v9fs_string_sprintf(&fullname, "%s/%s", dir->data, name);
1072 ret = proxy_remove(ctx, fullname.data);
1073 v9fs_string_free(&fullname);
1075 return ret;
1078 static int proxy_ioc_getversion(FsContext *fs_ctx, V9fsPath *path,
1079 mode_t st_mode, uint64_t *st_gen)
1081 int err;
1083 /* Do not try to open special files like device nodes, fifos etc
1084 * we can get fd for regular files and directories only
1086 if (!S_ISREG(st_mode) && !S_ISDIR(st_mode)) {
1087 errno = ENOTTY;
1088 return -1;
1090 err = v9fs_request(fs_ctx->private, T_GETVERSION, st_gen, "s", path);
1091 if (err < 0) {
1092 errno = -err;
1093 err = -1;
1095 return err;
1098 static int connect_namedsocket(const char *path)
1100 int sockfd, size;
1101 struct sockaddr_un helper;
1103 sockfd = socket(AF_UNIX, SOCK_STREAM, 0);
1104 if (sockfd < 0) {
1105 fprintf(stderr, "failed to create socket: %s\n", strerror(errno));
1106 return -1;
1108 strcpy(helper.sun_path, path);
1109 helper.sun_family = AF_UNIX;
1110 size = strlen(helper.sun_path) + sizeof(helper.sun_family);
1111 if (connect(sockfd, (struct sockaddr *)&helper, size) < 0) {
1112 fprintf(stderr, "failed to connect to %s: %s\n", path, strerror(errno));
1113 close(sockfd);
1114 return -1;
1117 /* remove the socket for security reasons */
1118 unlink(path);
1119 return sockfd;
1122 static int proxy_parse_opts(QemuOpts *opts, struct FsDriverEntry *fs)
1124 const char *socket = qemu_opt_get(opts, "socket");
1125 const char *sock_fd = qemu_opt_get(opts, "sock_fd");
1127 if (!socket && !sock_fd) {
1128 fprintf(stderr, "socket and sock_fd none of the option specified\n");
1129 return -1;
1131 if (socket && sock_fd) {
1132 fprintf(stderr, "Both socket and sock_fd options specified\n");
1133 return -1;
1135 if (socket) {
1136 fs->path = g_strdup(socket);
1137 fs->export_flags = V9FS_PROXY_SOCK_NAME;
1138 } else {
1139 fs->path = g_strdup(sock_fd);
1140 fs->export_flags = V9FS_PROXY_SOCK_FD;
1142 return 0;
1145 static int proxy_init(FsContext *ctx)
1147 V9fsProxy *proxy = g_malloc(sizeof(V9fsProxy));
1148 int sock_id;
1150 if (ctx->export_flags & V9FS_PROXY_SOCK_NAME) {
1151 sock_id = connect_namedsocket(ctx->fs_root);
1152 } else {
1153 sock_id = atoi(ctx->fs_root);
1154 if (sock_id < 0) {
1155 fprintf(stderr, "socket descriptor not initialized\n");
1158 if (sock_id < 0) {
1159 g_free(proxy);
1160 return -1;
1162 g_free(ctx->fs_root);
1163 ctx->fs_root = NULL;
1165 proxy->in_iovec.iov_base = g_malloc(PROXY_MAX_IO_SZ + PROXY_HDR_SZ);
1166 proxy->in_iovec.iov_len = PROXY_MAX_IO_SZ + PROXY_HDR_SZ;
1167 proxy->out_iovec.iov_base = g_malloc(PROXY_MAX_IO_SZ + PROXY_HDR_SZ);
1168 proxy->out_iovec.iov_len = PROXY_MAX_IO_SZ + PROXY_HDR_SZ;
1170 ctx->private = proxy;
1171 proxy->sockfd = sock_id;
1172 qemu_mutex_init(&proxy->mutex);
1174 ctx->export_flags |= V9FS_PATHNAME_FSCONTEXT;
1175 ctx->exops.get_st_gen = proxy_ioc_getversion;
1176 return 0;
1179 FileOperations proxy_ops = {
1180 .parse_opts = proxy_parse_opts,
1181 .init = proxy_init,
1182 .lstat = proxy_lstat,
1183 .readlink = proxy_readlink,
1184 .close = proxy_close,
1185 .closedir = proxy_closedir,
1186 .open = proxy_open,
1187 .opendir = proxy_opendir,
1188 .rewinddir = proxy_rewinddir,
1189 .telldir = proxy_telldir,
1190 .readdir_r = proxy_readdir_r,
1191 .seekdir = proxy_seekdir,
1192 .preadv = proxy_preadv,
1193 .pwritev = proxy_pwritev,
1194 .chmod = proxy_chmod,
1195 .mknod = proxy_mknod,
1196 .mkdir = proxy_mkdir,
1197 .fstat = proxy_fstat,
1198 .open2 = proxy_open2,
1199 .symlink = proxy_symlink,
1200 .link = proxy_link,
1201 .truncate = proxy_truncate,
1202 .rename = proxy_rename,
1203 .chown = proxy_chown,
1204 .utimensat = proxy_utimensat,
1205 .remove = proxy_remove,
1206 .fsync = proxy_fsync,
1207 .statfs = proxy_statfs,
1208 .lgetxattr = proxy_lgetxattr,
1209 .llistxattr = proxy_llistxattr,
1210 .lsetxattr = proxy_lsetxattr,
1211 .lremovexattr = proxy_lremovexattr,
1212 .name_to_path = proxy_name_to_path,
1213 .renameat = proxy_renameat,
1214 .unlinkat = proxy_unlinkat,