blob: 7044d292c85eaa8e2444c8e513cb169e2860e850 [file] [log] [blame]
Mark McLoughlin68ac40d2009-11-25 18:48:54 +00001/*
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 */
Peter Maydell2744d922016-01-29 17:50:00 +000024#include "qemu/osdep.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000025#include "net/slirp.h"
26
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000027
Blue Swirl28b150b2010-01-27 17:47:33 +000028#ifndef _WIN32
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +020029#include <pwd.h>
Blue Swirl28b150b2010-01-27 17:47:33 +000030#include <sys/wait.h>
31#endif
Paolo Bonzini1422e322012-10-24 08:43:34 +020032#include "net/net.h"
Paolo Bonzinia245fc12012-09-17 18:43:51 +020033#include "clients.h"
34#include "hub.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010035#include "monitor/monitor.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010036#include "qemu/error-report.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010037#include "qemu/sockets.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000038#include "slirp/libslirp.h"
Yann Bordenave7aac5312016-03-15 10:31:22 +010039#include "slirp/ip6.h"
Marc-André Lureau4d43a602017-01-26 18:26:44 +040040#include "chardev/char-fe.h"
Paolo Bonzinif6c2e662016-07-12 09:57:12 +020041#include "sysemu/sysemu.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020042#include "qemu/cutils.h"
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +030043#include "qapi/error.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000044
45static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
46{
47 const char *p, *p1;
48 int len;
49 p = *pp;
50 p1 = strchr(p, sep);
51 if (!p1)
52 return -1;
53 len = p1 - p;
54 p1++;
55 if (buf_size > 0) {
56 if (len > buf_size - 1)
57 len = buf_size - 1;
58 memcpy(buf, p, len);
59 buf[len] = '\0';
60 }
61 *pp = p1;
62 return 0;
63}
64
65/* slirp network adapter */
66
67#define SLIRP_CFG_HOSTFWD 1
68#define SLIRP_CFG_LEGACY 2
69
70struct slirp_config_str {
71 struct slirp_config_str *next;
72 int flags;
73 char str[1024];
74 int legacy_format;
75};
76
77typedef struct SlirpState {
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +010078 NetClientState nc;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000079 QTAILQ_ENTRY(SlirpState) entry;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000080 Slirp *slirp;
Paolo Bonzinif6c2e662016-07-12 09:57:12 +020081 Notifier exit_notifier;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000082#ifndef _WIN32
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +010083 gchar *smb_dir;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000084#endif
85} SlirpState;
86
87static struct slirp_config_str *slirp_configs;
88const char *legacy_tftp_prefix;
89const char *legacy_bootp_filename;
90static QTAILQ_HEAD(slirp_stacks, SlirpState) slirp_stacks =
91 QTAILQ_HEAD_INITIALIZER(slirp_stacks);
92
93static int slirp_hostfwd(SlirpState *s, const char *redir_str,
Hervé Poussineau5c843af2017-07-15 18:43:50 +020094 int legacy_format, Error **errp);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000095static int slirp_guestfwd(SlirpState *s, const char *config_str,
Hervé Poussineau5c843af2017-07-15 18:43:50 +020096 int legacy_format, Error **errp);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000097
98#ifndef _WIN32
99static const char *legacy_smb_export;
100
101static int slirp_smb(SlirpState *s, const char *exported_dir,
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200102 struct in_addr vserver_addr, Error **errp);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000103static void slirp_smb_cleanup(SlirpState *s);
104#else
105static inline void slirp_smb_cleanup(SlirpState *s) { }
106#endif
107
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000108void slirp_output(void *opaque, const uint8_t *pkt, int pkt_len)
109{
110 SlirpState *s = opaque;
111
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000112 qemu_send_packet(&s->nc, pkt, pkt_len);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000113}
114
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100115static ssize_t net_slirp_receive(NetClientState *nc, const uint8_t *buf, size_t size)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000116{
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000117 SlirpState *s = DO_UPCAST(SlirpState, nc, nc);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000118
119 slirp_input(s->slirp, buf, size);
120
121 return size;
122}
123
Paolo Bonzinif6c2e662016-07-12 09:57:12 +0200124static void slirp_smb_exit(Notifier *n, void *data)
125{
126 SlirpState *s = container_of(n, SlirpState, exit_notifier);
127 slirp_smb_cleanup(s);
128}
129
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100130static void net_slirp_cleanup(NetClientState *nc)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000131{
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000132 SlirpState *s = DO_UPCAST(SlirpState, nc, nc);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000133
134 slirp_cleanup(s->slirp);
Marc-André Lureau67f32802016-08-18 17:44:05 +0400135 if (s->exit_notifier.notify) {
136 qemu_remove_exit_notifier(&s->exit_notifier);
137 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000138 slirp_smb_cleanup(s);
139 QTAILQ_REMOVE(&slirp_stacks, s, entry);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000140}
141
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000142static NetClientInfo net_slirp_info = {
Eric Blakef394b2e2016-07-13 21:50:23 -0600143 .type = NET_CLIENT_DRIVER_USER,
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000144 .size = sizeof(SlirpState),
145 .receive = net_slirp_receive,
146 .cleanup = net_slirp_cleanup,
147};
148
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100149static int net_slirp_init(NetClientState *peer, const char *model,
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000150 const char *name, int restricted,
Samuel Thibault0b11c032016-03-20 12:29:54 +0100151 bool ipv4, const char *vnetwork, const char *vhost,
152 bool ipv6, const char *vprefix6, int vprefix6_len,
Yann Bordenave7aac5312016-03-15 10:31:22 +0100153 const char *vhost6,
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000154 const char *vhostname, const char *tftp_export,
155 const char *bootfile, const char *vdhcp_start,
Yann Bordenave7aac5312016-03-15 10:31:22 +0100156 const char *vnameserver, const char *vnameserver6,
157 const char *smb_export, const char *vsmbserver,
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200158 const char **dnssearch, Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000159{
160 /* default settings according to historic slirp */
161 struct in_addr net = { .s_addr = htonl(0x0a000200) }; /* 10.0.2.0 */
162 struct in_addr mask = { .s_addr = htonl(0xffffff00) }; /* 255.255.255.0 */
163 struct in_addr host = { .s_addr = htonl(0x0a000202) }; /* 10.0.2.2 */
164 struct in_addr dhcp = { .s_addr = htonl(0x0a00020f) }; /* 10.0.2.15 */
165 struct in_addr dns = { .s_addr = htonl(0x0a000203) }; /* 10.0.2.3 */
Yann Bordenave7aac5312016-03-15 10:31:22 +0100166 struct in6_addr ip6_prefix;
167 struct in6_addr ip6_host;
168 struct in6_addr ip6_dns;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000169#ifndef _WIN32
170 struct in_addr smbsrv = { .s_addr = 0 };
171#endif
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100172 NetClientState *nc;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000173 SlirpState *s;
174 char buf[20];
175 uint32_t addr;
176 int shift;
177 char *end;
178 struct slirp_config_str *config;
179
Samuel Thibault0b11c032016-03-20 12:29:54 +0100180 if (!ipv4 && (vnetwork || vhost || vnameserver)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200181 error_setg(errp, "IPv4 disabled but netmask/host/dns provided");
Samuel Thibault0b11c032016-03-20 12:29:54 +0100182 return -1;
183 }
184
185 if (!ipv6 && (vprefix6 || vhost6 || vnameserver6)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200186 error_setg(errp, "IPv6 disabled but prefix/host6/dns6 provided");
Samuel Thibault0b11c032016-03-20 12:29:54 +0100187 return -1;
188 }
189
190 if (!ipv4 && !ipv6) {
191 /* It doesn't make sense to disable both */
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200192 error_setg(errp, "IPv4 and IPv6 disabled");
Samuel Thibault0b11c032016-03-20 12:29:54 +0100193 return -1;
194 }
195
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000196 if (!tftp_export) {
197 tftp_export = legacy_tftp_prefix;
198 }
199 if (!bootfile) {
200 bootfile = legacy_bootp_filename;
201 }
202
203 if (vnetwork) {
204 if (get_str_sep(buf, sizeof(buf), &vnetwork, '/') < 0) {
205 if (!inet_aton(vnetwork, &net)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200206 error_setg(errp, "Failed to parse netmask");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000207 return -1;
208 }
209 addr = ntohl(net.s_addr);
210 if (!(addr & 0x80000000)) {
211 mask.s_addr = htonl(0xff000000); /* class A */
212 } else if ((addr & 0xfff00000) == 0xac100000) {
213 mask.s_addr = htonl(0xfff00000); /* priv. 172.16.0.0/12 */
214 } else if ((addr & 0xc0000000) == 0x80000000) {
215 mask.s_addr = htonl(0xffff0000); /* class B */
216 } else if ((addr & 0xffff0000) == 0xc0a80000) {
217 mask.s_addr = htonl(0xffff0000); /* priv. 192.168.0.0/16 */
218 } else if ((addr & 0xffff0000) == 0xc6120000) {
219 mask.s_addr = htonl(0xfffe0000); /* tests 198.18.0.0/15 */
220 } else if ((addr & 0xe0000000) == 0xe0000000) {
221 mask.s_addr = htonl(0xffffff00); /* class C */
222 } else {
223 mask.s_addr = htonl(0xfffffff0); /* multicast/reserved */
224 }
225 } else {
226 if (!inet_aton(buf, &net)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200227 error_setg(errp, "Failed to parse netmask");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000228 return -1;
229 }
230 shift = strtol(vnetwork, &end, 10);
231 if (*end != '\0') {
232 if (!inet_aton(vnetwork, &mask)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200233 error_setg(errp,
234 "Failed to parse netmask (trailing chars)");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000235 return -1;
236 }
237 } else if (shift < 4 || shift > 32) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200238 error_setg(errp,
239 "Invalid netmask provided (must be in range 4-32)");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000240 return -1;
241 } else {
242 mask.s_addr = htonl(0xffffffff << (32 - shift));
243 }
244 }
245 net.s_addr &= mask.s_addr;
246 host.s_addr = net.s_addr | (htonl(0x0202) & ~mask.s_addr);
247 dhcp.s_addr = net.s_addr | (htonl(0x020f) & ~mask.s_addr);
248 dns.s_addr = net.s_addr | (htonl(0x0203) & ~mask.s_addr);
249 }
250
251 if (vhost && !inet_aton(vhost, &host)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200252 error_setg(errp, "Failed to parse host");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000253 return -1;
254 }
255 if ((host.s_addr & mask.s_addr) != net.s_addr) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200256 error_setg(errp, "Host doesn't belong to network");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000257 return -1;
258 }
259
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000260 if (vnameserver && !inet_aton(vnameserver, &dns)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200261 error_setg(errp, "Failed to parse DNS");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000262 return -1;
263 }
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200264 if ((dns.s_addr & mask.s_addr) != net.s_addr) {
265 error_setg(errp, "DNS doesn't belong to network");
266 return -1;
267 }
268 if (dns.s_addr == host.s_addr) {
269 error_setg(errp, "DNS must be different from host");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000270 return -1;
271 }
272
Bas van Sisseren68756ba2013-06-03 15:11:49 +0200273 if (vdhcp_start && !inet_aton(vdhcp_start, &dhcp)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200274 error_setg(errp, "Failed to parse DHCP start address");
Bas van Sisseren68756ba2013-06-03 15:11:49 +0200275 return -1;
276 }
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200277 if ((dhcp.s_addr & mask.s_addr) != net.s_addr) {
278 error_setg(errp, "DHCP doesn't belong to network");
279 return -1;
280 }
281 if (dhcp.s_addr == host.s_addr || dhcp.s_addr == dns.s_addr) {
282 error_setg(errp, "DNS must be different from host and DNS");
Bas van Sisseren68756ba2013-06-03 15:11:49 +0200283 return -1;
284 }
285
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000286#ifndef _WIN32
287 if (vsmbserver && !inet_aton(vsmbserver, &smbsrv)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200288 error_setg(errp, "Failed to parse SMB address");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000289 return -1;
290 }
291#endif
292
Yann Bordenave7aac5312016-03-15 10:31:22 +0100293#if defined(_WIN32) && (_WIN32_WINNT < 0x0600)
294 /* No inet_pton helper before Vista... */
295 if (vprefix6) {
296 /* Unsupported */
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200297 error_setg(errp, "IPv6 prefix not supported");
Yann Bordenave7aac5312016-03-15 10:31:22 +0100298 return -1;
299 }
300 memset(&ip6_prefix, 0, sizeof(ip6_prefix));
301 ip6_prefix.s6_addr[0] = 0xfe;
302 ip6_prefix.s6_addr[1] = 0xc0;
303#else
304 if (!vprefix6) {
305 vprefix6 = "fec0::";
306 }
307 if (!inet_pton(AF_INET6, vprefix6, &ip6_prefix)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200308 error_setg(errp, "Failed to parse IPv6 prefix");
Yann Bordenave7aac5312016-03-15 10:31:22 +0100309 return -1;
310 }
311#endif
312
313 if (!vprefix6_len) {
314 vprefix6_len = 64;
315 }
316 if (vprefix6_len < 0 || vprefix6_len > 126) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200317 error_setg(errp,
318 "Invalid prefix provided (prefix len must be in range 0-126");
Yann Bordenave7aac5312016-03-15 10:31:22 +0100319 return -1;
320 }
321
322 if (vhost6) {
323#if defined(_WIN32) && (_WIN32_WINNT < 0x0600)
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200324 error_setg(errp, "IPv6 host not supported");
Yann Bordenave7aac5312016-03-15 10:31:22 +0100325 return -1;
326#else
327 if (!inet_pton(AF_INET6, vhost6, &ip6_host)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200328 error_setg(errp, "Failed to parse IPv6 host");
Yann Bordenave7aac5312016-03-15 10:31:22 +0100329 return -1;
330 }
331 if (!in6_equal_net(&ip6_prefix, &ip6_host, vprefix6_len)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200332 error_setg(errp, "IPv6 Host doesn't belong to network");
Yann Bordenave7aac5312016-03-15 10:31:22 +0100333 return -1;
334 }
335#endif
336 } else {
337 ip6_host = ip6_prefix;
338 ip6_host.s6_addr[15] |= 2;
339 }
340
341 if (vnameserver6) {
342#if defined(_WIN32) && (_WIN32_WINNT < 0x0600)
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200343 error_setg(errp, "IPv6 DNS not supported");
Yann Bordenave7aac5312016-03-15 10:31:22 +0100344 return -1;
345#else
346 if (!inet_pton(AF_INET6, vnameserver6, &ip6_dns)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200347 error_setg(errp, "Failed to parse IPv6 DNS");
Yann Bordenave7aac5312016-03-15 10:31:22 +0100348 return -1;
349 }
350 if (!in6_equal_net(&ip6_prefix, &ip6_dns, vprefix6_len)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200351 error_setg(errp, "IPv6 DNS doesn't belong to network");
Yann Bordenave7aac5312016-03-15 10:31:22 +0100352 return -1;
353 }
354#endif
355 } else {
356 ip6_dns = ip6_prefix;
357 ip6_dns.s6_addr[15] |= 3;
358 }
359
360
Stefan Hajnocziab5f3f82012-07-24 16:35:08 +0100361 nc = qemu_new_net_client(&net_slirp_info, peer, model, name);
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000362
363 snprintf(nc->info_str, sizeof(nc->info_str),
Jan Kiszkac54ed5b2011-07-20 12:20:14 +0200364 "net=%s,restrict=%s", inet_ntoa(net),
365 restricted ? "on" : "off");
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000366
367 s = DO_UPCAST(SlirpState, nc, nc);
368
Samuel Thibault0b11c032016-03-20 12:29:54 +0100369 s->slirp = slirp_init(restricted, ipv4, net, mask, host,
370 ipv6, ip6_prefix, vprefix6_len, ip6_host,
Yann Bordenave7aac5312016-03-15 10:31:22 +0100371 vhostname, tftp_export, bootfile, dhcp,
372 dns, ip6_dns, dnssearch, s);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000373 QTAILQ_INSERT_TAIL(&slirp_stacks, s, entry);
374
375 for (config = slirp_configs; config; config = config->next) {
376 if (config->flags & SLIRP_CFG_HOSTFWD) {
377 if (slirp_hostfwd(s, config->str,
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200378 config->flags & SLIRP_CFG_LEGACY, errp) < 0) {
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000379 goto error;
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200380 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000381 } else {
382 if (slirp_guestfwd(s, config->str,
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200383 config->flags & SLIRP_CFG_LEGACY, errp) < 0) {
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000384 goto error;
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200385 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000386 }
387 }
388#ifndef _WIN32
389 if (!smb_export) {
390 smb_export = legacy_smb_export;
391 }
392 if (smb_export) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200393 if (slirp_smb(s, smb_export, smbsrv, errp) < 0) {
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000394 goto error;
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200395 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000396 }
397#endif
398
Paolo Bonzinif6c2e662016-07-12 09:57:12 +0200399 s->exit_notifier.notify = slirp_smb_exit;
400 qemu_add_exit_notifier(&s->exit_notifier);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000401 return 0;
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000402
403error:
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100404 qemu_del_net_client(nc);
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000405 return -1;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000406}
407
Thomas Huth93653062018-01-11 21:02:40 +0100408static SlirpState *slirp_lookup(Monitor *mon, const char *hub_id,
409 const char *name)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000410{
Thomas Huth93653062018-01-11 21:02:40 +0100411 if (name) {
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100412 NetClientState *nc;
Thomas Huth93653062018-01-11 21:02:40 +0100413 if (hub_id) {
414 nc = net_hub_find_client_by_name(strtol(hub_id, NULL, 0), name);
415 if (!nc) {
416 monitor_printf(mon, "unrecognized (vlan-id, stackname) pair\n");
417 return NULL;
418 }
419 } else {
420 nc = qemu_find_netdev(name);
421 if (!nc) {
422 monitor_printf(mon, "unrecognized netdev id '%s'\n", name);
423 return NULL;
424 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000425 }
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000426 if (strcmp(nc->model, "user")) {
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000427 monitor_printf(mon, "invalid device specified\n");
428 return NULL;
429 }
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000430 return DO_UPCAST(SlirpState, nc, nc);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000431 } else {
432 if (QTAILQ_EMPTY(&slirp_stacks)) {
433 monitor_printf(mon, "user mode network stack not in use\n");
434 return NULL;
435 }
436 return QTAILQ_FIRST(&slirp_stacks);
437 }
438}
439
Markus Armbruster3e5a50d2015-02-06 13:55:43 +0100440void hmp_hostfwd_remove(Monitor *mon, const QDict *qdict)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000441{
442 struct in_addr host_addr = { .s_addr = INADDR_ANY };
443 int host_port;
Markus Armbrustere30e5eb2011-11-16 15:45:59 +0100444 char buf[256];
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000445 const char *src_str, *p;
446 SlirpState *s;
447 int is_udp = 0;
448 int err;
449 const char *arg1 = qdict_get_str(qdict, "arg1");
450 const char *arg2 = qdict_get_try_str(qdict, "arg2");
451 const char *arg3 = qdict_get_try_str(qdict, "arg3");
452
Thomas Huth93653062018-01-11 21:02:40 +0100453 if (arg3) {
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000454 s = slirp_lookup(mon, arg1, arg2);
455 src_str = arg3;
Thomas Huth93653062018-01-11 21:02:40 +0100456 } else if (arg2) {
457 s = slirp_lookup(mon, NULL, arg1);
458 src_str = arg2;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000459 } else {
460 s = slirp_lookup(mon, NULL, NULL);
461 src_str = arg1;
462 }
463 if (!s) {
464 return;
465 }
466
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000467 p = src_str;
Markus Armbrustere30e5eb2011-11-16 15:45:59 +0100468 if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
469 goto fail_syntax;
470 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000471
472 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
473 is_udp = 0;
474 } else if (!strcmp(buf, "udp")) {
475 is_udp = 1;
476 } else {
477 goto fail_syntax;
478 }
479
480 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
481 goto fail_syntax;
482 }
483 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
484 goto fail_syntax;
485 }
486
487 host_port = atoi(p);
488
Peter Maydell70381662014-06-16 16:47:49 +0100489 err = slirp_remove_hostfwd(s->slirp, is_udp, host_addr, host_port);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000490
491 monitor_printf(mon, "host forwarding rule for %s %s\n", src_str,
Geoffrey Thomasb15ba6c2011-12-17 04:23:59 -0500492 err ? "not found" : "removed");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000493 return;
494
495 fail_syntax:
496 monitor_printf(mon, "invalid format\n");
497}
498
499static int slirp_hostfwd(SlirpState *s, const char *redir_str,
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200500 int legacy_format, Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000501{
502 struct in_addr host_addr = { .s_addr = INADDR_ANY };
503 struct in_addr guest_addr = { .s_addr = 0 };
504 int host_port, guest_port;
505 const char *p;
506 char buf[256];
507 int is_udp;
508 char *end;
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100509 const char *fail_reason = "Unknown reason";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000510
511 p = redir_str;
512 if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100513 fail_reason = "No : separators";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000514 goto fail_syntax;
515 }
516 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
517 is_udp = 0;
518 } else if (!strcmp(buf, "udp")) {
519 is_udp = 1;
520 } else {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100521 fail_reason = "Bad protocol name";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000522 goto fail_syntax;
523 }
524
525 if (!legacy_format) {
526 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100527 fail_reason = "Missing : separator";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000528 goto fail_syntax;
529 }
530 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100531 fail_reason = "Bad host address";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000532 goto fail_syntax;
533 }
534 }
535
536 if (get_str_sep(buf, sizeof(buf), &p, legacy_format ? ':' : '-') < 0) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100537 fail_reason = "Bad host port separator";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000538 goto fail_syntax;
539 }
540 host_port = strtol(buf, &end, 0);
Vincent Bernat0bed71e2017-02-25 22:31:58 +0100541 if (*end != '\0' || host_port < 0 || host_port > 65535) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100542 fail_reason = "Bad host port";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000543 goto fail_syntax;
544 }
545
546 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100547 fail_reason = "Missing guest address";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000548 goto fail_syntax;
549 }
550 if (buf[0] != '\0' && !inet_aton(buf, &guest_addr)) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100551 fail_reason = "Bad guest address";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000552 goto fail_syntax;
553 }
554
555 guest_port = strtol(p, &end, 0);
556 if (*end != '\0' || guest_port < 1 || guest_port > 65535) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100557 fail_reason = "Bad guest port";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000558 goto fail_syntax;
559 }
560
561 if (slirp_add_hostfwd(s->slirp, is_udp, host_addr, host_port, guest_addr,
562 guest_port) < 0) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200563 error_setg(errp, "Could not set up host forwarding rule '%s'",
564 redir_str);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000565 return -1;
566 }
567 return 0;
568
569 fail_syntax:
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100570 error_setg(errp, "Invalid host forwarding rule '%s' (%s)", redir_str,
571 fail_reason);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000572 return -1;
573}
574
Markus Armbruster3e5a50d2015-02-06 13:55:43 +0100575void hmp_hostfwd_add(Monitor *mon, const QDict *qdict)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000576{
577 const char *redir_str;
578 SlirpState *s;
579 const char *arg1 = qdict_get_str(qdict, "arg1");
580 const char *arg2 = qdict_get_try_str(qdict, "arg2");
581 const char *arg3 = qdict_get_try_str(qdict, "arg3");
582
Thomas Huth93653062018-01-11 21:02:40 +0100583 if (arg3) {
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000584 s = slirp_lookup(mon, arg1, arg2);
585 redir_str = arg3;
Thomas Huth93653062018-01-11 21:02:40 +0100586 } else if (arg2) {
587 s = slirp_lookup(mon, NULL, arg1);
588 redir_str = arg2;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000589 } else {
590 s = slirp_lookup(mon, NULL, NULL);
591 redir_str = arg1;
592 }
593 if (s) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200594 Error *err = NULL;
595 if (slirp_hostfwd(s, redir_str, 0, &err) < 0) {
596 error_report_err(err);
597 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000598 }
599
600}
601
602int net_slirp_redir(const char *redir_str)
603{
604 struct slirp_config_str *config;
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200605 Error *err = NULL;
606 int res;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000607
608 if (QTAILQ_EMPTY(&slirp_stacks)) {
Anthony Liguori7267c092011-08-20 22:09:37 -0500609 config = g_malloc(sizeof(*config));
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000610 pstrcpy(config->str, sizeof(config->str), redir_str);
611 config->flags = SLIRP_CFG_HOSTFWD | SLIRP_CFG_LEGACY;
612 config->next = slirp_configs;
613 slirp_configs = config;
614 return 0;
615 }
616
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200617 res = slirp_hostfwd(QTAILQ_FIRST(&slirp_stacks), redir_str, 1, &err);
618 if (res < 0) {
619 error_report_err(err);
620 }
621 return res;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000622}
623
624#ifndef _WIN32
625
626/* automatic user mode samba server configuration */
627static void slirp_smb_cleanup(SlirpState *s)
628{
Kirill A. Shutemov5a01e992010-01-20 00:56:16 +0100629 int ret;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000630
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100631 if (s->smb_dir) {
632 gchar *cmd = g_strdup_printf("rm -rf %s", s->smb_dir);
Kirill A. Shutemov5a01e992010-01-20 00:56:16 +0100633 ret = system(cmd);
Juan Quintela24ac07d2010-03-04 10:00:31 +0100634 if (ret == -1 || !WIFEXITED(ret)) {
Markus Armbruster1ecda022010-02-18 17:25:24 +0100635 error_report("'%s' failed.", cmd);
Kirill A. Shutemov5a01e992010-01-20 00:56:16 +0100636 } else if (WEXITSTATUS(ret)) {
Markus Armbruster1ecda022010-02-18 17:25:24 +0100637 error_report("'%s' failed. Error code: %d",
638 cmd, WEXITSTATUS(ret));
Kirill A. Shutemov5a01e992010-01-20 00:56:16 +0100639 }
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100640 g_free(cmd);
641 g_free(s->smb_dir);
642 s->smb_dir = NULL;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000643 }
644}
645
646static int slirp_smb(SlirpState* s, const char *exported_dir,
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200647 struct in_addr vserver_addr, Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000648{
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100649 char *smb_conf;
650 char *smb_cmdline;
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200651 struct passwd *passwd;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000652 FILE *f;
653
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200654 passwd = getpwuid(geteuid());
655 if (!passwd) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200656 error_setg(errp, "Failed to retrieve user name");
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200657 return -1;
658 }
659
Dunrong Huang927d8112012-07-06 14:04:43 +0800660 if (access(CONFIG_SMBD_COMMAND, F_OK)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200661 error_setg(errp, "Could not find '%s', please install it",
662 CONFIG_SMBD_COMMAND);
Dunrong Huang927d8112012-07-06 14:04:43 +0800663 return -1;
664 }
665
666 if (access(exported_dir, R_OK | X_OK)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200667 error_setg(errp, "Error accessing shared directory '%s': %s",
668 exported_dir, strerror(errno));
Dunrong Huang927d8112012-07-06 14:04:43 +0800669 return -1;
670 }
671
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100672 s->smb_dir = g_dir_make_tmp("qemu-smb.XXXXXX", NULL);
673 if (!s->smb_dir) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200674 error_setg(errp, "Could not create samba server dir");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000675 return -1;
676 }
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100677 smb_conf = g_strdup_printf("%s/%s", s->smb_dir, "smb.conf");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000678
679 f = fopen(smb_conf, "w");
680 if (!f) {
681 slirp_smb_cleanup(s);
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200682 error_setg(errp,
683 "Could not create samba server configuration file '%s'",
684 smb_conf);
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100685 g_free(smb_conf);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000686 return -1;
687 }
688 fprintf(f,
689 "[global]\n"
690 "private dir=%s\n"
Peter Wu7912d042014-11-03 11:52:10 +0100691 "interfaces=127.0.0.1\n"
692 "bind interfaces only=yes\n"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000693 "pid directory=%s\n"
694 "lock directory=%s\n"
Nikolaus Rath276eda52012-04-25 09:57:19 -0400695 "state directory=%s\n"
Peter Wu7912d042014-11-03 11:52:10 +0100696 "cache directory=%s\n"
Michael Bueschb87b8a82014-04-27 14:54:12 +0400697 "ncalrpc dir=%s/ncalrpc\n"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000698 "log file=%s/log.smbd\n"
699 "smb passwd file=%s/smbpasswd\n"
Michael Bueschc2804ee2013-11-01 12:23:49 +0100700 "security = user\n"
701 "map to guest = Bad User\n"
Peter Wu7912d042014-11-03 11:52:10 +0100702 "load printers = no\n"
703 "printing = bsd\n"
704 "disable spoolss = yes\n"
705 "usershare max shares = 0\n"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000706 "[qemu]\n"
707 "path=%s\n"
708 "read only=no\n"
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200709 "guest ok=yes\n"
710 "force user=%s\n",
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000711 s->smb_dir,
712 s->smb_dir,
713 s->smb_dir,
714 s->smb_dir,
715 s->smb_dir,
Nikolaus Rath276eda52012-04-25 09:57:19 -0400716 s->smb_dir,
Michael Bueschb87b8a82014-04-27 14:54:12 +0400717 s->smb_dir,
Peter Wu7912d042014-11-03 11:52:10 +0100718 s->smb_dir,
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200719 exported_dir,
720 passwd->pw_name
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000721 );
722 fclose(f);
723
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100724 smb_cmdline = g_strdup_printf("%s -l %s -s %s",
Michael Tokarev44d8d2b2014-10-25 00:29:50 +0400725 CONFIG_SMBD_COMMAND, s->smb_dir, smb_conf);
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100726 g_free(smb_conf);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000727
Michael Tokarev5c1e1892013-11-28 23:32:55 +0400728 if (slirp_add_exec(s->slirp, 0, smb_cmdline, &vserver_addr, 139) < 0 ||
729 slirp_add_exec(s->slirp, 0, smb_cmdline, &vserver_addr, 445) < 0) {
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000730 slirp_smb_cleanup(s);
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100731 g_free(smb_cmdline);
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200732 error_setg(errp, "Conflicting/invalid smbserver address");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000733 return -1;
734 }
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100735 g_free(smb_cmdline);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000736 return 0;
737}
738
739/* automatic user mode samba server configuration (legacy interface) */
740int net_slirp_smb(const char *exported_dir)
741{
742 struct in_addr vserver_addr = { .s_addr = 0 };
743
744 if (legacy_smb_export) {
745 fprintf(stderr, "-smb given twice\n");
746 return -1;
747 }
748 legacy_smb_export = exported_dir;
749 if (!QTAILQ_EMPTY(&slirp_stacks)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200750 Error *err = NULL;
751 int res = slirp_smb(QTAILQ_FIRST(&slirp_stacks), exported_dir,
752 vserver_addr, &err);
753 if (res < 0) {
754 error_report_err(err);
755 }
756 return res;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000757 }
758 return 0;
759}
760
761#endif /* !defined(_WIN32) */
762
763struct GuestFwd {
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300764 CharBackend hd;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000765 struct in_addr server;
766 int port;
767 Slirp *slirp;
768};
769
770static int guestfwd_can_read(void *opaque)
771{
772 struct GuestFwd *fwd = opaque;
773 return slirp_socket_can_recv(fwd->slirp, fwd->server, fwd->port);
774}
775
776static void guestfwd_read(void *opaque, const uint8_t *buf, int size)
777{
778 struct GuestFwd *fwd = opaque;
779 slirp_socket_recv(fwd->slirp, fwd->server, fwd->port, buf, size);
780}
781
782static int slirp_guestfwd(SlirpState *s, const char *config_str,
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200783 int legacy_format, Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000784{
785 struct in_addr server = { .s_addr = 0 };
786 struct GuestFwd *fwd;
787 const char *p;
788 char buf[128];
789 char *end;
790 int port;
791
792 p = config_str;
793 if (legacy_format) {
794 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
795 goto fail_syntax;
796 }
797 } else {
798 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
799 goto fail_syntax;
800 }
801 if (strcmp(buf, "tcp") && buf[0] != '\0') {
802 goto fail_syntax;
803 }
804 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
805 goto fail_syntax;
806 }
807 if (buf[0] != '\0' && !inet_aton(buf, &server)) {
808 goto fail_syntax;
809 }
810 if (get_str_sep(buf, sizeof(buf), &p, '-') < 0) {
811 goto fail_syntax;
812 }
813 }
814 port = strtol(buf, &end, 10);
815 if (*end != '\0' || port < 1 || port > 65535) {
816 goto fail_syntax;
817 }
818
Alexander Grafa9899992011-06-04 07:25:59 +0200819 snprintf(buf, sizeof(buf), "guestfwd.tcp.%d", port);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000820
Alexander Grafb412eb62012-06-03 09:45:01 +0200821 if ((strlen(p) > 4) && !strncmp(p, "cmd:", 4)) {
822 if (slirp_add_exec(s->slirp, 0, &p[4], &server, port) < 0) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200823 error_setg(errp, "Conflicting/invalid host:port in guest "
824 "forwarding rule '%s'", config_str);
Alexander Grafb412eb62012-06-03 09:45:01 +0200825 return -1;
826 }
827 } else {
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300828 Error *err = NULL;
Marc-André Lureau0ec7b3e2016-12-07 16:20:22 +0300829 Chardev *chr = qemu_chr_new(buf, p);
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300830
831 if (!chr) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200832 error_setg(errp, "Could not open guest forwarding device '%s'",
833 buf);
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300834 return -1;
835 }
836
837 fwd = g_new(struct GuestFwd, 1);
838 qemu_chr_fe_init(&fwd->hd, chr, &err);
839 if (err) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200840 error_propagate(errp, err);
Alexander Grafb412eb62012-06-03 09:45:01 +0200841 g_free(fwd);
842 return -1;
843 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000844
Paolo Bonzinid14fabd2016-10-27 22:04:58 +0200845 if (slirp_add_exec(s->slirp, 3, &fwd->hd, &server, port) < 0) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200846 error_setg(errp, "Conflicting/invalid host:port in guest "
847 "forwarding rule '%s'", config_str);
Alexander Grafb412eb62012-06-03 09:45:01 +0200848 g_free(fwd);
849 return -1;
850 }
851 fwd->server = server;
852 fwd->port = port;
853 fwd->slirp = s->slirp;
854
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300855 qemu_chr_fe_set_handlers(&fwd->hd, guestfwd_can_read, guestfwd_read,
Anton Nefedov81517ba2017-07-06 15:08:49 +0300856 NULL, NULL, fwd, NULL, true);
Alexander Grafb412eb62012-06-03 09:45:01 +0200857 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000858 return 0;
859
860 fail_syntax:
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200861 error_setg(errp, "Invalid guest forwarding rule '%s'", config_str);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000862 return -1;
863}
864
Markus Armbruster1ce6be22015-02-06 14:18:24 +0100865void hmp_info_usernet(Monitor *mon, const QDict *qdict)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000866{
867 SlirpState *s;
868
869 QTAILQ_FOREACH(s, &slirp_stacks, entry) {
Stefan Hajnoczi90d87a32012-07-24 16:35:06 +0100870 int id;
871 bool got_vlan_id = net_hub_id_for_client(&s->nc, &id) == 0;
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000872 monitor_printf(mon, "VLAN %d (%s):\n",
Stefan Hajnoczi90d87a32012-07-24 16:35:06 +0100873 got_vlan_id ? id : -1,
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000874 s->nc.name);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000875 slirp_connection_info(s->slirp, mon);
876 }
877}
878
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200879static void
880net_init_slirp_configs(const StringList *fwd, int flags)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000881{
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200882 while (fwd) {
883 struct slirp_config_str *config;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000884
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200885 config = g_malloc0(sizeof(*config));
886 pstrcpy(config->str, sizeof(config->str), fwd->value->str);
887 config->flags = flags;
888 config->next = slirp_configs;
889 slirp_configs = config;
890
891 fwd = fwd->next;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000892 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000893}
894
Klaus Stengel63d29602012-10-27 19:53:39 +0200895static const char **slirp_dnssearch(const StringList *dnsname)
896{
897 const StringList *c = dnsname;
898 size_t i = 0, num_opts = 0;
899 const char **ret;
900
901 while (c) {
902 num_opts++;
903 c = c->next;
904 }
905
906 if (num_opts == 0) {
907 return NULL;
908 }
909
910 ret = g_malloc((num_opts + 1) * sizeof(*ret));
911 c = dnsname;
912 while (c) {
913 ret[i++] = c->value->str;
914 c = c->next;
915 }
916 ret[i] = NULL;
917 return ret;
918}
919
Kővágó, Zoltáncebea512016-07-13 21:50:12 -0600920int net_init_slirp(const Netdev *netdev, const char *name,
Markus Armbrustera30ecde2015-05-15 13:58:50 +0200921 NetClientState *peer, Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000922{
923 struct slirp_config_str *config;
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200924 char *vnet;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000925 int ret;
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200926 const NetdevUserOptions *user;
Klaus Stengel63d29602012-10-27 19:53:39 +0200927 const char **dnssearch;
Samuel Thibault0b11c032016-03-20 12:29:54 +0100928 bool ipv4 = true, ipv6 = true;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000929
Eric Blakef394b2e2016-07-13 21:50:23 -0600930 assert(netdev->type == NET_CLIENT_DRIVER_USER);
931 user = &netdev->u.user;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000932
Samuel Thibault0b11c032016-03-20 12:29:54 +0100933 if ((user->has_ipv6 && user->ipv6 && !user->has_ipv4) ||
934 (user->has_ipv4 && !user->ipv4)) {
935 ipv4 = 0;
936 }
937 if ((user->has_ipv4 && user->ipv4 && !user->has_ipv6) ||
938 (user->has_ipv6 && !user->ipv6)) {
939 ipv6 = 0;
940 }
941
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200942 vnet = user->has_net ? g_strdup(user->net) :
943 user->has_ip ? g_strdup_printf("%s/24", user->ip) :
944 NULL;
Jan Kiszkac54ed5b2011-07-20 12:20:14 +0200945
Klaus Stengel63d29602012-10-27 19:53:39 +0200946 dnssearch = slirp_dnssearch(user->dnssearch);
947
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200948 /* all optional fields are initialized to "all bits zero" */
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000949
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200950 net_init_slirp_configs(user->hostfwd, SLIRP_CFG_HOSTFWD);
951 net_init_slirp_configs(user->guestfwd, 0);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000952
Samuel Thibault0b11c032016-03-20 12:29:54 +0100953 ret = net_slirp_init(peer, "user", name, user->q_restrict,
954 ipv4, vnet, user->host,
955 ipv6, user->ipv6_prefix, user->ipv6_prefixlen,
Samuel Thibaultd8eb3862016-03-25 00:02:58 +0100956 user->ipv6_host, user->hostname, user->tftp,
Yann Bordenave7aac5312016-03-15 10:31:22 +0100957 user->bootfile, user->dhcpstart,
Samuel Thibaultd8eb3862016-03-25 00:02:58 +0100958 user->dns, user->ipv6_dns, user->smb,
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200959 user->smbserver, dnssearch, errp);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000960
961 while (slirp_configs) {
962 config = slirp_configs;
963 slirp_configs = config->next;
Anthony Liguori7267c092011-08-20 22:09:37 -0500964 g_free(config);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000965 }
966
Anthony Liguori7267c092011-08-20 22:09:37 -0500967 g_free(vnet);
Klaus Stengel63d29602012-10-27 19:53:39 +0200968 g_free(dnssearch);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000969
970 return ret;
971}