From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751590AbeA2QdS (ORCPT ); Mon, 29 Jan 2018 11:33:18 -0500 Received: from mx0b-001b2d01.pphosted.com ([148.163.158.5]:39276 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751417AbeA2QdQ (ORCPT ); Mon, 29 Jan 2018 11:33:16 -0500 Subject: Re: [RFC PATCH v3 2/2] ima: force re-appraisal on filesystems with FS_IMA_NO_CACHE From: Mimi Zohar To: "Serge E. Hallyn" , Alban Crequy Cc: alban@kinvolk.io, dongsu@kinvolk.io, iago@kinvolk.io, linux-kernel@vger.kernel.org, linux-integrity@vger.kernel.org, linux-security-module@vger.kernel.org, linux-fsdevel@vger.kernel.org, miklos@szeredi.hu, viro@zeniv.linux.org.uk, dmitry.kasatkin@gmail.com, james.l.morris@oracle.com, seth.forshee@canonical.com, hch@infradead.org Date: Mon, 29 Jan 2018 11:33:05 -0500 In-Reply-To: <1516881401.3751.37.camel@linux.vnet.ibm.com> References: <20180122162452.8756-1-alban@kinvolk.io> <20180122162452.8756-3-alban@kinvolk.io> <20180124175234.GA29811@mail.hallyn.com> <1516881401.3751.37.camel@linux.vnet.ibm.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.20.5 (3.20.5-1.fc24) Mime-Version: 1.0 Content-Transfer-Encoding: 8bit X-TM-AS-GCONF: 00 x-cbid: 18012916-0016-0000-0000-0000051D0CF4 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 18012916-0017-0000-0000-00002859A662 Message-Id: <1517243585.29187.546.camel@linux.vnet.ibm.com> X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-01-29_08:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=0 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1709140000 definitions=main-1801290215 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Alban, On Thu, 2018-01-25 at 06:56 -0500, Mimi Zohar wrote: > > > @@ -228,9 +229,28 @@ static int process_measurement(struct file *file, char *buf, loff_t size, > > > IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK | > > > IMA_ACTION_FLAGS); > > > > > > - if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags)) > > > - /* reset all flags if ima_inode_setxattr was called */ > > > + /* > > > + * Reset the measure, appraise and audit cached flags either if: > > > + * - ima_inode_setxattr was called, or > > > + * - based on filesystem feature flag > > > + * forcing the file to be re-evaluated. > > > + */ > > > + if (test_and_clear_bit(IMA_CHANGE_XATTR, &iint->atomic_flags)) { > > > iint->flags &= ~IMA_DONE_MASK; > > > + } else if (inode->i_sb->s_type->fs_flags & FS_IMA_NO_CACHE) { > > > + if (action & IMA_MEASURE) { > > > + iint->measured_pcrs = 0; > > > + iint->flags &= > > > + ~(IMA_COLLECTED | IMA_MEASURE | IMA_MEASURED); > > > + } > > > + if (action & IMA_APPRAISE) > > > + iint->flags &= > > > + ~(IMA_COLLECTED | IMA_APPRAISE | IMA_APPRAISED | > > > + IMA_APPRAISE_SUBMASK | IMA_APPRAISED_SUBMASK); > > > + if (action & IMA_AUDIT) > > > + iint->flags &= > > > + ~(IMA_COLLECTED | IMA_AUDIT | IMA_AUDITED); > > > + } > > > > > Alban, I don't know what I was thinking, but this can be simplified > like for the IMA_CHANGE_XATTR case.  Except in the IMA_CHANGE_XATTR > case, "measured_pcrs" was already reset, whereas in this case > "measured_pcrs" needs to be reset. Did you get a chance to make the change and test it? Mimi