mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9631320c07
--HG-- rename : dom/system/b2g/AudioManager.cpp => dom/system/gonk/AudioManager.cpp rename : dom/system/b2g/AudioManager.h => dom/system/gonk/AudioManager.h rename : dom/system/b2g/GonkGPSGeolocationProvider.cpp => dom/system/gonk/GonkGPSGeolocationProvider.cpp rename : dom/system/b2g/GonkGPSGeolocationProvider.h => dom/system/gonk/GonkGPSGeolocationProvider.h rename : dom/system/b2g/Makefile.in => dom/system/gonk/Makefile.in rename : dom/system/b2g/RadioInterfaceLayer.js => dom/system/gonk/RadioInterfaceLayer.js rename : dom/system/b2g/RadioInterfaceLayer.manifest => dom/system/gonk/RadioInterfaceLayer.manifest rename : dom/system/b2g/SystemWorkerManager.cpp => dom/system/gonk/SystemWorkerManager.cpp rename : dom/system/b2g/SystemWorkerManager.h => dom/system/gonk/SystemWorkerManager.h rename : dom/system/b2g/net_worker.js => dom/system/gonk/net_worker.js rename : dom/system/b2g/nsIAudioManager.idl => dom/system/gonk/nsIAudioManager.idl rename : dom/system/b2g/nsIRadioInterfaceLayer.idl => dom/system/gonk/nsIRadioInterfaceLayer.idl rename : dom/system/b2g/nsIWorkerHolder.idl => dom/system/gonk/nsIWorkerHolder.idl rename : dom/system/b2g/nsRadioInterfaceLayer.h => dom/system/gonk/nsRadioInterfaceLayer.h rename : dom/system/b2g/ril_consts.js => dom/system/gonk/ril_consts.js rename : dom/system/b2g/ril_worker.js => dom/system/gonk/ril_worker.js rename : dom/system/b2g/systemlibs.js => dom/system/gonk/systemlibs.js rename : dom/system/b2g/tests/header_helpers.js => dom/system/gonk/tests/header_helpers.js rename : dom/system/b2g/tests/test_ril_worker_buf.js => dom/system/gonk/tests/test_ril_worker_buf.js rename : dom/system/b2g/tests/test_ril_worker_sms.js => dom/system/gonk/tests/test_ril_worker_sms.js rename : dom/system/b2g/tests/xpcshell.ini => dom/system/gonk/tests/xpcshell.ini
140 lines
3.9 KiB
JavaScript
140 lines
3.9 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
"use strict";
|
|
|
|
const DEBUG = true;
|
|
|
|
importScripts("systemlibs.js");
|
|
|
|
/**
|
|
* Some reusable data that we pass to C.
|
|
*/
|
|
let ints = ctypes.int.array(8)();
|
|
|
|
/**
|
|
* Convert integer representation of an IP address to the string
|
|
* representation.
|
|
*
|
|
* @param ip
|
|
* IP address in number format.
|
|
*/
|
|
function ipToString(ip) {
|
|
return ((ip >> 0) & 0xFF) + "." +
|
|
((ip >> 8) & 0xFF) + "." +
|
|
((ip >> 16) & 0xFF) + "." +
|
|
((ip >> 24) & 0xFF);
|
|
}
|
|
|
|
/**
|
|
* Convert string representation of an IP address to the integer
|
|
* representation.
|
|
*
|
|
* @param string
|
|
* String containing the IP address.
|
|
*/
|
|
function stringToIP(string) {
|
|
let ip = 0;
|
|
let start, end = -1;
|
|
for (let i = 0; i < 4; i++) {
|
|
start = end + 1;
|
|
end = string.indexOf(".", start);
|
|
if (end == -1) {
|
|
end = string.length;
|
|
}
|
|
let num = parseInt(string.slice(start, end), 10);
|
|
if (isNaN(num)) {
|
|
return null;
|
|
}
|
|
ip |= num << (i * 8);
|
|
}
|
|
return ip;
|
|
}
|
|
|
|
/**
|
|
* Get network interface properties from the system property table.
|
|
*
|
|
* @param ifname
|
|
* Name of the network interface.
|
|
*/
|
|
function getIFProperties(ifname) {
|
|
let gateway_str = libcutils.property_get("net." + ifname + ".gw");
|
|
return {
|
|
ifname: ifname,
|
|
gateway: stringToIP(gateway_str),
|
|
gateway_str: gateway_str,
|
|
dns1_str: libcutils.property_get("net." + ifname + ".dns1"),
|
|
dns2_str: libcutils.property_get("net." + ifname + ".dns2"),
|
|
};
|
|
}
|
|
|
|
/**
|
|
* Routines accessible to the main thread.
|
|
*/
|
|
|
|
/**
|
|
* Dispatch a message from the main thread to a function.
|
|
*/
|
|
self.onmessage = function onmessage(event) {
|
|
let message = event.data;
|
|
if (DEBUG) debug("received message: " + JSON.stringify(message));
|
|
let ret = self[message.cmd](message);
|
|
postMessage({id: message.id, ret: ret});
|
|
};
|
|
|
|
/**
|
|
* Set default route and DNS servers for given network interface.
|
|
*/
|
|
function setDefaultRouteAndDNS(options) {
|
|
if (!options.gateway || !options.dns1_str) {
|
|
options = getIFProperties(options.ifname);
|
|
}
|
|
|
|
libnetutils.ifc_set_default_route(options.ifname, options.gateway);
|
|
libcutils.property_set("net.dns1", options.dns1_str);
|
|
libcutils.property_set("net.dns2", options.dns2_str);
|
|
|
|
// Bump the DNS change property.
|
|
let dnschange = libcutils.property_get("net.dnschange", "0");
|
|
libcutils.property_set("net.dnschange", (parseInt(dnschange, 10) + 1).toString());
|
|
}
|
|
|
|
/**
|
|
* Run DHCP and set default route and DNS servers for a given
|
|
* network interface.
|
|
*/
|
|
function runDHCPAndSetDefaultRouteAndDNS(options) {
|
|
let rv = libnetutils.dhcp_do_request(options.ifname,
|
|
ints.addressOfElement(0),
|
|
ints.addressOfElement(1),
|
|
ints.addressOfElement(2),
|
|
ints.addressOfElement(3),
|
|
ints.addressOfElement(4),
|
|
ints.addressOfElement(5),
|
|
ints.addressOfElement(6));
|
|
let options = {
|
|
ifname: options.ifname,
|
|
ipaddr: ints[0],
|
|
mask: ints[2],
|
|
gateway: ints[1],
|
|
dns1: ints[3],
|
|
dns2: ints[4],
|
|
dhcpServer: ints[5],
|
|
dns1_str: ipToString(ints[3]),
|
|
dns2_str: ipToString(ints[4]),
|
|
dhcpLease: ints[6]
|
|
};
|
|
|
|
//TODO this could be race-y... by the time we've finished the DHCP request
|
|
// and are now fudging with the routes, another network interface may have
|
|
// come online that's preferred...
|
|
setDefaultRouteAndDNS(options);
|
|
}
|
|
|
|
if (!this.debug) {
|
|
this.debug = function debug(message) {
|
|
dump("Network Worker: " + message + "\n");
|
|
};
|
|
}
|