summaryrefslogtreecommitdiffstats
path: root/tinyRTP/src/trtp_srtp.c
blob: 5e2d0337b8633c1c4624495eed19abdb7f0be049 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
/*
 * Copyright (C) 2012 Mamadou Diop
 * Copyright (C) 2012-2013 Doubango Telecom <http://www.doubango.org>
 *
 * This file is part of Open Source Doubango Framework.
 *
 * DOUBANGO 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.
 *
 * DOUBANGO 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 DOUBANGO.
 *
 */
/**@file trtp_srtp.c
 */
#include "tinyrtp/trtp_srtp.h"
#include "tinyrtp/trtp_manager.h"

#if HAVE_SRTP

extern err_status_t
crypto_get_random(unsigned char *buffer, unsigned int length);

int trtp_srtp_ctx_internal_init(struct trtp_srtp_ctx_internal_xs* ctx, int32_t tag, trtp_srtp_crypto_type_t type, uint32_t ssrc)
{
    char* key_str = ctx->key_str;
    err_status_t srtp_err;
    tsk_size_t size;
    
    if (!ctx) {
        TSK_DEBUG_ERROR("Invalid parameter");
        return -1;
    }
    
    if (ctx->initialized) {
        trtp_srtp_ctx_internal_deinit(ctx);
    }
    
    ctx->tag = tag;
    ctx->crypto_type = type;
    if (!ctx->have_valid_key) { // use same key to avoid unseless SRTP re-negs (also fix interop-issues against buggy clients -reINVITEs-)
        if ((srtp_err = crypto_get_random((unsigned char*)ctx->key_bin, sizeof(ctx->key_bin))) != err_status_ok) {
            TSK_DEBUG_ERROR("crypto_get_random() failed");
            return -2;
        }
        size = tsk_base64_encode((const uint8_t*)ctx->key_bin, sizeof(ctx->key_bin), &key_str);
        key_str[size] = '\0';
        ctx->have_valid_key = tsk_true;
    }
    
    switch(ctx->crypto_type){
        case HMAC_SHA1_80:
        {
            crypto_policy_set_aes_cm_128_hmac_sha1_80(&ctx->policy.rtp);
            crypto_policy_set_aes_cm_128_hmac_sha1_80(&ctx->policy.rtcp);
            break;
        }
        case HMAC_SHA1_32:
        default:
        {
            crypto_policy_set_aes_cm_128_hmac_sha1_32(&ctx->policy.rtp);
            crypto_policy_set_aes_cm_128_hmac_sha1_80(&ctx->policy.rtcp); // RTCP always 80
            break;
        }
    }
    
    ctx->policy.key = (unsigned char*)ctx->key_bin;
    ctx->policy.ssrc.type = ssrc_any_outbound;
    ctx->policy.ssrc.value = ssrc;
    ctx->policy.window_size = 2048;
    ctx->policy.allow_repeat_tx = 1;
    if ((srtp_err = srtp_create(&ctx->session, &ctx->policy)) != err_status_ok) {
        TSK_DEBUG_ERROR("srtp_create() failed");
        return -3;
    }
    ctx->initialized = tsk_true;
    return 0;
}

int trtp_srtp_ctx_internal_deinit(struct trtp_srtp_ctx_internal_xs* ctx)
{
    if(!ctx){
        TSK_DEBUG_ERROR("Invalid parameter");
        return -1;
    }
    if(ctx->initialized){
        /*err_status_t srtp_err =*/ srtp_dealloc(ctx->session);
        memset(&ctx->policy, 0, sizeof(ctx->policy));
        ctx->initialized = tsk_false;
    }
    return 0;
}

int trtp_srtp_ctx_init(trtp_srtp_ctx_xt* ctx, int32_t tag, trtp_srtp_crypto_type_t type, uint32_t ssrc)
{
    int ret;
    if(!ctx){
        TSK_DEBUG_ERROR("Invalid parameter");
        return -1;
    }
    if((ret = trtp_srtp_ctx_internal_init(&ctx->rtp, tag, type, ssrc))){
        return ret;
    }
    return trtp_srtp_ctx_internal_init(&ctx->rtcp, tag, type, ssrc);
}

int trtp_srtp_ctx_deinit(trtp_srtp_ctx_xt* ctx)
{
    int ret;
    if(!ctx){
        TSK_DEBUG_ERROR("Invalid parameter");
        return -1;
    }
    if((ret = trtp_srtp_ctx_internal_deinit(&ctx->rtp))){
        return ret;
    }
    return trtp_srtp_ctx_internal_deinit(&ctx->rtcp);
}

