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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
|
/* $OpenBSD: queue_fsqueue.c,v 1.23 2011/12/22 18:41:30 eric Exp $ */
/*
* Copyright (c) 2011 Gilles Chehade <gilles@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/types.h>
#include <sys/queue.h>
#include <sys/tree.h>
#include <sys/param.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <dirent.h>
#include <err.h>
#include <errno.h>
#include <event.h>
#include <fcntl.h>
#include <imsg.h>
#include <inttypes.h>
#include <libgen.h>
#include <pwd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>
#include <unistd.h>
#include "smtpd.h"
#include "log.h"
static char *fsqueue_getpath(enum queue_kind);
static int fsqueue_envelope_load(enum queue_kind, struct envelope *);
static int fsqueue_envelope_update(enum queue_kind, struct envelope *);
static int fsqueue_envelope_delete(enum queue_kind, struct envelope *);
static int fsqueue_message_create(enum queue_kind, u_int32_t *);
static int fsqueue_message_commit(enum queue_kind, u_int32_t);
static int fsqueue_message_fd_r(enum queue_kind, u_int32_t);
static int fsqueue_message_fd_rw(enum queue_kind, u_int32_t);
static int fsqueue_message_delete(enum queue_kind, u_int32_t);
static int fsqueue_message_purge(enum queue_kind, u_int32_t);
static int fsqueue_message_corrupt(enum queue_kind, u_int32_t);
static void fsqueue_envelope_path(enum queue_kind, u_int64_t, char *, size_t);
int fsqueue_init(void);
int fsqueue_message(enum queue_kind, enum queue_op, u_int32_t *);
int fsqueue_envelope(enum queue_kind, enum queue_op , struct envelope *);
int fsqueue_load_envelope_ascii(FILE *, struct envelope *);
int fsqueue_dump_envelope_ascii(FILE *, struct envelope *);
void *fsqueue_qwalk_new(enum queue_kind, u_int32_t);
int fsqueue_qwalk(void *, u_int64_t *);
void fsqueue_qwalk_close(void *);
#define PATH_INCOMING "/incoming"
#define PATH_QUEUE "/queue"
#define PATH_PURGE "/purge"
#define PATH_CORRUPT "/corrupt"
#define PATH_BOUNCE "/bounce"
#define PATH_MESSAGE "/message"
#define PATH_ENVELOPES "/envelopes"
struct queue_backend queue_backend_fs = {
fsqueue_init,
fsqueue_message,
fsqueue_envelope,
fsqueue_qwalk_new,
fsqueue_qwalk,
fsqueue_qwalk_close
};
static char *
fsqueue_getpath(enum queue_kind kind)
{
switch (kind) {
case Q_INCOMING:
return (PATH_INCOMING);
case Q_QUEUE:
return (PATH_QUEUE);
case Q_PURGE:
return (PATH_PURGE);
case Q_BOUNCE:
return (PATH_BOUNCE);
case Q_CORRUPT:
return (PATH_CORRUPT);
default:
fatalx("queue_fsqueue_getpath: unsupported queue kind.");
}
return NULL;
}
static void
fsqueue_envelope_path(enum queue_kind qkind, uint64_t evpid, char *buf, size_t len)
{
int r;
if (qkind == Q_QUEUE)
r = bsnprintf(buf, len, "%s/%03x/%08x%s/%016" PRIx64,
fsqueue_getpath(qkind),
evpid_to_msgid(evpid) & 0xfff,
evpid_to_msgid(evpid),
PATH_ENVELOPES, evpid);
else
r = bsnprintf(buf, len, "%s/%08x%s/%016" PRIx64,
fsqueue_getpath(qkind),
evpid_to_msgid(evpid),
PATH_ENVELOPES, evpid);
if (!r)
fatalx("fsqueue_envelope_path: snprintf");
log_debug("envelope path: %s", buf);
}
static int
fsqueue_envelope_create(enum queue_kind qkind, struct envelope *ep)
{
char evpname[MAXPATHLEN];
FILE *fp;
int fd;
u_int64_t evpid;
fp = NULL;
again:
evpid = queue_generate_evpid(ep->id);
fsqueue_envelope_path(qkind, evpid, evpname, sizeof(evpname));
fd = open(evpname, O_WRONLY|O_CREAT|O_EXCL, 0600);
if (fd == -1) {
if (errno == EEXIST)
goto again;
if (errno == ENOSPC || errno == ENFILE)
goto tempfail;
fatal("fsqueue_envelope_create: open");
}
fp = fdopen(fd, "w");
if (fp == NULL)
fatal("fsqueue_envelope_create: fdopen");
ep->creation = time(NULL);
ep->id = evpid;
if (qkind == Q_BOUNCE) {
ep->lasttry = 0;
ep->retry = 0;
}
if (! fsqueue_dump_envelope_ascii(fp, ep)) {
if (errno == ENOSPC)
goto tempfail;
fatal("fsqueue_dump_envelope_ascii: write");
}
if (! safe_fclose(fp)) {
fp = NULL;
fd = -1;
goto tempfail;
}
return 1;
tempfail:
unlink(evpname);
if (fp)
fclose(fp);
else if (fd != -1)
close(fd);
ep->creation = 0;
ep->id = 0;
return 0;
}
static int
fsqueue_envelope_load(enum queue_kind qkind, struct envelope *ep)
{
char pathname[MAXPATHLEN];
FILE *fp;
int ret;
fsqueue_envelope_path(qkind, ep->id, pathname, sizeof(pathname));
fp = fopen(pathname, "r");
if (fp == NULL) {
if (errno == ENOENT || errno == ENFILE)
return 0;
fatal("fsqueue_envelope_load: fopen");
}
ret = fsqueue_load_envelope_ascii(fp, ep);
fclose(fp);
return ret;
}
static int
fsqueue_envelope_update(enum queue_kind qkind, struct envelope *ep)
{
char temp[MAXPATHLEN];
char dest[MAXPATHLEN];
FILE *fp;
if (! bsnprintf(temp, sizeof(temp), "%s/envelope.tmp", PATH_QUEUE))
fatalx("fsqueue_envelope_update");
fsqueue_envelope_path(qkind, ep->id, dest, sizeof(dest));
fp = fopen(temp, "w");
if (fp == NULL) {
if (errno == ENOSPC || errno == ENFILE)
goto tempfail;
fatal("fsqueue_envelope_update: open");
}
if (! fsqueue_dump_envelope_ascii(fp, ep)) {
if (errno == ENOSPC)
goto tempfail;
fatal("fsqueue_dump_envelope_ascii: fwrite");
}
if (! safe_fclose(fp))
goto tempfail;
if (rename(temp, dest) == -1) {
if (errno == ENOSPC)
goto tempfail;
fatal("fsqueue_envelope_update: rename");
}
return 1;
tempfail:
if (unlink(temp) == -1)
fatal("fsqueue_envelope_update: unlink");
if (fp)
fclose(fp);
return 0;
}
static int
fsqueue_envelope_delete(enum queue_kind qkind, struct envelope *ep)
{
char pathname[MAXPATHLEN];
fsqueue_envelope_path(qkind, ep->id, pathname, sizeof(pathname));
if (unlink(pathname) == -1) {
log_debug("######: %s [errno: %d]", pathname, errno);
fatal("fsqueue_envelope_delete: unlink");
}
if (! bsnprintf(pathname, sizeof(pathname), "%s/%03x/%08x%s", PATH_QUEUE,
evpid_to_msgid(ep->id) & 0xfff,
evpid_to_msgid(ep->id), PATH_ENVELOPES))
fatal("fsqueue_envelope_delete: snprintf");
if (rmdir(pathname) != -1)
fsqueue_message_delete(qkind, evpid_to_msgid(ep->id));
return 1;
}
static int
fsqueue_message_create(enum queue_kind qkind, u_int32_t *msgid)
{
char rootdir[MAXPATHLEN];
char evpdir[MAXPATHLEN];
char *queuepath = fsqueue_getpath(qkind);
char msgpath[MAXPATHLEN];
char lnkpath[MAXPATHLEN];
u_int32_t msgid_save;
msgid_save = *msgid;
again:
*msgid = queue_generate_msgid();
if (! bsnprintf(rootdir, sizeof(rootdir), "%s/%08x",
queuepath, *msgid))
fatalx("fsqueue_message_create: snprintf");
if (mkdir(rootdir, 0700) == -1) {
if (errno == EEXIST)
goto again;
if (errno == ENOSPC) {
*msgid = 0;
return 0;
}
fatal("fsqueue_message_create: mkdir");
}
if (! bsnprintf(evpdir, sizeof(evpdir), "%s%s", rootdir,
PATH_ENVELOPES))
fatalx("fsqueue_message_create: snprintf");
if (mkdir(evpdir, 0700) == -1) {
if (errno == ENOSPC) {
rmdir(rootdir);
*msgid = 0;
return 0;
}
fatal("fsqueue_message_create: mkdir");
}
if (qkind == Q_BOUNCE) {
if (! bsnprintf(msgpath, sizeof(msgpath), "%s/%03x/%08x/message",
fsqueue_getpath(Q_QUEUE),
msgid_save & 0xfff,
msgid_save))
return 0;
if (! bsnprintf(lnkpath, sizeof(lnkpath), "%s/%08x/message",
fsqueue_getpath(Q_BOUNCE), *msgid))
return 0;
if (link(msgpath, lnkpath) == -1)
fatal("link");
}
return 1;
}
static int
fsqueue_message_commit(enum queue_kind qkind, u_int32_t msgid)
{
char rootdir[MAXPATHLEN];
char queuedir[MAXPATHLEN];
char msgdir[MAXPATHLEN];
if (! bsnprintf(rootdir, sizeof(rootdir), "%s/%08x",
fsqueue_getpath(qkind), msgid))
fatal("fsqueue_message_commit: snprintf");
if (! bsnprintf(queuedir, sizeof(queuedir), "%s/%03x",
fsqueue_getpath(Q_QUEUE), msgid & 0xfff))
fatal("fsqueue_message_commit: snprintf");
if (mkdir(queuedir, 0700) == -1) {
if (errno == ENOSPC)
return 0;
if (errno != EEXIST)
fatal("fsqueue_message_commit: mkdir");
}
if (! bsnprintf(msgdir, sizeof(msgdir),"%s/%08x",
queuedir, msgid))
fatal("fsqueue_message_commit: snprintf");
if (rename(rootdir, msgdir) == -1) {
if (errno == ENOSPC)
return 0;
fatal("fsqueue_message_commit: rename");
}
return 1;
}
static int
fsqueue_message_fd_r(enum queue_kind qkind, u_int32_t msgid)
{
int fd;
char pathname[MAXPATHLEN];
if (qkind == Q_INCOMING) {
if (! bsnprintf(pathname, sizeof(pathname), "%s/%08x/message",
fsqueue_getpath(qkind), msgid))
fatal("fsqueue_message_fd_r: snprintf");
}
else {
if (! bsnprintf(pathname, sizeof(pathname), "%s/%03x/%08x/message",
fsqueue_getpath(qkind), msgid & 0xfff, msgid))
fatal("fsqueue_message_fd_r: snprintf");
}
if ((fd = open(pathname, O_RDONLY)) == -1)
fatal("fsqueue_message_fd_r: open");
return fd;
}
static int
fsqueue_message_fd_rw(enum queue_kind qkind, u_int32_t msgid)
{
char pathname[MAXPATHLEN];
if (! bsnprintf(pathname, sizeof(pathname), "%s/%08x/message",
fsqueue_getpath(qkind),
msgid))
fatal("fsqueue_message_fd_rw: snprintf");
return open(pathname, O_CREAT|O_EXCL|O_RDWR, 0600);
}
static int
fsqueue_message_delete(enum queue_kind qkind, u_int32_t msgid)
{
char rootdir[MAXPATHLEN];
char evpdir[MAXPATHLEN];
char msgpath[MAXPATHLEN];
DIR *dirp;
struct dirent *dp;
if (qkind == Q_QUEUE) {
if (! bsnprintf(rootdir, sizeof(rootdir), "%s/%03x/%08x", PATH_QUEUE,
msgid & 0xfff, msgid))
fatal("fsqueue_message_delete: snprintf");
}
else if (qkind == Q_PURGE) {
if (! bsnprintf(rootdir, sizeof(rootdir), "%s/%08x", PATH_PURGE,
msgid))
fatal("fsqueue_message_delete: snprintf");
}
if (! bsnprintf(evpdir, sizeof(evpdir), "%s%s", rootdir,
PATH_ENVELOPES))
fatal("fsqueue_message_delete: snprintf");
dirp = opendir(evpdir);
if (dirp) {
char envelope[MAXPATHLEN];
while ((dp = readdir(dirp)) != NULL) {
if (! bsnprintf(envelope, MAXPATHLEN, "%s/%s",
evpdir, dp->d_name))
fatal("fsqueue_message_delete: truncated evp");
unlink(envelope);
}
closedir(dirp);
}
if (! bsnprintf(msgpath, sizeof(msgpath), "%s/message", rootdir))
fatal("fsqueue_message_delete: snprintf");
if (unlink(msgpath) == -1) {
if (errno != ENOENT)
fatal("fsqueue_message_delete: unlink");
}
if (rmdir(evpdir) == -1) {
/* It is ok to fail rmdir with ENOENT here
* because upon successful delivery of the
* last envelope, we remove the directory.
*/
if (errno != ENOENT)
fatal("fsqueue_message_delete: rmdir");
}
if (rmdir(rootdir) == -1)
fatal("#2 fsqueue_message_delete: rmdir");
if (qkind == Q_QUEUE) {
if (! bsnprintf(rootdir, sizeof(rootdir), "%s/%03x", PATH_QUEUE, msgid & 0xffff))
fatal("fsqueue_message_delete: snprintf");
rmdir(rootdir);
}
return 1;
}
static int
fsqueue_message_purge(enum queue_kind qkind, u_int32_t msgid)
{
char rootdir[MAXPATHLEN];
char purgedir[MAXPATHLEN];
if (! bsnprintf(rootdir, sizeof(rootdir), "%s/%08x",
fsqueue_getpath(qkind), msgid))
fatalx("fsqueue_message_purge: snprintf");
if (! bsnprintf(purgedir, sizeof(purgedir), "%s/%08x",
fsqueue_getpath(Q_PURGE), msgid))
fatalx("fsqueue_message_purge: snprintf");
if (rename(rootdir, purgedir) == -1)
fatal("fsqueue_message_purge: rename");
return 1;
}
static int
fsqueue_message_corrupt(enum queue_kind qkind, u_int32_t msgid)
{
char rootdir[MAXPATHLEN];
char corruptdir[MAXPATHLEN];
if (! bsnprintf(rootdir, sizeof(rootdir), "%s/%03x/%08x",
fsqueue_getpath(qkind), msgid & 0xfff, msgid))
fatalx("fsqueue_message_corrupt: snprintf");
if (! bsnprintf(corruptdir, sizeof(corruptdir), "%s/%08x",
fsqueue_getpath(Q_CORRUPT), msgid))
fatalx("fsqueue_message_corrupt: snprintf");
if (rename(rootdir, corruptdir) == -1)
fatalx("fsqueue_message_corrupt: rename");
return 1;
}
int
fsqueue_init(void)
{
unsigned int n;
char *paths[] = { PATH_INCOMING, PATH_QUEUE,
PATH_PURGE, PATH_BOUNCE, PATH_CORRUPT };
char path[MAXPATHLEN];
int ret;
ret = 1;
for (n = 0; n < nitems(paths); n++) {
strlcpy(path, PATH_SPOOL, sizeof(path));
if (strlcat(path, paths[n], sizeof(path)) >= sizeof(path))
errx(1, "path too long %s%s", PATH_SPOOL, paths[n]);
if (ckdir(path, 0700, env->sc_pw->pw_uid, 0, 1) == 0)
ret = 0;
}
if (! bsnprintf(path, sizeof path, "%s/envelope.tmp", PATH_QUEUE))
errx(1, "path too long %s/envelope.tmp", PATH_QUEUE);
unlink(path);
return ret;
}
int
fsqueue_message(enum queue_kind qkind, enum queue_op qop, u_int32_t *msgid)
{
switch (qop) {
case QOP_CREATE:
return fsqueue_message_create(qkind, msgid);
case QOP_DELETE:
return fsqueue_message_delete(qkind, *msgid);
case QOP_COMMIT:
return fsqueue_message_commit(qkind, *msgid);
case QOP_FD_R:
return fsqueue_message_fd_r(qkind, *msgid);
case QOP_FD_RW:
return fsqueue_message_fd_rw(qkind, *msgid);
case QOP_PURGE:
return fsqueue_message_purge(qkind, *msgid);
case QOP_CORRUPT:
return fsqueue_message_corrupt(qkind, *msgid);
default:
fatalx("queue_fsqueue_message: unsupported operation.");
}
return 0;
}
int
fsqueue_envelope(enum queue_kind qkind, enum queue_op qop, struct envelope *m)
{
switch (qop) {
case QOP_CREATE:
return fsqueue_envelope_create(qkind, m);
case QOP_DELETE:
return fsqueue_envelope_delete(qkind, m);
case QOP_LOAD:
return fsqueue_envelope_load(qkind, m);
case QOP_UPDATE:
return fsqueue_envelope_update(qkind, m);
default:
fatalx("queue_fsqueue_envelope: unsupported operation.");
}
return 0;
}
#define QWALK_AGAIN 0x1
#define QWALK_RECURSE 0x2
#define QWALK_RETURN 0x3
struct qwalk {
enum queue_kind kind;
char path[MAXPATHLEN];
DIR *dirs[3];
int (*filefn)(struct qwalk *, char *);
int bucket;
int level;
int strict;
u_int32_t msgid;
};
int walk_simple(struct qwalk *, char *);
int walk_queue(struct qwalk *, char *);
int walk_queue_nobucket(struct qwalk *, char *);
void *
fsqueue_qwalk_new(enum queue_kind kind, u_int32_t msgid)
{
struct qwalk *q;
q = calloc(1, sizeof(struct qwalk));
if (q == NULL)
fatal("qwalk_new: calloc");
strlcpy(q->path, fsqueue_getpath(kind),
sizeof(q->path));
q->kind = kind;
q->level = 0;
q->strict = 0;
q->filefn = walk_simple;
q->msgid = msgid;
if (q->msgid) {
/* force level and bucket */
q->bucket = q->msgid & 0xfff;
q->level = 2;
if (! bsnprintf(q->path, sizeof(q->path), "%s/%03x/%08x/%s",
PATH_QUEUE, q->bucket, q->msgid, PATH_ENVELOPES))
fatalx("walk_queue: snprintf");
}
if (smtpd_process == PROC_QUEUE || smtpd_process == PROC_RUNNER)
q->strict = 1;
if (kind == Q_QUEUE)
q->filefn = walk_queue;
if (kind == Q_INCOMING || kind == Q_PURGE)
q->filefn = walk_queue_nobucket;
q->dirs[q->level] = opendir(q->path);
if (q->dirs[q->level] == NULL)
fatal("qwalk_new: opendir");
return (q);
}
int
fsqueue_qwalk(void *hdl, u_int64_t *evpid)
{
struct qwalk *q = hdl;
struct dirent *dp;
again:
errno = 0;
dp = readdir(q->dirs[q->level]);
if (errno)
fatal("qwalk: readdir");
if (dp == NULL) {
closedir(q->dirs[q->level]);
q->dirs[q->level] = NULL;
if (q->level == 0 || q->msgid)
return (0);
q->level--;
goto again;
}
if (strcmp(dp->d_name, ".") == 0 || strcmp(dp->d_name, "..") == 0)
goto again;
switch (q->filefn(q, dp->d_name)) {
case QWALK_AGAIN:
goto again;
case QWALK_RECURSE:
goto recurse;
case QWALK_RETURN: {
char *endptr;
errno = 0;
*evpid = (u_int64_t)strtoull(dp->d_name, &endptr, 16);
if (q->path[0] == '\0' || *endptr != '\0')
goto again;
if (errno == ERANGE && *evpid == ULLONG_MAX)
goto again;
if (q->msgid)
if (evpid_to_msgid(*evpid) != q->msgid)
return 0;
return (1);
}
default:
fatalx("qwalk: callback failed");
}
recurse:
q->level++;
q->dirs[q->level] = opendir(q->path);
if (q->dirs[q->level] == NULL) {
if (errno == ENOENT && !q->strict) {
q->level--;
goto again;
}
fatal("qwalk: opendir");
}
goto again;
}
void
fsqueue_qwalk_close(void *hdl)
{
int i;
struct qwalk *q = hdl;
for (i = 0; i <= q->level; i++)
if (q->dirs[i])
closedir(q->dirs[i]);
bzero(q, sizeof(struct qwalk));
free(q);
}
int
walk_simple(struct qwalk *q, char *fname)
{
return (QWALK_RETURN);
}
int
walk_queue(struct qwalk *q, char *fname)
{
char *ep;
switch (q->level) {
case 0:
if (strcmp(fname, "envelope.tmp") == 0)
return (QWALK_AGAIN);
q->bucket = strtoul(fname, &ep, 16);
if (fname[0] == '\0' || *ep != '\0') {
log_warnx("walk_queue: invalid bucket: %s", fname);
return (QWALK_AGAIN);
}
if (errno == ERANGE || q->bucket >= DIRHASH_BUCKETS) {
log_warnx("walk_queue: invalid bucket: %s", fname);
return (QWALK_AGAIN);
}
if (! bsnprintf(q->path, sizeof(q->path), "%s/%03x",
fsqueue_getpath(q->kind), q->bucket & 0xfff))
fatalx("walk_queue: snprintf");
return (QWALK_RECURSE);
case 1:
if (! bsnprintf(q->path, sizeof(q->path), "%s/%03x/%s%s",
fsqueue_getpath(q->kind), q->bucket & 0xfff, fname,
PATH_ENVELOPES))
fatalx("walk_queue: snprintf");
return (QWALK_RECURSE);
case 2:
return (QWALK_RETURN);
}
return (-1);
}
int
walk_queue_nobucket(struct qwalk *q, char *fname)
{
switch (q->level) {
case 0:
if (strcmp(fname, "envelope.tmp") == 0)
return (QWALK_AGAIN);
if (! bsnprintf(q->path, sizeof(q->path), "%s/%s%s",
fsqueue_getpath(q->kind), fname, PATH_ENVELOPES))
fatalx("walk_queue_nobucket: snprintf");
return (QWALK_RECURSE);
case 1:
return (QWALK_RETURN);
}
return (-1);
}
|