From: Laurent Vivier <laurent@vivier.eu>
To: qemu-devel@nongnu.org
Cc: Laurent Vivier <laurent@vivier.eu>,
Riku Voipio <riku.voipio@iki.fi>,
Luke Shumaker <lukeshu@parabola.nu>
Subject: [Qemu-devel] [PULL 16/18] linux-user: init_guest_space: Clean up control flow a bit
Date: Tue, 13 Mar 2018 18:33:53 +0100 [thread overview]
Message-ID: <20180313173355.4468-17-laurent@vivier.eu> (raw)
In-Reply-To: <20180313173355.4468-1-laurent@vivier.eu>
From: Luke Shumaker <lukeshu@parabola.nu>
Instead of doing
if (check1) {
if (check2) {
success;
}
}
retry;
Do a clearer
if (!check1) {
goto try_again;
}
if (!check2) {
goto try_again;
}
success;
try_again:
retry;
Besides being clearer, this makes it easier to insert more checks that
need to trigger a retry on check failure, or rearrange them, or anything
like that.
Because some indentation is changing, "ignore space change" may be useful
for viewing this patch.
Signed-off-by: Luke Shumaker <lukeshu@parabola.nu>
Message-Id: <20171228180814.9749-8-lukeshu@lukeshu.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
[lv: modified to try again fi valid == 0, not valid == -1 (error case)]
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
---
linux-user/elfload.c | 34 +++++++++++++++++++---------------
1 file changed, 19 insertions(+), 15 deletions(-)
diff --git a/linux-user/elfload.c b/linux-user/elfload.c
index 8699f430b1..c6491a8d35 100644
--- a/linux-user/elfload.c
+++ b/linux-user/elfload.c
@@ -1880,24 +1880,28 @@ unsigned long init_guest_space(unsigned long host_start,
}
/* Check to see if the address is valid. */
- if (!host_start || aligned_start == current_start) {
+ if (host_start && aligned_start != current_start) {
+ goto try_again;
+ }
+
#if defined(TARGET_ARM) && !defined(TARGET_AARCH64)
- /* On 32-bit ARM, we need to also be able to map the commpage. */
- int valid = init_guest_commpage(aligned_start - guest_start,
- aligned_size + guest_start);
- if (valid == 1) {
- break;
- } else if (valid == -1) {
- munmap((void *)real_start, real_size);
- return (unsigned long)-1;
- }
- /* valid == 0, so try again. */
-#else
- /* On other architectures, whatever we have here is fine. */
- break;
-#endif
+ /* On 32-bit ARM, we need to also be able to map the commpage. */
+ int valid = init_guest_commpage(aligned_start - guest_start,
+ aligned_size + guest_start);
+ if (valid == -1) {
+ munmap((void *)real_start, real_size);
+ return (unsigned long)-1;
+ } else if (valid == 0) {
+ goto try_again;
}
+#endif
+
+ /* If nothing has said `return -1` or `goto try_again` yet,
+ * then the address we have is good.
+ */
+ break;
+ try_again:
/* That address didn't work. Unmap and try a different one.
* The address the host picked because is typically right at
* the top of the host address space and leaves the guest with
--
2.14.3
next prev parent reply other threads:[~2018-03-13 17:34 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-13 17:33 [Qemu-devel] [PULL 00/18] Linux user for 2.12 patches Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 01/18] linux-user: Drop unicore32 code Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 02/18] linux-user: Remove the unused "not implemented" signal handling stubs Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 03/18] linux-user: allows to use "--systemd ALL" with qemu-binfmt-conf.sh Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 04/18] linux-user: Support f_flags in statfs when available Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 05/18] linux-user: fix mmap/munmap/mprotect/mremap/shmat Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 06/18] linux-user: fix assertion in shmdt Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 07/18] linux-user: fix target_mprotect/target_munmap error return values Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 08/18] linux-user: drop unused target_msync function Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 09/18] qemu-binfmt-conf.sh: add qemu-xtensa Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 10/18] linux-user: Use #if to only call validate_guest_space for 32-bit ARM target Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 11/18] linux-user: Rename validate_guest_space => init_guest_commpage Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 12/18] linux-user: init_guest_space: Clean up if we can't initialize the commpage Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 13/18] linux-user: init_guest_space: Correctly handle guest_start in commpage initialization Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 14/18] linux-user: init_guest_space: Clarify page alignment logic Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 15/18] linux-user: init_guest_commpage: Add a comment about size check Laurent Vivier
2018-03-13 17:33 ` Laurent Vivier [this message]
2018-03-13 17:33 ` [Qemu-devel] [PULL 17/18] linux-user: init_guest_space: Don't try to align if we'll reject it Laurent Vivier
2018-03-13 17:33 ` [Qemu-devel] [PULL 18/18] linux-user: init_guest_space: Add a comment about search strategy Laurent Vivier
2018-03-13 18:43 ` [Qemu-devel] [PULL 00/18] Linux user for 2.12 patches no-reply
2018-03-15 18:52 ` Peter Maydell
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=20180313173355.4468-17-laurent@vivier.eu \
--to=laurent@vivier.eu \
--cc=lukeshu@parabola.nu \
--cc=qemu-devel@nongnu.org \
--cc=riku.voipio@iki.fi \
/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;
as well as URLs for NNTP newsgroup(s).