Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/libexec/mknetid/hash.c
34823 views
1
/*-
2
* SPDX-License-Identifier: BSD-4-Clause
3
*
4
* Copyright (c) 1995
5
* Bill Paul <[email protected]>. All rights reserved.
6
*
7
* Redistribution and use in source and binary forms, with or without
8
* modification, are permitted provided that the following conditions
9
* are met:
10
* 1. Redistributions of source code must retain the above copyright
11
* notice, this list of conditions and the following disclaimer.
12
* 2. Redistributions in binary form must reproduce the above copyright
13
* notice, this list of conditions and the following disclaimer in the
14
* documentation and/or other materials provided with the distribution.
15
* 3. All advertising materials mentioning features or use of this software
16
* must display the following acknowledgement:
17
* This product includes software developed by Bill Paul.
18
* 4. Neither the name of the author nor the names of any co-contributors
19
* may be used to endorse or promote products derived from this software
20
* without specific prior written permission.
21
*
22
* THIS SOFTWARE IS PROVIDED BY Bill Paul AND CONTRIBUTORS ``AS IS'' AND
23
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25
* ARE DISCLAIMED. IN NO EVENT SHALL Bill Paul OR CONTRIBUTORS BE LIABLE
26
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32
* SUCH DAMAGE.
33
*/
34
35
#include <stdio.h>
36
#include <stdlib.h>
37
#include <string.h>
38
#include <sys/types.h>
39
#include "hash.h"
40
41
/*
42
* This hash function is stolen directly from the
43
* Berkeley DB package. It already exists inside libc, but
44
* it's declared static which prevents us from calling it
45
* from here.
46
*/
47
/*
48
* OZ's original sdbm hash
49
*/
50
u_int32_t
51
hash(const void *keyarg, size_t len)
52
{
53
const u_char *key;
54
size_t loop;
55
u_int32_t h;
56
57
#define HASHC h = *key++ + 65599 * h
58
59
h = 0;
60
key = keyarg;
61
if (len > 0) {
62
loop = (len + 8 - 1) >> 3;
63
64
switch (len & (8 - 1)) {
65
case 0:
66
do {
67
HASHC;
68
/* FALLTHROUGH */
69
case 7:
70
HASHC;
71
/* FALLTHROUGH */
72
case 6:
73
HASHC;
74
/* FALLTHROUGH */
75
case 5:
76
HASHC;
77
/* FALLTHROUGH */
78
case 4:
79
HASHC;
80
/* FALLTHROUGH */
81
case 3:
82
HASHC;
83
/* FALLTHROUGH */
84
case 2:
85
HASHC;
86
/* FALLTHROUGH */
87
case 1:
88
HASHC;
89
} while (--loop);
90
}
91
}
92
return (h);
93
}
94
95
/*
96
* Generate a hash value for a given key (character string).
97
* We mask off all but the lower 8 bits since our table array
98
* can only hole 256 elements.
99
*/
100
u_int32_t hashkey(char *key)
101
{
102
103
if (key == NULL)
104
return (-1);
105
return(hash((void *)key, strlen(key)) & HASH_MASK);
106
}
107
108
/* Find an entry in the hash table (may be hanging off a linked list). */
109
struct grouplist *lookup(struct member_entry *table[], char *key)
110
{
111
struct member_entry *cur;
112
113
cur = table[hashkey(key)];
114
115
while (cur) {
116
if (!strcmp(cur->key, key))
117
return(cur->groups);
118
cur = cur->next;
119
}
120
121
return(NULL);
122
}
123
124
struct grouplist dummy = { 99999, NULL };
125
126
/*
127
* Store a group member entry and/or update its grouplist.
128
*/
129
void mstore (struct member_entry *table[], char *key, int gid, int dup)
130
{
131
struct member_entry *cur, *new;
132
struct grouplist *tmp;
133
u_int32_t i;
134
135
i = hashkey(key);
136
cur = table[i];
137
138
if (!dup) {
139
tmp = (struct grouplist *)malloc(sizeof(struct grouplist));
140
tmp->groupid = gid;
141
tmp->next = NULL;
142
}
143
144
/* Check if all we have to do is insert a new groupname. */
145
while (cur) {
146
if (!dup && !strcmp(cur->key, key)) {
147
tmp->next = cur->groups;
148
cur->groups = tmp;
149
return;
150
}
151
cur = cur->next;
152
}
153
154
/* Didn't find a match -- add the whole mess to the table. */
155
new = (struct member_entry *)malloc(sizeof(struct member_entry));
156
new->key = strdup(key);
157
if (!dup)
158
new->groups = tmp;
159
else
160
new->groups = (struct grouplist *)&dummy;
161
new->next = table[i];
162
table[i] = new;
163
164
return;
165
}
166
167