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
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
|
/*
Copyright (C) 1999-2004 IC & S dbmail@ic-s.nl
Copyright (c) 2005-2006 NFG Net Facilities Group BV support@nfg.nl
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
/*
* dbase driver header file
* Functions for database communication
*
* should connect to any dbXXX.c file where XXXX is the dbase to be used
*/
#ifndef _DB_H
#define _DB_H
#include "dbmail.h"
#define DUMP_BUF_SIZE 1024
#define ICHECK_RESULTSETSIZE 1000000
#define MAX_EMAIL_SIZE 250
/* size of the messageblk's */
#define READ_BLOCK_SIZE (512ul*1024ul) /* be carefull, MYSQL has a limit */
/* config types */
#define CONFIG_MANDATORY 1
#define CONFIG_EMPTY 0
/*
* PROTOTYPES
*/
/**
* \brief load the database driver module
* \return
* - 1 on modules unsupported
* - 0 on success
* - -1 on failure to load module
* - -2 on missing symbols
* - -3 on memory error
* \file dbmodule.c FIXME: Is \file the right doc convention?
* \side-effects: calls TRACE_FATAL for errors, so no real return values anyways.
*/
int db_load_driver(void);
/* Implemented differently for MySQL and PostgreSQL: */
/**
* \brief connect to the database
* \return
* - -1 on failure
* - 0 otherwise
*/
int db_connect(void);
/*
* make sure we're running against a current database layout
*/
int db_check_version(void);
/**
* \brief check database connection. If it is dead, reconnect
* \return
* - -1 on failure (no connection to db possible)
* - 0 on success
*/
int db_check_connection(void);
/**
* \brief check database for existence of usermap table
* \return
* - 0 on table not found
* - 1 on table found
*/
int db_use_usermap(void);
/**
* \brief check if username exists in the usermap table
* \param ci clientinfo_t of connected client
* \param userid login to lookup
* \param real_username contains userid after successful lookup
* \return
* - -1 on db failure
* - 0 on success
* - 1 on not found
*/
int db_usermap_resolve(clientinfo_t *ci, const char *userid, char * real_username);
/**
* \brief disconnect from database server
* \return 0
*/
int db_disconnect(void);
/**
* \brief execute a database query
* \param the_query the SQL query to execute
* \return
* - 0 on success
* - 1 on failure
*/
int db_query(const char *the_query);
/**
* \brief get number of rows in result set.
* \return
* - 0 on failure or no rows
* - number of rows otherwise
*/
unsigned db_num_rows(void);
/**
* \brief get number of fields in result set.
* \return
* - 0 on failure or no fields
* - number of fields otherwise
*/
unsigned db_num_fields(void);
/**
* \brief clear the result set of a query
*/
void db_free_result(void);
/** \defgroup db_get_result_group Variations of db_get_result()
* \brief get a single result field row from the result set
* \param row result row to get it from
* \param field field (=column) to get result from
* \return
* - pointer to string holding result.
* - NULL if no such result
*/
/*@dependent@*/ const char *db_get_result(unsigned row, unsigned field);
/** \ingroup db_get_result_group
* \brief Returns the result as an Integer
*/
int db_get_result_int(unsigned row, unsigned field);
/** \ingroup db_get_result_group
* \brief Returns the result as an Integer from 0 to 1
*/
int db_get_result_bool(unsigned row, unsigned field);
/** \ingroup db_get_result_group
* \brief Returns the result as an Unsigned 64 bit Integer
*/
u64_t db_get_result_u64(unsigned row, unsigned field);
/**
* \brief return the ID generated for an AUTO_INCREMENT column
* by the previous column.
* \param sequence_identifier sequence identifier
* \return
* - 0 if no such id (if for instance no AUTO_INCREMENT
* value was generated).
* - the id otherwise
*/
u64_t db_insert_result(const char *sequence_identifier);
/**
* \brief generate a RETURNING clause applicable to the
* current database backend.
* \param query SELECT-type clause of what to return
* \return string to append to INSERT or UPDATE query
*/
char *db_returning(char *query);
/**
* \brief escape a string for use in query
* \param to string to copy escaped string to. Must be allocated by caller
* \param from original string
* \param length of orginal string
* \return length of escaped string
* \attention behaviour is undefined if to and from overlap
*/
unsigned long db_escape_string(char *to,
const char *from, unsigned long length);
/**
* \brief escape a binary data for use in query
* \param to string to copy escaped string to. Must be allocated by caller
* \param from original string
* \param length of orginal string
* \return length of escaped string
* \attention behaviour is undefined if to and from overlap
*/
unsigned long db_escape_binary(char *to,
const char *from, unsigned long length);
/**
* \brief get length in bytes of a result field in a result set.
* \param row row of field
* \param field field number (0..nfields)
* \return
* - -1 if invalid field
* - length otherwise
*/
u64_t db_get_length(unsigned row, unsigned field);
/**
* \brief get number of rows affected by a query
* \return
* - -1 on error (e.g. no result set)
* - number of affected rows otherwise
*/
u64_t db_get_affected_rows(void);
/**
* \brief switch from the normal result set to the msgbuf
* result set from hereon. A call to db_store_msgbuf_result()
* will reverse this situation again
*/
void db_use_msgbuf_result(void);
/**
* \brief switch from msgbuf result set to the normal result
* set for all following database operations. This function
* should be called after db_use_msgbuf_result() when the
* msgbuf result has to be used later on.
*/
void db_store_msgbuf_result(void);
/**
* \brief switch from normal result set to the authentication result
* set
*/
void db_use_auth_result(void);
/**
* \brief switch from authentication result set to normal result set
*/
void db_store_auth_result(void);
/**
* \brief get void pointer to result set.
* \return a pointer to a result set
* \bug this is really ugly and should be dealt with differently!
*/
void *db_get_result_set(void);
/**
* \brief set the new result set
* \param res the new result set
* \bug this is really ugly and should be dealt with differently!
*/
void db_set_result_set(void *res);
/**
* begin transaction
* \return
* - -1 on error
* - 0 otherwise
*/
int db_begin_transaction(void);
/**
* commit transaction
* \return
* - -1 on error
* - 0 otherwise
*/
int db_commit_transaction(void);
/**
* rollback transaction
* \return
* - -1 on error
* - 0 otherwise
*/
int db_rollback_transaction(void);
int mailbox_is_writable(u64_t mailbox_idnr);
/**
* set savepoint to transaction
* \param name
* \return
* - -1 on error
* - 0 otherwise
*/
int db_savepoint_transaction(const char*);
/**
* rollback transaction to savepoint
* \param name
* \return
* - -1 on error
* - 0 otherwise
*/
int db_rollback_savepoint_transaction(const char*);
/* shared implementattion from hereon */
/**
* \brief get the physmessage_id from a mailbox_idnr, message_idnr tuple
* \param mailbox_idnr
* \param message_idnr
* \param physmessage_id will hold physmessage_id on return. Must hold a valid
* pointer on call.
* \return
* - -1 on error
* - 0 if a physmessage_id was found
* - 1 if no message with this mailbox_idnr, message_idnr tuple was found
* \attention function will fail and halt program if physmessage_id is
* NULL on call.
*/
int db_get_physmessage_id(u64_t mailbox_idnr, u64_t message_idnr, /*@out@*/ u64_t * physmessage_id);
/**
* \brief return number of bytes used by user identified by userid
* \param user_idnr id of the user (from users table)
* \param curmail_size will hold current mailsize used (should hold a valid
* pointer on call).
* \return
* - -1 on failure<BR>
* - 1 otherwise
*/
int db_get_quotum_used(u64_t user_idnr, u64_t * curmail_size);
/**
* \brief finds all users which need to have their curmail_size (amount
* of space used by user) updated. Then updates this number in the
* database
* \return
* - -2 on memory error
* - -1 on database error
* - 0 on success
*/
int db_calculate_quotum_all(void);
/**
* \brief performs a recalculation of used quotum of a user and puts
* this value in the users table.
* \param user_idnr
* \return
* - -1 on db_failure
* - 0 on success
*/
int db_calculate_quotum_used(u64_t user_idnr);
/**
* \brief get a specific sieve script for a user
* \param user_idnr user id
* \param scriptname string with name of the script to get
* \param script pointer to string that will hold the script itself
* \return
* - -2 on failure of allocating memory for string
* - -1 on database failure
* - 0 on success
* \attention caller should free the returned script
*/
int db_get_sievescript_byname(u64_t user_idnr, char *scriptname,
char **script);
/**
* \brief Check if the user has an active sieve script.
* \param user_idnr user id
* \return
* - -1 on error
* - 0 when user has an active script
* - 1 when user doesn't have an active script
*/
int db_check_sievescript_active(u64_t user_idnr);
int db_check_sievescript_active_byname(u64_t user_idnr, const char *scriptname);
/**
* \brief get the name of the active sieve script for a user
* \param user_idnr user id
* \param scriptname pointer to string that will hold the script name
* \return
* - -3 on failure to find a matching row in database
* - -2 on failure of allocating memory for string
* - -1 on database failure
* - 0 on success
* \attention caller should free the returned script name
*/
int db_get_sievescript_active(u64_t user_idnr, char **scriptname);
/**
* \brief get a list of sieve scripts for a user
* \param user_idnr user id
* \param scriptlist pointer to struct dm_list that will hold script names
* \return
* - -2 on failure of allocating memory for string
* - -1 on database failure
* - 0 on success
* \attention caller should free the struct dm_list and its contents
*/
int db_get_sievescript_listall(u64_t user_idnr, struct dm_list *scriptlist);
/**
* \brief rename a sieve script for a user
* \param user_idnr user id
* \param scriptname is the current name of the script
* \param newname is the new name the script will be changed to
* \return
* - -3 on non-existent script name
* - -2 on NULL scriptname or script
* - -1 on database failure
* - 0 on success
*/
int db_rename_sievescript(u64_t user_idnr, char *scriptname,
char *newname);
/**
* \brief add a sieve script for a user
* \param user_idnr user id
* \param scriptname is the name of the script to be added
* \param scriptname is the script itself to be added
* \return
* - -3 on non-existent script name
* - -2 on NULL scriptname or script
* - -1 on database failure
* - 0 on success
*/
int db_add_sievescript(u64_t user_idnr, char *scriptname, char *script);
/**
* \brief deactivate a sieve script for a user
* \param user_idnr user id
* \param scriptname is the name of the script to be activated
* \return
* - -3 on non-existent script name
* - -2 on bad or wrong script name
* - -1 on database failure
* - 0 on success
*/
int db_deactivate_sievescript(u64_t user_idnr, char *scriptname);
/**
* \brief activate a sieve script for a user
* \param user_idnr user id
* \param scriptname is the name of the script to be activated
* \return
* - -3 on non-existent script name
* - -2 on bad or wrong script name
* - -1 on database failure
* - 0 on success
*/
int db_activate_sievescript(u64_t user_idnr, char *scriptname);
/**
* \brief delete a sieve script for a user
* \param user_idnr user id
* \param scriptname is the name of the script to be deleted
* \return
* - -3 on non-existent script name
* - -1 on database failure
* - 0 on success
*/
int db_delete_sievescript(u64_t user_idnr, char *scriptname);
/**
* \brief checks to see if the user has space for a script
* \param user_idnr user id
* \param scriptlen is the size of the script we might insert
* \return
* - -3 if there is not enough space
* - -1 on database failure
* - 0 on success
*/
int db_check_sievescript_quota(u64_t user_idnr, u64_t scriptlen);
/**
* \brief sets the sieve script quota for a user
* \param user_idnr user id
* \param quotasize is the desired new quota size
* \return
* - -1 on database failure
* - 0 on success
*/
int db_set_sievescript_quota(u64_t user_idnr, u64_t quotasize);
/**
* \brief gets the current sieve script quota for a user
* \param user_idnr user id
* \param quotasize will be filled with the current quota size
* \return
* - -1 on database failure
* - 0 on success
*/
int db_get_sievescript_quota(u64_t user_idnr, u64_t * quotasize);
/**
* \brief get auto-notification address for a user
* \param user_idnr user id
* \param notify_address pointer to string that will hold the address
* \return
* - -2 on failure of allocating memory for string
* - -1 on database failure
* - 0 on success
* \attention caller should free deliver_to address
*/
int db_get_notify_address(u64_t user_idnr, char **notify_address);
/**
* \brief get reply body for auto-replies
* \param user_idnr user idnr
* \param body pointer to string that will hold reply body
* \return
* - -2 on failure of allocating memory for string
* - -1 on database failure
* - 0 on success
* \attention caller should free reply_body
*/
int db_get_reply_body(u64_t user_idnr, char **body);
/**
* \brief get user idnr of a message.
* \param mailbox_idnr idnr of message
* \param message_idnr idnr of message
* \return
* - -1 on failure
* - 0 if message is located in a shared mailbox.
* - user_idnr otherwise
*/
u64_t db_get_useridnr(u64_t mailbox_idnr, u64_t message_idnr);
/**
* \brief insert a new physmessage. This inserts only an new record in the
* physmessage table with a timestamp
* \param physmessage_id will hold the id of the physmessage on return. Must
* hold a valid pointer on call.
* \return
* - -1 on failure
* - 1 on success
*/
int db_insert_physmessage(/*@out@*/ u64_t * physmessage_id);
/**
* \brief insert a physmessage with an internal date.
* \param internal_date the internal date in "YYYY-MM-DD HH:Mi:SS"
* \param physmessage_id will hold the id of the physmessage on return. Must
* hold a valid pointer on call.
* \return
* - -1 on failure
* - 1 on success
*/
int db_insert_physmessage_with_internal_date(timestring_t internal_date,
u64_t * physmessage_id);
/**
* \brief update unique_id, message_size and rfc_size of
* a message identified by message_idnr
* \param mailbox_idnr
* \param message_idnr
* \param unique_id unique id of message
* \param message_size size of message
* \param rfc_size
* \return
* - -1 on database error
* - 0 on success
*/
int db_update_message(u64_t mailbox_idnr, u64_t message_idnr, const char *unique_id,
u64_t message_size, u64_t rfc_size);
/**
* \brief set unique id of a message
* \param mailbox_idnr
* \param message_idnr
* \param unique_id unique id of message
* \return
* - -1 on database error
* - 0 on success
*/
int db_message_set_unique_id(u64_t mailbox_idnr, u64_t message_idnr, const char *unique_id);
/**
* \brief set messagesize and rfcsize of a message
* \param physmessage_id
* \param message_size
* \param rfc_size
* \return
* - -1 on failure
* - 0 on succes
*/
int db_physmessage_set_sizes(u64_t physmessage_id, u64_t message_size,
u64_t rfc_size);
/**
* \brief insert a messageblock for a specific physmessage
* \param block the block
* \param block_size size of block
* \param physmessage_id id of physmessage to which the block belongs.
* \param messageblock_idnr will hold id of messageblock after call. Should
* hold a valid pointer on call.
* \return
* - -1 on failure
* - 0 on success
*/
int db_insert_message_block_physmessage(const char *block,
u64_t block_size,
u64_t physmessage_id,
u64_t * messageblock_idnr,
unsigned is_header);
/**
* \brief insert a message block into the message block table
* \param block the message block (which is a string)
* \param block_size length of the block
* \param mailbox_idnr mailbox of the message the block belongs to
* \param message_idnr id of the message the block belongs to
* \param messageblock_idnr will hold id of messageblock after call. Should
* be a valid pointer on call.
* \return
* - -1 on failure
* - 0 otherwise
*/
int db_insert_message_block(const char *block, u64_t block_size,
u64_t mailbox_idnr,
u64_t message_idnr, /*@out@*/ u64_t *physmessage_id,
/*@out@*/ u64_t * messageblock_idnr,
unsigned is_header);
/**
* \brief log IP-address for POP/IMAP_BEFORE_SMTP. If the IP-address
* is already logged, it's timestamp is renewed.
* \param ip the ip (xxx.xxx.xxx.xxx)
* \return
* - -1 on database failure
* - 0 on success
* \bug timestamp!
*/
int db_log_ip(const char *ip);
/**
* \brief clean up ip log
* \param lasttokeep all ip log entries before this timestamp will
* be deleted
* \return
* - -1 on database failure
* - 0 on success
*/
int db_cleanup_iplog(timestring_t lasttokeep, u64_t *affected_rows);
int db_count_iplog(timestring_t lasttokeep, u64_t *affected_rows);
/**
* \brief cleanup database tables
* \return
* - -1 on database failure
* - 0 on success
*/
int db_cleanup(void);
/**
* \brief execute cleanup of database tables (have no idea why there
* are two functions for this..)
* \param tables array of char* holding table names
* \param num_tables number of tables in tables
* \return
* - -1 on db failure
* - 0 on success
*/
int db_do_cleanup(const char **tables, int num_tables);
/**
* \brief remove all mailboxes for a user
* \param user_idnr
* \return
* - -2 on memory failure
* - -1 on database failure
* - 0 on success
*/
int db_empty_mailbox(u64_t user_idnr);
/**
* \brief check for all message blocks that are not connected to
* a physmessage. This can only occur when in use with a
* database that does not check for foreign key constraints.
* \param lost_list pointer to a list which will contain all lost blocks.
* this list needs to be empty on call to this function.
* \return
* - -2 on memory error
* - -1 on database error
* - 0 on success
* \attention caller should free this memory
*/
int db_icheck_messageblks(struct dm_list *lost_list);
int db_icheck_physmessages(gboolean cleanup);
/**
* \brief check for all messages that are not connected to
* mailboxes
* \param lost_list pointer to a list which will contain all lost messages
* this list needs to be empty on call to this function.
* \return
* - -2 on memory error
* - -1 on database error
* - 0 on success
* \attention caller should free this memory
*/
int db_icheck_messages(struct dm_list *lost_list);
/**
* \brief check for all mailboxes that are not connected to
* users
* \param lost_list pointer to a list which will contain all lost mailboxes
* this list needs to be empty on call to this function.
* \return
* - -2 on memory error
* - -1 on database error
* - 0 on success
* \attention caller should free this memory
*/
int db_icheck_mailboxes(struct dm_list *lost_list);
/**
* \brief check for all messages that are not connected to physmessage
* records. This function is not nessecary when using foreign key
* constraints.
* \param lost_list pointer to a list which will contain all message_idnr
* of messages that are not connected to physmessage records.
* this list needs to be empty on call to this function.
* \return
* - -2 on memory error
* - -1 on database error
* - 0 on success
* \attention caller should free this memory
*/
int db_icheck_null_messages(struct dm_list *lost_list);
/**
* \brief check for all physmessage records that have no messageblks
* associated with them.
* \param null_list pointer to a list which will contain all physmessage_ids
* of messages that are not connected to physmessage records.
* this list needs to be empty on call to this function.
* \return
* - -2 on memory error
* - -1 on database error
* - 0 on success.
* \attention caller should free this memory
*/
int db_icheck_null_physmessages(struct dm_list *lost_list);
/**
* \brief check for is_header flag on messageblks
*
*/
int db_icheck_isheader(GList **lost);
int db_set_isheader(GList *lost);
/**
* \brief check for cached header values
*
*/
int db_icheck_headercache(GList **lost);
int db_set_headercache(GList *lost);
/**
* \brief check for rfcsize in physmessage table
*
*/
int db_icheck_rfcsize(GList **lost);
int db_update_rfcsize(GList *lost);
/**
* \brief check for cached envelopes
*
*/
int db_icheck_envelope(GList **lost);
int db_set_envelope(GList *lost);
/**
* \brief set status of a message
* \param mailbox_idnr
* \param message_idnr
* \param status new status of message
* \return result of db_query()
*/
int db_set_message_status(u64_t mailbox_idnr, u64_t message_idnr, MessageStatus_t status);
/**
* \brief delete a message block
* \param messageblk_idnr
* \return result of db_query()
*/
int db_delete_messageblk(u64_t messageblk_idnr);
/**
* \brief delete a physmessage
* \param physmessage_id
* \return
* - -1 on error
* - 1 on success
*/
int db_delete_physmessage(u64_t physmessage_id);
/**
* \brief delete a message
* \param mailbox_idnr
* \param message_idnr
* \return
* - -1 on error
* - 1 on success
*/
int db_delete_message(u64_t mailbox_idnr, u64_t message_idnr);
/**
* \brief delete a mailbox.
* \param mailbox_idnr
* \param only_empty if non-zero the mailbox will only be emptied,
* i.e. all messages in it will be deleted.
* \param update_curmail_size if non-zero the curmail_size of the
* user will be updated.
* \return
* - -1 on database failure
* - 0 on success
* \attention this function is unable to delete shared mailboxes
*/
int db_delete_mailbox(u64_t mailbox_idnr, int only_empty,
int update_curmail_size);
/**
* \brief write lines of message to fstream. Always write full headers.
* \param fstream the stream to write to
* \param mailbox_idnr mailbox of message to write
* \param message_idnr idrn of message to write
* \param lines number of lines to write. If <PRE>lines == -2</PRE>, then
* the whole message (excluding the header) is written.
* \param no_end_dot if
* - 0 \b do write the final "." signalling
* the end of the message
* - otherwise do \b not write the final "."
* \return
* - 0 on failure
* - 1 on success
*/
int db_send_message_lines(void *fstream, u64_t mailbox_idnr, u64_t message_idnr,
long lines, int no_end_dot);
/**
* \brief create a new POP3 session. (was createsession() in dbmysql.c)
* \param user_idnr user idnr
* \param session_ptr pointer to POP3 session
*/
int db_createsession(u64_t user_idnr, PopSession_t * session_ptr);
/**
* \brief Clean up a POP3 Session
* \param session_ptr pointer to POP3 session
*/
void db_session_cleanup(PopSession_t * session_ptr);
/**
* \brief update POP3 session
* \param session_ptr pointer to POP3 session
* \return
* - -1 on failure
* - 0 on success
* \attention does not update shared mailboxes (which should
* not be nessecary, because the shared mailboxes are not
* touched by POP3
*/
int db_update_pop(PopSession_t * session_ptr);
/**
* \brief set deleted status (=3) for all messages that are marked for
* delete (=2)
* \param affected_rows will hold the number of affected messages on return.
* must hold a valid pointer on call.
* \return
* - -1 on database failure;
* - 1 otherwise
*/
int db_set_deleted(u64_t * affected_rows);
int db_count_deleted(u64_t * affected_rows);
/**
* \brief purge all messages from the database with a "delete"-status
* (status = 3)
* \param affected_rows will hold the number of affected rows on return. Must
* hold a valid pointer on call
* \return
* - -2 on memory failure
* - -1 on database failure
* - 0 if no messages deleted (affected_rows will also hold '0')
* - 1 if a number of messages deleted (affected_rows will hold the number
* of deleted messages.
*/
int db_deleted_purge(u64_t * affected_rows);
int db_deleted_count(u64_t * affected_rows);
/**
* \brief check if a block of a certain size can be inserted.
* \param addblocksize size of added blocks (UNUSED)
* \param message_idnr
* \param *user_idnr pointer to user_idnr. This will be set to the
* idnr of the user associated with the message
* \return
* - -2 on database failure after a limit overrun (if this
* occurs the DB might be inconsistent and dbmail-util
* needs to be run)
* - -1 on database failure
* - 0 on success
* - 1 on limit overrun.
* \attention when inserting a block would cause a limit run-overrun.
* the message insert is automagically rolled back
*/
u64_t db_check_sizelimit(u64_t addblocksize, u64_t message_idnr,
u64_t * user_idnr);
/**
* \brief insert a message into the database
* \param msgdata the message
* \param datalen length of message
* \param mailbox_idnr mailbox to put it in
* \param user_idnr
* \param internal_date internal date of message. May be '\0'.
* \return
* - -1 on failure
* - 0 on success
* - 1 on invalid message
* - 2 on mail quotum exceeded
*/
int db_imap_append_msg(const char *msgdata, u64_t datalen,
u64_t mailbox_idnr, u64_t user_idnr,
timestring_t internal_date, u64_t * msg_idnr);
/**
* Produces a regexp that will case-insensitively match the mailbox name
* according to the modified UTF-7 rules given in section 5.1.3 of IMAP.
* \param column name of the name column.
* \param mailbox name of the mailbox.
* \param filter use /% for children or "" for just the box.
* \return pointer to a newly allocated string.
*/
char *db_imap_utf7_like(const char *column, const char *mailbox, const char *filter);
/* mailbox functionality */
/**
* \brief find mailbox "name" for a user
* \param name name of mailbox
* \param user_idnr
* \param mailbox_idnr will hold mailbox_idnr after return. Must hold a valid
* pointer on call.
* \return
* - -1 on failure
* - 0 if mailbox not found
* - 1 if found
*/
int db_findmailbox(const char *name, u64_t user_idnr,
/*@out@*/ u64_t * mailbox_idnr);
/**
* \brief finds all the mailboxes owned by owner_idnr who match
* the pattern.
* \param owner_idnr
* \param pattern pattern
* \param children pointer to a list of mailboxes conforming to
* pattern. This will be filled when the function
* returns and needs to be free-d by caller
* \param nchildren number of mailboxes in children
* \param only_subscribed only search in subscribed mailboxes.
* \param mb pointer to a list of mailbox_t to be filled.
* \return
* - -1 on failure
* - 0 on success
*/
int db_findmailbox_by_regex(u64_t owner_idnr, const char *pattern,
u64_t ** children, unsigned *nchildren,
int only_subscribed, mailbox_t ** mb);
/**
* \brief get info on a mailbox. Info is filled in in the
* mailbox_t struct.
* \param mb the mailbox_t to fill in. (mb->uid needs to be
* set already!
* \return
* - -1 on failure
* - 0 on success
*/
int db_getmailbox_flags(mailbox_t *mb);
int db_getmailbox_count(mailbox_t *mb);
int db_getmailbox(mailbox_t * mb);
/**
* \brief find owner of a mailbox
* \param mboxid id of mailbox
* \param owner_id will hold owner of mailbox after return
* \return
* - -1 on db error
* - 0 if owner not found
* - 1 if owner found
*/
int db_get_mailbox_owner(u64_t mboxid, /*@out@*/ u64_t * owner_id);
/**
* \brief check if a user is owner of the specified mailbox
* \param userid id of user
* \param mboxid id of mailbox
* \return
* - -1 on db error
* - 0 if not user
* - 1 if user
*/
int db_user_is_mailbox_owner(u64_t userid, u64_t mboxid);
/**
* \brief create a new mailbox
* \param name name of mailbox
* \param owner_idnr owner of mailbox
* \return
* - -1 on failure
* - 0 on success
*/
int db_createmailbox(const char *name, u64_t owner_idnr,
u64_t * mailbox_idnr);
/**
* \brief Create a mailbox, recursively creating its parents.
* \param mailbox Name of the mailbox to create
* \param source Upstream source of this mailbox spec
* \param owner_idnr Owner of the mailbox
* \param mailbox_idnr Fills the pointer with the mailbox id
* \param message Fills the pointer with a static pointer to a message
* \return
* - 0 on success
* - 1 on failure
* - -1 on error
*/
int db_mailbox_create_with_parents(const char * mailbox, mailbox_source_t source,
u64_t owner_idnr, u64_t * mailbox_idnr, const char * * message);
/**
* \brief Splits a mailbox name into pieces on '/'
* \param mailbox Name of the mailbox to split
* \param owner_idnr Owner of the mailbox
* \param mailboxes Filled with a list of mailbox piece names
* \param errmsg Fills the pointer with a static pointer to a message
* \return
* - 0 on success
* - 1 on failure
* - -1 on error
*/
int db_imap_split_mailbox(const char *mailbox, u64_t owner_idnr,
GList ** mailboxes, const char ** errmsg);
/**
* \brief set permission on a mailbox (readonly/readwrite)
* \param mailbox_id idnr of mailbox
* \return
* - -1 on database failure
* - 0 on success
* - 1 on failure
*/
int db_mailbox_set_permission(u64_t mailbox_id, int permission);
/**
* \brief find a mailbox, create if not found
* \param name name of mailbox
* \param owner_idnr owner of mailbox
* \return
* - -1 on failure
* - 0 on success
*/
int db_find_create_mailbox(const char *name, mailbox_source_t source,
u64_t owner_idnr, /*@out@*/ u64_t * mailbox_idnr);
/**
* \brief produce a list containing the UID's of the specified
* mailbox' children matching the search criterion
* \param mailbox_idnr id of parent mailbox
* \param user_idnr
* \param children will hold list of children
* \param nchildren length of list of children
* \param filter search filter
* \return
* - -1 on failure
* - 0 on success
*/
int db_listmailboxchildren(u64_t mailbox_idnr, u64_t user_idnr,
u64_t ** children, int *nchildren);
/**
* \brief check if mailbox is selectable
* \param mailbox_idnr
* \return
* - -1 on failure
* - 0 if not selectable
* - 1 if selectable
*/
int db_isselectable(u64_t mailbox_idnr);
/**
* \brief check if mailbox has no_inferiors flag set.
* \param mailbox_idnr
* \return
* - -1 on failure
* - 0 flag not set
* - 1 flag set
*/
int db_noinferiors(u64_t mailbox_idnr);
/**
* \brief set selectable flag of a mailbox on/of
* \param mailbox_idnr
* \param select_value
* - 0 for not select
* - 1 for select
* \return
* - -1 on failure
* - 0 on success
*/
int db_setselectable(u64_t mailbox_idnr, int select_value);
/**
* \brief remove all messages from a mailbox
* \param mailbox_idnr
* \return
* - -1 on failure
* - 0 on success
*/
int db_removemsg(u64_t user_idnr, u64_t mailbox_idnr);
/**
* \brief move all messages from one mailbox to another.
* \param mailbox_to idnr of mailbox to move messages from.
* \param mailbox_from idnr of mailbox to move messages to.
* \return
* - -1 on failure
* - 0 on success
*/
int db_movemsg(u64_t mailbox_to, u64_t mailbox_from);
/**
* \brief copy a message to a mailbox
* \param mailbox_from mailbox to copy from
* \param msg_idnr
* \param mailbox_to mailbox to copy to
* \param user_idnr user to copy the messages for.
* \return
* - -2 if the quotum is exceeded
* - -1 on failure
* - 0 on success
*/
int db_copymsg(u64_t mailbox_from, u64_t msg_idnr, u64_t mailbox_to,
u64_t user_idnr, u64_t * newmsg_idnr);
/**
* \brief check if mailbox already holds message with message-id
* \param mailbox_idnr
* \param messageid Message-ID header to check for
* \return number of matching messages or -1 on failure
*/
int db_mailbox_has_message_id(u64_t mailbox_idnr, const char *messageid);
/**
* \brief get name of mailbox
* \param mailbox_idnr
* \param name will hold the name
* \return
* - -1 on failure
* - 0 on success
* \attention name should be large enough to hold the name
* (preferably of size IMAP_MAX_MAILBOX_NAMELEN + 1)
*/
int db_getmailboxname(u64_t mailbox_idnr, u64_t user_idnr, char *name);
/**
* \brief set name of mailbox
* \param mailbox_idnr
* \param name new name of mailbox
* \return
* - -1 on failure
* - 0 on success
*/
int db_setmailboxname(u64_t mailbox_idnr, const char *name);
/**
* \brief remove all messages from a mailbox that have the delete flag
* set. Remove is done by setting status to 2. A list holding
* messages_idnrs of all removed messages is made in msg_idnrs.
* nmsgs will hold the number of deleted messages.
* \param mailbox_idnr
* \param msg_idnrs pointer to a list of msg_idnrs. If NULL, or nmsg
* is NULL, no list will be made.
* \param nmsgs will hold the number of memebers in the list. If NULL,
* or msg_idnrs is NULL, no list will be made.
* \return
* - -1 on failure
* - 0 on success
* \attention caller should free msg_idnrs and nmsg
*/
int db_expunge(u64_t mailbox_idnr,
u64_t user_idnr, u64_t ** msg_idnrs, u64_t * nmsgs);
/**
* \brief get first unseen message in a mailbox
* \param mailbox_idnr
* \return
* - -1 on failure
* - msg_idnr of first unseen message in mailbox otherwise
*/
u64_t db_first_unseen(u64_t mailbox_idnr);
/**
* \brief subscribe to a mailbox.
* \param mailbox_idnr mailbox to subscribe to
* \param user_idnr user to subscribe
* \return
* - -1 on failure
* - 0 on success
*/
int db_subscribe(u64_t mailbox_idnr, u64_t user_idnr);
/**
* \brief unsubscribe from a mailbox
* \param mailbox_idnr
* \param user_idnr
* \return
* - -1 on failure
* - 0 on success
*/
int db_unsubscribe(u64_t mailbox_idnr, u64_t user_idnr);
/* message functionality */
/**
* \brief get a flag for a message specified by flag_name.
* \param flag_name name of flag
* \param msg_idnr
* \param mailbox_idnr
* \return
* - -1 on failure
* - 0 if flag is not set or a non-existent flag is asked.
* - 1 if flag is set.
*/
int db_get_msgflag(const char *flag_name,
u64_t msg_idnr, u64_t mailbox_idnr);
/**
* \brief set flags for a message
* \param msg_idnr
* \param mailbox_idnr
* \param flags Array of IMAP_NFLAGS elements. See
* imapcommand.c for details.
* \param action_type
* - IMAPFA_REPLACE new set will be exactly as flags,
* with '1' for set, and '0' for not set.
* - IMAPFA_ADD set all flags which have a '1' as value
* in flags
* - IMAPFA_REMOVE clear all flags that have '1' as value
* in flags
* \return
* - -1 on failure
* - 0 on success
*/
int db_set_msgflag(u64_t msg_idnr, u64_t mailbox_idnr, int *flags,
int action_type);
/**
* \brief check if a user has a certain right to a mailbox
* \param mailbox
* \param user_idnr id of user
* \param right_flag string holding the flag to check for
* \return
* - -1 on db error
* - 0 if no right
* - 1 if user has the right
*/
int db_acl_has_right(mailbox_t *mailbox, u64_t user_idnr, const char *right_flag);
/**
* \brief get all permissions on a mailbox for a user
* \param mailbox
* \param user_idnr id of user
* \param map result
*
*/
int db_acl_get_acl_map(mailbox_t *mailbox, u64_t userid, struct ACLMap *map);
/**
* \brief set one right in an acl for a user
* \param userid id of user
* \param mboxid id of mailbox
* \param right_flag string holding the acl to set
* \param set 0 if flag will be set to 0, 1 otherwise
* \return
* - -1 on error
* - 1 on success
* \note if the user has no acl for this mailbox, it
* will be created.
*/
int db_acl_set_right(u64_t userid, u64_t mboxid,
const char *right_flag, int set);
/**
* \brief delete an ACL for a user, mailbox
* \param userid id of user
* \param mboxid id of mailbox
* \return
* - -1 on db failure
* - 1 on success
*/
int db_acl_delete_acl(u64_t userid, u64_t mboxid);
/**
* \brief get a list of all identifiers which have rights on a mailbox.
* \param mboxid id of mailbox
* \param identifier_list list of identifiers
* \return
* - -2 on mem failure
* - -1 on db failure
* - 1 on success
* \note identifier_list needs to be empty on call.
*/
int db_acl_get_identifier(u64_t mboxid,
/*@out@*/ struct dm_list *identifier_list);
/**
* constructs a string for use in queries. This is used to not be dependent
* on the internal representation of a date in the database. Whenever the
* date is queried for in a query, this function is used to get the right
* database function for the query (TO_CHAR(date,format) for Postgres,
* DATE_FORMAT(date, format) for MySQL).
*/
char *date2char_str(const char *column);
int db_getmailbox_list_result(u64_t mailbox_idnr, u64_t user_idnr, mailbox_t * mb);
/*
* db-user accessors
*/
int db_user_exists(const char *username, u64_t * user_idnr);
int db_user_create_shadow(const char *username, u64_t * user_idnr);
int db_user_create(const char *username, const char *password, const char *enctype,
u64_t clientid, u64_t maxmail, u64_t * user_idnr);
int db_user_find_create(u64_t user_idnr);
int db_user_delete(const char * username);
int db_user_rename(u64_t user_idnr, const char *new_name);
int db_user_log_login(u64_t user_idnr);
int db_change_mailboxsize(u64_t user_idnr, u64_t new_size);
/* auto-reply cache */
int db_replycache_register(const char *to, const char *from, const char *handle);
int db_replycache_validate(const char *to, const char *from, const char *handle, int days);
int db_replycache_unregister(const char *to, const char *from, const char *handle);
/**
* \brief clean up replycache
* \param lasttokeep all replycache entries before this timestamp will
* be deleted
* \return
* - -1 on database failure
* - 0 on success
*/
int db_cleanup_replycache(timestring_t lasttokeep, u64_t *affected_rows);
int db_count_replycache(timestring_t lasttokeep, u64_t *affected_rows);
/* get driver specific SQL snippets */
const char * db_get_sql(sql_fragment_t frag);
int db_getmailbox_list_by_regex(u64_t owner_idnr, const char *pattern,
u64_t ** children, unsigned *nchildren,
int only_subscribed, mailbox_t **mb);
#endif
|