2020-11-04 22:15:53 +00:00
|
|
|
From 0c300716226027d75afa2b9e5f052fa4868204ae Mon Sep 17 00:00:00 2001
|
2020-10-15 11:47:25 +00:00
|
|
|
From: Chris Leech <cleech@redhat.com>
|
|
|
|
Date: Wed, 5 Jun 2019 09:08:39 -0700
|
2020-11-04 22:15:53 +00:00
|
|
|
Subject: [PATCH] Coverity scan fixes
|
2020-10-15 11:47:25 +00:00
|
|
|
|
|
|
|
---
|
|
|
|
iscsiuio/src/unix/libs/qedi.c | 2 +-
|
|
|
|
iscsiuio/src/unix/main.c | 3 +++
|
|
|
|
libopeniscsiusr/idbm.c | 11 +++++------
|
|
|
|
usr/idbm.c | 10 ++++------
|
|
|
|
usr/iscsid.c | 2 +-
|
|
|
|
5 files changed, 14 insertions(+), 14 deletions(-)
|
|
|
|
|
|
|
|
diff --git a/iscsiuio/src/unix/libs/qedi.c b/iscsiuio/src/unix/libs/qedi.c
|
|
|
|
index 3414cb5..a359700 100644
|
|
|
|
--- a/iscsiuio/src/unix/libs/qedi.c
|
|
|
|
+++ b/iscsiuio/src/unix/libs/qedi.c
|
|
|
|
@@ -1023,7 +1023,7 @@ static int qedi_read(nic_t *nic, packet_t *pkt)
|
|
|
|
|
|
|
|
LOG_DEBUG(PFX "%s:hw_prod %d bd_prod %d, rx_pkt_idx %d, rxlen %d",
|
|
|
|
nic->log_name, hw_prod, bd_prod, rx_bd->rx_pkt_index, len);
|
|
|
|
- LOG_DEBUG(PFX "%s: sw_con %d bd_cons %d num BD %d",
|
|
|
|
+ LOG_DEBUG(PFX "%s: sw_con %d bd_cons %d num BD %lu",
|
|
|
|
nic->log_name, sw_cons, bd_cons, QEDI_NUM_RX_BD);
|
|
|
|
|
|
|
|
if (bd_cons != bd_prod) {
|
|
|
|
diff --git a/iscsiuio/src/unix/main.c b/iscsiuio/src/unix/main.c
|
|
|
|
index 0c9ad49..f83f305 100644
|
|
|
|
--- a/iscsiuio/src/unix/main.c
|
|
|
|
+++ b/iscsiuio/src/unix/main.c
|
|
|
|
@@ -391,6 +391,9 @@ int main(int argc, char *argv[])
|
|
|
|
sigaddset(&set, SIGTERM);
|
|
|
|
sigaddset(&set, SIGUSR1);
|
|
|
|
rc = pthread_sigmask(SIG_SETMASK, &set, NULL);
|
|
|
|
+ if (rc != 0) {
|
|
|
|
+ LOG_ERR("Failed to set thread signal mask");
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/* Spin off the signal handling thread */
|
|
|
|
pthread_attr_init(&attr);
|
|
|
|
diff --git a/libopeniscsiusr/idbm.c b/libopeniscsiusr/idbm.c
|
|
|
|
index 7bc2381..7d4c338 100644
|
|
|
|
--- a/libopeniscsiusr/idbm.c
|
|
|
|
+++ b/libopeniscsiusr/idbm.c
|
|
|
|
@@ -321,12 +321,11 @@ int _idbm_lock(struct iscsi_context *ctx)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (access(LOCK_DIR, F_OK) != 0) {
|
|
|
|
- if (mkdir(LOCK_DIR, 0660) != 0) {
|
|
|
|
- _error(ctx, "Could not open %s: %d %s", LOCK_DIR, errno,
|
|
|
|
- _strerror(errno, strerr_buff));
|
|
|
|
- return LIBISCSI_ERR_IDBM;
|
|
|
|
- }
|
|
|
|
+ if (((mkdir(LOCK_DIR, 0660) != 0) && (errno != EEXIST)) ||
|
|
|
|
+ (access(LOCK_DIR, F_OK) != 0)) {
|
|
|
|
+ _error(ctx, "Could not open %s: %d %s", LOCK_DIR, errno,
|
|
|
|
+ _strerror(errno, strerr_buff));
|
|
|
|
+ return LIBISCSI_ERR_IDBM;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = open(LOCK_FILE, O_RDWR | O_CREAT, 0666);
|
|
|
|
diff --git a/usr/idbm.c b/usr/idbm.c
|
2020-11-04 22:15:53 +00:00
|
|
|
index 2498a03..a4bc745 100644
|
2020-10-15 11:47:25 +00:00
|
|
|
--- a/usr/idbm.c
|
|
|
|
+++ b/usr/idbm.c
|
2020-11-04 22:15:53 +00:00
|
|
|
@@ -1439,12 +1439,10 @@ int idbm_lock(void)
|
2020-10-15 11:47:25 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (access(LOCK_DIR, F_OK) != 0) {
|
|
|
|
- if (mkdir(LOCK_DIR, 0660) != 0) {
|
|
|
|
- log_error("Could not open %s: %s", LOCK_DIR,
|
|
|
|
- strerror(errno));
|
|
|
|
- return ISCSI_ERR_IDBM;
|
|
|
|
- }
|
|
|
|
+ if (((mkdir(LOCK_DIR, 0660) != 0) && (errno != EEXIST)) ||
|
|
|
|
+ (access(LOCK_DIR, F_OK) != 0)) {
|
|
|
|
+ log_error("Could not open %s: %s", LOCK_DIR, strerror(errno));
|
|
|
|
+ return ISCSI_ERR_IDBM;
|
|
|
|
}
|
|
|
|
|
|
|
|
fd = open(LOCK_FILE, O_RDWR | O_CREAT, 0666);
|
|
|
|
diff --git a/usr/iscsid.c b/usr/iscsid.c
|
2020-11-04 22:15:53 +00:00
|
|
|
index e501498..dd94a16 100644
|
2020-10-15 11:47:25 +00:00
|
|
|
--- a/usr/iscsid.c
|
|
|
|
+++ b/usr/iscsid.c
|
2020-11-04 22:15:53 +00:00
|
|
|
@@ -495,8 +495,8 @@ int main(int argc, char *argv[])
|
2020-10-15 11:47:25 +00:00
|
|
|
log_close(log_pid);
|
|
|
|
exit(ISCSI_ERR);
|
|
|
|
}
|
|
|
|
+ close(fd);
|
|
|
|
}
|
|
|
|
- close(fd);
|
|
|
|
|
|
|
|
if ((control_fd = ipc->ctldev_open()) < 0) {
|
|
|
|
log_close(log_pid);
|
|
|
|
--
|
2020-11-04 22:15:53 +00:00
|
|
|
2.26.2
|
2020-10-15 11:47:25 +00:00
|
|
|
|