269 lines
5.7 KiB
C
269 lines
5.7 KiB
C
/*@-boundsread@*/
|
|
/** \ingroup rpmio
|
|
* \file rpmio/rpmlog.c
|
|
*/
|
|
|
|
#include "system.h"
|
|
#include <stdarg.h>
|
|
#include "rpmlog.h"
|
|
#include "debug.h"
|
|
|
|
#ifndef va_copy
|
|
# ifdef __va_copy
|
|
# define va_copy(DEST,SRC) __va_copy((DEST),(SRC))
|
|
# else
|
|
# ifdef HAVE_VA_LIST_AS_ARRAY
|
|
# define va_copy(DEST,SRC) (*(DEST) = *(SRC))
|
|
# else
|
|
# define va_copy(DEST,SRC) ((DEST) = (SRC))
|
|
# endif
|
|
# endif
|
|
#endif
|
|
|
|
/*@access rpmlogRec @*/
|
|
|
|
/*@unchecked@*/
|
|
static int nrecs = 0;
|
|
/*@unchecked@*/
|
|
static /*@only@*/ /*@null@*/ rpmlogRec recs = NULL;
|
|
|
|
/**
|
|
* Wrapper to free(3), hides const compilation noise, permit NULL, return NULL.
|
|
* @param p memory to free
|
|
* @retval NULL always
|
|
*/
|
|
/*@unused@*/ static inline /*@null@*/ void *
|
|
_free(/*@only@*/ /*@null@*/ /*@out@*/ const void * p) /*@modifies p@*/
|
|
{
|
|
if (p != NULL) free((void *)p);
|
|
return NULL;
|
|
}
|
|
|
|
int rpmlogGetNrecs(void)
|
|
{
|
|
return nrecs;
|
|
}
|
|
|
|
int rpmlogCode(void)
|
|
{
|
|
if (recs != NULL && nrecs > 0)
|
|
return recs[nrecs-1].code;
|
|
return -1;
|
|
}
|
|
|
|
|
|
const char * rpmlogMessage(void)
|
|
{
|
|
if (recs != NULL && nrecs > 0)
|
|
return recs[nrecs-1].message;
|
|
return _("(no error)");
|
|
}
|
|
|
|
/*@-modfilesys@*/
|
|
void rpmlogPrint(FILE *f)
|
|
{
|
|
int i;
|
|
|
|
if (f == NULL)
|
|
f = stderr;
|
|
|
|
if (recs)
|
|
for (i = 0; i < nrecs; i++) {
|
|
rpmlogRec rec = recs + i;
|
|
if (rec->message && *rec->message)
|
|
fprintf(f, " %s", rec->message);
|
|
}
|
|
}
|
|
/*@=modfilesys@*/
|
|
|
|
void rpmlogClose (void)
|
|
/*@globals recs, nrecs @*/
|
|
/*@modifies recs, nrecs @*/
|
|
{
|
|
int i;
|
|
|
|
if (recs)
|
|
for (i = 0; i < nrecs; i++) {
|
|
rpmlogRec rec = recs + i;
|
|
rec->message = _free(rec->message);
|
|
}
|
|
recs = _free(recs);
|
|
nrecs = 0;
|
|
}
|
|
|
|
void rpmlogOpen (/*@unused@*/ const char *ident, /*@unused@*/ int option,
|
|
/*@unused@*/ int facility)
|
|
{
|
|
}
|
|
|
|
/*@unchecked@*/
|
|
static unsigned rpmlogMask = RPMLOG_UPTO( RPMLOG_NOTICE );
|
|
|
|
/*@unchecked@*/
|
|
static /*@unused@*/ unsigned rpmlogFacility = RPMLOG_USER;
|
|
|
|
int rpmlogSetMask (int mask)
|
|
/*@globals rpmlogMask @*/
|
|
/*@modifies rpmlogMask @*/
|
|
{
|
|
int omask = rpmlogMask;
|
|
if (mask)
|
|
rpmlogMask = mask;
|
|
return omask;
|
|
}
|
|
|
|
/*@unchecked@*/
|
|
static /*@null@*/ rpmlogCallback _rpmlogCallback = NULL;
|
|
|
|
rpmlogCallback rpmlogSetCallback(rpmlogCallback cb)
|
|
/*@globals _rpmlogCallback @*/
|
|
/*@modifies _rpmlogCallback @*/
|
|
{
|
|
rpmlogCallback ocb = _rpmlogCallback;
|
|
_rpmlogCallback = cb;
|
|
return ocb;
|
|
}
|
|
|
|
/*@-readonlytrans@*/ /* FIX: double indirection. */
|
|
/*@observer@*/ /*@unchecked@*/
|
|
static char *rpmlogMsgPrefix[] = {
|
|
N_("fatal error: "),/*!< RPMLOG_EMERG */
|
|
N_("fatal error: "),/*!< RPMLOG_ALERT */
|
|
N_("fatal error: "),/*!< RPMLOG_CRIT */
|
|
N_("error: "), /*!< RPMLOG_ERR */
|
|
N_("warning: "), /*!< RPMLOG_WARNING */
|
|
"", /*!< RPMLOG_NOTICE */
|
|
"", /*!< RPMLOG_INFO */
|
|
"D: ", /*!< RPMLOG_DEBUG */
|
|
};
|
|
/*@=readonlytrans@*/
|
|
|
|
#if !defined(HAVE_VSNPRINTF)
|
|
static inline int vsnprintf(char * buf, /*@unused@*/ int nb,
|
|
const char * fmt, va_list ap)
|
|
{
|
|
return vsprintf(buf, fmt, ap);
|
|
}
|
|
#endif
|
|
|
|
/*@-modfilesys@*/
|
|
/*@-compmempass@*/ /* FIX: rpmlogMsgPrefix[] dependent, not unqualified */
|
|
/*@-nullstate@*/ /* FIX: rpmlogMsgPrefix[] may be NULL */
|
|
static void vrpmlog (unsigned code, const char *fmt, va_list ap)
|
|
/*@globals nrecs, recs, internalState @*/
|
|
/*@modifies nrecs, recs, internalState @*/
|
|
{
|
|
unsigned pri = RPMLOG_PRI(code);
|
|
unsigned mask = RPMLOG_MASK(pri);
|
|
/*@unused@*/ unsigned fac = RPMLOG_FAC(code);
|
|
char *msgbuf, *msg;
|
|
int msgnb = BUFSIZ, nb;
|
|
FILE * msgout = stderr;
|
|
|
|
if ((mask & rpmlogMask) == 0)
|
|
return;
|
|
|
|
/*@-boundswrite@*/
|
|
msgbuf = xmalloc(msgnb);
|
|
*msgbuf = '\0';
|
|
|
|
/* Allocate a sufficently large buffer for output. */
|
|
while (1) {
|
|
va_list apc;
|
|
/*@-sysunrecog -usedef@*/ va_copy(apc, ap); /*@=sysunrecog =usedef@*/
|
|
nb = vsnprintf(msgbuf, msgnb, fmt, apc);
|
|
if (nb > -1 && nb < msgnb)
|
|
break;
|
|
if (nb > -1) /* glibc 2.1 (and later) */
|
|
msgnb = nb+1;
|
|
else /* glibc 2.0 */
|
|
msgnb *= 2;
|
|
msgbuf = xrealloc(msgbuf, msgnb);
|
|
/*@-mods@*/
|
|
va_end(apc);
|
|
/*@=mods@*/
|
|
}
|
|
msgbuf[msgnb - 1] = '\0';
|
|
msg = msgbuf;
|
|
|
|
/* Save copy of all messages at warning (or below == "more important"). */
|
|
/*@-branchstate@*/
|
|
if (pri <= RPMLOG_WARNING) {
|
|
|
|
if (recs == NULL)
|
|
recs = xmalloc((nrecs+2) * sizeof(*recs));
|
|
else
|
|
recs = xrealloc(recs, (nrecs+2) * sizeof(*recs));
|
|
recs[nrecs].code = code;
|
|
recs[nrecs].message = msg = xrealloc(msgbuf, strlen(msgbuf)+1);
|
|
msgbuf = NULL; /* XXX don't free at exit. */
|
|
recs[nrecs+1].code = 0;
|
|
recs[nrecs+1].message = NULL;
|
|
++nrecs;
|
|
|
|
if (_rpmlogCallback) {
|
|
/*@-noeffectuncon@*/ /* FIX: useless callback */
|
|
_rpmlogCallback();
|
|
/*@=noeffectuncon@*/
|
|
return; /* XXX Preserve legacy rpmError behavior. */
|
|
}
|
|
}
|
|
/*@=branchstate@*/
|
|
/*@=boundswrite@*/
|
|
|
|
/* rpmMessage behavior */
|
|
|
|
switch (pri) {
|
|
case RPMLOG_INFO:
|
|
case RPMLOG_NOTICE:
|
|
msgout = stdout;
|
|
break;
|
|
|
|
case RPMLOG_EMERG:
|
|
case RPMLOG_ALERT:
|
|
case RPMLOG_CRIT:
|
|
case RPMLOG_ERR: /* XXX Legacy rpmError behavior used stdout w/o prefix. */
|
|
case RPMLOG_WARNING:
|
|
case RPMLOG_DEBUG:
|
|
break;
|
|
}
|
|
|
|
if (rpmlogMsgPrefix[pri] && *rpmlogMsgPrefix[pri])
|
|
(void) fputs(_(rpmlogMsgPrefix[pri]), msgout);
|
|
|
|
(void) fputs(msg, msgout);
|
|
(void) fflush(msgout);
|
|
msgbuf = _free(msgbuf);
|
|
if (pri <= RPMLOG_CRIT)
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
/*@=compmempass =nullstate@*/
|
|
/*@=modfilesys@*/
|
|
|
|
void rpmlog (int code, const char *fmt, ...)
|
|
{
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
|
/*@-internalglobs@*/ /* FIX: shrug */
|
|
vrpmlog(code, fmt, ap);
|
|
/*@=internalglobs@*/
|
|
va_end(ap);
|
|
}
|
|
|
|
int rpmErrorCode(void)
|
|
{
|
|
return rpmlogCode();
|
|
}
|
|
|
|
const char * rpmErrorString(void)
|
|
{
|
|
return rpmlogMessage();
|
|
}
|
|
|
|
rpmlogCallback rpmErrorSetCallback(rpmlogCallback cb)
|
|
{
|
|
return rpmlogSetCallback(cb);
|
|
}
|
|
/*@=boundsread@*/
|