Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S935017AbcJUSmh (ORCPT ); Fri, 21 Oct 2016 14:42:37 -0400 Received: from mail-pf0-f175.google.com ([209.85.192.175]:33390 "EHLO mail-pf0-f175.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S935106AbcJUSmf (ORCPT ); Fri, 21 Oct 2016 14:42:35 -0400 Date: Fri, 21 Oct 2016 11:42:31 -0700 From: Eric Biggers To: Richard Weinberger Cc: linux-mtd@lists.infradead.org, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, dedekind1@gmail.com, adrian.hunter@intel.com, tytso@mit.edu, jaegeuk@kernel.org, david@sigma-star.at, wd@denx.de, sbabic@denx.de, dengler@linutronix.de Subject: Re: [PATCH 20/26] ubifs: Add support for encrypted symlinks Message-ID: <20161021184231.GD90712@google.com> References: <1477054121-10198-1-git-send-email-richard@nod.at> <1477054121-10198-21-git-send-email-richard@nod.at> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1477054121-10198-21-git-send-email-richard@nod.at> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 814 Lines: 32 On Fri, Oct 21, 2016 at 02:48:35PM +0200, Richard Weinberger wrote: > + > + if (!dentry) > + return ERR_PTR(-ECHILD); > + > + if (ubifs_crypt_is_encrypted(inode)) { > + err = fscrypt_get_encryption_info(inode); > + if (err) > + return ERR_PTR(err); > + } else > + return ui->data; > + This will make path lookups drop out of RCU mode when an unencrypted symlink is followed. This can be avoided by checking for unencrypted symlinks first: if (!ubifs_crypt_is_encrypted(inode)) return ui->data; if (!dentry) return ERR_PTR(-ECHILD); err = fscrypt_get_encryption_info(inode); if (err) return ERR_PTR(err); > + > + pstr.name[err] = '\0'; > + In 4.9, fscrypt_fname_{disk_to_usr,usr_to_disk} return 0 instead of the output length, so this will need to be changed to 'pstr.name[pstr.len] = '\0''.