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