From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from www16.qth.com (www16.qth.com [69.16.238.67]) by sourceware.org (Postfix) with ESMTPS id 27F663858400 for ; Mon, 11 Jul 2022 02:17:13 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 27F663858400 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=plebeian.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=plebeian.com DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=plebeian.com; s=default; h=Content-Transfer-Encoding:Content-Type: Message-ID:References:In-Reply-To:Subject:Cc:To:From:Date:MIME-Version:Sender :Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help: List-Unsubscribe:List-Subscribe:List-Post:List-Owner:List-Archive; bh=Ap0Z2E55nSCI1FWN9Ku8/Y9Q0Sp1LulJ2Nj1QRawsoY=; b=szAhyZKiAjVlR/ipdTDGdGA1Rn YjjGE636v6UAHsfBZ10eiZqilVpEGB+7CZ/8fPVY6dP2r5poVlxKZ5YKYMDOH7mN8Au8vYxi5c3hn AVTjGpofCzm6ERClRMg6VfN5jH5gAS6lbvsp3SjT3DwKRlD/tW6HLSb+iDiAnNUO8MB/cJaLHsMxK 5NnOZP98zS4Wx9/pwcWZcpY/GAs+GDKaWxINm+jpoZz71Y2aoz9pRBZUHGfLiNhhBmcAZMi0HhB+8 C2UJWVrkw+7EVOYzMoFmxUTQyythAOXxi7dObcuj5HZwy9QqNvNMop4cQRb32nznDmC7etI8YDihT eI5Uekgw==; Received: from [127.0.0.1] (port=50784 helo=www16.qth.com) by www16.qth.com with esmtpa (Exim 4.95) (envelope-from ) id 1oAiz2-004R5U-Gf; Sun, 10 Jul 2022 21:17:12 -0500 MIME-Version: 1.0 Date: Sun, 10 Jul 2022 22:17:12 -0400 From: Chris Wagner To: cygwin@cygwin.com Subject: Re: chmod g+s ineffective In-Reply-To: <463526579.20220701025601@yandex.ru> References: <9c053381-4466-ea8a-11d6-ea2e676d3b35@huarp.harvard.edu> <792558531.20220629153952@yandex.ru> <7964c08d-83cb-aab3-5d1c-4a5f0a86bf0a@huarp.harvard.edu> <463526579.20220701025601@yandex.ru> User-Agent: Roundcube Webmail/1.4.12 Message-ID: X-Sender: wagnerc@plebeian.com Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - www16.qth.com X-AntiAbuse: Original Domain - cygwin.com X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - plebeian.com X-Get-Message-Sender-Via: www16.qth.com: authenticated_id: wagnerc@plebeian.com X-Authenticated-Sender: www16.qth.com: wagnerc@plebeian.com X-Source: X-Source-Args: X-Source-Dir: X-Spam-Status: No, score=-0.9 required=5.0 tests=BAYES_05, BODY_8BITS, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, RCVD_IN_DNSWL_LOW, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: cygwin@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: General Cygwin discussions and problem reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jul 2022 02:17:14 -0000 >> On 6/29/2022 9:18 AM, Norton Allen wrote: >>>>> On one machine I have, chmod g+s fails to set the sticky bit. The >>>>> >>> command >>>>> does not return any error, but ls -l continues to show the bit not >>>>> set. >>>>>      $ mkdir foo >>>>>      $ chgrp flight foo >>>>>      $ chmod g+ws foo >>>>>      $ ls -ld foo >>>>>      drwxrwxr-x+ 1 nort flight 0 Jun 29 06:50 foo Hi. The permission bits are implemented as normal Window's DACLs (Discretionary Access List). +s is implemented magically with the NULL SID. You can view it from Explorer or with icacls. Try checking the return code (echo $?) from chmod. Also try changing perms from Explorer. You might not be able to set the NULL SID for some reason. It works for me: $ ls -ld z drwxrwsr-x+ 1 wagnerc Users 0 Nov 24 2020 z $ getfacl z # file: z # owner: wagnerc # group: Users # flags: -s- user::rwx group::r-x group:Administrators:rwx group:Users:rwx mask::rwx other::r-x default:user::rwx default:user:wagnerc:rwx default:group::r-x default:group:Administrators:rwx default:group:Users:rwx default:mask::rwx default:other::r-x $ icacls z z NULL SID:(DENY)(Rc,S,WD,REA,WEA,X,DC) APPLEJACK\wagnerc:(F) BUILTIN\Users:(RX) BUILTIN\Administrators:(RX,W,DC) BUILTIN\Users:(RX,W,DC) Everyone:(RX) NULL SID:(OI)(CI)(IO)(DENY)(Rc,S,WD,REA,WEA,X,DC) CREATOR OWNER:(OI)(CI)(IO)(F) APPLEJACK\wagnerc:(OI)(CI)(IO)(RX,W,DC) BUILTIN\Users:(OI)(CI)(IO)(RX) BUILTIN\Administrators:(OI)(CI)(IO)(RX,W,DC) BUILTIN\Users:(OI)(CI)(IO)(RX,W,DC) Everyone:(OI)(CI)(IO)(RX) Successfully processed 1 files; Failed processing 0 files $ uname -a CYGWIN_NT-6.1 applejack 3.1.0(0.340/5/3) 2019-11-19 13:58 x86_64 Cygwin Thanks.