Check if QubesIncoming filesystem supports O_TMPFILE
The filesystem hosting ~/QubesIncoming/srcVM/ needs to support O_TMPFILE
too, in addition to the kernel. If it doesn't, take the use_tmpfile = 0
fallback.
(cherry picked from commit 74a1b4cc50
)
This commit is contained in:
parent
6fcc66eae4
commit
c78b2c3a7a
@ -112,11 +112,11 @@ void process_one_file_reg(struct file_header *untrusted_hdr,
|
|||||||
if (use_tmpfile) {
|
if (use_tmpfile) {
|
||||||
fdout = open(".", O_WRONLY | O_TMPFILE, 0700);
|
fdout = open(".", O_WRONLY | O_TMPFILE, 0700);
|
||||||
if (fdout < 0) {
|
if (fdout < 0) {
|
||||||
if (errno==ENOENT)
|
if (errno==ENOENT || /* most likely, kernel too old for O_TMPFILE */
|
||||||
/* if it fails, do not attempt further use - most likely kernel too old */
|
errno==EOPNOTSUPP) /* filesystem has no support for O_TMPFILE */
|
||||||
use_tmpfile = 0;
|
use_tmpfile = 0;
|
||||||
else
|
else
|
||||||
do_exit(errno, untrusted_name);
|
do_exit(errno, untrusted_name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (fdout < 0)
|
if (fdout < 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user