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