diff options
| -rw-r--r-- | changes/bug-4003_fix-non-ascii-password-change | 1 | ||||
| -rw-r--r-- | changes/bug-4189_non-ascii-path-problem | 2 | ||||
| -rw-r--r-- | changes/log_eip_status | 1 | ||||
| -rw-r--r-- | src/leap/bitmask/crypto/srpauth.py | 14 | ||||
| -rw-r--r-- | src/leap/bitmask/gui/eip_status.py | 4 | ||||
| -rw-r--r-- | src/leap/bitmask/gui/mainwindow.py | 4 | ||||
| -rw-r--r-- | src/leap/bitmask/gui/preferenceswindow.py | 2 | ||||
| -rw-r--r-- | src/leap/bitmask/gui/statemachines.py | 4 | ||||
| -rw-r--r-- | src/leap/bitmask/services/soledad/soledadbootstrapper.py | 7 | 
9 files changed, 22 insertions, 17 deletions
| diff --git a/changes/bug-4003_fix-non-ascii-password-change b/changes/bug-4003_fix-non-ascii-password-change new file mode 100644 index 00000000..2d6a0ed8 --- /dev/null +++ b/changes/bug-4003_fix-non-ascii-password-change @@ -0,0 +1 @@ +  - Fix problem changing a non-ascii password. Closes #4003. diff --git a/changes/bug-4189_non-ascii-path-problem b/changes/bug-4189_non-ascii-path-problem index a6bead2d..e8b43e40 100644 --- a/changes/bug-4189_non-ascii-path-problem +++ b/changes/bug-4189_non-ascii-path-problem @@ -1 +1 @@ -  o Fix problem with non-ascii paths. Closes #4189. +- Fix problem with non-ascii paths. Closes #4189. diff --git a/changes/log_eip_status b/changes/log_eip_status new file mode 100644 index 00000000..32ac2b42 --- /dev/null +++ b/changes/log_eip_status @@ -0,0 +1 @@ +- Properly log EIP status changes. diff --git a/src/leap/bitmask/crypto/srpauth.py b/src/leap/bitmask/crypto/srpauth.py index 93fb740f..ab98850d 100644 --- a/src/leap/bitmask/crypto/srpauth.py +++ b/src/leap/bitmask/crypto/srpauth.py @@ -217,10 +217,9 @@ class SRPAuth(QtCore.QObject):              """              logger.debug("Authentication preprocessing...") -            self._srp_user = self._srp.User(username, -                                            password, -                                            self._hashfun, -                                            self._ng) +            self._srp_user = self._srp.User(username.encode('utf-8'), +                                            password.encode('utf-8'), +                                            self._hashfun, self._ng)              _, A = self._srp_user.start_authentication()              self._srp_a = A @@ -487,7 +486,8 @@ class SRPAuth(QtCore.QObject):                  self.get_uid())              salt, verifier = self._srp.create_salted_verification_key( -                self._username, new_password, self._hashfun, self._ng) +                self._username.encode('utf-8'), new_password.encode('utf-8'), +                self._hashfun, self._ng)              cookies = {self.SESSION_ID_KEY: self.get_session_id()}              headers = { @@ -518,9 +518,9 @@ class SRPAuth(QtCore.QObject):              Might raise SRPAuthenticationError              :param username: username for this session -            :type username: str +            :type username: unicode              :param password: password for this user -            :type password: str +            :type password: unicode              :returns: A defer on a different thread              :rtype: twisted.internet.defer.Deferred diff --git a/src/leap/bitmask/gui/eip_status.py b/src/leap/bitmask/gui/eip_status.py index 77685cd3..324586c0 100644 --- a/src/leap/bitmask/gui/eip_status.py +++ b/src/leap/bitmask/gui/eip_status.py @@ -269,6 +269,10 @@ class EIPStatusWidget(QtGui.QWidget):          :type error: bool          """          leap_assert_type(error, bool) +        if error: +            logger.error(status) +        else: +            logger.debug(status)          self._eip_status = status          if error:              status = "<font color='red'>%s</font>" % (status,) diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py index dddd53da..fa1a82f8 100644 --- a/src/leap/bitmask/gui/mainwindow.py +++ b/src/leap/bitmask/gui/mainwindow.py @@ -880,8 +880,8 @@ class MainWindow(QtGui.QMainWindow):          leap_assert(self._provider_config, "We need a provider config!")          if data[self._provider_bootstrapper.PASSED_KEY]: -            username = self._login_widget.get_user().encode("utf8") -            password = self._login_widget.get_password().encode("utf8") +            username = self._login_widget.get_user() +            password = self._login_widget.get_password()              if self._srp_auth is None:                  self._srp_auth = SRPAuth(self._provider_config) diff --git a/src/leap/bitmask/gui/preferenceswindow.py b/src/leap/bitmask/gui/preferenceswindow.py index 58cb05ba..b043afe6 100644 --- a/src/leap/bitmask/gui/preferenceswindow.py +++ b/src/leap/bitmask/gui/preferenceswindow.py @@ -156,7 +156,7 @@ class PreferencesWindow(QtGui.QDialog):          """          logger.debug("SRP password changed successfully.")          try: -            self._soledad.change_passphrase(str(new_password)) +            self._soledad.change_passphrase(new_password)              logger.debug("Soledad password changed successfully.")          except NoStorageSecret:              logger.debug( diff --git a/src/leap/bitmask/gui/statemachines.py b/src/leap/bitmask/gui/statemachines.py index ee16a4c6..386cb75f 100644 --- a/src/leap/bitmask/gui/statemachines.py +++ b/src/leap/bitmask/gui/statemachines.py @@ -55,8 +55,8 @@ class SignallingState(QState):          """          Emits the signal on entry.          """ -        logger.debug('State %s entered. Emitting signal ...' -                     % (self._name + self.__class__.__name__)) +        logger.debug('State %s::%s entered. Emitting signal ...' +                     % (self._name, self.objectName()))          if self._signal is not None:              self._signal.emit() diff --git a/src/leap/bitmask/services/soledad/soledadbootstrapper.py b/src/leap/bitmask/services/soledad/soledadbootstrapper.py index fec60338..79bec1eb 100644 --- a/src/leap/bitmask/services/soledad/soledadbootstrapper.py +++ b/src/leap/bitmask/services/soledad/soledadbootstrapper.py @@ -192,9 +192,8 @@ class SoledadBootstrapper(AbstractBootstrapper):              # soledad-launcher in the gui.              raise -        leap_assert(sameProxiedObjects(self._soledad, None) -                    is not True, -                   "Null soledad, error while initializing") +        leap_assert(not sameProxiedObjects(self._soledad, None), +                    "Null soledad, error while initializing")          # and now, let's sync          sync_tries = self.MAX_SYNC_RETRIES @@ -246,7 +245,7 @@ class SoledadBootstrapper(AbstractBootstrapper):          try:              self._soledad = Soledad(                  uuid, -                self._password.encode('utf-8'), +                self._password,                  secrets_path=secrets_path.encode(encoding),                  local_db_path=local_db_path.encode(encoding),                  server_url=server_url, | 
