Blame SOURCES/0003-idbm_rec_write-seperate-old-and-new-style-writes.patch

9a267a
From cfd9fc81e11c462b682ead4e05721772b20f7546 Mon Sep 17 00:00:00 2001
62f653
From: Chris Leech <cleech@redhat.com>
62f653
Date: Tue, 13 Aug 2013 11:34:31 -0700
221d9a
Subject: [PATCH] idbm_rec_write, seperate old and new style writes
62f653
62f653
Duplicates a small bit of code, but easier to understand and extened.
62f653
---
221d9a
 usr/idbm.c | 129 +++++++++++++++++++++++++++++++++++------------------
221d9a
 1 file changed, 86 insertions(+), 43 deletions(-)
62f653
62f653
diff --git a/usr/idbm.c b/usr/idbm.c
9a267a
index e6ede85..bc51388 100644
62f653
--- a/usr/idbm.c
62f653
+++ b/usr/idbm.c
9a267a
@@ -2130,12 +2130,7 @@ mkdir_portal:
62f653
 	return f;
62f653
 }
62f653
 
221d9a
-/*
221d9a
- * When the disable_lock param is true, the idbm_lock/idbm_unlock needs
221d9a
- * to be holt by the caller, this will avoid overwriting each other in
221d9a
- * case of updating(read-modify-write) the recs in parallel.
221d9a
- */
221d9a
-static int idbm_rec_write(node_rec_t *rec, bool disable_lock)
62f653
+static int idbm_rec_write_new(node_rec_t *rec)
62f653
 {
62f653
 	struct stat statb;
62f653
 	FILE *f;
9a267a
@@ -2148,39 +2143,8 @@ static int idbm_rec_write(node_rec_t *rec, bool disable_lock)
62f653
 		return ISCSI_ERR_NOMEM;
62f653
 	}
221d9a
 
62f653
-	snprintf(portal, PATH_MAX, "%s", NODE_CONFIG_DIR);
62f653
-	if (access(portal, F_OK) != 0) {
62f653
-		if (mkdir(portal, 0660) != 0) {
62f653
-			log_error("Could not make %s: %s", portal,
62f653
-				  strerror(errno));
62f653
-			rc = ISCSI_ERR_IDBM;
62f653
-			goto free_portal;
62f653
-		}
62f653
-	}
62f653
-
62f653
-	snprintf(portal, PATH_MAX, "%s/%s", NODE_CONFIG_DIR, rec->name);
62f653
-	if (access(portal, F_OK) != 0) {
62f653
-		if (mkdir(portal, 0660) != 0) {
62f653
-			log_error("Could not make %s: %s", portal,
62f653
-				  strerror(errno));
62f653
-			rc = ISCSI_ERR_IDBM;
62f653
-			goto free_portal;
62f653
-		}
62f653
-	}
62f653
-
62f653
 	snprintf(portal, PATH_MAX, "%s/%s/%s,%d", NODE_CONFIG_DIR,
62f653
 		 rec->name, rec->conn[0].address, rec->conn[0].port);
62f653
-	log_debug(5, "Looking for config file %s", portal);
62f653
-
221d9a
-	if (!disable_lock) {
221d9a
-		rc = idbm_lock();
221d9a
-		if (rc)
221d9a
-			goto free_portal;
221d9a
-	}
62f653
-
62f653
-	if (rec->tpgt == PORTAL_GROUP_TAG_UNKNOWN)
62f653
-		/* drop down to old style portal as config */
62f653
-		goto open_conf;
62f653
 
62f653
 	rc = stat(portal, &statb);
62f653
 	if (rc) {
9a267a
@@ -2201,11 +2165,11 @@ static int idbm_rec_write(node_rec_t *rec, bool disable_lock)
62f653
 			log_error("Could not convert %s: %s", portal,
62f653
 				  strerror(errno));
62f653
 			rc = ISCSI_ERR_IDBM;
62f653
-			goto unlock;
62f653
+			goto free_portal;
62f653
 		}
62f653
 	} else {
62f653
 		rc = ISCSI_ERR_INVAL;
62f653
-		goto unlock;
62f653
+		goto free_portal;
62f653
 	}
62f653
 
62f653
 mkdir_portal:
9a267a
@@ -2216,24 +2180,103 @@ mkdir_portal:
62f653
 			log_error("Could not make dir %s: %s",
62f653
 				  portal, strerror(errno));
62f653
 			rc = ISCSI_ERR_IDBM;
62f653
-			goto unlock;
62f653
+			goto free_portal;
62f653
 		}
