Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Implementation of the symbol table type. |
| 3 | * |
| 4 | * Author : Stephen Smalley, <sds@epoch.ncsc.mil> |
| 5 | */ |
| 6 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | #include <linux/string.h> |
| 8 | #include <linux/errno.h> |
| 9 | #include "symtab.h" |
| 10 | |
Chad Sellers | bb24249 | 2006-11-06 12:38:17 -0500 | [diff] [blame] | 11 | static unsigned int symhash(struct hashtab *h, const void *key) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | { |
Chad Sellers | bb24249 | 2006-11-06 12:38:17 -0500 | [diff] [blame] | 13 | const char *p, *keyp; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | unsigned int size; |
| 15 | unsigned int val; |
| 16 | |
| 17 | val = 0; |
| 18 | keyp = key; |
| 19 | size = strlen(keyp); |
| 20 | for (p = keyp; (p - keyp) < size; p++) |
| 21 | val = (val << 4 | (val >> (8*sizeof(unsigned int)-4))) ^ (*p); |
| 22 | return val & (h->size - 1); |
| 23 | } |
| 24 | |
Chad Sellers | bb24249 | 2006-11-06 12:38:17 -0500 | [diff] [blame] | 25 | static int symcmp(struct hashtab *h, const void *key1, const void *key2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | { |
Chad Sellers | bb24249 | 2006-11-06 12:38:17 -0500 | [diff] [blame] | 27 | const char *keyp1, *keyp2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
| 29 | keyp1 = key1; |
| 30 | keyp2 = key2; |
| 31 | return strcmp(keyp1, keyp2); |
| 32 | } |
| 33 | |
| 34 | |
| 35 | int symtab_init(struct symtab *s, unsigned int size) |
| 36 | { |
| 37 | s->table = hashtab_create(symhash, symcmp, size); |
| 38 | if (!s->table) |
Dan Carpenter | 9a79827 | 2010-06-12 20:57:39 +0200 | [diff] [blame] | 39 | return -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | s->nprim = 0; |
| 41 | return 0; |
| 42 | } |
| 43 | |