1 /* $NetBSD: vendorid.c,v 1.7 2009/03/12 10:57:26 tteras Exp $ */
3 /* Id: vendorid.c,v 1.10 2006/02/22 16:10:21 vanhu Exp */
6 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the project 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.
21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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
36 #include <sys/types.h>
37 #include <sys/param.h>
51 #include "localconf.h"
52 #include "isakmp_var.h"
55 #include "crypto_openssl.h"
57 #include "remoteconf.h"
59 #include "nattraversal.h"
63 #include "isakmp_xauth.h"
64 #include "isakmp_cfg.h"
67 static struct vendor_id all_vendor_ids
[] = {
68 { VENDORID_IPSEC_TOOLS
, "IPSec-Tools" },
69 { VENDORID_GSSAPI_LONG
, "A GSS-API Authentication Method for IKE" },
70 { VENDORID_GSSAPI
, "GSSAPI" },
71 { VENDORID_MS_NT5
, "MS NT5 ISAKMPOAKLEY" },
72 { VENDORID_NATT_00
, "draft-ietf-ipsec-nat-t-ike-00" },
73 { VENDORID_NATT_01
, "draft-ietf-ipsec-nat-t-ike-01" },
74 { VENDORID_NATT_02
, "draft-ietf-ipsec-nat-t-ike-02" },
75 { VENDORID_NATT_02_N
, "draft-ietf-ipsec-nat-t-ike-02\n" },
76 { VENDORID_NATT_03
, "draft-ietf-ipsec-nat-t-ike-03" },
77 { VENDORID_NATT_04
, "draft-ietf-ipsec-nat-t-ike-04" },
78 { VENDORID_NATT_05
, "draft-ietf-ipsec-nat-t-ike-05" },
79 { VENDORID_NATT_06
, "draft-ietf-ipsec-nat-t-ike-06" },
80 { VENDORID_NATT_07
, "draft-ietf-ipsec-nat-t-ike-07" },
81 { VENDORID_NATT_08
, "draft-ietf-ipsec-nat-t-ike-08" },
82 { VENDORID_NATT_RFC
, "RFC 3947" },
83 { VENDORID_XAUTH
, "draft-ietf-ipsra-isakmp-xauth-06.txt" },
84 { VENDORID_UNITY
, "CISCO-UNITY" },
85 { VENDORID_FRAG
, "FRAGMENTATION" },
86 /* Just a readable string for DPD ... */
87 { VENDORID_DPD
, "DPD" },
88 /* Other known Vendor IDs */
89 { VENDORID_KAME
, "KAME/racoon" },
92 #define NUMVENDORIDS (sizeof(all_vendor_ids)/sizeof(all_vendor_ids[0]))
94 #define DPD_MAJOR_VERSION 0x01
95 #define DPD_MINOR_VERSION 0x00
97 const char vendorid_dpd_hash
[] = {
98 0xAF, 0xCA, 0xD7, 0x13,
99 0x68, 0xA1, 0xF1, 0xC9,
100 0x6B, 0x86, 0x96, 0xFC,
101 0x77, 0x57, DPD_MAJOR_VERSION
, DPD_MINOR_VERSION
105 static vchar_t
*vendorid_fixup(int, vchar_t
*t
);
107 static struct vendor_id
*
108 lookup_vendor_id_by_id (int id
)
112 for (i
= 0; i
< NUMVENDORIDS
; i
++)
113 if (all_vendor_ids
[i
].id
== id
)
114 return &all_vendor_ids
[i
];
120 vid_string_by_id (int id
)
122 struct vendor_id
*current
;
124 if (id
== VENDORID_DPD
)
125 return vendorid_dpd_hash
;
127 current
= lookup_vendor_id_by_id(id
);
129 return current
? current
->string
: NULL
;
132 static struct vendor_id
*
133 lookup_vendor_id_by_hash (const char *hash
)
136 unsigned char *h
= (unsigned char *)hash
;
138 for (i
= 0; i
< NUMVENDORIDS
; i
++)
139 if (strncmp(all_vendor_ids
[i
].hash
->v
, hash
,
140 all_vendor_ids
[i
].hash
->l
) == 0)
141 return &all_vendor_ids
[i
];
147 compute_vendorids (void)
152 for (i
= 0; i
< NUMVENDORIDS
; i
++) {
153 /* VENDORID_DPD is not a MD5 sum... */
154 if(all_vendor_ids
[i
].id
== VENDORID_DPD
){
155 all_vendor_ids
[i
].hash
= vmalloc(sizeof(vendorid_dpd_hash
));
156 if (all_vendor_ids
[i
].hash
== NULL
) {
157 plog(LLV_ERROR
, LOCATION
, NULL
,
158 "unable to get memory for VID hash\n");
159 exit(1); /* this really shouldn't happen */
161 memcpy(all_vendor_ids
[i
].hash
->v
, vendorid_dpd_hash
,
162 sizeof(vendorid_dpd_hash
));
166 vid
.v
= (char *) all_vendor_ids
[i
].string
;
167 vid
.l
= strlen(vid
.v
);
169 all_vendor_ids
[i
].hash
= eay_md5_one(&vid
);
170 if (all_vendor_ids
[i
].hash
== NULL
)
171 plog(LLV_ERROR
, LOCATION
, NULL
,
172 "unable to hash vendor ID string\n");
175 all_vendor_ids
[i
].hash
=
176 vendorid_fixup(all_vendor_ids
[i
].id
,
177 all_vendor_ids
[i
].hash
);
182 * set hashed vendor id.
183 * hash function is always MD5.
186 set_vendorid(int vendorid
)
188 struct vendor_id
*current
;
191 if (vendorid
== VENDORID_UNKNOWN
) {
193 * The default unknown ID gets translated to
196 vendorid
= VENDORID_DEFAULT
;
199 current
= lookup_vendor_id_by_id(vendorid
);
200 if (current
== NULL
) {
201 plog(LLV_ERROR
, LOCATION
, NULL
,
202 "invalid vendor ID index: %d\n", vendorid
);
206 /* The rest of racoon expects a private copy
207 * of the VID that could be free'd after use.
208 * That's why we don't return the original pointer. */
209 return vdup(current
->hash
);
213 * Check the vendor ID payload -- return the vendor ID index
214 * if we find a recognized one, or UNKNOWN if we don't.
216 * gen ... points to Vendor ID payload.
219 check_vendorid(struct isakmp_gen
*gen
)
221 vchar_t vid
, *vidhash
;
223 struct vendor_id
*current
;
226 return (VENDORID_UNKNOWN
);
228 vidlen
= ntohs(gen
->len
) - sizeof(*gen
);
230 current
= lookup_vendor_id_by_hash((char *)(gen
+ 1));
234 if (current
->hash
->l
< vidlen
)
235 plog(LLV_INFO
, LOCATION
, NULL
,
236 "received broken Microsoft ID: %s\n",
239 plog(LLV_INFO
, LOCATION
, NULL
,
240 "received Vendor ID: %s\n",
246 plog(LLV_DEBUG
, LOCATION
, NULL
, "received unknown Vendor ID\n");
247 plogdump(LLV_DEBUG
, (char *)(gen
+ 1), vidlen
);
248 return (VENDORID_UNKNOWN
);
252 handle_vendorid(struct ph1handle
*iph1
, struct isakmp_gen
*gen
)
256 vid_numeric
= check_vendorid(gen
);
257 if (vid_numeric
== VENDORID_UNKNOWN
)
260 iph1
->vendorid_mask
|= BIT(vid_numeric
);
263 if (natt_vendorid(vid_numeric
))
264 natt_handle_vendorid(iph1
, vid_numeric
);
267 switch (vid_numeric
) {
269 iph1
->mode_cfg
->flags
|= ISAKMP_CFG_VENDORID_XAUTH
;
272 iph1
->mode_cfg
->flags
|= ISAKMP_CFG_VENDORID_UNITY
;
279 if (vid_numeric
== VENDORID_DPD
&&
280 (iph1
->rmconf
== NULL
|| iph1
->rmconf
->dpd
)) {
281 iph1
->dpd_support
= 1;
282 plog(LLV_DEBUG
, LOCATION
, NULL
, "remote supports DPD\n");
290 vendorid_fixup(vendorid
, vidhash
)
295 case VENDORID_XAUTH
: { /* The vendor Id is truncated */
298 if ((tmp
= vmalloc(8)) == NULL
) {
299 plog(LLV_ERROR
, LOCATION
, NULL
,
300 "unable to hash vendor ID string\n");
304 memcpy(tmp
->v
, vidhash
->v
, 8);
310 case VENDORID_UNITY
: /* Two bytes tweak */
311 vidhash
->v
[14] = 0x01;
312 vidhash
->v
[15] = 0x00;