home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / elm.lzh / ELM / UTILS / AREPDAEM.C < prev    next >
C/C++ Source or Header  |  1993-03-18  |  17KB  |  664 lines

  1.  
  2. static char rcsid[] = "@(#)$Id: arepdaem.c,v 4.1.1.2 90/08/15 22:50:14 syd Exp $";
  3.  
  4. /*******************************************************************************
  5.  *  The Elm Mail System  -  $Revision: 4.1.1.2 $   $State: Exp $
  6.  *
  7.  *             Copyright (c) 1986, 1987 Dave Taylor
  8.  *             Copyright (c) 1988, 1989, 1990 USENET Community Trust
  9.  *******************************************************************************
  10.  * Bug reports, patches, comments, suggestions should be sent to:
  11.  *
  12.  *    Syd Weinstein, Elm Coordinator
  13.  *    elm@DSI.COM            dsinc!elm
  14.  *
  15.  *******************************************************************************
  16.  * $Log:    arepdaem.c,v $
  17.  * Revision 4.1.1.2  90/08/15  22:50:14  syd
  18.  * Fix last size to time call
  19.  * From: Syd
  20.  * 
  21.  * Revision 4.1.1.1  90/08/15  22:33:54  syd
  22.  * Fix to use time instead of bytes for changes to file and to process
  23.  * each entry on delete properly
  24.  * From: Denis Lambot <d241s016!lde@swn.siemens.be>
  25.  * 
  26.  * Revision 4.1  90/04/28  22:44:33  syd
  27.  * checkin of Elm 2.3 as of Release PL0
  28.  * 
  29.  *
  30.  ******************************************************************************/
  31.  
  32. /** Keep track of mail as it arrives, and respond by sending a 'recording'
  33.     file to the sender as new mail is received.
  34.  
  35.     Note: the user program that interacts with this program is the
  36.     'autoreply' program and that should be consulted for further
  37.     usage information.
  38.  
  39.     This program is part of the 'autoreply' system, and is designed
  40.     to run every hour and check all mailboxes listed in the file 
  41.     "/etc/autoreply.data", where the data is in the form:
  42.  
  43.     username    replyfile    current-mailfile-size
  44.  
  45.     To avoid a flood of autoreplies, this program will NOT reply to mail 
  46.     that contains header "X-Mailer: fastmail".  Further, each time the 
  47.     program responds to mail, the 'mailfile size' entry is updated in
  48.     the file /etc/autoreply.data to allow the system to be brought 
  49.     down and rebooted without any loss of data or duplicate messages.
  50.  
  51.     This daemon also uses a lock semaphore file, /usr/spool/uucp/LCK..arep,
  52.     to ensure that more than one copy of itself is never running.  For this
  53.     reason, it is recommended that this daemon be started up each morning
  54.     from cron, since it will either start since it's needed or simply see
  55.     that the file is there and disappear.
  56.  
  57.     Since this particular program is the main daemon answering any
  58.     number of different users, it must be run with uid root.
  59. **/
  60.  
  61. #include <stdio.h>
  62. #include "defs.h"
  63.  
  64. #ifdef BSD
  65. # include <sys/time.h>
  66. #else
  67. # include <time.h>
  68. #endif
  69.  
  70. #include <sys/types.h>
  71. #include <sys/stat.h>
  72. #include <signal.h>
  73. /*
  74. #include <fcntl.h>
  75. */
  76. #include <errno.h>
  77.  
  78. static char ident[] = { WHAT_STRING };
  79.  
  80. #define arep_lock_file    "LCK..arep"
  81.  
  82. #define autoreply_file    "/etc/autoreply.data"
  83.  
  84. #define logfile        "/etc/autoreply.log"    /* first choice   */
  85. #define logfile2    "/tmp/autoreply.log"    /* second choice  */
  86.  
  87. #define BEGINNING    0        /* see fseek(3S) for info */
  88. #define SLEEP_TIME    3600        /* run once an hour       */
  89. #define MAX_PEOPLE    20        /* max number in program  */
  90.  
  91. #define EXISTS        00        /* lock file exists??     */
  92.  
  93. #define remove_return(s)    if (strlen(s) > 0) { \
  94.                       if (s[strlen(s)-1] == '\n') \
  95.                     s[strlen(s)-1] = '\0'; \
  96.                         }
  97.  
  98. struct replyrec {
  99.     char     username[NLEN];        /* login name of user */
  100.     char    mailfile[SLEN];        /* name of mail file  */
  101.     char    replyfile[SLEN];    /* name of reply file */
  102.     long    mailsize;        /* mail file size     */
  103.     int     in_list;        /* for new replies    */
  104.       } reply_table[MAX_PEOPLE];
  105.  
  106. FILE  *logfd;                /* logfile (log action)   */
  107. time_t autoreply_time = 0L;        /* modif date of autoreply file */
  108. int   active = 0;            /* # of people 'enrolled' */
  109.  
  110. FILE  *open_logfile();            /* forward declaration    */
  111.  
  112. long  bytes();                /*       ditto           */
  113. time_t ModTime();            /*       ditto          */
  114.  
  115. #ifdef VOIDSIG
  116. void    term_signal();
  117. #else
  118. int    term_signal();
  119. #endif
  120.  
  121. main()
  122. {
  123.     long size;
  124.     int  person, data_changed;
  125.     time_t time;
  126.  
  127.     if (fork()) exit(0);
  128.  
  129.     if (! lock())
  130.       exit(0);    /* already running! */
  131.  
  132.     signal(SIGTERM, term_signal);     /* Terminate signal         */
  133.  
  134. /*
  135.  *    note the usage of the BSD style setpgrp wont hurt
  136.  *    system V as its calling sequence is no arguments.
  137.  *    The idea is to disassociate from the terminal to
  138.  *    prevent signals.
  139.  */
  140.     person = getpid();
  141.     setpgrp(person, person);
  142.  
  143.     while (1) {
  144.  
  145.       logfd = open_logfile();    /* open the log */
  146.  
  147.       /* 1. check to see if autoreply table has changed.. */
  148.  
  149.       if ((time = ModTime(autoreply_file)) != autoreply_time) {
  150.         read_autoreply_file(); 
  151.         autoreply_time = time;
  152.       }
  153.  
  154.       /* 2. now for each active person... */
  155.     
  156.       data_changed = 0;
  157.  
  158.       for (person = 0; person < active; person++) {
  159.         if ((size = bytes(reply_table[person].mailfile)) != 
  160.         reply_table[person].mailsize) {
  161.           if (size > reply_table[person].mailsize)
  162.             read_newmail(person);
  163.           /* else mail removed - resync */
  164.           reply_table[person].mailsize = size;
  165.           data_changed++;
  166.         }
  167.       }
  168.  
  169.       /* 3. if data changed, update autoreply file */
  170.  
  171.       if (data_changed)
  172.         update_autoreply_file();
  173.  
  174.       close_logfile();        /* close the logfile again */
  175.  
  176.       /* 4. Go to sleep...  */
  177.  
  178.       sleep(SLEEP_TIME);
  179.     }
  180. }
  181.  
  182. int
  183. read_autoreply_file()
  184. {
  185.     /** We're here because the autoreply file has changed!!  It
  186.         could either be because someone has been added or because
  187.         someone has been removed...since the list will always be in
  188.         order (nice, eh?) we should have a pretty easy time of it...
  189.     **/
  190.  
  191.     FILE *file;
  192.     char username[SLEN],     replyfile[SLEN];
  193.     int  person;
  194.      long size;
  195.     
  196.     log("Autoreply data file has changed!  Reading...");
  197.  
  198. /*
  199.  * clear old entries prior to reread
  200.  */
  201.     for (person = 0; person < active; person++)
  202.       reply_table[person].in_list = 0;
  203.  
  204.     if ((file = fopen(autoreply_file,"r")) == NULL) {
  205.       log("No-one is using autoreply...");
  206.     } else {
  207.       while (fscanf(file, "%s %s %dl", username, replyfile, &size) != EOF) {
  208.         /* check to see if this person is already in the list */
  209.         if ((person = in_list(username)) != -1) {
  210.           reply_table[person].in_list = 1;
  211.           reply_table[person].mailsize = size;     /* sync */
  212.         }
  213.         else {     /* if not, add them */
  214.           if (active == MAX_PEOPLE) {
  215.         unlock();
  216.         exit(log("Couldn't add %s - already at max people!", 
  217.                username));
  218.           }
  219.           log("adding %s to the active list", username);
  220.           strcpy(reply_table[active].username, username);
  221.           sprintf(reply_table[active].mailfile, "%s%s", mailhome, username);
  222.           strcpy(reply_table[active].replyfile, replyfile);
  223.           reply_table[active].mailsize = size;
  224.           reply_table[active].in_list = 1;    /* obviously! */
  225.           active++;
  226.         }
  227.       }
  228.       fclose(file);
  229.     }
  230.  
  231.     /** now check to see if anyone has been removed... **/
  232.  
  233.     person = 0;
  234.     while (person < active)
  235.       if (reply_table[person].in_list) {
  236.         person++;
  237.       }
  238.       else {
  239.         log("removing %s from the active list",
  240.            reply_table[person].username);
  241.         strcpy(reply_table[person].username, 
  242.            reply_table[active-1].username);
  243.         strcpy(reply_table[person].mailfile, 
  244.            reply_table[active-1].mailfile);
  245.         strcpy(reply_table[person].replyfile, 
  246.            reply_table[active-1].replyfile);
  247.         reply_table[person].mailsize = reply_table[active-1].mailsize;
  248.         active--;
  249.       }
  250. }
  251.  
  252. update_autoreply_file()
  253. {
  254.     /** update the entries in the autoreply file... **/
  255.  
  256.     FILE *file;
  257.     register int person;
  258.  
  259.     if ((file = fopen(autoreply_file,"w")) == NULL) {
  260.           log("Couldn't update autoreply file!");
  261.       return;
  262.     }
  263.  
  264.     for (person = 0; person < active; person++)
  265.       fprintf(file, "%s %s %ld\n",
  266.           reply_table[person].username,
  267.           reply_table[person].replyfile,
  268.           reply_table[person].mailsize);
  269.  
  270.     fclose(file);
  271.  
  272. /*    printf("updated autoreply file\n"); */
  273.     autoreply_time = ModTime(autoreply_file);
  274. }
  275.  
  276. int
  277. in_list(name)
  278. char *name;
  279. {
  280.     /** search the current active reply list for the specified username.
  281.         return the index if found, or '-1' if not. **/
  282.  
  283.     register int iindex;
  284.  
  285.     for (iindex = 0; iindex < active; iindex++)
  286.       if (strcmp(name, reply_table[iindex].username) == 0)
  287.         return(iindex);
  288.     
  289.     return(-1);
  290. }
  291.  
  292. read_newmail(person)
  293. int person;
  294. {
  295.     /** Read the new mail for the specified person. **/
  296.  
  297.     
  298.     FILE *mailfile;
  299.     char from_whom[SLEN], subject[SLEN];
  300.     int  sendit;
  301.  
  302.     log("New mail for %s", reply_table[person].username);
  303.  
  304.         if ((mailfile = fopen(reply_table[person].mailfile,"r")) == NULL)
  305.            return(log("can't open mailfile for user %s", 
  306.             reply_table[person].username));
  307.  
  308.         if (fseek(mailfile, reply_table[person].mailsize, BEGINNING) == -1)
  309.            return(log("couldn't seek to %ld in mail file!", 
  310.                    reply_table[person].mailsize));
  311.  
  312.     while (get_return(mailfile, person, from_whom, subject, &sendit) != -1)
  313.       if (sendit)
  314.         reply_to_mail(person, from_whom, subject);
  315.  
  316.     return;
  317. }
  318.  
  319. int
  320. get_return(file, person, from, subject, sendit)
  321. FILE *file;
  322. int  person, *sendit;
  323. char *from, *subject;
  324. {
  325.     /** Reads the new message and return the from and subject lines.
  326.         sendit is set to true iff it isn't a machine generated msg
  327.     **/
  328.     
  329.     char name1[SLEN], name2[SLEN], lastname[SLEN];
  330.     char buffer[SLEN], hold_return[NLEN];
  331.     int done = 0, in_header = 0;
  332.  
  333.     from[0] = '\0';
  334.     name1[0] = '\0';
  335.     name2[0] = '\0';
  336.     lastname[0] = '\0';
  337.     *sendit = 1;
  338.  
  339.     while (! done) {
  340.  
  341.       if (fgets(buffer, SLEN, file) == NULL)
  342.     return(-1);
  343.  
  344.       if (first_word(buffer, "From ")) {
  345.     in_header++;
  346.     sscanf(buffer, "%*s %s", hold_return);
  347.       }
  348.       else if (in_header) {
  349.         if (first_word(buffer, ">From")) {
  350.       sscanf(buffer,"%*s %s %*s %*s %*s %*s %*s %*s %*s %s", name1, name2);
  351.       add_site(from, name2, lastname);
  352.         }
  353.         else if (first_word(buffer,"Subject:")) {
  354.       remove_return(buffer);
  355.       strcpy(subject, (char *) (buffer + 8));
  356.         }
  357.         else if (first_word(buffer,"X-Mailer: fastmail"))
  358.       *sendit = 0;
  359.         else if (strlen(buffer) == 1)
  360.       done = 1;
  361.       }
  362.     }
  363.  
  364.     if (from[0] == '\0')
  365.       strcpy(from, hold_return); /* default address! */
  366.     else
  367.       add_site(from, name1, lastname);    /* get the user name too! */
  368.  
  369.     return(0);
  370. }
  371.  
  372. add_site(buffer, site, lastsite)
  373. char *buffer, *site, *lastsite;
  374. {
  375.     /** add site to buffer, unless site is 'uucp', or the same as 
  376.         lastsite.   If not, set lastsite to site.
  377.     **/
  378.  
  379.     char local_buffer[SLEN], *strip_parens();
  380.  
  381.     if (strcmp(site, "uucp") != 0)
  382.       if (strcmp(site, lastsite) != 0) {
  383.           if (buffer[0] == '\0')
  384.             strcpy(buffer, strip_parens(site));         /* first in list! */
  385.           else {
  386.             sprintf(local_buffer,"%s!%s", buffer, strip_parens(site));
  387.             strcpy(buffer, local_buffer);
  388.           }
  389.           strcpy(lastsite, strip_parens(site)); /* don't want THIS twice! */
  390.        }
  391. }
  392.  
  393. remove_first_word(string)
  394. char *string;
  395. {    /** removes first word of string, ie up to first non-white space
  396.         following a white space! **/
  397.  
  398.     register int loc;
  399.  
  400.     for (loc = 0; string[loc] != ' ' && string[loc] != '\0'; loc++) 
  401.         ;
  402.  
  403.     while (string[loc] == ' ' || string[loc] == '\t')
  404.       loc++;
  405.     
  406.     move_left(string, loc);
  407. }
  408.  
  409. move_left(string, chars)
  410. char string[];
  411. int  chars;
  412. {
  413.     /** moves string chars characters to the left DESTRUCTIVELY **/
  414.  
  415.     register int i;
  416.  
  417.     chars--; /* index starting at zero! */
  418.  
  419.     for (i=chars; string[i] != '\0' && string[i] != '\n'; i++)
  420.       string[i-chars] = string[i];
  421.  
  422.     string[i-chars] = '\0';
  423. }
  424.  
  425. reply_to_mail(person, from, subject)
  426. int   person;
  427. char *from, *subject;
  428. {
  429.     /** Respond to the message from the specified person with the
  430.         specified subject... **/
  431.     
  432.     char buffer[SLEN];
  433.  
  434.     if (strlen(subject) == 0)
  435.       strcpy(subject, "Auto-reply Mail");
  436.     else if (! first_word(subject,"Auto-reply")) {
  437.       sprintf(buffer, "Auto-reply to:%s", subject);
  438.       strcpy(subject, buffer);
  439.     }
  440.  
  441.     log("auto-replying to '%s'", from);
  442.  
  443.     mail(from, subject, reply_table[person].replyfile, person);
  444. }    
  445.  
  446. reverse(string)
  447. char *string;
  448. {
  449.     /** reverse string... pretty trivial routine, actually! **/
  450.  
  451.     char buffer[SLEN];
  452.     register int i, j = 0;
  453.  
  454.     for (i = strlen(string)-1; i >= 0; i--)
  455.       buffer[j++] = string[i];
  456.  
  457.     buffer[j] = '\0';
  458.  
  459.     strcpy(string, buffer);
  460. }
  461.  
  462. long
  463. bytes(name)
  464. char *name;
  465. {
  466.     /** return the number of bytes in the specified file.  This
  467.         is to check to see if new mail has arrived....  **/
  468.  
  469.     int ok = 1;
  470.     extern int errno;    /* system error number! */
  471.     struct stat buffer;
  472.  
  473.     if (stat(name, &buffer) != 0)
  474.       if (errno != 2) {
  475.        unlock();
  476.        exit(fprintf(stderr,"Error %d attempting fstat on %s", errno, name));
  477.       }
  478.       else
  479.         ok = 0;
  480.     
  481.     return(ok ? buffer.st_size : 0);
  482. }
  483.  
  484. time_t
  485. ModTime(name)
  486. char *name;
  487. {
  488.     /** return the modification time in the specified file.
  489.         This is to check to see if autoreply has changed....  **/
  490.  
  491.     int ok = 1;
  492.     extern int errno;    /* system error number! */
  493.     struct stat buffer;
  494.  
  495.     if (stat(name, &buffer) != 0)
  496.       if (errno != 2) {
  497.        unlock();
  498.        exit(fprintf(stderr,"Error %d attempting fstat on %s", errno, name));
  499.       }
  500.       else
  501.         ok = 0;
  502.  
  503.     return(ok ? buffer.st_mtime : (time_t) 0);
  504. }
  505.  
  506. mail(to, subject, filename, person)
  507. char *to, *subject, *filename;
  508. int   person;
  509. {
  510.     /** Mail 'file' to the user from person... **/
  511.     
  512.     char buffer[VERY_LONG_STRING];
  513.  
  514.     sprintf(buffer, "%s/fastmail -f '%s [autoreply]' -s '%s' %s %s",
  515.         BIN, reply_table[person].username,
  516.             subject, filename, to);
  517.     
  518.     system(buffer);
  519. }
  520.  
  521. log(message, arg)
  522. char *message;
  523. char *arg;
  524. {
  525.     /** Put log entry into log file.  Use the format:
  526.           date-time: <message>
  527.     **/
  528.  
  529.     struct tm *thetime;
  530.     long      clock;
  531. #ifndef    _POSIX_SOURCE
  532.     struct tm *localtime(); 
  533.     long      time();
  534. #endif
  535.     char      buffer[SLEN];
  536.  
  537.     /** first off, get the time and date **/
  538.  
  539.     clock = time((long *) 0);       /* seconds since ???   */
  540.     thetime = localtime(&clock);    /* and NOW the time... */
  541.  
  542.     /** then put the message out! **/
  543.  
  544.     sprintf(buffer, message, arg);
  545.  
  546.     fprintf(logfd,"%d/%d-%d:%02d: %s\n", 
  547.         thetime->tm_mon+1, thetime->tm_mday,
  548.             thetime->tm_hour,  thetime->tm_min,
  549.             buffer);
  550. }
  551.  
  552. FILE *open_logfile()
  553. {
  554.     /** open the logfile.  returns a valid file descriptor **/
  555.  
  556.     FILE *fd;
  557.  
  558.     if ((fd = fopen(logfile, "a")) == NULL)
  559.       if ((fd = fopen(logfile2, "a")) == NULL) {
  560.         unlock();
  561.         exit(1);    /* give up! */
  562.       }
  563.  
  564.     return( (FILE *) fd);
  565. }
  566.  
  567. close_logfile()
  568. {
  569.     /** Close the logfile until needed again. **/
  570.  
  571.     fclose(logfd);
  572. }
  573.  
  574. char *strip_parens(string)
  575. char *string;
  576. {
  577.     /** Return string with all parenthesized information removed.
  578.         This is a non-destructive algorithm... **/
  579.  
  580.     static char  buffer[SLEN];
  581.     register int depth = 0, buffer_index = 0;
  582.  
  583.     for (; *string; string++) {
  584.       if (*string == '(')
  585.         depth++;
  586.       else if (*string == ')') 
  587.         depth--;
  588.       else if (depth == 0)
  589.         buffer[buffer_index++] = *string;
  590.     }
  591.     
  592.     buffer[buffer_index] = '\0';
  593.  
  594.     return( (char *) buffer);
  595. }
  596.  
  597. /*** LOCK and UNLOCK - ensure only one copy of this daemon running at any
  598.      given time by using a file existance semaphore (wonderful stuff!) ***/
  599.  
  600. lock()
  601. {
  602.     char lock_name[SLEN];        /* name of lock file  */
  603.     char pid_buffer[SHORT];
  604.     int pid, create_fd;
  605.     extern int errno;    /* system error number! */
  606.  
  607.     sprintf(lock_name, "%s/%s", LOCK_DIR, arep_lock_file);
  608. #ifdef PIDCHECK
  609.       /** first, try to read the lock file, and if possible, check the pid.
  610.       If we can validate that the pid is no longer active, then remove
  611.       the lock file.
  612.        **/
  613.     if((create_fd=open(lock_name,O_RDONLY)) != -1) {
  614.       if (read(create_fd, pid_buffer, SHORT) > 0) {
  615.         pid = atoi(pid_buffer);
  616.         if (pid) {
  617.           if (kill(pid, 0)) {
  618.             close(create_fd);
  619.             if (unlink(lock_name) != 0) {
  620.             printf("Error %s (%s)\n\ttrying to unlink file %s (%s)\n", 
  621.             error_name(errno), error_description(errno), lock_name, "lock");
  622.             return(0);
  623.             }
  624.           } else /* kill pid check succeeded */
  625.             return(0);
  626.         } else /* pid was zero */
  627.           return(0);
  628.       } else /* read failed */
  629.         return(0);
  630.     }
  631.     /* ok, either the open failed or we unlinked it, now recreate it. */
  632. #else
  633.     if (access(lock_name, EXISTS) == 0)
  634.       return(0);    /* file already exists */
  635. #endif
  636.  
  637.     if ((create_fd=creat(lock_name, O_RDONLY)) == -1)
  638.       return(0);    /* can't create file!!   */
  639.  
  640.     sprintf(pid_buffer,"%d\n", getpid() );        /* write the current pid to the file */
  641.     write(create_fd, pid_buffer, strlen(pid_buffer));
  642.     close(create_fd);                /* no need to keep it open */
  643.     
  644.     return(1);
  645.  
  646. }
  647.  
  648. unlock()
  649. {
  650.     /** remove lock file if it's there! **/
  651.  
  652.     (void) unlink(arep_lock_file);
  653. }
  654.  
  655. #ifdef VOIDSIG
  656. void    term_signal()
  657. #else
  658. int    term_signal()
  659. #endif
  660. {
  661.     unlock();
  662.     exit(1);    /* give up! */
  663. }
  664.