/src/openssl/crypto/objects/obj_lib.c
Line | Count | Source (jump to first uncovered line) |
1 | | /* |
2 | | * Copyright 1995-2017 The OpenSSL Project Authors. All Rights Reserved. |
3 | | * |
4 | | * Licensed under the OpenSSL license (the "License"). You may not use |
5 | | * this file except in compliance with the License. You can obtain a copy |
6 | | * in the file LICENSE in the source distribution or at |
7 | | * https://www.openssl.org/source/license.html |
8 | | */ |
9 | | |
10 | | #include <stdio.h> |
11 | | #include "internal/cryptlib.h" |
12 | | #include <openssl/objects.h> |
13 | | #include <openssl/buffer.h> |
14 | | #include "internal/asn1_int.h" |
15 | | |
16 | | ASN1_OBJECT *OBJ_dup(const ASN1_OBJECT *o) |
17 | 0 | { |
18 | 0 | ASN1_OBJECT *r; |
19 | 0 |
|
20 | 0 | if (o == NULL) |
21 | 0 | return NULL; |
22 | 0 | /* If object isn't dynamic it's an internal OID which is never freed */ |
23 | 0 | if (!(o->flags & ASN1_OBJECT_FLAG_DYNAMIC)) |
24 | 0 | return (ASN1_OBJECT *)o; |
25 | 0 | |
26 | 0 | r = ASN1_OBJECT_new(); |
27 | 0 | if (r == NULL) { |
28 | 0 | OBJerr(OBJ_F_OBJ_DUP, ERR_R_ASN1_LIB); |
29 | 0 | return NULL; |
30 | 0 | } |
31 | 0 |
|
32 | 0 | /* Set dynamic flags so everything gets freed up on error */ |
33 | 0 |
|
34 | 0 | r->flags = o->flags | (ASN1_OBJECT_FLAG_DYNAMIC | |
35 | 0 | ASN1_OBJECT_FLAG_DYNAMIC_STRINGS | |
36 | 0 | ASN1_OBJECT_FLAG_DYNAMIC_DATA); |
37 | 0 |
|
38 | 0 | if (o->length > 0 && (r->data = OPENSSL_memdup(o->data, o->length)) == NULL) |
39 | 0 | goto err; |
40 | 0 | |
41 | 0 | r->length = o->length; |
42 | 0 | r->nid = o->nid; |
43 | 0 |
|
44 | 0 | if (o->ln != NULL && (r->ln = OPENSSL_strdup(o->ln)) == NULL) |
45 | 0 | goto err; |
46 | 0 | |
47 | 0 | if (o->sn != NULL && (r->sn = OPENSSL_strdup(o->sn)) == NULL) |
48 | 0 | goto err; |
49 | 0 | |
50 | 0 | return r; |
51 | 0 | err: |
52 | 0 | ASN1_OBJECT_free(r); |
53 | 0 | OBJerr(OBJ_F_OBJ_DUP, ERR_R_MALLOC_FAILURE); |
54 | 0 | return NULL; |
55 | 0 | } |
56 | | |
57 | | int OBJ_cmp(const ASN1_OBJECT *a, const ASN1_OBJECT *b) |
58 | 0 | { |
59 | 0 | int ret; |
60 | 0 |
|
61 | 0 | ret = (a->length - b->length); |
62 | 0 | if (ret) |
63 | 0 | return ret; |
64 | 0 | return memcmp(a->data, b->data, a->length); |
65 | 0 | } |