mirror of
git://git.code.sf.net/p/dhcpd-pools/code
synced 2025-12-17 00:06:59 +00:00
This should make the run to be couple percentages quicker. Signed-off-by: Sami Kerola <kerolasa@iki.fi>
183 lines
5.4 KiB
C
183 lines
5.4 KiB
C
/*
|
|
* The dhcpd-pools has BSD 2-clause license which also known as "Simplified
|
|
* BSD License" or "FreeBSD License".
|
|
*
|
|
* Copyright 2006- Sami Kerola. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are
|
|
* met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
*
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the
|
|
* distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR AND CONTRIBUTORS OR
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* The views and conclusions contained in the software and documentation are
|
|
* those of the authors and should not be interpreted as representing
|
|
* official policies, either expressed or implied, of Sami Kerola.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "dhcpd-pools.h"
|
|
|
|
#include <err.h>
|
|
#include <errno.h>
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
|
|
int
|
|
#if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
|
|
__attribute__ ((hot))
|
|
#endif
|
|
xstrstr(const char *restrict a, const char *restrict b, const int len)
|
|
{
|
|
int i;
|
|
/* two spaces are very common in lease file, after them
|
|
* nearly everything differs */
|
|
if (a[2] != b[2]) {
|
|
return false;
|
|
}
|
|
/* " binding state " == 16 chars, this will skip right
|
|
* to first difering line. */
|
|
if (17 < len && a[17] != b[17]) {
|
|
return false;
|
|
}
|
|
/* looking good, double check the whole thing... */
|
|
for (i = 0; a[i] != '\0' && b[i] != '\0'; i++) {
|
|
if (a[i] != b[i]) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
/* Return percentage value */
|
|
double strtod_or_err(const char *restrict str, const char *restrict errmesg)
|
|
{
|
|
double num;
|
|
char *end = NULL;
|
|
|
|
if (str == NULL || *str == '\0')
|
|
goto err;
|
|
errno = 0;
|
|
num = strtod(str, &end);
|
|
|
|
if (errno || str == end || (end && *end))
|
|
goto err;
|
|
|
|
return num;
|
|
err:
|
|
if (errno)
|
|
err(EXIT_FAILURE, "%s: '%s'", errmesg, str);
|
|
|
|
errx(EXIT_FAILURE, "%s: '%s'", errmesg, str);
|
|
}
|
|
|
|
void flip_ranges(struct range_t *restrict flip_me,
|
|
struct range_t *restrict tmp_ranges)
|
|
{
|
|
unsigned int i = num_ranges - 1, j;
|
|
|
|
for (j = 0; j < num_ranges; j++) {
|
|
*(tmp_ranges + j) = *(flip_me + i);
|
|
i--;
|
|
}
|
|
|
|
memcpy(flip_me, tmp_ranges, num_ranges * sizeof(struct range_t));
|
|
}
|
|
|
|
/* Free memory, flush buffers etc */
|
|
void clean_up(void)
|
|
{
|
|
unsigned int i;
|
|
|
|
/* Just in case there something in buffers */
|
|
if (fflush(NULL)) {
|
|
warn("clean_up: fflush");
|
|
}
|
|
num_shared_networks++;
|
|
for (i = 0; i < num_shared_networks; i++) {
|
|
free((shared_networks + i)->name);
|
|
}
|
|
free(config.dhcpdconf_file);
|
|
free(config.dhcpdlease_file);
|
|
free(config.output_file);
|
|
free(ranges);
|
|
delete_all_leases();
|
|
free(shared_networks);
|
|
}
|
|
|
|
void __attribute__ ((__noreturn__)) print_version(void)
|
|
{
|
|
fprintf(stdout, "%s\n"
|
|
"Written by Sami Kerola.\n"
|
|
"XML support by Dominic Germain, Sogetel inc.\n\n"
|
|
"The software has FreeBSD License.\n", PACKAGE_STRING);
|
|
exit(EXIT_SUCCESS);
|
|
}
|
|
|
|
void __attribute__ ((__noreturn__)) usage(int status)
|
|
{
|
|
FILE *out;
|
|
out = status != 0 ? stderr : stdout;
|
|
|
|
fprintf(out, "\
|
|
Usage: %s [OPTIONS]\n\n\
|
|
This is ISC dhcpd pools usage analyzer.\n\
|
|
\n", program_invocation_short_name);
|
|
fprintf(out, "\
|
|
-c, --config=FILE path to the dhcpd.conf file\n\
|
|
-l, --leases=FILE path to the dhcpd.leases file\n\
|
|
-f, --format=[thHcxX] output format\n\
|
|
t for text\n\
|
|
h for html table\n\
|
|
H for full html page\n\
|
|
x for xml\n\
|
|
X for xml with active lease details\n\
|
|
c for comma separated values\n");
|
|
fprintf(out, "\
|
|
-s, --sort=[nimcptTe] sort ranges by\n\
|
|
n name\n\
|
|
i IP\n\
|
|
m maxium\n\
|
|
c current\n\
|
|
p percent\n\
|
|
t touched\n\
|
|
T t+c\n\
|
|
e t+c perc\n\
|
|
-r, --reverse reverse order sort\n\
|
|
-o, --output=FILE output into a file\n\
|
|
-L, --limit=NR output limit mask 77 - 00\n");
|
|
fprintf(out, "\
|
|
--warning=PERC set warning alarming limit\n\
|
|
--critical=PERC set critical alarming limit\n");
|
|
fprintf(out, "\
|
|
-v, --version version information\n\
|
|
-h, --help this screen\n\
|
|
\n\
|
|
Report bugs to <%s>\n\
|
|
Homepage: %s\n", PACKAGE_BUGREPORT, PACKAGE_URL);
|
|
|
|
exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
|
|
}
|