[ChangeLog]
[bpt/emacs.git] / lib-src / fakemail.c
index da3911b..940d621 100644 (file)
@@ -1,12 +1,15 @@
 /* sendmail-like interface to /bin/mail for system V,
-   Copyright (C) 1985, 1994 Free Software Foundation, Inc.
+   Copyright (C) 1985, 1994, 1999, 2001-2011  Free Software Foundation, Inc.
+
+Author: Bill Rozas <jinx@martigny.ai.mit.edu>
+(according to ack.texi)
 
 This file is part of GNU Emacs.
 
-GNU Emacs is free software; you can redistribute it and/or modify
+GNU Emacs 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, or (at your option)
-any later version.
+the Free Software Foundation, either version 3 of the License, or
+(at your option) any later version.
 
 GNU Emacs is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -14,24 +17,28 @@ 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 GNU Emacs; see the file COPYING.  If not, write to
-the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
+along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.  */
+
 
+#define _XOPEN_SOURCE 500      /* for cuserid */
 
-#define NO_SHORTNAMES
-#include <../src/config.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
 
-#if defined (BSD) && !defined (BSD4_1) && !defined (USE_FAKEMAIL)
+#if defined (BSD_SYSTEM) && !defined (USE_FAKEMAIL)
 /* This program isnot used in BSD, so just avoid loader complaints.  */
-void
-main ()
+int
+main (void)
 {
+  return 0;
 }
 #else /* not BSD 4.2 (or newer) */
 #ifdef MSDOS
-void
+int
 main ()
 {
+  return 0;
 }
 #else /* not MSDOS */
 /* This conditional contains all the rest of the file.  */
@@ -42,11 +49,8 @@ main ()
 #undef static
 #endif
 
-#ifdef read
-#undef read
-#undef write
-#undef open
-#undef close
+#ifdef WINDOWSNT
+#include "ntlib.h"
 #endif
 
 #include <stdio.h>
@@ -54,6 +58,10 @@ main ()
 #include <ctype.h>
 #include <time.h>
 #include <pwd.h>
+#include <stdlib.h>
+
+/* This is to declare cuserid.  */
+#include <unistd.h>
 \f
 /* Type definitions */
 
@@ -61,6 +69,15 @@ main ()
 #define true 1
 #define false 0
 
+#define TM_YEAR_BASE 1900
+
+/* Nonzero if TM_YEAR is a struct tm's tm_year value that causes
+   asctime to have well-defined behavior.  */
+#ifndef TM_YEAR_IN_ASCTIME_RANGE
+# define TM_YEAR_IN_ASCTIME_RANGE(tm_year) \
+    (1000 - TM_YEAR_BASE <= (tm_year) && (tm_year) <= 9999 - TM_YEAR_BASE)
+#endif
+
 /* Various lists */
 
 struct line_record
@@ -77,11 +94,11 @@ struct header_record
   struct header_record *previous;
 };
 typedef struct header_record *header;
-                       
+
 struct stream_record
 {
   FILE *handle;
-  int (*action)();
+  int (*action)(FILE *);
   struct stream_record *rest_streams;
 };
 typedef struct stream_record *stream_list;
@@ -121,19 +138,16 @@ struct linebuffer lb;
 #define MAIL_PROGRAM_NAME "/bin/mail"
 #endif
 
-static char *my_name;
+static const char *my_name;
 static char *the_date;
 static char *the_user;
 static line_list file_preface;
 static stream_list the_streams;
 static boolean no_problems = true;
 
-extern FILE *popen ();
-extern int fclose (), pclose ();
+static void fatal (const char *s1) NO_RETURN;
 
 #ifdef CURRENT_USER
