OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. | 2 * Copyright 2011 The WebRTC project authors. All Rights Reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * 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 | 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 | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
242 static void BuildRtpMap(const MediaContentDescription* media_desc, | 242 static void BuildRtpMap(const MediaContentDescription* media_desc, |
243 const MediaType media_type, | 243 const MediaType media_type, |
244 std::string* message); | 244 std::string* message); |
245 static void BuildCandidate(const std::vector<Candidate>& candidates, | 245 static void BuildCandidate(const std::vector<Candidate>& candidates, |
246 bool include_ufrag, | 246 bool include_ufrag, |
247 std::string* message); | 247 std::string* message); |
248 static void BuildIceOptions(const std::vector<std::string>& transport_options, | 248 static void BuildIceOptions(const std::vector<std::string>& transport_options, |
249 std::string* message); | 249 std::string* message); |
250 static bool IsRtp(const std::string& protocol); | 250 static bool IsRtp(const std::string& protocol); |
251 static bool IsDtlsSctp(const std::string& protocol); | 251 static bool IsDtlsSctp(const std::string& protocol); |
252 static bool ParseSessionDescription(const std::string& message, size_t* pos, | 252 static bool ParseSessionDescription(const std::string& message, |
| 253 size_t* pos, |
253 std::string* session_id, | 254 std::string* session_id, |
254 std::string* session_version, | 255 std::string* session_version, |
255 TransportDescription* session_td, | 256 TransportDescription* session_td, |
256 RtpHeaderExtensions* session_extmaps, | 257 RtpHeaderExtensions* session_extmaps, |
| 258 rtc::SocketAddress* connection_addr, |
257 cricket::SessionDescription* desc, | 259 cricket::SessionDescription* desc, |
258 SdpParseError* error); | 260 SdpParseError* error); |
259 static bool ParseGroupAttribute(const std::string& line, | 261 static bool ParseGroupAttribute(const std::string& line, |
260 cricket::SessionDescription* desc, | 262 cricket::SessionDescription* desc, |
261 SdpParseError* error); | 263 SdpParseError* error); |
262 static bool ParseMediaDescription( | 264 static bool ParseMediaDescription( |
263 const std::string& message, | 265 const std::string& message, |
264 const TransportDescription& session_td, | 266 const TransportDescription& session_td, |
265 const RtpHeaderExtensions& session_extmaps, | 267 const RtpHeaderExtensions& session_extmaps, |
266 size_t* pos, cricket::SessionDescription* desc, | 268 size_t* pos, |
| 269 const rtc::SocketAddress& session_connection_addr, |
| 270 cricket::SessionDescription* desc, |
267 std::vector<JsepIceCandidate*>* candidates, | 271 std::vector<JsepIceCandidate*>* candidates, |
268 SdpParseError* error); | 272 SdpParseError* error); |
269 static bool ParseContent(const std::string& message, | 273 static bool ParseContent(const std::string& message, |
270 const MediaType media_type, | 274 const MediaType media_type, |
271 int mline_index, | 275 int mline_index, |
272 const std::string& protocol, | 276 const std::string& protocol, |
273 const std::vector<int>& payload_types, | 277 const std::vector<int>& payload_types, |
274 size_t* pos, | 278 size_t* pos, |
275 std::string* content_name, | 279 std::string* content_name, |
276 bool* bundle_only, | 280 bool* bundle_only, |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 } else if (family == AF_INET6) { | 710 } else if (family == AF_INET6) { |
707 addr_type->assign(kConnectionIpv6Addrtype); | 711 addr_type->assign(kConnectionIpv6Addrtype); |
708 } | 712 } |
709 current_preference = preference; | 713 current_preference = preference; |
710 current_family = family; | 714 current_family = family; |
711 *port = it->address().PortAsString(); | 715 *port = it->address().PortAsString(); |
712 *ip = it->address().ipaddr().ToString(); | 716 *ip = it->address().ipaddr().ToString(); |
713 } | 717 } |
714 } | 718 } |
715 | 719 |
716 // Update |mline|'s default destination and append a c line after it. | |
717 static void UpdateMediaDefaultDestination( | |
718 const std::vector<Candidate>& candidates, | |
719 const std::string& mline, | |
720 std::string* message) { | |
721 std::string new_lines; | |
722 AddLine(mline, &new_lines); | |
723 // RFC 4566 | |
724 // m=<media> <port> <proto> <fmt> ... | |
725 std::vector<std::string> fields; | |
726 rtc::split(mline, kSdpDelimiterSpace, &fields); | |
727 if (fields.size() < 3) { | |
728 return; | |
729 } | |
730 | |
731 std::ostringstream os; | |
732 std::string rtp_port, rtp_ip, addr_type; | |
733 GetDefaultDestination(candidates, ICE_CANDIDATE_COMPONENT_RTP, | |
734 &rtp_port, &rtp_ip, &addr_type); | |
735 // Found default RTP candidate. | |
736 // RFC 5245 | |
737 // The default candidates are added to the SDP as the default | |
738 // destination for media. For streams based on RTP, this is done by | |
739 // placing the IP address and port of the RTP candidate into the c and m | |
740 // lines, respectively. | |
741 // Update the port in the m line. | |
742 // If this is a m-line with port equal to 0, we don't change it. | |
743 if (fields[1] != kMediaPortRejected) { | |
744 new_lines.replace(fields[0].size() + 1, | |
745 fields[1].size(), | |
746 rtp_port); | |
747 } | |
748 // Add the c line. | |
749 // RFC 4566 | |
750 // c=<nettype> <addrtype> <connection-address> | |
751 InitLine(kLineTypeConnection, kConnectionNettype, &os); | |
752 os << " " << addr_type << " " << rtp_ip; | |
753 AddLine(os.str(), &new_lines); | |
754 message->append(new_lines); | |
755 } | |
756 | |
757 // Gets "a=rtcp" line if found default RTCP candidate from |candidates|. | 720 // Gets "a=rtcp" line if found default RTCP candidate from |candidates|. |
758 static std::string GetRtcpLine(const std::vector<Candidate>& candidates) { | 721 static std::string GetRtcpLine(const std::vector<Candidate>& candidates) { |
759 std::string rtcp_line, rtcp_port, rtcp_ip, addr_type; | 722 std::string rtcp_line, rtcp_port, rtcp_ip, addr_type; |
760 GetDefaultDestination(candidates, ICE_CANDIDATE_COMPONENT_RTCP, | 723 GetDefaultDestination(candidates, ICE_CANDIDATE_COMPONENT_RTCP, |
761 &rtcp_port, &rtcp_ip, &addr_type); | 724 &rtcp_port, &rtcp_ip, &addr_type); |
762 // Found default RTCP candidate. | 725 // Found default RTCP candidate. |
763 // RFC 5245 | 726 // RFC 5245 |
764 // If the agent is utilizing RTCP, it MUST encode the RTCP candidate | 727 // If the agent is utilizing RTCP, it MUST encode the RTCP candidate |
765 // using the a=rtcp attribute as defined in RFC 3605. | 728 // using the a=rtcp attribute as defined in RFC 3605. |
766 | 729 |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 return message; | 858 return message; |
896 } | 859 } |
897 | 860 |
898 bool SdpDeserialize(const std::string& message, | 861 bool SdpDeserialize(const std::string& message, |
899 JsepSessionDescription* jdesc, | 862 JsepSessionDescription* jdesc, |
900 SdpParseError* error) { | 863 SdpParseError* error) { |
901 std::string session_id; | 864 std::string session_id; |
902 std::string session_version; | 865 std::string session_version; |
903 TransportDescription session_td("", ""); | 866 TransportDescription session_td("", ""); |
904 RtpHeaderExtensions session_extmaps; | 867 RtpHeaderExtensions session_extmaps; |
| 868 rtc::SocketAddress session_connection_addr; |
905 cricket::SessionDescription* desc = new cricket::SessionDescription(); | 869 cricket::SessionDescription* desc = new cricket::SessionDescription(); |
906 std::vector<JsepIceCandidate*> candidates; | 870 std::vector<JsepIceCandidate*> candidates; |
907 size_t current_pos = 0; | 871 size_t current_pos = 0; |
908 | 872 |
909 // Session Description | 873 // Session Description |
910 if (!ParseSessionDescription(message, ¤t_pos, &session_id, | 874 if (!ParseSessionDescription(message, ¤t_pos, &session_id, |
911 &session_version, &session_td, &session_extmaps, | 875 &session_version, &session_td, &session_extmaps, |
912 desc, error)) { | 876 &session_connection_addr, desc, error)) { |
913 delete desc; | 877 delete desc; |
914 return false; | 878 return false; |
915 } | 879 } |
916 | 880 |
917 // Media Description | 881 // Media Description |
918 if (!ParseMediaDescription(message, session_td, session_extmaps, ¤t_pos, | 882 if (!ParseMediaDescription(message, session_td, session_extmaps, ¤t_pos, |
919 desc, &candidates, error)) { | 883 session_connection_addr, desc, &candidates, |
| 884 error)) { |
920 delete desc; | 885 delete desc; |
921 for (std::vector<JsepIceCandidate*>::const_iterator | 886 for (std::vector<JsepIceCandidate*>::const_iterator |
922 it = candidates.begin(); it != candidates.end(); ++it) { | 887 it = candidates.begin(); it != candidates.end(); ++it) { |
923 delete *it; | 888 delete *it; |
924 } | 889 } |
925 return false; | 890 return false; |
926 } | 891 } |
927 | 892 |
928 jdesc->Initialize(desc, session_id, session_version); | 893 jdesc->Initialize(desc, session_id, session_version); |
929 | 894 |
(...skipping 378 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1308 // The port number in the m line will be updated later when associated with | 1273 // The port number in the m line will be updated later when associated with |
1309 // the candidates. | 1274 // the candidates. |
1310 // | 1275 // |
1311 // A port value of 0 indicates that the m= section is rejected. | 1276 // A port value of 0 indicates that the m= section is rejected. |
1312 // RFC 3264 | 1277 // RFC 3264 |
1313 // To reject an offered stream, the port number in the corresponding stream in | 1278 // To reject an offered stream, the port number in the corresponding stream in |
1314 // the answer MUST be set to zero. | 1279 // the answer MUST be set to zero. |
1315 // | 1280 // |
1316 // However, the BUNDLE draft adds a new meaning to port zero, when used along | 1281 // However, the BUNDLE draft adds a new meaning to port zero, when used along |
1317 // with a=bundle-only. | 1282 // with a=bundle-only. |
1318 const std::string& port = | 1283 std::string port = kDummyPort; |
1319 (content_info->rejected || content_info->bundle_only) ? kMediaPortRejected | 1284 if (content_info->rejected || content_info->bundle_only) { |
1320 : kDummyPort; | 1285 port = kMediaPortRejected; |
| 1286 } else if (!media_desc->connection_address().IsNil()) { |
| 1287 port = rtc::ToString(media_desc->connection_address().port()); |
| 1288 } |
1321 | 1289 |
1322 rtc::SSLFingerprint* fp = (transport_info) ? | 1290 rtc::SSLFingerprint* fp = (transport_info) ? |
1323 transport_info->description.identity_fingerprint.get() : NULL; | 1291 transport_info->description.identity_fingerprint.get() : NULL; |
1324 | 1292 |
1325 // Add the m and c lines. | 1293 // Add the m and c lines. |
1326 InitLine(kLineTypeMedia, type, &os); | 1294 InitLine(kLineTypeMedia, type, &os); |
1327 os << " " << port << " " << media_desc->protocol() << fmt; | 1295 os << " " << port << " " << media_desc->protocol() << fmt; |
1328 std::string mline = os.str(); | 1296 AddLine(os.str(), message); |
1329 UpdateMediaDefaultDestination(candidates, mline, message); | 1297 |
| 1298 InitLine(kLineTypeConnection, kConnectionNettype, &os); |
| 1299 if (media_desc->connection_address().IsNil()) { |
| 1300 os << " " << kConnectionIpv4Addrtype << " " << kDummyAddress; |
| 1301 } else if (media_desc->connection_address().family() == AF_INET) { |
| 1302 os << " " << kConnectionIpv4Addrtype << " " |
| 1303 << media_desc->connection_address().ipaddr().ToString(); |
| 1304 } else { |
| 1305 os << " " << kConnectionIpv6Addrtype << " " |
| 1306 << media_desc->connection_address().ipaddr().ToString(); |
| 1307 } |
| 1308 AddLine(os.str(), message); |
1330 | 1309 |
1331 // RFC 4566 | 1310 // RFC 4566 |
1332 // b=AS:<bandwidth> | 1311 // b=AS:<bandwidth> |
1333 if (media_desc->bandwidth() >= 1000) { | 1312 if (media_desc->bandwidth() >= 1000) { |
1334 InitLine(kLineTypeSessionBandwidth, kApplicationSpecificMaximum, &os); | 1313 InitLine(kLineTypeSessionBandwidth, kApplicationSpecificMaximum, &os); |
1335 os << kSdpDelimiterColon << (media_desc->bandwidth() / 1000); | 1314 os << kSdpDelimiterColon << (media_desc->bandwidth() / 1000); |
1336 AddLine(os.str(), message); | 1315 AddLine(os.str(), message); |
1337 } | 1316 } |
1338 | 1317 |
1339 // Add the a=bundle-only line. | 1318 // Add the a=bundle-only line. |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1893 bool IsRtp(const std::string& protocol) { | 1872 bool IsRtp(const std::string& protocol) { |
1894 return protocol.empty() || | 1873 return protocol.empty() || |
1895 (protocol.find(cricket::kMediaProtocolRtpPrefix) != std::string::npos); | 1874 (protocol.find(cricket::kMediaProtocolRtpPrefix) != std::string::npos); |
1896 } | 1875 } |
1897 | 1876 |
1898 bool IsDtlsSctp(const std::string& protocol) { | 1877 bool IsDtlsSctp(const std::string& protocol) { |
1899 // This intentionally excludes "SCTP" and "SCTP/DTLS". | 1878 // This intentionally excludes "SCTP" and "SCTP/DTLS". |
1900 return protocol.find(cricket::kMediaProtocolDtlsSctp) != std::string::npos; | 1879 return protocol.find(cricket::kMediaProtocolDtlsSctp) != std::string::npos; |
1901 } | 1880 } |
1902 | 1881 |
1903 bool ParseSessionDescription(const std::string& message, size_t* pos, | 1882 bool ParseConnectionData(const std::string& line, |
| 1883 rtc::SocketAddress* addr, |
| 1884 SdpParseError* error) { |
| 1885 // Parse the line from left to right. |
| 1886 std::string token; |
| 1887 std::string rightpart; |
| 1888 // RFC 4566 |
| 1889 // c=<nettype> <addrtype> <connection-address> |
| 1890 // Skip the "c=" |
| 1891 if (!rtc::tokenize_first(line, kSdpDelimiterEqual, &token, &rightpart)) { |
| 1892 return ParseFailed(line, "Failed to parse the network type.", error); |
| 1893 } |
| 1894 |
| 1895 // Extract and verify the <nettype> |
| 1896 if (!rtc::tokenize_first(rightpart, kSdpDelimiterSpace, &token, &rightpart) || |
| 1897 token != kConnectionNettype) { |
| 1898 return ParseFailed(line, |
| 1899 "Failed to parse the connection data. The network type " |
| 1900 "is not currently supported.", |
| 1901 error); |
| 1902 } |
| 1903 |
| 1904 // Extract the "<addrtype>" and "<connection-address>". |
| 1905 if (!rtc::tokenize_first(rightpart, kSdpDelimiterSpace, &token, &rightpart)) { |
| 1906 return ParseFailed(line, "Failed to parse the address type.", error); |
| 1907 } |
| 1908 |
| 1909 // The rightpart part should be the IP address without the slash which is used |
| 1910 // for multicast. |
| 1911 if (rightpart.find('/') != std::string::npos) { |
| 1912 return ParseFailed(line, |
| 1913 "Failed to parse the connection data. Multicast is not " |
| 1914 "currently supported.", |
| 1915 error); |
| 1916 } |
| 1917 addr->SetIP(rightpart); |
| 1918 |
| 1919 // Verify that the addrtype matches the type of the parsed address. |
| 1920 if ((addr->family() == AF_INET && token != "IP4") || |
| 1921 (addr->family() == AF_INET6 && token != "IP6")) { |
| 1922 addr->Clear(); |
| 1923 return ParseFailed( |
| 1924 line, |
| 1925 "Failed to parse the connection data. The address type is mismatching.", |
| 1926 error); |
| 1927 } |
| 1928 return true; |
| 1929 } |
| 1930 |
| 1931 bool ParseSessionDescription(const std::string& message, |
| 1932 size_t* pos, |
1904 std::string* session_id, | 1933 std::string* session_id, |
1905 std::string* session_version, | 1934 std::string* session_version, |
1906 TransportDescription* session_td, | 1935 TransportDescription* session_td, |
1907 RtpHeaderExtensions* session_extmaps, | 1936 RtpHeaderExtensions* session_extmaps, |
| 1937 rtc::SocketAddress* connection_addr, |
1908 cricket::SessionDescription* desc, | 1938 cricket::SessionDescription* desc, |
1909 SdpParseError* error) { | 1939 SdpParseError* error) { |
1910 std::string line; | 1940 std::string line; |
1911 | 1941 |
1912 desc->set_msid_supported(false); | 1942 desc->set_msid_supported(false); |
1913 | 1943 |
1914 // RFC 4566 | 1944 // RFC 4566 |
1915 // v= (protocol version) | 1945 // v= (protocol version) |
1916 if (!GetLineWithType(message, pos, &line, kLineTypeVersion)) { | 1946 if (!GetLineWithType(message, pos, &line, kLineTypeVersion)) { |
1917 return ParseFailedExpectLine(message, *pos, kLineTypeVersion, | 1947 return ParseFailedExpectLine(message, *pos, kLineTypeVersion, |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1955 // e=* (email address) | 1985 // e=* (email address) |
1956 GetLineWithType(message, pos, &line, kLineTypeSessionEmail); | 1986 GetLineWithType(message, pos, &line, kLineTypeSessionEmail); |
1957 | 1987 |
1958 // RFC 4566 | 1988 // RFC 4566 |
1959 // p=* (phone number) | 1989 // p=* (phone number) |
1960 GetLineWithType(message, pos, &line, kLineTypeSessionPhone); | 1990 GetLineWithType(message, pos, &line, kLineTypeSessionPhone); |
1961 | 1991 |
1962 // RFC 4566 | 1992 // RFC 4566 |
1963 // c=* (connection information -- not required if included in | 1993 // c=* (connection information -- not required if included in |
1964 // all media) | 1994 // all media) |
1965 GetLineWithType(message, pos, &line, kLineTypeConnection); | 1995 if (GetLineWithType(message, pos, &line, kLineTypeConnection)) { |
| 1996 if (!ParseConnectionData(line, connection_addr, error)) { |
| 1997 return false; |
| 1998 } |
| 1999 } |
1966 | 2000 |
1967 // RFC 4566 | 2001 // RFC 4566 |
1968 // b=* (zero or more bandwidth information lines) | 2002 // b=* (zero or more bandwidth information lines) |
1969 while (GetLineWithType(message, pos, &line, kLineTypeSessionBandwidth)) { | 2003 while (GetLineWithType(message, pos, &line, kLineTypeSessionBandwidth)) { |
1970 // By pass zero or more b lines. | 2004 // By pass zero or more b lines. |
1971 } | 2005 } |
1972 | 2006 |
1973 // RFC 4566 | 2007 // RFC 4566 |
1974 // One or more time descriptions ("t=" and "r=" lines; see below) | 2008 // One or more time descriptions ("t=" and "r=" lines; see below) |
1975 // t= (time the session is active) | 2009 // t= (time the session is active) |
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2259 *content_name = cricket::CN_DATA; | 2293 *content_name = cricket::CN_DATA; |
2260 break; | 2294 break; |
2261 default: | 2295 default: |
2262 RTC_NOTREACHED(); | 2296 RTC_NOTREACHED(); |
2263 break; | 2297 break; |
2264 } | 2298 } |
2265 if (!ParseContent(message, media_type, mline_index, protocol, payload_types, | 2299 if (!ParseContent(message, media_type, mline_index, protocol, payload_types, |
2266 pos, content_name, bundle_only, media_desc, transport, | 2300 pos, content_name, bundle_only, media_desc, transport, |
2267 candidates, error)) { | 2301 candidates, error)) { |
2268 delete media_desc; | 2302 delete media_desc; |
2269 return NULL; | 2303 return nullptr; |
2270 } | 2304 } |
2271 // Sort the codecs according to the m-line fmt list. | 2305 // Sort the codecs according to the m-line fmt list. |
2272 std::unordered_map<int, int> payload_type_preferences; | 2306 std::unordered_map<int, int> payload_type_preferences; |
2273 // "size + 1" so that the lowest preference payload type has a preference of | 2307 // "size + 1" so that the lowest preference payload type has a preference of |
2274 // 1, which is greater than the default (0) for payload types not in the fmt | 2308 // 1, which is greater than the default (0) for payload types not in the fmt |
2275 // list. | 2309 // list. |
2276 int preference = static_cast<int>(payload_types.size() + 1); | 2310 int preference = static_cast<int>(payload_types.size() + 1); |
2277 for (int pt : payload_types) { | 2311 for (int pt : payload_types) { |
2278 payload_type_preferences[pt] = preference--; | 2312 payload_type_preferences[pt] = preference--; |
2279 } | 2313 } |
2280 std::vector<typename C::CodecType> codecs = media_desc->codecs(); | 2314 std::vector<typename C::CodecType> codecs = media_desc->codecs(); |
2281 std::sort(codecs.begin(), codecs.end(), [&payload_type_preferences]( | 2315 std::sort(codecs.begin(), codecs.end(), [&payload_type_preferences]( |
2282 const typename C::CodecType& a, | 2316 const typename C::CodecType& a, |
2283 const typename C::CodecType& b) { | 2317 const typename C::CodecType& b) { |
2284 return payload_type_preferences[a.id] > payload_type_preferences[b.id]; | 2318 return payload_type_preferences[a.id] > payload_type_preferences[b.id]; |
2285 }); | 2319 }); |
2286 media_desc->set_codecs(codecs); | 2320 media_desc->set_codecs(codecs); |
2287 return media_desc; | 2321 return media_desc; |
2288 } | 2322 } |
2289 | 2323 |
2290 bool ParseMediaDescription(const std::string& message, | 2324 bool ParseMediaDescription(const std::string& message, |
2291 const TransportDescription& session_td, | 2325 const TransportDescription& session_td, |
2292 const RtpHeaderExtensions& session_extmaps, | 2326 const RtpHeaderExtensions& session_extmaps, |
2293 size_t* pos, | 2327 size_t* pos, |
| 2328 const rtc::SocketAddress& session_connection_addr, |
2294 cricket::SessionDescription* desc, | 2329 cricket::SessionDescription* desc, |
2295 std::vector<JsepIceCandidate*>* candidates, | 2330 std::vector<JsepIceCandidate*>* candidates, |
2296 SdpParseError* error) { | 2331 SdpParseError* error) { |
2297 RTC_DCHECK(desc != NULL); | 2332 RTC_DCHECK(desc != NULL); |
2298 std::string line; | 2333 std::string line; |
2299 int mline_index = -1; | 2334 int mline_index = -1; |
2300 | 2335 |
2301 // Zero or more media descriptions | 2336 // Zero or more media descriptions |
2302 // RFC 4566 | 2337 // RFC 4566 |
2303 // m=<media> <port> <proto> <fmt> | 2338 // m=<media> <port> <proto> <fmt> |
2304 while (GetLineWithType(message, pos, &line, kLineTypeMedia)) { | 2339 while (GetLineWithType(message, pos, &line, kLineTypeMedia)) { |
2305 ++mline_index; | 2340 ++mline_index; |
2306 | 2341 |
2307 std::vector<std::string> fields; | 2342 std::vector<std::string> fields; |
2308 rtc::split(line.substr(kLinePrefixLength), | 2343 rtc::split(line.substr(kLinePrefixLength), |
2309 kSdpDelimiterSpace, &fields); | 2344 kSdpDelimiterSpace, &fields); |
2310 | 2345 |
2311 const size_t expected_min_fields = 4; | 2346 const size_t expected_min_fields = 4; |
2312 if (fields.size() < expected_min_fields) { | 2347 if (fields.size() < expected_min_fields) { |
2313 return ParseFailedExpectMinFieldNum(line, expected_min_fields, error); | 2348 return ParseFailedExpectMinFieldNum(line, expected_min_fields, error); |
2314 } | 2349 } |
2315 bool port_rejected = false; | 2350 bool port_rejected = false; |
2316 // RFC 3264 | 2351 // RFC 3264 |
2317 // To reject an offered stream, the port number in the corresponding stream | 2352 // To reject an offered stream, the port number in the corresponding stream |
2318 // in the answer MUST be set to zero. | 2353 // in the answer MUST be set to zero. |
2319 if (fields[1] == kMediaPortRejected) { | 2354 if (fields[1] == kMediaPortRejected) { |
2320 port_rejected = true; | 2355 port_rejected = true; |
2321 } | 2356 } |
2322 | 2357 |
| 2358 int port = 0; |
| 2359 if (!rtc::FromString<int>(fields[1], &port) || !IsValidPort(port)) { |
| 2360 return ParseFailed(line, "The port number is invalid", error); |
| 2361 } |
2323 std::string protocol = fields[2]; | 2362 std::string protocol = fields[2]; |
2324 | 2363 |
2325 // <fmt> | 2364 // <fmt> |
2326 std::vector<int> payload_types; | 2365 std::vector<int> payload_types; |
2327 if (IsRtp(protocol)) { | 2366 if (IsRtp(protocol)) { |
2328 for (size_t j = 3 ; j < fields.size(); ++j) { | 2367 for (size_t j = 3 ; j < fields.size(); ++j) { |
2329 // TODO(wu): Remove when below bug is fixed. | 2368 // TODO(wu): Remove when below bug is fixed. |
2330 // https://bugzilla.mozilla.org/show_bug.cgi?id=996329 | 2369 // https://bugzilla.mozilla.org/show_bug.cgi?id=996329 |
2331 if (fields[j].empty() && j == fields.size() - 1) { | 2370 if (fields[j].empty() && j == fields.size() - 1) { |
2332 continue; | 2371 continue; |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2413 return ParseFailed("", | 2452 return ParseFailed("", |
2414 "The a=extmap MUST be either all session level or " | 2453 "The a=extmap MUST be either all session level or " |
2415 "all media level.", | 2454 "all media level.", |
2416 error); | 2455 error); |
2417 } | 2456 } |
2418 for (size_t i = 0; i < session_extmaps.size(); ++i) { | 2457 for (size_t i = 0; i < session_extmaps.size(); ++i) { |
2419 content->AddRtpHeaderExtension(session_extmaps[i]); | 2458 content->AddRtpHeaderExtension(session_extmaps[i]); |
2420 } | 2459 } |
2421 } | 2460 } |
2422 content->set_protocol(protocol); | 2461 content->set_protocol(protocol); |
| 2462 |
| 2463 // Use the session level connection address if the media level addresses are |
| 2464 // not specified. |
| 2465 rtc::SocketAddress address; |
| 2466 address = content->connection_address().IsNil() |
| 2467 ? session_connection_addr |
| 2468 : content->connection_address(); |
| 2469 address.SetPort(port); |
| 2470 content->set_connection_address(address); |
| 2471 |
2423 desc->AddContent(content_name, | 2472 desc->AddContent(content_name, |
2424 IsDtlsSctp(protocol) ? cricket::NS_JINGLE_DRAFT_SCTP | 2473 IsDtlsSctp(protocol) ? cricket::NS_JINGLE_DRAFT_SCTP |
2425 : cricket::NS_JINGLE_RTP, | 2474 : cricket::NS_JINGLE_RTP, |
2426 content_rejected, bundle_only, content.release()); | 2475 content_rejected, bundle_only, content.release()); |
2427 // Create TransportInfo with the media level "ice-pwd" and "ice-ufrag". | 2476 // Create TransportInfo with the media level "ice-pwd" and "ice-ufrag". |
2428 TransportInfo transport_info(content_name, transport); | 2477 TransportInfo transport_info(content_name, transport); |
2429 | 2478 |
2430 if (!desc->AddTransportInfo(transport_info)) { | 2479 if (!desc->AddTransportInfo(transport_info)) { |
2431 std::ostringstream description; | 2480 std::ostringstream description; |
2432 description << "Failed to AddTransportInfo with content name: " | 2481 description << "Failed to AddTransportInfo with content name: " |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2661 return ParseFailed(line, description.str(), error); | 2710 return ParseFailed(line, description.str(), error); |
2662 } | 2711 } |
2663 // Prevent integer overflow. | 2712 // Prevent integer overflow. |
2664 b = std::min(b, INT_MAX / 1000); | 2713 b = std::min(b, INT_MAX / 1000); |
2665 media_desc->set_bandwidth(b * 1000); | 2714 media_desc->set_bandwidth(b * 1000); |
2666 } | 2715 } |
2667 } | 2716 } |
2668 continue; | 2717 continue; |
2669 } | 2718 } |
2670 | 2719 |
| 2720 // Parse the media level connection data. |
| 2721 if (IsLineType(line, kLineTypeConnection)) { |
| 2722 rtc::SocketAddress addr; |
| 2723 if (!ParseConnectionData(line, &addr, error)) { |
| 2724 return false; |
| 2725 } |
| 2726 media_desc->set_connection_address(addr); |
| 2727 continue; |
| 2728 } |
| 2729 |
2671 if (!IsLineType(line, kLineTypeAttributes)) { | 2730 if (!IsLineType(line, kLineTypeAttributes)) { |
2672 // TODO: Handle other lines if needed. | 2731 // TODO: Handle other lines if needed. |
2673 LOG(LS_INFO) << "Ignored line: " << line; | 2732 LOG(LS_INFO) << "Ignored line: " << line; |
2674 continue; | 2733 continue; |
2675 } | 2734 } |
2676 | 2735 |
2677 // Handle attributes common to SCTP and RTP. | 2736 // Handle attributes common to SCTP and RTP. |
2678 if (HasAttribute(line, kAttributeMid)) { | 2737 if (HasAttribute(line, kAttributeMid)) { |
2679 // RFC 3388 | 2738 // RFC 3388 |
2680 // mid-attribute = "a=mid:" identification-tag | 2739 // mid-attribute = "a=mid:" identification-tag |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3234 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( | 3293 UpdateCodec<AudioContentDescription, cricket::AudioCodec>( |
3235 media_desc, payload_type, feedback_param); | 3294 media_desc, payload_type, feedback_param); |
3236 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { | 3295 } else if (media_type == cricket::MEDIA_TYPE_VIDEO) { |
3237 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( | 3296 UpdateCodec<VideoContentDescription, cricket::VideoCodec>( |
3238 media_desc, payload_type, feedback_param); | 3297 media_desc, payload_type, feedback_param); |
3239 } | 3298 } |
3240 return true; | 3299 return true; |
3241 } | 3300 } |
3242 | 3301 |
3243 } // namespace webrtc | 3302 } // namespace webrtc |
OLD | NEW |