From 77ae717b9bcf1fd4124b95402113fc3909334692 Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Tue, 19 Feb 2019 12:10:26 -0800 Subject: [PATCH] Clean up shutdown handling - stop processing incoming messages --- js/background.js | 35 ++++++++++++++++--------------- libtextsecure/message_receiver.js | 13 ++++++++++++ 2 files changed, 31 insertions(+), 17 deletions(-) diff --git a/js/background.js b/js/background.js index 2b9f07876..a13d1a6c6 100644 --- a/js/background.js +++ b/js/background.js @@ -274,6 +274,19 @@ }, shutdown: async () => { + // Stop background processing + window.Signal.AttachmentDownloads.stop(); + if (idleDetector) { + idleDetector.stop(); + } + + // Stop processing incoming messages + if (messageReceiver) { + await messageReceiver.stopProcessing(); + messageReceiver = null; + } + + // Shut down the data interface cleanly await window.Signal.Data.shutdown(); }, }; @@ -428,16 +441,6 @@ } }); - Whisper.events.on('shutdown', async () => { - if (idleDetector) { - idleDetector.stop(); - } - if (messageReceiver) { - await messageReceiver.close(); - } - Whisper.events.trigger('shutdown-complete'); - }); - Whisper.events.on('setupWithImport', () => { const { appView } = window.owsDesktopApp; if (appView) { @@ -549,13 +552,6 @@ window.getSyncRequest = () => new textsecure.SyncRequest(textsecure.messaging, messageReceiver); - Whisper.events.on('start-shutdown', async () => { - if (messageReceiver) { - await messageReceiver.close(); - } - Whisper.events.trigger('shutdown-complete'); - }); - let disconnectTimer = null; function onOffline() { window.log.info('offline'); @@ -1327,6 +1323,11 @@ ) { Whisper.events.trigger('unauthorized'); + if (messageReceiver) { + await messageReceiver.stopProcessing(); + messageReceiver = null; + } + window.log.warn( 'Client is no longer authorized; deleting local configuration' ); diff --git a/libtextsecure/message_receiver.js b/libtextsecure/message_receiver.js index 2c09da698..1892812e2 100644 --- a/libtextsecure/message_receiver.js +++ b/libtextsecure/message_receiver.js @@ -192,6 +192,11 @@ MessageReceiver.prototype.extend({ // all cached envelopes are processed. this.incoming = [this.pending]; }, + stopProcessing() { + window.log.info('MessageReceiver: stopProcessing requested'); + this.stoppingProcessing = true; + return this.close(); + }, shutdown() { if (this.socket) { this.socket.onclose = null; @@ -614,6 +619,9 @@ MessageReceiver.prototype.extend({ // messages which were successfully decrypted, but application logic didn't finish // processing. handleDecryptedEnvelope(envelope, plaintext) { + if (this.stoppingProcessing) { + return Promise.resolve(); + } // No decryption is required for delivery receipts, so the decrypted field of // the Unprocessed model will never be set @@ -626,6 +634,10 @@ MessageReceiver.prototype.extend({ throw new Error('Received message with no content and no legacyMessage'); }, handleEnvelope(envelope) { + if (this.stoppingProcessing) { + return Promise.resolve(); + } + if (envelope.type === textsecure.protobuf.Envelope.Type.RECEIPT) { return this.onDeliveryReceipt(envelope); } @@ -1416,6 +1428,7 @@ textsecure.MessageReceiver = function MessageReceiverWrapper( this.downloadAttachment = messageReceiver.downloadAttachment.bind( messageReceiver ); + this.stopProcessing = messageReceiver.stopProcessing.bind(messageReceiver); messageReceiver.connect(); };