Merge branch 'vendor/OPENSSL'
[dragonfly.git] / contrib / bind-9.3 / lib / isc / quota.c
1 /*
2  * Copyright (C) 2004, 2005  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.5 2005/07/29 00:13:09 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 = 0;
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 = 0;
39         quota->used = 0;
40         quota->soft = 0;
41         DESTROYLOCK(&quota->lock);
42 }
43
44 void
45 isc_quota_soft(isc_quota_t *quota, int soft) {
46         LOCK(&quota->lock);
47         quota->soft = soft;
48         UNLOCK(&quota->lock);
49 }
50
51 void
52 isc_quota_max(isc_quota_t *quota, int max) {
53         LOCK(&quota->lock);
54         quota->max = max;
55         UNLOCK(&quota->lock);
56 }
57
58 isc_result_t
59 isc_quota_reserve(isc_quota_t *quota) {
60         isc_result_t result;
61         LOCK(&quota->lock);
62         if (quota->max == 0 || quota->used < quota->max) {
63                 if (quota->soft == 0 || quota->used < quota->soft)
64                         result = ISC_R_SUCCESS;
65                 else
66                         result = ISC_R_SOFTQUOTA;
67                 quota->used++;
68         } else
69                 result = ISC_R_QUOTA;
70         UNLOCK(&quota->lock);
71         return (result);
72 }
73
74 void
75 isc_quota_release(isc_quota_t *quota) {
76         LOCK(&quota->lock);
77         INSIST(quota->used > 0);
78         quota->used--;
79         UNLOCK(&quota->lock);
80 }
81
82 isc_result_t
83 isc_quota_attach(isc_quota_t *quota, isc_quota_t **p)
84 {
85         isc_result_t result;
86         INSIST(p != NULL && *p == NULL);
87         result = isc_quota_reserve(quota);
88         if (result == ISC_R_SUCCESS || result == ISC_R_SOFTQUOTA)
89                 *p = quota;
90         return (result);
91 }
92
93 void
94 isc_quota_detach(isc_quota_t **p)
95 {
96         INSIST(p != NULL && *p != NULL);
97         isc_quota_release(*p);
98         *p = NULL;
99 }