summaryrefslogtreecommitdiffstats
path: root/util/reaper.c
blob: 633a4c783dc1437a2114d91b17e82ef5a80af46b (plain) (blame)
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
/* $Id: reaper.c,v 1.4 2003/07/20 00:55:34 in2 Exp $ */
#define _UTIL_C_
#include "bbs.h"

time_t now;

int invalid(char *userid) {
    int i;
    
    if(!isalpha(userid[0]))
    return 1;
    
    for(i = 1; i < IDLEN && userid[i]; i++)
    if(!isalpha(userid[i]) && !isdigit(userid[i]))
        return 1;
    return 0;
}

int check(int n, userec_t *u) {
    time_t d;
    char buf[256];
    
    if(u->userid[0] != '\0') {
    if(invalid(u->userid)) {
        syslog(LOG_ERR, "bad userid(%d): %s", n, u->userid);
        u->userid[0] = '\0';
    } else {
        d = now - u->lastlogin;
        if((d > MAX_GUEST_LIFE && (u->userlevel & PERM_LOGINOK) == 0) ||
           (d > MAX_LIFE && (u->userlevel & PERM_XEMPT) == 0)) {
        /* expired */
        int unum;
        
        unum = searchuser(u->userid);
        strcpy(buf, ctime(&u->lastlogin));
        strtok(buf, "\n");
        syslog(LOG_NOTICE, "kill user(%d): %s %s", unum, u->userid, buf);
        sprintf(buf, "mv home/%c/%s tmp/", u->userid[0], u->userid);
        if(system(buf))
            syslog(LOG_ERR, "can't move user home: %s", u->userid);
        u->userid[0] = '\0';
        setuserid(unum, u->userid);
        }
    }
    }
    return 0;
}

int main(int argc, char **argv)
{
    now = time(NULL);
    openlog("reaper", LOG_PID | LOG_PERROR, SYSLOG_FACILITY);
    chdir(BBSHOME);

    attach_SHM();
    if(passwd_mmap())
    exit(1);
    passwd_apply2(check);
    
    return 0;
}