eccedf10433831650c1019f43bed92809324d9c5
[sfrench/samba-autobuild/.git] / source4 / heimdal / lib / hx509 / peer.c
1 /*
2  * Copyright (c) 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 #include "hx_locl.h"
35 RCSID("$Id: peer.c 20938 2007-06-06 20:51:34Z lha $");
36
37 int
38 hx509_peer_info_alloc(hx509_context context, hx509_peer_info *peer)
39 {
40     *peer = calloc(1, sizeof(**peer));
41     if (*peer == NULL) {
42         hx509_set_error_string(context, 0, ENOMEM, "out of memory");
43         return ENOMEM;
44     }
45     return 0;
46 }
47
48
49 static void
50 free_cms_alg(hx509_peer_info peer)
51 {
52     if (peer->val) {
53         size_t i;
54         for (i = 0; i < peer->len; i++)
55             free_AlgorithmIdentifier(&peer->val[i]);
56         free(peer->val);
57         peer->val = NULL;
58         peer->len = 0;
59     }
60 }
61
62 void
63 hx509_peer_info_free(hx509_peer_info peer)
64 {
65     if (peer == NULL)
66         return;
67     if (peer->cert)
68         hx509_cert_free(peer->cert);
69     free_cms_alg(peer);
70     memset(peer, 0, sizeof(*peer));
71     free(peer);
72 }
73
74 int
75 hx509_peer_info_set_cert(hx509_peer_info peer,
76                          hx509_cert cert)
77 {
78     if (peer->cert)
79         hx509_cert_free(peer->cert);
80     peer->cert = hx509_cert_ref(cert);
81     return 0;
82 }
83
84 int
85 hx509_peer_info_set_cms_algs(hx509_context context,
86                              hx509_peer_info peer,
87                              const AlgorithmIdentifier *val,
88                              size_t len)
89 {
90     size_t i;
91
92     free_cms_alg(peer);
93
94     peer->val = calloc(len, sizeof(*peer->val));
95     if (peer->val == NULL) {
96         peer->len = 0;
97         hx509_set_error_string(context, 0, ENOMEM, "out of memory");
98         return ENOMEM;
99     }
100     peer->len = len;
101     for (i = 0; i < len; i++) {
102         int ret;
103         ret = copy_AlgorithmIdentifier(&val[i], &peer->val[i]);
104         if (ret) {
105             hx509_clear_error_string(context);
106             free_cms_alg(peer);
107             return ret;
108         }
109     }
110     return 0;
111 }
112
113 #if 0
114
115 /*
116  * S/MIME
117  */
118
119 int
120 hx509_peer_info_parse_smime(hx509_peer_info peer,
121                             const heim_octet_string *data)
122 {
123     return 0;
124 }
125
126 int
127 hx509_peer_info_unparse_smime(hx509_peer_info peer,
128                               heim_octet_string *data)
129 {
130     return 0;
131 }
132
133 /*
134  * For storing hx509_peer_info to be able to cache them.
135  */
136
137 int
138 hx509_peer_info_parse(hx509_peer_info peer,
139                       const heim_octet_string *data)
140 {
141     return 0;
142 }
143
144 int
145 hx509_peer_info_unparse(hx509_peer_info peer,
146                      heim_octet_string *data)
147 {
148     return 0;
149 }
150 #endif