[or-cvs] Add a mem_is_zero function (I think we will need this) and ...

Nick Mathewson nickm at seul.org
Sun Jul 23 05:32:37 UTC 2006


Update of /home/or/cvsroot/tor/src/common
In directory moria:/tmp/cvs-serv4321/common

Modified Files:
	util.c util.h 
Log Message:
Add a mem_is_zero function (I think we will need this) and a STRUCT_OFFSET macro (we already need this).

Index: util.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/common/util.c,v
retrieving revision 1.264
retrieving revision 1.265
diff -u -p -d -r1.264 -r1.265
--- util.c	6 Jul 2006 02:44:03 -0000	1.264
+++ util.c	23 Jul 2006 05:32:35 -0000	1.265
@@ -428,13 +428,30 @@ find_whitespace(const char *s)
   return s;
 }
 
+/** Return true iff the 'len' bytes at 'mem' are all zero. */
+int tor_mem_is_zero(const char *mem, size_t len)
+{
+  static const char ZERO[] = {
+    0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0, 0,0,0,0,
+  };
+  while (len >= sizeof(ZERO)) {
+    if (memcmp(mem, ZERO, sizeof(ZERO)))
+      return 0;
+    len -= sizeof(ZERO);
+    mem += sizeof(ZERO);
+  }
+  /* Deal with leftover bytes. */
+  if (len)
+    return ! memcmp(mem, ZERO, len);
+
+  return 1;
+}
+
 /** Return true iff the DIGEST_LEN bytes in digest are all zero. */
 int
 tor_digest_is_zero(const char *digest)
 {
-  static char ZERO_DIGEST[] = { 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 };
-
-  return !memcmp(digest, ZERO_DIGEST, DIGEST_LEN);
+  return tor_mem_is_zero(digest, DIGEST_LEN);
 }
 
 #define CHECK_STRTOX_RESULT()                           \

Index: util.h
===================================================================
RCS file: /home/or/cvsroot/tor/src/common/util.h,v
retrieving revision 1.162
retrieving revision 1.163
diff -u -p -d -r1.162 -r1.163
--- util.h	6 Jul 2006 02:44:03 -0000	1.162
+++ util.h	23 Jul 2006 05:32:35 -0000	1.163
@@ -88,6 +88,10 @@ extern int dmalloc_free(const char *file
 #define tor_strndup(s, n)      _tor_strndup(s, n DMALLOC_ARGS)
 #define tor_memdup(s, n)       _tor_memdup(s, n DMALLOC_ARGS)
 
+/** Return the offset of <b>member</b> within the type <b>tp</b>, in bytes */
+#define STRUCT_OFFSET(tp, member) \
+  ((off_t) (((char*)&((tp*)0)->member)-(char*)0))
+
 /* String manipulation */
 #define HEX_CHARACTERS "0123456789ABCDEFabcdef"
 void tor_strlower(char *s);
@@ -114,6 +118,7 @@ const char *hex_str(const char *from, si
 const char *eat_whitespace(const char *s);
 const char *eat_whitespace_no_nl(const char *s);
 const char *find_whitespace(const char *s);
+int tor_mem_is_zero(const char *mem, size_t len);
 int tor_digest_is_zero(const char *digest);
 char *esc_for_log(const char *string);
 const char *escaped(const char *string);



More information about the tor-commits mailing list