From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay.sgi.com (relay1.corp.sgi.com [137.38.102.111]) by oss.sgi.com (Postfix) with ESMTP id EE8C47F3F for ; Mon, 16 Sep 2013 17:55:57 -0500 (CDT) Received: from cuda.sgi.com (cuda3.sgi.com [192.48.176.15]) by relay1.corp.sgi.com (Postfix) with ESMTP id D6D468F8054 for ; Mon, 16 Sep 2013 15:55:54 -0700 (PDT) Received: from ipmail06.adl6.internode.on.net (ipmail06.adl6.internode.on.net [150.101.137.145]) by cuda.sgi.com with ESMTP id m1DMF7WaXvNvkod0 for ; Mon, 16 Sep 2013 15:55:53 -0700 (PDT) Date: Tue, 17 Sep 2013 08:55:50 +1000 From: Dave Chinner Subject: Re: [PATCH, RFC] xfstests: add d_type checking to fsstress Message-ID: <20130916225550.GG19103@dastard> References: <52377E50.3040907@redhat.com> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <52377E50.3040907@redhat.com> List-Id: XFS Filesystem from SGI List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: xfs-bounces@oss.sgi.com Sender: xfs-bounces@oss.sgi.com To: Eric Sandeen Cc: xfs-oss On Mon, Sep 16, 2013 at 04:55:28PM -0500, Eric Sandeen wrote: > This patch adds a "-D" switch to fsstress so that every time > we call readdir, we stat the dentry & compare it's st_mode > to the d_type. > > If -D is specified only once, it ignores DT_UNKNOWN. If specified > twice, it considers DT_UNKNOWN to be an error. Hmmmm. DT_UNKNOWN is actually a valid type on disk right through to the userspace interface. I can't think of why we'd want to consider it invalid, especially as right now xfs_repair siply zeros the field when recreating directory entries... Cheers, Dave. > +void test_d_type(int opno, pathname_t *f, struct dirent64 *de) > +{ > + struct stat64 sb; > + char path[PATH_MAX]; > + > + snprintf(path, PATH_MAX, "%s/%s", f->path, de->d_name); > + > + /* Don't check ./. or ./.. */ > + if (!strncmp(path, "./.", 3)) > + return; . and .. should have the values of DT_UNKNOWN or DT_DIR. They are the only valid values for these entries. > + > + if (lstat64(path, &sb)) { > + printf("%d/%d: getdents - can't stat %s\n", > + procid, opno, path); > + } else { > + int bad_d_type = 0; > + > + switch (de->d_type) { > + case DT_BLK: > + if (!S_ISBLK(sb.st_mode)) > + bad_d_type++; > + break; > + case DT_CHR: > + if (!S_ISCHR(sb.st_mode)) > + bad_d_type++; > + break; > + case DT_DIR: > + if (!S_ISDIR(sb.st_mode)) > + bad_d_type++; > + break; > + case DT_FIFO: > + if (!S_ISFIFO(sb.st_mode)) > + bad_d_type++; > + break; > + case DT_LNK: > + if (!S_ISLNK(sb.st_mode)) > + bad_d_type++; > + break; > + case DT_REG: > + if (!S_ISREG(sb.st_mode)) > + bad_d_type++; > + break; > + case DT_SOCK: > + if (!S_ISSOCK(sb.st_mode)) > + bad_d_type++; > + break; > + case DT_UNKNOWN: > + if (verify_d_type > 1) > + bad_d_type++; > + break; > + } And DT_WHT? That's defined on disk and in the user interface ;) i.e. this will not do the right thing with an unknown de->d_type. Cheers, Dave. -- Dave Chinner david@fromorbit.com _______________________________________________ xfs mailing list xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs