]> code.citadel.org Git - citadel.git/commitdiff
* Altered the full text indexer to output messages as text before running
authorArt Cancro <ajc@citadel.org>
Thu, 19 May 2005 21:10:04 +0000 (21:10 +0000)
committerArt Cancro <ajc@citadel.org>
Thu, 19 May 2005 21:10:04 +0000 (21:10 +0000)
  through the wordbreaker.  This prevents the inclusion of encoded base64
  strings in the index, and also allows legitimate text encoded inside
  base64 to be decoded and then indexed.

citadel/ChangeLog
citadel/ft_wordbreaker.h
citadel/serv_fulltext.c
citadel/serv_fulltext.o

index 91c2affddc072beb67431793eadfc54cf455e605..657af182c7d8b715bab0bc50c57548b19ddb081d 100644 (file)
@@ -1,4 +1,10 @@
  $Log$
+ Revision 647.12  2005/05/19 21:10:03  ajc
+ * Altered the full text indexer to output messages as text before running
+   through the wordbreaker.  This prevents the inclusion of encoded base64
+   strings in the index, and also allows legitimate text encoded inside
+   base64 to be decoded and then indexed.
+
  Revision 647.11  2005/05/19 03:42:29  ajc
  * Bound the full text index to IMAP search
 
@@ -6725,4 +6731,3 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
-
index 7f947f41125e71791a40df699fae8fad34e6fc70..c608644bc21d1df1fa0f1d672b050866d0f1f9e2 100644 (file)
@@ -9,7 +9,7 @@
  * later on, or even if we update this one, we can use a different ID so the
  * system knows it needs to throw away the existing index and rebuild it.
  */
