diff options
author | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-07-02 13:19:01 +0000 |
---|---|---|
committer | Hans-Joerg Hoexer <hshoexer@cvs.openbsd.org> | 2006-07-02 13:19:01 +0000 |
commit | 20a8362552c7f77707c30f82aba94676121250a3 (patch) | |
tree | 5be40a84ea2adef83428c57aa237574a5e9dc3be /sbin/isakmpd/vendor.c | |
parent | 36207a330ccf1cae7cf91b22b4e4b123030ab8be (diff) |
Let isakmpd send out a vendor ID announcing isamkpds release version.
Will be handy for release specific bug fixes, etc. Suggested by
markus@ quite some time ago.
ok markus@
Diffstat (limited to 'sbin/isakmpd/vendor.c')
-rw-r--r-- | sbin/isakmpd/vendor.c | 140 |
1 files changed, 140 insertions, 0 deletions
diff --git a/sbin/isakmpd/vendor.c b/sbin/isakmpd/vendor.c new file mode 100644 index 00000000000..e10ace8acee --- /dev/null +++ b/sbin/isakmpd/vendor.c @@ -0,0 +1,140 @@ +/* $OpenBSD: */ +/* + * Copyright (c) 2006 Hans-Joerg Hoexer <hshoexer@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/types.h> +#include <stdlib.h> +#include <string.h> + +#include "exchange.h" +#include "hash.h" +#include "log.h" +#include "message.h" +#include "vendor.h" + +static struct vendor_cap openbsd_vendor_cap[] = { + { "OpenBSD-4.0", NULL, 0 }, +}; + +#define NUMVIDS (sizeof openbsd_vendor_cap / sizeof openbsd_vendor_cap[0]) + +static int +setup_vendor_hashes(void) +{ + struct hash *hash; + int i, n = NUMVIDS; + + hash = hash_get(HASH_MD5); + if (!hash) { + log_print("setup_vendor_hashes: could not find MD5 hash"); + return (-1); + } + + for (i = 0; i < n; i++) { + openbsd_vendor_cap[i].hashsize = hash->hashsize; + openbsd_vendor_cap[i].hash = calloc(hash->hashsize, + sizeof(u_int8_t)); + if (openbsd_vendor_cap[i].hash == NULL) { + log_error("setup_vendor_hashes: calloc failed"); + goto errout; + } + + hash->Init(hash->ctx); + hash->Update(hash->ctx, + (unsigned char *)openbsd_vendor_cap[i].text, + strlen(openbsd_vendor_cap[i].text)); + hash->Final(openbsd_vendor_cap[i].hash, hash->ctx); + + LOG_DBG((LOG_EXCHANGE, 50, "setup_vendor_hashes: " + "MD5(\"%s\") (%lu bytes)", openbsd_vendor_cap[i].text, + (unsigned long)hash->hashsize)); + LOG_DBG_BUF((LOG_EXCHANGE, 50, "setup_vendor_hashes", + openbsd_vendor_cap[i].hash, hash->hashsize)); + } + return (0); + +errout: + for (i = 0; i < n; i++) + if (openbsd_vendor_cap[i].hash) + free(openbsd_vendor_cap[i].hash); + return (-1); +} + +void +vendor_init(void) +{ + setup_vendor_hashes(); +} + +int +add_vendor_openbsd(struct message *msg) +{ + u_int8_t *buf; + size_t buflen; + int i, n = NUMVIDS; + + for (i = 0; i < n; i++) { + buflen = openbsd_vendor_cap[i].hashsize + ISAKMP_GEN_SZ; + if ((buf = calloc(buflen, sizeof(char))) == NULL) { + log_error("add_vendor_payload: calloc(%lu) failed", + (unsigned long)buflen); + return (-1); + } + + SET_ISAKMP_GEN_LENGTH(buf, buflen); + memcpy(buf + ISAKMP_VENDOR_ID_OFF, openbsd_vendor_cap[i].hash, + openbsd_vendor_cap[i].hashsize); + if (message_add_payload(msg, ISAKMP_PAYLOAD_VENDOR, buf, + buflen, 1)) { + free(buf); + return (-1); + } + } + + return (0); +} + +void +check_vendor_openbsd(struct message *msg, struct payload *p) +{ + u_int8_t *pbuf = p->p; + ssize_t vlen; + int i, n = NUMVIDS; + + if (msg->exchange->flags & EXCHANGE_FLAG_OPENBSD) { + p->flags |= PL_MARK; + return; + } + + vlen = GET_ISAKMP_GEN_LENGTH(pbuf) - ISAKMP_GEN_SZ; + + for (i = 0; i < n; i++) { + if (vlen != openbsd_vendor_cap[i].hashsize) { + LOG_DBG((LOG_EXCHANGE, 90, + "check_vendor_openbsd: bad size %lu != %lu", + (unsigned long)vlen, + (unsigned long)openbsd_vendor_cap[i].hashsize)); + continue; + } + if (memcmp(openbsd_vendor_cap[i].hash, pbuf + ISAKMP_GEN_SZ, + vlen) == 0) { + msg->exchange->flags |= EXCHANGE_FLAG_OPENBSD; + LOG_DBG((LOG_EXCHANGE, 10, "check_vendor_openbsd: " + "OpenBSD (%s)", openbsd_vendor_cap[i].text)); + } + p->flags |= PL_MARK; + } +} |