011fe81
From cb2cfc87fad111a539e9645f6a96d0a89a28c8ab Mon Sep 17 00:00:00 2001
011fe81
From: Vladimir Serbinenko <phcoder@gmail.com>
011fe81
Date: Fri, 4 Apr 2014 07:58:42 +0200
58fe9aa
Subject: [PATCH 073/152] Replace few instances of memcmp/memcpy in the code
011fe81
 that should be grub_memcmp/grub_memcpy.
011fe81
011fe81
---
011fe81
 ChangeLog                      | 5 +++++
011fe81
 grub-core/commands/acpihalt.c  | 4 ++--
011fe81
 grub-core/commands/legacycfg.c | 4 ++--
011fe81
 grub-core/lib/relocator.c      | 2 +-
011fe81
 grub-core/loader/i386/bsd.c    | 4 ++--
011fe81
 5 files changed, 12 insertions(+), 7 deletions(-)
011fe81
011fe81
diff --git a/ChangeLog b/ChangeLog
011fe81
index 4a48409..f18cdba 100644
011fe81
--- a/ChangeLog
011fe81
+++ b/ChangeLog
011fe81
@@ -1,3 +1,8 @@
011fe81
+2014-04-04  Vladimir Serbinenko  <phcoder@gmail.com>
011fe81
+
011fe81
+	Replace few instances of memcmp/memcpy in the code that should be
011fe81
+	grub_memcmp/grub_memcpy.
011fe81
+
011fe81
 2014-04-03  Vladimir Serbinenko  <phcoder@gmail.com>
011fe81
 
011fe81
 	* grub-core/osdep/linux/getroot.c (grub_util_part_to_disk): Support NVMe
011fe81
diff --git a/grub-core/commands/acpihalt.c b/grub-core/commands/acpihalt.c
011fe81
index 09421a6..83bdfe1 100644
011fe81
--- a/grub-core/commands/acpihalt.c
011fe81
+++ b/grub-core/commands/acpihalt.c
011fe81
@@ -214,8 +214,8 @@ get_sleep_type (grub_uint8_t *table, grub_uint8_t *ptr, grub_uint8_t *end,
011fe81
 	  }
011fe81
 	case GRUB_ACPI_OPCODE_NAME:
011fe81
 	  ptr++;
011fe81
-	  if ((!scope || memcmp (scope, "\\", scope_len) == 0) &&
011fe81
-	      (memcmp (ptr, "_S5_", 4) == 0 || memcmp (ptr, "\\_S5_", 4) == 0))
011fe81
+	  if ((!scope || grub_memcmp (scope, "\\", scope_len) == 0) &&
011fe81
+	      (grub_memcmp (ptr, "_S5_", 4) == 0 || grub_memcmp (ptr, "\\_S5_", 4) == 0))
011fe81
 	    {
011fe81
 	      int ll;
011fe81
 	      grub_uint8_t *ptr2 = ptr;
011fe81
diff --git a/grub-core/commands/legacycfg.c b/grub-core/commands/legacycfg.c
011fe81
index e42a9d8..2c09fb7 100644
011fe81
--- a/grub-core/commands/legacycfg.c
011fe81
+++ b/grub-core/commands/legacycfg.c
011fe81
@@ -580,7 +580,7 @@ check_password_md5_real (const char *entered,
011fe81
   GRUB_MD_MD5->write (ctx, entered, enteredlen);
011fe81
   digest = GRUB_MD_MD5->read (ctx);
011fe81
   GRUB_MD_MD5->final (ctx);
011fe81
-  memcpy (alt_result, digest, MD5_HASHLEN);
011fe81
+  grub_memcpy (alt_result, digest, MD5_HASHLEN);
011fe81
   
011fe81
   GRUB_MD_MD5->init (ctx);
011fe81
   GRUB_MD_MD5->write (ctx, entered, enteredlen);
011fe81
@@ -596,7 +596,7 @@ check_password_md5_real (const char *entered,
011fe81
 
011fe81
   for (i = 0; i < 1000; i++)
011fe81
     {
011fe81
-      memcpy (alt_result, digest, 16);
011fe81
+      grub_memcpy (alt_result, digest, 16);
011fe81
 
011fe81
       GRUB_MD_MD5->init (ctx);
011fe81
       if ((i & 1) != 0)
011fe81
diff --git a/grub-core/lib/relocator.c b/grub-core/lib/relocator.c
011fe81
index cb11ea5..f759c7f 100644
011fe81
--- a/grub-core/lib/relocator.c
011fe81
+++ b/grub-core/lib/relocator.c
011fe81
@@ -652,7 +652,7 @@ malloc_in_range (struct grub_relocator *rel,
011fe81
     for (i = 0; i < (BITS_IN_BYTE * sizeof (grub_addr_t) / DIGITSORT_BITS);
011fe81
 	 i++)
011fe81
       {
011fe81
-	memset (counter, 0, (1 + (1 << DIGITSORT_BITS)) * sizeof (counter[0]));
011fe81
+	grub_memset (counter, 0, (1 + (1 << DIGITSORT_BITS)) * sizeof (counter[0]));
011fe81
 	for (j = 0; j < N; j++)
011fe81
 	  counter[((events[j].pos >> (DIGITSORT_BITS * i)) 
011fe81
 		   & DIGITSORT_MASK) + 1]++;
011fe81
diff --git a/grub-core/loader/i386/bsd.c b/grub-core/loader/i386/bsd.c
011fe81
index 19985f0..41ef910 100644
011fe81
--- a/grub-core/loader/i386/bsd.c
011fe81
+++ b/grub-core/loader/i386/bsd.c
011fe81
@@ -1082,7 +1082,7 @@ grub_netbsd_add_boot_disk_and_wedge (void)
011fe81
 
011fe81
     grub_crypto_hash (GRUB_MD_MD5, hash,
011fe81
 		      buf.raw, GRUB_DISK_SECTOR_SIZE);
011fe81
-    memcpy (biw.matchhash, hash, 16);
011fe81
+    grub_memcpy (biw.matchhash, hash, 16);
011fe81
 
011fe81
     grub_bsd_add_meta (NETBSD_BTINFO_BOOTWEDGE, &biw, sizeof (biw));
011fe81
   }
011fe81
@@ -1100,7 +1100,7 @@ grub_netbsd_add_boot_disk_and_wedge (void)
011fe81
 	bid.labelsector = partmapsector;
011fe81
 	bid.label.type = buf.label.type;
011fe81
 	bid.label.checksum = buf.label.checksum;
011fe81
-	memcpy (bid.label.packname, buf.label.packname, 16);
011fe81
+	grub_memcpy (bid.label.packname, buf.label.packname, 16);
011fe81
       }
011fe81
     else
011fe81
       {
011fe81
-- 
37b39b7
1.9.3
011fe81