From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mout.kundenserver.de (mout.kundenserver.de [212.227.17.13]) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id CAB471A0025 for ; Tue, 21 Apr 2015 18:46:28 +1000 (AEST) From: Arnd Bergmann To: y2038@lists.linaro.org Subject: Re: [Y2038] [PATCH 05/11] time/posix-timers:Convert to the 64bit methods for k_clock callback functions Date: Tue, 21 Apr 2015 10:45:48 +0200 Message-ID: <8072977.i0FsrGW3CD@wuerfel> In-Reply-To: References: <1429509459-17068-1-git-send-email-baolin.wang@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Cc: Xunlei Pang , peterz@infradead.org, heiko.carstens@de.ibm.com, paulus@samba.org, cl@linux.com, Heena Sirwani , linux-arch@vger.kernel.org, linux-s390@vger.kernel.org, rafael.j.wysocki@intel.com, Andrew Hunter , =?ISO-8859-1?Q?Fr=E9d=E9ric?= Weisbecker , Paul Turner , riel@redhat.com, Richard Cochran , tj@kernel.org, John Stultz , Thomas Gleixner , rth@twiddle.net, Baolin Wang , gregkh@linuxfoundation.org, linux-kernel@vger.kernel.org, netdev@vger.kernel.org, schwidefsky@de.ibm.com, linux390@de.ibm.com, linuxppc-dev@lists.ozlabs.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Tuesday 21 April 2015 16:36:13 Baolin Wang wrote: > On 21 April 2015 at 04:48, Thomas Gleixner wrote: > > > On Mon, 20 Apr 2015, Baolin Wang wrote: > > > /* Set clock_realtime */ > > > static int posix_clock_realtime_set(const clockid_t which_clock, > > > - const struct timespec *tp) > > > + const struct timespec64 *tp) > > > { > > > - return do_sys_settimeofday(tp, NULL); > > > + struct timespec ts = timespec64_to_timespec(*tp); > > > + > > > + return do_sys_settimeofday(&ts, NULL); > > > > Sigh. No. We first provide a proper function for this, which takes a > > timespec64, i.e. do_sys_settimeofday64() instead of having this > > wrapper mess all over the place. > > > > Thanks for your comments,but if use do_sys_settimeofday64() here that > will introduce > a security bug: do_sys_settimeofday contains a capability > check that normally prevents non-root users from setting the time. > > With your change, any user can set the system time. He was asking for a new do_sys_settimeofday64 function to be added, not using the low-level do_settimeofday64. Arnd