Blame SOURCES/net-snmp-5.7.2-incomplete-parse.patch

9a6c41
1212408 - net-snmp: snmp_pdu_parse() incompletely parsed varBinds left in list of variables
9a6c41
1248412 - net-snmp: snmp_pdu_parse() incompletely parsed varBinds left in list of variables [rhel-7.1.z]
9a6c41
9a6c41
Backported from:
9a6c41
9a6c41
commit f23bcd3ac6ddee5d0a48f9703007ccc738914791
9a6c41
Author: Robert Story <rstory@localhost>
9a6c41
Date:   Sat Apr 11 18:49:02 2015 -0400
9a6c41
9a6c41
    CHANGES: BUG: #2615: Don't return incompletely parsed varbinds
9a6c41
9a6c41
9a6c41
diff -up net-snmp-5.5/snmplib/snmp_api.c.incomplete-parse net-snmp-5.5/snmplib/snmp_api.c
9a6c41
--- net-snmp-5.5/snmplib/snmp_api.c.incomplete-parse	2015-07-30 12:10:31.495801514 +0200
9a6c41
+++ net-snmp-5.5/snmplib/snmp_api.c	2015-07-30 12:11:43.087038548 +0200
9a6c41
@@ -4508,10 +4508,9 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
     u_char          type;
9a6c41
     u_char          msg_type;
9a6c41
     u_char         *var_val;
9a6c41
-    int             badtype = 0;
9a6c41
     size_t          len;
9a6c41
     size_t          four;
9a6c41
-    netsnmp_variable_list *vp = NULL;
9a6c41
+    netsnmp_variable_list *vp = NULL, *vplast = NULL;
9a6c41
     oid             objid[MAX_OID_LEN];
9a6c41
     u_char         *p;
9a6c41
 
9a6c41
@@ -4647,38 +4646,24 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
                               (ASN_SEQUENCE | ASN_CONSTRUCTOR),
9a6c41
                               "varbinds");
9a6c41
     if (data == NULL)
9a6c41
-        return -1;
9a6c41
+        goto fail;
9a6c41
 
9a6c41
     /*
9a6c41
      * get each varBind sequence 
9a6c41
      */
9a6c41
     while ((int) *length > 0) {
9a6c41
-        netsnmp_variable_list *vptemp;
9a6c41
-        vptemp = (netsnmp_variable_list *) malloc(sizeof(*vptemp));
9a6c41
-        if (NULL == vptemp) {
9a6c41
-            return -1;
9a6c41
-        }
9a6c41
-        if (NULL == vp) {
9a6c41
-            pdu->variables = vptemp;
9a6c41
-        } else {
9a6c41
-            vp->next_variable = vptemp;
9a6c41
-        }
9a6c41
-        vp = vptemp;
9a6c41
-
9a6c41
-        vp->next_variable = NULL;
9a6c41
-        vp->val.string = NULL;
9a6c41
+        vp = SNMP_MALLOC_TYPEDEF(netsnmp_variable_list);
9a6c41
+        if (NULL == vp)
9a6c41
+            goto fail;
9a6c41
+        
9a6c41
         vp->name_length = MAX_OID_LEN;
9a6c41
-        vp->name = NULL;
9a6c41
-        vp->index = 0;
9a6c41
-        vp->data = NULL;
9a6c41
-        vp->dataFreeHook = NULL;
9a6c41
         DEBUGDUMPSECTION("recv", "VarBind");
9a6c41
         data = snmp_parse_var_op(data, objid, &vp->name_length, &vp->type,
9a6c41
                                  &vp->val_len, &var_val, length);
9a6c41
         if (data == NULL)
9a6c41
-            return -1;
9a6c41
+            goto fail;
9a6c41
         if (snmp_set_var_objid(vp, objid, vp->name_length))
9a6c41
-            return -1;
9a6c41
+            goto fail;
9a6c41
 
9a6c41
         len = MAX_PACKET_LENGTH;
9a6c41
         DEBUGDUMPHEADER("recv", "Value");
9a6c41
@@ -4690,7 +4675,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
                           (long *) vp->val.integer,
9a6c41
                           sizeof(*vp->val.integer));
9a6c41
             if (!p)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             break;
9a6c41
         case ASN_COUNTER:
9a6c41
         case ASN_GAUGE:
9a6c41
@@ -4702,7 +4687,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
                                    (u_long *) vp->val.integer,
9a6c41
                                    vp->val_len);
9a6c41
             if (!p)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             break;
