File size: 34,403 Bytes
f0f4f2b | 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 | #include <sys/stat.h>
#include <sys/types.h>
#include <locale.h>
#include <unistd.h>
#include <openssl/opensslv.h>
#include <assert.h>
#include "dc_context.h"
#include "dc_imap.h"
#include "dc_smtp.h"
#include "dc_openssl.h"
#include "dc_mimefactory.h"
#include "dc_tools.h"
#include "dc_job.h"
#include "dc_key.h"
#include "dc_pgp.h"
#include "dc_apeerstate.h"
static const char* config_keys[] = {
"addr"
,"mail_server"
,"mail_user"
,"mail_pw"
,"mail_port"
,"send_server"
,"send_user"
,"send_pw"
,"send_port"
,"server_flags"
,"imap_folder" // deprecated
,"displayname"
,"selfstatus"
,"selfavatar"
,"e2ee_enabled"
,"mdns_enabled"
,"inbox_watch"
,"sentbox_watch"
,"mvbox_watch"
,"mvbox_move"
,"show_emails"
,"save_mime_headers"
,"configured_addr"
,"configured_mail_server"
,"configured_mail_user"
,"configured_mail_pw"
,"configured_mail_port"
,"configured_send_server"
,"configured_send_user"
,"configured_send_pw"
,"configured_send_port"
,"configured_server_flags"
,"configured"
};
static const char* sys_config_keys[] = {
"sys.version"
,"sys.msgsize_max_recommended"
,"sys.config_keys"
};
#define str_array_len(a) (sizeof(a)/sizeof(char*))
/**
* A callback function that is used if no user-defined callback is given to dc_context_new().
* The callback function simply returns 0 which is safe for every event.
*
* @private @memberof dc_context_t
*/
static uintptr_t cb_dummy(dc_context_t* context, int event, uintptr_t data1, uintptr_t data2)
{
return 0;
}
/**
* The following three callback are given to dc_imap_new() to read/write configuration
* and to handle received messages. As the imap-functions are typically used in
* a separate user-thread, also these functions may be called from a different thread.
*
* @private @memberof dc_context_t
*/
static char* cb_get_config(dc_imap_t* imap, const char* key, const char* def)
{
dc_context_t* context = (dc_context_t*)imap->userData;
return dc_sqlite3_get_config(context->sql, key, def);
}
static void cb_set_config(dc_imap_t* imap, const char* key, const char* value)
{
dc_context_t* context = (dc_context_t*)imap->userData;
dc_sqlite3_set_config(context->sql, key, value);
}
static int cb_precheck_imf(dc_imap_t* imap, const char* rfc724_mid,
const char* server_folder, uint32_t server_uid)
{
int rfc724_mid_exists = 0;
uint32_t msg_id = 0;
char* old_server_folder = NULL;
uint32_t old_server_uid = 0;
int mark_seen = 0;
msg_id = dc_rfc724_mid_exists(imap->context, rfc724_mid,
&old_server_folder, &old_server_uid);
if (msg_id!=0)
{
rfc724_mid_exists = 1;
if (old_server_folder[0]==0 && old_server_uid==0) {
dc_log_info(imap->context, 0, "[move] detected bbc-self %s", rfc724_mid);
mark_seen = 1;
}
else if (strcmp(old_server_folder, server_folder)!=0) {
dc_log_info(imap->context, 0, "[move] detected moved message %s", rfc724_mid);
dc_update_msg_move_state(imap->context, rfc724_mid, DC_MOVE_STATE_STAY);
}
if (strcmp(old_server_folder, server_folder)!=0
|| old_server_uid!=server_uid) {
dc_update_server_uid(imap->context, rfc724_mid, server_folder, server_uid);
}
dc_do_heuristics_moves(imap->context, server_folder, msg_id);
if (mark_seen) {
dc_job_add(imap->context, DC_JOB_MARKSEEN_MSG_ON_IMAP, msg_id, NULL, 0);
}
}
// TODO: also optimize for already processed report/mdn Message-IDs.
// this happens regulary as eg. mdns are typically read from the INBOX,
// moved to MVBOX and popping up from there.
// when modifying tables for this purpose, maybe also target #112 (mdn cleanup)
free(old_server_folder);
return rfc724_mid_exists;
}
static void cb_receive_imf(dc_imap_t* imap, const char* imf_raw_not_terminated, size_t imf_raw_bytes, const char* server_folder, uint32_t server_uid, uint32_t flags)
{
dc_context_t* context = (dc_context_t*)imap->userData;
dc_receive_imf(context, imf_raw_not_terminated, imf_raw_bytes, server_folder, server_uid, flags);
}
/**
* Create a new context object. After creation it is usually
* opened, connected and mails are fetched.
*
* @memberof dc_context_t
* @param cb a callback function that is called for events (update,
* state changes etc.) and to get some information from the client (eg. translation
* for a given string).
* See @ref DC_EVENT for a list of possible events that may be passed to the callback.
* - The callback MAY be called from _any_ thread, not only the main/GUI thread!
* - The callback MUST NOT call any dc_* and related functions unless stated
* otherwise!
* - The callback SHOULD return _fast_, for GUI updates etc. you should
* post yourself an asynchronous message to your GUI thread, if needed.
* - If not mentioned otherweise, the callback should return 0.
* @param userdata can be used by the client for any purpuse. He finds it
* later in dc_get_userdata().
* @param os_name is only for decorative use
* and is shown eg. in the `X-Mailer:` header
* in the form "Delta Chat Core <version>/<os_name>".
* You can give the name of the app, the operating system,
* the used environment and/or the version here.
* It is okay to give NULL, in this case `X-Mailer:` header
* is set to "Delta Chat Core <version>".
* @return A context object with some public members.
* The object must be passed to the other context functions
* and must be freed using dc_context_unref() after usage.
*/
dc_context_t* dc_context_new(dc_callback_t cb, void* userdata, const char* os_name)
{
dc_context_t* context = NULL;
if ((context=calloc(1, sizeof(dc_context_t)))==NULL) {
exit(23); /* cannot allocate little memory, unrecoverable error */
}
pthread_mutex_init(&context->smear_critical, NULL);
pthread_mutex_init(&context->bobs_qr_critical, NULL);
pthread_mutex_init(&context->inboxidle_condmutex, NULL);
dc_jobthread_init(&context->sentbox_thread, context, "SENTBOX", "configured_sentbox_folder");
dc_jobthread_init(&context->mvbox_thread, context, "MVBOX", "configured_mvbox_folder");
pthread_mutex_init(&context->smtpidle_condmutex, NULL);
pthread_cond_init(&context->smtpidle_cond, NULL);
pthread_mutex_init(&context->oauth2_critical, NULL);
context->magic = DC_CONTEXT_MAGIC;
context->userdata = userdata;
context->cb = cb? cb : cb_dummy;
context->os_name = dc_strdup_keep_null(os_name);
context->shall_stop_ongoing = 1; /* the value 1 avoids dc_stop_ongoing_process() from stopping already stopped threads */
dc_openssl_init(); // OpenSSL is used by libEtPan and by netpgp, init before using these parts.
dc_pgp_init();
context->sql = dc_sqlite3_new(context);
dc_job_kill_action(context, DC_JOB_EMPTY_SERVER);
context->inbox = dc_imap_new(cb_get_config, cb_set_config, cb_precheck_imf, cb_receive_imf, (void*)context, context);
context->sentbox_thread.imap = dc_imap_new(cb_get_config, cb_set_config, cb_precheck_imf, cb_receive_imf, (void*)context, context);
context->mvbox_thread.imap = dc_imap_new(cb_get_config, cb_set_config, cb_precheck_imf, cb_receive_imf, (void*)context, context);
context->smtp = dc_smtp_new(context);
/* Random-seed. An additional seed with more random data is done just before key generation
(the timespan between this call and the key generation time is typically random.
Moreover, later, we add a hash of the first message data to the random-seed
(it would be okay to seed with even more sensible data, the seed values cannot be recovered from the PRNG output, see OpenSSL's RAND_seed()) */
uintptr_t seed[5];
seed[0] = (uintptr_t)time(NULL); /* time */
seed[1] = (uintptr_t)seed; /* stack */
seed[2] = (uintptr_t)context; /* heap */
seed[3] = (uintptr_t)pthread_self(); /* thread ID */
seed[4] = (uintptr_t)getpid(); /* process ID */
dc_pgp_rand_seed(context, seed, sizeof(seed));
return context;
}
/**
* Free a context object.
* If app runs can only be terminated by a forced kill, this may be superfluous.
* Before the context object is freed, connections to SMTP, IMAP and database
* are closed. You can also do this explicitly by calling dc_close() on your own
* before calling dc_context_unref().
*
* @memberof dc_context_t
* @param context The context object as created by dc_context_new().
* If NULL is given, nothing is done.
* @return None.
*/
void dc_context_unref(dc_context_t* context)
{
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC) {
return;
}
dc_pgp_exit();
if (dc_is_open(context)) {
dc_close(context);
}
dc_imap_unref(context->inbox);
dc_imap_unref(context->sentbox_thread.imap);
dc_imap_unref(context->mvbox_thread.imap);
dc_smtp_unref(context->smtp);
dc_sqlite3_unref(context->sql);
dc_openssl_exit();
pthread_mutex_destroy(&context->smear_critical);
pthread_mutex_destroy(&context->bobs_qr_critical);
pthread_mutex_destroy(&context->inboxidle_condmutex);
dc_jobthread_exit(&context->sentbox_thread);
dc_jobthread_exit(&context->mvbox_thread);
pthread_cond_destroy(&context->smtpidle_cond);
pthread_mutex_destroy(&context->smtpidle_condmutex);
pthread_mutex_destroy(&context->oauth2_critical);
free(context->os_name);
context->magic = 0;
free(context);
}
/**
* Get user data associated with a context object.
*
* @memberof dc_context_t
* @param context The context object as created by dc_context_new().
* @return User data, this is the second parameter given to dc_context_new().
*/
void* dc_get_userdata(dc_context_t* context)
{
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC) {
return NULL;
}
return context->userdata;
}
/**
* Open context database. If the given file does not exist, it is
* created and can be set up using dc_set_config() afterwards.
*
* @memberof dc_context_t
* @param context The context object as created by dc_context_new().
* @param dbfile The file to use to store the database, something like `~/file` won't
* work on all systems, if in doubt, use absolute paths.
* @param blobdir A directory to store the blobs in; a trailing slash is not needed.
* If you pass NULL or the empty string, deltachat-core creates a directory
* beside _dbfile_ with the same name and the suffix `-blobs`.
* @return 1 on success, 0 on failure
* eg. if the file is not writable
* or if there is already a database opened for the context.
*/
int dc_open(dc_context_t* context, const char* dbfile, const char* blobdir)
{
int success = 0;
if (dc_is_open(context)) {
return 0; // a cleanup would close the database
}
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC || dbfile==NULL) {
goto cleanup;
}
context->dbfile = dc_strdup(dbfile);
/* set blob-directory
(to avoid double slashes, the given directory should not end with an slash) */
if (blobdir && blobdir[0]) {
context->blobdir = dc_strdup(blobdir);
dc_ensure_no_slash(context->blobdir);
}
else {
context->blobdir = dc_mprintf("%s-blobs", dbfile);
dc_create_folder(context, context->blobdir);
}
/* Create/open sqlite database, this may already use the blobdir */
if (!dc_sqlite3_open(context->sql, dbfile, 0)) {
goto cleanup;
}
success = 1;
cleanup:
if (!success) {
dc_close(context);
}
return success;
}
/**
* Close context database opened by dc_open().
* Before this, connections to SMTP and IMAP are closed; these connections
* are started automatically as needed eg. by sending for fetching messages.
* This function is also implicitly called by dc_context_unref().
* Multiple calls to this functions are okay, the function takes care not
* to free objects twice.
*
* @memberof dc_context_t
* @param context The context object as created by dc_context_new().
* @return None.
*/
void dc_close(dc_context_t* context)
{
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC) {
return;
}
dc_imap_disconnect(context->inbox);
dc_imap_disconnect(context->sentbox_thread.imap);
dc_imap_disconnect(context->mvbox_thread.imap);
dc_smtp_disconnect(context->smtp);
if (dc_sqlite3_is_open(context->sql)) {
dc_sqlite3_close(context->sql);
}
free(context->dbfile);
context->dbfile = NULL;
free(context->blobdir);
context->blobdir = NULL;
}
/**
* Check if the context database is open.
*
* @memberof dc_context_t
* @param context The context object as created by dc_context_new().
* @return 0=context is not open, 1=context is open.
*/
int dc_is_open(const dc_context_t* context)
{
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC) {
return 0; /* error - database not opened */
}
return dc_sqlite3_is_open(context->sql);
}
/**
* Get the blob directory.
*
* @memberof dc_context_t
* @param context The context object as created by dc_context_new().
* @return Blob directory associated with the context object, empty string if unset or on errors. NULL is never returned.
* The returned string must be free()'d.
*/
char* dc_get_blobdir(const dc_context_t* context)
{
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC) {
return dc_strdup(NULL);
}
return dc_strdup(context->blobdir);
}
/*******************************************************************************
* INI-handling, Information
******************************************************************************/
static int is_settable_config_key(const char* key)
{
for (int i = 0; i < str_array_len(config_keys); i++) {
if (strcmp(key, config_keys[i]) == 0) {
return 1;
}
}
return 0;
}
static int is_gettable_config_key(const char* key)
{
for (int i = 0; i < str_array_len(sys_config_keys); i++) {
if (strcmp(key, sys_config_keys[i]) == 0) {
return 1;
}
}
return is_settable_config_key(key);
}
static char* get_config_keys_str()
{
dc_strbuilder_t ret;
dc_strbuilder_init(&ret, 0);
for (int i = 0; i < str_array_len(config_keys); i++) {
if (strlen(ret.buf) > 0) {
dc_strbuilder_cat(&ret, " ");
}
dc_strbuilder_cat(&ret, config_keys[i]);
}
for (int i = 0; i < str_array_len(sys_config_keys); i++) {
if (strlen(ret.buf) > 0) {
dc_strbuilder_cat(&ret, " ");
}
dc_strbuilder_cat(&ret, sys_config_keys[i]);
}
return ret.buf;
}
static char* get_sys_config_str(const char* key)
{
if (strcmp(key, "sys.version")==0)
{
return dc_strdup(DC_VERSION_STR);
}
else if (strcmp(key, "sys.msgsize_max_recommended")==0)
{
return dc_mprintf("%i", DC_MSGSIZE_MAX_RECOMMENDED);
}
else if (strcmp(key, "sys.config_keys")==0)
{
return get_config_keys_str();
}
else {
return dc_strdup(NULL);
}
}
/**
* Configure the context. The configuration is handled by key=value pairs as:
*
* - `addr` = address to display (always needed)
* - `mail_server` = IMAP-server, guessed if left out
* - `mail_user` = IMAP-username, guessed if left out
* - `mail_pw` = IMAP-password (always needed)
* - `mail_port` = IMAP-port, guessed if left out
* - `send_server` = SMTP-server, guessed if left out
* - `send_user` = SMTP-user, guessed if left out
* - `send_pw` = SMTP-password, guessed if left out
* - `send_port` = SMTP-port, guessed if left out
* - `server_flags` = IMAP-/SMTP-flags as a combination of @ref DC_LP flags, guessed if left out
* - `displayname` = Own name to use when sending messages. MUAs are allowed to spread this way eg. using CC, defaults to empty
* - `selfstatus` = Own status to display eg. in email footers, defaults to a standard text
* - `selfavatar` = File containing avatar. Will be copied to blob directory.
* NULL to remove the avatar.
* It is planned for future versions
* to send this image together with the next messages.
* - `e2ee_enabled` = 0=no end-to-end-encryption, 1=prefer end-to-end-encryption (default)
* - `mdns_enabled` = 0=do not send or request read receipts,
* 1=send and request read receipts (default)
* - `inbox_watch` = 1=watch `INBOX`-folder for changes (default),
* 0=do not watch the `INBOX`-folder
* - `sentbox_watch`= 1=watch `Sent`-folder for changes (default),
* 0=do not watch the `Sent`-folder
* - `mvbox_watch` = 1=watch `DeltaChat`-folder for changes (default),
* 0=do not watch the `DeltaChat`-folder
* - `mvbox_move` = 1=heuristically detect chat-messages
* and move them to the `DeltaChat`-folder,
* 0=do not move chat-messages
* - `show_emails` = DC_SHOW_EMAILS_OFF (0)=
* show direct replies to chats only (default),
* DC_SHOW_EMAILS_ACCEPTED_CONTACTS (1)=
* also show all mails of confirmed contacts,
* DC_SHOW_EMAILS_ALL (2)=
* also show mails of unconfirmed contacts in the deaddrop.
* - `save_mime_headers` = 1=save mime headers
* and make dc_get_mime_headers() work for subsequent calls,
* 0=do not save mime headers (default)
*
* If you want to retrieve a value, use dc_get_config().
*
* @memberof dc_context_t
* @param context The context object
* @param key The option to change, see above.
* @param value The value to save for "key"
* @return 0=failure, 1=success
*/
int dc_set_config(dc_context_t* context, const char* key, const char* value)
{
int ret = 0;
char* rel_path = NULL;
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC || key==NULL || !is_settable_config_key(key)) { /* "value" may be NULL */
return 0;
}
if (strcmp(key, "selfavatar")==0 && value)
{
rel_path = dc_strdup(value);
if (!dc_make_rel_and_copy(context, &rel_path)) {
goto cleanup;
}
ret = dc_sqlite3_set_config(context->sql, key, rel_path);
}
else if(strcmp(key, "inbox_watch")==0)
{
ret = dc_sqlite3_set_config(context->sql, key, value);
dc_interrupt_imap_idle(context); // force idle() to be called again with the new mode
}
else if(strcmp(key, "sentbox_watch")==0)
{
ret = dc_sqlite3_set_config(context->sql, key, value);
dc_interrupt_sentbox_idle(context); // force idle() to be called again with the new mode
}
else if(strcmp(key, "mvbox_watch")==0)
{
ret = dc_sqlite3_set_config(context->sql, key, value);
dc_interrupt_mvbox_idle(context); // force idle() to be called again with the new mode
}
else if (strcmp(key, "selfstatus")==0) {
// if the status text equals to the default,
// store it as NULL to support future updatates of this text
char* def = dc_stock_str(context, DC_STR_STATUSLINE);
ret = dc_sqlite3_set_config(context->sql, key,
(value==NULL || strcmp(value, def)==0)? NULL : value);
free(def);
}
else
{
ret = dc_sqlite3_set_config(context->sql, key, value);
}
cleanup:
free(rel_path);
return ret;
}
/**
* Get a configuration option.
* The configuration option is set by dc_set_config() or by the library itself.
*
* Beside the options shown at dc_set_config(),
* this function can be used to query some global system values:
*
* - `sys.version` = get the version string eg. as `1.2.3` or as `1.2.3special4`
* - `sys.msgsize_max_recommended` = maximal recommended attachment size in bytes.
* All possible overheads are already subtracted and this value can be used eg. for direct comparison
* with the size of a file the user wants to attach. If an attachment is larger than this value,
* an error (no warning as it should be shown to the user) is logged but the attachment is sent anyway.
* - `sys.config_keys` = get a space-separated list of all config-keys available.
* The config-keys are the keys that can be passed to the parameter `key` of this function.
*
* @memberof dc_context_t
* @param context The context object as created by dc_context_new(). For querying system values, this can be NULL.
* @param key The key to query.
* @return Returns current value of "key", if "key" is unset, the default value is returned.
* The returned value must be free()'d, NULL is never returned.
*/
char* dc_get_config(dc_context_t* context, const char* key)
{
char* value = NULL;
if (key && key[0]=='s' && key[1]=='y' && key[2]=='s' && key[3]=='.') {
return get_sys_config_str(key);
}
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC || key==NULL || !is_gettable_config_key(key)) {
return dc_strdup("");
}
if (strcmp(key, "selfavatar")==0) {
char* rel_path = dc_sqlite3_get_config(context->sql, key, NULL);
if (rel_path) {
value = dc_get_abs_path(context, rel_path);
free(rel_path);
}
}
else {
value = dc_sqlite3_get_config(context->sql, key, NULL);
}
if (value==NULL)
{
// no value yet, use default value
if (strcmp(key, "e2ee_enabled")==0) {
value = dc_mprintf("%i", DC_E2EE_DEFAULT_ENABLED);
}
else if (strcmp(key, "mdns_enabled")==0) {
value = dc_mprintf("%i", DC_MDNS_DEFAULT_ENABLED);
}
else if (strcmp(key, "imap_folder")==0) {
value = dc_strdup("INBOX");
}
else if (strcmp(key, "inbox_watch")==0) {
value = dc_mprintf("%i", DC_INBOX_WATCH_DEFAULT);
}
else if (strcmp(key, "sentbox_watch")==0) {
value = dc_mprintf("%i", DC_SENTBOX_WATCH_DEFAULT);
}
else if (strcmp(key, "mvbox_watch")==0) {
value = dc_mprintf("%i", DC_MVBOX_WATCH_DEFAULT);
}
else if (strcmp(key, "mvbox_move")==0) {
value = dc_mprintf("%i", DC_MVBOX_MOVE_DEFAULT);
}
else if (strcmp(key, "show_emails")==0) {
value = dc_mprintf("%i", DC_SHOW_EMAILS_DEFAULT);
}
else if (strcmp(key, "selfstatus")==0) {
value = dc_stock_str(context, DC_STR_STATUSLINE);
}
else {
value = dc_mprintf("");
}
}
return value;
}
/**
* Tool to check if a folder is equal to the configured INBOX.
* @private @memberof dc_context_t
*/
int dc_is_inbox(dc_context_t* context, const char* folder_name)
{
int is_inbox = 0;
if (folder_name) {
is_inbox = strcasecmp("INBOX", folder_name)==0? 1 : 0;
}
return is_inbox;
}
/**
* Tool to check if a folder is equal to the configured sent-folder.
* @private @memberof dc_context_t
*/
int dc_is_sentbox(dc_context_t* context, const char* folder_name)
{
char* sentbox_name = dc_sqlite3_get_config(context->sql, "configured_sentbox_folder", NULL);
int is_sentbox = 0;
if (sentbox_name && folder_name) {
is_sentbox = strcasecmp(sentbox_name, folder_name)==0? 1 : 0;
}
free(sentbox_name);
return is_sentbox;
}
/**
* Tool to check if a folder is equal to the configured sent-folder.
* @private @memberof dc_context_t
*/
int dc_is_mvbox(dc_context_t* context, const char* folder_name)
{
char* mvbox_name = dc_sqlite3_get_config(context->sql, "configured_mvbox_folder", NULL);
int is_mvbox = 0;
if (mvbox_name && folder_name) {
is_mvbox = strcasecmp(mvbox_name, folder_name)==0? 1 : 0;
}
free(mvbox_name);
return is_mvbox;
}
/**
* Find out the version of the Delta Chat core library.
* Deprecated, use dc_get_config() instread
*
* @private @memberof dc_context_t
* @return String with version number as `major.minor.revision`. The return value must be free()'d.
*/
char* dc_get_version_str(void)
{
return dc_strdup(DC_VERSION_STR);
}
/**
* Get information about the context.
* The information is returned by a multi-line string
* and contains information about the current configuration.
*
* @memberof dc_context_t
* @param context The context as created by dc_context_new().
* @return String which must be free()'d after usage. Never returns NULL.
*/
char* dc_get_info(dc_context_t* context)
{
const char* unset = "0";
char* displayname = NULL;
char* temp = NULL;
char* l_readable_str = NULL;
char* l2_readable_str = NULL;
char* fingerprint_str = NULL;
dc_loginparam_t* l = NULL;
dc_loginparam_t* l2 = NULL;
int inbox_watch = 0;
int sentbox_watch = 0;
int mvbox_watch = 0;
int mvbox_move = 0;
int folders_configured = 0;
char* configured_sentbox_folder = NULL;
char* configured_mvbox_folder = NULL;
int contacts = 0;
int chats = 0;
int real_msgs = 0;
int deaddrop_msgs = 0;
int is_configured = 0;
int dbversion = 0;
int show_emails = 0;
int mdns_enabled = 0;
int e2ee_enabled = 0;
int prv_key_cnt = 0;
int pub_key_cnt = 0;
dc_key_t* self_public = dc_key_new();
int rpgp_enabled = 0;
#ifdef DC_USE_RPGP
rpgp_enabled = 1;
#endif
dc_strbuilder_t ret;
dc_strbuilder_init(&ret, 0);
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC) {
return dc_strdup("ErrBadPtr");
}
/* read data (all pointers may be NULL!) */
l = dc_loginparam_new();
l2 = dc_loginparam_new();
dc_loginparam_read(l, context->sql, "");
dc_loginparam_read(l2, context->sql, "configured_" /*the trailing underscore is correct*/);
displayname = dc_sqlite3_get_config(context->sql, "displayname", NULL);
chats = dc_get_chat_cnt(context);
real_msgs = dc_get_real_msg_cnt(context);
deaddrop_msgs = dc_get_deaddrop_msg_cnt(context);
contacts = dc_get_real_contact_cnt(context);
is_configured = dc_sqlite3_get_config_int(context->sql, "configured", 0);
dbversion = dc_sqlite3_get_config_int(context->sql, "dbversion", 0);
e2ee_enabled = dc_sqlite3_get_config_int(context->sql, "e2ee_enabled", DC_E2EE_DEFAULT_ENABLED);
show_emails = dc_sqlite3_get_config_int(context->sql, "show_emails", DC_SHOW_EMAILS_DEFAULT);
mdns_enabled = dc_sqlite3_get_config_int(context->sql, "mdns_enabled", DC_MDNS_DEFAULT_ENABLED);
sqlite3_stmt* stmt = dc_sqlite3_prepare(context->sql, "SELECT COUNT(*) FROM keypairs;");
sqlite3_step(stmt);
prv_key_cnt = sqlite3_column_int(stmt, 0);
sqlite3_finalize(stmt);
stmt = dc_sqlite3_prepare(context->sql, "SELECT COUNT(*) FROM acpeerstates;");
sqlite3_step(stmt);
pub_key_cnt = sqlite3_column_int(stmt, 0);
sqlite3_finalize(stmt);
if (dc_key_load_self_public(self_public, l2->addr, context->sql)) {
fingerprint_str = dc_key_get_fingerprint(self_public);
}
else {
fingerprint_str = dc_strdup("<Not yet calculated>");
}
l_readable_str = dc_loginparam_get_readable(l);
l2_readable_str = dc_loginparam_get_readable(l2);
inbox_watch = dc_sqlite3_get_config_int(context->sql, "inbox_watch", DC_INBOX_WATCH_DEFAULT);
sentbox_watch = dc_sqlite3_get_config_int(context->sql, "sentbox_watch", DC_SENTBOX_WATCH_DEFAULT);
mvbox_watch = dc_sqlite3_get_config_int(context->sql, "mvbox_watch", DC_MVBOX_WATCH_DEFAULT);
mvbox_move = dc_sqlite3_get_config_int(context->sql, "mvbox_move", DC_MVBOX_MOVE_DEFAULT);
folders_configured = dc_sqlite3_get_config_int(context->sql, "folders_configured", 0);
configured_sentbox_folder = dc_sqlite3_get_config(context->sql, "configured_sentbox_folder", "<unset>");
configured_mvbox_folder = dc_sqlite3_get_config(context->sql, "configured_mvbox_folder", "<unset>");
temp = dc_mprintf(
"deltachat_core_version=v%s\n"
"sqlite_version=%s\n"
"sqlite_thread_safe=%i\n"
"libetpan_version=%i.%i\n"
"openssl_version=%i.%i.%i%c\n"
"rpgp_enabled=%i\n"
"compile_date=" __DATE__ ", " __TIME__ "\n"
"arch=%i\n"
"number_of_chats=%i\n"
"number_of_chat_messages=%i\n"
"messages_in_contact_requests=%i\n"
"number_of_contacts=%i\n"
"database_dir=%s\n"
"database_version=%i\n"
"blobdir=%s\n"
"display_name=%s\n"
"is_configured=%i\n"
"entered_account_settings=%s\n"
"used_account_settings=%s\n"
"inbox_watch=%i\n"
"sentbox_watch=%i\n"
"mvbox_watch=%i\n"
"mvbox_move=%i\n"
"folders_configured=%i\n"
"configured_sentbox_folder=%s\n"
"configured_mvbox_folder=%s\n"
"show_emails=%i\n"
"mdns_enabled=%i\n"
"e2ee_enabled=%i\n"
"private_key_count=%i\n"
"public_key_count=%i\n"
"fingerprint=%s\n"
, DC_VERSION_STR
, SQLITE_VERSION
, sqlite3_threadsafe()
, libetpan_get_version_major(), libetpan_get_version_minor()
, (int)(OPENSSL_VERSION_NUMBER>>28), (int)(OPENSSL_VERSION_NUMBER>>20)&0xFF, (int)(OPENSSL_VERSION_NUMBER>>12)&0xFF, (char)('a'-1+((OPENSSL_VERSION_NUMBER>>4)&0xFF))
, rpgp_enabled
, sizeof(void*)*8
, chats
, real_msgs
, deaddrop_msgs
, contacts
, context->dbfile? context->dbfile : unset
, dbversion
, context->blobdir? context->blobdir : unset
, displayname? displayname : unset
, is_configured
, l_readable_str
, l2_readable_str
, inbox_watch
, sentbox_watch
, mvbox_watch
, mvbox_move
, folders_configured
, configured_sentbox_folder
, configured_mvbox_folder
, show_emails
, mdns_enabled
, e2ee_enabled
, prv_key_cnt
, pub_key_cnt
, fingerprint_str
);
dc_strbuilder_cat(&ret, temp);
free(temp);
/* free data */
dc_loginparam_unref(l);
dc_loginparam_unref(l2);
free(displayname);
free(l_readable_str);
free(l2_readable_str);
free(configured_sentbox_folder);
free(configured_mvbox_folder);
free(fingerprint_str);
dc_key_unref(self_public);
return ret.buf; /* must be freed by the caller */
}
/*******************************************************************************
* Search
******************************************************************************/
/**
* Returns the message IDs of all _fresh_ messages of any chat.
* Typically used for implementing notification summaries.
* The list is already sorted and starts with the most recent fresh message.
*
* @memberof dc_context_t
* @param context The context object as returned from dc_context_new().
* @return Array of message IDs, must be dc_array_unref()'d when no longer used.
* On errors, the list is empty. NULL is never returned.
*/
dc_array_t* dc_get_fresh_msgs(dc_context_t* context)
{
int show_deaddrop = 0;
dc_array_t* ret = dc_array_new(context, 128);
sqlite3_stmt* stmt = NULL;
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC || ret==NULL) {
goto cleanup;
}
stmt = dc_sqlite3_prepare(context->sql,
"SELECT m.id"
" FROM msgs m"
" LEFT JOIN contacts ct ON m.from_id=ct.id"
" LEFT JOIN chats c ON m.chat_id=c.id"
" WHERE m.state=?"
" AND m.hidden=0"
" AND m.chat_id>?"
" AND ct.blocked=0"
" AND (c.blocked=0 OR c.blocked=?)"
" ORDER BY m.timestamp DESC,m.id DESC;");
sqlite3_bind_int(stmt, 1, DC_STATE_IN_FRESH);
sqlite3_bind_int(stmt, 2, DC_CHAT_ID_LAST_SPECIAL);
sqlite3_bind_int(stmt, 3, show_deaddrop? DC_CHAT_DEADDROP_BLOCKED : 0);
while (sqlite3_step(stmt)==SQLITE_ROW) {
dc_array_add_id(ret, sqlite3_column_int(stmt, 0));
}
cleanup:
sqlite3_finalize(stmt);
return ret;
}
/**
* Search messages containing the given query string.
* Searching can be done globally (chat_id=0) or in a specified chat only (chat_id
* set).
*
* Global chat results are typically displayed using dc_msg_get_summary(), chat
* search results may just hilite the corresponding messages and present a
* prev/next button.
*
* @memberof dc_context_t
* @param context The context object as returned from dc_context_new().
* @param chat_id ID of the chat to search messages in.
* Set this to 0 for a global search.
* @param query The query to search for.
* @return An array of message IDs. Must be freed using dc_array_unref() when no longer needed.
* If nothing can be found, the function returns NULL.
*/
dc_array_t* dc_search_msgs(dc_context_t* context, uint32_t chat_id, const char* query)
{
//clock_t start = clock();
int success = 0;
dc_array_t* ret = dc_array_new(context, 100);
char* strLikeInText = NULL;
char* strLikeBeg = NULL;
char* real_query = NULL;
sqlite3_stmt* stmt = NULL;
if (context==NULL || context->magic!=DC_CONTEXT_MAGIC || ret==NULL || query==NULL) {
goto cleanup;
}
real_query = dc_strdup(query);
dc_trim(real_query);
if (real_query[0]==0) {
success = 1; /*empty result*/
goto cleanup;
}
strLikeInText = dc_mprintf("%%%s%%", real_query);
strLikeBeg = dc_mprintf("%s%%", real_query); /*for the name search, we use "Name%" which is fast as it can use the index ("%Name%" could not). */
/* Incremental search with "LIKE %query%" cannot take advantages from any index
("query%" could for COLLATE NOCASE indexes, see http://www.sqlite.org/optoverview.html#like_opt)
An alternative may be the FULLTEXT sqlite stuff, however, this does not really help with incremental search.
An extra table with all words and a COLLATE NOCASE indexes may help, however,
this must be updated all the time and probably consumes more time than we can save in tenthousands of searches.
For now, we just expect the following query to be fast enough :-) */
if (chat_id) {
stmt = dc_sqlite3_prepare(context->sql,
"SELECT m.id, m.timestamp FROM msgs m"
" LEFT JOIN contacts ct ON m.from_id=ct.id"
" WHERE m.chat_id=? "
" AND m.hidden=0 "
" AND ct.blocked=0 AND (txt LIKE ? OR ct.name LIKE ?)"
" ORDER BY m.timestamp,m.id;"); /* chats starts with the oldest message*/
sqlite3_bind_int (stmt, 1, chat_id);
sqlite3_bind_text(stmt, 2, strLikeInText, -1, SQLITE_STATIC);
sqlite3_bind_text(stmt, 3, strLikeBeg, -1, SQLITE_STATIC);
}
else {
int show_deaddrop = 0;//dc_sqlite3_get_config_int(context->sql, "show_deaddrop", 0);
stmt = dc_sqlite3_prepare(context->sql,
"SELECT m.id, m.timestamp FROM msgs m"
" LEFT JOIN contacts ct ON m.from_id=ct.id"
" LEFT JOIN chats c ON m.chat_id=c.id"
" WHERE m.chat_id>" DC_STRINGIFY(DC_CHAT_ID_LAST_SPECIAL)
" AND m.hidden=0 "
" AND (c.blocked=0 OR c.blocked=?)"
" AND ct.blocked=0 AND (m.txt LIKE ? OR ct.name LIKE ?)"
" ORDER BY m.timestamp DESC,m.id DESC;"); /* chat overview starts with the newest message*/
sqlite3_bind_int (stmt, 1, show_deaddrop? DC_CHAT_DEADDROP_BLOCKED : 0);
sqlite3_bind_text(stmt, 2, strLikeInText, -1, SQLITE_STATIC);
sqlite3_bind_text(stmt, 3, strLikeBeg, -1, SQLITE_STATIC);
}
while (sqlite3_step(stmt)==SQLITE_ROW) {
dc_array_add_id(ret, sqlite3_column_int(stmt, 0));
}
success = 1;
cleanup:
free(strLikeInText);
free(strLikeBeg);
free(real_query);
sqlite3_finalize(stmt);
//dc_log_info(context, 0, "Message list for search \"%s\" in chat #%i created in %.3f ms.", query, chat_id, (double)(clock()-start)*1000.0/CLOCKS_PER_SEC);
if (success) {
return ret;
}
else {
if (ret) {
dc_array_unref(ret);
}
return NULL;
}
}
|