⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list.c

📁 OpenVPN is a robust and highly flexible tunneling application that uses all of the encryption, authe
💻 C
📖 第 1 页 / 共 2 页
字号:
	}    }  return ret;}voidhash_iterator_delete_element (struct hash_iterator *hi){  ASSERT (hi->last);  hi->last->key = NULL;  hi->bucket_marked = true;}#ifdef LIST_TEST/* * Test the hash code by implementing a simple * word frequency algorithm. */struct word{  const char *word;  int n;};static uint32_tword_hash_function (const void *key, uint32_t iv){  const char *str = (const char *) key;  const int len = strlen (str);  return hash_func ((const uint8_t *)str, len, iv);}static boolword_compare_function (const void *key1, const void *key2){  return strcmp ((const char *)key1, (const char *)key2) == 0;}static voidprint_nhash (struct hash *hash){  struct hash_iterator hi;  struct hash_element *he;  int count = 0;  hash_iterator_init (hash, &hi, true);  while ((he = hash_iterator_next (&hi)))    {      printf ("%d ", (int) he->value);      ++count;    }  printf ("\n");  hash_iterator_free (&hi);  ASSERT (count == hash_n_elements (hash));}static voidrmhash (struct hash *hash, const char *word){  hash_remove (hash, word);}voidlist_test (void){  openvpn_thread_init ();  {    struct gc_arena gc = gc_new ();    struct hash *hash = hash_init (10000, word_hash_function, word_compare_function);    struct hash *nhash = hash_init (256, word_hash_function, word_compare_function);    printf ("hash_init n_buckets=%d mask=0x%08x\n", hash->n_buckets, hash->mask);      /* parse words from stdin */    while (true)      {	char buf[512];	char wordbuf[512];	int wbi;	int bi;	char c;	if (!fgets(buf, sizeof(buf), stdin))	  break;	bi = wbi = 0;	do	  {	    c = buf[bi++];	    if (isalnum (c) || c == '_')	      {		ASSERT (wbi < (int) sizeof (wordbuf));		wordbuf[wbi++] = c;	      }	    else	      {		if (wbi)		  {		    struct word *w;		    ASSERT (wbi < (int) sizeof (wordbuf));		    wordbuf[wbi++] = '\0';		  		    /* word is parsed from stdin */		    /* does it already exist in table? */		    w = (struct word *) hash_lookup (hash, wordbuf);		    if (w)		      {			/* yes, increment count */			++w->n;		      }		    else		      {			/* no, make a new object */			ALLOC_OBJ_GC (w, struct word, &gc);			w->word = string_alloc (wordbuf, &gc);			w->n = 1;			ASSERT (hash_add (hash, w->word, w, false));			ASSERT (hash_add (nhash, w->word, (void*) ((random() & 0x0F) + 1), false));		      }		  }		wbi = 0;	      }	  } while (c);      }#if 1    /* remove some words from the table */    {      rmhash (hash, "true");      rmhash (hash, "false");    }#endif    /* output contents of hash table */    {      int base;      int inc = 0;      int count = 0;      for (base = 0; base < hash_n_buckets (hash); base += inc) {	struct hash_iterator hi;	struct hash_element *he;	inc = (get_random () % 3) + 1;	hash_iterator_init_range (hash, &hi, true, base, base + inc);	while ((he = hash_iterator_next (&hi)))	  {	    struct word *w = (struct word *) he->value;	    printf ("%6d '%s'\n", w->n, w->word);	    ++count;	  }	hash_iterator_free (&hi);      }      ASSERT (count == hash_n_elements (hash));    }	#if 1    /* test hash_remove_by_value function */    {      int i;      for (i = 1; i <= 16; ++i)	{	  printf ("[%d] ***********************************\n", i);	  print_nhash (nhash);	  hash_remove_by_value (nhash, (void *) i, true);	}      printf ("FINAL **************************\n");      print_nhash (nhash);    }#endif    hash_free (hash);    hash_free (nhash);    gc_free (&gc);  }  openvpn_thread_cleanup ();}#endif/*--------------------------------------------------------------------hash() -- hash a variable-length key into a 32-bit value  k     : the key (the unaligned variable-length array of bytes)  len   : the length of the key, counting by bytes  level : can be any 4-byte valueReturns a 32-bit value.  Every bit of the key affects every bit ofthe return value.  Every 1-bit and 2-bit delta achieves avalanche.About 36+6len instructions.The best hash table sizes are powers of 2.  There is no need to domod a prime (mod is sooo slow!).  If you need less than 32 bits,use a bitmask.  For example, if you need only 10 bits, do  h = (h & hashmask(10));In which case, the hash table should have hashsize(10) elements.If you are hashing n strings (uint8_t **)k, do it like this:  for (i=0, h=0; i<n; ++i) h = hash( k[i], len[i], h);By Bob Jenkins, 1996.  bob_jenkins@burtleburtle.net.  You may use thiscode any way you wish, private, educational, or commercial.  It's free.See http://burlteburtle.net/bob/hash/evahash.htmlUse for hash table lookup, or anything where one collision in 2^32 isacceptable.  Do NOT use for cryptographic purposes.--------------------------------------------------------------------mix -- mix 3 32-bit values reversibly.For every delta with one or two bit set, and the deltas of all three  high bits or all three low bits, whether the original value of a,b,c  is almost all zero or is uniformly distributed,* If mix() is run forward or backward, at least 32 bits in a,b,c  have at least 1/4 probability of changing.* If mix() is run forward, every bit of c will change between 1/3 and  2/3 of the time.  (Well, 22/100 and 78/100 for some 2-bit deltas.)mix() was built out of 36 single-cycle latency instructions in a   structure that could supported 2x parallelism, like so:      a -= b;       a -= c; x = (c>>13);      b -= c; a ^= x;      b -= a; x = (a<<8);      c -= a; b ^= x;      c -= b; x = (b>>13);      ...  Unfortunately, superscalar Pentiums and Sparcs can't take advantage   of that parallelism.  They've also turned some of those single-cycle  latency instructions into multi-cycle latency instructions.  Still,  this is the fastest good hash I could find.  There were about 2^^68  to choose from.  I only looked at a billion or so.James Yonan Notes:* This function is faster than it looks, and appears to be  appropriate for our usage in OpenVPN which is primarily  for hash-table based address lookup (IPv4, IPv6, and Ethernet MAC).  NOTE: This function is never used for cryptographic purposes, only  to produce evenly-distributed indexes into hash tables.* Benchmark results: 11.39 machine cycles per byte on a P2 266Mhz,                     and 12.1 machine cycles per byte on a                     2.2 Ghz P4 when hashing a 6 byte string.--------------------------------------------------------------------*/#define mix(a,b,c)               \{                                \  a -= b; a -= c; a ^= (c>>13);  \  b -= c; b -= a; b ^= (a<<8);   \  c -= a; c -= b; c ^= (b>>13);  \  a -= b; a -= c; a ^= (c>>12);  \  b -= c; b -= a; b ^= (a<<16);  \  c -= a; c -= b; c ^= (b>>5);   \  a -= b; a -= c; a ^= (c>>3);   \  b -= c; b -= a; b ^= (a<<10);  \  c -= a; c -= b; c ^= (b>>15);  \}uint32_thash_func (const uint8_t *k, uint32_t length, uint32_t initval){  uint32_t a, b, c, len;  /* Set up the internal state */  len = length;  a = b = 0x9e3779b9;	     /* the golden ratio; an arbitrary value */  c = initval;		     /* the previous hash value */   /*---------------------------------------- handle most of the key */  while (len >= 12)    {      a += (k[0] + ((uint32_t) k[1] << 8)	         + ((uint32_t) k[2] << 16)	         + ((uint32_t) k[3] << 24));      b += (k[4] + ((uint32_t) k[5] << 8)	         + ((uint32_t) k[6] << 16)	         + ((uint32_t) k[7] << 24));      c += (k[8] + ((uint32_t) k[9] << 8)	         + ((uint32_t) k[10] << 16)	         + ((uint32_t) k[11] << 24));      mix (a, b, c);      k += 12;      len -= 12;    }   /*------------------------------------- handle the last 11 bytes */  c += length;  switch (len)		    /* all the case statements fall through */    {    case 11:      c += ((uint32_t) k[10] << 24);    case 10:      c += ((uint32_t) k[9] << 16);    case 9:      c += ((uint32_t) k[8] << 8);      /* the first byte of c is reserved for the length */    case 8:      b += ((uint32_t) k[7] << 24);    case 7:      b += ((uint32_t) k[6] << 16);    case 6:      b += ((uint32_t) k[5] << 8);    case 5:      b += k[4];    case 4:      a += ((uint32_t) k[3] << 24);    case 3:      a += ((uint32_t) k[2] << 16);    case 2:      a += ((uint32_t) k[1] << 8);    case 1:      a += k[0];      /* case 0: nothing left to add */    }  mix (a, b, c);   /*-------------------------------------- report the result */  return c;}#elsestatic void dummy(void) {}#endif /* P2MP */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -