From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from zeniv.linux.org.uk ([195.92.253.2]:49522 "EHLO ZenIV.linux.org.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727471AbeGaScf (ORCPT ); Tue, 31 Jul 2018 14:32:35 -0400 Date: Tue, 31 Jul 2018 17:51:12 +0100 From: Al Viro To: Jann Horn Cc: Richard Henderson , Ivan Kokshaysky , Matt Turner , linux-fsdevel@vger.kernel.org, "Eric W. Biederman" , Theodore Ts'o , Andreas Dilger , linux-alpha@vger.kernel.org, linux-kernel@vger.kernel.org, Dave Chinner , Pavel Machek Subject: Re: [PATCH v2] fs: don't let getdents return bogus names Message-ID: <20180731165112.GJ30522@ZenIV.linux.org.uk> References: <20180731161025.189534-1-jannh@google.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20180731161025.189534-1-jannh@google.com> Sender: linux-fsdevel-owner@vger.kernel.org List-ID: On Tue, Jul 31, 2018 at 06:10:27PM +0200, Jann Horn wrote: > +/* > + * Most filesystems don't filter out bogus directory entry names, and userspace > + * can get very confused by such names. Behave as if a low-level IO error had > + * happened while reading directory entries. > + */ > +bool bogus_dirent_name(int *errp, const char *name, int namlen, > + const char *caller) > +{ > + if (namlen == 0) { > + pr_err_once("%s: filesystem returned bogus empty name\n", > + caller); > + *errp = -EUCLEAN; > + return true; > + } > + if (memchr(name, '/', namlen)) { > + pr_err_once("%s: filesystem returned bogus name '%*pEhp' (contains slash)\n", > + caller, namlen, name); > + *errp = -EUCLEAN; > + return true; > + } > + return false; > +} > + if (bogus_dirent_name(&buf->result, name, namlen, __func__)) > + return -EUCLEAN; These calling conventions st^Ware rather suboptimal. First of all, * none of ->actor() callbacks will ever get called directly. * there are only 4 callers. 3 of them (all in fs.h) are of the form return ....->actor(...) == 0; The fourth is return orig_ctx->actor(orig_ctx, name, namelen, offset, ino, d_type); in ovl_fill_real(), which itself is an ->actor() callback. So all these "return -E..." in the instances are completely pointless; we should just turn filldir_t into pointer-to-function-returning-bool and get rid of that boilerplate, rather than adding more to it. Furthermore, who the hell cares which callback has stepped into it? "The first time it happened from getdents(2) in a 32bit process and that's all you'll ever get out of me" seems to be less than helpful... And frankly, I would prefer buf->result = check_dirent_name(name, namelen); if (unlikely(buf->result)) return false; making that thing return -EUCLEAN or 0. Quite possibly - inlining it as well...