aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGertjan Halkes <qemu@ghalkes.nl>2011-11-11 16:04:20 +0100
committerJan Kiszka <jan.kiszka@siemens.com>2013-06-19 12:44:38 +0200
commit09857d8f6b26698f9f4ea0c0e65907521ac622e1 (patch)
tree59ba4075aa07dd662a96695b4d1a62e6f1b8ae2c
parent43cd47973116c4357eb943a7abe2956f10684663 (diff)
downloadslirp-09857d8f6b26698f9f4ea0c0e65907521ac622e1.zip
slirp-09857d8f6b26698f9f4ea0c0e65907521ac622e1.tar.gz
slirp-09857d8f6b26698f9f4ea0c0e65907521ac622e1.tar.bz2
make user networking hostfwd work with restrict=y
This patch allows the hostfwd option to override the restrict=y setting in the user network stack, as explicitly stated in the documentation on the restrict option: restrict=on|off If this option is enabled, the guest will be isolated, i.e. it will not be able to contact the host and no guest IP packets will be routed over the host to the outside. This option does not affect any explicitly set forwarding rules. Qemu bug tracker: https://bugs.launchpad.net/qemu/+bug/829455 Signed-off-by: Gertjan Halkes <qemu@ghalkes.nl> Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
-rw-r--r--tcp_input.c26
1 files changed, 16 insertions, 10 deletions
diff --git a/tcp_input.c b/tcp_input.c
index 7d1cfb5..e4f7bba 100644
--- a/tcp_input.c
+++ b/tcp_input.c
@@ -317,16 +317,6 @@ void tcp_input(struct mbuf *m, int iphlen, struct socket *inso)
m->m_data += sizeof(struct tcpiphdr) + off - sizeof(struct tcphdr);
m->m_len -= sizeof(struct tcpiphdr) + off - sizeof(struct tcphdr);
- if (slirp->restricted) {
- for (ex_ptr = slirp->exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next) {
- if (ex_ptr->ex_fport == ti->ti_dport &&
- ti->ti_dst.s_addr == ex_ptr->ex_addr.s_addr) {
- break;
- }
- }
- if (!ex_ptr)
- goto drop;
- }
/*
* Locate pcb for segment.
*/
@@ -355,6 +345,22 @@ findso:
* as if it was LISTENING, and continue...
*/
if (so == NULL) {
+ if (slirp->restricted) {
+ /* Any hostfwds will have an existing socket, so we only get here
+ * for non-hostfwd connections. These should be dropped, unless it
+ * happens to be a guestfwd.
+ */
+ for (ex_ptr = slirp->exec_list; ex_ptr; ex_ptr = ex_ptr->ex_next) {
+ if (ex_ptr->ex_fport == ti->ti_dport &&
+ ti->ti_dst.s_addr == ex_ptr->ex_addr.s_addr) {
+ break;
+ }
+ }
+ if (!ex_ptr) {
+ goto dropwithreset;
+ }
+ }
+
if ((tiflags & (TH_SYN | TH_FIN | TH_RST | TH_URG | TH_ACK)) != TH_SYN)
goto dropwithreset;