File xfsprogs-libfrog-fix-missing-error-checking-in-workqueue-code.patch of Package xfsprogs.35286
From bfd9b38b1ebfeef7a278b4b4c861fa1452a32bbe Mon Sep 17 00:00:00 2001
From: "Darrick J. Wong" <darrick.wong@oracle.com>
Date: Tue, 15 Oct 2019 12:54:35 -0400
Subject: [PATCH] libfrog: fix missing error checking in workqueue code
Git-commit: bfd9b38b1ebfeef7a278b4b4c861fa1452a32bbe
Patch-mainline: v5.3.0-rc2
References: bsc#1227232
Fix all the places in the workqueue code where we fail to check return
values and blindly keep going when we shouldn't.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Eric Sandeen <sandeen@sandeen.net>
Acked-by: Anthony Iliopoulos <ailiop@suse.com>
---
libfrog/workqueue.c | 32 ++++++++++++++++++++++++++++----
1 file changed, 28 insertions(+), 4 deletions(-)
Index: xfsprogs-4.15.0/libfrog/workqueue.c
===================================================================
--- xfsprogs-4.15.0.orig/libfrog/workqueue.c
+++ xfsprogs-4.15.0/libfrog/workqueue.c
@@ -84,12 +84,20 @@ workqueue_create(
int err = 0;
memset(wq, 0, sizeof(*wq));
- pthread_cond_init(&wq->wakeup, NULL);
- pthread_mutex_init(&wq->lock, NULL);
+ err = pthread_cond_init(&wq->wakeup, NULL);
+ if (err)
+ return err;
+ err = pthread_mutex_init(&wq->lock, NULL);
+ if (err)
+ goto out_cond;
wq->wq_ctx = wq_ctx;
wq->thread_count = nr_workers;
wq->threads = malloc(nr_workers * sizeof(pthread_t));
+ if (!wq->threads) {
+ err = errno;
+ goto out_mutex;
+ }
wq->terminate = false;
for (i = 0; i < nr_workers; i++) {
@@ -99,9 +107,19 @@ workqueue_create(
break;
}
+ /*
+ * If we encounter errors here, we have to signal and then wait for all
+ * the threads that may have been started running before we can destroy
+ * the workqueue.
+ */
if (err)
workqueue_destroy(wq);
return err;
+out_mutex:
+ pthread_mutex_destroy(&wq->lock);
+out_cond:
+ pthread_cond_destroy(&wq->wakeup);
+ return err;
}
/*
@@ -116,6 +134,7 @@ workqueue_add(
void *arg)
{
struct workqueue_item *wi;
+ int ret;
if (wq->thread_count == 0) {
func(wq, index, arg);
@@ -135,9 +154,11 @@ workqueue_add(
/* Now queue the new work structure to the work queue. */
pthread_mutex_lock(&wq->lock);
if (wq->next_item == NULL) {
- wq->next_item = wi;
assert(wq->item_count == 0);
- pthread_cond_signal(&wq->wakeup);
+ ret = pthread_cond_signal(&wq->wakeup);
+ if (ret)
+ goto out_item;
+ wq->next_item = wi;
} else {
wq->last_item->next = wi;
}
@@ -146,6 +167,9 @@ workqueue_add(
pthread_mutex_unlock(&wq->lock);
return 0;
+out_item:
+ free(wi);
+ return ret;
}
/*