summaryrefslogtreecommitdiffstats
path: root/src/ragel/smtp_ip_parser.rl
blob: 8506328b7da1a49cfcaf19f43f644de320f59ee8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
%%{

  machine smtp_ip_parser;

  action IP6_start {
    in_v6 = 1;
    ip_start = p;
  }
  action IP6_end {
    in_v6 = 0;
    ip_end = p;
  }
  action IP4_start {
    if (!in_v6) {
      ip_start = p;
    }
  }
  action IP4_end {
    if (!in_v6) {
      ip_end = p;
    }
  }

  action Domain_addr_start {}
  action Domain_addr_end {}

  include smtp_base "smtp_base.rl";
  include smtp_ip "smtp_ip.rl";

  main := address_literal | non_conformant_address_literal;
}%%

#include "smtp_parsers.h"
#include "util.h"
#include "addr.h"

%% write data;

rspamd_inet_addr_t *
rspamd_parse_smtp_ip (const char *data, size_t len, rspamd_mempool_t *pool)
{
  const char *p = data, *pe = data + len, *eof = data + len;
  const char *ip_start = NULL, *ip_end = NULL;
  gboolean in_v6 = FALSE;
  int cs = 0;

  %% write init;
  %% write exec;

  if (ip_start && ip_end && ip_end > ip_start) {
    return rspamd_parse_inet_address_pool (ip_start, ip_end - ip_start, pool,
    		RSPAMD_INET_ADDRESS_PARSE_NO_UNIX|RSPAMD_INET_ADDRESS_PARSE_REMOTE);
  }

  return NULL;
}