From: Pingfan Liu <piliu@redhat.com>
To: kexec@lists.infradead.org
Cc: Pingfan Liu <piliu@redhat.com>,
horms@verge.net.au, ardb@kernel.org, jeremy.linton@arm.com
Subject: [PATCHv5 2/8] kexec: Isolate probe method
Date: Mon, 17 Jul 2023 21:07:26 +0800 [thread overview]
Message-ID: <20230717130732.22710-3-piliu@redhat.com> (raw)
In-Reply-To: <20230717130732.22710-1-piliu@redhat.com>
Isolating the calling to the probe method, so in a later patch, a new
prototype probe2 interface can be introduced without exposure of the
change.
Signed-off-by: Pingfan Liu <piliu@redhat.com>
To: kexec@lists.infradead.org
Cc: horms@verge.net.au
Cc: ardb@kernel.org
Cc: jeremy.linton@arm.com
---
kexec/kexec.c | 81 +++++++++++++++++++++++++++++++--------------------
1 file changed, 49 insertions(+), 32 deletions(-)
diff --git a/kexec/kexec.c b/kexec/kexec.c
index 36bb2ad..d5e6dc0 100644
--- a/kexec/kexec.c
+++ b/kexec/kexec.c
@@ -694,6 +694,48 @@ static void update_purgatory(struct kexec_info *info)
sizeof(digest));
}
+static int initialze_probe(const char *kern_fname,
+ char **kernel_buf, off_t *kernel_size, int *kernel_fd)
+{
+ static int probe_type = -1;
+
+ if (probe_type >= 0)
+ return probe_type;
+
+ *kernel_fd = open(kern_fname, O_RDONLY);
+ if (*kernel_fd == -1) {
+ die("Failed to open file %s:%s\n", kern_fname,
+ strerror(errno));
+ return EFAILED;
+ }
+
+ /* slurp in the input kernel */
+ *kernel_buf = slurp_decompress_file(kern_fname, kernel_size);
+ probe_type = 0;
+
+ return probe_type;
+}
+
+static int probe(struct file_type *ft, const char *kern_fname,
+ char **kernel_buf, off_t *kernel_size, int *kernel_fd)
+{
+ int ret;
+
+ initialze_probe(kern_fname, kernel_buf, kernel_size, kernel_fd);
+#ifdef __aarch64__
+ /* handle Image.gz like cases */
+ if (is_zlib_file(kern_fname, &kernel_size)) {
+ if ((ret = ft->probe(kern_fname, *kernel_size)) >= 0)
+ *kernel_fd = ret;
+ } else {
+ ret = ft->probe(*kernel_buf, *kernel_size);
+ }
+#else
+ ret = ft->probe(*kernel_buf, *kernel_size);
+#endif
+ return ret;
+}
+
/*
* Load the new kernel
*/
@@ -703,6 +745,7 @@ static int my_load(const char *type, int fileind, int argc, char **argv,
char *kernel;
char *kernel_buf;
off_t kernel_size;
+ int kernel_fd = -1;
int i = 0;
int result;
struct kexec_info info;
@@ -720,11 +763,6 @@ static int my_load(const char *type, int fileind, int argc, char **argv,
return -1;
}
kernel = argv[fileind];
- /* slurp in the input kernel */
- kernel_buf = slurp_decompress_file(kernel, &kernel_size);
-
- dbgprintf("kernel: %p kernel_size: %#llx\n",
- kernel_buf, (unsigned long long)kernel_size);
if (get_memory_ranges(&info.memory_range, &info.memory_ranges,
info.kexec_flags) < 0 || info.memory_ranges == 0) {
@@ -742,13 +780,13 @@ static int my_load(const char *type, int fileind, int argc, char **argv,
return -1;
} else {
/* make sure our file is really of that type */
- if (file_type[i].probe(kernel_buf, kernel_size) < 0)
+ if (probe(&file_type[i], kernel, &kernel_buf, &kernel_size, &kernel_fd) < 0)
guess_only = 1;
}
}
if (!type || guess_only) {
for (i = 0; i < file_types; i++) {
- if (file_type[i].probe(kernel_buf, kernel_size) == 0)
+ if (probe(&file_type[i], kernel, &kernel_buf, &kernel_size, &kernel_fd) == 0)
break;
}
if (i == file_types) {
@@ -1263,10 +1301,10 @@ static int do_kexec_file_load(int fileind, int argc, char **argv,
unsigned long flags) {
char *kernel;
- int kernel_fd, i;
+ int i, kernel_fd = -1;
struct kexec_info info;
int ret = 0;
- char *kernel_buf;
+ char *kernel_buf = NULL;
off_t kernel_size;
memset(&info, 0, sizeof(info));
@@ -1290,31 +1328,10 @@ static int do_kexec_file_load(int fileind, int argc, char **argv,
kernel = argv[fileind];
- kernel_fd = open(kernel, O_RDONLY);
- if (kernel_fd == -1) {
- fprintf(stderr, "Failed to open file %s:%s\n", kernel,
- strerror(errno));
- return EFAILED;
- }
-
- /* slurp in the input kernel */
- kernel_buf = slurp_decompress_file(kernel, &kernel_size);
-
for (i = 0; i < file_types; i++) {
-#ifdef __aarch64__
- /* handle Image.gz like cases */
- if (is_zlib_file(kernel, &kernel_size)) {
- if ((ret = file_type[i].probe(kernel, kernel_size)) >= 0) {
- kernel_fd = ret;
- break;
- }
- } else
- if (file_type[i].probe(kernel_buf, kernel_size) >= 0)
- break;
-#else
- if (file_type[i].probe(kernel_buf, kernel_size) >= 0)
+ ret = probe(&file_type[i], kernel, &kernel_buf, &kernel_size, &kernel_fd);
+ if (ret >=0)
break;
-#endif
}
if (i == file_types) {
--
2.31.1
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
next prev parent reply other threads:[~2023-07-17 13:08 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-07-17 13:07 [PATCHv5 0/8] arm64: zboot support Pingfan Liu
2023-07-17 13:07 ` [PATCHv5 1/8] arm64: Fix some issues with zImage _probe() Pingfan Liu
2023-07-17 13:07 ` Pingfan Liu [this message]
2023-07-17 13:07 ` [PATCHv5 3/8] kexec: Introduce a new image probe method 'probe2' Pingfan Liu
2023-07-17 13:07 ` [PATCHv5 4/8] arm64: Transfer from probe() to probe2() Pingfan Liu
2023-07-17 13:07 ` [PATCHv5 5/8] kexec: Drop condition macro for aarch64 Pingfan Liu
2023-07-17 13:07 ` [PATCHv5 6/8] kexec/zboot: Add arch independent zboot support Pingfan Liu
2023-07-17 13:07 ` [PATCHv5 7/8] arm64: Add ZBOOT PE containing compressed image support Pingfan Liu
2023-07-17 13:07 ` [PATCHv5 8/8] arm64: Hook up the ZBOOT support as vmlinuz Pingfan Liu
2023-07-19 3:02 ` [PATCHv5 0/8] arm64: zboot support Dave Young
2023-07-20 2:04 ` Pingfan Liu
2023-07-20 7:29 ` Dave Young
2023-07-20 8:59 ` Pingfan Liu
2023-07-20 10:08 ` Dave Young
2023-07-20 10:08 ` Dave Young
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230717130732.22710-3-piliu@redhat.com \
--to=piliu@redhat.com \
--cc=ardb@kernel.org \
--cc=horms@verge.net.au \
--cc=jeremy.linton@arm.com \
--cc=kexec@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox