#include <sys/cdefs.h>
#if defined(LIBC_SCCS) && !defined(lint)
__RCSID("$NetBSD: fmtmsg.c,v 1.6 2014/09/18 13:58:20 christos Exp $");
#endif
#include <fmtmsg.h>
#include <paths.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
static unsigned int msgverb(const char *);
static const char * severity2str(int);
static int writeit(FILE *, unsigned int, const char *,
const char *, const char *, const char *,
const char *);
#define MM_VERBLABEL 0x01U
#define MM_VERBSEVERITY 0x02U
#define MM_VERBTEXT 0x04U
#define MM_VERBACTION 0x08U
#define MM_VERBTAG 0x10U
#define MM_VERBALL \
(MM_VERBLABEL | MM_VERBSEVERITY | MM_VERBTEXT | MM_VERBACTION | \
MM_VERBTAG)
static const struct keyword {
size_t len;
const char * const keyword;
} keywords[] = {
{ 5, "label" },
{ 8, "severity" },
{ 4, "text" },
{ 6, "action" },
{ 3, "tag" }
};
static const size_t nkeywords = sizeof (keywords) / sizeof (keywords[0]);
static unsigned int
msgverb(const char *str)
{
u_int i;
unsigned int result;
if (str == NULL)
return (MM_VERBALL);
result = 0;
while (*str != '\0') {
for (i = 0; i < nkeywords; i++) {
if (memcmp(str, keywords[i].keyword, keywords[i].len)
== 0 &&
(*(str + keywords[i].len) == ':' ||
*(str + keywords[i].len) == '\0'))
break;
}
if (i == nkeywords) {
result = MM_VERBALL;
break;
}
result |= (1 << i);
if (*(str += keywords[i].len) == ':')
str++;
}
if (result == 0)
result = MM_VERBALL;
return (result);
}
static const char severities[][8] = {
"",
"HALT",
"ERROR",
"WARNING",
"INFO"
};
static const size_t nseverities = sizeof (severities) / sizeof (severities[0]);
static const char *
severity2str(int severity)
{
const char *result;
if (severity >= 0 &&
(u_int) severity < nseverities)
result = severities[severity];
else
result = NULL;
return (result);
}
static int
writeit(FILE *stream, unsigned int which, const char *label,
const char *sevstr, const char *text, const char *action,
const char *tag)
{
int nwritten;
nwritten = fprintf(stream, "%s%s%s%s%s%s%s%s%s%s%s",
((which & MM_VERBLABEL) && label != MM_NULLLBL) ?
label : "",
((which & MM_VERBLABEL) && label != MM_NULLLBL) ?
": " : "",
(which & MM_VERBSEVERITY) ?
sevstr : "",
(which & MM_VERBSEVERITY) ?
": " : "",
((which & MM_VERBTEXT) && text != MM_NULLTXT) ?
text : "",
((which & MM_VERBLABEL) && label != MM_NULLLBL) ||
((which & MM_VERBSEVERITY)) ||
((which & MM_VERBTEXT) && text != MM_NULLTXT) ?
"\n" : "",
((which & MM_VERBACTION) && action != MM_NULLACT) ?
"TO FIX: " : "",
((which & MM_VERBACTION) && action != MM_NULLACT) ?
action : "",
((which & MM_VERBACTION) && label != MM_NULLACT) ?
" " : "",
((which & MM_VERBTAG) && tag != MM_NULLTAG) ?
tag : "",
((which & MM_VERBACTION) && action != MM_NULLACT) ||
((which & MM_VERBTAG) && tag != MM_NULLTAG) ?
"\n" : "");
return (nwritten);
}
int
fmtmsg(long classification, const char *label, int severity,
const char *text, const char *action, const char *tag)
{
FILE *console;
const char *p, *sevstr;
int result;
if (label != MM_NULLLBL) {
p = strchr(label, ':');
if (p == NULL || p - label > 10 || strlen(p + 1) > 14)
return (MM_NOTOK);
}
if ((sevstr = severity2str(severity)) == NULL)
return (MM_NOTOK);
result = 0;
if (classification & MM_PRINT) {
if (writeit(stderr, msgverb(getenv("MSGVERB")),
label, sevstr, text, action, tag) < 0)
result |= MM_NOMSG;
}
if (classification & MM_CONSOLE) {
if ((console = fopen(_PATH_CONSOLE, "we")) != NULL) {
if (writeit(console, MM_VERBALL,
label, sevstr, text, action, tag) < 0)
result |= MM_NOCON;
(void)fclose(console);
} else {
result |= MM_NOCON;
}
}
if (result == (MM_NOMSG | MM_NOCON))
result = MM_NOTOK;
return (result == 0 ? MM_OK : result);
}