1 /* $NetBSD: kern_uidinfo.c,v 1.4 2009/01/11 02:45:52 christos Exp $ */
4 * Copyright (c) 1982, 1986, 1991, 1993
5 * The Regents of the University of California. All rights reserved.
6 * (c) UNIX System Laboratories, Inc.
7 * All or some portions of this file are derived from material licensed
8 * to the University of California by American Telephone and Telegraph
9 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
10 * the permission of UNIX System Laboratories, Inc.
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in the
19 * documentation and/or other materials provided with the distribution.
20 * 3. Neither the name of the University nor the names of its contributors
21 * may be used to endorse or promote products derived from this software
22 * without specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 #include <sys/cdefs.h>
38 __KERNEL_RCSID(0, "$NetBSD: kern_uidinfo.c,v 1.4 2009/01/11 02:45:52 christos Exp $");
40 #include <sys/param.h>
41 #include <sys/systm.h>
44 #include <sys/atomic.h>
45 #include <sys/uidinfo.h>
48 static SLIST_HEAD(uihashhead
, uidinfo
) *uihashtbl
;
51 #define UIHASH(uid) (&uihashtbl[(uid) & uihash])
58 * In case of MP system, SLIST_FOREACH would force a cache line
59 * write-back for every modified 'uidinfo', thus we try to keep the
62 const u_int uihash_sz
= (maxcpus
> 1 ? 1024 : 64);
64 uihashtbl
= hashinit(uihash_sz
, HASH_SLIST
, true, &uihash
);
67 * Ensure that uid 0 is always in the user hash table, as
68 * sbreserve() expects it available from interrupt context.
76 struct uidinfo
*uip
, *uip_first
, *newuip
;
77 struct uihashhead
*uipp
;
83 * To make insertion atomic, abstraction of SLIST will be violated.
85 uip_first
= uipp
->slh_first
;
87 SLIST_FOREACH(uip
, uipp
, ui_hash
) {
88 if (uip
->ui_uid
!= uid
)
91 kmem_free(newuip
, sizeof(*newuip
));
95 newuip
= kmem_zalloc(sizeof(*newuip
), KM_SLEEP
);
99 * If atomic insert is unsuccessful, another thread might be
100 * allocated this 'uid', thus full re-check is needed.
102 newuip
->ui_hash
.sle_next
= uip_first
;
104 uip
= atomic_cas_ptr(&uipp
->slh_first
, uip_first
, newuip
);
105 if (uip
!= uip_first
) {
114 * Change the count associated with number of processes
115 * a given user is using.
118 chgproccnt(uid_t uid
, int diff
)
124 proccnt
= atomic_add_long_nv(&uip
->ui_proccnt
, diff
);
125 KASSERT(proccnt
>= 0);
130 chgsbsize(struct uidinfo
*uip
, u_long
*hiwat
, u_long to
, rlim_t xmax
)
133 const long diff
= to
- *hiwat
;
135 nsb
= (rlim_t
)atomic_add_long_nv((long *)&uip
->ui_sbsize
, diff
);
136 if (diff
> 0 && nsb
> xmax
) {
137 atomic_add_long((long *)&uip
->ui_sbsize
, -diff
);