blob: 5fd200a57652d4c0703e305a0c8c2e283a116ae5 [file] [log] [blame]
henrike@webrtc.org28e20752013-07-10 00:45:361/*
kjellanderb24317b2016-02-10 15:54:432 * Copyright 2011 The WebRTC project authors. All Rights Reserved.
henrike@webrtc.org28e20752013-07-10 00:45:363 *
kjellanderb24317b2016-02-10 15:54:434 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree.
henrike@webrtc.org28e20752013-07-10 00:45:369 */
10
Henrik Kjellander15583c12016-02-10 09:53:1211#include "webrtc/api/webrtcsdp.h"
henrike@webrtc.org28e20752013-07-10 00:45:3612
kjellandera96e2d72016-02-05 07:52:2813#include <ctype.h>
henrike@webrtc.org28e20752013-07-10 00:45:3614#include <limits.h>
15#include <stdio.h>
16#include <algorithm>
17#include <string>
18#include <vector>
19
Henrik Kjellander15583c12016-02-10 09:53:1220#include "webrtc/api/jsepicecandidate.h"
21#include "webrtc/api/jsepsessiondescription.h"
tfarina5237aaf2015-11-11 07:44:3022#include "webrtc/base/arraysize.h"
buildbot@webrtc.orga09a9992014-08-13 17:26:0823#include "webrtc/base/common.h"
24#include "webrtc/base/logging.h"
25#include "webrtc/base/messagedigest.h"
26#include "webrtc/base/stringutils.h"
kjellandera96e2d72016-02-05 07:52:2827#include "webrtc/media/base/codec.h"
28#include "webrtc/media/base/constants.h"
29#include "webrtc/media/base/cryptoparams.h"
30#include "webrtc/media/base/rtputils.h"
31#include "webrtc/media/sctp/sctpdataengine.h"
32#include "webrtc/p2p/base/candidate.h"
33#include "webrtc/p2p/base/constants.h"
34#include "webrtc/p2p/base/port.h"
kjellander@webrtc.org9b8df252016-02-12 05:47:5935#include "webrtc/pc/mediasession.h"
henrike@webrtc.org28e20752013-07-10 00:45:3636
37using cricket::AudioContentDescription;
38using cricket::Candidate;
39using cricket::Candidates;
40using cricket::ContentDescription;
41using cricket::ContentInfo;
42using cricket::CryptoParams;
43using cricket::DataContentDescription;
44using cricket::ICE_CANDIDATE_COMPONENT_RTP;
45using cricket::ICE_CANDIDATE_COMPONENT_RTCP;
46using cricket::kCodecParamMaxBitrate;
47using cricket::kCodecParamMaxPTime;
48using cricket::kCodecParamMaxQuantization;
49using cricket::kCodecParamMinBitrate;
50using cricket::kCodecParamMinPTime;
51using cricket::kCodecParamPTime;
52using cricket::kCodecParamSPropStereo;
buildbot@webrtc.orged97bb02014-05-07 11:15:2053using cricket::kCodecParamStartBitrate;
henrike@webrtc.org28e20752013-07-10 00:45:3654using cricket::kCodecParamStereo;
55using cricket::kCodecParamUseInbandFec;
Minyue Li7100dcd2015-03-27 04:05:5956using cricket::kCodecParamUseDtx;
henrike@webrtc.org28e20752013-07-10 00:45:3657using cricket::kCodecParamSctpProtocol;
58using cricket::kCodecParamSctpStreams;
henrike@webrtc.org1e09a712013-07-26 19:17:5959using cricket::kCodecParamMaxAverageBitrate;
buildbot@webrtc.org5d639b32014-09-10 07:57:1260using cricket::kCodecParamMaxPlaybackRate;
stefan@webrtc.org85d27942014-06-09 12:51:3961using cricket::kCodecParamAssociatedPayloadType;
henrike@webrtc.org28e20752013-07-10 00:45:3662using cricket::MediaContentDescription;
63using cricket::MediaType;
henrike@webrtc.org28e20752013-07-10 00:45:3664using cricket::RtpHeaderExtension;
65using cricket::SsrcGroup;
66using cricket::StreamParams;
67using cricket::StreamParamsVec;
68using cricket::TransportDescription;
69using cricket::TransportInfo;
70using cricket::VideoContentDescription;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:5271using rtc::SocketAddress;
henrike@webrtc.org28e20752013-07-10 00:45:3672
73typedef std::vector<RtpHeaderExtension> RtpHeaderExtensions;
74
75namespace cricket {
76class SessionDescription;
77}
78
79namespace webrtc {
80
81// Line type
82// RFC 4566
83// An SDP session description consists of a number of lines of text of
84// the form:
85// <type>=<value>
86// where <type> MUST be exactly one case-significant character.
87static const int kLinePrefixLength = 2; // Lenght of <type>=
88static const char kLineTypeVersion = 'v';
89static const char kLineTypeOrigin = 'o';
90static const char kLineTypeSessionName = 's';
91static const char kLineTypeSessionInfo = 'i';
92static const char kLineTypeSessionUri = 'u';
93static const char kLineTypeSessionEmail = 'e';
94static const char kLineTypeSessionPhone = 'p';
95static const char kLineTypeSessionBandwidth = 'b';
96static const char kLineTypeTiming = 't';
97static const char kLineTypeRepeatTimes = 'r';
98static const char kLineTypeTimeZone = 'z';
99static const char kLineTypeEncryptionKey = 'k';
100static const char kLineTypeMedia = 'm';
101static const char kLineTypeConnection = 'c';
102static const char kLineTypeAttributes = 'a';
103
104// Attributes
105static const char kAttributeGroup[] = "group";
106static const char kAttributeMid[] = "mid";
107static const char kAttributeRtcpMux[] = "rtcp-mux";
deadbeef13871492015-12-09 20:37:51108static const char kAttributeRtcpReducedSize[] = "rtcp-rsize";
henrike@webrtc.org28e20752013-07-10 00:45:36109static const char kAttributeSsrc[] = "ssrc";
110static const char kSsrcAttributeCname[] = "cname";
111static const char kAttributeExtmap[] = "extmap";
112// draft-alvestrand-mmusic-msid-01
113// a=msid-semantic: WMS
114static const char kAttributeMsidSemantics[] = "msid-semantic";
115static const char kMediaStreamSemantic[] = "WMS";
116static const char kSsrcAttributeMsid[] = "msid";
117static const char kDefaultMsid[] = "default";
henrike@webrtc.org28e20752013-07-10 00:45:36118static const char kSsrcAttributeMslabel[] = "mslabel";
119static const char kSSrcAttributeLabel[] = "label";
120static const char kAttributeSsrcGroup[] = "ssrc-group";
121static const char kAttributeCrypto[] = "crypto";
122static const char kAttributeCandidate[] = "candidate";
123static const char kAttributeCandidateTyp[] = "typ";
124static const char kAttributeCandidateRaddr[] = "raddr";
125static const char kAttributeCandidateRport[] = "rport";
honghaiza54a0802015-12-17 02:37:23126static const char kAttributeCandidateUfrag[] = "ufrag";
127static const char kAttributeCandidatePwd[] = "pwd";
henrike@webrtc.org28e20752013-07-10 00:45:36128static const char kAttributeCandidateGeneration[] = "generation";
129static const char kAttributeFingerprint[] = "fingerprint";
sergeyu@chromium.org0be6aa02013-08-23 23:21:25130static const char kAttributeSetup[] = "setup";
henrike@webrtc.org28e20752013-07-10 00:45:36131static const char kAttributeFmtp[] = "fmtp";
132static const char kAttributeRtpmap[] = "rtpmap";
wu@webrtc.org78187522013-10-07 23:32:02133static const char kAttributeSctpmap[] = "sctpmap";
henrike@webrtc.org28e20752013-07-10 00:45:36134static const char kAttributeRtcp[] = "rtcp";
135static const char kAttributeIceUfrag[] = "ice-ufrag";
136static const char kAttributeIcePwd[] = "ice-pwd";
137static const char kAttributeIceLite[] = "ice-lite";
138static const char kAttributeIceOption[] = "ice-options";
139static const char kAttributeSendOnly[] = "sendonly";
140static const char kAttributeRecvOnly[] = "recvonly";
141static const char kAttributeRtcpFb[] = "rtcp-fb";
142static const char kAttributeSendRecv[] = "sendrecv";
143static const char kAttributeInactive[] = "inactive";
jiayl@webrtc.orgddb85ab2014-09-05 16:31:56144// draft-ietf-mmusic-sctp-sdp-07
145// a=sctp-port
146static const char kAttributeSctpPort[] = "sctp-port";
henrike@webrtc.org28e20752013-07-10 00:45:36147
148// Experimental flags
149static const char kAttributeXGoogleFlag[] = "x-google-flag";
150static const char kValueConference[] = "conference";
henrike@webrtc.org28e20752013-07-10 00:45:36151
152// Candidate
153static const char kCandidateHost[] = "host";
154static const char kCandidateSrflx[] = "srflx";
155// TODO: How to map the prflx with circket candidate type
156// static const char kCandidatePrflx[] = "prflx";
157static const char kCandidateRelay[] = "relay";
mallinath@webrtc.org2d60c5e2014-08-08 22:29:20158static const char kTcpCandidateType[] = "tcptype";
henrike@webrtc.org28e20752013-07-10 00:45:36159
160static const char kSdpDelimiterEqual = '=';
161static const char kSdpDelimiterSpace = ' ';
162static const char kSdpDelimiterColon = ':';
163static const char kSdpDelimiterSemicolon = ';';
164static const char kSdpDelimiterSlash = '/';
165static const char kNewLine = '\n';
166static const char kReturn = '\r';
167static const char kLineBreak[] = "\r\n";
168
169// TODO: Generate the Session and Time description
170// instead of hardcoding.
171static const char kSessionVersion[] = "v=0";
172// RFC 4566
173static const char kSessionOriginUsername[] = "-";
174static const char kSessionOriginSessionId[] = "0";
175static const char kSessionOriginSessionVersion[] = "0";
176static const char kSessionOriginNettype[] = "IN";
177static const char kSessionOriginAddrtype[] = "IP4";
178static const char kSessionOriginAddress[] = "127.0.0.1";
179static const char kSessionName[] = "s=-";
180static const char kTimeDescription[] = "t=0 0";
181static const char kAttrGroup[] = "a=group:BUNDLE";
182static const char kConnectionNettype[] = "IN";
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22183static const char kConnectionIpv4Addrtype[] = "IP4";
184static const char kConnectionIpv6Addrtype[] = "IP6";
henrike@webrtc.org28e20752013-07-10 00:45:36185static const char kMediaTypeVideo[] = "video";
186static const char kMediaTypeAudio[] = "audio";
187static const char kMediaTypeData[] = "application";
188static const char kMediaPortRejected[] = "0";
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22189// draft-ietf-mmusic-trickle-ice-01
190// When no candidates have been gathered, set the connection
191// address to IP6 ::.
perkj@webrtc.orgd105cc82014-11-07 11:22:06192// TODO(perkj): FF can not parse IP6 ::. See http://crbug/430333
193// Use IPV4 per default.
194static const char kDummyAddress[] = "0.0.0.0";
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22195static const char kDummyPort[] = "9";
henrike@webrtc.org28e20752013-07-10 00:45:36196// RFC 3556
197static const char kApplicationSpecificMaximum[] = "AS";
198
199static const int kDefaultVideoClockrate = 90000;
200
201// ISAC special-case.
202static const char kIsacCodecName[] = "ISAC"; // From webrtcvoiceengine.cc
203static const int kIsacWbDefaultRate = 32000; // From acm_common_defs.h
204static const int kIsacSwbDefaultRate = 56000; // From acm_common_defs.h
205
wu@webrtc.org78187522013-10-07 23:32:02206static const char kDefaultSctpmapProtocol[] = "webrtc-datachannel";
henrike@webrtc.org28e20752013-07-10 00:45:36207
pkasting@chromium.orgd3245462015-02-23 21:28:22208// RTP payload type is in the 0-127 range. Use -1 to indicate "all" payload
209// types.
210const int kWildcardPayloadType = -1;
211
henrike@webrtc.org28e20752013-07-10 00:45:36212struct SsrcInfo {
213 SsrcInfo()
214 : msid_identifier(kDefaultMsid),
215 // TODO(ronghuawu): What should we do if the appdata doesn't appear?
216 // Create random string (which will be used as track label later)?
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52217 msid_appdata(rtc::CreateRandomString(8)) {
henrike@webrtc.org28e20752013-07-10 00:45:36218 }
Peter Boström0c4e06b2015-10-07 10:23:21219 uint32_t ssrc_id;
henrike@webrtc.org28e20752013-07-10 00:45:36220 std::string cname;
221 std::string msid_identifier;
222 std::string msid_appdata;
223
224 // For backward compatibility.
225 // TODO(ronghuawu): Remove below 2 fields once all the clients support msid.
226 std::string label;
227 std::string mslabel;
228};
229typedef std::vector<SsrcInfo> SsrcInfoVec;
230typedef std::vector<SsrcGroup> SsrcGroupVec;
231
henrike@webrtc.org28e20752013-07-10 00:45:36232template <class T>
233static void AddFmtpLine(const T& codec, std::string* message);
234static void BuildMediaDescription(const ContentInfo* content_info,
235 const TransportInfo* transport_info,
236 const MediaType media_type,
wu@webrtc.org4c3e9912014-07-16 21:03:13237 const std::vector<Candidate>& candidates,
henrike@webrtc.org28e20752013-07-10 00:45:36238 std::string* message);
jiayl@webrtc.org9c16c392014-05-01 18:30:30239static void BuildSctpContentAttributes(std::string* message, int sctp_port);
henrike@webrtc.org28e20752013-07-10 00:45:36240static void BuildRtpContentAttributes(
241 const MediaContentDescription* media_desc,
242 const MediaType media_type,
243 std::string* message);
244static void BuildRtpMap(const MediaContentDescription* media_desc,
245 const MediaType media_type,
246 std::string* message);
247static void BuildCandidate(const std::vector<Candidate>& candidates,
honghaiza54a0802015-12-17 02:37:23248 bool include_ufrag,
henrike@webrtc.org28e20752013-07-10 00:45:36249 std::string* message);
250static void BuildIceOptions(const std::vector<std::string>& transport_options,
251 std::string* message);
pthatcher@webrtc.org3341b402015-02-13 21:14:22252static bool IsRtp(const std::string& protocol);
253static bool IsDtlsSctp(const std::string& protocol);
henrike@webrtc.org28e20752013-07-10 00:45:36254static bool ParseSessionDescription(const std::string& message, size_t* pos,
255 std::string* session_id,
256 std::string* session_version,
henrike@webrtc.org28e20752013-07-10 00:45:36257 TransportDescription* session_td,
258 RtpHeaderExtensions* session_extmaps,
259 cricket::SessionDescription* desc,
260 SdpParseError* error);
261static bool ParseGroupAttribute(const std::string& line,
262 cricket::SessionDescription* desc,
263 SdpParseError* error);
264static bool ParseMediaDescription(
265 const std::string& message,
266 const TransportDescription& session_td,
267 const RtpHeaderExtensions& session_extmaps,
henrike@webrtc.org28e20752013-07-10 00:45:36268 size_t* pos, cricket::SessionDescription* desc,
269 std::vector<JsepIceCandidate*>* candidates,
270 SdpParseError* error);
271static bool ParseContent(const std::string& message,
272 const MediaType media_type,
273 int mline_index,
274 const std::string& protocol,
275 const std::vector<int>& codec_preference,
276 size_t* pos,
277 std::string* content_name,
278 MediaContentDescription* media_desc,
279 TransportDescription* transport,
280 std::vector<JsepIceCandidate*>* candidates,
281 SdpParseError* error);
282static bool ParseSsrcAttribute(const std::string& line,
283 SsrcInfoVec* ssrc_infos,
284 SdpParseError* error);
285static bool ParseSsrcGroupAttribute(const std::string& line,
286 SsrcGroupVec* ssrc_groups,
287 SdpParseError* error);
288static bool ParseCryptoAttribute(const std::string& line,
289 MediaContentDescription* media_desc,
290 SdpParseError* error);
291static bool ParseRtpmapAttribute(const std::string& line,
292 const MediaType media_type,
293 const std::vector<int>& codec_preference,
294 MediaContentDescription* media_desc,
295 SdpParseError* error);
296static bool ParseFmtpAttributes(const std::string& line,
297 const MediaType media_type,
298 MediaContentDescription* media_desc,
299 SdpParseError* error);
300static bool ParseFmtpParam(const std::string& line, std::string* parameter,
301 std::string* value, SdpParseError* error);
302static bool ParseCandidate(const std::string& message, Candidate* candidate,
303 SdpParseError* error, bool is_raw);
304static bool ParseRtcpFbAttribute(const std::string& line,
305 const MediaType media_type,
306 MediaContentDescription* media_desc,
307 SdpParseError* error);
308static bool ParseIceOptions(const std::string& line,
309 std::vector<std::string>* transport_options,
310 SdpParseError* error);
311static bool ParseExtmap(const std::string& line,
312 RtpHeaderExtension* extmap,
313 SdpParseError* error);
314static bool ParseFingerprintAttribute(const std::string& line,
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52315 rtc::SSLFingerprint** fingerprint,
henrike@webrtc.org28e20752013-07-10 00:45:36316 SdpParseError* error);
sergeyu@chromium.org0be6aa02013-08-23 23:21:25317static bool ParseDtlsSetup(const std::string& line,
318 cricket::ConnectionRole* role,
319 SdpParseError* error);
henrike@webrtc.org28e20752013-07-10 00:45:36320
321// Helper functions
322
323// Below ParseFailed*** functions output the line that caused the parsing
324// failure and the detailed reason (|description|) of the failure to |error|.
325// The functions always return false so that they can be used directly in the
326// following way when error happens:
327// "return ParseFailed***(...);"
328
329// The line starting at |line_start| of |message| is the failing line.
330// The reason for the failure should be provided in the |description|.
331// An example of a description could be "unknown character".
332static bool ParseFailed(const std::string& message,
333 size_t line_start,
334 const std::string& description,
335 SdpParseError* error) {
336 // Get the first line of |message| from |line_start|.
sergeyu@chromium.org5bc25c42013-12-05 00:24:06337 std::string first_line;
henrike@webrtc.org28e20752013-07-10 00:45:36338 size_t line_end = message.find(kNewLine, line_start);
339 if (line_end != std::string::npos) {
340 if (line_end > 0 && (message.at(line_end - 1) == kReturn)) {
341 --line_end;
342 }
343 first_line = message.substr(line_start, (line_end - line_start));
sergeyu@chromium.org5bc25c42013-12-05 00:24:06344 } else {
345 first_line = message.substr(line_start);
henrike@webrtc.org28e20752013-07-10 00:45:36346 }
347
348 if (error) {
349 error->line = first_line;
350 error->description = description;
351 }
352 LOG(LS_ERROR) << "Failed to parse: \"" << first_line
353 << "\". Reason: " << description;
354 return false;
355}
356
357// |line| is the failing line. The reason for the failure should be
358// provided in the |description|.
359static bool ParseFailed(const std::string& line,
360 const std::string& description,
361 SdpParseError* error) {
362 return ParseFailed(line, 0, description, error);
363}
364
365// Parses failure where the failing SDP line isn't know or there are multiple
366// failing lines.
367static bool ParseFailed(const std::string& description,
368 SdpParseError* error) {
369 return ParseFailed("", description, error);
370}
371
372// |line| is the failing line. The failure is due to the fact that |line|
373// doesn't have |expected_fields| fields.
374static bool ParseFailedExpectFieldNum(const std::string& line,
375 int expected_fields,
376 SdpParseError* error) {
377 std::ostringstream description;
378 description << "Expects " << expected_fields << " fields.";
379 return ParseFailed(line, description.str(), error);
380}
381
382// |line| is the failing line. The failure is due to the fact that |line| has
383// less than |expected_min_fields| fields.
384static bool ParseFailedExpectMinFieldNum(const std::string& line,
385 int expected_min_fields,
386 SdpParseError* error) {
387 std::ostringstream description;
388 description << "Expects at least " << expected_min_fields << " fields.";
389 return ParseFailed(line, description.str(), error);
390}
391
392// |line| is the failing line. The failure is due to the fact that it failed to
393// get the value of |attribute|.
394static bool ParseFailedGetValue(const std::string& line,
395 const std::string& attribute,
396 SdpParseError* error) {
397 std::ostringstream description;
398 description << "Failed to get the value of attribute: " << attribute;
399 return ParseFailed(line, description.str(), error);
400}
401
402// The line starting at |line_start| of |message| is the failing line. The
403// failure is due to the line type (e.g. the "m" part of the "m-line")
404// not matching what is expected. The expected line type should be
405// provided as |line_type|.
406static bool ParseFailedExpectLine(const std::string& message,
407 size_t line_start,
408 const char line_type,
409 const std::string& line_value,
410 SdpParseError* error) {
411 std::ostringstream description;
412 description << "Expect line: " << line_type << "=" << line_value;
413 return ParseFailed(message, line_start, description.str(), error);
414}
415
416static bool AddLine(const std::string& line, std::string* message) {
417 if (!message)
418 return false;
419
420 message->append(line);
421 message->append(kLineBreak);
422 return true;
423}
424
425static bool GetLine(const std::string& message,
426 size_t* pos,
427 std::string* line) {
428 size_t line_begin = *pos;
429 size_t line_end = message.find(kNewLine, line_begin);
430 if (line_end == std::string::npos) {
431 return false;
432 }
433 // Update the new start position
434 *pos = line_end + 1;
435 if (line_end > 0 && (message.at(line_end - 1) == kReturn)) {
436 --line_end;
437 }
438 *line = message.substr(line_begin, (line_end - line_begin));
439 const char* cline = line->c_str();
440 // RFC 4566
441 // An SDP session description consists of a number of lines of text of
442 // the form:
443 // <type>=<value>
444 // where <type> MUST be exactly one case-significant character and
445 // <value> is structured text whose format depends on <type>.
446 // Whitespace MUST NOT be used on either side of the "=" sign.
decurtis@webrtc.org8af11042015-01-07 19:15:51447 if (line->length() < 3 ||
448 !islower(cline[0]) ||
henrike@webrtc.org28e20752013-07-10 00:45:36449 cline[1] != kSdpDelimiterEqual ||
450 cline[2] == kSdpDelimiterSpace) {
451 *pos = line_begin;
452 return false;
453 }
454 return true;
455}
456
457// Init |os| to "|type|=|value|".
458static void InitLine(const char type,
459 const std::string& value,
460 std::ostringstream* os) {
461 os->str("");
462 *os << type << kSdpDelimiterEqual << value;
463}
464
465// Init |os| to "a=|attribute|".
466static void InitAttrLine(const std::string& attribute, std::ostringstream* os) {
467 InitLine(kLineTypeAttributes, attribute, os);
468}
469
470// Writes a SDP attribute line based on |attribute| and |value| to |message|.
471static void AddAttributeLine(const std::string& attribute, int value,
472 std::string* message) {
473 std::ostringstream os;
474 InitAttrLine(attribute, &os);
475 os << kSdpDelimiterColon << value;
476 AddLine(os.str(), message);
477}
478
henrike@webrtc.org28e20752013-07-10 00:45:36479static bool IsLineType(const std::string& message,
480 const char type,
481 size_t line_start) {
482 if (message.size() < line_start + kLinePrefixLength) {
483 return false;
484 }
485 const char* cmessage = message.c_str();
486 return (cmessage[line_start] == type &&
487 cmessage[line_start + 1] == kSdpDelimiterEqual);
488}
489
490static bool IsLineType(const std::string& line,
491 const char type) {
492 return IsLineType(line, type, 0);
493}
494
495static bool GetLineWithType(const std::string& message, size_t* pos,
496 std::string* line, const char type) {
497 if (!IsLineType(message, type, *pos)) {
498 return false;
499 }
500
501 if (!GetLine(message, pos, line))
502 return false;
503
504 return true;
505}
506
507static bool HasAttribute(const std::string& line,
508 const std::string& attribute) {
509 return (line.compare(kLinePrefixLength, attribute.size(), attribute) == 0);
510}
511
Peter Boström0c4e06b2015-10-07 10:23:21512static bool AddSsrcLine(uint32_t ssrc_id,
513 const std::string& attribute,
514 const std::string& value,
515 std::string* message) {
henrike@webrtc.org28e20752013-07-10 00:45:36516 // RFC 5576
517 // a=ssrc:<ssrc-id> <attribute>:<value>
518 std::ostringstream os;
519 InitAttrLine(kAttributeSsrc, &os);
520 os << kSdpDelimiterColon << ssrc_id << kSdpDelimiterSpace
521 << attribute << kSdpDelimiterColon << value;
522 return AddLine(os.str(), message);
523}
524
henrike@webrtc.org28e20752013-07-10 00:45:36525// Get value only from <attribute>:<value>.
526static bool GetValue(const std::string& message, const std::string& attribute,
527 std::string* value, SdpParseError* error) {
528 std::string leftpart;
Donald Curtis0e07f922015-05-15 16:21:23529 if (!rtc::tokenize_first(message, kSdpDelimiterColon, &leftpart, value)) {
henrike@webrtc.org28e20752013-07-10 00:45:36530 return ParseFailedGetValue(message, attribute, error);
531 }
532 // The left part should end with the expected attribute.
533 if (leftpart.length() < attribute.length() ||
534 leftpart.compare(leftpart.length() - attribute.length(),
535 attribute.length(), attribute) != 0) {
536 return ParseFailedGetValue(message, attribute, error);
537 }
538 return true;
539}
540
541static bool CaseInsensitiveFind(std::string str1, std::string str2) {
542 std::transform(str1.begin(), str1.end(), str1.begin(),
543 ::tolower);
544 std::transform(str2.begin(), str2.end(), str2.begin(),
545 ::tolower);
546 return str1.find(str2) != std::string::npos;
547}
548
wu@webrtc.org5e760e72014-04-02 23:19:09549template <class T>
550static bool GetValueFromString(const std::string& line,
551 const std::string& s,
552 T* t,
553 SdpParseError* error) {
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52554 if (!rtc::FromString(s, t)) {
wu@webrtc.org5e760e72014-04-02 23:19:09555 std::ostringstream description;
556 description << "Invalid value: " << s << ".";
557 return ParseFailed(line, description.str(), error);
558 }
559 return true;
560}
561
pkasting@chromium.orge9facf82015-02-17 20:36:28562static bool GetPayloadTypeFromString(const std::string& line,
563 const std::string& s,
564 int* payload_type,
565 SdpParseError* error) {
566 return GetValueFromString(line, s, payload_type, error) &&
567 cricket::IsValidRtpPayloadType(*payload_type);
568}
569
henrike@webrtc.org28e20752013-07-10 00:45:36570void CreateTracksFromSsrcInfos(const SsrcInfoVec& ssrc_infos,
571 StreamParamsVec* tracks) {
572 ASSERT(tracks != NULL);
573 for (SsrcInfoVec::const_iterator ssrc_info = ssrc_infos.begin();
574 ssrc_info != ssrc_infos.end(); ++ssrc_info) {
575 if (ssrc_info->cname.empty()) {
576 continue;
577 }
578
579 std::string sync_label;
580 std::string track_id;
581 if (ssrc_info->msid_identifier == kDefaultMsid &&
582 !ssrc_info->mslabel.empty()) {
583 // If there's no msid and there's mslabel, we consider this is a sdp from
584 // a older version of client that doesn't support msid.
585 // In that case, we use the mslabel and label to construct the track.
586 sync_label = ssrc_info->mslabel;
587 track_id = ssrc_info->label;
588 } else {
589 sync_label = ssrc_info->msid_identifier;
590 // The appdata consists of the "id" attribute of a MediaStreamTrack, which
591 // is corresponding to the "id" attribute of StreamParams.
592 track_id = ssrc_info->msid_appdata;
593 }
594 if (sync_label.empty() || track_id.empty()) {
595 ASSERT(false);
596 continue;
597 }
598
599 StreamParamsVec::iterator track = tracks->begin();
600 for (; track != tracks->end(); ++track) {
601 if (track->id == track_id) {
602 break;
603 }
604 }
605 if (track == tracks->end()) {
606 // If we don't find an existing track, create a new one.
607 tracks->push_back(StreamParams());
608 track = tracks->end() - 1;
609 }
610 track->add_ssrc(ssrc_info->ssrc_id);
611 track->cname = ssrc_info->cname;
612 track->sync_label = sync_label;
613 track->id = track_id;
614 }
615}
616
617void GetMediaStreamLabels(const ContentInfo* content,
618 std::set<std::string>* labels) {
619 const MediaContentDescription* media_desc =
henrike@webrtc.org28654cb2013-07-22 21:07:49620 static_cast<const MediaContentDescription*>(
henrike@webrtc.org28e20752013-07-10 00:45:36621 content->description);
622 const cricket::StreamParamsVec& streams = media_desc->streams();
623 for (cricket::StreamParamsVec::const_iterator it = streams.begin();
624 it != streams.end(); ++it) {
625 labels->insert(it->sync_label);
626 }
627}
628
629// RFC 5245
630// It is RECOMMENDED that default candidates be chosen based on the
631// likelihood of those candidates to work with the peer that is being
632// contacted. It is RECOMMENDED that relayed > reflexive > host.
633static const int kPreferenceUnknown = 0;
634static const int kPreferenceHost = 1;
635static const int kPreferenceReflexive = 2;
636static const int kPreferenceRelayed = 3;
637
638static int GetCandidatePreferenceFromType(const std::string& type) {
639 int preference = kPreferenceUnknown;
640 if (type == cricket::LOCAL_PORT_TYPE) {
641 preference = kPreferenceHost;
642 } else if (type == cricket::STUN_PORT_TYPE) {
643 preference = kPreferenceReflexive;
644 } else if (type == cricket::RELAY_PORT_TYPE) {
645 preference = kPreferenceRelayed;
646 } else {
647 ASSERT(false);
648 }
649 return preference;
650}
651
guoweis@webrtc.org57ac2c82015-02-06 00:45:13652// Get ip and port of the default destination from the |candidates| with the
653// given value of |component_id|. The default candidate should be the one most
654// likely to work, typically IPv4 relay.
henrike@webrtc.org28e20752013-07-10 00:45:36655// RFC 5245
656// The value of |component_id| currently supported are 1 (RTP) and 2 (RTCP).
657// TODO: Decide the default destination in webrtcsession and
658// pass it down via SessionDescription.
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22659static void GetDefaultDestination(
660 const std::vector<Candidate>& candidates,
661 int component_id, std::string* port,
662 std::string* ip, std::string* addr_type) {
perkj@webrtc.orgd105cc82014-11-07 11:22:06663 *addr_type = kConnectionIpv4Addrtype;
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22664 *port = kDummyPort;
665 *ip = kDummyAddress;
henrike@webrtc.org28e20752013-07-10 00:45:36666 int current_preference = kPreferenceUnknown;
guoweis@webrtc.org57ac2c82015-02-06 00:45:13667 int current_family = AF_UNSPEC;
henrike@webrtc.org28e20752013-07-10 00:45:36668 for (std::vector<Candidate>::const_iterator it = candidates.begin();
669 it != candidates.end(); ++it) {
670 if (it->component() != component_id) {
671 continue;
672 }
guoweis@webrtc.org57ac2c82015-02-06 00:45:13673 // Default destination should be UDP only.
674 if (it->protocol() != cricket::UDP_PROTOCOL_NAME) {
henrike@webrtc.org28e20752013-07-10 00:45:36675 continue;
676 }
guoweis@webrtc.org57ac2c82015-02-06 00:45:13677 const int preference = GetCandidatePreferenceFromType(it->type());
678 const int family = it->address().ipaddr().family();
679 // See if this candidate is more preferable then the current one if it's the
680 // same family. Or if the current family is IPv4 already so we could safely
681 // ignore all IPv6 ones. WebRTC bug 4269.
682 // http://code.google.com/p/webrtc/issues/detail?id=4269
683 if ((preference <= current_preference && current_family == family) ||
684 (current_family == AF_INET && family == AF_INET6)) {
685 continue;
686 }
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22687 if (family == AF_INET) {
688 addr_type->assign(kConnectionIpv4Addrtype);
689 } else if (family == AF_INET6) {
690 addr_type->assign(kConnectionIpv6Addrtype);
691 }
guoweis@webrtc.org57ac2c82015-02-06 00:45:13692 current_preference = preference;
693 current_family = family;
694 *port = it->address().PortAsString();
695 *ip = it->address().ipaddr().ToString();
henrike@webrtc.org28e20752013-07-10 00:45:36696 }
henrike@webrtc.org28e20752013-07-10 00:45:36697}
698
wu@webrtc.org4c3e9912014-07-16 21:03:13699// Update |mline|'s default destination and append a c line after it.
henrike@webrtc.org28e20752013-07-10 00:45:36700static void UpdateMediaDefaultDestination(
wu@webrtc.org4c3e9912014-07-16 21:03:13701 const std::vector<Candidate>& candidates,
jbauch083b73f2015-07-16 09:46:32702 const std::string& mline,
wu@webrtc.org4c3e9912014-07-16 21:03:13703 std::string* message) {
704 std::string new_lines;
705 AddLine(mline, &new_lines);
henrike@webrtc.org28e20752013-07-10 00:45:36706 // RFC 4566
707 // m=<media> <port> <proto> <fmt> ...
708 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:52709 rtc::split(mline, kSdpDelimiterSpace, &fields);
henrike@webrtc.org28e20752013-07-10 00:45:36710 if (fields.size() < 3) {
711 return;
712 }
713
henrike@webrtc.org28e20752013-07-10 00:45:36714 std::ostringstream os;
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22715 std::string rtp_port, rtp_ip, addr_type;
716 GetDefaultDestination(candidates, ICE_CANDIDATE_COMPONENT_RTP,
717 &rtp_port, &rtp_ip, &addr_type);
718 // Found default RTP candidate.
719 // RFC 5245
720 // The default candidates are added to the SDP as the default
721 // destination for media. For streams based on RTP, this is done by
722 // placing the IP address and port of the RTP candidate into the c and m
723 // lines, respectively.
724 // Update the port in the m line.
725 // If this is a m-line with port equal to 0, we don't change it.
726 if (fields[1] != kMediaPortRejected) {
727 new_lines.replace(fields[0].size() + 1,
728 fields[1].size(),
729 rtp_port);
henrike@webrtc.org28e20752013-07-10 00:45:36730 }
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22731 // Add the c line.
732 // RFC 4566
733 // c=<nettype> <addrtype> <connection-address>
734 InitLine(kLineTypeConnection, kConnectionNettype, &os);
735 os << " " << addr_type << " " << rtp_ip;
736 AddLine(os.str(), &new_lines);
wu@webrtc.org4c3e9912014-07-16 21:03:13737 message->append(new_lines);
738}
henrike@webrtc.org28e20752013-07-10 00:45:36739
wu@webrtc.org4c3e9912014-07-16 21:03:13740// Gets "a=rtcp" line if found default RTCP candidate from |candidates|.
741static std::string GetRtcpLine(const std::vector<Candidate>& candidates) {
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22742 std::string rtcp_line, rtcp_port, rtcp_ip, addr_type;
743 GetDefaultDestination(candidates, ICE_CANDIDATE_COMPONENT_RTCP,
744 &rtcp_port, &rtcp_ip, &addr_type);
745 // Found default RTCP candidate.
746 // RFC 5245
747 // If the agent is utilizing RTCP, it MUST encode the RTCP candidate
748 // using the a=rtcp attribute as defined in RFC 3605.
henrike@webrtc.org28e20752013-07-10 00:45:36749
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:22750 // RFC 3605
751 // rtcp-attribute = "a=rtcp:" port [nettype space addrtype space
752 // connection-address] CRLF
753 std::ostringstream os;
754 InitAttrLine(kAttributeRtcp, &os);
755 os << kSdpDelimiterColon
756 << rtcp_port << " "
757 << kConnectionNettype << " "
758 << addr_type << " "
759 << rtcp_ip;
760 rtcp_line = os.str();
wu@webrtc.org4c3e9912014-07-16 21:03:13761 return rtcp_line;
henrike@webrtc.org28e20752013-07-10 00:45:36762}
763
764// Get candidates according to the mline index from SessionDescriptionInterface.
765static void GetCandidatesByMindex(const SessionDescriptionInterface& desci,
766 int mline_index,
767 std::vector<Candidate>* candidates) {
768 if (!candidates) {
769 return;
770 }
771 const IceCandidateCollection* cc = desci.candidates(mline_index);
772 for (size_t i = 0; i < cc->count(); ++i) {
773 const IceCandidateInterface* candidate = cc->at(i);
774 candidates->push_back(candidate->candidate());
775 }
776}
777
778std::string SdpSerialize(const JsepSessionDescription& jdesc) {
henrike@webrtc.org28e20752013-07-10 00:45:36779 const cricket::SessionDescription* desc = jdesc.description();
780 if (!desc) {
781 return "";
782 }
783
784 std::string message;
785
786 // Session Description.
787 AddLine(kSessionVersion, &message);
788 // Session Origin
789 // RFC 4566
790 // o=<username> <sess-id> <sess-version> <nettype> <addrtype>
791 // <unicast-address>
792 std::ostringstream os;
793 InitLine(kLineTypeOrigin, kSessionOriginUsername, &os);
jbauch083b73f2015-07-16 09:46:32794 const std::string& session_id = jdesc.session_id().empty() ?
henrike@webrtc.org28e20752013-07-10 00:45:36795 kSessionOriginSessionId : jdesc.session_id();
jbauch083b73f2015-07-16 09:46:32796 const std::string& session_version = jdesc.session_version().empty() ?
henrike@webrtc.org28e20752013-07-10 00:45:36797 kSessionOriginSessionVersion : jdesc.session_version();
798 os << " " << session_id << " " << session_version << " "
799 << kSessionOriginNettype << " " << kSessionOriginAddrtype << " "
800 << kSessionOriginAddress;
801 AddLine(os.str(), &message);
802 AddLine(kSessionName, &message);
803
804 // Time Description.
805 AddLine(kTimeDescription, &message);
806
807 // Group
808 if (desc->HasGroup(cricket::GROUP_TYPE_BUNDLE)) {
809 std::string group_line = kAttrGroup;
810 const cricket::ContentGroup* group =
811 desc->GetGroupByName(cricket::GROUP_TYPE_BUNDLE);
812 ASSERT(group != NULL);
813 const cricket::ContentNames& content_names = group->content_names();
814 for (cricket::ContentNames::const_iterator it = content_names.begin();
815 it != content_names.end(); ++it) {
816 group_line.append(" ");
817 group_line.append(*it);
818 }
819 AddLine(group_line, &message);
820 }
821
822 // MediaStream semantics
823 InitAttrLine(kAttributeMsidSemantics, &os);
824 os << kSdpDelimiterColon << " " << kMediaStreamSemantic;
wu@webrtc.org4c3e9912014-07-16 21:03:13825
henrike@webrtc.org28e20752013-07-10 00:45:36826 std::set<std::string> media_stream_labels;
827 const ContentInfo* audio_content = GetFirstAudioContent(desc);
828 if (audio_content)
829 GetMediaStreamLabels(audio_content, &media_stream_labels);
wu@webrtc.org4c3e9912014-07-16 21:03:13830
henrike@webrtc.org28e20752013-07-10 00:45:36831 const ContentInfo* video_content = GetFirstVideoContent(desc);
832 if (video_content)
833 GetMediaStreamLabels(video_content, &media_stream_labels);
wu@webrtc.org4c3e9912014-07-16 21:03:13834
henrike@webrtc.org28e20752013-07-10 00:45:36835 for (std::set<std::string>::const_iterator it =
836 media_stream_labels.begin(); it != media_stream_labels.end(); ++it) {
837 os << " " << *it;
838 }
839 AddLine(os.str(), &message);
840
wu@webrtc.org4c3e9912014-07-16 21:03:13841 // Preserve the order of the media contents.
842 int mline_index = -1;
843 for (cricket::ContentInfos::const_iterator it = desc->contents().begin();
844 it != desc->contents().end(); ++it) {
845 const MediaContentDescription* mdesc =
846 static_cast<const MediaContentDescription*>(it->description);
847 std::vector<Candidate> candidates;
848 GetCandidatesByMindex(jdesc, ++mline_index, &candidates);
849 BuildMediaDescription(&*it,
850 desc->GetTransportInfoByName(it->name),
851 mdesc->type(),
852 candidates,
853 &message);
henrike@webrtc.org28e20752013-07-10 00:45:36854 }
henrike@webrtc.org28e20752013-07-10 00:45:36855 return message;
856}
857
858// Serializes the passed in IceCandidateInterface to a SDP string.
859// candidate - The candidate to be serialized.
860std::string SdpSerializeCandidate(
861 const IceCandidateInterface& candidate) {
862 std::string message;
863 std::vector<cricket::Candidate> candidates;
864 candidates.push_back(candidate.candidate());
honghaiza54a0802015-12-17 02:37:23865 BuildCandidate(candidates, true, &message);
wu@webrtc.orgec9f5fb2014-06-24 17:05:10866 // From WebRTC draft section 4.8.1.1 candidate-attribute will be
867 // just candidate:<candidate> not a=candidate:<blah>CRLF
868 ASSERT(message.find("a=") == 0);
869 message.erase(0, 2);
870 ASSERT(message.find(kLineBreak) == message.size() - 2);
871 message.resize(message.size() - 2);
henrike@webrtc.org28e20752013-07-10 00:45:36872 return message;
873}
874
875bool SdpDeserialize(const std::string& message,
876 JsepSessionDescription* jdesc,
877 SdpParseError* error) {
878 std::string session_id;
879 std::string session_version;
Peter Thatcher7cbd1882015-09-18 01:54:52880 TransportDescription session_td("", "");
henrike@webrtc.org28e20752013-07-10 00:45:36881 RtpHeaderExtensions session_extmaps;
882 cricket::SessionDescription* desc = new cricket::SessionDescription();
883 std::vector<JsepIceCandidate*> candidates;
884 size_t current_pos = 0;
henrike@webrtc.org28e20752013-07-10 00:45:36885
886 // Session Description
887 if (!ParseSessionDescription(message, &current_pos, &session_id,
deadbeefc80741f2015-10-22 20:14:45888 &session_version, &session_td, &session_extmaps,
889 desc, error)) {
henrike@webrtc.org28e20752013-07-10 00:45:36890 delete desc;
891 return false;
892 }
893
894 // Media Description
deadbeefc80741f2015-10-22 20:14:45895 if (!ParseMediaDescription(message, session_td, session_extmaps, &current_pos,
896 desc, &candidates, error)) {
henrike@webrtc.org28e20752013-07-10 00:45:36897 delete desc;
898 for (std::vector<JsepIceCandidate*>::const_iterator
899 it = candidates.begin(); it != candidates.end(); ++it) {
900 delete *it;
901 }
902 return false;
903 }
904
905 jdesc->Initialize(desc, session_id, session_version);
906
907 for (std::vector<JsepIceCandidate*>::const_iterator
908 it = candidates.begin(); it != candidates.end(); ++it) {
909 jdesc->AddCandidate(*it);
910 delete *it;
911 }
912 return true;
913}
914
915bool SdpDeserializeCandidate(const std::string& message,
916 JsepIceCandidate* jcandidate,
917 SdpParseError* error) {
918 ASSERT(jcandidate != NULL);
919 Candidate candidate;
920 if (!ParseCandidate(message, &candidate, error, true)) {
921 return false;
922 }
923 jcandidate->SetCandidate(candidate);
924 return true;
925}
926
927bool ParseCandidate(const std::string& message, Candidate* candidate,
928 SdpParseError* error, bool is_raw) {
929 ASSERT(candidate != NULL);
930
931 // Get the first line from |message|.
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15932 std::string first_line = message;
933 size_t pos = 0;
934 GetLine(message, &pos, &first_line);
henrike@webrtc.org28e20752013-07-10 00:45:36935
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15936 // Makes sure |message| contains only one line.
937 if (message.size() > first_line.size()) {
938 std::string left, right;
Donald Curtis0e07f922015-05-15 16:21:23939 if (rtc::tokenize_first(message, kNewLine, &left, &right) &&
940 !right.empty()) {
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15941 return ParseFailed(message, 0, "Expect one line only", error);
942 }
943 }
944
945 // From WebRTC draft section 4.8.1.1 candidate-attribute should be
946 // candidate:<candidate> when trickled, but we still support
947 // a=candidate:<blah>CRLF for backward compatibility and for parsing a line
948 // from the SDP.
949 if (IsLineType(first_line, kLineTypeAttributes)) {
950 first_line = first_line.substr(kLinePrefixLength);
951 }
952
953 std::string attribute_candidate;
954 std::string candidate_value;
955
956 // |first_line| must be in the form of "candidate:<value>".
Donald Curtis144d0182015-05-15 20:14:24957 if (!rtc::tokenize_first(first_line, kSdpDelimiterColon, &attribute_candidate,
958 &candidate_value) ||
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15959 attribute_candidate != kAttributeCandidate) {
henrike@webrtc.org28e20752013-07-10 00:45:36960 if (is_raw) {
961 std::ostringstream description;
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15962 description << "Expect line: " << kAttributeCandidate
henrike@webrtc.org28e20752013-07-10 00:45:36963 << ":" << "<candidate-str>";
964 return ParseFailed(first_line, 0, description.str(), error);
965 } else {
966 return ParseFailedExpectLine(first_line, 0, kLineTypeAttributes,
967 kAttributeCandidate, error);
968 }
969 }
970
971 std::vector<std::string> fields;
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15972 rtc::split(candidate_value, kSdpDelimiterSpace, &fields);
973
henrike@webrtc.org28e20752013-07-10 00:45:36974 // RFC 5245
975 // a=candidate:<foundation> <component-id> <transport> <priority>
976 // <connection-address> <port> typ <candidate-types>
977 // [raddr <connection-address>] [rport <port>]
978 // *(SP extension-att-name SP extension-att-value)
979 const size_t expected_min_fields = 8;
980 if (fields.size() < expected_min_fields ||
981 (fields[6] != kAttributeCandidateTyp)) {
982 return ParseFailedExpectMinFieldNum(first_line, expected_min_fields, error);
983 }
jbauch083b73f2015-07-16 09:46:32984 const std::string& foundation = fields[0];
jiayl@webrtc.org7ec3f9f2014-08-08 23:09:15985
wu@webrtc.org5e760e72014-04-02 23:19:09986 int component_id = 0;
987 if (!GetValueFromString(first_line, fields[1], &component_id, error)) {
988 return false;
989 }
jbauch083b73f2015-07-16 09:46:32990 const std::string& transport = fields[2];
Peter Boström0c4e06b2015-10-07 10:23:21991 uint32_t priority = 0;
wu@webrtc.org5e760e72014-04-02 23:19:09992 if (!GetValueFromString(first_line, fields[3], &priority, error)) {
993 return false;
994 }
jbauch083b73f2015-07-16 09:46:32995 const std::string& connection_address = fields[4];
wu@webrtc.org5e760e72014-04-02 23:19:09996 int port = 0;
997 if (!GetValueFromString(first_line, fields[5], &port, error)) {
998 return false;
999 }
henrike@webrtc.org28e20752013-07-10 00:45:361000 SocketAddress address(connection_address, port);
1001
1002 cricket::ProtocolType protocol;
1003 if (!StringToProto(transport.c_str(), &protocol)) {
1004 return ParseFailed(first_line, "Unsupported transport type.", error);
1005 }
1006
1007 std::string candidate_type;
jbauch083b73f2015-07-16 09:46:321008 const std::string& type = fields[7];
henrike@webrtc.org28e20752013-07-10 00:45:361009 if (type == kCandidateHost) {
1010 candidate_type = cricket::LOCAL_PORT_TYPE;
1011 } else if (type == kCandidateSrflx) {
1012 candidate_type = cricket::STUN_PORT_TYPE;
1013 } else if (type == kCandidateRelay) {
1014 candidate_type = cricket::RELAY_PORT_TYPE;
1015 } else {
1016 return ParseFailed(first_line, "Unsupported candidate type.", error);
1017 }
1018
1019 size_t current_position = expected_min_fields;
1020 SocketAddress related_address;
1021 // The 2 optional fields for related address
1022 // [raddr <connection-address>] [rport <port>]
1023 if (fields.size() >= (current_position + 2) &&
1024 fields[current_position] == kAttributeCandidateRaddr) {
1025 related_address.SetIP(fields[++current_position]);
1026 ++current_position;
1027 }
1028 if (fields.size() >= (current_position + 2) &&
1029 fields[current_position] == kAttributeCandidateRport) {
wu@webrtc.org5e760e72014-04-02 23:19:091030 int port = 0;
1031 if (!GetValueFromString(
1032 first_line, fields[++current_position], &port, error)) {
1033 return false;
1034 }
1035 related_address.SetPort(port);
henrike@webrtc.org28e20752013-07-10 00:45:361036 ++current_position;
1037 }
1038
mallinath@webrtc.org2d60c5e2014-08-08 22:29:201039 // If this is a TCP candidate, it has additional extension as defined in
1040 // RFC 6544.
1041 std::string tcptype;
1042 if (fields.size() >= (current_position + 2) &&
1043 fields[current_position] == kTcpCandidateType) {
1044 tcptype = fields[++current_position];
1045 ++current_position;
1046
1047 if (tcptype != cricket::TCPTYPE_ACTIVE_STR &&
1048 tcptype != cricket::TCPTYPE_PASSIVE_STR &&
1049 tcptype != cricket::TCPTYPE_SIMOPEN_STR) {
1050 return ParseFailed(first_line, "Invalid TCP candidate type.", error);
1051 }
1052
1053 if (protocol != cricket::PROTO_TCP) {
1054 return ParseFailed(first_line, "Invalid non-TCP candidate", error);
1055 }
1056 }
1057
henrike@webrtc.org28e20752013-07-10 00:45:361058 // Extension
honghaiza54a0802015-12-17 02:37:231059 // Though non-standard, we support the ICE ufrag and pwd being signaled on
1060 // the candidate to avoid issues with confusing which generation a candidate
1061 // belongs to when trickling multiple generations at the same time.
henrike@webrtc.org28e20752013-07-10 00:45:361062 std::string username;
1063 std::string password;
Peter Boström0c4e06b2015-10-07 10:23:211064 uint32_t generation = 0;
henrike@webrtc.org28e20752013-07-10 00:45:361065 for (size_t i = current_position; i + 1 < fields.size(); ++i) {
1066 // RFC 5245
1067 // *(SP extension-att-name SP extension-att-value)
1068 if (fields[i] == kAttributeCandidateGeneration) {
wu@webrtc.org5e760e72014-04-02 23:19:091069 if (!GetValueFromString(first_line, fields[++i], &generation, error)) {
1070 return false;
1071 }
honghaiza54a0802015-12-17 02:37:231072 } else if (fields[i] == kAttributeCandidateUfrag) {
henrike@webrtc.org28e20752013-07-10 00:45:361073 username = fields[++i];
honghaiza54a0802015-12-17 02:37:231074 } else if (fields[i] == kAttributeCandidatePwd) {
henrike@webrtc.org28e20752013-07-10 00:45:361075 password = fields[++i];
1076 } else {
1077 // Skip the unknown extension.
1078 ++i;
1079 }
1080 }
1081
guoweis@webrtc.org61c12472015-01-15 06:53:071082 *candidate = Candidate(component_id, cricket::ProtoToString(protocol),
guoweis@webrtc.org950c5182014-12-16 23:01:311083 address, priority, username, password, candidate_type,
1084 generation, foundation);
henrike@webrtc.org28e20752013-07-10 00:45:361085 candidate->set_related_address(related_address);
mallinath@webrtc.org2d60c5e2014-08-08 22:29:201086 candidate->set_tcptype(tcptype);
henrike@webrtc.org28e20752013-07-10 00:45:361087 return true;
1088}
1089
1090bool ParseIceOptions(const std::string& line,
1091 std::vector<std::string>* transport_options,
1092 SdpParseError* error) {
1093 std::string ice_options;
1094 if (!GetValue(line, kAttributeIceOption, &ice_options, error)) {
1095 return false;
1096 }
1097 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521098 rtc::split(ice_options, kSdpDelimiterSpace, &fields);
henrike@webrtc.org28e20752013-07-10 00:45:361099 for (size_t i = 0; i < fields.size(); ++i) {
1100 transport_options->push_back(fields[i]);
1101 }
1102 return true;
1103}
1104
jiayl@webrtc.orgddb85ab2014-09-05 16:31:561105bool ParseSctpPort(const std::string& line,
1106 int* sctp_port,
1107 SdpParseError* error) {
1108 // draft-ietf-mmusic-sctp-sdp-07
1109 // a=sctp-port
1110 std::vector<std::string> fields;
jiayl@webrtc.orgddb85ab2014-09-05 16:31:561111 const size_t expected_min_fields = 2;
lally69f57602015-10-08 17:15:041112 rtc::split(line.substr(kLinePrefixLength), kSdpDelimiterColon, &fields);
1113 if (fields.size() < expected_min_fields) {
1114 fields.resize(0);
1115 rtc::split(line.substr(kLinePrefixLength), kSdpDelimiterSpace, &fields);
1116 }
jiayl@webrtc.orgddb85ab2014-09-05 16:31:561117 if (fields.size() < expected_min_fields) {
1118 return ParseFailedExpectMinFieldNum(line, expected_min_fields, error);
1119 }
1120 if (!rtc::FromString(fields[1], sctp_port)) {
lally69f57602015-10-08 17:15:041121 return ParseFailed(line, "Invalid sctp port value.", error);
jiayl@webrtc.orgddb85ab2014-09-05 16:31:561122 }
1123 return true;
1124}
1125
henrike@webrtc.org28e20752013-07-10 00:45:361126bool ParseExtmap(const std::string& line, RtpHeaderExtension* extmap,
1127 SdpParseError* error) {
1128 // RFC 5285
1129 // a=extmap:<value>["/"<direction>] <URI> <extensionattributes>
1130 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521131 rtc::split(line.substr(kLinePrefixLength),
henrike@webrtc.org28e20752013-07-10 00:45:361132 kSdpDelimiterSpace, &fields);
1133 const size_t expected_min_fields = 2;
1134 if (fields.size() < expected_min_fields) {
1135 return ParseFailedExpectMinFieldNum(line, expected_min_fields, error);
1136 }
1137 std::string uri = fields[1];
1138
1139 std::string value_direction;
1140 if (!GetValue(fields[0], kAttributeExtmap, &value_direction, error)) {
1141 return false;
1142 }
1143 std::vector<std::string> sub_fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521144 rtc::split(value_direction, kSdpDelimiterSlash, &sub_fields);
wu@webrtc.org5e760e72014-04-02 23:19:091145 int value = 0;
1146 if (!GetValueFromString(line, sub_fields[0], &value, error)) {
1147 return false;
1148 }
henrike@webrtc.org28e20752013-07-10 00:45:361149
1150 *extmap = RtpHeaderExtension(uri, value);
1151 return true;
1152}
1153
1154void BuildMediaDescription(const ContentInfo* content_info,
1155 const TransportInfo* transport_info,
1156 const MediaType media_type,
wu@webrtc.org4c3e9912014-07-16 21:03:131157 const std::vector<Candidate>& candidates,
henrike@webrtc.org28e20752013-07-10 00:45:361158 std::string* message) {
1159 ASSERT(message != NULL);
1160 if (content_info == NULL || message == NULL) {
1161 return;
1162 }
1163 // TODO: Rethink if we should use sprintfn instead of stringstream.
1164 // According to the style guide, streams should only be used for logging.
1165 // http://google-styleguide.googlecode.com/svn/
1166 // trunk/cppguide.xml?showone=Streams#Streams
1167 std::ostringstream os;
1168 const MediaContentDescription* media_desc =
henrike@webrtc.org28654cb2013-07-22 21:07:491169 static_cast<const MediaContentDescription*>(
henrike@webrtc.org28e20752013-07-10 00:45:361170 content_info->description);
1171 ASSERT(media_desc != NULL);
1172
jiayl@webrtc.org9c16c392014-05-01 18:30:301173 int sctp_port = cricket::kSctpDefaultPort;
henrike@webrtc.org28e20752013-07-10 00:45:361174
1175 // RFC 4566
1176 // m=<media> <port> <proto> <fmt>
1177 // fmt is a list of payload type numbers that MAY be used in the session.
1178 const char* type = NULL;
1179 if (media_type == cricket::MEDIA_TYPE_AUDIO)
1180 type = kMediaTypeAudio;
1181 else if (media_type == cricket::MEDIA_TYPE_VIDEO)
1182 type = kMediaTypeVideo;
1183 else if (media_type == cricket::MEDIA_TYPE_DATA)
1184 type = kMediaTypeData;
1185 else
1186 ASSERT(false);
1187
1188 std::string fmt;
1189 if (media_type == cricket::MEDIA_TYPE_VIDEO) {
1190 const VideoContentDescription* video_desc =
1191 static_cast<const VideoContentDescription*>(media_desc);
1192 for (std::vector<cricket::VideoCodec>::const_iterator it =
1193 video_desc->codecs().begin();
1194 it != video_desc->codecs().end(); ++it) {
1195 fmt.append(" ");
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521196 fmt.append(rtc::ToString<int>(it->id));
henrike@webrtc.org28e20752013-07-10 00:45:361197 }
1198 } else if (media_type == cricket::MEDIA_TYPE_AUDIO) {
1199 const AudioContentDescription* audio_desc =
1200 static_cast<const AudioContentDescription*>(media_desc);
1201 for (std::vector<cricket::AudioCodec>::const_iterator it =
1202 audio_desc->codecs().begin();
1203 it != audio_desc->codecs().end(); ++it) {
1204 fmt.append(" ");
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521205 fmt.append(rtc::ToString<int>(it->id));
henrike@webrtc.org28e20752013-07-10 00:45:361206 }
1207 } else if (media_type == cricket::MEDIA_TYPE_DATA) {
jiayl@webrtc.org9c16c392014-05-01 18:30:301208 const DataContentDescription* data_desc =
1209 static_cast<const DataContentDescription*>(media_desc);
pthatcher@webrtc.org3341b402015-02-13 21:14:221210 if (IsDtlsSctp(media_desc->protocol())) {
henrike@webrtc.org28e20752013-07-10 00:45:361211 fmt.append(" ");
jiayl@webrtc.org9c16c392014-05-01 18:30:301212
1213 for (std::vector<cricket::DataCodec>::const_iterator it =
1214 data_desc->codecs().begin();
1215 it != data_desc->codecs().end(); ++it) {
1216 if (it->id == cricket::kGoogleSctpDataCodecId &&
1217 it->GetParam(cricket::kCodecParamPort, &sctp_port)) {
1218 break;
1219 }
1220 }
1221
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521222 fmt.append(rtc::ToString<int>(sctp_port));
henrike@webrtc.org28e20752013-07-10 00:45:361223 } else {
henrike@webrtc.org28e20752013-07-10 00:45:361224 for (std::vector<cricket::DataCodec>::const_iterator it =
1225 data_desc->codecs().begin();
1226 it != data_desc->codecs().end(); ++it) {
1227 fmt.append(" ");
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521228 fmt.append(rtc::ToString<int>(it->id));
henrike@webrtc.org28e20752013-07-10 00:45:361229 }
1230 }
1231 }
1232 // The fmt must never be empty. If no codecs are found, set the fmt attribute
1233 // to 0.
1234 if (fmt.empty()) {
1235 fmt = " 0";
1236 }
1237
1238 // The port number in the m line will be updated later when associate with
1239 // the candidates.
1240 // RFC 3264
1241 // To reject an offered stream, the port number in the corresponding stream in
1242 // the answer MUST be set to zero.
jbauch083b73f2015-07-16 09:46:321243 const std::string& port = content_info->rejected ?
pthatcher@webrtc.orgc9d6d142014-10-23 23:37:221244 kMediaPortRejected : kDummyPort;
henrike@webrtc.org28e20752013-07-10 00:45:361245
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521246 rtc::SSLFingerprint* fp = (transport_info) ?
henrike@webrtc.org28e20752013-07-10 00:45:361247 transport_info->description.identity_fingerprint.get() : NULL;
1248
wu@webrtc.org4c3e9912014-07-16 21:03:131249 // Add the m and c lines.
henrike@webrtc.org28e20752013-07-10 00:45:361250 InitLine(kLineTypeMedia, type, &os);
1251 os << " " << port << " " << media_desc->protocol() << fmt;
wu@webrtc.org4c3e9912014-07-16 21:03:131252 std::string mline = os.str();
1253 UpdateMediaDefaultDestination(candidates, mline, message);
1254
1255 // RFC 4566
1256 // b=AS:<bandwidth>
Peter Thatcherc0c3a862015-06-24 22:31:251257 if (media_desc->bandwidth() >= 1000) {
wu@webrtc.org4c3e9912014-07-16 21:03:131258 InitLine(kLineTypeSessionBandwidth, kApplicationSpecificMaximum, &os);
1259 os << kSdpDelimiterColon << (media_desc->bandwidth() / 1000);
1260 AddLine(os.str(), message);
1261 }
1262
1263 // Add the a=rtcp line.
pthatcher@webrtc.org3341b402015-02-13 21:14:221264 if (IsRtp(media_desc->protocol())) {
wu@webrtc.org4c3e9912014-07-16 21:03:131265 std::string rtcp_line = GetRtcpLine(candidates);
1266 if (!rtcp_line.empty()) {
1267 AddLine(rtcp_line, message);
1268 }
1269 }
1270
honghaiza54a0802015-12-17 02:37:231271 // Build the a=candidate lines. We don't include ufrag and pwd in the
1272 // candidates in the SDP to avoid redundancy.
1273 BuildCandidate(candidates, false, message);
henrike@webrtc.org28e20752013-07-10 00:45:361274
1275 // Use the transport_info to build the media level ice-ufrag and ice-pwd.
1276 if (transport_info) {
1277 // RFC 5245
1278 // ice-pwd-att = "ice-pwd" ":" password
1279 // ice-ufrag-att = "ice-ufrag" ":" ufrag
1280 // ice-ufrag
deadbeef3f7219b2015-12-28 23:17:141281 if (!transport_info->description.ice_ufrag.empty()) {
1282 InitAttrLine(kAttributeIceUfrag, &os);
1283 os << kSdpDelimiterColon << transport_info->description.ice_ufrag;
1284 AddLine(os.str(), message);
1285 }
henrike@webrtc.org28e20752013-07-10 00:45:361286 // ice-pwd
deadbeef3f7219b2015-12-28 23:17:141287 if (!transport_info->description.ice_pwd.empty()) {
1288 InitAttrLine(kAttributeIcePwd, &os);
1289 os << kSdpDelimiterColon << transport_info->description.ice_pwd;
1290 AddLine(os.str(), message);
1291 }
henrike@webrtc.org28e20752013-07-10 00:45:361292
1293 // draft-petithuguenin-mmusic-ice-attributes-level-03
1294 BuildIceOptions(transport_info->description.transport_options, message);
1295
1296 // RFC 4572
1297 // fingerprint-attribute =
1298 // "fingerprint" ":" hash-func SP fingerprint
1299 if (fp) {
1300 // Insert the fingerprint attribute.
1301 InitAttrLine(kAttributeFingerprint, &os);
1302 os << kSdpDelimiterColon
1303 << fp->algorithm << kSdpDelimiterSpace
1304 << fp->GetRfc4572Fingerprint();
henrike@webrtc.org28e20752013-07-10 00:45:361305 AddLine(os.str(), message);
sergeyu@chromium.org0be6aa02013-08-23 23:21:251306
1307 // Inserting setup attribute.
1308 if (transport_info->description.connection_role !=
1309 cricket::CONNECTIONROLE_NONE) {
1310 // Making sure we are not using "passive" mode.
1311 cricket::ConnectionRole role =
1312 transport_info->description.connection_role;
mallinath@webrtc.org19f27e62013-10-13 17:18:271313 std::string dtls_role_str;
1314 VERIFY(cricket::ConnectionRoleToString(role, &dtls_role_str));
sergeyu@chromium.org0be6aa02013-08-23 23:21:251315 InitAttrLine(kAttributeSetup, &os);
sergeyu@chromium.org0be6aa02013-08-23 23:21:251316 os << kSdpDelimiterColon << dtls_role_str;
1317 AddLine(os.str(), message);
1318 }
henrike@webrtc.org28e20752013-07-10 00:45:361319 }
1320 }
1321
1322 // RFC 3388
1323 // mid-attribute = "a=mid:" identification-tag
1324 // identification-tag = token
1325 // Use the content name as the mid identification-tag.
1326 InitAttrLine(kAttributeMid, &os);
1327 os << kSdpDelimiterColon << content_info->name;
1328 AddLine(os.str(), message);
1329
pthatcher@webrtc.org3341b402015-02-13 21:14:221330 if (IsDtlsSctp(media_desc->protocol())) {
jiayl@webrtc.org9c16c392014-05-01 18:30:301331 BuildSctpContentAttributes(message, sctp_port);
pthatcher@webrtc.org3341b402015-02-13 21:14:221332 } else if (IsRtp(media_desc->protocol())) {
henrike@webrtc.org28e20752013-07-10 00:45:361333 BuildRtpContentAttributes(media_desc, media_type, message);
1334 }
1335}
1336
jiayl@webrtc.org9c16c392014-05-01 18:30:301337void BuildSctpContentAttributes(std::string* message, int sctp_port) {
wu@webrtc.org78187522013-10-07 23:32:021338 // draft-ietf-mmusic-sctp-sdp-04
1339 // a=sctpmap:sctpmap-number protocol [streams]
lally69f57602015-10-08 17:15:041340 // TODO(lally): switch this over to mmusic-sctp-sdp-12 (or later), with
1341 // 'a=sctp-port:'
wu@webrtc.org78187522013-10-07 23:32:021342 std::ostringstream os;
1343 InitAttrLine(kAttributeSctpmap, &os);
jiayl@webrtc.org9c16c392014-05-01 18:30:301344 os << kSdpDelimiterColon << sctp_port << kSdpDelimiterSpace
wu@webrtc.org78187522013-10-07 23:32:021345 << kDefaultSctpmapProtocol << kSdpDelimiterSpace
1346 << (cricket::kMaxSctpSid + 1);
1347 AddLine(os.str(), message);
henrike@webrtc.org28e20752013-07-10 00:45:361348}
1349
1350void BuildRtpContentAttributes(
1351 const MediaContentDescription* media_desc,
1352 const MediaType media_type,
1353 std::string* message) {
1354 std::ostringstream os;
1355 // RFC 5285
1356 // a=extmap:<value>["/"<direction>] <URI> <extensionattributes>
1357 // The definitions MUST be either all session level or all media level. This
1358 // implementation uses all media level.
1359 for (size_t i = 0; i < media_desc->rtp_header_extensions().size(); ++i) {
1360 InitAttrLine(kAttributeExtmap, &os);
1361 os << kSdpDelimiterColon << media_desc->rtp_header_extensions()[i].id
1362 << kSdpDelimiterSpace << media_desc->rtp_header_extensions()[i].uri;
1363 AddLine(os.str(), message);
1364 }
1365
1366 // RFC 3264
1367 // a=sendrecv || a=sendonly || a=sendrecv || a=inactive
deadbeefc80741f2015-10-22 20:14:451368 switch (media_desc->direction()) {
henrike@webrtc.org28e20752013-07-10 00:45:361369 case cricket::MD_INACTIVE:
1370 InitAttrLine(kAttributeInactive, &os);
1371 break;
1372 case cricket::MD_SENDONLY:
1373 InitAttrLine(kAttributeSendOnly, &os);
1374 break;
1375 case cricket::MD_RECVONLY:
1376 InitAttrLine(kAttributeRecvOnly, &os);
1377 break;
1378 case cricket::MD_SENDRECV:
1379 default:
1380 InitAttrLine(kAttributeSendRecv, &os);
1381 break;
1382 }
1383 AddLine(os.str(), message);
1384
henrike@webrtc.org28e20752013-07-10 00:45:361385 // RFC 5761
1386 // a=rtcp-mux
1387 if (media_desc->rtcp_mux()) {
1388 InitAttrLine(kAttributeRtcpMux, &os);
1389 AddLine(os.str(), message);
1390 }
1391
deadbeef13871492015-12-09 20:37:511392 // RFC 5506
1393 // a=rtcp-rsize
1394 if (media_desc->rtcp_reduced_size()) {
1395 InitAttrLine(kAttributeRtcpReducedSize, &os);
1396 AddLine(os.str(), message);
1397 }
1398
henrike@webrtc.org28e20752013-07-10 00:45:361399 // RFC 4568
1400 // a=crypto:<tag> <crypto-suite> <key-params> [<session-params>]
1401 for (std::vector<CryptoParams>::const_iterator it =
1402 media_desc->cryptos().begin();
1403 it != media_desc->cryptos().end(); ++it) {
1404 InitAttrLine(kAttributeCrypto, &os);
1405 os << kSdpDelimiterColon << it->tag << " " << it->cipher_suite << " "
1406 << it->key_params;
1407 if (!it->session_params.empty()) {
1408 os << " " << it->session_params;
1409 }
1410 AddLine(os.str(), message);
1411 }
1412
1413 // RFC 4566
1414 // a=rtpmap:<payload type> <encoding name>/<clock rate>
1415 // [/<encodingparameters>]
1416 BuildRtpMap(media_desc, media_type, message);
1417
henrike@webrtc.org28e20752013-07-10 00:45:361418 for (StreamParamsVec::const_iterator track = media_desc->streams().begin();
1419 track != media_desc->streams().end(); ++track) {
1420 // Require that the track belongs to a media stream,
1421 // ie the sync_label is set. This extra check is necessary since the
1422 // MediaContentDescription always contains a streamparam with an ssrc even
1423 // if no track or media stream have been created.
1424 if (track->sync_label.empty()) continue;
1425
1426 // Build the ssrc-group lines.
1427 for (size_t i = 0; i < track->ssrc_groups.size(); ++i) {
1428 // RFC 5576
1429 // a=ssrc-group:<semantics> <ssrc-id> ...
1430 if (track->ssrc_groups[i].ssrcs.empty()) {
1431 continue;
1432 }
1433 std::ostringstream os;
1434 InitAttrLine(kAttributeSsrcGroup, &os);
1435 os << kSdpDelimiterColon << track->ssrc_groups[i].semantics;
Peter Boström0c4e06b2015-10-07 10:23:211436 std::vector<uint32_t>::const_iterator ssrc =
henrike@webrtc.org28e20752013-07-10 00:45:361437 track->ssrc_groups[i].ssrcs.begin();
1438 for (; ssrc != track->ssrc_groups[i].ssrcs.end(); ++ssrc) {
Peter Boström0c4e06b2015-10-07 10:23:211439 os << kSdpDelimiterSpace << rtc::ToString<uint32_t>(*ssrc);
henrike@webrtc.org28e20752013-07-10 00:45:361440 }
1441 AddLine(os.str(), message);
1442 }
1443 // Build the ssrc lines for each ssrc.
1444 for (size_t i = 0; i < track->ssrcs.size(); ++i) {
Peter Boström0c4e06b2015-10-07 10:23:211445 uint32_t ssrc = track->ssrcs[i];
henrike@webrtc.org28e20752013-07-10 00:45:361446 // RFC 5576
1447 // a=ssrc:<ssrc-id> cname:<value>
1448 AddSsrcLine(ssrc, kSsrcAttributeCname,
1449 track->cname, message);
1450
1451 // draft-alvestrand-mmusic-msid-00
1452 // a=ssrc:<ssrc-id> msid:identifier [appdata]
1453 // The appdata consists of the "id" attribute of a MediaStreamTrack, which
1454 // is corresponding to the "name" attribute of StreamParams.
1455 std::string appdata = track->id;
1456 std::ostringstream os;
1457 InitAttrLine(kAttributeSsrc, &os);
1458 os << kSdpDelimiterColon << ssrc << kSdpDelimiterSpace
1459 << kSsrcAttributeMsid << kSdpDelimiterColon << track->sync_label
1460 << kSdpDelimiterSpace << appdata;
1461 AddLine(os.str(), message);
1462
1463 // TODO(ronghuawu): Remove below code which is for backward compatibility.
1464 // draft-alvestrand-rtcweb-mid-01
1465 // a=ssrc:<ssrc-id> mslabel:<value>
1466 // The label isn't yet defined.
1467 // a=ssrc:<ssrc-id> label:<value>
1468 AddSsrcLine(ssrc, kSsrcAttributeMslabel, track->sync_label, message);
1469 AddSsrcLine(ssrc, kSSrcAttributeLabel, track->id, message);
1470 }
1471 }
1472}
1473
1474void WriteFmtpHeader(int payload_type, std::ostringstream* os) {
1475 // fmtp header: a=fmtp:|payload_type| <parameters>
1476 // Add a=fmtp
1477 InitAttrLine(kAttributeFmtp, os);
1478 // Add :|payload_type|
1479 *os << kSdpDelimiterColon << payload_type;
1480}
1481
1482void WriteRtcpFbHeader(int payload_type, std::ostringstream* os) {
1483 // rtcp-fb header: a=rtcp-fb:|payload_type|
1484 // <parameters>/<ccm <ccm_parameters>>
1485 // Add a=rtcp-fb
1486 InitAttrLine(kAttributeRtcpFb, os);
1487 // Add :
1488 *os << kSdpDelimiterColon;
1489 if (payload_type == kWildcardPayloadType) {
1490 *os << "*";
1491 } else {
1492 *os << payload_type;
1493 }
1494}
1495
1496void WriteFmtpParameter(const std::string& parameter_name,
1497 const std::string& parameter_value,
1498 std::ostringstream* os) {
1499 // fmtp parameters: |parameter_name|=|parameter_value|
1500 *os << parameter_name << kSdpDelimiterEqual << parameter_value;
1501}
1502
1503void WriteFmtpParameters(const cricket::CodecParameterMap& parameters,
1504 std::ostringstream* os) {
1505 for (cricket::CodecParameterMap::const_iterator fmtp = parameters.begin();
1506 fmtp != parameters.end(); ++fmtp) {
1507 // Each new parameter, except the first one starts with ";" and " ".
1508 if (fmtp != parameters.begin()) {
1509 *os << kSdpDelimiterSemicolon;
1510 }
1511 *os << kSdpDelimiterSpace;
1512 WriteFmtpParameter(fmtp->first, fmtp->second, os);
1513 }
1514}
1515
1516bool IsFmtpParam(const std::string& name) {
1517 const char* kFmtpParams[] = {
1518 kCodecParamMinPTime, kCodecParamSPropStereo,
Minyue Li7100dcd2015-03-27 04:05:591519 kCodecParamStereo, kCodecParamUseInbandFec, kCodecParamUseDtx,
1520 kCodecParamStartBitrate, kCodecParamMaxBitrate, kCodecParamMinBitrate,
1521 kCodecParamMaxQuantization, kCodecParamSctpProtocol, kCodecParamSctpStreams,
buildbot@webrtc.org5d639b32014-09-10 07:57:121522 kCodecParamMaxAverageBitrate, kCodecParamMaxPlaybackRate,
1523 kCodecParamAssociatedPayloadType
henrike@webrtc.org28e20752013-07-10 00:45:361524 };
tfarina5237aaf2015-11-11 07:44:301525 for (size_t i = 0; i < arraysize(kFmtpParams); ++i) {
henrike@webrtc.org28e20752013-07-10 00:45:361526 if (_stricmp(name.c_str(), kFmtpParams[i]) == 0) {
1527 return true;
1528 }
1529 }
1530 return false;
1531}
1532
1533// Retreives fmtp parameters from |params|, which may contain other parameters
1534// as well, and puts them in |fmtp_parameters|.
1535void GetFmtpParams(const cricket::CodecParameterMap& params,
1536 cricket::CodecParameterMap* fmtp_parameters) {
1537 for (cricket::CodecParameterMap::const_iterator iter = params.begin();
1538 iter != params.end(); ++iter) {
1539 if (IsFmtpParam(iter->first)) {
1540 (*fmtp_parameters)[iter->first] = iter->second;
1541 }
1542 }
1543}
1544
1545template <class T>
1546void AddFmtpLine(const T& codec, std::string* message) {
1547 cricket::CodecParameterMap fmtp_parameters;
1548 GetFmtpParams(codec.params, &fmtp_parameters);
1549 if (fmtp_parameters.empty()) {
1550 // No need to add an fmtp if it will have no (optional) parameters.
1551 return;
1552 }
1553 std::ostringstream os;
1554 WriteFmtpHeader(codec.id, &os);
1555 WriteFmtpParameters(fmtp_parameters, &os);
1556 AddLine(os.str(), message);
1557 return;
1558}
1559
1560template <class T>
1561void AddRtcpFbLines(const T& codec, std::string* message) {
1562 for (std::vector<cricket::FeedbackParam>::const_iterator iter =
1563 codec.feedback_params.params().begin();
1564 iter != codec.feedback_params.params().end(); ++iter) {
1565 std::ostringstream os;
1566 WriteRtcpFbHeader(codec.id, &os);
1567 os << " " << iter->id();
1568 if (!iter->param().empty()) {
1569 os << " " << iter->param();
1570 }
1571 AddLine(os.str(), message);
1572 }
1573}
1574
jiayl@webrtc.orgddb85ab2014-09-05 16:31:561575bool AddSctpDataCodec(DataContentDescription* media_desc,
1576 int sctp_port) {
1577 if (media_desc->HasCodec(cricket::kGoogleSctpDataCodecId)) {
1578 return ParseFailed("",
1579 "Can't have multiple sctp port attributes.",
1580 NULL);
1581 }
1582 // Add the SCTP Port number as a pseudo-codec "port" parameter
1583 cricket::DataCodec codec_port(
1584 cricket::kGoogleSctpDataCodecId, cricket::kGoogleSctpDataCodecName,
1585 0);
1586 codec_port.SetParam(cricket::kCodecParamPort, sctp_port);
1587 LOG(INFO) << "AddSctpDataCodec: Got SCTP Port Number "
1588 << sctp_port;
1589 media_desc->AddCodec(codec_port);
1590 return true;
1591}
1592
henrike@webrtc.org28e20752013-07-10 00:45:361593bool GetMinValue(const std::vector<int>& values, int* value) {
1594 if (values.empty()) {
1595 return false;
1596 }
1597 std::vector<int>::const_iterator found =
1598 std::min_element(values.begin(), values.end());
1599 *value = *found;
1600 return true;
1601}
1602
1603bool GetParameter(const std::string& name,
1604 const cricket::CodecParameterMap& params, int* value) {
1605 std::map<std::string, std::string>::const_iterator found =
1606 params.find(name);
1607 if (found == params.end()) {
1608 return false;
1609 }
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521610 if (!rtc::FromString(found->second, value)) {
wu@webrtc.org5e760e72014-04-02 23:19:091611 return false;
1612 }
henrike@webrtc.org28e20752013-07-10 00:45:361613 return true;
1614}
1615
1616void BuildRtpMap(const MediaContentDescription* media_desc,
1617 const MediaType media_type,
1618 std::string* message) {
1619 ASSERT(message != NULL);
1620 ASSERT(media_desc != NULL);
1621 std::ostringstream os;
1622 if (media_type == cricket::MEDIA_TYPE_VIDEO) {
1623 const VideoContentDescription* video_desc =
1624 static_cast<const VideoContentDescription*>(media_desc);
1625 for (std::vector<cricket::VideoCodec>::const_iterator it =
1626 video_desc->codecs().begin();
1627 it != video_desc->codecs().end(); ++it) {
1628 // RFC 4566
1629 // a=rtpmap:<payload type> <encoding name>/<clock rate>
1630 // [/<encodingparameters>]
1631 if (it->id != kWildcardPayloadType) {
1632 InitAttrLine(kAttributeRtpmap, &os);
1633 os << kSdpDelimiterColon << it->id << " " << it->name
1634 << "/" << kDefaultVideoClockrate;
1635 AddLine(os.str(), message);
1636 }
1637 AddRtcpFbLines(*it, message);
1638 AddFmtpLine(*it, message);
1639 }
1640 } else if (media_type == cricket::MEDIA_TYPE_AUDIO) {
1641 const AudioContentDescription* audio_desc =
1642 static_cast<const AudioContentDescription*>(media_desc);
1643 std::vector<int> ptimes;
1644 std::vector<int> maxptimes;
1645 int max_minptime = 0;
1646 for (std::vector<cricket::AudioCodec>::const_iterator it =
1647 audio_desc->codecs().begin();
1648 it != audio_desc->codecs().end(); ++it) {
1649 ASSERT(!it->name.empty());
1650 // RFC 4566
1651 // a=rtpmap:<payload type> <encoding name>/<clock rate>
1652 // [/<encodingparameters>]
1653 InitAttrLine(kAttributeRtpmap, &os);
1654 os << kSdpDelimiterColon << it->id << " ";
1655 os << it->name << "/" << it->clockrate;
1656 if (it->channels != 1) {
1657 os << "/" << it->channels;
1658 }
1659 AddLine(os.str(), message);
1660 AddRtcpFbLines(*it, message);
1661 AddFmtpLine(*it, message);
1662 int minptime = 0;
1663 if (GetParameter(kCodecParamMinPTime, it->params, &minptime)) {
1664 max_minptime = std::max(minptime, max_minptime);
1665 }
1666 int ptime;
1667 if (GetParameter(kCodecParamPTime, it->params, &ptime)) {
1668 ptimes.push_back(ptime);
1669 }
1670 int maxptime;
1671 if (GetParameter(kCodecParamMaxPTime, it->params, &maxptime)) {
1672 maxptimes.push_back(maxptime);
1673 }
1674 }
1675 // Populate the maxptime attribute with the smallest maxptime of all codecs
1676 // under the same m-line.
1677 int min_maxptime = INT_MAX;
1678 if (GetMinValue(maxptimes, &min_maxptime)) {
1679 AddAttributeLine(kCodecParamMaxPTime, min_maxptime, message);
1680 }
1681 ASSERT(min_maxptime > max_minptime);
1682 // Populate the ptime attribute with the smallest ptime or the largest
1683 // minptime, whichever is the largest, for all codecs under the same m-line.
1684 int ptime = INT_MAX;
1685 if (GetMinValue(ptimes, &ptime)) {
1686 ptime = std::min(ptime, min_maxptime);
1687 ptime = std::max(ptime, max_minptime);
1688 AddAttributeLine(kCodecParamPTime, ptime, message);
1689 }
1690 } else if (media_type == cricket::MEDIA_TYPE_DATA) {
1691 const DataContentDescription* data_desc =
1692 static_cast<const DataContentDescription*>(media_desc);
1693 for (std::vector<cricket::DataCodec>::const_iterator it =
1694 data_desc->codecs().begin();
1695 it != data_desc->codecs().end(); ++it) {
1696 // RFC 4566
1697 // a=rtpmap:<payload type> <encoding name>/<clock rate>
1698 // [/<encodingparameters>]
1699 InitAttrLine(kAttributeRtpmap, &os);
1700 os << kSdpDelimiterColon << it->id << " "
1701 << it->name << "/" << it->clockrate;
1702 AddLine(os.str(), message);
1703 }
1704 }
1705}
1706
1707void BuildCandidate(const std::vector<Candidate>& candidates,
honghaiza54a0802015-12-17 02:37:231708 bool include_ufrag,
henrike@webrtc.org28e20752013-07-10 00:45:361709 std::string* message) {
1710 std::ostringstream os;
1711
1712 for (std::vector<Candidate>::const_iterator it = candidates.begin();
1713 it != candidates.end(); ++it) {
1714 // RFC 5245
1715 // a=candidate:<foundation> <component-id> <transport> <priority>
1716 // <connection-address> <port> typ <candidate-types>
1717 // [raddr <connection-address>] [rport <port>]
1718 // *(SP extension-att-name SP extension-att-value)
1719 std::string type;
1720 // Map the cricket candidate type to "host" / "srflx" / "prflx" / "relay"
1721 if (it->type() == cricket::LOCAL_PORT_TYPE) {
1722 type = kCandidateHost;
1723 } else if (it->type() == cricket::STUN_PORT_TYPE) {
1724 type = kCandidateSrflx;
1725 } else if (it->type() == cricket::RELAY_PORT_TYPE) {
1726 type = kCandidateRelay;
1727 } else {
1728 ASSERT(false);
Peter Thatcher019087f2015-04-28 16:06:261729 // Never write out candidates if we don't know the type.
1730 continue;
henrike@webrtc.org28e20752013-07-10 00:45:361731 }
1732
1733 InitAttrLine(kAttributeCandidate, &os);
1734 os << kSdpDelimiterColon
mallinath@webrtc.org2d60c5e2014-08-08 22:29:201735 << it->foundation() << " "
1736 << it->component() << " "
1737 << it->protocol() << " "
1738 << it->priority() << " "
henrike@webrtc.org28e20752013-07-10 00:45:361739 << it->address().ipaddr().ToString() << " "
1740 << it->address().PortAsString() << " "
mallinath@webrtc.org2d60c5e2014-08-08 22:29:201741 << kAttributeCandidateTyp << " "
1742 << type << " ";
henrike@webrtc.org28e20752013-07-10 00:45:361743
1744 // Related address
1745 if (!it->related_address().IsNil()) {
1746 os << kAttributeCandidateRaddr << " "
1747 << it->related_address().ipaddr().ToString() << " "
1748 << kAttributeCandidateRport << " "
1749 << it->related_address().PortAsString() << " ";
1750 }
1751
mallinath@webrtc.org2d60c5e2014-08-08 22:29:201752 if (it->protocol() == cricket::TCP_PROTOCOL_NAME) {
mallinath@webrtc.orge999bd02014-08-13 06:05:551753 os << kTcpCandidateType << " " << it->tcptype() << " ";
mallinath@webrtc.org2d60c5e2014-08-08 22:29:201754 }
1755
henrike@webrtc.org28e20752013-07-10 00:45:361756 // Extensions
1757 os << kAttributeCandidateGeneration << " " << it->generation();
honghaiza54a0802015-12-17 02:37:231758 if (include_ufrag && !it->username().empty()) {
1759 os << " " << kAttributeCandidateUfrag << " " << it->username();
1760 }
henrike@webrtc.org28e20752013-07-10 00:45:361761
1762 AddLine(os.str(), message);
1763 }
1764}
1765
1766void BuildIceOptions(const std::vector<std::string>& transport_options,
1767 std::string* message) {
1768 if (!transport_options.empty()) {
1769 std::ostringstream os;
1770 InitAttrLine(kAttributeIceOption, &os);
1771 os << kSdpDelimiterColon << transport_options[0];
1772 for (size_t i = 1; i < transport_options.size(); ++i) {
1773 os << kSdpDelimiterSpace << transport_options[i];
1774 }
1775 AddLine(os.str(), message);
1776 }
1777}
1778
pthatcher@webrtc.org3341b402015-02-13 21:14:221779bool IsRtp(const std::string& protocol) {
1780 return protocol.empty() ||
1781 (protocol.find(cricket::kMediaProtocolRtpPrefix) != std::string::npos);
1782}
1783
1784bool IsDtlsSctp(const std::string& protocol) {
1785 // This intentionally excludes "SCTP" and "SCTP/DTLS".
lally@webrtc.orga7470932015-02-24 20:19:211786 return protocol.find(cricket::kMediaProtocolDtlsSctp) != std::string::npos;
pthatcher@webrtc.org3341b402015-02-13 21:14:221787}
1788
henrike@webrtc.org28e20752013-07-10 00:45:361789bool ParseSessionDescription(const std::string& message, size_t* pos,
1790 std::string* session_id,
1791 std::string* session_version,
henrike@webrtc.org28e20752013-07-10 00:45:361792 TransportDescription* session_td,
1793 RtpHeaderExtensions* session_extmaps,
1794 cricket::SessionDescription* desc,
1795 SdpParseError* error) {
1796 std::string line;
1797
deadbeefc80741f2015-10-22 20:14:451798 desc->set_msid_supported(false);
1799
henrike@webrtc.org28e20752013-07-10 00:45:361800 // RFC 4566
1801 // v= (protocol version)
1802 if (!GetLineWithType(message, pos, &line, kLineTypeVersion)) {
1803 return ParseFailedExpectLine(message, *pos, kLineTypeVersion,
1804 std::string(), error);
1805 }
1806 // RFC 4566
1807 // o=<username> <sess-id> <sess-version> <nettype> <addrtype>
1808 // <unicast-address>
1809 if (!GetLineWithType(message, pos, &line, kLineTypeOrigin)) {
1810 return ParseFailedExpectLine(message, *pos, kLineTypeOrigin,
1811 std::string(), error);
1812 }
1813 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521814 rtc::split(line.substr(kLinePrefixLength),
henrike@webrtc.org28e20752013-07-10 00:45:361815 kSdpDelimiterSpace, &fields);
1816 const size_t expected_fields = 6;
1817 if (fields.size() != expected_fields) {
1818 return ParseFailedExpectFieldNum(line, expected_fields, error);
1819 }
1820 *session_id = fields[1];
1821 *session_version = fields[2];
1822
1823 // RFC 4566
1824 // s= (session name)
1825 if (!GetLineWithType(message, pos, &line, kLineTypeSessionName)) {
1826 return ParseFailedExpectLine(message, *pos, kLineTypeSessionName,
1827 std::string(), error);
1828 }
1829
1830 // Optional lines
1831 // Those are the optional lines, so shouldn't return false if not present.
1832 // RFC 4566
1833 // i=* (session information)
1834 GetLineWithType(message, pos, &line, kLineTypeSessionInfo);
1835
1836 // RFC 4566
1837 // u=* (URI of description)
1838 GetLineWithType(message, pos, &line, kLineTypeSessionUri);
1839
1840 // RFC 4566
1841 // e=* (email address)
1842 GetLineWithType(message, pos, &line, kLineTypeSessionEmail);
1843
1844 // RFC 4566
1845 // p=* (phone number)
1846 GetLineWithType(message, pos, &line, kLineTypeSessionPhone);
1847
1848 // RFC 4566
1849 // c=* (connection information -- not required if included in
1850 // all media)
1851 GetLineWithType(message, pos, &line, kLineTypeConnection);
1852
1853 // RFC 4566
1854 // b=* (zero or more bandwidth information lines)
1855 while (GetLineWithType(message, pos, &line, kLineTypeSessionBandwidth)) {
1856 // By pass zero or more b lines.
1857 }
1858
1859 // RFC 4566
1860 // One or more time descriptions ("t=" and "r=" lines; see below)
1861 // t= (time the session is active)
1862 // r=* (zero or more repeat times)
1863 // Ensure there's at least one time description
1864 if (!GetLineWithType(message, pos, &line, kLineTypeTiming)) {
1865 return ParseFailedExpectLine(message, *pos, kLineTypeTiming, std::string(),
1866 error);
1867 }
1868
1869 while (GetLineWithType(message, pos, &line, kLineTypeRepeatTimes)) {
1870 // By pass zero or more r lines.
1871 }
1872
1873 // Go through the rest of the time descriptions
1874 while (GetLineWithType(message, pos, &line, kLineTypeTiming)) {
1875 while (GetLineWithType(message, pos, &line, kLineTypeRepeatTimes)) {
1876 // By pass zero or more r lines.
1877 }
1878 }
1879
1880 // RFC 4566
1881 // z=* (time zone adjustments)
1882 GetLineWithType(message, pos, &line, kLineTypeTimeZone);
1883
1884 // RFC 4566
1885 // k=* (encryption key)
1886 GetLineWithType(message, pos, &line, kLineTypeEncryptionKey);
1887
1888 // RFC 4566
1889 // a=* (zero or more session attribute lines)
1890 while (GetLineWithType(message, pos, &line, kLineTypeAttributes)) {
1891 if (HasAttribute(line, kAttributeGroup)) {
1892 if (!ParseGroupAttribute(line, desc, error)) {
1893 return false;
1894 }
1895 } else if (HasAttribute(line, kAttributeIceUfrag)) {
1896 if (!GetValue(line, kAttributeIceUfrag,
1897 &(session_td->ice_ufrag), error)) {
1898 return false;
1899 }
1900 } else if (HasAttribute(line, kAttributeIcePwd)) {
1901 if (!GetValue(line, kAttributeIcePwd, &(session_td->ice_pwd), error)) {
1902 return false;
1903 }
1904 } else if (HasAttribute(line, kAttributeIceLite)) {
1905 session_td->ice_mode = cricket::ICEMODE_LITE;
1906 } else if (HasAttribute(line, kAttributeIceOption)) {
1907 if (!ParseIceOptions(line, &(session_td->transport_options), error)) {
1908 return false;
1909 }
1910 } else if (HasAttribute(line, kAttributeFingerprint)) {
1911 if (session_td->identity_fingerprint.get()) {
1912 return ParseFailed(
1913 line,
1914 "Can't have multiple fingerprint attributes at the same level.",
1915 error);
1916 }
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521917 rtc::SSLFingerprint* fingerprint = NULL;
henrike@webrtc.org28e20752013-07-10 00:45:361918 if (!ParseFingerprintAttribute(line, &fingerprint, error)) {
1919 return false;
1920 }
1921 session_td->identity_fingerprint.reset(fingerprint);
sergeyu@chromium.org0be6aa02013-08-23 23:21:251922 } else if (HasAttribute(line, kAttributeSetup)) {
1923 if (!ParseDtlsSetup(line, &(session_td->connection_role), error)) {
1924 return false;
1925 }
henrike@webrtc.org28e20752013-07-10 00:45:361926 } else if (HasAttribute(line, kAttributeMsidSemantics)) {
1927 std::string semantics;
1928 if (!GetValue(line, kAttributeMsidSemantics, &semantics, error)) {
1929 return false;
1930 }
deadbeefc80741f2015-10-22 20:14:451931 desc->set_msid_supported(
1932 CaseInsensitiveFind(semantics, kMediaStreamSemantic));
henrike@webrtc.org28e20752013-07-10 00:45:361933 } else if (HasAttribute(line, kAttributeExtmap)) {
1934 RtpHeaderExtension extmap;
1935 if (!ParseExtmap(line, &extmap, error)) {
1936 return false;
1937 }
1938 session_extmaps->push_back(extmap);
1939 }
1940 }
1941
1942 return true;
1943}
1944
1945bool ParseGroupAttribute(const std::string& line,
1946 cricket::SessionDescription* desc,
1947 SdpParseError* error) {
1948 ASSERT(desc != NULL);
1949
1950 // RFC 5888 and draft-holmberg-mmusic-sdp-bundle-negotiation-00
1951 // a=group:BUNDLE video voice
1952 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521953 rtc::split(line.substr(kLinePrefixLength),
henrike@webrtc.org28e20752013-07-10 00:45:361954 kSdpDelimiterSpace, &fields);
1955 std::string semantics;
1956 if (!GetValue(fields[0], kAttributeGroup, &semantics, error)) {
1957 return false;
1958 }
1959 cricket::ContentGroup group(semantics);
1960 for (size_t i = 1; i < fields.size(); ++i) {
1961 group.AddContentName(fields[i]);
1962 }
1963 desc->AddGroup(group);
1964 return true;
1965}
1966
1967static bool ParseFingerprintAttribute(const std::string& line,
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521968 rtc::SSLFingerprint** fingerprint,
henrike@webrtc.org28e20752013-07-10 00:45:361969 SdpParseError* error) {
1970 if (!IsLineType(line, kLineTypeAttributes) ||
1971 !HasAttribute(line, kAttributeFingerprint)) {
1972 return ParseFailedExpectLine(line, 0, kLineTypeAttributes,
1973 kAttributeFingerprint, error);
1974 }
1975
1976 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521977 rtc::split(line.substr(kLinePrefixLength),
henrike@webrtc.org28e20752013-07-10 00:45:361978 kSdpDelimiterSpace, &fields);
1979 const size_t expected_fields = 2;
1980 if (fields.size() != expected_fields) {
1981 return ParseFailedExpectFieldNum(line, expected_fields, error);
1982 }
1983
1984 // The first field here is "fingerprint:<hash>.
1985 std::string algorithm;
1986 if (!GetValue(fields[0], kAttributeFingerprint, &algorithm, error)) {
1987 return false;
1988 }
1989
1990 // Downcase the algorithm. Note that we don't need to downcase the
1991 // fingerprint because hex_decode can handle upper-case.
1992 std::transform(algorithm.begin(), algorithm.end(), algorithm.begin(),
1993 ::tolower);
1994
1995 // The second field is the digest value. De-hexify it.
buildbot@webrtc.orgd4e598d2014-07-29 17:36:521996 *fingerprint = rtc::SSLFingerprint::CreateFromRfc4572(
henrike@webrtc.org28e20752013-07-10 00:45:361997 algorithm, fields[1]);
1998 if (!*fingerprint) {
1999 return ParseFailed(line,
2000 "Failed to create fingerprint from the digest.",
2001 error);
2002 }
2003
2004 return true;
2005}
2006
sergeyu@chromium.org0be6aa02013-08-23 23:21:252007static bool ParseDtlsSetup(const std::string& line,
2008 cricket::ConnectionRole* role,
2009 SdpParseError* error) {
2010 // setup-attr = "a=setup:" role
2011 // role = "active" / "passive" / "actpass" / "holdconn"
2012 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:522013 rtc::split(line.substr(kLinePrefixLength), kSdpDelimiterColon, &fields);
sergeyu@chromium.org0be6aa02013-08-23 23:21:252014 const size_t expected_fields = 2;
2015 if (fields.size() != expected_fields) {
2016 return ParseFailedExpectFieldNum(line, expected_fields, error);
2017 }
2018 std::string role_str = fields[1];
2019 if (!cricket::StringToConnectionRole(role_str, role)) {
2020 return ParseFailed(line, "Invalid attribute value.", error);
2021 }
2022 return true;
2023}
2024
henrike@webrtc.org28e20752013-07-10 00:45:362025// RFC 3551
2026// PT encoding media type clock rate channels
2027// name (Hz)
2028// 0 PCMU A 8,000 1
2029// 1 reserved A
2030// 2 reserved A
2031// 3 GSM A 8,000 1
2032// 4 G723 A 8,000 1
2033// 5 DVI4 A 8,000 1
2034// 6 DVI4 A 16,000 1
2035// 7 LPC A 8,000 1
2036// 8 PCMA A 8,000 1
2037// 9 G722 A 8,000 1
2038// 10 L16 A 44,100 2
2039// 11 L16 A 44,100 1
2040// 12 QCELP A 8,000 1
2041// 13 CN A 8,000 1
2042// 14 MPA A 90,000 (see text)
2043// 15 G728 A 8,000 1
2044// 16 DVI4 A 11,025 1
2045// 17 DVI4 A 22,050 1
2046// 18 G729 A 8,000 1
2047struct StaticPayloadAudioCodec {
2048 const char* name;
2049 int clockrate;
Peter Kasting69558702016-01-13 00:26:352050 size_t channels;
henrike@webrtc.org28e20752013-07-10 00:45:362051};
2052static const StaticPayloadAudioCodec kStaticPayloadAudioCodecs[] = {
2053 { "PCMU", 8000, 1 },
2054 { "reserved", 0, 0 },
2055 { "reserved", 0, 0 },
2056 { "GSM", 8000, 1 },
2057 { "G723", 8000, 1 },
2058 { "DVI4", 8000, 1 },
2059 { "DVI4", 16000, 1 },
2060 { "LPC", 8000, 1 },
2061 { "PCMA", 8000, 1 },
2062 { "G722", 8000, 1 },
2063 { "L16", 44100, 2 },
2064 { "L16", 44100, 1 },
2065 { "QCELP", 8000, 1 },
2066 { "CN", 8000, 1 },
2067 { "MPA", 90000, 1 },
2068 { "G728", 8000, 1 },
2069 { "DVI4", 11025, 1 },
2070 { "DVI4", 22050, 1 },
2071 { "G729", 8000, 1 },
2072};
2073
2074void MaybeCreateStaticPayloadAudioCodecs(
2075 const std::vector<int>& fmts, AudioContentDescription* media_desc) {
2076 if (!media_desc) {
2077 return;
2078 }
henrike@webrtc.org28654cb2013-07-22 21:07:492079 int preference = static_cast<int>(fmts.size());
henrike@webrtc.org28e20752013-07-10 00:45:362080 std::vector<int>::const_iterator it = fmts.begin();
2081 bool add_new_codec = false;
2082 for (; it != fmts.end(); ++it) {
2083 int payload_type = *it;
2084 if (!media_desc->HasCodec(payload_type) &&
2085 payload_type >= 0 &&
tfarina5237aaf2015-11-11 07:44:302086 payload_type < arraysize(kStaticPayloadAudioCodecs)) {
henrike@webrtc.org28e20752013-07-10 00:45:362087 std::string encoding_name = kStaticPayloadAudioCodecs[payload_type].name;
2088 int clock_rate = kStaticPayloadAudioCodecs[payload_type].clockrate;
Peter Kasting69558702016-01-13 00:26:352089 size_t channels = kStaticPayloadAudioCodecs[payload_type].channels;
henrike@webrtc.org28e20752013-07-10 00:45:362090 media_desc->AddCodec(cricket::AudioCodec(payload_type, encoding_name,
2091 clock_rate, 0, channels,
2092 preference));
2093 add_new_codec = true;
2094 }
2095 --preference;
2096 }
2097 if (add_new_codec) {
2098 media_desc->SortCodecs();
2099 }
2100}
2101
2102template <class C>
2103static C* ParseContentDescription(const std::string& message,
2104 const MediaType media_type,
2105 int mline_index,
2106 const std::string& protocol,
2107 const std::vector<int>& codec_preference,
2108 size_t* pos,
2109 std::string* content_name,
2110 TransportDescription* transport,
2111 std::vector<JsepIceCandidate*>* candidates,
2112 webrtc::SdpParseError* error) {
2113 C* media_desc = new C();
2114 switch (media_type) {
2115 case cricket::MEDIA_TYPE_AUDIO:
2116 *content_name = cricket::CN_AUDIO;
2117 break;
2118 case cricket::MEDIA_TYPE_VIDEO:
2119 *content_name = cricket::CN_VIDEO;
2120 break;
2121 case cricket::MEDIA_TYPE_DATA:
2122 *content_name = cricket::CN_DATA;
2123 break;
2124 default:
2125 ASSERT(false);
2126 break;
2127 }
2128 if (!ParseContent(message, media_type, mline_index, protocol,
2129 codec_preference, pos, content_name,
2130 media_desc, transport, candidates, error)) {
2131 delete media_desc;
2132 return NULL;
2133 }
2134 // Sort the codecs according to the m-line fmt list.
2135 media_desc->SortCodecs();
2136 return media_desc;
2137}
2138
2139bool ParseMediaDescription(const std::string& message,
2140 const TransportDescription& session_td,
2141 const RtpHeaderExtensions& session_extmaps,
henrike@webrtc.org28e20752013-07-10 00:45:362142 size_t* pos,
2143 cricket::SessionDescription* desc,
2144 std::vector<JsepIceCandidate*>* candidates,
2145 SdpParseError* error) {
2146 ASSERT(desc != NULL);
2147 std::string line;
2148 int mline_index = -1;
2149
2150 // Zero or more media descriptions
2151 // RFC 4566
2152 // m=<media> <port> <proto> <fmt>
2153 while (GetLineWithType(message, pos, &line, kLineTypeMedia)) {
2154 ++mline_index;
2155
2156 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:522157 rtc::split(line.substr(kLinePrefixLength),
henrike@webrtc.org28e20752013-07-10 00:45:362158 kSdpDelimiterSpace, &fields);
2159 const size_t expected_min_fields = 4;
2160 if (fields.size() < expected_min_fields) {
2161 return ParseFailedExpectMinFieldNum(line, expected_min_fields, error);
2162 }
2163 bool rejected = false;
2164 // RFC 3264
2165 // To reject an offered stream, the port number in the corresponding stream
2166 // in the answer MUST be set to zero.
2167 if (fields[1] == kMediaPortRejected) {
2168 rejected = true;
2169 }
2170
2171 std::string protocol = fields[2];
henrike@webrtc.org28e20752013-07-10 00:45:362172
2173 // <fmt>
2174 std::vector<int> codec_preference;
pthatcher@webrtc.org3341b402015-02-13 21:14:222175 if (IsRtp(protocol)) {
jiayl@webrtc.orgddb85ab2014-09-05 16:31:562176 for (size_t j = 3 ; j < fields.size(); ++j) {
2177 // TODO(wu): Remove when below bug is fixed.
2178 // https://bugzilla.mozilla.org/show_bug.cgi?id=996329
pbosbb36fdf2015-07-09 14:48:142179 if (fields[j].empty() && j == fields.size() - 1) {
jiayl@webrtc.orgddb85ab2014-09-05 16:31:562180 continue;
2181 }
wu@webrtc.org36eda7c2014-04-15 20:37:302182
jiayl@webrtc.orgddb85ab2014-09-05 16:31:562183 int pl = 0;
pkasting@chromium.orge9facf82015-02-17 20:36:282184 if (!GetPayloadTypeFromString(line, fields[j], &pl, error)) {
jiayl@webrtc.orgddb85ab2014-09-05 16:31:562185 return false;
2186 }
2187 codec_preference.push_back(pl);
wu@webrtc.org5e760e72014-04-02 23:19:092188 }
henrike@webrtc.org28e20752013-07-10 00:45:362189 }
2190
2191 // Make a temporary TransportDescription based on |session_td|.
2192 // Some of this gets overwritten by ParseContent.
deadbeef46eed762016-01-28 21:24:372193 TransportDescription transport(
2194 session_td.transport_options, session_td.ice_ufrag, session_td.ice_pwd,
2195 session_td.ice_mode, session_td.connection_role,
2196 session_td.identity_fingerprint.get());
henrike@webrtc.org28e20752013-07-10 00:45:362197
buildbot@webrtc.orgd4e598d2014-07-29 17:36:522198 rtc::scoped_ptr<MediaContentDescription> content;
henrike@webrtc.org28e20752013-07-10 00:45:362199 std::string content_name;
2200 if (HasAttribute(line, kMediaTypeVideo)) {
2201 content.reset(ParseContentDescription<VideoContentDescription>(
2202 message, cricket::MEDIA_TYPE_VIDEO, mline_index, protocol,
2203 codec_preference, pos, &content_name,
2204 &transport, candidates, error));
2205 } else if (HasAttribute(line, kMediaTypeAudio)) {
2206 content.reset(ParseContentDescription<AudioContentDescription>(
2207 message, cricket::MEDIA_TYPE_AUDIO, mline_index, protocol,
2208 codec_preference, pos, &content_name,
2209 &transport, candidates, error));
henrike@webrtc.org28e20752013-07-10 00:45:362210 } else if (HasAttribute(line, kMediaTypeData)) {
jiayl@webrtc.org0e527722014-09-08 21:43:432211 DataContentDescription* data_desc =
wu@webrtc.org78187522013-10-07 23:32:022212 ParseContentDescription<DataContentDescription>(
henrike@webrtc.org28e20752013-07-10 00:45:362213 message, cricket::MEDIA_TYPE_DATA, mline_index, protocol,
2214 codec_preference, pos, &content_name,
wu@webrtc.org78187522013-10-07 23:32:022215 &transport, candidates, error);
jiayl@webrtc.org0e527722014-09-08 21:43:432216 content.reset(data_desc);
wu@webrtc.org78187522013-10-07 23:32:022217
jiayl@webrtc.orgddb85ab2014-09-05 16:31:562218 int p;
pthatcher@webrtc.org3341b402015-02-13 21:14:222219 if (data_desc && IsDtlsSctp(protocol) && rtc::FromString(fields[3], &p)) {
jiayl@webrtc.org0e527722014-09-08 21:43:432220 if (!AddSctpDataCodec(data_desc, p))
jiayl@webrtc.orgddb85ab2014-09-05 16:31:562221 return false;
wu@webrtc.org78187522013-10-07 23:32:022222 }
henrike@webrtc.org28e20752013-07-10 00:45:362223 } else {
2224 LOG(LS_WARNING) << "Unsupported media type: " << line;
2225 continue;
2226 }
2227 if (!content.get()) {
2228 // ParseContentDescription returns NULL if failed.
2229 return false;
2230 }
2231
pthatcher@webrtc.org3341b402015-02-13 21:14:222232 if (IsRtp(protocol)) {
henrike@webrtc.org28e20752013-07-10 00:45:362233 // Set the extmap.
2234 if (!session_extmaps.empty() &&
2235 !content->rtp_header_extensions().empty()) {
2236 return ParseFailed("",
2237 "The a=extmap MUST be either all session level or "
2238 "all media level.",
2239 error);
2240 }
2241 for (size_t i = 0; i < session_extmaps.size(); ++i) {
2242 content->AddRtpHeaderExtension(session_extmaps[i]);
2243 }
2244 }
2245 content->set_protocol(protocol);
2246 desc->AddContent(content_name,
pthatcher@webrtc.org3341b402015-02-13 21:14:222247 IsDtlsSctp(protocol) ? cricket::NS_JINGLE_DRAFT_SCTP :
2248 cricket::NS_JINGLE_RTP,
henrike@webrtc.org28e20752013-07-10 00:45:362249 rejected,
2250 content.release());
2251 // Create TransportInfo with the media level "ice-pwd" and "ice-ufrag".
2252 TransportInfo transport_info(content_name, transport);
2253
2254 if (!desc->AddTransportInfo(transport_info)) {
2255 std::ostringstream description;
2256 description << "Failed to AddTransportInfo with content name: "
2257 << content_name;
2258 return ParseFailed("", description.str(), error);
2259 }
2260 }
wu@webrtc.orgcecfd182013-10-30 05:18:122261
2262 size_t end_of_message = message.size();
2263 if (mline_index == -1 && *pos != end_of_message) {
2264 ParseFailed(message, *pos, "Expects m line.", error);
2265 return false;
2266 }
henrike@webrtc.org28e20752013-07-10 00:45:362267 return true;
2268}
2269
2270bool VerifyCodec(const cricket::Codec& codec) {
2271 // Codec has not been populated correctly unless the name has been set. This
2272 // can happen if an SDP has an fmtp or rtcp-fb with a payload type but doesn't
2273 // have a corresponding "rtpmap" line.
2274 cricket::Codec default_codec;
2275 return default_codec.name != codec.name;
2276}
2277
2278bool VerifyAudioCodecs(const AudioContentDescription* audio_desc) {
2279 const std::vector<cricket::AudioCodec>& codecs = audio_desc->codecs();
2280 for (std::vector<cricket::AudioCodec>::const_iterator iter = codecs.begin();
2281 iter != codecs.end(); ++iter) {
2282 if (!VerifyCodec(*iter)) {
2283 return false;
2284 }
2285 }
2286 return true;
2287}
2288
2289bool VerifyVideoCodecs(const VideoContentDescription* video_desc) {
2290 const std::vector<cricket::VideoCodec>& codecs = video_desc->codecs();
2291 for (std::vector<cricket::VideoCodec>::const_iterator iter = codecs.begin();
2292 iter != codecs.end(); ++iter) {
2293 if (!VerifyCodec(*iter)) {
2294 return false;
2295 }
2296 }
2297 return true;
2298}
2299
2300void AddParameters(const cricket::CodecParameterMap& parameters,
2301 cricket::Codec* codec) {
2302 for (cricket::CodecParameterMap::const_iterator iter =
2303 parameters.begin(); iter != parameters.end(); ++iter) {
2304 codec->SetParam(iter->first, iter->second);
2305 }
2306}
2307
2308void AddFeedbackParameter(const cricket::FeedbackParam& feedback_param,
2309 cricket::Codec* codec) {
2310 codec->AddFeedbackParam(feedback_param);
2311}
2312
2313void AddFeedbackParameters(const cricket::FeedbackParams& feedback_params,
2314 cricket::Codec* codec) {
2315 for (std::vector<cricket::FeedbackParam>::const_iterator iter =
2316 feedback_params.params().begin();
2317 iter != feedback_params.params().end(); ++iter) {
2318 codec->AddFeedbackParam(*iter);
2319 }
2320}
2321
2322// Gets the current codec setting associated with |payload_type|. If there
changbin.shao@webrtc.org2d25b442015-03-16 04:14:342323// is no Codec associated with that payload type it returns an empty codec
henrike@webrtc.org28e20752013-07-10 00:45:362324// with that payload type.
2325template <class T>
changbin.shao@webrtc.org2d25b442015-03-16 04:14:342326T GetCodecWithPayloadType(const std::vector<T>& codecs, int payload_type) {
2327 T ret_val;
2328 if (!FindCodecById(codecs, payload_type, &ret_val)) {
2329 ret_val.id = payload_type;
henrike@webrtc.org28e20752013-07-10 00:45:362330 }
henrike@webrtc.org28e20752013-07-10 00:45:362331 return ret_val;
2332}
2333
2334// Updates or creates a new codec entry in the audio description.
2335template <class T, class U>
2336void AddOrReplaceCodec(MediaContentDescription* content_desc, const U& codec) {
2337 T* desc = static_cast<T*>(content_desc);
2338 std::vector<U> codecs = desc->codecs();
2339 bool found = false;
2340
2341 typename std::vector<U>::iterator iter;
2342 for (iter = codecs.begin(); iter != codecs.end(); ++iter) {
2343 if (iter->id == codec.id) {
2344 *iter = codec;
2345 found = true;
2346 break;
2347 }
2348 }
2349 if (!found) {
2350 desc->AddCodec(codec);
2351 return;
2352 }
2353 desc->set_codecs(codecs);
2354}
2355
2356// Adds or updates existing codec corresponding to |payload_type| according
2357// to |parameters|.
2358template <class T, class U>
2359void UpdateCodec(MediaContentDescription* content_desc, int payload_type,
2360 const cricket::CodecParameterMap& parameters) {
2361 // Codec might already have been populated (from rtpmap).
changbin.shao@webrtc.org2d25b442015-03-16 04:14:342362 U new_codec = GetCodecWithPayloadType(static_cast<T*>(content_desc)->codecs(),
2363 payload_type);
henrike@webrtc.org28e20752013-07-10 00:45:362364 AddParameters(parameters, &new_codec);
2365 AddOrReplaceCodec<T, U>(content_desc, new_codec);
2366}
2367
2368// Adds or updates existing codec corresponding to |payload_type| according
2369// to |feedback_param|.
2370template <class T, class U>
2371void UpdateCodec(MediaContentDescription* content_desc, int payload_type,
2372 const cricket::FeedbackParam& feedback_param) {
2373 // Codec might already have been populated (from rtpmap).
changbin.shao@webrtc.org2d25b442015-03-16 04:14:342374 U new_codec = GetCodecWithPayloadType(static_cast<T*>(content_desc)->codecs(),
2375 payload_type);
henrike@webrtc.org28e20752013-07-10 00:45:362376 AddFeedbackParameter(feedback_param, &new_codec);
2377 AddOrReplaceCodec<T, U>(content_desc, new_codec);
2378}
2379
jlmiller@webrtc.orga744a282015-02-18 21:37:462380template <class T>
2381bool PopWildcardCodec(std::vector<T>* codecs, T* wildcard_codec) {
2382 for (auto iter = codecs->begin(); iter != codecs->end(); ++iter) {
henrike@webrtc.org28e20752013-07-10 00:45:362383 if (iter->id == kWildcardPayloadType) {
2384 *wildcard_codec = *iter;
2385 codecs->erase(iter);
2386 return true;
2387 }
2388 }
2389 return false;
2390}
2391
jlmiller@webrtc.orga744a282015-02-18 21:37:462392template<class T>
2393void UpdateFromWildcardCodecs(cricket::MediaContentDescriptionImpl<T>* desc) {
2394 auto codecs = desc->codecs();
2395 T wildcard_codec;
henrike@webrtc.org28e20752013-07-10 00:45:362396 if (!PopWildcardCodec(&codecs, &wildcard_codec)) {
2397 return;
2398 }
jlmiller@webrtc.orga744a282015-02-18 21:37:462399 for (auto& codec : codecs) {
henrike@webrtc.org28e20752013-07-10 00:45:362400 AddFeedbackParameters(wildcard_codec.feedback_params, &codec);
2401 }
jlmiller@webrtc.orga744a282015-02-18 21:37:462402 desc->set_codecs(codecs);
henrike@webrtc.org28e20752013-07-10 00:45:362403}
2404
2405void AddAudioAttribute(const std::string& name, const std::string& value,
2406 AudioContentDescription* audio_desc) {
2407 if (value.empty()) {
2408 return;
2409 }
2410 std::vector<cricket::AudioCodec> codecs = audio_desc->codecs();
2411 for (std::vector<cricket::AudioCodec>::iterator iter = codecs.begin();
2412 iter != codecs.end(); ++iter) {
2413 iter->params[name] = value;
2414 }
2415 audio_desc->set_codecs(codecs);
2416}
2417
2418bool ParseContent(const std::string& message,
2419 const MediaType media_type,
2420 int mline_index,
2421 const std::string& protocol,
2422 const std::vector<int>& codec_preference,
2423 size_t* pos,
2424 std::string* content_name,
2425 MediaContentDescription* media_desc,
2426 TransportDescription* transport,
2427 std::vector<JsepIceCandidate*>* candidates,
2428 SdpParseError* error) {
2429 ASSERT(media_desc != NULL);
2430 ASSERT(content_name != NULL);
2431 ASSERT(transport != NULL);
2432
henrike@webrtc.org704bf9e2014-02-27 17:52:042433 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
2434 MaybeCreateStaticPayloadAudioCodecs(
2435 codec_preference, static_cast<AudioContentDescription*>(media_desc));
2436 }
2437
henrike@webrtc.org28e20752013-07-10 00:45:362438 // The media level "ice-ufrag" and "ice-pwd".
2439 // The candidates before update the media level "ice-pwd" and "ice-ufrag".
2440 Candidates candidates_orig;
2441 std::string line;
2442 std::string mline_id;
2443 // Tracks created out of the ssrc attributes.
2444 StreamParamsVec tracks;
2445 SsrcInfoVec ssrc_infos;
2446 SsrcGroupVec ssrc_groups;
2447 std::string maxptime_as_string;
2448 std::string ptime_as_string;
2449
henrike@webrtc.org28e20752013-07-10 00:45:362450 // Loop until the next m line
2451 while (!IsLineType(message, kLineTypeMedia, *pos)) {
2452 if (!GetLine(message, pos, &line)) {
2453 if (*pos >= message.size()) {
2454 break; // Done parsing
2455 } else {
sergeyu@chromium.org5bc25c42013-12-05 00:24:062456 return ParseFailed(message, *pos, "Invalid SDP line.", error);
henrike@webrtc.org28e20752013-07-10 00:45:362457 }
2458 }
2459
henrike@webrtc.org28e20752013-07-10 00:45:362460 // RFC 4566
2461 // b=* (zero or more bandwidth information lines)
2462 if (IsLineType(line, kLineTypeSessionBandwidth)) {
2463 std::string bandwidth;
2464 if (HasAttribute(line, kApplicationSpecificMaximum)) {
2465 if (!GetValue(line, kApplicationSpecificMaximum, &bandwidth, error)) {
2466 return false;
2467 } else {
wu@webrtc.org5e760e72014-04-02 23:19:092468 int b = 0;
2469 if (!GetValueFromString(line, bandwidth, &b, error)) {
2470 return false;
2471 }
Peter Thatcherc0c3a862015-06-24 22:31:252472 // We should never use more than the default bandwidth for RTP-based
2473 // data channels. Don't allow SDP to set the bandwidth, because
2474 // that would give JS the opportunity to "break the Internet".
2475 // See: https://code.google.com/p/chromium/issues/detail?id=280726
2476 if (media_type == cricket::MEDIA_TYPE_DATA && IsRtp(protocol) &&
2477 b > cricket::kDataMaxBandwidth / 1000) {
2478 std::ostringstream description;
2479 description << "RTP-based data channels may not send more than "
2480 << cricket::kDataMaxBandwidth / 1000 << "kbps.";
2481 return ParseFailed(line, description.str(), error);
2482 }
wu@webrtc.org5e760e72014-04-02 23:19:092483 media_desc->set_bandwidth(b * 1000);
henrike@webrtc.org28e20752013-07-10 00:45:362484 }
2485 }
2486 continue;
2487 }
2488
2489 if (!IsLineType(line, kLineTypeAttributes)) {
2490 // TODO: Handle other lines if needed.
2491 LOG(LS_INFO) << "Ignored line: " << line;
2492 continue;
2493 }
2494
2495 // Handle attributes common to SCTP and RTP.
2496 if (HasAttribute(line, kAttributeMid)) {
2497 // RFC 3388
2498 // mid-attribute = "a=mid:" identification-tag
2499 // identification-tag = token
2500 // Use the mid identification-tag as the content name.
2501 if (!GetValue(line, kAttributeMid, &mline_id, error)) {
2502 return false;
2503 }
2504 *content_name = mline_id;
2505 } else if (HasAttribute(line, kAttributeCandidate)) {
2506 Candidate candidate;
2507 if (!ParseCandidate(line, &candidate, error, false)) {
2508 return false;
2509 }
2510 candidates_orig.push_back(candidate);
2511 } else if (HasAttribute(line, kAttributeIceUfrag)) {
2512 if (!GetValue(line, kAttributeIceUfrag, &transport->ice_ufrag, error)) {
2513 return false;
2514 }
2515 } else if (HasAttribute(line, kAttributeIcePwd)) {
2516 if (!GetValue(line, kAttributeIcePwd, &transport->ice_pwd, error)) {
2517 return false;
2518 }
2519 } else if (HasAttribute(line, kAttributeIceOption)) {
2520 if (!ParseIceOptions(line, &transport->transport_options, error)) {
2521 return false;
2522 }
2523 } else if (HasAttribute(line, kAttributeFmtp)) {
2524 if (!ParseFmtpAttributes(line, media_type, media_desc, error)) {
2525 return false;
2526 }
2527 } else if (HasAttribute(line, kAttributeFingerprint)) {
buildbot@webrtc.orgd4e598d2014-07-29 17:36:522528 rtc::SSLFingerprint* fingerprint = NULL;
henrike@webrtc.org28e20752013-07-10 00:45:362529
2530 if (!ParseFingerprintAttribute(line, &fingerprint, error)) {
2531 return false;
2532 }
2533 transport->identity_fingerprint.reset(fingerprint);
sergeyu@chromium.org0be6aa02013-08-23 23:21:252534 } else if (HasAttribute(line, kAttributeSetup)) {
2535 if (!ParseDtlsSetup(line, &(transport->connection_role), error)) {
2536 return false;
2537 }
pthatcher@webrtc.org3341b402015-02-13 21:14:222538 } else if (IsDtlsSctp(protocol) && HasAttribute(line, kAttributeSctpPort)) {
jiayl@webrtc.orgddb85ab2014-09-05 16:31:562539 int sctp_port;
2540 if (!ParseSctpPort(line, &sctp_port, error)) {
2541 return false;
2542 }
2543 if (!AddSctpDataCodec(static_cast<DataContentDescription*>(media_desc),
2544 sctp_port)) {
2545 return false;
2546 }
pthatcher@webrtc.org3341b402015-02-13 21:14:222547 } else if (IsRtp(protocol)) {
henrike@webrtc.org28e20752013-07-10 00:45:362548 //
2549 // RTP specific attrubtes
2550 //
2551 if (HasAttribute(line, kAttributeRtcpMux)) {
2552 media_desc->set_rtcp_mux(true);
deadbeef13871492015-12-09 20:37:512553 } else if (HasAttribute(line, kAttributeRtcpReducedSize)) {
2554 media_desc->set_rtcp_reduced_size(true);
henrike@webrtc.org28e20752013-07-10 00:45:362555 } else if (HasAttribute(line, kAttributeSsrcGroup)) {
2556 if (!ParseSsrcGroupAttribute(line, &ssrc_groups, error)) {
2557 return false;
2558 }
2559 } else if (HasAttribute(line, kAttributeSsrc)) {
2560 if (!ParseSsrcAttribute(line, &ssrc_infos, error)) {
2561 return false;
2562 }
2563 } else if (HasAttribute(line, kAttributeCrypto)) {
2564 if (!ParseCryptoAttribute(line, media_desc, error)) {
2565 return false;
2566 }
2567 } else if (HasAttribute(line, kAttributeRtpmap)) {
2568 if (!ParseRtpmapAttribute(line, media_type, codec_preference,
2569 media_desc, error)) {
2570 return false;
2571 }
2572 } else if (HasAttribute(line, kCodecParamMaxPTime)) {
2573 if (!GetValue(line, kCodecParamMaxPTime, &maxptime_as_string, error)) {
2574 return false;
2575 }
2576 } else if (HasAttribute(line, kAttributeRtcpFb)) {
2577 if (!ParseRtcpFbAttribute(line, media_type, media_desc, error)) {
2578 return false;
2579 }
2580 } else if (HasAttribute(line, kCodecParamPTime)) {
2581 if (!GetValue(line, kCodecParamPTime, &ptime_as_string, error)) {
2582 return false;
2583 }
2584 } else if (HasAttribute(line, kAttributeSendOnly)) {
2585 media_desc->set_direction(cricket::MD_SENDONLY);
2586 } else if (HasAttribute(line, kAttributeRecvOnly)) {
2587 media_desc->set_direction(cricket::MD_RECVONLY);
2588 } else if (HasAttribute(line, kAttributeInactive)) {
2589 media_desc->set_direction(cricket::MD_INACTIVE);
2590 } else if (HasAttribute(line, kAttributeSendRecv)) {
2591 media_desc->set_direction(cricket::MD_SENDRECV);
2592 } else if (HasAttribute(line, kAttributeExtmap)) {
2593 RtpHeaderExtension extmap;
2594 if (!ParseExtmap(line, &extmap, error)) {
2595 return false;
2596 }
2597 media_desc->AddRtpHeaderExtension(extmap);
2598 } else if (HasAttribute(line, kAttributeXGoogleFlag)) {
2599 // Experimental attribute. Conference mode activates more aggressive
2600 // AEC and NS settings.
2601 // TODO: expose API to set these directly.
2602 std::string flag_value;
2603 if (!GetValue(line, kAttributeXGoogleFlag, &flag_value, error)) {
2604 return false;
2605 }
2606 if (flag_value.compare(kValueConference) == 0)
2607 media_desc->set_conference_mode(true);
henrike@webrtc.org28e20752013-07-10 00:45:362608 }
2609 } else {
2610 // Only parse lines that we are interested of.
2611 LOG(LS_INFO) << "Ignored line: " << line;
2612 continue;
2613 }
2614 }
2615
2616 // Create tracks from the |ssrc_infos|.
2617 CreateTracksFromSsrcInfos(ssrc_infos, &tracks);
2618
2619 // Add the ssrc group to the track.
2620 for (SsrcGroupVec::iterator ssrc_group = ssrc_groups.begin();
2621 ssrc_group != ssrc_groups.end(); ++ssrc_group) {
2622 if (ssrc_group->ssrcs.empty()) {
2623 continue;
2624 }
Peter Boström0c4e06b2015-10-07 10:23:212625 uint32_t ssrc = ssrc_group->ssrcs.front();
henrike@webrtc.org28e20752013-07-10 00:45:362626 for (StreamParamsVec::iterator track = tracks.begin();
2627 track != tracks.end(); ++track) {
2628 if (track->has_ssrc(ssrc)) {
2629 track->ssrc_groups.push_back(*ssrc_group);
2630 }
2631 }
2632 }
2633
2634 // Add the new tracks to the |media_desc|.
2635 for (StreamParamsVec::iterator track = tracks.begin();
2636 track != tracks.end(); ++track) {
2637 media_desc->AddStream(*track);
2638 }
2639
2640 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
2641 AudioContentDescription* audio_desc =
2642 static_cast<AudioContentDescription*>(media_desc);
jlmiller@webrtc.orga744a282015-02-18 21:37:462643 UpdateFromWildcardCodecs(audio_desc);
2644
henrike@webrtc.org28e20752013-07-10 00:45:362645 // Verify audio codec ensures that no audio codec has been populated with
2646 // only fmtp.
2647 if (!VerifyAudioCodecs(audio_desc)) {
2648 return ParseFailed("Failed to parse audio codecs correctly.", error);
2649 }
2650 AddAudioAttribute(kCodecParamMaxPTime, maxptime_as_string, audio_desc);
2651 AddAudioAttribute(kCodecParamPTime, ptime_as_string, audio_desc);
2652 }
2653
2654 if (media_type == cricket::MEDIA_TYPE_VIDEO) {
jlmiller@webrtc.orga744a282015-02-18 21:37:462655 VideoContentDescription* video_desc =
2656 static_cast<VideoContentDescription*>(media_desc);
2657 UpdateFromWildcardCodecs(video_desc);
2658 // Verify video codec ensures that no video codec has been populated with
2659 // only rtcp-fb.
2660 if (!VerifyVideoCodecs(video_desc)) {
2661 return ParseFailed("Failed to parse video codecs correctly.", error);
2662 }
henrike@webrtc.org28e20752013-07-10 00:45:362663 }
2664
2665 // RFC 5245
2666 // Update the candidates with the media level "ice-pwd" and "ice-ufrag".
2667 for (Candidates::iterator it = candidates_orig.begin();
2668 it != candidates_orig.end(); ++it) {
honghaiza54a0802015-12-17 02:37:232669 ASSERT((*it).username().empty() ||
2670 (*it).username() == transport->ice_ufrag);
henrike@webrtc.org28e20752013-07-10 00:45:362671 (*it).set_username(transport->ice_ufrag);
2672 ASSERT((*it).password().empty());
2673 (*it).set_password(transport->ice_pwd);
2674 candidates->push_back(
2675 new JsepIceCandidate(mline_id, mline_index, *it));
2676 }
2677 return true;
2678}
2679
2680bool ParseSsrcAttribute(const std::string& line, SsrcInfoVec* ssrc_infos,
2681 SdpParseError* error) {
2682 ASSERT(ssrc_infos != NULL);
2683 // RFC 5576
2684 // a=ssrc:<ssrc-id> <attribute>
2685 // a=ssrc:<ssrc-id> <attribute>:<value>
2686 std::string field1, field2;
Donald Curtis144d0182015-05-15 20:14:242687 if (!rtc::tokenize_first(line.substr(kLinePrefixLength), kSdpDelimiterSpace,
2688 &field1, &field2)) {
henrike@webrtc.org28e20752013-07-10 00:45:362689 const size_t expected_fields = 2;
2690 return ParseFailedExpectFieldNum(line, expected_fields, error);
2691 }
2692
2693 // ssrc:<ssrc-id>
2694 std::string ssrc_id_s;
2695 if (!GetValue(field1, kAttributeSsrc, &ssrc_id_s, error)) {
2696 return false;
2697 }
Peter Boström0c4e06b2015-10-07 10:23:212698 uint32_t ssrc_id = 0;
wu@webrtc.org5e760e72014-04-02 23:19:092699 if (!GetValueFromString(line, ssrc_id_s, &ssrc_id, error)) {
2700 return false;
2701 }
henrike@webrtc.org28e20752013-07-10 00:45:362702
2703 std::string attribute;
2704 std::string value;
Donald Curtis144d0182015-05-15 20:14:242705 if (!rtc::tokenize_first(field2, kSdpDelimiterColon, &attribute, &value)) {
henrike@webrtc.org28e20752013-07-10 00:45:362706 std::ostringstream description;
2707 description << "Failed to get the ssrc attribute value from " << field2
2708 << ". Expected format <attribute>:<value>.";
2709 return ParseFailed(line, description.str(), error);
2710 }
2711
2712 // Check if there's already an item for this |ssrc_id|. Create a new one if
2713 // there isn't.
2714 SsrcInfoVec::iterator ssrc_info = ssrc_infos->begin();
2715 for (; ssrc_info != ssrc_infos->end(); ++ssrc_info) {
2716 if (ssrc_info->ssrc_id == ssrc_id) {
2717 break;
2718 }
2719 }
2720 if (ssrc_info == ssrc_infos->end()) {
2721 SsrcInfo info;
2722 info.ssrc_id = ssrc_id;
2723 ssrc_infos->push_back(info);
2724 ssrc_info = ssrc_infos->end() - 1;
2725 }
2726
2727 // Store the info to the |ssrc_info|.
2728 if (attribute == kSsrcAttributeCname) {
2729 // RFC 5576
2730 // cname:<value>
2731 ssrc_info->cname = value;
2732 } else if (attribute == kSsrcAttributeMsid) {
2733 // draft-alvestrand-mmusic-msid-00
2734 // "msid:" identifier [ " " appdata ]
2735 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:522736 rtc::split(value, kSdpDelimiterSpace, &fields);
henrike@webrtc.org28e20752013-07-10 00:45:362737 if (fields.size() < 1 || fields.size() > 2) {
2738 return ParseFailed(line,
2739 "Expected format \"msid:<identifier>[ <appdata>]\".",
2740 error);
2741 }
2742 ssrc_info->msid_identifier = fields[0];
2743 if (fields.size() == 2) {
2744 ssrc_info->msid_appdata = fields[1];
2745 }
2746 } else if (attribute == kSsrcAttributeMslabel) {
2747 // draft-alvestrand-rtcweb-mid-01
2748 // mslabel:<value>
2749 ssrc_info->mslabel = value;
2750 } else if (attribute == kSSrcAttributeLabel) {
2751 // The label isn't defined.
2752 // label:<value>
2753 ssrc_info->label = value;
2754 }
2755 return true;
2756}
2757
2758bool ParseSsrcGroupAttribute(const std::string& line,
2759 SsrcGroupVec* ssrc_groups,
2760 SdpParseError* error) {
2761 ASSERT(ssrc_groups != NULL);
2762 // RFC 5576
2763 // a=ssrc-group:<semantics> <ssrc-id> ...
2764 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:522765 rtc::split(line.substr(kLinePrefixLength),
henrike@webrtc.org28e20752013-07-10 00:45:362766 kSdpDelimiterSpace, &fields);
2767 const size_t expected_min_fields = 2;
2768 if (fields.size() < expected_min_fields) {
2769 return ParseFailedExpectMinFieldNum(line, expected_min_fields, error);
2770 }
2771 std::string semantics;
2772 if (!GetValue(fields[0], kAttributeSsrcGroup, &semantics, error)) {
2773 return false;
2774 }
Peter Boström0c4e06b2015-10-07 10:23:212775 std::vector<uint32_t> ssrcs;
henrike@webrtc.org28e20752013-07-10 00:45:362776 for (size_t i = 1; i < fields.size(); ++i) {
Peter Boström0c4e06b2015-10-07 10:23:212777 uint32_t ssrc = 0;
wu@webrtc.org5e760e72014-04-02 23:19:092778 if (!GetValueFromString(line, fields[i], &ssrc, error)) {
2779 return false;
2780 }
henrike@webrtc.org28e20752013-07-10 00:45:362781 ssrcs.push_back(ssrc);
2782 }
2783 ssrc_groups->push_back(SsrcGroup(semantics, ssrcs));
2784 return true;
2785}
2786
2787bool ParseCryptoAttribute(const std::string& line,
2788 MediaContentDescription* media_desc,
2789 SdpParseError* error) {
2790 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:522791 rtc::split(line.substr(kLinePrefixLength),
henrike@webrtc.org28e20752013-07-10 00:45:362792 kSdpDelimiterSpace, &fields);
2793 // RFC 4568
2794 // a=crypto:<tag> <crypto-suite> <key-params> [<session-params>]
2795 const size_t expected_min_fields = 3;
2796 if (fields.size() < expected_min_fields) {
2797 return ParseFailedExpectMinFieldNum(line, expected_min_fields, error);
2798 }
2799 std::string tag_value;
2800 if (!GetValue(fields[0], kAttributeCrypto, &tag_value, error)) {
2801 return false;
2802 }
wu@webrtc.org5e760e72014-04-02 23:19:092803 int tag = 0;
2804 if (!GetValueFromString(line, tag_value, &tag, error)) {
2805 return false;
2806 }
jbauch083b73f2015-07-16 09:46:322807 const std::string& crypto_suite = fields[1];
2808 const std::string& key_params = fields[2];
henrike@webrtc.org28e20752013-07-10 00:45:362809 std::string session_params;
2810 if (fields.size() > 3) {
2811 session_params = fields[3];
2812 }
2813 media_desc->AddCrypto(CryptoParams(tag, crypto_suite, key_params,
2814 session_params));
2815 return true;
2816}
2817
2818// Updates or creates a new codec entry in the audio description with according
2819// to |name|, |clockrate|, |bitrate|, |channels| and |preference|.
2820void UpdateCodec(int payload_type, const std::string& name, int clockrate,
Peter Kasting69558702016-01-13 00:26:352821 int bitrate, size_t channels, int preference,
henrike@webrtc.org28e20752013-07-10 00:45:362822 AudioContentDescription* audio_desc) {
2823 // Codec may already be populated with (only) optional parameters
2824 // (from an fmtp).
changbin.shao@webrtc.org2d25b442015-03-16 04:14:342825 cricket::AudioCodec codec =
2826 GetCodecWithPayloadType(audio_desc->codecs(), payload_type);
henrike@webrtc.org28e20752013-07-10 00:45:362827 codec.name = name;
2828 codec.clockrate = clockrate;
2829 codec.bitrate = bitrate;
2830 codec.channels = channels;
2831 codec.preference = preference;
2832 AddOrReplaceCodec<AudioContentDescription, cricket::AudioCodec>(audio_desc,
2833 codec);
2834}
2835
2836// Updates or creates a new codec entry in the video description according to
2837// |name|, |width|, |height|, |framerate| and |preference|.
2838void UpdateCodec(int payload_type, const std::string& name, int width,
2839 int height, int framerate, int preference,
2840 VideoContentDescription* video_desc) {
2841 // Codec may already be populated with (only) optional parameters
2842 // (from an fmtp).
changbin.shao@webrtc.org2d25b442015-03-16 04:14:342843 cricket::VideoCodec codec =
2844 GetCodecWithPayloadType(video_desc->codecs(), payload_type);
henrike@webrtc.org28e20752013-07-10 00:45:362845 codec.name = name;
2846 codec.width = width;
2847 codec.height = height;
2848 codec.framerate = framerate;
2849 codec.preference = preference;
2850 AddOrReplaceCodec<VideoContentDescription, cricket::VideoCodec>(video_desc,
2851 codec);
2852}
2853
2854bool ParseRtpmapAttribute(const std::string& line,
2855 const MediaType media_type,
2856 const std::vector<int>& codec_preference,
2857 MediaContentDescription* media_desc,
2858 SdpParseError* error) {
2859 std::vector<std::string> fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:522860 rtc::split(line.substr(kLinePrefixLength),
henrike@webrtc.org28e20752013-07-10 00:45:362861 kSdpDelimiterSpace, &fields);
2862 // RFC 4566
2863 // a=rtpmap:<payload type> <encoding name>/<clock rate>[/<encodingparameters>]
2864 const size_t expected_min_fields = 2;
2865 if (fields.size() < expected_min_fields) {
2866 return ParseFailedExpectMinFieldNum(line, expected_min_fields, error);
2867 }
2868 std::string payload_type_value;
2869 if (!GetValue(fields[0], kAttributeRtpmap, &payload_type_value, error)) {
2870 return false;
2871 }
wu@webrtc.org5e760e72014-04-02 23:19:092872 int payload_type = 0;
pkasting@chromium.orge9facf82015-02-17 20:36:282873 if (!GetPayloadTypeFromString(line, payload_type_value, &payload_type,
2874 error)) {
wu@webrtc.org5e760e72014-04-02 23:19:092875 return false;
2876 }
henrike@webrtc.org28e20752013-07-10 00:45:362877
2878 // Set the preference order depending on the order of the pl type in the
2879 // <fmt> of the m-line.
2880 const int preference = codec_preference.end() -
2881 std::find(codec_preference.begin(), codec_preference.end(),
2882 payload_type);
2883 if (preference == 0) {
2884 LOG(LS_WARNING) << "Ignore rtpmap line that did not appear in the "
2885 << "<fmt> of the m-line: " << line;
2886 return true;
2887 }
jbauch083b73f2015-07-16 09:46:322888 const std::string& encoder = fields[1];
henrike@webrtc.org28e20752013-07-10 00:45:362889 std::vector<std::string> codec_params;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:522890 rtc::split(encoder, '/', &codec_params);
henrike@webrtc.org28e20752013-07-10 00:45:362891 // <encoding name>/<clock rate>[/<encodingparameters>]
2892 // 2 mandatory fields
2893 if (codec_params.size() < 2 || codec_params.size() > 3) {
2894 return ParseFailed(line,
2895 "Expected format \"<encoding name>/<clock rate>"
2896 "[/<encodingparameters>]\".",
2897 error);
2898 }
jbauch083b73f2015-07-16 09:46:322899 const std::string& encoding_name = codec_params[0];
wu@webrtc.org5e760e72014-04-02 23:19:092900 int clock_rate = 0;
2901 if (!GetValueFromString(line, codec_params[1], &clock_rate, error)) {
2902 return false;
2903 }
henrike@webrtc.org28e20752013-07-10 00:45:362904 if (media_type == cricket::MEDIA_TYPE_VIDEO) {
2905 VideoContentDescription* video_desc =
2906 static_cast<VideoContentDescription*>(media_desc);
2907 // TODO: We will send resolution in SDP. For now use
2908 // JsepSessionDescription::kMaxVideoCodecWidth and kMaxVideoCodecHeight.
2909 UpdateCodec(payload_type, encoding_name,
2910 JsepSessionDescription::kMaxVideoCodecWidth,
2911 JsepSessionDescription::kMaxVideoCodecHeight,
2912 JsepSessionDescription::kDefaultVideoCodecFramerate,
2913 preference, video_desc);
2914 } else if (media_type == cricket::MEDIA_TYPE_AUDIO) {
2915 // RFC 4566
2916 // For audio streams, <encoding parameters> indicates the number
2917 // of audio channels. This parameter is OPTIONAL and may be
2918 // omitted if the number of channels is one, provided that no
2919 // additional parameters are needed.
Peter Kasting69558702016-01-13 00:26:352920 size_t channels = 1;
henrike@webrtc.org28e20752013-07-10 00:45:362921 if (codec_params.size() == 3) {
wu@webrtc.org5e760e72014-04-02 23:19:092922 if (!GetValueFromString(line, codec_params[2], &channels, error)) {
2923 return false;
2924 }
henrike@webrtc.org28e20752013-07-10 00:45:362925 }
2926 int bitrate = 0;
2927 // The default behavior for ISAC (bitrate == 0) in webrtcvoiceengine.cc
2928 // (specifically FindWebRtcCodec) is bandwidth-adaptive variable bitrate.
2929 // The bandwidth adaptation doesn't always work well, so this code
2930 // sets a fixed target bitrate instead.
2931 if (_stricmp(encoding_name.c_str(), kIsacCodecName) == 0) {
2932 if (clock_rate <= 16000) {
2933 bitrate = kIsacWbDefaultRate;
2934 } else {
2935 bitrate = kIsacSwbDefaultRate;
2936 }
2937 }
2938 AudioContentDescription* audio_desc =
2939 static_cast<AudioContentDescription*>(media_desc);
2940 UpdateCodec(payload_type, encoding_name, clock_rate, bitrate, channels,
2941 preference, audio_desc);
2942 } else if (media_type == cricket::MEDIA_TYPE_DATA) {
2943 DataContentDescription* data_desc =
2944 static_cast<DataContentDescription*>(media_desc);
2945 data_desc->AddCodec(cricket::DataCodec(payload_type, encoding_name,
2946 preference));
2947 }
2948 return true;
2949}
2950
henrike@webrtc.org28e20752013-07-10 00:45:362951bool ParseFmtpParam(const std::string& line, std::string* parameter,
2952 std::string* value, SdpParseError* error) {
Donald Curtis0e07f922015-05-15 16:21:232953 if (!rtc::tokenize_first(line, kSdpDelimiterEqual, parameter, value)) {
henrike@webrtc.org28e20752013-07-10 00:45:362954 ParseFailed(line, "Unable to parse fmtp parameter. \'=\' missing.", error);
2955 return false;
2956 }
2957 // a=fmtp:<payload_type> <param1>=<value1>; <param2>=<value2>; ...
henrike@webrtc.org28e20752013-07-10 00:45:362958 return true;
2959}
2960
2961bool ParseFmtpAttributes(const std::string& line, const MediaType media_type,
2962 MediaContentDescription* media_desc,
2963 SdpParseError* error) {
2964 if (media_type != cricket::MEDIA_TYPE_AUDIO &&
2965 media_type != cricket::MEDIA_TYPE_VIDEO) {
2966 return true;
2967 }
Donald Curtis0e07f922015-05-15 16:21:232968
2969 std::string line_payload;
2970 std::string line_params;
henrike@webrtc.org28e20752013-07-10 00:45:362971
2972 // RFC 5576
2973 // a=fmtp:<format> <format specific parameters>
2974 // At least two fields, whereas the second one is any of the optional
2975 // parameters.
Donald Curtis144d0182015-05-15 20:14:242976 if (!rtc::tokenize_first(line.substr(kLinePrefixLength), kSdpDelimiterSpace,
2977 &line_payload, &line_params)) {
henrike@webrtc.org28e20752013-07-10 00:45:362978 ParseFailedExpectMinFieldNum(line, 2, error);
2979 return false;
2980 }
2981
Donald Curtis0e07f922015-05-15 16:21:232982 // Parse out the payload information.
pkasting@chromium.orgd3245462015-02-23 21:28:222983 std::string payload_type_str;
Donald Curtis0e07f922015-05-15 16:21:232984 if (!GetValue(line_payload, kAttributeFmtp, &payload_type_str, error)) {
henrike@webrtc.org28e20752013-07-10 00:45:362985 return false;
2986 }
2987
Donald Curtis0e07f922015-05-15 16:21:232988 int payload_type = 0;
Donald Curtis144d0182015-05-15 20:14:242989 if (!GetPayloadTypeFromString(line_payload, payload_type_str, &payload_type,
2990 error)) {
Donald Curtis0e07f922015-05-15 16:21:232991 return false;
2992 }
2993
2994 // Parse out format specific parameters.
2995 std::vector<std::string> fields;
2996 rtc::split(line_params, kSdpDelimiterSemicolon, &fields);
2997
henrike@webrtc.org28e20752013-07-10 00:45:362998 cricket::CodecParameterMap codec_params;
Donald Curtis144d0182015-05-15 20:14:242999 for (auto& iter : fields) {
Donald Curtis0e07f922015-05-15 16:21:233000 if (iter.find(kSdpDelimiterEqual) == std::string::npos) {
henrike@webrtc.org28e20752013-07-10 00:45:363001 // Only fmtps with equals are currently supported. Other fmtp types
3002 // should be ignored. Unknown fmtps do not constitute an error.
3003 continue;
3004 }
Donald Curtis0e07f922015-05-15 16:21:233005
3006 std::string name;
3007 std::string value;
3008 if (!ParseFmtpParam(rtc::string_trim(iter), &name, &value, error)) {
henrike@webrtc.org28e20752013-07-10 00:45:363009 return false;
3010 }
3011 codec_params[name] = value;
3012 }
3013
henrike@webrtc.org28e20752013-07-10 00:45:363014 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
3015 UpdateCodec<AudioContentDescription, cricket::AudioCodec>(
pkasting@chromium.orgd3245462015-02-23 21:28:223016 media_desc, payload_type, codec_params);
henrike@webrtc.org28e20752013-07-10 00:45:363017 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) {
3018 UpdateCodec<VideoContentDescription, cricket::VideoCodec>(
pkasting@chromium.orgd3245462015-02-23 21:28:223019 media_desc, payload_type, codec_params);
henrike@webrtc.org28e20752013-07-10 00:45:363020 }
3021 return true;
3022}
3023
3024bool ParseRtcpFbAttribute(const std::string& line, const MediaType media_type,
3025 MediaContentDescription* media_desc,
3026 SdpParseError* error) {
3027 if (media_type != cricket::MEDIA_TYPE_AUDIO &&
3028 media_type != cricket::MEDIA_TYPE_VIDEO) {
3029 return true;
3030 }
3031 std::vector<std::string> rtcp_fb_fields;
buildbot@webrtc.orgd4e598d2014-07-29 17:36:523032 rtc::split(line.c_str(), kSdpDelimiterSpace, &rtcp_fb_fields);
henrike@webrtc.org28e20752013-07-10 00:45:363033 if (rtcp_fb_fields.size() < 2) {
3034 return ParseFailedGetValue(line, kAttributeRtcpFb, error);
3035 }
3036 std::string payload_type_string;
3037 if (!GetValue(rtcp_fb_fields[0], kAttributeRtcpFb, &payload_type_string,
3038 error)) {
3039 return false;
3040 }
wu@webrtc.org5e760e72014-04-02 23:19:093041 int payload_type = kWildcardPayloadType;
3042 if (payload_type_string != "*") {
pkasting@chromium.orge9facf82015-02-17 20:36:283043 if (!GetPayloadTypeFromString(line, payload_type_string, &payload_type,
3044 error)) {
wu@webrtc.org5e760e72014-04-02 23:19:093045 return false;
3046 }
3047 }
henrike@webrtc.org28e20752013-07-10 00:45:363048 std::string id = rtcp_fb_fields[1];
3049 std::string param = "";
3050 for (std::vector<std::string>::iterator iter = rtcp_fb_fields.begin() + 2;
3051 iter != rtcp_fb_fields.end(); ++iter) {
3052 param.append(*iter);
3053 }
3054 const cricket::FeedbackParam feedback_param(id, param);
3055
3056 if (media_type == cricket::MEDIA_TYPE_AUDIO) {
pkasting@chromium.orgd3245462015-02-23 21:28:223057 UpdateCodec<AudioContentDescription, cricket::AudioCodec>(
3058 media_desc, payload_type, feedback_param);
henrike@webrtc.org28e20752013-07-10 00:45:363059 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) {
pkasting@chromium.orgd3245462015-02-23 21:28:223060 UpdateCodec<VideoContentDescription, cricket::VideoCodec>(
3061 media_desc, payload_type, feedback_param);
henrike@webrtc.org28e20752013-07-10 00:45:363062 }
3063 return true;
3064}
3065
3066} // namespace webrtc