Received: by 2002:a25:b794:0:0:0:0:0 with SMTP id n20csp2768268ybh; Mon, 5 Aug 2019 06:32:47 -0700 (PDT) X-Google-Smtp-Source: APXvYqxQj6ISe0zawOxojph4G6qFbCQw1/51vL8f81BHSjJAw7Fe7VT/5K3A9V5hLOzhsrHi2I3M X-Received: by 2002:a17:902:b497:: with SMTP id y23mr22070942plr.68.1565011967372; Mon, 05 Aug 2019 06:32:47 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1565011967; cv=none; d=google.com; s=arc-20160816; b=asP+H7r2XW/endWF/TJIEnSSfesb8KkJeC4kJKAoTqQZYfJdymjY0dMPX249X6MIqE s+YVkk5mrnCbN+G5YH2LFgdwtY6W+EHckmuVQNDRA/WuX1qlnq72CRbHnOzUMXHuDwDy 9sa1Gqfq7VTsOWa0vTqgwtN7cQIiaZMlJ8+jP4x3XeUZ7qKxvsrBKHP+lBpnhCT9CZHz gY46vWfHCUD9VG7IZ8iyM2uLYCEQQOOt3FLqPCjjPKNsZGlMwGT8CnHPHPstbw5DdUR3 QVvy6y5UW5SzpydM/1tGOUX8gfpCtHTklMwM/5+4QsLoDgMxGVcmRh6tmByZhgEMTW8y jr9A== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :user-agent:organization:references:in-reply-to:date:cc:to:from :subject:message-id; bh=U4LwsVzsA5P022QmM1F3SgZQwi1iiyANHx1MyiRXTcs=; b=Xwa2PW0SKqvkpohXSHdNl6blDWeSkYOxo3gfZrz2rLjOvdsRnrWfpeuUqurgT9ZU// zTGSX4tTuB8/o04IabCkz7O0U+pv6CdjG0cZ1uzpB5NsPpbP0OJKtIz2Bflapar7jCAW Ams/MApKeAG6z5KfrOqi00x1obVp03zhKYFA+ggalZw2xqfqVGvQsWYpYOWdf4/atTq2 HXrPI1lbYopM3nce24hDJqhFWTF4ncUwxMVV+/cmGWIeNiW24XLZ4ztbQrb0akGN5WL/ /GGhTIUyg7jULy5XsT8Hyu5E9uW6PETzW2C52hnmuG2ZBh+lN0p+sdNnPJttlcz8Oqdp N+MA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=codethink.co.uk Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id s13si6147367pgn.123.2019.08.05.06.32.32; Mon, 05 Aug 2019 06:32:47 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=codethink.co.uk Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730099AbfHENat (ORCPT + 99 others); Mon, 5 Aug 2019 09:30:49 -0400 Received: from imap1.codethink.co.uk ([176.9.8.82]:58279 "EHLO imap1.codethink.co.uk" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729291AbfHENar (ORCPT ); Mon, 5 Aug 2019 09:30:47 -0400 Received: from [167.98.27.226] (helo=xylophone) by imap1.codethink.co.uk with esmtpsa (Exim 4.84_2 #1 (Debian)) id 1hud4W-0004bY-Ou; Mon, 05 Aug 2019 14:30:44 +0100 Message-ID: <12c095e595836a7ff7f2c7b2a32cb5544dd29b55.camel@codethink.co.uk> Subject: Re: [Y2038] [PATCH 05/20] utimes: Clamp the timestamps before update From: Ben Hutchings To: Deepa Dinamani , viro@zeniv.linux.org.uk, linux-kernel@vger.kernel.org Cc: linux-fsdevel@vger.kernel.org, y2038@lists.linaro.org, arnd@arndb.de Date: Mon, 05 Aug 2019 14:30:43 +0100 In-Reply-To: <20190730014924.2193-6-deepa.kernel@gmail.com> References: <20190730014924.2193-1-deepa.kernel@gmail.com> <20190730014924.2193-6-deepa.kernel@gmail.com> Organization: Codethink Ltd. Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 2019-07-29 at 18:49 -0700, Deepa Dinamani wrote: > POSIX is ambiguous on the behavior of timestamps for > futimens, utimensat and utimes. Whether to return an > error or silently clamp a timestamp beyond the range > supported by the underlying filesystems is not clear. > > POSIX.1 section for futimens, utimensat and utimes says: > (http://pubs.opengroup.org/onlinepubs/9699919799/functions/futimens.html) > > The file's relevant timestamp shall be set to the greatest > value supported by the file system that is not greater > than the specified time. > > If the tv_nsec field of a timespec structure has the special > value UTIME_NOW, the file's relevant timestamp shall be set > to the greatest value supported by the file system that is > not greater than the current time. > > [EINVAL] > A new file timestamp would be a value whose tv_sec > component is not a value supported by the file system. > > The patch chooses to clamp the timestamps according to the > filesystem timestamp ranges and does not return an error. > This is in line with the behavior of utime syscall also > since the POSIX page(http://pubs.opengroup.org/onlinepubs/009695399/functions/utime.html) > for utime does not mention returning an error or clamping like above. > > Same for utimes http://pubs.opengroup.org/onlinepubs/009695399/functions/utimes.html > > Signed-off-by: Deepa Dinamani > --- > fs/utimes.c | 17 +++++++++++++---- > 1 file changed, 13 insertions(+), 4 deletions(-) > > diff --git a/fs/utimes.c b/fs/utimes.c > index 350c9c16ace1..4c1a2ce90bbc 100644 > --- a/fs/utimes.c > +++ b/fs/utimes.c > @@ -21,6 +21,7 @@ static int utimes_common(const struct path *path, struct timespec64 *times) > int error; > struct iattr newattrs; > struct inode *inode = path->dentry->d_inode; > + struct super_block *sb = inode->i_sb; > struct inode *delegated_inode = NULL; > > error = mnt_want_write(path->mnt); > @@ -36,16 +37,24 @@ static int utimes_common(const struct path *path, struct timespec64 *times) > if (times[0].tv_nsec == UTIME_OMIT) > newattrs.ia_valid &= ~ATTR_ATIME; > else if (times[0].tv_nsec != UTIME_NOW) { > - newattrs.ia_atime.tv_sec = times[0].tv_sec; > - newattrs.ia_atime.tv_nsec = times[0].tv_nsec; > + newattrs.ia_atime.tv_sec = > + clamp(times[0].tv_sec, sb->s_time_min, sb->s_time_max); > + if (times[0].tv_sec == sb->s_time_max || times[0].tv_sec == sb->s_time_min) This is testing the un-clamped value. > + newattrs.ia_atime.tv_nsec = 0; > + else > + newattrs.ia_atime.tv_nsec = times[0].tv_nsec; > newattrs.ia_valid |= ATTR_ATIME_SET; > } > > if (times[1].tv_nsec == UTIME_OMIT) > newattrs.ia_valid &= ~ATTR_MTIME; > else if (times[1].tv_nsec != UTIME_NOW) { > - newattrs.ia_mtime.tv_sec = times[1].tv_sec; > - newattrs.ia_mtime.tv_nsec = times[1].tv_nsec; > + newattrs.ia_mtime.tv_sec = > + clamp(times[1].tv_sec, sb->s_time_min, sb->s_time_max); > + if (times[1].tv_sec >= sb->s_time_max || times[1].tv_sec == sb->s_time_min) Similarly here, for the minimum. I suggest testing for clamping like this: if (newattrs.ia_atime.tv_sec != times[0].tv_sec) ... if (newattrs.ia_mtime.tv_sec != times[1].tv_sec) ... Ben. > + newattrs.ia_mtime.tv_nsec = 0; > + else > + newattrs.ia_mtime.tv_nsec = times[1].tv_nsec; > newattrs.ia_valid |= ATTR_MTIME_SET; > } > /* -- Ben Hutchings, Software Developer Codethink Ltd https://www.codethink.co.uk/ Dale House, 35 Dale Street Manchester, M1 2HF, United Kingdom