int trtp_srtp_match_line(const char* crypto_line, int32_t* tag, int32_t* crypto_type, char* key, tsk_size_t key_size)
{
    char* copyptr = tsk_strdup(crypto_line); // "strtok_r" will insert "\0" and modify the string
    char* saveptr = tsk_null;
    char* v = tsk_strtok_r(copyptr, " :|;", &saveptr);
    int32_t k = 0;
    int ret = -0xF0;
    while(v){
        switch(k){
            case 0:
            {
                if(tag){
                    *tag = atoi(v);
                }
                break;
            }
            case 1:
            {
                if(tsk_striequals(v, TRTP_SRTP_AES_CM_128_HMAC_SHA1_80)){
                    if(crypto_type){
                        *crypto_type = HMAC_SHA1_80;
                    }
                }
                else if(tsk_striequals(v, TRTP_SRTP_AES_CM_128_HMAC_SHA1_32)){
                    if(crypto_type){
                        *crypto_type = HMAC_SHA1_32;
                    }
                }
                else {
                    ret = -0xFF; goto bail;
                }
                break;
            }
            case 2:
            {
                if(!tsk_striequals(v, "inline")){
                    ret = -0xFF; goto bail;
                }
                break;
            }
            case 3:
            {
                if(key && key_size){
                    memset(key, 0, key_size);
                    memcpy(key, v, TSK_MIN(key_size, tsk_strlen(v)));
                }
                ret = 0; goto bail;
            }
        }
        ++k;
        v = tsk_strtok_r(tsk_null, " :|;", &saveptr);
    }
bail:
    TSK_FREE(copyptr);
    return ret;
}

tsk_size_t trtp_srtp_get_local_contexts(trtp_manager_t* rtp_mgr, const struct trtp_srtp_ctx_xs ** contexts, tsk_size_t contexts_count)
{
    tsk_size_t ret = 0;
    if(!rtp_mgr || !contexts){
        TSK_DEBUG_ERROR("Invalid parameter");
        return 0;
    }
    
    if (contexts_count > ret && rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_80].rtp.initialized) {
        contexts[ret++] = &rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_80];
    }
    if (contexts_count > ret && rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_32].rtp.initialized) {
        contexts[ret++] = &rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_32];
    }
    return ret;
}

int trtp_srtp_set_crypto(struct trtp_manager_s* rtp_mgr, const char* crypto_line, int32_t idx)
{
    //e.g. 2 F8_128_HMAC_SHA1_80 inline:MTIzNDU2Nzg5QUJDREUwMTIzNDU2Nzg5QUJjZGVm|2^20|1:4;inline:QUJjZGVmMTIzNDU2Nzg5QUJDREUwMTIzNDU2Nzg5|2^20|2:4"
    trtp_srtp_ctx_xt* srtp_ctx;
    int ret;
    uint8_t *key_bin;
    err_status_t srtp_err;
    int32_t tag, crypto_type;
    char key_str[SRTP_MAX_KEY_LEN + 1];
    
    memset(key_str, 0, sizeof(key_str));
    
    if ((ret = trtp_srtp_match_line(crypto_line, &tag, &crypto_type, key_str, sizeof(key_str) - 1))) {
        return ret;
    }
    
    srtp_ctx = &rtp_mgr->srtp_contexts[idx][crypto_type];
    ret = trtp_srtp_ctx_deinit(srtp_ctx);
    
    srtp_ctx->rtp.tag = tag;
    srtp_ctx->rtp.crypto_type = (trtp_srtp_crypto_type_t)crypto_type;
    memcpy(srtp_ctx->rtp.key_str, key_str, sizeof(srtp_ctx->rtp.key_str));
    
    switch(srtp_ctx->rtp.crypto_type){
        case HMAC_SHA1_80:
        {
            crypto_policy_set_aes_cm_128_hmac_sha1_80(&srtp_ctx->rtp.policy.rtp);
            crypto_policy_set_aes_cm_128_hmac_sha1_80(&srtp_ctx->rtp.policy.rtcp);
            if (idx == TRTP_SRTP_LINE_IDX_REMOTE) {
                trtp_srtp_ctx_deinit(&rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_32]);
                rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_80].rtp.tag =
                rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_80].rtcp.tag = srtp_ctx->rtp.tag;
            }
            break;
        }
        case HMAC_SHA1_32:
        {
            crypto_policy_set_aes_cm_128_hmac_sha1_32(&srtp_ctx->rtp.policy.rtp);
            crypto_policy_set_aes_cm_128_hmac_sha1_80(&srtp_ctx->rtp.policy.rtcp); // RTCP always 80
            if (idx == TRTP_SRTP_LINE_IDX_REMOTE) {
                trtp_srtp_ctx_deinit(&rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_80]);
                rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_32].rtp.tag =
                rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][HMAC_SHA1_32].rtcp.tag = srtp_ctx->rtp.tag;
            }
            break;
        }
        default: break;
    }
    
    key_bin = (unsigned char*)srtp_ctx->rtp.key_bin;
    tsk_base64_decode((const uint8_t*)srtp_ctx->rtp.key_str, (tsk_size_t)tsk_strlen(srtp_ctx->rtp.key_str), (char**)&key_bin);
    srtp_ctx->rtp.policy.key = key_bin;
    srtp_ctx->rtp.policy.ssrc.type = idx == TRTP_SRTP_LINE_IDX_REMOTE ? ssrc_any_inbound : ssrc_any_outbound;
    srtp_ctx->rtp.policy.window_size = 2048;
    srtp_ctx->rtp.policy.allow_repeat_tx = 1;
    if ((srtp_err = srtp_create(&srtp_ctx->rtp.session, &srtp_ctx->rtp.policy)) != err_status_ok) {
        TSK_DEBUG_ERROR("srtp_create() failed: %d", srtp_err);
        return -3;
    }
    srtp_ctx->rtp.initialized = tsk_true;
    return 0;
}

