summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@thewalter.net>2010-11-02 17:00:16 +0000
committerStef Walter <stef@thewalter.net>2011-01-23 15:47:45 -0600
commit57751190780ee8974075a5d16e7bacd6991eebba (patch)
tree98f50a5081158ccb0658efe26c9caad7a024d4db
parentfcec3bb91a0cb961054b9475c92929c3dae149e7 (diff)
Refactor how data skip is done.
-rw-r--r--common/smtppass.c122
-rw-r--r--common/smtppass.h7
2 files changed, 71 insertions, 58 deletions
diff --git a/common/smtppass.c b/common/smtppass.c
index 93946d5..411be49 100644
--- a/common/smtppass.c
+++ b/common/smtppass.c
@@ -889,34 +889,6 @@ static int make_connections(spctx_t* ctx, int client)
* SMTP HANDLING
*/
-static int data_passthru(spctx_t* ctx)
-{
- int r, count = 0;
- const char* data;
-
- while((r = sp_read_data(ctx, &data)) != 0)
- {
- if(r < 0)
- return -1; /* Message already printed */
-
- count += r;
-
- if(spio_write_data_raw(ctx, &(ctx->server), (unsigned char*)data, r) < 0)
- return -1;
- }
-
- if(spio_write_data(ctx, &(ctx->server), DATA_END_SIG) < 0)
- {
- /* Tell the client it went wrong */
- spio_write_data(ctx, &(ctx->client), SMTP_FAILED);
- return -1;
- }
-
- sp_add_log(ctx, "status=", "SKIPPED");
- sp_messagex(ctx, LOG_DEBUG, "skipped %d data bytes", count);
- return count;
-}
-
static int should_skip_processing(spctx_t* ctx)
{
if(ctx->authenticated && (g_state.skip & SKIP_AUTHENTICATED))
@@ -938,7 +910,6 @@ static int smtp_passthru(spctx_t* ctx)
int first_rsp = 1; /* The first 220 response from server to be filtered */
int filter_host = 0; /* Next response is 250 hostname, which we change */
int auth_started = 0; /* Started performing authentication */
- int data_mode = 0; /* Skip processing of data */
/* XCLIENT is for use in access control */
int xclient_sup = 0; /* Is XCLIENT supported? */
@@ -982,9 +953,6 @@ static int smtp_passthru(spctx_t* ctx)
/* Only valid after EHLO or HELO commands */
filter_host = 0;
- /* Only valid after a DATA command (when should skip) */
- data_mode = 0;
-
/*
* At this point we may want to send our XCLIENT. This is a per
* connection command.
@@ -1010,7 +978,8 @@ static int smtp_passthru(spctx_t* ctx)
{
if(should_skip_processing (ctx))
{
- data_mode = 1;
+ if(sp_pass_data(ctx) < 0)
+ RETURN(-1);
}
else
{
@@ -1022,16 +991,16 @@ static int smtp_passthru(spctx_t* ctx)
if(cb_check_data(ctx) == -1)
RETURN(-1);
+ }
- /* Print the log out for this email */
- sp_messagex(ctx, LOG_INFO, "%s", ctx->logline);
+ /* Print the log out for this email */
+ sp_messagex(ctx, LOG_INFO, "%s", ctx->logline);
- /* Done with that email */
- cleanup_context(ctx);
+ /* Done with that email */
+ cleanup_context(ctx);
- /* Command handled */
- continue;
- }
+ /* Command handled */
+ continue;
}
/*
@@ -1143,16 +1112,6 @@ static int smtp_passthru(spctx_t* ctx)
}
}
- /*
- * If we're preparing for data mode, and didn't get a satisfactory
- * repsonse from server then cancel it.
- */
- if(data_mode && !get_continue_rsp(S_LINE))
- {
- sp_messagex(ctx, LOG_DEBUG, "server did not accept data");
- data_mode = 0;
- }
-
if((p = get_successful_rsp(S_LINE, &cont)) != NULL)
{
/*
@@ -1299,14 +1258,6 @@ static int smtp_passthru(spctx_t* ctx)
if(spio_write_data(ctx, &(ctx->client), S_LINE) == -1)
RETURN(-1);
- /* Should we enter data passthru mode? */
- if(data_mode)
- {
- data_mode = 0;
- if(data_passthru(ctx) < 0)
- RETURN(-1);
- }
-
continue;
}
}
@@ -1861,6 +1812,61 @@ cleanup:
return ret;
}
+int sp_pass_data(spctx_t* ctx)
+{
+ int count = 0;
+ const char *data;
+ ssize_t rc;
+
+ /* Ask the server for permission to send data */
+ if(spio_write_data(ctx, &(ctx->server), SMTP_DATA) < 0)
+ return -1;
+
+ if(read_server_response(ctx) == -1)
+ return -1;
+
+ /* Send the response to the client */
+ if(spio_write_data(ctx, &(ctx->client), ctx->server.line) == -1)
+ return -1;
+
+ /* If server returns an error then tell the client */
+ if(!is_first_word(ctx->server.line, DATA_RSP, KL(DATA_RSP)))
+ {
+ sp_messagex(ctx, LOG_DEBUG, "server refused data transfer");
+ return 0;
+ }
+
+ while((rc = sp_read_data(ctx, &data)) != 0)
+ {
+ if(rc < 0)
+ return -1; /* Message already printed */
+ count += rc;
+ if(spio_write_data_raw(ctx, &(ctx->server), (unsigned char*)data, rc) < 0)
+ return -1;
+ }
+
+ if(spio_write_data(ctx, &(ctx->server), DATA_END_SIG) < 0)
+ {
+ /* Tell the client it went wrong */
+ spio_write_data(ctx, &(ctx->client), SMTP_FAILED);
+ return -1;
+ }
+
+ sp_messagex(ctx, LOG_DEBUG, "skipped email data");
+
+ /* Okay read the response from the server and echo it to the client */
+ if(read_server_response(ctx) == -1)
+ return -1;
+
+ if(spio_write_data(ctx, &(ctx->client), ctx->server.line) == -1)
+ return -1;
+
+ sp_add_log(ctx, "status=", "SKIPPED");
+ sp_messagex(ctx, LOG_DEBUG, "skipped %d data bytes", count);
+
+ return 0;
+}
+
int sp_fail_data(spctx_t* ctx, const char* smtp_status)
{
char buf[256 + KL(SMTP_REJPREFIX) + KL(CRLF) + 1];
diff --git a/common/smtppass.h b/common/smtppass.h
index 7f1892e..a54c9b0 100644
--- a/common/smtppass.h
+++ b/common/smtppass.h
@@ -232,6 +232,13 @@ int sp_done_data(spctx_t* ctx, const char *header);
int sp_fail_data(spctx_t* ctx, const char* smtp_status);
/*
+ * Helper method to pass through the entire DATA part of
+ * the email to the server. No processing is done, and no
+ * other sp_xxxx_data() calls are necessary.
+ */
+int sp_pass_data(spctx_t* ctx);
+
+/*
* Setup the environment with context info. This is useful
* if you're going to fork another process. Be sure to exec
* soon after to prevent the strings from going out of scope.