summaryrefslogtreecommitdiff
path: root/tests/dane.c
blob: 3c8ca5863183c65a3fa9351ccaf75ac6169c8f07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*
 * Copyright (C) 2014 Red Hat
 *
 * Author: Nikos Mavrogiannopoulos
 *
 * This file is part of GnuTLS.
 *
 * GnuTLS is free software; you can redistribute it and/or modify it
 * under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3 of the License, or
 * (at your option) any later version.
 *
 * GnuTLS is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with GnuTLS; if not, write to the Free Software Foundation,
 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
 */

#ifdef HAVE_CONFIG_H
#include <config.h>
#endif

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <gnutls/gnutls.h>
#include <gnutls/dane.h>

#include "utils.h"

char * const data_entries[] = {
	(char*)"\x00\x00\x01\x19\x40\x0b\xe5\xb7\xa3\x1f\xb7\x33\x91\x77\x00\x78\x9d\x2f\x0a\x24\x71\xc0\xc9\xd5\x06\xc0\xe5\x04\xc0\x6c\x16\xd7\xcb\x17\xc0",
	(char*)"\x03\x00\x01\x03\x32\xaa\x2d\x58\xb3\xe0\x54\x4b\x65\x65\x64\x38\x93\x70\x68\xba\x44\xce\x2f\x14\x46\x9c\x4f\x50\xc9\xcc\x69\x33\xc8\x08\xd3",
	(char*)"\x03\x01\x01\x46\x25\x73\x19\x5c\x86\xe8\x61\xab\xab\x8e\xcc\xfb\xc7\xf0\x48\x69\x58\xef\xdf\xf9\x44\x9a\xc1\x07\x29\xb3\xa0\xf9\x06\xf3\x88",
	NULL
};

int data_entries_size[] = {
	35,
	35,
	35,
	0
};

static void dane_raw_check(void)
{
	dane_state_t s;
	dane_query_t r;
	int ret;
	unsigned int entries, i;
	char **r_data;
	int *r_data_len;
	int secure;
	int bogus;

	ret = dane_state_init(&s, DANE_F_IGNORE_LOCAL_RESOLVER);
	if (ret < 0) {
		fail("dane_state_init: %s\n", dane_strerror(ret));
	}

	ret = dane_raw_tlsa(s, &r, data_entries, data_entries_size, 1, 0);
	if (ret < 0) {
		fail("%d: %s\n", __LINE__, dane_strerror(ret));
	}

	ret = dane_query_to_raw_tlsa(r, &entries, &r_data, &r_data_len, &secure, &bogus);
	if (ret < 0) {
		fail("%d: %s\n", __LINE__, dane_strerror(ret));
	}

	if (entries != 3)
		fail("%d: %s\n", __LINE__, dane_strerror(ret));

	if (secure != 1)
		fail("%d: %s\n", __LINE__, dane_strerror(ret));

	if (bogus != 0)
		fail("%d: %s\n", __LINE__, dane_strerror(ret));

	for (i=0;i<entries;i++) {
		if (r_data_len[i] != data_entries_size[i])
			fail("%d: %s\n", __LINE__, dane_strerror(ret));

		if (memcmp(r_data[i], data_entries[i], r_data_len[i]) != 0)
			fail("%d: %s\n", __LINE__, dane_strerror(ret));
	}

	gnutls_free(r_data);
	gnutls_free(r_data_len);

	dane_query_deinit(r);
	dane_state_deinit(s);
}

void doit(void)
{
	int ret;

	ret = global_init();
	if (ret < 0) {
		fail("global_init\n");
		exit(1);
	}

	dane_raw_check();

	/* we're done */

	gnutls_global_deinit();
}