Home | History | Annotate | Line # | Download | only in mail
cmd2.c revision 1.20
      1  1.20  christos /*	$NetBSD: cmd2.c,v 1.20 2006/10/21 21:37:20 christos Exp $	*/
      2   1.5  christos 
      3   1.1       cgd /*
      4   1.3   deraadt  * Copyright (c) 1980, 1993
      5   1.3   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.17       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.8     lukem #include <sys/cdefs.h>
     33   1.1       cgd #ifndef lint
     34   1.5  christos #if 0
     35   1.5  christos static char sccsid[] = "@(#)cmd2.c	8.1 (Berkeley) 6/6/93";
     36   1.5  christos #else
     37  1.20  christos __RCSID("$NetBSD: cmd2.c,v 1.20 2006/10/21 21:37:20 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.20  christos #include <util.h>
     43   1.3   deraadt #include "extern.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  * More user commands.
     49   1.1       cgd  */
     50  1.12       wiz static int igcomp(const void *, const void *);
     51   1.1       cgd 
     52   1.1       cgd /*
     53   1.1       cgd  * If any arguments were given, go to the next applicable argument
     54   1.1       cgd  * following dot, otherwise, go to the next applicable message.
     55   1.1       cgd  * If given as first command with no arguments, print first message.
     56   1.1       cgd  */
     57   1.3   deraadt int
     58  1.12       wiz next(void *v)
     59   1.1       cgd {
     60   1.5  christos 	int *msgvec = v;
     61   1.8     lukem 	struct message *mp;
     62   1.8     lukem 	int *ip, *ip2;
     63   1.1       cgd 	int list[2], mdot;
     64   1.1       cgd 
     65   1.7        pk 	if (*msgvec != 0) {
     66   1.1       cgd 
     67   1.1       cgd 		/*
     68   1.7        pk 		 * If some messages were supplied, find the
     69   1.1       cgd 		 * first applicable one following dot using
     70   1.1       cgd 		 * wrap around.
     71   1.1       cgd 		 */
     72   1.1       cgd 
     73   1.1       cgd 		mdot = dot - &message[0] + 1;
     74   1.1       cgd 
     75   1.1       cgd 		/*
     76   1.1       cgd 		 * Find the first message in the supplied
     77   1.1       cgd 		 * message list which follows dot.
     78   1.1       cgd 		 */
     79   1.1       cgd 
     80   1.7        pk 		for (ip = msgvec; *ip != 0; ip++)
     81   1.1       cgd 			if (*ip > mdot)
     82   1.1       cgd 				break;
     83   1.7        pk 		if (*ip == 0)
     84   1.1       cgd 			ip = msgvec;
     85   1.1       cgd 		ip2 = ip;
     86   1.1       cgd 		do {
     87   1.1       cgd 			mp = &message[*ip2 - 1];
     88   1.1       cgd 			if ((mp->m_flag & MDELETED) == 0) {
     89   1.1       cgd 				dot = mp;
     90   1.1       cgd 				goto hitit;
     91   1.1       cgd 			}
     92   1.7        pk 			if (*ip2 != 0)
     93   1.1       cgd 				ip2++;
     94   1.7        pk 			if (*ip2 == 0)
     95   1.1       cgd 				ip2 = msgvec;
     96   1.1       cgd 		} while (ip2 != ip);
     97  1.19  christos 		(void)printf("No messages applicable\n");
     98   1.1       cgd 		return(1);
     99   1.1       cgd 	}
    100   1.1       cgd 
    101   1.1       cgd 	/*
    102   1.1       cgd 	 * If this is the first command, select message 1.
    103   1.1       cgd 	 * Note that this must exist for us to get here at all.
    104   1.1       cgd 	 */
    105   1.1       cgd 
    106   1.1       cgd 	if (!sawcom)
    107   1.1       cgd 		goto hitit;
    108   1.1       cgd 
    109   1.1       cgd 	/*
    110   1.1       cgd 	 * Just find the next good message after dot, no
    111   1.1       cgd 	 * wraparound.
    112   1.1       cgd 	 */
    113   1.1       cgd 
    114  1.20  christos 	for (mp = dot + 1; mp < &message[msgCount]; mp++)
    115   1.1       cgd 		if ((mp->m_flag & (MDELETED|MSAVED)) == 0)
    116   1.1       cgd 			break;
    117   1.1       cgd 	if (mp >= &message[msgCount]) {
    118  1.19  christos 		(void)printf("At EOF\n");
    119   1.1       cgd 		return(0);
    120   1.1       cgd 	}
    121   1.1       cgd 	dot = mp;
    122   1.1       cgd hitit:
    123   1.1       cgd 	/*
    124   1.1       cgd 	 * Print dot.
    125   1.1       cgd 	 */
    126   1.1       cgd 
    127   1.1       cgd 	list[0] = dot - &message[0] + 1;
    128   1.7        pk 	list[1] = 0;
    129   1.1       cgd 	return(type(list));
    130   1.1       cgd }
    131   1.1       cgd 
    132   1.1       cgd /*
    133   1.1       cgd  * Save a message in a file.  Mark the message as saved
    134   1.1       cgd  * so we can discard when the user quits.
    135   1.1       cgd  */
    136   1.3   deraadt int
    137  1.12       wiz save(void *v)
    138   1.1       cgd {
    139   1.5  christos 	char *str = v;
    140   1.1       cgd 
    141   1.1       cgd 	return save1(str, 1, "save", saveignore);
    142  1.16      ross }
    143  1.16      ross 
    144  1.16      ross /*
    145  1.16      ross  * Save a message in a file.  Mark the message as saved
    146  1.16      ross  * so we can discard when the user quits.  Save all fields
    147  1.16      ross  * overriding saveignore and saveretain.
    148  1.16      ross  */
    149  1.20  christos #if 0
    150  1.16      ross int
    151  1.16      ross Save(v)
    152  1.16      ross 	void *v;
    153  1.16      ross {
    154  1.16      ross 	char *str = v;
    155  1.16      ross 
    156  1.16      ross 	return save1(str, 1, "Save", NULL);
    157   1.1       cgd }
    158  1.20  christos #endif
    159   1.1       cgd 
    160   1.1       cgd /*
    161   1.1       cgd  * Copy a message to a file without affected its saved-ness
    162   1.1       cgd  */
    163   1.3   deraadt int
    164  1.12       wiz copycmd(void *v)
    165   1.1       cgd {
    166   1.5  christos 	char *str = v;
    167   1.1       cgd 
    168   1.1       cgd 	return save1(str, 0, "copy", saveignore);
    169   1.1       cgd }
    170   1.1       cgd 
    171   1.1       cgd /*
    172   1.1       cgd  * Save/copy the indicated messages at the end of the passed file name.
    173  1.13       wiz  * If markmsg is true, mark the message "saved."
    174   1.1       cgd  */
    175   1.3   deraadt int
    176  1.18  christos save1(char str[], int markmsg, const char *cmd, struct ignoretab *ignoretabs)
    177   1.1       cgd {
    178   1.8     lukem 	int *ip;
    179   1.8     lukem 	struct message *mp;
    180  1.18  christos 	const char *fn;
    181  1.18  christos 	const char *disp;
    182   1.1       cgd 	int f, *msgvec;
    183   1.1       cgd 	FILE *obuf;
    184   1.1       cgd 
    185  1.18  christos 	msgvec = salloc((msgCount + 2) * sizeof *msgvec);
    186  1.14       wiz 	if ((fn = snarf(str, &f)) == NULL)
    187   1.1       cgd 		return(1);
    188   1.1       cgd 	if (!f) {
    189   1.1       cgd 		*msgvec = first(0, MMNORM);
    190   1.7        pk 		if (*msgvec == 0) {
    191  1.19  christos 			(void)printf("No messages to %s.\n", cmd);
    192   1.1       cgd 			return(1);
    193   1.1       cgd 		}
    194   1.7        pk 		msgvec[1] = 0;
    195   1.1       cgd 	}
    196   1.1       cgd 	if (f && getmsglist(str, msgvec, 0) < 0)
    197   1.1       cgd 		return(1);
    198  1.14       wiz 	if ((fn = expand(fn)) == NULL)
    199   1.1       cgd 		return(1);
    200  1.19  christos 	(void)printf("\"%s\" ", fn);
    201  1.19  christos 	(void)fflush(stdout);
    202  1.13       wiz 	if (access(fn, 0) >= 0)
    203   1.1       cgd 		disp = "[Appended]";
    204   1.1       cgd 	else
    205   1.1       cgd 		disp = "[New file]";
    206  1.13       wiz 	if ((obuf = Fopen(fn, "a")) == NULL) {
    207  1.15       wiz 		warn(NULL);
    208   1.1       cgd 		return(1);
    209   1.1       cgd 	}
    210   1.1       cgd 	for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
    211   1.1       cgd 		mp = &message[*ip - 1];
    212   1.1       cgd 		touch(mp);
    213  1.20  christos #ifdef MIME_SUPPORT
    214  1.20  christos 		if (sendmessage(mp, obuf, ignoretabs, NULL, NULL) < 0) {
    215  1.20  christos #else
    216  1.14       wiz 		if (sendmessage(mp, obuf, ignoretabs, NULL) < 0) {
    217  1.20  christos #endif
    218  1.15       wiz 			warn("%s", fn);
    219  1.19  christos 			(void)Fclose(obuf);
    220   1.1       cgd 			return(1);
    221   1.1       cgd 		}
    222  1.13       wiz 		if (markmsg)
    223   1.1       cgd 			mp->m_flag |= MSAVED;
    224   1.1       cgd 	}
    225  1.19  christos 	(void)fflush(obuf);
    226   1.1       cgd 	if (ferror(obuf))
    227  1.15       wiz 		warn("%s", fn);
    228  1.19  christos 	(void)Fclose(obuf);
    229  1.19  christos 	(void)printf("%s\n", disp);
    230   1.1       cgd 	return(0);
    231   1.1       cgd }
    232   1.1       cgd 
    233   1.1       cgd /*
    234   1.1       cgd  * Write the indicated messages at the end of the passed
    235   1.1       cgd  * file name, minus header and trailing blank line.
    236   1.1       cgd  */
    237   1.3   deraadt int
    238  1.12       wiz swrite(void *v)
    239   1.1       cgd {
    240   1.5  christos 	char *str = v;
    241   1.1       cgd 
    242   1.1       cgd 	return save1(str, 1, "write", ignoreall);
    243   1.1       cgd }
    244   1.1       cgd 
    245   1.1       cgd /*
    246   1.1       cgd  * Snarf the file from the end of the command line and
    247   1.1       cgd  * return a pointer to it.  If there is no file attached,
    248  1.14       wiz  * just return NULL.  Put a null in front of the file
    249   1.1       cgd  * name so that the message list processing won't see it,
    250   1.1       cgd  * unless the file name is the only thing on the line, in
    251   1.1       cgd  * which case, return 0 in the reference flag variable.
    252   1.1       cgd  */
    253   1.1       cgd 
    254   1.1       cgd char *
    255  1.12       wiz snarf(char linebuf[], int *flag)
    256   1.1       cgd {
    257   1.8     lukem 	char *cp;
    258   1.1       cgd 
    259   1.1       cgd 	*flag = 1;
    260   1.1       cgd 	cp = strlen(linebuf) + linebuf - 1;
    261   1.1       cgd 
    262   1.1       cgd 	/*
    263   1.1       cgd 	 * Strip away trailing blanks.
    264   1.1       cgd 	 */
    265   1.1       cgd 
    266   1.9  christos 	while (cp > linebuf && isspace((unsigned char)*cp))
    267   1.1       cgd 		cp--;
    268   1.1       cgd 	*++cp = 0;
    269   1.1       cgd 
    270   1.1       cgd 	/*
    271   1.1       cgd 	 * Now search for the beginning of the file name.
    272   1.1       cgd 	 */
    273   1.1       cgd 
    274   1.9  christos 	while (cp > linebuf && !isspace((unsigned char)*cp))
    275   1.1       cgd 		cp--;
    276   1.1       cgd 	if (*cp == '\0') {
    277  1.19  christos 		(void)printf("No file specified.\n");
    278  1.14       wiz 		return(NULL);
    279   1.1       cgd 	}
    280   1.9  christos 	if (isspace((unsigned char)*cp))
    281   1.1       cgd 		*cp++ = 0;
    282   1.1       cgd 	else
    283   1.1       cgd 		*flag = 0;
    284   1.1       cgd 	return(cp);
    285   1.1       cgd }
    286   1.1       cgd 
    287   1.1       cgd /*
    288   1.1       cgd  * Delete messages.
    289   1.1       cgd  */
    290   1.3   deraadt int
    291  1.12       wiz delete(void *v)
    292   1.1       cgd {
    293   1.5  christos 	int *msgvec = v;
    294  1.19  christos 	(void)delm(msgvec);
    295   1.1       cgd 	return 0;
    296   1.1       cgd }
    297   1.1       cgd 
    298   1.1       cgd /*
    299   1.1       cgd  * Delete messages, then type the new dot.
    300   1.1       cgd  */
    301   1.3   deraadt int
    302  1.12       wiz deltype(void *v)
    303   1.1       cgd {
    304   1.5  christos 	int *msgvec = v;
    305   1.1       cgd 	int list[2];
    306   1.1       cgd 	int lastdot;
    307   1.1       cgd 
    308   1.1       cgd 	lastdot = dot - &message[0] + 1;
    309   1.1       cgd 	if (delm(msgvec) >= 0) {
    310   1.1       cgd 		list[0] = dot - &message[0] + 1;
    311   1.1       cgd 		if (list[0] > lastdot) {
    312   1.1       cgd 			touch(dot);
    313   1.7        pk 			list[1] = 0;
    314   1.1       cgd 			return(type(list));
    315   1.1       cgd 		}
    316  1.19  christos 		(void)printf("At EOF\n");
    317   1.1       cgd 	} else
    318  1.19  christos 		(void)printf("No more messages\n");
    319   1.1       cgd 	return(0);
    320   1.1       cgd }
    321   1.1       cgd 
    322   1.1       cgd /*
    323   1.1       cgd  * Delete the indicated messages.
    324   1.1       cgd  * Set dot to some nice place afterwards.
    325   1.1       cgd  * Internal interface.
    326   1.1       cgd  */
    327   1.3   deraadt int
    328  1.12       wiz delm(int *msgvec)
    329   1.1       cgd {
    330   1.8     lukem 	struct message *mp;
    331   1.8     lukem 	int *ip;
    332   1.1       cgd 	int last;
    333   1.1       cgd 
    334   1.7        pk 	last = 0;
    335   1.7        pk 	for (ip = msgvec; *ip != 0; ip++) {
    336   1.1       cgd 		mp = &message[*ip - 1];
    337   1.1       cgd 		touch(mp);
    338   1.1       cgd 		mp->m_flag |= MDELETED|MTOUCH;
    339   1.1       cgd 		mp->m_flag &= ~(MPRESERVE|MSAVED|MBOX);
    340   1.1       cgd 		last = *ip;
    341   1.1       cgd 	}
    342   1.7        pk 	if (last != 0) {
    343  1.20  christos 		dot = &message[last - 1];
    344   1.1       cgd 		last = first(0, MDELETED);
    345   1.7        pk 		if (last != 0) {
    346  1.20  christos 			dot = &message[last - 1];
    347   1.1       cgd 			return(0);
    348   1.1       cgd 		}
    349   1.1       cgd 		else {
    350   1.1       cgd 			dot = &message[0];
    351   1.1       cgd 			return(-1);
    352   1.1       cgd 		}
    353   1.1       cgd 	}
    354   1.1       cgd 
    355   1.1       cgd 	/*
    356   1.1       cgd 	 * Following can't happen -- it keeps lint happy
    357   1.1       cgd 	 */
    358   1.1       cgd 
    359   1.1       cgd 	return(-1);
    360   1.1       cgd }
    361   1.1       cgd 
    362   1.1       cgd /*
    363   1.1       cgd  * Undelete the indicated messages.
    364   1.1       cgd  */
    365   1.3   deraadt int
    366  1.12       wiz undeletecmd(void *v)
    367   1.1       cgd {
    368   1.5  christos 	int *msgvec = v;
    369   1.8     lukem 	struct message *mp;
    370   1.8     lukem 	int *ip;
    371   1.1       cgd 
    372   1.1       cgd 	for (ip = msgvec; *ip && ip-msgvec < msgCount; ip++) {
    373   1.1       cgd 		mp = &message[*ip - 1];
    374   1.1       cgd 		touch(mp);
    375   1.1       cgd 		dot = mp;
    376   1.1       cgd 		mp->m_flag &= ~MDELETED;
    377   1.1       cgd 	}
    378   1.1       cgd 	return 0;
    379   1.1       cgd }
    380   1.1       cgd 
    381   1.1       cgd /*
    382   1.1       cgd  * Interactively dump core on "core"
    383   1.1       cgd  */
    384   1.3   deraadt int
    385  1.19  christos /*ARGSUSED*/
    386  1.20  christos core(void *v __unused)
    387   1.1       cgd {
    388   1.1       cgd 	int pid;
    389   1.1       cgd 
    390   1.1       cgd 	switch (pid = vfork()) {
    391   1.1       cgd 	case -1:
    392  1.15       wiz 		warn("fork");
    393   1.1       cgd 		return(1);
    394   1.1       cgd 	case 0:
    395   1.1       cgd 		abort();
    396   1.1       cgd 		_exit(1);
    397   1.1       cgd 	}
    398  1.19  christos 	(void)printf("Okie dokie");
    399  1.19  christos 	(void)fflush(stdout);
    400  1.19  christos 	(void)wait_child(pid);
    401   1.9  christos 	if (WCOREDUMP(wait_status))
    402  1.19  christos 		(void)printf(" -- Core dumped.\n");
    403   1.1       cgd 	else
    404  1.19  christos 		(void)printf(" -- Can't dump core.\n");
    405   1.1       cgd 	return 0;
    406   1.1       cgd }
    407   1.1       cgd 
    408   1.1       cgd /*
    409   1.1       cgd  * Clobber as many bytes of stack as the user requests.
    410   1.1       cgd  */
    411   1.3   deraadt int
    412  1.12       wiz clobber(void *v)
    413   1.1       cgd {
    414   1.5  christos 	char **argv = v;
    415   1.8     lukem 	int times;
    416   1.1       cgd 
    417   1.1       cgd 	if (argv[0] == 0)
    418   1.1       cgd 		times = 1;
    419   1.1       cgd 	else
    420   1.1       cgd 		times = (atoi(argv[0]) + 511) / 512;
    421   1.1       cgd 	clob1(times);
    422   1.1       cgd 	return 0;
    423   1.1       cgd }
    424   1.1       cgd 
    425   1.1       cgd /*
    426   1.1       cgd  * Clobber the stack.
    427   1.1       cgd  */
    428   1.3   deraadt void
    429  1.12       wiz clob1(int n)
    430   1.1       cgd {
    431   1.1       cgd 	char buf[512];
    432   1.8     lukem 	char *cp;
    433   1.1       cgd 
    434   1.1       cgd 	if (n <= 0)
    435   1.1       cgd 		return;
    436  1.19  christos 	for (cp = buf; cp < &buf[512]; *cp++ = (char)0xFF)
    437   1.1       cgd 		;
    438   1.1       cgd 	clob1(n - 1);
    439   1.1       cgd }
    440   1.1       cgd 
    441   1.1       cgd /*
    442   1.1       cgd  * Add the given header fields to the retained list.
    443   1.1       cgd  * If no arguments, print the current list of retained fields.
    444   1.1       cgd  */
    445   1.3   deraadt int
    446  1.12       wiz retfield(void *v)
    447   1.1       cgd {
    448   1.5  christos 	char **list = v;
    449   1.1       cgd 
    450   1.1       cgd 	return ignore1(list, ignore + 1, "retained");
    451   1.1       cgd }
    452   1.1       cgd 
    453   1.1       cgd /*
    454   1.1       cgd  * Add the given header fields to the ignored list.
    455   1.1       cgd  * If no arguments, print the current list of ignored fields.
    456   1.1       cgd  */
    457   1.3   deraadt int
    458  1.12       wiz igfield(void *v)
    459   1.1       cgd {
    460   1.5  christos 	char **list = v;
    461   1.1       cgd 
    462   1.1       cgd 	return ignore1(list, ignore, "ignored");
    463   1.1       cgd }
    464   1.1       cgd 
    465   1.3   deraadt int
    466  1.12       wiz saveretfield(void *v)
    467   1.1       cgd {
    468   1.5  christos 	char **list = v;
    469   1.1       cgd 
    470   1.1       cgd 	return ignore1(list, saveignore + 1, "retained");
    471   1.1       cgd }
    472   1.1       cgd 
    473   1.3   deraadt int
    474  1.12       wiz saveigfield(void *v)
    475   1.1       cgd {
    476   1.5  christos 	char **list = v;
    477   1.1       cgd 
    478   1.1       cgd 	return ignore1(list, saveignore, "ignored");
    479   1.1       cgd }
    480   1.1       cgd 
    481   1.3   deraadt int
    482  1.18  christos ignore1(char *list[], struct ignoretab *tab, const char *which)
    483   1.1       cgd {
    484   1.6     mikel 	char field[LINESIZE];
    485   1.8     lukem 	int h;
    486   1.8     lukem 	struct ignore *igp;
    487   1.1       cgd 	char **ap;
    488   1.1       cgd 
    489  1.14       wiz 	if (*list == NULL)
    490   1.1       cgd 		return igshow(tab, which);
    491   1.1       cgd 	for (ap = list; *ap != 0; ap++) {
    492   1.1       cgd 		istrcpy(field, *ap);
    493   1.1       cgd 		if (member(field, tab))
    494   1.1       cgd 			continue;
    495   1.1       cgd 		h = hash(field);
    496  1.20  christos 		igp = (struct ignore *) ecalloc(1, sizeof (struct ignore));
    497  1.20  christos 		igp->i_field = ecalloc((unsigned) strlen(field) + 1,
    498   1.1       cgd 			sizeof (char));
    499  1.19  christos 		(void)strcpy(igp->i_field, field);
    500   1.1       cgd 		igp->i_link = tab->i_head[h];
    501   1.1       cgd 		tab->i_head[h] = igp;
    502   1.1       cgd 		tab->i_count++;
    503   1.1       cgd 	}
    504   1.1       cgd 	return 0;
    505   1.1       cgd }
    506   1.1       cgd 
    507   1.1       cgd /*
    508   1.1       cgd  * Print out all currently retained fields.
    509   1.1       cgd  */
    510   1.3   deraadt int
    511  1.18  christos igshow(struct ignoretab *tab, const char *which)
    512   1.1       cgd {
    513   1.8     lukem 	int h;
    514   1.1       cgd 	struct ignore *igp;
    515   1.1       cgd 	char **ap, **ring;
    516   1.1       cgd 
    517   1.1       cgd 	if (tab->i_count == 0) {
    518  1.19  christos 		(void)printf("No fields currently being %s.\n", which);
    519   1.1       cgd 		return 0;
    520   1.1       cgd 	}
    521  1.18  christos 	ring = salloc((tab->i_count + 1) * sizeof (char *));
    522   1.1       cgd 	ap = ring;
    523   1.1       cgd 	for (h = 0; h < HSHSIZE; h++)
    524   1.1       cgd 		for (igp = tab->i_head[h]; igp != 0; igp = igp->i_link)
    525   1.1       cgd 			*ap++ = igp->i_field;
    526   1.1       cgd 	*ap = 0;
    527   1.3   deraadt 	qsort(ring, tab->i_count, sizeof (char *), igcomp);
    528   1.1       cgd 	for (ap = ring; *ap != 0; ap++)
    529  1.19  christos 		(void)printf("%s\n", *ap);
    530   1.1       cgd 	return 0;
    531   1.1       cgd }
    532   1.1       cgd 
    533   1.1       cgd /*
    534   1.1       cgd  * Compare two names for sorting ignored field list.
    535   1.1       cgd  */
    536   1.5  christos static int
    537  1.12       wiz igcomp(const void *l, const void *r)
    538   1.1       cgd {
    539  1.18  christos 	return (strcmp(*(const char *const *)l, *(const char *const *)r));
    540   1.1       cgd }
    541