2 * Virtio 9p Proxy callback
4 * Copyright IBM, Corp. 2011
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>
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
{
23 struct iovec in_iovec
;
24 struct iovec out_iovec
;
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
)
38 union MsgControl msg_control
;
41 iov
.iov_len
= sizeof(data
);
43 memset(&msg
, 0, sizeof(msg
));
46 msg
.msg_control
= &msg_control
;
47 msg
.msg_controllen
= sizeof(msg_control
);
50 retval
= recvmsg(sockfd
, &msg
, 0);
51 } while (retval
< 0 && errno
== EINTR
);
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
) {
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
) {
75 fd
= *((int *)CMSG_DATA(cmsg
));
79 *status
= -ENFILE
; /* Ancillary data sent but not received */
83 static ssize_t
socket_read(int sockfd
, void *buff
, size_t size
)
85 ssize_t retval
, total
= 0;
88 retval
= read(sockfd
, buff
, size
);
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
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
)
158 struct iovec
*reply
= &proxy
->in_iovec
;
162 retval
= socket_read(proxy
->sockfd
, reply
->iov_base
, PROXY_HDR_SZ
);
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
172 if (header
.size
> PROXY_MAX_IO_SZ
) {
174 while (header
.size
> 0) {
175 count
= MIN(PROXY_MAX_IO_SZ
, header
.size
);
176 count
= socket_read(proxy
->sockfd
, reply
->iov_base
, count
);
180 header
.size
-= count
;
186 retval
= socket_read(proxy
->sockfd
,
187 reply
->iov_base
+ PROXY_HDR_SZ
, header
.size
);
191 reply
->iov_len
+= header
.size
;
192 /* there was an error during processing request */
193 if (header
.type
== T_ERROR
) {
195 ret
= proxy_unmarshal(reply
, PROXY_HDR_SZ
, "d", status
);
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
,
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
);
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
);
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
);
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
);
248 proxy_unmarshal(reply
, PROXY_HDR_SZ
, "q", response
);
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
)
271 retval
= socket_read(proxy
->sockfd
, reply
->iov_base
, PROXY_HDR_SZ
);
275 reply
->iov_len
= PROXY_HDR_SZ
;
276 proxy_unmarshal(reply
, 0, "dd", &header
.type
, &header
.size
);
277 if (header
.size
!= sizeof(int)) {
281 retval
= socket_read(proxy
->sockfd
,
282 reply
->iov_base
+ PROXY_HDR_SZ
, header
.size
);
286 reply
->iov_len
+= header
.size
;
287 proxy_unmarshal(reply
, PROXY_HDR_SZ
, "d", status
);
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
, ...)
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) {
317 iovec
= &proxy
->out_iovec
;
318 reply
= &proxy
->in_iovec
;
322 path
= va_arg(ap
, V9fsString
*);
323 flags
= va_arg(ap
, int);
324 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "sd", path
, flags
);
326 header
.size
= retval
;
327 header
.type
= T_OPEN
;
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
);
339 header
.size
= retval
;
340 header
.type
= T_CREATE
;
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
);
352 header
.size
= retval
;
353 header
.type
= T_MKNOD
;
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
);
364 header
.size
= retval
;
365 header
.type
= T_MKDIR
;
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
);
376 header
.size
= retval
;
377 header
.type
= T_SYMLINK
;
381 oldpath
= va_arg(ap
, V9fsString
*);
382 path
= va_arg(ap
, V9fsString
*);
383 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "ss",
386 header
.size
= retval
;
387 header
.type
= T_LINK
;
391 path
= va_arg(ap
, V9fsString
*);
392 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "s", path
);
394 header
.size
= retval
;
395 header
.type
= T_LSTAT
;
399 path
= va_arg(ap
, V9fsString
*);
400 size
= va_arg(ap
, int);
401 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "sd", path
, size
);
403 header
.size
= retval
;
404 header
.type
= T_READLINK
;
408 path
= va_arg(ap
, V9fsString
*);
409 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "s", path
);
411 header
.size
= retval
;
412 header
.type
= T_STATFS
;
416 path
= va_arg(ap
, V9fsString
*);
417 mode
= va_arg(ap
, int);
418 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "sd", path
, mode
);
420 header
.size
= retval
;
421 header
.type
= T_CHMOD
;
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
);
430 header
.size
= retval
;
431 header
.type
= T_CHOWN
;
435 path
= va_arg(ap
, V9fsString
*);
436 offset
= va_arg(ap
, uint64_t);
437 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "sq", path
, offset
);
439 header
.size
= retval
;
440 header
.type
= T_TRUNCATE
;
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
);
453 header
.size
= retval
;
454 header
.type
= T_UTIME
;
458 oldpath
= va_arg(ap
, V9fsString
*);
459 path
= va_arg(ap
, V9fsString
*);
460 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "ss", oldpath
, path
);
462 header
.size
= retval
;
463 header
.type
= T_RENAME
;
467 path
= va_arg(ap
, V9fsString
*);
468 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "s", path
);
470 header
.size
= retval
;
471 header
.type
= T_REMOVE
;
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
);
481 header
.size
= retval
;
482 header
.type
= T_LGETXATTR
;
486 size
= va_arg(ap
, int);
487 path
= va_arg(ap
, V9fsString
*);
488 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "ds", size
, path
);
490 header
.size
= retval
;
491 header
.type
= T_LLISTXATTR
;
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
);
503 header
.size
= retval
;
504 header
.type
= T_LSETXATTR
;
508 path
= va_arg(ap
, V9fsString
*);
509 name
= va_arg(ap
, V9fsString
*);
510 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "ss", path
, name
);
512 header
.size
= retval
;
513 header
.type
= T_LREMOVEXATTR
;
517 path
= va_arg(ap
, V9fsString
*);
518 retval
= proxy_marshal(iovec
, PROXY_HDR_SZ
, "s", path
);
520 header
.size
= retval
;
521 header
.type
= T_GETVERSION
;
525 error_report("Invalid type %d", type
);
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
) {
548 * A file descriptor is returned as response for
549 * T_OPEN,T_CREATE on success
551 if (v9fs_receivefd(proxy
->sockfd
, &retval
) < 0) {
567 if (v9fs_receive_status(proxy
, reply
, &retval
) < 0) {
575 if (v9fs_receive_response(proxy
, type
, &retval
, response
) < 0) {
582 if (v9fs_receive_status(proxy
, reply
, &retval
) < 0) {
586 if (v9fs_receive_response(proxy
, type
, &retval
, response
) < 0) {
594 qemu_mutex_unlock(&proxy
->mutex
);
598 close(proxy
->sockfd
);
600 qemu_mutex_unlock(&proxy
->mutex
);
604 static int proxy_lstat(FsContext
*fs_ctx
, V9fsPath
*fs_path
, struct stat
*stbuf
)
607 retval
= v9fs_request(fs_ctx
->private, T_LSTAT
, stbuf
, "s", fs_path
);
615 static ssize_t
proxy_readlink(FsContext
*fs_ctx
, V9fsPath
*fs_path
,
616 char *buf
, size_t bufsz
)
619 retval
= v9fs_request(fs_ctx
->private, T_READLINK
, buf
, "sd",
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
);
649 static int proxy_opendir(FsContext
*ctx
,
650 V9fsPath
*fs_path
, V9fsFidOpenState
*fs
)
655 fd
= v9fs_request(ctx
->private, T_OPEN
, NULL
, "sd", fs_path
, O_DIRECTORY
);
660 fs
->dir
= fdopendir(fd
);
670 static void proxy_rewinddir(FsContext
*ctx
, V9fsFidOpenState
*fs
)
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 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
)
698 ret
= preadv(fs
->fd
, iov
, iovcnt
, offset
);
700 ret
= lseek(fs
->fd
, offset
, SEEK_SET
);
702 ret
= readv(fs
->fd
, iov
, iovcnt
);
708 static ssize_t
proxy_pwritev(FsContext
*ctx
, V9fsFidOpenState
*fs
,
709 const struct iovec
*iov
,
710 int iovcnt
, off_t offset
)
715 ret
= pwritev(fs
->fd
, iov
, iovcnt
, offset
);
717 ret
= lseek(fs
->fd
, offset
, SEEK_SET
);
719 ret
= writev(fs
->fd
, iov
, iovcnt
);
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
);
736 static int proxy_chmod(FsContext
*fs_ctx
, V9fsPath
*fs_path
, FsCred
*credp
)
739 retval
= v9fs_request(fs_ctx
->private, T_CHMOD
, NULL
, "sd",
740 fs_path
, credp
->fc_mode
);
747 static int proxy_mknod(FsContext
*fs_ctx
, V9fsPath
*dir_path
,
748 const char *name
, FsCred
*credp
)
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
);
767 static int proxy_mkdir(FsContext
*fs_ctx
, V9fsPath
*dir_path
,
768 const char *name
, FsCred
*credp
)
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
);
783 v9fs_string_free(&fullname
);
787 static int proxy_fstat(FsContext
*fs_ctx
, int fid_type
,
788 V9fsFidOpenState
*fs
, struct stat
*stbuf
)
792 if (fid_type
== P9_FID_DIR
) {
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
)
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
);
819 static int proxy_symlink(FsContext
*fs_ctx
, const char *oldpath
,
820 V9fsPath
*dir_path
, const char *name
, FsCred
*credp
)
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
);
842 static int proxy_link(FsContext
*ctx
, V9fsPath
*oldpath
,
843 V9fsPath
*dirpath
, const char *name
)
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
);
860 static int proxy_truncate(FsContext
*ctx
, V9fsPath
*fs_path
, off_t size
)
864 retval
= v9fs_request(ctx
->private, T_TRUNCATE
, NULL
, "sq", fs_path
, size
);
872 static int proxy_rename(FsContext
*ctx
, const char *oldpath
,
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",
885 v9fs_string_free(&oldname
);
886 v9fs_string_free(&newname
);
893 static int proxy_chown(FsContext
*fs_ctx
, V9fsPath
*fs_path
, FsCred
*credp
)
896 retval
= v9fs_request(fs_ctx
->private, T_CHOWN
, NULL
, "sdd",
897 fs_path
, credp
->fc_uid
, credp
->fc_gid
);
904 static int proxy_utimensat(FsContext
*s
, V9fsPath
*fs_path
,
905 const struct timespec
*buf
)
908 retval
= v9fs_request(s
->private, T_UTIME
, NULL
, "sqqqq",
910 buf
[0].tv_sec
, buf
[0].tv_nsec
,
911 buf
[1].tv_sec
, buf
[1].tv_nsec
);
918 static int proxy_remove(FsContext
*ctx
, const char *path
)
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
);
932 static int proxy_fsync(FsContext
*ctx
, int fid_type
,
933 V9fsFidOpenState
*fs
, int datasync
)
937 if (fid_type
== P9_FID_DIR
) {
944 return qemu_fdatasync(fd
);
950 static int proxy_statfs(FsContext
*s
, V9fsPath
*fs_path
, struct statfs
*stbuf
)
953 retval
= v9fs_request(s
->private, T_STATFS
, stbuf
, "s", fs_path
);
961 static ssize_t
proxy_lgetxattr(FsContext
*ctx
, V9fsPath
*fs_path
,
962 const char *name
, void *value
, size_t size
)
967 v9fs_string_init(&xname
);
968 v9fs_string_sprintf(&xname
, "%s", name
);
969 retval
= v9fs_request(ctx
->private, T_LGETXATTR
, value
, "dss", size
,
971 v9fs_string_free(&xname
);
978 static ssize_t
proxy_llistxattr(FsContext
*ctx
, V9fsPath
*fs_path
,
979 void *value
, size_t size
)
982 retval
= v9fs_request(ctx
->private, T_LLISTXATTR
, value
, "ds", size
,
990 static int proxy_lsetxattr(FsContext
*ctx
, V9fsPath
*fs_path
, const char *name
,
991 void *value
, size_t size
, int flags
)
994 V9fsString xname
, xvalue
;
996 v9fs_string_init(&xname
);
997 v9fs_string_sprintf(&xname
, "%s", name
);
999 v9fs_string_init(&xvalue
);
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
);
1014 static int proxy_lremovexattr(FsContext
*ctx
, V9fsPath
*fs_path
,
1020 v9fs_string_init(&xname
);
1021 v9fs_string_sprintf(&xname
, "%s", name
);
1022 retval
= v9fs_request(ctx
->private, T_LREMOVEXATTR
, NULL
, "ss",
1024 v9fs_string_free(&xname
);
1031 static int proxy_name_to_path(FsContext
*ctx
, V9fsPath
*dir_path
,
1032 const char *name
, V9fsPath
*target
)
1035 v9fs_string_sprintf((V9fsString
*)target
, "%s/%s",
1036 dir_path
->data
, name
);
1038 v9fs_string_sprintf((V9fsString
*)target
, "%s", name
);
1040 /* Bump the size for including terminating NULL */
1045 static int proxy_renameat(FsContext
*ctx
, V9fsPath
*olddir
,
1046 const char *old_name
, V9fsPath
*newdir
,
1047 const char *new_name
)
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
);
1064 static int proxy_unlinkat(FsContext
*ctx
, V9fsPath
*dir
,
1065 const char *name
, int flags
)
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
);
1078 static int proxy_ioc_getversion(FsContext
*fs_ctx
, V9fsPath
*path
,
1079 mode_t st_mode
, uint64_t *st_gen
)
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
)) {
1090 err
= v9fs_request(fs_ctx
->private, T_GETVERSION
, st_gen
, "s", path
);
1098 static int connect_namedsocket(const char *path
)
1101 struct sockaddr_un helper
;
1103 if (strlen(path
) >= sizeof(helper
.sun_path
)) {
1104 fprintf(stderr
, "Socket name too large\n");
1107 sockfd
= socket(AF_UNIX
, SOCK_STREAM
, 0);
1109 fprintf(stderr
, "failed to create socket: %s\n", strerror(errno
));
1112 strcpy(helper
.sun_path
, path
);
1113 helper
.sun_family
= AF_UNIX
;
1114 size
= strlen(helper
.sun_path
) + sizeof(helper
.sun_family
);
1115 if (connect(sockfd
, (struct sockaddr
*)&helper
, size
) < 0) {
1116 fprintf(stderr
, "failed to connect to %s: %s\n", path
, strerror(errno
));
1121 /* remove the socket for security reasons */
1126 static int proxy_parse_opts(QemuOpts
*opts
, struct FsDriverEntry
*fs
)
1128 const char *socket
= qemu_opt_get(opts
, "socket");
1129 const char *sock_fd
= qemu_opt_get(opts
, "sock_fd");
1131 if (!socket
&& !sock_fd
) {
1132 fprintf(stderr
, "socket and sock_fd none of the option specified\n");
1135 if (socket
&& sock_fd
) {
1136 fprintf(stderr
, "Both socket and sock_fd options specified\n");
1140 fs
->path
= g_strdup(socket
);
1141 fs
->export_flags
= V9FS_PROXY_SOCK_NAME
;
1143 fs
->path
= g_strdup(sock_fd
);
1144 fs
->export_flags
= V9FS_PROXY_SOCK_FD
;
1149 static int proxy_init(FsContext
*ctx
)
1151 V9fsProxy
*proxy
= g_malloc(sizeof(V9fsProxy
));
1154 if (ctx
->export_flags
& V9FS_PROXY_SOCK_NAME
) {
1155 sock_id
= connect_namedsocket(ctx
->fs_root
);
1157 sock_id
= atoi(ctx
->fs_root
);
1159 fprintf(stderr
, "socket descriptor not initialized\n");
1166 g_free(ctx
->fs_root
);
1167 ctx
->fs_root
= NULL
;
1169 proxy
->in_iovec
.iov_base
= g_malloc(PROXY_MAX_IO_SZ
+ PROXY_HDR_SZ
);
1170 proxy
->in_iovec
.iov_len
= PROXY_MAX_IO_SZ
+ PROXY_HDR_SZ
;
1171 proxy
->out_iovec
.iov_base
= g_malloc(PROXY_MAX_IO_SZ
+ PROXY_HDR_SZ
);
1172 proxy
->out_iovec
.iov_len
= PROXY_MAX_IO_SZ
+ PROXY_HDR_SZ
;
1174 ctx
->private = proxy
;
1175 proxy
->sockfd
= sock_id
;
1176 qemu_mutex_init(&proxy
->mutex
);
1178 ctx
->export_flags
|= V9FS_PATHNAME_FSCONTEXT
;
1179 ctx
->exops
.get_st_gen
= proxy_ioc_getversion
;
1183 FileOperations proxy_ops
= {
1184 .parse_opts
= proxy_parse_opts
,
1186 .lstat
= proxy_lstat
,
1187 .readlink
= proxy_readlink
,
1188 .close
= proxy_close
,
1189 .closedir
= proxy_closedir
,
1191 .opendir
= proxy_opendir
,
1192 .rewinddir
= proxy_rewinddir
,
1193 .telldir
= proxy_telldir
,
1194 .readdir_r
= proxy_readdir_r
,
1195 .seekdir
= proxy_seekdir
,
1196 .preadv
= proxy_preadv
,
1197 .pwritev
= proxy_pwritev
,
1198 .chmod
= proxy_chmod
,
1199 .mknod
= proxy_mknod
,
1200 .mkdir
= proxy_mkdir
,
1201 .fstat
= proxy_fstat
,
1202 .open2
= proxy_open2
,
1203 .symlink
= proxy_symlink
,
1205 .truncate
= proxy_truncate
,
1206 .rename
= proxy_rename
,
1207 .chown
= proxy_chown
,
1208 .utimensat
= proxy_utimensat
,
1209 .remove
= proxy_remove
,
1210 .fsync
= proxy_fsync
,
1211 .statfs
= proxy_statfs
,
1212 .lgetxattr
= proxy_lgetxattr
,
1213 .llistxattr
= proxy_llistxattr
,
1214 .lsetxattr
= proxy_lsetxattr
,
1215 .lremovexattr
= proxy_lremovexattr
,
1216 .name_to_path
= proxy_name_to_path
,
1217 .renameat
= proxy_renameat
,
1218 .unlinkat
= proxy_unlinkat
,