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