home *** CD-ROM | disk | FTP | other *** search
/ rtsi.com / 2014.01.www.rtsi.com.tar / www.rtsi.com / OS9 / OSK / APPS / elm.lzh / ELM / SRC / FILEIO.C < prev    next >
Text File  |  1991-01-11  |  11KB  |  388 lines

  1.  
  2. static char rcsid[] = "@(#)$Id: fileio.c,v 4.1 90/04/28 22:43:06 syd Exp $";
  3.  
  4. /*******************************************************************************
  5.  *  The Elm Mail System  -  $Revision: 4.1 $   $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:    fileio.c,v $
  17.  * Revision 4.1  90/04/28  22:43:06  syd
  18.  * checkin of Elm 2.3 as of Release PL0
  19.  * 
  20.  *
  21.  ******************************************************************************/
  22.  
  23. /** File I/O routines, including deletion from the folder! 
  24.  
  25. **/
  26.  
  27. #include "headers.h"
  28. #include <sys/types.h>
  29. #include <sys/stat.h>
  30. #include <ctype.h>
  31. #include <errno.h>
  32.  
  33. #ifdef BSD
  34. #undef tolower
  35. #endif
  36.  
  37. #define remote rremote        /* ok, ok .. osk */
  38.  
  39. extern int errno;
  40.  
  41. char *error_name(), *index();
  42.  
  43. copy_message(prefix, dest_file, remove_header, remote, update_status, mmdf_head)
  44. char *prefix;
  45. FILE *dest_file;
  46. int  remove_header, remote, update_status, mmdf_head;
  47. {
  48.     /** Copy current message to destination file, with optional 'prefix' 
  49.         as the prefix for each line.  If remove_header is true, it will 
  50.         skip lines in the message until it finds the end of header line...
  51.         then it will start copying into the file... If remote is true
  52.         then it will append "remote from <hostname>" at the end of the
  53.         very first line of the file (for remailing) 
  54.  
  55.         If "forwarding" is true then it'll do some nice things to
  56.         ensure that the forwarded message looks pleasant; e.g. remove
  57.         stuff like ">From " lines and "Received:" lines.
  58.  
  59.         If "update_status" is true then it will write a new Status:
  60.         line at the end of the headers.  It never copies an existing one.
  61.     **/
  62.  
  63.     char buffer[SLEN];
  64.     register struct header_rec *current_header = headers[current-1];
  65.     register int  lines, front_line, next_front,
  66.           in_header = 1, first_line = TRUE, ignoring = FALSE;
  67.     int    end_header = 0;
  68.  
  69.       /** get to the first line of the message desired **/
  70.  
  71.     if (fseek(mailfile, current_header->offset, 0) == -1) {
  72.        dprint(1, (debugfile, 
  73.         "ERROR: Attempt to seek %d bytes into file failed (%s)",
  74.         current_header->offset, "copy_message"));
  75.        error1("ELM [seek] failed trying to read %d bytes into file.",
  76.          current_header->offset);
  77.        return;
  78.     }
  79.  
  80.     /* how many lines in message? */
  81.  
  82.     lines = current_header->lines;
  83.  
  84.     /* set up for forwarding just in case... */
  85.  
  86.     if (forwarding)
  87.       remove_header = FALSE;
  88.  
  89.     /* now while not EOF & still in message... copy it! */
  90.  
  91.     next_front = TRUE;
  92.  
  93.     while (lines) {
  94.       if (fgets(buffer, SLEN, mailfile) == NULL)
  95.         break;
  96.  
  97.       front_line = next_front;
  98.  
  99.       if(buffer[strlen(buffer)-1] == '\n') {
  100.     lines--;    /* got a full line */
  101.     next_front = TRUE;
  102.       }
  103.       else
  104.     next_front = FALSE;
  105.       
  106.       if (front_line && ignoring)
  107.     ignoring = whitespace(buffer[0]);
  108.  
  109.       if (ignoring)
  110.     continue;
  111.  
  112. #ifdef MMDF
  113.       if (mmdf_head && strcmp(buffer, MSG_SEPERATOR) == 0)
  114.     continue;
  115. #endif /* MMDF */
  116.  
  117.       /* are we still in the header? */
  118.  
  119.       if (in_header && front_line) {
  120.     if (strlen(buffer) < 2) {
  121.       in_header = 0;
  122.       end_header = -1;
  123.     }
  124.     else if (!isspace(*buffer)
  125.           && index(buffer, ':') == NULL
  126. #ifdef MMDF
  127.           && strcmp(buffer, MSG_SEPERATOR) != 0
  128. #endif /* MMDF */
  129.         ) {
  130.       in_header = 0;
  131.       end_header = 1;
  132.     } else if (in_header && remote && first_word(buffer, "Sender:")) {
  133.       continue;
  134.     }
  135.     if (end_header) {
  136.       if (update_status) {
  137.           if (isoff(current_header->status, NEW)) {
  138.         if (ison(current_header->status, UNREAD)) {
  139.           if (fprintf(dest_file, "%sStatus: O\n", prefix) == EOF) {
  140.             Write_to_screen("\l\rWrite in copy_message failed\l\r", 0);
  141.             dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  142.             rm_temps_exit();
  143.           }
  144.         } else    /* read */
  145. #ifdef BSD
  146.           if (fprintf(dest_file, "%sStatus: OR\n", prefix) == EOF) {
  147. #else
  148.           if (fprintf(dest_file, "%sStatus: RO\n", prefix) == EOF) {
  149. #endif
  150.             Write_to_screen("\l\rWrite in copy_message failed\l\r", 0);
  151.             dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  152.             rm_temps_exit();
  153.           }
  154.         update_status = FALSE; /* do it only once */
  155.           }    /* else if NEW - indicate NEW with no Status: line. This is
  156.          * important if we resync a mailfile - we don't want
  157.          * NEW status lost when we copy each message out.
  158.          * It is the responsibility of the function that calls
  159.          * this function to unset NEW as appropriate to its
  160.          * reason for using this function to copy a message
  161.          */
  162.  
  163.         /*
  164.          * add the missing newline for RFC 822
  165.          */
  166.           if (end_header > 0) {
  167.         /* add the missing newline for RFC 822 */
  168.         if (fprintf(dest_file, "\n") == EOF) {
  169.           Write_to_screen("\l\rWrite in copy_message failed\l\r", 0);
  170.           dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  171.           rm_temps_exit();
  172.         }
  173.           }
  174.       }
  175.     }
  176.       }
  177.  
  178.       if (in_header) {
  179.     /* Process checks while in header area */
  180.  
  181.     if (remove_header) {
  182.       ignoring = TRUE;
  183.       continue;
  184.     }
  185.  
  186.     /* add remote on to front? */
  187.     if (first_line && remote) {
  188.       no_ret(buffer);
  189. #ifndef MMDF
  190.       if (fprintf(dest_file, "%s%s remote from %s\n",
  191.           prefix, buffer, hostname) == EOF) {
  192.         Write_to_screen("\l\rWrite in copy_message failed\l\r", 0);
  193.         dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  194.         rm_temps_exit();
  195.       }
  196. #else
  197.       if (first_word(buffer, "From ")) {
  198.         if (fprintf(dest_file, "%s%s remote from %s\n",
  199.             prefix, buffer, hostname) == EOF) {
  200.         Write_to_screen("\l\rWrite in copy_message failed\l\r", 0);
  201.         dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  202.         rm_temps_exit();
  203.         }
  204.       } else {
  205.         if (fprintf(dest_file, "%s%s\n", prefix, buffer) == EOF) {
  206.         Write_to_screen("\l\rWrite in copy_message failed\l\r", 0);
  207.         dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  208.         rm_temps_exit();
  209.         }
  210.       }
  211. #endif /* MMDF */
  212.       first_line = FALSE;
  213.       continue;
  214.     }
  215.  
  216.     if (!forwarding) {
  217.       if(! first_word(buffer, "Status:")) {
  218.         if (fprintf(dest_file, "%s%s", prefix, buffer) == EOF) {
  219.               dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  220.           rm_temps_exit();
  221.           }
  222.         continue;
  223.       } else {
  224.         ignoring = TRUE;
  225.         continue;    /* we will output a new Status: line later, if desired. */
  226.       }
  227.     }
  228.     else { /* forwarding */
  229.  
  230.       if (first_word(buffer, "Received:"   ) ||
  231.           first_word(buffer, ">From"       ) ||
  232.           first_word(buffer, "Status:"     ) ||
  233.           first_word(buffer, "Return-Path:"))
  234.           ignoring = TRUE;
  235.       else
  236.         if (fprintf(dest_file, "%s%s", prefix, buffer) == EOF) {
  237.               dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  238.           rm_temps_exit();
  239.           }
  240.     }
  241.       }
  242.       else { /* not in header */
  243.         /* Process checks that occur after the header area */
  244.  
  245. #ifndef MMDF
  246.     if(first_word(buffer, "From ") && (real_from(buffer, NULL))) {
  247.       dprint(1, (debugfile,
  248.          "\n*** Internal Problem...Tried to add the following;\n"));
  249.       dprint(1, (debugfile,
  250.          "  '%s'\nto output file (copy_message) ***\n", buffer));
  251.       break;    /* STOP NOW! */
  252.     }
  253. #endif /* MMDF */
  254.  
  255.     if (fprintf(dest_file, "%s%s", prefix, buffer) == EOF) {
  256.       Write_to_screen("\l\rWrite in copy_message failed\l\r", 0);
  257.       dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  258.       rm_temps_exit();
  259.     }
  260.       }
  261.     }
  262. #ifndef MMDF
  263.     if (strlen(buffer) + strlen(prefix) > 1)
  264.     if (fprintf(dest_file, "\n") == EOF) {    /* blank line to keep mailx happy *sigh* */
  265.       Write_to_screen("\l\rWrite in copy_message failed\l\r", 0);
  266.       dprint(1, (debugfile,"\n*** Fprint failed on copy_message;\n"));
  267.       rm_temps_exit();
  268.     }
  269. #endif /* MMDF */
  270. }
  271.  
  272. static struct stat saved_buf;
  273. static char saved_fname[SLEN];
  274.  
  275. int
  276. save_file_stats(fname)
  277. char *fname;
  278. {
  279.     /* if fname exists, save the owner, group, mode and filename.
  280.      * otherwise flag nothing saved. Return 0 if saved, else -1.
  281.      */
  282.  
  283.     if(stat(fname, &saved_buf) != -1) {
  284.       (void)strcpy(saved_fname, fname);
  285.       dprint(2, (debugfile,
  286.         "** saved stats for file owner = %d group = %d mode = %o %s **\n",
  287.         saved_buf.st_uid, saved_buf.st_gid, saved_buf.st_mode, fname));
  288.       return(0);
  289.     }
  290.     dprint(2, (debugfile,
  291.       "** couldn't save stats for file %s [errno=%d] **\n",
  292.       fname, errno));
  293.     return(-1);
  294.  
  295. }
  296.  
  297. restore_file_stats(fname)
  298. char *fname;
  299. {
  300.     /* if fname matches the saved file name, set the owner and group
  301.      * of fname to the saved owner, group and mode,
  302.      * else to the userid and groupid of the user and to 700.
  303.      * Return    -1 if the  either mode or owner/group not set
  304.      *        0 if the default values were used
  305.      *        1 if the saved values were used
  306.      */
  307.  
  308.     int old_umask, i, new_mode, new_owner, new_group, ret_code;
  309.  
  310.  
  311.     new_mode = 003;
  312.     new_owner = userid;
  313.     new_group = groupid;
  314.     ret_code = 0;
  315.  
  316.     if(strcmp(fname, saved_fname) == 0) {
  317.       new_mode = saved_buf.st_mode;
  318.       new_owner = saved_buf.st_uid;
  319.       new_group = saved_buf.st_gid;
  320.       ret_code = 1;
  321.     }
  322.     dprint(2, (debugfile, "** %s file stats for %s **\n",
  323.       (ret_code ? "restoring" : "setting"), fname));
  324.  
  325.     old_umask = umask(0);
  326.     if((i = chmod(fname, (unsigned short)(new_mode & 0x1b))) == -1)
  327.       ret_code = -1;
  328.  
  329.     dprint(2, (debugfile, "** chmod(%s, %.3o) returns %d [errno=%d] **\n",
  330.         fname, new_mode & 077, i, errno));
  331.  
  332.     (void) umask(old_umask);
  333.  
  334.     /*
  335.      * Chown is restricted to root on BSD unix (and OSK .... )
  336.      */
  337.     (void) ochown(fname, new_owner, new_group);
  338.  
  339.     return(ret_code);
  340.  
  341. }
  342.  
  343. /** and finally, here's something for that evil trick: site hiding **/
  344.  
  345. #ifdef SITE_HIDING
  346.  
  347. int
  348. is_a_hidden_user(specific_username)
  349. char *specific_username;
  350. {
  351.     /** Returns true iff the username is present in the list of
  352.        'hidden users' on the system.
  353.     **/
  354.     
  355.     FILE *hidden_users;
  356.     char  buffer[SLEN];
  357.  
  358.         /* 
  359.     this line is deliberately inserted to ensure that you THINK
  360.     about what you're doing, and perhaps even contact the author
  361.     of Elm before you USE this option...
  362.         */
  363.  
  364.     if ((hidden_users = fopen (HIDDEN_SITE_USERS,"r")) == NULL) {
  365.       dprint(1, (debugfile,
  366.           "Couldn't open hidden site file %s [%s]\n",
  367.           HIDDEN_SITE_USERS, error_name(errno)));
  368.       return(FALSE);
  369.     }
  370.  
  371.     while (fscanf(hidden_users, "%s", buffer) != EOF)
  372.       if (strcmp(buffer, specific_username) == 0) {
  373.         dprint(3, (debugfile, "** Found user '%s' in hidden site file!\n",
  374.             specific_username));
  375.         fclose(hidden_users);
  376.         return(TRUE);
  377.       }
  378.  
  379.     fclose(hidden_users);
  380.     dprint(3, (debugfile, 
  381.         "** Couldn't find user '%s' in hidden site file!\n",
  382.         specific_username));
  383.  
  384.     return(FALSE);
  385. }
  386.  
  387. #endif
  388.