| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252 |
- /**
- * Copyright (c) 2019-2020 Paul-Louis Ageneau
- * Copyright (c) 2020 Staz Modrzynski
- *
- * 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.1 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 "description.hpp"
- #include "impl/internals.hpp"
- #include "impl/utils.hpp"
- #include <algorithm>
- #include <array>
- #include <cctype>
- #include <chrono>
- #include <iostream>
- #include <random>
- #include <sstream>
- #include <unordered_map>
- using std::chrono::system_clock;
- namespace {
- using std::string;
- using std::string_view;
- inline bool match_prefix(string_view str, string_view prefix) {
- return str.size() >= prefix.size() &&
- std::mismatch(prefix.begin(), prefix.end(), str.begin()).first == prefix.end();
- }
- inline void trim_begin(string &str) {
- str.erase(str.begin(),
- std::find_if(str.begin(), str.end(), [](char c) { return !std::isspace(c); }));
- }
- inline void trim_end(string &str) {
- str.erase(
- std::find_if(str.rbegin(), str.rend(), [](char c) { return !std::isspace(c); }).base(),
- str.end());
- }
- inline std::pair<string_view, string_view> parse_pair(string_view attr) {
- string_view key, value;
- if (size_t separator = attr.find(':'); separator != string::npos) {
- key = attr.substr(0, separator);
- value = attr.substr(separator + 1);
- } else {
- key = attr;
- }
- return std::make_pair(std::move(key), std::move(value));
- }
- template <typename T> T to_integer(string_view s) {
- const string str(s);
- try {
- return std::is_signed<T>::value ? T(std::stol(str)) : T(std::stoul(str));
- } catch (...) {
- throw std::invalid_argument("Invalid integer \"" + str + "\" in description");
- }
- }
- inline bool is_sha256_fingerprint(string_view f) {
- if (f.size() != 32 * 3 - 1)
- return false;
- for (size_t i = 0; i < f.size(); ++i) {
- if (i % 3 == 2) {
- if (f[i] != ':')
- return false;
- } else {
- if (!std::isxdigit(f[i]))
- return false;
- }
- }
- return true;
- }
- } // namespace
- namespace rtc {
- namespace utils = impl::utils;
- Description::Description(const string &sdp, Type type, Role role)
- : mType(Type::Unspec), mRole(role) {
- hintType(type);
- int index = -1;
- shared_ptr<Entry> current;
- std::istringstream ss(sdp);
- while (ss) {
- string line;
- std::getline(ss, line);
- trim_end(line);
- if (line.empty())
- continue;
- if (match_prefix(line, "m=")) { // Media description line (aka m-line)
- current = createEntry(line.substr(2), std::to_string(++index), Direction::Unknown);
- } else if (match_prefix(line, "o=")) { // Origin line
- std::istringstream origin(line.substr(2));
- origin >> mUsername >> mSessionId;
- } else if (match_prefix(line, "a=")) { // Attribute line
- string attr = line.substr(2);
- auto [key, value] = parse_pair(attr);
- if (key == "setup") {
- if (value == "active")
- mRole = Role::Active;
- else if (value == "passive")
- mRole = Role::Passive;
- else
- mRole = Role::ActPass;
- } else if (key == "fingerprint") {
- if (match_prefix(value, "sha-256 ")) {
- string fingerprint{value.substr(8)};
- trim_begin(fingerprint);
- setFingerprint(std::move(fingerprint));
- } else {
- PLOG_WARNING << "Unknown SDP fingerprint format: " << value;
- }
- } else if (key == "ice-ufrag") {
- mIceUfrag = value;
- } else if (key == "ice-pwd") {
- mIcePwd = value;
- } else if (key == "ice-options") {
- mIceOptions = utils::explode(string(value), ',');
- } else if (key == "candidate") {
- addCandidate(Candidate(attr, bundleMid()));
- } else if (key == "end-of-candidates") {
- mEnded = true;
- } else if (current) {
- current->parseSdpLine(std::move(line));
- } else {
- mAttributes.emplace_back(attr);
- }
- } else if (current) {
- current->parseSdpLine(std::move(line));
- }
- }
- if (mUsername.empty())
- mUsername = "rtc";
- if (mSessionId.empty()) {
- auto seed = static_cast<unsigned int>(system_clock::now().time_since_epoch().count());
- std::default_random_engine generator(seed);
- std::uniform_int_distribution<uint32_t> uniform;
- mSessionId = std::to_string(uniform(generator));
- }
- }
- Description::Description(const string &sdp, string typeString)
- : Description(sdp, !typeString.empty() ? stringToType(typeString) : Type::Unspec,
- Role::ActPass) {}
- Description::Type Description::type() const { return mType; }
- string Description::typeString() const { return typeToString(mType); }
- Description::Role Description::role() const { return mRole; }
- string Description::bundleMid() const {
- // Get the mid of the first media
- return !mEntries.empty() ? mEntries[0]->mid() : "0";
- }
- optional<string> Description::iceUfrag() const { return mIceUfrag; }
- std::vector<string> Description::iceOptions() const { return mIceOptions; }
- optional<string> Description::icePwd() const { return mIcePwd; }
- optional<string> Description::fingerprint() const { return mFingerprint; }
- bool Description::ended() const { return mEnded; }
- void Description::hintType(Type type) {
- if (mType == Type::Unspec) {
- mType = type;
- if (mType == Type::Answer && mRole == Role::ActPass)
- mRole = Role::Passive; // ActPass is illegal for an answer, so default to passive
- }
- }
- void Description::setFingerprint(string fingerprint) {
- if (!is_sha256_fingerprint(fingerprint))
- throw std::invalid_argument("Invalid SHA256 fingerprint \"" + fingerprint + "\"");
- std::transform(fingerprint.begin(), fingerprint.end(), fingerprint.begin(),
- [](char c) { return char(std::toupper(c)); });
- mFingerprint.emplace(std::move(fingerprint));
- }
- void Description::addIceOption(string option) {
- if (std::find(mIceOptions.begin(), mIceOptions.end(), option) == mIceOptions.end())
- mIceOptions.emplace_back(std::move(option));
- }
- void Description::removeIceOption(const string &option) {
- mIceOptions.erase(std::remove(mIceOptions.begin(), mIceOptions.end(), option),
- mIceOptions.end());
- }
- std::vector<string> Description::Entry::attributes() const { return mAttributes; }
- void Description::Entry::addAttribute(string attr) {
- if (std::find(mAttributes.begin(), mAttributes.end(), attr) == mAttributes.end())
- mAttributes.emplace_back(std::move(attr));
- }
- void Description::Entry::removeAttribute(const string &attr) {
- mAttributes.erase(
- std::remove_if(mAttributes.begin(), mAttributes.end(),
- [&](const auto &a) { return a == attr || parse_pair(a).first == attr; }),
- mAttributes.end());
- }
- std::vector<Candidate> Description::candidates() const { return mCandidates; }
- std::vector<Candidate> Description::extractCandidates() {
- std::vector<Candidate> result;
- std::swap(mCandidates, result);
- mEnded = false;
- return result;
- }
- bool Description::hasCandidate(const Candidate &candidate) const {
- return std::find(mCandidates.begin(), mCandidates.end(), candidate) != mCandidates.end();
- }
- void Description::addCandidate(Candidate candidate) {
- candidate.hintMid(bundleMid());
- if (!hasCandidate(candidate))
- mCandidates.emplace_back(std::move(candidate));
- }
- void Description::addCandidates(std::vector<Candidate> candidates) {
- for (Candidate candidate : candidates)
- addCandidate(std::move(candidate));
- }
- void Description::endCandidates() { mEnded = true; }
- Description::operator string() const { return generateSdp("\r\n"); }
- string Description::generateSdp(string_view eol) const {
- std::ostringstream sdp;
- // Header
- sdp << "v=0" << eol;
- sdp << "o=" << mUsername << " " << mSessionId << " 0 IN IP4 127.0.0.1" << eol;
- sdp << "s=-" << eol;
- sdp << "t=0 0" << eol;
- // Bundle (RFC8843 Negotiating Media Multiplexing Using the Session Description Protocol)
- // https://www.rfc-editor.org/rfc/rfc8843.html
- sdp << "a=group:BUNDLE";
- for (const auto &entry : mEntries)
- sdp << ' ' << entry->mid();
- sdp << eol;
- // Lip-sync
- std::ostringstream lsGroup;
- for (const auto &entry : mEntries)
- if (entry != mApplication)
- lsGroup << ' ' << entry->mid();
- if (!lsGroup.str().empty())
- sdp << "a=group:LS" << lsGroup.str() << eol;
- // Session-level attributes
- sdp << "a=msid-semantic:WMS *" << eol;
- sdp << "a=setup:" << mRole << eol;
- if (mIceUfrag)
- sdp << "a=ice-ufrag:" << *mIceUfrag << eol;
- if (mIcePwd)
- sdp << "a=ice-pwd:" << *mIcePwd << eol;
- if (!mIceOptions.empty())
- sdp << "a=ice-options:" << utils::implode(mIceOptions, ',') << eol;
- if (mFingerprint)
- sdp << "a=fingerprint:sha-256 " << *mFingerprint << eol;
- for (const auto &attr : mAttributes)
- sdp << "a=" << attr << eol;
- auto cand = defaultCandidate();
- const string addr = cand && cand->isResolved()
- ? (string(cand->family() == Candidate::Family::Ipv6 ? "IP6" : "IP4") +
- " " + *cand->address())
- : "IP4 0.0.0.0";
- const uint16_t port =
- cand && cand->isResolved() ? *cand->port() : 9; // Port 9 is the discard protocol
- // Entries
- bool first = true;
- for (const auto &entry : mEntries) {
- sdp << entry->generateSdp(eol, addr, port);
- if (std::exchange(first, false)) {
- // Candidates
- for (const auto &candidate : mCandidates)
- sdp << string(candidate) << eol;
- if (mEnded)
- sdp << "a=end-of-candidates" << eol;
- }
- }
- return sdp.str();
- }
- string Description::generateApplicationSdp(string_view eol) const {
- std::ostringstream sdp;
- // Header
- sdp << "v=0" << eol;
- sdp << "o=" << mUsername << " " << mSessionId << " 0 IN IP4 127.0.0.1" << eol;
- sdp << "s=-" << eol;
- sdp << "t=0 0" << eol;
- auto cand = defaultCandidate();
- const string addr = cand && cand->isResolved()
- ? (string(cand->family() == Candidate::Family::Ipv6 ? "IP6" : "IP4") +
- " " + *cand->address())
- : "IP4 0.0.0.0";
- const uint16_t port =
- cand && cand->isResolved() ? *cand->port() : 9; // Port 9 is the discard protocol
- // Application
- auto app = mApplication ? mApplication : std::make_shared<Application>();
- sdp << app->generateSdp(eol, addr, port);
- // Session-level attributes
- sdp << "a=msid-semantic:WMS *" << eol;
- sdp << "a=setup:" << mRole << eol;
- if (mIceUfrag)
- sdp << "a=ice-ufrag:" << *mIceUfrag << eol;
- if (mIcePwd)
- sdp << "a=ice-pwd:" << *mIcePwd << eol;
- if (!mIceOptions.empty())
- sdp << "a=ice-options:" << utils::implode(mIceOptions, ',') << eol;
- if (mFingerprint)
- sdp << "a=fingerprint:sha-256 " << *mFingerprint << eol;
- for (const auto &attr : mAttributes)
- sdp << "a=" << attr << eol;
- // Candidates
- for (const auto &candidate : mCandidates)
- sdp << string(candidate) << eol;
- if (mEnded)
- sdp << "a=end-of-candidates" << eol;
- return sdp.str();
- }
- optional<Candidate> Description::defaultCandidate() const {
- // Return the first host candidate with highest priority, favoring IPv4
- optional<Candidate> result;
- for (const auto &c : mCandidates) {
- if (c.type() == Candidate::Type::Host) {
- if (!result ||
- (result->family() == Candidate::Family::Ipv6 &&
- c.family() == Candidate::Family::Ipv4) ||
- (result->family() == c.family() && result->priority() < c.priority()))
- result.emplace(c);
- }
- }
- return result;
- }
- shared_ptr<Description::Entry> Description::createEntry(string mline, string mid, Direction dir) {
- string type = mline.substr(0, mline.find(' '));
- if (type == "application") {
- removeApplication();
- mApplication = std::make_shared<Application>(mline, std::move(mid));
- mEntries.emplace_back(mApplication);
- return mApplication;
- } else {
- auto media = std::make_shared<Media>(std::move(mline), std::move(mid), dir);
- mEntries.emplace_back(media);
- return media;
- }
- }
- void Description::removeApplication() {
- if (!mApplication)
- return;
- auto it = std::find(mEntries.begin(), mEntries.end(), mApplication);
- if (it != mEntries.end())
- mEntries.erase(it);
- mApplication.reset();
- }
- bool Description::hasApplication() const { return mApplication && !mApplication->isRemoved(); }
- bool Description::hasAudioOrVideo() const {
- for (auto entry : mEntries)
- if (entry != mApplication && !entry->isRemoved())
- return true;
- return false;
- }
- bool Description::hasMid(string_view mid) const {
- for (const auto &entry : mEntries)
- if (entry->mid() == mid)
- return true;
- return false;
- }
- int Description::addMedia(Media media) {
- mEntries.emplace_back(std::make_shared<Media>(std::move(media)));
- return int(mEntries.size()) - 1;
- }
- int Description::addMedia(Application application) {
- removeApplication();
- mApplication = std::make_shared<Application>(std::move(application));
- mEntries.emplace_back(mApplication);
- return int(mEntries.size()) - 1;
- }
- int Description::addApplication(string mid) { return addMedia(Application(std::move(mid))); }
- const Description::Application *Description::application() const { return mApplication.get(); }
- Description::Application *Description::application() { return mApplication.get(); }
- int Description::addVideo(string mid, Direction dir) {
- return addMedia(Video(std::move(mid), dir));
- }
- int Description::addAudio(string mid, Direction dir) {
- return addMedia(Audio(std::move(mid), dir));
- }
- void Description::clearMedia() {
- mEntries.clear();
- mApplication.reset();
- }
- variant<Description::Media *, Description::Application *> Description::media(unsigned int index) {
- if (index >= mEntries.size())
- throw std::out_of_range("Media index out of range");
- const auto &entry = mEntries[index];
- if (entry == mApplication) {
- auto result = dynamic_cast<Application *>(entry.get());
- if (!result)
- throw std::logic_error("Bad type of application in description");
- return result;
- } else {
- auto result = dynamic_cast<Media *>(entry.get());
- if (!result)
- throw std::logic_error("Bad type of media in description");
- return result;
- }
- }
- variant<const Description::Media *, const Description::Application *>
- Description::media(unsigned int index) const {
- if (index >= mEntries.size())
- throw std::out_of_range("Media index out of range");
- const auto &entry = mEntries[index];
- if (entry == mApplication) {
- auto result = dynamic_cast<Application *>(entry.get());
- if (!result)
- throw std::logic_error("Bad type of application in description");
- return result;
- } else {
- auto result = dynamic_cast<Media *>(entry.get());
- if (!result)
- throw std::logic_error("Bad type of media in description");
- return result;
- }
- }
- unsigned int Description::mediaCount() const { return unsigned(mEntries.size()); }
- Description::Entry::Entry(const string &mline, string mid, Direction dir)
- : mMid(std::move(mid)), mDirection(dir) {
- uint16_t port;
- std::istringstream ss(mline);
- ss >> mType;
- ss >> port;
- ss >> mDescription;
- // RFC 3264: Existing media streams are removed by creating a new SDP with the port number for
- // that stream set to zero.
- mIsRemoved = (port == 0);
- }
- void Description::Entry::setDirection(Direction dir) { mDirection = dir; }
- void Description::Entry::markRemoved() { mIsRemoved = true; }
- std::vector<string> Description::attributes() const { return mAttributes; }
- void Description::addAttribute(string attr) {
- if (std::find(mAttributes.begin(), mAttributes.end(), attr) == mAttributes.end())
- mAttributes.emplace_back(std::move(attr));
- }
- void Description::removeAttribute(const string &attr) {
- mAttributes.erase(
- std::remove_if(mAttributes.begin(), mAttributes.end(),
- [&](const auto &a) { return a == attr || parse_pair(a).first == attr; }),
- mAttributes.end());
- }
- std::vector<int> Description::Entry::extIds() {
- std::vector<int> result;
- for (auto it = mExtMaps.begin(); it != mExtMaps.end(); ++it)
- result.push_back(it->first);
- return result;
- }
- Description::Entry::ExtMap *Description::Entry::extMap(int id) {
- auto it = mExtMaps.find(id);
- if (it == mExtMaps.end())
- throw std::invalid_argument("extmap not found");
- return &it->second;
- }
- void Description::Entry::addExtMap(ExtMap map) {
- auto id = map.id;
- mExtMaps.emplace(id, std::move(map));
- }
- void Description::Entry::removeExtMap(int id) { mExtMaps.erase(id); }
- Description::Entry::operator string() const { return generateSdp("\r\n", "IP4 0.0.0.0", 9); }
- string Description::Entry::generateSdp(string_view eol, string_view addr, uint16_t port) const {
- std::ostringstream sdp;
- // RFC 3264: Existing media streams are removed by creating a new SDP with the port number for
- // that stream set to zero. [...] A stream that is offered with a port of zero MUST be marked
- // with port zero in the answer.
- sdp << "m=" << type() << ' ' << (mIsRemoved ? 0 : port) << ' ' << description() << eol;
- sdp << "c=IN " << addr << eol;
- sdp << generateSdpLines(eol);
- return sdp.str();
- }
- string Description::Entry::generateSdpLines(string_view eol) const {
- std::ostringstream sdp;
- sdp << "a=bundle-only" << eol;
- sdp << "a=mid:" << mMid << eol;
- for (auto it = mExtMaps.begin(); it != mExtMaps.end(); ++it) {
- auto &map = it->second;
- sdp << "a=extmap:" << map.id;
- switch (map.direction) {
- case Direction::SendOnly:
- sdp << "/sendonly";
- break;
- case Direction::RecvOnly:
- sdp << "/recvonly";
- break;
- case Direction::SendRecv:
- sdp << "/sendrecv";
- break;
- case Direction::Inactive:
- sdp << "/inactive";
- break;
- default:
- // Ignore
- break;
- }
- sdp << ' ' << map.uri;
- if (!map.attributes.empty())
- sdp << ' ' << map.attributes;
- sdp << eol;
- }
- switch (mDirection) {
- case Direction::SendOnly:
- sdp << "a=sendonly" << eol;
- break;
- case Direction::RecvOnly:
- sdp << "a=recvonly" << eol;
- break;
- case Direction::SendRecv:
- sdp << "a=sendrecv" << eol;
- break;
- case Direction::Inactive:
- sdp << "a=inactive" << eol;
- break;
- default:
- // Ignore
- break;
- }
- for (const auto &attr : mAttributes)
- sdp << "a=" << attr << eol;
- return sdp.str();
- }
- void Description::Entry::parseSdpLine(string_view line) {
- if (match_prefix(line, "a=")) {
- string_view attr = line.substr(2);
- auto [key, value] = parse_pair(attr);
- if (key == "mid") {
- mMid = value;
- } else if (key == "extmap") {
- auto id = Description::Media::ExtMap::parseId(value);
- auto it = mExtMaps.find(id);
- if (it == mExtMaps.end())
- it = mExtMaps.insert(std::make_pair(id, Description::Media::ExtMap(value))).first;
- else
- it->second.setDescription(value);
- } else if (attr == "sendonly")
- mDirection = Direction::SendOnly;
- else if (attr == "recvonly")
- mDirection = Direction::RecvOnly;
- else if (key == "sendrecv")
- mDirection = Direction::SendRecv;
- else if (key == "inactive")
- mDirection = Direction::Inactive;
- else if (key == "bundle-only") {
- // always added
- } else
- mAttributes.emplace_back(attr);
- }
- }
- std::vector<string>::iterator Description::Entry::beginAttributes() { return mAttributes.begin(); }
- std::vector<string>::iterator Description::Entry::endAttributes() { return mAttributes.end(); }
- std::vector<string>::iterator
- Description::Entry::removeAttribute(std::vector<string>::iterator it) {
- return mAttributes.erase(it);
- }
- std::map<int, Description::Entry::ExtMap>::iterator Description::Entry::beginExtMaps() {
- return mExtMaps.begin();
- }
- std::map<int, Description::Entry::ExtMap>::iterator Description::Entry::endExtMaps() {
- return mExtMaps.end();
- }
- std::map<int, Description::Entry::ExtMap>::iterator
- Description::Entry::removeExtMap(std::map<int, Description::Entry::ExtMap>::iterator iterator) {
- return mExtMaps.erase(iterator);
- }
- Description::Entry::ExtMap::ExtMap(string_view description) { setDescription(description); }
- int Description::Entry::ExtMap::parseId(string_view description) {
- size_t p = description.find(' ');
- return to_integer<int>(description.substr(0, p));
- }
- void Description::Entry::ExtMap::setDescription(string_view description) {
- const size_t uriStart = description.find(' ');
- if (uriStart == string::npos)
- throw std::invalid_argument("Invalid description");
- const string_view idAndDirection = description.substr(0, uriStart);
- const size_t idSplit = idAndDirection.find('/');
- if (idSplit == string::npos) {
- this->id = to_integer<int>(idAndDirection);
- } else {
- this->id = to_integer<int>(idAndDirection.substr(0, idSplit));
- const string_view directionStr = idAndDirection.substr(idSplit + 1);
- if (directionStr == "sendonly")
- this->direction = Direction::SendOnly;
- else if (directionStr == "recvonly")
- this->direction = Direction::RecvOnly;
- else if (directionStr == "sendrecv")
- this->direction = Direction::SendRecv;
- else if (directionStr == "inactive")
- this->direction = Direction::Inactive;
- else
- throw std::invalid_argument("Invalid direction");
- }
- const string_view uriAndAttributes = description.substr(uriStart + 1);
- const size_t attributeSplit = uriAndAttributes.find(' ');
- if (attributeSplit == string::npos)
- this->uri = uriAndAttributes;
- else {
- this->uri = uriAndAttributes.substr(0, attributeSplit);
- this->attributes = uriAndAttributes.substr(attributeSplit + 1);
- }
- }
- void Description::Media::addSSRC(uint32_t ssrc, optional<string> name, optional<string> msid,
- optional<string> trackId) {
- if (name) {
- mAttributes.emplace_back("ssrc:" + std::to_string(ssrc) + " cname:" + *name);
- mCNameMap.emplace(ssrc, *name);
- } else {
- mAttributes.emplace_back("ssrc:" + std::to_string(ssrc));
- }
- if (msid)
- mAttributes.emplace_back("ssrc:" + std::to_string(ssrc) + " msid:" + *msid + " " +
- trackId.value_or(*msid));
- mSsrcs.emplace_back(ssrc);
- }
- void Description::Media::removeSSRC(uint32_t ssrc) {
- string prefix = "ssrc:" + std::to_string(ssrc);
- mAttributes.erase(std::remove_if(mAttributes.begin(), mAttributes.end(),
- [&](const auto &a) { return match_prefix(a, prefix); }),
- mAttributes.end());
- mSsrcs.erase(std::remove(mSsrcs.begin(), mSsrcs.end(), ssrc), mSsrcs.end());
- }
- void Description::Media::replaceSSRC(uint32_t old, uint32_t ssrc, optional<string> name,
- optional<string> msid, optional<string> trackID) {
- removeSSRC(old);
- addSSRC(ssrc, std::move(name), std::move(msid), std::move(trackID));
- }
- bool Description::Media::hasSSRC(uint32_t ssrc) {
- return std::find(mSsrcs.begin(), mSsrcs.end(), ssrc) != mSsrcs.end();
- }
- Description::Application::Application(string mid)
- : Entry("application 9 UDP/DTLS/SCTP", std::move(mid), Direction::SendRecv) {}
- Description::Application::Application(const string &mline, string mid)
- : Entry(mline, std::move(mid), Direction::SendRecv) {}
- string Description::Application::description() const {
- return Entry::description() + " webrtc-datachannel";
- }
- Description::Application Description::Application::reciprocate() const {
- Application reciprocated(*this);
- reciprocated.mMaxMessageSize.reset();
- return reciprocated;
- }
- string Description::Application::generateSdpLines(string_view eol) const {
- std::ostringstream sdp;
- sdp << Entry::generateSdpLines(eol);
- if (mSctpPort)
- sdp << "a=sctp-port:" << *mSctpPort << eol;
- if (mMaxMessageSize)
- sdp << "a=max-message-size:" << *mMaxMessageSize << eol;
- return sdp.str();
- }
- void Description::Application::parseSdpLine(string_view line) {
- if (match_prefix(line, "a=")) {
- string_view attr = line.substr(2);
- auto [key, value] = parse_pair(attr);
- if (key == "sctp-port") {
- mSctpPort = to_integer<uint16_t>(value);
- } else if (key == "max-message-size") {
- mMaxMessageSize = to_integer<size_t>(value);
- } else {
- Entry::parseSdpLine(line);
- }
- } else {
- Entry::parseSdpLine(line);
- }
- }
- Description::Media::Media(const string &sdp) : Entry(sdp, "", Direction::Unknown) {
- std::istringstream ss(sdp);
- while (ss) {
- string line;
- std::getline(ss, line);
- trim_end(line);
- if (line.empty())
- continue;
- parseSdpLine(line);
- }
- if (mid().empty())
- throw std::invalid_argument("Missing mid in media SDP");
- }
- Description::Media::Media(const string &mline, string mid, Direction dir)
- : Entry(mline, std::move(mid), dir) {}
- string Description::Media::description() const {
- std::ostringstream desc;
- desc << Entry::description();
- for (auto it = mRtpMaps.begin(); it != mRtpMaps.end(); ++it)
- desc << ' ' << it->first;
- return desc.str();
- }
- Description::Media Description::Media::reciprocate() const {
- Media reciprocated(*this);
- // Invert direction
- switch (reciprocated.direction()) {
- case Direction::RecvOnly:
- reciprocated.setDirection(Direction::SendOnly);
- break;
- case Direction::SendOnly:
- reciprocated.setDirection(Direction::RecvOnly);
- break;
- default:
- // We are good
- break;
- }
- // Invert directions of extmap
- for (auto it = reciprocated.mExtMaps.begin(); it != reciprocated.mExtMaps.end(); ++it) {
- auto &map = it->second;
- switch (map.direction) {
- case Direction::RecvOnly:
- map.direction = Direction::SendOnly;
- break;
- case Direction::SendOnly:
- map.direction = Direction::RecvOnly;
- break;
- default:
- // We are good
- break;
- }
- }
- // Clear all ssrc attributes as they are individual
- auto it = reciprocated.mAttributes.begin();
- while (it != reciprocated.mAttributes.end()) {
- if (match_prefix(*it, "ssrc:"))
- it = reciprocated.mAttributes.erase(it);
- else
- ++it;
- }
- reciprocated.mSsrcs.clear();
- reciprocated.mCNameMap.clear();
- // Remove rtcp-rsize attribute as Reduced-Size RTCP is not supported (see RFC 5506)
- reciprocated.removeAttribute("rtcp-rsize");
- return reciprocated;
- }
- std::vector<uint32_t> Description::Media::getSSRCs() { return mSsrcs; }
- optional<string> Description::Media::getCNameForSsrc(uint32_t ssrc) {
- auto it = mCNameMap.find(ssrc);
- if (it != mCNameMap.end()) {
- return it->second;
- }
- return nullopt;
- }
- int Description::Media::bitrate() const { return mBas; }
- void Description::Media::setBitrate(int bitrate) { mBas = bitrate; }
- bool Description::Media::hasPayloadType(int payloadType) const {
- return mRtpMaps.find(payloadType) != mRtpMaps.end();
- }
- std::vector<int> Description::Media::payloadTypes() const {
- std::vector<int> result;
- result.reserve(mRtpMaps.size());
- for (auto it = mRtpMaps.begin(); it != mRtpMaps.end(); ++it)
- result.push_back(it->first);
- return result;
- }
- Description::Media::RtpMap *Description::Media::rtpMap(int payloadType) {
- auto it = mRtpMaps.find(payloadType);
- if (it == mRtpMaps.end())
- throw std::invalid_argument("rtpmap not found");
- return &it->second;
- }
- void Description::Media::addRtpMap(RtpMap map) {
- auto payloadType = map.payloadType;
- mRtpMaps.emplace(payloadType, std::move(map));
- }
- void Description::Media::removeRtpMap(int payloadType) {
- // Remove the actual format
- mRtpMaps.erase(payloadType);
- // Remove any other rtpmaps that depend on the format we just removed
- auto it = mRtpMaps.begin();
- while (it != mRtpMaps.end()) {
- const auto &fmtps = it->second.fmtps;
- if (std::find(fmtps.begin(), fmtps.end(), "apt=" + std::to_string(payloadType)) !=
- fmtps.end())
- it = mRtpMaps.erase(it);
- else
- ++it;
- }
- }
- void Description::Media::removeFormat(const string &format) {
- std::vector<int> payloadTypes;
- auto it = mRtpMaps.begin();
- while (it != mRtpMaps.end()) {
- if (it->second.format == format)
- payloadTypes.push_back(it->first);
- else
- ++it;
- }
- for (int pt : payloadTypes)
- removeRtpMap(pt);
- }
- void Description::Media::addRtxCodec(int payloadType, int origPayloadType, unsigned int clockRate) {
- RtpMap rtp(std::to_string(payloadType) + " RTX/" + std::to_string(clockRate));
- rtp.fmtps.emplace_back("apt=" + std::to_string(origPayloadType));
- addRtpMap(rtp);
- }
- string Description::Media::generateSdpLines(string_view eol) const {
- std::ostringstream sdp;
- if (mBas >= 0)
- sdp << "b=AS:" << mBas << eol;
- sdp << Entry::generateSdpLines(eol);
- sdp << "a=rtcp-mux" << eol;
- for (auto it = mRtpMaps.begin(); it != mRtpMaps.end(); ++it) {
- auto &map = it->second;
- // Create the a=rtpmap
- sdp << "a=rtpmap:" << map.payloadType << ' ' << map.format << '/' << map.clockRate;
- if (!map.encParams.empty())
- sdp << '/' << map.encParams;
- sdp << eol;
- for (const auto &val : map.rtcpFbs)
- if (val != "transport-cc")
- sdp << "a=rtcp-fb:" << map.payloadType << ' ' << val << eol;
- for (const auto &val : map.fmtps)
- sdp << "a=fmtp:" << map.payloadType << ' ' << val << eol;
- }
- return sdp.str();
- }
- void Description::Media::parseSdpLine(string_view line) {
- if (match_prefix(line, "a=")) {
- string_view attr = line.substr(2);
- auto [key, value] = parse_pair(attr);
- if (key == "rtpmap") {
- auto pt = Description::Media::RtpMap::parsePayloadType(value);
- auto it = mRtpMaps.find(pt);
- if (it == mRtpMaps.end())
- it = mRtpMaps.insert(std::make_pair(pt, Description::Media::RtpMap(value))).first;
- else
- it->second.setDescription(value);
- } else if (key == "rtcp-fb") {
- size_t p = value.find(' ');
- int pt = to_integer<int>(value.substr(0, p));
- auto it = mRtpMaps.find(pt);
- if (it == mRtpMaps.end())
- it = mRtpMaps.insert(std::make_pair(pt, Description::Media::RtpMap(pt))).first;
- it->second.rtcpFbs.emplace_back(value.substr(p + 1));
- } else if (key == "fmtp") {
- size_t p = value.find(' ');
- int pt = to_integer<int>(value.substr(0, p));
- auto it = mRtpMaps.find(pt);
- if (it == mRtpMaps.end())
- it = mRtpMaps.insert(std::make_pair(pt, Description::Media::RtpMap(pt))).first;
- it->second.fmtps.emplace_back(value.substr(p + 1));
- } else if (key == "rtcp-mux") {
- // always added
- } else if (key == "ssrc") {
- auto ssrc = to_integer<uint32_t>(value);
- if (!hasSSRC(ssrc))
- mSsrcs.emplace_back(ssrc);
- auto cnamePos = value.find("cname:");
- if (cnamePos != string::npos) {
- auto cname = value.substr(cnamePos + 6);
- mCNameMap.emplace(ssrc, cname);
- }
- mAttributes.emplace_back(attr);
- } else {
- Entry::parseSdpLine(line);
- }
- } else if (match_prefix(line, "b=AS")) {
- mBas = to_integer<int>(line.substr(line.find(':') + 1));
- } else {
- Entry::parseSdpLine(line);
- }
- }
- std::map<int, Description::Media::RtpMap>::iterator Description::Media::beginMaps() {
- return mRtpMaps.begin();
- }
- std::map<int, Description::Media::RtpMap>::iterator Description::Media::endMaps() {
- return mRtpMaps.end();
- }
- std::map<int, Description::Media::RtpMap>::iterator
- Description::Media::removeMap(std::map<int, Description::Media::RtpMap>::iterator iterator) {
- return mRtpMaps.erase(iterator);
- }
- Description::Media::RtpMap::RtpMap(int payloadType) {
- this->payloadType = payloadType;
- this->clockRate = 0;
- }
- int Description::Media::RtpMap::parsePayloadType(string_view mline) {
- size_t p = mline.find(' ');
- return to_integer<int>(mline.substr(0, p));
- }
- Description::Media::RtpMap::RtpMap(string_view description) { setDescription(description); }
- void Description::Media::RtpMap::setDescription(string_view description) {
- size_t p = description.find(' ');
- if (p == string::npos)
- throw std::invalid_argument("Invalid format description");
- this->payloadType = to_integer<int>(description.substr(0, p));
- string_view line = description.substr(p + 1);
- size_t spl = line.find('/');
- if (spl == string::npos)
- throw std::invalid_argument("Invalid format description");
- this->format = line.substr(0, spl);
- line = line.substr(spl + 1);
- spl = line.find('/');
- if (spl == string::npos) {
- spl = line.find(' ');
- }
- if (spl == string::npos)
- this->clockRate = to_integer<int>(line);
- else {
- this->clockRate = to_integer<int>(line.substr(0, spl));
- this->encParams = line.substr(spl + 1);
- }
- }
- void Description::Media::RtpMap::addFeedback(string fb) {
- if (std::find(rtcpFbs.begin(), rtcpFbs.end(), fb) == rtcpFbs.end())
- fmtps.emplace_back(std::move(fb));
- }
- void Description::Media::RtpMap::removeFeedback(const string &str) {
- auto it = rtcpFbs.begin();
- while (it != rtcpFbs.end()) {
- if (it->find(str) != string::npos)
- it = rtcpFbs.erase(it);
- else
- it++;
- }
- }
- void Description::Media::RtpMap::addParameter(string p) {
- if (std::find(fmtps.begin(), fmtps.end(), p) == fmtps.end())
- fmtps.emplace_back(std::move(p));
- }
- void Description::Media::RtpMap::removeParameter(const string &str) {
- fmtps.erase(std::remove_if(fmtps.begin(), fmtps.end(),
- [&](const auto &p) { return p.find(str) != string::npos; }),
- fmtps.end());
- }
- Description::Audio::Audio(string mid, Direction dir)
- : Media("audio 9 UDP/TLS/RTP/SAVPF", std::move(mid), dir) {}
- void Description::Audio::addAudioCodec(int payloadType, string codec, optional<string> profile) {
- if (codec.find('/') == string::npos)
- codec += "/48000/2";
- RtpMap map(std::to_string(payloadType) + ' ' + codec);
- if (profile)
- map.fmtps.emplace_back(*profile);
- addRtpMap(map);
- }
- void Description::Audio::addOpusCodec(int payloadType, optional<string> profile) {
- addAudioCodec(payloadType, "OPUS", profile);
- }
- Description::Video::Video(string mid, Direction dir)
- : Media("video 9 UDP/TLS/RTP/SAVPF", std::move(mid), dir) {}
- void Description::Video::addVideoCodec(int payloadType, string codec, optional<string> profile) {
- if (codec.find('/') == string::npos)
- codec += "/90000";
- RtpMap map(std::to_string(payloadType) + ' ' + codec);
- map.addFeedback("nack");
- map.addFeedback("nack pli");
- // map.addFB("ccm fir");
- map.addFeedback("goog-remb");
- if (profile)
- map.fmtps.emplace_back(*profile);
- addRtpMap(map);
- /* TODO
- * TIL that Firefox does not properly support the negotiation of RTX! It works, but doesn't
- * negotiate the SSRC so we have no idea what SSRC is RTX going to be. Three solutions: One) we
- * don't negotitate it and (maybe) break RTX support with Edge. Two) we do negotiate it and
- * rebuild the original packet before we send it distribute it to each track. Three) we complain
- * to mozilla. This one probably won't do much.
- */
- // RTX Packets
- // Format rtx(std::to_string(payloadType+1) + " rtx/90000");
- // // TODO rtx-time is how long can a request be stashed for before needing to resend it.
- // Needs to be parameterized rtx.addAttribute("apt=" + std::to_string(payloadType) +
- // ";rtx-time=3000"); addFormat(rtx);
- }
- void Description::Video::addH264Codec(int pt, optional<string> profile) {
- addVideoCodec(pt, "H264", profile);
- }
- void Description::Video::addVP8Codec(int payloadType) {
- addVideoCodec(payloadType, "VP8", nullopt);
- }
- void Description::Video::addVP9Codec(int payloadType) {
- addVideoCodec(payloadType, "VP9", nullopt);
- }
- Description::Type Description::stringToType(const string &typeString) {
- using TypeMap_t = std::unordered_map<string, Type>;
- static const TypeMap_t TypeMap = {{"unspec", Type::Unspec},
- {"offer", Type::Offer},
- {"answer", Type::Answer},
- {"pranswer", Type::Pranswer},
- {"rollback", Type::Rollback}};
- auto it = TypeMap.find(typeString);
- return it != TypeMap.end() ? it->second : Type::Unspec;
- }
- string Description::typeToString(Type type) {
- switch (type) {
- case Type::Unspec:
- return "unspec";
- case Type::Offer:
- return "offer";
- case Type::Answer:
- return "answer";
- case Type::Pranswer:
- return "pranswer";
- case Type::Rollback:
- return "rollback";
- default:
- return "unknown";
- }
- }
- } // namespace rtc
- std::ostream &operator<<(std::ostream &out, const rtc::Description &description) {
- return out << std::string(description);
- }
- std::ostream &operator<<(std::ostream &out, rtc::Description::Type type) {
- return out << rtc::Description::typeToString(type);
- }
- std::ostream &operator<<(std::ostream &out, rtc::Description::Role role) {
- using Role = rtc::Description::Role;
- // Used for SDP generation, do not change
- switch (role) {
- case Role::Active:
- out << "active";
- break;
- case Role::Passive:
- out << "passive";
- break;
- default:
- out << "actpass";
- break;
- }
- return out;
- }
|