#include #include #include #include #include #include #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 /". * 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 ". * @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(""); } 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", ""); configured_mvbox_folder = dc_sqlite3_get_config(context->sql, "configured_mvbox_folder", ""); 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; } }