#include <sys/types.h>
#include <sys/socket.h>
#include <net/if.h>
#include <netinet/in.h>
#include <fcntl.h>
#include <stdio.h>
#include <time.h>
#include <unistd.h>
#include "dhcp.h"
#include "tree.h"
#include "dhcpd.h"
#include "log.h"
FILE *db_file;
static int counting = 0;
static int count = 0;
time_t write_time;
int
write_lease(struct lease *lease)
{
char tbuf[26];
size_t rsltsz;
int errors = 0;
int i;
if (counting)
++count;
if (fprintf(db_file, "lease %s {\n", piaddr(lease->ip_addr)) == -1)
++errors;
rsltsz = strftime(tbuf, sizeof(tbuf), DB_TIMEFMT,
gmtime(&lease->starts));
if (rsltsz == 0 || fprintf(db_file, "\tstarts %s;\n", tbuf) == -1)
errors++;
rsltsz = strftime(tbuf, sizeof(tbuf), DB_TIMEFMT,
gmtime(&lease->ends));
if (rsltsz == 0 || fprintf(db_file, "\tends %s;\n", tbuf) == -1)
errors++;
if (lease->hardware_addr.hlen) {
if (fprintf(db_file, "\thardware %s %s;",
hardware_types[lease->hardware_addr.htype],
print_hw_addr(lease->hardware_addr.htype,
lease->hardware_addr.hlen,
lease->hardware_addr.haddr)) == -1)
++errors;
}
if (lease->uid_len) {
int j;
if (fprintf(db_file, "\n\tuid %2.2x", lease->uid[0]) == -1)
++errors;
for (j = 1; j < lease->uid_len; j++) {
if (fprintf(db_file, ":%2.2x", lease->uid[j]) == -1)
++errors;
}
if (fputc(';', db_file) == EOF)
++errors;
}
if (lease->flags & BOOTP_LEASE) {
if (fprintf(db_file, "\n\tdynamic-bootp;") == -1)
++errors;
}
if (lease->flags & ABANDONED_LEASE) {
if (fprintf(db_file, "\n\tabandoned;") == -1)
++errors;
}
if (lease->client_hostname) {
for (i = 0; lease->client_hostname[i]; i++)
if (lease->client_hostname[i] < 33 ||
lease->client_hostname[i] > 126)
goto bad_client_hostname;
if (fprintf(db_file, "\n\tclient-hostname \"%s\";",
lease->client_hostname) == -1)
++errors;
}
bad_client_hostname:
if (lease->hostname) {
for (i = 0; lease->hostname[i]; i++)
if (lease->hostname[i] < 33 ||
lease->hostname[i] > 126)
goto bad_hostname;
if (fprintf(db_file, "\n\thostname \"%s\";",
lease->hostname) == -1)
++errors;
}
bad_hostname:
if (fputs("\n}\n", db_file) == EOF)
++errors;
if (errors)
log_info("write_lease: unable to write lease %s",
piaddr(lease->ip_addr));
return (!errors);
}
int
commit_leases(void)
{
if (fflush(db_file) == EOF) {
log_warn("commit_leases: unable to commit");
return (0);
}
if (fsync(fileno(db_file)) == -1) {
log_warn("commit_leases: unable to commit");
return (0);
}
if (count > 1000 || (count && cur_time - write_time > 3600)) {
count = 0;
write_time = cur_time;
new_lease_file();
}
return (1);
}
void
db_startup(void)
{
int db_fd;
db_fd = open(path_dhcpd_db, O_WRONLY|O_CREAT, 0640);
if (db_fd == -1)
fatal("Can't create new lease file");
if ((db_file = fdopen(db_fd, "w")) == NULL)
fatalx("Can't fdopen new lease file!");
read_leases();
time(&write_time);
new_lease_file();
}
void
new_lease_file(void)
{
fflush(db_file);
rewind(db_file);
counting = 0;
write_leases();
fflush(db_file);
ftruncate(fileno(db_file), ftello(db_file));
fsync(fileno(db_file));
counting = 1;
}