From patchwork Mon Nov 27 17:00:45 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arnd Bergmann X-Patchwork-Id: 24552 Received: (qmail 19234 invoked by alias); 27 Nov 2017 17:01:59 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 18481 invoked by uid 89); 27 Nov 2017 17:01:59 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.7 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, KB_WAM_FROM_NAME_SINGLEWORD, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 spammy=alert, HCc:D*fr, traditionally, timers X-HELO: mout.kundenserver.de From: Arnd Bergmann To: John Stultz , Thomas Gleixner Cc: y2038@lists.linaro.org, libc-alpha@sourceware.org, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, linux-api@vger.kernel.org, Albert ARIBAUD , Arnd Bergmann , Stephen Boyd , Al Viro , Deepa Dinamani , Ingo Molnar , Andreas Dilger Subject: [PATCH 1/3] y2038: introduce struct __kernel_old_timeval Date: Mon, 27 Nov 2017 18:00:45 +0100 Message-Id: <20171127170121.634826-1-arnd@arndb.de> X-UI-Out-Filterresults: notjunk:1; V01:K0:A/taIUiopR0=:SicKl16WFJbQeZNfzE+4YR L6BmqMp3AMtsUfXLXsinyREQAGvv2QMXwNdgQI7Fl1n4wprIwfZm9cOG50gtwJ/1bm9/1X1rg 6dRbr6H+QeTlUmobGeDI5b5IF9bQXv+SZhrzL4aJqtLJTRPJ7I5L04XAaqHxD8vBVBp3sZx5C mw5nfB2kM+PI1+QPEsvg7IuurLXGhU21mjxTxLpik1swkPYeu9yu0NeeO4gDa0skXJjvdFRgU S9Y2G0xExgee0z0WggQ2oBk9GgTU+hv6XH+H9dzXxrOGs7s4+1Qk+XDzh4BXFKZnSxWHjzMgw 7akwjoH7G+e5n8Q8VI08TkpkV0LeVnuHQ4vp7JkY6hIfC6gLXHa6mtRus/c0FctwGe9JajfsZ +NTCKCpEZ2ptbJ1/vpU4WH/Dwpb4Ehvu4IkcpZgNa82FdFee29SKp0lJGDP+srGjxI6WLyeIz 3n7I4P+4nzEbn0hm3MwLycsA1j6newK6/qNYfJpmiXnktTU9UbNjLWbhOdXTe3dvPf3l8I/XU T5orgeKygeJjOqrXemSPgg3azAy2r7jZr1spVIN0qMgp5lpcDaQadsB2zEvANG31lwqprxjTR JWNwoetlIAH0xGSU/BgTOghaFBjwzA0fpTs3FRjrCsSlUnLgF8AgJfuRvhvkSyJrJ/QpC1Hgj ilCs+Sb3SWntgjtQMZySRojZkcrDrRyB8fAVFGIBgOys3EHd9b6GhnqwakUlRjIZSWzs+9Xeu H/PKJxVwKz6AvT9kl+ZH01XtCBcMVyVMS4GG2w== Dealing with 'struct timeval' users in the y2038 series is a bit tricky: We have two definitions of timeval that are visible to user space, one comes from glibc (or some other C library), the other comes from linux/time.h. The kernel copy is what we want to be used for a number of structures defined by the kernel itself, e.g. elf_prstatus (used it core dumps), sysinfo and rusage (used in system calls). These generally tend to be used for passing time intervals rather than absolute (epoch-based) times, so they do not suffer from the y2038 overflow. Some of them could be changed to use 64-bit timestamps by creating new system calls, others like the core files cannot easily be changed. An application using these interfaces likely also uses gettimeofday() or other interfaces that use absolute times, and pass 'struct timeval' pointers directly into kernel interfaces, so glibc must redefine their timeval based on a 64-bit time_t when they introduce their y2038-safe interfaces. The only reasonable way forward I see is to remove the 'timeval' definion from the kernel's uapi headers, and change the interfaces that we do not want to (or cannot) duplicate for 64-bit times to use a new __kernel_old_timeval definition instead. This type should be avoided for all new interfaces (those can use 64-bit nanoseconds, or the 64-bit version of timespec instead), and should be used with great care when converting existing interfaces from timeval, to be sure they don't suffer from the y2038 overflow, and only with consensus for the particular user that using __kernel_old_timeval is better than moving to a 64-bit based interface. The structure name is intentionally chosen to not conflict with user space types, and to be ugly enough to discourage its use. Note that ioctl based interfaces that pass a bare 'timeval' pointer cannot change to '__kernel_old_timeval' because the user space source code refers to 'timeval' instead, and we don't want to modify the user space sources if possible. However, any application that relies on a structure to contain an embedded 'timeval' (e.g. by passing a pointer to the member into a function call that expects a timeval pointer) is broken when that structure gets converted to __kernel_old_timeval. I don't see any way around that, and we have to rely on the compiler to produce a warning or compile failure that will alert users when they recompile their sources against a new libc. Signed-off-by: Arnd Bergmann --- include/linux/time32.h | 1 + include/uapi/linux/time.h | 12 ++++++++++++ kernel/time/time.c | 12 ++++++++++++ 3 files changed, 25 insertions(+) diff --git a/include/linux/time32.h b/include/linux/time32.h index 100411c979be..378c75d9a83c 100644 --- a/include/linux/time32.h +++ b/include/linux/time32.h @@ -205,5 +205,6 @@ static inline s64 timeval_to_ns(const struct timeval *tv) * Returns the timeval representation of the nsec parameter. */ extern struct timeval ns_to_timeval(const s64 nsec); +extern struct __kernel_old_timeval ns_to_kernel_old_timeval(const s64 nsec); #endif diff --git a/include/uapi/linux/time.h b/include/uapi/linux/time.h index 0ad4510884b0..30aa734135ad 100644 --- a/include/uapi/linux/time.h +++ b/include/uapi/linux/time.h @@ -50,6 +50,18 @@ struct __kernel_timespec { #endif /* + * legacy timeval structure, only embedded in structures that + * traditionally used 'timeval' to pass time intervals (not absolute + * times). Do not add new users. If user space fails to compile + * here, this is probably because it is not y2038 safe and needs to + * be changed to use another interface. + */ +struct __kernel_old_timeval { + __kernel_long_t tv_sec; /* seconds */ + __kernel_long_t tv_usec; /* seconds */ +}; + +/* * The IDs of the various system clocks (for POSIX.1b interval timers): */ #define CLOCK_REALTIME 0 diff --git a/kernel/time/time.c b/kernel/time/time.c index 518b56b17147..92002257f083 100644 --- a/kernel/time/time.c +++ b/kernel/time/time.c @@ -486,6 +486,18 @@ struct timeval ns_to_timeval(const s64 nsec) } EXPORT_SYMBOL(ns_to_timeval); +struct __kernel_old_timeval ns_to_kernel_old_timeval(const s64 nsec) +{ + struct timespec64 ts = ns_to_timespec64(nsec); + struct __kernel_old_timeval tv; + + tv.tv_sec = ts.tv_sec; + tv.tv_usec = (suseconds_t) ts.tv_nsec / 1000; + + return tv; +} +EXPORT_SYMBOL(ns_to_kernel_old_timeval); + /** * set_normalized_timespec - set timespec sec and nsec parts and normalize *