blob: ea8b04e0073ee43c94a7b90d151fef986acba380 [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 */
Markus Armbruster452fcdb2018-02-01 12:18:39 +010024
Peter Maydell2744d922016-01-29 17:50:00 +000025#include "qemu/osdep.h"
Marc-André Lureau2addc8f2018-11-14 16:36:33 +040026#include "qemu/log.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000027#include "net/slirp.h"
28
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000029
Blue Swirl28b150b2010-01-27 17:47:33 +000030#ifndef _WIN32
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +020031#include <pwd.h>
Blue Swirl28b150b2010-01-27 17:47:33 +000032#include <sys/wait.h>
33#endif
Paolo Bonzini1422e322012-10-24 08:43:34 +020034#include "net/net.h"
Paolo Bonzinia245fc12012-09-17 18:43:51 +020035#include "clients.h"
36#include "hub.h"
Paolo Bonzini83c90892012-12-17 18:19:49 +010037#include "monitor/monitor.h"
Markus Armbrusterd49b6832015-03-17 18:29:20 +010038#include "qemu/error-report.h"
Paolo Bonzini1de7afc2012-12-17 18:20:00 +010039#include "qemu/sockets.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000040#include "slirp/libslirp.h"
Yann Bordenave7aac5312016-03-15 10:31:22 +010041#include "slirp/ip6.h"
Marc-André Lureau4d43a602017-01-26 18:26:44 +040042#include "chardev/char-fe.h"
Paolo Bonzinif6c2e662016-07-12 09:57:12 +020043#include "sysemu/sysemu.h"
Veronia Bahaaf348b6d2016-03-20 19:16:19 +020044#include "qemu/cutils.h"
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +030045#include "qapi/error.h"
Markus Armbruster452fcdb2018-02-01 12:18:39 +010046#include "qapi/qmp/qdict.h"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000047
48static int get_str_sep(char *buf, int buf_size, const char **pp, int sep)
49{
50 const char *p, *p1;
51 int len;
52 p = *pp;
53 p1 = strchr(p, sep);
54 if (!p1)
55 return -1;
56 len = p1 - p;
57 p1++;
58 if (buf_size > 0) {
59 if (len > buf_size - 1)
60 len = buf_size - 1;
61 memcpy(buf, p, len);
62 buf[len] = '\0';
63 }
64 *pp = p1;
65 return 0;
66}
67
68/* slirp network adapter */
69
70#define SLIRP_CFG_HOSTFWD 1
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000071
72struct slirp_config_str {
73 struct slirp_config_str *next;
74 int flags;
75 char str[1024];
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000076};
77
78typedef struct SlirpState {
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +010079 NetClientState nc;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000080 QTAILQ_ENTRY(SlirpState) entry;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000081 Slirp *slirp;
Paolo Bonzinif6c2e662016-07-12 09:57:12 +020082 Notifier exit_notifier;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000083#ifndef _WIN32
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +010084 gchar *smb_dir;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000085#endif
86} SlirpState;
87
88static struct slirp_config_str *slirp_configs;
Paolo Bonzinib58deb32018-12-06 11:58:10 +010089static QTAILQ_HEAD(, SlirpState) slirp_stacks =
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000090 QTAILQ_HEAD_INITIALIZER(slirp_stacks);
91
Thomas Huthd18572d2018-08-22 15:43:30 +020092static int slirp_hostfwd(SlirpState *s, const char *redir_str, Error **errp);
93static int slirp_guestfwd(SlirpState *s, const char *config_str, Error **errp);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000094
95#ifndef _WIN32
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000096static int slirp_smb(SlirpState *s, const char *exported_dir,
Hervé Poussineau5c843af2017-07-15 18:43:50 +020097 struct in_addr vserver_addr, Error **errp);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +000098static void slirp_smb_cleanup(SlirpState *s);
99#else
100static inline void slirp_smb_cleanup(SlirpState *s) { }
101#endif
102
Marc-André Lureau62c1d2c2018-11-10 17:45:36 +0400103static void net_slirp_output(void *opaque, const uint8_t *pkt, int pkt_len)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000104{
105 SlirpState *s = opaque;
106
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000107 qemu_send_packet(&s->nc, pkt, pkt_len);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000108}
109
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100110static ssize_t net_slirp_receive(NetClientState *nc, const uint8_t *buf, size_t size)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000111{
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000112 SlirpState *s = DO_UPCAST(SlirpState, nc, nc);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000113
114 slirp_input(s->slirp, buf, size);
115
116 return size;
117}
118
Paolo Bonzinif6c2e662016-07-12 09:57:12 +0200119static void slirp_smb_exit(Notifier *n, void *data)
120{
121 SlirpState *s = container_of(n, SlirpState, exit_notifier);
122 slirp_smb_cleanup(s);
123}
124
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100125static void net_slirp_cleanup(NetClientState *nc)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000126{
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000127 SlirpState *s = DO_UPCAST(SlirpState, nc, nc);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000128
129 slirp_cleanup(s->slirp);
Marc-André Lureau67f32802016-08-18 17:44:05 +0400130 if (s->exit_notifier.notify) {
131 qemu_remove_exit_notifier(&s->exit_notifier);
132 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000133 slirp_smb_cleanup(s);
134 QTAILQ_REMOVE(&slirp_stacks, s, entry);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000135}
136
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000137static NetClientInfo net_slirp_info = {
Eric Blakef394b2e2016-07-13 21:50:23 -0600138 .type = NET_CLIENT_DRIVER_USER,
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000139 .size = sizeof(SlirpState),
140 .receive = net_slirp_receive,
141 .cleanup = net_slirp_cleanup,
142};
143
Marc-André Lureau2addc8f2018-11-14 16:36:33 +0400144static void net_slirp_guest_error(const char *msg)
145{
146 qemu_log_mask(LOG_GUEST_ERROR, "%s", msg);
147}
148
Marc-André Lureaud846b922018-11-14 16:36:07 +0400149static const SlirpCb slirp_cb = {
150 .output = net_slirp_output,
Marc-André Lureau2addc8f2018-11-14 16:36:33 +0400151 .guest_error = net_slirp_guest_error,
Marc-André Lureaud846b922018-11-14 16:36:07 +0400152};
153
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100154static int net_slirp_init(NetClientState *peer, const char *model,
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000155 const char *name, int restricted,
Samuel Thibault0b11c032016-03-20 12:29:54 +0100156 bool ipv4, const char *vnetwork, const char *vhost,
157 bool ipv6, const char *vprefix6, int vprefix6_len,
Yann Bordenave7aac5312016-03-15 10:31:22 +0100158 const char *vhost6,
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000159 const char *vhostname, const char *tftp_export,
160 const char *bootfile, const char *vdhcp_start,
Yann Bordenave7aac5312016-03-15 10:31:22 +0100161 const char *vnameserver, const char *vnameserver6,
162 const char *smb_export, const char *vsmbserver,
Benjamin Drungf18d1372018-02-27 17:06:01 +0100163 const char **dnssearch, const char *vdomainname,
Fam Zheng0fca92b2018-09-14 15:26:16 +0800164 const char *tftp_server_name,
Benjamin Drungf18d1372018-02-27 17:06:01 +0100165 Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000166{
167 /* default settings according to historic slirp */
168 struct in_addr net = { .s_addr = htonl(0x0a000200) }; /* 10.0.2.0 */
169 struct in_addr mask = { .s_addr = htonl(0xffffff00) }; /* 255.255.255.0 */
170 struct in_addr host = { .s_addr = htonl(0x0a000202) }; /* 10.0.2.2 */
171 struct in_addr dhcp = { .s_addr = htonl(0x0a00020f) }; /* 10.0.2.15 */
172 struct in_addr dns = { .s_addr = htonl(0x0a000203) }; /* 10.0.2.3 */
Yann Bordenave7aac5312016-03-15 10:31:22 +0100173 struct in6_addr ip6_prefix;
174 struct in6_addr ip6_host;
175 struct in6_addr ip6_dns;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000176#ifndef _WIN32
177 struct in_addr smbsrv = { .s_addr = 0 };
178#endif
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100179 NetClientState *nc;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000180 SlirpState *s;
181 char buf[20];
182 uint32_t addr;
183 int shift;
184 char *end;
185 struct slirp_config_str *config;
186
Samuel Thibault0b11c032016-03-20 12:29:54 +0100187 if (!ipv4 && (vnetwork || vhost || vnameserver)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200188 error_setg(errp, "IPv4 disabled but netmask/host/dns provided");
Samuel Thibault0b11c032016-03-20 12:29:54 +0100189 return -1;
190 }
191
192 if (!ipv6 && (vprefix6 || vhost6 || vnameserver6)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200193 error_setg(errp, "IPv6 disabled but prefix/host6/dns6 provided");
Samuel Thibault0b11c032016-03-20 12:29:54 +0100194 return -1;
195 }
196
197 if (!ipv4 && !ipv6) {
198 /* It doesn't make sense to disable both */
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200199 error_setg(errp, "IPv4 and IPv6 disabled");
Samuel Thibault0b11c032016-03-20 12:29:54 +0100200 return -1;
201 }
202
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000203 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
Benjamin Drungf18d1372018-02-27 17:06:01 +0100360 if (vdomainname && !*vdomainname) {
361 error_setg(errp, "'domainname' parameter cannot be empty");
362 return -1;
363 }
364
Fam Zheng6e157a02018-09-14 15:26:15 +0800365 if (vdomainname && strlen(vdomainname) > 255) {
366 error_setg(errp, "'domainname' parameter cannot exceed 255 bytes");
367 return -1;
368 }
369
370 if (vhostname && strlen(vhostname) > 255) {
371 error_setg(errp, "'vhostname' parameter cannot exceed 255 bytes");
372 return -1;
373 }
Yann Bordenave7aac5312016-03-15 10:31:22 +0100374
Fam Zheng0fca92b2018-09-14 15:26:16 +0800375 if (tftp_server_name && strlen(tftp_server_name) > 255) {
376 error_setg(errp, "'tftp-server-name' parameter cannot exceed 255 bytes");
377 return -1;
378 }
379
Stefan Hajnocziab5f3f82012-07-24 16:35:08 +0100380 nc = qemu_new_net_client(&net_slirp_info, peer, model, name);
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000381
382 snprintf(nc->info_str, sizeof(nc->info_str),
Jan Kiszkac54ed5b2011-07-20 12:20:14 +0200383 "net=%s,restrict=%s", inet_ntoa(net),
384 restricted ? "on" : "off");
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000385
386 s = DO_UPCAST(SlirpState, nc, nc);
387
Samuel Thibault0b11c032016-03-20 12:29:54 +0100388 s->slirp = slirp_init(restricted, ipv4, net, mask, host,
389 ipv6, ip6_prefix, vprefix6_len, ip6_host,
Fam Zheng0fca92b2018-09-14 15:26:16 +0800390 vhostname, tftp_server_name,
391 tftp_export, bootfile, dhcp,
Marc-André Lureau62c1d2c2018-11-10 17:45:36 +0400392 dns, ip6_dns, dnssearch, vdomainname,
Marc-André Lureaud846b922018-11-14 16:36:07 +0400393 &slirp_cb, s);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000394 QTAILQ_INSERT_TAIL(&slirp_stacks, s, entry);
395
396 for (config = slirp_configs; config; config = config->next) {
397 if (config->flags & SLIRP_CFG_HOSTFWD) {
Thomas Huthd18572d2018-08-22 15:43:30 +0200398 if (slirp_hostfwd(s, config->str, errp) < 0) {
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000399 goto error;
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200400 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000401 } else {
Thomas Huthd18572d2018-08-22 15:43:30 +0200402 if (slirp_guestfwd(s, config->str, errp) < 0) {
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000403 goto error;
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200404 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000405 }
406 }
407#ifndef _WIN32
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000408 if (smb_export) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200409 if (slirp_smb(s, smb_export, smbsrv, errp) < 0) {
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000410 goto error;
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200411 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000412 }
413#endif
414
Paolo Bonzinif6c2e662016-07-12 09:57:12 +0200415 s->exit_notifier.notify = slirp_smb_exit;
416 qemu_add_exit_notifier(&s->exit_notifier);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000417 return 0;
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000418
419error:
Stefan Hajnoczib20c6b92012-07-24 16:35:15 +0100420 qemu_del_net_client(nc);
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000421 return -1;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000422}
423
Thomas Huth93653062018-01-11 21:02:40 +0100424static SlirpState *slirp_lookup(Monitor *mon, const char *hub_id,
425 const char *name)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000426{
Thomas Huth93653062018-01-11 21:02:40 +0100427 if (name) {
Stefan Hajnoczi4e68f7a2012-07-24 16:35:13 +0100428 NetClientState *nc;
Thomas Huth93653062018-01-11 21:02:40 +0100429 if (hub_id) {
430 nc = net_hub_find_client_by_name(strtol(hub_id, NULL, 0), name);
431 if (!nc) {
Thomas Huth442da402018-04-30 20:02:24 +0200432 monitor_printf(mon, "unrecognized (hub-id, stackname) pair\n");
Thomas Huth93653062018-01-11 21:02:40 +0100433 return NULL;
434 }
Thomas Huth68cb29e2018-09-20 10:22:27 +0200435 warn_report("Using 'hub-id' is deprecated, specify the netdev id "
436 "directly instead");
Thomas Huth93653062018-01-11 21:02:40 +0100437 } else {
438 nc = qemu_find_netdev(name);
439 if (!nc) {
440 monitor_printf(mon, "unrecognized netdev id '%s'\n", name);
441 return NULL;
442 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000443 }
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000444 if (strcmp(nc->model, "user")) {
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000445 monitor_printf(mon, "invalid device specified\n");
446 return NULL;
447 }
Mark McLoughlince20b5b2009-11-25 18:49:06 +0000448 return DO_UPCAST(SlirpState, nc, nc);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000449 } else {
450 if (QTAILQ_EMPTY(&slirp_stacks)) {
451 monitor_printf(mon, "user mode network stack not in use\n");
452 return NULL;
453 }
454 return QTAILQ_FIRST(&slirp_stacks);
455 }
456}
457
Markus Armbruster3e5a50d2015-02-06 13:55:43 +0100458void hmp_hostfwd_remove(Monitor *mon, const QDict *qdict)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000459{
460 struct in_addr host_addr = { .s_addr = INADDR_ANY };
461 int host_port;
Markus Armbrustere30e5eb2011-11-16 15:45:59 +0100462 char buf[256];
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000463 const char *src_str, *p;
464 SlirpState *s;
465 int is_udp = 0;
466 int err;
467 const char *arg1 = qdict_get_str(qdict, "arg1");
468 const char *arg2 = qdict_get_try_str(qdict, "arg2");
469 const char *arg3 = qdict_get_try_str(qdict, "arg3");
470
Thomas Huth93653062018-01-11 21:02:40 +0100471 if (arg3) {
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000472 s = slirp_lookup(mon, arg1, arg2);
473 src_str = arg3;
Thomas Huth93653062018-01-11 21:02:40 +0100474 } else if (arg2) {
475 s = slirp_lookup(mon, NULL, arg1);
476 src_str = arg2;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000477 } else {
478 s = slirp_lookup(mon, NULL, NULL);
479 src_str = arg1;
480 }
481 if (!s) {
482 return;
483 }
484
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000485 p = src_str;
Markus Armbrustere30e5eb2011-11-16 15:45:59 +0100486 if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
487 goto fail_syntax;
488 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000489
490 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
491 is_udp = 0;
492 } else if (!strcmp(buf, "udp")) {
493 is_udp = 1;
494 } else {
495 goto fail_syntax;
496 }
497
498 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
499 goto fail_syntax;
500 }
501 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
502 goto fail_syntax;
503 }
504
Nia Alarie1fb3f7f2018-03-16 14:39:21 +0000505 if (qemu_strtoi(p, NULL, 10, &host_port)) {
506 goto fail_syntax;
507 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000508
Peter Maydell70381662014-06-16 16:47:49 +0100509 err = slirp_remove_hostfwd(s->slirp, is_udp, host_addr, host_port);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000510
511 monitor_printf(mon, "host forwarding rule for %s %s\n", src_str,
Geoffrey Thomasb15ba6c2011-12-17 04:23:59 -0500512 err ? "not found" : "removed");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000513 return;
514
515 fail_syntax:
516 monitor_printf(mon, "invalid format\n");
517}
518
Thomas Huthd18572d2018-08-22 15:43:30 +0200519static int slirp_hostfwd(SlirpState *s, const char *redir_str, Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000520{
521 struct in_addr host_addr = { .s_addr = INADDR_ANY };
522 struct in_addr guest_addr = { .s_addr = 0 };
523 int host_port, guest_port;
524 const char *p;
525 char buf[256];
526 int is_udp;
527 char *end;
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100528 const char *fail_reason = "Unknown reason";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000529
530 p = redir_str;
531 if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100532 fail_reason = "No : separators";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000533 goto fail_syntax;
534 }
535 if (!strcmp(buf, "tcp") || buf[0] == '\0') {
536 is_udp = 0;
537 } else if (!strcmp(buf, "udp")) {
538 is_udp = 1;
539 } else {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100540 fail_reason = "Bad protocol name";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000541 goto fail_syntax;
542 }
543
Thomas Huthd18572d2018-08-22 15:43:30 +0200544 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
545 fail_reason = "Missing : separator";
546 goto fail_syntax;
547 }
548 if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) {
549 fail_reason = "Bad host address";
550 goto fail_syntax;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000551 }
552
Thomas Huthd18572d2018-08-22 15:43:30 +0200553 if (get_str_sep(buf, sizeof(buf), &p, '-') < 0) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100554 fail_reason = "Bad host port separator";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000555 goto fail_syntax;
556 }
557 host_port = strtol(buf, &end, 0);
Vincent Bernat0bed71e2017-02-25 22:31:58 +0100558 if (*end != '\0' || host_port < 0 || host_port > 65535) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100559 fail_reason = "Bad host port";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000560 goto fail_syntax;
561 }
562
563 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100564 fail_reason = "Missing guest address";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000565 goto fail_syntax;
566 }
567 if (buf[0] != '\0' && !inet_aton(buf, &guest_addr)) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100568 fail_reason = "Bad guest address";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000569 goto fail_syntax;
570 }
571
572 guest_port = strtol(p, &end, 0);
573 if (*end != '\0' || guest_port < 1 || guest_port > 65535) {
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100574 fail_reason = "Bad guest port";
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000575 goto fail_syntax;
576 }
577
578 if (slirp_add_hostfwd(s->slirp, is_udp, host_addr, host_port, guest_addr,
579 guest_port) < 0) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200580 error_setg(errp, "Could not set up host forwarding rule '%s'",
581 redir_str);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000582 return -1;
583 }
584 return 0;
585
586 fail_syntax:
Dr. David Alan Gilbert0e7e4fb2017-09-08 16:53:59 +0100587 error_setg(errp, "Invalid host forwarding rule '%s' (%s)", redir_str,
588 fail_reason);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000589 return -1;
590}
591
Markus Armbruster3e5a50d2015-02-06 13:55:43 +0100592void hmp_hostfwd_add(Monitor *mon, const QDict *qdict)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000593{
594 const char *redir_str;
595 SlirpState *s;
596 const char *arg1 = qdict_get_str(qdict, "arg1");
597 const char *arg2 = qdict_get_try_str(qdict, "arg2");
598 const char *arg3 = qdict_get_try_str(qdict, "arg3");
599
Thomas Huth93653062018-01-11 21:02:40 +0100600 if (arg3) {
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000601 s = slirp_lookup(mon, arg1, arg2);
602 redir_str = arg3;
Thomas Huth93653062018-01-11 21:02:40 +0100603 } else if (arg2) {
604 s = slirp_lookup(mon, NULL, arg1);
605 redir_str = arg2;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000606 } else {
607 s = slirp_lookup(mon, NULL, NULL);
608 redir_str = arg1;
609 }
610 if (s) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200611 Error *err = NULL;
Thomas Huthd18572d2018-08-22 15:43:30 +0200612 if (slirp_hostfwd(s, redir_str, &err) < 0) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200613 error_report_err(err);
614 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000615 }
616
617}
618
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000619#ifndef _WIN32
620
621/* automatic user mode samba server configuration */
622static void slirp_smb_cleanup(SlirpState *s)
623{
Kirill A. Shutemov5a01e992010-01-20 00:56:16 +0100624 int ret;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000625
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100626 if (s->smb_dir) {
627 gchar *cmd = g_strdup_printf("rm -rf %s", s->smb_dir);
Kirill A. Shutemov5a01e992010-01-20 00:56:16 +0100628 ret = system(cmd);
Juan Quintela24ac07d2010-03-04 10:00:31 +0100629 if (ret == -1 || !WIFEXITED(ret)) {
Markus Armbruster1ecda022010-02-18 17:25:24 +0100630 error_report("'%s' failed.", cmd);
Kirill A. Shutemov5a01e992010-01-20 00:56:16 +0100631 } else if (WEXITSTATUS(ret)) {
Markus Armbruster1ecda022010-02-18 17:25:24 +0100632 error_report("'%s' failed. Error code: %d",
633 cmd, WEXITSTATUS(ret));
Kirill A. Shutemov5a01e992010-01-20 00:56:16 +0100634 }
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100635 g_free(cmd);
636 g_free(s->smb_dir);
637 s->smb_dir = NULL;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000638 }
639}
640
641static int slirp_smb(SlirpState* s, const char *exported_dir,
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200642 struct in_addr vserver_addr, Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000643{
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100644 char *smb_conf;
645 char *smb_cmdline;
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200646 struct passwd *passwd;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000647 FILE *f;
648
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200649 passwd = getpwuid(geteuid());
650 if (!passwd) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200651 error_setg(errp, "Failed to retrieve user name");
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200652 return -1;
653 }
654
Dunrong Huang927d8112012-07-06 14:04:43 +0800655 if (access(CONFIG_SMBD_COMMAND, F_OK)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200656 error_setg(errp, "Could not find '%s', please install it",
657 CONFIG_SMBD_COMMAND);
Dunrong Huang927d8112012-07-06 14:04:43 +0800658 return -1;
659 }
660
661 if (access(exported_dir, R_OK | X_OK)) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200662 error_setg(errp, "Error accessing shared directory '%s': %s",
663 exported_dir, strerror(errno));
Dunrong Huang927d8112012-07-06 14:04:43 +0800664 return -1;
665 }
666
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100667 s->smb_dir = g_dir_make_tmp("qemu-smb.XXXXXX", NULL);
668 if (!s->smb_dir) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200669 error_setg(errp, "Could not create samba server dir");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000670 return -1;
671 }
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100672 smb_conf = g_strdup_printf("%s/%s", s->smb_dir, "smb.conf");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000673
674 f = fopen(smb_conf, "w");
675 if (!f) {
676 slirp_smb_cleanup(s);
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200677 error_setg(errp,
678 "Could not create samba server configuration file '%s'",
679 smb_conf);
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100680 g_free(smb_conf);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000681 return -1;
682 }
683 fprintf(f,
684 "[global]\n"
685 "private dir=%s\n"
Peter Wu7912d042014-11-03 11:52:10 +0100686 "interfaces=127.0.0.1\n"
687 "bind interfaces only=yes\n"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000688 "pid directory=%s\n"
689 "lock directory=%s\n"
Nikolaus Rath276eda52012-04-25 09:57:19 -0400690 "state directory=%s\n"
Peter Wu7912d042014-11-03 11:52:10 +0100691 "cache directory=%s\n"
Michael Bueschb87b8a82014-04-27 14:54:12 +0400692 "ncalrpc dir=%s/ncalrpc\n"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000693 "log file=%s/log.smbd\n"
694 "smb passwd file=%s/smbpasswd\n"
Michael Bueschc2804ee2013-11-01 12:23:49 +0100695 "security = user\n"
696 "map to guest = Bad User\n"
Peter Wu7912d042014-11-03 11:52:10 +0100697 "load printers = no\n"
698 "printing = bsd\n"
699 "disable spoolss = yes\n"
700 "usershare max shares = 0\n"
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000701 "[qemu]\n"
702 "path=%s\n"
703 "read only=no\n"
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200704 "guest ok=yes\n"
705 "force user=%s\n",
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000706 s->smb_dir,
707 s->smb_dir,
708 s->smb_dir,
709 s->smb_dir,
710 s->smb_dir,
Nikolaus Rath276eda52012-04-25 09:57:19 -0400711 s->smb_dir,
Michael Bueschb87b8a82014-04-27 14:54:12 +0400712 s->smb_dir,
Peter Wu7912d042014-11-03 11:52:10 +0100713 s->smb_dir,
Jan Kiszka1cb1c5d2012-07-05 19:35:57 +0200714 exported_dir,
715 passwd->pw_name
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000716 );
717 fclose(f);
718
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100719 smb_cmdline = g_strdup_printf("%s -l %s -s %s",
Michael Tokarev44d8d2b2014-10-25 00:29:50 +0400720 CONFIG_SMBD_COMMAND, s->smb_dir, smb_conf);
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100721 g_free(smb_conf);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000722
Marc-André Lureau3ed9f822018-11-10 17:45:39 +0400723 if (slirp_add_exec(s->slirp, NULL, smb_cmdline, &vserver_addr, 139) < 0 ||
724 slirp_add_exec(s->slirp, NULL, smb_cmdline, &vserver_addr, 445) < 0) {
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000725 slirp_smb_cleanup(s);
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100726 g_free(smb_cmdline);
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200727 error_setg(errp, "Conflicting/invalid smbserver address");
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000728 return -1;
729 }
Dr. David Alan Gilbertf95cc8b2017-04-07 15:32:54 +0100730 g_free(smb_cmdline);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000731 return 0;
732}
733
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000734#endif /* !defined(_WIN32) */
735
736struct GuestFwd {
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300737 CharBackend hd;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000738 struct in_addr server;
739 int port;
740 Slirp *slirp;
741};
742
743static int guestfwd_can_read(void *opaque)
744{
745 struct GuestFwd *fwd = opaque;
746 return slirp_socket_can_recv(fwd->slirp, fwd->server, fwd->port);
747}
748
749static void guestfwd_read(void *opaque, const uint8_t *buf, int size)
750{
751 struct GuestFwd *fwd = opaque;
752 slirp_socket_recv(fwd->slirp, fwd->server, fwd->port, buf, size);
753}
754
Thomas Huthd18572d2018-08-22 15:43:30 +0200755static int slirp_guestfwd(SlirpState *s, const char *config_str, Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000756{
757 struct in_addr server = { .s_addr = 0 };
758 struct GuestFwd *fwd;
759 const char *p;
760 char buf[128];
761 char *end;
762 int port;
763
764 p = config_str;
Thomas Huthd18572d2018-08-22 15:43:30 +0200765 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
766 goto fail_syntax;
767 }
768 if (strcmp(buf, "tcp") && buf[0] != '\0') {
769 goto fail_syntax;
770 }
771 if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) {
772 goto fail_syntax;
773 }
774 if (buf[0] != '\0' && !inet_aton(buf, &server)) {
775 goto fail_syntax;
776 }
777 if (get_str_sep(buf, sizeof(buf), &p, '-') < 0) {
778 goto fail_syntax;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000779 }
780 port = strtol(buf, &end, 10);
781 if (*end != '\0' || port < 1 || port > 65535) {
782 goto fail_syntax;
783 }
784
Alexander Grafa9899992011-06-04 07:25:59 +0200785 snprintf(buf, sizeof(buf), "guestfwd.tcp.%d", port);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000786
Alexander Grafb412eb62012-06-03 09:45:01 +0200787 if ((strlen(p) > 4) && !strncmp(p, "cmd:", 4)) {
Marc-André Lureau3ed9f822018-11-10 17:45:39 +0400788 if (slirp_add_exec(s->slirp, NULL, &p[4], &server, port) < 0) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200789 error_setg(errp, "Conflicting/invalid host:port in guest "
790 "forwarding rule '%s'", config_str);
Alexander Grafb412eb62012-06-03 09:45:01 +0200791 return -1;
792 }
793 } else {
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300794 Error *err = NULL;
Marc-André Lureau95e30b22018-08-22 19:19:42 +0200795 /*
796 * FIXME: sure we want to support implicit
797 * muxed monitors here?
798 */
799 Chardev *chr = qemu_chr_new_mux_mon(buf, p);
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300800
801 if (!chr) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200802 error_setg(errp, "Could not open guest forwarding device '%s'",
803 buf);
Marc-André Lureau32a6ebe2016-10-22 12:52:52 +0300804 return -1;
805 }
806
807 fwd = g_new(struct GuestFwd, 1);
808 qemu_chr_fe_init(&fwd->hd, chr, &err);
809 if (err) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200810 error_propagate(errp, err);
Alexander Grafb412eb62012-06-03 09:45:01 +0200811 g_free(fwd);
812 return -1;
813 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000814
Marc-André Lureau3ed9f822018-11-10 17:45:39 +0400815 if (slirp_add_exec(s->slirp, &fwd->hd, NULL, &server, port) < 0) {
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200816 error_setg(errp, "Conflicting/invalid host:port in guest "
817 "forwarding rule '%s'", config_str);
Alexander Grafb412eb62012-06-03 09:45:01 +0200818 g_free(fwd);
819 return -1;
820 }
821 fwd->server = server;
822 fwd->port = port;
823 fwd->slirp = s->slirp;
824
Marc-André Lureau5345fdb2016-10-22 12:52:55 +0300825 qemu_chr_fe_set_handlers(&fwd->hd, guestfwd_can_read, guestfwd_read,
Anton Nefedov81517ba2017-07-06 15:08:49 +0300826 NULL, NULL, fwd, NULL, true);
Alexander Grafb412eb62012-06-03 09:45:01 +0200827 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000828 return 0;
829
830 fail_syntax:
Hervé Poussineau5c843af2017-07-15 18:43:50 +0200831 error_setg(errp, "Invalid guest forwarding rule '%s'", config_str);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000832 return -1;
833}
834
Markus Armbruster1ce6be22015-02-06 14:18:24 +0100835void hmp_info_usernet(Monitor *mon, const QDict *qdict)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000836{
837 SlirpState *s;
838
839 QTAILQ_FOREACH(s, &slirp_stacks, entry) {
Stefan Hajnoczi90d87a32012-07-24 16:35:06 +0100840 int id;
Thomas Huth442da402018-04-30 20:02:24 +0200841 bool got_hub_id = net_hub_id_for_client(&s->nc, &id) == 0;
Marc-André Lureaub7f43bf2018-11-10 17:45:43 +0400842 char *info = slirp_connection_info(s->slirp);
843 monitor_printf(mon, "Hub %d (%s):\n%s",
Thomas Huth442da402018-04-30 20:02:24 +0200844 got_hub_id ? id : -1,
Marc-André Lureaub7f43bf2018-11-10 17:45:43 +0400845 s->nc.name, info);
846 g_free(info);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000847 }
848}
849
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200850static void
851net_init_slirp_configs(const StringList *fwd, int flags)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000852{
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200853 while (fwd) {
854 struct slirp_config_str *config;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000855
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200856 config = g_malloc0(sizeof(*config));
857 pstrcpy(config->str, sizeof(config->str), fwd->value->str);
858 config->flags = flags;
859 config->next = slirp_configs;
860 slirp_configs = config;
861
862 fwd = fwd->next;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000863 }
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000864}
865
Klaus Stengel63d29602012-10-27 19:53:39 +0200866static const char **slirp_dnssearch(const StringList *dnsname)
867{
868 const StringList *c = dnsname;
869 size_t i = 0, num_opts = 0;
870 const char **ret;
871
872 while (c) {
873 num_opts++;
874 c = c->next;
875 }
876
877 if (num_opts == 0) {
878 return NULL;
879 }
880
881 ret = g_malloc((num_opts + 1) * sizeof(*ret));
882 c = dnsname;
883 while (c) {
884 ret[i++] = c->value->str;
885 c = c->next;
886 }
887 ret[i] = NULL;
888 return ret;
889}
890
Kővágó, Zoltáncebea512016-07-13 21:50:12 -0600891int net_init_slirp(const Netdev *netdev, const char *name,
Markus Armbrustera30ecde2015-05-15 13:58:50 +0200892 NetClientState *peer, Error **errp)
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000893{
894 struct slirp_config_str *config;
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200895 char *vnet;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000896 int ret;
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200897 const NetdevUserOptions *user;
Klaus Stengel63d29602012-10-27 19:53:39 +0200898 const char **dnssearch;
Samuel Thibault0b11c032016-03-20 12:29:54 +0100899 bool ipv4 = true, ipv6 = true;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000900
Eric Blakef394b2e2016-07-13 21:50:23 -0600901 assert(netdev->type == NET_CLIENT_DRIVER_USER);
902 user = &netdev->u.user;
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000903
Samuel Thibault0b11c032016-03-20 12:29:54 +0100904 if ((user->has_ipv6 && user->ipv6 && !user->has_ipv4) ||
905 (user->has_ipv4 && !user->ipv4)) {
906 ipv4 = 0;
907 }
908 if ((user->has_ipv4 && user->ipv4 && !user->has_ipv6) ||
909 (user->has_ipv6 && !user->ipv6)) {
910 ipv6 = 0;
911 }
912
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200913 vnet = user->has_net ? g_strdup(user->net) :
914 user->has_ip ? g_strdup_printf("%s/24", user->ip) :
915 NULL;
Jan Kiszkac54ed5b2011-07-20 12:20:14 +0200916
Klaus Stengel63d29602012-10-27 19:53:39 +0200917 dnssearch = slirp_dnssearch(user->dnssearch);
918
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200919 /* all optional fields are initialized to "all bits zero" */
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000920
Laszlo Ersek094f15c2012-07-17 16:17:16 +0200921 net_init_slirp_configs(user->hostfwd, SLIRP_CFG_HOSTFWD);
922 net_init_slirp_configs(user->guestfwd, 0);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000923
Samuel Thibault0b11c032016-03-20 12:29:54 +0100924 ret = net_slirp_init(peer, "user", name, user->q_restrict,
925 ipv4, vnet, user->host,
926 ipv6, user->ipv6_prefix, user->ipv6_prefixlen,
Samuel Thibaultd8eb3862016-03-25 00:02:58 +0100927 user->ipv6_host, user->hostname, user->tftp,
Yann Bordenave7aac5312016-03-15 10:31:22 +0100928 user->bootfile, user->dhcpstart,
Samuel Thibaultd8eb3862016-03-25 00:02:58 +0100929 user->dns, user->ipv6_dns, user->smb,
Fam Zheng0fca92b2018-09-14 15:26:16 +0800930 user->smbserver, dnssearch, user->domainname,
931 user->tftp_server_name, errp);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000932
933 while (slirp_configs) {
934 config = slirp_configs;
935 slirp_configs = config->next;
Anthony Liguori7267c092011-08-20 22:09:37 -0500936 g_free(config);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000937 }
938
Anthony Liguori7267c092011-08-20 22:09:37 -0500939 g_free(vnet);
Klaus Stengel63d29602012-10-27 19:53:39 +0200940 g_free(dnssearch);
Mark McLoughlin68ac40d2009-11-25 18:48:54 +0000941
942 return ret;
943}