]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
rgw: RGWCoroutine::call(nullptr) sets retcode=0 29856/head
authorCasey Bodley <cbodley@redhat.com>
Fri, 23 Aug 2019 17:45:04 +0000 (13:45 -0400)
committerCasey Bodley <cbodley@redhat.com>
Fri, 23 Aug 2019 17:45:06 +0000 (13:45 -0400)
callers generally expect 'yield call(...);' to set retcode with the
result of the given coroutine. it's valid to call() a nullptr, but
that's not always clear at the call site - for example, this critical
piece of code in RGWBucketSyncSingleEntryCR::operate():

      if (sync_status == 0) {
        /* update marker */
        set_status() << "calling marker_tracker->finish(" << entry_marker << ")";
        yield call(marker_tracker->finish(entry_marker));
        sync_status = retcode;
      }

marker_tracker->finish() only returns a coroutine when it needs to flush
the marker; otherwise it returns a nullptr. as a result, 'retcode' may
not be assigned as expected by the call(), and a previous value is
mistakenly returned up the stack

Fixes: https://tracker.ceph.com/issues/41412
Signed-off-by: Casey Bodley <cbodley@redhat.com>
src/rgw/rgw_coroutine.cc

index cc75b17d705063fd188db935370cc8275907f92d..43c1c347910d3c83f0c443ebdab669f0323ffe38 100644 (file)
@@ -875,7 +875,12 @@ void RGWCoroutinesManagerRegistry::dump(Formatter *f) const {
 
 void RGWCoroutine::call(RGWCoroutine *op)
 {
-  stack->call(op);
+  if (op) {
+    stack->call(op);
+  } else {
+    // the call()er expects this to set a retcode
+    retcode = 0;
+  }
 }
 
 RGWCoroutinesStack *RGWCoroutine::spawn(RGWCoroutine *op, bool wait)