summaryrefslogtreecommitdiffstats
path: root/util/bbsctl.c
blob: 62d00300a47db969ef444c21f19e9a106d4f1b80 (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
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
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#include <grp.h>
#ifdef FreeBSD
   #include <sys/syslimits.h>
   #define  PS     "/bin/ps"
   #define  GREP   "/usr/bin/grep"
   #define  SU     "/usr/bin/su" 
#endif
#ifdef Linux
   #include <linux/limits.h>
   #define  PS     "/bin/ps"
   #define  GREP   "/bin/grep"
   #define  SU     "/bin/su"
#endif

void usage(void)
{
    printf("usage:  bbsctl [start|stop|restart|bbsadm]\n");
    exit(0);
}

void startbbs(void)
{
    if( setuid(0) < 0 ){
    perror("setuid(0)");
    exit(1);
    }
    puts("starting mbbsd:  23"); system("/home/bbs/bin/mbbsd   23");
    puts("starting mbbsd:3000"); system("/home/bbs/bin/mbbsd 3000");
    puts("starting mbbsd:3001"); system("/home/bbs/bin/mbbsd 3001");
    puts("starting mbbsd:3002"); system("/home/bbs/bin/mbbsd 3002");
    puts("starting mbbsd:3003"); system("/home/bbs/bin/mbbsd 3003");
    puts("starting mbbsd:3004"); system("/home/bbs/bin/mbbsd 3004");
    puts("starting mbbsd:3005"); system("/home/bbs/bin/mbbsd 3005");
    puts("starting mbbsd:3006"); system("/home/bbs/bin/mbbsd 3006");
    puts("starting mbbsd:3007"); system("/home/bbs/bin/mbbsd 3007");
    puts("starting mbbsd:3008"); system("/home/bbs/bin/mbbsd 3008");
    puts("starting mbbsd:3009"); system("/home/bbs/bin/mbbsd 3009");
    puts("starting mbbsd:3010"); system("/home/bbs/bin/mbbsd 3010");
}

void stopbbs(void)
{
    char    buf[1024];
    int     pid;
    FILE    *fp = popen(PS " -ax | " GREP " mbbsd | "
            GREP " listen", "r");
    while( fgets(buf, sizeof(buf), fp) != NULL ){
    sscanf(buf, "%d", &pid);
    printf("stopping %d\n", pid);
    kill(pid, 1);
    }
}

void restartbbs(void)
{
    stopbbs();
    startbbs();
}

void bbsadm(void)
{
    gid_t   gids[NGROUPS_MAX];
    int     i, ngids;
    struct  group *gr; 
    ngids = getgroups(NGROUPS_MAX, gids);
    if( (gr = getgrnam("bbsadm")) == NULL ){
    puts("group bbsadm not found");
    return;
    }

    for( i = 0 ; i < ngids ; ++i )
    if( gr->gr_gid == gids[i] )
        break;

    if( i == ngids ){
    puts("permission denied");
    return;
    }

    if( setuid(0) < 0 ){
    perror("setuid(0)");
    return;
    }
    puts("permission granted");
    execl(SU, "su", "bbsadm", NULL);
}

struct {
    char    *cmd;
    void    (*func)();
}cmds[] = { {"start",   startbbs},
        {"stop",    stopbbs},
        {"restart", restartbbs},
        {"bbsadm",  bbsadm},
        {NULL, NULL} };

int main(int argc, char **argv)
{
    int     i;
    if( argc == 1 )
    usage();
    for( i = 0 ; cmds[i].cmd != NULL ; ++i )
    if( strcmp(cmds[i].cmd, argv[1]) == 0 ){
        cmds[i].func();
        break;
    }
    if( cmds[i].cmd == NULL ){
    printf("command %s not found\n", argv[1]);
    usage();
    }
    return 0;
}