Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp6043033imu; Mon, 21 Jan 2019 02:06:22 -0800 (PST) X-Google-Smtp-Source: ALg8bN5uvHH3yeiQyJXq4uJALSAu3mgUkRJ4hVnbZthy9/B3IJSmHq3H0gqkOAtsdpwORcKTcloo X-Received: by 2002:a63:235f:: with SMTP id u31mr27406116pgm.122.1548065182928; Mon, 21 Jan 2019 02:06:22 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1548065182; cv=none; d=google.com; s=arc-20160816; b=Y+zn4s02GQVHTCz2+ztG3g2fMzyev77cal/3SoTjPgHeP29PgGjnE4MPDbPQLvc6bx GjIrR56BxnFQ2uDEKBwP0Q4j89Eoto3mSzLbYohIyB4RDjTQwHoyMlR04ajOjTluLK2w xVDw1P3e8L7v6XCcNafW4kGlcIUNgmLRw11uxYx4mVCOfxfoS16oMp7UUNTijgJR/7R/ PSk9mxEgraLt0S9MkffaY1yVkp2oD6jrcrPB8SL7eD14s9OMi8eI42Ba9tDMk6IuJ3pW G8NscQrZWjYZsB69M0K3Qwf03v39VpAoQUqXkdArOxSwNqSgG06BEmHGfuPpEw2EaMjn Lbxw== 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 :content-language:in-reply-to:mime-version:user-agent:date :message-id:from:references:cc:to:subject; bh=0IZKfA4DdRgG++QYlmB/gmMZNOftWm3KXIuii9TguZE=; b=EVkvShp/eGK7fKXwI6RjqTZAyeMvOXAXiIec9dCoL1/h5nOuYR/HYtFVATf/hpqX4+ OL+VSB0/9bNwW/WZIP1wuAksUibCC3r+32taiNANu9QsreJtB9Qckzq137MkgIfsLSal uAFziCzmYuT0oHdIddxL3dpiaF5iWCLN/B910qlpx0RUU8kgkcxTsbc/VugqAmfcr/eH 2ztnpejhOBPSU0pMaNUa81Jz3gvf7ZlYZgi99aqk0RirZJhxDx374wnt5E3SgKJliQVo vPeYt2+Q9l1mLM8hRweZtvuq3rq5I4CXFmWMfCEAUEfm0K2WIGBXISDstKEoGXoFzM5y VOgA== 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 Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id a4si11798620pls.262.2019.01.21.02.06.06; Mon, 21 Jan 2019 02:06:22 -0800 (PST) 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 Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727862AbfAUKEV (ORCPT + 99 others); Mon, 21 Jan 2019 05:04:21 -0500 Received: from szxga05-in.huawei.com ([45.249.212.191]:2283 "EHLO huawei.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726523AbfAUKEU (ORCPT ); Mon, 21 Jan 2019 05:04:20 -0500 Received: from DGGEMS410-HUB.china.huawei.com (unknown [172.30.72.59]) by Forcepoint Email with ESMTP id 1CE0788A4902F56641D8; Mon, 21 Jan 2019 10:18:34 +0800 (CST) Received: from [127.0.0.1] (10.184.213.217) by DGGEMS410-HUB.china.huawei.com (10.3.19.210) with Microsoft SMTP Server id 14.3.408.0; Mon, 21 Jan 2019 10:18:23 +0800 Subject: Re: [PATCH] squashfs: fix mtime underflow on 64 bit system To: , CC: , References: <20190117082148.129347-1-zhengbin13@huawei.com> From: "zhengbin (A)" Message-ID: Date: Mon, 21 Jan 2019 10:18:01 +0800 User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:60.0) Gecko/20100101 Thunderbird/60.3.0 MIME-Version: 1.0 In-Reply-To: <20190117082148.129347-1-zhengbin13@huawei.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-Originating-IP: [10.184.213.217] X-CFilter-Loop: Reflected Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org hi Phillip, when you have time, help to confirm it? Looking forward to your reply. On 2019/1/17 16:21, zhengbin wrote: > If we change the file mtime to 1969, mksquashfs and mount, > the atime/mtime of this file will be underflow. The reason is > treating timestamps with the high bit set as positive > times(before 1970), which should be set as negative times > just like on 32 bit system. After this, the poissble range > of timestamps will be 1901-2038(prev is 1970-2106) on 64 > bit system. > > Signed-off-by: zhengbin > --- > fs/squashfs/inode.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fs/squashfs/inode.c b/fs/squashfs/inode.c > index e9793b1e49a5..03a6ef77a2d2 100644 > --- a/fs/squashfs/inode.c > +++ b/fs/squashfs/inode.c > @@ -72,7 +72,7 @@ static int squashfs_new_inode(struct super_block *sb, struct inode *inode, > i_uid_write(inode, i_uid); > i_gid_write(inode, i_gid); > inode->i_ino = le32_to_cpu(sqsh_ino->inode_number); > - inode->i_mtime.tv_sec = le32_to_cpu(sqsh_ino->mtime); > + inode->i_mtime.tv_sec = (signed int)le32_to_cpu(sqsh_ino->mtime); > inode->i_atime.tv_sec = inode->i_mtime.tv_sec; > inode->i_ctime.tv_sec = inode->i_mtime.tv_sec; > inode->i_mode = le16_to_cpu(sqsh_ino->mode); > -- > 2.16.2.dirty > > > . >