2015-06-03 15:04:00 +03:00
|
|
|
/* jshint moz: true, esnext: true */
|
|
|
|
/* 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 Cc = Components.classes;
|
|
|
|
const Ci = Components.interfaces;
|
|
|
|
const Cu = Components.utils;
|
|
|
|
const Cr = Components.results;
|
|
|
|
|
2015-10-17 00:04:37 +03:00
|
|
|
Cu.import("resource://gre/modules/AppConstants.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Preferences.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Promise.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
Cu.import("resource://gre/modules/Timer.jsm");
|
|
|
|
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
|
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
const {PushDB} = Cu.import("resource://gre/modules/PushDB.jsm");
|
2015-06-26 00:52:57 +03:00
|
|
|
const {PushRecord} = Cu.import("resource://gre/modules/PushRecord.jsm");
|
2015-09-17 15:08:50 +03:00
|
|
|
const {
|
|
|
|
PushCrypto,
|
2015-12-04 00:24:47 +03:00
|
|
|
getCryptoParams,
|
2015-09-17 15:08:50 +03:00
|
|
|
} = Cu.import("resource://gre/modules/PushCrypto.jsm");
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-10-17 00:04:37 +03:00
|
|
|
if (AppConstants.MOZ_B2G) {
|
|
|
|
XPCOMUtils.defineLazyServiceGetter(this, "gPowerManagerService",
|
|
|
|
"@mozilla.org/power/powermanagerservice;1",
|
|
|
|
"nsIPowerManagerService");
|
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
const kPUSHWSDB_DB_NAME = "pushapi";
|
2015-09-17 15:08:50 +03:00
|
|
|
const kPUSHWSDB_DB_VERSION = 5; // Change this if the IndexedDB format changes
|
2015-06-03 15:05:00 +03:00
|
|
|
const kPUSHWSDB_STORE_NAME = "pushapi";
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
const kUDP_WAKEUP_WS_STATUS_CODE = 4774; // WebSocket Close status code sent
|
|
|
|
// by server to signal that it can
|
|
|
|
// wake client up using UDP.
|
|
|
|
|
2016-03-28 22:29:25 +03:00
|
|
|
// Maps ack statuses, unsubscribe reasons, and delivery error reasons to codes
|
|
|
|
// included in request payloads.
|
|
|
|
const kACK_STATUS_TO_CODE = {
|
|
|
|
[Ci.nsIPushErrorReporter.ACK_DELIVERED]: 100,
|
|
|
|
[Ci.nsIPushErrorReporter.ACK_DECRYPTION_ERROR]: 101,
|
|
|
|
[Ci.nsIPushErrorReporter.ACK_NOT_DELIVERED]: 102,
|
|
|
|
};
|
|
|
|
|
|
|
|
const kUNREGISTER_REASON_TO_CODE = {
|
|
|
|
[Ci.nsIPushErrorReporter.UNSUBSCRIBE_MANUAL]: 200,
|
|
|
|
[Ci.nsIPushErrorReporter.UNSUBSCRIBE_QUOTA_EXCEEDED]: 201,
|
|
|
|
[Ci.nsIPushErrorReporter.UNSUBSCRIBE_PERMISSION_REVOKED]: 202,
|
|
|
|
};
|
|
|
|
|
|
|
|
const kDELIVERY_REASON_TO_CODE = {
|
|
|
|
[Ci.nsIPushErrorReporter.DELIVERY_UNCAUGHT_EXCEPTION]: 301,
|
|
|
|
[Ci.nsIPushErrorReporter.DELIVERY_UNHANDLED_REJECTION]: 302,
|
|
|
|
[Ci.nsIPushErrorReporter.DELIVERY_INTERNAL_ERROR]: 303,
|
|
|
|
};
|
|
|
|
|
2015-06-03 15:04:00 +03:00
|
|
|
const prefs = new Preferences("dom.push.");
|
|
|
|
|
|
|
|
this.EXPORTED_SYMBOLS = ["PushServiceWebSocket"];
|
|
|
|
|
2015-11-10 00:58:32 +03:00
|
|
|
XPCOMUtils.defineLazyGetter(this, "console", () => {
|
|
|
|
let {ConsoleAPI} = Cu.import("resource://gre/modules/Console.jsm", {});
|
|
|
|
return new ConsoleAPI({
|
|
|
|
maxLogLevelPref: "dom.push.loglevel",
|
|
|
|
prefix: "PushServiceWebSocket",
|
|
|
|
});
|
|
|
|
});
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A proxy between the PushService and the WebSocket. The listener is used so
|
|
|
|
* that the PushService can silence messages from the WebSocket by setting
|
|
|
|
* PushWebSocketListener._pushService to null. This is required because
|
|
|
|
* a WebSocket can continue to send messages or errors after it has been
|
|
|
|
* closed but the PushService may not be interested in these. It's easier to
|
|
|
|
* stop listening than to have checks at specific points.
|
|
|
|
*/
|
2015-06-03 15:05:00 +03:00
|
|
|
var PushWebSocketListener = function(pushService) {
|
2015-06-03 15:04:00 +03:00
|
|
|
this._pushService = pushService;
|
2015-06-03 15:05:00 +03:00
|
|
|
};
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
PushWebSocketListener.prototype = {
|
2015-06-03 15:04:00 +03:00
|
|
|
onStart: function(context) {
|
2015-06-03 15:05:00 +03:00
|
|
|
if (!this._pushService) {
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
this._pushService._wsOnStart(context);
|
|
|
|
},
|
|
|
|
|
|
|
|
onStop: function(context, statusCode) {
|
2015-06-03 15:05:00 +03:00
|
|
|
if (!this._pushService) {
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
this._pushService._wsOnStop(context, statusCode);
|
|
|
|
},
|
|
|
|
|
|
|
|
onAcknowledge: function(context, size) {
|
|
|
|
// EMPTY
|
|
|
|
},
|
|
|
|
|
|
|
|
onBinaryMessageAvailable: function(context, message) {
|
|
|
|
// EMPTY
|
|
|
|
},
|
|
|
|
|
|
|
|
onMessageAvailable: function(context, message) {
|
2015-06-03 15:05:00 +03:00
|
|
|
if (!this._pushService) {
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
this._pushService._wsOnMessageAvailable(context, message);
|
|
|
|
},
|
|
|
|
|
|
|
|
onServerClose: function(context, aStatusCode, aReason) {
|
2015-06-03 15:05:00 +03:00
|
|
|
if (!this._pushService) {
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
this._pushService._wsOnServerClose(context, aStatusCode, aReason);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// websocket states
|
|
|
|
// websocket is off
|
|
|
|
const STATE_SHUT_DOWN = 0;
|
|
|
|
// Websocket has been opened on client side, waiting for successful open.
|
|
|
|
// (_wsOnStart)
|
|
|
|
const STATE_WAITING_FOR_WS_START = 1;
|
|
|
|
// Websocket opened, hello sent, waiting for server reply (_handleHelloReply).
|
|
|
|
const STATE_WAITING_FOR_HELLO = 2;
|
|
|
|
// Websocket operational, handshake completed, begin protocol messaging.
|
|
|
|
const STATE_READY = 3;
|
|
|
|
|
|
|
|
this.PushServiceWebSocket = {
|
|
|
|
_mainPushService: null,
|
2015-06-03 15:05:00 +03:00
|
|
|
_serverURI: null,
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
newPushDB: function() {
|
|
|
|
return new PushDB(kPUSHWSDB_DB_NAME,
|
|
|
|
kPUSHWSDB_DB_VERSION,
|
|
|
|
kPUSHWSDB_STORE_NAME,
|
2015-06-26 00:52:57 +03:00
|
|
|
"channelID",
|
|
|
|
PushRecordWebSocket);
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
2015-06-03 15:05:00 +03:00
|
|
|
|
2015-10-27 11:13:00 +03:00
|
|
|
serviceType: function() {
|
|
|
|
return "WebSocket";
|
|
|
|
},
|
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
disconnect: function() {
|
2015-06-03 15:04:00 +03:00
|
|
|
this._shutdownWS();
|
|
|
|
},
|
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
observe: function(aSubject, aTopic, aData) {
|
2016-02-04 02:27:34 +03:00
|
|
|
if (aTopic == "nsPref:changed" && aData == "dom.push.userAgentID") {
|
|
|
|
this._onUAIDChanged();
|
|
|
|
} else if (aTopic == "timer-callback") {
|
|
|
|
this._onTimerFired(aSubject);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handles a UAID change. Unlike reconnects, we cancel all pending requests
|
|
|
|
* after disconnecting. Existing subscriptions stored in IndexedDB will be
|
|
|
|
* dropped on reconnect.
|
|
|
|
*/
|
|
|
|
_onUAIDChanged() {
|
|
|
|
console.debug("onUAIDChanged()");
|
|
|
|
|
|
|
|
this._shutdownWS();
|
|
|
|
this._startBackoffTimer();
|
|
|
|
},
|
|
|
|
|
|
|
|
/** Handles a ping, backoff, or request timeout timer event. */
|
|
|
|
_onTimerFired(timer) {
|
|
|
|
console.debug("onTimerFired()");
|
|
|
|
|
|
|
|
if (timer == this._pingTimer) {
|
|
|
|
this._sendPing();
|
|
|
|
return;
|
|
|
|
}
|
2015-06-03 15:05:00 +03:00
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
if (timer == this._backoffTimer) {
|
|
|
|
console.debug("onTimerFired: Reconnecting after backoff");
|
|
|
|
this._beginWSSetup();
|
|
|
|
return;
|
|
|
|
}
|
2016-02-04 02:27:34 +03:00
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
if (timer == this._requestTimeoutTimer) {
|
|
|
|
this._timeOutRequests();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sends a ping to the server. Bypasses the request queue, but starts the
|
|
|
|
* request timeout timer. If the socket is already closed, or the server
|
|
|
|
* does not respond within the timeout, the client will reconnect.
|
|
|
|
*/
|
|
|
|
_sendPing() {
|
|
|
|
console.debug("sendPing()");
|
2016-02-04 02:27:34 +03:00
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
this._startRequestTimeoutTimer();
|
|
|
|
try {
|
|
|
|
this._wsSendMessage({});
|
|
|
|
this._lastPingTime = Date.now();
|
|
|
|
} catch (e) {
|
|
|
|
console.debug("sendPing: Error sending ping", e);
|
|
|
|
this._reconnect();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/** Times out any pending requests. */
|
|
|
|
_timeOutRequests() {
|
|
|
|
console.debug("timeOutRequests()");
|
|
|
|
|
|
|
|
if (!this._hasPendingRequests()) {
|
|
|
|
// Cancel the repeating timer and exit early if we aren't waiting for
|
|
|
|
// pongs or requests.
|
|
|
|
this._requestTimeoutTimer.cancel();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let now = Date.now();
|
|
|
|
|
|
|
|
// Set to true if at least one request timed out, or we're still waiting
|
|
|
|
// for a pong after the request timeout.
|
|
|
|
let requestTimedOut = false;
|
|
|
|
|
|
|
|
if (this._lastPingTime > 0 &&
|
|
|
|
now - this._lastPingTime > this._requestTimeout) {
|
|
|
|
|
|
|
|
console.debug("timeOutRequests: Did not receive pong in time");
|
|
|
|
requestTimedOut = true;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
for (let [channelID, request] of this._registerRequests) {
|
|
|
|
let duration = now - request.ctime;
|
|
|
|
// If any of the registration requests time out, all the ones after it
|
|
|
|
// also made to fail, since we are going to be disconnecting the
|
|
|
|
// socket.
|
|
|
|
requestTimedOut |= duration > this._requestTimeout;
|
2015-06-03 15:05:00 +03:00
|
|
|
if (requestTimedOut) {
|
2016-02-04 02:27:34 +03:00
|
|
|
request.reject(new Error(
|
|
|
|
"Register request timed out for channel ID " + channelID));
|
|
|
|
|
|
|
|
this._registerRequests.delete(channelID);
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
2016-02-04 02:27:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// The most likely reason for a pong or registration request timing out is
|
|
|
|
// that the socket has disconnected. Best to reconnect.
|
|
|
|
if (requestTimedOut) {
|
|
|
|
this._reconnect();
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-11-10 21:50:46 +03:00
|
|
|
validServerURI: function(serverURI) {
|
|
|
|
return serverURI.scheme == "ws" || serverURI.scheme == "wss";
|
2015-06-03 15:05:00 +03:00
|
|
|
},
|
|
|
|
|
2015-06-03 15:04:00 +03:00
|
|
|
get _UAID() {
|
|
|
|
return prefs.get("userAgentID");
|
|
|
|
},
|
|
|
|
|
|
|
|
set _UAID(newID) {
|
|
|
|
if (typeof(newID) !== "string") {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("Got invalid, non-string UAID", newID,
|
|
|
|
"Not updating userAgentID");
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("New _UAID", newID);
|
2015-06-03 15:04:00 +03:00
|
|
|
prefs.set("userAgentID", newID);
|
|
|
|
},
|
|
|
|
|
|
|
|
_ws: null,
|
2016-02-04 02:27:34 +03:00
|
|
|
_registerRequests: new Map(),
|
2015-06-03 15:04:00 +03:00
|
|
|
_currentState: STATE_SHUT_DOWN,
|
|
|
|
_requestTimeout: 0,
|
|
|
|
_requestTimeoutTimer: null,
|
|
|
|
_retryFailCount: 0,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* According to the WS spec, servers should immediately close the underlying
|
|
|
|
* TCP connection after they close a WebSocket. This causes wsOnStop to be
|
|
|
|
* called with error NS_BASE_STREAM_CLOSED. Since the client has to keep the
|
|
|
|
* WebSocket up, it should try to reconnect. But if the server closes the
|
|
|
|
* WebSocket because it will wake up the client via UDP, then the client
|
|
|
|
* shouldn't re-establish the connection. If the server says that it will
|
|
|
|
* wake up the client over UDP, this is set to true in wsOnServerClose. It is
|
|
|
|
* checked in wsOnStop.
|
|
|
|
*/
|
|
|
|
_willBeWokenUpByUDP: false,
|
|
|
|
|
2015-09-17 15:08:50 +03:00
|
|
|
/** Indicates whether the server supports Web Push-style message delivery. */
|
|
|
|
_dataEnabled: false,
|
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
/**
|
|
|
|
* The last time the client sent a ping to the server. If non-zero, keeps the
|
|
|
|
* request timeout timer active. Reset to zero when the server responds with
|
|
|
|
* a pong or pending messages.
|
|
|
|
*/
|
|
|
|
_lastPingTime: 0,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A one-shot timer used to ping the server, to avoid timing out idle
|
|
|
|
* connections. Reset to the ping interval on each incoming message.
|
|
|
|
*/
|
|
|
|
_pingTimer: null,
|
|
|
|
|
|
|
|
/** A one-shot timer fired after the reconnect backoff period. */
|
|
|
|
_backoffTimer: null,
|
|
|
|
|
2015-06-03 15:04:00 +03:00
|
|
|
/**
|
|
|
|
* Sends a message to the Push Server through an open websocket.
|
|
|
|
* typeof(msg) shall be an object
|
|
|
|
*/
|
|
|
|
_wsSendMessage: function(msg) {
|
|
|
|
if (!this._ws) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("wsSendMessage: No WebSocket initialized.",
|
|
|
|
"Cannot send a message");
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
msg = JSON.stringify(msg);
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("wsSendMessage: Sending message", msg);
|
2015-06-03 15:04:00 +03:00
|
|
|
this._ws.sendMsg(msg);
|
|
|
|
},
|
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
init: function(options, mainPushService, serverURI) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("init()");
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
this._mainPushService = mainPushService;
|
2015-06-03 15:05:00 +03:00
|
|
|
this._serverURI = serverURI;
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
// Override the default WebSocket factory function. The returned object
|
|
|
|
// must be null or satisfy the nsIWebSocketChannel interface. Used by
|
|
|
|
// the tests to provide a mock WebSocket implementation.
|
|
|
|
if (options.makeWebSocket) {
|
|
|
|
this._makeWebSocket = options.makeWebSocket;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Override the default UDP socket factory function. The returned object
|
|
|
|
// must be null or satisfy the nsIUDPSocket interface. Used by the
|
|
|
|
// UDP tests.
|
|
|
|
if (options.makeUDPSocket) {
|
|
|
|
this._makeUDPSocket = options.makeUDPSocket;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._requestTimeout = prefs.get("requestTimeout");
|
2015-11-19 02:55:13 +03:00
|
|
|
|
|
|
|
return Promise.resolve();
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
|
|
|
|
2015-10-22 19:14:43 +03:00
|
|
|
_reconnect: function () {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("reconnect()");
|
2015-10-22 19:14:43 +03:00
|
|
|
this._shutdownWS(false);
|
2016-02-04 02:27:34 +03:00
|
|
|
this._startBackoffTimer();
|
2015-10-22 19:14:43 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
_shutdownWS: function(shouldCancelPending = true) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("shutdownWS()");
|
2015-06-03 15:04:00 +03:00
|
|
|
this._currentState = STATE_SHUT_DOWN;
|
|
|
|
this._willBeWokenUpByUDP = false;
|
|
|
|
|
2015-10-04 00:59:24 +03:00
|
|
|
prefs.ignore("userAgentID", this);
|
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
if (this._wsListener) {
|
2015-06-03 15:04:00 +03:00
|
|
|
this._wsListener._pushService = null;
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
try {
|
|
|
|
this._ws.close(0, null);
|
|
|
|
} catch (e) {}
|
|
|
|
this._ws = null;
|
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
this._lastPingTime = 0;
|
|
|
|
|
|
|
|
if (this._pingTimer) {
|
|
|
|
this._pingTimer.cancel();
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
|
|
|
|
2015-10-22 19:14:43 +03:00
|
|
|
if (shouldCancelPending) {
|
|
|
|
this._cancelRegisterRequests();
|
|
|
|
}
|
2015-06-03 15:05:00 +03:00
|
|
|
|
|
|
|
if (this._notifyRequestQueue) {
|
|
|
|
this._notifyRequestQueue();
|
|
|
|
this._notifyRequestQueue = null;
|
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
uninit: function() {
|
|
|
|
if (this._udpServer) {
|
|
|
|
this._udpServer.close();
|
|
|
|
this._udpServer = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// All pending requests (ideally none) are dropped at this point. We
|
|
|
|
// shouldn't have any applications performing registration/unregistration
|
|
|
|
// or receiving notifications.
|
|
|
|
this._shutdownWS();
|
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
if (this._backoffTimer) {
|
|
|
|
this._backoffTimer.cancel();
|
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
if (this._requestTimeoutTimer) {
|
|
|
|
this._requestTimeoutTimer.cancel();
|
|
|
|
}
|
|
|
|
|
|
|
|
this._mainPushService = null;
|
2015-09-17 15:08:50 +03:00
|
|
|
|
|
|
|
this._dataEnabled = false;
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* How retries work: The goal is to ensure websocket is always up on
|
|
|
|
* networks not supporting UDP. So the websocket should only be shutdown if
|
|
|
|
* onServerClose indicates UDP wakeup. If WS is closed due to socket error,
|
2016-02-04 02:27:34 +03:00
|
|
|
* _startBackoffTimer() is called. The retry timer is started and when
|
2015-06-03 15:04:00 +03:00
|
|
|
* it times out, beginWSSetup() is called again.
|
|
|
|
*
|
|
|
|
* If we are in the middle of a timeout (i.e. waiting), but
|
|
|
|
* a register/unregister is called, we don't want to wait around anymore.
|
|
|
|
* _sendRequest will automatically call beginWSSetup(), which will cancel the
|
|
|
|
* timer. In addition since the state will have changed, even if a pending
|
|
|
|
* timer event comes in (because the timer fired the event before it was
|
|
|
|
* cancelled), so the connection won't be reset.
|
|
|
|
*/
|
2016-02-04 02:27:34 +03:00
|
|
|
_startBackoffTimer() {
|
|
|
|
console.debug("startBackoffTimer()");
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
// Calculate new timeout, but cap it to pingInterval.
|
|
|
|
let retryTimeout = prefs.get("retryBaseInterval") *
|
|
|
|
Math.pow(2, this._retryFailCount);
|
|
|
|
retryTimeout = Math.min(retryTimeout, prefs.get("pingInterval"));
|
|
|
|
|
|
|
|
this._retryFailCount++;
|
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
console.debug("startBackoffTimer: Retry in", retryTimeout,
|
2015-11-10 00:58:32 +03:00
|
|
|
"Try number", this._retryFailCount);
|
2016-02-04 02:27:34 +03:00
|
|
|
|
|
|
|
if (!this._backoffTimer) {
|
|
|
|
this._backoffTimer = Cc["@mozilla.org/timer;1"]
|
|
|
|
.createInstance(Ci.nsITimer);
|
2016-02-04 02:27:34 +03:00
|
|
|
}
|
2016-02-04 02:27:34 +03:00
|
|
|
this._backoffTimer.init(this, retryTimeout, Ci.nsITimer.TYPE_ONE_SHOT);
|
|
|
|
},
|
|
|
|
|
|
|
|
/** Indicates whether we're waiting for pongs or requests. */
|
|
|
|
_hasPendingRequests() {
|
|
|
|
return this._lastPingTime > 0 || this._registerRequests.size > 0;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Starts the request timeout timer unless we're already waiting for a pong
|
|
|
|
* or register request.
|
|
|
|
*/
|
|
|
|
_startRequestTimeoutTimer() {
|
|
|
|
if (this._hasPendingRequests()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!this._requestTimeoutTimer) {
|
|
|
|
this._requestTimeoutTimer = Cc["@mozilla.org/timer;1"]
|
|
|
|
.createInstance(Ci.nsITimer);
|
|
|
|
}
|
|
|
|
this._requestTimeoutTimer.init(this,
|
|
|
|
this._requestTimeout,
|
|
|
|
Ci.nsITimer.TYPE_REPEATING_SLACK);
|
|
|
|
},
|
|
|
|
|
|
|
|
/** Starts or resets the ping timer. */
|
|
|
|
_startPingTimer() {
|
|
|
|
if (!this._pingTimer) {
|
|
|
|
this._pingTimer = Cc["@mozilla.org/timer;1"]
|
|
|
|
.createInstance(Ci.nsITimer);
|
|
|
|
}
|
|
|
|
this._pingTimer.init(this, prefs.get("pingInterval"),
|
|
|
|
Ci.nsITimer.TYPE_ONE_SHOT);
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
_makeWebSocket: function(uri) {
|
|
|
|
if (!prefs.get("connection.enabled")) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("makeWebSocket: connection.enabled is not set to true.",
|
|
|
|
"Aborting.");
|
2015-06-03 15:04:00 +03:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (Services.io.offline) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("makeWebSocket: Network is offline.");
|
2015-06-03 15:04:00 +03:00
|
|
|
return null;
|
|
|
|
}
|
2015-06-03 15:05:00 +03:00
|
|
|
let socket = Cc["@mozilla.org/network/protocol;1?name=wss"]
|
|
|
|
.createInstance(Ci.nsIWebSocketChannel);
|
|
|
|
|
2015-06-03 15:04:00 +03:00
|
|
|
socket.initLoadInfo(null, // aLoadingNode
|
|
|
|
Services.scriptSecurityManager.getSystemPrincipal(),
|
|
|
|
null, // aTriggeringPrincipal
|
|
|
|
Ci.nsILoadInfo.SEC_NORMAL,
|
|
|
|
Ci.nsIContentPolicy.TYPE_WEBSOCKET);
|
|
|
|
|
|
|
|
return socket;
|
|
|
|
},
|
|
|
|
|
|
|
|
_beginWSSetup: function() {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("beginWSSetup()");
|
2015-06-03 15:04:00 +03:00
|
|
|
if (this._currentState != STATE_SHUT_DOWN) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.error("_beginWSSetup: Not in shutdown state! Current state",
|
|
|
|
this._currentState);
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Stop any pending reconnects scheduled for the near future.
|
2016-02-04 02:27:34 +03:00
|
|
|
if (this._backoffTimer) {
|
|
|
|
this._backoffTimer.cancel();
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
let uri = this._serverURI;
|
2015-06-03 15:04:00 +03:00
|
|
|
if (!uri) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let socket = this._makeWebSocket(uri);
|
|
|
|
if (!socket) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._ws = socket.QueryInterface(Ci.nsIWebSocketChannel);
|
|
|
|
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("beginWSSetup: Connecting to", uri.spec);
|
2015-06-03 15:04:00 +03:00
|
|
|
this._wsListener = new PushWebSocketListener(this);
|
|
|
|
this._ws.protocol = "push-notification";
|
|
|
|
|
|
|
|
try {
|
2015-06-03 15:05:00 +03:00
|
|
|
// Grab a wakelock before we open the socket to ensure we don't go to
|
|
|
|
// sleep before connection the is opened.
|
2015-10-26 18:29:28 +03:00
|
|
|
this._ws.asyncOpen(uri, uri.spec, 0, this._wsListener, null);
|
2015-06-03 15:04:00 +03:00
|
|
|
this._acquireWakeLock();
|
|
|
|
this._currentState = STATE_WAITING_FOR_WS_START;
|
|
|
|
} catch(e) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.error("beginWSSetup: Error opening websocket.",
|
|
|
|
"asyncOpen failed", e);
|
2015-10-22 19:14:43 +03:00
|
|
|
this._reconnect();
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-06-26 00:52:57 +03:00
|
|
|
connect: function(records) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("connect()");
|
2015-06-03 15:04:00 +03:00
|
|
|
// Check to see if we need to do anything.
|
2015-06-26 00:52:57 +03:00
|
|
|
if (records.length > 0) {
|
2015-06-03 15:04:00 +03:00
|
|
|
this._beginWSSetup();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-10-06 18:14:25 +03:00
|
|
|
isConnected: function() {
|
|
|
|
return !!this._ws;
|
|
|
|
},
|
|
|
|
|
2015-06-03 15:04:00 +03:00
|
|
|
_acquireWakeLock: function() {
|
2015-10-17 00:04:37 +03:00
|
|
|
if (!AppConstants.MOZ_B2G) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-03 15:04:00 +03:00
|
|
|
// Disable the wake lock on non-B2G platforms to work around bug 1154492.
|
|
|
|
if (!this._socketWakeLock) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("acquireWakeLock: Acquiring Socket Wakelock");
|
2015-06-03 15:04:00 +03:00
|
|
|
this._socketWakeLock = gPowerManagerService.newWakeLock("cpu");
|
|
|
|
}
|
|
|
|
if (!this._socketWakeLockTimer) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("acquireWakeLock: Creating Socket WakeLock Timer");
|
2015-06-03 15:05:00 +03:00
|
|
|
this._socketWakeLockTimer = Cc["@mozilla.org/timer;1"]
|
|
|
|
.createInstance(Ci.nsITimer);
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
|
|
|
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("acquireWakeLock: Setting Socket WakeLock Timer");
|
2015-06-03 15:04:00 +03:00
|
|
|
this._socketWakeLockTimer
|
|
|
|
.initWithCallback(this._releaseWakeLock.bind(this),
|
|
|
|
// Allow the same time for socket setup as we do for
|
|
|
|
// requests after the setup. Fudge it a bit since
|
|
|
|
// timers can be a little off and we don't want to go
|
|
|
|
// to sleep just as the socket connected.
|
|
|
|
this._requestTimeout + 1000,
|
|
|
|
Ci.nsITimer.TYPE_ONE_SHOT);
|
|
|
|
},
|
|
|
|
|
|
|
|
_releaseWakeLock: function() {
|
2015-10-17 00:04:37 +03:00
|
|
|
if (!AppConstants.MOZ_B2G) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("releaseWakeLock: Releasing Socket WakeLock");
|
2015-06-03 15:04:00 +03:00
|
|
|
if (this._socketWakeLockTimer) {
|
|
|
|
this._socketWakeLockTimer.cancel();
|
|
|
|
}
|
|
|
|
if (this._socketWakeLock) {
|
|
|
|
this._socketWakeLock.unlock();
|
|
|
|
this._socketWakeLock = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Protocol handler invoked by server message.
|
|
|
|
*/
|
|
|
|
_handleHelloReply: function(reply) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("handleHelloReply()");
|
2015-06-03 15:04:00 +03:00
|
|
|
if (this._currentState != STATE_WAITING_FOR_HELLO) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.error("handleHelloReply: Unexpected state", this._currentState,
|
|
|
|
"(expected STATE_WAITING_FOR_HELLO)");
|
2015-06-03 15:04:00 +03:00
|
|
|
this._shutdownWS();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof reply.uaid !== "string") {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.error("handleHelloReply: Received invalid UAID", reply.uaid);
|
2015-06-03 15:04:00 +03:00
|
|
|
this._shutdownWS();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reply.uaid === "") {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.error("handleHelloReply: Received empty UAID");
|
2015-06-03 15:04:00 +03:00
|
|
|
this._shutdownWS();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// To avoid sticking extra large values sent by an evil server into prefs.
|
|
|
|
if (reply.uaid.length > 128) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.error("handleHelloReply: UAID received from server was too long",
|
|
|
|
reply.uaid);
|
2015-06-03 15:04:00 +03:00
|
|
|
this._shutdownWS();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-22 19:14:43 +03:00
|
|
|
let sendRequests = () => {
|
2015-06-03 15:05:00 +03:00
|
|
|
if (this._notifyRequestQueue) {
|
|
|
|
this._notifyRequestQueue();
|
|
|
|
this._notifyRequestQueue = null;
|
|
|
|
}
|
2015-10-22 19:14:43 +03:00
|
|
|
this._sendRegisterRequests();
|
2015-09-17 15:08:50 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
function finishHandshake() {
|
|
|
|
this._UAID = reply.uaid;
|
|
|
|
this._currentState = STATE_READY;
|
2015-10-04 00:59:24 +03:00
|
|
|
prefs.observe("userAgentID", this);
|
|
|
|
|
2015-09-17 15:08:50 +03:00
|
|
|
this._dataEnabled = !!reply.use_webpush;
|
|
|
|
if (this._dataEnabled) {
|
|
|
|
this._mainPushService.getAllUnexpired().then(records =>
|
|
|
|
Promise.all(records.map(record =>
|
2015-12-08 23:26:42 +03:00
|
|
|
this._mainPushService.ensureCrypto(record).catch(error => {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.error("finishHandshake: Error updating record",
|
|
|
|
record.keyID, error);
|
2015-09-17 15:08:50 +03:00
|
|
|
})
|
|
|
|
))
|
2015-10-22 19:14:43 +03:00
|
|
|
).then(sendRequests);
|
2015-09-17 15:08:50 +03:00
|
|
|
} else {
|
2015-10-22 19:14:43 +03:00
|
|
|
sendRequests();
|
2015-09-17 15:08:50 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// By this point we've got a UAID from the server that we are ready to
|
|
|
|
// accept.
|
|
|
|
//
|
2015-10-04 00:59:24 +03:00
|
|
|
// We unconditionally drop all existing registrations and notify service
|
|
|
|
// workers if we receive a new UAID. This ensures we expunge all stale
|
|
|
|
// registrations if the `userAgentID` pref is reset.
|
|
|
|
if (this._UAID != reply.uaid) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("handleHelloReply: Received new UAID");
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-11-11 01:27:47 +03:00
|
|
|
this._mainPushService.dropUnexpiredRegistrations()
|
2015-06-03 15:04:00 +03:00
|
|
|
.then(finishHandshake.bind(this));
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// otherwise we are good to go
|
|
|
|
finishHandshake.bind(this)();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Protocol handler invoked by server message.
|
|
|
|
*/
|
|
|
|
_handleRegisterReply: function(reply) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("handleRegisterReply()");
|
2015-06-03 15:04:00 +03:00
|
|
|
if (typeof reply.channelID !== "string" ||
|
2016-02-04 02:27:34 +03:00
|
|
|
!this._registerRequests.has(reply.channelID)) {
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
let tmp = this._registerRequests.get(reply.channelID);
|
|
|
|
this._registerRequests.delete(reply.channelID);
|
|
|
|
if (!this._hasPendingRequests()) {
|
2015-06-03 15:04:00 +03:00
|
|
|
this._requestTimeoutTimer.cancel();
|
2015-06-03 15:05:00 +03:00
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
if (reply.status == 200) {
|
2015-06-03 15:05:00 +03:00
|
|
|
try {
|
|
|
|
Services.io.newURI(reply.pushEndpoint, null, null);
|
|
|
|
}
|
|
|
|
catch (e) {
|
2015-11-10 00:58:50 +03:00
|
|
|
tmp.reject(new Error("Invalid push endpoint: " + reply.pushEndpoint));
|
2015-06-03 15:05:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-26 00:52:57 +03:00
|
|
|
let record = new PushRecordWebSocket({
|
2015-06-03 15:05:00 +03:00
|
|
|
channelID: reply.channelID,
|
|
|
|
pushEndpoint: reply.pushEndpoint,
|
|
|
|
scope: tmp.record.scope,
|
2015-06-24 23:34:54 +03:00
|
|
|
originAttributes: tmp.record.originAttributes,
|
2015-06-26 00:52:57 +03:00
|
|
|
version: null,
|
2015-12-16 20:21:22 +03:00
|
|
|
systemRecord: tmp.record.systemRecord,
|
2016-03-23 02:29:16 +03:00
|
|
|
appServerKey: tmp.record.appServerKey,
|
2015-08-06 22:05:47 +03:00
|
|
|
ctime: Date.now(),
|
2015-06-26 00:52:57 +03:00
|
|
|
});
|
2015-08-06 22:05:47 +03:00
|
|
|
Services.telemetry.getHistogramById("PUSH_API_SUBSCRIBE_WS_TIME").add(Date.now() - tmp.ctime);
|
2015-06-03 15:05:00 +03:00
|
|
|
tmp.resolve(record);
|
2015-06-03 15:04:00 +03:00
|
|
|
} else {
|
2015-11-10 00:58:50 +03:00
|
|
|
console.error("handleRegisterReply: Unexpected server response", reply);
|
|
|
|
tmp.reject(new Error("Wrong status code for register reply: " +
|
|
|
|
reply.status));
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2015-09-17 15:08:50 +03:00
|
|
|
_handleDataUpdate: function(update) {
|
|
|
|
let promise;
|
|
|
|
if (typeof update.channelID != "string") {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("handleDataUpdate: Discarding update without channel ID",
|
|
|
|
update);
|
2015-09-17 15:08:50 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (typeof update.data != "string") {
|
|
|
|
promise = this._mainPushService.receivedPushMessage(
|
|
|
|
update.channelID,
|
2016-03-28 22:29:25 +03:00
|
|
|
update.version,
|
2015-09-17 15:08:50 +03:00
|
|
|
null,
|
|
|
|
null,
|
|
|
|
record => record
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
let params = getCryptoParams(update.headers);
|
2016-03-28 22:29:25 +03:00
|
|
|
if (params) {
|
2016-03-22 22:09:04 +03:00
|
|
|
let message = ChromeUtils.base64URLDecode(update.data, {
|
|
|
|
// The Push server may append padding.
|
|
|
|
padding: "ignore",
|
|
|
|
});
|
2016-03-28 22:29:25 +03:00
|
|
|
promise = this._mainPushService.receivedPushMessage(
|
|
|
|
update.channelID,
|
|
|
|
update.version,
|
|
|
|
message,
|
|
|
|
params,
|
|
|
|
record => record
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
promise = Promise.reject(new Error("Invalid crypto headers"));
|
2015-09-17 15:08:50 +03:00
|
|
|
}
|
|
|
|
}
|
2016-03-28 22:29:25 +03:00
|
|
|
promise.then(status => {
|
|
|
|
this._sendAck(update.channelID, update.version, status);
|
|
|
|
}, err => {
|
|
|
|
console.error("handleDataUpdate: Error delivering message", update, err);
|
|
|
|
this._sendAck(update.channelID, update.version,
|
|
|
|
Ci.nsIPushErrorReporter.ACK_DECRYPTION_ERROR);
|
|
|
|
}).catch(err => {
|
|
|
|
console.error("handleDataUpdate: Error acknowledging message", update,
|
|
|
|
err);
|
2015-09-17 15:08:50 +03:00
|
|
|
});
|
|
|
|
},
|
|
|
|
|
2015-06-03 15:04:00 +03:00
|
|
|
/**
|
|
|
|
* Protocol handler invoked by server message.
|
|
|
|
*/
|
|
|
|
_handleNotificationReply: function(reply) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("handleNotificationReply()");
|
2015-09-17 15:08:50 +03:00
|
|
|
if (this._dataEnabled) {
|
|
|
|
this._handleDataUpdate(reply);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-03 15:04:00 +03:00
|
|
|
if (typeof reply.updates !== 'object') {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("handleNotificationReply: Missing updates", reply.updates);
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("handleNotificationReply: Got updates", reply.updates);
|
2015-06-03 15:04:00 +03:00
|
|
|
for (let i = 0; i < reply.updates.length; i++) {
|
|
|
|
let update = reply.updates[i];
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("handleNotificationReply: Handling update", update);
|
2015-06-03 15:04:00 +03:00
|
|
|
if (typeof update.channelID !== "string") {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("handleNotificationReply: Invalid update at index",
|
|
|
|
i, update);
|
2015-06-03 15:04:00 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (update.version === undefined) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("handleNotificationReply: Missing version", update);
|
2015-06-03 15:04:00 +03:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
let version = update.version;
|
|
|
|
|
|
|
|
if (typeof version === "string") {
|
|
|
|
version = parseInt(version, 10);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof version === "number" && version >= 0) {
|
|
|
|
// FIXME(nsm): this relies on app update notification being infallible!
|
|
|
|
// eventually fix this
|
|
|
|
this._receivedUpdate(update.channelID, version);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2016-03-28 22:29:25 +03:00
|
|
|
reportDeliveryError(messageID, reason) {
|
|
|
|
console.debug("reportDeliveryError()");
|
|
|
|
let code = kDELIVERY_REASON_TO_CODE[reason];
|
|
|
|
if (!code) {
|
|
|
|
throw new Error('Invalid delivery error reason');
|
|
|
|
}
|
|
|
|
let data = {messageType: 'nack',
|
|
|
|
version: messageID,
|
|
|
|
code: code};
|
|
|
|
this._queueRequest(data);
|
|
|
|
},
|
|
|
|
|
|
|
|
_sendAck(channelID, version, status) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("sendAck()");
|
2016-03-28 22:29:25 +03:00
|
|
|
let code = kACK_STATUS_TO_CODE[status];
|
|
|
|
if (!code) {
|
|
|
|
throw new Error('Invalid ack status');
|
|
|
|
}
|
|
|
|
let data = {messageType: 'ack',
|
2015-06-03 15:05:00 +03:00
|
|
|
updates: [{channelID: channelID,
|
2016-03-28 22:29:25 +03:00
|
|
|
version: version,
|
|
|
|
code: code}]};
|
2015-06-03 15:05:00 +03:00
|
|
|
this._queueRequest(data);
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
_generateID: function() {
|
|
|
|
let uuidGenerator = Cc["@mozilla.org/uuid-generator;1"]
|
|
|
|
.getService(Ci.nsIUUIDGenerator);
|
|
|
|
// generateUUID() gives a UUID surrounded by {...}, slice them off.
|
|
|
|
return uuidGenerator.generateUUID().toString().slice(1, -1);
|
|
|
|
},
|
|
|
|
|
2016-03-28 22:29:25 +03:00
|
|
|
register(record) {
|
|
|
|
console.debug("register() ", record);
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
// start the timer since we now have at least one request
|
|
|
|
this._startRequestTimeoutTimer();
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2016-03-28 22:29:25 +03:00
|
|
|
let data = {channelID: this._generateID(),
|
|
|
|
messageType: "register"};
|
2015-06-07 08:17:04 +03:00
|
|
|
|
2016-03-23 02:29:16 +03:00
|
|
|
if (record.appServerKey) {
|
|
|
|
data.key = ChromeUtils.base64URLEncode(record.appServerKey, {
|
|
|
|
// The Push server requires padding.
|
|
|
|
pad: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-03-28 22:29:25 +03:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
this._registerRequests.set(data.channelID, {
|
|
|
|
record: record,
|
|
|
|
resolve: resolve,
|
|
|
|
reject: reject,
|
|
|
|
ctime: Date.now(),
|
2015-06-07 08:17:04 +03:00
|
|
|
});
|
2016-03-28 22:29:25 +03:00
|
|
|
this._queueRequest(data);
|
|
|
|
}).then(record => {
|
|
|
|
if (!this._dataEnabled) {
|
|
|
|
return record;
|
|
|
|
}
|
|
|
|
return PushCrypto.generateKeys()
|
|
|
|
.then(([publicKey, privateKey]) => {
|
|
|
|
record.p256dhPublicKey = publicKey;
|
|
|
|
record.p256dhPrivateKey = privateKey;
|
|
|
|
record.authenticationSecret = PushCrypto.generateAuthenticationSecret();
|
|
|
|
return record;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
2015-06-07 08:17:04 +03:00
|
|
|
|
2016-03-28 22:29:25 +03:00
|
|
|
unregister(record, reason) {
|
|
|
|
console.debug("unregister() ", record, reason);
|
|
|
|
|
|
|
|
let code = kUNREGISTER_REASON_TO_CODE[reason];
|
|
|
|
if (!code) {
|
|
|
|
return Promise.reject(new Error('Invalid unregister reason'));
|
|
|
|
}
|
|
|
|
let data = {channelID: record.channelID,
|
|
|
|
messageType: "unregister",
|
|
|
|
code: code};
|
|
|
|
this._queueRequest(data);
|
2015-06-07 08:17:04 +03:00
|
|
|
return Promise.resolve();
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
_queueStart: Promise.resolve(),
|
|
|
|
_notifyRequestQueue: null,
|
|
|
|
_queue: null,
|
2015-10-22 19:14:43 +03:00
|
|
|
_enqueue: function(op) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("enqueue()");
|
2015-06-03 15:05:00 +03:00
|
|
|
if (!this._queue) {
|
|
|
|
this._queue = this._queueStart;
|
|
|
|
}
|
|
|
|
this._queue = this._queue
|
|
|
|
.then(op)
|
|
|
|
.catch(_ => {});
|
|
|
|
},
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
_send(data) {
|
|
|
|
if (this._currentState == STATE_READY) {
|
2015-06-07 08:17:04 +03:00
|
|
|
if (data.messageType != "register" ||
|
2016-02-04 02:27:34 +03:00
|
|
|
this._registerRequests.has(data.channelID)) {
|
2015-06-07 08:17:04 +03:00
|
|
|
|
|
|
|
// check if request has not been cancelled
|
2015-06-03 15:05:00 +03:00
|
|
|
this._wsSendMessage(data);
|
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
2015-06-03 15:05:00 +03:00
|
|
|
},
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-10-22 19:14:43 +03:00
|
|
|
_sendRegisterRequests() {
|
2016-02-04 02:27:34 +03:00
|
|
|
this._enqueue(_ => {
|
|
|
|
for (let channelID of this._registerRequests.keys()) {
|
|
|
|
this._send({
|
|
|
|
messageType: "register",
|
|
|
|
channelID: channelID,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
2015-10-22 19:14:43 +03:00
|
|
|
},
|
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
_queueRequest(data) {
|
2015-10-22 19:14:43 +03:00
|
|
|
if (data.messageType != "register") {
|
|
|
|
if (this._currentState != STATE_READY && !this._notifyRequestQueue) {
|
2015-06-26 00:52:57 +03:00
|
|
|
let promise = new Promise((resolve, reject) => {
|
|
|
|
this._notifyRequestQueue = resolve;
|
2015-06-03 15:05:00 +03:00
|
|
|
});
|
2015-06-26 00:52:57 +03:00
|
|
|
this._enqueue(_ => promise);
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
2015-06-03 15:05:00 +03:00
|
|
|
|
2015-10-22 19:14:43 +03:00
|
|
|
this._enqueue(_ => this._send(data));
|
|
|
|
} else if (this._currentState == STATE_READY) {
|
|
|
|
this._send(data);
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!this._ws) {
|
2015-06-03 15:05:00 +03:00
|
|
|
// This will end up calling notifyRequestQueue().
|
|
|
|
this._beginWSSetup();
|
|
|
|
// If beginWSSetup does not succeed to make ws, notifyRequestQueue will
|
|
|
|
// not be call.
|
|
|
|
if (!this._ws && this._notifyRequestQueue) {
|
|
|
|
this._notifyRequestQueue();
|
|
|
|
this._notifyRequestQueue = null;
|
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
_receivedUpdate: function(aChannelID, aLatestVersion) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("receivedUpdate: Updating", aChannelID, "->", aLatestVersion);
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2016-03-28 22:29:25 +03:00
|
|
|
this._mainPushService.receivedPushMessage(aChannelID, "", null, null, record => {
|
2015-06-26 00:52:57 +03:00
|
|
|
if (record.version === null ||
|
|
|
|
record.version < aLatestVersion) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("receivedUpdate: Version changed for", aChannelID,
|
|
|
|
aLatestVersion);
|
2015-06-26 00:52:57 +03:00
|
|
|
record.version = aLatestVersion;
|
|
|
|
return record;
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("receivedUpdate: No significant version change for",
|
|
|
|
aChannelID, aLatestVersion);
|
2015-06-26 00:52:57 +03:00
|
|
|
return null;
|
2016-03-28 22:29:25 +03:00
|
|
|
}).then(status => {
|
|
|
|
this._sendAck(aChannelID, aLatestVersion, status);
|
|
|
|
}).catch(err => {
|
|
|
|
console.error("receivedUpdate: Error acknowledging message", aChannelID,
|
|
|
|
aLatestVersion, err);
|
2015-06-26 00:52:57 +03:00
|
|
|
});
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
// begin Push protocol handshake
|
|
|
|
_wsOnStart: function(context) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("wsOnStart()");
|
2015-06-03 15:04:00 +03:00
|
|
|
this._releaseWakeLock();
|
|
|
|
|
|
|
|
if (this._currentState != STATE_WAITING_FOR_WS_START) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.error("wsOnStart: NOT in STATE_WAITING_FOR_WS_START. Current",
|
|
|
|
"state", this._currentState, "Skipping");
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let data = {
|
|
|
|
messageType: "hello",
|
2015-09-17 15:08:50 +03:00
|
|
|
use_webpush: true,
|
2015-06-03 15:05:00 +03:00
|
|
|
};
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
if (this._UAID) {
|
|
|
|
data.uaid = this._UAID;
|
|
|
|
}
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2016-04-20 02:41:12 +03:00
|
|
|
this._wsSendMessage(data);
|
|
|
|
this._currentState = STATE_WAITING_FOR_HELLO;
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This statusCode is not the websocket protocol status code, but the TCP
|
|
|
|
* connection close status code.
|
|
|
|
*
|
|
|
|
* If we do not explicitly call ws.close() then statusCode is always
|
|
|
|
* NS_BASE_STREAM_CLOSED, even on a successful close.
|
|
|
|
*/
|
|
|
|
_wsOnStop: function(context, statusCode) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("wsOnStop()");
|
2015-06-03 15:04:00 +03:00
|
|
|
this._releaseWakeLock();
|
|
|
|
|
|
|
|
if (statusCode != Cr.NS_OK &&
|
|
|
|
!(statusCode == Cr.NS_BASE_STREAM_CLOSED && this._willBeWokenUpByUDP)) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("wsOnStop: Socket error", statusCode);
|
2015-10-22 19:14:43 +03:00
|
|
|
this._reconnect();
|
|
|
|
return;
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
this._shutdownWS();
|
|
|
|
},
|
|
|
|
|
|
|
|
_wsOnMessageAvailable: function(context, message) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("wsOnMessageAvailable()", message);
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2016-02-04 02:27:34 +03:00
|
|
|
// Clearing the last ping time indicates we're no longer waiting for a pong.
|
|
|
|
this._lastPingTime = 0;
|
2015-06-03 15:04:00 +03:00
|
|
|
|
2015-06-03 15:05:00 +03:00
|
|
|
let reply;
|
2015-06-03 15:04:00 +03:00
|
|
|
try {
|
|
|
|
reply = JSON.parse(message);
|
|
|
|
} catch(e) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("wsOnMessageAvailable: Invalid JSON", message, e);
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-10-29 03:07:11 +03:00
|
|
|
// If we receive a message, we know the connection succeeded. Reset the
|
|
|
|
// connection attempt and ping interval counters.
|
|
|
|
this._retryFailCount = 0;
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
let doNotHandle = false;
|
|
|
|
if ((message === '{}') ||
|
|
|
|
(reply.messageType === undefined) ||
|
|
|
|
(reply.messageType === "ping") ||
|
|
|
|
(typeof reply.messageType != "string")) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("wsOnMessageAvailable: Pong received");
|
2015-06-03 15:04:00 +03:00
|
|
|
doNotHandle = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Reset the ping timer. Note: This path is executed at every step of the
|
2016-02-04 02:27:34 +03:00
|
|
|
// handshake, so this timer does not need to be set explicitly at startup.
|
|
|
|
this._startPingTimer();
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
// If it is a ping, do not handle the message.
|
|
|
|
if (doNotHandle) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// A whitelist of protocol handlers. Add to these if new messages are added
|
|
|
|
// in the protocol.
|
|
|
|
let handlers = ["Hello", "Register", "Notification"];
|
|
|
|
|
|
|
|
// Build up the handler name to call from messageType.
|
|
|
|
// e.g. messageType == "register" -> _handleRegisterReply.
|
|
|
|
let handlerName = reply.messageType[0].toUpperCase() +
|
|
|
|
reply.messageType.slice(1).toLowerCase();
|
|
|
|
|
|
|
|
if (handlers.indexOf(handlerName) == -1) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("wsOnMessageAvailable: No whitelisted handler", handlerName,
|
|
|
|
"for message", reply.messageType);
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let handler = "_handle" + handlerName + "Reply";
|
|
|
|
|
|
|
|
if (typeof this[handler] !== "function") {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("wsOnMessageAvailable: Handler", handler,
|
|
|
|
"whitelisted but not implemented");
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this[handler](reply);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The websocket should never be closed. Since we don't call ws.close(),
|
|
|
|
* _wsOnStop() receives error code NS_BASE_STREAM_CLOSED (see comment in that
|
|
|
|
* function), which calls reconnect and re-establishes the WebSocket
|
|
|
|
* connection.
|
|
|
|
*
|
|
|
|
* If the server said it'll use UDP for wakeup, we set _willBeWokenUpByUDP
|
|
|
|
* and stop reconnecting in _wsOnStop().
|
|
|
|
*/
|
|
|
|
_wsOnServerClose: function(context, aStatusCode, aReason) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("wsOnServerClose()", aStatusCode, aReason);
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
// Switch over to UDP.
|
|
|
|
if (aStatusCode == kUDP_WAKEUP_WS_STATUS_CODE) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("wsOnServerClose: Server closed with promise to wake up");
|
2015-06-03 15:04:00 +03:00
|
|
|
this._willBeWokenUpByUDP = true;
|
|
|
|
// TODO: there should be no pending requests
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2015-10-22 19:14:43 +03:00
|
|
|
* Rejects all pending register requests with errors.
|
2015-06-03 15:04:00 +03:00
|
|
|
*/
|
2015-10-22 19:14:43 +03:00
|
|
|
_cancelRegisterRequests: function() {
|
2016-02-04 02:27:34 +03:00
|
|
|
for (let request of this._registerRequests.values()) {
|
2015-11-10 00:58:50 +03:00
|
|
|
request.reject(new Error("Register request aborted"));
|
2015-06-03 15:04:00 +03:00
|
|
|
}
|
2016-02-04 02:27:34 +03:00
|
|
|
this._registerRequests.clear();
|
2015-06-03 15:04:00 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
_makeUDPSocket: function() {
|
|
|
|
return Cc["@mozilla.org/network/udp-socket;1"]
|
|
|
|
.createInstance(Ci.nsIUDPSocket);
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This method should be called only if the device is on a mobile network!
|
|
|
|
*/
|
|
|
|
_listenForUDPWakeup: function() {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("listenForUDPWakeup()");
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
if (this._udpServer) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.warn("listenForUDPWakeup: UDP Server already running");
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!prefs.get("udp.wakeupEnabled")) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("listenForUDPWakeup: UDP support disabled");
|
2015-06-03 15:04:00 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let socket = this._makeUDPSocket();
|
|
|
|
if (!socket) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._udpServer = socket.QueryInterface(Ci.nsIUDPSocket);
|
|
|
|
this._udpServer.init(-1, false, Services.scriptSecurityManager.getSystemPrincipal());
|
|
|
|
this._udpServer.asyncListen(this);
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("listenForUDPWakeup: Listening on", this._udpServer.port);
|
2015-06-03 15:04:00 +03:00
|
|
|
|
|
|
|
return this._udpServer.port;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2016-04-06 21:18:04 +03:00
|
|
|
* Called by UDP Server Socket. As soon as a ping is received via UDP,
|
2015-06-03 15:04:00 +03:00
|
|
|
* reconnect the WebSocket and get the actual data.
|
|
|
|
*/
|
|
|
|
onPacketReceived: function(aServ, aMessage) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("onPacketReceived: Recv UDP datagram on port",
|
|
|
|
this._udpServer.port);
|
2015-06-03 15:04:00 +03:00
|
|
|
this._beginWSSetup();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by UDP Server Socket if the socket was closed for some reason.
|
|
|
|
*
|
|
|
|
* If this happens, we reconnect the WebSocket to not miss out on
|
|
|
|
* notifications.
|
|
|
|
*/
|
|
|
|
onStopListening: function(aServ, aStatus) {
|
2015-11-10 00:58:32 +03:00
|
|
|
console.debug("onStopListening: UDP Server socket was shutdown. Status",
|
|
|
|
aStatus);
|
2015-06-03 15:04:00 +03:00
|
|
|
this._udpServer = undefined;
|
|
|
|
this._beginWSSetup();
|
2015-06-03 15:06:00 +03:00
|
|
|
},
|
2015-06-03 15:04:00 +03:00
|
|
|
};
|
|
|
|
|
2015-06-26 00:52:57 +03:00
|
|
|
function PushRecordWebSocket(record) {
|
|
|
|
PushRecord.call(this, record);
|
|
|
|
this.channelID = record.channelID;
|
|
|
|
this.version = record.version;
|
|
|
|
}
|
|
|
|
|
|
|
|
PushRecordWebSocket.prototype = Object.create(PushRecord.prototype, {
|
|
|
|
keyID: {
|
|
|
|
get() {
|
|
|
|
return this.channelID;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
2015-11-11 01:27:47 +03:00
|
|
|
PushRecordWebSocket.prototype.toSubscription = function() {
|
|
|
|
let subscription = PushRecord.prototype.toSubscription.call(this);
|
|
|
|
subscription.version = this.version;
|
|
|
|
return subscription;
|
2015-06-26 00:52:57 +03:00
|
|
|
};
|