-extern struct passwd *getpwuid ();
-extern unsigned short geteuid ();
 static struct passwd *my_entry;
 #define cuserid(s)                             \
 (my_entry = getpwuid (((int) geteuid ())),     \
@@ -145,8 +159,7 @@ static struct passwd *my_entry;
 /* Print error message.  `s1' is printf control string, `s2' is arg for it. */
 
 static void
-error (s1, s2)
-     char *s1, *s2;
+error (const char *s1, const char *s2)
 {
   printf ("%s: ", my_name);
   printf (s1, s2);
@@ -157,54 +170,46 @@ error (s1, s2)
 /* Print error message and exit.  */
 
 static void
-fatal (s1, s2)
-     char *s1, *s2;
+fatal (const char *s1)
 {
-  error (s1, s2);
-  exit (1);
+  error ("%s", s1);
+  exit (EXIT_FAILURE);
 }
 
 /* Like malloc but get fatal error if memory is exhausted.  */
 
-static char *
-xmalloc (size)
-     int size;
+static long *
+xmalloc (int size)
 {
-  char *result = (char *) malloc (((unsigned) size));
-  if (result == ((char *) NULL))
-    fatal ("virtual memory exhausted", 0);
+  long *result = (long *) malloc (((unsigned) size));
+  if (result == ((long *) NULL))
+    fatal ("virtual memory exhausted");
   return result;
 }
 
-static char *
-xrealloc (ptr, size)
-     char *ptr;
-     int size;
+static long *
+xrealloc (long int *ptr, int size)
 {
-  char *result = (char *) realloc (ptr, ((unsigned) size));
-  if (result == ((char *) NULL))
+  long *result = (long *) realloc (ptr, ((unsigned) size));
+  if (result == ((long *) NULL))
     fatal ("virtual memory exhausted");
   return result;
 }
 \f
 /* Initialize a linebuffer for use */
 
-void
-init_linebuffer (linebuffer)
-     struct linebuffer *linebuffer;
+static void
+init_linebuffer (struct linebuffer *linebuffer)
 {
   linebuffer->size = INITIAL_LINE_SIZE;
   linebuffer->buffer = ((char *) xmalloc (INITIAL_LINE_SIZE));
 }
 
 /* Read a line of text from `stream' into `linebuffer'.
- * Return the length of the line.  
- */
+   Return the length of the line.  */
 
-long
-readline (linebuffer, stream)
-     struct linebuffer *linebuffer;
-     FILE *stream;
+static long
+readline (struct linebuffer *linebuffer, FILE *stream)
 {
   char *buffer = linebuffer->buffer;
   char *p = linebuffer->buffer;
@@ -216,7 +221,7 @@ readline (linebuffer, stream)
       if (p == end)
        {
          linebuffer->size *= 2;
-         buffer = ((char *) xrealloc (buffer, linebuffer->size));
+         buffer = ((char *) xrealloc ((long *)buffer, linebuffer->size));
          p = buffer + (p - linebuffer->buffer);
          end = buffer + linebuffer->size;
          linebuffer->buffer = buffer;
@@ -238,25 +243,23 @@ readline (linebuffer, stream)
 
    If there is no keyword, return NULL and don't alter *REST.  */
 
-char *
-get_keyword (field, rest)
-     register char *field;
-     char **rest;
+static char *
+get_keyword (register char *field, char **rest)
 {
   static char keyword[KEYWORD_SIZE];
   register char *ptr;
-  register char c;
+  register int c;
 
   ptr = &keyword[0];
-  c = *field++;
+  c = (unsigned char) *field++;
   if (isspace (c) || c == ':')
     return ((char *) NULL);
   *ptr++ = (islower (c) ? toupper (c) : c);
-  while (((c = *field++) != ':') && ! isspace (c))
+  while (((c = (unsigned char) *field++) != ':') && ! isspace (c))
     *ptr++ = (islower (c) ? toupper (c) : c);
   *ptr++ = '\0';
   while (isspace (c))
-    c = *field++;
+    c = (unsigned char) *field++;
   if (c != ':')
     return ((char *) NULL);
   *rest = field;
@@ -265,9 +268,8 @@ get_keyword (field, rest)
 
 /* Nonzero if the string FIELD starts with a colon-terminated keyword.  */
 
-boolean
-has_keyword (field)
-     char *field;
+static boolean
+has_keyword (char *field)
 {
   char *ignored;
   return (get_keyword (field, &ignored) != ((char *) NULL));
@@ -283,10 +285,8 @@ has_keyword (field)
    We don't pay attention to overflowing WHERE;
    the caller has to make it big enough.  */
 
-char *
-add_field (the_list, field, where)
-     line_list the_list;
-     register char *field, *where;
+static char *
+add_field (line_list the_list, register char *field, register char *where)
 {
   register char c;
   while (true)
@@ -341,11 +341,12 @@ add_field (the_list, field, where)
   return where;
 }
 \f
-line_list
-make_file_preface ()
+static line_list
+make_file_preface (void)
 {
   char *the_string, *temp;
   long idiotic_interface;
+  struct tm *tm;
   long prefix_length;
   long user_length;
   long date_length;
@@ -353,7 +354,13 @@ make_file_preface ()
 
   prefix_length = strlen (FROM_PREFIX);
   time (&idiotic_interface);
-  the_date = ctime (&idiotic_interface);
+  /* Convert to a string, checking for out-of-range time stamps.
+     Don't use 'ctime', as that might dump core if the hardware clock
+     is set to a bizarre value.  */
+  tm = localtime (&idiotic_interface);
+  if (! (tm && TM_YEAR_IN_ASCTIME_RANGE (tm->tm_year)
+        && (the_date = asctime (tm))))
+    fatal ("current time is out of range");
   /* the_date has an unwanted newline at the end */
   date_length = strlen (the_date) - 1;
   the_date[date_length] = '\0';
@@ -361,9 +368,9 @@ make_file_preface ()
   user_length = strlen (temp);
   the_user = alloc_string (user_length + 1);
   strcpy (the_user, temp);
-  the_string = alloc_string (3 + prefix_length +
-                            user_length +
-                            date_length);
+  the_string = alloc_string (3 + prefix_length
+                            + user_length
+                            date_length);
   temp = the_string;
   strcpy (temp, FROM_PREFIX);
   temp = &temp[prefix_length];
@@ -378,10 +385,8 @@ make_file_preface ()
   return result;
 }
 
-void
-write_line_list (the_list, the_stream)
-     register line_list the_list;
-     FILE *the_stream;
+static void
+write_line_list (register line_list the_list, FILE *the_stream)
 {
   for ( ;
       the_list != ((line_list) NULL) ;
@@ -393,23 +398,21 @@ write_line_list (the_list, the_stream)
   return;
 }
 \f
-int
-close_the_streams ()
+static int
+close_the_streams (void)
 {
   register stream_list rem;
   for (rem = the_streams;
        rem != ((stream_list) NULL);
        rem = rem->rest_streams)
-    no_problems = (no_problems &&
-                  ((*rem->action) (rem->handle) == 0));
+    if (no_problems && (*rem->action) (rem->handle) != 0)
+      error ("output error", NULL);
   the_streams = ((stream_list) NULL);
-  return (no_problems ? 0 : 1);
+  return (no_problems ? EXIT_SUCCESS : EXIT_FAILURE);
 }
 
-void
-add_a_stream (the_stream, closing_action)
-     FILE *the_stream;
-     int (*closing_action)();
+static void
+add_a_stream (FILE *the_stream, int (*closing_action) (FILE *))
 {
   stream_list old = the_streams;
   the_streams = new_stream ();
@@ -419,18 +422,18 @@ add_a_stream (the_stream, closing_action)
   return;
 }
 
-int
-my_fclose (the_file)
-     FILE *the_file;
+static int
+my_fclose (FILE *the_file)
 {
   putc ('\n', the_file);
   fflush (the_file);
+  if (ferror (the_file))
+    return EOF;
   return fclose (the_file);
 }
 
-boolean
-open_a_file (name)
-     char *name;
+static boolean
+open_a_file (char *name)
 {
   FILE *the_stream = fopen (name, "a");
   if (the_stream != ((FILE *) NULL))
@@ -444,9 +447,8 @@ open_a_file (name)
   return false;
 }
 
-void
-put_string (s)
-     char *s;
+static void
+put_string (char *s)
 {
   register stream_list rem;
   for (rem = the_streams;
@@ -456,22 +458,21 @@ put_string (s)
   return;
 }
 
-void
-put_line (string)
-     char *string;
+static void
+put_line (const char *string)
 {
   register stream_list rem;
   for (rem = the_streams;
        rem != ((stream_list) NULL);
        rem = rem->rest_streams)
     {
-      char *s = string;
+      const char *s = string;
       int column = 0;
 
       /* Divide STRING into lines.  */
       while (*s != 0)
        {
-         char *breakpos;
+         const char *breakpos;
 
          /* Find the last char that fits.  */
          for (breakpos = s; *breakpos && column < 78; ++breakpos)
@@ -517,10 +518,8 @@ put_line (string)
    the header name), and THE_LIST holds the continuation lines if any.
    Call open_a_file for each file.  */
 
-void
-setup_files (the_list, field)
-     register line_list the_list;
-     register char *field;
+static void
+setup_files (register line_list the_list, register char *field)
 {
   register char *start;
   register char c;
@@ -555,9 +554,8 @@ setup_files (the_list, field)
 /* Compute the total size of all recipient names stored in THE_HEADER.
    The result says how big to make the buffer to pass to parse_header.  */
 
-int
-args_size (the_header)
-     header the_header;
+static int
+args_size (header the_header)
 {
   register header old = the_header;
   register line_list rem;
@@ -587,9 +585,8 @@ args_size (the_header)
 
    Also, if the header has any FCC fields, call setup_files for each one.  */
 
-parse_header (the_header, where)
-     header the_header;
-     register char *where;
+static void
+parse_header (header the_header, register char *where)
 {
   register header old = the_header;
   do
@@ -613,15 +610,15 @@ parse_header (the_header, where)
   *where = '\0';
   return;
 }
-\f    
+\f
 /* Read lines from the input until we get a blank line.
    Create a list of `header' objects, one for each header field,
    each of which points to a list of `line_list' objects,
    one for each line in that field.
    Continuation lines are grouped in the headers they continue.  */
-   
-header
-read_header ()
+
+static header
+read_header (void)
 {
   register header the_header = ((header) NULL);
   register line_list *next_line = ((line_list *) NULL);
@@ -659,7 +656,7 @@ read_header ()
       if (next_line == ((line_list *) NULL))
        {
          /* Not a valid header */
-         exit (1);
+         exit (EXIT_FAILURE);
        }
       *next_line = new_list ();
       (*next_line)->string = alloc_string (length);
@@ -669,12 +666,13 @@ read_header ()
 
     } while (true);
 
+  if (! the_header)
+    fatal ("input message has no header");
   return the_header->next;
 }
 \f
-void
-write_header (the_header)
-     header the_header;
+static void
+write_header (header the_header)
 {
   register header old = the_header;
   do
@@ -690,21 +688,17 @@ write_header (the_header)
   return;
 }
 \f
-void
-main (argc, argv)
-     int argc;
-     char **argv;
+int
+main (int argc, char **argv)
 {
   char *command_line;
   header the_header;
   long name_length;
-  char *mail_program_name;
+  const char *mail_program_name;
   char buf[BUFLEN + 1];
   register int size;
   FILE *the_pipe;
 
-  extern char *getenv ();
-
   mail_program_name = getenv ("FAKEMAILER");
   if (!(mail_program_name && *mail_program_name))
     mail_program_name = MAIL_PROGRAM_NAME;
@@ -719,7 +713,7 @@ main (argc, argv)
   command_line = alloc_string (name_length + args_size (the_header));
   strcpy (command_line, mail_program_name);
   parse_header (the_header, &command_line[name_length]);
-  
+
   the_pipe = popen (command_line, "w");
   if (the_pipe == ((FILE *) NULL))
     fatal ("cannot open pipe to real mailer");
@@ -737,8 +731,14 @@ main (argc, argv)
       put_string (buf);
     }
 
+  if (no_problems && (ferror (stdin) || fclose (stdin) != 0))
+    error ("input error", NULL);
+
   exit (close_the_streams ());
 }
 
 #endif /* not MSDOS */
 #endif /* not BSD 4.2 (or newer) */
+
+
+/* fakemail.c ends here */