forked from cetic/tinydtls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeer.c
109 lines (91 loc) · 3.21 KB
/
peer.c
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
/* dtls -- a very basic DTLS implementation
*
* Copyright (C) 2011--2013 Olaf Bergmann <[email protected]>
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include "peer.h"
#include "debug.h"
extern void dtls_peer_timeout(void *);
#ifndef WITH_CONTIKI
void peer_init()
{
}
static inline dtls_peer_t *
dtls_malloc_peer() {
return (dtls_peer_t *)malloc(sizeof(dtls_peer_t));
}
void
dtls_free_peer(dtls_peer_t *peer) {
dtls_cipher_free(peer->security_params.read_cipher);
dtls_cipher_free(peer->security_params.write_cipher);
free(peer);
}
#else /* WITH_CONTIKI */
#include "memb.h"
MEMB(peer_storage, dtls_peer_t, DTLS_PEER_MAX);
void
peer_init() {
memb_init(&peer_storage);
}
static inline dtls_peer_t *
dtls_malloc_peer() {
return memb_alloc(&peer_storage);
}
void
dtls_free_peer(dtls_peer_t *peer) {
#if defined WITH_CONTIKI && DTLS_CONN_TIMEOUT
ctimer_stop(&peer->timeout);
#endif
dtls_cipher_free(peer->security_params.read_cipher);
dtls_cipher_free(peer->security_params.write_cipher);
memb_free(&peer_storage, peer);
}
#endif /* WITH_CONTIKI */
dtls_peer_t *
dtls_new_peer(struct dtls_context_t *ctx, const session_t *session) {
dtls_peer_t *peer;
peer = dtls_malloc_peer();
if (peer) {
memset(peer, 0, sizeof(dtls_peer_t));
peer->ctx = ctx;
memcpy(&peer->session, session, sizeof(session_t));
dtls_dsrv_log_addr(LOG_DEBUG, "dtls_new_peer", session);
/* initially allow the NULL cipher */
peer->security_params.cipher = TLS_NULL_WITH_NULL_NULL;
peer->security_params.compression = TLS_COMPRESSION_NULL;
/* initialize the handshake hash wrt. the hard-coded DTLS version */
debug("DTLSv12: initialize HASH_SHA256\n");
/* TLS 1.2: PRF(secret, label, seed) = P_<hash>(secret, label + seed) */
/* FIXME: we use the default SHA256 here, might need to support other
hash functions as well */
dtls_hash_init(&peer->hs_state.hs_hash);
#if defined WITH_CONTIKI && DTLS_CONN_TIMEOUT
ctimer_set(&peer->timeout, DTLS_CONN_TIMEOUT*CLOCK_SECOND, dtls_peer_timeout, peer);
#endif
}
return peer;
}
void dtls_peer_refresh_timeout(dtls_peer_t *peer) {
#if defined WITH_CONTIKI && DTLS_CONN_TIMEOUT
ctimer_restart(&peer->timeout);
#endif
}