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 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
|
/*
* Copyright (C) 2019-2022 Igalia S.L. All rights reserved.
* Copyright (C) 2022 Metrological Group B.V.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "config.h"
#if ENABLE(WEB_RTC) && USE(GSTREAMER_WEBRTC)
#include "GStreamerWebRTCUtils.h"
#include "ExceptionOr.h"
#include "GStreamerRegistryScanner.h"
#include "OpenSSLCryptoUniquePtr.h"
#include "RTCIceCandidate.h"
#include "RTCIceProtocol.h"
#include <cstdint>
#include <limits>
#include <openssl/bn.h>
#include <openssl/rsa.h>
#include <openssl/ssl.h>
#include <wtf/CryptographicallyRandomNumber.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/TZoneMallocInlines.h>
#include <wtf/WallTime.h>
#include <wtf/WeakRandomNumber.h>
#include <wtf/text/Base64.h>
#include <wtf/text/StringToIntegerConversion.h>
GST_DEBUG_CATEGORY_STATIC(webkit_webrtc_utils_debug);
#define GST_CAT_DEFAULT webkit_webrtc_utils_debug
namespace WebCore {
IGNORE_CLANG_WARNINGS_BEGIN("unsafe-buffer-usage")
static inline RTCIceComponent toRTCIceComponent(int component)
{
return component == 1 ? RTCIceComponent::Rtp : RTCIceComponent::Rtcp;
}
static inline std::optional<RTCIceProtocol> toRTCIceProtocol(const String& protocol)
{
if (protocol.isEmpty())
return { };
if (protocol == "udp"_s)
return RTCIceProtocol::Udp;
ASSERT(protocol == "tcp"_s);
return RTCIceProtocol::Tcp;
}
static inline std::optional<RTCIceTcpCandidateType> toRTCIceTcpCandidateType(const String& type)
{
if (type.isEmpty())
return { };
if (type == "active"_s)
return RTCIceTcpCandidateType::Active;
if (type == "passive"_s)
return RTCIceTcpCandidateType::Passive;
ASSERT(type == "so"_s);
return RTCIceTcpCandidateType::So;
}
static inline std::optional<RTCIceCandidateType> toRTCIceCandidateType(const String& type)
{
if (type.isEmpty())
return { };
if (type == "host"_s)
return RTCIceCandidateType::Host;
if (type == "srflx"_s)
return RTCIceCandidateType::Srflx;
if (type == "prflx"_s)
return RTCIceCandidateType::Prflx;
ASSERT(type == "relay"_s);
return RTCIceCandidateType::Relay;
}
RefPtr<RTCError> toRTCError(GError* rtcError)
{
auto detail = toRTCErrorDetailType(static_cast<GstWebRTCError>(rtcError->code));
if (!detail)
return nullptr;
return RTCError::create(*detail, String::fromUTF8(rtcError->message));
}
static inline double toWebRTCBitRatePriority(RTCPriorityType priority)
{
switch (priority) {
case RTCPriorityType::VeryLow:
return 0.5;
case RTCPriorityType::Low:
return 1;
case RTCPriorityType::Medium:
return 2;
case RTCPriorityType::High:
return 4;
}
RELEASE_ASSERT_NOT_REACHED();
}
ExceptionOr<GUniquePtr<GstStructure>> fromRTCEncodingParameters(const RTCRtpEncodingParameters& parameters, const String& kind)
{
if (kind == "video"_s && parameters.scaleResolutionDownBy && *parameters.scaleResolutionDownBy < 1)
return Exception { ExceptionCode::RangeError, "scaleResolutionDownBy should be >= 1"_s };
if (parameters.rid.length() > 255)
return Exception { ExceptionCode::TypeError, "rid is too long"_s };
if (!parameters.rid.containsOnlyASCII() || !parameters.rid.containsOnly<isASCIIAlphanumeric>())
return Exception { ExceptionCode::TypeError, "rid contains invalid characters"_s };
GUniquePtr<GstStructure> rtcParameters(gst_structure_new("encoding-parameters", "active", G_TYPE_BOOLEAN, parameters.active,
"rid", G_TYPE_STRING, parameters.rid.utf8().data(), "bitrate-priority", G_TYPE_DOUBLE, toWebRTCBitRatePriority(parameters.priority), nullptr));
if (parameters.ssrc)
gst_structure_set(rtcParameters.get(), "ssrc", G_TYPE_UINT, parameters.ssrc, nullptr);
if (parameters.maxBitrate)
gst_structure_set(rtcParameters.get(), "max-bitrate", G_TYPE_UINT, *parameters.maxBitrate, nullptr);
if (parameters.maxFramerate)
gst_structure_set(rtcParameters.get(), "max-framerate", G_TYPE_UINT, *parameters.maxFramerate, nullptr);
if (parameters.scaleResolutionDownBy && kind == "video"_s)
gst_structure_set(rtcParameters.get(), "scale-resolution-down-by", G_TYPE_DOUBLE, *parameters.scaleResolutionDownBy, nullptr);
if (parameters.networkPriority)
gst_structure_set(rtcParameters.get(), "network-priority", G_TYPE_INT, *parameters.networkPriority, nullptr);
return rtcParameters;
}
static inline RTCPriorityType fromWebRTCBitRatePriority(double priority)
{
if (priority < 0.7)
return RTCPriorityType::VeryLow;
if (priority < 1.5)
return RTCPriorityType::Low;
if (priority < 2.5)
return RTCPriorityType::Medium;
return RTCPriorityType::High;
}
static inline RTCRtpEncodingParameters toRTCEncodingParameters(const GstStructure* rtcParameters)
{
RTCRtpEncodingParameters parameters;
if (auto ssrc = gstStructureGet<unsigned>(rtcParameters, "ssrc"_s))
parameters.ssrc = *ssrc;
gst_structure_get(rtcParameters, "active", G_TYPE_BOOLEAN, &(parameters.active), nullptr);
if (auto maxBitrate = gstStructureGet<unsigned>(rtcParameters, "max-bitrate"_s))
parameters.maxBitrate = *maxBitrate;
if (auto maxFramerate = gstStructureGet<unsigned>(rtcParameters, "max-framerate"_s))
parameters.maxFramerate = *maxFramerate;
if (auto rid = gstStructureGetString(rtcParameters, "rid"_s))
parameters.rid = rid.toString();
if (auto scaleResolutionDownBy = gstStructureGet<double>(rtcParameters, "scale-resolution-down-by"_s))
parameters.scaleResolutionDownBy = *scaleResolutionDownBy;
if (auto bitratePriority = gstStructureGet<double>(rtcParameters, "bitrate-priority"_s))
parameters.priority = fromWebRTCBitRatePriority(*bitratePriority);
if (auto networkPriority = gstStructureGet<int>(rtcParameters, "network-priority"_s))
parameters.networkPriority = static_cast<RTCPriorityType>(*networkPriority);
return parameters;
}
static inline RTCRtpCodecParameters toRTCCodecParameters(const GstStructure* rtcParameters)
{
RTCRtpCodecParameters parameters;
if (auto pt = gstStructureGet<unsigned>(rtcParameters, "pt"_s))
parameters.payloadType = *pt;
if (auto mimeType = gstStructureGetString(rtcParameters, "mime-type"_s))
parameters.mimeType = mimeType.toString();
if (auto clockRate = gstStructureGet<unsigned>(rtcParameters, "clock-rate"_s))
parameters.clockRate = *clockRate;
if (auto channels = gstStructureGet<unsigned>(rtcParameters, "channels"_s))
parameters.channels = *channels;
if (auto fmtpLine = gstStructureGetString(rtcParameters, "fmtp-line"_s))
parameters.sdpFmtpLine = fmtpLine.toString();
return parameters;
}
RTCRtpSendParameters toRTCRtpSendParameters(const GstStructure* rtcParameters)
{
if (!rtcParameters)
return { };
RTCRtpSendParameters parameters;
if (auto transactionId = gstStructureGetString(rtcParameters, "transaction-id"_s))
parameters.transactionId = transactionId.toString();
auto encodings = gstStructureGetList<const GstStructure*>(rtcParameters, "encodings"_s);
parameters.encodings.reserveInitialCapacity(encodings.size());
for (const auto& encoding : encodings)
parameters.encodings.append(toRTCEncodingParameters(encoding));
auto codecs = gstStructureGetList<const GstStructure*>(rtcParameters, "codecs"_s);
parameters.codecs.reserveInitialCapacity(codecs.size());
for (const auto& codec : codecs)
parameters.codecs.append(toRTCCodecParameters(codec));
// FIXME: The rtcp parameters should not be hardcoded.
parameters.rtcp.cname = "unused"_s;
parameters.rtcp.reducedSize = false;
// FIXME: Handle rtcParameters.degradationPreference, headerExtensions.
return parameters;
}
GUniquePtr<GstStructure> fromRTCCodecParameters(const RTCRtpCodecParameters& parameters)
{
GUniquePtr<GstStructure> rtcParameters(gst_structure_new("codec-parameters", "pt", G_TYPE_UINT, parameters.payloadType,
"mime-type", G_TYPE_STRING, parameters.mimeType.utf8().data(), "clock-rate", G_TYPE_UINT, parameters.clockRate,
"channels", G_TYPE_UINT, parameters.channels, "fmtp-line", G_TYPE_STRING, parameters.sdpFmtpLine.utf8().data(), nullptr));
return rtcParameters;
}
ExceptionOr<GUniquePtr<GstStructure>> fromRTCSendParameters(const RTCRtpSendParameters& parameters, const String& kind)
{
GUniquePtr<GstStructure> gstParameters(gst_structure_new("send-parameters", "transaction-id", G_TYPE_STRING, parameters.transactionId.ascii().data(), nullptr));
GValue encodingsValue = G_VALUE_INIT;
g_value_init(&encodingsValue, GST_TYPE_LIST);
for (auto& encoding : parameters.encodings) {
auto encodingData = fromRTCEncodingParameters(encoding, kind);
if (encodingData.hasException())
return encodingData.releaseException();
GValue value = G_VALUE_INIT;
g_value_init(&value, GST_TYPE_STRUCTURE);
gst_value_set_structure(&value, encodingData.returnValue().get());
gst_value_list_append_value(&encodingsValue, &value);
g_value_unset(&value);
}
gst_structure_take_value(gstParameters.get(), "encodings", &encodingsValue);
GValue codecsValue = G_VALUE_INIT;
g_value_init(&codecsValue, GST_TYPE_LIST);
for (auto& codec : parameters.codecs) {
auto codecData = fromRTCCodecParameters(codec);
GValue value = G_VALUE_INIT;
g_value_init(&value, GST_TYPE_STRUCTURE);
gst_value_set_structure(&value, codecData.get());
gst_value_list_append_value(&codecsValue, &value);
g_value_unset(&value);
}
gst_structure_take_value(gstParameters.get(), "codecs", &codecsValue);
// FIXME: Missing serialization for degradationPreference, headerExtensions, rtcp.
return gstParameters;
}
static void ensureDebugCategoryInitialized()
{
static std::once_flag onceFlag;
std::call_once(onceFlag, [] {
GST_DEBUG_CATEGORY_INIT(webkit_webrtc_utils_debug, "webkitwebrtcutils", 0, "WebKit WebRTC utilities");
});
}
enum class NextSDPField {
None,
Typ,
Raddr,
Rport,
TcpType,
Ufrag,
Generation
};
std::optional<RTCIceCandidate::Fields> parseIceCandidateSDP(const String& sdp)
{
ensureDebugCategoryInitialized();
GST_TRACE("Parsing ICE Candidate: %s", sdp.utf8().data());
if (!sdp.startsWith("candidate:"_s)) {
GST_WARNING("Invalid SDP ICE candidate format, must start with candidate: prefix");
return { };
}
String foundation;
unsigned componentId = 0;
String transport;
unsigned priority = 0;
String address;
uint32_t port = 0;
String type;
String tcptype;
String relatedAddress;
guint16 relatedPort = 0;
String usernameFragment;
String lowercasedSDP = sdp.convertToASCIILowercase();
StringView view = StringView(lowercasedSDP).substring(10);
unsigned i = 0;
NextSDPField nextSdpField { NextSDPField::None };
for (auto token : view.split(' ')) {
auto tokenString = token.toStringWithoutCopying();
switch (i) {
case 0:
foundation = tokenString;
break;
case 1:
if (auto value = parseInteger<unsigned>(token))
componentId = *value;
else {
GST_WARNING("Invalid SDP candidate component ID: %s", tokenString.utf8().data());
return { };
}
break;
case 2:
transport = tokenString;
break;
case 3:
if (auto value = parseInteger<unsigned>(token))
priority = *value;
else {
GST_WARNING("Invalid SDP candidate priority: %s", tokenString.utf8().data());
return { };
}
break;
case 4:
address = tokenString;
break;
case 5:
if (auto value = parseInteger<unsigned>(token))
port = *value;
else {
GST_WARNING("Invalid SDP candidate port: %s", tokenString.utf8().data());
return { };
}
break;
default:
if (token == "typ"_s)
nextSdpField = NextSDPField::Typ;
else if (token == "raddr"_s)
nextSdpField = NextSDPField::Raddr;
else if (token == "rport"_s)
nextSdpField = NextSDPField::Rport;
else if (token == "tcptype"_s)
nextSdpField = NextSDPField::TcpType;
else if (token == "ufrag"_s)
nextSdpField = NextSDPField::Ufrag;
else if (token == "generation"_s)
nextSdpField = NextSDPField::Generation;
else {
switch (nextSdpField) {
case NextSDPField::None:
break;
case NextSDPField::Typ:
type = tokenString;
break;
case NextSDPField::Raddr:
relatedAddress = tokenString;
break;
case NextSDPField::Rport:
relatedPort = parseInteger<unsigned>(token).value_or(0);
break;
case NextSDPField::TcpType:
tcptype = tokenString;
break;
case NextSDPField::Ufrag:
usernameFragment = tokenString;
break;
case NextSDPField::Generation:
// Unsupported.
GST_WARNING("Unsupported 'generation' ICE candidate field detected when parsing \"%s\"", sdp.utf8().data());
break;
}
}
break;
}
i++;
}
if (type.isEmpty()) {
GST_WARNING("Unable to parse candidate type");
return { };
}
RTCIceCandidate::Fields fields;
fields.foundation = foundation;
fields.component = toRTCIceComponent(componentId);
fields.priority = priority;
fields.protocol = toRTCIceProtocol(transport);
if (!address.isEmpty()) {
fields.address = address;
fields.port = port;
}
fields.type = toRTCIceCandidateType(type);
fields.tcpType = toRTCIceTcpCandidateType(tcptype);
if (!relatedAddress.isEmpty()) {
fields.relatedAddress = relatedAddress;
fields.relatedPort = relatedPort;
}
fields.usernameFragment = usernameFragment;
return fields;
}
static String x509Serialize(X509* x509)
{
auto bio = BIOPtr(BIO_new(BIO_s_mem()));
if (!bio)
return { };
if (!PEM_write_bio_X509(bio.get(), x509))
return { };
uint8_t* data { nullptr };
auto length = BIO_get_mem_data(bio.get(), &data);
if (length <= 0)
return { };
return String::fromUTF8(unsafeMakeSpan(data, length));
}
static String privateKeySerialize(EVP_PKEY* privateKey)
{
auto bio = BIOPtr(BIO_new(BIO_s_mem()));
if (!bio)
return { };
if (!PEM_write_bio_PrivateKey(bio.get(), privateKey, nullptr, nullptr, 0, nullptr, nullptr))
return { };
uint8_t* data { nullptr };
auto length = BIO_get_mem_data(bio.get(), &data);
if (length <= 0)
return { };
return String::fromUTF8(unsafeMakeSpan(data, length));
}
std::optional<Ref<RTCCertificate>> generateCertificate(Ref<SecurityOrigin>&& origin, const PeerConnectionBackend::CertificateInformation& info)
{
ensureDebugCategoryInitialized();
EvpPKeyPtr privateKey;
switch (info.type) {
case PeerConnectionBackend::CertificateInformation::Type::ECDSAP256: {
privateKey.reset(EVP_EC_gen("prime256v1"));
if (!privateKey)
return { };
break;
}
case PeerConnectionBackend::CertificateInformation::Type::RSASSAPKCS1v15: {
int publicExponent = info.rsaParameters ? info.rsaParameters->publicExponent : 65537;
auto modulusLength = info.rsaParameters ? info.rsaParameters->modulusLength : 2048;
auto ctx = EvpPKeyCtxPtr(EVP_PKEY_CTX_new_from_name(nullptr, "RSA", nullptr));
if (!ctx)
return { };
EVP_PKEY_keygen_init(ctx.get());
auto paramsBuilder = OsslParamBldPtr(OSSL_PARAM_BLD_new());
if (!paramsBuilder)
return { };
auto exponent = BIGNUMPtr(BN_new());
if (!BN_set_word(exponent.get(), publicExponent))
return { };
auto modulus = BIGNUMPtr(BN_new());
if (!BN_set_word(modulus.get(), modulusLength))
return { };
if (!OSSL_PARAM_BLD_push_BN(paramsBuilder.get(), "n", modulus.get()))
return { };
if (!OSSL_PARAM_BLD_push_BN(paramsBuilder.get(), "e", exponent.get()))
return { };
if (!OSSL_PARAM_BLD_push_BN(paramsBuilder.get(), "d", nullptr))
return { };
auto params = OsslParamPtr(OSSL_PARAM_BLD_to_param(paramsBuilder.get()));
if (!params)
return { };
EVP_PKEY_CTX_set_params(ctx.get(), params.get());
EVP_PKEY* pkey = nullptr;
EVP_PKEY_generate(ctx.get(), &pkey);
if (!pkey)
return { };
privateKey.reset(pkey);
break;
}
}
auto x509 = X509Ptr(X509_new());
if (!x509) {
GST_WARNING("Failed to create certificate");
return { };
}
X509_set_version(x509.get(), 2);
// Set a random 64 bit integer as serial number.
auto serialNumber = BIGNUMPtr(BN_new());
BN_rand(serialNumber.get(), 64, 0, 0);
ASN1_INTEGER* asn1SerialNumber = X509_get_serialNumber(x509.get());
BN_to_ASN1_INTEGER(serialNumber.get(), asn1SerialNumber);
// Set a random 8 byte base64 string as issuer/subject.
X509_NAME* name = X509_NAME_new();
Vector<uint8_t> buffer(8);
WTF::cryptographicallyRandomValues(buffer.mutableSpan());
auto commonName = base64EncodeToString(buffer);
X509_NAME_add_entry_by_NID(name, NID_commonName, MBSTRING_ASC, (const guchar*)commonName.ascii().data(), -1, -1, 0);
X509_set_subject_name(x509.get(), name);
X509_set_issuer_name(x509.get(), name);
X509_NAME_free(name);
// Fallback to 30 days, max out at one year.
uint64_t expires = info.expires.value_or(2592000);
expires = std::min<uint64_t>(expires, 31536000000);
X509_gmtime_adj(X509_getm_notBefore(x509.get()), 0);
X509_gmtime_adj(X509_getm_notAfter(x509.get()), expires);
X509_set_pubkey(x509.get(), privateKey.get());
if (!X509_sign(x509.get(), privateKey.get(), EVP_sha256())) {
GST_WARNING("Failed to sign certificate");
return { };
}
auto pem = x509Serialize(x509.get());
GST_DEBUG("Generated certificate PEM: %s", pem.ascii().data());
auto serializedPrivateKey = privateKeySerialize(privateKey.get());
Vector<RTCCertificate::DtlsFingerprint> fingerprints;
// FIXME: Fill fingerprints.
auto expirationTime = WTF::WallTime::now().secondsSinceEpoch() + WTF::Seconds(expires);
return RTCCertificate::create(WTFMove(origin), expirationTime.milliseconds(), WTFMove(fingerprints), WTFMove(pem), WTFMove(serializedPrivateKey));
}
bool sdpMediaHasAttributeKey(const GstSDPMedia* media, const char* key)
{
unsigned len = gst_sdp_media_attributes_len(media);
for (unsigned i = 0; i < len; i++) {
const auto* attribute = gst_sdp_media_get_attribute(media, i);
if (!g_strcmp0(attribute->key, key))
return true;
}
return false;
}
WTF_MAKE_TZONE_ALLOCATED_IMPL(UniqueSSRCGenerator);
uint32_t UniqueSSRCGenerator::generateSSRC()
{
Locker locker { m_lock };
unsigned remainingAttempts = 255;
while (remainingAttempts) {
auto candidate = weakRandomNumber<uint32_t>();
if (!m_knownIds.contains(candidate)) {
m_knownIds.append(candidate);
return candidate;
}
remainingAttempts--;
}
return std::numeric_limits<uint32_t>::max();
}
std::optional<int> payloadTypeForEncodingName(const String& encodingName)
{
static HashMap<String, int> staticPayloadTypes = {
{ "PCMU"_s, 0 },
{ "PCMA"_s, 8 },
{ "G722"_s, 9 },
};
if (staticPayloadTypes.contains(encodingName))
return staticPayloadTypes.get(encodingName);
return { };
}
GRefPtr<GstCaps> capsFromRtpCapabilities(const RTCRtpCapabilities& capabilities, Function<void(GstStructure*)> supplementCapsCallback)
{
auto caps = adoptGRef(gst_caps_new_empty());
for (unsigned index = 0; auto& codec : capabilities.codecs) {
auto components = codec.mimeType.split('/');
auto* codecStructure = gst_structure_new("application/x-rtp", "media", G_TYPE_STRING, components[0].ascii().data(),
"encoding-name", G_TYPE_STRING, components[1].convertToASCIIUppercase().ascii().data(), "clock-rate", G_TYPE_INT, codec.clockRate, nullptr);
if (!codec.sdpFmtpLine.isEmpty()) {
for (auto& fmtp : codec.sdpFmtpLine.split(';')) {
auto fieldAndValue = fmtp.split('=');
gst_structure_set(codecStructure, fieldAndValue[0].ascii().data(), G_TYPE_STRING, fieldAndValue[1].ascii().data(), nullptr);
}
}
if (codec.channels && *codec.channels > 1)
gst_structure_set(codecStructure, "encoding-params", G_TYPE_STRING, makeString(*codec.channels).ascii().data(), nullptr);
if (auto encodingName = gstStructureGetString(codecStructure, "encoding-name"_s)) {
if (auto payloadType = payloadTypeForEncodingName(encodingName.toString()))
gst_structure_set(codecStructure, "payload", G_TYPE_INT, *payloadType, nullptr);
}
supplementCapsCallback(codecStructure);
if (!index) {
for (unsigned i = 1; auto& extension : capabilities.headerExtensions)
gst_structure_set(codecStructure, makeString("extmap-"_s, i++).ascii().data(), G_TYPE_STRING, extension.uri.ascii().data(), nullptr);
}
gst_caps_append_structure(caps.get(), codecStructure);
index++;
}
return caps;
}
GstWebRTCRTPTransceiverDirection getDirectionFromSDPMedia(const GstSDPMedia* media)
{
for (unsigned i = 0; i < gst_sdp_media_attributes_len(media); i++) {
const auto* attribute = gst_sdp_media_get_attribute(media, i);
if (!g_strcmp0(attribute->key, "sendonly"))
return GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_SENDONLY;
if (!g_strcmp0(attribute->key, "sendrecv"))
return GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_SENDRECV;
if (!g_strcmp0(attribute->key, "recvonly"))
return GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_RECVONLY;
if (!g_strcmp0(attribute->key, "inactive"))
return GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_INACTIVE;
}
return GST_WEBRTC_RTP_TRANSCEIVER_DIRECTION_NONE;
}
GRefPtr<GstCaps> capsFromSDPMedia(const GstSDPMedia* media)
{
ensureDebugCategoryInitialized();
unsigned numberOfFormats = gst_sdp_media_formats_len(media);
auto caps = adoptGRef(gst_caps_new_empty());
for (unsigned i = 0; i < numberOfFormats; i++) {
const char* rtpMapValue = gst_sdp_media_get_attribute_val_n(media, "rtpmap", i);
if (!rtpMapValue) {
GST_DEBUG("Skipping media format without rtpmap");
continue;
}
auto rtpMap = StringView::fromLatin1(rtpMapValue);
auto components = rtpMap.split(' ');
auto payloadType = parseInteger<int>(*components.begin());
if (!payloadType) {
GST_WARNING("Invalid payload type in rtpmap %s", rtpMap.utf8().data());
continue;
}
auto* formatCaps = gst_sdp_media_get_caps_from_media(media, *payloadType);
if (!formatCaps) {
GST_WARNING("No caps found for payload type %d", *payloadType);
continue;
}
// Relay SDP attributes to the caps, this is specially useful so that elements in
// webrtcbin will be able to enable RTP header extensions.
gst_sdp_media_attributes_to_caps(media, formatCaps);
for (unsigned j = 0; j < gst_caps_get_size(formatCaps); j++) {
auto* structure = gst_caps_get_structure(formatCaps, j);
gst_structure_set_name(structure, "application/x-rtp");
// Remove attributes unrelated with codec preferences, potentially leading to internal
// webrtcbin confusions such as duplicated RTP direction attributes for instance.
gst_structure_remove_fields(structure, "a-setup", "a-ice-ufrag", "a-ice-pwd", "a-sendrecv", "a-inactive",
"a-sendonly", "a-recvonly", "a-end-of-candidates", nullptr);
if (auto name = gstStructureGetString(structure, "encoding-name"_s)) {
auto encodingName = name.toString().convertToASCIIUppercase();
gst_structure_set(structure, "encoding-name", G_TYPE_STRING, encodingName.ascii().data(), nullptr);
}
// Remove ssrc- attributes that end up being accumulated in fmtp SDP media parameters.
gstStructureFilterAndMapInPlace(structure, [&](auto id, auto) -> bool {
auto fieldId = gstIdToString(id);
return !fieldId.startsWith("ssrc-"_s);
});
// Remove unsupported RTP header extensions.
gstStructureFilterAndMapInPlace(structure, [&](auto id, auto value) -> bool {
auto fieldId = gstIdToString(id);
if (!fieldId.startsWith("extmap-"_s))
return true;
StringView uri;
if (G_VALUE_HOLDS_STRING(value))
uri = StringView::fromLatin1(g_value_get_string(value));
else if (GST_VALUE_HOLDS_ARRAY(value) && gst_value_array_get_size(value) >= 2) {
// Handle the case where the extension is declared as an array (direction, uri, parameters).
const auto uriValue = gst_value_array_get_value(value, 1);
uri = StringView::fromLatin1(g_value_get_string(uriValue));
}
if (uri.isEmpty()) [[unlikely]]
return true;
return GStreamerRegistryScanner::singleton().isRtpHeaderExtensionSupported(uri);
});
// Align with caps from RealtimeOutgoingAudioSourceGStreamer
setSsrcAudioLevelVadOn(structure);
}
gst_caps_append(caps.get(), formatCaps);
}
return caps;
}
void setSsrcAudioLevelVadOn(GstStructure* structure)
{
unsigned totalFields = gst_structure_n_fields(structure);
for (unsigned i = 0; i < totalFields; i++) {
String fieldName = unsafeSpan(gst_structure_nth_field_name(structure, i));
if (!fieldName.startsWith("extmap-"_s))
continue;
const auto value = gst_structure_get_value(structure, fieldName.ascii().data());
if (!G_VALUE_HOLDS_STRING(value))
continue;
const char* uri = g_value_get_string(value);
if (!g_str_equal(uri, GST_RTP_HDREXT_BASE "ssrc-audio-level"))
continue;
GValue arrayValue G_VALUE_INIT;
gst_value_array_init(&arrayValue, 3);
GValue stringValue G_VALUE_INIT;
g_value_init(&stringValue, G_TYPE_STRING);
g_value_set_static_string(&stringValue, "");
gst_value_array_append_value(&arrayValue, &stringValue);
g_value_set_string(&stringValue, uri);
gst_value_array_append_value(&arrayValue, &stringValue);
g_value_set_static_string(&stringValue, "vad=on");
gst_value_array_append_and_take_value(&arrayValue, &stringValue);
gst_structure_remove_field(structure, fieldName.ascii().data());
gst_structure_take_value(structure, fieldName.ascii().data(), &arrayValue);
}
}
StatsTimestampConverter& StatsTimestampConverter::singleton()
{
static NeverDestroyed<StatsTimestampConverter> sharedInstance;
return sharedInstance;
}
Seconds StatsTimestampConverter::convertFromMonotonicTime(Seconds value) const
{
auto monotonicOffset = value - m_initialMonotonicTime;
auto newTimestamp = m_epoch.secondsSinceEpoch() + monotonicOffset;
return Performance::reduceTimeResolution(newTimestamp.secondsSinceEpoch());
}
void forEachTransceiver(const GRefPtr<GstElement>& webrtcBin, Function<bool(GRefPtr<GstWebRTCRTPTransceiver>&&)>&& function)
{
GRefPtr<GArray> transceivers;
g_signal_emit_by_name(webrtcBin.get(), "get-transceivers", &transceivers.outPtr());
if (!transceivers || !transceivers->len)
return;
for (unsigned index = 0; index < transceivers->len; index++) {
WTF_ALLOW_UNSAFE_BUFFER_USAGE_BEGIN; // GLib port
GRefPtr current = g_array_index(transceivers.get(), GstWebRTCRTPTransceiver*, index);
WTF_ALLOW_UNSAFE_BUFFER_USAGE_END;
if (function(WTFMove(current)))
break;
}
}
#define CRLF "\r\n"_s
class SDPStringBuilder {
public:
SDPStringBuilder(const GstSDPMessage*);
String toString() { return m_stringBuilder.toString(); }
private:
void appendAttribute(const GstSDPAttribute*);
void appendConnection(const GstSDPConnection*);
void appendKey(const GstSDPKey*);
void appendBandwidth(const GstSDPBandwidth*);
void appendMedia(const GstSDPMedia*);
StringBuilder m_stringBuilder;
};
void SDPStringBuilder::appendAttribute(const GstSDPAttribute* attribute)
{
if (!attribute->key)
return;
StringView key = unsafeSpan(attribute->key);
auto value = String::fromUTF8(attribute->value);
if (key == "extmap"_s) {
auto tokens = value.split(' ');
if (tokens.size() < 2) [[unlikely]]
return;
if (!GStreamerRegistryScanner::singleton().isRtpHeaderExtensionSupported(tokens[1]))
return;
}
m_stringBuilder.append("a="_s, key);
if (!value.isEmpty())
m_stringBuilder.append(':', value);
m_stringBuilder.append(CRLF);
}
void SDPStringBuilder::appendConnection(const GstSDPConnection* connection)
{
if (!connection->nettype || !connection->addrtype || !connection->address)
return;
m_stringBuilder.append("c="_s, unsafeSpan(connection->nettype), ' ', unsafeSpan(connection->addrtype), ' ', unsafeSpan(connection->address));
if (gst_sdp_address_is_multicast(connection->nettype, connection->addrtype, connection->address)) {
StringView addrType = unsafeSpan(connection->addrtype);
if (addrType == "IP4"_s)
m_stringBuilder.append('/', connection->ttl);
if (connection->addr_number > 1)
m_stringBuilder.append('/', connection->addr_number);
}
m_stringBuilder.append(CRLF);
}
void SDPStringBuilder::appendBandwidth(const GstSDPBandwidth* bandwidth)
{
m_stringBuilder.append("b="_s, unsafeSpan(bandwidth->bwtype), ':', bandwidth->bandwidth, CRLF);
}
void SDPStringBuilder::appendKey(const GstSDPKey* key)
{
if (!key->type)
return;
m_stringBuilder.append("k="_s, unsafeSpan(key->type));
if (key->data)
m_stringBuilder.append(':', unsafeSpan(key->data));
m_stringBuilder.append(CRLF);
}
void SDPStringBuilder::appendMedia(const GstSDPMedia* media)
{
m_stringBuilder.append("m="_s, unsafeSpan(gst_sdp_media_get_media(media)), ' ', gst_sdp_media_get_port(media));
auto ports = gst_sdp_media_get_num_ports(media);
if (ports > 1)
m_stringBuilder.append('/', ports);
m_stringBuilder.append(' ', unsafeSpan(gst_sdp_media_get_proto(media)));
unsigned totalFormats = gst_sdp_media_formats_len(media);
for (unsigned i = 0; i < totalFormats; i++)
m_stringBuilder.append(' ', unsafeSpan(gst_sdp_media_get_format(media, i)));
m_stringBuilder.append(CRLF);
if (const char* info = gst_sdp_media_get_information(media))
m_stringBuilder.append("i="_s, unsafeSpan(info), CRLF);
unsigned totalConnections = gst_sdp_media_connections_len(media);
for (unsigned i = 0; i < totalConnections; i++)
appendConnection(gst_sdp_media_get_connection(media, i));
auto totalBandwidths = gst_sdp_media_bandwidths_len(media);
for (unsigned i = 0; i < totalBandwidths; i++)
appendBandwidth(gst_sdp_media_get_bandwidth(media, i));
appendKey(gst_sdp_media_get_key(media));
unsigned totalAttributes = gst_sdp_media_attributes_len(media);
for (unsigned i = 0; i < totalAttributes; i++)
appendAttribute(gst_sdp_media_get_attribute(media, i));
}
String sdpAsString(const GstSDPMessage* sdp)
{
SDPStringBuilder builder(sdp);
return builder.toString();
}
SDPStringBuilder::SDPStringBuilder(const GstSDPMessage* sdp)
{
m_stringBuilder.append("v="_s, unsafeSpan(gst_sdp_message_get_version(sdp)), CRLF);
const auto origin = gst_sdp_message_get_origin(sdp);
if (origin->sess_id && origin->sess_version && origin->nettype && origin->addrtype && origin->addr) {
m_stringBuilder.append("o="_s, unsafeSpan(origin->username ? origin->username : "-"), ' ', unsafeSpan(origin->sess_id),
' ', unsafeSpan(origin->sess_version), ' ', unsafeSpan(origin->nettype),
' ', unsafeSpan(origin->addrtype), ' ', unsafeSpan(origin->addr), CRLF);
}
if (const char* name = gst_sdp_message_get_session_name(sdp))
m_stringBuilder.append("s="_s, unsafeSpan(name), CRLF);
if (const char* info = gst_sdp_message_get_information(sdp))
m_stringBuilder.append("i="_s, unsafeSpan(info), CRLF);
if (const char* uri = gst_sdp_message_get_uri(sdp))
m_stringBuilder.append("u="_s, unsafeSpan(uri), CRLF);
unsigned totalEmails = gst_sdp_message_emails_len(sdp);
for (unsigned i = 0; i < totalEmails; i++)
m_stringBuilder.append("e="_s, unsafeSpan(gst_sdp_message_get_email(sdp, i)), CRLF);
unsigned totalPhones = gst_sdp_message_phones_len(sdp);
for (unsigned i = 0; i < totalPhones; i++)
m_stringBuilder.append("p="_s, unsafeSpan(gst_sdp_message_get_phone(sdp, i)), CRLF);
appendConnection(gst_sdp_message_get_connection(sdp));
auto totalBandwidths = gst_sdp_message_bandwidths_len(sdp);
for (unsigned i = 0; i < totalBandwidths; i++)
appendBandwidth(gst_sdp_message_get_bandwidth(sdp, i));
if (!gst_sdp_message_times_len(sdp))
m_stringBuilder.append("t=0 0"_s, CRLF);
else {
unsigned totalTimes = gst_sdp_message_times_len(sdp);
for (unsigned i = 0; i < totalTimes; i++) {
const auto time = gst_sdp_message_get_time(sdp, i);
m_stringBuilder.append("t="_s, unsafeSpan(time->start), ' ', unsafeSpan(time->stop), CRLF);
if (time->repeat) {
m_stringBuilder.append("r="_s, unsafeSpan(g_array_index(time->repeat, char*, 0)));
for (unsigned ii = 0; ii < time->repeat->len; ii++)
m_stringBuilder.append(' ', unsafeSpan(g_array_index(time->repeat, char*, i)));
m_stringBuilder.append(CRLF);
}
}
}
if (unsigned totalZones = gst_sdp_message_zones_len(sdp)) {
const auto zone = gst_sdp_message_get_zone(sdp, 0);
m_stringBuilder.append("z="_s, unsafeSpan(zone->time), ' ', unsafeSpan(zone->typed_time));
for (unsigned i = 1; i < totalZones; i++) {
const auto zone = gst_sdp_message_get_zone(sdp, i);
m_stringBuilder.append(' ', unsafeSpan(zone->time), ' ', unsafeSpan(zone->typed_time));
}
m_stringBuilder.append(CRLF);
}
appendKey(gst_sdp_message_get_key(sdp));
unsigned totalSessionAttributes = gst_sdp_message_attributes_len(sdp);
for (unsigned i = 0; i < totalSessionAttributes; i++)
appendAttribute(gst_sdp_message_get_attribute(sdp, i));
unsigned totalMedias = gst_sdp_message_medias_len(sdp);
for (unsigned i = 0; i < totalMedias; i++)
appendMedia(gst_sdp_message_get_media(sdp, i));
}
bool sdpMediaHasRTPHeaderExtension(const GstSDPMedia* media, const String& uri)
{
unsigned totalAttributes = gst_sdp_media_attributes_len(media);
for (unsigned i = 0; i < totalAttributes; i++) {
const auto attribute = gst_sdp_media_get_attribute(media, i);
auto key = StringView::fromLatin1(attribute->key);
if (key != "extmap"_s)
continue;
auto value = String::fromUTF8(attribute->value);
Vector<String> tokens = value.split(' ');
if (tokens.size() < 2) [[unlikely]]
continue;
if (tokens[1] == uri)
return true;
}
return false;
}
#undef CRLF
GRefPtr<GstCaps> extractMidAndRidFromRTPBuffer(const GstMappedRtpBuffer& buffer, const GstSDPMessage* sdp)
{
ensureDebugCategoryInitialized();
unsigned totalMedias = gst_sdp_message_medias_len(sdp);
GST_DEBUG("Looking for mid and rid ext ids in %u SDP medias", totalMedias);
for (unsigned i = 0; i < totalMedias; i++) {
const auto media = gst_sdp_message_get_media(sdp, i);
auto mediaCaps = adoptGRef(gst_caps_new_empty_simple("application/x-rtp"));
uint8_t midExtID = 0;
uint8_t ridExtID = 0;
gst_sdp_media_attributes_to_caps(media, mediaCaps.get());
auto s = gst_caps_get_structure(mediaCaps.get(), 0);
for (int ii = 0; ii < gst_structure_n_fields(s); ii++) {
auto name = CStringView::unsafeFromUTF8(gst_structure_nth_field_name(s, ii));
auto nameAsString = name.toString();
if (!nameAsString.startsWith("extmap-"_s))
continue;
auto value = gstStructureGetString(s, name);
if (value == GST_RTP_HDREXT_BASE "sdes:mid"_s) {
auto id = parseInteger<uint8_t>(nameAsString.substring(7));
if (!id) [[unlikely]]
continue;
if (*id && *id < 15)
midExtID = *id;
} else if (value == GST_RTP_HDREXT_BASE "sdes:rtp-stream-id"_s) {
auto id = parseInteger<uint8_t>(nameAsString.substring(7));
if (!id) [[unlikely]]
continue;
if (*id && *id < 15)
ridExtID = *id;
}
if (midExtID && ridExtID)
break;
}
if (!midExtID)
continue;
GST_DEBUG("Probed midExtID %u and ridExtID %u from SDP", midExtID, ridExtID);
uint8_t* pdata;
uint16_t bits;
unsigned wordLength;
if (!gst_rtp_buffer_get_extension_data(buffer.mappedData(), &bits, reinterpret_cast<gpointer*>(&pdata), &wordLength))
continue;
GstRTPHeaderExtensionFlags extensionFlags;
gsize byteLength = wordLength * 4;
guint headerUnitTypes;
gsize offset = 0;
GUniquePtr<char> mid, rid;
if (bits == 0xBEDE) {
headerUnitTypes = 1;
extensionFlags = static_cast<GstRTPHeaderExtensionFlags>(GST_RTP_HEADER_EXTENSION_ONE_BYTE);
} else if (bits >> 4 == 0x100) {
headerUnitTypes = 2;
extensionFlags = static_cast<GstRTPHeaderExtensionFlags>(GST_RTP_HEADER_EXTENSION_TWO_BYTE);
} else {
GST_DEBUG("Unknown extension bit pattern 0x%02x%02x", bits >> 8, bits & 0xff);
continue;
}
while (true) {
guint8 readId, readLength;
// Not enough remaining data.
if (offset + headerUnitTypes >= byteLength)
break;
if (extensionFlags & GST_RTP_HEADER_EXTENSION_ONE_BYTE) {
readId = GST_READ_UINT8(pdata + offset) >> 4;
readLength = (GST_READ_UINT8(pdata + offset) & 0x0F) + 1;
offset++;
// Padding.
if (!readId)
continue;
// Special id for possible future expansion.
if (readId == 15)
break;
} else {
readId = GST_READ_UINT8(pdata + offset);
offset += 1;
// Padding.
if (!readId)
continue;
readLength = GST_READ_UINT8(pdata + offset);
offset++;
}
GST_TRACE("Found rtp header extension with id %u and length %u", readId, readLength);
// Ignore extension headers where the size does not fit.
if (offset + readLength > byteLength) {
GST_WARNING("Extension length extends past the size of the extension data");
break;
}
const char* data = reinterpret_cast<const char*>(&pdata[offset]);
if (readId == midExtID)
mid.reset(g_strndup(data, readLength));
else if (readId == ridExtID)
rid.reset(g_strndup(data, readLength));
if (rid && mid)
break;
offset += readLength;
}
if (mid) {
gst_caps_set_simple(mediaCaps.get(), "a-mid", G_TYPE_STRING, mid.get(), nullptr);
if (rid)
gst_caps_set_simple(mediaCaps.get(), "a-rid", G_TYPE_STRING, rid.get(), nullptr);
return mediaCaps;
}
}
return nullptr;
}
static HashMap<String, unsigned> getRTPHeaderExtensionMappingFromSDPMedia(const GstSDPMedia* media)
{
HashMap<String, unsigned> result;
for (unsigned i = 0; i < gst_sdp_media_attributes_len(media); i++) {
const auto attribute = gst_sdp_media_get_attribute(media, i);
auto key = StringView::fromLatin1(attribute->key);
if (key != "extmap"_s)
continue;
auto value = String::fromUTF8(attribute->value);
auto tokens = value.split(' ');
if (tokens.size() < 2) [[unlikely]]
continue;
auto id = parseInteger<unsigned>(tokens[0]);
if (!id) [[unlikely]]
continue;
result.add(tokens[1], *id);
}
return result;
}
bool validateRTPHeaderExtensions(const GstSDPMessage* previousSDP, const GstSDPMessage* newSDP)
{
ensureDebugCategoryInitialized();
unsigned totalMedias = gst_sdp_message_medias_len(previousSDP);
for (unsigned i = 0; i < totalMedias; i++) {
const auto previousMedia = gst_sdp_message_get_media(previousSDP, i);
const auto newMedia = gst_sdp_message_get_media(newSDP, i);
if (!newMedia)
break;
auto previousMapping = getRTPHeaderExtensionMappingFromSDPMedia(previousMedia);
auto newMapping = getRTPHeaderExtensionMappingFromSDPMedia(newMedia);
for (const auto& [uri, id] : newMapping) {
const auto& previousId = previousMapping.getOptional(uri);
if (!previousId)
continue;
if (*previousId != id) {
GST_WARNING("RTP header extension id changed from %u to %u for %s", *previousId, id, uri.utf8().data());
return false;
}
}
}
return true;
}
IGNORE_CLANG_WARNINGS_END
#undef GST_CAT_DEFAULT
} // namespace WebCore
#endif
|