ufs_quota.c revision 1.49 1 1.49 hannken /* $NetBSD: ufs_quota.c,v 1.49 2007/07/19 09:33:04 hannken Exp $ */
2 1.2 cgd
3 1.1 mycroft /*
4 1.11 fvdl * Copyright (c) 1982, 1986, 1990, 1993, 1995
5 1.1 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 mycroft *
7 1.1 mycroft * This code is derived from software contributed to Berkeley by
8 1.1 mycroft * Robert Elz at The University of Melbourne.
9 1.1 mycroft *
10 1.1 mycroft * Redistribution and use in source and binary forms, with or without
11 1.1 mycroft * modification, are permitted provided that the following conditions
12 1.1 mycroft * are met:
13 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
14 1.1 mycroft * notice, this list of conditions and the following disclaimer.
15 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
17 1.1 mycroft * documentation and/or other materials provided with the distribution.
18 1.28 agc * 3. Neither the name of the University nor the names of its contributors
19 1.1 mycroft * may be used to endorse or promote products derived from this software
20 1.1 mycroft * without specific prior written permission.
21 1.1 mycroft *
22 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 mycroft * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 mycroft * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 mycroft * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 mycroft * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 mycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 mycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 mycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 mycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 mycroft * SUCH DAMAGE.
33 1.1 mycroft *
34 1.11 fvdl * @(#)ufs_quota.c 8.5 (Berkeley) 5/20/95
35 1.1 mycroft */
36 1.22 lukem
37 1.22 lukem #include <sys/cdefs.h>
38 1.49 hannken __KERNEL_RCSID(0, "$NetBSD: ufs_quota.c,v 1.49 2007/07/19 09:33:04 hannken Exp $");
39 1.22 lukem
40 1.1 mycroft #include <sys/param.h>
41 1.1 mycroft #include <sys/kernel.h>
42 1.1 mycroft #include <sys/systm.h>
43 1.1 mycroft #include <sys/namei.h>
44 1.1 mycroft #include <sys/malloc.h>
45 1.1 mycroft #include <sys/file.h>
46 1.1 mycroft #include <sys/proc.h>
47 1.1 mycroft #include <sys/vnode.h>
48 1.1 mycroft #include <sys/mount.h>
49 1.39 elad #include <sys/kauth.h>
50 1.1 mycroft
51 1.1 mycroft #include <ufs/ufs/quota.h>
52 1.1 mycroft #include <ufs/ufs/inode.h>
53 1.1 mycroft #include <ufs/ufs/ufsmount.h>
54 1.1 mycroft #include <ufs/ufs/ufs_extern.h>
55 1.1 mycroft
56 1.1 mycroft /*
57 1.48 hannken * The following structure records disk usage for a user or group on a
58 1.48 hannken * filesystem. There is one allocated for each quota that exists on any
59 1.48 hannken * filesystem for the current user or group. A cache is kept of recently
60 1.48 hannken * used entries.
61 1.49 hannken * Field markings and the corresponding locks:
62 1.49 hannken * h: dqhashtbl_mtx
63 1.49 hannken * d: dq_interlock
64 1.49 hannken *
65 1.49 hannken * Lock order is: dq_interlock -> dqhashtbl_mtx
66 1.48 hannken */
67 1.48 hannken struct dquot {
68 1.49 hannken LIST_ENTRY(dquot) dq_hash; /* h: hash list */
69 1.48 hannken TAILQ_ENTRY(dquot) dq_freelist; /* free list */
70 1.49 hannken u_int16_t dq_flags; /* d: flags, see below */
71 1.49 hannken u_int16_t dq_type; /* d: quota type of this dquot */
72 1.49 hannken u_int32_t dq_cnt; /* h: count of active references */
73 1.49 hannken u_int32_t dq_id; /* d: identifier this applies to */
74 1.49 hannken struct ufsmount *dq_ump; /* d: filesystem this is taken from */
75 1.49 hannken kmutex_t dq_interlock; /* d: lock this dquot */
76 1.49 hannken struct dqblk dq_dqb; /* d: actual usage & quotas */
77 1.48 hannken };
78 1.48 hannken /*
79 1.48 hannken * Flag values.
80 1.48 hannken */
81 1.48 hannken #define DQ_MOD 0x04 /* this quota modified since read */
82 1.48 hannken #define DQ_FAKE 0x08 /* no limits here, just usage */
83 1.48 hannken #define DQ_BLKS 0x10 /* has been warned about blk limit */
84 1.48 hannken #define DQ_INODS 0x20 /* has been warned about inode limit */
85 1.48 hannken /*
86 1.48 hannken * Shorthand notation.
87 1.48 hannken */
88 1.48 hannken #define dq_bhardlimit dq_dqb.dqb_bhardlimit
89 1.48 hannken #define dq_bsoftlimit dq_dqb.dqb_bsoftlimit
90 1.48 hannken #define dq_curblocks dq_dqb.dqb_curblocks
91 1.48 hannken #define dq_ihardlimit dq_dqb.dqb_ihardlimit
92 1.48 hannken #define dq_isoftlimit dq_dqb.dqb_isoftlimit
93 1.48 hannken #define dq_curinodes dq_dqb.dqb_curinodes
94 1.48 hannken #define dq_btime dq_dqb.dqb_btime
95 1.48 hannken #define dq_itime dq_dqb.dqb_itime
96 1.48 hannken /*
97 1.48 hannken * If the system has never checked for a quota for this file, then it is
98 1.48 hannken * set to NODQUOT. Once a write attempt is made the inode pointer is set
99 1.48 hannken * to reference a dquot structure.
100 1.48 hannken */
101 1.48 hannken #define NODQUOT NULL
102 1.48 hannken
103 1.48 hannken static int chkdqchg(struct inode *, int64_t, kauth_cred_t, int);
104 1.48 hannken static int chkiqchg(struct inode *, int32_t, kauth_cred_t, int);
105 1.48 hannken static void dqflush(struct vnode *);
106 1.48 hannken static int dqget(struct vnode *, u_long, struct ufsmount *, int,
107 1.48 hannken struct dquot **);
108 1.48 hannken static void dqref(struct dquot *);
109 1.48 hannken static void dqrele(struct vnode *, struct dquot *);
110 1.48 hannken static int dqsync(struct vnode *, struct dquot *);
111 1.48 hannken
112 1.48 hannken /*
113 1.1 mycroft * Quota name to error message mapping.
114 1.1 mycroft */
115 1.34 christos static const char *quotatypes[] = INITQFNAMES;
116 1.1 mycroft
117 1.1 mycroft /*
118 1.1 mycroft * Set up the quotas for an inode.
119 1.1 mycroft *
120 1.1 mycroft * This routine completely defines the semantics of quotas.
121 1.1 mycroft * If other criterion want to be used to establish quotas, the
122 1.1 mycroft * MAXQUOTAS value in quotas.h should be increased, and the
123 1.1 mycroft * additional dquots set up here.
124 1.1 mycroft */
125 1.1 mycroft int
126 1.35 thorpej getinoquota(struct inode *ip)
127 1.1 mycroft {
128 1.31 mycroft struct ufsmount *ump = ip->i_ump;
129 1.1 mycroft struct vnode *vp = ITOV(ip);
130 1.49 hannken int i, error;
131 1.49 hannken u_int32_t ino_ids[MAXQUOTAS];
132 1.1 mycroft
133 1.1 mycroft /*
134 1.49 hannken * To avoid deadlocks never update quotas for quota files
135 1.49 hannken * on the same file system
136 1.48 hannken */
137 1.49 hannken for (i = 0; i < MAXQUOTAS; i++)
138 1.49 hannken if (ITOV(ip) == ump->um_quotas[i])
139 1.49 hannken return 0;
140 1.49 hannken
141 1.49 hannken ino_ids[USRQUOTA] = ip->i_uid;
142 1.49 hannken ino_ids[GRPQUOTA] = ip->i_gid;
143 1.49 hannken for (i = 0; i < MAXQUOTAS; i++) {
144 1.49 hannken /*
145 1.49 hannken * If the file id changed the quota needs update.
146 1.49 hannken */
147 1.49 hannken if (ip->i_dquot[i] != NODQUOT &&
148 1.49 hannken ip->i_dquot[i]->dq_id != ino_ids[i]) {
149 1.49 hannken dqrele(ITOV(ip), ip->i_dquot[i]);
150 1.49 hannken ip->i_dquot[i] = NODQUOT;
151 1.49 hannken }
152 1.49 hannken /*
153 1.49 hannken * Set up the quota based on file id.
154 1.49 hannken * EINVAL means that quotas are not enabled.
155 1.49 hannken */
156 1.49 hannken if (ip->i_dquot[i] == NODQUOT &&
157 1.49 hannken (error = dqget(vp, ino_ids[i], ump, i, &ip->i_dquot[i])) &&
158 1.49 hannken error != EINVAL)
159 1.49 hannken return (error);
160 1.48 hannken }
161 1.49 hannken return 0;
162 1.1 mycroft }
163 1.1 mycroft
164 1.1 mycroft /*
165 1.48 hannken * Initialize the quota fields of an inode.
166 1.48 hannken */
167 1.48 hannken void
168 1.48 hannken ufsquota_init(struct inode *ip)
169 1.48 hannken {
170 1.48 hannken int i;
171 1.48 hannken
172 1.48 hannken for (i = 0; i < MAXQUOTAS; i++)
173 1.48 hannken ip->i_dquot[i] = NODQUOT;
174 1.48 hannken }
175 1.48 hannken
176 1.48 hannken /*
177 1.48 hannken * Release the quota fields from an inode.
178 1.48 hannken */
179 1.48 hannken void
180 1.48 hannken ufsquota_free(struct inode *ip)
181 1.48 hannken {
182 1.48 hannken int i;
183 1.48 hannken
184 1.48 hannken for (i = 0; i < MAXQUOTAS; i++) {
185 1.48 hannken dqrele(ITOV(ip), ip->i_dquot[i]);
186 1.48 hannken ip->i_dquot[i] = NODQUOT;
187 1.48 hannken }
188 1.48 hannken }
189 1.48 hannken
190 1.48 hannken /*
191 1.1 mycroft * Update disk usage, and take corrective action.
192 1.1 mycroft */
193 1.1 mycroft int
194 1.39 elad chkdq(struct inode *ip, int64_t change, kauth_cred_t cred, int flags)
195 1.1 mycroft {
196 1.15 augustss struct dquot *dq;
197 1.15 augustss int i;
198 1.1 mycroft int ncurblocks, error;
199 1.1 mycroft
200 1.48 hannken if ((error = getinoquota(ip)) != 0)
201 1.48 hannken return error;
202 1.1 mycroft if (change == 0)
203 1.1 mycroft return (0);
204 1.1 mycroft if (change < 0) {
205 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++) {
206 1.1 mycroft if ((dq = ip->i_dquot[i]) == NODQUOT)
207 1.1 mycroft continue;
208 1.49 hannken mutex_enter(&dq->dq_interlock);
209 1.1 mycroft ncurblocks = dq->dq_curblocks + change;
210 1.1 mycroft if (ncurblocks >= 0)
211 1.1 mycroft dq->dq_curblocks = ncurblocks;
212 1.1 mycroft else
213 1.1 mycroft dq->dq_curblocks = 0;
214 1.1 mycroft dq->dq_flags &= ~DQ_BLKS;
215 1.1 mycroft dq->dq_flags |= DQ_MOD;
216 1.49 hannken mutex_exit(&dq->dq_interlock);
217 1.1 mycroft }
218 1.1 mycroft return (0);
219 1.1 mycroft }
220 1.16 thorpej if ((flags & FORCE) == 0 &&
221 1.43 elad kauth_authorize_generic(cred, KAUTH_GENERIC_ISSUSER, NULL) != 0) {
222 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++) {
223 1.1 mycroft if ((dq = ip->i_dquot[i]) == NODQUOT)
224 1.1 mycroft continue;
225 1.49 hannken mutex_enter(&dq->dq_interlock);
226 1.49 hannken error = chkdqchg(ip, change, cred, i);
227 1.49 hannken mutex_exit(&dq->dq_interlock);
228 1.49 hannken if (error != 0)
229 1.1 mycroft return (error);
230 1.1 mycroft }
231 1.1 mycroft }
232 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++) {
233 1.1 mycroft if ((dq = ip->i_dquot[i]) == NODQUOT)
234 1.1 mycroft continue;
235 1.49 hannken mutex_enter(&dq->dq_interlock);
236 1.1 mycroft dq->dq_curblocks += change;
237 1.1 mycroft dq->dq_flags |= DQ_MOD;
238 1.49 hannken mutex_exit(&dq->dq_interlock);
239 1.1 mycroft }
240 1.1 mycroft return (0);
241 1.1 mycroft }
242 1.1 mycroft
243 1.1 mycroft /*
244 1.1 mycroft * Check for a valid change to a users allocation.
245 1.1 mycroft * Issue an error message if appropriate.
246 1.1 mycroft */
247 1.48 hannken static int
248 1.39 elad chkdqchg(struct inode *ip, int64_t change, kauth_cred_t cred, int type)
249 1.1 mycroft {
250 1.15 augustss struct dquot *dq = ip->i_dquot[type];
251 1.1 mycroft long ncurblocks = dq->dq_curblocks + change;
252 1.1 mycroft
253 1.1 mycroft /*
254 1.1 mycroft * If user would exceed their hard limit, disallow space allocation.
255 1.1 mycroft */
256 1.1 mycroft if (ncurblocks >= dq->dq_bhardlimit && dq->dq_bhardlimit) {
257 1.1 mycroft if ((dq->dq_flags & DQ_BLKS) == 0 &&
258 1.39 elad ip->i_uid == kauth_cred_geteuid(cred)) {
259 1.1 mycroft uprintf("\n%s: write failed, %s disk limit reached\n",
260 1.1 mycroft ITOV(ip)->v_mount->mnt_stat.f_mntonname,
261 1.1 mycroft quotatypes[type]);
262 1.1 mycroft dq->dq_flags |= DQ_BLKS;
263 1.1 mycroft }
264 1.1 mycroft return (EDQUOT);
265 1.1 mycroft }
266 1.1 mycroft /*
267 1.1 mycroft * If user is over their soft limit for too long, disallow space
268 1.1 mycroft * allocation. Reset time limit as they cross their soft limit.
269 1.1 mycroft */
270 1.1 mycroft if (ncurblocks >= dq->dq_bsoftlimit && dq->dq_bsoftlimit) {
271 1.1 mycroft if (dq->dq_curblocks < dq->dq_bsoftlimit) {
272 1.40 kardel dq->dq_btime = time_second + ip->i_ump->um_btime[type];
273 1.39 elad if (ip->i_uid == kauth_cred_geteuid(cred))
274 1.1 mycroft uprintf("\n%s: warning, %s %s\n",
275 1.1 mycroft ITOV(ip)->v_mount->mnt_stat.f_mntonname,
276 1.1 mycroft quotatypes[type], "disk quota exceeded");
277 1.1 mycroft return (0);
278 1.1 mycroft }
279 1.40 kardel if (time_second > dq->dq_btime) {
280 1.1 mycroft if ((dq->dq_flags & DQ_BLKS) == 0 &&
281 1.39 elad ip->i_uid == kauth_cred_geteuid(cred)) {
282 1.1 mycroft uprintf("\n%s: write failed, %s %s\n",
283 1.1 mycroft ITOV(ip)->v_mount->mnt_stat.f_mntonname,
284 1.1 mycroft quotatypes[type],
285 1.1 mycroft "disk quota exceeded for too long");
286 1.1 mycroft dq->dq_flags |= DQ_BLKS;
287 1.1 mycroft }
288 1.1 mycroft return (EDQUOT);
289 1.1 mycroft }
290 1.1 mycroft }
291 1.1 mycroft return (0);
292 1.1 mycroft }
293 1.1 mycroft
294 1.1 mycroft /*
295 1.1 mycroft * Check the inode limit, applying corrective action.
296 1.1 mycroft */
297 1.1 mycroft int
298 1.39 elad chkiq(struct inode *ip, int32_t change, kauth_cred_t cred, int flags)
299 1.1 mycroft {
300 1.15 augustss struct dquot *dq;
301 1.15 augustss int i;
302 1.1 mycroft int ncurinodes, error;
303 1.1 mycroft
304 1.48 hannken if ((error = getinoquota(ip)) != 0)
305 1.48 hannken return error;
306 1.1 mycroft if (change == 0)
307 1.1 mycroft return (0);
308 1.1 mycroft if (change < 0) {
309 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++) {
310 1.1 mycroft if ((dq = ip->i_dquot[i]) == NODQUOT)
311 1.1 mycroft continue;
312 1.49 hannken mutex_enter(&dq->dq_interlock);
313 1.1 mycroft ncurinodes = dq->dq_curinodes + change;
314 1.1 mycroft if (ncurinodes >= 0)
315 1.1 mycroft dq->dq_curinodes = ncurinodes;
316 1.1 mycroft else
317 1.1 mycroft dq->dq_curinodes = 0;
318 1.1 mycroft dq->dq_flags &= ~DQ_INODS;
319 1.1 mycroft dq->dq_flags |= DQ_MOD;
320 1.49 hannken mutex_exit(&dq->dq_interlock);
321 1.1 mycroft }
322 1.1 mycroft return (0);
323 1.1 mycroft }
324 1.43 elad if ((flags & FORCE) == 0 && kauth_authorize_generic(cred,
325 1.43 elad KAUTH_GENERIC_ISSUSER, NULL) != 0) {
326 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++) {
327 1.1 mycroft if ((dq = ip->i_dquot[i]) == NODQUOT)
328 1.1 mycroft continue;
329 1.49 hannken mutex_enter(&dq->dq_interlock);
330 1.49 hannken error = chkiqchg(ip, change, cred, i);
331 1.49 hannken mutex_exit(&dq->dq_interlock);
332 1.49 hannken if (error != 0)
333 1.1 mycroft return (error);
334 1.1 mycroft }
335 1.1 mycroft }
336 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++) {
337 1.1 mycroft if ((dq = ip->i_dquot[i]) == NODQUOT)
338 1.1 mycroft continue;
339 1.49 hannken mutex_enter(&dq->dq_interlock);
340 1.1 mycroft dq->dq_curinodes += change;
341 1.1 mycroft dq->dq_flags |= DQ_MOD;
342 1.49 hannken mutex_exit(&dq->dq_interlock);
343 1.1 mycroft }
344 1.1 mycroft return (0);
345 1.1 mycroft }
346 1.1 mycroft
347 1.1 mycroft /*
348 1.1 mycroft * Check for a valid change to a users allocation.
349 1.1 mycroft * Issue an error message if appropriate.
350 1.1 mycroft */
351 1.48 hannken static int
352 1.39 elad chkiqchg(struct inode *ip, int32_t change, kauth_cred_t cred, int type)
353 1.1 mycroft {
354 1.15 augustss struct dquot *dq = ip->i_dquot[type];
355 1.1 mycroft long ncurinodes = dq->dq_curinodes + change;
356 1.1 mycroft
357 1.1 mycroft /*
358 1.1 mycroft * If user would exceed their hard limit, disallow inode allocation.
359 1.1 mycroft */
360 1.1 mycroft if (ncurinodes >= dq->dq_ihardlimit && dq->dq_ihardlimit) {
361 1.1 mycroft if ((dq->dq_flags & DQ_INODS) == 0 &&
362 1.39 elad ip->i_uid == kauth_cred_geteuid(cred)) {
363 1.1 mycroft uprintf("\n%s: write failed, %s inode limit reached\n",
364 1.1 mycroft ITOV(ip)->v_mount->mnt_stat.f_mntonname,
365 1.1 mycroft quotatypes[type]);
366 1.1 mycroft dq->dq_flags |= DQ_INODS;
367 1.1 mycroft }
368 1.1 mycroft return (EDQUOT);
369 1.1 mycroft }
370 1.1 mycroft /*
371 1.1 mycroft * If user is over their soft limit for too long, disallow inode
372 1.1 mycroft * allocation. Reset time limit as they cross their soft limit.
373 1.1 mycroft */
374 1.1 mycroft if (ncurinodes >= dq->dq_isoftlimit && dq->dq_isoftlimit) {
375 1.1 mycroft if (dq->dq_curinodes < dq->dq_isoftlimit) {
376 1.40 kardel dq->dq_itime = time_second + ip->i_ump->um_itime[type];
377 1.39 elad if (ip->i_uid == kauth_cred_geteuid(cred))
378 1.1 mycroft uprintf("\n%s: warning, %s %s\n",
379 1.1 mycroft ITOV(ip)->v_mount->mnt_stat.f_mntonname,
380 1.1 mycroft quotatypes[type], "inode quota exceeded");
381 1.1 mycroft return (0);
382 1.1 mycroft }
383 1.40 kardel if (time_second > dq->dq_itime) {
384 1.1 mycroft if ((dq->dq_flags & DQ_INODS) == 0 &&
385 1.39 elad ip->i_uid == kauth_cred_geteuid(cred)) {
386 1.1 mycroft uprintf("\n%s: write failed, %s %s\n",
387 1.1 mycroft ITOV(ip)->v_mount->mnt_stat.f_mntonname,
388 1.1 mycroft quotatypes[type],
389 1.1 mycroft "inode quota exceeded for too long");
390 1.1 mycroft dq->dq_flags |= DQ_INODS;
391 1.1 mycroft }
392 1.1 mycroft return (EDQUOT);
393 1.1 mycroft }
394 1.1 mycroft }
395 1.1 mycroft return (0);
396 1.1 mycroft }
397 1.1 mycroft
398 1.1 mycroft /*
399 1.1 mycroft * Code to process quotactl commands.
400 1.1 mycroft */
401 1.1 mycroft
402 1.1 mycroft /*
403 1.1 mycroft * Q_QUOTAON - set up a quota file for a particular file system.
404 1.1 mycroft */
405 1.1 mycroft int
406 1.44 christos quotaon(struct lwp *l, struct mount *mp, int type, void *fname)
407 1.1 mycroft {
408 1.11 fvdl struct ufsmount *ump = VFSTOUFS(mp);
409 1.11 fvdl struct vnode *vp, **vpp;
410 1.1 mycroft struct vnode *nextvp;
411 1.1 mycroft struct dquot *dq;
412 1.1 mycroft int error;
413 1.1 mycroft struct nameidata nd;
414 1.1 mycroft
415 1.1 mycroft vpp = &ump->um_quotas[type];
416 1.36 christos NDINIT(&nd, LOOKUP, FOLLOW, UIO_USERSPACE, fname, l);
417 1.8 christos if ((error = vn_open(&nd, FREAD|FWRITE, 0)) != 0)
418 1.1 mycroft return (error);
419 1.1 mycroft vp = nd.ni_vp;
420 1.11 fvdl VOP_UNLOCK(vp, 0);
421 1.1 mycroft if (vp->v_type != VREG) {
422 1.41 ad (void) vn_close(vp, FREAD|FWRITE, l->l_cred, l);
423 1.1 mycroft return (EACCES);
424 1.1 mycroft }
425 1.1 mycroft if (*vpp != vp)
426 1.36 christos quotaoff(l, mp, type);
427 1.1 mycroft ump->um_qflags[type] |= QTF_OPENING;
428 1.1 mycroft mp->mnt_flag |= MNT_QUOTA;
429 1.1 mycroft vp->v_flag |= VSYSTEM;
430 1.1 mycroft *vpp = vp;
431 1.1 mycroft /*
432 1.1 mycroft * Save the credential of the process that turned on quotas.
433 1.1 mycroft * Set up the time limits for this quota.
434 1.1 mycroft */
435 1.41 ad kauth_cred_hold(l->l_cred);
436 1.41 ad ump->um_cred[type] = l->l_cred;
437 1.1 mycroft ump->um_btime[type] = MAX_DQ_TIME;
438 1.1 mycroft ump->um_itime[type] = MAX_IQ_TIME;
439 1.1 mycroft if (dqget(NULLVP, 0, ump, type, &dq) == 0) {
440 1.1 mycroft if (dq->dq_btime > 0)
441 1.1 mycroft ump->um_btime[type] = dq->dq_btime;
442 1.1 mycroft if (dq->dq_itime > 0)
443 1.1 mycroft ump->um_itime[type] = dq->dq_itime;
444 1.1 mycroft dqrele(NULLVP, dq);
445 1.1 mycroft }
446 1.1 mycroft /*
447 1.1 mycroft * Search vnodes associated with this mount point,
448 1.1 mycroft * adding references to quota file being opened.
449 1.1 mycroft * NB: only need to add dquot's for inodes being modified.
450 1.1 mycroft */
451 1.1 mycroft again:
452 1.42 reinoud TAILQ_FOREACH(vp, &mp->mnt_vnodelist, v_mntvnodes) {
453 1.42 reinoud nextvp = TAILQ_NEXT(vp, v_mntvnodes);
454 1.42 reinoud if (vp->v_mount != mp)
455 1.42 reinoud goto again;
456 1.13 fvdl if (vp->v_type == VNON ||vp->v_writecount == 0)
457 1.1 mycroft continue;
458 1.26 thorpej if (vget(vp, LK_EXCLUSIVE))
459 1.1 mycroft goto again;
460 1.8 christos if ((error = getinoquota(VTOI(vp))) != 0) {
461 1.1 mycroft vput(vp);
462 1.1 mycroft break;
463 1.1 mycroft }
464 1.1 mycroft vput(vp);
465 1.42 reinoud /* if the list changed, start again */
466 1.42 reinoud if (TAILQ_NEXT(vp, v_mntvnodes) != nextvp)
467 1.1 mycroft goto again;
468 1.1 mycroft }
469 1.1 mycroft ump->um_qflags[type] &= ~QTF_OPENING;
470 1.1 mycroft if (error)
471 1.36 christos quotaoff(l, mp, type);
472 1.1 mycroft return (error);
473 1.1 mycroft }
474 1.1 mycroft
475 1.1 mycroft /*
476 1.1 mycroft * Q_QUOTAOFF - turn off disk quotas for a filesystem.
477 1.1 mycroft */
478 1.1 mycroft int
479 1.36 christos quotaoff(struct lwp *l, struct mount *mp, int type)
480 1.1 mycroft {
481 1.11 fvdl struct vnode *vp;
482 1.1 mycroft struct vnode *qvp, *nextvp;
483 1.1 mycroft struct ufsmount *ump = VFSTOUFS(mp);
484 1.11 fvdl struct dquot *dq;
485 1.11 fvdl struct inode *ip;
486 1.1 mycroft int error;
487 1.33 perry
488 1.1 mycroft if ((qvp = ump->um_quotas[type]) == NULLVP)
489 1.1 mycroft return (0);
490 1.1 mycroft ump->um_qflags[type] |= QTF_CLOSING;
491 1.1 mycroft /*
492 1.1 mycroft * Search vnodes associated with this mount point,
493 1.1 mycroft * deleting any references to quota file being closed.
494 1.1 mycroft */
495 1.1 mycroft again:
496 1.42 reinoud TAILQ_FOREACH(vp, &mp->mnt_vnodelist, v_mntvnodes) {
497 1.42 reinoud nextvp = TAILQ_NEXT(vp, v_mntvnodes);
498 1.42 reinoud if (vp->v_mount != mp)
499 1.42 reinoud goto again;
500 1.13 fvdl if (vp->v_type == VNON)
501 1.13 fvdl continue;
502 1.26 thorpej if (vget(vp, LK_EXCLUSIVE))
503 1.1 mycroft goto again;
504 1.1 mycroft ip = VTOI(vp);
505 1.1 mycroft dq = ip->i_dquot[type];
506 1.1 mycroft ip->i_dquot[type] = NODQUOT;
507 1.1 mycroft dqrele(vp, dq);
508 1.1 mycroft vput(vp);
509 1.42 reinoud /* if the list changed, start again */
510 1.42 reinoud if (TAILQ_NEXT(vp, v_mntvnodes) != nextvp)
511 1.1 mycroft goto again;
512 1.1 mycroft }
513 1.1 mycroft dqflush(qvp);
514 1.1 mycroft qvp->v_flag &= ~VSYSTEM;
515 1.41 ad error = vn_close(qvp, FREAD|FWRITE, l->l_cred, l);
516 1.1 mycroft ump->um_quotas[type] = NULLVP;
517 1.39 elad kauth_cred_free(ump->um_cred[type]);
518 1.1 mycroft ump->um_cred[type] = NOCRED;
519 1.1 mycroft ump->um_qflags[type] &= ~QTF_CLOSING;
520 1.1 mycroft for (type = 0; type < MAXQUOTAS; type++)
521 1.1 mycroft if (ump->um_quotas[type] != NULLVP)
522 1.1 mycroft break;
523 1.1 mycroft if (type == MAXQUOTAS)
524 1.1 mycroft mp->mnt_flag &= ~MNT_QUOTA;
525 1.1 mycroft return (error);
526 1.1 mycroft }
527 1.1 mycroft
528 1.1 mycroft /*
529 1.1 mycroft * Q_GETQUOTA - return current values in a dqblk structure.
530 1.1 mycroft */
531 1.1 mycroft int
532 1.44 christos getquota(struct mount *mp, u_long id, int type, void *addr)
533 1.1 mycroft {
534 1.1 mycroft struct dquot *dq;
535 1.1 mycroft int error;
536 1.1 mycroft
537 1.8 christos if ((error = dqget(NULLVP, id, VFSTOUFS(mp), type, &dq)) != 0)
538 1.1 mycroft return (error);
539 1.44 christos error = copyout((void *)&dq->dq_dqb, addr, sizeof (struct dqblk));
540 1.1 mycroft dqrele(NULLVP, dq);
541 1.1 mycroft return (error);
542 1.1 mycroft }
543 1.1 mycroft
544 1.1 mycroft /*
545 1.1 mycroft * Q_SETQUOTA - assign an entire dqblk structure.
546 1.1 mycroft */
547 1.1 mycroft int
548 1.44 christos setquota(struct mount *mp, u_long id, int type, void *addr)
549 1.1 mycroft {
550 1.15 augustss struct dquot *dq;
551 1.1 mycroft struct dquot *ndq;
552 1.1 mycroft struct ufsmount *ump = VFSTOUFS(mp);
553 1.1 mycroft struct dqblk newlim;
554 1.1 mycroft int error;
555 1.1 mycroft
556 1.44 christos error = copyin(addr, (void *)&newlim, sizeof (struct dqblk));
557 1.8 christos if (error)
558 1.1 mycroft return (error);
559 1.8 christos if ((error = dqget(NULLVP, id, ump, type, &ndq)) != 0)
560 1.1 mycroft return (error);
561 1.1 mycroft dq = ndq;
562 1.49 hannken mutex_enter(&dq->dq_interlock);
563 1.1 mycroft /*
564 1.1 mycroft * Copy all but the current values.
565 1.1 mycroft * Reset time limit if previously had no soft limit or were
566 1.1 mycroft * under it, but now have a soft limit and are over it.
567 1.1 mycroft */
568 1.1 mycroft newlim.dqb_curblocks = dq->dq_curblocks;
569 1.1 mycroft newlim.dqb_curinodes = dq->dq_curinodes;
570 1.1 mycroft if (dq->dq_id != 0) {
571 1.1 mycroft newlim.dqb_btime = dq->dq_btime;
572 1.1 mycroft newlim.dqb_itime = dq->dq_itime;
573 1.1 mycroft }
574 1.1 mycroft if (newlim.dqb_bsoftlimit &&
575 1.1 mycroft dq->dq_curblocks >= newlim.dqb_bsoftlimit &&
576 1.1 mycroft (dq->dq_bsoftlimit == 0 || dq->dq_curblocks < dq->dq_bsoftlimit))
577 1.40 kardel newlim.dqb_btime = time_second + ump->um_btime[type];
578 1.1 mycroft if (newlim.dqb_isoftlimit &&
579 1.1 mycroft dq->dq_curinodes >= newlim.dqb_isoftlimit &&
580 1.1 mycroft (dq->dq_isoftlimit == 0 || dq->dq_curinodes < dq->dq_isoftlimit))
581 1.40 kardel newlim.dqb_itime = time_second + ump->um_itime[type];
582 1.1 mycroft dq->dq_dqb = newlim;
583 1.1 mycroft if (dq->dq_curblocks < dq->dq_bsoftlimit)
584 1.1 mycroft dq->dq_flags &= ~DQ_BLKS;
585 1.1 mycroft if (dq->dq_curinodes < dq->dq_isoftlimit)
586 1.1 mycroft dq->dq_flags &= ~DQ_INODS;
587 1.1 mycroft if (dq->dq_isoftlimit == 0 && dq->dq_bsoftlimit == 0 &&
588 1.1 mycroft dq->dq_ihardlimit == 0 && dq->dq_bhardlimit == 0)
589 1.1 mycroft dq->dq_flags |= DQ_FAKE;
590 1.1 mycroft else
591 1.1 mycroft dq->dq_flags &= ~DQ_FAKE;
592 1.1 mycroft dq->dq_flags |= DQ_MOD;
593 1.49 hannken mutex_exit(&dq->dq_interlock);
594 1.1 mycroft dqrele(NULLVP, dq);
595 1.1 mycroft return (0);
596 1.1 mycroft }
597 1.1 mycroft
598 1.1 mycroft /*
599 1.1 mycroft * Q_SETUSE - set current inode and block usage.
600 1.1 mycroft */
601 1.1 mycroft int
602 1.44 christos setuse(struct mount *mp, u_long id, int type, void *addr)
603 1.1 mycroft {
604 1.15 augustss struct dquot *dq;
605 1.1 mycroft struct ufsmount *ump = VFSTOUFS(mp);
606 1.1 mycroft struct dquot *ndq;
607 1.1 mycroft struct dqblk usage;
608 1.1 mycroft int error;
609 1.1 mycroft
610 1.44 christos error = copyin(addr, (void *)&usage, sizeof (struct dqblk));
611 1.8 christos if (error)
612 1.1 mycroft return (error);
613 1.8 christos if ((error = dqget(NULLVP, id, ump, type, &ndq)) != 0)
614 1.1 mycroft return (error);
615 1.1 mycroft dq = ndq;
616 1.49 hannken mutex_enter(&dq->dq_interlock);
617 1.1 mycroft /*
618 1.1 mycroft * Reset time limit if have a soft limit and were
619 1.1 mycroft * previously under it, but are now over it.
620 1.1 mycroft */
621 1.1 mycroft if (dq->dq_bsoftlimit && dq->dq_curblocks < dq->dq_bsoftlimit &&
622 1.1 mycroft usage.dqb_curblocks >= dq->dq_bsoftlimit)
623 1.40 kardel dq->dq_btime = time_second + ump->um_btime[type];
624 1.1 mycroft if (dq->dq_isoftlimit && dq->dq_curinodes < dq->dq_isoftlimit &&
625 1.1 mycroft usage.dqb_curinodes >= dq->dq_isoftlimit)
626 1.40 kardel dq->dq_itime = time_second + ump->um_itime[type];
627 1.1 mycroft dq->dq_curblocks = usage.dqb_curblocks;
628 1.1 mycroft dq->dq_curinodes = usage.dqb_curinodes;
629 1.1 mycroft if (dq->dq_curblocks < dq->dq_bsoftlimit)
630 1.1 mycroft dq->dq_flags &= ~DQ_BLKS;
631 1.1 mycroft if (dq->dq_curinodes < dq->dq_isoftlimit)
632 1.1 mycroft dq->dq_flags &= ~DQ_INODS;
633 1.1 mycroft dq->dq_flags |= DQ_MOD;
634 1.49 hannken mutex_exit(&dq->dq_interlock);
635 1.1 mycroft dqrele(NULLVP, dq);
636 1.1 mycroft return (0);
637 1.1 mycroft }
638 1.1 mycroft
639 1.1 mycroft /*
640 1.1 mycroft * Q_SYNC - sync quota files to disk.
641 1.1 mycroft */
642 1.1 mycroft int
643 1.35 thorpej qsync(struct mount *mp)
644 1.1 mycroft {
645 1.1 mycroft struct ufsmount *ump = VFSTOUFS(mp);
646 1.11 fvdl struct vnode *vp, *nextvp;
647 1.11 fvdl struct dquot *dq;
648 1.11 fvdl int i, error;
649 1.1 mycroft
650 1.1 mycroft /*
651 1.1 mycroft * Check if the mount point has any quotas.
652 1.1 mycroft * If not, simply return.
653 1.1 mycroft */
654 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++)
655 1.1 mycroft if (ump->um_quotas[i] != NULLVP)
656 1.1 mycroft break;
657 1.1 mycroft if (i == MAXQUOTAS)
658 1.1 mycroft return (0);
659 1.1 mycroft /*
660 1.1 mycroft * Search vnodes associated with this mount point,
661 1.1 mycroft * synchronizing any modified dquot structures.
662 1.1 mycroft */
663 1.11 fvdl simple_lock(&mntvnode_slock);
664 1.1 mycroft again:
665 1.42 reinoud TAILQ_FOREACH(vp, &mp->mnt_vnodelist, v_mntvnodes) {
666 1.42 reinoud nextvp = TAILQ_NEXT(vp, v_mntvnodes);
667 1.11 fvdl if (vp->v_mount != mp)
668 1.11 fvdl goto again;
669 1.13 fvdl if (vp->v_type == VNON)
670 1.13 fvdl continue;
671 1.11 fvdl simple_lock(&vp->v_interlock);
672 1.11 fvdl simple_unlock(&mntvnode_slock);
673 1.26 thorpej error = vget(vp, LK_EXCLUSIVE | LK_NOWAIT | LK_INTERLOCK);
674 1.11 fvdl if (error) {
675 1.11 fvdl simple_lock(&mntvnode_slock);
676 1.11 fvdl if (error == ENOENT)
677 1.11 fvdl goto again;
678 1.1 mycroft continue;
679 1.11 fvdl }
680 1.1 mycroft for (i = 0; i < MAXQUOTAS; i++) {
681 1.1 mycroft dq = VTOI(vp)->i_dquot[i];
682 1.1 mycroft if (dq != NODQUOT && (dq->dq_flags & DQ_MOD))
683 1.1 mycroft dqsync(vp, dq);
684 1.1 mycroft }
685 1.1 mycroft vput(vp);
686 1.11 fvdl simple_lock(&mntvnode_slock);
687 1.42 reinoud /* if the list changed, start again */
688 1.42 reinoud if (TAILQ_NEXT(vp, v_mntvnodes) != nextvp)
689 1.1 mycroft goto again;
690 1.1 mycroft }
691 1.11 fvdl simple_unlock(&mntvnode_slock);
692 1.1 mycroft return (0);
693 1.1 mycroft }
694 1.1 mycroft
695 1.1 mycroft /*
696 1.1 mycroft * Code pertaining to management of the in-core dquot data structures.
697 1.1 mycroft */
698 1.5 mycroft #define DQHASH(dqvp, id) \
699 1.21 chs (((((long)(dqvp)) >> 8) + id) & dqhash)
700 1.35 thorpej static LIST_HEAD(dqhashhead, dquot) *dqhashtbl;
701 1.35 thorpej static u_long dqhash;
702 1.49 hannken static kmutex_t dqhashtbl_mtx;
703 1.1 mycroft
704 1.1 mycroft /*
705 1.1 mycroft * Dquot free list.
706 1.1 mycroft */
707 1.1 mycroft #define DQUOTINC 5 /* minimum free dquots desired */
708 1.35 thorpej static TAILQ_HEAD(dqfreelist, dquot) dqfreelist;
709 1.35 thorpej static long numdquot, desireddquot = DQUOTINC;
710 1.23 thorpej
711 1.47 pooka MALLOC_JUSTDEFINE(M_DQUOT, "UFS quota", "UFS quota entries");
712 1.1 mycroft
713 1.1 mycroft /*
714 1.1 mycroft * Initialize the quota system.
715 1.1 mycroft */
716 1.1 mycroft void
717 1.35 thorpej dqinit(void)
718 1.1 mycroft {
719 1.47 pooka
720 1.49 hannken mutex_init(&dqhashtbl_mtx, MUTEX_DEFAULT, IPL_NONE);
721 1.47 pooka malloc_type_attach(M_DQUOT);
722 1.20 ad dqhashtbl =
723 1.20 ad hashinit(desiredvnodes, HASH_LIST, M_DQUOT, M_WAITOK, &dqhash);
724 1.5 mycroft TAILQ_INIT(&dqfreelist);
725 1.14 jdolecek }
726 1.14 jdolecek
727 1.21 chs void
728 1.35 thorpej dqreinit(void)
729 1.21 chs {
730 1.21 chs struct dquot *dq;
731 1.21 chs struct dqhashhead *oldhash, *hash;
732 1.21 chs struct vnode *dqvp;
733 1.21 chs u_long oldmask, mask, hashval;
734 1.21 chs int i;
735 1.21 chs
736 1.21 chs hash = hashinit(desiredvnodes, HASH_LIST, M_DQUOT, M_WAITOK, &mask);
737 1.21 chs oldhash = dqhashtbl;
738 1.21 chs oldmask = dqhash;
739 1.21 chs dqhashtbl = hash;
740 1.21 chs dqhash = mask;
741 1.21 chs for (i = 0; i <= oldmask; i++) {
742 1.21 chs while ((dq = LIST_FIRST(&oldhash[i])) != NULL) {
743 1.21 chs dqvp = dq->dq_ump->um_quotas[dq->dq_type];
744 1.21 chs LIST_REMOVE(dq, dq_hash);
745 1.21 chs hashval = DQHASH(dqvp, dq->dq_id);
746 1.21 chs LIST_INSERT_HEAD(&dqhashtbl[hashval], dq, dq_hash);
747 1.21 chs }
748 1.21 chs }
749 1.21 chs hashdone(oldhash, M_DQUOT);
750 1.21 chs }
751 1.21 chs
752 1.14 jdolecek /*
753 1.14 jdolecek * Free resources held by quota system.
754 1.14 jdolecek */
755 1.14 jdolecek void
756 1.35 thorpej dqdone(void)
757 1.14 jdolecek {
758 1.47 pooka
759 1.14 jdolecek hashdone(dqhashtbl, M_DQUOT);
760 1.47 pooka malloc_type_detach(M_DQUOT);
761 1.49 hannken mutex_destroy(&dqhashtbl_mtx);
762 1.1 mycroft }
763 1.1 mycroft
764 1.1 mycroft /*
765 1.1 mycroft * Obtain a dquot structure for the specified identifier and quota file
766 1.1 mycroft * reading the information from the file if necessary.
767 1.1 mycroft */
768 1.48 hannken static int
769 1.35 thorpej dqget(struct vnode *vp, u_long id, struct ufsmount *ump, int type,
770 1.35 thorpej struct dquot **dqp)
771 1.1 mycroft {
772 1.11 fvdl struct dquot *dq;
773 1.21 chs struct dqhashhead *dqh;
774 1.11 fvdl struct vnode *dqvp;
775 1.1 mycroft struct iovec aiov;
776 1.1 mycroft struct uio auio;
777 1.1 mycroft int error;
778 1.1 mycroft
779 1.1 mycroft dqvp = ump->um_quotas[type];
780 1.1 mycroft if (dqvp == NULLVP || (ump->um_qflags[type] & QTF_CLOSING)) {
781 1.1 mycroft *dqp = NODQUOT;
782 1.1 mycroft return (EINVAL);
783 1.1 mycroft }
784 1.1 mycroft /*
785 1.1 mycroft * Check the cache first.
786 1.1 mycroft */
787 1.49 hannken mutex_enter(&dqhashtbl_mtx);
788 1.21 chs dqh = &dqhashtbl[DQHASH(dqvp, id)];
789 1.21 chs LIST_FOREACH(dq, dqh, dq_hash) {
790 1.1 mycroft if (dq->dq_id != id ||
791 1.1 mycroft dq->dq_ump->um_quotas[dq->dq_type] != dqvp)
792 1.1 mycroft continue;
793 1.1 mycroft /*
794 1.1 mycroft * Cache hit with no references. Take
795 1.1 mycroft * the structure off the free list.
796 1.1 mycroft */
797 1.5 mycroft if (dq->dq_cnt == 0)
798 1.5 mycroft TAILQ_REMOVE(&dqfreelist, dq, dq_freelist);
799 1.37 chs dqref(dq);
800 1.49 hannken mutex_exit(&dqhashtbl_mtx);
801 1.1 mycroft *dqp = dq;
802 1.1 mycroft return (0);
803 1.1 mycroft }
804 1.1 mycroft /*
805 1.1 mycroft * Not in cache, allocate a new one.
806 1.1 mycroft */
807 1.5 mycroft if (dqfreelist.tqh_first == NODQUOT &&
808 1.5 mycroft numdquot < MAXQUOTAS * desiredvnodes)
809 1.1 mycroft desireddquot += DQUOTINC;
810 1.1 mycroft if (numdquot < desireddquot) {
811 1.49 hannken mutex_exit(&dqhashtbl_mtx);
812 1.1 mycroft dq = (struct dquot *)malloc(sizeof *dq, M_DQUOT, M_WAITOK);
813 1.12 perry memset((char *)dq, 0, sizeof *dq);
814 1.49 hannken mutex_init(&dq->dq_interlock, MUTEX_DEFAULT, IPL_NONE);
815 1.1 mycroft numdquot++;
816 1.1 mycroft } else {
817 1.5 mycroft if ((dq = dqfreelist.tqh_first) == NULL) {
818 1.49 hannken mutex_exit(&dqhashtbl_mtx);
819 1.18 mjacob tablefull("dquot",
820 1.19 jdolecek "increase kern.maxvnodes or NVNODE");
821 1.1 mycroft *dqp = NODQUOT;
822 1.1 mycroft return (EUSERS);
823 1.1 mycroft }
824 1.1 mycroft if (dq->dq_cnt || (dq->dq_flags & DQ_MOD))
825 1.1 mycroft panic("free dquot isn't");
826 1.5 mycroft TAILQ_REMOVE(&dqfreelist, dq, dq_freelist);
827 1.5 mycroft LIST_REMOVE(dq, dq_hash);
828 1.49 hannken mutex_exit(&dqhashtbl_mtx);
829 1.1 mycroft }
830 1.1 mycroft /*
831 1.1 mycroft * Initialize the contents of the dquot structure.
832 1.1 mycroft */
833 1.1 mycroft if (vp != dqvp)
834 1.11 fvdl vn_lock(dqvp, LK_EXCLUSIVE | LK_RETRY);
835 1.49 hannken mutex_enter(&dq->dq_interlock);
836 1.49 hannken mutex_enter(&dqhashtbl_mtx);
837 1.49 hannken dqh = &dqhashtbl[DQHASH(dqvp, id)];
838 1.5 mycroft LIST_INSERT_HEAD(dqh, dq, dq_hash);
839 1.37 chs dqref(dq);
840 1.49 hannken mutex_exit(&dqhashtbl_mtx);
841 1.49 hannken dq->dq_flags = 0;
842 1.1 mycroft dq->dq_id = id;
843 1.1 mycroft dq->dq_ump = ump;
844 1.1 mycroft dq->dq_type = type;
845 1.1 mycroft auio.uio_iov = &aiov;
846 1.1 mycroft auio.uio_iovcnt = 1;
847 1.44 christos aiov.iov_base = (void *)&dq->dq_dqb;
848 1.1 mycroft aiov.iov_len = sizeof (struct dqblk);
849 1.1 mycroft auio.uio_resid = sizeof (struct dqblk);
850 1.1 mycroft auio.uio_offset = (off_t)(id * sizeof (struct dqblk));
851 1.1 mycroft auio.uio_rw = UIO_READ;
852 1.38 yamt UIO_SETUP_SYSSPACE(&auio);
853 1.1 mycroft error = VOP_READ(dqvp, &auio, 0, ump->um_cred[type]);
854 1.1 mycroft if (auio.uio_resid == sizeof(struct dqblk) && error == 0)
855 1.44 christos memset((void *)&dq->dq_dqb, 0, sizeof(struct dqblk));
856 1.1 mycroft if (vp != dqvp)
857 1.11 fvdl VOP_UNLOCK(dqvp, 0);
858 1.1 mycroft /*
859 1.1 mycroft * I/O error in reading quota file, release
860 1.1 mycroft * quota structure and reflect problem to caller.
861 1.1 mycroft */
862 1.1 mycroft if (error) {
863 1.49 hannken mutex_enter(&dqhashtbl_mtx);
864 1.5 mycroft LIST_REMOVE(dq, dq_hash);
865 1.49 hannken mutex_exit(&dqhashtbl_mtx);
866 1.49 hannken mutex_exit(&dq->dq_interlock);
867 1.1 mycroft dqrele(vp, dq);
868 1.1 mycroft *dqp = NODQUOT;
869 1.1 mycroft return (error);
870 1.1 mycroft }
871 1.1 mycroft /*
872 1.1 mycroft * Check for no limit to enforce.
873 1.1 mycroft * Initialize time values if necessary.
874 1.1 mycroft */
875 1.1 mycroft if (dq->dq_isoftlimit == 0 && dq->dq_bsoftlimit == 0 &&
876 1.1 mycroft dq->dq_ihardlimit == 0 && dq->dq_bhardlimit == 0)
877 1.1 mycroft dq->dq_flags |= DQ_FAKE;
878 1.1 mycroft if (dq->dq_id != 0) {
879 1.1 mycroft if (dq->dq_btime == 0)
880 1.40 kardel dq->dq_btime = time_second + ump->um_btime[type];
881 1.1 mycroft if (dq->dq_itime == 0)
882 1.40 kardel dq->dq_itime = time_second + ump->um_itime[type];
883 1.1 mycroft }
884 1.49 hannken mutex_exit(&dq->dq_interlock);
885 1.1 mycroft *dqp = dq;
886 1.1 mycroft return (0);
887 1.1 mycroft }
888 1.1 mycroft
889 1.1 mycroft /*
890 1.1 mycroft * Obtain a reference to a dquot.
891 1.1 mycroft */
892 1.48 hannken static void
893 1.35 thorpej dqref(struct dquot *dq)
894 1.1 mycroft {
895 1.1 mycroft
896 1.1 mycroft dq->dq_cnt++;
897 1.46 hannken KASSERT(dq->dq_cnt > 0);
898 1.1 mycroft }
899 1.1 mycroft
900 1.1 mycroft /*
901 1.1 mycroft * Release a reference to a dquot.
902 1.1 mycroft */
903 1.48 hannken static void
904 1.35 thorpej dqrele(struct vnode *vp, struct dquot *dq)
905 1.1 mycroft {
906 1.1 mycroft
907 1.1 mycroft if (dq == NODQUOT)
908 1.1 mycroft return;
909 1.1 mycroft if (dq->dq_cnt > 1) {
910 1.1 mycroft dq->dq_cnt--;
911 1.1 mycroft return;
912 1.1 mycroft }
913 1.1 mycroft if (dq->dq_flags & DQ_MOD)
914 1.1 mycroft (void) dqsync(vp, dq);
915 1.1 mycroft if (--dq->dq_cnt > 0)
916 1.1 mycroft return;
917 1.5 mycroft TAILQ_INSERT_TAIL(&dqfreelist, dq, dq_freelist);
918 1.1 mycroft }
919 1.1 mycroft
920 1.1 mycroft /*
921 1.1 mycroft * Update the disk quota in the quota file.
922 1.1 mycroft */
923 1.48 hannken static int
924 1.35 thorpej dqsync(struct vnode *vp, struct dquot *dq)
925 1.1 mycroft {
926 1.1 mycroft struct vnode *dqvp;
927 1.1 mycroft struct iovec aiov;
928 1.1 mycroft struct uio auio;
929 1.1 mycroft int error;
930 1.1 mycroft
931 1.1 mycroft if (dq == NODQUOT)
932 1.1 mycroft panic("dqsync: dquot");
933 1.1 mycroft if ((dq->dq_flags & DQ_MOD) == 0)
934 1.1 mycroft return (0);
935 1.1 mycroft if ((dqvp = dq->dq_ump->um_quotas[dq->dq_type]) == NULLVP)
936 1.1 mycroft panic("dqsync: file");
937 1.1 mycroft if (vp != dqvp)
938 1.11 fvdl vn_lock(dqvp, LK_EXCLUSIVE | LK_RETRY);
939 1.49 hannken mutex_enter(&dq->dq_interlock);
940 1.49 hannken if ((dq->dq_flags & DQ_MOD) == 0) {
941 1.49 hannken mutex_exit(&dq->dq_interlock);
942 1.49 hannken if (vp != dqvp)
943 1.49 hannken VOP_UNLOCK(dqvp, 0);
944 1.49 hannken return (0);
945 1.1 mycroft }
946 1.1 mycroft auio.uio_iov = &aiov;
947 1.1 mycroft auio.uio_iovcnt = 1;
948 1.44 christos aiov.iov_base = (void *)&dq->dq_dqb;
949 1.1 mycroft aiov.iov_len = sizeof (struct dqblk);
950 1.1 mycroft auio.uio_resid = sizeof (struct dqblk);
951 1.1 mycroft auio.uio_offset = (off_t)(dq->dq_id * sizeof (struct dqblk));
952 1.1 mycroft auio.uio_rw = UIO_WRITE;
953 1.38 yamt UIO_SETUP_SYSSPACE(&auio);
954 1.1 mycroft error = VOP_WRITE(dqvp, &auio, 0, dq->dq_ump->um_cred[dq->dq_type]);
955 1.1 mycroft if (auio.uio_resid && error == 0)
956 1.1 mycroft error = EIO;
957 1.49 hannken dq->dq_flags &= ~DQ_MOD;
958 1.49 hannken mutex_exit(&dq->dq_interlock);
959 1.1 mycroft if (vp != dqvp)
960 1.11 fvdl VOP_UNLOCK(dqvp, 0);
961 1.1 mycroft return (error);
962 1.1 mycroft }
963 1.1 mycroft
964 1.1 mycroft /*
965 1.1 mycroft * Flush all entries from the cache for a particular vnode.
966 1.1 mycroft */
967 1.48 hannken static void
968 1.35 thorpej dqflush(struct vnode *vp)
969 1.1 mycroft {
970 1.15 augustss struct dquot *dq, *nextdq;
971 1.21 chs struct dqhashhead *dqh;
972 1.1 mycroft
973 1.1 mycroft /*
974 1.1 mycroft * Move all dquot's that used to refer to this quota
975 1.1 mycroft * file off their hash chains (they will eventually
976 1.1 mycroft * fall off the head of the free list and be re-used).
977 1.1 mycroft */
978 1.49 hannken mutex_enter(&dqhashtbl_mtx);
979 1.5 mycroft for (dqh = &dqhashtbl[dqhash]; dqh >= dqhashtbl; dqh--) {
980 1.21 chs for (dq = LIST_FIRST(dqh); dq; dq = nextdq) {
981 1.21 chs nextdq = LIST_NEXT(dq, dq_hash);
982 1.1 mycroft if (dq->dq_ump->um_quotas[dq->dq_type] != vp)
983 1.1 mycroft continue;
984 1.1 mycroft if (dq->dq_cnt)
985 1.1 mycroft panic("dqflush: stray dquot");
986 1.5 mycroft LIST_REMOVE(dq, dq_hash);
987 1.21 chs dq->dq_ump = NULL;
988 1.1 mycroft }
989 1.1 mycroft }
990 1.49 hannken mutex_exit(&dqhashtbl_mtx);
991 1.1 mycroft }
992