00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026 #include "asterisk.h"
00027
00028 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 349339 $")
00029
00030 #include <math.h>
00031
00032 #include "asterisk/channel.h"
00033 #include "asterisk/frame.h"
00034 #include "asterisk/module.h"
00035 #include "asterisk/rtp_engine.h"
00036 #include "asterisk/manager.h"
00037 #include "asterisk/options.h"
00038 #include "asterisk/astobj2.h"
00039 #include "asterisk/pbx.h"
00040 #include "asterisk/translate.h"
00041 #include "asterisk/netsock2.h"
00042 #include "asterisk/framehook.h"
00043
00044 struct ast_srtp_res *res_srtp = NULL;
00045 struct ast_srtp_policy_res *res_srtp_policy = NULL;
00046
00047
00048 struct ast_rtp_instance {
00049
00050 struct ast_rtp_engine *engine;
00051
00052 void *data;
00053
00054 int properties[AST_RTP_PROPERTY_MAX];
00055
00056 struct ast_sockaddr local_address;
00057
00058 struct ast_sockaddr remote_address;
00059
00060 struct ast_sockaddr alt_remote_address;
00061
00062 struct ast_rtp_instance *bridged;
00063
00064 struct ast_rtp_codecs codecs;
00065
00066 int timeout;
00067
00068 int holdtimeout;
00069
00070 int keepalive;
00071
00072 struct ast_rtp_glue *glue;
00073
00074 struct ast_channel *chan;
00075
00076 struct ast_srtp *srtp;
00077 };
00078
00079
00080 static AST_RWLIST_HEAD_STATIC(engines, ast_rtp_engine);
00081
00082
00083 static AST_RWLIST_HEAD_STATIC(glues, ast_rtp_glue);
00084
00085
00086
00087 static const struct ast_rtp_mime_type {
00088 struct ast_rtp_payload_type payload_type;
00089 char *type;
00090 char *subtype;
00091 unsigned int sample_rate;
00092 } ast_rtp_mime_types[] = {
00093 {{1, AST_FORMAT_G723_1}, "audio", "G723", 8000},
00094 {{1, AST_FORMAT_GSM}, "audio", "GSM", 8000},
00095 {{1, AST_FORMAT_ULAW}, "audio", "PCMU", 8000},
00096 {{1, AST_FORMAT_ULAW}, "audio", "G711U", 8000},
00097 {{1, AST_FORMAT_ALAW}, "audio", "PCMA", 8000},
00098 {{1, AST_FORMAT_ALAW}, "audio", "G711A", 8000},
00099 {{1, AST_FORMAT_G726}, "audio", "G726-32", 8000},
00100 {{1, AST_FORMAT_ADPCM}, "audio", "DVI4", 8000},
00101 {{1, AST_FORMAT_SLINEAR}, "audio", "L16", 8000},
00102 {{1, AST_FORMAT_SLINEAR16}, "audio", "L16", 16000},
00103 {{1, AST_FORMAT_LPC10}, "audio", "LPC", 8000},
00104 {{1, AST_FORMAT_G729A}, "audio", "G729", 8000},
00105 {{1, AST_FORMAT_G729A}, "audio", "G729A", 8000},
00106 {{1, AST_FORMAT_G729A}, "audio", "G.729", 8000},
00107 {{1, AST_FORMAT_SPEEX}, "audio", "speex", 8000},
00108 {{1, AST_FORMAT_SPEEX16}, "audio", "speex", 16000},
00109 {{1, AST_FORMAT_ILBC}, "audio", "iLBC", 8000},
00110
00111
00112
00113 {{1, AST_FORMAT_G722}, "audio", "G722", 8000},
00114 {{1, AST_FORMAT_G726_AAL2}, "audio", "AAL2-G726-32", 8000},
00115 {{0, AST_RTP_DTMF}, "audio", "telephone-event", 8000},
00116 {{0, AST_RTP_CISCO_DTMF}, "audio", "cisco-telephone-event", 8000},
00117 {{0, AST_RTP_CN}, "audio", "CN", 8000},
00118 {{1, AST_FORMAT_JPEG}, "video", "JPEG", 90000},
00119 {{1, AST_FORMAT_PNG}, "video", "PNG", 90000},
00120 {{1, AST_FORMAT_H261}, "video", "H261", 90000},
00121 {{1, AST_FORMAT_H263}, "video", "H263", 90000},
00122 {{1, AST_FORMAT_H263_PLUS}, "video", "h263-1998", 90000},
00123 {{1, AST_FORMAT_H264}, "video", "H264", 90000},
00124 {{1, AST_FORMAT_MP4_VIDEO}, "video", "MP4V-ES", 90000},
00125 {{1, AST_FORMAT_T140RED}, "text", "RED", 1000},
00126 {{1, AST_FORMAT_T140}, "text", "T140", 1000},
00127 {{1, AST_FORMAT_SIREN7}, "audio", "G7221", 16000},
00128 {{1, AST_FORMAT_SIREN14}, "audio", "G7221", 32000},
00129 {{1, AST_FORMAT_G719}, "audio", "G719", 48000},
00130 };
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142 static const struct ast_rtp_payload_type static_RTP_PT[AST_RTP_MAX_PT] = {
00143 [0] = {1, AST_FORMAT_ULAW},
00144 #ifdef USE_DEPRECATED_G726
00145 [2] = {1, AST_FORMAT_G726},
00146 #endif
00147 [3] = {1, AST_FORMAT_GSM},
00148 [4] = {1, AST_FORMAT_G723_1},
00149 [5] = {1, AST_FORMAT_ADPCM},
00150 [6] = {1, AST_FORMAT_ADPCM},
00151 [7] = {1, AST_FORMAT_LPC10},
00152 [8] = {1, AST_FORMAT_ALAW},
00153 [9] = {1, AST_FORMAT_G722},
00154 [10] = {1, AST_FORMAT_SLINEAR},
00155 [11] = {1, AST_FORMAT_SLINEAR},
00156 [13] = {0, AST_RTP_CN},
00157 [16] = {1, AST_FORMAT_ADPCM},
00158 [17] = {1, AST_FORMAT_ADPCM},
00159 [18] = {1, AST_FORMAT_G729A},
00160 [19] = {0, AST_RTP_CN},
00161 [26] = {1, AST_FORMAT_JPEG},
00162 [31] = {1, AST_FORMAT_H261},
00163 [34] = {1, AST_FORMAT_H263},
00164 [97] = {1, AST_FORMAT_ILBC},
00165 [98] = {1, AST_FORMAT_H263_PLUS},
00166 [99] = {1, AST_FORMAT_H264},
00167 [101] = {0, AST_RTP_DTMF},
00168 [102] = {1, AST_FORMAT_SIREN7},
00169 [103] = {1, AST_FORMAT_H263_PLUS},
00170 [104] = {1, AST_FORMAT_MP4_VIDEO},
00171 [105] = {1, AST_FORMAT_T140RED},
00172 [106] = {1, AST_FORMAT_T140},
00173 [110] = {1, AST_FORMAT_SPEEX},
00174 [111] = {1, AST_FORMAT_G726},
00175 [112] = {1, AST_FORMAT_G726_AAL2},
00176 [115] = {1, AST_FORMAT_SIREN14},
00177 [116] = {1, AST_FORMAT_G719},
00178 [117] = {1, AST_FORMAT_SPEEX16},
00179 [118] = {1, AST_FORMAT_SLINEAR16},
00180 [121] = {0, AST_RTP_CISCO_DTMF},
00181 };
00182
00183 int ast_rtp_engine_register2(struct ast_rtp_engine *engine, struct ast_module *module)
00184 {
00185 struct ast_rtp_engine *current_engine;
00186
00187
00188 if (ast_strlen_zero(engine->name) || !engine->new || !engine->destroy || !engine->write || !engine->read) {
00189 ast_log(LOG_WARNING, "RTP Engine '%s' failed sanity check so it was not registered.\n", !ast_strlen_zero(engine->name) ? engine->name : "Unknown");
00190 return -1;
00191 }
00192
00193
00194 engine->mod = module;
00195
00196 AST_RWLIST_WRLOCK(&engines);
00197
00198
00199 AST_RWLIST_TRAVERSE(&engines, current_engine, entry) {
00200 if (!strcmp(current_engine->name, engine->name)) {
00201 ast_log(LOG_WARNING, "An RTP engine with the name '%s' has already been registered.\n", engine->name);
00202 AST_RWLIST_UNLOCK(&engines);
00203 return -1;
00204 }
00205 }
00206
00207
00208 AST_RWLIST_INSERT_TAIL(&engines, engine, entry);
00209
00210 AST_RWLIST_UNLOCK(&engines);
00211
00212 ast_verb(2, "Registered RTP engine '%s'\n", engine->name);
00213
00214 return 0;
00215 }
00216
00217 int ast_rtp_engine_unregister(struct ast_rtp_engine *engine)
00218 {
00219 struct ast_rtp_engine *current_engine = NULL;
00220
00221 AST_RWLIST_WRLOCK(&engines);
00222
00223 if ((current_engine = AST_RWLIST_REMOVE(&engines, engine, entry))) {
00224 ast_verb(2, "Unregistered RTP engine '%s'\n", engine->name);
00225 }
00226
00227 AST_RWLIST_UNLOCK(&engines);
00228
00229 return current_engine ? 0 : -1;
00230 }
00231
00232 int ast_rtp_glue_register2(struct ast_rtp_glue *glue, struct ast_module *module)
00233 {
00234 struct ast_rtp_glue *current_glue = NULL;
00235
00236 if (ast_strlen_zero(glue->type)) {
00237 return -1;
00238 }
00239
00240 glue->mod = module;
00241
00242 AST_RWLIST_WRLOCK(&glues);
00243
00244 AST_RWLIST_TRAVERSE(&glues, current_glue, entry) {
00245 if (!strcasecmp(current_glue->type, glue->type)) {
00246 ast_log(LOG_WARNING, "RTP glue with the name '%s' has already been registered.\n", glue->type);
00247 AST_RWLIST_UNLOCK(&glues);
00248 return -1;
00249 }
00250 }
00251
00252 AST_RWLIST_INSERT_TAIL(&glues, glue, entry);
00253
00254 AST_RWLIST_UNLOCK(&glues);
00255
00256 ast_verb(2, "Registered RTP glue '%s'\n", glue->type);
00257
00258 return 0;
00259 }
00260
00261 int ast_rtp_glue_unregister(struct ast_rtp_glue *glue)
00262 {
00263 struct ast_rtp_glue *current_glue = NULL;
00264
00265 AST_RWLIST_WRLOCK(&glues);
00266
00267 if ((current_glue = AST_RWLIST_REMOVE(&glues, glue, entry))) {
00268 ast_verb(2, "Unregistered RTP glue '%s'\n", glue->type);
00269 }
00270
00271 AST_RWLIST_UNLOCK(&glues);
00272
00273 return current_glue ? 0 : -1;
00274 }
00275
00276 static void instance_destructor(void *obj)
00277 {
00278 struct ast_rtp_instance *instance = obj;
00279
00280
00281 if (instance->data && instance->engine->destroy(instance)) {
00282 ast_debug(1, "Engine '%s' failed to destroy RTP instance '%p'\n", instance->engine->name, instance);
00283 return;
00284 }
00285
00286 if (instance->srtp) {
00287 res_srtp->destroy(instance->srtp);
00288 }
00289
00290
00291 ast_module_unref(instance->engine->mod);
00292
00293 ast_debug(1, "Destroyed RTP instance '%p'\n", instance);
00294 }
00295
00296 int ast_rtp_instance_destroy(struct ast_rtp_instance *instance)
00297 {
00298 ao2_ref(instance, -1);
00299
00300 return 0;
00301 }
00302
00303 struct ast_rtp_instance *ast_rtp_instance_new(const char *engine_name,
00304 struct sched_context *sched, const struct ast_sockaddr *sa,
00305 void *data)
00306 {
00307 struct ast_sockaddr address = {{0,}};
00308 struct ast_rtp_instance *instance = NULL;
00309 struct ast_rtp_engine *engine = NULL;
00310
00311 AST_RWLIST_RDLOCK(&engines);
00312
00313
00314 if (!ast_strlen_zero(engine_name)) {
00315 AST_RWLIST_TRAVERSE(&engines, engine, entry) {
00316 if (!strcmp(engine->name, engine_name)) {
00317 break;
00318 }
00319 }
00320 } else {
00321 engine = AST_RWLIST_FIRST(&engines);
00322 }
00323
00324
00325 if (!engine) {
00326 ast_log(LOG_ERROR, "No RTP engine was found. Do you have one loaded?\n");
00327 AST_RWLIST_UNLOCK(&engines);
00328 return NULL;
00329 }
00330
00331
00332 ast_module_ref(engine->mod);
00333
00334 AST_RWLIST_UNLOCK(&engines);
00335
00336
00337 if (!(instance = ao2_alloc(sizeof(*instance), instance_destructor))) {
00338 ast_module_unref(engine->mod);
00339 return NULL;
00340 }
00341 instance->engine = engine;
00342 ast_sockaddr_copy(&instance->local_address, sa);
00343 ast_sockaddr_copy(&address, sa);
00344
00345 ast_debug(1, "Using engine '%s' for RTP instance '%p'\n", engine->name, instance);
00346
00347
00348 if (instance->engine->new(instance, sched, &address, data)) {
00349 ast_debug(1, "Engine '%s' failed to setup RTP instance '%p'\n", engine->name, instance);
00350 ao2_ref(instance, -1);
00351 return NULL;
00352 }
00353
00354 ast_debug(1, "RTP instance '%p' is setup and ready to go\n", instance);
00355
00356 return instance;
00357 }
00358
00359 void ast_rtp_instance_set_data(struct ast_rtp_instance *instance, void *data)
00360 {
00361 instance->data = data;
00362 }
00363
00364 void *ast_rtp_instance_get_data(struct ast_rtp_instance *instance)
00365 {
00366 return instance->data;
00367 }
00368
00369 int ast_rtp_instance_write(struct ast_rtp_instance *instance, struct ast_frame *frame)
00370 {
00371 return instance->engine->write(instance, frame);
00372 }
00373
00374 struct ast_frame *ast_rtp_instance_read(struct ast_rtp_instance *instance, int rtcp)
00375 {
00376 return instance->engine->read(instance, rtcp);
00377 }
00378
00379 int ast_rtp_instance_set_local_address(struct ast_rtp_instance *instance,
00380 const struct ast_sockaddr *address)
00381 {
00382 ast_sockaddr_copy(&instance->local_address, address);
00383 return 0;
00384 }
00385
00386 int ast_rtp_instance_set_remote_address(struct ast_rtp_instance *instance,
00387 const struct ast_sockaddr *address)
00388 {
00389 ast_sockaddr_copy(&instance->remote_address, address);
00390
00391
00392
00393 if (instance->engine->remote_address_set) {
00394 instance->engine->remote_address_set(instance, &instance->remote_address);
00395 }
00396
00397 return 0;
00398 }
00399
00400 int ast_rtp_instance_set_alt_remote_address(struct ast_rtp_instance *instance,
00401 const struct ast_sockaddr *address)
00402 {
00403 ast_sockaddr_copy(&instance->alt_remote_address, address);
00404
00405
00406
00407 if (instance->engine->alt_remote_address_set) {
00408 instance->engine->alt_remote_address_set(instance, &instance->alt_remote_address);
00409 }
00410
00411 return 0;
00412 }
00413
00414 int ast_rtp_instance_get_and_cmp_local_address(struct ast_rtp_instance *instance,
00415 struct ast_sockaddr *address)
00416 {
00417 if (ast_sockaddr_cmp(address, &instance->local_address) != 0) {
00418 ast_sockaddr_copy(address, &instance->local_address);
00419 return 1;
00420 }
00421
00422 return 0;
00423 }
00424
00425 void ast_rtp_instance_get_local_address(struct ast_rtp_instance *instance,
00426 struct ast_sockaddr *address)
00427 {
00428 ast_sockaddr_copy(address, &instance->local_address);
00429 }
00430
00431 int ast_rtp_instance_get_and_cmp_remote_address(struct ast_rtp_instance *instance,
00432 struct ast_sockaddr *address)
00433 {
00434 if (ast_sockaddr_cmp(address, &instance->remote_address) != 0) {
00435 ast_sockaddr_copy(address, &instance->remote_address);
00436 return 1;
00437 }
00438
00439 return 0;
00440 }
00441
00442 void ast_rtp_instance_get_remote_address(struct ast_rtp_instance *instance,
00443 struct ast_sockaddr *address)
00444 {
00445 ast_sockaddr_copy(address, &instance->remote_address);
00446 }
00447
00448 void ast_rtp_instance_set_extended_prop(struct ast_rtp_instance *instance, int property, void *value)
00449 {
00450 if (instance->engine->extended_prop_set) {
00451 instance->engine->extended_prop_set(instance, property, value);
00452 }
00453 }
00454
00455 void *ast_rtp_instance_get_extended_prop(struct ast_rtp_instance *instance, int property)
00456 {
00457 if (instance->engine->extended_prop_get) {
00458 return instance->engine->extended_prop_get(instance, property);
00459 }
00460
00461 return NULL;
00462 }
00463
00464 void ast_rtp_instance_set_prop(struct ast_rtp_instance *instance, enum ast_rtp_property property, int value)
00465 {
00466 instance->properties[property] = value;
00467
00468 if (instance->engine->prop_set) {
00469 instance->engine->prop_set(instance, property, value);
00470 }
00471 }
00472
00473 int ast_rtp_instance_get_prop(struct ast_rtp_instance *instance, enum ast_rtp_property property)
00474 {
00475 return instance->properties[property];
00476 }
00477
00478 struct ast_rtp_codecs *ast_rtp_instance_get_codecs(struct ast_rtp_instance *instance)
00479 {
00480 return &instance->codecs;
00481 }
00482
00483 void ast_rtp_codecs_payloads_clear(struct ast_rtp_codecs *codecs, struct ast_rtp_instance *instance)
00484 {
00485 int i;
00486
00487 for (i = 0; i < AST_RTP_MAX_PT; i++) {
00488 codecs->payloads[i].asterisk_format = 0;
00489 codecs->payloads[i].code = 0;
00490 if (instance && instance->engine && instance->engine->payload_set) {
00491 instance->engine->payload_set(instance, i, 0, 0);
00492 }
00493 }
00494 }
00495
00496 void ast_rtp_codecs_payloads_default(struct ast_rtp_codecs *codecs, struct ast_rtp_instance *instance)
00497 {
00498 int i;
00499
00500 for (i = 0; i < AST_RTP_MAX_PT; i++) {
00501 if (static_RTP_PT[i].code) {
00502 codecs->payloads[i].asterisk_format = static_RTP_PT[i].asterisk_format;
00503 codecs->payloads[i].code = static_RTP_PT[i].code;
00504 if (instance && instance->engine && instance->engine->payload_set) {
00505 instance->engine->payload_set(instance, i, codecs->payloads[i].asterisk_format, codecs->payloads[i].code);
00506 }
00507 }
00508 }
00509 }
00510
00511 void ast_rtp_codecs_payloads_copy(struct ast_rtp_codecs *src, struct ast_rtp_codecs *dest, struct ast_rtp_instance *instance)
00512 {
00513 int i;
00514
00515 for (i = 0; i < AST_RTP_MAX_PT; i++) {
00516 if (src->payloads[i].code) {
00517 ast_debug(2, "Copying payload %d from %p to %p\n", i, src, dest);
00518 dest->payloads[i].asterisk_format = src->payloads[i].asterisk_format;
00519 dest->payloads[i].code = src->payloads[i].code;
00520 if (instance && instance->engine && instance->engine->payload_set) {
00521 instance->engine->payload_set(instance, i, dest->payloads[i].asterisk_format, dest->payloads[i].code);
00522 }
00523 }
00524 }
00525 }
00526
00527 void ast_rtp_codecs_payloads_set_m_type(struct ast_rtp_codecs *codecs, struct ast_rtp_instance *instance, int payload)
00528 {
00529 if (payload < 0 || payload >= AST_RTP_MAX_PT || !static_RTP_PT[payload].code) {
00530 return;
00531 }
00532
00533 codecs->payloads[payload].asterisk_format = static_RTP_PT[payload].asterisk_format;
00534 codecs->payloads[payload].code = static_RTP_PT[payload].code;
00535
00536 ast_debug(1, "Setting payload %d based on m type on %p\n", payload, codecs);
00537
00538 if (instance && instance->engine && instance->engine->payload_set) {
00539 instance->engine->payload_set(instance, payload, codecs->payloads[payload].asterisk_format, codecs->payloads[payload].code);
00540 }
00541 }
00542
00543 int ast_rtp_codecs_payloads_set_rtpmap_type_rate(struct ast_rtp_codecs *codecs, struct ast_rtp_instance *instance, int pt,
00544 char *mimetype, char *mimesubtype,
00545 enum ast_rtp_options options,
00546 unsigned int sample_rate)
00547 {
00548 unsigned int i;
00549 int found = 0;
00550
00551 if (pt < 0 || pt >= AST_RTP_MAX_PT)
00552 return -1;
00553
00554 for (i = 0; i < ARRAY_LEN(ast_rtp_mime_types); ++i) {
00555 const struct ast_rtp_mime_type *t = &ast_rtp_mime_types[i];
00556
00557 if (strcasecmp(mimesubtype, t->subtype)) {
00558 continue;
00559 }
00560
00561 if (strcasecmp(mimetype, t->type)) {
00562 continue;
00563 }
00564
00565
00566
00567
00568 if (sample_rate && t->sample_rate &&
00569 (sample_rate != t->sample_rate)) {
00570 continue;
00571 }
00572
00573 found = 1;
00574 codecs->payloads[pt] = t->payload_type;
00575
00576 if ((t->payload_type.code == AST_FORMAT_G726) &&
00577 t->payload_type.asterisk_format &&
00578 (options & AST_RTP_OPT_G726_NONSTANDARD)) {
00579 codecs->payloads[pt].code = AST_FORMAT_G726_AAL2;
00580 }
00581
00582 if (instance && instance->engine && instance->engine->payload_set) {
00583 instance->engine->payload_set(instance, pt, codecs->payloads[i].asterisk_format, codecs->payloads[i].code);
00584 }
00585
00586 break;
00587 }
00588
00589 return (found ? 0 : -2);
00590 }
00591
00592 int ast_rtp_codecs_payloads_set_rtpmap_type(struct ast_rtp_codecs *codecs, struct ast_rtp_instance *instance, int payload, char *mimetype, char *mimesubtype, enum ast_rtp_options options)
00593 {
00594 return ast_rtp_codecs_payloads_set_rtpmap_type_rate(codecs, instance, payload, mimetype, mimesubtype, options, 0);
00595 }
00596
00597 void ast_rtp_codecs_payloads_unset(struct ast_rtp_codecs *codecs, struct ast_rtp_instance *instance, int payload)
00598 {
00599 if (payload < 0 || payload >= AST_RTP_MAX_PT) {
00600 return;
00601 }
00602
00603 ast_debug(2, "Unsetting payload %d on %p\n", payload, codecs);
00604
00605 codecs->payloads[payload].asterisk_format = 0;
00606 codecs->payloads[payload].code = 0;
00607
00608 if (instance && instance->engine && instance->engine->payload_set) {
00609 instance->engine->payload_set(instance, payload, 0, 0);
00610 }
00611 }
00612
00613 struct ast_rtp_payload_type ast_rtp_codecs_payload_lookup(struct ast_rtp_codecs *codecs, int payload)
00614 {
00615 struct ast_rtp_payload_type result = { .asterisk_format = 0, };
00616
00617 if (payload < 0 || payload >= AST_RTP_MAX_PT) {
00618 return result;
00619 }
00620
00621 result.asterisk_format = codecs->payloads[payload].asterisk_format;
00622 result.code = codecs->payloads[payload].code;
00623
00624 if (!result.code) {
00625 result = static_RTP_PT[payload];
00626 }
00627
00628 return result;
00629 }
00630
00631 void ast_rtp_codecs_payload_formats(struct ast_rtp_codecs *codecs, format_t *astformats, int *nonastformats)
00632 {
00633 int i;
00634
00635 *astformats = *nonastformats = 0;
00636
00637 for (i = 0; i < AST_RTP_MAX_PT; i++) {
00638 if (codecs->payloads[i].code) {
00639 ast_debug(1, "Incorporating payload %d on %p\n", i, codecs);
00640 }
00641 if (codecs->payloads[i].asterisk_format) {
00642 *astformats |= codecs->payloads[i].code;
00643 } else {
00644 *nonastformats |= codecs->payloads[i].code;
00645 }
00646 }
00647 }
00648
00649 int ast_rtp_codecs_payload_code(struct ast_rtp_codecs *codecs, const int asterisk_format, const format_t code)
00650 {
00651 int i;
00652
00653 for (i = 0; i < AST_RTP_MAX_PT; i++) {
00654 if (codecs->payloads[i].asterisk_format == asterisk_format && codecs->payloads[i].code == code) {
00655 return i;
00656 }
00657 }
00658
00659 for (i = 0; i < AST_RTP_MAX_PT; i++) {
00660 if (static_RTP_PT[i].asterisk_format == asterisk_format && static_RTP_PT[i].code == code) {
00661 return i;
00662 }
00663 }
00664
00665 return -1;
00666 }
00667
00668 const char *ast_rtp_lookup_mime_subtype2(const int asterisk_format, const format_t code, enum ast_rtp_options options)
00669 {
00670 int i;
00671
00672 for (i = 0; i < ARRAY_LEN(ast_rtp_mime_types); i++) {
00673 if (ast_rtp_mime_types[i].payload_type.code == code && ast_rtp_mime_types[i].payload_type.asterisk_format == asterisk_format) {
00674 if (asterisk_format && (code == AST_FORMAT_G726_AAL2) && (options & AST_RTP_OPT_G726_NONSTANDARD)) {
00675 return "G726-32";
00676 } else {
00677 return ast_rtp_mime_types[i].subtype;
00678 }
00679 }
00680 }
00681
00682 return "";
00683 }
00684
00685 unsigned int ast_rtp_lookup_sample_rate2(int asterisk_format, format_t code)
00686 {
00687 unsigned int i;
00688
00689 for (i = 0; i < ARRAY_LEN(ast_rtp_mime_types); ++i) {
00690 if ((ast_rtp_mime_types[i].payload_type.code == code) && (ast_rtp_mime_types[i].payload_type.asterisk_format == asterisk_format)) {
00691 return ast_rtp_mime_types[i].sample_rate;
00692 }
00693 }
00694
00695 return 0;
00696 }
00697
00698 char *ast_rtp_lookup_mime_multiple2(struct ast_str *buf, const format_t capability, const int asterisk_format, enum ast_rtp_options options)
00699 {
00700 format_t format;
00701 int found = 0;
00702
00703 if (!buf) {
00704 return NULL;
00705 }
00706
00707 ast_str_append(&buf, 0, "0x%llx (", (unsigned long long) capability);
00708
00709 for (format = 1; format < AST_RTP_MAX; format <<= 1) {
00710 if (capability & format) {
00711 const char *name = ast_rtp_lookup_mime_subtype2(asterisk_format, format, options);
00712 ast_str_append(&buf, 0, "%s|", name);
00713 found = 1;
00714 }
00715 }
00716
00717 ast_str_append(&buf, 0, "%s", found ? ")" : "nothing)");
00718
00719 return ast_str_buffer(buf);
00720 }
00721
00722 void ast_rtp_codecs_packetization_set(struct ast_rtp_codecs *codecs, struct ast_rtp_instance *instance, struct ast_codec_pref *prefs)
00723 {
00724 codecs->pref = *prefs;
00725
00726 if (instance && instance->engine->packetization_set) {
00727 instance->engine->packetization_set(instance, &instance->codecs.pref);
00728 }
00729 }
00730
00731 int ast_rtp_instance_dtmf_begin(struct ast_rtp_instance *instance, char digit)
00732 {
00733 return instance->engine->dtmf_begin ? instance->engine->dtmf_begin(instance, digit) : -1;
00734 }
00735
00736 int ast_rtp_instance_dtmf_end(struct ast_rtp_instance *instance, char digit)
00737 {
00738 return instance->engine->dtmf_end ? instance->engine->dtmf_end(instance, digit) : -1;
00739 }
00740 int ast_rtp_instance_dtmf_end_with_duration(struct ast_rtp_instance *instance, char digit, unsigned int duration)
00741 {
00742 return instance->engine->dtmf_end_with_duration ? instance->engine->dtmf_end_with_duration(instance, digit, duration) : -1;
00743 }
00744
00745 int ast_rtp_instance_dtmf_mode_set(struct ast_rtp_instance *instance, enum ast_rtp_dtmf_mode dtmf_mode)
00746 {
00747 return (!instance->engine->dtmf_mode_set || instance->engine->dtmf_mode_set(instance, dtmf_mode)) ? -1 : 0;
00748 }
00749
00750 enum ast_rtp_dtmf_mode ast_rtp_instance_dtmf_mode_get(struct ast_rtp_instance *instance)
00751 {
00752 return instance->engine->dtmf_mode_get ? instance->engine->dtmf_mode_get(instance) : 0;
00753 }
00754
00755 void ast_rtp_instance_update_source(struct ast_rtp_instance *instance)
00756 {
00757 if (instance->engine->update_source) {
00758 instance->engine->update_source(instance);
00759 }
00760 }
00761
00762 void ast_rtp_instance_change_source(struct ast_rtp_instance *instance)
00763 {
00764 if (instance->engine->change_source) {
00765 instance->engine->change_source(instance);
00766 }
00767 }
00768
00769 int ast_rtp_instance_set_qos(struct ast_rtp_instance *instance, int tos, int cos, const char *desc)
00770 {
00771 return instance->engine->qos ? instance->engine->qos(instance, tos, cos, desc) : -1;
00772 }
00773
00774 void ast_rtp_instance_stop(struct ast_rtp_instance *instance)
00775 {
00776 if (instance->engine->stop) {
00777 instance->engine->stop(instance);
00778 }
00779 }
00780
00781 int ast_rtp_instance_fd(struct ast_rtp_instance *instance, int rtcp)
00782 {
00783 return instance->engine->fd ? instance->engine->fd(instance, rtcp) : -1;
00784 }
00785
00786 struct ast_rtp_glue *ast_rtp_instance_get_glue(const char *type)
00787 {
00788 struct ast_rtp_glue *glue = NULL;
00789
00790 AST_RWLIST_RDLOCK(&glues);
00791
00792 AST_RWLIST_TRAVERSE(&glues, glue, entry) {
00793 if (!strcasecmp(glue->type, type)) {
00794 break;
00795 }
00796 }
00797
00798 AST_RWLIST_UNLOCK(&glues);
00799
00800 return glue;
00801 }
00802
00803 static enum ast_bridge_result local_bridge_loop(struct ast_channel *c0, struct ast_channel *c1, struct ast_rtp_instance *instance0, struct ast_rtp_instance *instance1, int timeoutms, int flags, struct ast_frame **fo, struct ast_channel **rc, void *pvt0, void *pvt1)
00804 {
00805 enum ast_bridge_result res = AST_BRIDGE_FAILED;
00806 struct ast_channel *who = NULL, *other = NULL, *cs[3] = { NULL, };
00807 struct ast_frame *fr = NULL;
00808
00809
00810 if (instance0->engine->local_bridge && instance0->engine->local_bridge(instance0, instance1)) {
00811 ast_debug(1, "Failed to locally bridge %s to %s, backing out.\n", c0->name, c1->name);
00812 ast_channel_unlock(c0);
00813 ast_channel_unlock(c1);
00814 return AST_BRIDGE_FAILED_NOWARN;
00815 }
00816 if (instance1->engine->local_bridge && instance1->engine->local_bridge(instance1, instance0)) {
00817 ast_debug(1, "Failed to locally bridge %s to %s, backing out.\n", c1->name, c0->name);
00818 if (instance0->engine->local_bridge) {
00819 instance0->engine->local_bridge(instance0, NULL);
00820 }
00821 ast_channel_unlock(c0);
00822 ast_channel_unlock(c1);
00823 return AST_BRIDGE_FAILED_NOWARN;
00824 }
00825
00826 ast_channel_unlock(c0);
00827 ast_channel_unlock(c1);
00828
00829 instance0->bridged = instance1;
00830 instance1->bridged = instance0;
00831
00832 ast_poll_channel_add(c0, c1);
00833
00834
00835 cs[0] = c0;
00836 cs[1] = c1;
00837 cs[2] = NULL;
00838 for (;;) {
00839
00840 if ((c0->rawreadformat != c1->rawwriteformat) || (c1->rawreadformat != c0->rawwriteformat)) {
00841 ast_debug(1, "rtp-engine-local-bridge: Oooh, formats changed, backing out\n");
00842 res = AST_BRIDGE_FAILED_NOWARN;
00843 break;
00844 }
00845
00846 if ((c0->tech_pvt != pvt0) ||
00847 (c1->tech_pvt != pvt1) ||
00848 (c0->masq || c0->masqr || c1->masq || c1->masqr) ||
00849 (c0->monitor || c0->audiohooks || c1->monitor || c1->audiohooks) ||
00850 (!ast_framehook_list_is_empty(c0->framehooks) || !ast_framehook_list_is_empty(c1->framehooks))) {
00851 ast_debug(1, "rtp-engine-local-bridge: Oooh, something is weird, backing out\n");
00852
00853 if ((c0->masq || c0->masqr) && (fr = ast_read(c0))) {
00854 ast_frfree(fr);
00855 }
00856 if ((c1->masq || c1->masqr) && (fr = ast_read(c1))) {
00857 ast_frfree(fr);
00858 }
00859 res = AST_BRIDGE_RETRY;
00860 break;
00861 }
00862
00863 if (!(who = ast_waitfor_n(cs, 2, &timeoutms))) {
00864 if (!timeoutms) {
00865 res = AST_BRIDGE_RETRY;
00866 break;
00867 }
00868 ast_debug(2, "rtp-engine-local-bridge: Ooh, empty read...\n");
00869 if (ast_check_hangup(c0) || ast_check_hangup(c1)) {
00870 break;
00871 }
00872 continue;
00873 }
00874
00875 fr = ast_read(who);
00876 other = (who == c0) ? c1 : c0;
00877
00878 if (!fr || ((fr->frametype == AST_FRAME_DTMF_BEGIN || fr->frametype == AST_FRAME_DTMF_END) &&
00879 ((who == c0) && (flags & AST_BRIDGE_DTMF_CHANNEL_0)) |
00880 ((who == c1) && (flags & AST_BRIDGE_DTMF_CHANNEL_1)))) {
00881
00882 *fo = fr;
00883 *rc = who;
00884 ast_debug(1, "rtp-engine-local-bridge: Ooh, got a %s\n", fr ? "digit" : "hangup");
00885 res = AST_BRIDGE_COMPLETE;
00886 break;
00887 } else if ((fr->frametype == AST_FRAME_CONTROL) && !(flags & AST_BRIDGE_IGNORE_SIGS)) {
00888 if ((fr->subclass.integer == AST_CONTROL_HOLD) ||
00889 (fr->subclass.integer == AST_CONTROL_UNHOLD) ||
00890 (fr->subclass.integer == AST_CONTROL_VIDUPDATE) ||
00891 (fr->subclass.integer == AST_CONTROL_SRCUPDATE) ||
00892 (fr->subclass.integer == AST_CONTROL_T38_PARAMETERS) ||
00893 (fr->subclass.integer == AST_CONTROL_UPDATE_RTP_PEER)) {
00894
00895 if (fr->subclass.integer == AST_CONTROL_HOLD) {
00896 if (instance0->engine->local_bridge) {
00897 instance0->engine->local_bridge(instance0, NULL);
00898 }
00899 if (instance1->engine->local_bridge) {
00900 instance1->engine->local_bridge(instance1, NULL);
00901 }
00902 instance0->bridged = NULL;
00903 instance1->bridged = NULL;
00904 } else if (fr->subclass.integer == AST_CONTROL_UNHOLD) {
00905 if (instance0->engine->local_bridge) {
00906 instance0->engine->local_bridge(instance0, instance1);
00907 }
00908 if (instance1->engine->local_bridge) {
00909 instance1->engine->local_bridge(instance1, instance0);
00910 }
00911 instance0->bridged = instance1;
00912 instance1->bridged = instance0;
00913 }
00914
00915 if (fr->subclass.integer != AST_CONTROL_UPDATE_RTP_PEER) {
00916 ast_indicate_data(other, fr->subclass.integer, fr->data.ptr, fr->datalen);
00917 }
00918 ast_frfree(fr);
00919 } else if (fr->subclass.integer == AST_CONTROL_CONNECTED_LINE) {
00920 if (ast_channel_connected_line_macro(who, other, fr, other == c0, 1)) {
00921 ast_indicate_data(other, fr->subclass.integer, fr->data.ptr, fr->datalen);
00922 }
00923 ast_frfree(fr);
00924 } else if (fr->subclass.integer == AST_CONTROL_REDIRECTING) {
00925 if (ast_channel_redirecting_macro(who, other, fr, other == c0, 1)) {
00926 ast_indicate_data(other, fr->subclass.integer, fr->data.ptr, fr->datalen);
00927 }
00928 ast_frfree(fr);
00929 } else {
00930 *fo = fr;
00931 *rc = who;
00932 ast_debug(1, "rtp-engine-local-bridge: Got a FRAME_CONTROL (%d) frame on channel %s\n", fr->subclass.integer, who->name);
00933 res = AST_BRIDGE_COMPLETE;
00934 break;
00935 }
00936 } else {
00937 if ((fr->frametype == AST_FRAME_DTMF_BEGIN) ||
00938 (fr->frametype == AST_FRAME_DTMF_END) ||
00939 (fr->frametype == AST_FRAME_VOICE) ||
00940 (fr->frametype == AST_FRAME_VIDEO) ||
00941 (fr->frametype == AST_FRAME_IMAGE) ||
00942 (fr->frametype == AST_FRAME_HTML) ||
00943 (fr->frametype == AST_FRAME_MODEM) ||
00944 (fr->frametype == AST_FRAME_TEXT)) {
00945 ast_write(other, fr);
00946 }
00947
00948 ast_frfree(fr);
00949 }
00950
00951 cs[2] = cs[0];
00952 cs[0] = cs[1];
00953 cs[1] = cs[2];
00954 }
00955
00956
00957 if (instance0->engine->local_bridge) {
00958 instance0->engine->local_bridge(instance0, NULL);
00959 }
00960 if (instance1->engine->local_bridge) {
00961 instance1->engine->local_bridge(instance1, NULL);
00962 }
00963
00964 instance0->bridged = NULL;
00965 instance1->bridged = NULL;
00966
00967 ast_poll_channel_del(c0, c1);
00968
00969 return res;
00970 }
00971
00972 static enum ast_bridge_result remote_bridge_loop(struct ast_channel *c0, struct ast_channel *c1, struct ast_rtp_instance *instance0, struct ast_rtp_instance *instance1,
00973 struct ast_rtp_instance *vinstance0, struct ast_rtp_instance *vinstance1, struct ast_rtp_instance *tinstance0,
00974 struct ast_rtp_instance *tinstance1, struct ast_rtp_glue *glue0, struct ast_rtp_glue *glue1, format_t codec0, format_t codec1, int timeoutms,
00975 int flags, struct ast_frame **fo, struct ast_channel **rc, void *pvt0, void *pvt1)
00976 {
00977 enum ast_bridge_result res = AST_BRIDGE_FAILED;
00978 struct ast_channel *who = NULL, *other = NULL, *cs[3] = { NULL, };
00979 format_t oldcodec0 = codec0, oldcodec1 = codec1;
00980 struct ast_sockaddr ac1 = {{0,}}, vac1 = {{0,}}, tac1 = {{0,}}, ac0 = {{0,}}, vac0 = {{0,}}, tac0 = {{0,}};
00981 struct ast_sockaddr t1 = {{0,}}, vt1 = {{0,}}, tt1 = {{0,}}, t0 = {{0,}}, vt0 = {{0,}}, tt0 = {{0,}};
00982 struct ast_frame *fr = NULL;
00983
00984
00985 if (!(glue0->update_peer(c0, instance1, vinstance1, tinstance1, codec1, 0))) {
00986 ast_rtp_instance_get_remote_address(instance1, &ac1);
00987 if (vinstance1) {
00988 ast_rtp_instance_get_remote_address(vinstance1, &vac1);
00989 }
00990 if (tinstance1) {
00991 ast_rtp_instance_get_remote_address(tinstance1, &tac1);
00992 }
00993 } else {
00994 ast_log(LOG_WARNING, "Channel '%s' failed to talk to '%s'\n", c0->name, c1->name);
00995 }
00996
00997
00998 if (!(glue1->update_peer(c1, instance0, vinstance0, tinstance0, codec0, 0))) {
00999 ast_rtp_instance_get_remote_address(instance0, &ac0);
01000 if (vinstance0) {
01001 ast_rtp_instance_get_remote_address(instance0, &vac0);
01002 }
01003 if (tinstance0) {
01004 ast_rtp_instance_get_remote_address(instance0, &tac0);
01005 }
01006 } else {
01007 ast_log(LOG_WARNING, "Channel '%s' failed to talk to '%s'\n", c1->name, c0->name);
01008 }
01009
01010 ast_channel_unlock(c0);
01011 ast_channel_unlock(c1);
01012
01013 instance0->bridged = instance1;
01014 instance1->bridged = instance0;
01015
01016 ast_poll_channel_add(c0, c1);
01017
01018
01019 cs[0] = c0;
01020 cs[1] = c1;
01021 cs[2] = NULL;
01022 for (;;) {
01023
01024 if ((c0->tech_pvt != pvt0) ||
01025 (c1->tech_pvt != pvt1) ||
01026 (c0->masq || c0->masqr || c1->masq || c1->masqr) ||
01027 (c0->monitor || c0->audiohooks || c1->monitor || c1->audiohooks) ||
01028 (!ast_framehook_list_is_empty(c0->framehooks) || !ast_framehook_list_is_empty(c1->framehooks))) {
01029 ast_debug(1, "Oooh, something is weird, backing out\n");
01030 res = AST_BRIDGE_RETRY;
01031 break;
01032 }
01033
01034
01035 ast_rtp_instance_get_remote_address(instance1, &t1);
01036 if (vinstance1) {
01037 ast_rtp_instance_get_remote_address(vinstance1, &vt1);
01038 }
01039 if (tinstance1) {
01040 ast_rtp_instance_get_remote_address(tinstance1, &tt1);
01041 }
01042 if (glue1->get_codec) {
01043 codec1 = glue1->get_codec(c1);
01044 }
01045
01046 ast_rtp_instance_get_remote_address(instance0, &t0);
01047 if (vinstance0) {
01048 ast_rtp_instance_get_remote_address(vinstance0, &vt0);
01049 }
01050 if (tinstance0) {
01051 ast_rtp_instance_get_remote_address(tinstance0, &tt0);
01052 }
01053 if (glue0->get_codec) {
01054 codec0 = glue0->get_codec(c0);
01055 }
01056
01057 if ((ast_sockaddr_cmp(&t1, &ac1)) ||
01058 (vinstance1 && ast_sockaddr_cmp(&vt1, &vac1)) ||
01059 (tinstance1 && ast_sockaddr_cmp(&tt1, &tac1)) ||
01060 (codec1 != oldcodec1)) {
01061 ast_debug(1, "Oooh, '%s' changed end address to %s (format %s)\n",
01062 c1->name, ast_sockaddr_stringify(&t1),
01063 ast_getformatname(codec1));
01064 ast_debug(1, "Oooh, '%s' changed end vaddress to %s (format %s)\n",
01065 c1->name, ast_sockaddr_stringify(&vt1),
01066 ast_getformatname(codec1));
01067 ast_debug(1, "Oooh, '%s' changed end taddress to %s (format %s)\n",
01068 c1->name, ast_sockaddr_stringify(&tt1),
01069 ast_getformatname(codec1));
01070 ast_debug(1, "Oooh, '%s' was %s/(format %s)\n",
01071 c1->name, ast_sockaddr_stringify(&ac1),
01072 ast_getformatname(oldcodec1));
01073 ast_debug(1, "Oooh, '%s' was %s/(format %s)\n",
01074 c1->name, ast_sockaddr_stringify(&vac1),
01075 ast_getformatname(oldcodec1));
01076 ast_debug(1, "Oooh, '%s' was %s/(format %s)\n",
01077 c1->name, ast_sockaddr_stringify(&tac1),
01078 ast_getformatname(oldcodec1));
01079 if (glue0->update_peer(c0,
01080 ast_sockaddr_isnull(&t1) ? NULL : instance1,
01081 ast_sockaddr_isnull(&vt1) ? NULL : vinstance1,
01082 ast_sockaddr_isnull(&tt1) ? NULL : tinstance1,
01083 codec1, 0)) {
01084 ast_log(LOG_WARNING, "Channel '%s' failed to update to '%s'\n", c0->name, c1->name);
01085 }
01086 ast_sockaddr_copy(&ac1, &t1);
01087 ast_sockaddr_copy(&vac1, &vt1);
01088 ast_sockaddr_copy(&tac1, &tt1);
01089 oldcodec1 = codec1;
01090 }
01091 if ((ast_sockaddr_cmp(&t0, &ac0)) ||
01092 (vinstance0 && ast_sockaddr_cmp(&vt0, &vac0)) ||
01093 (tinstance0 && ast_sockaddr_cmp(&tt0, &tac0)) ||
01094 (codec0 != oldcodec0)) {
01095 ast_debug(1, "Oooh, '%s' changed end address to %s (format %s)\n",
01096 c0->name, ast_sockaddr_stringify(&t0),
01097 ast_getformatname(codec0));
01098 ast_debug(1, "Oooh, '%s' was %s/(format %s)\n",
01099 c0->name, ast_sockaddr_stringify(&ac0),
01100 ast_getformatname(oldcodec0));
01101 if (glue1->update_peer(c1, t0.len ? instance0 : NULL,
01102 vt0.len ? vinstance0 : NULL,
01103 tt0.len ? tinstance0 : NULL,
01104 codec0, 0)) {
01105 ast_log(LOG_WARNING, "Channel '%s' failed to update to '%s'\n", c1->name, c0->name);
01106 }
01107 ast_sockaddr_copy(&ac0, &t0);
01108 ast_sockaddr_copy(&vac0, &vt0);
01109 ast_sockaddr_copy(&tac0, &tt0);
01110 oldcodec0 = codec0;
01111 }
01112
01113
01114 if (!(who = ast_waitfor_n(cs, 2, &timeoutms))) {
01115 if (!timeoutms) {
01116 res = AST_BRIDGE_RETRY;
01117 break;
01118 }
01119 ast_debug(1, "Ooh, empty read...\n");
01120 if (ast_check_hangup(c0) || ast_check_hangup(c1)) {
01121 break;
01122 }
01123 continue;
01124 }
01125 fr = ast_read(who);
01126 other = (who == c0) ? c1 : c0;
01127 if (!fr || ((fr->frametype == AST_FRAME_DTMF_BEGIN || fr->frametype == AST_FRAME_DTMF_END) &&
01128 (((who == c0) && (flags & AST_BRIDGE_DTMF_CHANNEL_0)) ||
01129 ((who == c1) && (flags & AST_BRIDGE_DTMF_CHANNEL_1))))) {
01130
01131 *fo = fr;
01132 *rc = who;
01133 ast_debug(1, "Oooh, got a %s\n", fr ? "digit" : "hangup");
01134 res = AST_BRIDGE_COMPLETE;
01135 break;
01136 } else if ((fr->frametype == AST_FRAME_CONTROL) && !(flags & AST_BRIDGE_IGNORE_SIGS)) {
01137 if ((fr->subclass.integer == AST_CONTROL_HOLD) ||
01138 (fr->subclass.integer == AST_CONTROL_UNHOLD) ||
01139 (fr->subclass.integer == AST_CONTROL_VIDUPDATE) ||
01140 (fr->subclass.integer == AST_CONTROL_SRCUPDATE) ||
01141 (fr->subclass.integer == AST_CONTROL_T38_PARAMETERS) ||
01142 (fr->subclass.integer == AST_CONTROL_UPDATE_RTP_PEER)) {
01143 if (fr->subclass.integer == AST_CONTROL_HOLD) {
01144
01145 if (who == c0) {
01146 glue1->update_peer(c1, NULL, NULL, NULL, 0, 0);
01147 } else {
01148 glue0->update_peer(c0, NULL, NULL, NULL, 0, 0);
01149 }
01150 } else if (fr->subclass.integer == AST_CONTROL_UNHOLD ||
01151 fr->subclass.integer == AST_CONTROL_UPDATE_RTP_PEER) {
01152
01153
01154 if (who == c0) {
01155 glue1->update_peer(c1, instance0, vinstance0, tinstance0, codec0, 0);
01156 } else {
01157 glue0->update_peer(c0, instance1, vinstance1, tinstance1, codec1, 0);
01158 }
01159 }
01160
01161 ast_rtp_instance_get_remote_address(instance0, &t0);
01162 ast_sockaddr_copy(&ac0, &t0);
01163 ast_rtp_instance_get_remote_address(instance1, &t1);
01164 ast_sockaddr_copy(&ac1, &t1);
01165
01166 if (glue0->get_codec && c0->tech_pvt) {
01167 oldcodec0 = codec0 = glue0->get_codec(c0);
01168 }
01169 if (glue1->get_codec && c1->tech_pvt) {
01170 oldcodec1 = codec1 = glue1->get_codec(c1);
01171 }
01172
01173 if (fr->subclass.integer != AST_CONTROL_UPDATE_RTP_PEER) {
01174 ast_indicate_data(other, fr->subclass.integer, fr->data.ptr, fr->datalen);
01175 }
01176 ast_frfree(fr);
01177 } else if (fr->subclass.integer == AST_CONTROL_CONNECTED_LINE) {
01178 if (ast_channel_connected_line_macro(who, other, fr, other == c0, 1)) {
01179 ast_indicate_data(other, fr->subclass.integer, fr->data.ptr, fr->datalen);
01180 }
01181 ast_frfree(fr);
01182 } else if (fr->subclass.integer == AST_CONTROL_REDIRECTING) {
01183 if (ast_channel_redirecting_macro(who, other, fr, other == c0, 1)) {
01184 ast_indicate_data(other, fr->subclass.integer, fr->data.ptr, fr->datalen);
01185 }
01186 ast_frfree(fr);
01187 } else {
01188 *fo = fr;
01189 *rc = who;
01190 ast_debug(1, "Got a FRAME_CONTROL (%d) frame on channel %s\n", fr->subclass.integer, who->name);
01191 return AST_BRIDGE_COMPLETE;
01192 }
01193 } else {
01194 if ((fr->frametype == AST_FRAME_DTMF_BEGIN) ||
01195 (fr->frametype == AST_FRAME_DTMF_END) ||
01196 (fr->frametype == AST_FRAME_VOICE) ||
01197 (fr->frametype == AST_FRAME_VIDEO) ||
01198 (fr->frametype == AST_FRAME_IMAGE) ||
01199 (fr->frametype == AST_FRAME_HTML) ||
01200 (fr->frametype == AST_FRAME_MODEM) ||
01201 (fr->frametype == AST_FRAME_TEXT)) {
01202 ast_write(other, fr);
01203 }
01204 ast_frfree(fr);
01205 }
01206
01207 cs[2] = cs[0];
01208 cs[0] = cs[1];
01209 cs[1] = cs[2];
01210 }
01211
01212 if (ast_test_flag(c0, AST_FLAG_ZOMBIE)) {
01213 ast_debug(1, "Channel '%s' Zombie cleardown from bridge\n", c0->name);
01214 } else if (c0->tech_pvt != pvt0) {
01215 ast_debug(1, "Channel c0->'%s' pvt changed, in bridge with c1->'%s'\n", c0->name, c1->name);
01216 } else if (glue0 != ast_rtp_instance_get_glue(c0->tech->type)) {
01217 ast_debug(1, "Channel c0->'%s' technology changed, in bridge with c1->'%s'\n", c0->name, c1->name);
01218 } else if (glue0->update_peer(c0, NULL, NULL, NULL, 0, 0)) {
01219 ast_log(LOG_WARNING, "Channel '%s' failed to break RTP bridge\n", c0->name);
01220 }
01221 if (ast_test_flag(c1, AST_FLAG_ZOMBIE)) {
01222 ast_debug(1, "Channel '%s' Zombie cleardown from bridge\n", c1->name);
01223 } else if (c1->tech_pvt != pvt1) {
01224 ast_debug(1, "Channel c1->'%s' pvt changed, in bridge with c0->'%s'\n", c1->name, c0->name);
01225 } else if (glue1 != ast_rtp_instance_get_glue(c1->tech->type)) {
01226 ast_debug(1, "Channel c1->'%s' technology changed, in bridge with c0->'%s'\n", c1->name, c0->name);
01227 } else if (glue1->update_peer(c1, NULL, NULL, NULL, 0, 0)) {
01228 ast_log(LOG_WARNING, "Channel '%s' failed to break RTP bridge\n", c1->name);
01229 }
01230
01231 instance0->bridged = NULL;
01232 instance1->bridged = NULL;
01233
01234 ast_poll_channel_del(c0, c1);
01235
01236 return res;
01237 }
01238
01239
01240
01241
01242 static void unref_instance_cond(struct ast_rtp_instance **instance)
01243 {
01244 if (*instance) {
01245 ao2_ref(*instance, -1);
01246 *instance = NULL;
01247 }
01248 }
01249
01250 enum ast_bridge_result ast_rtp_instance_bridge(struct ast_channel *c0, struct ast_channel *c1, int flags, struct ast_frame **fo, struct ast_channel **rc, int timeoutms)
01251 {
01252 struct ast_rtp_instance *instance0 = NULL, *instance1 = NULL,
01253 *vinstance0 = NULL, *vinstance1 = NULL,
01254 *tinstance0 = NULL, *tinstance1 = NULL;
01255 struct ast_rtp_glue *glue0, *glue1;
01256 struct ast_sockaddr addr1 = { {0, }, }, addr2 = { {0, }, };
01257 enum ast_rtp_glue_result audio_glue0_res = AST_RTP_GLUE_RESULT_FORBID, video_glue0_res = AST_RTP_GLUE_RESULT_FORBID;
01258 enum ast_rtp_glue_result audio_glue1_res = AST_RTP_GLUE_RESULT_FORBID, video_glue1_res = AST_RTP_GLUE_RESULT_FORBID;
01259 enum ast_bridge_result res = AST_BRIDGE_FAILED;
01260 enum ast_rtp_dtmf_mode dmode;
01261 format_t codec0 = 0, codec1 = 0;
01262 int unlock_chans = 1;
01263
01264
01265 ast_channel_lock(c0);
01266 while (ast_channel_trylock(c1)) {
01267 ast_channel_unlock(c0);
01268 usleep(1);
01269 ast_channel_lock(c0);
01270 }
01271
01272
01273 if (ast_check_hangup(c0) || ast_check_hangup(c1)) {
01274 ast_log(LOG_WARNING, "Got hangup while attempting to bridge '%s' and '%s'\n", c0->name, c1->name);
01275 goto done;
01276 }
01277
01278
01279 if (!(glue0 = ast_rtp_instance_get_glue(c0->tech->type)) || !(glue1 = ast_rtp_instance_get_glue(c1->tech->type))) {
01280 ast_debug(1, "Can't find native functions for channel '%s'\n", glue0 ? c1->name : c0->name);
01281 goto done;
01282 }
01283
01284 audio_glue0_res = glue0->get_rtp_info(c0, &instance0);
01285 video_glue0_res = glue0->get_vrtp_info ? glue0->get_vrtp_info(c0, &vinstance0) : AST_RTP_GLUE_RESULT_FORBID;
01286
01287 audio_glue1_res = glue1->get_rtp_info(c1, &instance1);
01288 video_glue1_res = glue1->get_vrtp_info ? glue1->get_vrtp_info(c1, &vinstance1) : AST_RTP_GLUE_RESULT_FORBID;
01289
01290
01291 if (video_glue0_res != AST_RTP_GLUE_RESULT_FORBID && (audio_glue0_res != AST_RTP_GLUE_RESULT_REMOTE || video_glue0_res != AST_RTP_GLUE_RESULT_REMOTE)) {
01292 audio_glue0_res = AST_RTP_GLUE_RESULT_FORBID;
01293 }
01294 if (video_glue1_res != AST_RTP_GLUE_RESULT_FORBID && (audio_glue1_res != AST_RTP_GLUE_RESULT_REMOTE || video_glue1_res != AST_RTP_GLUE_RESULT_REMOTE)) {
01295 audio_glue1_res = AST_RTP_GLUE_RESULT_FORBID;
01296 }
01297
01298
01299 if (audio_glue0_res == AST_RTP_GLUE_RESULT_FORBID || audio_glue1_res == AST_RTP_GLUE_RESULT_FORBID) {
01300 res = AST_BRIDGE_FAILED_NOWARN;
01301 goto done;
01302 }
01303
01304
01305
01306 ast_rtp_instance_get_remote_address(instance0, &addr1);
01307 ast_rtp_instance_get_remote_address(instance1, &addr2);
01308
01309 if (addr1.ss.ss_family != addr2.ss.ss_family ||
01310 (ast_sockaddr_is_ipv4_mapped(&addr1) != ast_sockaddr_is_ipv4_mapped(&addr2))) {
01311 audio_glue0_res = AST_RTP_GLUE_RESULT_LOCAL;
01312 audio_glue1_res = AST_RTP_GLUE_RESULT_LOCAL;
01313 }
01314
01315
01316 dmode = ast_rtp_instance_dtmf_mode_get(instance0);
01317 if ((flags & AST_BRIDGE_DTMF_CHANNEL_0) && dmode) {
01318 res = AST_BRIDGE_FAILED_NOWARN;
01319 goto done;
01320 }
01321 dmode = ast_rtp_instance_dtmf_mode_get(instance1);
01322 if ((flags & AST_BRIDGE_DTMF_CHANNEL_1) && dmode) {
01323 res = AST_BRIDGE_FAILED_NOWARN;
01324 goto done;
01325 }
01326
01327
01328 if ((audio_glue0_res == AST_RTP_GLUE_RESULT_LOCAL || audio_glue1_res == AST_RTP_GLUE_RESULT_LOCAL) && ((instance0->engine->local_bridge != instance1->engine->local_bridge) || (instance0->engine->dtmf_compatible && !instance0->engine->dtmf_compatible(c0, instance0, c1, instance1)))) {
01329 res = AST_BRIDGE_FAILED_NOWARN;
01330 goto done;
01331 }
01332
01333
01334 codec0 = glue0->get_codec ? glue0->get_codec(c0) : 0;
01335 codec1 = glue1->get_codec ? glue1->get_codec(c1) : 0;
01336 if (codec0 && codec1 && !(codec0 & codec1)) {
01337 ast_debug(1, "Channel codec0 = %s is not codec1 = %s, cannot native bridge in RTP.\n", ast_getformatname(codec0), ast_getformatname(codec1));
01338 res = AST_BRIDGE_FAILED_NOWARN;
01339 goto done;
01340 }
01341
01342 instance0->glue = glue0;
01343 instance1->glue = glue1;
01344 instance0->chan = c0;
01345 instance1->chan = c1;
01346
01347
01348 if (audio_glue0_res == AST_RTP_GLUE_RESULT_LOCAL || audio_glue1_res == AST_RTP_GLUE_RESULT_LOCAL) {
01349 ast_verb(3, "Locally bridging %s and %s\n", c0->name, c1->name);
01350 res = local_bridge_loop(c0, c1, instance0, instance1, timeoutms, flags, fo, rc, c0->tech_pvt, c1->tech_pvt);
01351 } else {
01352 ast_verb(3, "Remotely bridging %s and %s\n", c0->name, c1->name);
01353 res = remote_bridge_loop(c0, c1, instance0, instance1, vinstance0, vinstance1,
01354 tinstance0, tinstance1, glue0, glue1, codec0, codec1, timeoutms, flags,
01355 fo, rc, c0->tech_pvt, c1->tech_pvt);
01356 }
01357
01358 instance0->glue = NULL;
01359 instance1->glue = NULL;
01360 instance0->chan = NULL;
01361 instance1->chan = NULL;
01362
01363 unlock_chans = 0;
01364
01365 done:
01366 if (unlock_chans) {
01367 ast_channel_unlock(c0);
01368 ast_channel_unlock(c1);
01369 }
01370
01371 unref_instance_cond(&instance0);
01372 unref_instance_cond(&instance1);
01373 unref_instance_cond(&vinstance0);
01374 unref_instance_cond(&vinstance1);
01375 unref_instance_cond(&tinstance0);
01376 unref_instance_cond(&tinstance1);
01377
01378 return res;
01379 }
01380
01381 struct ast_rtp_instance *ast_rtp_instance_get_bridged(struct ast_rtp_instance *instance)
01382 {
01383 return instance->bridged;
01384 }
01385
01386 void ast_rtp_instance_early_bridge_make_compatible(struct ast_channel *c0, struct ast_channel *c1)
01387 {
01388 struct ast_rtp_instance *instance0 = NULL, *instance1 = NULL,
01389 *vinstance0 = NULL, *vinstance1 = NULL,
01390 *tinstance0 = NULL, *tinstance1 = NULL;
01391 struct ast_rtp_glue *glue0, *glue1;
01392 enum ast_rtp_glue_result audio_glue0_res = AST_RTP_GLUE_RESULT_FORBID, video_glue0_res = AST_RTP_GLUE_RESULT_FORBID;
01393 enum ast_rtp_glue_result audio_glue1_res = AST_RTP_GLUE_RESULT_FORBID, video_glue1_res = AST_RTP_GLUE_RESULT_FORBID;
01394 format_t codec0 = 0, codec1 = 0;
01395 int res = 0;
01396
01397
01398 ast_channel_lock(c0);
01399 while (ast_channel_trylock(c1)) {
01400 ast_channel_unlock(c0);
01401 usleep(1);
01402 ast_channel_lock(c0);
01403 }
01404
01405
01406 if (!(glue0 = ast_rtp_instance_get_glue(c0->tech->type)) || !(glue1 = ast_rtp_instance_get_glue(c1->tech->type))) {
01407 ast_debug(1, "Can't find native functions for channel '%s'\n", glue0 ? c1->name : c0->name);
01408 goto done;
01409 }
01410
01411 audio_glue0_res = glue0->get_rtp_info(c0, &instance0);
01412 video_glue0_res = glue0->get_vrtp_info ? glue0->get_vrtp_info(c0, &vinstance0) : AST_RTP_GLUE_RESULT_FORBID;
01413
01414 audio_glue1_res = glue1->get_rtp_info(c1, &instance1);
01415 video_glue1_res = glue1->get_vrtp_info ? glue1->get_vrtp_info(c1, &vinstance1) : AST_RTP_GLUE_RESULT_FORBID;
01416
01417
01418 if (video_glue0_res != AST_RTP_GLUE_RESULT_FORBID && (audio_glue0_res != AST_RTP_GLUE_RESULT_REMOTE || video_glue0_res != AST_RTP_GLUE_RESULT_REMOTE)) {
01419 audio_glue0_res = AST_RTP_GLUE_RESULT_FORBID;
01420 }
01421 if (video_glue1_res != AST_RTP_GLUE_RESULT_FORBID && (audio_glue1_res != AST_RTP_GLUE_RESULT_REMOTE || video_glue1_res != AST_RTP_GLUE_RESULT_REMOTE)) {
01422 audio_glue1_res = AST_RTP_GLUE_RESULT_FORBID;
01423 }
01424 if (audio_glue0_res == AST_RTP_GLUE_RESULT_REMOTE && (video_glue0_res == AST_RTP_GLUE_RESULT_FORBID || video_glue0_res == AST_RTP_GLUE_RESULT_REMOTE) && glue0->get_codec) {
01425 codec0 = glue0->get_codec(c0);
01426 }
01427 if (audio_glue1_res == AST_RTP_GLUE_RESULT_REMOTE && (video_glue1_res == AST_RTP_GLUE_RESULT_FORBID || video_glue1_res == AST_RTP_GLUE_RESULT_REMOTE) && glue1->get_codec) {
01428 codec1 = glue1->get_codec(c1);
01429 }
01430
01431
01432 if (audio_glue0_res != AST_RTP_GLUE_RESULT_REMOTE || audio_glue1_res != AST_RTP_GLUE_RESULT_REMOTE) {
01433 goto done;
01434 }
01435
01436
01437 if (!(codec0 & codec1)) {
01438 goto done;
01439 }
01440
01441 ast_rtp_codecs_payloads_copy(&instance0->codecs, &instance1->codecs, instance1);
01442
01443 if (vinstance0 && vinstance1) {
01444 ast_rtp_codecs_payloads_copy(&vinstance0->codecs, &vinstance1->codecs, vinstance1);
01445 }
01446 if (tinstance0 && tinstance1) {
01447 ast_rtp_codecs_payloads_copy(&tinstance0->codecs, &tinstance1->codecs, tinstance1);
01448 }
01449
01450 res = 0;
01451
01452 done:
01453 ast_channel_unlock(c0);
01454 ast_channel_unlock(c1);
01455
01456 unref_instance_cond(&instance0);
01457 unref_instance_cond(&instance1);
01458 unref_instance_cond(&vinstance0);
01459 unref_instance_cond(&vinstance1);
01460 unref_instance_cond(&tinstance0);
01461 unref_instance_cond(&tinstance1);
01462
01463 if (!res) {
01464 ast_debug(1, "Seeded SDP of '%s' with that of '%s'\n", c0->name, c1 ? c1->name : "<unspecified>");
01465 }
01466 }
01467
01468 int ast_rtp_instance_early_bridge(struct ast_channel *c0, struct ast_channel *c1)
01469 {
01470 struct ast_rtp_instance *instance0 = NULL, *instance1 = NULL,
01471 *vinstance0 = NULL, *vinstance1 = NULL,
01472 *tinstance0 = NULL, *tinstance1 = NULL;
01473 struct ast_rtp_glue *glue0, *glue1;
01474 enum ast_rtp_glue_result audio_glue0_res = AST_RTP_GLUE_RESULT_FORBID, video_glue0_res = AST_RTP_GLUE_RESULT_FORBID;
01475 enum ast_rtp_glue_result audio_glue1_res = AST_RTP_GLUE_RESULT_FORBID, video_glue1_res = AST_RTP_GLUE_RESULT_FORBID;
01476 format_t codec0 = 0, codec1 = 0;
01477 int res = 0;
01478
01479
01480 if (!c1) {
01481 return -1;
01482 }
01483
01484
01485 ast_channel_lock(c0);
01486 while (ast_channel_trylock(c1)) {
01487 ast_channel_unlock(c0);
01488 usleep(1);
01489 ast_channel_lock(c0);
01490 }
01491
01492
01493 if (!(glue0 = ast_rtp_instance_get_glue(c0->tech->type)) || !(glue1 = ast_rtp_instance_get_glue(c1->tech->type))) {
01494 ast_log(LOG_WARNING, "Can't find native functions for channel '%s'\n", glue0 ? c1->name : c0->name);
01495 goto done;
01496 }
01497
01498 audio_glue0_res = glue0->get_rtp_info(c0, &instance0);
01499 video_glue0_res = glue0->get_vrtp_info ? glue0->get_vrtp_info(c0, &vinstance0) : AST_RTP_GLUE_RESULT_FORBID;
01500
01501 audio_glue1_res = glue1->get_rtp_info(c1, &instance1);
01502 video_glue1_res = glue1->get_vrtp_info ? glue1->get_vrtp_info(c1, &vinstance1) : AST_RTP_GLUE_RESULT_FORBID;
01503
01504
01505 if (video_glue0_res != AST_RTP_GLUE_RESULT_FORBID && (audio_glue0_res != AST_RTP_GLUE_RESULT_REMOTE || video_glue0_res != AST_RTP_GLUE_RESULT_REMOTE)) {
01506 audio_glue0_res = AST_RTP_GLUE_RESULT_FORBID;
01507 }
01508 if (video_glue1_res != AST_RTP_GLUE_RESULT_FORBID && (audio_glue1_res != AST_RTP_GLUE_RESULT_REMOTE || video_glue1_res != AST_RTP_GLUE_RESULT_REMOTE)) {
01509 audio_glue1_res = AST_RTP_GLUE_RESULT_FORBID;
01510 }
01511 if (audio_glue0_res == AST_RTP_GLUE_RESULT_REMOTE && (video_glue0_res == AST_RTP_GLUE_RESULT_FORBID || video_glue0_res == AST_RTP_GLUE_RESULT_REMOTE) && glue0->get_codec(c0)) {
01512 codec0 = glue0->get_codec(c0);
01513 }
01514 if (audio_glue1_res == AST_RTP_GLUE_RESULT_REMOTE && (video_glue1_res == AST_RTP_GLUE_RESULT_FORBID || video_glue1_res == AST_RTP_GLUE_RESULT_REMOTE) && glue1->get_codec(c1)) {
01515 codec1 = glue1->get_codec(c1);
01516 }
01517
01518
01519 if (audio_glue0_res != AST_RTP_GLUE_RESULT_REMOTE || audio_glue1_res != AST_RTP_GLUE_RESULT_REMOTE) {
01520 goto done;
01521 }
01522
01523
01524 if (!(codec0 & codec1)) {
01525 goto done;
01526 }
01527
01528
01529 if (glue0->update_peer(c0, instance1, vinstance1, tinstance1, codec1, 0)) {
01530 ast_log(LOG_WARNING, "Channel '%s' failed to setup early bridge to '%s'\n", c0->name, c1 ? c1->name : "<unspecified>");
01531 }
01532
01533 res = 0;
01534
01535 done:
01536 ast_channel_unlock(c0);
01537 ast_channel_unlock(c1);
01538
01539 unref_instance_cond(&instance0);
01540 unref_instance_cond(&instance1);
01541 unref_instance_cond(&vinstance0);
01542 unref_instance_cond(&vinstance1);
01543 unref_instance_cond(&tinstance0);
01544 unref_instance_cond(&tinstance1);
01545
01546 if (!res) {
01547 ast_debug(1, "Setting early bridge SDP of '%s' with that of '%s'\n", c0->name, c1 ? c1->name : "<unspecified>");
01548 }
01549
01550 return res;
01551 }
01552
01553 int ast_rtp_red_init(struct ast_rtp_instance *instance, int buffer_time, int *payloads, int generations)
01554 {
01555 return instance->engine->red_init ? instance->engine->red_init(instance, buffer_time, payloads, generations) : -1;
01556 }
01557
01558 int ast_rtp_red_buffer(struct ast_rtp_instance *instance, struct ast_frame *frame)
01559 {
01560 return instance->engine->red_buffer ? instance->engine->red_buffer(instance, frame) : -1;
01561 }
01562
01563 int ast_rtp_instance_get_stats(struct ast_rtp_instance *instance, struct ast_rtp_instance_stats *stats, enum ast_rtp_instance_stat stat)
01564 {
01565 return instance->engine->get_stat ? instance->engine->get_stat(instance, stats, stat) : -1;
01566 }
01567
01568 char *ast_rtp_instance_get_quality(struct ast_rtp_instance *instance, enum ast_rtp_instance_stat_field field, char *buf, size_t size)
01569 {
01570 struct ast_rtp_instance_stats stats = { 0, };
01571 enum ast_rtp_instance_stat stat;
01572
01573
01574 if (field == AST_RTP_INSTANCE_STAT_FIELD_QUALITY) {
01575 stat = AST_RTP_INSTANCE_STAT_ALL;
01576 } else if (field == AST_RTP_INSTANCE_STAT_FIELD_QUALITY_JITTER) {
01577 stat = AST_RTP_INSTANCE_STAT_COMBINED_JITTER;
01578 } else if (field == AST_RTP_INSTANCE_STAT_FIELD_QUALITY_LOSS) {
01579 stat = AST_RTP_INSTANCE_STAT_COMBINED_LOSS;
01580 } else if (field == AST_RTP_INSTANCE_STAT_FIELD_QUALITY_RTT) {
01581 stat = AST_RTP_INSTANCE_STAT_COMBINED_RTT;
01582 } else {
01583 return NULL;
01584 }
01585
01586
01587 if (ast_rtp_instance_get_stats(instance, &stats, stat)) {
01588 return NULL;
01589 }
01590
01591
01592 if (field == AST_RTP_INSTANCE_STAT_FIELD_QUALITY) {
01593 snprintf(buf, size, "ssrc=%i;themssrc=%u;lp=%u;rxjitter=%f;rxcount=%u;txjitter=%f;txcount=%u;rlp=%u;rtt=%f",
01594 stats.local_ssrc, stats.remote_ssrc, stats.rxploss, stats.txjitter, stats.rxcount, stats.rxjitter, stats.txcount, stats.txploss, stats.rtt);
01595 } else if (field == AST_RTP_INSTANCE_STAT_FIELD_QUALITY_JITTER) {
01596 snprintf(buf, size, "minrxjitter=%f;maxrxjitter=%f;avgrxjitter=%f;stdevrxjitter=%f;reported_minjitter=%f;reported_maxjitter=%f;reported_avgjitter=%f;reported_stdevjitter=%f;",
01597 stats.local_minjitter, stats.local_maxjitter, stats.local_normdevjitter, sqrt(stats.local_stdevjitter), stats.remote_minjitter, stats.remote_maxjitter, stats.remote_normdevjitter, sqrt(stats.remote_stdevjitter));
01598 } else if (field == AST_RTP_INSTANCE_STAT_FIELD_QUALITY_LOSS) {
01599 snprintf(buf, size, "minrxlost=%f;maxrxlost=%f;avgrxlost=%f;stdevrxlost=%f;reported_minlost=%f;reported_maxlost=%f;reported_avglost=%f;reported_stdevlost=%f;",
01600 stats.local_minrxploss, stats.local_maxrxploss, stats.local_normdevrxploss, sqrt(stats.local_stdevrxploss), stats.remote_minrxploss, stats.remote_maxrxploss, stats.remote_normdevrxploss, sqrt(stats.remote_stdevrxploss));
01601 } else if (field == AST_RTP_INSTANCE_STAT_FIELD_QUALITY_RTT) {
01602 snprintf(buf, size, "minrtt=%f;maxrtt=%f;avgrtt=%f;stdevrtt=%f;", stats.minrtt, stats.maxrtt, stats.normdevrtt, stats.stdevrtt);
01603 }
01604
01605 return buf;
01606 }
01607
01608 void ast_rtp_instance_set_stats_vars(struct ast_channel *chan, struct ast_rtp_instance *instance)
01609 {
01610 char quality_buf[AST_MAX_USER_FIELD], *quality;
01611 struct ast_channel *bridge = ast_bridged_channel(chan);
01612
01613 if ((quality = ast_rtp_instance_get_quality(instance, AST_RTP_INSTANCE_STAT_FIELD_QUALITY, quality_buf, sizeof(quality_buf)))) {
01614 pbx_builtin_setvar_helper(chan, "RTPAUDIOQOS", quality);
01615 if (bridge) {
01616 pbx_builtin_setvar_helper(bridge, "RTPAUDIOQOSBRIDGED", quality);
01617 }
01618 }
01619
01620 if ((quality = ast_rtp_instance_get_quality(instance, AST_RTP_INSTANCE_STAT_FIELD_QUALITY_JITTER, quality_buf, sizeof(quality_buf)))) {
01621 pbx_builtin_setvar_helper(chan, "RTPAUDIOQOSJITTER", quality);
01622 if (bridge) {
01623 pbx_builtin_setvar_helper(bridge, "RTPAUDIOQOSJITTERBRIDGED", quality);
01624 }
01625 }
01626
01627 if ((quality = ast_rtp_instance_get_quality(instance, AST_RTP_INSTANCE_STAT_FIELD_QUALITY_LOSS, quality_buf, sizeof(quality_buf)))) {
01628 pbx_builtin_setvar_helper(chan, "RTPAUDIOQOSLOSS", quality);
01629 if (bridge) {
01630 pbx_builtin_setvar_helper(bridge, "RTPAUDIOQOSLOSSBRIDGED", quality);
01631 }
01632 }
01633
01634 if ((quality = ast_rtp_instance_get_quality(instance, AST_RTP_INSTANCE_STAT_FIELD_QUALITY_RTT, quality_buf, sizeof(quality_buf)))) {
01635 pbx_builtin_setvar_helper(chan, "RTPAUDIOQOSRTT", quality);
01636 if (bridge) {
01637 pbx_builtin_setvar_helper(bridge, "RTPAUDIOQOSRTTBRIDGED", quality);
01638 }
01639 }
01640 }
01641
01642 int ast_rtp_instance_set_read_format(struct ast_rtp_instance *instance, format_t format)
01643 {
01644 return instance->engine->set_read_format ? instance->engine->set_read_format(instance, format) : -1;
01645 }
01646
01647 int ast_rtp_instance_set_write_format(struct ast_rtp_instance *instance, format_t format)
01648 {
01649 return instance->engine->set_write_format ? instance->engine->set_write_format(instance, format) : -1;
01650 }
01651
01652 int ast_rtp_instance_make_compatible(struct ast_channel *chan, struct ast_rtp_instance *instance, struct ast_channel *peer)
01653 {
01654 struct ast_rtp_glue *glue;
01655 struct ast_rtp_instance *peer_instance = NULL;
01656 int res = -1;
01657
01658 if (!instance->engine->make_compatible) {
01659 return -1;
01660 }
01661
01662 ast_channel_lock(peer);
01663
01664 if (!(glue = ast_rtp_instance_get_glue(peer->tech->type))) {
01665 ast_channel_unlock(peer);
01666 return -1;
01667 }
01668
01669 glue->get_rtp_info(peer, &peer_instance);
01670
01671 if (!peer_instance || peer_instance->engine != instance->engine) {
01672 ast_channel_unlock(peer);
01673 ao2_ref(peer_instance, -1);
01674 peer_instance = NULL;
01675 return -1;
01676 }
01677
01678 res = instance->engine->make_compatible(chan, instance, peer, peer_instance);
01679
01680 ast_channel_unlock(peer);
01681
01682 ao2_ref(peer_instance, -1);
01683 peer_instance = NULL;
01684
01685 return res;
01686 }
01687
01688 format_t ast_rtp_instance_available_formats(struct ast_rtp_instance *instance, format_t to_endpoint, format_t to_asterisk)
01689 {
01690 format_t formats;
01691
01692 if (instance->engine->available_formats && (formats = instance->engine->available_formats(instance, to_endpoint, to_asterisk))) {
01693 return formats;
01694 }
01695
01696 return ast_translate_available_formats(to_endpoint, to_asterisk);
01697 }
01698
01699 int ast_rtp_instance_activate(struct ast_rtp_instance *instance)
01700 {
01701 return instance->engine->activate ? instance->engine->activate(instance) : 0;
01702 }
01703
01704 void ast_rtp_instance_stun_request(struct ast_rtp_instance *instance,
01705 struct ast_sockaddr *suggestion,
01706 const char *username)
01707 {
01708 if (instance->engine->stun_request) {
01709 instance->engine->stun_request(instance, suggestion, username);
01710 }
01711 }
01712
01713 void ast_rtp_instance_set_timeout(struct ast_rtp_instance *instance, int timeout)
01714 {
01715 instance->timeout = timeout;
01716 }
01717
01718 void ast_rtp_instance_set_hold_timeout(struct ast_rtp_instance *instance, int timeout)
01719 {
01720 instance->holdtimeout = timeout;
01721 }
01722
01723 void ast_rtp_instance_set_keepalive(struct ast_rtp_instance *instance, int interval)
01724 {
01725 instance->keepalive = interval;
01726 }
01727
01728 int ast_rtp_instance_get_timeout(struct ast_rtp_instance *instance)
01729 {
01730 return instance->timeout;
01731 }
01732
01733 int ast_rtp_instance_get_hold_timeout(struct ast_rtp_instance *instance)
01734 {
01735 return instance->holdtimeout;
01736 }
01737
01738 int ast_rtp_instance_get_keepalive(struct ast_rtp_instance *instance)
01739 {
01740 return instance->keepalive;
01741 }
01742
01743 struct ast_rtp_engine *ast_rtp_instance_get_engine(struct ast_rtp_instance *instance)
01744 {
01745 return instance->engine;
01746 }
01747
01748 struct ast_rtp_glue *ast_rtp_instance_get_active_glue(struct ast_rtp_instance *instance)
01749 {
01750 return instance->glue;
01751 }
01752
01753 struct ast_channel *ast_rtp_instance_get_chan(struct ast_rtp_instance *instance)
01754 {
01755 return instance->chan;
01756 }
01757
01758 int ast_rtp_engine_register_srtp(struct ast_srtp_res *srtp_res, struct ast_srtp_policy_res *policy_res)
01759 {
01760 if (res_srtp || res_srtp_policy) {
01761 return -1;
01762 }
01763 if (!srtp_res || !policy_res) {
01764 return -1;
01765 }
01766
01767 res_srtp = srtp_res;
01768 res_srtp_policy = policy_res;
01769
01770 return 0;
01771 }
01772
01773 void ast_rtp_engine_unregister_srtp(void)
01774 {
01775 res_srtp = NULL;
01776 res_srtp_policy = NULL;
01777 }
01778
01779 int ast_rtp_engine_srtp_is_registered(void)
01780 {
01781 return res_srtp && res_srtp_policy;
01782 }
01783
01784 int ast_rtp_instance_add_srtp_policy(struct ast_rtp_instance *instance, struct ast_srtp_policy *policy)
01785 {
01786 if (!res_srtp) {
01787 return -1;
01788 }
01789
01790 if (!instance->srtp) {
01791 return res_srtp->create(&instance->srtp, instance, policy);
01792 } else {
01793 return res_srtp->add_stream(instance->srtp, policy);
01794 }
01795 }
01796
01797 struct ast_srtp *ast_rtp_instance_get_srtp(struct ast_rtp_instance *instance)
01798 {
01799 return instance->srtp;
01800 }
01801
01802 int ast_rtp_instance_sendcng(struct ast_rtp_instance *instance, int level)
01803 {
01804 if (instance->engine->sendcng) {
01805 return instance->engine->sendcng(instance, level);
01806 }
01807
01808 return -1;
01809 }