Skip to content
Snippets Groups Projects
  1. Feb 18, 2021
    • Joshua C. Colp's avatar
      pjsip: Make modify_local_offer2 tolerate previous failed SDP. · 492945ac
      Joshua C. Colp authored
      If a remote side is broken and sends an SDP that can not be
      negotiated the call will be torn down but there is a window
      where a second 183 Session Progress or 200 OK that is forked
      can be received that also attempts to negotiate SDP. Since
      the code marked the SDP negotiation as being done and complete
      prior to this it assumes that there is an active local and remote
      SDP which it can modify, while in fact there is not as the SDP
      did not successfully negotiate. Since there is no local or remote
      SDP a crash occurs.
      
      This patch changes the pjmedia_sdp_neg_modify_local_offer2
      function to no longer assume that a previous SDP negotiation
      was successful.
      
      ASTERISK-29196
      
      Change-Id: I22de45916d3b05fdc2a67da92b3a38271ee5949e
      492945ac
  2. Dec 17, 2020
    • Pirmin Walthert's avatar
      res_pjsip_nat.c: Create deep copies of strings when appropriate · 0b109958
      Pirmin Walthert authored
      In rewrite_uri asterisk was not making deep copies of strings when
      changing the uri. This was in some cases causing garbage in the route
      header and in other cases even crashing asterisk when receiving a
      message with a record-route header set. Thanks to Ralf Kubis for
      pointing out why this happens. A similar problem was found in
      res_pjsip_transport_websocket.c. Pjproject needs as well to be patched
      to avoid garbage in CANCEL messages.
      
      ASTERISK-29024 #close
      
      Change-Id: Ic5acd7fa2fbda3080f5f36ef12e46804939b198b
      0b109958
  3. Aug 10, 2020
    • Michael Neuhauser's avatar
      pjproject: clone sdp to protect against (nat) modifications · e8c2ce28
      Michael Neuhauser authored
      PJSIP, UDP transport with external_media_address and session timers
      enabled. Connected to SIP server that is not in local net. Asterisk
      initiated the connection and is refreshing the session after 150s
      (timeout 300s). The 2nd refresh-INVITE triggered by the pjsip timer has
      a malformed IP address in its SDP (garbage string). This only happens
      when the SDP is modified by the nat-code to replace the local IP address
      with the configured external_media_address.
      Analysis: the code to modify the SDP (in
      res_pjsip_session.c:session_outgoing_nat_hook() and also (redundantly?)
      in res_pjsip_sdp_rtp.c:change_outgoing_sdp_stream_media_address()) uses
      the tdata->pool to allocate the replacement string. But the same
      pjmedia_sdp_stream that was modified for the 1st refresh-INVITE is also
      used for the 2nd refresh-INVITE (because it is stored in pjmedia's
      pjmedia_sdp_neg structure). The problem is, that at that moment, the
      tdata->pool that holds the stringified external_media_address from the
      1. refresh-INVITE has long been reused for something else.
      Fix by Sauw Ming of pjproject (see
      https://github.com/pjsip/pjproject/pull/2476): the local, potentially
      modified pjmedia_sdp_stream is cloned in
      pjproject/source/pjsip/src/pjmedia/sip_neg.c:process_answer() and the
      clone is stored, thereby detaching from the tdata->pool (which is only
      released *after* process_answer())
      
      ASTERISK-28973
      Reported-by: Michael Neuhauser
      
      Change-Id: I272ac22436076596e06aa51b9fa23fd1c7734a0e
      e8c2ce28
  4. Jul 23, 2020
    • Joshua C. Colp's avatar
      websocket / pjsip: Increase maximum packet size. · 9f641483
      Joshua C. Colp authored
      When dealing with a lot of video streams on WebRTC
      the resulting SDPs can grow to be quite large. This
      effectively doubles the maximum size to allow more
      streams to exist.
      
      The res_http_websocket module has also been changed
      to use a buffer on the session for reading in packets
      to ensure that the stack space usage is not excessive.
      
      Change-Id: I31d4351d70c8e2c11564807a7528b984f3fbdd01
      9f641483
  5. Jul 20, 2020
    • Joshua C. Colp's avatar
      pjsip: Include timer patch to prevent cancelling timer 0. · f1d7de12
      Joshua C. Colp authored
      I noticed this while looking at another issue and brought
      it up with Teluu. It was possible for an uninitialized timer
      to be cancelled, resulting in the invalid timer id of 0
      being placed into the timer heap causing issues.
      
      This change is a backport from the pjproject repository
      preventing this from happening.
      
      Change-Id: I1ba318b1f153a6dd7458846396e2867282b428e7
      f1d7de12
  6. Jun 16, 2020
    • Kevin Harwell's avatar
      pjproject: Upgrade bundled version to pjproject 2.10 · 415b55af
      Kevin Harwell authored
      This patch makes the usual necessary changes when upgrading to a new
      version pjproject. For instance, version number bump, patches removed
      from third-party, new *.md5 file added, etc..
      
      This patch also includes a change to the Asterisk pjproject Makefile to
      explicitly create the 'source/pjsip-apps/lib' directory. This directory
      is no longer there by default so needs to be added so the Asterisk
      malloc debug can be built.
      
      This patch also includes some minor changes to Asterisk that were a result
      of the upgrade. Specifically, there was a backward incompatibility change
      made in 2.10 that modified the "expires header" variable field from a
      signed to an unsigned value. This potentially effects comparison. Namely,
      those check for a value less than zero. This patch modified a few locations
      in the Asterisk code that may have been affected.
      
      Lastly, this patch adds a new macro PJSIP_MINVERSION that can be used to
      check a minimum version of pjproject at compile time.
      
      ASTERISK-28899 #close
      
      Change-Id: Iec8821c6cbbc08c369d0e3cd2f14e691b41d0c81
      415b55af
  7. May 11, 2020
  8. May 05, 2020
  9. Apr 29, 2020
    • Joshua C. Colp's avatar
      pjsip: Increase maximum ICE candidate count. · 3078a00a
      Joshua C. Colp authored
      In practice it has been seen that some users come
      close to our maximum ICE candidate count of 32.
      In case people have gone over this increases the
      count to 64, giving ample room.
      
      ASTERISK-28859
      
      Change-Id: I35cd68948ec0ada86c14eb53092cdaf8b62996cf
      3078a00a
  10. Apr 17, 2020
  11. Apr 13, 2020
  12. Feb 18, 2020
    • Ben Ford's avatar
      RTP/ICE: Send on first valid pair. · 168637cc
      Ben Ford authored
      When handling ICE negotiations, it's possible that there can be a delay
      between STUN binding requests which in turn will cause a delay in ICE
      completion, preventing media from flowing. It should be possible to send
      media when there is at least one valid pair, preventing this scenario
      from occurring.
      
      A change was added to PJPROJECT that adds an optional callback
      (on_valid_pair) that will be called when the first valid pair is found
      during ICE negotiation. Asterisk uses this to start the DTLS handshake,
      allowing media to flow. It will only be called once, either on the first
      valid pair, or when ICE negotiation is complete.
      
      ASTERISK-28716
      
      Change-Id: Ia7b68c34f06d2a1d91c5ed51627b66fd0363d867
      168637cc
  13. Feb 06, 2020
  14. Oct 10, 2019
    • George Joseph's avatar
      pjproject_bundled: Replace earlier reverts with official fixes. · 5d9f9f48
      George Joseph authored
      Issues in pjproject 2.9 caused us to revert some of their changes
      as a work around.  This introduced another issue where pjproject
      wouldn't build with older gcc versions such as that found on
      CentOS 6.  This commit replaces the reverts with the official
      fixes for the original issues and allows pjproject to be built
      on CentOS 6 again.
      
      ASTERISK-28574
      Reported-by: Niklas Larsson
      
      Change-Id: I06f8507bea553d1a01b0b8874197d35b9d47ec4c
      5d9f9f48
  15. Sep 24, 2019
    • George Joseph's avatar
      pjproject_bundled: Revert pjproject 2.9 commits causing leaks · cc83e76a
      George Joseph authored
      We've found a connection re-use regression in pjproject 2.9
      introduced by commit
      "Close #1019: Support for multiple listeners."
      https://trac.pjsip.org/repos/changeset/6002
      https://trac.pjsip.org/repos/ticket/1019
      
      Normally, multiple SSL requests should reuse the same connection
      if one already exists to the remote server.  When a transport
      error occurs, the next request should establish a new connection
      and any following requests should use that same one.  With this
      patch, when a transport error occurs, every new request creates
      a new connection so you can wind up with thousands of open tcp
      sockets, possibly exhausting file handles, and increasing memory
      usage.
      
      Reverting pjproject commit 6002 (and related 6021) restores the
      expected behavior.
      
      We also found a memory leak in SSL processing that was introduced by
      commit
      "Fixed #2204: Add OpenSSL remote certificate chain info"
      https://trac.pjsip.org/repos/changeset/6014
      https://trac.pjsip.org/repos/ticket/2204
      
      Apparently the remote certificate chain is continually recreated
      causing the leak.
      
      Reverting pjproject commit 6014 (and related 6022) restores the
      expected behavior.
      
      Both of these issues have been acknowledged by Teluu.
      
      ASTERISK-28521
      
      Change-Id: I8ae7233c3ac4ec29a3b991f738e655dabcaba9f1
      cc83e76a
  16. Aug 21, 2019
    • Dan Cropp's avatar
      pjproject: Configurable setting for cnonce to include hyphens or not · 0844d6b1
      Dan Cropp authored
      NEC SIP Station interface with authenticated registration only supports cnonce
      up to 32 characters.  In Linux, PJSIP would generate 36 character cnonce
      which included hyphens.  Teluu developed this patch adding a compile time
      setting to default to not include the hyphens.  They felt it best to still
      generate the UUID and strip the hyphens.
      They have indicated it will be part of PJSIP 2.10.
      
      ASTERISK-28509
      Reported-by: Dan Cropp
      
      Change-Id: Ibdfcf845d4f8c0a14df09fd983b11f2d72c5f470
      0844d6b1
  17. Jun 27, 2019
    • George Joseph's avatar
      pjproject_bundled: Add peer information to most SSL/TLS errors · 8b3ee7fe
      George Joseph authored
      Most SSL/TLS error messages coming from pjproject now have either
      the peer address:port or peer hostname, depending on what was
      available at the time and code location where the error was
      generated.
      
      ASTERISK-28444
      Reported by: Bernhard Schmidt
      
      Change-Id: I41770e8a1ea5e96f6e16b236692c4269ce1ba91e
      8b3ee7fe
  18. Jun 13, 2019
  19. May 21, 2019
    • Matt Jordan's avatar
      pjproject/Makefile: Updates for Darwin compatible builds · 54f7f7dc
      Matt Jordan authored
      This patch fixes three compatibility issues for Darwin compatible builds:
      
      (1) Use BSD compatible command line option for sed
      
      For some versions of BSD sed, the -r command line option is unknown.
      Both GNU and BSD sed support the -E command line option for enabling
      extended regular expressions; as such, this patch replaces the -r
      option with -E.
      
      (2) Look for '_' in pjproject generated symbols
      
      In Darwin comaptible systems, the symbols generated for pjproject may be
      prefixed with an '_'. When exporting these to a symbol file, the invocation
      to sed has to optionally look for a prefix of said '_' character.
      
      (3) Use -all_load/-noall_load when linking
      
      The flags -whole-archive/-no-whole-archive are not supported by the
      linker, and must instead be replaced with -all_load/-noall_load.
      
      Change-Id: I58121756de6a0560a6e49ca9d6bf9566a333cde3
      54f7f7dc
  20. May 20, 2019
    • Joshua Colp's avatar
      pjproject-bundled: Add upstream timer fixes · 3853fab3
      Joshua Colp authored
      Fixed #2191:
        - Stricter double timer entry scheduling prevention.
        - Integrate group lock in SIP transport, e.g: for add/dec ref,
          for timer scheduling.
      
      ASTERISK-28161
      Reported-by: Ross Beer
      
      Change-Id: I2e09aa66de0dda9414d8a8259a649c4d2d96a9f5
      3853fab3
  21. May 03, 2019
    • George Joseph's avatar
      build: Pass --fno-partial-inlining to third-party when appropriate · 089581f2
      George Joseph authored
      When the gcc version is >= 8.2.1, we were already setting the
      --fno-partial-inlining flag for Asterisk source files to get around
      a gcc bug but we weren't passing the flag down to the bundled
      builds of pjproject and jansson.
      
      ASTERISK-28392
      
      Change-Id: I99ede9bc35408ecd096f7d5369e8192d3dc75704
      089581f2
  22. Mar 27, 2019
  23. Feb 04, 2019
    • George Joseph's avatar
      bundled-jansson: On OpenSuse Leap libjansson.a was placed in lib64 · ac2d302c
      George Joseph authored
      On OpenSuse Leap, libjansson.a is installed in
      third-party/jansson/dest/lib64 instead of lib (which is where
      the top-level makeopts looks).  This causes a link failure.
      
      * Updated jansson/Makefile to add an explicit --libdir to force
        the installation to third-party/jansson/dest/lib.
      
      ASTERISK-28271
      Reported by: David Wilcox
      
      Change-Id: Ibf8af75e5da13562105fcc39ed898c6ef0b5a5f3
      ac2d302c
  24. Jan 23, 2019
    • Jean Aunis's avatar
      build : Fix cross-compilation errors · d9fae4a8
      Jean Aunis authored
      Bundled pjproject and jansson must be configured with the host and build
      parameters provided to the configure script.
      Autotools do not permit to check for the existence of local header files, so
      the control of hrirs.h must not be done when cross-compiling.
      
      ASTERISK-28250
      
      Change-Id: If0a76e52a87d4ab82b7d4c72d27d8759ca931880
      d9fae4a8
  25. Jan 22, 2019
  26. Nov 30, 2018
    • Pirmin Walthert's avatar
      pjproject_bundled: check whether UPDATE is supported on outgoing calls · ecb9ed09
      Pirmin Walthert authored
      In ASTERISK-27095 an issue had been fixed because of which chan_pjsip was not
      trying to send UPDATE messages when connected_line_method was set to invite.
      However this only solved the issue for incoming INVITES. For outgoing INVITES
      (important when transferring calls) the options variable needs to be updated
      at a different place.
      
      ASTERISK-28182 #close
      Reported-by: nappsoft
      
      Change-Id: I76cc06da4ca76ddd6dce814a8b97cc66b98aaf29
      ecb9ed09
  27. Nov 26, 2018
    • Corey Farrell's avatar
      jansson: Upgrade to 2.12. · 8e1ab4f1
      Corey Farrell authored
      This brings in jansson-2.12, removes all patches that were merged
      upstream.  README is created in third-party/jansson/patches to explain
      how to add patches but also because the patches folder must exist for
      the build process to succeed.
      
      Change-Id: If0f2d541c50997690660c21fb7b03d625a5cdadd
      Unverified
      8e1ab4f1
  28. Nov 16, 2018
    • Corey Farrell's avatar
      pjproject-bundled: Use AST_DEVMODE for conditional compilation. · 752fd06d
      Corey Farrell authored
      We previously allowed resample and g711 codecs to be built when
      TEST_FRAMEWORK was enabled.  This could cause errors if the testsuite
      was run without this option enabled.  Switch the build system to allow
      those codecs to be built when --enable-dev-mode is used.  This removes a
      chance for strange testsuite errors from use of an inadequate pjsua
      binary.
      
      Change-Id: Iee8a3613cdb711fa7e7d217c5a775a575907ae22
      Unverified
      752fd06d
  29. Nov 08, 2018
  30. Oct 24, 2018
    • Nick French's avatar
      res_pjsip: Implement additional SIP RFCs for Google Voice trunk compatability · 37b2e686
      Nick French authored
      This change implements a few different generic things which were brought
      on by Google Voice SIP.
      
      1.  The concept of flow transports have been introduced.  These are
      configurable transports in pjsip.conf which can be used to reference a
      flow of signaling to a target.  These have runtime configuration that can
      be changed by the signaling itself (such as Service-Routes and
      P-Preferred-Identity).  When used these guarantee an individual connection
      (in the case of TCP or TLS) even if multiple flow transports exist to the
      same target.
      
      2.  Service-Routes (RFC 3608) support has been added to the outbound
      registration module which when received will be stored on the flow
      transport and used for requests referencing it.
      
      3.  P-Associated-URI / P-Preferred-Identity (RFC 3325) support has been
      added to the outbound registration module.  If a P-Associated-URI header
      is received it will be used on requests as the P-Preferred-Identity.
      
      4.  Configurable outbound extension support has been added to the outbound
      registration module.  When set the extension will be placed in the
      Supported header.
      
      5.  Header parameters can now be configured on an outbound registration
      which will be placed in the Contact header.
      
      6.  Google specific OAuth / Bearer token authentication
      (draft-ietf-sipcore-sip-authn-02) has been added to the outbound
      registration module.
      
      All functionality changes are controlled by pjsip.conf configuration
      options and do not affect non-configured pjsip endpoints otherwise.
      
      ASTERISK-27971 #close
      
      Change-Id: Id214c2d1c550a41fcf564b7df8f3da7be565bd58
      37b2e686
  31. Oct 16, 2018
    • Richard Mudgett's avatar
      bundled pjproject: Remove timer cleanup usage patch. · 915861b4
      Richard Mudgett authored
      This patch is not in the upstream pjproject and does unsafe things with
      the timer->_timer_id and timer->_grp_lock values in pj_timer_entry_reset()
      outside of the timer heap lock.  pj_timer_entry_reset() is also called for
      timers that are not about to be rescheduled in a few places.
      
      Change-Id: I4fe0b4bc648f7be5903cf4531b94fc87275713c1
      915861b4
  32. Sep 28, 2018
  33. Sep 24, 2018
  34. Sep 21, 2018
    • Kevin Harwell's avatar
      rtp_engine: rtcp_report_to_json can overflow the ssrc integer value · 31fba4e8
      Kevin Harwell authored
      When writing an RTCP report to json the code attempts to pack the "ssrc" and
      "source_ssrc" unsigned integer values as a signed int value type. This of course
      means if the ssrc's unsigned value is greater than that which can fit into a
      signed integer value it gets converted to a negative number. Subsequently, the
      negative value goes out in the json report.
      
      This patch now packs the value as a json_int_t, which is the widest integer type
      available on a given system. This should make it so the value no longer
      overflows.
      
      Note, this was caught by two failing tests hep/rtcp-receiver/ and
      hep/rtcp-sender.
      
      Change-Id: I2af275286ee5e795b79f0c3d450d9e4b28e958b0
      Unverified
      31fba4e8
  35. Sep 19, 2018
  36. Sep 18, 2018
    • Joshua Colp's avatar
      pjproject: Upgrade to 2.8. · ce9a980b
      Joshua Colp authored
      This change brings in PJSIP 2.8, removes all the patches
      that were merged upstream, and makes a minor change to
      support a breaking change that was done.
      
      ASTERISK-28059
      
      Change-Id: I5097772b11b0f95c3c1f52df6400158666f0a189
      ce9a980b
  37. Sep 11, 2018
  38. Aug 03, 2018
    • Alexander Traud's avatar
      pjproject_bundled: Fix for Solaris builds. Do not undef s_addr. · 603d1e8d
      Alexander Traud authored
      The authors of PJProject undef s_addr because of some issue in Microsoft
      Windows. However in Oracle Solaris, s_addr is not a structure member, but
      defined to map to the real structure member.
      
      Updates the patch from ASTERISK_20366
      
      ASTERISK-27997
      
      Change-Id: I8223026d4d54e2a46521085fcc94bfa6ebe35b11
      603d1e8d
    • Alexander Traud's avatar
      pjproject_bundled: Find shared libraries in root --with-ssl=PATH. · 1c7c867c
      Alexander Traud authored
      The script configure from Teluu expects shared libraries (.so) in a subfolder
      called 'lib', when --with-xyz=PATH is specified. However for OpenSSL, the
      default location is the root of the source folder = PATH. Furthermore, Asterisk
      supports both, 'lib' and root. For consistency and because Asterisk is using
      (only) OpenSSL in PJProject, it is enhanced to support both locations, just
      like Asterisk.
      
      ASTERISK-27995
      
      Change-Id: I8eb916a88b6b8c22e29bb40bee8faaca6c73406f
      1c7c867c
Loading