Skip to content
Snippets Groups Projects
  1. Jun 30, 2016
  2. Jun 29, 2016
  3. Jun 28, 2016
  4. Jun 23, 2016
  5. Jun 22, 2016
  6. Jun 21, 2016
    • Joshua Colp's avatar
    • Richard Mudgett's avatar
      res_pjproject.c: Replace inlined DEBUG_ATLEAST() with macro. · f572b264
      Richard Mudgett authored
      Change-Id: I8799fb0a347ad76e747dafd0eacf1ea1086b9a8c
      f572b264
    • zuul's avatar
      9e0df5a1
    • George Joseph's avatar
      res_pjsip_pubsub: Address SEGV when attempting to terminate a subscription · b57cd014
      George Joseph authored
      Occasionally under load we'll attempt to send a final NOTIFY on a
      subscription that's already been terminated and a SEGV will occur
      down in pjproject's evsub_destroy function.  This is a result of a
      race condition between all the paths that can generate a notify
      and/or destroy the underlying pjproject evsub object:
      
       * The client can send a SUBSCRIBE with Expires: 0.
       * The client can send a SUBSCRIBE/refresh.
       * The subscription timer can expire.
       * An extension state can change.
       * An MWI event can be generated.
       * The pjproject transaction timer (timer_b) can expire.
      
      Normally when our pubsub_on_evsub_state is called with a terminate,
      we push a task to the serializer and return at which point the dialog
      is unlocked.  This is usually not a problem because the task runs
      immediately and locks the dialog again.  When the system is heavily
      loaded though, there may be a delay between the unlock and relock
      during which another event may occur such as the subscription timer
      or timer_b expiring, an extension state change, etc.  These may also
      cause a terminate to be processed and if so, we could cause pjproject
      to try to destroy the evsub structure twice.  There's no way for us to
      tell that the evsub was already destroyed and the evsub's group lock
      can't tolerate this and SEGVs.
      
      The remedy is twofold.
      
       * A patch has been submitted to Teluu and added to the bundled
         pjproject which adds add/decrement operations on evsub's group lock.
      
       * In res_pjsip_pubsub:
         * configure.ac and pjproject-bundled's configure.m4 were updated
           to check for the new evsub group lock APIs.
         * We now add a reference to the evsub group lock when we create
           the subscription and remove the reference when we clean up the
           subscription.  This prevents evsub from being destroyed before
           we're done with it.
         * A state has been added to the subscription tree structure so
           termination progress can be tracked through the asyncronous tasks.
         * The pubsub_on_evsub_state callback has been split so it's not doing
           double duty.  It now only handles the final cleanup of the
           subscription tree.  pubsub_on_rx_refresh now handles both client
           refreshes and client terminates.  It was always being called for
           both anyway.
         * The serialized_on_server_timeout task was removed since
           serialized_pubsub_on_rx_refresh was almost identical.
         * Missing state checks and ao2_cleanups were added.
         * Some debug levels were adjusted to make seeing only off-nominal
           things at level 1 and nominal or progress things at level 2+.
      
      ASTERISK-26099 #close
      Reported-by: Ross Beer.
      
      Change-Id: I779d11802cf672a51392e62a74a1216596075ba1
      b57cd014
    • Alexander Traud's avatar
      res_rtp_asterisk: Use latest DTLS version available by underlying platform. · 6eb0354f
      Alexander Traud authored
      Do not use DTLSv1_method() but DTLS_method() when available in OpenSSL of the
      underlying platform. This change enables DTLS 1.2 since OpenSSL 1.0.2, for
      WebRTC (DTLS-SRTP via SIP-over-WebSockets). This change enables AEAD-based
      cipher-suites.
      
      ASTERISK-26130 #close
      
      Change-Id: I41f24448d6d2953e8bdb97c9f4a6bc8a8f055fd0
      6eb0354f
    • Scott Griepentrog's avatar
      PJSIP: provide transport type with received messages · 596d0b0b
      Scott Griepentrog authored
      The receipt of a SIP MESSAGE may occur over any transport including TCP
      and TLS. When the message is received, the original URI is added to the
      message in the field PJSIP_RECVADDR, but this is insufficient to ensure
      a reply message can reach the originating endpoint. This patch adds the
      PJSIP_TRANSPORT field populated with the transport type.
      
      ASTERISK-26132 #close
      
      Change-Id: I28c4b1e40d573a056c81deb213ecf53e968f725e
      596d0b0b
    • Alexander Traud's avatar
      BuildSystem: Avoid obsolete warning with HELP_STRING on autoconf. · 9e222efb
      Alexander Traud authored
      Some configure scripts used both AC_HELP_STRING and its replacement
      AS_HELP_STRING. For consistency and to avoid obsolete warnings, those were
      changed to AS_HELP_STRING.
      
      ASTERISK-26046
      
      Change-Id: I8aad4fd2bdee40aa2a31ce3339a1eb33ff4f5b0f
      9e222efb
    • zuul's avatar
  7. Jun 20, 2016
    • zuul's avatar
      Merge "app_voicemail.c: Fix IMAP compile error." · bbaa9c81
      zuul authored
      bbaa9c81
    • Joshua Colp's avatar
      res_pjsip_session: Handle race condition at shutdown with timer. · e94aae00
      Joshua Colp authored
      When shutting down res_pjsip_session will get unloaded before res_pjsip.
      The act of unloading unregisters all the PJSIP services and sets
      their module IDs to -1. In some cases it is possible for a timer to
      occur after this happens which calls into res_pjsip_session. The
      res_pjsip_session module can then try to get the session from the
      INVITE session using the module ID. Since the module ID is now -1
      this fails.
      
      This change stores a copy of the module ID and uses it for the timer
      callback scenario. If the module ID is -1 the callback immediately
      returns but if the module ID is valid then it continues as normal.
      
      This works as the original ID of the module is guaranteed to still
      be valid when used with the INVITE session.
      
      ASTERISK-26127 #close
      
      Change-Id: I88df72525c4e9ef9f19c13aedddd3ac4a335c573
      e94aae00
Loading