Received: by 2002:a5b:505:0:0:0:0:0 with SMTP id o5csp4162217ybp; Sun, 13 Oct 2019 23:41:23 -0700 (PDT) X-Google-Smtp-Source: APXvYqyqFByVTssk+5hsrav6ATR0HUDy+ZoCpuVV9Y4aUXsSlt2C/mBR56EwAD1dkkxGWLGagnx8 X-Received: by 2002:a17:906:1911:: with SMTP id a17mr26722762eje.14.1571035283157; Sun, 13 Oct 2019 23:41:23 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1571035283; cv=none; d=google.com; s=arc-20160816; b=r+75BPKGqNeechAHnrJGgsTCOtlZIxc7Btr7uy2ciEnVnqg9UaRvatN9sKCh/h5d/m g7m1++4T9VsC0pdJzrhu3saRtkyyhrO7mAcSTE3hVxCFLiV3efd+zI1JoTWJMOXVnK5G FbWjjSy3uXsBBnGDOPh4AUcTwwo4OB6aGMcCKJvWASKcpFqprfES1YvwV7XtXKX+8DZ+ l0cA+D8Gcj1Olx9S2Y8rifcWHNCS2yZQNXsO4iY48EV175LU9lWi/lFr7C02k7QxbOJ8 cvhecrTFJAo8jfHqT80sgbTAOI/sAZWD9yPBnZ09FV1QOst9XXivNnwDHVb/69PtPlYw 4sWA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=f8UaqeT24gYDmY/8lKDFfmly9QWU9kM7yn/cGGLwo5k=; b=yGCUg8GdPrUYhm1ZU7ALRyvo4Ym44O/nx0QH7tPCUY3CgcKWUoZQO4Zi1W8fORPsPP e10Zikelbx1Hwzq7hRde0vYKNBPwi7cPywJB2PCo/IaiO9E1K6lRDgZKm4ClUYS14ZY8 PpcicB+VQwDbf/SRDri7s7ixwHSFhQwfNyrqCaNG5+2vAozPX/kj+QrKcXEQG8ON9gEr eQGEEZNyCOcKIXZgfv28LxnhkgSgEbimJkEkpvHupIq7NrtVrDmfTLEt88M6cdMTh1LT LFlC4Pu8Ftj6EH5Wd68LQ9WClRihoxziB73HYQh1a3uu5VCmnnafq907l6aGrleAmIIl 3qAw== 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 e4si10502900ejd.32.2019.10.13.23.41.00; Sun, 13 Oct 2019 23:41:23 -0700 (PDT) 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 S1730148AbfJNGj1 (ORCPT + 99 others); Mon, 14 Oct 2019 02:39:27 -0400 Received: from mx2.suse.de ([195.135.220.15]:52446 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726646AbfJNGj1 (ORCPT ); Mon, 14 Oct 2019 02:39:27 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id B7317AD29; Mon, 14 Oct 2019 06:39:24 +0000 (UTC) Date: Sun, 13 Oct 2019 23:38:10 -0700 From: Davidlohr Bueso To: Manfred Spraul Cc: LKML , Waiman Long , 1vier1@web.de, Andrew Morton , Peter Zijlstra , Jonathan Corbet Subject: Re: [PATCH 3/6] ipc/mqueue.c: Update/document memory barriers Message-ID: <20191014063810.2delhkndor5v6bkp@linux-p48b> References: <20191012054958.3624-1-manfred@colorfullife.com> <20191012054958.3624-4-manfred@colorfullife.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Disposition: inline In-Reply-To: <20191012054958.3624-4-manfred@colorfullife.com> User-Agent: NeoMutt/20180716 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Sat, 12 Oct 2019, Manfred Spraul wrote: >Update and document memory barriers for mqueue.c: >- ewp->state is read without any locks, thus READ_ONCE is required. > >- add smp_aquire__after_ctrl_dep() after the READ_ONCE, we need > acquire semantics if the value is STATE_READY. > >- add an explicit memory barrier to __pipelined_op(), the > refcount must have been increased before the updated state becomes > visible > >- document why __set_current_state() may be used: > Reading task->state cannot happen before the wake_q_add() call, > which happens while holding info->lock. Thus the spin_unlock() > is the RELEASE, and the spin_lock() is the ACQUIRE. > >For completeness: there is also a 3 CPU szenario, if the to be woken ^^^ scenario >up task is already on another wake_q. >Then: >- CPU1: spin_unlock() of the task that goes to sleep is the RELEASE >- CPU2: the spin_lock() of the waker is the ACQUIRE >- CPU2: smp_mb__before_atomic inside wake_q_add() is the RELEASE >- CPU3: smp_mb__after_spinlock() inside try_to_wake_up() is the ACQUIRE > >Signed-off-by: Manfred Spraul >Cc: Waiman Long >Cc: Davidlohr Bueso Without considering the smp_store_release() in __pipelined_op(), feel free to add my: Reviewed-by: Davidlohr Bueso >--- > ipc/mqueue.c | 32 +++++++++++++++++++++----------- > 1 file changed, 21 insertions(+), 11 deletions(-) > >diff --git a/ipc/mqueue.c b/ipc/mqueue.c >index be48c0ba92f7..b80574822f0a 100644 >--- a/ipc/mqueue.c >+++ b/ipc/mqueue.c >@@ -646,18 +646,26 @@ static int wq_sleep(struct mqueue_inode_info *info, int sr, > wq_add(info, sr, ewp); > > for (;;) { >+ /* memory barrier not required, we hold info->lock */ > __set_current_state(TASK_INTERRUPTIBLE); > > spin_unlock(&info->lock); > time = schedule_hrtimeout_range_clock(timeout, 0, > HRTIMER_MODE_ABS, CLOCK_REALTIME); > >- if (ewp->state == STATE_READY) { >+ if (READ_ONCE(ewp->state) == STATE_READY) { >+ /* >+ * Pairs, together with READ_ONCE(), with >+ * the barrier in __pipelined_op(). >+ */ >+ smp_acquire__after_ctrl_dep(); > retval = 0; > goto out; > } > spin_lock(&info->lock); >- if (ewp->state == STATE_READY) { >+ >+ /* we hold info->lock, so no memory barrier required */ >+ if (READ_ONCE(ewp->state) == STATE_READY) { > retval = 0; > goto out_unlock; > } >@@ -925,14 +933,12 @@ static inline void __pipelined_op(struct wake_q_head *wake_q, > list_del(&this->list); > wake_q_add(wake_q, this->task); > /* >- * Rely on the implicit cmpxchg barrier from wake_q_add such >- * that we can ensure that updating receiver->state is the last >- * write operation: As once set, the receiver can continue, >- * and if we don't have the reference count from the wake_q, >- * yet, at that point we can later have a use-after-free >- * condition and bogus wakeup. >+ * The barrier is required to ensure that the refcount increase >+ * inside wake_q_add() is completed before the state is updated. >+ * >+ * The barrier pairs with READ_ONCE()+smp_mb__after_ctrl_dep(). > */ >- this->state = STATE_READY; >+ smp_store_release(&this->state, STATE_READY); > } > > /* pipelined_send() - send a message directly to the task waiting in >@@ -1049,7 +1055,9 @@ static int do_mq_timedsend(mqd_t mqdes, const char __user *u_msg_ptr, > } else { > wait.task = current; > wait.msg = (void *) msg_ptr; >- wait.state = STATE_NONE; >+ >+ /* memory barrier not required, we hold info->lock */ >+ WRITE_ONCE(wait.state, STATE_NONE); > ret = wq_sleep(info, SEND, timeout, &wait); > /* > * wq_sleep must be called with info->lock held, and >@@ -1152,7 +1160,9 @@ static int do_mq_timedreceive(mqd_t mqdes, char __user *u_msg_ptr, > ret = -EAGAIN; > } else { > wait.task = current; >- wait.state = STATE_NONE; >+ >+ /* memory barrier not required, we hold info->lock */ >+ WRITE_ONCE(wait.state, STATE_NONE); > ret = wq_sleep(info, RECV, timeout, &wait); > msg_ptr = wait.msg; > } >-- >2.21.0 >