summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@thewalter.net>2010-11-04 01:52:20 +0000
committerStef Walter <stef@thewalter.net>2011-01-23 15:47:45 -0600
commit1e7189ed5c2e0462b740b6421d8595f91926bda9 (patch)
tree269ca8ebc96af9ceb69072f19ca50b6c069dea1b
parent22162029e12b6c01e0802d743510adc91fd4d796 (diff)
Fix TransparentProxy option to better reflect different types of proxy.
-rw-r--r--common/smtppass.c42
-rw-r--r--common/spio.c2
-rw-r--r--common/sppriv.h6
3 files changed, 45 insertions, 5 deletions
diff --git a/common/smtppass.c b/common/smtppass.c
index b860042..ec7386f 100644
--- a/common/smtppass.c
+++ b/common/smtppass.c
@@ -183,6 +183,8 @@ spthread_t;
#define CFG_SKIP "Skip"
#define VAL_AUTHENTICATED "authenticated"
+#define VAL_CLIENT "client"
+#define VAL_FULL "full"
/* -----------------------------------------------------------------------
* DEFAULT SETTINGS
@@ -339,7 +341,7 @@ int sp_run(const char* configfile, const char* pidfile, int dbg_level)
unlink(g_state.listenname);
#ifdef HAVE_IP_TRANSPARENT
- if(g_state.transparent)
+ if(g_state.transparent == TRANSPARENT_FULL)
{
int value = 1;
if(setsockopt(sock, SOL_IP, IP_TRANSPARENT, &value, sizeof(value)) < 0)
@@ -807,7 +809,7 @@ static int make_connections(spctx_t* ctx, int client)
srcname = NULL;
/* For transparent proxying we have to discover the address to connect to */
- if(g_state.transparent)
+ if(g_state.transparent != TRANSPARENT_OFF)
{
memset(&addr, 0, sizeof(addr));
SANY_LEN(addr) = sizeof(addr);
@@ -830,7 +832,10 @@ static int make_connections(spctx_t* ctx, int client)
}
dstaddr = &addr;
-#ifdef LINUX_NETFILTER
+ }
+
+ if (g_state.transparent == TRANSPARENT_FULL) {
+#ifdef HAVE_IP_TRANSPARENT
srcaddr = &peeraddr;
srcname = ctx->client.peername;
#endif
@@ -2139,8 +2144,35 @@ int sp_parse_option(const char* name, const char* value)
else if(strcasecmp(CFG_TRANSPARENT, name) == 0)
{
- if((g_state.transparent = strtob(value)) == -1)
- errx(2, "invalid value for " CFG_TRANSPARENT);
+ int val = strtob(value);
+ if(val == -1)
+ {
+ if(strcasecmp(VAL_CLIENT, value) == 0)
+ {
+ g_state.transparent = TRANSPARENT_CLIENT;
+ }
+ else if(strcasecmp(VAL_FULL, value) == 0)
+ {
+#ifdef HAVE_IP_TRANSPARENT
+ g_state.transparent = TRANSPARENT_FULL;
+#else
+ errx(2, "invalid value for " CFG_TRANSPARENT
+ ": was not built with support for true full transparent proxy");
+#endif
+ }
+ else
+ {
+ errx(2, "invalid value for " CFG_TRANSPARENT);
+ }
+ }
+ else if (val)
+ {
+ g_state.transparent = TRANSPARENT_CLIENT;
+ }
+ else
+ {
+ g_state.transparent = TRANSPARENT_OFF;
+ }
ret = 1;
}
diff --git a/common/spio.c b/common/spio.c
index 992e2df..f8f2ef1 100644
--- a/common/spio.c
+++ b/common/spio.c
@@ -187,6 +187,8 @@ int spio_connect(spctx_t* ctx, spio_t* io, const struct sockaddr_any* sdst,
}
#else
/* Can't set source address on other OS */
+ sp_messagex(ctx, LOG_WARNING, "%s: couldn't set transparent mode on connection: not supported",
+ GET_IO_NAME(io));
ssrc = NULL;
#endif
}
diff --git a/common/sppriv.h b/common/sppriv.h
index 883097d..6fdbfb9 100644
--- a/common/sppriv.h
+++ b/common/sppriv.h
@@ -45,6 +45,12 @@ enum {
SKIP_AUTHENTICATED = 0x01,
};
+enum {
+ TRANSPARENT_OFF = 0,
+ TRANSPARENT_CLIENT = 1,
+ TRANSPARENT_FULL = 2,
+};
+
typedef struct spstate
{
/* Settings ------------------------------- */