mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 04:41:59 +01:00
345fd715f5
Signed-off-by: Janos SUTO <sj@acts.hu>
118 lines
3.2 KiB
C
118 lines
3.2 KiB
C
/*
|
|
* bdat.c, SJ
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <strings.h>
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <signal.h>
|
|
#include <syslog.h>
|
|
#include <time.h>
|
|
#include <openssl/ssl.h>
|
|
#include <openssl/err.h>
|
|
#include <piler.h>
|
|
#include <smtp.h>
|
|
|
|
|
|
void reset_bdat_counters(struct smtp_session *session){
|
|
session->bdat_bytes_to_read = 0;
|
|
session->bad = 0;
|
|
}
|
|
|
|
|
|
void get_bdat_size_to_read(struct smtp_session *session, char *buf){
|
|
char *p;
|
|
|
|
session->bdat_bytes_to_read = 0;
|
|
|
|
session->protocol_state = SMTP_STATE_BDAT;
|
|
|
|
p = strcasestr(buf, " LAST");
|
|
if(p){
|
|
*p = '\0';
|
|
}
|
|
|
|
// determine the size to be read
|
|
|
|
p = strchr(buf, ' ');
|
|
if(p){
|
|
session->bdat_bytes_to_read = atoi(p);
|
|
if(session->cfg->verbosity >= _LOG_DEBUG) syslog(LOG_INFO, "fd=%d: BDAT len=%d", session->net.socket, session->bdat_bytes_to_read);
|
|
}
|
|
|
|
if(!p || session->bdat_bytes_to_read <= 0){
|
|
session->bdat_bytes_to_read = 0;
|
|
syslog(LOG_INFO, "%s: ERROR: malformed BDAT command", session->ttmpfile);
|
|
}
|
|
}
|
|
|
|
|
|
void process_bdat(struct smtp_session *session, char *readbuf, int readlen, struct config *cfg){
|
|
if(readlen <= 0) return;
|
|
|
|
if(session->fd == -1){
|
|
session->fd = open(session->ttmpfile, O_CREAT|O_RDWR, S_IRUSR|S_IWUSR|S_IRGRP);
|
|
if(session->fd == -1){
|
|
syslog(LOG_PRIORITY, "%s: %s", ERR_OPEN_TMP_FILE, session->ttmpfile);
|
|
}
|
|
|
|
if(cfg->process_rcpt_to_addresses == 1) write_envelope_addresses(session, cfg);
|
|
}
|
|
|
|
session->bdat_bytes_to_read -= readlen;
|
|
|
|
if(session->fd != -1){
|
|
if(write(session->fd, readbuf, readlen) != -1){
|
|
session->tot_len += readlen;
|
|
|
|
if(session->cfg->verbosity >= _LOG_EXTREME) syslog(LOG_INFO, "%s: wrote %d bytes, %d bytes to go", session->ttmpfile, readlen, session->bdat_bytes_to_read);
|
|
}
|
|
else syslog(LOG_PRIORITY, "ERROR: write(), %s, %d, %s", __func__, __LINE__, __FILE__);
|
|
}
|
|
|
|
|
|
if(session->bdat_bytes_to_read < 0){
|
|
// malformed data from client: we got more data then had been told in BDAT argument
|
|
syslog(LOG_PRIORITY, "ERROR: invalid BDAT data. Expected %d, got %d bytes", session->bdat_bytes_to_read + readlen, readlen);
|
|
session->bad = 1;
|
|
|
|
close(session->fd);
|
|
unlink(session->ttmpfile);
|
|
|
|
session->fd = -1;
|
|
}
|
|
|
|
|
|
// If there's nothing more to read, then send response to smtp client
|
|
|
|
if(session->bdat_bytes_to_read <= 0){
|
|
|
|
if(session->fd == -1){
|
|
send_smtp_response(session, SMTP_RESP_421_ERR_WRITE_FAILED);
|
|
}
|
|
else {
|
|
fsync(session->fd);
|
|
close(session->fd);
|
|
|
|
session->fd = -1;
|
|
|
|
move_email(session);
|
|
|
|
char buf[SMALLBUFSIZE];
|
|
snprintf(buf, sizeof(buf)-1, "250 OK <%s>\r\n", session->ttmpfile);
|
|
send_smtp_response(session, buf);
|
|
syslog(LOG_PRIORITY, "received: %s, from=%s, size=%d, client=%s, fd=%d", session->ttmpfile, session->mailfrom, session->tot_len, session->remote_host, session->net.socket);
|
|
}
|
|
|
|
// technically we are not in the PERIOD state, but it's good enough
|
|
// to quit the BDAT processing state
|
|
session->protocol_state = SMTP_STATE_PERIOD;
|
|
}
|
|
}
|