2018-02-28 19:55:11 +00:00
|
|
|
// @flow
|
|
|
|
|
2017-01-29 02:13:54 +00:00
|
|
|
import { NativeModules } from 'react-native';
|
2017-01-15 18:09:52 +00:00
|
|
|
import { RTCPeerConnection, RTCSessionDescription } from 'react-native-webrtc';
|
2016-12-17 10:03:10 +00:00
|
|
|
|
2017-12-19 19:34:56 +00:00
|
|
|
/* eslint-disable no-unused-vars */
|
|
|
|
|
|
|
|
// Address families.
|
|
|
|
const AF_INET6 = 30; /* IPv6 */
|
|
|
|
|
|
|
|
// Protocols (RFC 1700)
|
|
|
|
const IPPROTO_TCP = 6; /* tcp */
|
|
|
|
const IPPROTO_UDP = 17; /* user datagram protocol */
|
|
|
|
|
|
|
|
// Protocol families, same as address families for now.
|
|
|
|
const PF_INET6 = AF_INET6;
|
|
|
|
|
|
|
|
const SOCK_DGRAM = 2; /* datagram socket */
|
|
|
|
const SOCK_STREAM = 1; /* stream socket */
|
|
|
|
|
|
|
|
/* eslint-enable no-unused-vars */
|
|
|
|
|
2016-12-17 10:03:10 +00:00
|
|
|
// XXX At the time of this writing extending RTCPeerConnection using ES6 'class'
|
|
|
|
// and 'extends' causes a runtime error related to the attempt to define the
|
|
|
|
// onaddstream property setter. The error mentions that babelHelpers.set is
|
|
|
|
// undefined which appears to be a thing inside React Native's packager. As a
|
|
|
|
// workaround, extend using the pre-ES6 way.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The RTCPeerConnection provided by react-native-webrtc fires onaddstream
|
|
|
|
* before it remembers remotedescription (and thus makes it available to API
|
|
|
|
* clients). Because that appears to be a problem for lib-jitsi-meet which has
|
2018-11-08 12:25:02 +00:00
|
|
|
* been successfully running on Chrome, Firefox and others for a very long
|
2018-06-27 09:43:13 +00:00
|
|
|
* time, attempt to meet its expectations (by extending RTCPPeerConnection).
|
2016-12-17 10:03:10 +00:00
|
|
|
*
|
|
|
|
* @class
|
|
|
|
*/
|
2018-02-28 19:55:11 +00:00
|
|
|
export default function _RTCPeerConnection(...args: any[]) {
|
2016-12-17 10:03:10 +00:00
|
|
|
|
2017-10-02 23:08:07 +00:00
|
|
|
/* eslint-disable indent, no-invalid-this */
|
2016-12-17 10:03:10 +00:00
|
|
|
|
|
|
|
RTCPeerConnection.apply(this, args);
|
|
|
|
|
|
|
|
this.onaddstream = (...args) => // eslint-disable-line no-shadow
|
|
|
|
(this._onaddstreamQueue
|
|
|
|
? this._queueOnaddstream
|
|
|
|
: this._invokeOnaddstream)
|
|
|
|
.apply(this, args);
|
|
|
|
|
|
|
|
// Shadow RTCPeerConnection's onaddstream but after _RTCPeerConnection has
|
|
|
|
// assigned to the property in question. Defining the property on
|
|
|
|
// _RTCPeerConnection's prototype may (or may not, I don't know) work but I
|
|
|
|
// don't want to try because the following approach appears to work and I
|
|
|
|
// understand it.
|
2018-02-28 19:55:11 +00:00
|
|
|
|
|
|
|
// $FlowFixMe
|
2016-12-17 10:03:10 +00:00
|
|
|
Object.defineProperty(this, 'onaddstream', {
|
|
|
|
configurable: true,
|
|
|
|
enumerable: true,
|
|
|
|
get() {
|
|
|
|
return this._onaddstream;
|
|
|
|
},
|
|
|
|
set(value) {
|
|
|
|
this._onaddstream = value;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2017-10-02 23:08:07 +00:00
|
|
|
/* eslint-enable indent, no-invalid-this */
|
2016-12-17 10:03:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_RTCPeerConnection.prototype = Object.create(RTCPeerConnection.prototype);
|
|
|
|
_RTCPeerConnection.prototype.constructor = _RTCPeerConnection;
|
|
|
|
|
|
|
|
_RTCPeerConnection.prototype._invokeOnaddstream = function(...args) {
|
|
|
|
const onaddstream = this._onaddstream;
|
|
|
|
|
|
|
|
return onaddstream && onaddstream.apply(this, args);
|
|
|
|
};
|
|
|
|
|
|
|
|
_RTCPeerConnection.prototype._invokeQueuedOnaddstream = function(q) {
|
|
|
|
q && q.forEach(args => {
|
|
|
|
try {
|
|
|
|
this._invokeOnaddstream(...args);
|
|
|
|
} catch (e) {
|
|
|
|
// TODO Determine whether the combination of the standard
|
|
|
|
// setRemoteDescription and onaddstream results in a similar
|
|
|
|
// swallowing of errors.
|
2020-05-06 09:22:09 +00:00
|
|
|
console.error(e);
|
2016-12-17 10:03:10 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
_RTCPeerConnection.prototype._queueOnaddstream = function(...args) {
|
|
|
|
this._onaddstreamQueue.push(Array.from(args));
|
|
|
|
};
|
|
|
|
|
2018-08-17 13:43:53 +00:00
|
|
|
_RTCPeerConnection.prototype.setRemoteDescription = function(description) {
|
2016-12-17 10:03:10 +00:00
|
|
|
|
|
|
|
return (
|
2018-08-17 13:43:53 +00:00
|
|
|
_synthesizeIPv6Addresses(description)
|
2016-12-17 10:03:10 +00:00
|
|
|
.catch(reason => {
|
2020-05-06 09:22:09 +00:00
|
|
|
reason && console.error(reason);
|
2016-12-17 10:03:10 +00:00
|
|
|
|
2018-08-17 13:43:53 +00:00
|
|
|
return description;
|
2016-12-17 10:03:10 +00:00
|
|
|
})
|
|
|
|
.then(value => _setRemoteDescription.bind(this)(value)));
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adapts react-native-webrtc's {@link RTCPeerConnection#setRemoteDescription}
|
|
|
|
* implementation which uses the deprecated, callback-based version to the
|
2017-10-01 06:35:19 +00:00
|
|
|
* {@code Promise}-based version.
|
2016-12-17 10:03:10 +00:00
|
|
|
*
|
2018-08-17 13:43:53 +00:00
|
|
|
* @param {RTCSessionDescription} description - The RTCSessionDescription
|
2016-12-17 10:03:10 +00:00
|
|
|
* which specifies the configuration of the remote end of the connection.
|
2017-01-28 23:28:13 +00:00
|
|
|
* @private
|
|
|
|
* @private
|
2016-12-17 10:03:10 +00:00
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
2018-08-17 13:43:53 +00:00
|
|
|
function _setRemoteDescription(description) {
|
2016-12-17 10:03:10 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
|
|
|
|
/* eslint-disable no-invalid-this */
|
|
|
|
|
|
|
|
// Ensure I'm not remembering onaddstream invocations from previous
|
|
|
|
// setRemoteDescription calls. I shouldn't be but... anyway.
|
|
|
|
this._onaddstreamQueue = [];
|
|
|
|
|
2018-08-17 13:43:53 +00:00
|
|
|
RTCPeerConnection.prototype.setRemoteDescription.call(this, description)
|
|
|
|
.then((...args) => {
|
2016-12-17 10:03:10 +00:00
|
|
|
let q;
|
|
|
|
|
|
|
|
try {
|
|
|
|
resolve(...args);
|
|
|
|
} finally {
|
|
|
|
q = this._onaddstreamQueue;
|
|
|
|
this._onaddstreamQueue = undefined;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._invokeQueuedOnaddstream(q);
|
2018-08-17 13:43:53 +00:00
|
|
|
}, (...args) => {
|
2016-12-17 10:03:10 +00:00
|
|
|
this._onaddstreamQueue = undefined;
|
|
|
|
|
|
|
|
reject(...args);
|
|
|
|
});
|
|
|
|
|
|
|
|
/* eslint-enable no-invalid-this */
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-04-03 16:28:31 +00:00
|
|
|
// XXX The function _synthesizeIPv6FromIPv4Address is not placed relative to the
|
|
|
|
// other functions in the file according to alphabetical sorting rule of the
|
|
|
|
// coding style. But eslint wants constants to be defined before they are used.
|
|
|
|
|
2016-12-17 10:03:10 +00:00
|
|
|
/**
|
2018-04-03 16:28:31 +00:00
|
|
|
* Synthesizes an IPv6 address from a specific IPv4 address.
|
|
|
|
*
|
|
|
|
* @param {string} ipv4 - The IPv4 address from which an IPv6 address is to be
|
|
|
|
* synthesized.
|
|
|
|
* @returns {Promise<?string>} A {@code Promise} which gets resolved with the
|
|
|
|
* IPv6 address synthesized from the specified {@code ipv4} or a falsy value to
|
|
|
|
* be treated as inability to synthesize an IPv6 address from the specified
|
|
|
|
* {@code ipv4}.
|
|
|
|
*/
|
|
|
|
const _synthesizeIPv6FromIPv4Address: string => Promise<?string> = (function() {
|
|
|
|
// POSIX.getaddrinfo
|
|
|
|
const { POSIX } = NativeModules;
|
|
|
|
|
|
|
|
if (POSIX) {
|
|
|
|
const { getaddrinfo } = POSIX;
|
|
|
|
|
|
|
|
if (typeof getaddrinfo === 'function') {
|
|
|
|
return ipv4 =>
|
|
|
|
getaddrinfo(/* hostname */ ipv4, /* servname */ undefined)
|
|
|
|
.then(([ { ai_addr: ipv6 } ]) => ipv6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// NAT64AddrInfo.getIPv6Address
|
|
|
|
const { NAT64AddrInfo } = NativeModules;
|
|
|
|
|
|
|
|
if (NAT64AddrInfo) {
|
|
|
|
const { getIPv6Address } = NAT64AddrInfo;
|
|
|
|
|
|
|
|
if (typeof getIPv6Address === 'function') {
|
|
|
|
return getIPv6Address;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// There's no POSIX.getaddrinfo or NAT64AddrInfo.getIPv6Address.
|
|
|
|
return () =>
|
|
|
|
Promise.reject(
|
|
|
|
'The impossible just happened! No POSIX.getaddrinfo or'
|
|
|
|
+ ' NAT64AddrInfo.getIPv6Address!');
|
|
|
|
})();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Synthesizes IPv6 addresses on iOS in order to support IPv6 NAT64 networks.
|
2016-12-17 10:03:10 +00:00
|
|
|
*
|
|
|
|
* @param {RTCSessionDescription} sdp - The RTCSessionDescription which
|
|
|
|
* specifies the configuration of the remote end of the connection.
|
2017-01-28 23:28:13 +00:00
|
|
|
* @private
|
2016-12-17 10:03:10 +00:00
|
|
|
* @returns {Promise}
|
|
|
|
*/
|
|
|
|
function _synthesizeIPv6Addresses(sdp) {
|
|
|
|
return (
|
|
|
|
new Promise(resolve => resolve(_synthesizeIPv6Addresses0(sdp)))
|
|
|
|
.then(({ ips, lines }) =>
|
|
|
|
Promise.all(Array.from(ips.values()))
|
|
|
|
.then(() => _synthesizeIPv6Addresses1(sdp, ips, lines))
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* eslint-disable max-depth */
|
|
|
|
|
|
|
|
/**
|
2017-12-19 19:34:56 +00:00
|
|
|
* Begins the asynchronous synthesis of IPv6 addresses.
|
2016-12-17 10:03:10 +00:00
|
|
|
*
|
|
|
|
* @param {RTCSessionDescription} sessionDescription - The RTCSessionDescription
|
|
|
|
* for which IPv6 addresses will be synthesized.
|
2017-01-28 23:28:13 +00:00
|
|
|
* @private
|
2016-12-17 10:03:10 +00:00
|
|
|
* @returns {{
|
|
|
|
* ips: Map,
|
|
|
|
* lines: Array
|
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
function _synthesizeIPv6Addresses0(sessionDescription) {
|
|
|
|
const sdp = sessionDescription.sdp;
|
|
|
|
let start = 0;
|
|
|
|
const lines = [];
|
|
|
|
const ips = new Map();
|
|
|
|
|
|
|
|
do {
|
|
|
|
const end = sdp.indexOf('\r\n', start);
|
|
|
|
let line;
|
|
|
|
|
|
|
|
if (end === -1) {
|
|
|
|
line = sdp.substring(start);
|
|
|
|
|
|
|
|
// Break out of the loop at the end of the iteration.
|
|
|
|
start = undefined;
|
|
|
|
} else {
|
|
|
|
line = sdp.substring(start, end);
|
|
|
|
start = end + 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (line.startsWith('a=candidate:')) {
|
|
|
|
const candidate = line.split(' ');
|
|
|
|
|
|
|
|
if (candidate.length >= 10 && candidate[6] === 'typ') {
|
|
|
|
const ip4s = [ candidate[4] ];
|
|
|
|
let abort = false;
|
|
|
|
|
|
|
|
for (let i = 8; i < candidate.length; ++i) {
|
|
|
|
if (candidate[i] === 'raddr') {
|
|
|
|
ip4s.push(candidate[++i]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const ip of ip4s) {
|
|
|
|
if (ip.indexOf(':') === -1) {
|
|
|
|
ips.has(ip)
|
|
|
|
|| ips.set(ip, new Promise((resolve, reject) => {
|
|
|
|
const v = ips.get(ip);
|
|
|
|
|
|
|
|
if (v && typeof v === 'string') {
|
|
|
|
resolve(v);
|
|
|
|
} else {
|
2018-04-03 16:28:31 +00:00
|
|
|
_synthesizeIPv6FromIPv4Address(ip).then(
|
|
|
|
value => {
|
|
|
|
if (!value
|
|
|
|
|| value.indexOf(':') === -1
|
2016-12-17 10:03:10 +00:00
|
|
|
|| value === ips.get(ip)) {
|
|
|
|
ips.delete(ip);
|
|
|
|
} else {
|
|
|
|
ips.set(ip, value);
|
|
|
|
}
|
|
|
|
resolve(value);
|
|
|
|
},
|
|
|
|
reject);
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
} else {
|
|
|
|
abort = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (abort) {
|
|
|
|
ips.clear();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
line = candidate;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lines.push(line);
|
|
|
|
} while (start);
|
|
|
|
|
|
|
|
return {
|
|
|
|
ips,
|
|
|
|
lines
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/* eslint-enable max-depth */
|
|
|
|
|
|
|
|
/**
|
2017-12-20 09:58:49 +00:00
|
|
|
* Completes the asynchronous synthesis of IPv6 addresses.
|
2016-12-17 10:03:10 +00:00
|
|
|
*
|
|
|
|
* @param {RTCSessionDescription} sessionDescription - The RTCSessionDescription
|
|
|
|
* for which IPv6 addresses are being synthesized.
|
|
|
|
* @param {Map} ips - A Map of IPv4 addresses found in the specified
|
|
|
|
* sessionDescription to synthesized IPv6 addresses.
|
|
|
|
* @param {Array} lines - The lines of the specified sessionDescription.
|
2017-01-28 23:28:13 +00:00
|
|
|
* @private
|
2016-12-17 10:03:10 +00:00
|
|
|
* @returns {RTCSessionDescription} A RTCSessionDescription that represents the
|
|
|
|
* result of the synthesis of IPv6 addresses.
|
|
|
|
*/
|
|
|
|
function _synthesizeIPv6Addresses1(sessionDescription, ips, lines) {
|
|
|
|
if (ips.size === 0) {
|
|
|
|
return sessionDescription;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (let l = 0; l < lines.length; ++l) {
|
|
|
|
const candidate = lines[l];
|
|
|
|
|
|
|
|
if (typeof candidate !== 'string') {
|
|
|
|
let ip4 = candidate[4];
|
|
|
|
let ip6 = ips.get(ip4);
|
|
|
|
|
|
|
|
ip6 && (candidate[4] = ip6);
|
|
|
|
|
|
|
|
for (let i = 8; i < candidate.length; ++i) {
|
|
|
|
if (candidate[i] === 'raddr') {
|
|
|
|
ip4 = candidate[++i];
|
|
|
|
(ip6 = ips.get(ip4)) && (candidate[i] = ip6);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lines[l] = candidate.join(' ');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new RTCSessionDescription({
|
|
|
|
sdp: lines.join('\r\n'),
|
|
|
|
type: sessionDescription.type
|
|
|
|
});
|
|
|
|
}
|