Fix our asn.1 parser to handle negative numbers.
authorJeremy Allison <jra@samba.org>
Tue, 24 May 2011 19:47:31 +0000 (12:47 -0700)
committerJeremy Allison <jra@samba.org>
Tue, 24 May 2011 20:57:16 +0000 (22:57 +0200)
Autobuild-User: Jeremy Allison <jra@samba.org>
Autobuild-Date: Tue May 24 22:57:16 CEST 2011 on sn-devel-104

lib/util/asn1.c

index b716da63c0561f1f68a820facf0530ec90636028..c23bf65b8d57b6d9e03918ca05604f1a2766f604 100644 (file)
@@ -885,10 +885,19 @@ bool asn1_read_ContextSimple(struct asn1_data *data, uint8_t num, DATA_BLOB *blo
 bool asn1_read_implicit_Integer(struct asn1_data *data, int *i)
 {
        uint8_t b;
+       bool first_byte = true;
        *i = 0;
 
        while (!data->has_error && asn1_tag_remaining(data)>0) {
                if (!asn1_read_uint8(data, &b)) return false;
+               if (first_byte) {
+                       if (b & 0x80) {
+                               /* Number is negative.
+                                  Set i to -1 for sign extend. */
+                               *i = -1;
+                       }
+                       first_byte = false;
+               }
                *i = (*i << 8) + b;
        }
        return !data->has_error;