62f653
 	}
62f653
 
62f653
 	snprintf(portal, PATH_MAX, "%s/%s/%s,%d,%d/%s", NODE_CONFIG_DIR,
62f653
 		 rec->name, rec->conn[0].address, rec->conn[0].port, rec->tpgt,
62f653
 		 rec->iface.name);
62f653
-open_conf:
221d9a
+
62f653
 	f = fopen(portal, "w");
62f653
 	if (!f) {
62f653
 		log_error("Could not open %s: %s", portal, strerror(errno));
62f653
 		rc = ISCSI_ERR_IDBM;
62f653
-		goto unlock;
62f653
+		goto free_portal;
62f653
 	}
62f653
 
62f653
 	idbm_print(IDBM_PRINT_TYPE_NODE, rec, 1, f);
62f653
 	fclose(f);
62f653
-unlock:
62f653
+free_portal:
62f653
+	free(portal);
62f653
+	return rc;
62f653
+}
62f653
+
62f653
+static int idbm_rec_write_old(node_rec_t *rec)
62f653
+{
62f653
+	FILE *f;
62f653
+	char *portal;
62f653
+	int rc = 0;
62f653
+
62f653
+	portal = malloc(PATH_MAX);
62f653
+	if (!portal) {
62f653
+		log_error("Could not alloc portal");
62f653
+		return ISCSI_ERR_NOMEM;
62f653
+	}
62f653
+	snprintf(portal, PATH_MAX, "%s/%s/%s,%d", NODE_CONFIG_DIR,
62f653
+		 rec->name, rec->conn[0].address, rec->conn[0].port);
62f653
+
62f653
+	f = fopen(portal, "w");
62f653
+	if (!f) {
62f653
+		log_error("Could not open %s: %sd", portal, strerror(errno));
62f653
+		rc = ISCSI_ERR_IDBM;
62f653
+		goto free_portal;
62f653
+	}
62f653
+	idbm_print(IDBM_PRINT_TYPE_NODE, rec, 1, f);
62f653
+	fclose(f);
62f653
+free_portal:
62f653
+	free(portal);
62f653
+	return rc;
62f653
+}
62f653
+
221d9a
+/*
221d9a
+ * When the disable_lock param is true, the idbm_lock/idbm_unlock needs
221d9a
+ * to be holt by the caller, this will avoid overwriting each other in
221d9a
+ * case of updating(read-modify-write) the recs in parallel.
221d9a
+ */
221d9a
+static int idbm_rec_write(node_rec_t *rec, bool disable_lock)
62f653
+{
62f653
+	char *portal;
62f653
+	int rc = 0;
62f653
+
62f653
+	portal = malloc(PATH_MAX);
62f653
+	if (!portal) {
62f653
+		log_error("Could not alloc portal");
62f653
+		return ISCSI_ERR_NOMEM;
62f653
+	}
62f653
+
62f653
+	snprintf(portal, PATH_MAX, "%s", NODE_CONFIG_DIR);
62f653
+	if (access(portal, F_OK) != 0) {
62f653
+		if (mkdir(portal, 0660) != 0) {
62f653
+			log_error("Could not make %s: %s", portal,
62f653
+				  strerror(errno));
62f653
+			rc = ISCSI_ERR_IDBM;
62f653
+			goto free_portal;
62f653
+		}
62f653
+	}
62f653
+
62f653
+	snprintf(portal, PATH_MAX, "%s/%s", NODE_CONFIG_DIR, rec->name);
62f653
+	if (access(portal, F_OK) != 0) {
62f653
+		if (mkdir(portal, 0660) != 0) {
62f653
+			log_error("Could not make %s: %s", portal,
62f653
+				  strerror(errno));
62f653
+			rc = ISCSI_ERR_IDBM;
62f653
+			goto free_portal;
62f653
+		}
62f653
+	}
62f653
+
221d9a
+	if (!disable_lock) {
221d9a
+		rc = idbm_lock();
221d9a
+		if (rc)
221d9a
+			goto free_portal;
221d9a
+	}
62f653
+
62f653
+	if (rec->tpgt == PORTAL_GROUP_TAG_UNKNOWN)
62f653
+		/* old style portal as config */
62f653
+		rc = idbm_rec_write_old(rec);
62f653
+	else
62f653
+		rc = idbm_rec_write_new(rec);
62f653
+
221d9a
 	if (!disable_lock)
221d9a
 		idbm_unlock();
62f653
 free_portal:
62f653
-- 
9a267a
2.26.2
62f653