lhash.pod 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. =pod
  2. =head1 NAME
  3. lh_new, lh_free, lh_insert, lh_delete, lh_retrieve, lh_doall, lh_doall_arg, lh_error - dynamic hash table
  4. =head1 SYNOPSIS
  5. #include <openssl/lhash.h>
  6. DECLARE_LHASH_OF(<type>);
  7. LHASH *lh_<type>_new();
  8. void lh_<type>_free(LHASH_OF(<type> *table);
  9. <type> *lh_<type>_insert(LHASH_OF(<type> *table, <type> *data);
  10. <type> *lh_<type>_delete(LHASH_OF(<type> *table, <type> *data);
  11. <type> *lh_retrieve(LHASH_OF<type> *table, <type> *data);
  12. void lh_<type>_doall(LHASH_OF(<type> *table, LHASH_DOALL_FN_TYPE func);
  13. void lh_<type>_doall_arg(LHASH_OF(<type> *table, LHASH_DOALL_ARG_FN_TYPE func,
  14. <type2>, <type2> *arg);
  15. int lh_<type>_error(LHASH_OF(<type> *table);
  16. typedef int (*LHASH_COMP_FN_TYPE)(const void *, const void *);
  17. typedef unsigned long (*LHASH_HASH_FN_TYPE)(const void *);
  18. typedef void (*LHASH_DOALL_FN_TYPE)(const void *);
  19. typedef void (*LHASH_DOALL_ARG_FN_TYPE)(const void *, const void *);
  20. =head1 DESCRIPTION
  21. This library implements type-checked dynamic hash tables. The hash
  22. table entries can be arbitrary structures. Usually they consist of key
  23. and value fields.
  24. lh_<type>_new() creates a new B<LHASH_OF(<type>> structure to store
  25. arbitrary data entries, and provides the 'hash' and 'compare'
  26. callbacks to be used in organising the table's entries. The B<hash>
  27. callback takes a pointer to a table entry as its argument and returns
  28. an unsigned long hash value for its key field. The hash value is
  29. normally truncated to a power of 2, so make sure that your hash
  30. function returns well mixed low order bits. The B<compare> callback
  31. takes two arguments (pointers to two hash table entries), and returns
  32. 0 if their keys are equal, non-zero otherwise. If your hash table
  33. will contain items of some particular type and the B<hash> and
  34. B<compare> callbacks hash/compare these types, then the
  35. B<DECLARE_LHASH_HASH_FN> and B<IMPLEMENT_LHASH_COMP_FN> macros can be
  36. used to create callback wrappers of the prototypes required by
  37. lh_<type>_new(). These provide per-variable casts before calling the
  38. type-specific callbacks written by the application author. These
  39. macros, as well as those used for the "doall" callbacks, are defined
  40. as;
  41. #define DECLARE_LHASH_HASH_FN(name, o_type) \
  42. unsigned long name##_LHASH_HASH(const void *);
  43. #define IMPLEMENT_LHASH_HASH_FN(name, o_type) \
  44. unsigned long name##_LHASH_HASH(const void *arg) { \
  45. const o_type *a = arg; \
  46. return name##_hash(a); }
  47. #define LHASH_HASH_FN(name) name##_LHASH_HASH
  48. #define DECLARE_LHASH_COMP_FN(name, o_type) \
  49. int name##_LHASH_COMP(const void *, const void *);
  50. #define IMPLEMENT_LHASH_COMP_FN(name, o_type) \
  51. int name##_LHASH_COMP(const void *arg1, const void *arg2) { \
  52. const o_type *a = arg1; \
  53. const o_type *b = arg2; \
  54. return name##_cmp(a,b); }
  55. #define LHASH_COMP_FN(name) name##_LHASH_COMP
  56. #define DECLARE_LHASH_DOALL_FN(name, o_type) \
  57. void name##_LHASH_DOALL(void *);
  58. #define IMPLEMENT_LHASH_DOALL_FN(name, o_type) \
  59. void name##_LHASH_DOALL(void *arg) { \
  60. o_type *a = arg; \
  61. name##_doall(a); }
  62. #define LHASH_DOALL_FN(name) name##_LHASH_DOALL
  63. #define DECLARE_LHASH_DOALL_ARG_FN(name, o_type, a_type) \
  64. void name##_LHASH_DOALL_ARG(void *, void *);
  65. #define IMPLEMENT_LHASH_DOALL_ARG_FN(name, o_type, a_type) \
  66. void name##_LHASH_DOALL_ARG(void *arg1, void *arg2) { \
  67. o_type *a = arg1; \
  68. a_type *b = arg2; \
  69. name##_doall_arg(a, b); }
  70. #define LHASH_DOALL_ARG_FN(name) name##_LHASH_DOALL_ARG
  71. An example of a hash table storing (pointers to) structures of type 'STUFF'
  72. could be defined as follows;
  73. /* Calculates the hash value of 'tohash' (implemented elsewhere) */
  74. unsigned long STUFF_hash(const STUFF *tohash);
  75. /* Orders 'arg1' and 'arg2' (implemented elsewhere) */
  76. int stuff_cmp(const STUFF *arg1, const STUFF *arg2);
  77. /* Create the type-safe wrapper functions for use in the LHASH internals */
  78. static IMPLEMENT_LHASH_HASH_FN(stuff, STUFF);
  79. static IMPLEMENT_LHASH_COMP_FN(stuff, STUFF);
  80. /* ... */
  81. int main(int argc, char *argv[]) {
  82. /* Create the new hash table using the hash/compare wrappers */
  83. LHASH_OF(STUFF) *hashtable = lh_STUFF_new(LHASH_HASH_FN(STUFF_hash),
  84. LHASH_COMP_FN(STUFF_cmp));
  85. /* ... */
  86. }
  87. lh_<type>_free() frees the B<LHASH_OF(<type>> structure
  88. B<table>. Allocated hash table entries will not be freed; consider
  89. using lh_<type>_doall() to deallocate any remaining entries in the
  90. hash table (see below).
  91. lh_<type>_insert() inserts the structure pointed to by B<data> into
  92. B<table>. If there already is an entry with the same key, the old
  93. value is replaced. Note that lh_<type>_insert() stores pointers, the
  94. data are not copied.
  95. lh_<type>_delete() deletes an entry from B<table>.
  96. lh_<type>_retrieve() looks up an entry in B<table>. Normally, B<data>
  97. is a structure with the key field(s) set; the function will return a
  98. pointer to a fully populated structure.
  99. lh_<type>_doall() will, for every entry in the hash table, call
  100. B<func> with the data item as its parameter. For lh_<type>_doall()
  101. and lh_<type>_doall_arg(), function pointer casting should be avoided
  102. in the callbacks (see B<NOTE>) - instead use the declare/implement
  103. macros to create type-checked wrappers that cast variables prior to
  104. calling your type-specific callbacks. An example of this is
  105. illustrated here where the callback is used to cleanup resources for
  106. items in the hash table prior to the hashtable itself being
  107. deallocated:
  108. /* Cleans up resources belonging to 'a' (this is implemented elsewhere) */
  109. void STUFF_cleanup_doall(STUFF *a);
  110. /* Implement a prototype-compatible wrapper for "STUFF_cleanup" */
  111. IMPLEMENT_LHASH_DOALL_FN(STUFF_cleanup, STUFF)
  112. /* ... then later in the code ... */
  113. /* So to run "STUFF_cleanup" against all items in a hash table ... */
  114. lh_STUFF_doall(hashtable, LHASH_DOALL_FN(STUFF_cleanup));
  115. /* Then the hash table itself can be deallocated */
  116. lh_STUFF_free(hashtable);
  117. When doing this, be careful if you delete entries from the hash table
  118. in your callbacks: the table may decrease in size, moving the item
  119. that you are currently on down lower in the hash table - this could
  120. cause some entries to be skipped during the iteration. The second
  121. best solution to this problem is to set hash-E<gt>down_load=0 before
  122. you start (which will stop the hash table ever decreasing in size).
  123. The best solution is probably to avoid deleting items from the hash
  124. table inside a "doall" callback!
  125. lh_<type>_doall_arg() is the same as lh_<type>_doall() except that
  126. B<func> will be called with B<arg> as the second argument and B<func>
  127. should be of type B<LHASH_DOALL_ARG_FN_TYPE> (a callback prototype
  128. that is passed both the table entry and an extra argument). As with
  129. lh_doall(), you can instead choose to declare your callback with a
  130. prototype matching the types you are dealing with and use the
  131. declare/implement macros to create compatible wrappers that cast
  132. variables before calling your type-specific callbacks. An example of
  133. this is demonstrated here (printing all hash table entries to a BIO
  134. that is provided by the caller):
  135. /* Prints item 'a' to 'output_bio' (this is implemented elsewhere) */
  136. void STUFF_print_doall_arg(const STUFF *a, BIO *output_bio);
  137. /* Implement a prototype-compatible wrapper for "STUFF_print" */
  138. static IMPLEMENT_LHASH_DOALL_ARG_FN(STUFF, const STUFF, BIO)
  139. /* ... then later in the code ... */
  140. /* Print out the entire hashtable to a particular BIO */
  141. lh_STUFF_doall_arg(hashtable, LHASH_DOALL_ARG_FN(STUFF_print), BIO,
  142. logging_bio);
  143. lh_<type>_error() can be used to determine if an error occurred in the last
  144. operation. lh_<type>_error() is a macro.
  145. =head1 RETURN VALUES
  146. lh_<type>_new() returns B<NULL> on error, otherwise a pointer to the new
  147. B<LHASH> structure.
  148. When a hash table entry is replaced, lh_<type>_insert() returns the value
  149. being replaced. B<NULL> is returned on normal operation and on error.
  150. lh_<type>_delete() returns the entry being deleted. B<NULL> is returned if
  151. there is no such value in the hash table.
  152. lh_<type>_retrieve() returns the hash table entry if it has been found,
  153. B<NULL> otherwise.
  154. lh_<type>_error() returns 1 if an error occurred in the last operation, 0
  155. otherwise.
  156. lh_<type>_free(), lh_<type>_doall() and lh_<type>_doall_arg() return no values.
  157. =head1 NOTE
  158. The various LHASH macros and callback types exist to make it possible
  159. to write type-checked code without resorting to function-prototype
  160. casting - an evil that makes application code much harder to
  161. audit/verify and also opens the window of opportunity for stack
  162. corruption and other hard-to-find bugs. It also, apparently, violates
  163. ANSI-C.
  164. The LHASH code regards table entries as constant data. As such, it
  165. internally represents lh_insert()'d items with a "const void *"
  166. pointer type. This is why callbacks such as those used by lh_doall()
  167. and lh_doall_arg() declare their prototypes with "const", even for the
  168. parameters that pass back the table items' data pointers - for
  169. consistency, user-provided data is "const" at all times as far as the
  170. LHASH code is concerned. However, as callers are themselves providing
  171. these pointers, they can choose whether they too should be treating
  172. all such parameters as constant.
  173. As an example, a hash table may be maintained by code that, for
  174. reasons of encapsulation, has only "const" access to the data being
  175. indexed in the hash table (ie. it is returned as "const" from
  176. elsewhere in their code) - in this case the LHASH prototypes are
  177. appropriate as-is. Conversely, if the caller is responsible for the
  178. life-time of the data in question, then they may well wish to make
  179. modifications to table item passed back in the lh_doall() or
  180. lh_doall_arg() callbacks (see the "STUFF_cleanup" example above). If
  181. so, the caller can either cast the "const" away (if they're providing
  182. the raw callbacks themselves) or use the macros to declare/implement
  183. the wrapper functions without "const" types.
  184. Callers that only have "const" access to data they're indexing in a
  185. table, yet declare callbacks without constant types (or cast the
  186. "const" away themselves), are therefore creating their own risks/bugs
  187. without being encouraged to do so by the API. On a related note,
  188. those auditing code should pay special attention to any instances of
  189. DECLARE/IMPLEMENT_LHASH_DOALL_[ARG_]_FN macros that provide types
  190. without any "const" qualifiers.
  191. =head1 BUGS
  192. lh_<type>_insert() returns B<NULL> both for success and error.
  193. =head1 INTERNALS
  194. The following description is based on the SSLeay documentation:
  195. The B<lhash> library implements a hash table described in the
  196. I<Communications of the ACM> in 1991. What makes this hash table
  197. different is that as the table fills, the hash table is increased (or
  198. decreased) in size via OPENSSL_realloc(). When a 'resize' is done, instead of
  199. all hashes being redistributed over twice as many 'buckets', one
  200. bucket is split. So when an 'expand' is done, there is only a minimal
  201. cost to redistribute some values. Subsequent inserts will cause more
  202. single 'bucket' redistributions but there will never be a sudden large
  203. cost due to redistributing all the 'buckets'.
  204. The state for a particular hash table is kept in the B<LHASH> structure.
  205. The decision to increase or decrease the hash table size is made
  206. depending on the 'load' of the hash table. The load is the number of
  207. items in the hash table divided by the size of the hash table. The
  208. default values are as follows. If (hash->up_load E<lt> load) =E<gt>
  209. expand. if (hash-E<gt>down_load E<gt> load) =E<gt> contract. The
  210. B<up_load> has a default value of 1 and B<down_load> has a default value
  211. of 2. These numbers can be modified by the application by just
  212. playing with the B<up_load> and B<down_load> variables. The 'load' is
  213. kept in a form which is multiplied by 256. So
  214. hash-E<gt>up_load=8*256; will cause a load of 8 to be set.
  215. If you are interested in performance the field to watch is
  216. num_comp_calls. The hash library keeps track of the 'hash' value for
  217. each item so when a lookup is done, the 'hashes' are compared, if
  218. there is a match, then a full compare is done, and
  219. hash-E<gt>num_comp_calls is incremented. If num_comp_calls is not equal
  220. to num_delete plus num_retrieve it means that your hash function is
  221. generating hashes that are the same for different values. It is
  222. probably worth changing your hash function if this is the case because
  223. even if your hash table has 10 items in a 'bucket', it can be searched
  224. with 10 B<unsigned long> compares and 10 linked list traverses. This
  225. will be much less expensive that 10 calls to your compare function.
  226. lh_strhash() is a demo string hashing function:
  227. unsigned long lh_strhash(const char *c);
  228. Since the B<LHASH> routines would normally be passed structures, this
  229. routine would not normally be passed to lh_<type>_new(), rather it would be
  230. used in the function passed to lh_<type>_new().
  231. =head1 SEE ALSO
  232. L<lh_stats(3)|lh_stats(3)>
  233. =head1 HISTORY
  234. The B<lhash> library is available in all versions of SSLeay and OpenSSL.
  235. lh_error() was added in SSLeay 0.9.1b.
  236. This manpage is derived from the SSLeay documentation.
  237. In OpenSSL 0.9.7, all lhash functions that were passed function pointers
  238. were changed for better type safety, and the function types LHASH_COMP_FN_TYPE,
  239. LHASH_HASH_FN_TYPE, LHASH_DOALL_FN_TYPE and LHASH_DOALL_ARG_FN_TYPE
  240. became available.
  241. In OpenSSL 1.0.0, the lhash interface was revamped for even better
  242. type checking.
  243. =cut