]> Pileus Git - ~andy/fetchmail/blob - env.c
Fix lots of warnings, most around string literals...
[~andy/fetchmail] / env.c
1 /*
2  * env.c -- small service routines
3  *
4  * Copyright 1998 by Eric S. Raymond
5  * For license terms, see the file COPYING in this directory.
6  */
7
8 #include "config.h"
9 #include <stdio.h>
10 #include <ctype.h>
11 #if defined(STDC_HEADERS)
12 #include <stdlib.h>
13 #endif
14 #if defined(HAVE_UNISTD_H)
15 #include <unistd.h>
16 #endif
17 #include <pwd.h>
18 #include <string.h>
19 #ifdef HAVE_NET_SOCKET_H
20 #include <net/socket.h>
21 #endif
22 #include <netdb.h>
23 #include <sys/types.h>
24 #include <sys/socket.h>
25 #include "fetchmail.h"
26 #include "getaddrinfo.h"
27
28 #include "i18n.h"
29 #if defined(HAVE_SETLOCALE) && defined(ENABLE_NLS) && defined(HAVE_STRFTIME)
30 #include <locale.h>
31 #endif
32
33 #ifndef HAVE_DECL_GETENV
34 extern char *getenv(const char *);      /* needed on sysV68 R3V7.1. */
35 #endif
36
37 void envquery(int argc, char **argv)
38 /* set up basic stuff from the environment (including the rc file name) */
39 {
40     struct passwd by_name, by_uid, *pwp;
41
42     (void)argc;
43
44     (void)argc;
45     if (!(user = getenv("FETCHMAILUSER")))
46     {
47         if (!(user = getenv("LOGNAME")))
48         {
49             user = getenv("USER");
50         }
51     }
52
53     if ((program_name = strrchr(argv[0], '/')) != NULL)
54         ++program_name;
55     else
56         program_name = argv[0];
57
58     if (getenv("QMAILINJECT") && strcmp(getenv("QMAILINJECT"), ""))
59     {
60         fprintf(stderr,
61                 GT_("%s: The QMAILINJECT environment variable is set.\n"
62                     "This is dangerous as it can make qmail-inject or qmail's sendmail wrapper\n"  
63                     "tamper with your From: or Message-ID: headers.\n"
64                     "Try \"env QMAILINJECT= %s YOUR ARGUMENTS HERE\"\n"
65                     "%s: Abort.\n"), 
66                 program_name, program_name, program_name);
67         exit(PS_UNDEFINED);
68     }
69
70     if (getenv("NULLMAILER_FLAGS") && strcmp(getenv("NULLMAILER_FLAGS"), ""))
71     {
72         fprintf(stderr,
73                 GT_("%s: The NULLMAILER_FLAGS environment variable is set.\n"
74                     "This is dangerous as it can make nullmailer-inject or nullmailer's\n" 
75                     "sendmail wrapper tamper with your From:, Message-ID: or Return-Path: headers.\n"
76                     "Try \"env NULLMAILER_FLAGS= %s YOUR ARGUMENTS HERE\"\n"
77                     "%s: Abort.\n"), 
78                 program_name, program_name, program_name);
79         exit(PS_UNDEFINED);
80     }
81
82     if (!(pwp = getpwuid(getuid())))
83     {
84         fprintf(stderr,
85                 GT_("%s: You don't exist.  Go away.\n"),
86                 program_name);
87         exit(PS_UNDEFINED);
88     }
89     else
90     {
91         memcpy(&by_uid, pwp, sizeof(struct passwd));
92         if (!user || !(pwp = getpwnam(user)))
93             pwp = &by_uid;
94         else
95         {
96             /*
97              * This logic is needed to handle gracefully the possibility
98              * that multiple names might be mapped to one UID.
99              */
100             memcpy(&by_name, pwp, sizeof(struct passwd));
101
102             if (by_name.pw_uid == by_uid.pw_uid)
103                 pwp = &by_name;
104             else
105                 pwp = &by_uid;
106         }
107         user = xstrdup(pwp->pw_name);
108     }
109
110     /* compute user's home directory */
111     home = getenv("HOME_ETC");
112     if (!home && !(home = getenv("HOME")))
113         home = xstrdup(pwp->pw_dir);
114
115     /* compute fetchmail's home directory */
116     if (!(fmhome = getenv("FETCHMAILHOME")))
117         fmhome = home;
118
119 #define RCFILE_NAME     "fetchmailrc"
120     /*
121      * The (fmhome==home) leaves an extra character for a . at the
122      * beginning of the rc file's name, iff fetchmail is using $HOME
123      * for its files. We don't want to do that if fetchmail has its
124      * own home ($FETCHMAILHOME), however.
125      */
126     rcfile = (char *)xmalloc(strlen(fmhome)+sizeof(RCFILE_NAME)+(fmhome==home)+2);
127     /* avoid //.fetchmailrc */
128     if (strcmp(fmhome, "/") != 0)
129         strcpy(rcfile, fmhome);
130     else
131         *rcfile = '\0';
132
133     if (rcfile[strlen(rcfile) - 1] != '/')
134         strcat(rcfile, "/");
135     if (fmhome==home)
136         strcat(rcfile, ".");
137     strcat(rcfile, RCFILE_NAME);
138 }
139
140 char *host_fqdn(int required)
141 {
142     char tmpbuf[HOSTLEN+1];
143     char *result;
144
145     if (gethostname(tmpbuf, sizeof(tmpbuf)))
146     {
147         fprintf(stderr, GT_("%s: can't determine your host!"),
148                 program_name);
149         exit(PS_DNS);
150     }
151
152     /* if we got no . in the hostname, try to canonicalize it,
153      * else assume it is a FQDN */
154     if (strchr(tmpbuf, '.') == NULL)
155     {
156         /* if we got a basename without dots, as we often do in Linux,
157          * look up canonical name (make a FQDN of it) */
158         struct addrinfo hints, *res;
159         int e;
160
161         memset(&hints, 0, sizeof hints);
162         hints.ai_family = AF_UNSPEC;
163         hints.ai_socktype = SOCK_STREAM;
164         hints.ai_flags = AI_CANONNAME;
165
166         e = fm_getaddrinfo(tmpbuf, NULL, &hints, &res);
167         if (e) {
168             /* exit with error message */
169             fprintf(stderr,
170                     GT_("gethostbyname failed for %s\n"), tmpbuf);
171             fprintf(stderr, "%s", gai_strerror(e));
172             fprintf(stderr, GT_("Cannot find my own host in hosts database to qualify it!\n"));
173             if (required)
174                 exit(PS_DNS);
175             else {
176                 fprintf(stderr, GT_("Trying to continue with unqualified hostname.\nDO NOT report broken Received: headers, HELO/EHLO lines or similar problems!\nDO repair your /etc/hosts, DNS, NIS or LDAP instead.\n"));
177                 return xstrdup(tmpbuf);
178             }
179         }
180
181         result = xstrdup(res->ai_canonname ? res->ai_canonname : tmpbuf);
182         fm_freeaddrinfo(res);
183     }
184     else
185         result = xstrdup(tmpbuf);
186
187     return result;
188 }
189
190 static char *tzoffset(time_t *now)
191 /* calculate timezone offset */
192 {
193     static char offset_string[6];
194     struct tm gmt, *lt;
195     int off;
196     char sign = '+';
197
198     gmt = *gmtime(now);
199     lt = localtime(now);
200     off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
201     if (lt->tm_year < gmt.tm_year)
202         off -= 24 * 60;
203     else if (lt->tm_year > gmt.tm_year)
204         off += 24 * 60;
205     else if (lt->tm_yday < gmt.tm_yday)
206         off -= 24 * 60;
207     else if (lt->tm_yday > gmt.tm_yday)
208         off += 24 * 60;
209     if (off < 0) {
210         sign = '-';
211         off = -off;
212     }
213     if (off >= 24 * 60)                 /* should be impossible */
214         off = 23 * 60 + 59;             /* if not, insert silly value */
215     snprintf(offset_string, sizeof(offset_string),
216             "%c%02d%02d", sign, off / 60, off % 60);
217     return (offset_string);
218 }
219
220 char *rfc822timestamp(void)
221 /* return a timestamp in RFC822 form */
222 {
223     time_t      now;
224     static char buf[50];
225
226     time(&now);
227 #ifdef HAVE_STRFTIME
228     /*
229      * Conform to RFC822.  We generate a 4-digit year here, avoiding
230      * Y2K hassles.  Max length of this timestamp in an English locale
231      * should be 29 chars.  The only things that should vary by locale
232      * are the day and month abbreviations.  The set_locale calls prevent
233      * weird multibyte i18n characters (such as kanji) from showing up
234      * in your Received headers.
235      */
236 #if defined(HAVE_SETLOCALE) && defined(ENABLE_NLS)
237     setlocale (LC_TIME, "C");
238 #endif
239     strftime(buf, sizeof(buf)-1, 
240              "%a, %d %b %Y %H:%M:%S XXXXX (%Z)", localtime(&now));
241 #if defined(HAVE_SETLOCALE) && defined(ENABLE_NLS)
242     setlocale (LC_TIME, "");
243 #endif
244     strncpy(strstr(buf, "XXXXX"), tzoffset(&now), 5);
245 #else
246     /*
247      * This is really just a portability fallback, as the
248      * date format ctime(3) emits is not RFC822
249      * conformant.
250      */
251     strlcpy(buf, ctime(&now), sizeof(buf));
252     buf[strlen(buf)-1] = '\0';  /* remove trailing \n */
253 #endif /* HAVE_STRFTIME */
254
255     return(buf);
256 }
257
258 const char *showproto(int proto)
259 /* protocol index to protocol name mapping */
260 {
261     switch (proto)
262     {
263     case P_AUTO: return("auto");
264 #ifdef POP2_ENABLE
265     case P_POP2: return("POP2");
266 #endif /* POP2_ENABLE */
267 #ifdef POP3_ENABLE
268     case P_POP3: return("POP3");
269     case P_APOP: return("APOP");
270     case P_RPOP: return("RPOP");
271 #endif /* POP3_ENABLE */
272 #ifdef IMAP_ENABLE
273     case P_IMAP: return("IMAP");
274 #endif /* IMAP_ENABLE */
275 #ifdef ETRN_ENABLE
276     case P_ETRN: return("ETRN");
277 #endif /* ETRN_ENABLE */
278 #ifdef ODMR_ENABLE
279     case P_ODMR: return("ODMR");
280 #endif /* ODMR_ENABLE */
281     default: return("unknown?!?");
282     }
283 }
284
285 char *visbuf(const char *buf)
286 /* visibilize a given string */
287 {
288     static char *vbuf;
289     static size_t vbufs;
290     char *tp;
291     size_t needed;
292
293     needed = strlen(buf) * 5 + 1; /* worst case: HEX, plus NUL byte */
294
295     if (!vbuf || needed > vbufs) {
296         vbufs = needed;
297         vbuf = (char *)xrealloc(vbuf, vbufs);
298     }
299
300     tp = vbuf;
301
302     while (*buf)
303     {
304              if (*buf == '"')  { *tp++ = '\\'; *tp++ = '"'; buf++; }
305         else if (*buf == '\\') { *tp++ = '\\'; *tp++ = '\\'; buf++; }
306         else if (isprint((unsigned char)*buf) || *buf == ' ') *tp++ = *buf++;
307         else if (*buf == '\a') { *tp++ = '\\'; *tp++ = 'a'; buf++; }
308         else if (*buf == '\b') { *tp++ = '\\'; *tp++ = 'b'; buf++; }
309         else if (*buf == '\f') { *tp++ = '\\'; *tp++ = 'f'; buf++; }
310         else if (*buf == '\n') { *tp++ = '\\'; *tp++ = 'n'; buf++; }
311         else if (*buf == '\r') { *tp++ = '\\'; *tp++ = 'r'; buf++; }
312         else if (*buf == '\t') { *tp++ = '\\'; *tp++ = 't'; buf++; }
313         else if (*buf == '\v') { *tp++ = '\\'; *tp++ = 'v'; buf++; }
314         else
315         {
316             const char hex[] = "0123456789abcdef";
317             *tp++ = '\\'; *tp++ = '0'; *tp++ = 'x';
318             *tp++ = hex[*buf >> 4];
319             *tp++ = hex[*buf & 0xf];
320             buf++;
321         }
322     }
323     *tp = '\0';
324     return(vbuf);
325 }
326 /* env.c ends here */