8e2f36
From 471cd540e755d2a5e92b4e8cd2ab2027beaba449 Mon Sep 17 00:00:00 2001
8e2f36
From: Simon Kelley <simon@thekelleys.org.uk>
8e2f36
Date: Thu, 31 Mar 2022 21:35:20 +0100
8e2f36
Subject: [PATCH] Fix write-after-free error in DHCPv6 code. CVE-2022-0934
8e2f36
 refers.
25f1e8
25f1e8
---
8e2f36
 src/rfc3315.c | 48 +++++++++++++++++++++++++++---------------------
8e2f36
 1 file changed, 27 insertions(+), 21 deletions(-)
25f1e8
8e2f36
diff --git a/src/rfc3315.c b/src/rfc3315.c
8e2f36
index 554b1fe..bc77fbf 100644
8e2f36
--- a/src/rfc3315.c
8e2f36
+++ b/src/rfc3315.c
8e2f36
@@ -36,9 +36,9 @@ struct state {
25f1e8
 #endif
8e2f36
 };
25f1e8
 
8e2f36
-static int dhcp6_maybe_relay(struct state *state, void *inbuff, size_t sz, 
8e2f36
+static int dhcp6_maybe_relay(struct state *state, unsigned char *inbuff, size_t sz,
8e2f36
 			     struct in6_addr *client_addr, int is_unicast, time_t now);
8e2f36
-static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_t sz, int is_unicast, time_t now);
8e2f36
+static int dhcp6_no_relay(struct state *state, int msg_type, unsigned char *inbuff, size_t sz, int is_unicast, time_t now);
8e2f36
 static void log6_opts(int nest, unsigned int xid, void *start_opts, void *end_opts);
8e2f36
 static void log6_packet(struct state *state, char *type, struct in6_addr *addr, char *string);
8e2f36
 static void log6_quiet(struct state *state, char *type, struct in6_addr *addr, char *string);
8e2f36
@@ -110,12 +110,12 @@ unsigned short dhcp6_reply(struct dhcp_context *context, int interface, char *if
25f1e8
 }
25f1e8
 
8e2f36
 /* This cost me blood to write, it will probably cost you blood to understand - srk. */
