]> Pileus Git - ~andy/fetchmail/blob - env.c
don't complain about READ-ONLY IMAP folders in --fetchall --keep mode.
[~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)
136 {
137     char tmpbuf[HOSTLEN+1];
138     char *result;
139
140     if (gethostname(tmpbuf, sizeof(tmpbuf)))
141     {
142         fprintf(stderr, GT_("%s: can't determine your host!"),
143                 program_name);
144         exit(PS_DNS);
145     }
146
147     /* if we got a . in the hostname assume it is a FQDN */
148     if (strchr(tmpbuf, '.') == NULL)
149     {
150         /* if we got a basename (as we do in Linux) make a FQDN of it */
151         struct addrinfo hints, *res;
152         int e;
153
154         memset(&hints, 0, sizeof hints);
155         hints.ai_family = AF_UNSPEC;
156         hints.ai_socktype = SOCK_STREAM;
157         hints.ai_flags=AI_CANONNAME;
158
159         e = getaddrinfo(tmpbuf, NULL, &hints, &res);
160         if (e) {
161             /* exit with error message */
162             fprintf(stderr,
163                     GT_("gethostbyname failed for %s\n"), tmpbuf);
164             fprintf(stderr, "%s", gai_strerror(e));
165             fprintf(stderr, GT_("Cannot find my own host in hosts database to qualify it!\n"));
166             if (required)
167                 exit(PS_DNS);
168             else {
169                 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"));
170                 return xstrdup(tmpbuf);
171             }
172         }
173
174         result = xstrdup(res->ai_canonname);
175         freeaddrinfo(res);
176     }
177     else
178         result = xstrdup(tmpbuf);
179
180     return result;
181 }
182
183 static char *tzoffset(time_t *now)
184 /* calculate timezone offset */
185 {
186     static char offset_string[6];
187     struct tm gmt, *lt;
188     int off;
189     char sign = '+';
190
191     gmt = *gmtime(now);
192     lt = localtime(now);
193     off = (lt->tm_hour - gmt.tm_hour) * 60 + lt->tm_min - gmt.tm_min;
194     if (lt->tm_year < gmt.tm_year)
195         off -= 24 * 60;
196     else if (lt->tm_year > gmt.tm_year)
197         off += 24 * 60;
198     else if (lt->tm_yday < gmt.tm_yday)
199         off -= 24 * 60;
200     else if (lt->tm_yday > gmt.tm_yday)
201         off += 24 * 60;
202     if (off < 0) {
203         sign = '-';
204         off = -off;
205     }
206     if (off >= 24 * 60)                 /* should be impossible */
207         off = 23 * 60 + 59;             /* if not, insert silly value */
208     snprintf(offset_string, sizeof(offset_string),
209             "%c%02d%02d", sign, off / 60, off % 60);
210     return (offset_string);
211 }
212
213 char *rfc822timestamp(void)
214 /* return a timestamp in RFC822 form */
215 {
216     time_t      now;
217     static char buf[50];
218
219     time(&now);
220 #ifdef HAVE_STRFTIME
221     /*
222      * Conform to RFC822.  We generate a 4-digit year here, avoiding
223      * Y2K hassles.  Max length of this timestamp in an English locale
224      * should be 29 chars.  The only things that should vary by locale
225      * are the day and month abbreviations.  The set_locale calls prevent
226      * weird multibyte i18n characters (such as kanji) from showing up
227      * in your Received headers.
228      */
229 #if defined(HAVE_SETLOCALE) && defined(ENABLE_NLS)
230     setlocale (LC_TIME, "C");
231 #endif
232     strftime(buf, sizeof(buf)-1, 
233              "%a, %d %b %Y %H:%M:%S XXXXX (%Z)", localtime(&now));
234 #if defined(HAVE_SETLOCALE) && defined(ENABLE_NLS)
235     setlocale (LC_TIME, "");
236 #endif
237     strncpy(strstr(buf, "XXXXX"), tzoffset(&now), 5);
238 #else
239     /*
240      * This is really just a portability fallback, as the
241      * date format ctime(3) emits is not RFC822
242      * conformant.
243      */
244     strlcpy(buf, ctime(&now), sizeof(buf));
245     buf[strlen(buf)-1] = '\0';  /* remove trailing \n */
246 #endif /* HAVE_STRFTIME */
247
248     return(buf);
249 }
250
251 const char *showproto(int proto)
252 /* protocol index to protocol name mapping */
253 {
254     switch (proto)
255     {
256     case P_AUTO: return("auto");
257 #ifdef POP2_ENABLE
258     case P_POP2: return("POP2");
259 #endif /* POP2_ENABLE */
260 #ifdef POP3_ENABLE
261     case P_POP3: return("POP3");
262     case P_APOP: return("APOP");
263     case P_RPOP: return("RPOP");
264 #endif /* POP3_ENABLE */
265 #ifdef IMAP_ENABLE
266     case P_IMAP: return("IMAP");
267 #endif /* IMAP_ENABLE */
268 #ifdef ETRN_ENABLE
269     case P_ETRN: return("ETRN");
270 #endif /* ETRN_ENABLE */
271 #ifdef ODMR_ENABLE
272     case P_ODMR: return("ODMR");
273 #endif /* ODMR_ENABLE */
274     default: return("unknown?!?");
275     }
276 }
277
278 char *visbuf(const char *buf)
279 /* visibilize a given string */
280 {
281     static char *vbuf;
282     static size_t vbufs;
283     char *tp;
284     size_t needed;
285
286     needed = strlen(buf) * 5 + 1; /* worst case: HEX, plus NUL byte */
287
288     if (needed > vbufs) {
289         vbufs = needed;
290         vbuf = xrealloc(vbuf, vbufs);
291     }
292
293     tp = vbuf;
294
295     while (*buf)
296     {
297              if (*buf == '"')  { *tp++ = '\\'; *tp++ = '"'; buf++; }
298         else if (*buf == '\\') { *tp++ = '\\'; *tp++ = '\\'; buf++; }
299         else if (isprint((unsigned char)*buf) || *buf == ' ') *tp++ = *buf++;
300         else if (*buf == '\a') { *tp++ = '\\'; *tp++ = 'a'; buf++; }
301         else if (*buf == '\b') { *tp++ = '\\'; *tp++ = 'b'; buf++; }
302         else if (*buf == '\f') { *tp++ = '\\'; *tp++ = 'f'; buf++; }
303         else if (*buf == '\n') { *tp++ = '\\'; *tp++ = 'n'; buf++; }
304         else if (*buf == '\r') { *tp++ = '\\'; *tp++ = 'r'; buf++; }
305         else if (*buf == '\t') { *tp++ = '\\'; *tp++ = 't'; buf++; }
306         else if (*buf == '\v') { *tp++ = '\\'; *tp++ = 'v'; buf++; }
307         else
308         {
309             const char hex[] = "0123456789abcdef";
310             *tp++ = '\\'; *tp++ = '0'; *tp++ = 'x';
311             *tp++ = hex[*buf >> 4];
312             *tp++ = hex[*buf & 0xf];
313             buf++;
314         }
315     }
316     *tp++ = '\0';
317     return(vbuf);
318 }
319 /* env.c ends here */