- update dropbear to latest stable 2026.92; for the changes see https://matt.ucc.asn.au/dropbear/CHANGES - remove previously cherry-picked patches - cherry-pick upstream patches: - avoid out-of-bounds read matching ecdsa curve identifier - automatically refresh patches Signed-off-by: Konstantin Demin <rockdrilla@gmail.com> Link: https://github.com/openwrt/openwrt/pull/24113 Signed-off-by: Jonas Jelonek <jelonek.jonas@gmail.com>
15 lines
593 B
Diff
15 lines
593 B
Diff
--- a/src/dbutil.h
|
|
+++ b/src/dbutil.h
|
|
@@ -83,7 +83,11 @@ void cleantext(char* dirtytext, int allo
|
|
#define DEF_MP_INT(X) mp_int X = {0, 0, 0, NULL}
|
|
|
|
/* Dropbear assertion */
|
|
-#define dropbear_assert(X) do { if (!(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
|
|
+#ifndef DROPBEAR_ASSERT_ENABLED
|
|
+#define DROPBEAR_ASSERT_ENABLED 0
|
|
+#endif
|
|
+
|
|
+#define dropbear_assert(X) do { if (DROPBEAR_ASSERT_ENABLED && !(X)) { fail_assert(#X, __FILE__, __LINE__); } } while (0)
|
|
|
|
/* Returns 0 if a and b have the same contents */
|
|
int constant_time_memcmp(const void* a, const void *b, size_t n);
|