659ae9
diff -ru firefox-78.3.0/security/sandbox/linux/SandboxFilter.cpp firefox-78.4.0/security/sandbox/linux/SandboxFilter.cpp
659ae9
--- firefox-78.3.0/security/sandbox/linux/SandboxFilter.cpp	2020-09-14 21:21:02.000000000 +0200
659ae9
+++ firefox-78.4.0/security/sandbox/linux/SandboxFilter.cpp	2020-10-14 11:34:48.000000000 +0200
659ae9
@@ -243,14 +243,21 @@
659ae9
     auto path = reinterpret_cast<const char*>(aArgs.args[1]);
659ae9
     auto buf = reinterpret_cast<statstruct*>(aArgs.args[2]);
659ae9
     auto flags = static_cast<int>(aArgs.args[3]);
659ae9
+
659ae9
+    if (fd != AT_FDCWD && (flags & AT_EMPTY_PATH) != 0 &&
659ae9
+        strcmp(path, "") == 0) {
659ae9
+      return ConvertError(fstatsyscall(fd, buf));
659ae9
+    }
659ae9
+
659ae9
     if (fd != AT_FDCWD && path[0] != '/') {
659ae9
       SANDBOX_LOG_ERROR("unsupported fd-relative fstatat(%d, \"%s\", %p, %d)",
659ae9
                         fd, path, buf, flags);
659ae9
       return BlockedSyscallTrap(aArgs, nullptr);
659ae9
     }
659ae9
-    if ((flags & ~AT_SYMLINK_NOFOLLOW) != 0) {
659ae9
+    if ((flags & ~(AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT)) != 0) {
659ae9
       SANDBOX_LOG_ERROR("unsupported flags %d in fstatat(%d, \"%s\", %p, %d)",
659ae9
-                        (flags & ~AT_SYMLINK_NOFOLLOW), fd, path, buf, flags);
659ae9
+                        (flags & ~(AT_SYMLINK_NOFOLLOW | AT_NO_AUTOMOUNT)), fd,
659ae9
+                        path, buf, flags);
659ae9
       return BlockedSyscallTrap(aArgs, nullptr);
659ae9
     }
659ae9
     return (flags & AT_SYMLINK_NOFOLLOW) == 0 ? broker->Stat(path, buf)