78d158f8b19c1c6d0236244ceb79328ea3131623
[tprouty/samba.git] / source / heimdal / lib / hx509 / hx_locl.h
1 /*
2  * Copyright (c) 2004 - 2006 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden). 
4  * All rights reserved. 
5  *
6  * Redistribution and use in source and binary forms, with or without 
7  * modification, are permitted provided that the following conditions 
8  * are met: 
9  *
10  * 1. Redistributions of source code must retain the above copyright 
11  *    notice, this list of conditions and the following disclaimer. 
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright 
14  *    notice, this list of conditions and the following disclaimer in the 
15  *    documentation and/or other materials provided with the distribution. 
16  *
17  * 3. Neither the name of the Institute nor the names of its contributors 
18  *    may be used to endorse or promote products derived from this software 
19  *    without specific prior written permission. 
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
31  * SUCH DAMAGE. 
32  */
33
34 /* $Id: hx_locl.h,v 1.30 2007/01/09 10:52:06 lha Exp $ */
35
36 #ifdef HAVE_CONFIG_H
37 #include <config.h>
38 #endif
39
40 #include <stdio.h>
41 #include <stdlib.h>
42 #include <ctype.h>
43 #include <errno.h>
44 #include <strings.h>
45 #include <assert.h>
46 #include <stdarg.h>
47 #include <err.h>
48 #include <getarg.h>
49 #include <base64.h>
50 #include <hex.h>
51 #include <roken.h>
52 #include <com_err.h>
53 #include <parse_units.h>
54 #include <parse_bytes.h>
55
56 #include <krb5-types.h>
57
58 #include <rfc2459_asn1.h>
59 #include <cms_asn1.h>
60 #include <pkcs8_asn1.h>
61 #include <pkcs9_asn1.h>
62 #include <pkcs12_asn1.h>
63 #include <ocsp_asn1.h>
64 #include <pkcs10_asn1.h>
65 #include <asn1_err.h>
66 #include <pkinit_asn1.h>
67
68 #include <der.h>
69
70 #include "crypto-headers.h"
71
72 struct hx509_keyset_ops;
73 struct hx509_collector;
74 typedef struct hx509_path hx509_path;
75
76 #include <hx509.h>
77
78 typedef void (*_hx509_cert_release_func)(struct hx509_cert_data *, void *);
79
80 typedef struct hx509_private_key_ops hx509_private_key_ops;
81
82 #include <hx509-private.h>
83 #include <hx509_err.h>
84
85 struct hx509_peer_info {
86     hx509_cert cert;
87     AlgorithmIdentifier *val;
88     size_t len;
89 };
90
91 #define HX509_CERTS_FIND_SERIALNUMBER           1
92 #define HX509_CERTS_FIND_ISSUER                 2
93 #define HX509_CERTS_FIND_SUBJECT                4
94 #define HX509_CERTS_FIND_ISSUER_KEY_ID          8
95 #define HX509_CERTS_FIND_SUBJECT_KEY_ID         16
96
97 struct hx509_name_data {
98     Name der_name;
99 };
100
101 struct hx509_path {
102     size_t len;
103     hx509_cert *val;
104 };
105
106 struct hx509_query_data {
107     int match;
108 #define HX509_QUERY_FIND_ISSUER_CERT            0x000001
109 #define HX509_QUERY_MATCH_SERIALNUMBER          0x000002
110 #define HX509_QUERY_MATCH_ISSUER_NAME           0x000004
111 #define HX509_QUERY_MATCH_SUBJECT_NAME          0x000008
112 #define HX509_QUERY_MATCH_SUBJECT_KEY_ID        0x000010
113 #define HX509_QUERY_MATCH_ISSUER_ID             0x000020
114 #define HX509_QUERY_PRIVATE_KEY                 0x000040
115 #define HX509_QUERY_KU_ENCIPHERMENT             0x000080
116 #define HX509_QUERY_KU_DIGITALSIGNATURE         0x000100
117 #define HX509_QUERY_KU_KEYCERTSIGN              0x000200
118 #define HX509_QUERY_KU_CRLSIGN                  0x000400
119 #define HX509_QUERY_KU_NONREPUDIATION           0x000800
120 #define HX509_QUERY_KU_KEYAGREEMENT             0x001000
121 #define HX509_QUERY_KU_DATAENCIPHERMENT         0x002000
122 #define HX509_QUERY_ANCHOR                      0x004000
123 #define HX509_QUERY_MATCH_CERTIFICATE           0x008000
124 #define HX509_QUERY_MATCH_LOCAL_KEY_ID          0x010000
125 #define HX509_QUERY_NO_MATCH_PATH               0x020000
126 #define HX509_QUERY_MATCH_FRIENDLY_NAME         0x040000
127 #define HX509_QUERY_MATCH_FUNCTION              0x080000
128 #define HX509_QUERY_MATCH_KEY_HASH_SHA1         0x100000
129 #define HX509_QUERY_MATCH_TIME                  0x200000
130 #define HX509_QUERY_MASK                        0x3fffff
131     Certificate *subject;
132     Certificate *certificate;
133     heim_integer *serial;
134     heim_octet_string *subject_id;
135     heim_octet_string *local_key_id;
136     Name *issuer_name;
137     Name *subject_name;
138     hx509_path *path;
139     char *friendlyname;
140     int (*cmp_func)(void *, hx509_cert);
141     void *cmp_func_ctx;
142     heim_octet_string *keyhash_sha1;
143     time_t timenow;
144 };
145
146 struct hx509_keyset_ops {
147     char *name;
148     int flags;
149     int (*init)(hx509_context, hx509_certs, void **, 
150                 int, const char *, hx509_lock);
151     int (*store)(hx509_context, hx509_certs, void *, int, hx509_lock);
152     int (*free)(hx509_certs, void *);
153     int (*add)(hx509_context, hx509_certs, void *, hx509_cert);
154     int (*query)(hx509_context, hx509_certs, void *, 
155                  const hx509_query *, hx509_cert *);
156     int (*iter_start)(hx509_context, hx509_certs, void *, void **);
157     int (*iter)(hx509_context, hx509_certs, void *, void *, hx509_cert *);
158     int (*iter_end)(hx509_context, hx509_certs, void *, void *);
159     int (*printinfo)(hx509_context, hx509_certs, 
160                      void *, int (*)(void *, char *), void *);
161     int (*getkeys)(hx509_context, hx509_certs, void *, hx509_private_key **);
162     int (*addkey)(hx509_context, hx509_certs, void *, hx509_private_key);
163 };
164
165 struct _hx509_password {
166     size_t len;
167     char **val;
168 };
169
170 extern hx509_lock _hx509_empty_lock;
171
172 struct hx509_context_data {
173     struct hx509_keyset_ops **ks_ops;
174     int ks_num_ops;
175     int flags;
176 #define HX509_CTX_VERIFY_MISSING_OK     1
177     int ocsp_time_diff;
178 #define HX509_DEFAULT_OCSP_TIME_DIFF    (5*60)
179     hx509_error error;
180     struct et_list *et_list;
181 };
182
183 /* _hx509_calculate_path flag field */
184 #define HX509_CALCULATE_PATH_NO_ANCHOR 1