]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some file-mode races
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 17 Sep 2019 00:43:56 +0000 (17:43 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 17 Sep 2019 01:00:59 +0000 (18:00 -0700)
* lisp/emacs-lisp/autoload.el (autoload-ensure-file-writeable):
* lisp/files.el (after-find-file):
* lisp/gnus/gnus-start.el (gnus-dribble-read-file):
* lisp/htmlfontify.el (hfy-copy-and-fontify-file):
* lisp/server.el (server-ensure-safe-dir):
Avoid a race when getting file permissions.

lisp/emacs-lisp/autoload.el
lisp/files.el
lisp/gnus/gnus-start.el
lisp/htmlfontify.el
lisp/server.el

index a2dbd402c52e4354ec09e700ea1b55dad6173934..ce2827162b95246f871b994b8dc2497d94ac8428 100644 (file)
@@ -398,9 +398,8 @@ FILE's name."
   ;; Probably pointless, but replaces the old AUTOGEN_VCS in lisp/Makefile,
   ;; which was designed to handle CVSREAD=1 and equivalent.
   (and autoload-ensure-writable
-       (file-exists-p file)
        (let ((modes (file-modes file)))
-         (if (zerop (logand modes #o0200))
+        (if (and modes (zerop (logand modes #o0200)))
              ;; Ignore any errors here, and let subsequent attempts
              ;; to write the file raise any real error.
              (ignore-errors (set-file-modes file (logior modes #o0200))))))
index ce4dd99bd535906f6df0d77bb418a14c2814f5a5..5ceaacd744e3fa1c0e57499a14fe1f9ad2a9646e 100644 (file)
@@ -2554,13 +2554,13 @@ unless NOMODES is non-nil."
       (auto-save-mode 1)))
   ;; Make people do a little extra work (C-x C-q)
   ;; before altering a backup file.
-  (when (backup-file-name-p buffer-file-name)
-    (setq buffer-read-only t))
   ;; When a file is marked read-only,
   ;; make the buffer read-only even if root is looking at it.
-  (when (and (file-modes (buffer-file-name))
-            (zerop (logand (file-modes (buffer-file-name)) #o222)))
-    (setq buffer-read-only t))
+  (unless buffer-read-only
+    (when (or (backup-file-name-p buffer-file-name)
+             (let ((modes (file-modes (buffer-file-name))))
+               (and modes (zerop (logand modes #o222)))))
+      (setq buffer-read-only t)))
   (unless nomodes
     (when (and view-read-only view-mode)
       (view-mode -1))
index e8775c6667398374b30bfbe0dc8fb9670217755e..cb369f07b92a13fdcbabbda8b12c7a0428b71038 100644 (file)
@@ -897,9 +897,8 @@ If REGEXP is given, lines that match it will be deleted."
            (set-buffer-modified-p t))
          ;; Set the file modes to reflect the .newsrc file modes.
          (save-buffer)
-         (when (and (file-exists-p gnus-current-startup-file)
-                    (file-exists-p dribble-file)
-                    (setq modes (file-modes gnus-current-startup-file)))
+         (when (and (setq modes (file-modes gnus-current-startup-file))
+                    (file-exists-p dribble-file))
            (gnus-set-file-modes dribble-file modes))
          (goto-char (point-min))
          (when (search-forward "Gnus was exited on purpose" nil t)
index b8442be1e89ad721ec5e92595a33c67035675fab..c1aaab5e211f70df66fe6a8a44818da6018754f1 100644 (file)
@@ -1938,9 +1938,9 @@ adding an extension of `hfy-extn'.  Fontification is actually done by
                  (set-buffer  html)
                  (write-file (concat target hfy-extn))
                  (kill-buffer html))
-        ;; #o0200 == 128, but emacs20 doesn't know that
-        (if (and (file-exists-p target) (not (file-writable-p target)))
-            (set-file-modes target (logior (file-modes target) 128)))
+       (let ((modes (file-modes target)))
+         (if (and modes (not (file-writable-p target)))
+             (set-file-modes target (logior modes #o0200))))
         (copy-file (buffer-file-name source) target 'overwrite))
       (kill-buffer source)) ))
 
index ac81cdbd48392f2ba5cf3b7f81cbcc1797fa634b..45fa55ad6b0ee7da4bc5f609bb706abd1d077444 100644 (file)
@@ -563,9 +563,9 @@ See variable `server-auth-dir' for details."
                      (format "it is not owned by you (owner = %s (%d))"
                              (user-full-name uid) uid))
                     (w32 nil)           ; on NTFS?
-                    ((/= 0 (logand ?\077 (file-modes dir)))
-                     (format "it is accessible by others (%03o)"
-                             (file-modes dir)))
+                    ((let ((modes (file-modes dir)))
+                       (unless (zerop (logand (or modes 0) #o077))
+                         (format "it is accessible by others (%03o)" modes))))
                     (t nil))))
       (when unsafe
         (error "`%s' is not a safe directory because %s"