edquota.c revision 1.29.16.6 1 1.29.16.6 bouyer /* $NetBSD: edquota.c,v 1.29.16.6 2011/01/31 15:26:31 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.6 bouyer __RCSID("$NetBSD: edquota.c,v 1.29.16.6 2011/01/31 15:26:31 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.1 bouyer if (filesys) {
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.1 cgd if (quphead == NULL)
410 1.1 cgd quphead = qup;
411 1.1 cgd else
412 1.1 cgd quptail->next = qup;
413 1.1 cgd quptail = qup;
414 1.1 cgd qup->next = 0;
415 1.1 cgd }
416 1.29.16.1 bouyer return quphead;
417 1.29.16.1 bouyer }
418 1.29.16.1 bouyer
419 1.29.16.1 bouyer struct quotause *
420 1.29.16.1 bouyer getprivs2(long id, int quotatype, const char *filesys, int defaultq)
421 1.29.16.1 bouyer {
422 1.29.16.1 bouyer struct quotause *qup;
423 1.29.16.3 bouyer int8_t version;
424 1.29.16.3 bouyer
425 1.29.16.1 bouyer if ((qup = (struct quotause *)malloc(sizeof(*qup))) == NULL)
426 1.29.16.1 bouyer errx(2, "out of memory");
427 1.29.16.3 bouyer memset(qup, 0, sizeof(*qup));
428 1.29.16.1 bouyer strcpy(qup->fsname, filesys);
429 1.29.16.1 bouyer if (defaultq)
430 1.29.16.1 bouyer qup->flags |= DEFAULT;
431 1.29.16.3 bouyer if (!getvfsquota(filesys, &qup->q2e, &version,
432 1.29.16.3 bouyer id, quotatype, defaultq, Dflag)) {
433 1.29.16.1 bouyer /* no entry, get default entry */
434 1.29.16.3 bouyer if (!getvfsquota(filesys, &qup->q2e, &version,
435 1.29.16.3 bouyer id, quotatype, 1, Dflag)) {
436 1.29.16.3 bouyer free(qup);
437 1.29.16.1 bouyer return NULL;
438 1.29.16.3 bouyer }
439 1.29.16.1 bouyer }
440 1.29.16.3 bouyer if (version == 2)
441 1.29.16.3 bouyer qup->flags |= QUOTA2;
442 1.29.16.3 bouyer qup->q2e.q2e_uid = id;
443 1.29.16.1 bouyer return qup;
444 1.29.16.1 bouyer }
445 1.29.16.1 bouyer
446 1.29.16.1 bouyer struct quotause *
447 1.29.16.1 bouyer getprivs1(long id, int quotatype, const char *filesys)
448 1.29.16.1 bouyer {
449 1.29.16.1 bouyer struct fstab *fs;
450 1.29.16.1 bouyer char *qfpathname;
451 1.29.16.1 bouyer struct quotause *qup;
452 1.29.16.1 bouyer struct dqblk dqblk;
453 1.29.16.1 bouyer int fd;
454 1.29.16.1 bouyer
455 1.29.16.1 bouyer setfsent();
456 1.29.16.1 bouyer while ((fs = getfsent()) != NULL) {
457 1.29.16.1 bouyer if (strcmp(fs->fs_vfstype, "ffs"))
458 1.29.16.1 bouyer continue;
459 1.29.16.1 bouyer if (strcmp(fs->fs_spec, filesys) == 0 ||
460 1.29.16.1 bouyer strcmp(fs->fs_file, filesys) == 0)
461 1.29.16.1 bouyer break;
462 1.29.16.1 bouyer }
463 1.29.16.1 bouyer if (fs == NULL)
464 1.29.16.1 bouyer return NULL;
465 1.29.16.1 bouyer
466 1.29.16.1 bouyer if (!hasquota(fs, quotatype, &qfpathname))
467 1.29.16.1 bouyer return NULL;
468 1.29.16.1 bouyer if ((qup = (struct quotause *)malloc(sizeof(*qup))) == NULL)
469 1.29.16.1 bouyer errx(2, "out of memory");
470 1.29.16.1 bouyer strcpy(qup->fsname, fs->fs_file);
471 1.29.16.1 bouyer if ((fd = open(qfpathname, O_RDONLY)) < 0) {
472 1.29.16.1 bouyer fd = open(qfpathname, O_RDWR|O_CREAT, 0640);
473 1.29.16.1 bouyer if (fd < 0 && errno != ENOENT) {
474 1.29.16.1 bouyer warnx("open `%s'", qfpathname);
475 1.29.16.1 bouyer freeq(qup);
476 1.29.16.1 bouyer return NULL;
477 1.29.16.1 bouyer }
478 1.29.16.1 bouyer warnx("Creating quota file %s", qfpathname);
479 1.29.16.1 bouyer sleep(3);
480 1.29.16.1 bouyer (void) fchown(fd, getuid(),
481 1.29.16.1 bouyer getentry(quotagroup, GRPQUOTA));
482 1.29.16.1 bouyer (void) fchmod(fd, 0640);
483 1.29.16.1 bouyer }
484 1.29.16.1 bouyer (void)lseek(fd, (off_t)(id * sizeof(struct dqblk)),
485 1.29.16.1 bouyer SEEK_SET);
486 1.29.16.1 bouyer switch (read(fd, &dqblk, sizeof(struct dqblk))) {
487 1.29.16.1 bouyer case 0: /* EOF */
488 1.29.16.1 bouyer /*
489 1.29.16.1 bouyer * Convert implicit 0 quota (EOF)
490 1.29.16.1 bouyer * into an explicit one (zero'ed dqblk)
491 1.29.16.1 bouyer */
492 1.29.16.1 bouyer memset((caddr_t)&dqblk, 0,
493 1.29.16.1 bouyer sizeof(struct dqblk));
494 1.29.16.1 bouyer break;
495 1.29.16.1 bouyer
496 1.29.16.1 bouyer case sizeof(struct dqblk): /* OK */
497 1.29.16.1 bouyer break;
498 1.29.16.1 bouyer
499 1.29.16.1 bouyer default: /* ERROR */
500 1.29.16.1 bouyer warn("read error in `%s'", qfpathname);
501 1.29.16.1 bouyer close(fd);
502 1.29.16.1 bouyer freeq(qup);
503 1.29.16.1 bouyer return NULL;
504 1.29.16.1 bouyer }
505 1.29.16.1 bouyer close(fd);
506 1.29.16.1 bouyer qup->qfname = qfpathname;
507 1.1 cgd endfsent();
508 1.29.16.1 bouyer dqblk2q2e(&dqblk, &qup->q2e);
509 1.29.16.1 bouyer return (qup);
510 1.1 cgd }
511 1.1 cgd
512 1.1 cgd /*
513 1.1 cgd * Store the requested quota information.
514 1.1 cgd */
515 1.12 mikel void
516 1.29.16.1 bouyer putprivs(long id, int quotatype, struct quotause *quplist)
517 1.1 cgd {
518 1.15 lukem struct quotause *qup;
519 1.1 cgd
520 1.29.16.1 bouyer for (qup = quplist; qup; qup = qup->next) {
521 1.29.16.3 bouyer if (qup->qfname == NULL)
522 1.29.16.1 bouyer putprivs2(id, quotatype, qup);
523 1.29.16.1 bouyer else
524 1.29.16.1 bouyer putprivs1(id, quotatype, qup);
525 1.29.16.1 bouyer }
526 1.29.16.1 bouyer }
527 1.29.16.1 bouyer
528 1.29.16.1 bouyer void
529 1.29.16.1 bouyer putprivs2(long id, int quotatype, struct quotause *qup)
530 1.29.16.1 bouyer {
531 1.29.16.1 bouyer
532 1.29.16.1 bouyer prop_dictionary_t dict, data, cmd;
533 1.29.16.1 bouyer prop_array_t cmds, datas;
534 1.29.16.1 bouyer struct plistref pref;
535 1.29.16.1 bouyer int error;
536 1.29.16.1 bouyer int8_t error8;
537 1.29.16.1 bouyer
538 1.29.16.1 bouyer qup->q2e.q2e_uid = id;
539 1.29.16.1 bouyer data = q2etoprop(&qup->q2e, (qup->flags & DEFAULT) ? 1 : 0);
540 1.29.16.1 bouyer
541 1.29.16.1 bouyer if (data == NULL)
542 1.29.16.1 bouyer err(1, "q2etoprop(id)");
543 1.29.16.1 bouyer
544 1.29.16.1 bouyer dict = quota2_prop_create();
545 1.29.16.1 bouyer cmds = prop_array_create();
546 1.29.16.1 bouyer datas = prop_array_create();
547 1.29.16.1 bouyer
548 1.29.16.1 bouyer if (dict == NULL || cmds == NULL || datas == NULL) {
549 1.29.16.1 bouyer errx(1, "can't allocate proplist");
550 1.29.16.1 bouyer }
551 1.29.16.1 bouyer
552 1.29.16.1 bouyer if (!prop_array_add_and_rel(datas, data))
553 1.29.16.1 bouyer err(1, "prop_array_add(data)");
554 1.29.16.1 bouyer
555 1.29.16.1 bouyer if (!quota2_prop_add_command(cmds, "set",
556 1.29.16.1 bouyer qfextension[quotatype], datas))
557 1.29.16.1 bouyer err(1, "prop_add_command");
558 1.29.16.1 bouyer if (!prop_dictionary_set(dict, "commands", cmds))
559 1.29.16.1 bouyer err(1, "prop_dictionary_set(command)");
560 1.29.16.1 bouyer if (Dflag)
561 1.29.16.1 bouyer printf("message to kernel:\n%s\n",
562 1.29.16.1 bouyer prop_dictionary_externalize(dict));
563 1.29.16.1 bouyer
564 1.29.16.1 bouyer if (!prop_dictionary_send_syscall(dict, &pref))
565 1.29.16.1 bouyer err(1, "prop_dictionary_send_syscall");
566 1.29.16.1 bouyer prop_object_release(dict);
567 1.29.16.1 bouyer
568 1.29.16.1 bouyer if (quotactl(qup->fsname, &pref) != 0)
569 1.29.16.1 bouyer err(1, "quotactl");
570 1.29.16.1 bouyer
571 1.29.16.1 bouyer if ((error = prop_dictionary_recv_syscall(&pref, &dict)) != 0) {
572 1.29.16.1 bouyer errx(1, "prop_dictionary_recv_syscall: %s\n",
573 1.29.16.1 bouyer strerror(error));
574 1.29.16.1 bouyer }
575 1.29.16.1 bouyer
576 1.29.16.1 bouyer if (Dflag)
577 1.29.16.1 bouyer printf("reply from kernel:\n%s\n",
578 1.29.16.1 bouyer prop_dictionary_externalize(dict));
579 1.29.16.1 bouyer
580 1.29.16.1 bouyer if ((error = quota2_get_cmds(dict, &cmds)) != 0) {
581 1.29.16.1 bouyer errx(1, "quota2_get_cmds: %s\n",
582 1.29.16.1 bouyer strerror(error));
583 1.29.16.1 bouyer }
584 1.29.16.1 bouyer /* only one command, no need to iter */
585 1.29.16.1 bouyer cmd = prop_array_get(cmds, 0);
586 1.29.16.1 bouyer if (cmd == NULL)
587 1.29.16.1 bouyer err(1, "prop_array_get(cmd)");
588 1.29.16.1 bouyer
589 1.29.16.1 bouyer if (!prop_dictionary_get_int8(cmd, "return", &error8))
590 1.29.16.1 bouyer err(1, "prop_get(return)");
591 1.29.16.1 bouyer
592 1.29.16.1 bouyer if (error8) {
593 1.29.16.1 bouyer if (qup->flags & DEFAULT)
594 1.29.16.1 bouyer fprintf(stderr, "set default %s quota: %s\n",
595 1.29.16.1 bouyer qfextension[quotatype], strerror(error8));
596 1.29.16.1 bouyer else
597 1.29.16.1 bouyer fprintf(stderr, "set %s quota for %ld: %s\n",
598 1.29.16.1 bouyer qfextension[quotatype], id, strerror(error8));
599 1.29.16.1 bouyer }
600 1.29.16.1 bouyer prop_object_release(dict);
601 1.29.16.1 bouyer }
602 1.29.16.1 bouyer
603 1.29.16.1 bouyer void
604 1.29.16.1 bouyer putprivs1(long id, int quotatype, struct quotause *qup)
605 1.29.16.1 bouyer {
606 1.29.16.1 bouyer struct dqblk dqblk;
607 1.29.16.1 bouyer int fd;
608 1.29.16.1 bouyer
609 1.29.16.1 bouyer q2e2dqblk(&qup->q2e, &dqblk);
610 1.29.16.1 bouyer assert((qup->flags & DEFAULT) == 0);
611 1.29.16.1 bouyer
612 1.29.16.1 bouyer if ((fd = open(qup->qfname, O_WRONLY)) < 0) {
613 1.29.16.1 bouyer warnx("open `%s'", qup->qfname);
614 1.29.16.1 bouyer } else {
615 1.29.16.1 bouyer (void)lseek(fd,
616 1.29.16.1 bouyer (off_t)(id * (long)sizeof (struct dqblk)),
617 1.29.16.1 bouyer SEEK_SET);
618 1.29.16.1 bouyer if (write(fd, &dqblk, sizeof (struct dqblk)) !=
619 1.29.16.1 bouyer sizeof (struct dqblk))
620 1.29.16.1 bouyer warnx("writing `%s'", qup->qfname);
621 1.29.16.1 bouyer close(fd);
622 1.1 cgd }
623 1.1 cgd }
624 1.1 cgd
625 1.1 cgd /*
626 1.18 simonb * Take a list of privileges and get it edited.
627 1.1 cgd */
628 1.12 mikel int
629 1.28 xtraeme editit(ltmpfile)
630 1.28 xtraeme char *ltmpfile;
631 1.1 cgd {
632 1.1 cgd long omask;
633 1.28 xtraeme int pid, lst;
634 1.23 jonb char p[MAX_TMPSTR];
635 1.1 cgd
636 1.1 cgd omask = sigblock(sigmask(SIGINT)|sigmask(SIGQUIT)|sigmask(SIGHUP));
637 1.1 cgd top:
638 1.1 cgd if ((pid = fork()) < 0) {
639 1.1 cgd
640 1.1 cgd if (errno == EPROCLIM) {
641 1.15 lukem warnx("You have too many processes");
642 1.1 cgd return(0);
643 1.1 cgd }
644 1.1 cgd if (errno == EAGAIN) {
645 1.1 cgd sleep(1);
646 1.1 cgd goto top;
647 1.1 cgd }
648 1.15 lukem warn("fork");
649 1.1 cgd return (0);
650 1.1 cgd }
651 1.1 cgd if (pid == 0) {
652 1.28 xtraeme const char *ed;
653 1.1 cgd
654 1.1 cgd sigsetmask(omask);
655 1.1 cgd setgid(getgid());
656 1.1 cgd setuid(getuid());
657 1.1 cgd if ((ed = getenv("EDITOR")) == (char *)0)
658 1.1 cgd ed = _PATH_VI;
659 1.28 xtraeme if (strlen(ed) + strlen(ltmpfile) + 2 >= MAX_TMPSTR) {
660 1.23 jonb err (1, "%s", "editor or filename too long");
661 1.23 jonb }
662 1.28 xtraeme snprintf (p, MAX_TMPSTR, "%s %s", ed, ltmpfile);
663 1.23 jonb execlp(_PATH_BSHELL, _PATH_BSHELL, "-c", p, NULL);
664 1.15 lukem err(1, "%s", ed);
665 1.1 cgd }
666 1.28 xtraeme waitpid(pid, &lst, 0);
667 1.1 cgd sigsetmask(omask);
668 1.28 xtraeme if (!WIFEXITED(lst) || WEXITSTATUS(lst) != 0)
669 1.1 cgd return (0);
670 1.1 cgd return (1);
671 1.1 cgd }
672 1.1 cgd
673 1.1 cgd /*
674 1.1 cgd * Convert a quotause list to an ASCII file.
675 1.1 cgd */
676 1.12 mikel int
677 1.1 cgd writeprivs(quplist, outfd, name, quotatype)
678 1.1 cgd struct quotause *quplist;
679 1.1 cgd int outfd;
680 1.1 cgd char *name;
681 1.1 cgd int quotatype;
682 1.1 cgd {
683 1.15 lukem struct quotause *qup;
684 1.1 cgd FILE *fd;
685 1.1 cgd
686 1.1 cgd ftruncate(outfd, 0);
687 1.14 kleink (void)lseek(outfd, (off_t)0, SEEK_SET);
688 1.15 lukem if ((fd = fdopen(dup(outfd), "w")) == NULL)
689 1.15 lukem errx(1, "fdopen `%s'", tmpfil);
690 1.29.16.2 bouyer if (dflag) {
691 1.29.16.1 bouyer fprintf(fd, "Default %s quotas:\n", qfextension[quotatype]);
692 1.29.16.1 bouyer } else {
693 1.29.16.1 bouyer fprintf(fd, "Quotas for %s %s:\n",
694 1.29.16.1 bouyer qfextension[quotatype], name);
695 1.29.16.1 bouyer }
696 1.1 cgd for (qup = quplist; qup; qup = qup->next) {
697 1.29.16.5 bouyer fprintf(fd, "%s: %s %s, limits (soft = %s, hard = %s",
698 1.1 cgd qup->fsname, "blocks in use:",
699 1.29.16.6 bouyer intprt(qup->q2e.q2e_val[QL_BLOCK].q2v_cur,
700 1.29.16.4 bouyer HN_NOSPACE | HN_B, Hflag, 20),
701 1.29.16.6 bouyer intprt(qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit,
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_hardlimit,
704 1.29.16.4 bouyer HN_NOSPACE | HN_B, Hflag, 20));
705 1.29.16.5 bouyer if (qup->flags & (QUOTA2|DEFAULT)) {
706 1.29.16.5 bouyer fprintf(fd, ", grace = %s",
707 1.29.16.6 bouyer timepprt(qup->q2e.q2e_val[QL_BLOCK].q2v_grace,
708 1.29.16.5 bouyer Hflag, 20));
709 1.29.16.5 bouyer }
710 1.29.16.5 bouyer fprintf(fd, ")\n");
711 1.29.16.5 bouyer fprintf(fd, "%s %s, limits (soft = %s, hard = %s",
712 1.29.16.1 bouyer "\tinodes in use:",
713 1.29.16.6 bouyer intprt(qup->q2e.q2e_val[QL_FILE].q2v_cur,
714 1.29.16.4 bouyer HN_NOSPACE, Hflag, 20),
715 1.29.16.6 bouyer intprt(qup->q2e.q2e_val[QL_FILE].q2v_softlimit,
716 1.29.16.4 bouyer HN_NOSPACE, Hflag, 20),
717 1.29.16.6 bouyer intprt(qup->q2e.q2e_val[QL_FILE].q2v_hardlimit,
718 1.29.16.4 bouyer HN_NOSPACE, Hflag, 20));
719 1.29.16.5 bouyer if (qup->flags & (QUOTA2|DEFAULT)) {
720 1.29.16.5 bouyer fprintf(fd, ", grace = %s",
721 1.29.16.6 bouyer timepprt(qup->q2e.q2e_val[QL_FILE].q2v_grace,
722 1.29.16.5 bouyer Hflag, 20));
723 1.29.16.5 bouyer }
724 1.29.16.5 bouyer fprintf(fd, ")\n");
725 1.1 cgd }
726 1.1 cgd fclose(fd);
727 1.1 cgd return (1);
728 1.1 cgd }
729 1.1 cgd
730 1.1 cgd /*
731 1.1 cgd * Merge changes to an ASCII file into a quotause list.
732 1.1 cgd */
733 1.12 mikel int
734 1.1 cgd readprivs(quplist, infd)
735 1.1 cgd struct quotause *quplist;
736 1.1 cgd int infd;
737 1.1 cgd {
738 1.15 lukem struct quotause *qup;
739 1.1 cgd FILE *fd;
740 1.1 cgd int cnt;
741 1.15 lukem char *cp;
742 1.29.16.1 bouyer char *fsp;
743 1.29.16.1 bouyer static char line1[BUFSIZ], line2[BUFSIZ];
744 1.29.16.1 bouyer static char scurb[BUFSIZ], scuri[BUFSIZ], ssoft[BUFSIZ], shard[BUFSIZ];
745 1.29.16.5 bouyer static char stime[BUFSIZ];
746 1.29.16.1 bouyer uint64_t softb, hardb, softi, hardi;
747 1.29.16.5 bouyer time_t graceb = -1, gracei = -1;
748 1.1 cgd
749 1.14 kleink (void)lseek(infd, (off_t)0, SEEK_SET);
750 1.1 cgd fd = fdopen(dup(infd), "r");
751 1.1 cgd if (fd == NULL) {
752 1.15 lukem warn("Can't re-read temp file");
753 1.1 cgd return (0);
754 1.1 cgd }
755 1.1 cgd /*
756 1.1 cgd * Discard title line, then read pairs of lines to process.
757 1.1 cgd */
758 1.1 cgd (void) fgets(line1, sizeof (line1), fd);
759 1.1 cgd while (fgets(line1, sizeof (line1), fd) != NULL &&
760 1.1 cgd fgets(line2, sizeof (line2), fd) != NULL) {
761 1.1 cgd if ((fsp = strtok(line1, " \t:")) == NULL) {
762 1.29.16.5 bouyer warnx("%s: bad format", line1);
763 1.26 christos goto out;
764 1.1 cgd }
765 1.1 cgd if ((cp = strtok((char *)0, "\n")) == NULL) {
766 1.29.16.5 bouyer warnx("%s: %s: bad format", fsp,
767 1.1 cgd &fsp[strlen(fsp) + 1]);
768 1.26 christos goto out;
769 1.1 cgd }
770 1.29.16.1 bouyer #define last_char(str) ((str)[strlen(str) - 1])
771 1.1 cgd cnt = sscanf(cp,
772 1.29.16.5 bouyer " blocks in use: %s limits (soft = %s hard = %s "
773 1.29.16.5 bouyer "grace = %s\n", scurb, ssoft, shard, stime);
774 1.29.16.5 bouyer if (cnt == 3) {
775 1.29.16.5 bouyer if (last_char(scurb) != ',' ||
776 1.29.16.5 bouyer last_char(ssoft) != ',' ||
777 1.29.16.5 bouyer last_char(shard) != ')') {
778 1.29.16.5 bouyer warnx("%s:%s: bad format %d", fsp, cp, cnt);
779 1.29.16.5 bouyer goto out;
780 1.29.16.5 bouyer }
781 1.29.16.5 bouyer stime[0] = '\0';
782 1.29.16.5 bouyer } else if (cnt == 4) {
783 1.29.16.5 bouyer if (last_char(scurb) != ',' ||
784 1.29.16.5 bouyer last_char(ssoft) != ',' ||
785 1.29.16.5 bouyer last_char(shard) != ',' ||
786 1.29.16.5 bouyer last_char(stime) != ')') {
787 1.29.16.5 bouyer warnx("%s:%s: bad format %d", fsp, cp, cnt);
788 1.29.16.5 bouyer goto out;
789 1.29.16.5 bouyer }
790 1.29.16.5 bouyer } else {
791 1.29.16.5 bouyer warnx("%s: %s: bad format", fsp, line2);
792 1.29.16.1 bouyer goto out;
793 1.29.16.1 bouyer }
794 1.29.16.1 bouyer /* drop last char which is ',' or ')' */
795 1.29.16.1 bouyer last_char(scurb) = '\0';
796 1.29.16.1 bouyer last_char(ssoft) = '\0';
797 1.29.16.1 bouyer last_char(shard) = '\0';
798 1.29.16.5 bouyer last_char(stime) = '\0';
799 1.29.16.1 bouyer
800 1.29.16.1 bouyer if (intrd(ssoft, &softb, HN_B) != 0) {
801 1.29.16.1 bouyer warnx("%s:%s: bad number", fsp, ssoft);
802 1.29.16.1 bouyer goto out;
803 1.29.16.1 bouyer }
804 1.29.16.1 bouyer if (intrd(shard, &hardb, HN_B) != 0) {
805 1.29.16.1 bouyer warnx("%s:%s: bad number", fsp, shard);
806 1.26 christos goto out;
807 1.1 cgd }
808 1.29.16.5 bouyer if (cnt == 4) {
809 1.29.16.5 bouyer if (timeprd(stime, &graceb) != 0) {
810 1.29.16.5 bouyer warnx("%s:%s: bad number", fsp, shard);
811 1.29.16.5 bouyer goto out;
812 1.29.16.5 bouyer }
813 1.29.16.5 bouyer }
814 1.29.16.5 bouyer
815 1.1 cgd if ((cp = strtok(line2, "\n")) == NULL) {
816 1.29.16.5 bouyer warnx("%s: %s: bad format", fsp, line2);
817 1.26 christos goto out;
818 1.1 cgd }
819 1.1 cgd cnt = sscanf(cp,
820 1.29.16.5 bouyer "\tinodes in use: %s limits (soft = %s hard = %s "
821 1.29.16.5 bouyer "grace = %s\n", scuri, ssoft, shard, stime);
822 1.29.16.5 bouyer if (cnt == 3) {
823 1.29.16.5 bouyer if (last_char(scuri) != ',' ||
824 1.29.16.5 bouyer last_char(ssoft) != ',' ||
825 1.29.16.5 bouyer last_char(shard) != ')') {
826 1.29.16.5 bouyer warnx("%s:%s: bad format %d", fsp, cp, cnt);
827 1.29.16.5 bouyer goto out;
828 1.29.16.5 bouyer }
829 1.29.16.5 bouyer stime[0] = '\0';
830 1.29.16.5 bouyer } else if (cnt == 4) {
831 1.29.16.5 bouyer if (last_char(scuri) != ',' ||
832 1.29.16.5 bouyer last_char(ssoft) != ',' ||
833 1.29.16.5 bouyer last_char(shard) != ',' ||
834 1.29.16.5 bouyer last_char(stime) != ')') {
835 1.29.16.5 bouyer warnx("%s:%s: bad format %d", fsp, cp, cnt);
836 1.29.16.5 bouyer goto out;
837 1.29.16.5 bouyer }
838 1.29.16.5 bouyer } else {
839 1.29.16.5 bouyer warnx("%s: %s: bad format", fsp, line2);
840 1.29.16.1 bouyer goto out;
841 1.29.16.1 bouyer }
842 1.29.16.1 bouyer /* drop last char which is ',' or ')' */
843 1.29.16.1 bouyer last_char(scuri) = '\0';
844 1.29.16.1 bouyer last_char(ssoft) = '\0';
845 1.29.16.1 bouyer last_char(shard) = '\0';
846 1.29.16.5 bouyer last_char(stime) = '\0';
847 1.29.16.1 bouyer if (intrd(ssoft, &softi, 0) != 0) {
848 1.29.16.1 bouyer warnx("%s:%s: bad number", fsp, ssoft);
849 1.29.16.1 bouyer goto out;
850 1.29.16.1 bouyer }
851 1.29.16.1 bouyer if (intrd(shard, &hardi, 0) != 0) {
852 1.29.16.1 bouyer warnx("%s:%s: bad number", fsp, shard);
853 1.27 jnemeth goto out;
854 1.1 cgd }
855 1.29.16.5 bouyer if (cnt == 4) {
856 1.29.16.5 bouyer if (timeprd(stime, &gracei) != 0) {
857 1.29.16.5 bouyer warnx("%s:%s: bad number", fsp, shard);
858 1.29.16.5 bouyer goto out;
859 1.29.16.5 bouyer }
860 1.29.16.5 bouyer }
861 1.1 cgd for (qup = quplist; qup; qup = qup->next) {
862 1.1 cgd if (strcmp(fsp, qup->fsname))
863 1.1 cgd continue;
864 1.29.16.6 bouyer if (strcmp(intprt(qup->q2e.q2e_val[QL_BLOCK].q2v_cur,
865 1.29.16.4 bouyer HN_NOSPACE | HN_B, Hflag, 20),
866 1.29.16.1 bouyer scurb) != 0 ||
867 1.29.16.6 bouyer strcmp(intprt(qup->q2e.q2e_val[QL_FILE].q2v_cur,
868 1.29.16.4 bouyer HN_NOSPACE, Hflag, 20),
869 1.29.16.1 bouyer scuri) != 0) {
870 1.29.16.1 bouyer warnx("%s: cannot change current allocation",
871 1.29.16.1 bouyer fsp);
872 1.29.16.1 bouyer break;
873 1.29.16.1 bouyer }
874 1.1 cgd /*
875 1.1 cgd * Cause time limit to be reset when the quota
876 1.1 cgd * is next used if previously had no soft limit
877 1.1 cgd * or were under it, but now have a soft limit
878 1.1 cgd * and are over it.
879 1.1 cgd */
880 1.29.16.6 bouyer if (qup->q2e.q2e_val[QL_BLOCK].q2v_cur &&
881 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_cur >= softb &&
882 1.29.16.6 bouyer (qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit == 0 ||
883 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_cur <
884 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit))
885 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_time = 0;
886 1.29.16.6 bouyer if (qup->q2e.q2e_val[QL_FILE].q2v_cur &&
887 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_cur >= softi &&
888 1.29.16.6 bouyer (qup->q2e.q2e_val[QL_FILE].q2v_softlimit == 0 ||
889 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_cur <
890 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_softlimit))
891 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_time = 0;
892 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit = softb;
893 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_hardlimit = hardb;
894 1.29.16.5 bouyer if (graceb >= 0)
895 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_grace = graceb;
896 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_softlimit = softi;
897 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_hardlimit = hardi;
898 1.29.16.5 bouyer if (gracei >= 0)
899 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_grace = gracei;
900 1.1 cgd qup->flags |= FOUND;
901 1.1 cgd }
902 1.1 cgd }
903 1.27 jnemeth out:
904 1.1 cgd fclose(fd);
905 1.1 cgd /*
906 1.1 cgd * Disable quotas for any filesystems that have not been found.
907 1.1 cgd */
908 1.1 cgd for (qup = quplist; qup; qup = qup->next) {
909 1.1 cgd if (qup->flags & FOUND) {
910 1.1 cgd qup->flags &= ~FOUND;
911 1.1 cgd continue;
912 1.1 cgd }
913 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_softlimit = UQUAD_MAX;
914 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_hardlimit = UQUAD_MAX;
915 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_softlimit = UQUAD_MAX;
916 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_hardlimit = UQUAD_MAX;
917 1.1 cgd }
918 1.1 cgd return (1);
919 1.1 cgd }
920 1.1 cgd
921 1.1 cgd /*
922 1.1 cgd * Convert a quotause list to an ASCII file of grace times.
923 1.1 cgd */
924 1.12 mikel int
925 1.1 cgd writetimes(quplist, outfd, quotatype)
926 1.1 cgd struct quotause *quplist;
927 1.1 cgd int outfd;
928 1.1 cgd int quotatype;
929 1.1 cgd {
930 1.15 lukem struct quotause *qup;
931 1.1 cgd FILE *fd;
932 1.1 cgd
933 1.1 cgd ftruncate(outfd, 0);
934 1.14 kleink (void)lseek(outfd, (off_t)0, SEEK_SET);
935 1.15 lukem if ((fd = fdopen(dup(outfd), "w")) == NULL)
936 1.15 lukem err(1, "fdopen `%s'", tmpfil);
937 1.1 cgd fprintf(fd, "Time units may be: days, hours, minutes, or seconds\n");
938 1.1 cgd fprintf(fd, "Grace period before enforcing soft limits for %ss:\n",
939 1.1 cgd qfextension[quotatype]);
940 1.1 cgd for (qup = quplist; qup; qup = qup->next) {
941 1.1 cgd fprintf(fd, "%s: block grace period: %s, ",
942 1.29.16.6 bouyer qup->fsname, cvtstoa(qup->q2e.q2e_val[QL_BLOCK].q2v_time));
943 1.1 cgd fprintf(fd, "file grace period: %s\n",
944 1.29.16.6 bouyer cvtstoa(qup->q2e.q2e_val[QL_FILE].q2v_time));
945 1.1 cgd }
946 1.1 cgd fclose(fd);
947 1.1 cgd return (1);
948 1.1 cgd }
949 1.1 cgd
950 1.1 cgd /*
951 1.1 cgd * Merge changes of grace times in an ASCII file into a quotause list.
952 1.1 cgd */
953 1.12 mikel int
954 1.1 cgd readtimes(quplist, infd)
955 1.1 cgd struct quotause *quplist;
956 1.1 cgd int infd;
957 1.1 cgd {
958 1.15 lukem struct quotause *qup;
959 1.1 cgd FILE *fd;
960 1.1 cgd int cnt;
961 1.15 lukem char *cp;
962 1.15 lukem long litime, lbtime;
963 1.1 cgd time_t itime, btime, iseconds, bseconds;
964 1.1 cgd char *fsp, bunits[10], iunits[10], line1[BUFSIZ];
965 1.1 cgd
966 1.14 kleink (void)lseek(infd, (off_t)0, SEEK_SET);
967 1.1 cgd fd = fdopen(dup(infd), "r");
968 1.1 cgd if (fd == NULL) {
969 1.15 lukem warnx("Can't re-read temp file!!");
970 1.1 cgd return (0);
971 1.1 cgd }
972 1.1 cgd /*
973 1.1 cgd * Discard two title lines, then read lines to process.
974 1.1 cgd */
975 1.1 cgd (void) fgets(line1, sizeof (line1), fd);
976 1.1 cgd (void) fgets(line1, sizeof (line1), fd);
977 1.1 cgd while (fgets(line1, sizeof (line1), fd) != NULL) {
978 1.1 cgd if ((fsp = strtok(line1, " \t:")) == NULL) {
979 1.29.16.5 bouyer warnx("%s: bad format", line1);
980 1.26 christos goto bad;
981 1.1 cgd }
982 1.1 cgd if ((cp = strtok((char *)0, "\n")) == NULL) {
983 1.29.16.5 bouyer warnx("%s: %s: bad format", fsp,
984 1.1 cgd &fsp[strlen(fsp) + 1]);
985 1.26 christos goto bad;
986 1.1 cgd }
987 1.1 cgd cnt = sscanf(cp,
988 1.15 lukem " block grace period: %ld %s file grace period: %ld %s",
989 1.15 lukem &lbtime, bunits, &litime, iunits);
990 1.1 cgd if (cnt != 4) {
991 1.29.16.5 bouyer warnx("%s:%s: bad format", fsp, cp);
992 1.26 christos goto bad;
993 1.1 cgd }
994 1.15 lukem itime = (time_t)litime;
995 1.15 lukem btime = (time_t)lbtime;
996 1.1 cgd if (cvtatos(btime, bunits, &bseconds) == 0)
997 1.26 christos goto bad;
998 1.26 christos if (cvtatos(itime, iunits, &iseconds) == 0) {
999 1.26 christos bad:
1000 1.26 christos (void)fclose(fd);
1001 1.1 cgd return (0);
1002 1.26 christos }
1003 1.1 cgd for (qup = quplist; qup; qup = qup->next) {
1004 1.1 cgd if (strcmp(fsp, qup->fsname))
1005 1.1 cgd continue;
1006 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_time = bseconds;
1007 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_time = iseconds;
1008 1.1 cgd qup->flags |= FOUND;
1009 1.1 cgd break;
1010 1.1 cgd }
1011 1.1 cgd }
1012 1.26 christos (void)fclose(fd);
1013 1.1 cgd /*
1014 1.1 cgd * reset default grace periods for any filesystems
1015 1.1 cgd * that have not been found.
1016 1.1 cgd */
1017 1.1 cgd for (qup = quplist; qup; qup = qup->next) {
1018 1.1 cgd if (qup->flags & FOUND) {
1019 1.1 cgd qup->flags &= ~FOUND;
1020 1.1 cgd continue;
1021 1.1 cgd }
1022 1.29.16.6 bouyer qup->q2e.q2e_val[QL_BLOCK].q2v_time = 0;
1023 1.29.16.6 bouyer qup->q2e.q2e_val[QL_FILE].q2v_time = 0;
1024 1.1 cgd }
1025 1.1 cgd return (1);
1026 1.1 cgd }
1027 1.1 cgd
1028 1.1 cgd /*
1029 1.1 cgd * Convert seconds to ASCII times.
1030 1.1 cgd */
1031 1.1 cgd char *
1032 1.28 xtraeme cvtstoa(ltime)
1033 1.28 xtraeme time_t ltime;
1034 1.1 cgd {
1035 1.1 cgd static char buf[20];
1036 1.1 cgd
1037 1.28 xtraeme if (ltime % (24 * 60 * 60) == 0) {
1038 1.28 xtraeme ltime /= 24 * 60 * 60;
1039 1.28 xtraeme snprintf(buf, sizeof buf, "%ld day%s", (long)ltime,
1040 1.28 xtraeme ltime == 1 ? "" : "s");
1041 1.28 xtraeme } else if (ltime % (60 * 60) == 0) {
1042 1.28 xtraeme ltime /= 60 * 60;
1043 1.28 xtraeme sprintf(buf, "%ld hour%s", (long)ltime, ltime == 1 ? "" : "s");
1044 1.28 xtraeme } else if (ltime % 60 == 0) {
1045 1.28 xtraeme ltime /= 60;
1046 1.28 xtraeme sprintf(buf, "%ld minute%s", (long)ltime, ltime == 1 ? "" : "s");
1047 1.1 cgd } else
1048 1.28 xtraeme sprintf(buf, "%ld second%s", (long)ltime, ltime == 1 ? "" : "s");
1049 1.1 cgd return (buf);
1050 1.1 cgd }
1051 1.1 cgd
1052 1.1 cgd /*
1053 1.1 cgd * Convert ASCII input times to seconds.
1054 1.1 cgd */
1055 1.12 mikel int
1056 1.28 xtraeme cvtatos(ltime, units, seconds)
1057 1.28 xtraeme time_t ltime;
1058 1.1 cgd char *units;
1059 1.1 cgd time_t *seconds;
1060 1.1 cgd {
1061 1.1 cgd
1062 1.15 lukem if (memcmp(units, "second", 6) == 0)
1063 1.28 xtraeme *seconds = ltime;
1064 1.15 lukem else if (memcmp(units, "minute", 6) == 0)
1065 1.28 xtraeme *seconds = ltime * 60;
1066 1.15 lukem else if (memcmp(units, "hour", 4) == 0)
1067 1.28 xtraeme *seconds = ltime * 60 * 60;
1068 1.15 lukem else if (memcmp(units, "day", 3) == 0)
1069 1.28 xtraeme *seconds = ltime * 24 * 60 * 60;
1070 1.1 cgd else {
1071 1.1 cgd printf("%s: bad units, specify %s\n", units,
1072 1.1 cgd "days, hours, minutes, or seconds");
1073 1.1 cgd return (0);
1074 1.1 cgd }
1075 1.1 cgd return (1);
1076 1.1 cgd }
1077 1.1 cgd
1078 1.1 cgd /*
1079 1.29.16.1 bouyer * Free a quotause structure.
1080 1.29.16.1 bouyer */
1081 1.29.16.1 bouyer void
1082 1.29.16.1 bouyer freeq(struct quotause *qup)
1083 1.29.16.1 bouyer {
1084 1.29.16.1 bouyer if (qup->qfname)
1085 1.29.16.1 bouyer free(qup->qfname);
1086 1.29.16.1 bouyer free(qup);
1087 1.29.16.1 bouyer }
1088 1.29.16.1 bouyer
1089 1.29.16.1 bouyer /*
1090 1.1 cgd * Free a list of quotause structures.
1091 1.1 cgd */
1092 1.12 mikel void
1093 1.1 cgd freeprivs(quplist)
1094 1.1 cgd struct quotause *quplist;
1095 1.1 cgd {
1096 1.15 lukem struct quotause *qup, *nextqup;
1097 1.1 cgd
1098 1.1 cgd for (qup = quplist; qup; qup = nextqup) {
1099 1.1 cgd nextqup = qup->next;
1100 1.29.16.1 bouyer freeq(qup);
1101 1.1 cgd }
1102 1.1 cgd }
1103 1.1 cgd
1104 1.1 cgd /*
1105 1.1 cgd * Check whether a string is completely composed of digits.
1106 1.1 cgd */
1107 1.12 mikel int
1108 1.1 cgd alldigits(s)
1109 1.28 xtraeme const char *s;
1110 1.1 cgd {
1111 1.15 lukem int c;
1112 1.1 cgd
1113 1.1 cgd c = *s++;
1114 1.1 cgd do {
1115 1.1 cgd if (!isdigit(c))
1116 1.1 cgd return (0);
1117 1.15 lukem } while ((c = *s++) != 0);
1118 1.1 cgd return (1);
1119 1.1 cgd }
1120 1.1 cgd
1121 1.1 cgd /*
1122 1.29.16.3 bouyer * Check to see if a particular legacy quota is to be enabled in fstab
1123 1.1 cgd */
1124 1.12 mikel int
1125 1.1 cgd hasquota(fs, type, qfnamep)
1126 1.15 lukem struct fstab *fs;
1127 1.1 cgd int type;
1128 1.1 cgd char **qfnamep;
1129 1.1 cgd {
1130 1.15 lukem char *opt;
1131 1.15 lukem char *cp;
1132 1.1 cgd static char initname, usrname[100], grpname[100];
1133 1.29.16.1 bouyer char *buf;
1134 1.1 cgd
1135 1.1 cgd if (!initname) {
1136 1.1 cgd sprintf(usrname, "%s%s", qfextension[USRQUOTA], qfname);
1137 1.1 cgd sprintf(grpname, "%s%s", qfextension[GRPQUOTA], qfname);
1138 1.1 cgd initname = 1;
1139 1.1 cgd }
1140 1.29.16.1 bouyer buf = fs->fs_mntops;
1141 1.16 mrg cp = NULL;
1142 1.1 cgd for (opt = strtok(buf, ","); opt; opt = strtok(NULL, ",")) {
1143 1.15 lukem if ((cp = strchr(opt, '=')) != NULL)
1144 1.1 cgd *cp++ = '\0';
1145 1.1 cgd if (type == USRQUOTA && strcmp(opt, usrname) == 0)
1146 1.1 cgd break;
1147 1.1 cgd if (type == GRPQUOTA && strcmp(opt, grpname) == 0)
1148 1.1 cgd break;
1149 1.1 cgd }
1150 1.29.16.1 bouyer if (!opt) {
1151 1.29.16.1 bouyer *qfnamep = NULL;
1152 1.1 cgd return (0);
1153 1.29.16.1 bouyer }
1154 1.1 cgd if (cp) {
1155 1.29.16.1 bouyer *qfnamep = malloc(strlen(cp) + 1);
1156 1.29.16.1 bouyer if (*qfnamep == NULL)
1157 1.29.16.1 bouyer err(1, "malloc");
1158 1.29.16.1 bouyer strcpy(*qfnamep, cp);
1159 1.1 cgd return (1);
1160 1.1 cgd }
1161 1.29.16.1 bouyer *qfnamep = malloc(BUFSIZ);
1162 1.29.16.1 bouyer if (*qfnamep == NULL)
1163 1.29.16.1 bouyer err(1, "malloc");
1164 1.29.16.1 bouyer (void) sprintf(*qfnamep, "%s/%s.%s", fs->fs_file, qfname,
1165 1.29.16.1 bouyer qfextension[type]);
1166 1.1 cgd return (1);
1167 1.1 cgd }
1168