]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bind9/lib/isc/quota.c
This commit was generated by cvs2svn to compensate for changes in r140801,
[FreeBSD/FreeBSD.git] / contrib / bind9 / lib / isc / quota.c
1 /*
2  * Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Copyright (C) 2000, 2001  Internet Software Consortium.
4  *
5  * Permission to use, copy, modify, and distribute this software for any
6  * purpose with or without fee is hereby granted, provided that the above
7  * copyright notice and this permission notice appear in all copies.
8  *
9  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
10  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
11  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
12  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
13  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
14  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
15  * PERFORMANCE OF THIS SOFTWARE.
16  */
17
18 /* $Id: quota.c,v 1.11.12.3 2004/03/08 09:04:49 marka Exp $ */
19
20 #include <config.h>
21
22 #include <stddef.h>
23
24 #include <isc/quota.h>
25 #include <isc/util.h>
26
27 isc_result_t
28 isc_quota_init(isc_quota_t *quota, int max) {
29         quota->max = max;
30         quota->used = 0;
31         quota->soft = ISC_FALSE;
32         return (isc_mutex_init(&quota->lock));
33 }
34
35 void
36 isc_quota_destroy(isc_quota_t *quota) {
37         INSIST(quota->used == 0);
38         quota->max = -1;
39         quota->used = -1;
40         quota->soft = ISC_FALSE;
41         DESTROYLOCK(&quota->lock);
42 }
43
44 void
45 isc_quota_soft(isc_quota_t *quota, isc_boolean_t soft) {
46         quota->soft = soft;
47 }
48
49 isc_result_t
50 isc_quota_reserve(isc_quota_t *quota) {
51         isc_result_t result;
52         LOCK(&quota->lock);
53         if (quota->used < quota->max) {
54                 quota->used++;
55                 result = ISC_R_SUCCESS;
56         } else {
57                 if (quota->soft) {
58                         quota->used++;
59                         result = ISC_R_SOFTQUOTA;
60                 } else
61                         result = ISC_R_QUOTA;
62         }
63         UNLOCK(&quota->lock);
64         return (result);
65 }
66
67 void
68 isc_quota_release(isc_quota_t *quota) {
69         LOCK(&quota->lock);
70         INSIST(quota->used > 0);
71         quota->used--;
72         UNLOCK(&quota->lock);
73 }
74
75 isc_result_t
76 isc_quota_attach(isc_quota_t *quota, isc_quota_t **p)
77 {
78         isc_result_t result;
79         INSIST(p != NULL && *p == NULL);
80         result = isc_quota_reserve(quota);
81         if (result == ISC_R_SUCCESS || result == ISC_R_SOFTQUOTA)
82                 *p = quota;
83         return (result);
84 }
85
86 void
87 isc_quota_detach(isc_quota_t **p)
88 {
89         INSIST(p != NULL && *p != NULL);
90         isc_quota_release(*p);
91         *p = NULL;
92 }