X-Git-Url: http://git.openwrt.org/?a=blobdiff_plain;f=src%2Fdhcpv6.c;h=7c6c7abe89f1de089c036d4fa030c6e72bad6253;hb=aff290bfee0b35a53bafb906aed107cc0b63a922;hp=21b95fa2576bbddfe41ecbf776ba2cc0d0cdc58f;hpb=2677fa10dc2eb455e9135ab40022ae586c651c0f;p=project%2Fodhcpd.git diff --git a/src/dhcpv6.c b/src/dhcpv6.c index 21b95fa..7c6c7ab 100644 --- a/src/dhcpv6.c +++ b/src/dhcpv6.c @@ -360,9 +360,24 @@ static void handle_client_request(void *addr, void *data, size_t len, if (hdr->msg_type == DHCPV6_MSG_RELAY_FORW) handle_nested_message(data, len, &hdr, &opts, &opts_end, iov); - if (hdr->msg_type == DHCPV6_MSG_ADVERTISE || hdr->msg_type == DHCPV6_MSG_REPLY || - hdr->msg_type == DHCPV6_MSG_RELAY_REPL) - return; + switch (hdr->msg_type) { + case DHCPV6_MSG_SOLICIT: + case DHCPV6_MSG_REQUEST: + case DHCPV6_MSG_CONFIRM: + case DHCPV6_MSG_RENEW: + case DHCPV6_MSG_REBIND: + case DHCPV6_MSG_RELEASE: + case DHCPV6_MSG_DECLINE: + case DHCPV6_MSG_INFORMATION_REQUEST: + case DHCPV6_MSG_RELAY_FORW: + break; /* Valid message types for clients */ + case DHCPV6_MSG_ADVERTISE: + case DHCPV6_MSG_REPLY: + case DHCPV6_MSG_RECONFIGURE: + case DHCPV6_MSG_RELAY_REPL: + default: + return; /* Invalid message types for clients */ + } if (!IN6_IS_ADDR_MULTICAST((struct in6_addr *)dest_addr) && iov[IOV_NESTED].iov_len == 0 && (hdr->msg_type == DHCPV6_MSG_SOLICIT || hdr->msg_type == DHCPV6_MSG_CONFIRM ||