If add_to_waiters() fails we have a problem because the previous called
functions such as validate_lock_args() or validate_unlock_args() sets
specific lkb values that are set for a request, there exists no way back
to revert those changes. When there is a pending lock request the
original request arguments will be overwritten with unknown
consequences.

The good news are that I believe those cases that we fail in
add_to_waiters() can't happen or very unlikely to happen (only if the DLM
user does stupid API things), but if so we have the above mentioned
problem.

There are two conditions that will be removed here. The first one is the
-EINVAL case which contains is_overlap_unlock() or (is_overlap_cancel()
and mstype == DLM_MSG_CANCEL).

The is_overlap_unlock() is missing for the normal UNLOCK case which is
moved to validate_unlock_args(). The is_overlap_cancel() already happens
in validate_unlock_args() when DLM_LKF_CANCEL is set. In case of
validate_lock_args() we check on is_overlap() when it is not a new request,
on a new request the lkb is always new and does not have those values set.

The -EBUSY check can't happen in case as for non new lock requests (when
DLM_LKF_CONVERT is set) we already check in validate_lock_args() for
lkb_wait_type and is_overlap(). Then there is only
validate_unlock_args() that will never hit the default case because
dlm_unlock() will produce DLM_MSG_UNLOCK and DLM_MSG_CANCEL messages.

Signed-off-by: Alexander Aring <aahri...@redhat.com>
---
 fs/dlm/lock.c | 43 ++++++++++++++-----------------------------
 1 file changed, 14 insertions(+), 29 deletions(-)

diff --git a/fs/dlm/lock.c b/fs/dlm/lock.c
index 121d2976986b..8cb5a537bfd3 100644
--- a/fs/dlm/lock.c
+++ b/fs/dlm/lock.c
@@ -1703,19 +1703,11 @@ static int msg_reply_type(int mstype)
 /* add/remove lkb from global waiters list of lkb's waiting for
    a reply from a remote node */
 
-static int add_to_waiters(struct dlm_lkb *lkb, int mstype, int to_nodeid)
+static void add_to_waiters(struct dlm_lkb *lkb, int mstype, int to_nodeid)
 {
        struct dlm_ls *ls = lkb->lkb_resource->res_ls;
-       int error = 0;
 
        spin_lock_bh(&ls->ls_waiters_lock);
-
-       if (is_overlap_unlock(lkb) ||
-           (is_overlap_cancel(lkb) && (mstype == DLM_MSG_CANCEL))) {
-               error = -EINVAL;
-               goto out;
-       }
-
        if (lkb->lkb_wait_type || is_overlap_cancel(lkb)) {
                switch (mstype) {
                case DLM_MSG_UNLOCK:
@@ -1725,7 +1717,11 @@ static int add_to_waiters(struct dlm_lkb *lkb, int 
mstype, int to_nodeid)
                        set_bit(DLM_IFL_OVERLAP_CANCEL_BIT, &lkb->lkb_iflags);
                        break;
                default:
-                       error = -EBUSY;
+                       /* should never happen as validate_lock_args() checks
+                        * on lkb_wait_type and validate_unlock_args() only
+                        * creates UNLOCK or CANCEL messages.
+                        */
+                       WARN_ON_ONCE(1);
                        goto out;
                }
                lkb->lkb_wait_count++;
@@ -1747,12 +1743,7 @@ static int add_to_waiters(struct dlm_lkb *lkb, int 
mstype, int to_nodeid)
        hold_lkb(lkb);
        list_add(&lkb->lkb_wait_reply, &ls->ls_waiters);
  out:
-       if (error)
-               log_error(ls, "addwait error %x %d flags %x %d %d %s",
-                         lkb->lkb_id, error, dlm_iflags_val(lkb), mstype,
-                         lkb->lkb_wait_type, lkb->lkb_resource->res_name);
        spin_unlock_bh(&ls->ls_waiters_lock);
-       return error;
 }
 
 /* We clear the RESEND flag because we might be taking an lkb off the waiters
@@ -2926,13 +2917,16 @@ static int validate_unlock_args(struct dlm_lkb *lkb, 
struct dlm_args *args)
                goto out;
        }
 
+       if (is_overlap_unlock(lkb))
+               goto out;
+
        /* cancel not allowed with another cancel/unlock in progress */
 
        if (args->flags & DLM_LKF_CANCEL) {
                if (lkb->lkb_exflags & DLM_LKF_CANCEL)
                        goto out;
 
-               if (is_overlap(lkb))
+               if (is_overlap_cancel(lkb))
                        goto out;
 
                if (test_bit(DLM_IFL_RESEND_BIT, &lkb->lkb_iflags)) {
@@ -2970,9 +2964,6 @@ static int validate_unlock_args(struct dlm_lkb *lkb, 
struct dlm_args *args)
                if (lkb->lkb_exflags & DLM_LKF_FORCEUNLOCK)
                        goto out;
 
-               if (is_overlap_unlock(lkb))
-                       goto out;
-
                if (test_bit(DLM_IFL_RESEND_BIT, &lkb->lkb_iflags)) {
                        set_bit(DLM_IFL_OVERLAP_UNLOCK_BIT, &lkb->lkb_iflags);
                        rv = -EBUSY;
@@ -3608,10 +3599,7 @@ static int send_common(struct dlm_rsb *r, struct dlm_lkb 
*lkb, int mstype)
 
        to_nodeid = r->res_nodeid;
 
-       error = add_to_waiters(lkb, mstype, to_nodeid);
-       if (error)
-               return error;
-
+       add_to_waiters(lkb, mstype, to_nodeid);
        error = create_message(r, lkb, to_nodeid, mstype, &ms, &mh);
        if (error)
                goto fail;
@@ -3714,10 +3702,7 @@ static int send_lookup(struct dlm_rsb *r, struct dlm_lkb 
*lkb)
 
        to_nodeid = dlm_dir_nodeid(r);
 
-       error = add_to_waiters(lkb, DLM_MSG_LOOKUP, to_nodeid);
-       if (error)
-               return error;
-
+       add_to_waiters(lkb, DLM_MSG_LOOKUP, to_nodeid);
        error = create_message(r, NULL, to_nodeid, DLM_MSG_LOOKUP, &ms, &mh);
        if (error)
                goto fail;
@@ -6342,8 +6327,8 @@ int dlm_debug_add_lkb_to_waiters(struct dlm_ls *ls, 
uint32_t lkb_id,
        if (error)
                return error;
 
-       error = add_to_waiters(lkb, mstype, to_nodeid);
+       add_to_waiters(lkb, mstype, to_nodeid);
        dlm_put_lkb(lkb);
-       return error;
+       return 0;
 }
 
-- 
2.43.0


Reply via email to