This file is indexed.

/usr/include/nih/hash.h is in libnih-dev 1.0.3-4ubuntu25.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/* libnih
 *
 * Copyright © 2009 Scott James Remnant <scott@netsplit.com>.
 * Copyright © 2009 Canonical Ltd.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2, as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef NIH_HASH_H
#define NIH_HASH_H

/**
 * Provides a generic hash table implementation using NihList for the bins,
 * which means that entries may be freely moved between lists and hash
 * tables.
 *
 * Members are identified by a constant key, which is used for both hashing
 * and comparison.  The key function takes a given member (referenced by
 * its list head) and returns a pointer, this pointer is passed to the
 * hash function for hashing and the comparison function for comparison.
 *
 * The key, hash and comparison function are given when creating the hash
 * table with nih_hash_new().
 *
 * The most common use of this pointer is a string, generally a constant
 * one found as the first member in the structure after the list head.
 * For this case, you may use nih_hash_string_new() instead.
 *
 * Entries may be added to a hash table using nih_hash_add(), no assumption
 * is made about whether duplicate entries are permitted or not.  To add
 * and fail if the entry already exists use nih_hash_add_unique(), to add
 * and replace an existing entry use nih_hash_replace().
 *
 * The hash table may be iterated with nih_hash_search(), passing the return
 * value to subsequent calls iterates all values with the given key.
 *
 * To lookup the first value nih_hash_lookup() is a convenient simpler
 * function.
 **/

#include <nih/macros.h>
#include <nih/list.h>


/**
 * NihKeyFunction:
 * @entry: entry to key.
 *
 * This function is used to obtain a constant key for a given table entry.
 *
 * Returns: constant key from entry.
 **/
typedef const void *(*NihKeyFunction) (NihList *entry);

/**
 * NihHashFunction:
 * @key: key to hash.
 *
 * This function is used to generate a 32-bit hash for a given constant
 * key, this will be bounded by the hash size automatically.
 *
 * Returns: 32-bit hash.
 **/
typedef uint32_t (*NihHashFunction) (const void *key);

/**
 * NihCmpFunction:
 * @key1: key to compare,
 * @key2: key to compare against.
 *
 * This function is used to compare constant keys from two given table
 * entries.
 *
 * Returns: integer less than, equal to or greater than zero if @key1 is
 * respectively less then, equal to or greater than @key2.
 **/
typedef int (*NihCmpFunction) (const void *key1, const void *key2);


/**
 * NihHash:
 * @bins: array of bins,
 * @size: size of bins array,
 * @key_function: function used to obtain keys for entries,
 * @hash_function: function used to obtain hash of keys,
 * @cmp_function: function used to compare keys.
 *
 * This structure represents a hash table which is more efficient for
 * looking up members than an ordinary list.
 *
 * Individual members of the hash table are NihList members as are the
 * bins themselves, so to remove an entry from the table you can just
 * use nih_list_remove().
 **/
typedef struct nih_hash {
	NihList         *bins;
	size_t           size;

	NihKeyFunction   key_function;
	NihHashFunction  hash_function;
	NihCmpFunction   cmp_function;
} NihHash;


/**
 * NIH_HASH_FOREACH:
 * @hash: hash table to iterate,
 * @iter: name of iterator variable.
 *
 * Expands to nested for statements that iterate over each entry in each
 * bin of @hash, except the bin head pointer, setting @iter to each entry
 * for the block within the loop.  A variable named _@iter_i is used to
 * iterate the hash bins.
 *
 * This is the cheapest form of iteration, however it is not safe to perform
 * various modifications to the hash; most importantly, you must not change
 * the member being iterated in any way, including removing it from the hash
 * or freeing it.  If you need to do that, use NIH_HASH_FOREACH_SAFE() instead.
 *
 * However since it doesn't modify the hash being iterated in any way, it
 * is safe to traverse or iterate the hash again while iterating.
 **/
#define NIH_HASH_FOREACH(hash, iter)					\
	for (size_t _##iter##_i = 0; _##iter##_i < (hash)->size;	\
	     _##iter##_i++)						\
		NIH_LIST_FOREACH (&(hash)->bins[_##iter##_i], iter)

/**
 * NIH_HASH_FOREACH_SAFE:
 * @hash: hash table to iterate,
 * @iter: name of iterator variable.
 *
 * Expands to nested for statements that iterate over each entry in each
 * bin of @hash, except for the bin head pointer, setting @iter to each
 * entry for the block within the loop.  A variable named _@iter_i is used
 * to iterate the hash bins.
 *
 * The iteration is performed safely by placing a cursor node after @iter;
 * this means that any node including @iter can be removed from the hash,
 * added to a different hash or list, or entries added before or after it.
 *
 * Note that if you add an entry directly after @iter and wish it to be
 * visited, you would need to use NIH_HASH_FOREACH() instead, as this
 * would be placed before the cursor and thus skipped.
 *
 * Also since the hash has an extra node during iteration of a different
 * type, it is expressly not safe to traverse or iterate the hash while
 * iterating - including performing lookups.  If you need to perform
 * multiple iterations, lookups, or reference the next or previous pointers
 * of a node, you must use NIH_HASH_FOREACH().
 **/
#define NIH_HASH_FOREACH_SAFE(hash, iter)				\
	for (size_t _##iter##_i = 0; _##iter##_i < (hash)->size;	\
	     _##iter##_i++)						\
		NIH_LIST_FOREACH_SAFE (&(hash)->bins[_##iter##_i], iter)


/**
 * nih_hash_string_new:
 * @parent: parent of new hash,
 * @entries: rough number of entries expected,
 *
 * Allocates a new hash table, the number of buckets selected is a prime
 * number that is no larger than @entries; this should be set to a rough
 * number of expected entries to ensure optimum distribution.
 *
 * Individual members of the hash table are NihList member which have
 * a constant string as the first member that can be used as the hash key,
 * these will be compared case sensitively.
 *
 * The structure is allocated using nih_alloc() so it can be used as a
 * context to other allocations; there is no non-allocated version of this
 * function because the hash must be usable as a parent context to its bins.
 *
 * If @parent is not NULL, it should be a pointer to another object which
 * will be used as a parent for the returned hash table.  When all parents
 * of the returned hash table are freed, the returned hash table will also be
 * freed.
 *
 * Returns: the new hash table or NULL if the allocation failed.
 **/
#define nih_hash_string_new(parent, entries)		     \
	nih_hash_new (parent, entries,			     \
		      (NihKeyFunction)nih_hash_string_key,   \
		      (NihHashFunction)nih_hash_string_hash, \
		      (NihCmpFunction)nih_hash_string_cmp)


NIH_BEGIN_EXTERN

NihHash *   nih_hash_new          (const void *parent, size_t entries,
				   NihKeyFunction key_function,
				   NihHashFunction hash_function,
				   NihCmpFunction cmp_function)
	__attribute__ ((warn_unused_result));

NihList *   nih_hash_add          (NihHash *hash, NihList *entry);
NihList *   nih_hash_add_unique   (NihHash *hash, NihList *entry);
NihList *   nih_hash_replace      (NihHash *hash, NihList *entry);

NihList *   nih_hash_search       (NihHash *hash, const void *key,
				   NihList *entry);
NihList *   nih_hash_lookup       (NihHash *hash, const void *key);

const char *nih_hash_string_key   (NihList *entry);
uint32_t    nih_hash_string_hash  (const char *key);
int         nih_hash_string_cmp   (const char *key1, const char *key2);

NIH_END_EXTERN

#endif /* NIH_HASH_H */