22c5aaacb35683b340afdb12c1931fd375f7218c
[openssl.git] / crypto / x509v3 / v3_sxnet.c
1 /* v3_sxnet.c */
2 /* Written by Dr Stephen N Henson (shenson@bigfoot.com) for the OpenSSL
3  * project 1999.
4  */
5 /* ====================================================================
6  * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer. 
14  *
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in
17  *    the documentation and/or other materials provided with the
18  *    distribution.
19  *
20  * 3. All advertising materials mentioning features or use of this
21  *    software must display the following acknowledgment:
22  *    "This product includes software developed by the OpenSSL Project
23  *    for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24  *
25  * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26  *    endorse or promote products derived from this software without
27  *    prior written permission. For written permission, please contact
28  *    licensing@OpenSSL.org.
29  *
30  * 5. Products derived from this software may not be called "OpenSSL"
31  *    nor may "OpenSSL" appear in their names without prior written
32  *    permission of the OpenSSL Project.
33  *
34  * 6. Redistributions of any form whatsoever must retain the following
35  *    acknowledgment:
36  *    "This product includes software developed by the OpenSSL Project
37  *    for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38  *
39  * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40  * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
43  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50  * OF THE POSSIBILITY OF SUCH DAMAGE.
51  * ====================================================================
52  *
53  * This product includes cryptographic software written by Eric Young
54  * (eay@cryptsoft.com).  This product includes software written by Tim
55  * Hudson (tjh@cryptsoft.com).
56  *
57  */
58
59 #include <stdio.h>
60 #include "cryptlib.h"
61 #include "conf.h"
62 #include "asn1.h"
63 #include "asn1_mac.h"
64 #include "x509v3.h"
65
66 /* Support for Thawte strong extranet extension */
67
68 #ifndef NOPROTO
69 static int sxnet_i2r(X509V3_EXT_METHOD *method, SXNET *sx, BIO *out, int indent);
70 #else
71 static int sxnet_i2r();
72 #endif
73
74 X509V3_EXT_METHOD v3_sxnet = {
75 NID_sxnet, X509V3_EXT_MULTILINE,
76 (X509V3_EXT_NEW)SXNET_new,
77 SXNET_free,
78 (X509V3_EXT_D2I)d2i_SXNET,
79 i2d_SXNET,
80 NULL, NULL,
81 NULL, NULL,
82 (X509V3_EXT_I2R)sxnet_i2r,
83 NULL,
84 NULL
85 };
86
87
88 /*
89  * ASN1err(ASN1_F_SXNET_NEW,ERR_R_MALLOC_FAILURE);
90  * ASN1err(ASN1_F_D2I_SXNET,ERR_R_MALLOC_FAILURE);
91  * ASN1err(ASN1_F_SXNETID_NEW,ERR_R_MALLOC_FAILURE);
92  * ASN1err(ASN1_F_D2I_SXNETID,ERR_R_MALLOC_FAILURE);
93  */
94
95 int i2d_SXNET(a,pp)
96 SXNET *a;
97 unsigned char **pp;
98 {
99         M_ASN1_I2D_vars(a);
100
101         M_ASN1_I2D_len (a->version, i2d_ASN1_INTEGER);
102         M_ASN1_I2D_len_SEQUENCE (a->ids, i2d_SXNETID);
103
104         M_ASN1_I2D_seq_total();
105
106         M_ASN1_I2D_put (a->version, i2d_ASN1_INTEGER);
107         M_ASN1_I2D_put_SEQUENCE (a->ids, i2d_SXNETID);
108
109         M_ASN1_I2D_finish();
110 }
111
112 SXNET *SXNET_new()
113 {
114         SXNET *ret=NULL;
115         ASN1_CTX c;
116         M_ASN1_New_Malloc(ret, SXNET);
117         ret->version = NULL;
118         ret->ids = NULL;
119         return (ret);
120         M_ASN1_New_Error(ASN1_F_SXNET_NEW);
121 }
122
123 SXNET *d2i_SXNET(a,pp,length)
124 SXNET **a;
125 unsigned char **pp;
126 long length;
127 {
128         M_ASN1_D2I_vars(a,SXNET *,SXNET_new);
129         M_ASN1_D2I_Init();
130         M_ASN1_D2I_start_sequence();
131         M_ASN1_D2I_get (ret->version, d2i_ASN1_INTEGER);
132         M_ASN1_D2I_get_seq (ret->ids, d2i_SXNETID, SXNETID_free);
133         M_ASN1_D2I_Finish(a, SXNET_free, ASN1_F_D2I_SXNET);
134 }
135
136 void SXNET_free(a)
137 SXNET *a;
138 {
139         if (a == NULL) return;
140         ASN1_INTEGER_free(a->version);
141         sk_pop_free(a->ids, SXNETID_free);
142         Free ((char *)a);
143 }
144
145
146
147 int i2d_SXNETID(a,pp)
148 SXNETID *a;
149 unsigned char **pp;
150 {
151         M_ASN1_I2D_vars(a);
152
153         M_ASN1_I2D_len (a->zone, i2d_ASN1_INTEGER);
154         M_ASN1_I2D_len (a->user, i2d_ASN1_OCTET_STRING);
155
156         M_ASN1_I2D_seq_total();
157
158         M_ASN1_I2D_put (a->zone, i2d_ASN1_INTEGER);
159         M_ASN1_I2D_put (a->user, i2d_ASN1_OCTET_STRING);
160
161         M_ASN1_I2D_finish();
162 }
163
164 SXNETID *SXNETID_new()
165 {
166         SXNETID *ret=NULL;
167         ASN1_CTX c;
168         M_ASN1_New_Malloc(ret, SXNETID);
169         ret->zone = NULL;
170         M_ASN1_New(ret->user,ASN1_OCTET_STRING_new);
171         return (ret);
172         M_ASN1_New_Error(ASN1_F_SXNETID_NEW);
173 }
174
175 SXNETID *d2i_SXNETID(a,pp,length)
176 SXNETID **a;
177 unsigned char **pp;
178 long length;
179 {
180         M_ASN1_D2I_vars(a,SXNETID *,SXNETID_new);
181         M_ASN1_D2I_Init();
182         M_ASN1_D2I_start_sequence();
183         M_ASN1_D2I_get(ret->zone, d2i_ASN1_INTEGER);
184         M_ASN1_D2I_get(ret->user, d2i_ASN1_OCTET_STRING);
185         M_ASN1_D2I_Finish(a, SXNETID_free, ASN1_F_D2I_SXNETID);
186 }
187
188 void SXNETID_free(a)
189 SXNETID *a;
190 {
191         if (a == NULL) return;
192         ASN1_INTEGER_free(a->zone);
193         ASN1_OCTET_STRING_free(a->user);
194         Free ((char *)a);
195 }
196
197 static int sxnet_i2r(method, sx, out, indent)
198 X509V3_EXT_METHOD *method;
199 SXNET *sx;
200 BIO *out;
201 int indent;
202 {
203         long v;
204         char *tmp;
205         SXNETID *id;
206         int i;
207         v = ASN1_INTEGER_get(sx->version);
208         BIO_printf(out, "%*sVersion: %d (0x%X)", indent, "", v + 1, v);
209         for(i = 0; i < sk_num(sx->ids); i++) {
210                 id = (SXNETID *)sk_value(sx->ids, i);
211                 tmp = i2s_ASN1_INTEGER(NULL, id->zone);
212                 BIO_printf(out, "\n%*sZone: %s, User: ", indent, "", tmp);
213                 Free(tmp);
214                 ASN1_OCTET_STRING_print(out, id->user);
215         }
216         return 1;
217 }