X-Recipient: archive-cygwin AT delorie DOT com DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:reply-to:message-id:to:subject :in-reply-to:references:mime-version:content-type :content-transfer-encoding; q=dns; s=default; b=RlWD0LQdcENDkW76 lSAD4SDR7AuVt1IQ4WUDHER0YltRHVsgDF6jSCfOgvEJsmNWyYZaubokXZiP1jt0 3kaN+3gVbJQ054ebDMRbKxtQUD9lC47cox7yR6V3x49d1BGud9qKyuGg4gZ9CKk5 FmEu4t2oI5ko8DPM4kCThG3LdO4= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:date:from:reply-to:message-id:to:subject :in-reply-to:references:mime-version:content-type :content-transfer-encoding; s=default; bh=9Ttqx90QxwQ4/JOt2RHHN0 Efr3w=; b=tt1BG4nOPXRiqVUV571dPiW5Dus3iFWnPwm/4hXJop4EUCAdSYUBPW ytcopzk2kuequiENhCjXqJqz9DvsPyEXUb7BELNXHiUYJro6d5epOAmSR2TUsgHx uAHCoOdpJbGXbbZapx/x/+g+QbstBRvalNY/+9PC6KGSZLmHB6lOU= Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=3.6 required=5.0 tests=AWL,BAYES_50,FREEMAIL_FROM,KAM_THEBAT,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: smtpback.ht-systems.ru Date: Thu, 28 Aug 2014 01:02:03 +0400 From: Andrey Repin Reply-To: cygwin AT cygwin DOT com Message-ID: <17910052714.20140828010203@yandex.ru> To: Corinna Vinschen Subject: Re: (call-process ...) hangs in emacs In-Reply-To: <20140827084245.GD20700@calimero.vinschen.de> References: <20140805184047 DOT GC13601 AT calimero DOT vinschen DOT de> <53E3685B DOT 8050508 AT cornell DOT edu> <53E39BAD DOT 3010004 AT redhat DOT com> <53E3CB46 DOT 1020909 AT cornell DOT edu> <53E3F2AE DOT 7030608 AT redhat DOT com> <53E4D01B DOT 9010005 AT cornell DOT edu> <53F1F154 DOT 1020702 AT cornell DOT edu> <53FB87DC DOT 2050908 AT cornell DOT edu> <87wq9v9j2y DOT fsf AT Rainer DOT invalid> <53FD0662 DOT 5050208 AT cornell DOT edu> <20140827084245 DOT GD20700 AT calimero DOT vinschen DOT de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Greetings, Corinna Vinschen! > faccessat/access/eaccess don't try to be intelligent by themselves. > Rather they just call a Windows function if the filesystem is mounted > with "acl" mount flags: > - Fetch file's security descriptor > - Create process impersonation token. > - Call NtAccessCheck > - If NtAccessCheck returns "not allowed", check for backup/restore > privileges via NtPrivilegeCheck. > In "noacl" mode or on filesystems not supporting ACLs, access uses the > st_mode flags from stat() to figure out the permissions. I'm not very much into Cygwin internals, so beg pardon if I got something wrong here... But reading this makes my internal sanity checker go into red alarm state. Here's why: When Cygwin mount a filesystem with 'acl' flag set, it mangles current ACL's set on the files to produce something that can be understood as basic POSIX 'ugly'...erm, 'ugo' permissions. Behavior least desirable in many cases. You say, it will then use native functions to determine access rights... No wonder they will work, since you already mangled them to suit your needs. When Cygwin mount a filesystem with 'noacl' flag, thus let OS use true ACL's (a feature Windows implemented surprisingly fast, while *NIX was only proposing it... for far too long without any result in sight), it is then followed by some magic and guesswork on Cygwin's end to find out access rights. If you ask me, something isn't quite right here. Or something is missing. > The relevant parts of the implementation are the check_file_access and > subsequently called check_access functions in security.cc. > If you see a bug there, please let me know. >> BTW, emacs on Cygwin doesn't directly check ACLs, because the relevant >> configure test fails. > Works for vim. Does the Emacs configure test only check for POSIX > ACL functions and not for Solaris ACL functions, by any chance? -- WBR, Andrey Repin (anrdaemon AT yandex DOT ru) 28.08.2014, <00:48> Sorry for my terrible english... -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple