lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date:	Thu, 11 Sep 2014 17:08:01 -0700
From:	Joonwoo Park <joonwoop@...eaurora.org>
To:	Thomas Gleixner <tglx@...utronix.de>
Cc:	linux-kernel@...r.kernel.org, John Stultz <john.stultz@...aro.org>,
	Tejun Heo <tj@...nel.org>
Subject: Re: [PATCH/RFC] timer: make deferrable cpu unbound timers really not
 bound to a cpu

On Thu, Sep 11, 2014 at 04:56:52PM -0700, Joonwoo Park wrote:
> When a deferrable work (INIT_DEFERRABLE_WORK, etc.) is queued via
> queue_delayed_work() it's probably intended to run the work item on any
> CPU that isn't idle. However, we queue the work to run at a later time
> by starting a deferrable timer that binds to whatever CPU the work is
> queued on which is same with queue_delayed_work_on(smp_processor_id())
> effectively.
> 
> As a result WORK_CPU_UNBOUND work items aren't really cpu unbound now.
> In fact this is perfectly fine with UP kernel and also won't affect much a
> system without dyntick with SMP kernel too as every cpus run timers
> periodically.  But on SMP systems with dyntick current implementation leads
> deferrable timers not very scalable because the timer's base which has
> queued the deferrable timer won't wake up till next non-deferrable timer
> expires even though there are possible other non idle cpus are running
> which are able to run expired deferrable timers.
> 
> The deferrable work is a good example of the current implementation's
> victim like below.
> 
> INIT_DEFERRABLE_WORK(&dwork, fn);
> CPU 0                                 CPU 1
> queue_delayed_work(wq, &dwork, HZ);
>     queue_delayed_work_on(WORK_CPU_UNBOUND);
>         ...
> 	__mod_timer() -> queues timer to the
> 			 current cpu's timer
> 			 base.
> 	...
> tick_nohz_idle_enter() -> cpu enters idle.
> A second later
> cpu 0 is now in idle.                 cpu 1 exits idle or wasn't in idle so
>                                       now it's in active but won't
> cpu 0 won't wake up till next         handle cpu unbound deferrable timer
> non-deferrable timer expires.         as it's in cpu 0's timer base.
> 
> To make all cpu unbound deferrable timers are scalable, introduce a common
> timer base which is only for cpu unbound deferrable timers to make those
> are indeed cpu unbound so that can be scheduled by any of non idle cpus.
> This common timer fixes scalability issue of delayed work and all other cpu
> unbound deferrable timer using implementations.
> 
> cc: Thomas Gleixner <tglx@...utronix.de>
> CC: John Stultz <john.stultz@...aro.org>
> CC: Tejun Heo <tj@...nel.org>
> Signed-off-by: Joonwoo Park <joonwoop@...eaurora.org>
> ---
>  kernel/time/timer.c | 108 +++++++++++++++++++++++++++++++++++++++-------------
>  1 file changed, 82 insertions(+), 26 deletions(-)
> 
> diff --git a/kernel/time/timer.c b/kernel/time/timer.c
> index aca5dfe..655076b 100644
> --- a/kernel/time/timer.c
> +++ b/kernel/time/timer.c
> @@ -93,6 +93,9 @@ struct tvec_base {
>  struct tvec_base boot_tvec_bases;
>  EXPORT_SYMBOL(boot_tvec_bases);
>  static DEFINE_PER_CPU(struct tvec_base *, tvec_bases) = &boot_tvec_bases;
> +#ifdef CONFIG_SMP
> +static struct tvec_base *tvec_base_deferral = &boot_tvec_bases;
> +#endif
>  
>  /* Functions below help us manage 'deferrable' flag */
>  static inline unsigned int tbase_get_deferrable(struct tvec_base *base)
> @@ -655,7 +658,14 @@ static inline void debug_assert_init(struct timer_list *timer)
>  static void do_init_timer(struct timer_list *timer, unsigned int flags,
>  			  const char *name, struct lock_class_key *key)
>  {
> -	struct tvec_base *base = __raw_get_cpu_var(tvec_bases);
> +	struct tvec_base *base;
> +
> +#ifdef CONFIG_SMP
> +	if (flags & TIMER_DEFERRABLE)
> +		base = tvec_base_deferral;
> +	else
> +#endif
> +		base = __raw_get_cpu_var(tvec_bases);
>  
>  	timer->entry.next = NULL;
>  	timer->base = (void *)((unsigned long)base | flags);
> @@ -777,26 +787,32 @@ __mod_timer(struct timer_list *timer, unsigned long expires,
>  
>  	debug_activate(timer, expires);
>  
> -	cpu = get_nohz_timer_target(pinned);
> -	new_base = per_cpu(tvec_bases, cpu);
> +#ifdef CONFIG_SMP
> +	if (base != tvec_base_deferral) {
> +#endif
> +		cpu = get_nohz_timer_target(pinned);
> +		new_base = per_cpu(tvec_bases, cpu);
>  
> -	if (base != new_base) {
> -		/*
> -		 * We are trying to schedule the timer on the local CPU.
> -		 * However we can't change timer's base while it is running,
> -		 * otherwise del_timer_sync() can't detect that the timer's
> -		 * handler yet has not finished. This also guarantees that
> -		 * the timer is serialized wrt itself.
> -		 */
> -		if (likely(base->running_timer != timer)) {
> -			/* See the comment in lock_timer_base() */
> -			timer_set_base(timer, NULL);
> -			spin_unlock(&base->lock);
> -			base = new_base;
> -			spin_lock(&base->lock);
> -			timer_set_base(timer, base);
> +		if (base != new_base) {
> +			/*
> +			 * We are trying to schedule the timer on the local CPU.
> +			 * However we can't change timer's base while it is
> +			 * running, otherwise del_timer_sync() can't detect that
> +			 * the timer's handler yet has not finished. This also
> +			 * guarantees that the timer is serialized wrt itself.
> +			 */
> +			if (likely(base->running_timer != timer)) {
> +				/* See the comment in lock_timer_base() */
> +				timer_set_base(timer, NULL);
> +				spin_unlock(&base->lock);
> +				base = new_base;
> +				spin_lock(&base->lock);
> +				timer_set_base(timer, base);
> +			}
>  		}
> +#ifdef CONFIG_SMP
>  	}
> +#endif
>  
>  	timer->expires = expires;
>  	internal_add_timer(base, timer);
> @@ -1161,15 +1177,20 @@ static void call_timer_fn(struct timer_list *timer, void (*fn)(unsigned long),
>  /**
>   * __run_timers - run all expired timers (if any) on this CPU.
>   * @base: the timer vector to be processed.
> + * @try: try and just return if base's lock already acquired.
>   *
>   * This function cascades all vectors and executes all expired timer
>   * vectors.
>   */
> -static inline void __run_timers(struct tvec_base *base)
> +static inline void __run_timers(struct tvec_base *base, bool try)
>  {
>  	struct timer_list *timer;
>  
> -	spin_lock_irq(&base->lock);
> +	if (!try)
> +		spin_lock_irq(&base->lock);
> +	else if (!spin_trylock_irq(&base->lock))
> +		return;
> +
>  	if (catchup_timer_jiffies(base)) {
>  		spin_unlock_irq(&base->lock);
>  		return;
> @@ -1400,8 +1421,17 @@ static void run_timer_softirq(struct softirq_action *h)
>  
>  	hrtimer_run_pending();
>  
> +#ifdef CONFIG_SMP
> +	if (time_after_eq(jiffies, tvec_base_deferral->timer_jiffies))
> +		/*
> +		 * if other cpu is handling cpu unbound deferrable timer base,
> +		 * current cpu doesn't need to handle it so pass try=true.
> +		 */
> +		__run_timers(tvec_base_deferral, true);
> +#endif
> +
>  	if (time_after_eq(jiffies, base->timer_jiffies))
> -		__run_timers(base);
> +		__run_timers(base, false);
>  }
>  
>  /*
> @@ -1537,7 +1567,7 @@ static int init_timers_cpu(int cpu)
>  {
>  	int j;
>  	struct tvec_base *base;
> -	static char tvec_base_done[NR_CPUS];
> +	static char tvec_base_done[NR_CPUS + 1];
>  
>  	if (!tvec_base_done[cpu]) {
>  		static char boot_done;
> @@ -1546,8 +1576,14 @@ static int init_timers_cpu(int cpu)
>  			/*
>  			 * The APs use this path later in boot
>  			 */
> -			base = kzalloc_node(sizeof(*base), GFP_KERNEL,
> -					    cpu_to_node(cpu));
> +			if (cpu != NR_CPUS)
> +				base = kmalloc_node(sizeof(*base),
> +						    GFP_KERNEL | __GFP_ZERO,
> +						    cpu_to_node(cpu));
> +			else
> +				base = kmalloc(sizeof(*base),
> +					       GFP_KERNEL | __GFP_ZERO);
> +

I mitakenly converted kzalloc() to kmalloc(__GFP_ZERO) while rebasing this patch.
Will fix this in next patch version after waiting for review feedback.

Thanks,
Joonwoo

>  			if (!base)
>  				return -ENOMEM;
>  
> @@ -1556,7 +1592,13 @@ static int init_timers_cpu(int cpu)
>  				kfree(base);
>  				return -ENOMEM;
>  			}
> -			per_cpu(tvec_bases, cpu) = base;
> +
> +			if (cpu != NR_CPUS)
> +				per_cpu(tvec_bases, cpu) = base;
> +#ifdef CONFIG_SMP
> +			else
> +				tvec_base_deferral = base;
> +#endif
>  		} else {
>  			/*
>  			 * This is for the boot CPU - we use compile-time
> @@ -1571,7 +1613,12 @@ static int init_timers_cpu(int cpu)
>  		tvec_base_done[cpu] = 1;
>  		base->cpu = cpu;
>  	} else {
> -		base = per_cpu(tvec_bases, cpu);
> +		if (cpu != NR_CPUS)
> +			base = per_cpu(tvec_bases, cpu);
> +#ifdef CONFIG_SMP
> +		else
> +			base = tvec_base_deferral;
> +#endif
>  	}
>  
>  
> @@ -1679,6 +1726,15 @@ void __init init_timers(void)
>  			       (void *)(long)smp_processor_id());
>  	BUG_ON(err != NOTIFY_OK);
>  
> +#ifdef CONFIG_SMP
> +	/*
> +	 * initialize cpu unbound deferrable timer base only when CONFIG_SMP.
> +	 * UP kernel handles the timers with cpu 0 timer base.
> +	 */
> +	err = init_timers_cpu(NR_CPUS);
> +	BUG_ON(err);
> +#endif
> +
>  	init_timer_stats();
>  	register_cpu_notifier(&timers_nb);
>  	open_softirq(TIMER_SOFTIRQ, run_timer_softirq);
> -- 
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> hosted by The Linux Foundation
> 

-- 
The Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