X-Git-Url: http://git.madism.org/?a=blobdiff_plain;f=postlicyd%2Fmatch.c;h=41ce3179cb10e69a045697603ee3c60342c949ab;hb=033f9c56012ade3ac28fa598901f7c61d24c13fa;hp=ae0561fb9bdb3f05b36bebc1ea6b6b9d61934216;hpb=e2ed1a31651a4f3e31d005005ca8677b15cec19d;p=apps%2Fpfixtools.git diff --git a/postlicyd/match.c b/postlicyd/match.c index ae0561f..41ce317 100644 --- a/postlicyd/match.c +++ b/postlicyd/match.c @@ -115,18 +115,17 @@ static bool match_filter_constructor(filter_t *filter) #define IS_OP_END(N) \ ((N) == '=' || (N) == 'i') match_condition_t condition = CONDITION_INIT; - const char *p = m_strnextsp(param->value); + const char *p = skipspaces(param->value); const char *n = p + 1; PARSE_CHECK(isalnum(*p), "invalid field name"); for (n = p + 1 ; *n && (isalnum(*n) || *n == '_') ; ++n); - PARSE_CHECK(*n && - (isspace(*n) || IS_OP_START(*n)), + PARSE_CHECK(*n && (isspace(*n) || IS_OP_START(*n)), "invalid condition, expected operator after field name"); condition.field = policy_tokenize(p, n - p); PARSE_CHECK(condition.field >= PTK_HELO_NAME && condition.field < PTK_SMTPD_ACCESS_POLICY, "invalid field name %.*s", n - p, p); - p = m_strnextsp(n); + p = skipspaces(n); n = p + 1; PARSE_CHECK(IS_OP_START(*p) && IS_OP_END(*n), "invalid operator %2s", p); @@ -141,13 +140,13 @@ static bool match_filter_constructor(filter_t *filter) CASE_OP('!', DIFFER); CASE_OP('>', CONTAINS); CASE_OP('<', CONTAINED); - CASE_OP('1', EMPTY); + CASE_OP('#', EMPTY); #undef CASE_OP } PARSE_CHECK(condition.condition != MATCH_UNKNOWN, "invalid operator"); if (condition.condition != MATCH_EMPTY) { - p = m_strnextsp(n + 1); + p = skipspaces(n + 1); PARSE_CHECK(*p, "no value defined to check the condition"); condition.value_len = param->value_len - (p - param->value); condition.value = p_dupstr(p, condition.value_len); @@ -174,7 +173,77 @@ static void match_filter_destructor(filter_t *filter) static inline bool match_condition(const match_condition_t *cond, const query_t *query) { -// const char *field = NULL; + const char *field = NULL; + switch (cond->field) { +#define CASE(Up, Low) \ + case PTK_ ## Up: field = query->Low; 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(REVERSE_CLIENT_NAME, reverse_client_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(CCERT_FINGERPRINT, ccert_fingerprint) + CASE(ENCRYPTION_PROTOCOL, encryption_protocol) + CASE(ENCRYPTION_CIPHER, encryption_cipher) + CASE(ENCRYPTION_KEYSIZE, encryption_keysize) + CASE(ETRN_DOMAIN, etrn_domain) + CASE(STRESS, stress) +#undef CASE + default: return false; + } + switch (cond->condition) { + case MATCH_EQUAL: + case MATCH_DIFFER: + if (field == NULL) { + return cond->condition != MATCH_DIFFER; + } + if (cond->case_sensitive) { + return !!((strcmp(field, cond->value) == 0) + ^ (cond->condition == MATCH_DIFFER)); + } else { + return !!((ascii_strcasecmp(field, cond->value) == 0) + ^ (cond->condition == MATCH_DIFFER)); + } + break; + + case MATCH_CONTAINS: + if (field == NULL) { + return false; + } + if (cond->case_sensitive) { + return strstr(field, cond->value); + } else { + return m_stristrn(field, cond->value, cond->value_len); + } + break; + + case MATCH_CONTAINED: + if (field == NULL) { + return false; + } + if (cond->case_sensitive) { + return strstr(cond->value, field); + } else { + return m_stristr(cond->value, field); + } + break; + + case MATCH_EMPTY: + return !!((field == NULL || *field == '\0') ^ (!cond->case_sensitive)); + + default: + assert(false && "invalid condition type"); + } return true; } @@ -184,15 +253,15 @@ static filter_result_t match_filter(const filter_t *filter, const query_t *query foreach (const match_condition_t *condition, config->conditions) { bool r = match_condition(condition, query); if (!r && config->match_all) { - return HTK_FALSE; + return HTK_FAIL; } else if (r && !(config->match_all)) { - return HTK_TRUE; + return HTK_MATCH; } }} if (config->match_all) { - return HTK_TRUE; + return HTK_MATCH; } else { - return HTK_FALSE; + return HTK_FAIL; } } @@ -204,8 +273,8 @@ static int match_init(void) */ (void)filter_hook_register(type, "abort"); (void)filter_hook_register(type, "error"); - (void)filter_hook_register(type, "true"); - (void)filter_hook_register(type, "false"); + (void)filter_hook_register(type, "match"); + (void)filter_hook_register(type, "fail"); /* Parameters. */