Tidy last commit.

This commit is contained in:
Simon Kelley
2012-03-12 17:28:27 +00:00
parent 6c8f21e4a4
commit 5cfea3d402

View File

@@ -1344,61 +1344,57 @@ static void log6_opts(int nest, unsigned int xid, void *start_opts, void *end_op
{ {
void *opt; void *opt;
char *desc = nest ? "nest" : "sent"; char *desc = nest ? "nest" : "sent";
if (start_opts == end_opts)
return;
for (opt = start_opts; opt; opt = opt6_next(opt, end_opts))
{
int type = opt6_type(opt);
void *ia_options = NULL;
char *optname;
if (start_opts != end_opts) if (type == OPTION6_IA_NA)
for (opt = start_opts; opt; opt = opt6_next(opt, end_opts)) {
{ sprintf(daemon->namebuff, "IAID=%u T1=%u T2=%u",
int type = opt6_type(opt); opt6_uint(opt, 0, 4), opt6_uint(opt, 4, 4), opt6_uint(opt, 8, 4));
optname = "ia-na";
if (type == OPTION6_IA_NA || type == OPTION6_IA_TA) ia_options = opt6_ptr(opt, 12);
{ }
int iaid = opt6_uint(opt, 0, 4); else if (type == OPTION6_IA_TA)
void *ia_end = opt6_ptr(opt, opt6_len(opt)); {
void *ia_options = opt6_ptr(opt, type == OPTION6_IA_NA ? 12 : 4); sprintf(daemon->namebuff, "IAID=%u", opt6_uint(opt, 0, 4));
optname = "ia-ta";
if (type == OPTION6_IA_NA) ia_options = opt6_ptr(opt, 4);
my_syslog(MS_DHCP | LOG_INFO, "%u %s size:%3d option:%3d ia-na IAID=%u T1=%u T2=%u", }
xid, desc, opt6_len(opt), type, iaid, opt6_uint(opt, 4, 4), opt6_uint(opt, 8, 4)); else if (type == OPTION6_IAADDR)
else {
my_syslog(MS_DHCP | LOG_INFO, "%u %s size:%3d option:%3d ia-ta IAID=%u", inet_ntop(AF_INET6, opt6_ptr(opt, 0), daemon->addrbuff, ADDRSTRLEN);
xid, desc, opt6_len(opt), type, iaid); sprintf(daemon->namebuff, "%s PL=%u VL=%u",
daemon->addrbuff, opt6_uint(opt, 16, 4), opt6_uint(opt, 20, 4));
log6_opts(1, xid, ia_options, ia_end); optname = "iaaddr";
} ia_options = opt6_ptr(opt, 24);
else if (type == OPTION6_IAADDR) }
{ else if (type == OPTION6_STATUS_CODE)
void *ia_end = opt6_ptr(opt, opt6_len(opt)); {
void *ia_options = opt6_ptr(opt, 24); int len = sprintf(daemon->namebuff, "%u ", opt6_uint(opt, 0, 2));
memcpy(daemon->namebuff + len, opt6_ptr(opt, 2), opt6_len(opt)-2);
inet_ntop(AF_INET6, opt6_ptr(opt, 0), daemon->addrbuff, ADDRSTRLEN); daemon->namebuff[len + opt6_len(opt) - 2] = 0;
optname = "status";
my_syslog(MS_DHCP | LOG_INFO, "%u %s size:%3d option:%3d iaaddr %s PL=%u VL=%u", }
xid, desc, opt6_len(opt), type, daemon->addrbuff, opt6_uint(opt, 16, 4), opt6_uint(opt, 20, 4)); else
{
log6_opts(1, xid, ia_options, ia_end); /* account for flag byte on FQDN */
} int offset = type == OPTION6_FQDN ? 1 : 0;
else if (type == OPTION6_STATUS_CODE) optname = option_string(AF_INET6, type, opt6_ptr(opt, offset), opt6_len(opt) - offset, daemon->namebuff, MAXDNAME);
{ }
memcpy(daemon->namebuff, opt6_ptr(opt, 2), opt6_len(opt)-2);
daemon->namebuff[opt6_len(opt)-2] = 0; my_syslog(MS_DHCP | LOG_INFO, "%u %s size:%3d option:%3d %s %s",
my_syslog(MS_DHCP | LOG_INFO, "%u %s size:%3d option:%3d status %u %s", xid, desc, opt6_len(opt), type, optname, daemon->namebuff);
xid, desc, opt6_len(opt), type, opt6_uint(opt, 0, 2), daemon->namebuff);
} if (ia_options)
else log6_opts(1, xid, ia_options, opt6_ptr(opt, opt6_len(opt)));
{ }
int offset = 0;
char *optname;
/* account for flag byte on FQDN */
if (type == OPTION6_FQDN)
offset = 1;
optname = option_string(AF_INET6, type, opt6_ptr(opt, offset), opt6_len(opt) - offset, daemon->namebuff, MAXDNAME);
my_syslog(MS_DHCP | LOG_INFO, "%u %s size:%3d option:%3d %s %s",
xid, desc, opt6_len(opt), type, optname, daemon->namebuff);
}
}
} }
static void log6_packet(char *type, unsigned char *clid, int clid_len, struct in6_addr *addr, int xid, char *iface, char *string) static void log6_packet(char *type, unsigned char *clid, int clid_len, struct in6_addr *addr, int xid, char *iface, char *string)