1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
|
/*
* Copyright (C) 2006 Martin Will
* Copyright (C) 2000-2008 Andreas Steffen
*
* Hochschule fuer Technik Rapperswil
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*/
#include "typedefs.h"
#include "chunk.h"
#include "asn1.h"
#include "asn1_parser.h"
#define ASN1_MAX_LEVEL 10
typedef struct private_asn1_parser_t private_asn1_parser_t;
/**
* Private data of an asn1_cxt_t object.
*/
struct private_asn1_parser_t {
/**
* Public interface.
*/
asn1_parser_t public;
/**
* Syntax definition of ASN.1 object
*/
asn1Object_t const *objects;
/**
* Current syntax definition line
*/
int line;
/**
* Current stat of the parsing operation
*/
bool success;
/**
* Declare object data as private - use debug level 4 to log it
*/
bool private;
/**
* Top-most type is implicit - ignore it
*/
bool implicit;
/**
* Top-most parsing level - defaults to 0
*/
u_int level0;
/**
* Jump back address for loops for each level
*/
int loopAddr[ASN1_MAX_LEVEL + 1];
/**
* Current parsing pointer for each level
*/
chunk_t blobs[ASN1_MAX_LEVEL + 2];
};
METHOD(asn1_parser_t, iterate, bool,
private_asn1_parser_t *this, int *objectID, chunk_t *object)
{
chunk_t *blob, *blob1;
u_char *start_ptr;
u_int level;
asn1Object_t obj;
*object = chunk_empty;
/* Advance to the next object syntax definition line */
obj = this->objects[++(this->line)];
/* Terminate if the end of the object syntax definition has been reached */
if (obj.flags & ASN1_EXIT)
{
return FALSE;
}
if (obj.flags & ASN1_END) /* end of loop or option found */
{
if (this->loopAddr[obj.level] && this->blobs[obj.level+1].len > 0)
{
this->line = this->loopAddr[obj.level]; /* another iteration */
obj = this->objects[this->line];
}
else
{
this->loopAddr[obj.level] = 0; /* exit loop or option*/
goto end;
}
}
level = this->level0 + obj.level;
blob = this->blobs + obj.level;
blob1 = blob + 1;
start_ptr = blob->ptr;
/* handle ASN.1 defaults values */
if ((obj.flags & ASN1_DEF) && (blob->len == 0 || *start_ptr != obj.type) )
{
/* field is missing */
DBG1("L%d - %a:", level, obj.name);
if (obj.type & ASN1_CONSTRUCTED)
{
this->line++ ; /* skip context-specific tag */
}
goto end;
}
/* handle ASN.1 options */
if ((obj.flags & ASN1_OPT)
&& (blob->len == 0 || *start_ptr != obj.type))
{
/* advance to end of missing option field */
do
{
this->line++;
}
while (!((this->objects[this->line].flags & ASN1_END) &&
(this->objects[this->line].level == obj.level)));
goto end;
}
/* an ASN.1 object must possess at least a tag and length field */
if (blob->len < 2)
{
DBG1("L%d - %a: ASN.1 object smaller than 2 octets",
level, obj.name);
this->success = FALSE;
goto end;
}
blob1->len = asn1_length(blob);
if (blob1->len == ASN1_INVALID_LENGTH)
{
DBG1("L%d - %a: length of ASN.1 object invalid or too large",
level, obj.name);
this->success = FALSE;
}
blob1->ptr = blob->ptr;
blob->ptr += blob1->len;
blob->len -= blob1->len;
/* return raw ASN.1 object without prior type checking */
if (obj.flags & ASN1_RAW)
{
DBG1("L%d - %a:", level, obj.name);
object->ptr = start_ptr;
object->len = (size_t)(blob->ptr - start_ptr);
goto end;
}
if (*start_ptr != obj.type && !(this->implicit && this->line == 0))
{
DBG1("L%d - %a: ASN1 tag 0x%02x expected, but is 0x%02x",
level, obj.name, obj.type, *start_ptr);
DBG1("%b", start_ptr, (u_int)(blob->ptr - start_ptr));
this->success = FALSE;
goto end;
}
DBG1("L%d - %a:", level, obj.name);
/* In case of "SEQUENCE OF" or "SET OF" start a loop */
if (obj.flags & ASN1_LOOP)
{
if (blob1->len > 0)
{
/* at least one item, start the loop */
this->loopAddr[obj.level] = this->line + 1;
}
else
{
/* no items, advance directly to end of loop */
do
{
this->line++;
}
while (!((this->objects[this->line].flags & ASN1_END) &&
(this->objects[this->line].level == obj.level)));
goto end;
}
}
if (obj.flags & ASN1_OBJ)
{
object->ptr = start_ptr;
object->len = (size_t)(blob->ptr - start_ptr);
if (this->private)
{
DBG1("%B", object);
}
else
{
DBG1("%B", object);
}
}
else if (obj.flags & ASN1_BODY)
{
*object = *blob1;
}
end:
*objectID = this->line;
return this->success;
}
METHOD(asn1_parser_t, get_level, u_int,
private_asn1_parser_t *this)
{
return this->level0 + this->objects[this->line].level;
}
METHOD(asn1_parser_t, set_top_level, void,
private_asn1_parser_t *this, u_int level0)
{
this->level0 = level0;
}
METHOD(asn1_parser_t, set_flags, void,
private_asn1_parser_t *this, bool implicit, bool private)
{
this->implicit = implicit;
this->private = private;
}
METHOD(asn1_parser_t, success, bool,
private_asn1_parser_t *this)
{
return this->success;
}
METHOD(asn1_parser_t, destroy, void,
private_asn1_parser_t *this)
{
free(this);
}
/**
* Defined in header.
*/
asn1_parser_t* asn1_parser_create(asn1Object_t const *objects, chunk_t blob)
{
private_asn1_parser_t *this;
this = malloc(sizeof(*this));
*this = (private_asn1_parser_t) {
.public = {
.iterate = _iterate,
.get_level = _get_level,
.set_top_level = _set_top_level,
.set_flags = _set_flags,
.success = _success,
.destroy = _destroy,
},
.objects = objects,
.blobs[0] = blob,
.line = -1,
.success = TRUE,
};
return &this->public;
}
|