File: relay-ctrl-age.c

package info (click to toggle)
relay-ctrl 2.5-1
  • links: PTS
  • area: contrib
  • in suites: woody
  • size: 104 kB
  • ctags: 52
  • sloc: ansic: 296; makefile: 83
file content (221 lines) | stat: -rw-r--r-- 4,480 bytes parent folder | download | duplicates (2)
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
#include <sys/types.h>
#include <dirent.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/fcntl.h>
#include <sys/stat.h>
#include <sys/time.h>
#include <sys/wait.h>
#include <unistd.h>

#include "defines.h"

#ifndef BUFSIZE
#define BUFSIZE 4096
#endif

const char* relayclient = ":allow,RELAYCLIENT=''\n";
long expiry = 900;
const char* rulesdir = "/etc/relay-ctrl";
const char* smtprules = "smtp.rules";
const char* smtpcdb = "smtp.cdb";
const char* tcprules = "/usr/bin/tcprules";
const char* spooldir = "/var/spool/relay-ctrl";

const char* read_line(const char* filename)
{
  char buf[BUFSIZE];
  char* copy = 0;
  int in = open(filename, O_RDONLY);
  ssize_t rd;
  if(in == -1)
    return 0;
  rd = read(in, buf, BUFSIZE-1);
  if(rd != -1 && rd > 0) {
    char* end = strchr(buf, '\n');
    if(!end)
      end = buf + rd;
    *end = 0;
    copy = malloc(end-buf+1);
    strcpy(copy, buf);
  }
  close(in);
  return copy;
}

void read_str(const char** config, const char* filename)
{
  const char* tmp = read_line(filename);
  if(tmp)
    *config = tmp;
}

int read_config(void)
{
  const char* tmp;
  if(chdir(CONFIGDIR))
    return 0;
  read_str(&relayclient, "rule");
  read_str(&tcprules, "tcprules");
  read_str(&spooldir, "spooldir");
  read_str(&smtprules, "smtprules");
  read_str(&smtpcdb, "smtpcdb");
  read_str(&rulesdir, "rulesdir");
  if((tmp = read_line("expiry")) != 0) {
    char* end;
    expiry = strtol(tmp, &end, 10);
    if(*end || expiry <= 0)
      return 1;
    free((char*)tmp);
  }
  return 0;
}

void touch(const char* filename)
{
  int fd = open(filename, O_WRONLY | O_CREAT | O_TRUNC, 0666);
  if(fd >= 0)
    close(fd);
}

int age_addresses(char** remotes)
{
  DIR* dir;
  time_t oldtime = time(0) - expiry;
  if(chdir(spooldir))
    return 1;
  while(*remotes)
    touch(*remotes++);
  dir = opendir(".");
  if(dir) {
    struct stat buf;
    struct dirent* entry;
    while((entry = readdir(dir)) != 0) {
      const char* name = entry->d_name;
      if(name[0] == '.' && (name[1] == 0 ||
			    (name[1] == '.' && name[2] == 0)))
	continue;
      if(stat(name, &buf))
	continue;
      if(!S_ISREG(buf.st_mode) ||
	 buf.st_mtime < oldtime ||
	 buf.st_ctime < oldtime)
	unlink(name);
      else {
	write(1, name, strlen(name));
	write(1, relayclient, strlen(relayclient));
	write(1, "\n", 1);
      }
    }
    closedir(dir);
  }
  return 0;
}

int show_rules(void) 
{
  int fd;
  char buf[BUFSIZE];
  size_t r;
  if(chdir(rulesdir))
    return 1;
  fd = open(smtprules, O_RDONLY);
  if(fd < 0)
    return 1;
  while((r = read(fd, buf, BUFSIZE)) > 0)
    write(1, buf, r);
  close(fd);
  return 0;
}

char* pathjoin(const char* part1, const char* part2)
{
  size_t len1 = strlen(part1);
  size_t len2 = strlen(part2);
  char* s = malloc(len1+len2+1);
  memcpy(s, part1, len1);
  s[len1] = '/';
  memcpy(s+len1+1, part2, len2);
  s[len1+len2+1] = 0;
  return s;
}

char* itoa(char* ptr, unsigned i)
{
  if(i > 10)
    ptr = itoa(ptr, i / 10);
  *ptr++ = i % 10 + '0';
  return ptr;
}

char* pathjoinuniq(const char* part1, const char* part2)
{
  size_t len1 = strlen(part1);
  size_t len2 = strlen(part2);
  char* str = malloc(len1+len2+20);
  char* ptr = str;
  memcpy(ptr, part1, len1);
  ptr += len1;
  *ptr++ = '/';
  memcpy(ptr, part2, len2);
  ptr += len2;
  *ptr++ = '.';
  ptr = itoa(ptr, getpid());
  *ptr = 0;
  return str;
}

static char* cdb_filename;
static char* tmp_filename;

int child(int fdin, int fdout)
{
  umask(022);
  close(0);
  dup2(fdin, 0);
  close(fdin);
  close(fdout);
  execl(tcprules, tcprules, cdb_filename, tmp_filename, 0);
  perror(tcprules);
  return 111;
}

int parent(int fdin, int fdout, int pid, char** remotes)
{
  int status;
  close(1);
  dup2(fdout, 1);
  close(fdin);
  close(fdout);
  if(show_rules() || age_addresses(remotes))
    return 1;
  close(1);
  waitpid(pid, &status, WUNTRACED);
  unlink(tmp_filename);
  return !WIFEXITED(status) || WEXITSTATUS(status) ? 111 : 0;
}

int main(int argc, char* argv[])
{
  int fd[2];
  pid_t pid;
  if(read_config())
    return 111;
  cdb_filename = pathjoin(rulesdir, smtpcdb);
  tmp_filename = pathjoinuniq(rulesdir, smtpcdb);
  if(pipe(fd)) {
    perror("pipe");
    return 1;
  }
  pid = fork();
  switch(pid) {
  case -1: /* error occurred */
    perror("fork");
    return 111;
  case 0: /* child process */
    return child(fd[0], fd[1]);
  default: /* parent process */
    return parent(fd[0], fd[1], pid, argv+1);
  }
}