1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/*
* Copyright (C) 1995-1999 Jeffrey A. Uphoff
* Modified by Olaf Kirch, 1996.
* Modified by H.J. Lu, 1998.
*
* NSM for Linux.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <errno.h>
#include <limits.h>
#include <string.h>
#include <unistd.h>
#include "statd.h"
#include "notlist.h"
/*
* Error-checking malloc() wrapper.
*/
void *
xmalloc (size_t size)
{
void *ptr;
if (size == 0)
return ((void *)NULL);
if (!(ptr = malloc (size)))
/* SHIT! SHIT! SHIT! */
die ("malloc failed");
return (ptr);
}
/*
* Error-checking strdup() wrapper.
*/
char *
xstrdup (const char *string)
{
char *result;
/* Will only fail if underlying malloc() fails (ENOMEM). */
if (!(result = strdup (string)))
die ("strdup failed");
return (result);
}
/*
* Call with check=1 to verify that this host is not still on the rtnl
* before unlinking file.
*/
void
xunlink (char *path, char *host, short int check)
{
char *tozap;
tozap=alloca (strlen(path)+strlen(host)+2);
sprintf (tozap, "%s/%s", path, host);
if (!check || !nlist_gethost(rtnl, host, 0)) {
if (unlink (tozap) == -1)
note (N_ERROR, "unlink (%s): %s", tozap, strerror (errno));
else
dprintf (N_DEBUG, "Unlinked %s", tozap);
}
else
dprintf (N_DEBUG, "Not unlinking %s--host still monitored.", tozap);
}
|