qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
To: Anthony Liguori <aliguori@us.ibm.com>
Cc: Laszlo Ersek <lersek@redhat.com>,
	qemu-devel@nongnu.org,
	Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Subject: [Qemu-devel] [PATCH 14/19] convert net_init_slirp() to NetClientOptions
Date: Mon, 23 Jul 2012 12:50:39 +0100	[thread overview]
Message-ID: <1343044244-28728-15-git-send-email-stefanha@linux.vnet.ibm.com> (raw)
In-Reply-To: <1343044244-28728-1-git-send-email-stefanha@linux.vnet.ibm.com>

From: Laszlo Ersek <lersek@redhat.com>

Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
---
 net/slirp.c |   93 ++++++++++++++++-------------------------------------------
 1 file changed, 25 insertions(+), 68 deletions(-)

diff --git a/net/slirp.c b/net/slirp.c
index 1243d43..44b059f 100644
--- a/net/slirp.c
+++ b/net/slirp.c
@@ -686,89 +686,46 @@ void do_info_usernet(Monitor *mon)
     }
 }
 
-static int net_init_slirp_configs(const char *name, const char *value, void *opaque)
+static void
+net_init_slirp_configs(const StringList *fwd, int flags)
 {
-    struct slirp_config_str *config;
-
-    if (strcmp(name, "hostfwd") != 0 && strcmp(name, "guestfwd") != 0) {
-        return 0;
-    }
-
-    config = g_malloc0(sizeof(*config));
+    while (fwd) {
+        struct slirp_config_str *config;
 
-    pstrcpy(config->str, sizeof(config->str), value);
+        config = g_malloc0(sizeof(*config));
+        pstrcpy(config->str, sizeof(config->str), fwd->value->str);
+        config->flags = flags;
+        config->next = slirp_configs;
+        slirp_configs = config;
 
-    if (!strcmp(name, "hostfwd")) {
-        config->flags = SLIRP_CFG_HOSTFWD;
+        fwd = fwd->next;
     }
-
-    config->next = slirp_configs;
-    slirp_configs = config;
-
-    return 0;
 }
 
-int net_init_slirp(QemuOpts *opts, const NetClientOptions *new_opts,
+int net_init_slirp(QemuOpts *old_opts, const NetClientOptions *opts,
                    const char *name, VLANState *vlan)
 {
     struct slirp_config_str *config;
-    const char *vhost;
-    const char *vhostname;
-    const char *vdhcp_start;
-    const char *vnamesrv;
-    const char *tftp_export;
-    const char *bootfile;
-    const char *smb_export;
-    const char *vsmbsrv;
-    const char *restrict_opt;
-    char *vnet = NULL;
-    int restricted = 0;
+    char *vnet;
     int ret;
+    const NetdevUserOptions *user;
 
-    vhost       = qemu_opt_get(opts, "host");
-    vhostname   = qemu_opt_get(opts, "hostname");
-    vdhcp_start = qemu_opt_get(opts, "dhcpstart");
-    vnamesrv    = qemu_opt_get(opts, "dns");
-    tftp_export = qemu_opt_get(opts, "tftp");
-    bootfile    = qemu_opt_get(opts, "bootfile");
-    smb_export  = qemu_opt_get(opts, "smb");
-    vsmbsrv     = qemu_opt_get(opts, "smbserver");
-
-    restrict_opt = qemu_opt_get(opts, "restrict");
-    if (restrict_opt) {
-        if (!strcmp(restrict_opt, "on") ||
-            !strcmp(restrict_opt, "yes") || !strcmp(restrict_opt, "y")) {
-            restricted = 1;
-        } else if (strcmp(restrict_opt, "off") &&
-            strcmp(restrict_opt, "no") && strcmp(restrict_opt, "n")) {
-            error_report("invalid option: 'restrict=%s'", restrict_opt);
-            return -1;
-        }
-    }
-
-    if (qemu_opt_get(opts, "ip")) {
-        const char *ip = qemu_opt_get(opts, "ip");
-        int l = strlen(ip) + strlen("/24") + 1;
+    assert(opts->kind == NET_CLIENT_OPTIONS_KIND_USER);
+    user = opts->user;
 
-        vnet = g_malloc(l);
+    vnet = user->has_net ? g_strdup(user->net) :
+           user->has_ip  ? g_strdup_printf("%s/24", user->ip) :
+           NULL;
 
-        /* emulate legacy ip= parameter */
-        pstrcpy(vnet, l, ip);
-        pstrcat(vnet, l, "/24");
-    }
-
-    if (qemu_opt_get(opts, "net")) {
-        if (vnet) {
-            g_free(vnet);
-        }
-        vnet = g_strdup(qemu_opt_get(opts, "net"));
-    }
+    /* all optional fields are initialized to "all bits zero" */
 
-    qemu_opt_foreach(opts, net_init_slirp_configs, NULL, 0);
+    net_init_slirp_configs(user->hostfwd, SLIRP_CFG_HOSTFWD);
+    net_init_slirp_configs(user->guestfwd, 0);
 
-    ret = net_slirp_init(vlan, "user", name, restricted, vnet, vhost,
-                         vhostname, tftp_export, bootfile, vdhcp_start,
-                         vnamesrv, smb_export, vsmbsrv);
+    ret = net_slirp_init(vlan, "user", name, user->restrict, vnet, user->host,
+                         user->hostname, user->tftp, user->bootfile,
+                         user->dhcpstart, user->dns, user->smb,
+                         user->smbserver);
 
     while (slirp_configs) {
         config = slirp_configs;
-- 
1.7.10.4

  parent reply	other threads:[~2012-07-23 11:51 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-07-23 11:50 [Qemu-devel] [PULL 00/19] Net patches Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 01/19] MAINTAINERS: Replace net maintainer Mark McLoughlin with Stefan Hajnoczi Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 02/19] qapi: fix error propagation Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 03/19] qapi: add test case for deallocating traversal of incomplete structure Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 04/19] qapi: generate C types for fixed-width integers Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 05/19] qapi: introduce "size" type Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 06/19] expose QemuOpt and QemuOpts struct definitions to interested parties Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 07/19] qapi: introduce OptsVisitor Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 08/19] qapi schema: remove trailing whitespace Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 09/19] qapi schema: add Netdev types Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 10/19] hw, net: "net_client_type" -> "NetClientOptionsKind" (qapi-generated) Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 11/19] convert net_client_init() to OptsVisitor Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 12/19] convert net_init_nic() to NetClientOptions Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 13/19] convert net_init_dump() " Stefan Hajnoczi
2012-07-23 11:50 ` Stefan Hajnoczi [this message]
2012-07-23 11:50 ` [Qemu-devel] [PATCH 15/19] convert net_init_socket() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 16/19] convert net_init_vde() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 17/19] convert net_init_tap() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 18/19] convert net_init_bridge() " Stefan Hajnoczi
2012-07-23 11:50 ` [Qemu-devel] [PATCH 19/19] remove unused QemuOpts parameter from net init functions Stefan Hajnoczi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1343044244-28728-15-git-send-email-stefanha@linux.vnet.ibm.com \
    --to=stefanha@linux.vnet.ibm.com \
    --cc=aliguori@us.ibm.com \
    --cc=lersek@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).