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
|
/* -*- c -*-
*
* Author: James Brister <brister@vix.com> -- berkeley-unix --
* Start Date: Wed Dec 27 18:45:55 1995
* Project: INN (innfeed)
* File: article.c
* RCSId: $Id: article.c,v 1.4 1997/08/25 05:32:28 scrappy Exp $
* Copyright: Copyright (c) 1996 by Internet Software Consortium
*
* Permission to use, copy, modify, and distribute this
* software for any purpose with or without fee is hereby
* granted, provided that the above copyright notice and this
* permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE
* CONSORTIUM DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
* SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET
* SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
* 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.
* Description: The implementation of the Article class. Articles are the
* abstraction for the actual news articles. They are a
* reference counted object because they need to be shared by
* multiple Host and Connection objects. When an Article is
* created it verifies that the actual file exists. When a
* Connection wants the article's contents for transmission
* the Article reads the data off disk and returns a set of
* Buffer objects. The Article holds onto these Buffers so
* that the next Connection that wants to transmit it won't
* have to wait for a disk read to be done again.
*
*
*/
#if ! defined (lint)
static const char *rcsid = "$Id: article.c,v 1.4 1997/08/25 05:32:28 scrappy Exp $" ;
static void use_rcsid (const char *rid) { /* Never called */
use_rcsid (rcsid) ; use_rcsid (rid) ;
}
#endif
#include "config.h"
#if defined (DO_HAVE_UNISTD)
#include <unistd.h>
#endif
#include <stdlib.h>
#include <assert.h>
#include <sys/types.h>
#ifdef HAVE_MMAP
#include <sys/mman.h>
#endif /* HAVE_MMAP */
#include <sys/stat.h>
#include <syslog.h>
#include <fcntl.h>
#include <stdio.h>
#include <string.h>
#include <limits.h>
#include "article.h"
#include "buffer.h"
#include "endpoint.h"
#include "msgs.h"
#if defined (NDEBUG)
#define VALIDATE_HASH_TABLE() (void (0))
#else
#define VALIDATE_HASH_TABLE() hashValidateTable ()
#endif
extern bool useMMap ;
struct article_s
{
int refCount ; /* the reference count on this article */
char *fname ; /* the file name of the article */
char *msgid ; /* the msgid of the article (INN tells us) */
Buffer contents ; /* the buffer of the actual on disk stuff */
Buffer *nntpBuffers ; /* list of buffers for transmisson */
caddr_t mMapping ; /* base of memory mapping, or NULL if none */
bool loggedMissing ; /* true if article is missing and we logged */
bool articleOk ; /* true until we know otherwise. */
bool inWireFormat ; /* true if ->contents is \r\n/dot-escaped */
} ;
struct hash_entry_s {
struct hash_entry_s *next ;
struct hash_entry_s *prev ;
struct hash_entry_s *nextTime ;
struct hash_entry_s *prevTime ;
u_int hash ;
Article article ;
};
typedef struct hash_entry_s *HashEntry ;
#ifdef XXX_RAWHACK
#include "configdata.h"
#include "raw.h"
/* This is a really ugly thing to do.... */
extern RAWPART_OFF_T RAWlastartsize;
#endif /* XXX_RAWHACK */
/*
* Private functions
*/
static Buffer artGetContents (Article article) ; /* Return the buffer that
fillContents() filled
up. */
/* Log statistics on article memory usage. */
static void logArticleStats (TimeoutId id, void *data) ;
static bool fillContents (Article article) ; /* Read the article's bits
off the disk. */
/* Append buffer B to the buffer array BUFFS. */
static void appendBuffer (Buffer b, Buffer **buffs, int *newSpot, int *curLen);
static bool prepareArticleForNNTP (Article article) ; /* Do the necessary
CR-LF stuff */
static bool artFreeContents (Article art) ; /* Tell the Article to release
its contents buffer if
possible. */
static void artUnmap (Article art, int size) ; /* munmap an mmap()ed article */
/*
* Hash table routine declarations.
*/
/* Returns a has value for the given string */
static u_int hashString (const char *string) ;
/* Locates the article with the given message ID, in the has table. */
static Article hashFindArticle (const char *msgid) ;
/* Puts the given article in the hash table. */
static void hashAddArticle (Article article) ;
/* Removes the given article from the has table */
static bool hashRemoveArticle (Article article) ;
/* Does some simple-minded hash table validation */
static void hashValidateTable (void) ;
/*
* Private data
*/
static u_int missingArticleCount ; /* Number of articles that were missing */
static bool logMissingArticles ; /* if true then we log the details on a
missing article. */
static bool bitFiddleContents ; /* If true then we memcpy() the contents
around to yield CR-LF on every line */
static u_int preparedBytes ; /* The number of areticle bytes read in so
far of disk (will wrap around) */
static u_int preparedNewlines ; /* The number of newlines found in all the
preparedBytes */
static u_int avgCharsPerLine ; /* The average number of characters per
line over all articles. */
static bool rolledOver ; /* true if preparedBytes wrapped around */
static u_int bytesInUse ; /* count of article contents bytes in use--just
the amount read from the article files, not
all memory involved in. */
static u_int maxBytesInUse ; /* the limit we want to stay under for total
bytes resident in memory dedicated to
article contents. */
static u_int articlesInUse ; /* number of articles currently allocated. */
static u_int byteTotal ; /* number of bytes for article contents
allocated totally since last log. */
static u_int articleTotal ; /* number of articles alloced since last log. */
static TimeoutId articleStatsId ; /* The timer callback id. */
/*
* Hash Table data
*/
static HashEntry *hashTable ; /* the has table itself */
static HashEntry chronList ; /* chronologically ordered. Points at newest */
#define TABLE_SIZE 2048 /* MUST be a power of 2 */
#define HASH_MASK (TABLE_SIZE - 1)
#define TABLE_ENTRY(hash) ((hash) & HASH_MASK)
/*******************************************************************/
/** PUBLIC FUNCTIONS **/
/*******************************************************************/
/* Create a new article object. First looks to see if one with the given
message id already exists in the hash table and if so returns that
(after incrementing the reference count). */
Article newArticle (const char *filename, const char *msgid)
{
Article newArt = NULL ;
if (hashTable == NULL)
{ /* first-time through initialization. */
int i ;
ASSERT ((TABLE_SIZE & HASH_MASK) == 0) ;
hashTable = ALLOC (HashEntry, TABLE_SIZE) ;
ASSERT (hashTable != NULL) ;
addPointerFreedOnExit ((char *)hashTable) ;
for (i = 0 ; i < TABLE_SIZE ; i++)
hashTable [i] = NULL ;
if (ARTICLE_STATS_PERIOD > 0)
articleStatsId = prepareSleep (logArticleStats,ARTICLE_STATS_PERIOD,0);
}
/* now look for it in the hash table. We presume the disk file is still
ok */
if ((newArt = hashFindArticle (msgid)) == NULL)
{
newArt = CALLOC (struct article_s, 1) ;
ASSERT (newArt != NULL) ;
newArt->fname = MALLOC (strlen (filename) + 1) ;
ASSERT (newArt->fname != NULL) ;
strcpy (newArt->fname,filename) ;
newArt->msgid = MALLOC (strlen (msgid) + 1) ;
ASSERT (newArt->msgid != NULL) ;
strcpy (newArt->msgid,msgid) ;
newArt->contents = NULL ;
newArt->mMapping = NULL ;
newArt->refCount = 1 ;
newArt->loggedMissing = false ;
newArt->articleOk = true ;
newArt->inWireFormat = false ;
dprintf (3,"Adding a new article(%p): %s\n", newArt, msgid) ;
articlesInUse++ ;
articleTotal++ ;
hashAddArticle (newArt) ;
}
else
{
if (strcmp (filename,newArt->fname) != 0)
syslog (LOG_ERR, DOUBLE_NAME, filename, newArt->fname) ;
newArt->refCount++ ;
dprintf (2,"Reusing existing article for %s\nx",msgid) ;
}
return newArt ;
}
/* Decrement the reference count on the article and free up its memory if
the ref count gets to 0. */
void delArticle (Article article)
{
if (article == NULL)
return ;
ASSERT (article->refCount > 0) ;
if (--(article->refCount) == 0)
{
bool removed = hashRemoveArticle (article) ;
ASSERT (removed == true) ;
dprintf (2,"Cleaning up article (%p): %s\n",article, article->msgid) ;
if (article->contents != NULL)
{
if (article->mMapping)
artUnmap(article, bufferSize(article->contents)) ;
else
bytesInUse -= bufferDataSize (article->contents) ;
if (article->nntpBuffers != NULL)
freeBufferArray (article->nntpBuffers) ;
delBuffer (article->contents) ;
}
articlesInUse-- ;
FREE (article->fname) ;
FREE (article->msgid) ;
FREE (article) ;
}
VALIDATE_HASH_TABLE () ;
}
void gPrintArticleInfo (FILE *fp, u_int indentAmt)
{
char indent [INDENT_BUFFER_SIZE] ;
u_int i ;
for (i = 0 ; i < MIN(INDENT_BUFFER_SIZE - 1,indentAmt) ; i++)
indent [i] = ' ' ;
indent [i] = '\0' ;
fprintf (fp,"%sGlobal Article information : (count %d) {\n",
indent, articlesInUse) ;
fprintf (fp,"%s missingArticleCount : %d\n",indent,missingArticleCount) ;
fprintf (fp,"%s logMissingArticles : %d\n",indent,logMissingArticles) ;
fprintf (fp,"%s bitFiddleContents : %d\n",indent,bitFiddleContents) ;
fprintf (fp,"%s preparedBytes : %d\n",indent,preparedBytes) ;
fprintf (fp,"%s preparedNewlines : %d\n",indent,preparedNewlines) ;
fprintf (fp,"%s avgCharsPerLine : %d\n",indent,avgCharsPerLine) ;
fprintf (fp,"%s rolledOver : %s\n",indent,boolToString (rolledOver)) ;
fprintf (fp,"%s bytesInUse : %d\n",indent,bytesInUse) ;
fprintf (fp,"%s maxBytesInUse : %d\n",indent,maxBytesInUse) ;
fprintf (fp,"%s articlesInUse : %d\n",indent,articlesInUse) ;
fprintf (fp,"%s byteTotal : %d\n",indent,byteTotal) ;
fprintf (fp,"%s articleTotal : %d\n",indent,articleTotal) ;
fprintf (fp,"%s articleStatsId : %d\n",indent,articleStatsId) ;
{
HashEntry he ;
for (he = chronList ; he != NULL ; he = he->nextTime)
printArticleInfo (he->article,fp,indentAmt + INDENT_INCR) ;
}
fprintf (fp,"%s}\n",indent) ;
}
void printArticleInfo (Article art, FILE *fp, u_int indentAmt)
{
Buffer *b ;
char indent [INDENT_BUFFER_SIZE] ;
u_int i ;
for (i = 0 ; i < MIN(INDENT_BUFFER_SIZE - 1,indentAmt) ; i++)
indent [i] = ' ' ;
indent [i] = '\0' ;
fprintf (fp,"%sArticle : %p {\n",indent,art) ;
fprintf (fp,"%s article ok : %s\n",indent,boolToString (art->articleOk)) ;
fprintf (fp,"%s refcount : %d\n",indent,art->refCount) ;
fprintf (fp,"%s filename : %s\n",indent,art->fname) ;
fprintf (fp,"%s msgid : %s\n",indent,art->msgid) ;
fprintf (fp,"%s contents buffer : {\n",indent) ;
#if 0
printBufferInfo (art->contents,fp,indentAmt + INDENT_INCR) ;
#else
fprintf (fp,"%s %p\n",indent,(void *) art->contents) ;
#endif
fprintf (fp,"%s }\n",indent) ;
fprintf (fp,"%s nntp buffers : {\n",indent) ;
for (b = art->nntpBuffers ; b != NULL && *b != NULL ; b++)
#if 0
printBufferInfo (*b,fp,indentAmt + INDENT_INCR) ;
#else
fprintf (fp,"%s %p\n",indent,(void *) *b) ;
#endif
fprintf (fp,"%s }\n", indent) ;
fprintf (fp,"%s logged missing : %s\n",
indent,boolToString (art->loggedMissing));
fprintf (fp,"%s}\n", indent) ;
}
/* return true if the file this article is in still exists. (actually
return true if we have the contents of the article in memory or if the
file is still OK). */
bool artFileIsValid (Article article)
{
bool rval = false ;
/* we may already know it's not valid */
if (article->articleOk)
{
#ifdef XXX_RAWHACK
int fd = RAWartopen(article->fname, article->msgid);
if (fd < 0) {
rval = false; /* Redundant, but that's OK */
} else {
/* We're sharing this fd globally ... don't close. close(fd); */
rval = true;
}
#else /* XXX_RAWHACK */
if (article->contents != NULL)
rval = true ;
else if (fileExistsP (article->fname))
rval = true ;
#endif /* XXX_RAWHACK */
#ifdef XXX_RAWHACK
notrval:
#endif /* XXX_RAWHACK */
if (!rval)
{
article->articleOk = false ;
missingArticleCount++ ;
if (logMissingArticles && !article->loggedMissing)
{
syslog (LOG_NOTICE,NO_ARTICLE,article->msgid,article->fname) ;
article->loggedMissing = true ;
}
}
}
return rval ;
}
/* return true if we have or are able to get the contents off the disk */
bool artContentsOk (Article article)
{
bool rval = false ;
if ( prepareArticleForNNTP (article) )
rval = true ;
return rval ;
}
/* bump reference count on the article. */
Article artTakeRef (Article article)
{
if (article != NULL)
article->refCount++ ;
return article ;
}
/* return the filename of the article */
const char *artFileName (Article article)
{
if (article == NULL)
return NULL ;
else
return article->fname ;
}
/* Get a NULL terminated array of Buffers that is ready for sending via NNTP */
Buffer *artGetNntpBuffers (Article article)
{
if ( !prepareArticleForNNTP (article) )
return NULL ;
return dupBufferArray (article->nntpBuffers) ;
}
/* return the message id of the article */
const char *artMsgId (Article article)
{
return article->msgid ;
}
/* return how many NNTP-ready buffers the article contains */
u_int artNntpBufferCount (Article article)
{
if ( !prepareArticleForNNTP (article) )
return 0 ;
return bufferArrayLen (article->nntpBuffers) ;
}
/* if VAL is true then all missing articles will be logged. */
void artLogMissingArticles (bool val)
{
logMissingArticles = val ;
}
/* if VAL is true then when an article's contents are read off disk they're
modified to include the appropriate carriage returns */
void artBitFiddleContents (bool val)
{
ASSERT (val == true || bitFiddleContents == false ) ; /* can only set once */
ASSERT (hashTable == NULL) ; /* must be called before any articles made */
bitFiddleContents = val ;
}
/* set the limit we want to stay under. */
void artSetMaxBytesInUse (u_int val)
{
ASSERT (maxBytesInUse > 0) ; /* can only set one time. */
ASSERT (val > 0) ;
maxBytesInUse = val ;
}
/**********************************************************************/
/** STATIC FUNCTIONS **/
/**********************************************************************/
/* return a single buffer that contains the disk image of the article (i.e.
not fixed up for NNTP). Note that if artBitFiddleContents (true) has
been called then the Buffer this functions returns will be fixed up
tfor NNTP. */
static Buffer artGetContents (Article article)
{
Buffer rval = NULL ;
if (article->articleOk)
{
if (article->contents == NULL)
fillContents (article) ;
if (article->contents != NULL)
rval = bufferTakeRef (article->contents) ;
}
return rval ;
}
static void artUnmap (Article article, int size)
{
#ifdef HAVE_MMAP
if (munmap(article->mMapping, size) < 0)
syslog (LOG_NOTICE, "munmap %s: %m", article->fname) ;
#endif
article->mMapping = NULL ;
}
static void logArticleStats (TimeoutId id, void *data)
{
ASSERT (id == articleStatsId) ;
(void) data ; /* keep lint happy */
syslog (LOG_NOTICE,ACTIVE_ARTICLES,articlesInUse,bytesInUse) ;
syslog (LOG_NOTICE,ARTICLE_ALLOCS,articleTotal,byteTotal) ;
byteTotal = 0 ;
articleTotal = 0 ;
articleStatsId = prepareSleep (logArticleStats,ARTICLE_STATS_PERIOD,0) ;
}
/* do the actual read of the article off disk into a Buffer that is stored
in the Article object. The Article will end up with its contents field
having a buffer with the article data in it. This buffer may be
holding a mmapped pointer, or it may be simply a regular buffer with
the data read off disk into it. In the regular buffer case the
contents may be copied around after reading to insert a carriage
return before each newline. */
static bool fillContents (Article article)
{
int fd ;
register char *p;
struct stat buf ;
static bool maxLimitNotified ;
ASSERT (article->contents == NULL) ;
if (maxBytesInUse == 0)
maxBytesInUse = SOFT_ARTICLE_BYTE_LIMIT ;
if (avgCharsPerLine == 0)
avgCharsPerLine = 75 ; /* roughly number of characters per line */
#ifdef XXX_RAWHACK
if ((fd = RAWartopen(article->fname, article->msgid)) < 0)
#else /* XXX_RAWHACK */
if ((fd = open (article->fname,O_RDONLY,0)) < 0)
#endif /* XXX_RAWHACK */
{
article->articleOk = false ;
missingArticleCount++ ;
if (logMissingArticles && !article->loggedMissing)
{
syslog (LOG_NOTICE,NO_ARTICLE,article->msgid,article->fname) ;
article->loggedMissing = true ;
}
}
#ifdef XXX_RAWHACK
else if (1)
#else /* XXX_RAWHACK */
else if (fstat (fd, &buf) < 0)
{
article->articleOk = false ;
syslog (LOG_ERR,FSTAT_FAILURE,article->fname) ;
}
else if (!S_ISREG (buf.st_mode))
{
article->articleOk = false ;
syslog (LOG_ERR,REGFILE_FAILURE,article->fname) ;
}
else if (buf.st_size == 0)
{
article->articleOk = false ;
syslog (LOG_ERR,EMPTY_ARTICLE,article->fname) ;
}
else
#endif /* XXX_RAWHACK */
{
char *buffer = NULL ;
int amt = 0 ;
#ifdef XXX_RAWHACK
size_t idx = 0, amtToRead = (size_t) RAWlastartsize;
size_t newBufferSize = (size_t) RAWlastartsize;
#else /* XXX_RAWHACK */
size_t idx = 0, amtToRead = (size_t) buf.st_size ;
size_t newBufferSize = (size_t) buf.st_size ;
#endif /* XXX_RAWHACK */
HashEntry h ;
if (useMMap)
{
/* if HAVE_MMAP is not defined, useMMap should never be
true, so we don't have to worry about other effects
of this block. We only have to make the function compile. */
#ifdef HAVE_MMAP
article->mMapping = mmap((caddr_t) 0, (size_t) buf.st_size,
PROT_READ, MAP_SHARED, fd, 0);
#endif
if (article->mMapping == (caddr_t) -1)
{ /* dunno, but revert to plain reading */
article->mMapping = NULL ;
syslog (LOG_NOTICE, MMAP_FAILURE, article->fname) ;
}
else
{
article->contents = newBufferByCharP((char *)article->mMapping,
(size_t) buf.st_size,
(size_t) buf.st_size);
buffer = bufferBase (article->contents) ;
if ((p = strchr(buffer, '\n')) == NULL)
{
article->articleOk = false;
delBuffer (article->contents) ;
article->contents = NULL ;
syslog (LOG_NOTICE, MUNGED_ARTICLE, article->fname) ;
}
else if (p[-1] == '\r')
article->inWireFormat = true ;
else if (bitFiddleContents)
{
/* we need to copy the contents into a buffer below */
delBuffer (article->contents) ;
article->contents = NULL ;
}
}
}
if (article->contents == NULL && article->articleOk)
{
if (bitFiddleContents)
{
/* an estimate to give some room for nntpPrepareBuffer to use. */
newBufferSize *= (1.0 + (1.0 / avgCharsPerLine)) ;
newBufferSize ++ ;
}
/* if we're going over the limit try to free up some older article's
contents. */
if (amtToRead + bytesInUse > maxBytesInUse)
{
for (h = chronList ; h != NULL ; h = h->nextTime)
{
if (artFreeContents (h->article))
if (amtToRead + bytesInUse <= maxBytesInUse)
break ;
}
}
/* we we couldn't get below, then log it (one time only) */
if ((amtToRead + bytesInUse) > maxBytesInUse &&
maxLimitNotified == false)
{
maxLimitNotified = true ;
syslog (LOG_NOTICE,MAX_BYTES_LIMIT,maxBytesInUse,
amtToRead + bytesInUse) ;
}
if ((article->contents = newBuffer (newBufferSize)) == NULL)
amtToRead = 0 ;
else
{
buffer = bufferBase (article->contents) ;
#ifdef XXX_RAWHACK
bytesInUse += RAWlastartsize;
byteTotal += RAWlastartsize;
#else /* XXX_RAWHACK */
bytesInUse += buf.st_size ;
byteTotal += buf.st_size ;
#endif /* XXX_RAWHACK */
}
if (article->mMapping && buffer != NULL)
{
(void)memcpy(buffer, (char *) article->mMapping,
(int) buf.st_size);
artUnmap(article, (int) buf.st_size) ;
amtToRead = 0;
}
while (amtToRead > 0)
{
if ((amt = read (fd, buffer + idx,amtToRead)) <= 0)
{
syslog (LOG_ERR,BAD_ART_READ, article->fname) ;
#ifdef XXX_RAWHACK
bytesInUse -= RAWlastartsize;
byteTotal -= RAWlastartsize;
#else /* XXX_RAWHACK */
bytesInUse -= buf.st_size ;
byteTotal -= buf.st_size ;
#endif /* XXX_RAWHACK */
amtToRead = 0 ;
delBuffer (article->contents) ;
article->contents = NULL ;
}
else
{
idx += amt ;
amtToRead -= amt ;
}
}
if (article->contents != NULL)
{
#ifdef XXX_RAWHACK
bufferSetDataSize (article->contents, (size_t) RAWlastartsize) ;
#else /* XXX_RAWHACK */
bufferSetDataSize (article->contents, (size_t) buf.st_size) ;
#endif /* XXX_RAWHACK */
if ((p = strchr(buffer, '\n')) == NULL)
{
article->articleOk = false;
syslog (LOG_NOTICE, MUNGED_ARTICLE, article->fname) ;
}
else if (p[-1] == '\r')
{
article->inWireFormat = true ;
}
else if (bitFiddleContents)
if ( nntpPrepareBuffer (article->contents) )
{
#ifdef XXX_RAWHACK
size_t diff =
(bufferDataSize (article->contents) - RAWlastartsize) ;
#else /* XXX_RAWHACK */
size_t diff =
(bufferDataSize (article->contents) - buf.st_size) ;
#endif /* XXX_RAWHACK */
if (((u_int) UINT_MAX) - diff <= preparedBytes)
{
dprintf (2,"Newline ratio so far: %02.2f\n",
((double) preparedBytes / preparedNewlines)) ;
syslog (LOG_NOTICE,PREPARED_NEWLINES,
((double) preparedBytes)/preparedNewlines,
preparedBytes,preparedNewlines) ;
preparedBytes = 0 ;
preparedNewlines = 0 ;
rolledOver = true ;
}
#ifdef XXX_RAWHACK
preparedBytes += RAWlastartsize ;
#else /* XXX_RAWHACK */
preparedBytes += buf.st_size ;
#endif /* XXX_RAWHACK */
preparedNewlines += diff ;
bytesInUse += diff ;
byteTotal += diff ;
if (preparedBytes > (1024 * 1024))
{
avgCharsPerLine =
((double) preparedBytes) / preparedNewlines ;
avgCharsPerLine++ ;
}
article->inWireFormat = true ;
}
else
{
syslog (LOG_ERR,PREPARE_FAILED) ;
#ifdef XXX_RAWHACK
bytesInUse -= RAWlastartsize;
byteTotal -= RAWlastartsize;
#else /* XXX_RAWHACK */
bytesInUse -= buf.st_size ;
byteTotal -= buf.st_size ;
#endif /* XXX_RAWHACK */
delBuffer (article->contents) ;
article->contents = NULL ;
}
}
}
}
#ifndef XXX_RAWHACK
/* If we're not doin' RAW stuff, we should close a valid file descriptor */
if (fd >= 0)
close (fd) ;
#endif /* ! XXX_RAWHACK */
return (article->contents != NULL ? true : false) ;
}
/* stick the buffer B into the Buffer array pointed at by BUFFS *BUFFS is
reallocated if necessary. NEWSPOT points at the index where B should be
put (presumably the end). CURLEN points at the length of the BUFFS and
it will get updated if BUFFS is reallocated. */
static void appendBuffer (Buffer b, Buffer **buffs, int *newSpot, int *curLen)
{
if (*newSpot == *curLen)
{
*curLen += 10 ;
*buffs = REALLOC (*buffs, Buffer, *curLen) ;
ASSERT (*buffs != NULL) ;
}
(*buffs) [(*newSpot)++] = b ;
}
/* Takes the articles contents buffer and overlays a set of new buffers on
top of it. These buffers insert the required carriage return and dot
characters as needed */
static bool prepareArticleForNNTP (Article article)
{
static Buffer dotFirstBuffer ;
static Buffer dotBuffer ;
static Buffer crlfBuffer ;
Buffer *nntpBuffs = NULL ;
int buffLen = 0 ;
int buffIdx = 0 ;
char *start, *end ;
Buffer contents = artGetContents (article) ; /* returns a reference */
if (contents == NULL)
return false ;
else if (article->nntpBuffers != NULL)
{
delBuffer (contents) ;
return true ; /* already done */
}
if (dotBuffer == NULL)
{
dotBuffer = newBufferByCharP (".\r\n",3,3) ;
dotFirstBuffer = newBufferByCharP ("\r\n.",3,3) ;
crlfBuffer = newBufferByCharP ("\r\n",2,2) ;
}
/* overlay a set of buffers on top of the articles contents buffer. This
is a real speed loss at the moment, so by default it's disabled (by
calling artBitFiddleContents(true) in main(). */
if (article->inWireFormat == false)
{
end = bufferBase (contents) ;
do
{
start = end ;
while (*end && *end != '\n')
end++ ;
appendBuffer (newBufferByCharP (start, (size_t) (end - start),
(size_t) (end - start)),
&nntpBuffs,&buffIdx,&buffLen) ;
if (*end != '\0')
end++ ;
#ifndef XXX_RAWHACK_CRLFSTORAGE
if (*end == '.') /* start of next line is a dot */
appendBuffer (bufferTakeRef (dotFirstBuffer),&nntpBuffs,
&buffIdx,&buffLen);
else
appendBuffer (bufferTakeRef (crlfBuffer),&nntpBuffs,
&buffIdx,&buffLen) ;
#endif /* ! XXX_RAWHACK_CRLFSTORAGE */
}
while (*end != '\0') ;
appendBuffer (bufferTakeRef (dotBuffer), &nntpBuffs,&buffIdx,&buffLen) ;
appendBuffer (NULL,&nntpBuffs,&buffIdx,&buffLen) ;
}
else
{
/* we already fixed the contents up when we read in the article */
nntpBuffs = ALLOC (Buffer, 3) ;
ASSERT (nntpBuffs != NULL) ;
nntpBuffs [0] = newBufferByCharP (bufferBase (contents),
bufferDataSize (contents),
bufferDataSize (contents)) ;
nntpBuffs [1] = bufferTakeRef (dotBuffer) ;
nntpBuffs [2] = NULL ;
}
delBuffer (contents) ; /* the article is still holding a reference */
article->nntpBuffers = nntpBuffs ;
return true ;
}
/* free the contents of the buffers if article is the only thing holding a
reference. Returns true if it could, false if it couldn't */
static bool artFreeContents (Article art)
{
if (art->contents == NULL)
return false ;
if (art->nntpBuffers != NULL)
if (bufferRefCount (art->nntpBuffers[0]) > 1)
return false ;
else
{
freeBufferArray (art->nntpBuffers) ;
art->nntpBuffers = NULL ;
}
ASSERT (bufferRefCount (art->contents) == 1) ;
if (art->mMapping)
artUnmap(art, bufferSize(art->contents)) ;
else
bytesInUse -= bufferDataSize (art->contents) ;
delBuffer (art->contents) ;
art->contents = NULL ;
return true ;
}
/**********************************************************************/
/* Private hash table and routines for storing articles */
/**********************************************************************/
/* Hash function lifted from perl 5 */
static u_int hashString (const char *string)
{
u_int i ;
for (i = 0 ; string && *string ; string++)
i = 33 * i + (u_char) *string ;
return i ;
}
/* find the article in the has table and return it. */
static Article hashFindArticle (const char *msgid)
{
u_int hash = hashString (msgid) ;
HashEntry h ;
for (h = hashTable [TABLE_ENTRY(hash)] ; h != NULL ; h = h->next)
if (hash == h->hash && strcmp (msgid,h->article->msgid) == 0)
break ;
return (h == NULL ? NULL : h->article) ;
}
/* add the article to the hash table. */
static void hashAddArticle (Article article)
{
u_int hash = hashString (article->msgid) ;
HashEntry h ;
HashEntry ne ;
h = hashTable [TABLE_ENTRY(hash)] ;
ne = ALLOC (struct hash_entry_s, 1) ;
ASSERT (ne != NULL) ;
ne->article = article ;
ne->hash = hash ;
ne->next = hashTable [TABLE_ENTRY(hash)] ;
ne->prev = NULL ;
if (h != NULL)
h->prev = ne ;
hashTable [TABLE_ENTRY(hash)] = ne ;
ne->nextTime = chronList ;
ne->prevTime = NULL ;
if (chronList != NULL)
chronList->prevTime = ne ;
chronList = ne ;
}
/* remove the article from the hash table and chronological list.
Does not delete the article itself. */
static bool hashRemoveArticle (Article article)
{
u_int hash = hashString (article->msgid) ;
HashEntry h ;
for (h = hashTable [TABLE_ENTRY(hash)] ; h != NULL ; h = h->next)
if (hash == h->hash && strcmp (article->msgid,h->article->msgid) == 0)
break ;
if (h == NULL)
return false ;
if (h == hashTable [TABLE_ENTRY(hash)])
{
hashTable [TABLE_ENTRY(hash)] = h->next ;
if (h->next != NULL)
h->next->prev = NULL ;
}
else
{
h->prev->next = h->next ;
if (h->next != NULL)
h->next->prev = h->prev ;
}
if (chronList == h)
{
chronList = h->nextTime ;
if (chronList != NULL)
chronList->prevTime = NULL ;
}
else
{
h->prevTime->nextTime = h->nextTime ;
if (h->nextTime != NULL)
h->nextTime->prevTime = h->prevTime ;
}
FREE (h) ;
return true ;
}
#define HASH_VALIDATE_BUCKET_COUNT 1 /* hash buckets to check per call */
static void hashValidateTable (void)
{
static int hbn = 0 ;
int i ;
HashEntry he ;
#if ! defined (NDEBUG)
for (i = 0 ; i < HASH_VALIDATE_BUCKET_COUNT ; i++)
{
for (he = hashTable [hbn] ; he != NULL ; he = he->next)
ASSERT (he->article->refCount > 0) ;
if (++hbn >= TABLE_SIZE)
hbn = 0 ;
}
#endif
}
|