summaryrefslogtreecommitdiff
path: root/src/qmail-newmrh.c
blob: eaeac5fa6cc2d63c79cf0b72a87799102fea6ee3 (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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#include <unistd.h>
#include <sys/stat.h>
#include <stdio.h> // rename
#include "logmsg.h"
#include "stralloc.h"
#include "buffer.h"
#include "getln.h"
#include "exit.h"
#include "open.h"
#include "auto_qmail.h"
#include "cdbmake.h"
#include "case.h"
#include "qmail.h"

#define WHO "qmail-newmrh"

int rename(const char *,const char *); // stdio.h

void die_read()
{
  logmsg(WHO,111,ERROR,"unable to read control/morercpthosts");
}
void die_write()
{
  logmsg(WHO,111,ERROR,"unable to write to control/morercpthosts.tmp");
}

char inbuf[BUFSIZE_LINE];
buffer bi;

int fd;
int fdtemp;

struct cdb_make cdb;
stralloc line = {0};
int match;

int main()
{
  umask(033);
  if (chdir(auto_qmail) == -1)
    logmsg(WHO,111,ERROR,B("unable to chdir to: ",auto_qmail));

  fd = open_read("control/morercpthosts");
  if (fd == -1) die_read();

  buffer_init(&bi,read,fd,inbuf,sizeof(inbuf));

  fdtemp = open_trunc("control/morercpthosts.tmp");
  if (fdtemp == -1) die_write();

  if (cdb_make_start(&cdb,fdtemp) == -1) die_write();

  for (;;) {
    if (getln(&bi,&line,&match,'\n') != 0) die_read();
    case_lowerb(line.s,line.len);
    while (line.len) {
      if (line.s[line.len - 1] == ' ') { --line.len; continue; }
      if (line.s[line.len - 1] == '\n') { --line.len; continue; }
      if (line.s[line.len - 1] == '\t') { --line.len; continue; }
      if (line.s[0] != '#')
        if (cdb_make_add(&cdb,line.s,line.len,"",0) == -1)
          die_write();
      break;
    }
    if (!match) break;
  }

  if (cdb_make_finish(&cdb) == -1) die_write();
  if (fsync(fdtemp) == -1) die_write();
  if (close(fdtemp) == -1) die_write(); /* NFS stupidity */
  if (rename("control/morercpthosts.tmp","control/morercpthosts.cdb") == -1)
    logmsg(WHO,111,ERROR,"unable to move control/morercpthosts.tmp to control/morercpthosts.cdb");

  _exit(0);
}