/* $OpenBSD: forward.c,v 1.32 2012/11/12 14:58:53 eric Exp $ */ /* * Copyright (c) 2008 Gilles Chehade * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include #include #include #include #include #include #include #include #include #include #include #include #include "smtpd.h" #include "log.h" int forwards_get(int fd, struct expand *expand) { FILE *fp; char *buf, *lbuf, *p, *cp; size_t len; size_t nbaliases = 0; int quoted; struct expandnode xn; fp = fdopen(fd, "r"); if (fp == NULL) return 0; lbuf = NULL; while ((buf = fgetln(fp, &len))) { if (buf[len - 1] == '\n') buf[len - 1] = '\0'; else { /* EOF without EOL, copy and add the NUL */ lbuf = xmalloc(len + 1, "forwards_get"); memcpy(lbuf, buf, len); lbuf[len] = '\0'; buf = lbuf; } /* ignore empty lines and comments */ if (buf[0] == '#' || buf[0] == '\0') continue; quoted = 0; cp = buf; do { /* skip whitespace */ while (isspace((int)*cp)) cp++; /* parse line */ for (p = cp; *p != '\0'; p++) { if (*p == ',' && !quoted) { *p++ = '\0'; break; } else if (*p == '"') quoted = !quoted; } buf = cp; cp = p; if (! alias_parse(&xn, buf)) { log_debug("debug: bad entry in ~/.forward"); continue; } if (xn.type == EXPAND_INCLUDE) { log_debug( "includes are forbidden in ~/.forward"); continue; } expand_insert(expand, &xn); nbaliases++; } while (*cp != '\0'); } free(lbuf); fclose(fp); return (nbaliases); }