1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437
|
/*
This file is part of SLRN.
Copyright (c) 1994, 1999, 2007-2009 John E. Davis <jed@jedsoft.org>
Copyright (c) 2001-2006 Thomas Schultz <tststs@gmx.de>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "config.h"
#ifndef SLRNPULL_CODE
# include "slrnfeat.h"
#endif
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <time.h>
#ifdef HAVE_STDLIB_H
# include <stdlib.h>
#endif
#include <slang.h>
#include "jdmacros.h"
#ifndef SLRNPULL_CODE
# include "slrn.h"
# include "group.h"
# include "misc.h"
# include "util.h"
# include "server.h"
# include "hash.h"
#endif
#include "strutil.h"
#include "art.h"
#include "xover.h"
#include "score.h"
#include "sortdate.h"
#include "common.h"
/* The score file will implement article scoring for slrn. Basically the idea
* is that the user will provide a set of regular expressions that
* will act on the header of an article and return an integer or
* 'score'. If this score is less than zero, the article will be
* killed. If it is a positive number greater than some user defined
* value, the article will be flagged as interesting. If the score
* is zero, the article is not killed and it is not flagged as
* interesting either.
*/
int Slrn_Perform_Scoring = SLRN_XOVER_SCORING | SLRN_EXPENSIVE_SCORING;
int Slrn_Prefer_Head = 0;
int Slrn_Invalid_Header_Score = -1000;
/* These two structures are pseudo-score types containing no compiled
* regular expressions.
*/
typedef struct PScore_Regexp_Type
{
#define MAX_KEYWORD_LEN 24
char keyword[MAX_KEYWORD_LEN]; /* used only by generic type */
unsigned int header_type;
#define SCORE_SUBJECT 1
#define SCORE_FROM 2
#define SCORE_XREF 3
#define SCORE_NEWSGROUP 4
#define SCORE_REFERENCES 5
#define SCORE_LINES 6
#define SCORE_MESSAGE_ID 7
#define SCORE_DATE 8
#define SCORE_AGE 9
#define SCORE_BYTES 10
#define SCORE_HAS_BODY 11
#define SCORE_SUB_AND 12
#define SCORE_SUB_OR 13
/* generic requires extra server interaction */
#define SCORE_GENERIC 16
unsigned int flags;
#define NOT_FLAG 1
#define USE_INTEGER 2
union
{
unsigned char *regexp_str;
int ival;
struct PScore_Regexp_Type *psrt;
}
ireg;
struct PScore_Regexp_Type *next;
}
PScore_Regexp_Type;
typedef struct PScore_Type
{
int score;
unsigned int flags;
#define RETURN_THIS_SCORE 1
#define SCORE_IS_OR_TYPE 2
struct PScore_Regexp_Type *pregexp_list;
struct PScore_Type *next;
/* the following variables are used by the score-debugger */
const char *filename;
unsigned int linenumber;
const char *description;
}
PScore_Type;
typedef struct
{
#if SLANG_VERSION < 20000
SLRegexp_Type regexp;
unsigned char buf[512]; /* for compiled pattern */
#else
SLRegexp_Type *regexp;
#endif
}
Our_SLRegexp_Type;
/* These two structures are compiled versions of the above. */
typedef struct Score_Regexp_Type
{
unsigned int header_type;
char *generic_keyword; /* pointer to space in pscore */
int not_flag;
int do_osearch;
union
{
int ival; /* used by certain headers */
Our_SLRegexp_Type re;
#if SLANG_VERSION < 20000
SLsearch_Type se;
#else
SLsearch_Type *se;
#endif
struct Score_Regexp_Type *srt;
}
search;
struct Score_Regexp_Type *next;
}
Score_Regexp_Type;
typedef struct Score_Type
{
PScore_Type *pscore; /* points at structure this is derived from */
struct Score_Regexp_Type regexp_list;
struct Score_Type *next;
}
Score_Type;
#define MAX_GROUP_REGEXP_SIZE 256
#define MAX_GROUP_NAME_LEN 80
typedef struct Group_Score_Name_Type
{
#if SLANG_VERSION < 20000
SLRegexp_Type group_regexp;
#else
SLRegexp_Type *group_regexp;
#endif
char name[MAX_GROUP_NAME_LEN]; /* group name or pattern */
unsigned char buf[MAX_GROUP_REGEXP_SIZE];/* for compiled pattern */
struct Group_Score_Name_Type *next;
}
Group_Score_Name_Type;
typedef struct Group_Score_Type
{
unsigned int gst_not_flag;
Group_Score_Name_Type gsnt;
PScore_Type *pst;
struct Group_Score_Type *next;
}
Group_Score_Type;
typedef struct Scorefile_Name_Type
{
const char *filename;
struct Scorefile_Name_Type *next;
}
Scorefile_Name_Type;
Scorefile_Name_Type *Scorefile_Names = NULL;
static Slrn_Score_Debug_Info_Type *append_score_debug_info
(Slrn_Score_Debug_Info_Type *prev, PScore_Type *sc)
{
Slrn_Score_Debug_Info_Type *newentry;
if (NULL == (newentry = (Slrn_Score_Debug_Info_Type *)
slrn_malloc (sizeof (Slrn_Score_Debug_Info_Type), 0, 0)))
return NULL;
newentry->filename = sc->filename;
newentry->description = sc->description;
newentry->linenumber = sc->linenumber;
newentry->score = sc->score;
newentry->stop_here = sc->flags & RETURN_THIS_SCORE;
newentry->next = NULL;
if (prev != NULL)
prev->next = newentry;
return newentry;
}
static Group_Score_Type *Group_Score_Root;
static Group_Score_Type *Group_Score_Tail;
static Score_Type *Score_Root, *Score_Tail;
int Slrn_Apply_Score = 1;
/* returns 1 on match 0 if failed */
static int match_srt (Slrn_Header_Type *h, Score_Regexp_Type *srt,
char *newsgroup, int or_type)
{
char *s= NULL;
int ival = 0;
unsigned int len;
while (srt != NULL)
{
switch (srt->header_type)
{
case SCORE_LINES:
ival = h->lines;
goto integer_compare;
case SCORE_BYTES:
ival = h->bytes;
goto integer_compare;
case SCORE_HAS_BODY:
ival = (h->flags & HEADER_WITHOUT_BODY) ? 0 : 1;
goto boolean_compare;
case SCORE_SUBJECT:
s = h->subject;
break;
case SCORE_FROM:
s = h->from;
break;
case SCORE_DATE:
s = h->date;
break;
case SCORE_AGE:
ival = slrn_date_to_order_parm(h->date);
goto integer_compare;
case SCORE_MESSAGE_ID:
s = h->msgid;
break;
case SCORE_XREF:
s = h->xref;
break;
case SCORE_REFERENCES:
s = h->refs;
break;
case SCORE_NEWSGROUP:
s = newsgroup;
break;
case SCORE_GENERIC:
s = slrn_extract_add_header (h, srt->generic_keyword);
break;
case SCORE_SUB_AND:
if (match_srt(h, srt->search.srt, newsgroup, 0))
{ /* sub matches */
if (srt->not_flag)
{
if (or_type) goto next_srt;
return 0;
}
}
else /* sub does not match */
{
if (srt->not_flag == 0)
{
if (or_type) goto next_srt;
return 0;
}
}
if (or_type) return 1;
goto next_srt;
case SCORE_SUB_OR:
if (match_srt(h, srt->search.srt, newsgroup, 1))
{ /* sub matches */
if (srt->not_flag)
{
if (or_type) goto next_srt;
return 0;
}
}
else /* sub does not match */
{
if (srt->not_flag == 0)
{
if (or_type) goto next_srt;
return 0;
}
}
if (or_type) return 1;
goto next_srt;
default:
s = NULL; /* not supposed to happen */
} /*switch (srt->header_type)*/
if (s == NULL)
{
if (srt->not_flag)
{
/* Match */
if (or_type)
return 1;
goto next_srt;
}
/* Match failed */
if (or_type) goto next_srt;
return 0;
}
len = strlen (s);
#if SLANG_VERSION < 20000
if (srt->do_osearch)
{
SLsearch_Type *se = &srt->search.se;
if ((len < (unsigned int) se->key_len)
|| (NULL == SLsearch ((unsigned char *) s,
(unsigned char *) s + len,
se)))
{ /* expr does not match */
if (srt->not_flag == 0)
{
if (or_type) goto next_srt;
return 0;
}
}
else if (srt->not_flag)
{
if (or_type) goto next_srt;
return 0;
}
}
else
#endif
{
SLRegexp_Type *re;
#if SLANG_VERSION < 20000
re = &srt->search.re.regexp;
if ((len < re->min_length)
|| (NULL == SLang_regexp_match ((unsigned char *)s, len, re)))
#else
re = srt->search.re.regexp;
if (NULL == SLregexp_match (re, s, len))
#endif
{
if (srt->not_flag == 0)
{
if (or_type) goto next_srt;
return 0;
}
}
else if (srt->not_flag)
{
if (or_type) goto next_srt;
return 0;
}
}
/* Get here if above matched */
if (or_type) return 1;
srt = srt->next;
continue;
/* This is ugly but I am worried about speed. --- we only get
* here for those headers that have integer values.
*/
integer_compare:
if ((ival < srt->search.ival) == (srt->not_flag == 0))
{
if (or_type) goto next_srt;
return 0;
}
/* If we get here, the integer comparison matched. */
if (or_type) return 1;
srt = srt->next;
continue;
boolean_compare:
if ((ival != srt->search.ival) == (srt->not_flag == 0))
{
if (or_type) goto next_srt;
return 0;
}
if (or_type) return 1;
next_srt:
srt = srt->next;
} /*while (srt != NULL)*/
if (or_type) return 0;
else return 1;
}
int slrn_score_header (Slrn_Header_Type *h, char *newsgroup,
Slrn_Score_Debug_Info_Type **info)
{
Slrn_Score_Debug_Info_Type *prev = NULL;
Score_Type *st;
int score = 0;
int or_type;
Score_Regexp_Type *srt;
#ifndef SLRNPULL_CODE
#if SLRN_HAS_MSGID_CACHE
char *s = slrn_is_msgid_cached (h->msgid, newsgroup, 1);
if (s != NULL)
{
/* Kill it if this wasn't the newsgroup where we saw it */
if (strcmp (s, newsgroup))
return Slrn_Kill_Score_Max;
}
#endif
#endif /* NOT SLRNPULL_CODE */
if (h->flags & HEADER_HAS_PARSE_PROBLEMS)
score = Slrn_Invalid_Header_Score;
st = Score_Root;
while (st != NULL)
{
srt = &st->regexp_list;
or_type = st->pscore->flags & SCORE_IS_OR_TYPE;
if (match_srt(h, srt, newsgroup, or_type))
{
int st_score = st->pscore->score;
if (info != NULL)
{
if (*info == NULL)
*info = prev = append_score_debug_info (NULL, st->pscore);
else if (prev != NULL)
prev = append_score_debug_info (prev, st->pscore);
}
if (st->pscore->flags & RETURN_THIS_SCORE)
return st_score;
#if 0
if ((st_score == 9999)
|| (st_score == -9999))
return st_score;
if (st_score == 0)
return score;
#endif
score += st_score;
}
st = st->next;
} /*while (st != NULL)*/
return score;
}
static int compile_psrt (PScore_Regexp_Type *psrt, Score_Regexp_Type *srt,
int *generic)
{
while (psrt != NULL)
{
unsigned int flags = psrt->flags;
if (SCORE_GENERIC == (srt->header_type = psrt->header_type))
{
*generic += 1;
slrn_request_additional_header (psrt->keyword,
Slrn_Perform_Scoring & SLRN_EXPENSIVE_SCORING);
}
srt->not_flag = (0 != (flags & NOT_FLAG));
if ((srt->header_type == SCORE_SUB_AND) ||
(srt->header_type == SCORE_SUB_OR))
{
srt->search.srt = (Score_Regexp_Type *) slrn_malloc (sizeof (Score_Regexp_Type), 1, 0);
if (srt->search.srt == NULL) return -1;
if (compile_psrt(psrt->ireg.psrt, srt->search.srt, generic) != 0)
return -1;
}
else
{
srt->generic_keyword = psrt->keyword;
if (flags & USE_INTEGER)
{
srt->search.ival = psrt->ireg.ival;
}
else
{
#if SLANG_VERSION < 20000
SLRegexp_Type *re = &srt->search.re.regexp;
re->pat = psrt->ireg.regexp_str;
re->buf = srt->search.re.buf;
re->buf_len = sizeof (srt->search.re.buf);
re->case_sensitive = 0;
if (0 != SLang_regexp_compile(re))
{
return -1;
}
#else
if (NULL == (srt->search.re.regexp = SLregexp_compile ((char *) psrt->ireg.regexp_str, SLREGEXP_CASELESS)))
return -1;
#endif
#if SLANG_VERSION < 20000
/* If an ordinary search is ok, use it. */
if (re->osearch)
{
srt->do_osearch = 1;
SLsearch_init ((char *) psrt->ireg.regexp_str, 1, 0, &srt->search.se);
}
#endif
}
}
psrt = psrt->next;
if (psrt == NULL) break;
if (NULL == (srt->next = (Score_Regexp_Type *) slrn_malloc (sizeof (Score_Regexp_Type), 1, 0)))
return -1;
srt = srt->next;
} /* while (psrt != NULL)*/
return 0;
}
static int chain_group_regexp (PScore_Type *pst, int *generic)
{
PScore_Regexp_Type *psrt;
Score_Regexp_Type *srt;
Score_Type *st;
while (pst != NULL)
{
st = (Score_Type *) slrn_malloc (sizeof (Score_Type), 1, 0);
if (st == NULL)
return -1;
st->pscore = pst;
psrt = pst->pregexp_list;
srt = &st->regexp_list;
if (compile_psrt(psrt, srt, generic) != 0)
slrn_free ((char*)st);
else
{
if (Score_Root == NULL) Score_Root = st;
else Score_Tail->next = st;
Score_Tail = st;
}
pst = pst->next;
} /* while (pst != NULL) */
return 0;
}
char *Slrn_Scorefile_Open = NULL;
static void free_srt (Score_Regexp_Type *);
static void free_srt_internal (Score_Regexp_Type *srt)
{
if (srt == NULL)
return;
switch (srt->header_type)
{
case SCORE_LINES:
case SCORE_BYTES:
case SCORE_HAS_BODY:
case SCORE_AGE:
/* Use integer or boolean comparisons */
break;
case SCORE_SUB_AND:
case SCORE_SUB_OR:
free_srt (srt->search.srt);
break;
case SCORE_SUBJECT:
case SCORE_FROM:
case SCORE_DATE:
case SCORE_MESSAGE_ID:
case SCORE_XREF:
case SCORE_REFERENCES:
case SCORE_NEWSGROUP:
case SCORE_GENERIC:
#if SLANG_VERSION >= 20000
if (srt->do_osearch)
{
if (srt->search.se != NULL)
SLsearch_delete (srt->search.se);
}
else if (srt->search.re.regexp != NULL)
SLregexp_free (srt->search.re.regexp);
#endif
break;
}
}
static void free_srt (Score_Regexp_Type *srt)
{
while (srt != NULL)
{
Score_Regexp_Type *srt_next = srt->next;
free_srt_internal (srt);
SLFREE (srt);
srt = srt_next;
}
}
static void free_group_chain (void)
{
Score_Regexp_Type *srt;
while (Score_Root != NULL)
{
Score_Type *next = Score_Root->next;
srt = &Score_Root->regexp_list;
/* first not malloced; free subscores only: */
free_srt_internal (srt);
free_srt (srt->next);
SLFREE (Score_Root);
Score_Root = next;
}
Score_Tail = NULL;
}
int slrn_open_score (char *group_name)
{
Group_Score_Type *gsc;
unsigned int n;
int generic;
free_group_chain ();
if (Slrn_Scorefile_Open != NULL)
{
slrn_message_now (_("Reloading score file ..."));
if (-1 == slrn_read_score_file (Slrn_Scorefile_Open))
slrn_error (_("Error processing score file %s."), Slrn_Scorefile_Open);
slrn_free (Slrn_Scorefile_Open);
Slrn_Scorefile_Open = NULL;
}
if ((Slrn_Perform_Scoring == 0) || (Group_Score_Root == NULL))
{
Slrn_Apply_Score = 0;
return 0;
}
n = strlen (group_name);
generic = 0;
gsc = Group_Score_Root;
while (gsc != NULL)
{
Group_Score_Name_Type *gsnt;
int match;
gsnt = &gsc->gsnt;
match = 0;
while ((gsnt != NULL) && (match == 0))
{
#if SLANG_VERSION < 20000
SLRegexp_Type *re = &gsnt->group_regexp;
match = ((re->min_length <= n)
&& (NULL != SLang_regexp_match ((unsigned char *) group_name, n, re)));
#else
match = (NULL != SLregexp_match (gsnt->group_regexp, group_name, n));
#endif
gsnt = gsnt->next;
}
if (gsc->gst_not_flag)
match = !match;
if (match)
{
if (-1 == chain_group_regexp (gsc->pst, &generic))
{
free_group_chain ();
return -1;
}
}
gsc = gsc->next;
}
if (Score_Root == NULL) return 0;
Slrn_Apply_Score = 1;
#ifndef SLRNPULL_CODE
if (generic && (Slrn_Prefer_Head || (1 != Slrn_Server_Obj->sv_has_cmd("XHDR Path"))))
slrn_open_suspend_xover ();
#endif
return 1;
}
void slrn_close_score (void)
{
free_group_chain ();
#ifndef SLRNPULL_CODE
slrn_close_suspend_xover ();
#endif
}
static int add_group_regexp (PScore_Regexp_Type *psrt, char *str,
char *keyword, unsigned int type,
int not_flag)
{
unsigned int len;
*str++ = 0; /* null terminate keyword by zeroing
* out the colon. This is by agreement
* with the calling routine.
*/
if (*str == ' ') str++; /* space following colon not meaningful */
psrt->header_type = type;
if ((type != SCORE_SUB_AND) && (type != SCORE_SUB_OR))
{
len = (unsigned int) (slrn_trim_string (str) - str);
if (0 == len) return -1;
if ((type == SCORE_LINES) || (type == SCORE_BYTES) || (type == SCORE_HAS_BODY))
{
psrt->ireg.ival = atoi(str);
psrt->flags |= USE_INTEGER;
}
else if (type == SCORE_AGE)
{
psrt->ireg.ival = time(NULL) - atoi(str) * 86400;
psrt->flags |= USE_INTEGER;
}
else
psrt->ireg.regexp_str = (unsigned char *) slrn_safe_strmalloc (str);
strncpy (psrt->keyword, keyword, MAX_KEYWORD_LEN);
psrt->keyword[MAX_KEYWORD_LEN - 1] = 0;
}
else
{
psrt->ireg.psrt = NULL;
}
if (not_flag) psrt->flags |= NOT_FLAG;
psrt->next = NULL;
return 0;
}
static int compile_group_names (char *group, Group_Score_Type *gst)
{
char *comma;
Group_Score_Name_Type *gsnt;
unsigned int num_processed = 0;
gsnt = &gst->gsnt;
comma = group;
while (comma != NULL)
{
#if SLANG_VERSION < 20000
SLRegexp_Type *re;
#endif
group = slrn_skip_whitespace (group);
comma = slrn_strbyte ((char *) group, ',');
if (comma != NULL)
{
*comma++ = 0;
while (1)
{
comma = slrn_skip_whitespace (comma);
if (*comma == 0)
{
comma = NULL;
break;
}
if (*comma != ',')
break;
comma++;
}
}
(void) slrn_trim_string (group);
if (*group == 0) continue;
strncpy (gsnt->name, group, MAX_GROUP_NAME_LEN - 1);
/* Note: because of the memset, this string is null terminated. */
#if SLANG_VERSION < 20000
re = &gsnt->group_regexp;
re->pat = (unsigned char *) slrn_fix_regexp ((char *)group);
re->buf = gsnt->buf;
re->buf_len = MAX_GROUP_REGEXP_SIZE;
re->case_sensitive = 0;
if (0 != SLang_regexp_compile (re))
{
return -1;
}
#else
if (NULL == (gsnt->group_regexp = SLregexp_compile (slrn_fix_regexp ((char *)group), SLREGEXP_CASELESS)))
return -1;
#endif
if (comma != NULL)
{
Group_Score_Name_Type *gsnt1;
gsnt1 = (Group_Score_Name_Type *) slrn_safe_malloc (sizeof (Group_Score_Name_Type));
gsnt->next = gsnt1;
gsnt = gsnt1;
group = comma;
}
num_processed++;
}
if (num_processed) return 0;
return -1;
}
static PScore_Type *create_new_score
(unsigned char *group, int new_group_flag, unsigned int gst_not_flag,
int score, unsigned int pscore_flags,
const char *filename, unsigned int linenumber, const char *description)
{
PScore_Type *pst;
if (new_group_flag)
{
Group_Score_Type *gst;
gst = (Group_Score_Type *) slrn_safe_malloc (sizeof (Group_Score_Type));
if (-1 == compile_group_names ((char *)group, gst))
return NULL;
gst->gst_not_flag = gst_not_flag;
if (Group_Score_Root == NULL)
{
Group_Score_Root = gst;
}
else
Group_Score_Tail->next = gst;
Group_Score_Tail = gst;
}
/* Now create the PseudoScore type and add it. */
pst = (PScore_Type *) slrn_safe_malloc (sizeof (PScore_Type));
pst->score = score;
pst->flags = pscore_flags;
pst->filename = filename;
pst->linenumber = linenumber;
if (description != NULL)
pst->description = slrn_safe_strmalloc ((char *)description);
else
pst->description = slrn_safe_strmalloc ((char *)"");
if (Group_Score_Tail->pst == NULL)
{
Group_Score_Tail->pst = pst;
}
else
{
PScore_Type *last = Group_Score_Tail->pst;
while (last->next != NULL) last = last->next;
last->next = pst;
}
return pst;
}
static void score_error (char *msg, char *line, unsigned int linenum, char *file)
{
slrn_error (_("Error processing %s\nLine %u:\n%s\n%s\n"),
file, linenum, line, msg);
}
static void free_psrt (PScore_Regexp_Type *r)
{
while (r != NULL)
{
PScore_Regexp_Type *rnext = r->next;
if ((r->header_type == SCORE_SUB_AND) ||
(r->header_type == SCORE_SUB_OR))
free_psrt (r->ireg.psrt);
else if ((r->flags & USE_INTEGER) == 0)
slrn_free ((char *) r->ireg.regexp_str);
SLFREE (r);
r = rnext;
}
}
static void free_group_scores (void)
{
while (Group_Score_Root != NULL)
{
Group_Score_Type *gnext = Group_Score_Root->next;
PScore_Type *pst = Group_Score_Root->pst;
Group_Score_Name_Type *gsnt;
gsnt = Group_Score_Root->gsnt.next;
while (gsnt != NULL)
{
Group_Score_Name_Type *next = gsnt->next;
#if SLANG_VERSION >= 20000
if (gsnt->group_regexp != NULL)
SLregexp_free (gsnt->group_regexp);
#endif
SLFREE (gsnt);
gsnt = next;
}
while (pst != NULL)
{
PScore_Type *pnext = pst->next;
free_psrt (pst->pregexp_list);
slrn_free ((char *) pst->description);
SLFREE (pst);
pst = pnext;
}
SLFREE (Group_Score_Root);
Group_Score_Root = gnext;
}
}
static int has_score_expired (char *s, unsigned long today)
{
unsigned long mm, dd, yyyy;
unsigned long score_time;
s = slrn_skip_whitespace (s);
if (*s == 0) return 0;
if (((3 != sscanf (s, "%lu/%lu/%lu", &mm, &dd, &yyyy))
&& (3 != sscanf (s, "%lu-%lu-%lu", &dd, &mm, &yyyy)))
|| (dd > 31)
|| (mm > 12)
|| (yyyy < 1900))
return -1;
score_time = (yyyy - 1900) * 10000 + (mm - 1) * 100 + dd;
if (score_time > today) return 0;
return 1;
}
static unsigned long get_today (void)
{
unsigned long mm, yy, dd;
time_t tloc;
struct tm *tm_struct;
time (&tloc);
tm_struct = localtime (&tloc);
yy = tm_struct->tm_year;
mm = tm_struct->tm_mon;
dd = tm_struct->tm_mday;
return yy * 10000 + mm * 100 + dd;
}
typedef struct
{
unsigned char group[256];
unsigned long today;
int score;
int start_new_group;
int gnt_not_flag;
int start_new_score;
int score_has_expired;
unsigned int pscore_flags;
PScore_Type *pst;
#if SLANG_VERSION < 20000
SLPreprocess_Type pt;
#else
SLprep_Type *pt;
#endif
}
Score_Context_Type;
static int read_score_file_internal (char *, Score_Context_Type *);
static int handle_include_line (char *file, char *line, Score_Context_Type *c)
{
char *dir, *f;
char buf [SLRN_MAX_PATH_LEN];
#ifdef __CYGWIN__
char convline [SLRN_MAX_PATH_LEN];
#endif
int status;
line = slrn_skip_whitespace (line);
if (*line == 0)
return -1;
(void) slrn_trim_string (line);
#ifdef __CYGWIN__
if (0 == slrn_cygwin_convert_path (line, convline, sizeof (convline)))
line = convline;
#else
# if defined(IBMPC_SYSTEM)
slrn_os2_convert_path (line);
# endif
#endif
/* Make a filename which is relative to dir of current file.
* Note that slrn_dircat will properly handle absolute filenames.
*/
f = slrn_basename (file);
if (NULL == (dir = slrn_strnmalloc (file, (unsigned int) (f - file), 1)))
return -1;
if (-1 == slrn_dircat (dir, line, buf, sizeof (buf)))
{
slrn_free (dir);
return -1;
}
status = read_score_file_internal (buf, c);
slrn_free (dir);
return status;
}
static int phrase_score_file (char *file, FILE *fp, Score_Context_Type *c,
unsigned int *linenum,
PScore_Regexp_Type *sub_psrt)
{
char line[1024];
PScore_Regexp_Type *psrt;
char *description = NULL;
while (fgets (line, sizeof (line) - 1, fp))
{
char *lp;
int ret, not_flag;
(*linenum)++;
psrt = NULL;
#if SLANG_VERSION < 20000
if (0 == SLprep_line_ok (line, &c->pt))
#else
if (0 == SLprep_line_ok (line, c->pt))
#endif
continue;
lp = slrn_skip_whitespace (line);
if ((*lp == '#') || (*lp == '%') || (*lp <= ' ')) continue;
if (sub_psrt == NULL)
{
if ((0 == slrn_case_strncmp (lp, "include", 7))
&& ((lp[7] == ' ') || (lp[7] == '\t')))
{
if (0 == handle_include_line (file, lp + 7, c))
continue;
score_error (_("Error handling INCLUDE line"), line, *linenum,
file);
slrn_free (description);
return -1;
}
if (*lp == '[')
{
unsigned char *g, *gmax, ch;
g = c->group;
gmax = g + sizeof (c->group);
lp++;
lp = slrn_skip_whitespace (lp);
c->gnt_not_flag = 0;
if (*lp == '~')
{
c->gnt_not_flag = 1;
lp = slrn_skip_whitespace (lp + 1);
}
while (((ch = *lp++) != 0)
&& (ch != ']') && (g < gmax))
*g++ = ch;
if ((ch != ']') || (g == gmax))
{
score_error (_("Syntax Error."), line, *linenum, file);
slrn_free (description);
return -1;
}
*g = 0;
c->start_new_group = 1;
c->score_has_expired = 0;
c->start_new_score = 0;
continue;
}
if (!slrn_case_strncmp (lp, "Score:", 6))
{
char *lpp = lp + 6, *eol;
c->pscore_flags = 0;
if (*lpp == ':')
{
lpp++;
c->pscore_flags |= SCORE_IS_OR_TYPE;
}
lpp = slrn_skip_whitespace (lpp);
if (*lpp == '=')
{
c->pscore_flags |= RETURN_THIS_SCORE;
lpp++;
}
c->score = atoi (lpp);
c->start_new_score = 1;
if (description != NULL)
{
slrn_free (description);
description = NULL;
}
eol = slrn_strbyte (lpp, '#');
if (eol == NULL)
lpp = slrn_strbyte (lpp, '%');
else lpp = eol;
if (lpp != NULL)
{
lpp = slrn_skip_whitespace (lpp + 1);
eol = lpp + strlen (lpp) - 1;
while ((eol >= lpp) && ((unsigned char)*eol <= 32))
*eol-- = '\0';
description = slrn_safe_strmalloc (lpp);
}
continue;
}
if (c->start_new_score)
{
if (!slrn_case_strncmp (lp, "Expires:", 8))
{
ret = has_score_expired (lp + 8, c->today);
if (ret == -1)
{
score_error (_("Expecting 'Expires: MM/DD/YYYY' or 'Expires: DD-MM-YYYY'"),
line, *linenum, file);
slrn_free (description);
return -1;
}
if (ret)
{
slrn_message (_("%s has expired score on line %d"),
file, *linenum);
#ifndef SLRNPULL_CODE
Slrn_Saw_Warning = 1;
#endif
c->start_new_score = 0;
c->score_has_expired = 1;
}
else c->score_has_expired = 0;
continue;
}
if (NULL == (c->pst = create_new_score (c->group, c->start_new_group, c->gnt_not_flag,
c->score, c->pscore_flags,
file, *linenum, description)))
{
score_error (_("Bad group regular expression."), line,
*linenum, file);
slrn_free (description);
return -1;
}
c->start_new_group = 0;
c->start_new_score = 0;
c->score_has_expired = 0;
if (description != NULL)
{
slrn_free (description);
description = NULL;
}
}
if (c->score_has_expired) continue;
if (c->pst == NULL)
{
score_error (_("Expecting Score keyword."), line, *linenum, file);
return -1;
}
} /*if (sub_psrt==null) */
slrn_free (description);
if (*lp == '~')
{
not_flag = 1;
lp++;
}
else not_flag = 0;
ret = -1;
psrt = (PScore_Regexp_Type *) slrn_safe_malloc (sizeof (PScore_Regexp_Type));
/* Otherwise the line is a kill one */
if (!slrn_case_strncmp (lp, "Subject:", 8))
ret = add_group_regexp (psrt, lp + 7, lp, SCORE_SUBJECT, not_flag);
else if (!slrn_case_strncmp (lp, "From:", 5))
ret = add_group_regexp (psrt, lp + 4, lp, SCORE_FROM, not_flag);
else if (!slrn_case_strncmp (lp, "Xref:", 5))
ret = add_group_regexp (psrt, lp + 4, lp, SCORE_XREF, not_flag);
else if (!slrn_case_strncmp (lp, "Newsgroup:", 10))
ret = add_group_regexp (psrt, lp + 9, lp, SCORE_NEWSGROUP, not_flag);
else if (!slrn_case_strncmp (lp, "References:", 11))
ret = add_group_regexp (psrt, lp + 10, lp, SCORE_REFERENCES, not_flag);
else if (!slrn_case_strncmp (lp, "Lines:", 6))
ret = add_group_regexp (psrt, lp + 5, lp, SCORE_LINES, not_flag);
else if (!slrn_case_strncmp (lp, "Date:", 5))
ret = add_group_regexp (psrt, lp + 4, lp, SCORE_DATE, not_flag);
else if (!slrn_case_strncmp (lp, "Age:", 4))
ret = add_group_regexp (psrt, lp + 3, lp, SCORE_AGE, not_flag);
else if (!slrn_case_strncmp (lp, "Bytes:", 6))
ret = add_group_regexp (psrt, lp + 5, lp, SCORE_BYTES, not_flag);
else if (!slrn_case_strncmp (lp, "Has-Body:", 9))
ret = add_group_regexp (psrt, lp + 8, lp, SCORE_HAS_BODY, not_flag);
else if (!slrn_case_strncmp (lp, "Message-Id:", 11))
ret = add_group_regexp (psrt, lp + 10, lp, SCORE_MESSAGE_ID, not_flag);
else if (!slrn_case_strncmp (lp, "{:", 2))
{
if (lp[2] ==':')
{
ret = add_group_regexp (psrt, lp + 1, lp, SCORE_SUB_OR, not_flag);
}
else
{
ret = add_group_regexp (psrt, lp + 1, lp, SCORE_SUB_AND, not_flag);
}
if (phrase_score_file(file, fp, c, linenum, psrt)) return -1;
}
else if (!slrn_case_strncmp (lp, "}", 1))
{
SLFREE (psrt);
if (sub_psrt != NULL)
return 0;
else
{
score_error (_("Missing COLON."), line, *linenum, file);
return -1;
}
}
else
{
char *lpp = lp;
while (*lpp && (*lpp != ':')) lpp++;
if (*lpp != ':')
{
SLFREE (psrt);
score_error (_("Missing COLON."), line, *linenum, file);
return -1;
}
ret = add_group_regexp (psrt, lpp, lp, SCORE_GENERIC, not_flag);
}
if (ret == -1)
{
score_error (_("No regular expression given."), line, *linenum, file);
return -1;
}
if (sub_psrt == NULL)
{
if (c->pst->pregexp_list == NULL)
{
c->pst->pregexp_list = psrt;
}
else
{
PScore_Regexp_Type *last = c->pst->pregexp_list;
while (last->next != NULL) last = last->next;
last->next = psrt;
}
}
else
{
if (sub_psrt->ireg.psrt == NULL)
{
sub_psrt->ireg.psrt = psrt;
}
else
{
PScore_Regexp_Type *last = sub_psrt->ireg.psrt;
while (last->next != NULL) last = last->next;
last->next = psrt;
}
}
} /*while (fgets (line, sizeof (line) - 1, fp))*/
if (sub_psrt == NULL) return 0;
else
{
score_error (_("Missing '}' for subscore"), line, *linenum, file);
return -1;
}
}
static int read_score_file_internal (char *file, Score_Context_Type *c)
{
FILE *fp;
Scorefile_Name_Type *files = Scorefile_Names, *thisfile;
unsigned int linenum = 0;
int ret;
while (files != NULL)
{
if (!strcmp (files->filename, file))
{
slrn_error (_("*** Warning * Read file %s before - skipping ..."), file);
return 0;
}
files = files->next;
}
thisfile = (Scorefile_Name_Type *)
slrn_safe_malloc (sizeof (Scorefile_Name_Type));
thisfile->filename = slrn_safe_strmalloc (file);
thisfile->next = Scorefile_Names;
Scorefile_Names = thisfile;
if (NULL == (fp = fopen (file, "r")))
{
slrn_error (_("Unable to open score file %s"), file);
return -1;
}
ret = phrase_score_file((char*)thisfile->filename, fp, c, &linenum, NULL);
fclose (fp);
return ret;
}
int slrn_read_score_file (char *file)
{
Score_Context_Type sc;
int status;
if (Group_Score_Root != NULL)
{
free_group_scores ();
}
free_group_chain ();
while (Scorefile_Names != NULL)
{
Scorefile_Name_Type *next = Scorefile_Names->next;
slrn_free ((char *) Scorefile_Names->filename);
slrn_free ((char *) Scorefile_Names);
Scorefile_Names = next;
}
sc.today = get_today ();
sc.score = 0;
sc.start_new_group = 1;
sc.gnt_not_flag = 0;
sc.start_new_score = 0;
sc.score_has_expired = 0;
sc.pscore_flags = 0;
sc.pst = NULL;
sc.group[0] = '*';
sc.group[1] = 0;
#if SLANG_VERSION < 20000
if (-1 == SLprep_open_prep (&sc.pt))
#else
if (NULL == (sc.pt = SLprep_new ()))
#endif
return -1;
status = read_score_file_internal (file, &sc);
#if SLANG_VERSION < 20000
SLprep_close_prep (&sc.pt);
#else
SLprep_delete (sc.pt);
#endif
if (status == -1)
Slrn_Apply_Score = 0;
else
Slrn_Apply_Score = 1;
return status;
}
|