]>
Commit | Line | Data |
---|---|---|
68ac40d2 MM |
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 | */ | |
2744d920 | 24 | #include "qemu/osdep.h" |
68ac40d2 MM |
25 | #include "net/slirp.h" |
26 | ||
68ac40d2 | 27 | |
28b150bf | 28 | #ifndef _WIN32 |
1cb1c5d1 | 29 | #include <pwd.h> |
28b150bf BS |
30 | #include <sys/wait.h> |
31 | #endif | |
1422e32d | 32 | #include "net/net.h" |
a245fc18 PB |
33 | #include "clients.h" |
34 | #include "hub.h" | |
83c9089e | 35 | #include "monitor/monitor.h" |
d49b6836 | 36 | #include "qemu/error-report.h" |
1de7afc9 | 37 | #include "qemu/sockets.h" |
68ac40d2 | 38 | #include "slirp/libslirp.h" |
7aac531e | 39 | #include "slirp/ip6.h" |
4d43a603 | 40 | #include "chardev/char-fe.h" |
f6c2e66a | 41 | #include "sysemu/sysemu.h" |
f348b6d1 | 42 | #include "qemu/cutils.h" |
32a6ebec | 43 | #include "qapi/error.h" |
68ac40d2 MM |
44 | |
45 | static 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 | ||
70 | struct slirp_config_str { | |
71 | struct slirp_config_str *next; | |
72 | int flags; | |
73 | char str[1024]; | |
74 | int legacy_format; | |
75 | }; | |
76 | ||
77 | typedef struct SlirpState { | |
4e68f7a0 | 78 | NetClientState nc; |
68ac40d2 | 79 | QTAILQ_ENTRY(SlirpState) entry; |
68ac40d2 | 80 | Slirp *slirp; |
f6c2e66a | 81 | Notifier exit_notifier; |
68ac40d2 | 82 | #ifndef _WIN32 |
f95cc8b6 | 83 | gchar *smb_dir; |
68ac40d2 MM |
84 | #endif |
85 | } SlirpState; | |
86 | ||
87 | static struct slirp_config_str *slirp_configs; | |
88 | const char *legacy_tftp_prefix; | |
89 | const char *legacy_bootp_filename; | |
90 | static QTAILQ_HEAD(slirp_stacks, SlirpState) slirp_stacks = | |
91 | QTAILQ_HEAD_INITIALIZER(slirp_stacks); | |
92 | ||
93 | static int slirp_hostfwd(SlirpState *s, const char *redir_str, | |
94 | int legacy_format); | |
95 | static int slirp_guestfwd(SlirpState *s, const char *config_str, | |
96 | int legacy_format); | |
97 | ||
98 | #ifndef _WIN32 | |
99 | static const char *legacy_smb_export; | |
100 | ||
101 | static int slirp_smb(SlirpState *s, const char *exported_dir, | |
102 | struct in_addr vserver_addr); | |
103 | static void slirp_smb_cleanup(SlirpState *s); | |
104 | #else | |
105 | static inline void slirp_smb_cleanup(SlirpState *s) { } | |
106 | #endif | |
107 | ||
68ac40d2 MM |
108 | void slirp_output(void *opaque, const uint8_t *pkt, int pkt_len) |
109 | { | |
110 | SlirpState *s = opaque; | |
111 | ||
ce20b5be | 112 | qemu_send_packet(&s->nc, pkt, pkt_len); |
68ac40d2 MM |
113 | } |
114 | ||
4e68f7a0 | 115 | static ssize_t net_slirp_receive(NetClientState *nc, const uint8_t *buf, size_t size) |
68ac40d2 | 116 | { |
ce20b5be | 117 | SlirpState *s = DO_UPCAST(SlirpState, nc, nc); |
68ac40d2 MM |
118 | |
119 | slirp_input(s->slirp, buf, size); | |
120 | ||
121 | return size; | |
122 | } | |
123 | ||
f6c2e66a PB |
124 | static 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 | ||
4e68f7a0 | 130 | static void net_slirp_cleanup(NetClientState *nc) |
68ac40d2 | 131 | { |
ce20b5be | 132 | SlirpState *s = DO_UPCAST(SlirpState, nc, nc); |
68ac40d2 MM |
133 | |
134 | slirp_cleanup(s->slirp); | |
67f3280c MAL |
135 | if (s->exit_notifier.notify) { |
136 | qemu_remove_exit_notifier(&s->exit_notifier); | |
137 | } | |
68ac40d2 MM |
138 | slirp_smb_cleanup(s); |
139 | QTAILQ_REMOVE(&slirp_stacks, s, entry); | |
68ac40d2 MM |
140 | } |
141 | ||
ce20b5be | 142 | static NetClientInfo net_slirp_info = { |
f394b2e2 | 143 | .type = NET_CLIENT_DRIVER_USER, |
ce20b5be MM |
144 | .size = sizeof(SlirpState), |
145 | .receive = net_slirp_receive, | |
146 | .cleanup = net_slirp_cleanup, | |
147 | }; | |
148 | ||
4e68f7a0 | 149 | static int net_slirp_init(NetClientState *peer, const char *model, |
68ac40d2 | 150 | const char *name, int restricted, |
0b11c036 ST |
151 | bool ipv4, const char *vnetwork, const char *vhost, |
152 | bool ipv6, const char *vprefix6, int vprefix6_len, | |
7aac531e | 153 | const char *vhost6, |
68ac40d2 MM |
154 | const char *vhostname, const char *tftp_export, |
155 | const char *bootfile, const char *vdhcp_start, | |
7aac531e YB |
156 | const char *vnameserver, const char *vnameserver6, |
157 | const char *smb_export, const char *vsmbserver, | |
158 | const char **dnssearch) | |
68ac40d2 MM |
159 | { |
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 */ | |
7aac531e YB |
166 | struct in6_addr ip6_prefix; |
167 | struct in6_addr ip6_host; | |
168 | struct in6_addr ip6_dns; | |
68ac40d2 MM |
169 | #ifndef _WIN32 |
170 | struct in_addr smbsrv = { .s_addr = 0 }; | |
171 | #endif | |
4e68f7a0 | 172 | NetClientState *nc; |
68ac40d2 MM |
173 | SlirpState *s; |
174 | char buf[20]; | |
175 | uint32_t addr; | |
176 | int shift; | |
177 | char *end; | |
178 | struct slirp_config_str *config; | |
179 | ||
0b11c036 ST |
180 | if (!ipv4 && (vnetwork || vhost || vnameserver)) { |
181 | return -1; | |
182 | } | |
183 | ||
184 | if (!ipv6 && (vprefix6 || vhost6 || vnameserver6)) { | |
185 | return -1; | |
186 | } | |
187 | ||
188 | if (!ipv4 && !ipv6) { | |
189 | /* It doesn't make sense to disable both */ | |
190 | return -1; | |
191 | } | |
192 | ||
68ac40d2 MM |
193 | if (!tftp_export) { |
194 | tftp_export = legacy_tftp_prefix; | |
195 | } | |
196 | if (!bootfile) { | |
197 | bootfile = legacy_bootp_filename; | |
198 | } | |
199 | ||
200 | if (vnetwork) { | |
201 | if (get_str_sep(buf, sizeof(buf), &vnetwork, '/') < 0) { | |
202 | if (!inet_aton(vnetwork, &net)) { | |
203 | return -1; | |
204 | } | |
205 | addr = ntohl(net.s_addr); | |
206 | if (!(addr & 0x80000000)) { | |
207 | mask.s_addr = htonl(0xff000000); /* class A */ | |
208 | } else if ((addr & 0xfff00000) == 0xac100000) { | |
209 | mask.s_addr = htonl(0xfff00000); /* priv. 172.16.0.0/12 */ | |
210 | } else if ((addr & 0xc0000000) == 0x80000000) { | |
211 | mask.s_addr = htonl(0xffff0000); /* class B */ | |
212 | } else if ((addr & 0xffff0000) == 0xc0a80000) { | |
213 | mask.s_addr = htonl(0xffff0000); /* priv. 192.168.0.0/16 */ | |
214 | } else if ((addr & 0xffff0000) == 0xc6120000) { | |
215 | mask.s_addr = htonl(0xfffe0000); /* tests 198.18.0.0/15 */ | |
216 | } else if ((addr & 0xe0000000) == 0xe0000000) { | |
217 | mask.s_addr = htonl(0xffffff00); /* class C */ | |
218 | } else { | |
219 | mask.s_addr = htonl(0xfffffff0); /* multicast/reserved */ | |
220 | } | |
221 | } else { | |
222 | if (!inet_aton(buf, &net)) { | |
223 | return -1; | |
224 | } | |
225 | shift = strtol(vnetwork, &end, 10); | |
226 | if (*end != '\0') { | |
227 | if (!inet_aton(vnetwork, &mask)) { | |
228 | return -1; | |
229 | } | |
230 | } else if (shift < 4 || shift > 32) { | |
231 | return -1; | |
232 | } else { | |
233 | mask.s_addr = htonl(0xffffffff << (32 - shift)); | |
234 | } | |
235 | } | |
236 | net.s_addr &= mask.s_addr; | |
237 | host.s_addr = net.s_addr | (htonl(0x0202) & ~mask.s_addr); | |
238 | dhcp.s_addr = net.s_addr | (htonl(0x020f) & ~mask.s_addr); | |
239 | dns.s_addr = net.s_addr | (htonl(0x0203) & ~mask.s_addr); | |
240 | } | |
241 | ||
242 | if (vhost && !inet_aton(vhost, &host)) { | |
243 | return -1; | |
244 | } | |
245 | if ((host.s_addr & mask.s_addr) != net.s_addr) { | |
246 | return -1; | |
247 | } | |
248 | ||
68756ba8 | 249 | if (vnameserver && !inet_aton(vnameserver, &dns)) { |
68ac40d2 MM |
250 | return -1; |
251 | } | |
68756ba8 BS |
252 | if ((dns.s_addr & mask.s_addr) != net.s_addr || |
253 | dns.s_addr == host.s_addr) { | |
68ac40d2 MM |
254 | return -1; |
255 | } | |
256 | ||
68756ba8 | 257 | if (vdhcp_start && !inet_aton(vdhcp_start, &dhcp)) { |
68ac40d2 MM |
258 | return -1; |
259 | } | |
68756ba8 BS |
260 | if ((dhcp.s_addr & mask.s_addr) != net.s_addr || |
261 | dhcp.s_addr == host.s_addr || dhcp.s_addr == dns.s_addr) { | |
68ac40d2 MM |
262 | return -1; |
263 | } | |
264 | ||
265 | #ifndef _WIN32 | |
266 | if (vsmbserver && !inet_aton(vsmbserver, &smbsrv)) { | |
267 | return -1; | |
268 | } | |
269 | #endif | |
270 | ||
7aac531e YB |
271 | #if defined(_WIN32) && (_WIN32_WINNT < 0x0600) |
272 | /* No inet_pton helper before Vista... */ | |
273 | if (vprefix6) { | |
274 | /* Unsupported */ | |
275 | return -1; | |
276 | } | |
277 | memset(&ip6_prefix, 0, sizeof(ip6_prefix)); | |
278 | ip6_prefix.s6_addr[0] = 0xfe; | |
279 | ip6_prefix.s6_addr[1] = 0xc0; | |
280 | #else | |
281 | if (!vprefix6) { | |
282 | vprefix6 = "fec0::"; | |
283 | } | |
284 | if (!inet_pton(AF_INET6, vprefix6, &ip6_prefix)) { | |
285 | return -1; | |
286 | } | |
287 | #endif | |
288 | ||
289 | if (!vprefix6_len) { | |
290 | vprefix6_len = 64; | |
291 | } | |
292 | if (vprefix6_len < 0 || vprefix6_len > 126) { | |
293 | return -1; | |
294 | } | |
295 | ||
296 | if (vhost6) { | |
297 | #if defined(_WIN32) && (_WIN32_WINNT < 0x0600) | |
298 | return -1; | |
299 | #else | |
300 | if (!inet_pton(AF_INET6, vhost6, &ip6_host)) { | |
301 | return -1; | |
302 | } | |
303 | if (!in6_equal_net(&ip6_prefix, &ip6_host, vprefix6_len)) { | |
304 | return -1; | |
305 | } | |
306 | #endif | |
307 | } else { | |
308 | ip6_host = ip6_prefix; | |
309 | ip6_host.s6_addr[15] |= 2; | |
310 | } | |
311 | ||
312 | if (vnameserver6) { | |
313 | #if defined(_WIN32) && (_WIN32_WINNT < 0x0600) | |
314 | return -1; | |
315 | #else | |
316 | if (!inet_pton(AF_INET6, vnameserver6, &ip6_dns)) { | |
317 | return -1; | |
318 | } | |
319 | if (!in6_equal_net(&ip6_prefix, &ip6_dns, vprefix6_len)) { | |
320 | return -1; | |
321 | } | |
322 | #endif | |
323 | } else { | |
324 | ip6_dns = ip6_prefix; | |
325 | ip6_dns.s6_addr[15] |= 3; | |
326 | } | |
327 | ||
328 | ||
ab5f3f84 | 329 | nc = qemu_new_net_client(&net_slirp_info, peer, model, name); |
ce20b5be MM |
330 | |
331 | snprintf(nc->info_str, sizeof(nc->info_str), | |
c54ed5bc JK |
332 | "net=%s,restrict=%s", inet_ntoa(net), |
333 | restricted ? "on" : "off"); | |
ce20b5be MM |
334 | |
335 | s = DO_UPCAST(SlirpState, nc, nc); | |
336 | ||
0b11c036 ST |
337 | s->slirp = slirp_init(restricted, ipv4, net, mask, host, |
338 | ipv6, ip6_prefix, vprefix6_len, ip6_host, | |
7aac531e YB |
339 | vhostname, tftp_export, bootfile, dhcp, |
340 | dns, ip6_dns, dnssearch, s); | |
68ac40d2 MM |
341 | QTAILQ_INSERT_TAIL(&slirp_stacks, s, entry); |
342 | ||
343 | for (config = slirp_configs; config; config = config->next) { | |
344 | if (config->flags & SLIRP_CFG_HOSTFWD) { | |
345 | if (slirp_hostfwd(s, config->str, | |
346 | config->flags & SLIRP_CFG_LEGACY) < 0) | |
ce20b5be | 347 | goto error; |
68ac40d2 MM |
348 | } else { |
349 | if (slirp_guestfwd(s, config->str, | |
350 | config->flags & SLIRP_CFG_LEGACY) < 0) | |
ce20b5be | 351 | goto error; |
68ac40d2 MM |
352 | } |
353 | } | |
354 | #ifndef _WIN32 | |
355 | if (!smb_export) { | |
356 | smb_export = legacy_smb_export; | |
357 | } | |
358 | if (smb_export) { | |
359 | if (slirp_smb(s, smb_export, smbsrv) < 0) | |
ce20b5be | 360 | goto error; |
68ac40d2 MM |
361 | } |
362 | #endif | |
363 | ||
f6c2e66a PB |
364 | s->exit_notifier.notify = slirp_smb_exit; |
365 | qemu_add_exit_notifier(&s->exit_notifier); | |
68ac40d2 | 366 | return 0; |
ce20b5be MM |
367 | |
368 | error: | |
b20c6b9e | 369 | qemu_del_net_client(nc); |
ce20b5be | 370 | return -1; |
68ac40d2 MM |
371 | } |
372 | ||
373 | static SlirpState *slirp_lookup(Monitor *mon, const char *vlan, | |
374 | const char *stack) | |
375 | { | |
68ac40d2 MM |
376 | |
377 | if (vlan) { | |
4e68f7a0 | 378 | NetClientState *nc; |
90d87a33 | 379 | nc = net_hub_find_client_by_name(strtol(vlan, NULL, 0), stack); |
ce20b5be | 380 | if (!nc) { |
b739ef05 | 381 | monitor_printf(mon, "unrecognized (vlan-id, stackname) pair\n"); |
68ac40d2 MM |
382 | return NULL; |
383 | } | |
ce20b5be | 384 | if (strcmp(nc->model, "user")) { |
68ac40d2 MM |
385 | monitor_printf(mon, "invalid device specified\n"); |
386 | return NULL; | |
387 | } | |
ce20b5be | 388 | return DO_UPCAST(SlirpState, nc, nc); |
68ac40d2 MM |
389 | } else { |
390 | if (QTAILQ_EMPTY(&slirp_stacks)) { | |
391 | monitor_printf(mon, "user mode network stack not in use\n"); | |
392 | return NULL; | |
393 | } | |
394 | return QTAILQ_FIRST(&slirp_stacks); | |
395 | } | |
396 | } | |
397 | ||
3e5a50d6 | 398 | void hmp_hostfwd_remove(Monitor *mon, const QDict *qdict) |
68ac40d2 MM |
399 | { |
400 | struct in_addr host_addr = { .s_addr = INADDR_ANY }; | |
401 | int host_port; | |
e30e5eb6 | 402 | char buf[256]; |
68ac40d2 MM |
403 | const char *src_str, *p; |
404 | SlirpState *s; | |
405 | int is_udp = 0; | |
406 | int err; | |
407 | const char *arg1 = qdict_get_str(qdict, "arg1"); | |
408 | const char *arg2 = qdict_get_try_str(qdict, "arg2"); | |
409 | const char *arg3 = qdict_get_try_str(qdict, "arg3"); | |
410 | ||
411 | if (arg2) { | |
412 | s = slirp_lookup(mon, arg1, arg2); | |
413 | src_str = arg3; | |
414 | } else { | |
415 | s = slirp_lookup(mon, NULL, NULL); | |
416 | src_str = arg1; | |
417 | } | |
418 | if (!s) { | |
419 | return; | |
420 | } | |
421 | ||
68ac40d2 | 422 | p = src_str; |
e30e5eb6 MA |
423 | if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) { |
424 | goto fail_syntax; | |
425 | } | |
68ac40d2 MM |
426 | |
427 | if (!strcmp(buf, "tcp") || buf[0] == '\0') { | |
428 | is_udp = 0; | |
429 | } else if (!strcmp(buf, "udp")) { | |
430 | is_udp = 1; | |
431 | } else { | |
432 | goto fail_syntax; | |
433 | } | |
434 | ||
435 | if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) { | |
436 | goto fail_syntax; | |
437 | } | |
438 | if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) { | |
439 | goto fail_syntax; | |
440 | } | |
441 | ||
442 | host_port = atoi(p); | |
443 | ||
70381662 | 444 | err = slirp_remove_hostfwd(s->slirp, is_udp, host_addr, host_port); |
68ac40d2 MM |
445 | |
446 | monitor_printf(mon, "host forwarding rule for %s %s\n", src_str, | |
b15ba6c9 | 447 | err ? "not found" : "removed"); |
68ac40d2 MM |
448 | return; |
449 | ||
450 | fail_syntax: | |
451 | monitor_printf(mon, "invalid format\n"); | |
452 | } | |
453 | ||
454 | static int slirp_hostfwd(SlirpState *s, const char *redir_str, | |
455 | int legacy_format) | |
456 | { | |
457 | struct in_addr host_addr = { .s_addr = INADDR_ANY }; | |
458 | struct in_addr guest_addr = { .s_addr = 0 }; | |
459 | int host_port, guest_port; | |
460 | const char *p; | |
461 | char buf[256]; | |
462 | int is_udp; | |
463 | char *end; | |
464 | ||
465 | p = redir_str; | |
466 | if (!p || get_str_sep(buf, sizeof(buf), &p, ':') < 0) { | |
467 | goto fail_syntax; | |
468 | } | |
469 | if (!strcmp(buf, "tcp") || buf[0] == '\0') { | |
470 | is_udp = 0; | |
471 | } else if (!strcmp(buf, "udp")) { | |
472 | is_udp = 1; | |
473 | } else { | |
474 | goto fail_syntax; | |
475 | } | |
476 | ||
477 | if (!legacy_format) { | |
478 | if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) { | |
479 | goto fail_syntax; | |
480 | } | |
481 | if (buf[0] != '\0' && !inet_aton(buf, &host_addr)) { | |
482 | goto fail_syntax; | |
483 | } | |
484 | } | |
485 | ||
486 | if (get_str_sep(buf, sizeof(buf), &p, legacy_format ? ':' : '-') < 0) { | |
487 | goto fail_syntax; | |
488 | } | |
489 | host_port = strtol(buf, &end, 0); | |
0bed71ed | 490 | if (*end != '\0' || host_port < 0 || host_port > 65535) { |
68ac40d2 MM |
491 | goto fail_syntax; |
492 | } | |
493 | ||
494 | if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) { | |
495 | goto fail_syntax; | |
496 | } | |
497 | if (buf[0] != '\0' && !inet_aton(buf, &guest_addr)) { | |
498 | goto fail_syntax; | |
499 | } | |
500 | ||
501 | guest_port = strtol(p, &end, 0); | |
502 | if (*end != '\0' || guest_port < 1 || guest_port > 65535) { | |
503 | goto fail_syntax; | |
504 | } | |
505 | ||
506 | if (slirp_add_hostfwd(s->slirp, is_udp, host_addr, host_port, guest_addr, | |
507 | guest_port) < 0) { | |
1ecda02b MA |
508 | error_report("could not set up host forwarding rule '%s'", |
509 | redir_str); | |
68ac40d2 MM |
510 | return -1; |
511 | } | |
512 | return 0; | |
513 | ||
514 | fail_syntax: | |
1ecda02b | 515 | error_report("invalid host forwarding rule '%s'", redir_str); |
68ac40d2 MM |
516 | return -1; |
517 | } | |
518 | ||
3e5a50d6 | 519 | void hmp_hostfwd_add(Monitor *mon, const QDict *qdict) |
68ac40d2 MM |
520 | { |
521 | const char *redir_str; | |
522 | SlirpState *s; | |
523 | const char *arg1 = qdict_get_str(qdict, "arg1"); | |
524 | const char *arg2 = qdict_get_try_str(qdict, "arg2"); | |
525 | const char *arg3 = qdict_get_try_str(qdict, "arg3"); | |
526 | ||
527 | if (arg2) { | |
528 | s = slirp_lookup(mon, arg1, arg2); | |
529 | redir_str = arg3; | |
530 | } else { | |
531 | s = slirp_lookup(mon, NULL, NULL); | |
532 | redir_str = arg1; | |
533 | } | |
534 | if (s) { | |
535 | slirp_hostfwd(s, redir_str, 0); | |
536 | } | |
537 | ||
538 | } | |
539 | ||
540 | int net_slirp_redir(const char *redir_str) | |
541 | { | |
542 | struct slirp_config_str *config; | |
543 | ||
544 | if (QTAILQ_EMPTY(&slirp_stacks)) { | |
7267c094 | 545 | config = g_malloc(sizeof(*config)); |
68ac40d2 MM |
546 | pstrcpy(config->str, sizeof(config->str), redir_str); |
547 | config->flags = SLIRP_CFG_HOSTFWD | SLIRP_CFG_LEGACY; | |
548 | config->next = slirp_configs; | |
549 | slirp_configs = config; | |
550 | return 0; | |
551 | } | |
552 | ||
553 | return slirp_hostfwd(QTAILQ_FIRST(&slirp_stacks), redir_str, 1); | |
554 | } | |
555 | ||
556 | #ifndef _WIN32 | |
557 | ||
558 | /* automatic user mode samba server configuration */ | |
559 | static void slirp_smb_cleanup(SlirpState *s) | |
560 | { | |
5a01e99f | 561 | int ret; |
68ac40d2 | 562 | |
f95cc8b6 DDAG |
563 | if (s->smb_dir) { |
564 | gchar *cmd = g_strdup_printf("rm -rf %s", s->smb_dir); | |
5a01e99f | 565 | ret = system(cmd); |
24ac07de | 566 | if (ret == -1 || !WIFEXITED(ret)) { |
1ecda02b | 567 | error_report("'%s' failed.", cmd); |
5a01e99f | 568 | } else if (WEXITSTATUS(ret)) { |
1ecda02b MA |
569 | error_report("'%s' failed. Error code: %d", |
570 | cmd, WEXITSTATUS(ret)); | |
5a01e99f | 571 | } |
f95cc8b6 DDAG |
572 | g_free(cmd); |
573 | g_free(s->smb_dir); | |
574 | s->smb_dir = NULL; | |
68ac40d2 MM |
575 | } |
576 | } | |
577 | ||
578 | static int slirp_smb(SlirpState* s, const char *exported_dir, | |
579 | struct in_addr vserver_addr) | |
580 | { | |
f95cc8b6 DDAG |
581 | char *smb_conf; |
582 | char *smb_cmdline; | |
1cb1c5d1 | 583 | struct passwd *passwd; |
68ac40d2 MM |
584 | FILE *f; |
585 | ||
1cb1c5d1 JK |
586 | passwd = getpwuid(geteuid()); |
587 | if (!passwd) { | |
588 | error_report("failed to retrieve user name"); | |
589 | return -1; | |
590 | } | |
591 | ||
927d811b DH |
592 | if (access(CONFIG_SMBD_COMMAND, F_OK)) { |
593 | error_report("could not find '%s', please install it", | |
594 | CONFIG_SMBD_COMMAND); | |
595 | return -1; | |
596 | } | |
597 | ||
598 | if (access(exported_dir, R_OK | X_OK)) { | |
22a61f36 JK |
599 | error_report("error accessing shared directory '%s': %s", |
600 | exported_dir, strerror(errno)); | |
927d811b DH |
601 | return -1; |
602 | } | |
603 | ||
f95cc8b6 DDAG |
604 | s->smb_dir = g_dir_make_tmp("qemu-smb.XXXXXX", NULL); |
605 | if (!s->smb_dir) { | |
606 | error_report("could not create samba server dir"); | |
68ac40d2 MM |
607 | return -1; |
608 | } | |
f95cc8b6 | 609 | smb_conf = g_strdup_printf("%s/%s", s->smb_dir, "smb.conf"); |
68ac40d2 MM |
610 | |
611 | f = fopen(smb_conf, "w"); | |
612 | if (!f) { | |
613 | slirp_smb_cleanup(s); | |
1ecda02b MA |
614 | error_report("could not create samba server configuration file '%s'", |
615 | smb_conf); | |
f95cc8b6 | 616 | g_free(smb_conf); |
68ac40d2 MM |
617 | return -1; |
618 | } | |
619 | fprintf(f, | |
620 | "[global]\n" | |
621 | "private dir=%s\n" | |
7912d04b PW |
622 | "interfaces=127.0.0.1\n" |
623 | "bind interfaces only=yes\n" | |
68ac40d2 MM |
624 | "pid directory=%s\n" |
625 | "lock directory=%s\n" | |
276eda57 | 626 | "state directory=%s\n" |
7912d04b | 627 | "cache directory=%s\n" |
b87b8a8b | 628 | "ncalrpc dir=%s/ncalrpc\n" |
68ac40d2 MM |
629 | "log file=%s/log.smbd\n" |
630 | "smb passwd file=%s/smbpasswd\n" | |
c2804ee6 MB |
631 | "security = user\n" |
632 | "map to guest = Bad User\n" | |
7912d04b PW |
633 | "load printers = no\n" |
634 | "printing = bsd\n" | |
635 | "disable spoolss = yes\n" | |
636 | "usershare max shares = 0\n" | |
68ac40d2 MM |
637 | "[qemu]\n" |
638 | "path=%s\n" | |
639 | "read only=no\n" | |
1cb1c5d1 JK |
640 | "guest ok=yes\n" |
641 | "force user=%s\n", | |
68ac40d2 MM |
642 | s->smb_dir, |
643 | s->smb_dir, | |
644 | s->smb_dir, | |
645 | s->smb_dir, | |
646 | s->smb_dir, | |
276eda57 | 647 | s->smb_dir, |
b87b8a8b | 648 | s->smb_dir, |
7912d04b | 649 | s->smb_dir, |
1cb1c5d1 JK |
650 | exported_dir, |
651 | passwd->pw_name | |
68ac40d2 MM |
652 | ); |
653 | fclose(f); | |
654 | ||
f95cc8b6 | 655 | smb_cmdline = g_strdup_printf("%s -l %s -s %s", |
44d8d2b2 | 656 | CONFIG_SMBD_COMMAND, s->smb_dir, smb_conf); |
f95cc8b6 | 657 | g_free(smb_conf); |
68ac40d2 | 658 | |
5c1e1890 MT |
659 | if (slirp_add_exec(s->slirp, 0, smb_cmdline, &vserver_addr, 139) < 0 || |
660 | slirp_add_exec(s->slirp, 0, smb_cmdline, &vserver_addr, 445) < 0) { | |
68ac40d2 | 661 | slirp_smb_cleanup(s); |
f95cc8b6 | 662 | g_free(smb_cmdline); |
1ecda02b | 663 | error_report("conflicting/invalid smbserver address"); |
68ac40d2 MM |
664 | return -1; |
665 | } | |
f95cc8b6 | 666 | g_free(smb_cmdline); |
68ac40d2 MM |
667 | return 0; |
668 | } | |
669 | ||
670 | /* automatic user mode samba server configuration (legacy interface) */ | |
671 | int net_slirp_smb(const char *exported_dir) | |
672 | { | |
673 | struct in_addr vserver_addr = { .s_addr = 0 }; | |
674 | ||
675 | if (legacy_smb_export) { | |
676 | fprintf(stderr, "-smb given twice\n"); | |
677 | return -1; | |
678 | } | |
679 | legacy_smb_export = exported_dir; | |
680 | if (!QTAILQ_EMPTY(&slirp_stacks)) { | |
681 | return slirp_smb(QTAILQ_FIRST(&slirp_stacks), exported_dir, | |
682 | vserver_addr); | |
683 | } | |
684 | return 0; | |
685 | } | |
686 | ||
687 | #endif /* !defined(_WIN32) */ | |
688 | ||
689 | struct GuestFwd { | |
32a6ebec | 690 | CharBackend hd; |
68ac40d2 MM |
691 | struct in_addr server; |
692 | int port; | |
693 | Slirp *slirp; | |
694 | }; | |
695 | ||
696 | static int guestfwd_can_read(void *opaque) | |
697 | { | |
698 | struct GuestFwd *fwd = opaque; | |
699 | return slirp_socket_can_recv(fwd->slirp, fwd->server, fwd->port); | |
700 | } | |
701 | ||
702 | static void guestfwd_read(void *opaque, const uint8_t *buf, int size) | |
703 | { | |
704 | struct GuestFwd *fwd = opaque; | |
705 | slirp_socket_recv(fwd->slirp, fwd->server, fwd->port, buf, size); | |
706 | } | |
707 | ||
708 | static int slirp_guestfwd(SlirpState *s, const char *config_str, | |
709 | int legacy_format) | |
710 | { | |
711 | struct in_addr server = { .s_addr = 0 }; | |
712 | struct GuestFwd *fwd; | |
713 | const char *p; | |
714 | char buf[128]; | |
715 | char *end; | |
716 | int port; | |
717 | ||
718 | p = config_str; | |
719 | if (legacy_format) { | |
720 | if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) { | |
721 | goto fail_syntax; | |
722 | } | |
723 | } else { | |
724 | if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) { | |
725 | goto fail_syntax; | |
726 | } | |
727 | if (strcmp(buf, "tcp") && buf[0] != '\0') { | |
728 | goto fail_syntax; | |
729 | } | |
730 | if (get_str_sep(buf, sizeof(buf), &p, ':') < 0) { | |
731 | goto fail_syntax; | |
732 | } | |
733 | if (buf[0] != '\0' && !inet_aton(buf, &server)) { | |
734 | goto fail_syntax; | |
735 | } | |
736 | if (get_str_sep(buf, sizeof(buf), &p, '-') < 0) { | |
737 | goto fail_syntax; | |
738 | } | |
739 | } | |
740 | port = strtol(buf, &end, 10); | |
741 | if (*end != '\0' || port < 1 || port > 65535) { | |
742 | goto fail_syntax; | |
743 | } | |
744 | ||
a9899996 | 745 | snprintf(buf, sizeof(buf), "guestfwd.tcp.%d", port); |
68ac40d2 | 746 | |
b412eb61 AG |
747 | if ((strlen(p) > 4) && !strncmp(p, "cmd:", 4)) { |
748 | if (slirp_add_exec(s->slirp, 0, &p[4], &server, port) < 0) { | |
749 | error_report("conflicting/invalid host:port in guest forwarding " | |
750 | "rule '%s'", config_str); | |
b412eb61 AG |
751 | return -1; |
752 | } | |
753 | } else { | |
32a6ebec | 754 | Error *err = NULL; |
0ec7b3e7 | 755 | Chardev *chr = qemu_chr_new(buf, p); |
32a6ebec MAL |
756 | |
757 | if (!chr) { | |
b412eb61 | 758 | error_report("could not open guest forwarding device '%s'", buf); |
32a6ebec MAL |
759 | return -1; |
760 | } | |
761 | ||
762 | fwd = g_new(struct GuestFwd, 1); | |
763 | qemu_chr_fe_init(&fwd->hd, chr, &err); | |
764 | if (err) { | |
765 | error_report_err(err); | |
b412eb61 AG |
766 | g_free(fwd); |
767 | return -1; | |
768 | } | |
68ac40d2 | 769 | |
d14fabd9 | 770 | if (slirp_add_exec(s->slirp, 3, &fwd->hd, &server, port) < 0) { |
b412eb61 AG |
771 | error_report("conflicting/invalid host:port in guest forwarding " |
772 | "rule '%s'", config_str); | |
773 | g_free(fwd); | |
774 | return -1; | |
775 | } | |
776 | fwd->server = server; | |
777 | fwd->port = port; | |
778 | fwd->slirp = s->slirp; | |
779 | ||
5345fdb4 | 780 | qemu_chr_fe_set_handlers(&fwd->hd, guestfwd_can_read, guestfwd_read, |
39ab61c6 | 781 | NULL, fwd, NULL, true); |
b412eb61 | 782 | } |
68ac40d2 MM |
783 | return 0; |
784 | ||
785 | fail_syntax: | |
1ecda02b | 786 | error_report("invalid guest forwarding rule '%s'", config_str); |
68ac40d2 MM |
787 | return -1; |
788 | } | |
789 | ||
1ce6be24 | 790 | void hmp_info_usernet(Monitor *mon, const QDict *qdict) |
68ac40d2 MM |
791 | { |
792 | SlirpState *s; | |
793 | ||
794 | QTAILQ_FOREACH(s, &slirp_stacks, entry) { | |
90d87a33 SH |
795 | int id; |
796 | bool got_vlan_id = net_hub_id_for_client(&s->nc, &id) == 0; | |
ce20b5be | 797 | monitor_printf(mon, "VLAN %d (%s):\n", |
90d87a33 | 798 | got_vlan_id ? id : -1, |
ce20b5be | 799 | s->nc.name); |
68ac40d2 MM |
800 | slirp_connection_info(s->slirp, mon); |
801 | } | |
802 | } | |
803 | ||
094f15c5 LE |
804 | static void |
805 | net_init_slirp_configs(const StringList *fwd, int flags) | |
68ac40d2 | 806 | { |
094f15c5 LE |
807 | while (fwd) { |
808 | struct slirp_config_str *config; | |
68ac40d2 | 809 | |
094f15c5 LE |
810 | config = g_malloc0(sizeof(*config)); |
811 | pstrcpy(config->str, sizeof(config->str), fwd->value->str); | |
812 | config->flags = flags; | |
813 | config->next = slirp_configs; | |
814 | slirp_configs = config; | |
68ac40d2 | 815 | |
094f15c5 | 816 | fwd = fwd->next; |
68ac40d2 | 817 | } |
68ac40d2 MM |
818 | } |
819 | ||
63d2960b KS |
820 | static const char **slirp_dnssearch(const StringList *dnsname) |
821 | { | |
822 | const StringList *c = dnsname; | |
823 | size_t i = 0, num_opts = 0; | |
824 | const char **ret; | |
825 | ||
826 | while (c) { | |
827 | num_opts++; | |
828 | c = c->next; | |
829 | } | |
830 | ||
831 | if (num_opts == 0) { | |
832 | return NULL; | |
833 | } | |
834 | ||
835 | ret = g_malloc((num_opts + 1) * sizeof(*ret)); | |
836 | c = dnsname; | |
837 | while (c) { | |
838 | ret[i++] = c->value->str; | |
839 | c = c->next; | |
840 | } | |
841 | ret[i] = NULL; | |
842 | return ret; | |
843 | } | |
844 | ||
cebea510 | 845 | int net_init_slirp(const Netdev *netdev, const char *name, |
a30ecde6 | 846 | NetClientState *peer, Error **errp) |
68ac40d2 | 847 | { |
a30ecde6 | 848 | /* FIXME error_setg(errp, ...) on failure */ |
68ac40d2 | 849 | struct slirp_config_str *config; |
094f15c5 | 850 | char *vnet; |
68ac40d2 | 851 | int ret; |
094f15c5 | 852 | const NetdevUserOptions *user; |
63d2960b | 853 | const char **dnssearch; |
0b11c036 | 854 | bool ipv4 = true, ipv6 = true; |
68ac40d2 | 855 | |
f394b2e2 EB |
856 | assert(netdev->type == NET_CLIENT_DRIVER_USER); |
857 | user = &netdev->u.user; | |
68ac40d2 | 858 | |
0b11c036 ST |
859 | if ((user->has_ipv6 && user->ipv6 && !user->has_ipv4) || |
860 | (user->has_ipv4 && !user->ipv4)) { | |
861 | ipv4 = 0; | |
862 | } | |
863 | if ((user->has_ipv4 && user->ipv4 && !user->has_ipv6) || | |
864 | (user->has_ipv6 && !user->ipv6)) { | |
865 | ipv6 = 0; | |
866 | } | |
867 | ||
094f15c5 LE |
868 | vnet = user->has_net ? g_strdup(user->net) : |
869 | user->has_ip ? g_strdup_printf("%s/24", user->ip) : | |
870 | NULL; | |
68ac40d2 | 871 | |
63d2960b KS |
872 | dnssearch = slirp_dnssearch(user->dnssearch); |
873 | ||
094f15c5 | 874 | /* all optional fields are initialized to "all bits zero" */ |
68ac40d2 | 875 | |
094f15c5 LE |
876 | net_init_slirp_configs(user->hostfwd, SLIRP_CFG_HOSTFWD); |
877 | net_init_slirp_configs(user->guestfwd, 0); | |
68ac40d2 | 878 | |
0b11c036 ST |
879 | ret = net_slirp_init(peer, "user", name, user->q_restrict, |
880 | ipv4, vnet, user->host, | |
881 | ipv6, user->ipv6_prefix, user->ipv6_prefixlen, | |
d8eb3864 | 882 | user->ipv6_host, user->hostname, user->tftp, |
7aac531e | 883 | user->bootfile, user->dhcpstart, |
d8eb3864 | 884 | user->dns, user->ipv6_dns, user->smb, |
63d2960b | 885 | user->smbserver, dnssearch); |
68ac40d2 MM |
886 | |
887 | while (slirp_configs) { | |
888 | config = slirp_configs; | |
889 | slirp_configs = config->next; | |
7267c094 | 890 | g_free(config); |
68ac40d2 MM |
891 | } |
892 | ||
7267c094 | 893 | g_free(vnet); |
63d2960b | 894 | g_free(dnssearch); |
68ac40d2 MM |
895 | |
896 | return ret; | |
897 | } | |
898 | ||
899 | int net_slirp_parse_legacy(QemuOptsList *opts_list, const char *optarg, int *ret) | |
900 | { | |
901 | if (strcmp(opts_list->name, "net") != 0 || | |
902 | strncmp(optarg, "channel,", strlen("channel,")) != 0) { | |
903 | return 0; | |
904 | } | |
905 | ||
f853ac66 TH |
906 | error_report("The '-net channel' option is deprecated. " |
907 | "Please use '-netdev user,guestfwd=...' instead."); | |
908 | ||
68ac40d2 MM |
909 | /* handle legacy -net channel,port:chr */ |
910 | optarg += strlen("channel,"); | |
911 | ||
912 | if (QTAILQ_EMPTY(&slirp_stacks)) { | |
913 | struct slirp_config_str *config; | |
914 | ||
7267c094 | 915 | config = g_malloc(sizeof(*config)); |
68ac40d2 MM |
916 | pstrcpy(config->str, sizeof(config->str), optarg); |
917 | config->flags = SLIRP_CFG_LEGACY; | |
918 | config->next = slirp_configs; | |
919 | slirp_configs = config; | |
920 | *ret = 0; | |
921 | } else { | |
922 | *ret = slirp_guestfwd(QTAILQ_FIRST(&slirp_stacks), optarg, 1); | |
923 | } | |
924 | ||
925 | return 1; | |
926 | } | |
927 |