From: Amos Kong <akong@redhat.com>
To: stefanha@redhat.com
Cc: aliguori@us.ibm.com, qemu-devel@nongnu.org, mst@redhat.com
Subject: [Qemu-devel] [PATCH 1/2] avoid to allcate used macaddr to to new nic
Date: Mon, 17 Jun 2013 21:35:10 +0800 [thread overview]
Message-ID: <1371476111-4449-2-git-send-email-akong@redhat.com> (raw)
In-Reply-To: <1371476111-4449-1-git-send-email-akong@redhat.com>
QEMU allocates macaddr to nic if user doesn't assigne macaddr.
But we didn't check if the allocated macaddr is used, it might
cause macaddr repeated.
# qemu -device e1000,netdev=h1,mac=52:54:00:12:34:56
(qemu) device_add e1000
(qemu) info network
e1000.0: index=0,type=nic,model=e1000,macaddr=52:54:00:12:34:56
\ h1: index=0,type=user,net=10.0.2.0,restrict=off
e1000.1: index=0,type=nic,model=e1000,macaddr=52:54:00:12:34:56
This patch adds a check in allocating macaddr, reallocate macaddr
if it's used by other nic.
Signed-off-by: Amos Kong <akong@redhat.com>
---
net/net.c | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/net/net.c b/net/net.c
index 43a74e4..f019da4 100644
--- a/net/net.c
+++ b/net/net.c
@@ -143,15 +143,43 @@ void qemu_macaddr_default_if_unset(MACAddr *macaddr)
{
static int index = 0;
static const MACAddr zero = { .a = { 0,0,0,0,0,0 } };
+ char info_str[256];
+ NetClientState *nc, *peer;
+ NetClientOptionsKind type;
if (memcmp(macaddr, &zero, sizeof(zero)) != 0)
return;
+
+realloc_mac:
macaddr->a[0] = 0x52;
macaddr->a[1] = 0x54;
macaddr->a[2] = 0x00;
macaddr->a[3] = 0x12;
macaddr->a[4] = 0x34;
macaddr->a[5] = 0x56 + index++;
+
+ QTAILQ_FOREACH(nc, &net_clients, next) {
+ peer = nc->peer;
+ type = nc->info->type;
+
+ if (net_hub_id_for_client(nc, NULL) == 0) {
+ continue;
+ }
+
+ if (!peer || type == NET_CLIENT_OPTIONS_KIND_NIC) {
+ snprintf(info_str, sizeof(info_str),
+ "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x",
+ nc->model,
+ macaddr->a[0], macaddr->a[1], macaddr->a[2],
+ macaddr->a[3], macaddr->a[4], macaddr->a[5]);
+
+ /* reallocate macaddr if it's used by other nic */
+ if (!strcmp(nc->info_str, info_str)) {
+ goto realloc_mac;
+ }
+ }
+ }
+
}
/**
--
1.8.1.4
next prev parent reply other threads:[~2013-06-17 13:35 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-17 13:35 [Qemu-devel] [PATCH 0/2] fix macaddr allocation Amos Kong
2013-06-17 13:35 ` Amos Kong [this message]
2013-06-17 14:00 ` [Qemu-devel] [PATCH 1/2] avoid to allcate used macaddr to to new nic Michael S. Tsirkin
2013-06-18 2:05 ` Fam Zheng
2013-06-18 6:27 ` Michael S. Tsirkin
2013-06-17 13:35 ` [Qemu-devel] [PATCH 2/2] extend the macaddr space to 0xffffffff Amos Kong
2013-06-17 14:04 ` Michael S. Tsirkin
2013-06-18 1:51 ` Amos Kong
2013-06-18 6:19 ` Michael S. Tsirkin
2013-06-18 11:21 ` [Qemu-devel] [PATCH 0/2] fix macaddr allocation Stefan Hajnoczi
2013-06-18 12:39 ` Amos Kong
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=1371476111-4449-2-git-send-email-akong@redhat.com \
--to=akong@redhat.com \
--cc=aliguori@us.ibm.com \
--cc=mst@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/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).