-#define        FT_WORDBREAKER_ID       0x000a
+#define        FT_WORDBREAKER_ID       0x0010
 
 /*
  * Minimum and maximum length of words to index
index ba5591b280041ec05eaac1ca20894b835f4067d8..cd8551b0789351b65340b2aa5bd5a867c45aeb90 100644 (file)
@@ -73,26 +73,35 @@ int longcmp(const void *rec1, const void *rec2) {
  * Index or de-index a message.  (op == 1 to index, 0 to de-index)
  */
 void ft_index_message(long msgnum, int op) {
-       struct CtdlMessage *msg;
        int num_tokens = 0;
        int *tokens = NULL;
        int i, j;
        struct cdbdata *cdb_bucket;
        int num_msgs;
        long *msgs;
+       char *msgtext;
 
        lprintf(CTDL_DEBUG, "ft_index_message() %s msg %ld\n",
                (op ? "adding" : "removing") , msgnum
        );
 
-       msg = CtdlFetchMessage(msgnum, 1);
-       if (msg == NULL) return;
-
-       if (msg->cm_fields['M'] != NULL) {
-               wordbreaker(msg->cm_fields['M'], &num_tokens, &tokens);
-       }
-       CtdlFreeMessage(msg);
-
+       /* Output the message as text before indexing it, so we don't end up
+        * indexing a bunch of encoded base64, etc.
+        */
+       lprintf(CTDL_DEBUG, "Fetching...\n");
+       CC->redirect_buffer = malloc(SIZ);
+       CC->redirect_len = 0;
+       CC->redirect_alloc = SIZ;
+       CtdlOutputMsg(msgnum, MT_CITADEL, HEADERS_ALL, 0, 1);
+       msgtext = CC->redirect_buffer;
+       CC->redirect_buffer = NULL;
+       CC->redirect_len = 0;
+       CC->redirect_alloc = 0;
+       lprintf(CTDL_DEBUG, "Wordbreaking...\n");
+       wordbreaker(msgtext, &num_tokens, &tokens);
+       free(msgtext);
+
+       lprintf(CTDL_DEBUG, "Indexing...\n");
        if (num_tokens > 0) {
                for (i=0; i<num_tokens; ++i) {
 
@@ -122,8 +131,7 @@ void ft_index_message(long msgnum, int op) {
                                msgs = (long *) cdb_bucket->ptr;
                                        for (j=0; j<num_msgs; ++j) {
                                                if (msgs[j] == msgnum) {
-                                                       memmove(&msgs[j], &msgs[j+1],
-                                                               ((num_msgs - j - 1)*sizeof(long)));
+                                                       memmove(&msgs[j], &msgs[j+1], ((num_msgs - j - 1)*sizeof(long)));
                                                        --num_msgs;
                                                }
                                        }
@@ -136,8 +144,7 @@ void ft_index_message(long msgnum, int op) {
                                qsort(msgs, num_msgs, sizeof(long), longcmp);
                                for (j=0; j<(num_msgs-1); ++j) {
                                        if (msgs[j] == msgs[j+1]) {
-                                               memmove(&msgs[j], &msgs[j+1],
-                                                       ((num_msgs - j - 1)*sizeof(long)));
+                                               memmove(&msgs[j], &msgs[j+1], ((num_msgs - j - 1)*sizeof(long)));
                                                --num_msgs;
                                        }
                                }
@@ -190,6 +197,7 @@ void ft_index_room(struct ctdlroom *qrbuf, void *data)
 void do_fulltext_indexing(void) {
        int i;
        static time_t last_index = 0L;
+       static time_t last_progress = 0L;
 
        /*
         * Make sure we don't run the indexer too frequently.
@@ -203,11 +211,8 @@ void do_fulltext_indexing(void) {
         * Check to see whether the fulltext index is up to date; if there
         * are no messages to index, don't waste any more time trying.
         */
-       lprintf(CTDL_DEBUG, "CitControl.MMhighest  = %ld\n", CitControl.MMhighest);
-       lprintf(CTDL_DEBUG, "CitControl.MMfulltext = %ld\n", CitControl.MMfulltext);
        if (CitControl.MMfulltext >= CitControl.MMhighest) {
-               /* nothing to do! */
-               return;
+               return;         /* nothing to do! */
        }
 
        lprintf(CTDL_DEBUG, "do_fulltext_indexing() started\n");
@@ -241,6 +246,14 @@ void do_fulltext_indexing(void) {
 
                /* Here it is ... do each message! */
                for (i=0; i<ft_num_msgs; ++i) {
+                       if ((time(NULL) - last_progress) > 10) {
+                               lprintf(CTDL_DEBUG,
+                                       "Indexed %d of %d messages (%d%%)\n",
+                                               i, ft_num_msgs,
+                                               ((i*100) / ft_num_msgs)
+                               );
+                               last_progress = time(NULL);
+                       }
                        ft_index_message(ft_newmsgs[i], 1);
                }
 
@@ -284,16 +297,18 @@ void ft_search(int *fts_num_msgs, long **fts_msgs, char *search_string) {
                for (i=0; i<num_tokens; ++i) {
 
                        /* search for tokens[i] */
-                       cdb_bucket = cdb_fetch(CDB_FULLTEXT, &tokens[i], sizeof(int));
+                       cdb_bucket = cdb_fetch(CDB_FULLTEXT, &tokens[i],
+                                                               sizeof(int));
                        if (cdb_bucket != NULL) {
                                num_msgs = cdb_bucket->len / sizeof(long);
                                msgs = (long *)cdb_bucket->ptr;
 
                                num_all_msgs += num_msgs;
                                if (num_all_msgs > 0) {
-                                       all_msgs = realloc(all_msgs, num_all_msgs*sizeof(long) );
-                                       memcpy(&all_msgs[num_all_msgs - num_msgs], msgs,
-                                               num_msgs*sizeof(long) );
+                                       all_msgs = realloc(all_msgs,
+                                               num_all_msgs*sizeof(long) );
+                                       memcpy(&all_msgs[num_all_msgs-num_msgs],
+                                               msgs, num_msgs*sizeof(long) );
                                }
 
                                cdb_free(cdb_bucket);
@@ -307,13 +322,15 @@ void ft_search(int *fts_num_msgs, long **fts_msgs, char *search_string) {
                 * At this point, if a message appears num_tokens times in the
                 * list, then it contains all of the search tokens.
                 */
-               if (num_all_msgs >= num_tokens) for (j=0; j<(num_all_msgs-num_tokens+1); ++j) {
+               if (num_all_msgs >= num_tokens)
+                  for (j=0; j<(num_all_msgs-num_tokens+1); ++j) {
                        if (all_msgs[j] == all_msgs[j+num_tokens-1]) {
 
                                ++num_ret_msgs;
                                if (num_ret_msgs > num_ret_alloc) {
                                        num_ret_alloc += 64;
-                                       ret_msgs = realloc(ret_msgs, (num_ret_alloc*sizeof(long)) );
+                                       ret_msgs = realloc(ret_msgs,
+                                               (num_ret_alloc*sizeof(long)) );
                                }
                                ret_msgs[num_ret_msgs - 1] = all_msgs[j];
 
@@ -358,6 +375,6 @@ void cmd_srch(char *argbuf) {
 char *serv_fulltext_init(void)
 {
        CtdlRegisterSessionHook(do_fulltext_indexing, EVT_TIMER);
-        CtdlRegisterProtoHook(cmd_srch, "SRCH", "Full text search");
+       CtdlRegisterProtoHook(cmd_srch, "SRCH", "Full text search");
        return "$Id$";
 }
index 427764be4bb740a83c0aa032f2a8a82c6ee0dcd3..6b95edf946e2583152a27837dc239e6df69c5526 100644 (file)
Binary files a/citadel/serv_fulltext.o and b/citadel/serv_fulltext.o differ