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
|
/* search_query.c -- search query routines
*
* Copyright (c) 1994-2018 Carnegie Mellon University. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The name "Carnegie Mellon University" must not be used to
* endorse or promote products derived from this software without
* prior written permission. For permission or any legal
* details, please contact
* Carnegie Mellon University
* Center for Technology Transfer and Enterprise Creation
* 4615 Forbes Avenue
* Suite 302
* Pittsburgh, PA 15213
* (412) 268-7393, fax: (412) 268-7395
* innovation@andrew.cmu.edu
*
* 4. Redistributions of any form whatsoever must retain the following
* acknowledgment:
* "This product includes software developed by Computing Services
* at Carnegie Mellon University (http://www.cmu.edu/computing/)."
*
* CARNEGIE MELLON UNIVERSITY DISCLAIMS ALL WARRANTIES WITH REGARD TO
* THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
* AND FITNESS, IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY BE LIABLE
* FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN
* AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <config.h>
#include <sys/types.h>
#include <stdlib.h>
#include <syslog.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "assert.h"
#include "cyr_qsort_r.h"
#include "search_expr.h"
#include "search_query.h"
#include "imapd.h"
#include "message.h"
#include "annotate.h"
#include "global.h"
#include "bsearch.h"
#include "xstrlcpy.h"
#include "xmalloc.h"
#include "smallarrayu64.h"
#include "statuscache.h"
/* generated headers are not necessarily in current directory */
#include "imap/imap_err.h"
/* ====================================================================== */
EXPORTED search_query_t *search_query_new(struct index_state *state,
struct searchargs *searchargs)
{
search_query_t *query;
query = xzmalloc(sizeof(*query));
query->state = state;
query->searchargs = searchargs;
construct_hash_table(&query->subs_by_folder, 128, 0);
construct_hash_table(&query->subs_by_indexed, 128, 0);
ptrarray_init(&query->merged_msgdata);
construct_hash_table(&query->folders_by_name, 128, 0);
ptrarray_init(&query->folders_by_id);
construct_hashu64_table(&query->partid_by_num, 1024, 0);
construct_hash_table(&query->partnum_by_id, 1024, 0);
return query;
}
static void folder_free(void *data)
{
search_folder_t *folder = data;
free(folder->mboxname);
bv_fini(&folder->uids);
bv_fini(&folder->found_uids);
dynarray_fini(&folder->partnums);
free(folder);
}
static void subquery_free(void *data)
{
search_subquery_t *sub = data;
free(sub->mboxname);
search_expr_free(sub->indexed);
search_expr_free(sub->expr);
free(sub);
}
EXPORTED void search_query_free(search_query_t *query)
{
int i;
if (!query) return;
free_hash_table(&query->subs_by_folder, subquery_free);
free_hash_table(&query->subs_by_indexed, subquery_free);
search_expr_free(query->global_sub.expr);
ptrarray_fini(&query->folders_by_id);
free_hash_table(&query->folders_by_name, folder_free);
ptrarray_fini(&query->merged_msgdata);
/* free pending MsgData arrays */
for (i = 0 ; i < query->saved_msgdata.count ; i++) {
struct search_saved_msgdata *saved = ptrarray_nth(&query->saved_msgdata, i);
index_msgdata_free(saved->msgdata, saved->n);
free(saved);
}
ptrarray_fini(&query->saved_msgdata);
free_hash_table(&query->partnum_by_id, NULL);
free_hashu64_table(&query->partid_by_num, free);
free(query);
}
/* ====================================================================== */
/*
* Find the named folder folder. Returns NULL if there are no
* search results for that folder.
*/
EXPORTED search_folder_t *search_query_find_folder(search_query_t *query,
const char *mboxname)
{
return (search_folder_t *)hash_lookup(mboxname, &query->folders_by_name);
}
/*
* Switch the folder over to reporting MSNs rather than UIDs.
*/
EXPORTED void search_folder_use_msn(search_folder_t *folder, struct index_state *state)
{
int uid;
unsigned msgno;
bitvector_t msns = BV_INITIALIZER;
search_folder_foreach(folder, uid) {
msgno = index_finduid(state, uid);
if (index_getuid(state, msgno) == (unsigned)uid)
bv_set(&msns, msgno);
}
bv_fini(&folder->uids);
folder->uids = msns;
}
/*
* Return the results for the given folder as a sequence of UIDs (or
* MSNs if search_folder_use_msn() has been called). The caller is
* responsible for freeing the result using seqset_free()
*/
EXPORTED seqset_t *search_folder_get_seqset(const search_folder_t *folder)
{
seqset_t *seq = seqset_init(0, SEQ_SPARSE);
int uid;
for (uid = bv_next_set(&folder->uids, 0) ;
uid != -1 ;
uid = bv_next_set(&folder->uids, uid+1))
seqset_add(seq, uid, 1);
return seq;
}
/*
* Return the results for a given folder as an array of UIDs (or MSNs if
* search_folder_use_msn() has been called). Returns the number of
* results or zero, and the newly allocated array in *'arrayp'. The
* caller is responsible for freeing the result using free().
*/
EXPORTED int search_folder_get_array(const search_folder_t *folder, unsigned int **arrayp)
{
int n = search_folder_get_count(folder);
unsigned int *p;
int uid;
if (n) {
p = *arrayp = xzmalloc(sizeof(unsigned int) * n);
for (uid = bv_next_set(&folder->uids, 0) ;
uid != -1 ;
uid = bv_next_set(&folder->uids, uid+1))
*p++ = (unsigned)uid;
}
return n;
}
/*
* Return the minimum UID (or MSN if search_folder_use_msn() has been
* called).
*/
EXPORTED uint32_t search_folder_get_min(const search_folder_t *folder)
{
return bv_first_set(&folder->uids);
}
/*
* Return the maximum UID (or MSN if search_folder_use_msn() has been
* called).
*/
EXPORTED uint32_t search_folder_get_max(const search_folder_t *folder)
{
return bv_last_set(&folder->uids);
}
/*
* Returns the count of UIDs or MSNs.
*/
EXPORTED unsigned int search_folder_get_count(const search_folder_t *folder)
{
return bv_count(&folder->uids);
}
EXPORTED uint64_t search_folder_get_highest_modseq(const search_folder_t *folder)
{
return folder->highest_modseq;
}
EXPORTED uint64_t search_folder_get_first_modseq(const search_folder_t *folder)
{
return folder->first_modseq;
}
EXPORTED uint64_t search_folder_get_last_modseq(const search_folder_t *folder)
{
return folder->last_modseq;
}
/* ====================================================================== */
static search_folder_t *query_get_folder(search_query_t *query, const char *mboxname)
{
search_folder_t *folder;
folder = (search_folder_t *)hash_lookup(mboxname, &query->folders_by_name);
if (!folder) {
folder = xzmalloc(sizeof(*folder));
folder->mboxname = xstrdup(mboxname);
folder->id = -1;
hash_insert(folder->mboxname, folder, &query->folders_by_name);
}
return folder;
}
static search_folder_t *query_get_valid_folder(search_query_t *query,
const char *mboxname,
uint32_t uidvalidity)
{
search_folder_t *folder;
// check if we want to process this mailbox
if (query->checkfolder &&
!query->checkfolder(mboxname, query->checkfolderrock)) {
return NULL;
}
if (mboxname_isdeletedmailbox(mboxname, 0) &&
!(query->want_mbtype & MBTYPE_DELETED)) {
return NULL;
}
if (mboxname_iscalendarmailbox(mboxname, 0) &&
mbtype_isa(query->want_mbtype) != MBTYPE_CALENDAR) {
return NULL;
}
if (mboxname_isaddressbookmailbox(mboxname, 0) &&
mbtype_isa(query->want_mbtype) != MBTYPE_ADDRESSBOOK) {
return NULL;
}
folder = query_get_folder(query, mboxname);
if (uidvalidity) {
if (uidvalidity < folder->uidvalidity) {
/* these are uids are too old, forget them */
return NULL;
}
if (uidvalidity > folder->uidvalidity) {
/* these uids are newer than what we have,
* forget the old ones; or none at all and
* remember the uidvalidity for later */
if (folder->uidvalidity) {
bv_clearall(&folder->uids);
bv_clearall(&folder->found_uids);
}
folder->uidvalidity = uidvalidity;
}
}
return folder;
}
static void folder_add_uid(search_folder_t *folder, uint32_t uid)
{
bv_set(&folder->uids, uid);
}
static void folder_add_modseq(search_folder_t *folder, uint64_t modseq)
{
if (modseq > folder->highest_modseq)
folder->highest_modseq = modseq;
}
static int query_begin_index(search_query_t *query,
const char *mboxname,
struct index_state **statep)
{
int r = 0;
int needs_refresh = 0;
/* open an index_state */
if (!strcmp(index_mboxname(query->state), mboxname)) {
*statep = query->state;
needs_refresh = 1;
}
else {
struct index_init init;
memset(&init, 0, sizeof(struct index_init));
init.userid = query->searchargs->userid;
init.authstate = query->searchargs->authstate;
init.out = query->state->out;
init.want_expunged = query->want_expunged;
init.want_mbtype = query->want_mbtype;
init.examine_mode = 1;
r = index_open(mboxname, &init, statep);
if (r == IMAP_PERMISSION_DENIED) r = IMAP_MAILBOX_NONEXISTENT;
if (r == IMAP_MAILBOX_BADTYPE) r = IMAP_MAILBOX_NONEXISTENT;
if (r) goto out;
index_checkflags(*statep, 0, 0);
}
if (query->need_expunge) {
/* make sure \Deleted messages are expunged. Will also lock the
* mailbox state and read any new information */
r = index_expunge(*statep, NULL, 1);
if (r) goto out;
}
else if (needs_refresh) {
/* Expunge considered unhelpful - just refresh */
r = index_refresh(*statep);
if (r) goto out;
}
r = cmd_cancelled(!query->ignore_timer);
out:
return r;
}
static void query_end_index(search_query_t *query,
struct index_state **statep)
{
if (*statep != query->state)
index_close(statep);
else
*statep = NULL;
}
/* ====================================================================== */
static void add_folder(const char *key __attribute__((unused)),
void *data, void *rock)
{
search_folder_t *folder = data;
ptrarray_t *array = rock;
ptrarray_append(array, folder);
}
static int compare_folders(const void **v1, const void **v2)
{
const search_folder_t *f1 = (const search_folder_t *)*v1;
const search_folder_t *f2 = (const search_folder_t *)*v2;
return strcmp(f1->mboxname, f2->mboxname);
}
/*
* Assign a contiguous 0-based sequence of folder ids to the folders
* that have any remaining uids in the search results, in folder name
* order. The order isn't necessary but helps make the results
* consistent which makes testing easier.
*/
static void query_assign_folder_ids(search_query_t *query)
{
ptrarray_t folders = PTRARRAY_INITIALIZER;
int i;
/* TODO: need a hash_values() function */
hash_enumerate(&query->folders_by_name, add_folder, &folders);
ptrarray_sort(&folders, compare_folders);
for (i = 0 ; i < folders.count ; i++) {
search_folder_t *folder = ptrarray_nth(&folders, i);
if (search_folder_get_count(folder) && folder->id < 0) {
folder->id = query->folders_by_id.count;
ptrarray_append(&query->folders_by_id, folder);
}
}
ptrarray_fini(&folders);
}
/* ====================================================================== */
static void query_load_msgdata(search_query_t *query,
search_folder_t *folder,
struct index_state *state,
unsigned *msgno_list, unsigned nmsgs)
{
unsigned i;
MsgData **msgdata;
struct search_saved_msgdata *saved;
msgdata = index_msgdata_load(state, msgno_list, nmsgs, query->sortcrit, 0, NULL);
/* add the new messages to the global list */
for (i = 0 ; i < nmsgs ; i++) {
ptrarray_append(&query->merged_msgdata, msgdata[i]);
msgdata[i]->folder = folder;
}
/* save the MsgData array for later deletion */
saved = xzmalloc(sizeof(*saved));
saved->msgdata = msgdata;
saved->n = nmsgs;
ptrarray_append(&query->saved_msgdata, saved);
}
struct subquery_rock {
search_query_t *query;
search_subquery_t *sub;
int is_excluded;
};
static int folder_partnum_cmp QSORT_R_COMPAR_ARGS(const void *va,
const void *vb,
void *rock __attribute__((unused)))
{
const struct search_folder_partnum *a = va;
const struct search_folder_partnum *b = vb;
if (a->uid == b->uid) {
if (a->partnum == b->partnum)
return 0;
else
return a->partnum < b->partnum ? -1 : 1;
}
else return a->uid < b->uid ? -1 : 1;
}
/*
* After an indexed subquery is run, we have accumulated a number of
* found UID hits in folders. Here we check those UIDs for a) not
* being deleted since indexing and b) matching any unindexed scan
* expression. We also take advantage of having an open index_state to
* load some MsgData objects and save them to query->merged_msgdata.
*/
static void subquery_post_enginesearch(const char *key, void *data, void *rock)
{
const char *mboxname = key;
search_folder_t *folder = data;
struct subquery_rock *qr = rock;
search_query_t *query = qr->query;
search_subquery_t *sub = qr->sub;
struct index_state *state = NULL;
unsigned msgno;
unsigned nmsgs = 0;
unsigned *msgno_list = NULL;
int r = 0;
if (query->error) return;
if (!folder->found_dirty) return;
if (sub->expr && query->verbose) {
char *s = search_expr_serialise(sub->expr);
syslog(LOG_INFO, "Folder %s: applying scan expression: %s",
folder->mboxname, s);
free(s);
}
if (query->sortcrit && query->verbose) {
char *s = sortcrit_as_string(query->sortcrit);
syslog(LOG_INFO, "Folder %s: loading MsgData for sort criteria %s",
folder->mboxname, s);
free(s);
}
r = query_begin_index(query, mboxname, &state);
if (r == IMAP_MAILBOX_NONEXISTENT) {
/* Silently swallow mailboxes which have been deleted, renamed,
* or had their ACL changed to prevent us reading them, after
* the index was constructed [IRIS-2469]. */
r = 0;
goto out;
}
if (r) goto out;
if (!state->exists) goto out;
search_expr_internalise(state, sub->expr);
if (query->sortcrit)
msgno_list = (unsigned *) xmalloc(state->exists * sizeof(unsigned));
/* One pass through the folder's message list */
for (msgno = 1 ; msgno <= state->exists ; msgno++) {
struct index_map *im = &state->map[msgno-1];
if (!(msgno % 128)) {
r = cmd_cancelled(!query->ignore_timer);
if (r) goto out;
}
/* we only want to look at found UIDs */
if ((!qr->is_excluded && !bv_isset(&folder->found_uids, im->uid)) ||
(qr->is_excluded && bv_isset(&folder->found_uids, im->uid))) {
continue;
}
/* moot if already in the uids set */
if (bv_isset(&folder->uids, im->uid))
continue;
/* can happen if we didn't "tellchanges" yet */
if ((im->internal_flags & FLAG_INTERNAL_EXPUNGED) && !query->want_expunged)
continue;
/* run the search program */
if (!index_search_evaluate(state, sub->expr, msgno))
continue;
/* we have a new UID that needs to be merged in */
folder_add_uid(folder, im->uid);
folder_add_modseq(folder, im->modseq);
if (query->sortcrit)
msgno_list[nmsgs++] = msgno;
/* track first and last for MIN/MAX queries */
if (!folder->first_modseq) folder->first_modseq = im->modseq;
folder->last_modseq = im->modseq;
}
/* msgno_list contains only the MSNs for newly
* checked messages */
if (query->sortcrit && nmsgs)
query_load_msgdata(query, folder, state, msgno_list, nmsgs);
/* sort partnums by uid */
if (dynarray_size(&folder->partnums)) {
cyr_qsort_r(folder->partnums.data, folder->partnums.count,
sizeof(struct search_folder_partnum),
folder_partnum_cmp, NULL);
}
folder->found_dirty = 0;
r = 0;
out:
query_end_index(query, &state);
free(msgno_list);
if (r) query->error = r;
}
static int subquery_post_excluded(const mbentry_t *mbentry, void *rock)
{
struct subquery_rock *qr = rock;
search_folder_t *folder;
folder = query_get_valid_folder(qr->query, mbentry->name, 0);
if (folder) {
folder->found_dirty = 1;
subquery_post_enginesearch(mbentry->name, folder, rock);
}
return 0;
}
static void subquery_clear_found(const char *key __attribute__((unused)),
void *data,
void *rock __attribute__((unused)))
{
search_folder_t *folder = data;
bv_clearall(&folder->found_uids);
}
EXPORTED void search_build_query(search_builder_t *bx, search_expr_t *e)
{
search_expr_t *child;
int bop = -1;
switch (e->op) {
case SEOP_NOT:
bop = SEARCH_OP_NOT;
break;
case SEOP_AND:
bop = SEARCH_OP_AND;
break;
case SEOP_OR:
bop = SEARCH_OP_OR;
break;
case SEOP_TRUE:
bop = SEARCH_OP_TRUE;
break;
case SEOP_FALSE:
bop = SEARCH_OP_FALSE;
break;
case SEOP_MATCH:
case SEOP_FUZZYMATCH:
if (e->attr && search_can_match(e->op, e->attr->part)) {
if (e->attr->flags & SEA_ISLIST) {
bx->matchlist(bx, e->attr->part, e->value.list);
} else {
bx->match(bx, e->attr->part, e->value.s);
}
}
return;
default:
return;
}
if (bop != -1) {
bx->begin_boolean(bx, bop);
for (child = e->children ; child ; child = child->next)
search_build_query(bx, child);
bx->end_boolean(bx, bop);
}
}
static int add_found_uid(const char *mboxname, uint32_t uidvalidity,
uint32_t uid, const char *partid,
void *rock)
{
struct subquery_rock *qr = rock;
search_folder_t *folder = query_get_valid_folder(qr->query, mboxname, uidvalidity);
if (folder) {
bv_set(&folder->found_uids, uid);
folder->found_dirty = 1;
if (partid && qr->query->want_partids && !qr->is_excluded) {
uint32_t partnum = (uint32_t)(uintptr_t) hash_lookup(partid, &qr->query->partnum_by_id);
if (!partnum) {
partnum = ++qr->query->partnum_seq;
hash_insert(partid, (void*)(uintptr_t) partnum, &qr->query->partnum_by_id);
hashu64_insert(partnum, xstrdup(partid), &qr->query->partid_by_num);
}
if (!folder->partnums.membsize) {
dynarray_init(&folder->partnums, sizeof(struct search_folder_partnum));
}
struct search_folder_partnum pnumuid = { uid, partnum };
dynarray_append(&folder->partnums, &pnumuid);
}
}
return 0;
}
static void subquery_run_indexed(const char *key __attribute__((unused)),
void *data, void *rock)
{
// const char *mboxname = key;
search_subquery_t *sub = data;
search_query_t *query = rock;
search_expr_t *excluded = NULL;
search_builder_t *bx;
struct subquery_rock qr;
int r;
if (query->error) return;
if (query->verbose) {
char *s = search_expr_serialise(sub->indexed);
syslog(LOG_INFO, "Running indexed subquery: %s", s);
free(s);
}
int opts = SEARCH_VERBOSE(query->verbose);
if (query->multiple) opts |= SEARCH_MULTIPLE;
if (query->attachments_in_any) opts |= SEARCH_ATTACHMENTS_IN_ANY;
/* If the subquery is NOT(x) or AND(NOT(x)..(NOT(y))) then
* it's likely that we will get lots of results to look up
* in conversations.db. We mitigate that by running the
* inverse query on the index, and check any uids that do
* _not_ match the query result. */
if (sub->indexed->op == SEOP_AND) {
search_expr_t *child = sub->indexed->children;
while (child && child->op == SEOP_NOT) {
child = child->next;
}
if (!child) {
excluded = search_expr_new(NULL, SEOP_OR);
search_expr_t *dupl = search_expr_duplicate(sub->indexed);
child = dupl->children;
while (child) {
search_expr_t *expr = child->children;
search_expr_detach(child, expr);
search_expr_append(excluded, expr);
child = child->next;
}
search_expr_free(dupl);
}
}
else if (sub->indexed->op == SEOP_NOT) {
excluded = search_expr_duplicate(sub->indexed->children);
}
bx = search_begin_search(query->state->mailbox, opts);
if (!bx) {
r = IMAP_INTERNAL;
goto out;
}
qr.query = query;
qr.sub = sub;
qr.is_excluded = excluded != NULL;
search_build_query(bx, excluded ? excluded : sub->indexed);
r = bx->run(bx, add_found_uid, &qr);
search_end_search(bx);
if (r) goto out;
if (excluded) {
if (query->multiple) {
char *userid = mboxname_to_userid(index_mboxname(query->state));
r = mboxlist_usermboxtree(userid, NULL, subquery_post_excluded,
&qr, /*flags*/0);
free(userid);
}
else {
mbentry_t *mbentry = NULL;
r = mboxlist_lookup(index_mboxname(query->state), &mbentry, NULL);
if (!r) r = subquery_post_excluded(mbentry, &qr);
mboxlist_entry_free(&mbentry);
}
}
else hash_enumerate(&query->folders_by_name, subquery_post_enginesearch, &qr);
hash_enumerate(&query->folders_by_name, subquery_clear_found, NULL);
out:
search_expr_free(excluded);
if (r) query->error = r;
}
static modseq_t _get_sincemodseq(search_expr_t *e)
{
const search_attr_t *modseq_attr = search_attr_find("modseq");
if (e->op == SEOP_AND) {
search_expr_t *child;
for (child = e->children ; child ; child = child->next) {
modseq_t res = _get_sincemodseq(child);
if (res) return res;
}
}
if (e->op == SEOP_GT && e->attr == modseq_attr) {
return e->value.u;
}
return 0;
}
static int subquery_run_one_folder(search_query_t *query,
const char *mboxname,
search_expr_t *e)
{
struct index_state *state = NULL;
unsigned msgno;
search_folder_t *folder = NULL;
unsigned nmsgs = 0;
unsigned *msgno_list = NULL;
int r = 0;
if (query->verbose) {
char *s = search_expr_serialise(e);
syslog(LOG_INFO, "Folder %s: running folder scan subquery: %s",
mboxname, s);
free(s);
}
if (query->sortcrit && query->verbose) {
char *s = sortcrit_as_string(query->sortcrit);
syslog(LOG_INFO, "Folder %s: loading MsgData for sort criteria %s",
mboxname, s);
free(s);
}
// check if we want to process this mailbox
if (query->checkfolder &&
!query->checkfolder(mboxname, query->checkfolderrock)) {
goto out;
}
modseq_t sincemodseq = _get_sincemodseq(e);
if (sincemodseq) {
struct statusdata sdata = STATUSDATA_INIT;
int r = status_lookup_mboxname(mboxname, query->state->userid,
STATUS_HIGHESTMODSEQ, &sdata);
// if unchangedsince, then we can skip the index query
if (!r && sdata.highestmodseq <= sincemodseq) goto out;
}
r = query_begin_index(query, mboxname, &state);
if (r == IMAP_MAILBOX_NONEXISTENT) {
/* Silently swallow mailboxes which have been deleted, renamed,
* or had their ACL changed to prevent us reading them, after
* the index was constructed [IRIS-2469]. */
r = 0;
goto out;
}
if (r) goto out;
if (!state->exists) goto out;
search_expr_internalise(state, e);
if (query->sortcrit)
msgno_list = (unsigned *) xmalloc(state->exists * sizeof(unsigned));
/* One pass through the folder's message list */
for (msgno = 1 ; msgno <= state->exists ; msgno++) {
struct index_map *im = &state->map[msgno-1];
if (!(msgno % 128)) {
r = cmd_cancelled(!query->ignore_timer);
if (r) goto out;
}
/* can happen if we didn't "tellchanges" yet */
if ((im->internal_flags & FLAG_INTERNAL_EXPUNGED) && !query->want_expunged)
continue;
/* run the search program */
if (!index_search_evaluate(state, e, msgno))
continue;
if (!folder) {
folder = query_get_valid_folder(query, mboxname, state->uidvalidity);
if (!folder) {
r = IMAP_INTERNAL;
goto out; /* can't happen */
}
}
/* moot if already in the uids set */
if (bv_isset(&folder->uids, im->uid))
continue;
folder_add_uid(folder, im->uid);
folder_add_modseq(folder, im->modseq);
if (query->sortcrit)
msgno_list[nmsgs++] = msgno;
/* track first and last for MIN/MAX queries */
if (!folder->first_modseq) folder->first_modseq = im->modseq;
folder->last_modseq = im->modseq;
}
if (query->sortcrit && nmsgs)
query_load_msgdata(query, folder, state, msgno_list, nmsgs);
r = 0;
out:
if (state) query_end_index(query, &state);
free(msgno_list);
return r;
}
static void subquery_run_folder(const char *key, void *data, void *rock)
{
const char *mboxname = key;
search_subquery_t *sub = data;
search_query_t *query = rock;
int r;
if (query->error) return;
if (!query->multiple && strcmp(mboxname, index_mboxname(query->state)))
return;
r = subquery_run_one_folder(query, mboxname, sub->expr);
if (r) query->error = r;
}
static int subquery_run_global(search_query_t *query, const char *mboxname)
{
search_subquery_t *sub;
search_expr_t *e, *exprs[2];
int nexprs = 0;
int r;
sub = (search_subquery_t *)hash_lookup(mboxname, &query->subs_by_folder);
if (sub) {
/* this folder also has a per-folder scan expression, OR it in */
exprs[nexprs++] = search_expr_duplicate(sub->expr);
}
if (query->global_sub.expr)
exprs[nexprs++] = search_expr_duplicate(query->global_sub.expr);
switch (nexprs) {
case 0:
e = search_expr_new(NULL, SEOP_TRUE);
break;
case 1:
e = exprs[0];
break;
case 2:
e = search_expr_new(NULL, SEOP_OR);
search_expr_append(e, exprs[0]);
search_expr_append(e, exprs[1]);
break;
default:
abort();
}
r = subquery_run_one_folder(query, mboxname, e);
search_expr_free(e);
return r;
}
static int subquery_run_global_cb(const mbentry_t *mbentry, void *rock)
{
search_query_t *query = rock;
return subquery_run_global(query, mbentry->name);
}
static search_subquery_t *subquery_new(void)
{
search_subquery_t *sub = xzmalloc(sizeof(*sub));
return sub;
}
static void query_add_subquery(const char *mboxname,
search_expr_t *indexed,
search_expr_t *e,
void *rock)
{
search_query_t *query = rock;
search_subquery_t *sub;
if (indexed) {
char *key = search_expr_serialise(indexed);
sub = (search_subquery_t *)hash_lookup(key, &query->subs_by_indexed);
if (!sub) {
sub = subquery_new();
sub->indexed = indexed;
hash_insert(key, sub, &query->subs_by_indexed);
query->indexed_count++;
}
free(key);
}
else if (mboxname) {
sub = (search_subquery_t *)hash_lookup(mboxname, &query->subs_by_folder);
if (!sub) {
sub = subquery_new();
sub->mboxname = xstrdup(mboxname);
hash_insert(sub->mboxname, sub, &query->subs_by_folder);
query->folder_count++;
}
}
else {
sub = &query->global_sub;
}
if (sub->expr == NULL) {
/* adding the first expression: just store it */
sub->expr = e;
}
else if (sub->expr->op != SEOP_OR) {
/* adding the second: make a new OR node */
search_expr_t *or = search_expr_new(NULL, SEOP_OR);
search_expr_append(or, sub->expr);
search_expr_append(or, e);
sub->expr = or;
}
else {
/* append to the existing OR node */
search_expr_append(sub->expr, e);
}
}
EXPORTED int search_query_run(search_query_t *query)
{
int r = 0;
search_expr_split_by_folder_and_index(query->searchargs->root, query_add_subquery, query);
query->searchargs->root = NULL;
if (query->indexed_count) {
/*
* Indexed searches proceed in two phases. The first runs
* all the search engine queries, and builds a set of matched
* uids per folder. The second runs per folder and applies
* any scan expression.
*/
hash_enumerate(&query->subs_by_indexed, subquery_run_indexed, query);
r = query->error;
if (r) goto out;
}
if (query->global_sub.expr) {
/* We have a scan expression which applies to all folders.
* Walk over every folder, applying the scan expression. */
if (query->multiple) {
char *userid = mboxname_to_userid(index_mboxname(query->state));
r = mboxlist_usermboxtree(userid, NULL, subquery_run_global_cb,
query, /*flags*/0);
free(userid);
}
else {
r = subquery_run_global(query, index_mboxname(query->state));
}
if (r) goto out;
}
else if (query->folder_count) {
/* We only have scan expressions limited to specific folders,
* let's iterate those folders */
hash_enumerate(&query->subs_by_folder, subquery_run_folder, query);
r = query->error;
if (r) goto out;
}
if (query->need_ids)
query_assign_folder_ids(query);
if (query->sortcrit) {
/*
* Do a post-search sorting phase.
*
* Sorts MsgData objects. These really really need to be replaced with
* either message_t objects or some new smaller object which only stores
* exactly the data we need to sort with, according to sortcrit, plus a
* few things we always need like folder, uid, cid etc. But in the
* interests of getting this code working before Christmas we're going
* to use MsgData for now, and in the way that means the least amount of
* code changes.
*/
index_msgdata_sort((MsgData **)query->merged_msgdata.data,
query->merged_msgdata.count,
query->sortcrit);
}
out:
return r;
}
/* ====================================================================== */
static int is_mutable_sort(struct sortcrit *sortcrit)
{
int i;
if (!sortcrit) return 0;
for (i = 0; sortcrit[i].key; i++) {
switch (sortcrit[i].key) {
/* these are the mutable fields */
case SORT_ANNOTATION:
case SORT_MODSEQ:
case SORT_HASFLAG:
case SORT_CONVMODSEQ:
case SORT_CONVEXISTS:
case SORT_CONVSIZE:
case SORT_HASCONVFLAG:
return 1;
default:
break;
}
}
return 0;
}
/* This function will return 2 if the search criteria are mutable
* but the sort is not,
* 1 if the sort is mutable but the search isn't, 3 if both, and
* zero if nither are mutable.
* i.e. the user can/can't take actions which will change the order
* in which the results are returned. For example, the base
* case of UID sort and all messages is NOT mutable */
EXPORTED int search_is_mutable(struct sortcrit *sortcrit, search_expr_t *expr)
{
int res = 0;
if (search_expr_is_mutable(expr))
res |= 2;
if (is_mutable_sort(sortcrit))
res |= 1;
return res;
}
|