int trtp_srtp_set_key_and_salt(trtp_manager_t* rtp_mgr, trtp_srtp_crypto_type_t crypto_type, const void* key, tsk_size_t key_size, const void* salt, tsk_size_t salt_size, int32_t idx, tsk_bool_t is_rtp)
{
    int ret;
    trtp_srtp_ctx_internal_xt* srtp_ctx;
    err_status_t srtp_err;
    if (!rtp_mgr || !key || !key_size || !salt || !salt_size) {
        TSK_DEBUG_ERROR("Invalid parameter");
        return -1;
    }
    
    srtp_ctx = is_rtp ? &rtp_mgr->srtp_contexts[idx][crypto_type].rtp : &rtp_mgr->srtp_contexts[idx][crypto_type].rtcp;
    if ((ret = trtp_srtp_ctx_internal_deinit(srtp_ctx))) {
        return ret;
    }
    
    switch ((srtp_ctx->crypto_type = crypto_type)) {
        case HMAC_SHA1_80:
        default:
        {
            crypto_policy_set_aes_cm_128_hmac_sha1_80(&srtp_ctx->policy.rtp);
            crypto_policy_set_aes_cm_128_hmac_sha1_80(&srtp_ctx->policy.rtcp);
            break;
        }
        case HMAC_SHA1_32:
        {
            crypto_policy_set_aes_cm_128_hmac_sha1_32(&srtp_ctx->policy.rtp);
            crypto_policy_set_aes_cm_128_hmac_sha1_80(&srtp_ctx->policy.rtcp); // always 80
            break;
        }
    }
    
    memcpy(srtp_ctx->key_bin, key, key_size);
#if HAVE_APPEND_SALT_TO_KEY
    append_salt_to_key(srtp_ctx->key_bin, key_size, (void*)salt, salt_size);
#else
    memcpy(&srtp_ctx->key_bin[key_size], salt, salt_size);
#endif
    
    srtp_ctx->policy.key = (unsigned char *)srtp_ctx->key_bin;
    srtp_ctx->policy.ssrc.type = idx == TRTP_SRTP_LINE_IDX_REMOTE ? ssrc_any_inbound : ssrc_any_outbound;
    srtp_ctx->policy.window_size = 2048;
    srtp_ctx->policy.allow_repeat_tx = 1;
    if((srtp_err = srtp_create(&srtp_ctx->session, &srtp_ctx->policy)) != err_status_ok){
        TSK_DEBUG_ERROR("srtp_create() failed: %d", srtp_err);
        return -3;
    }
    srtp_ctx->initialized = tsk_true;
    return 0;
}

tsk_bool_t trtp_srtp_is_initialized(trtp_manager_t* rtp_mgr)
{
    if (!rtp_mgr) {
        return tsk_false;
    }
    return ((rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][0].rtp.initialized || rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_LOCAL][1].rtp.initialized) 
            && rtp_mgr->srtp_contexts[TRTP_SRTP_LINE_IDX_REMOTE][0].rtp.initialized);
}

tsk_bool_t trtp_srtp_is_started(trtp_manager_t* rtp_mgr)
{
    if (!rtp_mgr) {
        TSK_DEBUG_ERROR("Invalid argument");
        return tsk_false;
    }
    return (rtp_mgr ->srtp_ctx_neg_remote && rtp_mgr ->srtp_ctx_neg_local);
}

#endif /* HAVE_SRTP */
OpenPOWER on IntegriCloud