Home | History | Annotate | Line # | Download | only in mail
fio.c revision 1.28
      1  1.26  christos /*	$NetBSD: fio.c,v 1.28 2006/11/28 18:45:32 christos Exp $	*/
      2   1.5  christos 
      3   1.1       cgd /*
      4   1.4   deraadt  * Copyright (c) 1980, 1993
      5   1.4   deraadt  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15  1.22       agc  * 3. Neither the name of the University nor the names of its contributors
     16   1.1       cgd  *    may be used to endorse or promote products derived from this software
     17   1.1       cgd  *    without specific prior written permission.
     18   1.1       cgd  *
     19   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     20   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     21   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     22   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     23   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     24   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     25   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     26   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     27   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     28   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     29   1.1       cgd  * SUCH DAMAGE.
     30   1.1       cgd  */
     31   1.1       cgd 
     32  1.10     lukem #include <sys/cdefs.h>
     33   1.1       cgd #ifndef lint
     34   1.5  christos #if 0
     35   1.6       tls static char sccsid[] = "@(#)fio.c	8.2 (Berkeley) 4/20/95";
     36   1.5  christos #else
     37  1.26  christos __RCSID("$NetBSD: fio.c,v 1.28 2006/11/28 18:45:32 christos Exp $");
     38   1.5  christos #endif
     39   1.1       cgd #endif /* not lint */
     40   1.1       cgd 
     41   1.1       cgd #include "rcv.h"
     42   1.4   deraadt #include "extern.h"
     43  1.28  christos #include "thread.h"
     44   1.1       cgd 
     45   1.1       cgd /*
     46   1.1       cgd  * Mail -- a mail program
     47   1.1       cgd  *
     48   1.1       cgd  * File I/O.
     49   1.1       cgd  */
     50   1.1       cgd 
     51  1.28  christos #ifndef THREAD_SUPPORT
     52  1.28  christos /************************************************************************/
     53  1.28  christos /*
     54  1.28  christos  * If we have threading support, these routines live in thread.c.
     55  1.28  christos  */
     56  1.28  christos static struct message *message;		/* message structure array */
     57  1.28  christos static int msgCount;			/* Count of messages read in */
     58  1.28  christos 
     59  1.28  christos PUBLIC struct message *
     60  1.28  christos next_message(struct message *mp)
     61  1.28  christos {
     62  1.28  christos 	if (mp + 1 < message || mp + 1 >= message + msgCount)
     63  1.28  christos 		return NULL;
     64  1.28  christos 
     65  1.28  christos 	return mp + 1;
     66  1.28  christos }
     67  1.28  christos 
     68  1.28  christos PUBLIC struct message *
     69  1.28  christos prev_message(struct message *mp)
     70  1.28  christos {
     71  1.28  christos 	if (mp - 1 < message || mp - 1 >= message + msgCount)
     72  1.28  christos 		return NULL;
     73  1.28  christos 
     74  1.28  christos 	return mp - 1;
     75  1.28  christos }
     76  1.28  christos 
     77  1.28  christos PUBLIC struct message *
     78  1.28  christos get_message(int msgnum)
     79  1.28  christos {
     80  1.28  christos 	if (msgnum < 1 || msgnum > msgCount)
     81  1.28  christos 		return NULL;
     82  1.28  christos 
     83  1.28  christos 	return message + msgnum - 1;
     84  1.28  christos }
     85  1.28  christos 
     86  1.28  christos PUBLIC int
     87  1.28  christos get_msgnum(struct message *mp)
     88  1.28  christos {
     89  1.28  christos 	if (mp < message || mp >= message + msgCount)
     90  1.28  christos 		return 0;
     91  1.28  christos 
     92  1.28  christos 	return mp - message + 1;
     93  1.28  christos }
     94  1.28  christos 
     95  1.28  christos PUBLIC int
     96  1.28  christos get_msgCount(void)
     97  1.28  christos {
     98  1.28  christos 	return msgCount;
     99  1.28  christos }
    100  1.28  christos #endif /* THREAD_SUPPORT */
    101  1.28  christos /************************************************************************/
    102  1.28  christos 
    103  1.28  christos /*
    104  1.28  christos  * Initialize a message structure.
    105  1.28  christos  */
    106  1.28  christos static void
    107  1.28  christos message_init(struct message *mp, off_t offset, short flags)
    108  1.28  christos {
    109  1.28  christos 	/* use memset so new fields are always zeroed */
    110  1.28  christos 	(void)memset(mp, 0, sizeof(*mp));
    111  1.28  christos 	mp->m_flag = flags;
    112  1.28  christos 	mp->m_block = blockof(offset);
    113  1.28  christos 	mp->m_offset = offsetof(offset);
    114  1.28  christos }
    115  1.28  christos 
    116  1.28  christos /*
    117  1.28  christos  * Take the data out of the passed ghost file and toss it into
    118  1.28  christos  * a dynamically allocated message structure.
    119  1.28  christos  */
    120  1.28  christos static void
    121  1.28  christos makemessage(FILE *f, int omsgCount, int nmsgCount)
    122  1.28  christos {
    123  1.28  christos 	size_t size;
    124  1.28  christos 	struct message *omessage;	/* old message structure array */
    125  1.28  christos 	struct message *nmessage;
    126  1.28  christos 
    127  1.28  christos 	omessage = get_abs_message(1);
    128  1.28  christos 
    129  1.28  christos 	size = (nmsgCount + 1) * sizeof(*nmessage);
    130  1.28  christos 	nmessage = realloc(omessage, size);
    131  1.28  christos 	if (nmessage == NULL)
    132  1.28  christos 		err(1, "Insufficient memory for %d messages", nmsgCount);
    133  1.28  christos 	if (omsgCount == 0 || omessage == NULL)
    134  1.28  christos 		dot = nmessage;
    135  1.28  christos 	else
    136  1.28  christos 		dot = nmessage + (dot - omessage);
    137  1.28  christos 
    138  1.28  christos 	thread_fix_old_links(nmessage, omessage, omsgCount);
    139  1.28  christos 
    140  1.28  christos #ifndef THREAD_SUPPORT
    141  1.28  christos 	message = nmessage;
    142  1.28  christos #endif
    143  1.28  christos 	size -= (omsgCount + 1) * sizeof(*nmessage);
    144  1.28  christos 	(void)fflush(f);
    145  1.28  christos 	(void)lseek(fileno(f), (off_t)sizeof(*nmessage), SEEK_SET);
    146  1.28  christos 	if (read(fileno(f), &nmessage[omsgCount], size) != (ssize_t)size)
    147  1.28  christos 		errx(EXIT_FAILURE, "Message temporary file corrupted");
    148  1.28  christos 
    149  1.28  christos 	message_init(&nmessage[nmsgCount], (off_t)0, 0); /* append a dummy */
    150  1.28  christos 
    151  1.28  christos 	thread_fix_new_links(nmessage, omsgCount, nmsgCount);
    152  1.28  christos 
    153  1.28  christos 	(void)Fclose(f);
    154  1.28  christos }
    155  1.28  christos 
    156  1.28  christos /*
    157  1.28  christos  * Append the passed message descriptor onto the temp file.
    158  1.28  christos  * If the write fails, return 1, else 0
    159  1.28  christos  */
    160  1.28  christos static int
    161  1.28  christos append(struct message *mp, FILE *f)
    162  1.28  christos {
    163  1.28  christos 	return fwrite(mp, sizeof *mp, 1, f) != 1;
    164  1.28  christos }
    165  1.28  christos 
    166   1.1       cgd /*
    167   1.1       cgd  * Set up the input pointers while copying the mail file into /tmp.
    168   1.1       cgd  */
    169  1.28  christos PUBLIC void
    170  1.15       wiz setptr(FILE *ibuf, off_t offset)
    171   1.1       cgd {
    172  1.25  christos 	int c;
    173  1.25  christos 	size_t len;
    174  1.24  christos 	char *cp;
    175  1.24  christos 	const char *cp2;
    176   1.1       cgd 	struct message this;
    177   1.1       cgd 	FILE *mestmp;
    178   1.1       cgd 	int maybe, inhead;
    179   1.1       cgd 	char linebuf[LINESIZE];
    180   1.6       tls 	int omsgCount;
    181  1.28  christos #ifdef THREAD_SUPPORT
    182  1.28  christos 	int nmsgCount;
    183  1.28  christos #else
    184  1.28  christos # define nmsgCount	msgCount
    185  1.28  christos #endif
    186   1.1       cgd 
    187   1.1       cgd 	/* Get temporary file. */
    188   1.7     mikel 	(void)snprintf(linebuf, LINESIZE, "%s/mail.XXXXXX", tmpdir);
    189   1.1       cgd 	if ((c = mkstemp(linebuf)) == -1 ||
    190   1.1       cgd 	    (mestmp = Fdopen(c, "r+")) == NULL) {
    191   1.1       cgd 		(void)fprintf(stderr, "mail: can't open %s\n", linebuf);
    192   1.1       cgd 		exit(1);
    193   1.1       cgd 	}
    194   1.1       cgd 	(void)unlink(linebuf);
    195   1.1       cgd 
    196  1.28  christos 	nmsgCount = get_abs_msgCount();
    197   1.6       tls 	if (offset == 0) {
    198  1.28  christos 		nmsgCount = 0;
    199   1.6       tls 	} else {
    200   1.6       tls 		/* Seek into the file to get to the new messages */
    201  1.25  christos 		(void)fseeko(ibuf, offset, 0);
    202   1.6       tls 		/*
    203   1.6       tls 		 * We need to make "offset" a pointer to the end of
    204   1.6       tls 		 * the temp file that has the copy of the mail file.
    205   1.6       tls 		 * If any messages have been edited, this will be
    206   1.6       tls 		 * different from the offset into the mail file.
    207   1.6       tls 		 */
    208  1.28  christos 		(void)fseek(otf, 0L, SEEK_END);
    209   1.6       tls 		offset = ftell(otf);
    210   1.6       tls 	}
    211  1.28  christos 	omsgCount = nmsgCount;
    212   1.1       cgd 	maybe = 1;
    213   1.1       cgd 	inhead = 0;
    214  1.28  christos 	message_init(&this, (off_t)0, MUSED|MNEW);
    215  1.28  christos 
    216   1.1       cgd 	for (;;) {
    217   1.1       cgd 		if (fgets(linebuf, LINESIZE, ibuf) == NULL) {
    218   1.1       cgd 			if (append(&this, mestmp)) {
    219  1.20       wiz 				warn("temporary file");
    220   1.1       cgd 				exit(1);
    221   1.1       cgd 			}
    222  1.28  christos 			makemessage(mestmp, omsgCount, nmsgCount);
    223   1.1       cgd 			return;
    224   1.1       cgd 		}
    225  1.16       wiz 		len = strlen(linebuf);
    226   1.9      matt 		/*
    227   1.9      matt 		 * Transforms lines ending in <CR><LF> to just <LF>.
    228   1.9      matt 		 * This allows mail to be able to read Eudora mailboxes
    229   1.9      matt 		 * that reside on a DOS partition.
    230   1.9      matt 		 */
    231  1.25  christos 		if (len >= 2 && linebuf[len-1] == '\n' &&
    232  1.25  christos 		    linebuf[len-2] == '\r') {
    233  1.16       wiz 			linebuf[len-2] = '\n';
    234  1.16       wiz 			len--;
    235   1.9      matt 		}
    236  1.19       wiz 		(void)fwrite(linebuf, sizeof *linebuf, len, otf);
    237   1.1       cgd 		if (ferror(otf)) {
    238  1.20       wiz 			warn("/tmp");
    239   1.1       cgd 			exit(1);
    240   1.1       cgd 		}
    241  1.16       wiz 		if(len)
    242  1.16       wiz 			linebuf[len - 1] = 0;
    243   1.1       cgd 		if (maybe && linebuf[0] == 'F' && ishead(linebuf)) {
    244  1.28  christos 			nmsgCount++;
    245   1.1       cgd 			if (append(&this, mestmp)) {
    246  1.20       wiz 				warn("temporary file");
    247   1.1       cgd 				exit(1);
    248   1.1       cgd 			}
    249  1.28  christos 			message_init(&this, offset, MUSED|MNEW);
    250   1.1       cgd 			inhead = 1;
    251   1.1       cgd 		} else if (linebuf[0] == 0) {
    252   1.1       cgd 			inhead = 0;
    253   1.1       cgd 		} else if (inhead) {
    254   1.1       cgd 			for (cp = linebuf, cp2 = "status";; cp++) {
    255   1.1       cgd 				if ((c = *cp2++) == 0) {
    256  1.12  christos 					while (isspace((unsigned char)*cp++))
    257  1.28  christos 						continue;
    258   1.1       cgd 					if (cp[-1] != ':')
    259   1.1       cgd 						break;
    260   1.5  christos 					while ((c = *cp++) != '\0')
    261   1.1       cgd 						if (c == 'R')
    262   1.1       cgd 							this.m_flag |= MREAD;
    263   1.1       cgd 						else if (c == 'O')
    264   1.1       cgd 							this.m_flag &= ~MNEW;
    265   1.1       cgd 					inhead = 0;
    266   1.1       cgd 					break;
    267   1.1       cgd 				}
    268   1.1       cgd 				if (*cp != c && *cp != toupper(c))
    269   1.1       cgd 					break;
    270   1.1       cgd 			}
    271   1.1       cgd 		}
    272  1.16       wiz 		offset += len;
    273  1.16       wiz 		this.m_size += len;
    274   1.1       cgd 		this.m_lines++;
    275  1.21      ross 		if (!inhead) {
    276  1.21      ross 			int lines_plus_wraps = 1;
    277  1.25  christos 			size_t linelen = strlen(linebuf);
    278  1.21      ross 
    279  1.28  christos 			if (screenwidth && (int)linelen > screenwidth) {
    280  1.21      ross 				lines_plus_wraps = linelen / screenwidth;
    281  1.21      ross 				if (linelen % screenwidth != 0)
    282  1.21      ross 					++lines_plus_wraps;
    283  1.21      ross 			}
    284  1.21      ross 			this.m_blines += lines_plus_wraps;
    285  1.21      ross 		}
    286   1.1       cgd 		maybe = linebuf[0] == 0;
    287   1.1       cgd 	}
    288   1.1       cgd }
    289   1.1       cgd 
    290   1.1       cgd /*
    291   1.1       cgd  * Drop the passed line onto the passed output buffer.
    292   1.1       cgd  * If a write error occurs, return -1, else the count of
    293   1.8      phil  * characters written, including the newline if requested.
    294   1.1       cgd  */
    295  1.28  christos PUBLIC int
    296  1.24  christos putline(FILE *obuf, const char *linebuf, int outlf)
    297   1.1       cgd {
    298  1.25  christos 	size_t c;
    299   1.1       cgd 
    300   1.1       cgd 	c = strlen(linebuf);
    301  1.19       wiz 	(void)fwrite(linebuf, sizeof *linebuf, c, obuf);
    302   1.8      phil 	if (outlf) {
    303  1.19       wiz 		(void)putc('\n', obuf);
    304   1.8      phil 		c++;
    305   1.8      phil 	}
    306   1.1       cgd 	if (ferror(obuf))
    307  1.28  christos 		return -1;
    308  1.28  christos 	return c;
    309   1.1       cgd }
    310   1.1       cgd 
    311   1.1       cgd /*
    312   1.1       cgd  * Read up a line from the specified input into the line
    313   1.1       cgd  * buffer.  Return the number of characters read.  Do not
    314   1.1       cgd  * include the newline at the end.
    315   1.1       cgd  */
    316  1.28  christos PUBLIC int
    317  1.26  christos mail_readline(FILE *ibuf, char *linebuf, int linesize)
    318   1.1       cgd {
    319  1.10     lukem 	int n;
    320   1.1       cgd 
    321   1.1       cgd 	clearerr(ibuf);
    322   1.1       cgd 	if (fgets(linebuf, linesize, ibuf) == NULL)
    323   1.1       cgd 		return -1;
    324   1.1       cgd 	n = strlen(linebuf);
    325   1.1       cgd 	if (n > 0 && linebuf[n - 1] == '\n')
    326   1.1       cgd 		linebuf[--n] = '\0';
    327   1.1       cgd 	return n;
    328   1.1       cgd }
    329   1.1       cgd 
    330   1.1       cgd /*
    331   1.1       cgd  * Return a file buffer all ready to read up the
    332   1.1       cgd  * passed message pointer.
    333   1.1       cgd  */
    334  1.28  christos PUBLIC FILE *
    335  1.23      ross setinput(const struct message *mp)
    336   1.1       cgd {
    337   1.1       cgd 
    338  1.25  christos 	(void)fflush(otf);
    339  1.28  christos 	if (fseek(itf, (long)positionof(mp->m_block, mp->m_offset), SEEK_SET) < 0)
    340  1.10     lukem 		err(1, "fseek");
    341  1.28  christos 	return itf;
    342   1.1       cgd }
    343   1.1       cgd 
    344   1.1       cgd /*
    345   1.1       cgd  * Delete a file, but only if the file is a plain file.
    346   1.1       cgd  */
    347  1.28  christos PUBLIC int
    348  1.15       wiz rm(char *name)
    349   1.1       cgd {
    350   1.1       cgd 	struct stat sb;
    351   1.1       cgd 
    352   1.1       cgd 	if (stat(name, &sb) < 0)
    353  1.28  christos 		return -1;
    354   1.1       cgd 	if (!S_ISREG(sb.st_mode)) {
    355   1.1       cgd 		errno = EISDIR;
    356  1.28  christos 		return -1;
    357   1.1       cgd 	}
    358  1.28  christos 	return unlink(name);
    359   1.1       cgd }
    360   1.1       cgd 
    361   1.1       cgd static int sigdepth;		/* depth of holdsigs() */
    362   1.5  christos static sigset_t nset, oset;
    363   1.1       cgd /*
    364   1.1       cgd  * Hold signals SIGHUP, SIGINT, and SIGQUIT.
    365   1.1       cgd  */
    366  1.28  christos PUBLIC void
    367  1.15       wiz holdsigs(void)
    368   1.1       cgd {
    369   1.1       cgd 
    370   1.5  christos 	if (sigdepth++ == 0) {
    371  1.25  christos 		(void)sigemptyset(&nset);
    372  1.25  christos 		(void)sigaddset(&nset, SIGHUP);
    373  1.25  christos 		(void)sigaddset(&nset, SIGINT);
    374  1.25  christos 		(void)sigaddset(&nset, SIGQUIT);
    375  1.25  christos 		(void)sigprocmask(SIG_BLOCK, &nset, &oset);
    376   1.5  christos 	}
    377   1.1       cgd }
    378   1.1       cgd 
    379   1.1       cgd /*
    380   1.1       cgd  * Release signals SIGHUP, SIGINT, and SIGQUIT.
    381   1.1       cgd  */
    382  1.28  christos PUBLIC void
    383  1.15       wiz relsesigs(void)
    384   1.1       cgd {
    385   1.1       cgd 
    386   1.1       cgd 	if (--sigdepth == 0)
    387  1.25  christos 		(void)sigprocmask(SIG_SETMASK, &oset, NULL);
    388   1.1       cgd }
    389   1.1       cgd 
    390   1.1       cgd /*
    391   1.1       cgd  * Determine the size of the file possessed by
    392   1.1       cgd  * the passed buffer.
    393   1.1       cgd  */
    394  1.28  christos PUBLIC off_t
    395  1.15       wiz fsize(FILE *iob)
    396   1.1       cgd {
    397   1.1       cgd 	struct stat sbuf;
    398   1.1       cgd 
    399   1.1       cgd 	if (fstat(fileno(iob), &sbuf) < 0)
    400   1.1       cgd 		return 0;
    401   1.1       cgd 	return sbuf.st_size;
    402   1.1       cgd }
    403   1.1       cgd 
    404   1.1       cgd /*
    405  1.28  christos  * Determine the current folder directory name.
    406  1.28  christos  */
    407  1.28  christos PUBLIC int
    408  1.28  christos getfold(char *name, size_t namesize)
    409  1.28  christos {
    410  1.28  christos 	char *folder;
    411  1.28  christos 
    412  1.28  christos 	if ((folder = value(ENAME_FOLDER)) == NULL)
    413  1.28  christos 		return -1;
    414  1.28  christos 	if (*folder == '/')
    415  1.28  christos 		(void)strlcpy(name, folder, namesize);
    416  1.28  christos 	else
    417  1.28  christos 		(void)snprintf(name, namesize, "%s/%s", homedir, folder);
    418  1.28  christos 	return 0;
    419  1.28  christos }
    420  1.28  christos 
    421  1.28  christos /*
    422   1.1       cgd  * Evaluate the string given as a new mailbox name.
    423   1.1       cgd  * Supported meta characters:
    424   1.1       cgd  *	%	for my system mail box
    425   1.1       cgd  *	%user	for user's system mail box
    426   1.1       cgd  *	#	for previous file
    427   1.1       cgd  *	&	invoker's mbox file
    428   1.1       cgd  *	+file	file in folder directory
    429   1.1       cgd  *	any shell meta character
    430   1.1       cgd  * Return the file name as a dynamic string.
    431   1.1       cgd  */
    432  1.28  christos PUBLIC const char *
    433  1.24  christos expand(const char *name)
    434   1.1       cgd {
    435   1.1       cgd 	char xname[PATHSIZE];
    436   1.1       cgd 	char cmdbuf[PATHSIZE];		/* also used for file names */
    437  1.10     lukem 	int pid, l;
    438  1.24  christos 	char *cp;
    439  1.24  christos 	const char *shellcmd;
    440   1.1       cgd 	int pivec[2];
    441   1.1       cgd 	struct stat sbuf;
    442   1.1       cgd 
    443   1.1       cgd 	/*
    444   1.1       cgd 	 * The order of evaluation is "%" and "#" expand into constants.
    445   1.1       cgd 	 * "&" can expand into "+".  "+" can expand into shell meta characters.
    446   1.1       cgd 	 * Shell meta characters expand into constants.
    447   1.1       cgd 	 * This way, we make no recursive expansion.
    448   1.1       cgd 	 */
    449   1.1       cgd 	switch (*name) {
    450   1.1       cgd 	case '%':
    451  1.28  christos 		findmail(name[1] ? name + 1 : myname, xname, sizeof(xname));
    452   1.1       cgd 		return savestr(xname);
    453   1.1       cgd 	case '#':
    454   1.1       cgd 		if (name[1] != 0)
    455   1.1       cgd 			break;
    456   1.1       cgd 		if (prevfile[0] == 0) {
    457  1.25  christos 			(void)printf("No previous file\n");
    458  1.17       wiz 			return NULL;
    459   1.1       cgd 		}
    460   1.1       cgd 		return savestr(prevfile);
    461   1.1       cgd 	case '&':
    462  1.28  christos 		if (name[1] == 0 && (name = value(ENAME_MBOX)) == NULL)
    463   1.1       cgd 			name = "~/mbox";
    464   1.1       cgd 		/* fall through */
    465   1.1       cgd 	}
    466  1.28  christos 	if (name[0] == '+' && getfold(cmdbuf, sizeof(cmdbuf)) >= 0) {
    467  1.28  christos 		(void)snprintf(xname, sizeof(xname), "%s/%s", cmdbuf, name + 1);
    468   1.1       cgd 		name = savestr(xname);
    469   1.1       cgd 	}
    470   1.1       cgd 	/* catch the most common shell meta character */
    471   1.1       cgd 	if (name[0] == '~' && (name[1] == '/' || name[1] == '\0')) {
    472  1.28  christos 		(void)snprintf(xname, sizeof(xname), "%s%s", homedir, name + 1);
    473   1.1       cgd 		name = savestr(xname);
    474   1.1       cgd 	}
    475  1.18       wiz 	if (strpbrk(name, "~{[*?$`'\"\\") == NULL)
    476   1.1       cgd 		return name;
    477   1.1       cgd 	if (pipe(pivec) < 0) {
    478  1.20       wiz 		warn("pipe");
    479   1.1       cgd 		return name;
    480   1.1       cgd 	}
    481  1.28  christos 	(void)snprintf(cmdbuf, sizeof(cmdbuf), "echo %s", name);
    482  1.28  christos 	if ((shellcmd = value(ENAME_SHELL)) == NULL)
    483  1.16       wiz 		shellcmd = _PATH_CSHELL;
    484  1.17       wiz 	pid = start_command(shellcmd, 0, -1, pivec[1], "-c", cmdbuf, NULL);
    485   1.1       cgd 	if (pid < 0) {
    486  1.25  christos 		(void)close(pivec[0]);
    487  1.25  christos 		(void)close(pivec[1]);
    488  1.17       wiz 		return NULL;
    489   1.1       cgd 	}
    490  1.25  christos 	(void)close(pivec[1]);
    491  1.28  christos 	l = read(pivec[0], xname, sizeof(xname));
    492  1.25  christos 	(void)close(pivec[0]);
    493  1.12  christos 	if (wait_child(pid) < 0 && WTERMSIG(wait_status) != SIGPIPE) {
    494  1.25  christos 		(void)fprintf(stderr, "\"%s\": Expansion failed.\n", name);
    495  1.17       wiz 		return NULL;
    496   1.1       cgd 	}
    497   1.1       cgd 	if (l < 0) {
    498  1.20       wiz 		warn("read");
    499  1.17       wiz 		return NULL;
    500   1.1       cgd 	}
    501   1.1       cgd 	if (l == 0) {
    502  1.25  christos 		(void)fprintf(stderr, "\"%s\": No match.\n", name);
    503  1.17       wiz 		return NULL;
    504   1.1       cgd 	}
    505  1.28  christos 	if (l == sizeof(xname)) {
    506  1.25  christos 		(void)fprintf(stderr, "\"%s\": Expansion buffer overflow.\n", name);
    507  1.17       wiz 		return NULL;
    508   1.1       cgd 	}
    509   1.7     mikel 	xname[l] = '\0';
    510   1.1       cgd 	for (cp = &xname[l-1]; *cp == '\n' && cp > xname; cp--)
    511  1.28  christos 		continue;
    512   1.1       cgd 	cp[1] = '\0';
    513  1.12  christos 	if (strchr(xname, ' ') && stat(xname, &sbuf) < 0) {
    514  1.25  christos 		(void)fprintf(stderr, "\"%s\": Ambiguous.\n", name);
    515  1.17       wiz 		return NULL;
    516   1.1       cgd 	}
    517   1.1       cgd 	return savestr(xname);
    518   1.1       cgd }
    519   1.1       cgd 
    520   1.1       cgd /*
    521   1.1       cgd  * Return the name of the dead.letter file.
    522   1.1       cgd  */
    523  1.28  christos PUBLIC const char *
    524  1.15       wiz getdeadletter(void)
    525   1.1       cgd {
    526  1.24  christos 	const char *cp;
    527   1.1       cgd 
    528  1.28  christos 	if ((cp = value(ENAME_DEAD)) == NULL || (cp = expand(cp)) == NULL)
    529   1.1       cgd 		cp = expand("~/dead.letter");
    530   1.1       cgd 	else if (*cp != '/') {
    531   1.1       cgd 		char buf[PATHSIZE];
    532  1.28  christos 		(void)snprintf(buf, sizeof(buf), "~/%s", cp);
    533   1.1       cgd 		cp = expand(buf);
    534   1.1       cgd 	}
    535   1.1       cgd 	return cp;
    536   1.1       cgd }
    537