qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v3 07/12] linux-user: Fix strace of chmod() if mode == 0


From: Laurent Vivier
Subject: Re: [PATCH v3 07/12] linux-user: Fix strace of chmod() if mode == 0
Date: Sun, 25 Sep 2022 17:29:45 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.2.1

Le 18/09/2022 à 21:45, Helge Deller a écrit :
If the mode parameter of chmod() is zero, this value isn't shown
when stracing a program:
     chmod("filename",)
This patch fixes it up to show the zero-value as well:
     chmod("filename",000)

Signed-off-by: Helge Deller <deller@gmx.de>
---
  linux-user/strace.c | 5 +++++
  1 file changed, 5 insertions(+)

diff --git a/linux-user/strace.c b/linux-user/strace.c
index 5ac64df02b..2f539845bb 100644
--- a/linux-user/strace.c
+++ b/linux-user/strace.c
@@ -1505,6 +1505,11 @@ print_file_mode(abi_long mode, int last)
      const char *sep = "";
      const struct flags *m;

+    if (mode == 0) {
+        qemu_log("000%s", get_comma(last));
+        return;
+    }
+
      for (m = &mode_flags[0]; m->f_string != NULL; m++) {
          if ((m->f_value & mode) == m->f_value) {
              qemu_log("%s%s", m->f_string, sep);
--
2.37.3


Reviewed-by: Laurent Vivier <laurent@vivier.eu>





reply via email to

[Prev in Thread] Current Thread [Next in Thread]