summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTony Asleson <tasleson@redhat.com>2013-09-26 12:19:18 -0500
committerTony Asleson <tasleson@redhat.com>2013-11-19 14:40:42 -0600
commitfe5b538c14c47e2e206d13c17f0225e39470d720 (patch)
treea4a62c98557eb970d6d9d2b66da4db67b9f4c19c
parent0c7a7d4d8433965313120254b68199525871b6a6 (diff)
downloadlvm2-fe5b538c14c47e2e206d13c17f0225e39470d720.tar.gz
lvm2app: Reset buffer after retrieving error message
The error buffer will stack error messages which is fine. However, once you retrieve the error messages it doesn't make sense to keep appending for each additional error message when running in the context of a library call. This patch clears and resets the buffer after the user retrieves the error message. Signed-off-by: Tony Asleson <tasleson@redhat.com>
-rw-r--r--lib/log/log.c7
-rw-r--r--lib/log/lvm-logging.h1
-rw-r--r--liblvm/lvm_base.c9
-rw-r--r--python/liblvm.c5
4 files changed, 20 insertions, 2 deletions
diff --git a/lib/log/log.c b/lib/log/log.c
index e0c1e730c..1af961663 100644
--- a/lib/log/log.c
+++ b/lib/log/log.c
@@ -170,6 +170,13 @@ const char *stored_errmsg(void)
return _lvm_errmsg ? : "";
}
+const char *stored_errmsg_with_clear(void)
+{
+ const char *rc = strdup(stored_errmsg());
+ reset_lvm_errno(1);
+ return rc;
+}
+
static struct dm_hash_table *_duplicated = NULL;
void reset_log_duplicated(void) {
diff --git a/lib/log/lvm-logging.h b/lib/log/lvm-logging.h
index 52cd89539..145e2a1c9 100644
--- a/lib/log/lvm-logging.h
+++ b/lib/log/lvm-logging.h
@@ -55,6 +55,7 @@ int error_message_produced(void);
void reset_lvm_errno(int store_errmsg);
int stored_errno(void);
const char *stored_errmsg(void);
+const char *stored_errmsg_with_clear(void);
/* Suppress messages to stdout/stderr (1) or everywhere (2) */
/* Returns previous setting */
diff --git a/liblvm/lvm_base.c b/liblvm/lvm_base.c
index 139cc9758..d69417327 100644
--- a/liblvm/lvm_base.c
+++ b/liblvm/lvm_base.c
@@ -115,7 +115,14 @@ int lvm_errno(lvm_t libh)
const char *lvm_errmsg(lvm_t libh)
{
- return stored_errmsg();
+ const char *rc = NULL;
+ struct cmd_context *cmd = (struct cmd_context *)libh;
+ const char *msg = stored_errmsg_with_clear();
+ if (msg) {
+ rc = dm_pool_strdup(cmd->mem, msg);
+ free((void *)msg);
+ }
+ return rc;
}
const char *lvm_vgname_from_pvid(lvm_t libh, const char *pvid)
diff --git a/python/liblvm.c b/python/liblvm.c
index 330ef1423..6abd5ffd1 100644
--- a/python/liblvm.c
+++ b/python/liblvm.c
@@ -141,6 +141,7 @@ static lvobject *_create_py_lv(vgobject *parent, lv_t lv)
static PyObject *_liblvm_get_last_error(void)
{
PyObject *info;
+ const char *msg = NULL;
LVM_VALID(NULL);
@@ -148,7 +149,9 @@ static PyObject *_liblvm_get_last_error(void)
return NULL;
PyTuple_SetItem(info, 0, PyInt_FromLong((long) lvm_errno(_libh)));
- PyTuple_SetItem(info, 1, PyString_FromString(lvm_errmsg(_libh)));
+ msg = lvm_errmsg(_libh);
+ PyTuple_SetItem(info, 1, ((msg) ? PyString_FromString(msg) :
+ PyString_FromString("Memory error while retrieving error message")));
return info;
}