summaryrefslogtreecommitdiffstats
path: root/daemon/bpop3d/bpop3d.c
blob: 777c8e3fd10b3a747121cc6802710f2ac7b98e78 (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
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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
/* $Id$ */
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include <sys/time.h>
#include <sys/types.h>
#include <unistd.h>

#include <event.h>

#include "bbs.h"

static struct timeval tv = {600, 0};
static struct event ev_listen;
static int clients = 0;

#define READ_BLOCK 512
#define MAX_CLIENTS 500

struct client_state {
    struct event ev;
    int state;
    int pop3_state;
    struct evbuffer *evb_read;
    struct evbuffer *evb_write;
    char userid[32];
    int uid;
};

enum {
    POP3_AUTH,
    POP3_TRANS,
    POP3_UPDATE,
    POP3_CLEANUP
};

typedef struct {
    char *cmd;
    void (*func)(struct client_state *cs, const char * arg);
} CMD;

void
cmd_unknown(struct client_state *cs, const char * arg)
{
    evbuffer_add_printf(cs->evb_write, "-ERR unknown command\r\n");
}

void
cmd_capa(struct client_state *cs, const char * arg)
{
    evbuffer_add_printf(cs->evb_write, "+OK\r\nUSER\r\n.\r\n");
}

void
cmd_user(struct client_state *cs, const char * arg)
{
    cs->uid = searchuser(arg, cs->userid);
    if (cs->uid < 1 || cs->uid > MAX_USERS)
    evbuffer_add_printf(cs->evb_write, "-ERR user not found\r\n");
    else
    evbuffer_add_printf(cs->evb_write, "+OK\r\n");
}

void
cmd_pass(struct client_state *cs, const char * arg)
{
    userec_t cuser;
    char * pw;

    if (passwd_query(cs->uid, &cuser) < 0) {
    evbuffer_add_printf(cs->evb_write, "-ERR user not found\r\n");
    return;
    }

    pw = crypt(arg, cuser.passwd);
    if (strcmp(pw, cuser.passwd) == 0) {
    evbuffer_add_printf(cs->evb_write, "+OK\r\n");
    cs->pop3_state = POP3_TRANS;
    }
    else
    evbuffer_add_printf(cs->evb_write, "-ERR password incorrect \r\n");
}

void
cmd_quit(struct client_state *cs, const char * arg)
{
    evbuffer_add_printf(cs->evb_write, "+OK bye\r\n");
    
    if (cs->pop3_state == POP3_TRANS)
    cs->pop3_state = POP3_UPDATE;
    else
    cs->pop3_state = POP3_CLEANUP;
}

static const CMD auth_cmdlist[] = {
    {"user", cmd_user},
    {"pass", cmd_pass},
    {"quit", cmd_quit},
    {"capa", cmd_capa},
    {NULL, cmd_unknown}
};

/* Transaction state commands not implemented */
void
cmd_stat(struct client_state *cs, const char * arg)
{
    evbuffer_add_printf(cs->evb_write, "+OK 0 0\r\n");
}

void
cmd_list(struct client_state *cs, const char * arg)
{
    if (*arg)
    evbuffer_add_printf(cs->evb_write, "-ERR no such message\r\n");
    else
    evbuffer_add_printf(cs->evb_write, "+OK\r\n.\r\n");
}

void
cmd_retr(struct client_state *cs, const char * arg)
{
    evbuffer_add_printf(cs->evb_write, "-ERR no such message\r\n");
}

void
cmd_dele(struct client_state *cs, const char * arg)
{
    evbuffer_add_printf(cs->evb_write, "-ERR no such message\r\n");
}

void
cmd_noop(struct client_state *cs, const char * arg)
{
    evbuffer_add_printf(cs->evb_write, "+OK\r\n");
}

void
cmd_rset(struct client_state *cs, const char * arg)
{
    evbuffer_add_printf(cs->evb_write, "+OK\r\n");
}

static const CMD trans_cmdlist[] = {
    {"stat", cmd_stat},
    {"list", cmd_list},
    {"retr", cmd_retr},
    {"dele", cmd_dele},
    {"noop", cmd_noop},
    {"rset", cmd_rset},
    {"capa", cmd_capa},
    {"quit", cmd_quit},
    {NULL, cmd_unknown}
};

void
cb_client(int cfd, short event, void *arg)
{
    struct client_state *cs = arg;
    char *p, *line = NULL;
    int i;

    // ignore clients that timeout
    if (event & EV_TIMEOUT)
    cs->pop3_state = POP3_CLEANUP;

    if (event & EV_READ)
    if (evbuffer_read(cs->evb_read, cfd, READ_BLOCK) <= 0)
        cs->pop3_state = POP3_CLEANUP;

    if (event & EV_WRITE)
    if (evbuffer_write(cs->evb_write, cfd) <= 0)
        cs->pop3_state = POP3_CLEANUP;

    if ((line = evbuffer_readline(cs->evb_read)) == NULL)
    goto out;

    for (p = line; *p != ' ' && *p != '\0'; p++);
    if (*p == ' ')
    *p++ = '\0';

    if (cs->pop3_state == POP3_AUTH) {
    for (i = 0; auth_cmdlist[i].cmd; i++)
        if (strcasecmp(line, auth_cmdlist[i].cmd) == 0)
        break;
    (auth_cmdlist[i].func)(cs, p);
    } else if (cs->pop3_state == POP3_TRANS) {
    for (i = 0; trans_cmdlist[i].cmd; i++)
        if (strcasecmp(line, trans_cmdlist[i].cmd) == 0)
        break;
    (trans_cmdlist[i].func)(cs, p);
    }

out:
    evbuffer_write(cs->evb_write, cfd);

    if (cs->pop3_state == POP3_UPDATE) {
    cs->pop3_state = POP3_CLEANUP;
    }

    if (cs->pop3_state == POP3_CLEANUP) {
    if (clients == MAX_CLIENTS)
        event_add(&ev_listen, NULL);
    close(cfd);
    evbuffer_free(cs->evb_write);
    evbuffer_free(cs->evb_read);
    free(cs);
    clients--;
    return;
    }

    if (EVBUFFER_LENGTH(cs->evb_write) > 0)
    event_set(&cs->ev, cfd, EV_WRITE, (void *) cb_client, cs);
    else
    event_set(&cs->ev, cfd, EV_READ, (void *) cb_client, cs);
    event_add(&cs->ev, &tv);
}

void
setup_client(int fd)
{
    fcntl(fd, F_SETFL, fcntl(fd, F_GETFL, 0) | O_NONBLOCK);

    struct client_state *cs = calloc(1, sizeof(struct client_state));
    cs->state = EV_WRITE;
    cs->pop3_state = POP3_AUTH;
    cs->evb_read = evbuffer_new();
    cs->evb_write = evbuffer_new();

    evbuffer_add_printf(cs->evb_write, "+OK PttBBS POP3 ready\r\n");
    event_set(&cs->ev, fd, EV_WRITE, (void *) cb_client, cs);
    event_add(&cs->ev, &tv);
}

void
cb_listen(int fd, short event, void *arg)
{
    struct sockaddr_in clientaddr;
    socklen_t len = sizeof(clientaddr);
    int cfd;

    if ((cfd = accept(fd, (struct sockaddr *)&clientaddr, &len)) < 0 )
    return;

    setup_client(cfd);

    clients++;

    if (clients > MAX_CLIENTS)
    event_del(&ev_listen);
}

int main(int argc, char *argv[])
{
    int ch, sfd, inetd = 0, daemon = 1;
    char *iface_ip = "127.0.0.1:5140";

    Signal(SIGPIPE, SIG_IGN);
    while ((ch = getopt(argc, argv, "Dil:h")) != -1)
    switch (ch) {
        case 'D':
        daemon = 0;
        break;
        case 'i':
        inetd = 1;
        break;
        case 'l':
        iface_ip = optarg;
        break;
        case 'h':
        default:
        fprintf(stderr, "usage: bpop3d [-D] [-i] [-l [interface_ip]:port]\n");
        return 1;
    }

    if (!inetd)
    if ((sfd = tobind(iface_ip)) < 0)
        return 1;

    setuid(BBSUID);
    setgid(BBSGID);

    srandom(getpid() + time(NULL));
    attach_SHM();

    if (daemon)
    daemonize(BBSHOME "/run/bpop3d.pid", NULL);

    event_init();
    if (!inetd) {
    event_set(&ev_listen, sfd, EV_READ | EV_PERSIST, cb_listen, &ev_listen);
    event_add(&ev_listen, NULL);
    } else
    setup_client(0);
    event_dispatch();

    return 0;
}