Skip to content

Commit f7bcb70

Browse files
johnstultz-workKAGA-KOKO
authored andcommitted
ktime: Fix ktime_divns to do signed division
It was noted that the 32bit implementation of ktime_divns() was doing unsigned division and didn't properly handle negative values. And when a ktime helper was changed to utilize ktime_divns, it caused a regression on some IR blasters. See the following bugzilla for details: https://bugzilla.redhat.com/show_bug.cgi?id=1200353 This patch fixes the problem in ktime_divns by checking and preserving the sign bit, and then reapplying it if appropriate after the division, it also changes the return type to a s64 to make it more obvious this is expected. Nicolas also pointed out that negative dividers would cause infinite loops on 32bit systems, negative dividers is unlikely for users of this function, but out of caution this patch adds checks for negative dividers for both 32-bit (BUG_ON) and 64-bit(WARN_ON) versions to make sure no such use cases creep in. [ tglx: Hand an u64 to do_div() to avoid the compiler warning ] Fixes: 166afb6 'ktime: Sanitize ktime_to_us/ms conversion' Reported-and-tested-by: Trevor Cordes <[email protected]> Signed-off-by: John Stultz <[email protected]> Acked-by: Nicolas Pitre <[email protected]> Cc: Ingo Molnar <[email protected]> Cc: Josh Boyer <[email protected]> Cc: One Thousand Gnomes <[email protected]> Cc: <[email protected]> Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Thomas Gleixner <[email protected]>
1 parent 030bbdb commit f7bcb70

File tree

2 files changed

+29
-12
lines changed

2 files changed

+29
-12
lines changed

include/linux/ktime.h

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -166,19 +166,34 @@ static inline bool ktime_before(const ktime_t cmp1, const ktime_t cmp2)
166166
}
167167

168168
#if BITS_PER_LONG < 64
169-
extern u64 __ktime_divns(const ktime_t kt, s64 div);
170-
static inline u64 ktime_divns(const ktime_t kt, s64 div)
169+
extern s64 __ktime_divns(const ktime_t kt, s64 div);
170+
static inline s64 ktime_divns(const ktime_t kt, s64 div)
171171
{
172+
/*
173+
* Negative divisors could cause an inf loop,
174+
* so bug out here.
175+
*/
176+
BUG_ON(div < 0);
172177
if (__builtin_constant_p(div) && !(div >> 32)) {
173-
u64 ns = kt.tv64;
174-
do_div(ns, div);
175-
return ns;
178+
s64 ns = kt.tv64;
179+
u64 tmp = ns < 0 ? -ns : ns;
180+
181+
do_div(tmp, div);
182+
return ns < 0 ? -tmp : tmp;
176183
} else {
177184
return __ktime_divns(kt, div);
178185
}
179186
}
180187
#else /* BITS_PER_LONG < 64 */
181-
# define ktime_divns(kt, div) (u64)((kt).tv64 / (div))
188+
static inline s64 ktime_divns(const ktime_t kt, s64 div)
189+
{
190+
/*
191+
* 32-bit implementation cannot handle negative divisors,
192+
* so catch them on 64bit as well.
193+
*/
194+
WARN_ON(div < 0);
195+
return kt.tv64 / div;
196+
}
182197
#endif
183198

184199
static inline s64 ktime_to_us(const ktime_t kt)

kernel/time/hrtimer.c

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -266,21 +266,23 @@ lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
266266
/*
267267
* Divide a ktime value by a nanosecond value
268268
*/
269-
u64 __ktime_divns(const ktime_t kt, s64 div)
269+
s64 __ktime_divns(const ktime_t kt, s64 div)
270270
{
271-
u64 dclc;
272271
int sft = 0;
272+
s64 dclc;
273+
u64 tmp;
273274

274275
dclc = ktime_to_ns(kt);
276+
tmp = dclc < 0 ? -dclc : dclc;
277+
275278
/* Make sure the divisor is less than 2^32: */
276279
while (div >> 32) {
277280
sft++;
278281
div >>= 1;
279282
}
280-
dclc >>= sft;
281-
do_div(dclc, (unsigned long) div);
282-
283-
return dclc;
283+
tmp >>= sft;
284+
do_div(tmp, (unsigned long) div);
285+
return dclc < 0 ? -tmp : tmp;
284286
}
285287
EXPORT_SYMBOL_GPL(__ktime_divns);
286288
#endif /* BITS_PER_LONG >= 64 */

0 commit comments

Comments
 (0)