hc
2023-11-22 d0a428a6556ea5a006e22e28b0b1cd037885fe20
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
From a99fc685214452aedabf9ac105bb99357006aa26 Mon Sep 17 00:00:00 2001
From: Andrea Adami <andrea.adami@gmail.com>
Date: Wed, 5 Sep 2018 17:07:48 +0200
Subject: [PATCH] kexec-arm64.c: workaround for getrandom() syscall
 
The syscall was added to OE's klibc.
Fix
 
| ../git/kexec/arch/arm64/kexec-arm64.c:19:10: fatal error: syscall.h: No such file or directory
|  #include <syscall.h>
 
and
 
| ../git/kexec/arch/arm64/kexec-arm64.c: In function 'setup_2nd_dtb':
| ../git/kexec/arch/arm64/kexec-arm64.c:499:12: warning: implicit declaration of function 'getrandom'; did you mean 'srandom'? [-Wimplicit-function-declaration]
|    result = getrandom(&fdt_val64,
 
Upstream-Status: Inappropriate [klibc specific]
Signed-off-by: Andrea Adami <andrea.adami@gmail.com>
 
---
 kexec/arch/arm64/kexec-arm64.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)
 
diff --git a/kexec/arch/arm64/kexec-arm64.c b/kexec/arch/arm64/kexec-arm64.c
index b143e86..88d4168 100644
--- a/kexec/arch/arm64/kexec-arm64.c
+++ b/kexec/arch/arm64/kexec-arm64.c
@@ -16,7 +16,11 @@
 #include <elf.h>
 
 #include <unistd.h>
+
+#ifndef __KLIBC__
 #include <syscall.h>
+#endif
+
 #include <errno.h>
 #include <linux/random.h>
 
@@ -487,10 +491,16 @@ static int setup_2nd_dtb(struct dtb *dtb, char *command_line, int on_crash)
          * have a valid random seed to pass to the
          * secondary kernel.
          */
+#ifndef __KLIBC__
         result = syscall(SYS_getrandom, &fdt_val64,
                 sizeof(fdt_val64),
                 GRND_NONBLOCK);
-
+#else
+        extern ssize_t getrandom(void *, size_t, unsigned int);
+        result = getrandom(&fdt_val64,
+                sizeof(fdt_val64),
+                GRND_NONBLOCK);
+#endif
         if(result == -1) {
             fprintf(stderr, "%s: Reading random bytes failed.\n",
                     __func__);