8e2f36
-static int dhcp6_maybe_relay(struct state *state, void *inbuff, size_t sz, 
8e2f36
+static int dhcp6_maybe_relay(struct state *state, unsigned char *inbuff, size_t sz, 
8e2f36
 			     struct in6_addr *client_addr, int is_unicast, time_t now)
8e2f36
 {
25f1e8
   void *end = inbuff + sz;
25f1e8
   void *opts = inbuff + 34;
8e2f36
-  int msg_type = *((unsigned char *)inbuff);
8e2f36
+  int msg_type = *inbuff;
8e2f36
   unsigned char *outmsgtypep;
25f1e8
   void *opt;
25f1e8
   struct dhcp_vendor *vendor;
8e2f36
@@ -241,15 +241,15 @@ static int dhcp6_maybe_relay(struct state *state, void *inbuff, size_t sz,
8e2f36
   return 1;
8e2f36
 }
25f1e8
 
8e2f36
-static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_t sz, int is_unicast, time_t now)
8e2f36
+static int dhcp6_no_relay(struct state *state, int msg_type, unsigned char *inbuff, size_t sz, int is_unicast, time_t now)
8e2f36
 {
8e2f36
   void *opt;
8e2f36
-  int i, o, o1, start_opts;
8e2f36
+  int i, o, o1, start_opts, start_msg;
8e2f36
   struct dhcp_opt *opt_cfg;
25f1e8
   struct dhcp_netid *tagif;
25f1e8
   struct dhcp_config *config = NULL;
25f1e8
   struct dhcp_netid known_id, iface_id, v6_id;
25f1e8
-  unsigned char *outmsgtypep;
8e2f36
+  unsigned char outmsgtype;
25f1e8
   struct dhcp_vendor *vendor;
25f1e8
   struct dhcp_context *context_tmp;
25f1e8
   struct dhcp_mac *mac_opt;
8e2f36
@@ -285,12 +285,13 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
8e2f36
   v6_id.next = state->tags;
25f1e8
   state->tags = &v6_id;
25f1e8
 
8e2f36
-  /* copy over transaction-id, and save pointer to message type */
25f1e8
-  if (!(outmsgtypep = put_opt6(inbuff, 4)))
8e2f36
+  start_msg = save_counter(-1);
8e2f36
+  /* copy over transaction-id */
8e2f36
+  if (!put_opt6(inbuff, 4))
25f1e8
     return 0;
25f1e8
   start_opts = save_counter(-1);
25f1e8
-  state->xid = outmsgtypep[3] | outmsgtypep[2] << 8 | outmsgtypep[1] << 16;
8e2f36
-   
8e2f36
+  state->xid = inbuff[3] | inbuff[2] << 8 | inbuff[1] << 16;
8e2f36
+    
25f1e8
   /* We're going to be linking tags from all context we use. 
25f1e8
      mark them as unused so we don't link one twice and break the list */
8e2f36
   for (context_tmp = state->context; context_tmp; context_tmp = context_tmp->current)
8e2f36
@@ -336,7 +337,7 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
25f1e8
       (msg_type == DHCP6REQUEST || msg_type == DHCP6RENEW || msg_type == DHCP6RELEASE || msg_type == DHCP6DECLINE))
25f1e8
     
25f1e8
     {  
25f1e8
-      *outmsgtypep = DHCP6REPLY;
8e2f36
+      outmsgtype = DHCP6REPLY;
25f1e8
       o1 = new_opt6(OPTION6_STATUS_CODE);
25f1e8
       put_opt6_short(DHCP6USEMULTI);
25f1e8
       put_opt6_string("Use multicast");
8e2f36
@@ -600,11 +601,11 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
25f1e8
 	struct dhcp_netid *solicit_tags;
25f1e8
 	struct dhcp_context *c;
25f1e8
 	
25f1e8
-	*outmsgtypep = DHCP6ADVERTISE;
8e2f36
+	outmsgtype = DHCP6ADVERTISE;
25f1e8
 	
25f1e8
 	if (opt6_find(state->packet_options, state->end, OPTION6_RAPID_COMMIT, 0))
25f1e8
 	  {
25f1e8
-	    *outmsgtypep = DHCP6REPLY;
8e2f36
+	    outmsgtype = DHCP6REPLY;
25f1e8
 	    state->lease_allocate = 1;
25f1e8
 	    o = new_opt6(OPTION6_RAPID_COMMIT);
25f1e8
 	    end_opt6(o);
8e2f36
@@ -876,7 +877,7 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
25f1e8
 	int start = save_counter(-1);
25f1e8
 
25f1e8
 	/* set reply message type */
25f1e8
-	*outmsgtypep = DHCP6REPLY;
8e2f36
+	outmsgtype = DHCP6REPLY;
25f1e8
 	state->lease_allocate = 1;
25f1e8
 
25f1e8
 	log6_quiet(state, "DHCPREQUEST", NULL, ignore ? _("ignored") : NULL);
8e2f36
@@ -992,7 +993,7 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
25f1e8
     case DHCP6RENEW:
25f1e8
       {
25f1e8
 	/* set reply message type */
25f1e8
-	*outmsgtypep = DHCP6REPLY;
8e2f36
+	outmsgtype = DHCP6REPLY;
25f1e8
 	
25f1e8
 	log6_quiet(state, "DHCPRENEW", NULL, NULL);
25f1e8
 
8e2f36
@@ -1104,7 +1105,7 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
25f1e8
 	int good_addr = 0;
25f1e8
 
25f1e8
 	/* set reply message type */
25f1e8
-	*outmsgtypep = DHCP6REPLY;
8e2f36
+	outmsgtype = DHCP6REPLY;
25f1e8
 	
25f1e8
 	log6_quiet(state, "DHCPCONFIRM", NULL, NULL);
25f1e8
 	
8e2f36
@@ -1168,7 +1169,7 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
25f1e8
 	log6_quiet(state, "DHCPINFORMATION-REQUEST", NULL, ignore ? _("ignored") : state->hostname);
25f1e8
 	if (ignore)
25f1e8
 	  return 0;
25f1e8
-	*outmsgtypep = DHCP6REPLY;
8e2f36
+	outmsgtype = DHCP6REPLY;
25f1e8
 	tagif = add_options(state, 1);
25f1e8
 	break;
25f1e8
       }
8e2f36
@@ -1177,7 +1178,7 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
25f1e8
     case DHCP6RELEASE:
25f1e8
       {
25f1e8
 	/* set reply message type */
25f1e8
-	*outmsgtypep = DHCP6REPLY;
8e2f36
+	outmsgtype = DHCP6REPLY;
25f1e8
 
25f1e8
 	log6_quiet(state, "DHCPRELEASE", NULL, NULL);
25f1e8
 
8e2f36
@@ -1242,7 +1243,7 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
25f1e8
     case DHCP6DECLINE:
25f1e8
       {
25f1e8
 	/* set reply message type */
25f1e8
-	*outmsgtypep = DHCP6REPLY;
8e2f36
+	outmsgtype = DHCP6REPLY;
25f1e8
 	
25f1e8
 	log6_quiet(state, "DHCPDECLINE", NULL, NULL);
25f1e8
 
8e2f36
@@ -1321,7 +1322,12 @@ static int dhcp6_no_relay(struct state *state, int msg_type, void *inbuff, size_
8e2f36
       }
8e2f36
 
8e2f36
     }
8e2f36
-  
8e2f36
+
8e2f36
+  /* Fill in the message type. Note that we store the offset,
8e2f36
+     not a direct pointer, since the packet memory may have been 
8e2f36
+     reallocated. */
8e2f36
+  ((unsigned char *)(daemon->outpacket.iov_base))[start_msg] = outmsgtype;
8e2f36
+
8e2f36
   log_tags(tagif, state->xid);
8e2f36
   log6_opts(0, state->xid, daemon->outpacket.iov_base + start_opts, daemon->outpacket.iov_base + save_counter(-1));
8e2f36
   
25f1e8
-- 
8e2f36
2.39.1
25f1e8