diff options
Diffstat (limited to 'results/classifier/118/permissions/944')
| -rw-r--r-- | results/classifier/118/permissions/944 | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/results/classifier/118/permissions/944 b/results/classifier/118/permissions/944 new file mode 100644 index 00000000..0030d76c --- /dev/null +++ b/results/classifier/118/permissions/944 @@ -0,0 +1,58 @@ +permissions: 0.976 +device: 0.943 +user-level: 0.916 +performance: 0.876 +files: 0.874 +graphic: 0.871 +network: 0.807 +debug: 0.704 +socket: 0.663 +architecture: 0.661 +semantic: 0.647 +peripherals: 0.643 +kernel: 0.619 +PID: 0.576 +ppc: 0.573 +hypervisor: 0.530 +assembly: 0.480 +register: 0.451 +vnc: 0.433 +boot: 0.390 +arm: 0.372 +x86: 0.363 +mistranslation: 0.362 +VMM: 0.356 +risc-v: 0.333 +virtual: 0.275 +TCG: 0.223 +i386: 0.135 +KVM: 0.083 + +9p virtfs issue under MacOS in 7.0.0-rc1 +Description of problem: +9p virtfs under MacOS has an issue with sed inline replacements (sed -i). +The issue somewhere in xattr I believe +Steps to reproduce: +1. /Users/sid/ is mounted via 9p virtfs from MacOS host +2. +``` +[core@localhost ~]$ sed -i 's/aaa/zzz/g' /Users/sid/q/123 +sed: preserving permissions for ‘/Users/sid/q/sed3MLMjp’: Protocol not supported +``` +Additional information: +strace part with error +``` +openat(AT_FDCWD, "/proc/thread-self/attr/fscreate", O_RDWR|O_CLOEXEC) = 5 +write(5, NULL, 0) = 0 +close(5) = 0 +newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=12, ...}, AT_EMPTY_PATH) = 0 +read(3, "qqq\nzzz\nsss\n", 8192) = 12 +newfstatat(4, "", {st_mode=S_IFREG|0600, st_size=0, ...}, AT_EMPTY_PATH) = 0 +read(3, "", 8192) = 0 +fchown(4, 501, 1000) = 0 +fgetxattr(3, "system.posix_acl_access", 0x7ffd6dbd18b0, 132) = -1 ENODATA (No data available) +newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=12, ...}, AT_EMPTY_PATH) = 0 +fsetxattr(4, "system.posix_acl_access", "\2\0\0\0\1\0\6\0\377\377\377\377\4\0\4\0\377\377\377\377 \0\4\0\377\377\377\377", 28, 0) = -1 EPROTONOSUPPORT (Protocol not supported) +fsetxattr(4, "system.posix_acl_access", "\2\0\0\0\1\0\6\0\377\377\377\377\4\0\4\0\377\377\377\377 \0\4\0\377\377\377\377", 28, 0) = -1 EPROTONOSUPPORT (Protocol not supported) +fchmod(4, 0100644) = 0 +``` |