X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=main-postlicyd.c;h=fa92f0da9f5e46d4f2cbc5e3a597ffd86f6bc506;hb=cd6d97ab05dc231c35cf0dd38afaa43f0ab1fd99;hp=6810bbabd8d18aeda351e57ae55d84ea2a54dd53;hpb=c693c0b0d26eac89aef4e4c6740feca3627e2d26;p=apps%2Fpfixtools.git diff --git a/main-postlicyd.c b/main-postlicyd.c index 6810bba..fa92f0d 100644 --- a/main-postlicyd.c +++ b/main-postlicyd.c @@ -33,11 +33,226 @@ * Copyright © 2006-2007 Pierre Habouzit */ -#include -#include #include +#include "buffer.h" #include "common.h" +#include "threads.h" +#include "tokens.h" + +#define DAEMON_NAME "postlicyd" + +enum smtp_state { + SMTP_UNKNOWN, + SMTP_CONNECT, + SMTP_EHLO, + SMTP_HELO = SMTP_EHLO, + SMTP_MAIL, + SMTP_RCPT, + SMTP_DATA, + SMTP_END_OF_MESSAGE, + SMTP_VRFY, + SMTP_ETRN, +}; + +/* \see http://www.postfix.org/SMTPD_POLICY_README.html */ +typedef struct query_t { + unsigned state : 4; + unsigned esmtp : 1; + + const char *helo_name; + const char *queue_id; + const char *sender; + const char *recipient; + const char *recipient_count; + const char *client_address; + const char *client_name; + const char *rclient_name; + const char *instance; + + /* postfix 2.2+ */ + const char *sasl_method; + const char *sasl_username; + const char *sasl_sender; + const char *size; + const char *ccert_subject; + const char *ccert_issuer; + const char *ccsert_fingerprint; + + /* postfix 2.3+ */ + const char *encryption_protocol; + const char *encryption_cipher; + const char *encryption_keysize; + const char *etrn_domain; + + buffer_t data; +} query_t; + +static query_t *query_init(query_t *rq) { + memset(rq, 0, offsetof(query_t, data)); + buffer_init(&rq->data); + return rq; +} +static void query_wipe(query_t *rq) { + buffer_wipe(&rq->data); +} + +static int postfix_parsejob(query_t *query) +{ +#define PARSE_CHECK(expr, error, ...) \ + do { \ + if (!(expr)) { \ + syslog(LOG_ERR, error, ##__VA_ARGS__); \ + return -1; \ + } \ + } while (0) + + char *p = vskipspaces(query->data.data); + + memset(query, 0, offsetof(query_t, data)); + while (p[0] != '\r' || p[1] != '\n') { + char *k, *v; + int klen, vlen, vtk; + + while (isblank(*p)) + p++; + p = strchr(k = p, '='); + PARSE_CHECK(p, "could not find '=' in line"); + for (klen = p - k; klen && isblank(k[klen]); klen--); + p += 1; /* skip = */ + + while (isblank(*p)) + p++; + p = strstr(v = p, "\r\n"); + PARSE_CHECK(p, "could not find final \\r\\n in line"); + for (vlen = p - v; vlen && isblank(v[vlen]); vlen--); + p += 2; /* skip \r\n */ + + vtk = tokenize(v, vlen); + switch (tokenize(k, klen)) { +#define CASE(up, low) case PTK_##up: query->low = v; v[vlen] = '\0'; break; + CASE(HELO_NAME, helo_name); + CASE(QUEUE_ID, queue_id); + CASE(SENDER, sender); + CASE(RECIPIENT, recipient); + CASE(RECIPIENT_COUNT, recipient_count); + CASE(CLIENT_ADDRESS, client_address); + CASE(CLIENT_NAME, client_name); + CASE(RCLIENT_NAME, rclient_name); + CASE(INSTANCE, instance); + CASE(SASL_METHOD, sasl_method); + CASE(SASL_USERNAME, sasl_username); + CASE(SASL_SENDER, sasl_sender); + CASE(SIZE, size); + CASE(CCERT_SUBJECT, ccert_subject); + CASE(CCERT_ISSUER, ccert_issuer); + CASE(CCSERT_FINGERPRINT, ccsert_fingerprint); + CASE(ENCRYPTION_PROTOCOL, encryption_protocol); + CASE(ENCRYPTION_CIPHER, encryption_cipher); + CASE(ENCRYPTION_KEYSIZE, encryption_keysize); + CASE(ETRN_DOMAIN, etrn_domain); +#undef CASE + + case PTK_REQUEST: + PARSE_CHECK(vtk == PTK_SMTPD_ACCESS_POLICY, + "unexpected `request' value: %.*s", vlen, v); + break; + + case PTK_PROTOCOL_NAME: + PARSE_CHECK(vtk == PTK_SMTP || vtk == PTK_ESMTP, + "unexpected `protocol_name' value: %.*s", vlen, v); + query->esmtp = vtk == PTK_ESMTP; + break; + + case PTK_PROTOCOL_STATE: + switch (vtk) { +#define CASE(name) case PTK_##name: query->state = SMTP_##name; break; + CASE(CONNECT); + CASE(EHLO); + CASE(HELO); + CASE(MAIL); + CASE(RCPT); + CASE(DATA); + CASE(END_OF_MESSAGE); + CASE(VRFY); + CASE(ETRN); + default: + PARSE_CHECK(false, "unexpected `protocol_state` value: %.*s", + vlen, v); +#undef CASE + } + break; + + default: + syslog(LOG_WARNING, "unexpected key, skipped: %.*s", klen, k); + break; + } + } + + return query->state == SMTP_UNKNOWN ? -1 : 0; +#undef PARSE_CHECK +} + +static void *policy_run(int fd, void *data) +{ + query_t q; + query_init(&q); + + for (;;) { + int nb = buffer_read(&q.data, fd, -1); + const char *eoq; + + if (nb < 0) { + if (errno == EAGAIN || errno == EINTR) + continue; + UNIXERR("read"); + break; + } + if (nb == 0) { + if (q.data.len) + syslog(LOG_ERR, "unexpected end of data"); + break; + } + + eoq = strstr(q.data.data + MAX(0, q.data.len - 3), "\r\n\r\n"); + if (!eoq) + continue; + + if (postfix_parsejob(&q) < 0) + break; + + buffer_consume(&q.data, eoq + strlen("\r\n\r\n") - q.data.data); + if (xwrite(fd, "DUNNO\r\n", strlen("DUNNO\r\n"))) { + UNIXERR("write"); + break; + } + } + + query_wipe(&q); + close(fd); + return NULL; +} + +static int main_loop(void) +{ + int exitcode = EXIT_SUCCESS; + int sock = -1; + + while (!sigint) { + int fd = accept(sock, NULL, 0); + if (fd < 0) { + if (errno != EINTR || errno != EAGAIN) + UNIXERR("accept"); + continue; + } + + thread_launch(policy_run, fd, NULL); + threads_join(); + } + + close(sock); + return exitcode; +} /* administrivia {{{ */ @@ -60,49 +275,50 @@ static void main_shutdown(void) module_init(main_initialize); module_exit(main_shutdown); -/* }}} */ - -void *job_run(void *_fd) +void usage(void) { - int fd = (intptr_t)_fd; - - close(fd); - return NULL; + fputs("usage: "DAEMON_NAME" [options] config\n" + "\n" + "Options:\n" + " -p file to write our pid to\n" + , stderr); } -static void main_loop(void) -{ - int sock = -1; +/* }}} */ - while (!sigint) { - int fd = accept(sock, NULL, 0); - pthread_attr_t attr; - pthread_t dummy; +int main(int argc, char *argv[]) +{ + const char *pidfile = NULL; + int res; - if (fd < 0) { - if (errno != EINTR || errno != EAGAIN) - UNIXERR("accept"); - continue; + for (int c = 0; (c = getopt(argc, argv, "h" "p:")) >= 0; ) { + switch (c) { + case 'p': + pidfile = optarg; + break; + default: + usage(); + return EXIT_FAILURE; } + } - pthread_attr_init(&attr); - pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); - pthread_create(&dummy, &attr, job_run, (void *)(intptr_t)fd); - pthread_attr_destroy(&attr); + if (argc - optind != 1) { + usage(); + return EXIT_FAILURE; } - close(sock); -} + if (pidfile_open(pidfile) < 0) { + syslog(LOG_CRIT, "unable to write pidfile %s", pidfile); + return EXIT_FAILURE; + } -int main(void) -{ - if (atexit(common_shutdown)) { - fputs("Cannot hook my atexit function, quitting !\n", stderr); + if (daemon_detach() < 0) { + syslog(LOG_CRIT, "unable to fork"); return EXIT_FAILURE; } - common_initialize(); - main_loop(); + pidfile_refresh(); + res = main_loop(); syslog(LOG_INFO, "Stopping..."); - return EXIT_SUCCESS; + return res; }