GNU bug report logs -
#13125
Fix permissions bugs with setgid directories etc.
Previous Next
Reported by: Paul Eggert <eggert <at> cs.ucla.edu>
Date: Sun, 9 Dec 2012 01:15:01 UTC
Severity: normal
Tags: patch, security
Done: Paul Eggert <eggert <at> cs.ucla.edu>
Bug is archived. No further changes may be made.
Full log
Message #29 received at 13125 <at> debbugs.gnu.org (full text, mbox):
On 12/09/2012 08:43 AM, Wolfgang Jenkner wrote:
> I understand you are describing here the most common behaviour only for
> non-4.2BSD descendants?
Yes, that's right.
> (in the absence of races with other processes)
Yes, races are a problem, both with current Emacs and with the patch.
It'd be good to fix this separate problem, when someone finds the time.
At least the proposed patch does not make things worse in this respect.
> Now, open(2) on all free BSD descendants invariably, literally and
> unconditionally states
>
> When a new file is created it is given the group of the directory which
> contains it.
I was worried about what happens with a BSD client of an
NFS server running some non-BSD OS. But if it's safe to
assume BSD semantics even then, your suggestion is a good one,
as it'll make Emacs more efficient.
Two thoughts. First, shouldn't gnu/kfreebsd be treated as a BSD
system in this respect? Second, the second part of the test can
be simplified a tad. So, how about the following patch instead?
=== modified file 'lisp/files.el'
--- lisp/files.el 2012-12-09 00:50:02 +0000
+++ lisp/files.el 2012-12-10 00:38:45 +0000
@@ -4039,6 +4039,9 @@ the group would be preserved too."
(and (eq system-type 'windows-nt)
(= (user-uid) 500) (= (nth 2 attributes) 544)))
(or (not group)
+ ;; On BSD-derived systems files always inherit the parent
+ ;; directory's group, so skip the group-gid test.
+ (memq system-type '(berkeley-unix darwin gnu/kfreebsd))
(= (nth 3 attributes) (group-gid)))
(let* ((parent (or (file-name-directory file) "."))
(parent-attributes (file-attributes parent 'integer)))
@@ -4052,7 +4055,8 @@ the group would be preserved too."
;; inherits that directory's group. On some systems
;; this happens even if the setgid bit is not set.
(or (not group)
- (= (nth 3 parent-attributes) (group-gid)))))))))))
+ (= (nth 3 parent-attributes)
+ (nth 3 attributes)))))))))))
(defun file-name-sans-extension (filename)
"Return FILENAME sans final \"extension\".
This bug report was last modified 12 years and 163 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.