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
|
/* Database file handling routines.
*
* (C) 2003-2014 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*
*
*/
#include "services.h"
#include "datafiles.h"
#include <fcntl.h>
static int curday = 0;
static time_t lastwarn = 0;
/*************************************************************************/
/**
* Return the version number on the file. Return 0 if there is no version
* number or the number doesn't make sense (i.e. less than 1 or greater
* than FILE_VERSION).
* @param f dbFile Struct Member
* @return int 0 if failure, 1 > is the version number
*/
int get_file_version(dbFILE * f)
{
FILE *fp = f->fp;
int version =
fgetc(fp) << 24 | fgetc(fp) << 16 | fgetc(fp) << 8 | fgetc(fp);
if (ferror(fp)) {
#ifndef NOT_MAIN
log_perror("Error reading version number on %s", f->filename);
#endif
return 0;
} else if (feof(fp)) {
#ifndef NOT_MAIN
alog("Error reading version number on %s: End of file detected",
f->filename);
#endif
return 0;
} else if (version < 1) {
#ifndef NOT_MAIN
alog("Invalid version number (%d) on %s", version, f->filename);
#endif
return 0;
}
return version;
}
/*************************************************************************/
/**
* Write the current version number to the file.
* @param f dbFile Struct Member
* @return 0 on error, 1 on success.
*/
int write_file_version(dbFILE * f, uint32 version)
{
FILE *fp = f->fp;
if (fputc(version >> 24 & 0xFF, fp) < 0 ||
fputc(version >> 16 & 0xFF, fp) < 0 ||
fputc(version >> 8 & 0xFF, fp) < 0 ||
fputc(version & 0xFF, fp) < 0) {
#ifndef NOT_MAIN
log_perror("Error writing version number on %s", f->filename);
#endif
return 0;
}
return 1;
}
/*************************************************************************/
/**
* Open the database for reading
* @param service If error whom to return the error as
* @param filename File to open as the database
* @return dbFile struct
*/
static dbFILE *open_db_read(const char *service, const char *filename)
{
dbFILE *f;
FILE *fp;
f = scalloc(sizeof(*f), 1);
if (!f) {
#ifndef NOT_MAIN
log_perror("Can't read %s database %s", service, filename);
if (time(NULL) - lastwarn > WarningTimeout) {
anope_cmd_global(NULL,
"Write error on %s: Memory allocation failed",
filename);
lastwarn = time(NULL);
}
#endif
return NULL;
}
strscpy(f->filename, filename, sizeof(f->filename));
f->mode = 'r';
fp = fopen(f->filename, "rb");
if (!fp) {
int errno_save = errno;
#ifndef NOT_MAIN
if (errno != ENOENT)
log_perror("Can not read %s database %s", service,
f->filename);
if (time(NULL) - lastwarn > WarningTimeout) {
anope_cmd_global(NULL, "Write error on %s: %s", f->filename,
strerror(errno));
lastwarn = time(NULL);
}
#endif
free(f);
errno = errno_save;
return NULL;
}
f->fp = fp;
f->backupfp = NULL;
return f;
}
/*************************************************************************/
/**
* Open the database for writting
* @param service If error whom to return the error as
* @param filename File to open as the database
* @param version Database Version
* @return dbFile struct
*/
static dbFILE *open_db_write(const char *service, const char *filename,
uint32 version)
{
dbFILE *f;
int fd;
#ifdef _WIN32
char buffer[_MAX_PATH];
char win32filename[MAXPATHLEN];
/* Get the current working directory: */
if (_getcwd(buffer, _MAX_PATH) == NULL) {
alog("Warning: Unable to set Current working directory");
}
#endif
f = scalloc(sizeof(*f), 1);
if (!f) {
#ifndef NOT_MAIN
log_perror("Can not read %s database %s", service, filename);
#else
alog("Can not read %s database %s", service, filename);
#endif
return NULL;
}
strscpy(f->filename, filename, sizeof(f->filename));
#ifndef _WIN32
filename = f->filename;
#else
snprintf(win32filename, sizeof(win32filename), "%s\\%s", buffer,
f->filename);
filename = win32filename;
#endif
f->mode = 'w';
*f->backupname = 0;
snprintf(f->backupname, sizeof(f->backupname), "%s.save", filename);
if (!*f->backupname || strcmp(f->backupname, filename) == 0) {
int errno_save = errno;
#ifndef NOT_MAIN
alog("Opening %s database %s for write: Filename too long",
service, filename);
#endif
free(f);
errno = errno_save;
return NULL;
}
#ifndef _WIN32
unlink(filename);
#else
DeleteFile(filename);
#endif
f->backupfp = fopen(filename, "rb");
#ifdef _WIN32
if (!MoveFileExA(filename, f->backupname, MOVEFILE_COPY_ALLOWED)
&& GetLastError() != ENOENT) {
int errno_save = GetLastError();
#else
if (rename(filename, f->backupname) < 0 && errno != ENOENT) {
int errno_save = errno;
#endif
#ifndef NOT_MAIN
static int walloped = 0;
if (!walloped) {
walloped++;
anope_cmd_global(NULL, "Can not back up %s database %s",
service, filename);
}
#ifdef _WIN32
if (debug) {
if (errno == ENOENT) {
alog("debug: Error %d (ENOENT) : the file or directory does not exist", errno, filename);
} else if (errno == EACCES) {
alog("debug: Error %d (EACCES) : error while attempting to access file", errno);
} else {
alog("debug: Error %d", errno);
}
}
#else
if (debug) {
alog("debug: Error %d", errno);
}
#endif
errno = errno_save;
log_perror("Can not back up %s database %s", service, filename);
if (!NoBackupOkay) {
#endif
if (f->backupfp)
fclose(f->backupfp);
free(f);
errno = errno_save;
return NULL;
#ifndef NOT_MAIN
}
#endif
*f->backupname = 0;
}
#ifndef _WIN32
unlink(filename);
#else
DeleteFile(filename);
#endif
/* Use open() to avoid people sneaking a new file in under us */
#ifndef _WIN32
fd = open(filename, O_WRONLY | O_CREAT | O_EXCL, 0666);
#else
fd = open(filename, O_WRONLY | O_CREAT | O_EXCL | _O_BINARY, 0666);
#endif
f->fp = fdopen(fd, "wb"); /* will fail and return NULL if fd < 0 */
if (!f->fp || !write_file_version(f, version)) {
int errno_save = errno;
#ifndef NOT_MAIN
static int walloped = 0;
if (!walloped) {
walloped++;
anope_cmd_global(NULL, "Can't write to %s database %s",
service, filename);
}
errno = errno_save;
log_perror("Can't write to %s database %s", service, filename);
#endif
if (f->fp) {
fclose(f->fp);
#ifndef _WIN32
unlink(filename);
#else
DeleteFile(filename);
#endif
}
if (*f->backupname && rename(f->backupname, filename) < 0)
#ifndef NOT_MAIN
log_perror("Cannot restore backup copy of %s", filename);
#else
;
#endif
/* Then the Lord said unto Moses, thou shalt free what thou hast malloced
* -- codemastr */
free(f);
errno = errno_save;
return NULL;
}
return f;
}
/*************************************************************************/
/**
* Open a database file for reading (*mode == 'r') or writing (*mode == 'w').
* Return the stream pointer, or NULL on error. When opening for write, it
* is an error for rename() to return an error (when backing up the original
* file) other than ENOENT, if NO_BACKUP_OKAY is not defined; it is an error
* if the version number cannot be written to the file; and it is a fatal
* error if opening the file for write fails and the backup was successfully
* made but cannot be restored.
* @param service If error whom to return the error as
* @param filename File to open as the database
* @param mode Mode for writting or reading
* @param version Database Version
* @return dbFile struct
*/
dbFILE *open_db(const char *service, const char *filename,
const char *mode, uint32 version)
{
if (*mode == 'r') {
return open_db_read(service, filename);
} else if (*mode == 'w') {
return open_db_write(service, filename, version);
} else {
errno = EINVAL;
return NULL;
}
}
/*************************************************************************/
/**
* Restore the database file to its condition before open_db(). This is
* identical to close_db() for files open for reading; however, for files
* open for writing, we first attempt to restore any backup file before
* closing files.
* @param dbFile struct
* @return void
*/
void restore_db(dbFILE * f)
{
int errno_save = errno;
if (f->mode == 'w') {
int ok = 0; /* Did we manage to restore the old file? */
errno = errno_save = 0;
if (*f->backupname && strcmp(f->backupname, f->filename) != 0) {
if (rename(f->backupname, f->filename) == 0)
ok = 1;
}
if (!ok && f->backupfp) {
char buf[1024];
int i;
ok = 1;
if (fseek(f->fp, 0, SEEK_SET) < 0)
ok = 0;
while (ok && (i = fread(buf, 1, sizeof(buf), f->backupfp)) > 0) {
if (fwrite(buf, 1, i, f->fp) != i)
ok = 0;
}
if (ok) {
fflush(f->fp);
ftruncate(fileno(f->fp), ftell(f->fp));
}
}
#ifndef NOT_MAIN
if (!ok && errno > 0)
log_perror("Unable to restore backup of %s", f->filename);
#endif
errno_save = errno;
if (f->backupfp)
fclose(f->backupfp);
if (*f->backupname)
#ifndef _WIN32
unlink(f->backupname);
#else
DeleteFile(f->backupname);
#endif
}
fclose(f->fp);
if (!errno_save)
errno_save = errno;
free(f);
errno = errno_save;
}
/*************************************************************************/
/**
* Close a database file. If the file was opened for write, remove the
* backup we (may have) created earlier.
* @param dbFile struct
* @return void
*/
void close_db(dbFILE * f)
{
if (f->mode == 'w' && *f->backupname
&& strcmp(f->backupname, f->filename) != 0) {
if (f->backupfp)
fclose(f->backupfp);
#ifndef _WIN32
unlink(f->backupname);
#else
DeleteFile(f->backupname);
#endif
}
fclose(f->fp);
free(f);
}
/*************************************************************************/
/**
* Read and write 2- and 4-byte quantities, pointers, and strings. All
* multibyte values are stored in big-endian order (most significant byte
* first). A pointer is stored as a byte, either 0 if NULL or 1 if not,
* and read pointers are returned as either (void *)0 or (void *)1. A
* string is stored with a 2-byte unsigned length (including the trailing
* \0) first; a length of 0 indicates that the string pointer is NULL.
* Written strings are truncated silently at 65534 bytes, and are always
* null-terminated.
*
* @param ret 16bit integer to write
* @param dbFile struct
* @return -1 on error, 0 otherwise.
*/
int read_int16(uint16 * ret, dbFILE * f)
{
int c1, c2;
c1 = fgetc(f->fp);
c2 = fgetc(f->fp);
if (c1 == EOF || c2 == EOF)
return -1;
*ret = c1 << 8 | c2;
return 0;
}
/*************************************************************************/
/**
* Write a 16bit integer
*
* @param ret 16bit integer to write
* @param dbFile struct
* @return -1 on error, 0 otherwise.
*/
int write_int16(uint16 val, dbFILE * f)
{
if (fputc((val >> 8) & 0xFF, f->fp) == EOF
|| fputc(val & 0xFF, f->fp) == EOF) {
return -1;
}
return 0;
}
/*************************************************************************/
/**
* Read a unsigned 32bit integer
*
* @param ret unsigned 32bit integer to read
* @param dbFile struct
* @return -1 on error, 0 otherwise.
*/
int read_int32(uint32 * ret, dbFILE * f)
{
int c1, c2, c3, c4;
c1 = fgetc(f->fp);
c2 = fgetc(f->fp);
c3 = fgetc(f->fp);
c4 = fgetc(f->fp);
if (c1 == EOF || c2 == EOF || c3 == EOF || c4 == EOF)
return -1;
*ret = c1 << 24 | c2 << 16 | c3 << 8 | c4;
return 0;
}
/*************************************************************************/
/**
* Write a unsigned 32bit integer
*
* @param ret unsigned 32bit integer to write
* @param dbFile struct
* @return -1 on error, 0 otherwise.
*/
int write_int32(uint32 val, dbFILE * f)
{
if (fputc((val >> 24) & 0xFF, f->fp) == EOF)
return -1;
if (fputc((val >> 16) & 0xFF, f->fp) == EOF)
return -1;
if (fputc((val >> 8) & 0xFF, f->fp) == EOF)
return -1;
if (fputc((val) & 0xFF, f->fp) == EOF)
return -1;
return 0;
}
/*************************************************************************/
/**
* Read Pointer
*
* @param ret pointer to read
* @param dbFile struct
* @return -1 on error, 0 otherwise.
*/
int read_ptr(void **ret, dbFILE * f)
{
int c;
c = fgetc(f->fp);
if (c == EOF)
return -1;
*ret = (c ? (void *) 1 : (void *) 0);
return 0;
}
/*************************************************************************/
/**
* Write Pointer
*
* @param ret pointer to write
* @param dbFile struct
* @return -1 on error, 0 otherwise.
*/
int write_ptr(const void *ptr, dbFILE * f)
{
if (fputc(ptr ? 1 : 0, f->fp) == EOF)
return -1;
return 0;
}
/*************************************************************************/
/**
* Read String
*
* @param ret string
* @param dbFile struct
* @return -1 on error, 0 otherwise.
*/
int read_string(char **ret, dbFILE * f)
{
char *s;
uint16 len;
if (read_int16(&len, f) < 0)
return -1;
if (len == 0) {
*ret = NULL;
return 0;
}
s = scalloc(len, 1);
if (len != fread(s, 1, len, f->fp)) {
free(s);
return -1;
}
*ret = s;
return 0;
}
/*************************************************************************/
/**
* Write String
*
* @param ret string
* @param dbFile struct
* @return -1 on error, 0 otherwise.
*/
int write_string(const char *s, dbFILE * f)
{
uint32 len;
if (!s)
return write_int16(0, f);
len = strlen(s);
if (len > 65534)
len = 65534;
if (write_int16((uint16) (len + 1), f) < 0)
return -1;
if (len > 0 && fwrite(s, 1, len, f->fp) != len)
return -1;
if (fputc(0, f->fp) == EOF)
return -1;
return 0;
}
/*************************************************************************/
/**
* Renames a database
*
* @param name Database to name
* @param ext Extention
* @return void
*/
static void rename_database(char *name, char *ext)
{
char destpath[PATH_MAX];
snprintf(destpath, sizeof(destpath), "backups/%s.%s", name, ext);
if (rename(name, destpath) != 0) {
alog("Backup of %s failed.", name);
anope_cmd_global(s_OperServ, "WARNING! Backup of %s failed.",
name);
}
}
/*************************************************************************/
/**
* Removes old databases
*
* @return void
*/
static void remove_backups(void)
{
char ext[9];
char path[PATH_MAX];
time_t t;
struct tm tm;
time(&t);
t -= (60 * 60 * 24 * KeepBackups);
tm = *localtime(&t);
strftime(ext, sizeof(ext), "%Y%m%d", &tm);
snprintf(path, sizeof(path), "backups/%s.%s", NickDBName, ext);
#ifndef _WIN32
unlink(path);
#else
DeleteFile(path);
#endif
snprintf(path, sizeof(path), "backups/%s.%s", ChanDBName, ext);
#ifndef _WIN32
unlink(path);
#else
DeleteFile(path);
#endif
snprintf(path, sizeof(path), "backups/%s.%s", OperDBName, ext);
#ifndef _WIN32
unlink(path);
#else
DeleteFile(path);
#endif
snprintf(path, sizeof(path), "backups/%s.%s", NewsDBName, ext);
#ifndef _WIN32
unlink(path);
#else
DeleteFile(path);
#endif
snprintf(path, sizeof(path), "backups/%s.%s", ExceptionDBName, ext);
#ifndef _WIN32
unlink(path);
#else
DeleteFile(path);
#endif
if (s_BotServ) {
snprintf(path, sizeof(path), "backups/%s.%s", BotDBName, ext);
#ifndef _WIN32
unlink(path);
#else
DeleteFile(path);
#endif
}
if (s_HostServ) {
snprintf(path, sizeof(path), "backups/%s.%s", HostDBName, ext);
#ifndef _WIN32
unlink(path);
#else
DeleteFile(path);
#endif
}
if (NSEmailReg) {
snprintf(path, sizeof(path), "backups/%s.%s", PreNickDBName, ext);
#ifndef _WIN32
unlink(path);
#else
DeleteFile(path);
#endif
}
}
/*************************************************************************/
/**
* Handles database backups.
*
* @return void
*/
void backup_databases(void)
{
time_t t;
struct tm tm;
if (!KeepBackups) {
return;
}
time(&t);
tm = *localtime(&t);
if (!curday) {
curday = tm.tm_yday;
return;
}
if (curday != tm.tm_yday) {
char ext[9];
send_event(EVENT_DB_BACKUP, 1, EVENT_START);
alog("Backing up databases");
remove_backups();
curday = tm.tm_yday;
strftime(ext, sizeof(ext), "%Y%m%d", &tm);
if (!skeleton) {
rename_database(NickDBName, ext);
if (s_BotServ) {
rename_database(BotDBName, ext);
}
rename_database(ChanDBName, ext);
if (s_HostServ) {
rename_database(HostDBName, ext);
}
if (NSEmailReg) {
rename_database(PreNickDBName, ext);
}
}
rename_database(OperDBName, ext);
rename_database(NewsDBName, ext);
rename_database(ExceptionDBName, ext);
send_event(EVENT_DB_BACKUP, 1, EVENT_STOP);
}
}
/*************************************************************************/
void ModuleDatabaseBackup(char *dbname)
{
char ext[9];
time_t t;
struct tm tm;
if (!KeepBackups) {
return;
}
time(&t);
tm = *localtime(&t);
if (debug)
alog("Module Database Backing up %s", dbname);
ModuleRemoveBackups(dbname);
curday = tm.tm_yday;
strftime(ext, sizeof(ext), "%Y%m%d", &tm);
rename_database(dbname, ext);
}
/*************************************************************************/
void ModuleRemoveBackups(char *dbname)
{
char ext[9];
char path[PATH_MAX];
time_t t;
struct tm tm;
time(&t);
t -= (60 * 60 * 24 * KeepBackups);
tm = *localtime(&t);
strftime(ext, sizeof(ext), "%Y%m%d", &tm);
snprintf(path, sizeof(path), "backups/%s.%s", dbname, ext);
#ifndef _WIN32
unlink(path);
#else
DeleteFile(path);
#endif
}
/*************************************************************************/
|