From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1O0CdD-0001p6-9s for qemu-devel@nongnu.org; Fri, 09 Apr 2010 07:44:15 -0400 Received: from [140.186.70.92] (port=56612 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1O0Cd3-0001kO-Uw for qemu-devel@nongnu.org; Fri, 09 Apr 2010 07:44:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1O0Ccp-00088s-BD for qemu-devel@nongnu.org; Fri, 09 Apr 2010 07:44:03 -0400 Received: from e28smtp01.in.ibm.com ([122.248.162.1]:40945) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1O0Cco-00088d-LG for qemu-devel@nongnu.org; Fri, 09 Apr 2010 07:43:51 -0400 Received: from d28relay05.in.ibm.com (d28relay05.in.ibm.com [9.184.220.62]) by e28smtp01.in.ibm.com (8.14.3/8.13.1) with ESMTP id o39BhlJw032560 for ; Fri, 9 Apr 2010 17:13:47 +0530 Received: from d28av01.in.ibm.com (d28av01.in.ibm.com [9.184.220.63]) by d28relay05.in.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o39BhleP2912322 for ; Fri, 9 Apr 2010 17:13:47 +0530 Received: from d28av01.in.ibm.com (loopback [127.0.0.1]) by d28av01.in.ibm.com (8.14.3/8.13.1/NCO v10.0 AVout) with ESMTP id o39BhlqZ002567 for ; Fri, 9 Apr 2010 17:13:47 +0530 From: "Aneesh Kumar K.V" Date: Fri, 9 Apr 2010 17:13:24 +0530 Message-Id: <1270813404-23004-22-git-send-email-aneesh.kumar@linux.vnet.ibm.com> In-Reply-To: <1270813404-23004-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> References: <1270813404-23004-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH -V4 21/21] virtio-9p: Create a syntactic shortcut for the file-system pass-thru List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: ericvh@gmail.com, aliguori@us.ibm.com, aneesh.kumar@linux.vnet.ibm.com, Gautham R Shenoy From: Gautham R Shenoy Currently the commandline to create a virtual-filesystem pass-through between the guest and the host is as follows: #qemu -fsdev fstype,id=ID,path=path/to/share \ -device virtio-9p-pci,fsdev=ID,mount_tag=tag \ This patch provides a syntactic short-cut to achieve the same as follows: #qemu -virtfs fstype,path=path/to/share,mount_tag=tag This will be internally expanded as: #qemu -fsdev fstype,id=tag,path=path/to/share, \ -device virtio-9p-pci,fsdev=tag,mount_tag=tag \ Signed-off-by: Gautham R Shenoy Signed-off-by: Aneesh Kumar K.V --- qemu-config.c | 22 +++++++++++++++++++++ qemu-config.h | 1 + qemu-options.hx | 34 +++++++++++++++++++++++++++++++++ vl.c | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 113 insertions(+), 0 deletions(-) diff --git a/qemu-config.c b/qemu-config.c index 0fb5105..06a59eb 100644 --- a/qemu-config.c +++ b/qemu-config.c @@ -169,6 +169,28 @@ QemuOptsList qemu_fsdev_opts = { }; #endif +#ifdef CONFIG_LINUX_VIRTFS +QemuOptsList qemu_virtfs_opts = { + .name = "virtfs", + .implied_opt_name = "fstype", + .head = QTAILQ_HEAD_INITIALIZER(qemu_virtfs_opts.head), + .desc = { + { + .name = "fstype", + .type = QEMU_OPT_STRING, + }, { + .name = "path", + .type = QEMU_OPT_STRING, + }, { + .name = "mount_tag", + .type = QEMU_OPT_STRING, + }, + + { /*End of list */ } + }, +}; +#endif + QemuOptsList qemu_device_opts = { .name = "device", .implied_opt_name = "driver", diff --git a/qemu-config.h b/qemu-config.h index d85bde7..546fc01 100644 --- a/qemu-config.h +++ b/qemu-config.h @@ -5,6 +5,7 @@ extern QemuOptsList qemu_drive_opts; extern QemuOptsList qemu_chardev_opts; #ifdef CONFIG_LINUX_VIRTFS extern QemuOptsList qemu_fsdev_opts; +extern QemuOptsList qemu_virtfs_opts; #endif extern QemuOptsList qemu_device_opts; extern QemuOptsList qemu_netdev_opts; diff --git a/qemu-options.hx b/qemu-options.hx index e007df8..5da36c6 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -500,6 +500,40 @@ Create a file-system-"device" for local-filesystem. ETEXI #endif +#ifdef CONFIG_LINUX_VIRTFS +DEFHEADING(Virtual File system pass-through options:) + +DEF("virtfs", HAS_ARG, QEMU_OPTION_virtfs, + "-virtfs local,path=path,mount_tag=tag\n") + +STEXI + +The general form of a Virtual File system pass-through option is: +@table @option + +@item -virtfs @var{fstype} [,@var{options}] +@findex -virtfs +Fstype is one of: +@option{local}, +The specific Fstype will determine the applicable options. + +Options to each backend are described below. + +@item -virtfs local ,path=@var{path} ,mount_tag=@var{mount_tag} + +Create a Virtual file-system-pass through for local-filesystem. + +@option{local} is only available on Linux. + +@option{path} specifies the path to be exported. @option{path} is required. + +@option{mount_tag} specifies the tag with which the exported file is mounted. +@option{mount_tag} is required. + +@end table +ETEXI +#endif + DEFHEADING() DEF("name", HAS_ARG, QEMU_OPTION_name, diff --git a/vl.c b/vl.c index 4359825..8e71c94 100644 --- a/vl.c +++ b/vl.c @@ -4277,6 +4277,62 @@ int main(int argc, char **argv, char **envp) exit(1); } break; + case QEMU_OPTION_virtfs: { + char *arg_fsdev = NULL; + char *arg_9p = NULL; + int len = 0; + + opts = qemu_opts_parse(&qemu_virtfs_opts, optarg, 1); + if (!opts) { + fprintf(stderr, "parse error: %s\n", optarg); + exit(1); + } + + len = strlen(",id=,path="); + len += strlen(qemu_opt_get(opts, "fstype")); + len += strlen(qemu_opt_get(opts, "mount_tag")); + len += strlen(qemu_opt_get(opts, "path")); + arg_fsdev = qemu_malloc((len + 1) * sizeof(*arg_fsdev)); + + if (!arg_fsdev) { + fprintf(stderr, "No memory to parse -fsdev for %s\n", + optarg); + exit(1); + } + + sprintf(arg_fsdev, "%s,id=%s,path=%s", + qemu_opt_get(opts, "fstype"), + qemu_opt_get(opts, "mount_tag"), + qemu_opt_get(opts, "path")); + + len = strlen("virtio-9p-pci,fsdev=,mount_tag="); + len += 2*strlen(qemu_opt_get(opts, "mount_tag")); + arg_9p = qemu_malloc((len + 1) * sizeof(*arg_9p)); + + if (!arg_9p) { + fprintf(stderr, "No memory to parse -device for %s\n", + optarg); + exit(1); + } + + sprintf(arg_9p, "virtio-9p-pci,fsdev=%s,mount_tag=%s", + qemu_opt_get(opts, "mount_tag"), + qemu_opt_get(opts, "mount_tag")); + + if (!qemu_opts_parse(&qemu_fsdev_opts, arg_fsdev, 1)) { + fprintf(stderr, "parse error [fsdev]: %s\n", optarg); + exit(1); + } + + if (!qemu_opts_parse(&qemu_device_opts, arg_9p, 1)) { + fprintf(stderr, "parse error [device]: %s\n", optarg); + exit(1); + } + + qemu_free(arg_fsdev); + qemu_free(arg_9p); + break; + } #endif case QEMU_OPTION_serial: add_device_config(DEV_SERIAL, optarg); -- 1.7.0.4.360.g11766c