aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 1 | /* |
| 2 | * QEMU System Emulator |
| 3 | * |
| 4 | * Copyright (c) 2003-2008 Fabrice Bellard |
| 5 | * |
| 6 | * Permission is hereby granted, free of charge, to any person obtaining a copy |
| 7 | * of this software and associated documentation files (the "Software"), to deal |
| 8 | * in the Software without restriction, including without limitation the rights |
| 9 | * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
| 10 | * copies of the Software, and to permit persons to whom the Software is |
| 11 | * furnished to do so, subject to the following conditions: |
| 12 | * |
| 13 | * The above copyright notice and this permission notice shall be included in |
| 14 | * all copies or substantial portions of the Software. |
| 15 | * |
| 16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL |
| 19 | * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
| 21 | * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
| 22 | * THE SOFTWARE. |
| 23 | */ |
blueswir1 | d40cdb1 | 2009-03-07 16:52:02 +0000 | [diff] [blame] | 24 | #include "config-host.h" |
| 25 | |
Paolo Bonzini | 1422e32 | 2012-10-24 08:43:34 +0200 | [diff] [blame] | 26 | #include "net/net.h" |
Paolo Bonzini | fd9400b | 2012-10-24 11:27:28 +0200 | [diff] [blame] | 27 | #include "clients.h" |
| 28 | #include "hub.h" |
Paolo Bonzini | 1422e32 | 2012-10-24 08:43:34 +0200 | [diff] [blame] | 29 | #include "net/slirp.h" |
Paolo Bonzini | fd9400b | 2012-10-24 11:27:28 +0200 | [diff] [blame] | 30 | #include "util.h" |
Paolo Bonzini | a245fc1 | 2012-09-17 18:43:51 +0200 | [diff] [blame] | 31 | |
Paolo Bonzini | 83c9089 | 2012-12-17 18:19:49 +0100 | [diff] [blame] | 32 | #include "monitor/monitor.h" |
Mark McLoughlin | 1df49e0 | 2009-11-25 18:48:58 +0000 | [diff] [blame] | 33 | #include "qemu-common.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 34 | #include "qemu/sockets.h" |
| 35 | #include "qemu/config-file.h" |
Luiz Capitulino | 4b37156 | 2011-11-23 13:11:55 -0200 | [diff] [blame] | 36 | #include "qmp-commands.h" |
Amit Shah | 75422b0 | 2010-02-25 17:24:43 +0530 | [diff] [blame] | 37 | #include "hw/qdev.h" |
Paolo Bonzini | 1de7afc | 2012-12-17 18:20:00 +0100 | [diff] [blame] | 38 | #include "qemu/iov.h" |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 39 | #include "qapi-visit.h" |
| 40 | #include "qapi/opts-visitor.h" |
Paolo Bonzini | 7b1b5d1 | 2012-12-17 18:19:43 +0100 | [diff] [blame] | 41 | #include "qapi/dealloc-visitor.h" |
blueswir1 | 511d2b1 | 2009-03-07 15:32:56 +0000 | [diff] [blame] | 42 | |
Stefan Weil | 2944e4e | 2012-02-04 09:24:46 +0100 | [diff] [blame] | 43 | /* Net bridge is currently not supported for W32. */ |
| 44 | #if !defined(_WIN32) |
| 45 | # define CONFIG_NET_BRIDGE |
| 46 | #endif |
| 47 | |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 48 | static QTAILQ_HEAD(, NetClientState) net_clients; |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 49 | |
Gerd Hoffmann | cb4522c | 2009-12-08 13:11:47 +0100 | [diff] [blame] | 50 | int default_net = 1; |
| 51 | |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 52 | /***********************************************************/ |
| 53 | /* network device redirectors */ |
| 54 | |
Mark McLoughlin | 68ac40d | 2009-11-25 18:48:54 +0000 | [diff] [blame] | 55 | #if defined(DEBUG_NET) |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 56 | static void hex_dump(FILE *f, const uint8_t *buf, int size) |
| 57 | { |
| 58 | int len, i, j, c; |
| 59 | |
| 60 | for(i=0;i<size;i+=16) { |
| 61 | len = size - i; |
| 62 | if (len > 16) |
| 63 | len = 16; |
| 64 | fprintf(f, "%08x ", i); |
| 65 | for(j=0;j<16;j++) { |
| 66 | if (j < len) |
| 67 | fprintf(f, " %02x", buf[i+j]); |
| 68 | else |
| 69 | fprintf(f, " "); |
| 70 | } |
| 71 | fprintf(f, " "); |
| 72 | for(j=0;j<len;j++) { |
| 73 | c = buf[i+j]; |
| 74 | if (c < ' ' || c > '~') |
| 75 | c = '.'; |
| 76 | fprintf(f, "%c", c); |
| 77 | } |
| 78 | fprintf(f, "\n"); |
| 79 | } |
| 80 | } |
| 81 | #endif |
| 82 | |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 83 | static int get_str_sep(char *buf, int buf_size, const char **pp, int sep) |
| 84 | { |
| 85 | const char *p, *p1; |
| 86 | int len; |
| 87 | p = *pp; |
| 88 | p1 = strchr(p, sep); |
| 89 | if (!p1) |
| 90 | return -1; |
| 91 | len = p1 - p; |
| 92 | p1++; |
| 93 | if (buf_size > 0) { |
| 94 | if (len > buf_size - 1) |
| 95 | len = buf_size - 1; |
| 96 | memcpy(buf, p, len); |
| 97 | buf[len] = '\0'; |
| 98 | } |
| 99 | *pp = p1; |
| 100 | return 0; |
| 101 | } |
| 102 | |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 103 | int parse_host_port(struct sockaddr_in *saddr, const char *str) |
| 104 | { |
| 105 | char buf[512]; |
| 106 | struct hostent *he; |
| 107 | const char *p, *r; |
| 108 | int port; |
| 109 | |
| 110 | p = str; |
| 111 | if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) |
| 112 | return -1; |
| 113 | saddr->sin_family = AF_INET; |
| 114 | if (buf[0] == '\0') { |
| 115 | saddr->sin_addr.s_addr = 0; |
| 116 | } else { |
blueswir1 | cd39008 | 2008-11-16 13:53:32 +0000 | [diff] [blame] | 117 | if (qemu_isdigit(buf[0])) { |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 118 | if (!inet_aton(buf, &saddr->sin_addr)) |
| 119 | return -1; |
| 120 | } else { |
| 121 | if ((he = gethostbyname(buf)) == NULL) |
| 122 | return - 1; |
| 123 | saddr->sin_addr = *(struct in_addr *)he->h_addr; |
| 124 | } |
| 125 | } |
| 126 | port = strtol(p, (char **)&r, 0); |
| 127 | if (r == p) |
| 128 | return -1; |
| 129 | saddr->sin_port = htons(port); |
| 130 | return 0; |
| 131 | } |
| 132 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 133 | void qemu_format_nic_info_str(NetClientState *nc, uint8_t macaddr[6]) |
aliguori | 7cb7434b | 2009-01-07 17:46:21 +0000 | [diff] [blame] | 134 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 135 | snprintf(nc->info_str, sizeof(nc->info_str), |
aliguori | 4dda406 | 2009-01-08 19:01:37 +0000 | [diff] [blame] | 136 | "model=%s,macaddr=%02x:%02x:%02x:%02x:%02x:%02x", |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 137 | nc->model, |
aliguori | 7cb7434b | 2009-01-07 17:46:21 +0000 | [diff] [blame] | 138 | macaddr[0], macaddr[1], macaddr[2], |
| 139 | macaddr[3], macaddr[4], macaddr[5]); |
| 140 | } |
| 141 | |
Gerd Hoffmann | 76d32cb | 2009-10-21 15:25:22 +0200 | [diff] [blame] | 142 | void qemu_macaddr_default_if_unset(MACAddr *macaddr) |
| 143 | { |
| 144 | static int index = 0; |
| 145 | static const MACAddr zero = { .a = { 0,0,0,0,0,0 } }; |
| 146 | |
| 147 | if (memcmp(macaddr, &zero, sizeof(zero)) != 0) |
| 148 | return; |
| 149 | macaddr->a[0] = 0x52; |
| 150 | macaddr->a[1] = 0x54; |
| 151 | macaddr->a[2] = 0x00; |
| 152 | macaddr->a[3] = 0x12; |
| 153 | macaddr->a[4] = 0x34; |
| 154 | macaddr->a[5] = 0x56 + index++; |
| 155 | } |
| 156 | |
Stefan Hajnoczi | d33d93b | 2012-07-24 16:35:05 +0100 | [diff] [blame] | 157 | /** |
| 158 | * Generate a name for net client |
| 159 | * |
| 160 | * Only net clients created with the legacy -net option need this. Naming is |
| 161 | * mandatory for net clients created with -netdev. |
| 162 | */ |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 163 | static char *assign_name(NetClientState *nc1, const char *model) |
aliguori | 676cff2 | 2009-01-07 17:43:44 +0000 | [diff] [blame] | 164 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 165 | NetClientState *nc; |
aliguori | 676cff2 | 2009-01-07 17:43:44 +0000 | [diff] [blame] | 166 | char buf[256]; |
| 167 | int id = 0; |
| 168 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 169 | QTAILQ_FOREACH(nc, &net_clients, next) { |
| 170 | if (nc == nc1) { |
Stefan Hajnoczi | d33d93b | 2012-07-24 16:35:05 +0100 | [diff] [blame] | 171 | continue; |
Mark McLoughlin | 5610c3a | 2009-10-08 19:58:23 +0100 | [diff] [blame] | 172 | } |
Stefan Hajnoczi | d33d93b | 2012-07-24 16:35:05 +0100 | [diff] [blame] | 173 | /* For compatibility only bump id for net clients on a vlan */ |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 174 | if (strcmp(nc->model, model) == 0 && |
| 175 | net_hub_id_for_client(nc, NULL) == 0) { |
Markus Armbruster | 53e51d8 | 2011-06-16 18:45:36 +0200 | [diff] [blame] | 176 | id++; |
| 177 | } |
| 178 | } |
| 179 | |
aliguori | 676cff2 | 2009-01-07 17:43:44 +0000 | [diff] [blame] | 180 | snprintf(buf, sizeof(buf), "%s.%d", model, id); |
| 181 | |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 182 | return g_strdup(buf); |
aliguori | 676cff2 | 2009-01-07 17:43:44 +0000 | [diff] [blame] | 183 | } |
| 184 | |
Jason Wang | f786045 | 2013-01-30 19:12:27 +0800 | [diff] [blame] | 185 | static void qemu_net_client_destructor(NetClientState *nc) |
| 186 | { |
| 187 | g_free(nc); |
| 188 | } |
| 189 | |
Jason Wang | 18a1541 | 2013-01-30 19:12:26 +0800 | [diff] [blame] | 190 | static void qemu_net_client_setup(NetClientState *nc, |
| 191 | NetClientInfo *info, |
| 192 | NetClientState *peer, |
| 193 | const char *model, |
Jason Wang | f786045 | 2013-01-30 19:12:27 +0800 | [diff] [blame] | 194 | const char *name, |
| 195 | NetClientDestructor *destructor) |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 196 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 197 | nc->info = info; |
| 198 | nc->model = g_strdup(model); |
Mark McLoughlin | 45460d1 | 2009-11-25 18:49:02 +0000 | [diff] [blame] | 199 | if (name) { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 200 | nc->name = g_strdup(name); |
Mark McLoughlin | 45460d1 | 2009-11-25 18:49:02 +0000 | [diff] [blame] | 201 | } else { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 202 | nc->name = assign_name(nc, model); |
Mark McLoughlin | 45460d1 | 2009-11-25 18:49:02 +0000 | [diff] [blame] | 203 | } |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 204 | |
Stefan Hajnoczi | ab5f3f8 | 2012-07-24 16:35:08 +0100 | [diff] [blame] | 205 | if (peer) { |
| 206 | assert(!peer->peer); |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 207 | nc->peer = peer; |
| 208 | peer->peer = nc; |
Mark McLoughlin | d80b9fc | 2009-10-08 19:58:24 +0100 | [diff] [blame] | 209 | } |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 210 | QTAILQ_INSERT_TAIL(&net_clients, nc, next); |
Mark McLoughlin | 5610c3a | 2009-10-08 19:58:23 +0100 | [diff] [blame] | 211 | |
Zhi Yong Wu | 86a77c3 | 2012-07-24 16:35:17 +0100 | [diff] [blame] | 212 | nc->send_queue = qemu_new_net_queue(nc); |
Jason Wang | f786045 | 2013-01-30 19:12:27 +0800 | [diff] [blame] | 213 | nc->destructor = destructor; |
Jason Wang | 18a1541 | 2013-01-30 19:12:26 +0800 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | NetClientState *qemu_new_net_client(NetClientInfo *info, |
| 217 | NetClientState *peer, |
| 218 | const char *model, |
| 219 | const char *name) |
| 220 | { |
| 221 | NetClientState *nc; |
| 222 | |
| 223 | assert(info->size >= sizeof(NetClientState)); |
| 224 | |
| 225 | nc = g_malloc0(info->size); |
Jason Wang | f786045 | 2013-01-30 19:12:27 +0800 | [diff] [blame] | 226 | qemu_net_client_setup(nc, info, peer, model, name, |
| 227 | qemu_net_client_destructor); |
Jason Wang | 18a1541 | 2013-01-30 19:12:26 +0800 | [diff] [blame] | 228 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 229 | return nc; |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 230 | } |
| 231 | |
Mark McLoughlin | ebef2c0 | 2009-11-25 18:49:10 +0000 | [diff] [blame] | 232 | NICState *qemu_new_nic(NetClientInfo *info, |
| 233 | NICConf *conf, |
| 234 | const char *model, |
| 235 | const char *name, |
| 236 | void *opaque) |
| 237 | { |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 238 | NetClientState *nc; |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 239 | NetClientState **peers = conf->peers.ncs; |
Mark McLoughlin | ebef2c0 | 2009-11-25 18:49:10 +0000 | [diff] [blame] | 240 | NICState *nic; |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 241 | int i; |
Mark McLoughlin | ebef2c0 | 2009-11-25 18:49:10 +0000 | [diff] [blame] | 242 | |
Laszlo Ersek | 2be64a6 | 2012-07-17 16:17:12 +0200 | [diff] [blame] | 243 | assert(info->type == NET_CLIENT_OPTIONS_KIND_NIC); |
Mark McLoughlin | ebef2c0 | 2009-11-25 18:49:10 +0000 | [diff] [blame] | 244 | assert(info->size >= sizeof(NICState)); |
| 245 | |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 246 | nc = qemu_new_net_client(info, peers[0], model, name); |
| 247 | nc->queue_index = 0; |
Mark McLoughlin | ebef2c0 | 2009-11-25 18:49:10 +0000 | [diff] [blame] | 248 | |
Jason Wang | cc1f0f4 | 2013-01-30 19:12:23 +0800 | [diff] [blame] | 249 | nic = qemu_get_nic(nc); |
Mark McLoughlin | ebef2c0 | 2009-11-25 18:49:10 +0000 | [diff] [blame] | 250 | nic->conf = conf; |
| 251 | nic->opaque = opaque; |
| 252 | |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 253 | for (i = 1; i < conf->queues; i++) { |
| 254 | qemu_net_client_setup(&nic->ncs[i], info, peers[i], model, nc->name, |
| 255 | NULL); |
| 256 | nic->ncs[i].queue_index = i; |
| 257 | } |
| 258 | |
Mark McLoughlin | ebef2c0 | 2009-11-25 18:49:10 +0000 | [diff] [blame] | 259 | return nic; |
| 260 | } |
| 261 | |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 262 | NetClientState *qemu_get_subqueue(NICState *nic, int queue_index) |
| 263 | { |
| 264 | return &nic->ncs[queue_index]; |
| 265 | } |
| 266 | |
Jason Wang | b356f76 | 2013-01-30 19:12:22 +0800 | [diff] [blame] | 267 | NetClientState *qemu_get_queue(NICState *nic) |
| 268 | { |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 269 | return qemu_get_subqueue(nic, 0); |
Jason Wang | b356f76 | 2013-01-30 19:12:22 +0800 | [diff] [blame] | 270 | } |
| 271 | |
Jason Wang | cc1f0f4 | 2013-01-30 19:12:23 +0800 | [diff] [blame] | 272 | NICState *qemu_get_nic(NetClientState *nc) |
| 273 | { |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 274 | NetClientState *nc0 = nc - nc->queue_index; |
| 275 | |
| 276 | return DO_UPCAST(NICState, ncs[0], nc0); |
Jason Wang | cc1f0f4 | 2013-01-30 19:12:23 +0800 | [diff] [blame] | 277 | } |
| 278 | |
| 279 | void *qemu_get_nic_opaque(NetClientState *nc) |
| 280 | { |
| 281 | NICState *nic = qemu_get_nic(nc); |
| 282 | |
| 283 | return nic->opaque; |
| 284 | } |
| 285 | |
Stefan Hajnoczi | b20c6b9 | 2012-07-24 16:35:15 +0100 | [diff] [blame] | 286 | static void qemu_cleanup_net_client(NetClientState *nc) |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 287 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 288 | QTAILQ_REMOVE(&net_clients, nc, next); |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 289 | |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 290 | nc->info->cleanup(nc); |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 291 | } |
Mark McLoughlin | 5610c3a | 2009-10-08 19:58:23 +0100 | [diff] [blame] | 292 | |
Stefan Hajnoczi | b20c6b9 | 2012-07-24 16:35:15 +0100 | [diff] [blame] | 293 | static void qemu_free_net_client(NetClientState *nc) |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 294 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 295 | if (nc->send_queue) { |
| 296 | qemu_del_net_queue(nc->send_queue); |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 297 | } |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 298 | if (nc->peer) { |
| 299 | nc->peer->peer = NULL; |
Mark McLoughlin | 5610c3a | 2009-10-08 19:58:23 +0100 | [diff] [blame] | 300 | } |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 301 | g_free(nc->name); |
| 302 | g_free(nc->model); |
Jason Wang | f786045 | 2013-01-30 19:12:27 +0800 | [diff] [blame] | 303 | if (nc->destructor) { |
| 304 | nc->destructor(nc); |
| 305 | } |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 306 | } |
| 307 | |
Stefan Hajnoczi | b20c6b9 | 2012-07-24 16:35:15 +0100 | [diff] [blame] | 308 | void qemu_del_net_client(NetClientState *nc) |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 309 | { |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 310 | NetClientState *ncs[MAX_QUEUE_NUM]; |
| 311 | int queues, i; |
| 312 | |
| 313 | /* If the NetClientState belongs to a multiqueue backend, we will change all |
| 314 | * other NetClientStates also. |
| 315 | */ |
| 316 | queues = qemu_find_net_clients_except(nc->name, ncs, |
| 317 | NET_CLIENT_OPTIONS_KIND_NIC, |
| 318 | MAX_QUEUE_NUM); |
| 319 | assert(queues != 0); |
| 320 | |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 321 | /* If there is a peer NIC, delete and cleanup client, but do not free. */ |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 322 | if (nc->peer && nc->peer->info->type == NET_CLIENT_OPTIONS_KIND_NIC) { |
Jason Wang | cc1f0f4 | 2013-01-30 19:12:23 +0800 | [diff] [blame] | 323 | NICState *nic = qemu_get_nic(nc->peer); |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 324 | if (nic->peer_deleted) { |
| 325 | return; |
| 326 | } |
| 327 | nic->peer_deleted = true; |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 328 | |
| 329 | for (i = 0; i < queues; i++) { |
| 330 | ncs[i]->peer->link_down = true; |
| 331 | } |
| 332 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 333 | if (nc->peer->info->link_status_changed) { |
| 334 | nc->peer->info->link_status_changed(nc->peer); |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 335 | } |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 336 | |
| 337 | for (i = 0; i < queues; i++) { |
| 338 | qemu_cleanup_net_client(ncs[i]); |
| 339 | } |
| 340 | |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 341 | return; |
| 342 | } |
| 343 | |
Jason Wang | 948ecf2 | 2013-01-30 19:12:24 +0800 | [diff] [blame] | 344 | assert(nc->info->type != NET_CLIENT_OPTIONS_KIND_NIC); |
| 345 | |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 346 | for (i = 0; i < queues; i++) { |
| 347 | qemu_cleanup_net_client(ncs[i]); |
| 348 | qemu_free_net_client(ncs[i]); |
| 349 | } |
Jason Wang | 948ecf2 | 2013-01-30 19:12:24 +0800 | [diff] [blame] | 350 | } |
| 351 | |
| 352 | void qemu_del_nic(NICState *nic) |
| 353 | { |
Michael Roth | b890492 | 2013-02-06 18:25:48 -0600 | [diff] [blame^] | 354 | int i, queues = MAX(nic->conf->queues, 1); |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 355 | |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 356 | /* If this is a peer NIC and peer has already been deleted, free it now. */ |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 357 | if (nic->peer_deleted) { |
| 358 | for (i = 0; i < queues; i++) { |
| 359 | qemu_free_net_client(qemu_get_subqueue(nic, i)->peer); |
Michael S. Tsirkin | a083a89 | 2010-09-20 18:08:41 +0200 | [diff] [blame] | 360 | } |
| 361 | } |
| 362 | |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 363 | for (i = queues - 1; i >= 0; i--) { |
| 364 | NetClientState *nc = qemu_get_subqueue(nic, i); |
| 365 | |
| 366 | qemu_cleanup_net_client(nc); |
| 367 | qemu_free_net_client(nc); |
| 368 | } |
Jan Kiszka | 1a60952 | 2009-06-24 14:42:31 +0200 | [diff] [blame] | 369 | } |
| 370 | |
Mark McLoughlin | 57f9ef1 | 2009-11-25 18:49:31 +0000 | [diff] [blame] | 371 | void qemu_foreach_nic(qemu_nic_foreach func, void *opaque) |
| 372 | { |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 373 | NetClientState *nc; |
Mark McLoughlin | 57f9ef1 | 2009-11-25 18:49:31 +0000 | [diff] [blame] | 374 | |
Stefan Hajnoczi | 9487899 | 2012-07-24 16:35:12 +0100 | [diff] [blame] | 375 | QTAILQ_FOREACH(nc, &net_clients, next) { |
Laszlo Ersek | 2be64a6 | 2012-07-17 16:17:12 +0200 | [diff] [blame] | 376 | if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) { |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 377 | if (nc->queue_index == 0) { |
| 378 | func(qemu_get_nic(nc), opaque); |
| 379 | } |
Mark McLoughlin | 57f9ef1 | 2009-11-25 18:49:31 +0000 | [diff] [blame] | 380 | } |
| 381 | } |
Mark McLoughlin | 57f9ef1 | 2009-11-25 18:49:31 +0000 | [diff] [blame] | 382 | } |
| 383 | |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 384 | int qemu_can_send_packet(NetClientState *sender) |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 385 | { |
Stefan Hajnoczi | a005d07 | 2012-07-24 16:35:11 +0100 | [diff] [blame] | 386 | if (!sender->peer) { |
Mark McLoughlin | d80b9fc | 2009-10-08 19:58:24 +0100 | [diff] [blame] | 387 | return 1; |
| 388 | } |
| 389 | |
Stefan Hajnoczi | a005d07 | 2012-07-24 16:35:11 +0100 | [diff] [blame] | 390 | if (sender->peer->receive_disabled) { |
| 391 | return 0; |
| 392 | } else if (sender->peer->info->can_receive && |
| 393 | !sender->peer->info->can_receive(sender->peer)) { |
| 394 | return 0; |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 395 | } |
Vincent Palatin | 60c07d9 | 2011-03-02 17:25:02 -0500 | [diff] [blame] | 396 | return 1; |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 397 | } |
| 398 | |
Zhi Yong Wu | 86a77c3 | 2012-07-24 16:35:17 +0100 | [diff] [blame] | 399 | ssize_t qemu_deliver_packet(NetClientState *sender, |
| 400 | unsigned flags, |
| 401 | const uint8_t *data, |
| 402 | size_t size, |
| 403 | void *opaque) |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 404 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 405 | NetClientState *nc = opaque; |
Mark McLoughlin | 893379e | 2009-10-27 18:16:36 +0000 | [diff] [blame] | 406 | ssize_t ret; |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 407 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 408 | if (nc->link_down) { |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 409 | return size; |
| 410 | } |
| 411 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 412 | if (nc->receive_disabled) { |
Mark McLoughlin | 893379e | 2009-10-27 18:16:36 +0000 | [diff] [blame] | 413 | return 0; |
| 414 | } |
| 415 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 416 | if (flags & QEMU_NET_PACKET_FLAG_RAW && nc->info->receive_raw) { |
| 417 | ret = nc->info->receive_raw(nc, data, size); |
Mark McLoughlin | 893379e | 2009-10-27 18:16:36 +0000 | [diff] [blame] | 418 | } else { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 419 | ret = nc->info->receive(nc, data, size); |
Mark McLoughlin | 893379e | 2009-10-27 18:16:36 +0000 | [diff] [blame] | 420 | } |
| 421 | |
| 422 | if (ret == 0) { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 423 | nc->receive_disabled = 1; |
Mark McLoughlin | 893379e | 2009-10-27 18:16:36 +0000 | [diff] [blame] | 424 | }; |
| 425 | |
| 426 | return ret; |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 427 | } |
| 428 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 429 | void qemu_purge_queued_packets(NetClientState *nc) |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 430 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 431 | if (!nc->peer) { |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 432 | return; |
| 433 | } |
| 434 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 435 | qemu_net_queue_purge(nc->peer->send_queue, nc); |
Mark McLoughlin | 8cad551 | 2009-06-18 18:21:29 +0100 | [diff] [blame] | 436 | } |
| 437 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 438 | void qemu_flush_queued_packets(NetClientState *nc) |
Mark McLoughlin | e94667b | 2009-04-29 11:48:12 +0100 | [diff] [blame] | 439 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 440 | nc->receive_disabled = 0; |
Mark McLoughlin | d80b9fc | 2009-10-08 19:58:24 +0100 | [diff] [blame] | 441 | |
Paolo Bonzini | 987a9b4 | 2012-08-09 16:45:55 +0200 | [diff] [blame] | 442 | if (qemu_net_queue_flush(nc->send_queue)) { |
| 443 | /* We emptied the queue successfully, signal to the IO thread to repoll |
| 444 | * the file descriptor (for tap, for example). |
| 445 | */ |
| 446 | qemu_notify_event(); |
| 447 | } |
Mark McLoughlin | e94667b | 2009-04-29 11:48:12 +0100 | [diff] [blame] | 448 | } |
| 449 | |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 450 | static ssize_t qemu_send_packet_async_with_flags(NetClientState *sender, |
Mark McLoughlin | ca77d17 | 2009-10-22 17:43:41 +0100 | [diff] [blame] | 451 | unsigned flags, |
| 452 | const uint8_t *buf, int size, |
| 453 | NetPacketSent *sent_cb) |
aliguori | 764a4d1 | 2009-04-21 19:56:41 +0000 | [diff] [blame] | 454 | { |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 455 | NetQueue *queue; |
Mark McLoughlin | e94667b | 2009-04-29 11:48:12 +0100 | [diff] [blame] | 456 | |
Mark McLoughlin | f3b6c7f | 2009-04-29 12:15:26 +0100 | [diff] [blame] | 457 | #ifdef DEBUG_NET |
Mark McLoughlin | d80b9fc | 2009-10-08 19:58:24 +0100 | [diff] [blame] | 458 | printf("qemu_send_packet_async:\n"); |
Mark McLoughlin | f3b6c7f | 2009-04-29 12:15:26 +0100 | [diff] [blame] | 459 | hex_dump(stdout, buf, size); |
| 460 | #endif |
| 461 | |
Stefan Hajnoczi | a005d07 | 2012-07-24 16:35:11 +0100 | [diff] [blame] | 462 | if (sender->link_down || !sender->peer) { |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 463 | return size; |
| 464 | } |
| 465 | |
Stefan Hajnoczi | a005d07 | 2012-07-24 16:35:11 +0100 | [diff] [blame] | 466 | queue = sender->peer->send_queue; |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 467 | |
Mark McLoughlin | ca77d17 | 2009-10-22 17:43:41 +0100 | [diff] [blame] | 468 | return qemu_net_queue_send(queue, sender, flags, buf, size, sent_cb); |
| 469 | } |
| 470 | |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 471 | ssize_t qemu_send_packet_async(NetClientState *sender, |
Mark McLoughlin | ca77d17 | 2009-10-22 17:43:41 +0100 | [diff] [blame] | 472 | const uint8_t *buf, int size, |
| 473 | NetPacketSent *sent_cb) |
| 474 | { |
| 475 | return qemu_send_packet_async_with_flags(sender, QEMU_NET_PACKET_FLAG_NONE, |
| 476 | buf, size, sent_cb); |
Mark McLoughlin | f3b6c7f | 2009-04-29 12:15:26 +0100 | [diff] [blame] | 477 | } |
| 478 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 479 | void qemu_send_packet(NetClientState *nc, const uint8_t *buf, int size) |
Mark McLoughlin | f3b6c7f | 2009-04-29 12:15:26 +0100 | [diff] [blame] | 480 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 481 | qemu_send_packet_async(nc, buf, size, NULL); |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 482 | } |
| 483 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 484 | ssize_t qemu_send_packet_raw(NetClientState *nc, const uint8_t *buf, int size) |
Mark McLoughlin | ca77d17 | 2009-10-22 17:43:41 +0100 | [diff] [blame] | 485 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 486 | return qemu_send_packet_async_with_flags(nc, QEMU_NET_PACKET_FLAG_RAW, |
Mark McLoughlin | ca77d17 | 2009-10-22 17:43:41 +0100 | [diff] [blame] | 487 | buf, size, NULL); |
| 488 | } |
| 489 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 490 | static ssize_t nc_sendv_compat(NetClientState *nc, const struct iovec *iov, |
aliguori | fbe78f4 | 2008-12-17 19:13:11 +0000 | [diff] [blame] | 491 | int iovcnt) |
| 492 | { |
| 493 | uint8_t buffer[4096]; |
Benjamin Poirier | ce05366 | 2011-02-23 19:57:21 -0500 | [diff] [blame] | 494 | size_t offset; |
aliguori | fbe78f4 | 2008-12-17 19:13:11 +0000 | [diff] [blame] | 495 | |
Michael Tokarev | dcf6f5e | 2012-03-11 18:05:12 +0400 | [diff] [blame] | 496 | offset = iov_to_buf(iov, iovcnt, 0, buffer, sizeof(buffer)); |
aliguori | fbe78f4 | 2008-12-17 19:13:11 +0000 | [diff] [blame] | 497 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 498 | return nc->info->receive(nc, buffer, offset); |
aliguori | fbe78f4 | 2008-12-17 19:13:11 +0000 | [diff] [blame] | 499 | } |
| 500 | |
Zhi Yong Wu | 86a77c3 | 2012-07-24 16:35:17 +0100 | [diff] [blame] | 501 | ssize_t qemu_deliver_packet_iov(NetClientState *sender, |
| 502 | unsigned flags, |
| 503 | const struct iovec *iov, |
| 504 | int iovcnt, |
| 505 | void *opaque) |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 506 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 507 | NetClientState *nc = opaque; |
Stefan Hajnoczi | c67f5dc | 2012-08-17 21:16:42 +0100 | [diff] [blame] | 508 | int ret; |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 509 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 510 | if (nc->link_down) { |
Benjamin Poirier | ce05366 | 2011-02-23 19:57:21 -0500 | [diff] [blame] | 511 | return iov_size(iov, iovcnt); |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 512 | } |
| 513 | |
Stefan Hajnoczi | c67f5dc | 2012-08-17 21:16:42 +0100 | [diff] [blame] | 514 | if (nc->receive_disabled) { |
| 515 | return 0; |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 516 | } |
Stefan Hajnoczi | c67f5dc | 2012-08-17 21:16:42 +0100 | [diff] [blame] | 517 | |
| 518 | if (nc->info->receive_iov) { |
| 519 | ret = nc->info->receive_iov(nc, iov, iovcnt); |
| 520 | } else { |
| 521 | ret = nc_sendv_compat(nc, iov, iovcnt); |
| 522 | } |
| 523 | |
| 524 | if (ret == 0) { |
| 525 | nc->receive_disabled = 1; |
| 526 | } |
| 527 | |
| 528 | return ret; |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 529 | } |
| 530 | |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 531 | ssize_t qemu_sendv_packet_async(NetClientState *sender, |
Mark McLoughlin | f3b6c7f | 2009-04-29 12:15:26 +0100 | [diff] [blame] | 532 | const struct iovec *iov, int iovcnt, |
| 533 | NetPacketSent *sent_cb) |
aliguori | fbe78f4 | 2008-12-17 19:13:11 +0000 | [diff] [blame] | 534 | { |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 535 | NetQueue *queue; |
| 536 | |
Stefan Hajnoczi | a005d07 | 2012-07-24 16:35:11 +0100 | [diff] [blame] | 537 | if (sender->link_down || !sender->peer) { |
Benjamin Poirier | ce05366 | 2011-02-23 19:57:21 -0500 | [diff] [blame] | 538 | return iov_size(iov, iovcnt); |
aliguori | fbe78f4 | 2008-12-17 19:13:11 +0000 | [diff] [blame] | 539 | } |
| 540 | |
Stefan Hajnoczi | a005d07 | 2012-07-24 16:35:11 +0100 | [diff] [blame] | 541 | queue = sender->peer->send_queue; |
Mark McLoughlin | 9a6ecb3 | 2009-10-08 19:58:32 +0100 | [diff] [blame] | 542 | |
Mark McLoughlin | c0b8e49 | 2009-10-22 17:43:40 +0100 | [diff] [blame] | 543 | return qemu_net_queue_send_iov(queue, sender, |
| 544 | QEMU_NET_PACKET_FLAG_NONE, |
| 545 | iov, iovcnt, sent_cb); |
aliguori | fbe78f4 | 2008-12-17 19:13:11 +0000 | [diff] [blame] | 546 | } |
| 547 | |
Mark McLoughlin | f3b6c7f | 2009-04-29 12:15:26 +0100 | [diff] [blame] | 548 | ssize_t |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 549 | qemu_sendv_packet(NetClientState *nc, const struct iovec *iov, int iovcnt) |
Mark McLoughlin | f3b6c7f | 2009-04-29 12:15:26 +0100 | [diff] [blame] | 550 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 551 | return qemu_sendv_packet_async(nc, iov, iovcnt, NULL); |
Mark McLoughlin | f3b6c7f | 2009-04-29 12:15:26 +0100 | [diff] [blame] | 552 | } |
| 553 | |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 554 | NetClientState *qemu_find_netdev(const char *id) |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 555 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 556 | NetClientState *nc; |
Mark McLoughlin | 5610c3a | 2009-10-08 19:58:23 +0100 | [diff] [blame] | 557 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 558 | QTAILQ_FOREACH(nc, &net_clients, next) { |
| 559 | if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) |
Markus Armbruster | 85dde9a | 2011-06-16 18:45:37 +0200 | [diff] [blame] | 560 | continue; |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 561 | if (!strcmp(nc->name, id)) { |
| 562 | return nc; |
Mark McLoughlin | 5869c4d | 2009-10-08 19:58:29 +0100 | [diff] [blame] | 563 | } |
| 564 | } |
| 565 | |
| 566 | return NULL; |
| 567 | } |
| 568 | |
Jason Wang | 6c51ae7 | 2013-01-30 19:12:25 +0800 | [diff] [blame] | 569 | int qemu_find_net_clients_except(const char *id, NetClientState **ncs, |
| 570 | NetClientOptionsKind type, int max) |
| 571 | { |
| 572 | NetClientState *nc; |
| 573 | int ret = 0; |
| 574 | |
| 575 | QTAILQ_FOREACH(nc, &net_clients, next) { |
| 576 | if (nc->info->type == type) { |
| 577 | continue; |
| 578 | } |
| 579 | if (!strcmp(nc->name, id)) { |
| 580 | if (ret < max) { |
| 581 | ncs[ret] = nc; |
| 582 | } |
| 583 | ret++; |
| 584 | } |
| 585 | } |
| 586 | |
| 587 | return ret; |
| 588 | } |
| 589 | |
aliguori | 7697079 | 2009-02-11 15:20:03 +0000 | [diff] [blame] | 590 | static int nic_get_free_idx(void) |
| 591 | { |
| 592 | int index; |
| 593 | |
| 594 | for (index = 0; index < MAX_NICS; index++) |
| 595 | if (!nd_table[index].used) |
| 596 | return index; |
| 597 | return -1; |
| 598 | } |
| 599 | |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 600 | int qemu_show_nic_models(const char *arg, const char *const *models) |
| 601 | { |
| 602 | int i; |
| 603 | |
Peter Maydell | c8057f9 | 2012-08-02 13:45:54 +0100 | [diff] [blame] | 604 | if (!arg || !is_help_option(arg)) { |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 605 | return 0; |
Peter Maydell | c8057f9 | 2012-08-02 13:45:54 +0100 | [diff] [blame] | 606 | } |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 607 | |
| 608 | fprintf(stderr, "qemu: Supported NIC models: "); |
| 609 | for (i = 0 ; models[i]; i++) |
| 610 | fprintf(stderr, "%s%c", models[i], models[i+1] ? ',' : '\n'); |
| 611 | return 1; |
| 612 | } |
| 613 | |
aliguori | d07f22c | 2009-01-13 19:03:57 +0000 | [diff] [blame] | 614 | void qemu_check_nic_model(NICInfo *nd, const char *model) |
| 615 | { |
| 616 | const char *models[2]; |
| 617 | |
| 618 | models[0] = model; |
| 619 | models[1] = NULL; |
| 620 | |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 621 | if (qemu_show_nic_models(nd->model, models)) |
| 622 | exit(0); |
| 623 | if (qemu_find_nic_model(nd, models, model) < 0) |
| 624 | exit(1); |
aliguori | d07f22c | 2009-01-13 19:03:57 +0000 | [diff] [blame] | 625 | } |
| 626 | |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 627 | int qemu_find_nic_model(NICInfo *nd, const char * const *models, |
| 628 | const char *default_model) |
aliguori | d07f22c | 2009-01-13 19:03:57 +0000 | [diff] [blame] | 629 | { |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 630 | int i; |
aliguori | d07f22c | 2009-01-13 19:03:57 +0000 | [diff] [blame] | 631 | |
| 632 | if (!nd->model) |
Anthony Liguori | 7267c09 | 2011-08-20 22:09:37 -0500 | [diff] [blame] | 633 | nd->model = g_strdup(default_model); |
aliguori | d07f22c | 2009-01-13 19:03:57 +0000 | [diff] [blame] | 634 | |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 635 | for (i = 0 ; models[i]; i++) { |
| 636 | if (strcmp(nd->model, models[i]) == 0) |
| 637 | return i; |
aliguori | d07f22c | 2009-01-13 19:03:57 +0000 | [diff] [blame] | 638 | } |
| 639 | |
Markus Armbruster | 6daf194 | 2011-06-22 14:03:54 +0200 | [diff] [blame] | 640 | error_report("Unsupported NIC model: %s", nd->model); |
Markus Armbruster | 07caea3 | 2009-09-25 03:53:51 +0200 | [diff] [blame] | 641 | return -1; |
aliguori | d07f22c | 2009-01-13 19:03:57 +0000 | [diff] [blame] | 642 | } |
| 643 | |
Laszlo Ersek | 1a0c095 | 2012-07-17 16:17:21 +0200 | [diff] [blame] | 644 | static int net_init_nic(const NetClientOptions *opts, const char *name, |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 645 | NetClientState *peer) |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 646 | { |
| 647 | int idx; |
| 648 | NICInfo *nd; |
Laszlo Ersek | 2456f36 | 2012-07-17 16:17:14 +0200 | [diff] [blame] | 649 | const NetLegacyNicOptions *nic; |
| 650 | |
| 651 | assert(opts->kind == NET_CLIENT_OPTIONS_KIND_NIC); |
| 652 | nic = opts->nic; |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 653 | |
| 654 | idx = nic_get_free_idx(); |
| 655 | if (idx == -1 || nb_nics >= MAX_NICS) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 656 | error_report("Too Many NICs"); |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 657 | return -1; |
| 658 | } |
| 659 | |
| 660 | nd = &nd_table[idx]; |
| 661 | |
| 662 | memset(nd, 0, sizeof(*nd)); |
| 663 | |
Laszlo Ersek | 2456f36 | 2012-07-17 16:17:14 +0200 | [diff] [blame] | 664 | if (nic->has_netdev) { |
| 665 | nd->netdev = qemu_find_netdev(nic->netdev); |
Mark McLoughlin | 5869c4d | 2009-10-08 19:58:29 +0100 | [diff] [blame] | 666 | if (!nd->netdev) { |
Laszlo Ersek | 2456f36 | 2012-07-17 16:17:14 +0200 | [diff] [blame] | 667 | error_report("netdev '%s' not found", nic->netdev); |
Mark McLoughlin | 5869c4d | 2009-10-08 19:58:29 +0100 | [diff] [blame] | 668 | return -1; |
| 669 | } |
| 670 | } else { |
Stefan Hajnoczi | d33d93b | 2012-07-24 16:35:05 +0100 | [diff] [blame] | 671 | assert(peer); |
| 672 | nd->netdev = peer; |
Mark McLoughlin | 5869c4d | 2009-10-08 19:58:29 +0100 | [diff] [blame] | 673 | } |
Markus Armbruster | c64f50d | 2013-01-22 11:07:57 +0100 | [diff] [blame] | 674 | nd->name = g_strdup(name); |
Laszlo Ersek | 2456f36 | 2012-07-17 16:17:14 +0200 | [diff] [blame] | 675 | if (nic->has_model) { |
| 676 | nd->model = g_strdup(nic->model); |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 677 | } |
Laszlo Ersek | 2456f36 | 2012-07-17 16:17:14 +0200 | [diff] [blame] | 678 | if (nic->has_addr) { |
| 679 | nd->devaddr = g_strdup(nic->addr); |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 680 | } |
| 681 | |
Laszlo Ersek | 2456f36 | 2012-07-17 16:17:14 +0200 | [diff] [blame] | 682 | if (nic->has_macaddr && |
| 683 | net_parse_macaddr(nd->macaddr.a, nic->macaddr) < 0) { |
Markus Armbruster | 1ecda02 | 2010-02-18 17:25:24 +0100 | [diff] [blame] | 684 | error_report("invalid syntax for ethernet address"); |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 685 | return -1; |
| 686 | } |
Jan Kiszka | 6eed185 | 2011-07-20 12:20:22 +0200 | [diff] [blame] | 687 | qemu_macaddr_default_if_unset(&nd->macaddr); |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 688 | |
Laszlo Ersek | 2456f36 | 2012-07-17 16:17:14 +0200 | [diff] [blame] | 689 | if (nic->has_vectors) { |
| 690 | if (nic->vectors > 0x7ffffff) { |
| 691 | error_report("invalid # of vectors: %"PRIu32, nic->vectors); |
| 692 | return -1; |
| 693 | } |
| 694 | nd->nvectors = nic->vectors; |
| 695 | } else { |
| 696 | nd->nvectors = DEV_NVECTORS_UNSPECIFIED; |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 697 | } |
| 698 | |
| 699 | nd->used = 1; |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 700 | nb_nics++; |
| 701 | |
| 702 | return idx; |
| 703 | } |
| 704 | |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 705 | |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 706 | static int (* const net_client_init_fun[NET_CLIENT_OPTIONS_KIND_MAX])( |
Laszlo Ersek | 1a0c095 | 2012-07-17 16:17:21 +0200 | [diff] [blame] | 707 | const NetClientOptions *opts, |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 708 | const char *name, |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 709 | NetClientState *peer) = { |
Stefan Hajnoczi | f6c874e | 2012-07-24 16:35:04 +0100 | [diff] [blame] | 710 | [NET_CLIENT_OPTIONS_KIND_NIC] = net_init_nic, |
Mark McLoughlin | ec302ff | 2009-10-06 12:17:07 +0100 | [diff] [blame] | 711 | #ifdef CONFIG_SLIRP |
Stefan Hajnoczi | f6c874e | 2012-07-24 16:35:04 +0100 | [diff] [blame] | 712 | [NET_CLIENT_OPTIONS_KIND_USER] = net_init_slirp, |
Mark McLoughlin | ec302ff | 2009-10-06 12:17:07 +0100 | [diff] [blame] | 713 | #endif |
Stefan Hajnoczi | f6c874e | 2012-07-24 16:35:04 +0100 | [diff] [blame] | 714 | [NET_CLIENT_OPTIONS_KIND_TAP] = net_init_tap, |
| 715 | [NET_CLIENT_OPTIONS_KIND_SOCKET] = net_init_socket, |
Mark McLoughlin | dd51058 | 2009-10-06 12:17:10 +0100 | [diff] [blame] | 716 | #ifdef CONFIG_VDE |
Stefan Hajnoczi | f6c874e | 2012-07-24 16:35:04 +0100 | [diff] [blame] | 717 | [NET_CLIENT_OPTIONS_KIND_VDE] = net_init_vde, |
Mark McLoughlin | dd51058 | 2009-10-06 12:17:10 +0100 | [diff] [blame] | 718 | #endif |
Stefan Hajnoczi | f6c874e | 2012-07-24 16:35:04 +0100 | [diff] [blame] | 719 | [NET_CLIENT_OPTIONS_KIND_DUMP] = net_init_dump, |
Stefan Weil | 2944e4e | 2012-02-04 09:24:46 +0100 | [diff] [blame] | 720 | #ifdef CONFIG_NET_BRIDGE |
Stefan Hajnoczi | f6c874e | 2012-07-24 16:35:04 +0100 | [diff] [blame] | 721 | [NET_CLIENT_OPTIONS_KIND_BRIDGE] = net_init_bridge, |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 722 | #endif |
Stefan Hajnoczi | f6c874e | 2012-07-24 16:35:04 +0100 | [diff] [blame] | 723 | [NET_CLIENT_OPTIONS_KIND_HUBPORT] = net_init_hubport, |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 724 | }; |
| 725 | |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 726 | |
Laszlo Ersek | 1a0c095 | 2012-07-17 16:17:21 +0200 | [diff] [blame] | 727 | static int net_client_init1(const void *object, int is_netdev, Error **errp) |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 728 | { |
| 729 | union { |
| 730 | const Netdev *netdev; |
| 731 | const NetLegacy *net; |
| 732 | } u; |
| 733 | const NetClientOptions *opts; |
| 734 | const char *name; |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 735 | |
Markus Armbruster | 5294e2c | 2010-03-25 17:22:38 +0100 | [diff] [blame] | 736 | if (is_netdev) { |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 737 | u.netdev = object; |
| 738 | opts = u.netdev->opts; |
| 739 | name = u.netdev->id; |
| 740 | |
| 741 | switch (opts->kind) { |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 742 | #ifdef CONFIG_SLIRP |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 743 | case NET_CLIENT_OPTIONS_KIND_USER: |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 744 | #endif |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 745 | case NET_CLIENT_OPTIONS_KIND_TAP: |
| 746 | case NET_CLIENT_OPTIONS_KIND_SOCKET: |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 747 | #ifdef CONFIG_VDE |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 748 | case NET_CLIENT_OPTIONS_KIND_VDE: |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 749 | #endif |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 750 | #ifdef CONFIG_NET_BRIDGE |
| 751 | case NET_CLIENT_OPTIONS_KIND_BRIDGE: |
| 752 | #endif |
Stefan Hajnoczi | f6c874e | 2012-07-24 16:35:04 +0100 | [diff] [blame] | 753 | case NET_CLIENT_OPTIONS_KIND_HUBPORT: |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 754 | break; |
| 755 | |
| 756 | default: |
Luiz Capitulino | 4559a1d | 2012-04-20 16:50:25 -0300 | [diff] [blame] | 757 | error_set(errp, QERR_INVALID_PARAMETER_VALUE, "type", |
| 758 | "a netdev backend type"); |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 759 | return -1; |
| 760 | } |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 761 | } else { |
| 762 | u.net = object; |
| 763 | opts = u.net->opts; |
| 764 | /* missing optional values have been initialized to "all bits zero" */ |
| 765 | name = u.net->has_id ? u.net->id : u.net->name; |
| 766 | } |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 767 | |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 768 | if (net_client_init_fun[opts->kind]) { |
Stefan Hajnoczi | 4e68f7a | 2012-07-24 16:35:13 +0100 | [diff] [blame] | 769 | NetClientState *peer = NULL; |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 770 | |
| 771 | /* Do not add to a vlan if it's a -netdev or a nic with a netdev= |
| 772 | * parameter. */ |
| 773 | if (!is_netdev && |
| 774 | (opts->kind != NET_CLIENT_OPTIONS_KIND_NIC || |
| 775 | !opts->nic->has_netdev)) { |
Stefan Hajnoczi | d33d93b | 2012-07-24 16:35:05 +0100 | [diff] [blame] | 776 | peer = net_hub_add_port(u.net->has_vlan ? u.net->vlan : 0, NULL); |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 777 | } |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 778 | |
Stefan Hajnoczi | d33d93b | 2012-07-24 16:35:05 +0100 | [diff] [blame] | 779 | if (net_client_init_fun[opts->kind](opts, name, peer) < 0) { |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 780 | /* TODO push error reporting into init() methods */ |
| 781 | error_set(errp, QERR_DEVICE_INIT_FAILED, |
| 782 | NetClientOptionsKind_lookup[opts->kind]); |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 783 | return -1; |
| 784 | } |
| 785 | } |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 786 | return 0; |
Mark McLoughlin | f83c6e1 | 2009-10-06 12:17:06 +0100 | [diff] [blame] | 787 | } |
| 788 | |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 789 | |
| 790 | static void net_visit(Visitor *v, int is_netdev, void **object, Error **errp) |
| 791 | { |
| 792 | if (is_netdev) { |
| 793 | visit_type_Netdev(v, (Netdev **)object, NULL, errp); |
| 794 | } else { |
| 795 | visit_type_NetLegacy(v, (NetLegacy **)object, NULL, errp); |
| 796 | } |
| 797 | } |
| 798 | |
| 799 | |
| 800 | int net_client_init(QemuOpts *opts, int is_netdev, Error **errp) |
| 801 | { |
| 802 | void *object = NULL; |
| 803 | Error *err = NULL; |
| 804 | int ret = -1; |
| 805 | |
| 806 | { |
| 807 | OptsVisitor *ov = opts_visitor_new(opts); |
| 808 | |
| 809 | net_visit(opts_get_visitor(ov), is_netdev, &object, &err); |
| 810 | opts_visitor_cleanup(ov); |
| 811 | } |
| 812 | |
| 813 | if (!err) { |
Laszlo Ersek | 1a0c095 | 2012-07-17 16:17:21 +0200 | [diff] [blame] | 814 | ret = net_client_init1(object, is_netdev, &err); |
Laszlo Ersek | 6687b79 | 2012-07-17 16:17:13 +0200 | [diff] [blame] | 815 | } |
| 816 | |
| 817 | if (object) { |
| 818 | QapiDeallocVisitor *dv = qapi_dealloc_visitor_new(); |
| 819 | |
| 820 | net_visit(qapi_dealloc_get_visitor(dv), is_netdev, &object, NULL); |
| 821 | qapi_dealloc_visitor_cleanup(dv); |
| 822 | } |
| 823 | |
| 824 | error_propagate(errp, err); |
| 825 | return ret; |
| 826 | } |
| 827 | |
| 828 | |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 829 | static int net_host_check_device(const char *device) |
| 830 | { |
| 831 | int i; |
aliguori | bb9ea79 | 2009-04-21 19:56:28 +0000 | [diff] [blame] | 832 | const char *valid_param_list[] = { "tap", "socket", "dump" |
Stefan Weil | 2944e4e | 2012-02-04 09:24:46 +0100 | [diff] [blame] | 833 | #ifdef CONFIG_NET_BRIDGE |
| 834 | , "bridge" |
| 835 | #endif |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 836 | #ifdef CONFIG_SLIRP |
| 837 | ,"user" |
| 838 | #endif |
| 839 | #ifdef CONFIG_VDE |
| 840 | ,"vde" |
| 841 | #endif |
| 842 | }; |
| 843 | for (i = 0; i < sizeof(valid_param_list) / sizeof(char *); i++) { |
| 844 | if (!strncmp(valid_param_list[i], device, |
| 845 | strlen(valid_param_list[i]))) |
| 846 | return 1; |
| 847 | } |
| 848 | |
| 849 | return 0; |
| 850 | } |
| 851 | |
Luiz Capitulino | f18c16d | 2009-08-28 15:27:14 -0300 | [diff] [blame] | 852 | void net_host_device_add(Monitor *mon, const QDict *qdict) |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 853 | { |
Luiz Capitulino | f18c16d | 2009-08-28 15:27:14 -0300 | [diff] [blame] | 854 | const char *device = qdict_get_str(qdict, "device"); |
Mark McLoughlin | 7f1c9d2 | 2009-10-06 12:17:13 +0100 | [diff] [blame] | 855 | const char *opts_str = qdict_get_try_str(qdict, "opts"); |
Luiz Capitulino | 4559a1d | 2012-04-20 16:50:25 -0300 | [diff] [blame] | 856 | Error *local_err = NULL; |
Mark McLoughlin | 7f1c9d2 | 2009-10-06 12:17:13 +0100 | [diff] [blame] | 857 | QemuOpts *opts; |
Luiz Capitulino | f18c16d | 2009-08-28 15:27:14 -0300 | [diff] [blame] | 858 | |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 859 | if (!net_host_check_device(device)) { |
aliguori | 376253e | 2009-03-05 23:01:23 +0000 | [diff] [blame] | 860 | monitor_printf(mon, "invalid host network device %s\n", device); |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 861 | return; |
| 862 | } |
Mark McLoughlin | 7f1c9d2 | 2009-10-06 12:17:13 +0100 | [diff] [blame] | 863 | |
Gerd Hoffmann | 3329f07 | 2010-08-20 13:52:01 +0200 | [diff] [blame] | 864 | opts = qemu_opts_parse(qemu_find_opts("net"), opts_str ? opts_str : "", 0); |
Mark McLoughlin | 7f1c9d2 | 2009-10-06 12:17:13 +0100 | [diff] [blame] | 865 | if (!opts) { |
Mark McLoughlin | 7f1c9d2 | 2009-10-06 12:17:13 +0100 | [diff] [blame] | 866 | return; |
| 867 | } |
| 868 | |
| 869 | qemu_opt_set(opts, "type", device); |
| 870 | |
Luiz Capitulino | 4559a1d | 2012-04-20 16:50:25 -0300 | [diff] [blame] | 871 | net_client_init(opts, 0, &local_err); |
| 872 | if (error_is_set(&local_err)) { |
| 873 | qerror_report_err(local_err); |
| 874 | error_free(local_err); |
aliguori | 5c8be67 | 2009-04-21 19:56:32 +0000 | [diff] [blame] | 875 | monitor_printf(mon, "adding host network device %s failed\n", device); |
| 876 | } |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 877 | } |
| 878 | |
Luiz Capitulino | f18c16d | 2009-08-28 15:27:14 -0300 | [diff] [blame] | 879 | void net_host_device_remove(Monitor *mon, const QDict *qdict) |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 880 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 881 | NetClientState *nc; |
Luiz Capitulino | f18c16d | 2009-08-28 15:27:14 -0300 | [diff] [blame] | 882 | int vlan_id = qdict_get_int(qdict, "vlan_id"); |
| 883 | const char *device = qdict_get_str(qdict, "device"); |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 884 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 885 | nc = net_hub_find_client_by_name(vlan_id, device); |
| 886 | if (!nc) { |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 887 | return; |
| 888 | } |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 889 | if (!net_host_check_device(nc->model)) { |
aliguori | e8f1f9d | 2009-04-21 19:56:08 +0000 | [diff] [blame] | 890 | monitor_printf(mon, "invalid host network device %s\n", device); |
| 891 | return; |
| 892 | } |
Stefan Hajnoczi | b20c6b9 | 2012-07-24 16:35:15 +0100 | [diff] [blame] | 893 | qemu_del_net_client(nc); |
aliguori | 6f338c3 | 2009-02-11 15:21:54 +0000 | [diff] [blame] | 894 | } |
| 895 | |
Luiz Capitulino | 928059a | 2012-04-18 17:34:15 -0300 | [diff] [blame] | 896 | void netdev_add(QemuOpts *opts, Error **errp) |
| 897 | { |
| 898 | net_client_init(opts, 1, errp); |
| 899 | } |
| 900 | |
| 901 | int qmp_netdev_add(Monitor *mon, const QDict *qdict, QObject **ret) |
Markus Armbruster | ae82d32 | 2010-03-25 17:22:40 +0100 | [diff] [blame] | 902 | { |
Luiz Capitulino | 4e89978 | 2012-04-18 17:24:01 -0300 | [diff] [blame] | 903 | Error *local_err = NULL; |
Luiz Capitulino | 928059a | 2012-04-18 17:34:15 -0300 | [diff] [blame] | 904 | QemuOptsList *opts_list; |
Markus Armbruster | ae82d32 | 2010-03-25 17:22:40 +0100 | [diff] [blame] | 905 | QemuOpts *opts; |
Markus Armbruster | ae82d32 | 2010-03-25 17:22:40 +0100 | [diff] [blame] | 906 | |
Luiz Capitulino | 928059a | 2012-04-18 17:34:15 -0300 | [diff] [blame] | 907 | opts_list = qemu_find_opts_err("netdev", &local_err); |
| 908 | if (error_is_set(&local_err)) { |
| 909 | goto exit_err; |
Markus Armbruster | ae82d32 | 2010-03-25 17:22:40 +0100 | [diff] [blame] | 910 | } |
| 911 | |
Luiz Capitulino | 928059a | 2012-04-18 17:34:15 -0300 | [diff] [blame] | 912 | opts = qemu_opts_from_qdict(opts_list, qdict, &local_err); |
| 913 | if (error_is_set(&local_err)) { |
| 914 | goto exit_err; |
| 915 | } |
| 916 | |
| 917 | netdev_add(opts, &local_err); |
| 918 | if (error_is_set(&local_err)) { |
Yoshiaki Tamura | 410cbaf | 2010-06-21 10:41:36 +0900 | [diff] [blame] | 919 | qemu_opts_del(opts); |
Luiz Capitulino | 928059a | 2012-04-18 17:34:15 -0300 | [diff] [blame] | 920 | goto exit_err; |
Yoshiaki Tamura | 410cbaf | 2010-06-21 10:41:36 +0900 | [diff] [blame] | 921 | } |
| 922 | |
Luiz Capitulino | 928059a | 2012-04-18 17:34:15 -0300 | [diff] [blame] | 923 | return 0; |
| 924 | |
| 925 | exit_err: |
| 926 | qerror_report_err(local_err); |
| 927 | error_free(local_err); |
| 928 | return -1; |
Markus Armbruster | ae82d32 | 2010-03-25 17:22:40 +0100 | [diff] [blame] | 929 | } |
| 930 | |
Luiz Capitulino | 5f96415 | 2012-04-16 14:36:32 -0300 | [diff] [blame] | 931 | void qmp_netdev_del(const char *id, Error **errp) |
Markus Armbruster | ae82d32 | 2010-03-25 17:22:40 +0100 | [diff] [blame] | 932 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 933 | NetClientState *nc; |
Stefan Hajnoczi | 645c949 | 2012-10-24 14:34:12 +0200 | [diff] [blame] | 934 | QemuOpts *opts; |
Markus Armbruster | ae82d32 | 2010-03-25 17:22:40 +0100 | [diff] [blame] | 935 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 936 | nc = qemu_find_netdev(id); |
| 937 | if (!nc) { |
Luiz Capitulino | 5f96415 | 2012-04-16 14:36:32 -0300 | [diff] [blame] | 938 | error_set(errp, QERR_DEVICE_NOT_FOUND, id); |
| 939 | return; |
Markus Armbruster | ae82d32 | 2010-03-25 17:22:40 +0100 | [diff] [blame] | 940 | } |
Luiz Capitulino | 5f96415 | 2012-04-16 14:36:32 -0300 | [diff] [blame] | 941 | |
Stefan Hajnoczi | 645c949 | 2012-10-24 14:34:12 +0200 | [diff] [blame] | 942 | opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), id); |
| 943 | if (!opts) { |
| 944 | error_setg(errp, "Device '%s' is not a netdev", id); |
| 945 | return; |
| 946 | } |
| 947 | |
Stefan Hajnoczi | b20c6b9 | 2012-07-24 16:35:15 +0100 | [diff] [blame] | 948 | qemu_del_net_client(nc); |
Stefan Hajnoczi | 645c949 | 2012-10-24 14:34:12 +0200 | [diff] [blame] | 949 | qemu_opts_del(opts); |
Markus Armbruster | ae82d32 | 2010-03-25 17:22:40 +0100 | [diff] [blame] | 950 | } |
| 951 | |
Zhi Yong Wu | 1a85959 | 2012-07-24 16:35:16 +0100 | [diff] [blame] | 952 | void print_net_client(Monitor *mon, NetClientState *nc) |
Jan Kiszka | 44e798d | 2011-07-20 12:20:21 +0200 | [diff] [blame] | 953 | { |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 954 | monitor_printf(mon, "%s: index=%d,type=%s,%s\n", nc->name, |
| 955 | nc->queue_index, |
| 956 | NetClientOptionsKind_lookup[nc->info->type], |
| 957 | nc->info_str); |
Jan Kiszka | 44e798d | 2011-07-20 12:20:21 +0200 | [diff] [blame] | 958 | } |
| 959 | |
Wenchao Xia | 84f2d0e | 2013-01-14 14:06:25 +0800 | [diff] [blame] | 960 | void do_info_network(Monitor *mon, const QDict *qdict) |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 961 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 962 | NetClientState *nc, *peer; |
Laszlo Ersek | 2be64a6 | 2012-07-17 16:17:12 +0200 | [diff] [blame] | 963 | NetClientOptionsKind type; |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 964 | |
Zhi Yong Wu | 1a85959 | 2012-07-24 16:35:16 +0100 | [diff] [blame] | 965 | net_hub_info(mon); |
Mark McLoughlin | 5610c3a | 2009-10-08 19:58:23 +0100 | [diff] [blame] | 966 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 967 | QTAILQ_FOREACH(nc, &net_clients, next) { |
| 968 | peer = nc->peer; |
| 969 | type = nc->info->type; |
Zhi Yong Wu | 1a85959 | 2012-07-24 16:35:16 +0100 | [diff] [blame] | 970 | |
| 971 | /* Skip if already printed in hub info */ |
| 972 | if (net_hub_id_for_client(nc, NULL) == 0) { |
| 973 | continue; |
Mark McLoughlin | 5610c3a | 2009-10-08 19:58:23 +0100 | [diff] [blame] | 974 | } |
Zhi Yong Wu | 1a85959 | 2012-07-24 16:35:16 +0100 | [diff] [blame] | 975 | |
Laszlo Ersek | 2be64a6 | 2012-07-17 16:17:12 +0200 | [diff] [blame] | 976 | if (!peer || type == NET_CLIENT_OPTIONS_KIND_NIC) { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 977 | print_net_client(mon, nc); |
Jan Kiszka | 19061e6 | 2011-07-20 12:20:19 +0200 | [diff] [blame] | 978 | } /* else it's a netdev connected to a NIC, printed with the NIC */ |
Laszlo Ersek | 2be64a6 | 2012-07-17 16:17:12 +0200 | [diff] [blame] | 979 | if (peer && type == NET_CLIENT_OPTIONS_KIND_NIC) { |
Zhi Yong Wu | 1a85959 | 2012-07-24 16:35:16 +0100 | [diff] [blame] | 980 | monitor_printf(mon, " \\ "); |
Jan Kiszka | 44e798d | 2011-07-20 12:20:21 +0200 | [diff] [blame] | 981 | print_net_client(mon, peer); |
Markus Armbruster | a0104e0 | 2010-02-11 14:45:01 +0100 | [diff] [blame] | 982 | } |
Markus Armbruster | a0104e0 | 2010-02-11 14:45:01 +0100 | [diff] [blame] | 983 | } |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 984 | } |
| 985 | |
Luiz Capitulino | 4b37156 | 2011-11-23 13:11:55 -0200 | [diff] [blame] | 986 | void qmp_set_link(const char *name, bool up, Error **errp) |
aliguori | 436e5e5 | 2009-01-08 19:44:06 +0000 | [diff] [blame] | 987 | { |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 988 | NetClientState *ncs[MAX_QUEUE_NUM]; |
| 989 | NetClientState *nc; |
| 990 | int queues, i; |
aliguori | 436e5e5 | 2009-01-08 19:44:06 +0000 | [diff] [blame] | 991 | |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 992 | queues = qemu_find_net_clients_except(name, ncs, |
| 993 | NET_CLIENT_OPTIONS_KIND_MAX, |
| 994 | MAX_QUEUE_NUM); |
| 995 | |
| 996 | if (queues == 0) { |
Luiz Capitulino | 4b37156 | 2011-11-23 13:11:55 -0200 | [diff] [blame] | 997 | error_set(errp, QERR_DEVICE_NOT_FOUND, name); |
| 998 | return; |
aliguori | 436e5e5 | 2009-01-08 19:44:06 +0000 | [diff] [blame] | 999 | } |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 1000 | nc = ncs[0]; |
aliguori | 436e5e5 | 2009-01-08 19:44:06 +0000 | [diff] [blame] | 1001 | |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 1002 | for (i = 0; i < queues; i++) { |
| 1003 | ncs[i]->link_down = !up; |
| 1004 | } |
aliguori | 436e5e5 | 2009-01-08 19:44:06 +0000 | [diff] [blame] | 1005 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 1006 | if (nc->info->link_status_changed) { |
| 1007 | nc->info->link_status_changed(nc); |
Mark McLoughlin | 665a3b0 | 2009-11-25 18:49:30 +0000 | [diff] [blame] | 1008 | } |
Michael S. Tsirkin | ab1cbe1 | 2011-02-09 18:45:04 +0200 | [diff] [blame] | 1009 | |
| 1010 | /* Notify peer. Don't update peer link status: this makes it possible to |
| 1011 | * disconnect from host network without notifying the guest. |
| 1012 | * FIXME: is disconnected link status change operation useful? |
| 1013 | * |
| 1014 | * Current behaviour is compatible with qemu vlans where there could be |
| 1015 | * multiple clients that can still communicate with each other in |
| 1016 | * disconnected mode. For now maintain this compatibility. */ |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 1017 | if (nc->peer && nc->peer->info->link_status_changed) { |
| 1018 | nc->peer->info->link_status_changed(nc->peer); |
Michael S. Tsirkin | ab1cbe1 | 2011-02-09 18:45:04 +0200 | [diff] [blame] | 1019 | } |
aliguori | 436e5e5 | 2009-01-08 19:44:06 +0000 | [diff] [blame] | 1020 | } |
| 1021 | |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 1022 | void net_cleanup(void) |
| 1023 | { |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 1024 | NetClientState *nc; |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 1025 | |
Jason Wang | 1ceef9f | 2013-01-30 19:12:28 +0800 | [diff] [blame] | 1026 | /* We may del multiple entries during qemu_del_net_client(), |
| 1027 | * so QTAILQ_FOREACH_SAFE() is also not safe here. |
| 1028 | */ |
| 1029 | while (!QTAILQ_EMPTY(&net_clients)) { |
| 1030 | nc = QTAILQ_FIRST(&net_clients); |
Jason Wang | 948ecf2 | 2013-01-30 19:12:24 +0800 | [diff] [blame] | 1031 | if (nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC) { |
| 1032 | qemu_del_nic(qemu_get_nic(nc)); |
| 1033 | } else { |
| 1034 | qemu_del_net_client(nc); |
| 1035 | } |
Mark McLoughlin | 577c4af | 2009-10-08 19:58:28 +0100 | [diff] [blame] | 1036 | } |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 1037 | } |
| 1038 | |
Markus Armbruster | 668680f | 2010-02-11 14:44:58 +0100 | [diff] [blame] | 1039 | void net_check_clients(void) |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 1040 | { |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 1041 | NetClientState *nc; |
Peter Maydell | 48e2faf | 2011-05-20 16:50:01 +0100 | [diff] [blame] | 1042 | int i; |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 1043 | |
Peter Maydell | 641f6ea | 2011-05-20 16:50:00 +0100 | [diff] [blame] | 1044 | /* Don't warn about the default network setup that you get if |
| 1045 | * no command line -net or -netdev options are specified. There |
| 1046 | * are two cases that we would otherwise complain about: |
| 1047 | * (1) board doesn't support a NIC but the implicit "-net nic" |
| 1048 | * requested one |
| 1049 | * (2) CONFIG_SLIRP not set, in which case the implicit "-net nic" |
| 1050 | * sets up a nic that isn't connected to anything. |
| 1051 | */ |
| 1052 | if (default_net) { |
| 1053 | return; |
| 1054 | } |
| 1055 | |
Stefan Hajnoczi | 8101764 | 2012-07-24 16:35:07 +0100 | [diff] [blame] | 1056 | net_hub_check_clients(); |
Tristan Gingold | ac60cc1 | 2011-03-15 14:20:54 +0100 | [diff] [blame] | 1057 | |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 1058 | QTAILQ_FOREACH(nc, &net_clients, next) { |
| 1059 | if (!nc->peer) { |
Markus Armbruster | efe32fd | 2010-02-11 14:45:00 +0100 | [diff] [blame] | 1060 | fprintf(stderr, "Warning: %s %s has no peer\n", |
Stefan Hajnoczi | 35277d1 | 2012-07-24 16:35:14 +0100 | [diff] [blame] | 1061 | nc->info->type == NET_CLIENT_OPTIONS_KIND_NIC ? |
| 1062 | "nic" : "netdev", nc->name); |
Markus Armbruster | efe32fd | 2010-02-11 14:45:00 +0100 | [diff] [blame] | 1063 | } |
| 1064 | } |
Peter Maydell | 48e2faf | 2011-05-20 16:50:01 +0100 | [diff] [blame] | 1065 | |
| 1066 | /* Check that all NICs requested via -net nic actually got created. |
| 1067 | * NICs created via -device don't need to be checked here because |
| 1068 | * they are always instantiated. |
| 1069 | */ |
| 1070 | for (i = 0; i < MAX_NICS; i++) { |
| 1071 | NICInfo *nd = &nd_table[i]; |
| 1072 | if (nd->used && !nd->instantiated) { |
| 1073 | fprintf(stderr, "Warning: requested NIC (%s, model %s) " |
| 1074 | "was not created (not supported by this machine?)\n", |
| 1075 | nd->name ? nd->name : "anonymous", |
| 1076 | nd->model ? nd->model : "unspecified"); |
| 1077 | } |
| 1078 | } |
aliguori | 63a01ef | 2008-10-31 19:10:00 +0000 | [diff] [blame] | 1079 | } |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1080 | |
| 1081 | static int net_init_client(QemuOpts *opts, void *dummy) |
| 1082 | { |
Luiz Capitulino | 4559a1d | 2012-04-20 16:50:25 -0300 | [diff] [blame] | 1083 | Error *local_err = NULL; |
| 1084 | |
| 1085 | net_client_init(opts, 0, &local_err); |
| 1086 | if (error_is_set(&local_err)) { |
| 1087 | qerror_report_err(local_err); |
| 1088 | error_free(local_err); |
Mark McLoughlin | c1671a0 | 2009-10-12 09:52:00 +0100 | [diff] [blame] | 1089 | return -1; |
Luiz Capitulino | 4559a1d | 2012-04-20 16:50:25 -0300 | [diff] [blame] | 1090 | } |
| 1091 | |
Mark McLoughlin | c1671a0 | 2009-10-12 09:52:00 +0100 | [diff] [blame] | 1092 | return 0; |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 1093 | } |
| 1094 | |
| 1095 | static int net_init_netdev(QemuOpts *opts, void *dummy) |
| 1096 | { |
Luiz Capitulino | 4559a1d | 2012-04-20 16:50:25 -0300 | [diff] [blame] | 1097 | Error *local_err = NULL; |
| 1098 | int ret; |
| 1099 | |
| 1100 | ret = net_client_init(opts, 1, &local_err); |
| 1101 | if (error_is_set(&local_err)) { |
| 1102 | qerror_report_err(local_err); |
| 1103 | error_free(local_err); |
| 1104 | return -1; |
| 1105 | } |
| 1106 | |
| 1107 | return ret; |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1108 | } |
| 1109 | |
| 1110 | int net_init_clients(void) |
| 1111 | { |
Gerd Hoffmann | 3329f07 | 2010-08-20 13:52:01 +0200 | [diff] [blame] | 1112 | QemuOptsList *net = qemu_find_opts("net"); |
| 1113 | |
Gerd Hoffmann | cb4522c | 2009-12-08 13:11:47 +0100 | [diff] [blame] | 1114 | if (default_net) { |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1115 | /* if no clients, we use a default config */ |
Gerd Hoffmann | 3329f07 | 2010-08-20 13:52:01 +0200 | [diff] [blame] | 1116 | qemu_opts_set(net, NULL, "type", "nic"); |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1117 | #ifdef CONFIG_SLIRP |
Gerd Hoffmann | 3329f07 | 2010-08-20 13:52:01 +0200 | [diff] [blame] | 1118 | qemu_opts_set(net, NULL, "type", "user"); |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1119 | #endif |
| 1120 | } |
| 1121 | |
Stefan Hajnoczi | 9487899 | 2012-07-24 16:35:12 +0100 | [diff] [blame] | 1122 | QTAILQ_INIT(&net_clients); |
Mark McLoughlin | 5610c3a | 2009-10-08 19:58:23 +0100 | [diff] [blame] | 1123 | |
Gerd Hoffmann | 3329f07 | 2010-08-20 13:52:01 +0200 | [diff] [blame] | 1124 | if (qemu_opts_foreach(qemu_find_opts("netdev"), net_init_netdev, NULL, 1) == -1) |
Mark McLoughlin | f6b134a | 2009-10-08 19:58:27 +0100 | [diff] [blame] | 1125 | return -1; |
| 1126 | |
Gerd Hoffmann | 3329f07 | 2010-08-20 13:52:01 +0200 | [diff] [blame] | 1127 | if (qemu_opts_foreach(net, net_init_client, NULL, 1) == -1) { |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1128 | return -1; |
| 1129 | } |
| 1130 | |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1131 | return 0; |
| 1132 | } |
| 1133 | |
Mark McLoughlin | 7f161aa | 2009-10-08 19:58:25 +0100 | [diff] [blame] | 1134 | int net_client_parse(QemuOptsList *opts_list, const char *optarg) |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1135 | { |
Juan Quintela | a3a766e | 2009-10-07 23:44:15 +0200 | [diff] [blame] | 1136 | #if defined(CONFIG_SLIRP) |
Mark McLoughlin | 68ac40d | 2009-11-25 18:48:54 +0000 | [diff] [blame] | 1137 | int ret; |
| 1138 | if (net_slirp_parse_legacy(opts_list, optarg, &ret)) { |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1139 | return ret; |
| 1140 | } |
Juan Quintela | a3a766e | 2009-10-07 23:44:15 +0200 | [diff] [blame] | 1141 | #endif |
Mark McLoughlin | 68ac40d | 2009-11-25 18:48:54 +0000 | [diff] [blame] | 1142 | |
Markus Armbruster | 8212c64 | 2010-02-10 19:52:18 +0100 | [diff] [blame] | 1143 | if (!qemu_opts_parse(opts_list, optarg, 1)) { |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1144 | return -1; |
| 1145 | } |
| 1146 | |
Gerd Hoffmann | cb4522c | 2009-12-08 13:11:47 +0100 | [diff] [blame] | 1147 | default_net = 0; |
Mark McLoughlin | dc1c9fe | 2009-10-06 12:17:16 +0100 | [diff] [blame] | 1148 | return 0; |
| 1149 | } |
Jason Wang | 7fc8d91 | 2012-03-05 11:08:50 +0800 | [diff] [blame] | 1150 | |
| 1151 | /* From FreeBSD */ |
| 1152 | /* XXX: optimize */ |
| 1153 | unsigned compute_mcast_idx(const uint8_t *ep) |
| 1154 | { |
| 1155 | uint32_t crc; |
| 1156 | int carry, i, j; |
| 1157 | uint8_t b; |
| 1158 | |
| 1159 | crc = 0xffffffff; |
| 1160 | for (i = 0; i < 6; i++) { |
| 1161 | b = *ep++; |
| 1162 | for (j = 0; j < 8; j++) { |
| 1163 | carry = ((crc & 0x80000000L) ? 1 : 0) ^ (b & 0x01); |
| 1164 | crc <<= 1; |
| 1165 | b >>= 1; |
| 1166 | if (carry) { |
| 1167 | crc = ((crc ^ POLYNOMIAL) | carry); |
| 1168 | } |
| 1169 | } |
| 1170 | } |
| 1171 | return crc >> 26; |
| 1172 | } |
Paolo Bonzini | 4d45457 | 2012-11-26 16:03:42 +0100 | [diff] [blame] | 1173 | |
| 1174 | QemuOptsList qemu_netdev_opts = { |
| 1175 | .name = "netdev", |
| 1176 | .implied_opt_name = "type", |
| 1177 | .head = QTAILQ_HEAD_INITIALIZER(qemu_netdev_opts.head), |
| 1178 | .desc = { |
| 1179 | /* |
| 1180 | * no elements => accept any params |
| 1181 | * validation will happen later |
| 1182 | */ |
| 1183 | { /* end of list */ } |
| 1184 | }, |
| 1185 | }; |
| 1186 | |
| 1187 | QemuOptsList qemu_net_opts = { |
| 1188 | .name = "net", |
| 1189 | .implied_opt_name = "type", |
| 1190 | .head = QTAILQ_HEAD_INITIALIZER(qemu_net_opts.head), |
| 1191 | .desc = { |
| 1192 | /* |
| 1193 | * no elements => accept any params |
| 1194 | * validation will happen later |
| 1195 | */ |
| 1196 | { /* end of list */ } |
| 1197 | }, |
| 1198 | }; |