summaryrefslogtreecommitdiffstats
path: root/utils/gssd
diff options
context:
space:
mode:
authorkwc@citi.umich.edu <kwc@citi.umich.edu>2006-07-03 18:34:27 -0400
committerNeil Brown <neilb@suse.de>2006-07-04 10:27:15 +1000
commit3da69ce5c4fac5677e91aa20e60750ab8de2ab97 (patch)
treeec5e42ab00eb7257b0490750031b9005065da47b /utils/gssd
parent0b2a5b574c7ffd99aa3226d36e1d261826405625 (diff)
downloadnfs-utils-3da69ce5c4fac5677e91aa20e60750ab8de2ab97.tar.gz
nfs-utils-3da69ce5c4fac5677e91aa20e60750ab8de2ab97.tar.xz
nfs-utils-3da69ce5c4fac5677e91aa20e60750ab8de2ab97.zip
Clean up the printerr() logging function.
Signed-off-by: Kevin Coffman <kwc@citi.umich.edu> Update the printerr() function to: 1) Determine whether we'll print the message before going to all the work of formatting it. 2) Don't just toss away messages that are too long for the buffer. Print what we can and give an indication of the truncation with "..." at the end. 3) Use a single buffer rather than two. 4) Messages either go to syslog (with level ERR) or stderr. Don't send some messages to syslog level DEBUG.
Diffstat (limited to 'utils/gssd')
-rw-r--r--utils/gssd/err_util.c61
1 files changed, 31 insertions, 30 deletions
diff --git a/utils/gssd/err_util.c b/utils/gssd/err_util.c
index ca9b028..f331432 100644
--- a/utils/gssd/err_util.c
+++ b/utils/gssd/err_util.c
@@ -38,7 +38,6 @@ static int verbosity = 0;
static int fg = 0;
static char message_buf[500];
-static char tmp_buf[500];
void initerr(char *progname, int set_verbosity, int set_fg)
{
@@ -48,45 +47,47 @@ void initerr(char *progname, int set_verbosity, int set_fg)
openlog(progname, LOG_PID, LOG_DAEMON);
}
+
void printerr(int priority, char *format, ...)
{
va_list args;
int ret;
+ int buf_used, buf_available;
+ char *buf;
+
+ /* Don't bother formatting a message we're never going to print! */
+ if (priority > verbosity)
+ return;
+
+ buf_used = strlen(message_buf);
+ /* subtract 4 to leave room for "...\n" if necessary */
+ buf_available = sizeof(message_buf) - buf_used - 4;
+ buf = message_buf + buf_used;
- /* aggregate lines: only print buffer when we get to the end of a
- * line or run out of space: */
+ /*
+ * Aggregate lines: only print buffer when we get to the
+ * end of a line or run out of space
+ */
va_start(args, format);
- ret = vsnprintf(tmp_buf, sizeof(tmp_buf), format, args);
+ ret = vsnprintf(buf, buf_available, format, args);
va_end(args);
- if ((ret < 0) || (ret >= sizeof(tmp_buf)))
- goto output;
- if (strlen(tmp_buf) + strlen(message_buf) + 1 > sizeof(message_buf))
- goto output;
- strcat(message_buf, tmp_buf);
- if (tmp_buf[strlen(tmp_buf) - 1] == '\n')
- goto output;
+
+ if (ret < 0)
+ goto printit;
+ if (ret >= buf_available) {
+ /* Indicate we're truncating */
+ strcat(message_buf, "...\n");
+ goto printit;
+ }
+ if (message_buf[strlen(message_buf) - 1] == '\n')
+ goto printit;
return;
-output:
- priority -= verbosity;
- if (priority < 0)
- priority = 0;
+printit:
if (fg) {
- if (priority == 0)
- fprintf(stderr, "%s", message_buf);
+ fprintf(stderr, "%s", message_buf);
} else {
- int sys_pri;
- switch (priority) {
- case 0:
- sys_pri = LOG_ERR;
- break;
- case 1:
- sys_pri = LOG_DEBUG;
- break;
- default:
- goto out;
- }
- syslog(sys_pri, "%s", message_buf);
+ syslog(LOG_ERR, "%s", message_buf);
}
-out:
+ /* reset the buffer */
memset(message_buf, 0, sizeof(message_buf));
}