Home | History | Annotate | Line # | Download | only in edquota
edquota.c revision 1.29.16.7
      1  1.29.16.7    bouyer /*      $NetBSD: edquota.c,v 1.29.16.7 2011/02/03 15:53:25 bouyer Exp $ */
      2  1.29.16.1    bouyer 
      3        1.1       cgd /*
      4        1.5   mycroft  * Copyright (c) 1980, 1990, 1993
      5        1.5   mycroft  *	The Regents of the University of California.  All rights reserved.
      6        1.1       cgd  *
      7        1.1       cgd  * This code is derived from software contributed to Berkeley by
      8        1.1       cgd  * Robert Elz at The University of Melbourne.
      9        1.1       cgd  *
     10        1.1       cgd  * Redistribution and use in source and binary forms, with or without
     11        1.1       cgd  * modification, are permitted provided that the following conditions
     12        1.1       cgd  * are met:
     13        1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     14        1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     15        1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     16        1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     17        1.1       cgd  *    documentation and/or other materials provided with the distribution.
     18       1.24       agc  * 3. Neither the name of the University nor the names of its contributors
     19        1.1       cgd  *    may be used to endorse or promote products derived from this software
     20        1.1       cgd  *    without specific prior written permission.
     21        1.1       cgd  *
     22        1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     23        1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     24        1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     25        1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     26        1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     27        1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     28        1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     29        1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     30        1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     31        1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     32        1.1       cgd  * SUCH DAMAGE.
     33        1.1       cgd  */
     34        1.1       cgd 
     35       1.15     lukem #include <sys/cdefs.h>
     36        1.1       cgd #ifndef lint
     37       1.29     lukem __COPYRIGHT("@(#) Copyright (c) 1980, 1990, 1993\
     38       1.29     lukem  The Regents of the University of California.  All rights reserved.");
     39        1.1       cgd #endif /* not lint */
     40        1.1       cgd 
     41        1.1       cgd #ifndef lint
     42       1.15     lukem #if 0
     43       1.15     lukem static char sccsid[] = "from: @(#)edquota.c	8.3 (Berkeley) 4/27/95";
     44       1.15     lukem #else
     45  1.29.16.7    bouyer __RCSID("$NetBSD: edquota.c,v 1.29.16.7 2011/02/03 15:53:25 bouyer Exp $");
     46       1.15     lukem #endif
     47        1.1       cgd #endif /* not lint */
     48        1.1       cgd 
     49        1.1       cgd /*
     50        1.1       cgd  * Disk quota editor.
     51        1.1       cgd  */
     52        1.1       cgd #include <sys/param.h>
     53        1.1       cgd #include <sys/stat.h>
     54        1.1       cgd #include <sys/file.h>
     55        1.1       cgd #include <sys/wait.h>
     56       1.12     mikel #include <sys/queue.h>
     57  1.29.16.1    bouyer #include <sys/types.h>
     58  1.29.16.1    bouyer #include <sys/statvfs.h>
     59  1.29.16.1    bouyer 
     60  1.29.16.1    bouyer #include <ufs/ufs/quota2_prop.h>
     61  1.29.16.1    bouyer #include <ufs/ufs/quota1.h>
     62  1.29.16.1    bouyer #include <sys/quota.h>
     63  1.29.16.1    bouyer 
     64  1.29.16.1    bouyer #include <assert.h>
     65       1.15     lukem #include <err.h>
     66        1.1       cgd #include <errno.h>
     67        1.1       cgd #include <fstab.h>
     68        1.1       cgd #include <pwd.h>
     69        1.1       cgd #include <grp.h>
     70        1.1       cgd #include <ctype.h>
     71       1.15     lukem #include <signal.h>
     72        1.1       cgd #include <stdio.h>
     73        1.9       cgd #include <stdlib.h>
     74        1.1       cgd #include <string.h>
     75        1.5   mycroft #include <unistd.h>
     76  1.29.16.1    bouyer 
     77  1.29.16.1    bouyer #include <printquota.h>
     78  1.29.16.1    bouyer #include <getvfsquota.h>
     79  1.29.16.1    bouyer 
     80        1.1       cgd #include "pathnames.h"
     81        1.1       cgd 
     82       1.28   xtraeme const char *qfname = QUOTAFILENAME;
     83       1.28   xtraeme const char *quotagroup = QUOTAGROUP;
     84        1.1       cgd char tmpfil[] = _PATH_TMP;
     85        1.1       cgd 
     86        1.1       cgd struct quotause {
     87        1.1       cgd 	struct	quotause *next;
     88        1.1       cgd 	long	flags;
     89  1.29.16.1    bouyer 	struct	quota2_entry q2e;
     90        1.1       cgd 	char	fsname[MAXPATHLEN + 1];
     91  1.29.16.1    bouyer 	char	*qfname;
     92       1.15     lukem };
     93        1.1       cgd #define	FOUND	0x01
     94  1.29.16.1    bouyer #define	QUOTA2	0x02
     95  1.29.16.1    bouyer #define	DEFAULT	0x04
     96       1.13     mikel 
     97       1.23      jonb #define MAX_TMPSTR	(100+MAXPATHLEN)
     98       1.23      jonb 
     99  1.29.16.1    bouyer int	main(int, char **);
    100  1.29.16.1    bouyer void	usage(void);
    101  1.29.16.1    bouyer int	getentry(const char *, int);
    102  1.29.16.1    bouyer struct quotause * getprivs(long, int, const char *, int);
    103  1.29.16.1    bouyer struct quotause * getprivs2(long, int, const char *, int);
    104  1.29.16.1    bouyer struct quotause * getprivs1(long, int, const char *);
    105  1.29.16.1    bouyer void	putprivs(long, int, struct quotause *);
    106  1.29.16.1    bouyer void	putprivs2(long, int, struct quotause *);
    107  1.29.16.1    bouyer void	putprivs1(long, int, struct quotause *);
    108  1.29.16.1    bouyer int	editit(char *);
    109  1.29.16.1    bouyer int	writeprivs(struct quotause *, int, char *, int);
    110  1.29.16.1    bouyer int	readprivs(struct quotause *, int);
    111  1.29.16.1    bouyer int	writetimes(struct quotause *, int, int);
    112  1.29.16.1    bouyer int	readtimes(struct quotause *, int);
    113  1.29.16.1    bouyer char *	cvtstoa(time_t);
    114  1.29.16.1    bouyer int	cvtatos(time_t, char *, time_t *);
    115  1.29.16.1    bouyer void	freeq(struct quotause *);
    116  1.29.16.1    bouyer void	freeprivs(struct quotause *);
    117  1.29.16.1    bouyer int	alldigits(const char *);
    118  1.29.16.1    bouyer int	hasquota(struct fstab *, int, char **);
    119  1.29.16.1    bouyer 
    120  1.29.16.1    bouyer int Hflag = 0;
    121  1.29.16.1    bouyer int Dflag = 0;
    122  1.29.16.1    bouyer int dflag = 0;
    123        1.1       cgd 
    124       1.12     mikel int
    125        1.1       cgd main(argc, argv)
    126        1.1       cgd 	int argc;
    127       1.15     lukem 	char **argv;
    128        1.1       cgd {
    129       1.15     lukem 	struct quotause *qup, *protoprivs, *curprivs;
    130       1.15     lukem 	long id, protoid;
    131       1.15     lukem 	int quotatype, tmpfd;
    132       1.11      mark 	char *protoname;
    133  1.29.16.5    bouyer 	char *soft = NULL, *hard = NULL, *grace = NULL;
    134       1.22    bouyer 	char *fs = NULL;
    135       1.11      mark 	int ch;
    136  1.29.16.5    bouyer 	int pflag = 0;
    137        1.1       cgd 
    138        1.1       cgd 	if (argc < 2)
    139        1.1       cgd 		usage();
    140       1.15     lukem 	if (getuid())
    141       1.15     lukem 		errx(1, "permission denied");
    142       1.15     lukem 	protoname = NULL;
    143        1.1       cgd 	quotatype = USRQUOTA;
    144  1.29.16.5    bouyer 	while ((ch = getopt(argc, argv, "DHdugp:s:h:t:f:")) != -1) {
    145        1.1       cgd 		switch(ch) {
    146  1.29.16.1    bouyer 		case 'D':
    147  1.29.16.1    bouyer 			Dflag++;
    148  1.29.16.1    bouyer 			break;
    149  1.29.16.1    bouyer 		case 'H':
    150  1.29.16.1    bouyer 			Hflag++;
    151  1.29.16.1    bouyer 			break;
    152  1.29.16.1    bouyer 		case 'd':
    153  1.29.16.1    bouyer 			dflag++;
    154  1.29.16.1    bouyer 			break;
    155        1.1       cgd 		case 'p':
    156        1.1       cgd 			protoname = optarg;
    157        1.1       cgd 			pflag++;
    158        1.1       cgd 			break;
    159        1.1       cgd 		case 'g':
    160        1.1       cgd 			quotatype = GRPQUOTA;
    161        1.1       cgd 			break;
    162        1.1       cgd 		case 'u':
    163        1.1       cgd 			quotatype = USRQUOTA;
    164        1.1       cgd 			break;
    165       1.22    bouyer 		case 's':
    166       1.22    bouyer 			soft = optarg;
    167       1.22    bouyer 			break;
    168       1.22    bouyer 		case 'h':
    169       1.22    bouyer 			hard = optarg;
    170       1.22    bouyer 			break;
    171  1.29.16.5    bouyer 		case 't':
    172  1.29.16.5    bouyer 			grace = optarg;
    173  1.29.16.5    bouyer 			break;
    174       1.22    bouyer 		case 'f':
    175       1.22    bouyer 			fs = optarg;
    176       1.22    bouyer 			break;
    177        1.1       cgd 		default:
    178        1.1       cgd 			usage();
    179        1.1       cgd 		}
    180        1.1       cgd 	}
    181        1.1       cgd 	argc -= optind;
    182        1.1       cgd 	argv += optind;
    183  1.29.16.1    bouyer 
    184        1.1       cgd 	if (pflag) {
    185  1.29.16.5    bouyer 		if (soft || hard || grace || dflag)
    186       1.22    bouyer 			usage();
    187        1.1       cgd 		if ((protoid = getentry(protoname, quotatype)) == -1)
    188        1.1       cgd 			exit(1);
    189  1.29.16.1    bouyer 		protoprivs = getprivs(protoid, quotatype, fs, 0);
    190        1.1       cgd 		for (qup = protoprivs; qup; qup = qup->next) {
    191  1.29.16.6    bouyer 			qup->q2e.q2e_val[QL_BLOCK].q2v_time = 0;
    192  1.29.16.6    bouyer 			qup->q2e.q2e_val[QL_FILE].q2v_time = 0;
    193        1.1       cgd 		}
    194        1.1       cgd 		while (argc-- > 0) {
    195        1.1       cgd 			if ((id = getentry(*argv++, quotatype)) < 0)
    196        1.1       cgd 				continue;
    197        1.1       cgd 			putprivs(id, quotatype, protoprivs);
    198        1.1       cgd 		}
    199        1.1       cgd 		exit(0);
    200        1.1       cgd 	}
    201  1.29.16.5    bouyer 	if (soft || hard || grace) {
    202       1.28   xtraeme 		struct quotause *lqup;
    203  1.29.16.2    bouyer 		u_int64_t softb, hardb, softi, hardi;
    204  1.29.16.5    bouyer 		time_t  graceb, gracei;
    205  1.29.16.2    bouyer 		char *str;
    206       1.22    bouyer 		if (soft) {
    207  1.29.16.2    bouyer 			str = strsep(&soft, "/");
    208  1.29.16.2    bouyer 			if (str[0] == '\0' || soft == NULL || soft[0] == '\0')
    209       1.22    bouyer 				usage();
    210  1.29.16.2    bouyer 
    211  1.29.16.2    bouyer 			if (intrd(str, &softb, HN_B) != 0)
    212  1.29.16.2    bouyer 				errx(1, "%s: bad number", str);
    213  1.29.16.2    bouyer 			if (intrd(soft, &softi, 0) != 0)
    214  1.29.16.2    bouyer 				errx(1, "%s: bad number", soft);
    215       1.22    bouyer 		}
    216       1.22    bouyer 		if (hard) {
    217  1.29.16.2    bouyer 			str = strsep(&hard, "/");
    218  1.29.16.2    bouyer 			if (str[0] == '\0' || hard == NULL || hard[0] == '\0')
    219       1.22    bouyer 				usage();
    220  1.29.16.2    bouyer 
    221  1.29.16.2    bouyer 			if (intrd(str, &hardb, HN_B) != 0)
    222  1.29.16.2    bouyer 				errx(1, "%s: bad number", str);
    223  1.29.16.2    bouyer 			if (intrd(hard, &hardi, 0) != 0)
    224  1.29.16.2    bouyer 				errx(1, "%s: bad number", hard);
    225       1.22    bouyer 		}
    226  1.29.16.5    bouyer 		if (grace) {
    227  1.29.16.5    bouyer 			str = strsep(&grace, "/");
    228  1.29.16.5    bouyer 			if (str[0] == '\0' || grace == NULL || grace[0] == '\0')
    229  1.29.16.5    bouyer 				usage();
    230  1.29.16.5    bouyer 
    231  1.29.16.5    bouyer 			if (timeprd(str, &graceb) != 0)
    232  1.29.16.5    bouyer 				errx(1, "%s: bad number", str);
    233  1.29.16.5    bouyer 			if (timeprd(grace, &gracei) != 0)
    234  1.29.16.5    bouyer 				errx(1, "%s: bad number", grace);
    235  1.29.16.5    bouyer 		}
    236  1.29.16.1    bouyer 		if (dflag) {
    237  1.29.16.1    bouyer 			curprivs = getprivs(0, quotatype, fs, 1);
    238  1.29.16.1    bouyer 			for (lqup = curprivs; lqup; lqup = lqup->next) {
    239  1.29.16.1    bouyer 				if (soft) {
    240  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_BLOCK].q2v_softlimit = softb;
    241  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_FILE].q2v_softlimit = softi;
    242  1.29.16.1    bouyer 				}
    243  1.29.16.1    bouyer 				if (hard) {
    244  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_BLOCK].q2v_hardlimit = hardb;
    245  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_FILE].q2v_hardlimit = hardi;
    246  1.29.16.1    bouyer 				}
    247  1.29.16.5    bouyer 				if (grace) {
    248  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_BLOCK].q2v_grace = graceb;
    249  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_FILE].q2v_grace = gracei;
    250  1.29.16.5    bouyer 				}
    251  1.29.16.1    bouyer 			}
    252  1.29.16.1    bouyer 			putprivs(0, quotatype, curprivs);
    253  1.29.16.1    bouyer 			freeprivs(curprivs);
    254  1.29.16.1    bouyer 			exit(0);
    255  1.29.16.1    bouyer 		}
    256       1.22    bouyer 		for ( ; argc > 0; argc--, argv++) {
    257       1.22    bouyer 			if ((id = getentry(*argv, quotatype)) == -1)
    258       1.22    bouyer 				continue;
    259  1.29.16.1    bouyer 			curprivs = getprivs(id, quotatype, fs, 0);
    260       1.28   xtraeme 			for (lqup = curprivs; lqup; lqup = lqup->next) {
    261       1.22    bouyer 				if (soft) {
    262       1.22    bouyer 					if (softb &&
    263  1.29.16.6    bouyer 					    lqup->q2e.q2e_val[QL_BLOCK].q2v_cur >= softb &&
    264  1.29.16.6    bouyer 					    (lqup->q2e.q2e_val[QL_BLOCK].q2v_softlimit == 0 ||
    265  1.29.16.6    bouyer 					    lqup->q2e.q2e_val[QL_BLOCK].q2v_cur < lqup->q2e.q2e_val[QL_BLOCK].q2v_softlimit))
    266  1.29.16.6    bouyer 						lqup->q2e.q2e_val[QL_BLOCK].q2v_time = 0;
    267       1.22    bouyer 					if (softi &&
    268  1.29.16.6    bouyer 					    lqup->q2e.q2e_val[QL_FILE].q2v_cur >= softb &&
    269  1.29.16.6    bouyer 					    (lqup->q2e.q2e_val[QL_FILE].q2v_softlimit == 0 ||
    270  1.29.16.6    bouyer 					    lqup->q2e.q2e_val[QL_FILE].q2v_cur < lqup->q2e.q2e_val[QL_FILE].q2v_softlimit))
    271  1.29.16.6    bouyer 						lqup->q2e.q2e_val[QL_FILE].q2v_time = 0;
    272  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_BLOCK].q2v_softlimit = softb;
    273  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_FILE].q2v_softlimit = softi;
    274       1.22    bouyer 				}
    275       1.22    bouyer 				if (hard) {
    276  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_BLOCK].q2v_hardlimit = hardb;
    277  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_FILE].q2v_hardlimit = hardi;
    278       1.22    bouyer 				}
    279  1.29.16.5    bouyer 				if (grace) {
    280  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_BLOCK].q2v_grace = graceb;
    281  1.29.16.6    bouyer 					lqup->q2e.q2e_val[QL_FILE].q2v_grace = gracei;
    282  1.29.16.5    bouyer 				}
    283       1.22    bouyer 			}
    284       1.22    bouyer 			putprivs(id, quotatype, curprivs);
    285       1.22    bouyer 			freeprivs(curprivs);
    286       1.22    bouyer 		}
    287       1.22    bouyer 		exit(0);
    288       1.22    bouyer 	}
    289        1.1       cgd 	tmpfd = mkstemp(tmpfil);
    290        1.1       cgd 	fchown(tmpfd, getuid(), getgid());
    291  1.29.16.5    bouyer 	if (0 /* XXX */) {
    292       1.22    bouyer 		if (soft || hard)
    293       1.22    bouyer 			usage();
    294  1.29.16.1    bouyer 		protoprivs = getprivs(0, quotatype, fs, 0);
    295        1.1       cgd 		if (writetimes(protoprivs, tmpfd, quotatype) == 0)
    296        1.1       cgd 			exit(1);
    297        1.1       cgd 		if (editit(tmpfil) && readtimes(protoprivs, tmpfd))
    298        1.1       cgd 			putprivs(0, quotatype, protoprivs);
    299        1.1       cgd 		freeprivs(protoprivs);
    300        1.1       cgd 		exit(0);
    301        1.1       cgd 	}
    302  1.29.16.1    bouyer 	if (dflag) {
    303  1.29.16.1    bouyer 		curprivs = getprivs(0, quotatype, fs, 1);
    304  1.29.16.1    bouyer 		if (writeprivs(curprivs, tmpfd, NULL, quotatype) &&
    305  1.29.16.1    bouyer 		    editit(tmpfil) && readprivs(curprivs, tmpfd))
    306  1.29.16.1    bouyer 			putprivs(0, quotatype, curprivs);
    307  1.29.16.1    bouyer 		freeprivs(curprivs);
    308  1.29.16.1    bouyer 	}
    309        1.1       cgd 	for ( ; argc > 0; argc--, argv++) {
    310        1.1       cgd 		if ((id = getentry(*argv, quotatype)) == -1)
    311        1.1       cgd 			continue;
    312  1.29.16.1    bouyer 		curprivs = getprivs(id, quotatype, fs, 0);
    313        1.1       cgd 		if (writeprivs(curprivs, tmpfd, *argv, quotatype) == 0)
    314        1.1       cgd 			continue;
    315        1.1       cgd 		if (editit(tmpfil) && readprivs(curprivs, tmpfd))
    316        1.1       cgd 			putprivs(id, quotatype, curprivs);
    317        1.1       cgd 		freeprivs(curprivs);
    318        1.1       cgd 	}
    319        1.1       cgd 	close(tmpfd);
    320        1.1       cgd 	unlink(tmpfil);
    321        1.1       cgd 	exit(0);
    322        1.1       cgd }
    323        1.1       cgd 
    324       1.12     mikel void
    325        1.1       cgd usage()
    326        1.1       cgd {
    327       1.22    bouyer 	fprintf(stderr,
    328  1.29.16.1    bouyer 	    "usage:\n"
    329  1.29.16.1    bouyer 	    "  edquota [-D] [-H] [-u] [-p username] [-f filesystem] [-d] username ...\n"
    330  1.29.16.1    bouyer 	    "  edquota [-D] [-H] -g [-p groupname] [-f filesystem] [-d] groupname ...\n"
    331  1.29.16.5    bouyer 	    "  edquota [-D] [-u] [-f filesystem] [-s b#/i#] [-h b#/i#] [-t t#/t#] \\\n\t[-d] username ...\n"
    332  1.29.16.5    bouyer 	    "  edquota [-D] -g [-f filesystem] [-s b#/i#] [-h b#/i#] [-t t#/t#] \\\n\t[-d] groupname ...\n"
    333       1.22    bouyer 	    );
    334        1.1       cgd 	exit(1);
    335        1.1       cgd }
    336        1.1       cgd 
    337        1.1       cgd /*
    338        1.1       cgd  * This routine converts a name for a particular quota type to
    339        1.1       cgd  * an identifier. This routine must agree with the kernel routine
    340        1.1       cgd  * getinoquota as to the interpretation of quota types.
    341        1.1       cgd  */
    342       1.12     mikel int
    343        1.1       cgd getentry(name, quotatype)
    344       1.28   xtraeme 	const char *name;
    345        1.1       cgd 	int quotatype;
    346        1.1       cgd {
    347        1.1       cgd 	struct passwd *pw;
    348        1.1       cgd 	struct group *gr;
    349        1.1       cgd 
    350        1.1       cgd 	if (alldigits(name))
    351        1.1       cgd 		return (atoi(name));
    352        1.1       cgd 	switch(quotatype) {
    353        1.1       cgd 	case USRQUOTA:
    354       1.15     lukem 		if ((pw = getpwnam(name)) != NULL)
    355        1.1       cgd 			return (pw->pw_uid);
    356       1.15     lukem 		warnx("%s: no such user", name);
    357        1.1       cgd 		break;
    358        1.1       cgd 	case GRPQUOTA:
    359       1.15     lukem 		if ((gr = getgrnam(name)) != NULL)
    360        1.1       cgd 			return (gr->gr_gid);
    361       1.15     lukem 		warnx("%s: no such group", name);
    362        1.1       cgd 		break;
    363        1.1       cgd 	default:
    364       1.15     lukem 		warnx("%d: unknown quota type", quotatype);
    365        1.1       cgd 		break;
    366        1.1       cgd 	}
    367        1.1       cgd 	sleep(1);
    368        1.1       cgd 	return (-1);
    369        1.1       cgd }
    370        1.1       cgd 
    371        1.1       cgd /*
    372        1.1       cgd  * Collect the requested quota information.
    373        1.1       cgd  */
    374        1.1       cgd struct quotause *
    375  1.29.16.1    bouyer getprivs(long id, int quotatype, const char *filesys, int defaultq)
    376        1.1       cgd {
    377  1.29.16.1    bouyer 	struct statvfs *fst;
    378  1.29.16.1    bouyer 	int nfst, i;
    379  1.29.16.1    bouyer 	struct quotause *qup, *quptail = NULL;
    380  1.29.16.1    bouyer 	struct quotause *quphead = NULL;
    381  1.29.16.1    bouyer 
    382  1.29.16.1    bouyer 	nfst = getmntinfo(&fst, MNT_WAIT);
    383  1.29.16.1    bouyer 	if (nfst == 0)
    384  1.29.16.1    bouyer 		errx(2, "no filesystems mounted!");
    385  1.29.16.1    bouyer 
    386  1.29.16.1    bouyer 	for (i = 0; i < nfst; i++) {
    387  1.29.16.1    bouyer 		if (strcmp(fst[i].f_fstypename, "ffs") != 0 ||
    388  1.29.16.1    bouyer 		    (fst[i].f_flag & ST_QUOTA) == 0)
    389        1.1       cgd 			continue;
    390  1.29.16.1    bouyer 		if (filesys && strcmp(fst[i].f_mntonname, filesys) != 0 &&
    391  1.29.16.1    bouyer 		    strcmp(fst[i].f_mntfromname, filesys) != 0)
    392        1.1       cgd 			continue;
    393  1.29.16.1    bouyer 		qup = getprivs2(id, quotatype, fst[i].f_mntonname, defaultq);
    394  1.29.16.1    bouyer 		if (qup == NULL)
    395  1.29.16.1    bouyer 			return NULL;
    396  1.29.16.1    bouyer 		if (quphead == NULL)
    397  1.29.16.1    bouyer 			quphead = qup;
    398  1.29.16.1    bouyer 		else
    399  1.29.16.1    bouyer 			quptail->next = qup;
    400  1.29.16.1    bouyer 		quptail = qup;
    401  1.29.16.1    bouyer 		qup->next = 0;
    402  1.29.16.1    bouyer 	}
    403        1.1       cgd 
    404  1.29.16.7    bouyer 	if (filesys && quphead == NULL) {
    405  1.29.16.1    bouyer 		if (defaultq)
    406  1.29.16.1    bouyer 			errx(1, "no default quota for version 1");
    407  1.29.16.1    bouyer 		/* if we get there, filesys is not mounted. try the old way */
    408  1.29.16.1    bouyer 		qup = getprivs1(id, quotatype, filesys);
    409  1.29.16.7    bouyer 		if (qup == NULL)
    410  1.29.16.7    bouyer 			return NULL;
    411        1.1       cgd 		if (quphead == NULL)
    412        1.1       cgd 			quphead = qup;
    413        1.1       cgd 		else
    414        1.1       cgd 			quptail->next = qup;
    415        1.1       cgd 		quptail = qup;
    416        1.1       cgd 		qup->next = 0;
    417        1.1       cgd 	}
    418  1.29.16.1    bouyer 	return quphead;
    419  1.29.16.1    bouyer }
    420  1.29.16.1    bouyer 
    421  1.29.16.1    bouyer struct quotause *
    422  1.29.16.1    bouyer getprivs2(long id, int quotatype, const char *filesys, int defaultq)
    423  1.29.16.1    bouyer {
    424  1.29.16.1    bouyer 	struct quotause *qup;
    425  1.29.16.3    bouyer 	int8_t version;
    426  1.29.16.3    bouyer 
    427  1.29.16.1    bouyer 	if ((qup = (struct quotause *)malloc(sizeof(*qup))) == NULL)
    428  1.29.16.1    bouyer 		errx(2, "out of memory");
    429  1.29.16.3    bouyer 	memset(qup, 0, sizeof(*qup));
    430  1.29.16.1    bouyer 	strcpy(qup->fsname, filesys);
    431  1.29.16.1    bouyer 	if (defaultq)
    432  1.29.16.1    bouyer 		qup->flags |= DEFAULT;
    433  1.29.16.3    bouyer 	if (!getvfsquota(filesys, &qup->q2e, &version,
    434  1.29.16.3    bouyer 	    id, quotatype, defaultq, Dflag)) {
    435  1.29.16.1    bouyer 		/* no entry, get default entry */
    436  1.29.16.3    bouyer 		if (!getvfsquota(filesys, &qup->q2e, &version,
    437  1.29.16.3    bouyer 		    id, quotatype, 1, Dflag)) {
    438  1.29.16.3    bouyer 			free(qup);
    439  1.29.16.1    bouyer 			return NULL;
    440  1.29.16.3    bouyer 		}
    441  1.29.16.1    bouyer 	}
    442  1.29.16.3    bouyer 	if (version == 2)
    443  1.29.16.3    bouyer 		qup->flags |= QUOTA2;
    444  1.29.16.3    bouyer 	qup->q2e.q2e_uid = id;
    445  1.29.16.1    bouyer 	return qup;
    446  1.29.16.1    bouyer }
    447  1.29.16.1    bouyer 
    448  1.29.16.1    bouyer struct quotause *
    449  1.29.16.1    bouyer getprivs1(long id, int quotatype, const char *filesys)
    450  1.29.16.1    bouyer {
    451  1.29.16.1    bouyer 	struct fstab *fs;
    452  1.29.16.1    bouyer 	char *qfpathname;
    453  1.29.16.1    bouyer 	struct quotause *qup;
    454  1.29.16.1    bouyer 	struct dqblk dqblk;
    455  1.29.16.1    bouyer 	int fd;
    456  1.29.16.1    bouyer 
    457  1.29.16.1    bouyer 	setfsent();
    458  1.29.16.1    bouyer 	while ((fs = getfsent()) != NULL) {
    459  1.29.16.1    bouyer 		if (strcmp(fs->fs_vfstype, "ffs"))
    460  1.29.16.1    bouyer 			continue;
    461  1.29.16.1    bouyer 		if (strcmp(fs->fs_spec, filesys) == 0 ||
    462  1.29.16.1    bouyer 		    strcmp(fs->fs_file, filesys) == 0)
    463  1.29.16.1    bouyer 			break;
    464  1.29.16.1    bouyer 	}
    465  1.29.16.1    bouyer 	if (fs == NULL)
    466  1.29.16.1    bouyer 		return NULL;
    467  1.29.16.1    bouyer 
    468  1.29.16.1    bouyer 	if (!hasquota(fs, quotatype, &qfpathname))
    469  1.29.16.1    bouyer 		return NULL;
    470  1.29.16.1    bouyer 	if ((qup = (struct quotause *)malloc(sizeof(*qup))) == NULL)
    471  1.29.16.1    bouyer 		errx(2, "out of memory");
    472  1.29.16.1    bouyer 	strcpy(qup->fsname, fs->fs_file);
    473  1.29.16.1    bouyer 	if ((fd = open(qfpathname, O_RDONLY)) < 0) {
    474  1.29.16.1    bouyer 		fd = open(qfpathname, O_RDWR|O_CREAT, 0640);
    475  1.29.16.1    bouyer 		if (fd < 0 && errno != ENOENT) {
    476  1.29.16.1    bouyer 			warnx("open `%s'", qfpathname);
    477  1.29.16.1    bouyer 			freeq(qup);
    478  1.29.16.1    bouyer 			return NULL;
    479  1.29.16.1    bouyer 		}
    480  1.29.16.1    bouyer 		warnx("Creating quota file %s", qfpathname);
    481  1.29.16.1    bouyer 		sleep(3);
    482  1.29.16.1    bouyer 		(void) fchown(fd, getuid(),
    483  1.29.16.1    bouyer 		    getentry(quotagroup, GRPQUOTA));
    484  1.29.16.1    bouyer 		(void) fchmod(fd, 0640);
    485  1.29.16.1    bouyer 	}
    486  1.29.16.1    bouyer 	(void)lseek(fd, (off_t)(id * sizeof(struct dqblk)),
    487  1.29.16.1    bouyer 	    SEEK_SET);
    488  1.29.16.1    bouyer 	switch (read(fd, &dqblk, sizeof(struct dqblk))) {
    489  1.29.16.1    bouyer 	case 0:			/* EOF */
    490  1.29.16.1    bouyer 		/*
    491  1.29.16.1    bouyer 		 * Convert implicit 0 quota (EOF)
    492  1.29.16.1    bouyer 		 * into an explicit one (zero'ed dqblk)
    493  1.29.16.1    bouyer 		 */
    494  1.29.16.1    bouyer 		memset((caddr_t)&dqblk, 0,
    495  1.29.16.1    bouyer 		    sizeof(struct dqblk));
    496  1.29.16.1    bouyer 		break;
    497  1.29.16.1    bouyer 
    498  1.29.16.1    bouyer 	case sizeof(struct dqblk):	/* OK */
    499  1.29.16.1    bouyer 		break;
    500  1.29.16.1    bouyer 
    501  1.29.16.1    bouyer 	default:		/* ERROR */
    502  1.29.16.1    bouyer 		warn("read error in `%s'", qfpathname);
    503  1.29.16.1    bouyer 		close(fd);
    504  1.29.16.1    bouyer 		freeq(qup);
    505  1.29.16.1    bouyer 		return NULL;
    506  1.29.16.1    bouyer 	}
    507  1.29.16.1    bouyer 	close(fd);
    508  1.29.16.1    bouyer 	qup->qfname = qfpathname;
    509        1.1       cgd 	endfsent();
    510  1.29.16.1    bouyer 	dqblk2q2e(&dqblk, &qup->q2e);
    511  1.29.16.1    bouyer 	return (qup);
    512        1.1       cgd }
    513        1.1       cgd 
    514        1.1       cgd /*
    515        1.1       cgd  * Store the requested quota information.
    516        1.1       cgd  */
    517       1.12     mikel void
    518  1.29.16.1    bouyer putprivs(long id, int quotatype, struct quotause *quplist)
    519        1.1       cgd {
    520       1.15     lukem 	struct quotause *qup;
    521        1.1       cgd 
    522  1.29.16.1    bouyer         for (qup = quplist; qup; qup = qup->next) {
    523  1.29.16.3    bouyer 		if (qup->qfname == NULL)
    524  1.29.16.1    bouyer 			putprivs2(id, quotatype, qup);
    525  1.29.16.1    bouyer 		else
    526  1.29.16.1    bouyer 			putprivs1(id, quotatype, qup);
    527  1.29.16.1    bouyer 	}
    528  1.29.16.1    bouyer }
    529  1.29.16.1    bouyer 
    530  1.29.16.1    bouyer void
    531  1.29.16.1    bouyer putprivs2(long id, int quotatype, struct quotause *qup)
    532  1.29.16.1    bouyer {
    533  1.29.16.1    bouyer 
    534  1.29.16.1    bouyer 	prop_dictionary_t dict, data, cmd;
    535  1.29.16.1    bouyer 	prop_array_t cmds, datas;
    536  1.29.16.1    bouyer 	struct plistref pref;
    537  1.29.16.1    bouyer 	int error;
    538  1.29.16.1    bouyer 	int8_t error8;
    539  1.29.16.1    bouyer 
    540  1.29.16.1    bouyer 	qup->q2e.q2e_uid = id;
    541  1.29.16.1    bouyer 	data = q2etoprop(&qup->q2e, (qup->flags & DEFAULT) ? 1 : 0);
    542  1.29.16.1    bouyer 
    543  1.29.16.1    bouyer 	if (data == NULL)
    544  1.29.16.1    bouyer 		err(1, "q2etoprop(id)");
    545  1.29.16.1    bouyer 
    546  1.29.16.1    bouyer 	dict = quota2_prop_create();
    547  1.29.16.1    bouyer 	cmds = prop_array_create();
    548  1.29.16.1    bouyer 	datas = prop_array_create();
    549  1.29.16.1    bouyer 
    550  1.29.16.1    bouyer 	if (dict == NULL || cmds == NULL || datas == NULL) {
    551  1.29.16.1    bouyer 		errx(1, "can't allocate proplist");
    552  1.29.16.1    bouyer 	}
    553  1.29.16.1    bouyer 
    554  1.29.16.1    bouyer 	if (!prop_array_add_and_rel(datas, data))
    555  1.29.16.1    bouyer 		err(1, "prop_array_add(data)");
    556  1.29.16.1    bouyer 
    557  1.29.16.1    bouyer 	if (!quota2_prop_add_command(cmds, "set",
    558  1.29.16.1    bouyer 	    qfextension[quotatype], datas))
    559  1.29.16.1    bouyer 		err(1, "prop_add_command");
    560  1.29.16.1    bouyer 	if (!prop_dictionary_set(dict, "commands", cmds))
    561  1.29.16.1    bouyer 		err(1, "prop_dictionary_set(command)");
    562  1.29.16.1    bouyer 	if (Dflag)
    563  1.29.16.1    bouyer 		printf("message to kernel:\n%s\n",
    564  1.29.16.1    bouyer 		    prop_dictionary_externalize(dict));
    565  1.29.16.1    bouyer 
    566  1.29.16.1    bouyer 	if (!prop_dictionary_send_syscall(dict, &pref))
    567  1.29.16.1    bouyer 		err(1, "prop_dictionary_send_syscall");
    568  1.29.16.1    bouyer 	prop_object_release(dict);
    569  1.29.16.1    bouyer 
    570  1.29.16.1    bouyer 	if (quotactl(qup->fsname, &pref) != 0)
    571  1.29.16.1    bouyer 		err(1, "quotactl");
    572  1.29.16.1    bouyer 
    573  1.29.16.1    bouyer 	if ((error = prop_dictionary_recv_syscall(&pref, &dict)) != 0) {
    574  1.29.16.1    bouyer 		errx(1, "prop_dictionary_recv_syscall: %s\n",
    575  1.29.16.1    bouyer 		    strerror(error));
    576  1.29.16.1    bouyer 	}
    577  1.29.16.1    bouyer 
    578  1.29.16.1    bouyer 	if (Dflag)
    579  1.29.16.1    bouyer 		printf("reply from kernel:\n%s\n",
    580  1.29.16.1    bouyer 		    prop_dictionary_externalize(dict));
    581  1.29.16.1    bouyer 
    582  1.29.16.1    bouyer 	if ((error = quota2_get_cmds(dict, &cmds)) != 0) {
    583  1.29.16.1    bouyer 		errx(1, "quota2_get_cmds: %s\n",
    584  1.29.16.1    bouyer 		    strerror(error));
    585  1.29.16.1    bouyer 	}
    586  1.29.16.1    bouyer 	/* only one command, no need to iter */
    587  1.29.16.1    bouyer 	cmd = prop_array_get(cmds, 0);
    588  1.29.16.1    bouyer 	if (cmd == NULL)
    589  1.29.16.1    bouyer 		err(1, "prop_array_get(cmd)");
    590  1.29.16.1    bouyer 
    591  1.29.16.1    bouyer 	if (!prop_dictionary_get_int8(cmd, "return", &error8))
    592  1.29.16.1    bouyer 		err(1, "prop_get(return)");
    593  1.29.16.1    bouyer 
    594  1.29.16.1    bouyer 	if (error8) {
    595  1.29.16.1    bouyer 		if (qup->flags & DEFAULT)
    596  1.29.16.1    bouyer 			fprintf(stderr, "set default %s quota: %s\n",
    597  1.29.16.1    bouyer 			    qfextension[quotatype], strerror(error8));
    598  1.29.16.1    bouyer 		else
    599  1.29.16.1    bouyer 			fprintf(stderr, "set %s quota for %ld: %s\n",
    600  1.29.16.1    bouyer 			    qfextension[quotatype], id, strerror(error8));
    601  1.29.16.1    bouyer 	}
    602  1.29.16.1    bouyer 	prop_object_release(dict);
    603  1.29.16.1    bouyer }
    604  1.29.16.1    bouyer 
    605  1.29.16.1    bouyer void
    606  1.29.16.1    bouyer putprivs1(long id, int quotatype, struct quotause *qup)
    607  1.29.16.1    bouyer {
    608  1.29.16.1    bouyer 	struct dqblk dqblk;
    609  1.29.16.1    bouyer 	int fd;
    610  1.29.16.1    bouyer 
    611  1.29.16.1    bouyer 	q2e2dqblk(&qup->q2e, &dqblk);
    612  1.29.16.1    bouyer 	assert((qup->flags & DEFAULT) == 0);
    613  1.29.16.1    bouyer 
    614  1.29.16.1    bouyer 	if ((fd = open(qup->qfname, O_WRONLY)) < 0) {
    615  1.29.16.1    bouyer 		warnx("open `%s'", qup->qfname);
    616  1.29.16.1    bouyer 	} else {
    617  1.29.16.1    bouyer 		(void)lseek(fd,
    618  1.29.16.1    bouyer 		    (off_t)(id * (long)sizeof (struct dqblk)),
    619  1.29.16.1    bouyer 		    SEEK_SET);
    620  1.29.16.1    bouyer 		if (write(fd, &dqblk, sizeof (struct dqblk)) !=
    621  1.29.16.1    bouyer 		    sizeof (struct dqblk))
    622  1.29.16.1    bouyer 			warnx("writing `%s'", qup->qfname);
    623  1.29.16.1    bouyer 		close(fd);
    624        1.1       cgd 	}
    625        1.1       cgd }
    626        1.1       cgd 
    627        1.1       cgd /*
    628       1.18    simonb  * Take a list of privileges and get it edited.
    629        1.1       cgd  */
    630       1.12     mikel int
    631       1.28   xtraeme editit(ltmpfile)
    632       1.28   xtraeme 	char *ltmpfile;
    633        1.1       cgd {
    634        1.1       cgd 	long omask;
    635       1.28   xtraeme 	int pid, lst;
    636       1.23      jonb 	char p[MAX_TMPSTR];
    637        1.1       cgd 
    638        1.1       cgd 	omask = sigblock(sigmask(SIGINT)|sigmask(SIGQUIT)|sigmask(SIGHUP));
    639        1.1       cgd  top:
    640        1.1       cgd 	if ((pid = fork()) < 0) {
    641        1.1       cgd 
    642        1.1       cgd 		if (errno == EPROCLIM) {
    643       1.15     lukem 			warnx("You have too many processes");
    644        1.1       cgd 			return(0);
    645        1.1       cgd 		}
    646        1.1       cgd 		if (errno == EAGAIN) {
    647        1.1       cgd 			sleep(1);
    648        1.1       cgd 			goto top;
    649        1.1       cgd 		}
    650       1.15     lukem 		warn("fork");
    651        1.1       cgd 		return (0);
    652        1.1       cgd 	}
    653        1.1       cgd 	if (pid == 0) {
    654       1.28   xtraeme 		const char *ed;
    655        1.1       cgd 
    656        1.1       cgd 		sigsetmask(omask);
    657        1.1       cgd 		setgid(getgid());
    658        1.1       cgd 		setuid(getuid());
    659        1.1       cgd 		if ((ed = getenv("EDITOR")) == (char *)0)
    660        1.1       cgd 			ed = _PATH_VI;
    661       1.28   xtraeme 		if (strlen(ed) + strlen(ltmpfile) + 2 >= MAX_TMPSTR) {
    662       1.23      jonb 			err (1, "%s", "editor or filename too long");
    663       1.23      jonb 		}
    664       1.28   xtraeme 		snprintf (p, MAX_TMPSTR, "%s %s", ed, ltmpfile);
    665       1.23      jonb 		execlp(_PATH_BSHELL, _PATH_BSHELL, "-c", p, NULL);
    666       1.15     lukem 		err(1, "%s", ed);
    667        1.1       cgd 	}
    668       1.28   xtraeme 	waitpid(pid, &lst, 0);
    669        1.1       cgd 	sigsetmask(omask);
    670       1.28   xtraeme 	if (!WIFEXITED(lst) || WEXITSTATUS(lst) != 0)
    671        1.1       cgd 		return (0);
    672        1.1       cgd 	return (1);
    673        1.1       cgd }
    674        1.1       cgd 
    675        1.1       cgd /*
    676        1.1       cgd  * Convert a quotause list to an ASCII file.
    677        1.1       cgd  */
    678       1.12     mikel int
    679        1.1       cgd writeprivs(quplist, outfd, name, quotatype)
    680        1.1       cgd 	struct quotause *quplist;
    681        1.1       cgd 	int outfd;
    682        1.1       cgd 	char *name;
    683        1.1       cgd 	int quotatype;
    684        1.1       cgd {
    685       1.15     lukem 	struct quotause *qup;
    686        1.1       cgd 	FILE *fd;
    687        1.1       cgd 
    688        1.1       cgd 	ftruncate(outfd, 0);
    689       1.14    kleink 	(void)lseek(outfd, (off_t)0, SEEK_SET);
    690       1.15     lukem 	if ((fd = fdopen(dup(outfd), "w")) == NULL)
    691       1.15     lukem 		errx(1, "fdopen `%s'", tmpfil);
    692  1.29.16.2    bouyer 	if (dflag) {
    693  1.29.16.1    bouyer 		fprintf(fd, "Default %s quotas:\n", qfextension[quotatype]);
    694  1.29.16.1    bouyer 	} else {
    695  1.29.16.1    bouyer 		fprintf(fd, "Quotas for %s %s:\n",
    696  1.29.16.1    bouyer 		    qfextension[quotatype], name);
    697  1.29.16.1    bouyer 	}
    698        1.1       cgd 	for (qup = quplist; qup; qup = qup->next) {
    699  1.29.16.5    bouyer 		fprintf(fd, "%s: %s %s, limits (soft = %s, hard = %s",
    700        1.1       cgd 		    qup->fsname, "blocks in use:",
    701  1.29.16.6    bouyer 		    intprt(qup->q2e.q2e_val[QL_BLOCK].q2v_cur,
    702  1.29.16.4    bouyer 			HN_NOSPACE | HN_B, Hflag, 20),
    703  1.29.16.6    bouyer 		    intprt(qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit,
    704  1.29.16.4    bouyer 			HN_NOSPACE | HN_B, Hflag, 20),
    705  1.29.16.6    bouyer 		    intprt(qup->q2e.q2e_val[QL_BLOCK].q2v_hardlimit,
    706  1.29.16.4    bouyer 			HN_NOSPACE | HN_B, Hflag, 20));
    707  1.29.16.5    bouyer 		if (qup->flags & (QUOTA2|DEFAULT)) {
    708  1.29.16.5    bouyer 		    fprintf(fd, ", grace = %s",
    709  1.29.16.6    bouyer 			timepprt(qup->q2e.q2e_val[QL_BLOCK].q2v_grace,
    710  1.29.16.5    bouyer 			    Hflag, 20));
    711  1.29.16.5    bouyer 		}
    712  1.29.16.5    bouyer 		fprintf(fd, ")\n");
    713  1.29.16.5    bouyer 		fprintf(fd, "%s %s, limits (soft = %s, hard = %s",
    714  1.29.16.1    bouyer 		    "\tinodes in use:",
    715  1.29.16.6    bouyer 		    intprt(qup->q2e.q2e_val[QL_FILE].q2v_cur,
    716  1.29.16.4    bouyer 			HN_NOSPACE, Hflag, 20),
    717  1.29.16.6    bouyer 		    intprt(qup->q2e.q2e_val[QL_FILE].q2v_softlimit,
    718  1.29.16.4    bouyer 			HN_NOSPACE, Hflag, 20),
    719  1.29.16.6    bouyer 		    intprt(qup->q2e.q2e_val[QL_FILE].q2v_hardlimit,
    720  1.29.16.4    bouyer 			 HN_NOSPACE, Hflag, 20));
    721  1.29.16.5    bouyer 		if (qup->flags & (QUOTA2|DEFAULT)) {
    722  1.29.16.5    bouyer 		    fprintf(fd, ", grace = %s",
    723  1.29.16.6    bouyer 			timepprt(qup->q2e.q2e_val[QL_FILE].q2v_grace,
    724  1.29.16.5    bouyer 			    Hflag, 20));
    725  1.29.16.5    bouyer 		}
    726  1.29.16.5    bouyer 		fprintf(fd, ")\n");
    727        1.1       cgd 	}
    728        1.1       cgd 	fclose(fd);
    729        1.1       cgd 	return (1);
    730        1.1       cgd }
    731        1.1       cgd 
    732        1.1       cgd /*
    733        1.1       cgd  * Merge changes to an ASCII file into a quotause list.
    734        1.1       cgd  */
    735       1.12     mikel int
    736        1.1       cgd readprivs(quplist, infd)
    737        1.1       cgd 	struct quotause *quplist;
    738        1.1       cgd 	int infd;
    739        1.1       cgd {
    740       1.15     lukem 	struct quotause *qup;
    741        1.1       cgd 	FILE *fd;
    742        1.1       cgd 	int cnt;
    743       1.15     lukem 	char *cp;
    744  1.29.16.1    bouyer 	char *fsp;
    745  1.29.16.1    bouyer 	static char line1[BUFSIZ], line2[BUFSIZ];
    746  1.29.16.1    bouyer 	static char scurb[BUFSIZ], scuri[BUFSIZ], ssoft[BUFSIZ], shard[BUFSIZ];
    747  1.29.16.5    bouyer 	static char stime[BUFSIZ];
    748  1.29.16.1    bouyer 	uint64_t softb, hardb, softi, hardi;
    749  1.29.16.5    bouyer 	time_t graceb = -1, gracei = -1;
    750        1.1       cgd 
    751       1.14    kleink 	(void)lseek(infd, (off_t)0, SEEK_SET);
    752        1.1       cgd 	fd = fdopen(dup(infd), "r");
    753        1.1       cgd 	if (fd == NULL) {
    754       1.15     lukem 		warn("Can't re-read temp file");
    755        1.1       cgd 		return (0);
    756        1.1       cgd 	}
    757        1.1       cgd 	/*
    758        1.1       cgd 	 * Discard title line, then read pairs of lines to process.
    759        1.1       cgd 	 */
    760        1.1       cgd 	(void) fgets(line1, sizeof (line1), fd);
    761        1.1       cgd 	while (fgets(line1, sizeof (line1), fd) != NULL &&
    762        1.1       cgd 	       fgets(line2, sizeof (line2), fd) != NULL) {
    763        1.1       cgd 		if ((fsp = strtok(line1, " \t:")) == NULL) {
    764  1.29.16.5    bouyer 			warnx("%s: bad format", line1);
    765       1.26  christos 			goto out;
    766        1.1       cgd 		}
    767        1.1       cgd 		if ((cp = strtok((char *)0, "\n")) == NULL) {
    768  1.29.16.5    bouyer 			warnx("%s: %s: bad format", fsp,
    769        1.1       cgd 			    &fsp[strlen(fsp) + 1]);
    770       1.26  christos 			goto out;
    771        1.1       cgd 		}
    772  1.29.16.1    bouyer #define last_char(str) ((str)[strlen(str) - 1])
    773        1.1       cgd 		cnt = sscanf(cp,
    774  1.29.16.5    bouyer 		    " blocks in use: %s limits (soft = %s hard = %s "
    775  1.29.16.5    bouyer 		    "grace = %s\n", scurb, ssoft, shard, stime);
    776  1.29.16.5    bouyer 		if (cnt == 3) {
    777  1.29.16.5    bouyer 			if (last_char(scurb) != ',' ||
    778  1.29.16.5    bouyer 			    last_char(ssoft) != ',' ||
    779  1.29.16.5    bouyer 			    last_char(shard) != ')') {
    780  1.29.16.5    bouyer 				warnx("%s:%s: bad format %d", fsp, cp, cnt);
    781  1.29.16.5    bouyer 				goto out;
    782  1.29.16.5    bouyer 			}
    783  1.29.16.5    bouyer 			stime[0] = '\0';
    784  1.29.16.5    bouyer 		} else if (cnt == 4) {
    785  1.29.16.5    bouyer 			if (last_char(scurb) != ',' ||
    786  1.29.16.5    bouyer 			    last_char(ssoft) != ',' ||
    787  1.29.16.5    bouyer 			    last_char(shard) != ',' ||
    788  1.29.16.5    bouyer 			    last_char(stime) != ')') {
    789  1.29.16.5    bouyer 				warnx("%s:%s: bad format %d", fsp, cp, cnt);
    790  1.29.16.5    bouyer 				goto out;
    791  1.29.16.5    bouyer 			}
    792  1.29.16.5    bouyer 		} else {
    793  1.29.16.5    bouyer 			warnx("%s: %s: bad format", fsp, line2);
    794  1.29.16.1    bouyer 			goto out;
    795  1.29.16.1    bouyer 		}
    796  1.29.16.1    bouyer 		/* drop last char which is ',' or ')' */
    797  1.29.16.1    bouyer 		last_char(scurb) = '\0';
    798  1.29.16.1    bouyer 		last_char(ssoft) = '\0';
    799  1.29.16.1    bouyer 		last_char(shard) = '\0';
    800  1.29.16.5    bouyer 		last_char(stime) = '\0';
    801  1.29.16.1    bouyer 
    802  1.29.16.1    bouyer 		if (intrd(ssoft, &softb, HN_B) != 0) {
    803  1.29.16.1    bouyer 			warnx("%s:%s: bad number", fsp, ssoft);
    804  1.29.16.1    bouyer 			goto out;
    805  1.29.16.1    bouyer 		}
    806  1.29.16.1    bouyer 		if (intrd(shard, &hardb, HN_B) != 0) {
    807  1.29.16.1    bouyer 			warnx("%s:%s: bad number", fsp, shard);
    808       1.26  christos 			goto out;
    809        1.1       cgd 		}
    810  1.29.16.5    bouyer 		if (cnt == 4) {
    811  1.29.16.5    bouyer 			if (timeprd(stime, &graceb) != 0) {
    812  1.29.16.5    bouyer 				warnx("%s:%s: bad number", fsp, shard);
    813  1.29.16.5    bouyer 				goto out;
    814  1.29.16.5    bouyer 			}
    815  1.29.16.5    bouyer 		}
    816  1.29.16.5    bouyer 
    817        1.1       cgd 		if ((cp = strtok(line2, "\n")) == NULL) {
    818  1.29.16.5    bouyer 			warnx("%s: %s: bad format", fsp, line2);
    819       1.26  christos 			goto out;
    820        1.1       cgd 		}
    821        1.1       cgd 		cnt = sscanf(cp,
    822  1.29.16.5    bouyer 		    "\tinodes in use: %s limits (soft = %s hard = %s "
    823  1.29.16.5    bouyer 		    "grace = %s\n", scuri, ssoft, shard, stime);
    824  1.29.16.5    bouyer 		if (cnt == 3) {
    825  1.29.16.5    bouyer 			if (last_char(scuri) != ',' ||
    826  1.29.16.5    bouyer 			    last_char(ssoft) != ',' ||
    827  1.29.16.5    bouyer 			    last_char(shard) != ')') {
    828  1.29.16.5    bouyer 				warnx("%s:%s: bad format %d", fsp, cp, cnt);
    829  1.29.16.5    bouyer 				goto out;
    830  1.29.16.5    bouyer 			}
    831  1.29.16.5    bouyer 			stime[0] = '\0';
    832  1.29.16.5    bouyer 		} else if (cnt == 4) {
    833  1.29.16.5    bouyer 			if (last_char(scuri) != ',' ||
    834  1.29.16.5    bouyer 			    last_char(ssoft) != ',' ||
    835  1.29.16.5    bouyer 			    last_char(shard) != ',' ||
    836  1.29.16.5    bouyer 			    last_char(stime) != ')') {
    837  1.29.16.5    bouyer 				warnx("%s:%s: bad format %d", fsp, cp, cnt);
    838  1.29.16.5    bouyer 				goto out;
    839  1.29.16.5    bouyer 			}
    840  1.29.16.5    bouyer 		} else {
    841  1.29.16.5    bouyer 			warnx("%s: %s: bad format", fsp, line2);
    842  1.29.16.1    bouyer 			goto out;
    843  1.29.16.1    bouyer 		}
    844  1.29.16.1    bouyer 		/* drop last char which is ',' or ')' */
    845  1.29.16.1    bouyer 		last_char(scuri) = '\0';
    846  1.29.16.1    bouyer 		last_char(ssoft) = '\0';
    847  1.29.16.1    bouyer 		last_char(shard) = '\0';
    848  1.29.16.5    bouyer 		last_char(stime) = '\0';
    849  1.29.16.1    bouyer 		if (intrd(ssoft, &softi, 0) != 0) {
    850  1.29.16.1    bouyer 			warnx("%s:%s: bad number", fsp, ssoft);
    851  1.29.16.1    bouyer 			goto out;
    852  1.29.16.1    bouyer 		}
    853  1.29.16.1    bouyer 		if (intrd(shard, &hardi, 0) != 0) {
    854  1.29.16.1    bouyer 			warnx("%s:%s: bad number", fsp, shard);
    855       1.27   jnemeth 			goto out;
    856        1.1       cgd 		}
    857  1.29.16.5    bouyer 		if (cnt == 4) {
    858  1.29.16.5    bouyer 			if (timeprd(stime, &gracei) != 0) {
    859  1.29.16.5    bouyer 				warnx("%s:%s: bad number", fsp, shard);
    860  1.29.16.5    bouyer 				goto out;
    861  1.29.16.5    bouyer 			}
    862  1.29.16.5    bouyer 		}
    863        1.1       cgd 		for (qup = quplist; qup; qup = qup->next) {
    864        1.1       cgd 			if (strcmp(fsp, qup->fsname))
    865        1.1       cgd 				continue;
    866  1.29.16.6    bouyer 			if (strcmp(intprt(qup->q2e.q2e_val[QL_BLOCK].q2v_cur,
    867  1.29.16.4    bouyer 			    HN_NOSPACE | HN_B, Hflag, 20),
    868  1.29.16.1    bouyer 			    scurb) != 0 ||
    869  1.29.16.6    bouyer 			    strcmp(intprt(qup->q2e.q2e_val[QL_FILE].q2v_cur,
    870  1.29.16.4    bouyer 			    HN_NOSPACE, Hflag, 20),
    871  1.29.16.1    bouyer 			    scuri) != 0) {
    872  1.29.16.1    bouyer 				warnx("%s: cannot change current allocation",
    873  1.29.16.1    bouyer 				    fsp);
    874  1.29.16.1    bouyer 				break;
    875  1.29.16.1    bouyer 			}
    876        1.1       cgd 			/*
    877        1.1       cgd 			 * Cause time limit to be reset when the quota
    878        1.1       cgd 			 * is next used if previously had no soft limit
    879        1.1       cgd 			 * or were under it, but now have a soft limit
    880        1.1       cgd 			 * and are over it.
    881        1.1       cgd 			 */
    882  1.29.16.6    bouyer 			if (qup->q2e.q2e_val[QL_BLOCK].q2v_cur &&
    883  1.29.16.6    bouyer 			    qup->q2e.q2e_val[QL_BLOCK].q2v_cur >= softb &&
    884  1.29.16.6    bouyer 			    (qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit == 0 ||
    885  1.29.16.6    bouyer 			     qup->q2e.q2e_val[QL_BLOCK].q2v_cur <
    886  1.29.16.6    bouyer 			     qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit))
    887  1.29.16.6    bouyer 				qup->q2e.q2e_val[QL_BLOCK].q2v_time = 0;
    888  1.29.16.6    bouyer 			if (qup->q2e.q2e_val[QL_FILE].q2v_cur &&
    889  1.29.16.6    bouyer 			    qup->q2e.q2e_val[QL_FILE].q2v_cur >= softi &&
    890  1.29.16.6    bouyer 			    (qup->q2e.q2e_val[QL_FILE].q2v_softlimit == 0 ||
    891  1.29.16.6    bouyer 			     qup->q2e.q2e_val[QL_FILE].q2v_cur <
    892  1.29.16.6    bouyer 			     qup->q2e.q2e_val[QL_FILE].q2v_softlimit))
    893  1.29.16.6    bouyer 				qup->q2e.q2e_val[QL_FILE].q2v_time = 0;
    894  1.29.16.6    bouyer 			qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit = softb;
    895  1.29.16.6    bouyer 			qup->q2e.q2e_val[QL_BLOCK].q2v_hardlimit = hardb;
    896  1.29.16.5    bouyer 			if (graceb >= 0)
    897  1.29.16.6    bouyer 				qup->q2e.q2e_val[QL_BLOCK].q2v_grace = graceb;
    898  1.29.16.6    bouyer 			qup->q2e.q2e_val[QL_FILE].q2v_softlimit  = softi;
    899  1.29.16.6    bouyer 			qup->q2e.q2e_val[QL_FILE].q2v_hardlimit  = hardi;
    900  1.29.16.5    bouyer 			if (gracei >= 0)
    901  1.29.16.6    bouyer 				qup->q2e.q2e_val[QL_FILE].q2v_grace = gracei;
    902        1.1       cgd 			qup->flags |= FOUND;
    903        1.1       cgd 		}
    904        1.1       cgd 	}
    905       1.27   jnemeth out:
    906        1.1       cgd 	fclose(fd);
    907        1.1       cgd 	/*
    908        1.1       cgd 	 * Disable quotas for any filesystems that have not been found.
    909        1.1       cgd 	 */
    910        1.1       cgd 	for (qup = quplist; qup; qup = qup->next) {
    911        1.1       cgd 		if (qup->flags & FOUND) {
    912        1.1       cgd 			qup->flags &= ~FOUND;
    913        1.1       cgd 			continue;
    914        1.1       cgd 		}
    915  1.29.16.6    bouyer 		qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit = UQUAD_MAX;
    916  1.29.16.6    bouyer 		qup->q2e.q2e_val[QL_BLOCK].q2v_hardlimit = UQUAD_MAX;
    917  1.29.16.6    bouyer 		qup->q2e.q2e_val[QL_FILE].q2v_softlimit = UQUAD_MAX;
    918  1.29.16.6    bouyer 		qup->q2e.q2e_val[QL_FILE].q2v_hardlimit = UQUAD_MAX;
    919        1.1       cgd 	}
    920        1.1       cgd 	return (1);
    921        1.1       cgd }
    922        1.1       cgd 
    923        1.1       cgd /*
    924        1.1       cgd  * Convert a quotause list to an ASCII file of grace times.
    925        1.1       cgd  */
    926       1.12     mikel int
    927        1.1       cgd writetimes(quplist, outfd, quotatype)
    928        1.1       cgd 	struct quotause *quplist;
    929        1.1       cgd 	int outfd;
    930        1.1       cgd 	int quotatype;
    931        1.1       cgd {
    932       1.15     lukem 	struct quotause *qup;
    933        1.1       cgd 	FILE *fd;
    934        1.1       cgd 
    935        1.1       cgd 	ftruncate(outfd, 0);
    936       1.14    kleink 	(void)lseek(outfd, (off_t)0, SEEK_SET);
    937       1.15     lukem 	if ((fd = fdopen(dup(outfd), "w")) == NULL)
    938       1.15     lukem 		err(1, "fdopen `%s'", tmpfil);
    939        1.1       cgd 	fprintf(fd, "Time units may be: days, hours, minutes, or seconds\n");
    940        1.1       cgd 	fprintf(fd, "Grace period before enforcing soft limits for %ss:\n",
    941        1.1       cgd 	    qfextension[quotatype]);
    942        1.1       cgd 	for (qup = quplist; qup; qup = qup->next) {
    943        1.1       cgd 		fprintf(fd, "%s: block grace period: %s, ",
    944  1.29.16.6    bouyer 		    qup->fsname, cvtstoa(qup->q2e.q2e_val[QL_BLOCK].q2v_time));
    945        1.1       cgd 		fprintf(fd, "file grace period: %s\n",
    946  1.29.16.6    bouyer 		    cvtstoa(qup->q2e.q2e_val[QL_FILE].q2v_time));
    947        1.1       cgd 	}
    948        1.1       cgd 	fclose(fd);
    949        1.1       cgd 	return (1);
    950        1.1       cgd }
    951        1.1       cgd 
    952        1.1       cgd /*
    953        1.1       cgd  * Merge changes of grace times in an ASCII file into a quotause list.
    954        1.1       cgd  */
    955       1.12     mikel int
    956        1.1       cgd readtimes(quplist, infd)
    957        1.1       cgd 	struct quotause *quplist;
    958        1.1       cgd 	int infd;
    959        1.1       cgd {
    960       1.15     lukem 	struct quotause *qup;
    961        1.1       cgd 	FILE *fd;
    962        1.1       cgd 	int cnt;
    963       1.15     lukem 	char *cp;
    964       1.15     lukem 	long litime, lbtime;
    965        1.1       cgd 	time_t itime, btime, iseconds, bseconds;
    966        1.1       cgd 	char *fsp, bunits[10], iunits[10], line1[BUFSIZ];
    967        1.1       cgd 
    968       1.14    kleink 	(void)lseek(infd, (off_t)0, SEEK_SET);
    969        1.1       cgd 	fd = fdopen(dup(infd), "r");
    970        1.1       cgd 	if (fd == NULL) {
    971       1.15     lukem 		warnx("Can't re-read temp file!!");
    972        1.1       cgd 		return (0);
    973        1.1       cgd 	}
    974        1.1       cgd 	/*
    975        1.1       cgd 	 * Discard two title lines, then read lines to process.
    976        1.1       cgd 	 */
    977        1.1       cgd 	(void) fgets(line1, sizeof (line1), fd);
    978        1.1       cgd 	(void) fgets(line1, sizeof (line1), fd);
    979        1.1       cgd 	while (fgets(line1, sizeof (line1), fd) != NULL) {
    980        1.1       cgd 		if ((fsp = strtok(line1, " \t:")) == NULL) {
    981  1.29.16.5    bouyer 			warnx("%s: bad format", line1);
    982       1.26  christos 			goto bad;
    983        1.1       cgd 		}
    984        1.1       cgd 		if ((cp = strtok((char *)0, "\n")) == NULL) {
    985  1.29.16.5    bouyer 			warnx("%s: %s: bad format", fsp,
    986        1.1       cgd 			    &fsp[strlen(fsp) + 1]);
    987       1.26  christos 			goto bad;
    988        1.1       cgd 		}
    989        1.1       cgd 		cnt = sscanf(cp,
    990       1.15     lukem 		    " block grace period: %ld %s file grace period: %ld %s",
    991       1.15     lukem 		    &lbtime, bunits, &litime, iunits);
    992        1.1       cgd 		if (cnt != 4) {
    993  1.29.16.5    bouyer 			warnx("%s:%s: bad format", fsp, cp);
    994       1.26  christos 			goto bad;
    995        1.1       cgd 		}
    996       1.15     lukem 		itime = (time_t)litime;
    997       1.15     lukem 		btime = (time_t)lbtime;
    998        1.1       cgd 		if (cvtatos(btime, bunits, &bseconds) == 0)
    999       1.26  christos 			goto bad;
   1000       1.26  christos 		if (cvtatos(itime, iunits, &iseconds) == 0) {
   1001       1.26  christos bad:
   1002       1.26  christos 			(void)fclose(fd);
   1003        1.1       cgd 			return (0);
   1004       1.26  christos 		}
   1005        1.1       cgd 		for (qup = quplist; qup; qup = qup->next) {
   1006        1.1       cgd 			if (strcmp(fsp, qup->fsname))
   1007        1.1       cgd 				continue;
   1008  1.29.16.6    bouyer 			qup->q2e.q2e_val[QL_BLOCK].q2v_time = bseconds;
   1009  1.29.16.6    bouyer 			qup->q2e.q2e_val[QL_FILE].q2v_time = iseconds;
   1010        1.1       cgd 			qup->flags |= FOUND;
   1011        1.1       cgd 			break;
   1012        1.1       cgd 		}
   1013        1.1       cgd 	}
   1014       1.26  christos 	(void)fclose(fd);
   1015        1.1       cgd 	/*
   1016        1.1       cgd 	 * reset default grace periods for any filesystems
   1017        1.1       cgd 	 * that have not been found.
   1018        1.1       cgd 	 */
   1019        1.1       cgd 	for (qup = quplist; qup; qup = qup->next) {
   1020        1.1       cgd 		if (qup->flags & FOUND) {
   1021        1.1       cgd 			qup->flags &= ~FOUND;
   1022        1.1       cgd 			continue;
   1023        1.1       cgd 		}
   1024  1.29.16.6    bouyer 		qup->q2e.q2e_val[QL_BLOCK].q2v_time = 0;
   1025  1.29.16.6    bouyer 		qup->q2e.q2e_val[QL_FILE].q2v_time = 0;
   1026        1.1       cgd 	}
   1027        1.1       cgd 	return (1);
   1028        1.1       cgd }
   1029        1.1       cgd 
   1030        1.1       cgd /*
   1031        1.1       cgd  * Convert seconds to ASCII times.
   1032        1.1       cgd  */
   1033        1.1       cgd char *
   1034       1.28   xtraeme cvtstoa(ltime)
   1035       1.28   xtraeme 	time_t ltime;
   1036        1.1       cgd {
   1037        1.1       cgd 	static char buf[20];
   1038        1.1       cgd 
   1039       1.28   xtraeme 	if (ltime % (24 * 60 * 60) == 0) {
   1040       1.28   xtraeme 		ltime /= 24 * 60 * 60;
   1041       1.28   xtraeme 		snprintf(buf, sizeof buf, "%ld day%s", (long)ltime,
   1042       1.28   xtraeme 		    ltime == 1 ? "" : "s");
   1043       1.28   xtraeme 	} else if (ltime % (60 * 60) == 0) {
   1044       1.28   xtraeme 		ltime /= 60 * 60;
   1045       1.28   xtraeme 		sprintf(buf, "%ld hour%s", (long)ltime, ltime == 1 ? "" : "s");
   1046       1.28   xtraeme 	} else if (ltime % 60 == 0) {
   1047       1.28   xtraeme 		ltime /= 60;
   1048       1.28   xtraeme 		sprintf(buf, "%ld minute%s", (long)ltime, ltime == 1 ? "" : "s");
   1049        1.1       cgd 	} else
   1050       1.28   xtraeme 		sprintf(buf, "%ld second%s", (long)ltime, ltime == 1 ? "" : "s");
   1051        1.1       cgd 	return (buf);
   1052        1.1       cgd }
   1053        1.1       cgd 
   1054        1.1       cgd /*
   1055        1.1       cgd  * Convert ASCII input times to seconds.
   1056        1.1       cgd  */
   1057       1.12     mikel int
   1058       1.28   xtraeme cvtatos(ltime, units, seconds)
   1059       1.28   xtraeme 	time_t ltime;
   1060        1.1       cgd 	char *units;
   1061        1.1       cgd 	time_t *seconds;
   1062        1.1       cgd {
   1063        1.1       cgd 
   1064       1.15     lukem 	if (memcmp(units, "second", 6) == 0)
   1065       1.28   xtraeme 		*seconds = ltime;
   1066       1.15     lukem 	else if (memcmp(units, "minute", 6) == 0)
   1067       1.28   xtraeme 		*seconds = ltime * 60;
   1068       1.15     lukem 	else if (memcmp(units, "hour", 4) == 0)
   1069       1.28   xtraeme 		*seconds = ltime * 60 * 60;
   1070       1.15     lukem 	else if (memcmp(units, "day", 3) == 0)
   1071       1.28   xtraeme 		*seconds = ltime * 24 * 60 * 60;
   1072        1.1       cgd 	else {
   1073        1.1       cgd 		printf("%s: bad units, specify %s\n", units,
   1074        1.1       cgd 		    "days, hours, minutes, or seconds");
   1075        1.1       cgd 		return (0);
   1076        1.1       cgd 	}
   1077        1.1       cgd 	return (1);
   1078        1.1       cgd }
   1079        1.1       cgd 
   1080        1.1       cgd /*
   1081  1.29.16.1    bouyer  * Free a quotause structure.
   1082  1.29.16.1    bouyer  */
   1083  1.29.16.1    bouyer void
   1084  1.29.16.1    bouyer freeq(struct quotause *qup)
   1085  1.29.16.1    bouyer {
   1086  1.29.16.1    bouyer 	if (qup->qfname)
   1087  1.29.16.1    bouyer 		free(qup->qfname);
   1088  1.29.16.1    bouyer 	free(qup);
   1089  1.29.16.1    bouyer }
   1090  1.29.16.1    bouyer 
   1091  1.29.16.1    bouyer /*
   1092        1.1       cgd  * Free a list of quotause structures.
   1093        1.1       cgd  */
   1094       1.12     mikel void
   1095        1.1       cgd freeprivs(quplist)
   1096        1.1       cgd 	struct quotause *quplist;
   1097        1.1       cgd {
   1098       1.15     lukem 	struct quotause *qup, *nextqup;
   1099        1.1       cgd 
   1100        1.1       cgd 	for (qup = quplist; qup; qup = nextqup) {
   1101        1.1       cgd 		nextqup = qup->next;
   1102  1.29.16.1    bouyer 		freeq(qup);
   1103        1.1       cgd 	}
   1104        1.1       cgd }
   1105        1.1       cgd 
   1106        1.1       cgd /*
   1107        1.1       cgd  * Check whether a string is completely composed of digits.
   1108        1.1       cgd  */
   1109       1.12     mikel int
   1110        1.1       cgd alldigits(s)
   1111       1.28   xtraeme 	const char *s;
   1112        1.1       cgd {
   1113       1.15     lukem 	int c;
   1114        1.1       cgd 
   1115        1.1       cgd 	c = *s++;
   1116        1.1       cgd 	do {
   1117        1.1       cgd 		if (!isdigit(c))
   1118        1.1       cgd 			return (0);
   1119       1.15     lukem 	} while ((c = *s++) != 0);
   1120        1.1       cgd 	return (1);
   1121        1.1       cgd }
   1122        1.1       cgd 
   1123        1.1       cgd /*
   1124  1.29.16.3    bouyer  * Check to see if a particular legacy quota is to be enabled in fstab
   1125        1.1       cgd  */
   1126       1.12     mikel int
   1127        1.1       cgd hasquota(fs, type, qfnamep)
   1128       1.15     lukem 	struct fstab *fs;
   1129        1.1       cgd 	int type;
   1130        1.1       cgd 	char **qfnamep;
   1131        1.1       cgd {
   1132       1.15     lukem 	char *opt;
   1133       1.15     lukem 	char *cp;
   1134        1.1       cgd 	static char initname, usrname[100], grpname[100];
   1135  1.29.16.1    bouyer 	char *buf;
   1136        1.1       cgd 
   1137        1.1       cgd 	if (!initname) {
   1138        1.1       cgd 		sprintf(usrname, "%s%s", qfextension[USRQUOTA], qfname);
   1139        1.1       cgd 		sprintf(grpname, "%s%s", qfextension[GRPQUOTA], qfname);
   1140        1.1       cgd 		initname = 1;
   1141        1.1       cgd 	}
   1142  1.29.16.1    bouyer 	buf =  fs->fs_mntops;
   1143       1.16       mrg 	cp = NULL;
   1144        1.1       cgd 	for (opt = strtok(buf, ","); opt; opt = strtok(NULL, ",")) {
   1145       1.15     lukem 		if ((cp = strchr(opt, '=')) != NULL)
   1146        1.1       cgd 			*cp++ = '\0';
   1147        1.1       cgd 		if (type == USRQUOTA && strcmp(opt, usrname) == 0)
   1148        1.1       cgd 			break;
   1149        1.1       cgd 		if (type == GRPQUOTA && strcmp(opt, grpname) == 0)
   1150        1.1       cgd 			break;
   1151        1.1       cgd 	}
   1152  1.29.16.1    bouyer 	if (!opt) {
   1153  1.29.16.1    bouyer 		*qfnamep = NULL;
   1154        1.1       cgd 		return (0);
   1155  1.29.16.1    bouyer 	}
   1156        1.1       cgd 	if (cp) {
   1157  1.29.16.1    bouyer 		*qfnamep = malloc(strlen(cp) + 1);
   1158  1.29.16.1    bouyer 		if (*qfnamep == NULL)
   1159  1.29.16.1    bouyer 			err(1, "malloc");
   1160  1.29.16.1    bouyer 		strcpy(*qfnamep, cp);
   1161        1.1       cgd 		return (1);
   1162        1.1       cgd 	}
   1163  1.29.16.1    bouyer 	*qfnamep = malloc(BUFSIZ);
   1164  1.29.16.1    bouyer 	if (*qfnamep == NULL)
   1165  1.29.16.1    bouyer 		err(1, "malloc");
   1166  1.29.16.1    bouyer 	(void) sprintf(*qfnamep, "%s/%s.%s", fs->fs_file, qfname,
   1167  1.29.16.1    bouyer 	    qfextension[type]);
   1168        1.1       cgd 	return (1);
   1169        1.1       cgd }
   1170