[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 01/20] posix_wrap: tweaks in preparation for libtasn1
From: |
Gary Lin |
Subject: |
[PATCH v5 01/20] posix_wrap: tweaks in preparation for libtasn1 |
Date: |
Thu, 17 Aug 2023 11:09:51 +0800 |
From: Daniel Axtens <dja@axtens.net>
- Define SIZEOF_UNSIGNED_LONG_INT, it's the same as
SIZEOF_UNSIGNED_LONG.
- Define WORD_BIT, the size in bits of an int. This is a defined
in the Single Unix Specification and in gnulib's limits.h. gnulib
assumes it's 32 bits on all our platforms, including 64 bit
platforms, so we also use that value.
- Provide strto[u]l[l] preprocessor macros that resolve to
grub_strto[u]l[l]. To avoid gcrypt redefining strtoul, we
also define HAVE_STRTOUL here.
Signed-off-by: Daniel Axtens <dja@axtens.net>
Signed-off-by: Gary Lin <glin@suse.com>
---
grub-core/lib/posix_wrap/limits.h | 1 +
grub-core/lib/posix_wrap/stdlib.h | 8 ++++++++
grub-core/lib/posix_wrap/sys/types.h | 1 +
3 files changed, 10 insertions(+)
diff --git a/grub-core/lib/posix_wrap/limits.h
b/grub-core/lib/posix_wrap/limits.h
index 26918c8a0..4be7b4080 100644
--- a/grub-core/lib/posix_wrap/limits.h
+++ b/grub-core/lib/posix_wrap/limits.h
@@ -41,5 +41,6 @@
#define LONG_MAX GRUB_LONG_MAX
#define CHAR_BIT 8
+#define WORD_BIT 32
#endif
diff --git a/grub-core/lib/posix_wrap/stdlib.h
b/grub-core/lib/posix_wrap/stdlib.h
index f5279756a..14e4efdd0 100644
--- a/grub-core/lib/posix_wrap/stdlib.h
+++ b/grub-core/lib/posix_wrap/stdlib.h
@@ -64,4 +64,12 @@ abort (void)
grub_abort ();
}
+#define strtol grub_strtol
+
+/* for libgcrypt */
+#define HAVE_STRTOUL
+#define strtoul grub_strtoul
+
+#define strtoull grub_strtoull
+
#endif
diff --git a/grub-core/lib/posix_wrap/sys/types.h
b/grub-core/lib/posix_wrap/sys/types.h
index eeda543c4..2f3e86549 100644
--- a/grub-core/lib/posix_wrap/sys/types.h
+++ b/grub-core/lib/posix_wrap/sys/types.h
@@ -50,6 +50,7 @@ typedef grub_uint8_t byte;
typedef grub_addr_t uintptr_t;
#define SIZEOF_UNSIGNED_LONG GRUB_CPU_SIZEOF_LONG
+#define SIZEOF_UNSIGNED_LONG_INT GRUB_CPU_SIZEOF_LONG
#define SIZEOF_UNSIGNED_INT 4
#define SIZEOF_UNSIGNED_LONG_LONG 8
#define SIZEOF_UNSIGNED_SHORT 2
--
2.35.3
- [PATCH v5 00/20] Automatic Disk Unlock with TPM2, Gary Lin, 2023/08/16
- [PATCH v5 01/20] posix_wrap: tweaks in preparation for libtasn1,
Gary Lin <=
- [PATCH v5 02/20] libtasn1: import libtasn1-4.19.0, Gary Lin, 2023/08/16
- [PATCH v5 03/20] libtasn1: disable code not needed in grub, Gary Lin, 2023/08/16
- [PATCH v5 04/20] libtasn1: changes for grub compatibility, Gary Lin, 2023/08/16
- [PATCH v5 05/20] libtasn1: compile into asn1 module, Gary Lin, 2023/08/16
- [PATCH v5 08/20] protectors: Add key protectors framework, Gary Lin, 2023/08/16
- [PATCH v5 09/20] tpm2: Add TPM Software Stack (TSS), Gary Lin, 2023/08/16
- [PATCH v5 10/20] protectors: Add TPM2 Key Protector, Gary Lin, 2023/08/16
- [PATCH v5 11/20] cryptodisk: Support key protectors, Gary Lin, 2023/08/16
- [PATCH v5 13/20] tpm2: Add TPM2 types, structures, and command constants, Gary Lin, 2023/08/16
- [PATCH v5 14/20] tpm2: Add more marshal/unmarshal functions, Gary Lin, 2023/08/16