Uploaded image for project: 'MariaDB Server'
  1. MariaDB Server
  2. MDEV-26558

A cyclic order on lock acquisitions (possibly resulting a deadlock)

Details

    Description

      Hi, developers, thank you for your checking. It seems there is a (potential) deadlock bug in the below code. The function extract_worker_thread_func is not thread-safe, because there is a cyclic acquisition order between the ctxt->mutex and entry->mutex.

      {color:#DE350B}extract_worker_thread_func(void *arg)
      {
      	
      	while (1) {
      		pthread_mutex_lock(ctxt->mutex);
      		...;
       
      		pthread_mutex_lock(&entry->mutex);  //ctxt->mutex-->entry->mutex
       
      		pthread_mutex_unlock(ctxt->mutex);
          ...;
      		
      		if (chunk.type == XB_CHUNK_TYPE_EOF) {
      			pthread_mutex_lock(ctxt->mutex); // entry->mutex-> ctxt->mutex
      			pthread_mutex_unlock(&entry->mutex);
      			my_hash_delete(ctxt->filehash, (uchar *) entry);
      			pthread_mutex_unlock(ctxt->mutex);
       
      			continue;
      		}
          ...;
      		pthread_mutex_unlock(&entry->mutex);
      	}
      }{color}
      

      https://github.com/MariaDB/server/blob/76f4a78ba2639b5abd01a88b24a3c509c11530ce/extra/mariabackup/xbstream.cc#L381-L478

      Attachments

        Activity

          Ryan Ryan created issue -
          Ryan Ryan made changes -
          Field Original Value New Value
          Description Hi, developers, thank you for your checking. It seems there is a (potential) deadlock bug in the below code. The function *extract_worker_thread_func* is not thread-safe, because there is a cyclic acquisition order between the *ctxt->mutex* and *entry->mutex*.

          {color:#DE350B}extract_worker_thread_func(void *arg)
          {

          while (1) {
          pthread_mutex_lock(ctxt->mutex);
          ...;

          pthread_mutex_lock(&entry->mutex); //ctxt->mutex-->entry->mutex

          pthread_mutex_unlock(ctxt->mutex);
              ...;

          if (chunk.type == XB_CHUNK_TYPE_EOF) {
          pthread_mutex_lock(ctxt->mutex); // entry->mutex-> ctxt->mutex
          pthread_mutex_unlock(&entry->mutex);
          my_hash_delete(ctxt->filehash, (uchar *) entry);
          pthread_mutex_unlock(ctxt->mutex);

          continue;
          }
              ...;
          pthread_mutex_unlock(&entry->mutex);
          }
          }{color}

          https://github.com/MariaDB/server/blob/76f4a78ba2639b5abd01a88b24a3c509c11530ce/extra/mariabackup/xbstream.cc#L381-L478
          Hi, developers, thank you for your checking. It seems there is a (potential) deadlock bug in the below code. The function *extract_worker_thread_func* is not thread-safe, because there is a cyclic acquisition order between the *ctxt->mutex* and *entry->mutex*.


          {code:java}
          {color:#DE350B}extract_worker_thread_func(void *arg)
          {

          while (1) {
          pthread_mutex_lock(ctxt->mutex);
          ...;

          pthread_mutex_lock(&entry->mutex); //ctxt->mutex-->entry->mutex

          pthread_mutex_unlock(ctxt->mutex);
              ...;

          if (chunk.type == XB_CHUNK_TYPE_EOF) {
          pthread_mutex_lock(ctxt->mutex); // entry->mutex-> ctxt->mutex
          pthread_mutex_unlock(&entry->mutex);
          my_hash_delete(ctxt->filehash, (uchar *) entry);
          pthread_mutex_unlock(ctxt->mutex);

          continue;
          }
              ...;
          pthread_mutex_unlock(&entry->mutex);
          }
          }{color}
          {code}


          https://github.com/MariaDB/server/blob/76f4a78ba2639b5abd01a88b24a3c509c11530ce/extra/mariabackup/xbstream.cc#L381-L478
          serg Sergei Golubchik made changes -
          Priority Blocker [ 1 ] Major [ 3 ]
          anel Anel Husakovic made changes -
          Assignee Vladislav Vaintroub [ wlad ]
          wlad Vladislav Vaintroub made changes -
          Assignee Vladislav Vaintroub [ wlad ] Alexander Barkov [ bar ]
          robertbindar Robert Bindar made changes -
          Assignee Alexander Barkov [ bar ] Robert Bindar [ robertbindar ]
          robertbindar Robert Bindar made changes -
          Fix Version/s 10.8.0 [ 26800 ]
          Fix Version/s 10.2.42 [ 26803 ]
          Fix Version/s 10.3.33 [ 26805 ]
          Fix Version/s 10.4.23 [ 26807 ]
          Fix Version/s 10.5.14 [ 26809 ]
          Fix Version/s 10.6.6 [ 26811 ]
          Fix Version/s 10.7.2 [ 26813 ]
          Resolution Fixed [ 1 ]
          Status Open [ 1 ] Closed [ 6 ]
          serg Sergei Golubchik made changes -
          Workflow MariaDB v3 [ 124869 ] MariaDB v4 [ 159668 ]

          People

            robertbindar Robert Bindar
            Ryan Ryan
            Votes:
            0 Vote for this issue
            Watchers:
            4 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved:

              Git Integration

                Error rendering 'com.xiplink.jira.git.jira_git_plugin:git-issue-webpanel'. Please contact your Jira administrators.