From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 579B0C433DF for ; Mon, 1 Jun 2020 18:58:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 2B316206C3 for ; Mon, 1 Jun 2020 18:58:42 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1591037922; bh=YevsKnJQm72hyJeKtisd+4CBmvALpyXGW+kelyesg0M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=uQszZEscGMc0XczP7HYXsH6ly9d9piQJ/fk9xpRshiWx0kFX5CxYRIV0YLDeszP2e 3Y5keyXv+/uRSetc+HCxstrheFuD0SczqkWQtmXISZren4thKSZI4SiIBwEY5HhGxL P0Mm3N+5/WjCDDDruiMWxrPU8wfLcblVpkqjZobk= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1729979AbgFAS6f (ORCPT ); Mon, 1 Jun 2020 14:58:35 -0400 Received: from mail.kernel.org ([198.145.29.99]:40574 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729166AbgFAR6e (ORCPT ); Mon, 1 Jun 2020 13:58:34 -0400 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id E462020825; Mon, 1 Jun 2020 17:58:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1591034313; bh=YevsKnJQm72hyJeKtisd+4CBmvALpyXGW+kelyesg0M=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=r2LYp2MEkbv2NisItKz/P5nw8U3f1mbeI00xwlk3tPeZwumJUWA4GEAABS75eS4Xr o+yJ65+EUVbvbLdAyDKkfZhP8QfzyvsG+PIk6If79+spLZttLZLZhZSjRlfZHzQvy/ bQZcS0w43FjOvEGWq4OFzwyhkfklNMtBOgSo5JIM= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Andy Lutomirski , "Eric W. Biederman" , Sasha Levin Subject: [PATCH 4.9 36/61] exec: Always set cap_ambient in cap_bprm_set_creds Date: Mon, 1 Jun 2020 19:53:43 +0200 Message-Id: <20200601174018.384802266@linuxfoundation.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200601174010.316778377@linuxfoundation.org> References: <20200601174010.316778377@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Eric W. Biederman [ Upstream commit a4ae32c71fe90794127b32d26d7ad795813b502e ] An invariant of cap_bprm_set_creds is that every field in the new cred structure that cap_bprm_set_creds might set, needs to be set every time to ensure the fields does not get a stale value. The field cap_ambient is not set every time cap_bprm_set_creds is called, which means that if there is a suid or sgid script with an interpreter that has neither the suid nor the sgid bits set the interpreter should be able to accept ambient credentials. Unfortuantely because cap_ambient is not reset to it's original value the interpreter can not accept ambient credentials. Given that the ambient capability set is expected to be controlled by the caller, I don't think this is particularly serious. But it is definitely worth fixing so the code works correctly. I have tested to verify my reading of the code is correct and the interpreter of a sgid can receive ambient capabilities with this change and cannot receive ambient capabilities without this change. Cc: stable@vger.kernel.org Cc: Andy Lutomirski Fixes: 58319057b784 ("capabilities: ambient capabilities") Signed-off-by: "Eric W. Biederman" Signed-off-by: Sasha Levin --- security/commoncap.c | 1 + 1 file changed, 1 insertion(+) diff --git a/security/commoncap.c b/security/commoncap.c index 8df676fbd393..b86aca8d6798 100644 --- a/security/commoncap.c +++ b/security/commoncap.c @@ -497,6 +497,7 @@ int cap_bprm_set_creds(struct linux_binprm *bprm) int ret; kuid_t root_uid; + new->cap_ambient = old->cap_ambient; if (WARN_ON(!cap_ambient_invariant_ok(old))) return -EPERM; -- 2.25.1