9a6c41
 #ifdef NETSNMP_WITH_OPAQUE_SPECIAL_TYPES
9a6c41
         case ASN_OPAQUE_COUNTER64:
9a6c41
@@ -4715,7 +4700,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
                                      (struct counter64 *) vp->val.
9a6c41
                                      counter64, vp->val_len);
9a6c41
             if (!p)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             break;
9a6c41
 #ifdef NETSNMP_WITH_OPAQUE_SPECIAL_TYPES
9a6c41
         case ASN_OPAQUE_FLOAT:
9a6c41
@@ -4724,7 +4709,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
             p = asn_parse_float(var_val, &len, &vp->type,
9a6c41
                             vp->val.floatVal, vp->val_len);
9a6c41
             if (!p)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             break;
9a6c41
         case ASN_OPAQUE_DOUBLE:
9a6c41
             vp->val.doubleVal = (double *) vp->buf;
9a6c41
@@ -4732,7 +4717,7 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
             p = asn_parse_double(var_val, &len, &vp->type,
9a6c41
                              vp->val.doubleVal, vp->val_len);
9a6c41
             if (!p)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             break;
9a6c41
         case ASN_OPAQUE_I64:
9a6c41
             vp->val.counter64 = (struct counter64 *) vp->buf;
9a6c41
@@ -4742,12 +4727,12 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
                                    sizeof(*vp->val.counter64));
9a6c41
 
9a6c41
             if (!p)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             break;
9a6c41
 #endif                          /* NETSNMP_WITH_OPAQUE_SPECIAL_TYPES */
9a6c41
         case ASN_IPADDRESS:
9a6c41
             if (vp->val_len != 4)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             /* fallthrough */
9a6c41
         case ASN_OCTET_STR:
9a6c41
         case ASN_OPAQUE:
9a6c41
@@ -4758,22 +4743,22 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
                 vp->val.string = (u_char *) malloc(vp->val_len);
9a6c41
             }
9a6c41
             if (vp->val.string == NULL) {
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             }
9a6c41
             p = asn_parse_string(var_val, &len, &vp->type, vp->val.string,
9a6c41
                              &vp->val_len);
9a6c41
             if (!p)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             break;
9a6c41
         case ASN_OBJECT_ID:
9a6c41
             vp->val_len = MAX_OID_LEN;
9a6c41
             p = asn_parse_objid(var_val, &len, &vp->type, objid, &vp->val_len);
9a6c41
             if (!p)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             vp->val_len *= sizeof(oid);
9a6c41
             vp->val.objid = (oid *) malloc(vp->val_len);
9a6c41
             if (vp->val.objid == NULL) {
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             }
9a6c41
             memmove(vp->val.objid, objid, vp->val_len);
9a6c41
             break;
9a6c41
@@ -4785,21 +4770,38 @@ snmp_pdu_parse(netsnmp_pdu *pdu, u_char
9a6c41
         case ASN_BIT_STR:
9a6c41
             vp->val.bitstring = (u_char *) malloc(vp->val_len);
9a6c41
             if (vp->val.bitstring == NULL) {
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             }
9a6c41
             p = asn_parse_bitstring(var_val, &len, &vp->type,
9a6c41
                                 vp->val.bitstring, &vp->val_len);
9a6c41
             if (!p)
9a6c41
-                return -1;
9a6c41
+                goto fail;
9a6c41
             break;
9a6c41
         default:
9a6c41
             snmp_log(LOG_ERR, "bad type returned (%x)\n", vp->type);
9a6c41
-            badtype = -1;
9a6c41
+            goto fail;
9a6c41
             break;
9a6c41
         }
9a6c41
         DEBUGINDENTADD(-4);
9a6c41
+
9a6c41
+        if (NULL == vplast) {
9a6c41
+            pdu->variables = vp;
9a6c41
+        } else {
9a6c41
+            vplast->next_variable = vp;
9a6c41
+        }
9a6c41
+        vplast = vp;
9a6c41
+        vp = NULL;
9a6c41
+
9a6c41
     }
9a6c41
-    return badtype;
9a6c41
+    return 0;
9a6c41
+
9a6c41
+fail:
9a6c41
+    DEBUGMSGTL(("recv", "error while parsing VarBindList\n"));
9a6c41
+    /** if we were parsing a var, remove it from the pdu and free it */
9a6c41
+    if (vp)
9a6c41
+        snmp_free_var(vp);
9a6c41
+
9a6c41
+    return -1;
9a6c41
 }
9a6c41
 
9a6c41
 /*