Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Potential errors(e.g., deadlock) due to the incorrect lock usage #207

Open
jenny-cheung opened this issue Jul 23, 2021 · 4 comments
Open

Comments

@jenny-cheung
Copy link

Hi, developers, thank you for your checking. The lock &gdb->client_mutex may be acquired twice, which can lead to deadlock? Also, it seems the lock &gdb->client_mutex is not released in the thread correctly because there is no cen64_mutex_unlock(&gdb->client_mutex); statement.

cen64_mutex_lock(&gdb->client_mutex);

cen64_mutex_lock(&gdb->client_mutex);

The relevant code is shown:

CEN64_THREAD_RETURN_TYPE gdb_thread(void *opaque) {
  cen64_thread_setname(NULL, "gdb");
  struct gdb *gdb = (struct gdb *) opaque;

  cen64_mutex_lock(&gdb->client_mutex); // acquire the lock first time

  // wait until first breakpoint is hit before entering loop
  if (gdb->flags & GDB_FLAGS_INITIAL) {
    cen64_cv_wait(&gdb->client_semaphore, &gdb->client_mutex);
  } else {
    cen64_mutex_lock(&gdb->client_mutex); // acquire the lock second time
  }

 ...;
  return CEN64_THREAD_RETURN_VAL;
}
cen64_cold bool gdb_init(struct gdb* gdb, struct cen64_device* device, const char* host) {
  ...;

  if (cen64_thread_create(&gdb->thread, gdb_thread, gdb)) { // thread call site
    cen64_mutex_destroy(&gdb->client_mutex);
    cen64_cv_destroy(&gdb->client_semaphore);
    printf("Failed to create gdb thread.\n");
    return false;
  }

  return true;
}

@lambertjamesd
Copy link
Contributor

Have you been able to actually get a deadlock or just pointing out a potential lock based on looking at the code?

@jenny-cheung
Copy link
Author

@lambertjamesd Thank you for your reply. Actually, I do not trigger the deadlock in runtime but I use a static code analysis tool that warns of this case.

@lambertjamesd
Copy link
Contributor

I wrote that code initially. I don't remember why I wrote it that way. I'll see if I have some time tonight to fix it.

@jenny-cheung
Copy link
Author

Thanks~

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants