sandbox: Support file truncation with os_open()
authorSimon Glass <sjg@chromium.org>
Mon, 1 Oct 2018 17:55:07 +0000 (11:55 -0600)
committerSimon Glass <sjg@chromium.org>
Tue, 9 Oct 2018 10:40:26 +0000 (04:40 -0600)
At present files are not truncated on writing. This is a useful feature.
Add support for this.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/sandbox/cpu/os.c
include/os.h

index d4d6d78dc746f721db177fc323e98b31655cbbdc..1d87a53843eaddb84dd55f766a922b1dba9b440b 100644 (file)
@@ -85,6 +85,8 @@ int os_open(const char *pathname, int os_flags)
 
        if (os_flags & OS_O_CREAT)
                flags |= O_CREAT;
+       if (os_flags & OS_O_TRUNC)
+               flags |= O_TRUNC;
 
        return open(pathname, flags, 0777);
 }
index 7116f8757802523e6fa80b73bc514e088299bf9b..9e3a561b65ed5e06f01be297fc17ca8760a2720b 100644 (file)
@@ -75,6 +75,7 @@ int os_open(const char *pathname, int flags);
 #define OS_O_RDWR      2
 #define OS_O_MASK      3       /* Mask for read/write flags */
 #define OS_O_CREAT     0100
+#define OS_O_TRUNC     01000
 
 /**
  * Access to the OS close() system call