Skip to content
Snippets Groups Projects
  1. Sep 21, 2021
    • Sean Bright's avatar
      res_http_media_cache.c: Compare unaltered MIME types. · 02f54e27
      Sean Bright authored
      Rather than stripping parameters from Content-Type headers before
      comparison, first try to compare the whole string. If no match is
      found, strip the parameters and try that way.
      
      ASTERISK-29275 #close
      
      Change-Id: I2963c8ecbb3a9605b78b6421c415108d77a66a0f
      02f54e27
  2. Sep 20, 2021
  3. Sep 15, 2021
    • Naveen Albert's avatar
      res_pjsip_caller_id: Add ANI2/OLI parsing · 5b5c358e
      Naveen Albert authored
      Adds parsing of ANI II digits (Originating
      Line Information) to PJSIP, on par with
      what currently exists in chan_sip.
      
      ASTERISK-29472
      
      Change-Id: Ifc938a7a7d45ce33999ebf3656a542226f6d3847
      5b5c358e
  4. Sep 10, 2021
    • Sungtae Kim's avatar
      resource_channels.c: Fix external media data option · a1fa8df0
      Sungtae Kim authored
      Fixed the external media creation handle to handle the 'data' option correctly.
      
      ASTERISK-29629
      
      Change-Id: I22e57fe8ebf3d3e08fb2121aa4a8a52cc62e8129
      a1fa8df0
    • Naveen Albert's avatar
      res_tonedetect: Tone detection module · 7df69633
      Naveen Albert authored
      dsp.c contains arbitrary tone detection functionality
      which is currently only used for fax tone recognition.
      This change makes this functionality publicly
      accessible so that other modules can take advantage
      of this.
      
      Additionally, a WaitForTone and TONE_DETECT app and
      function are included to allow users to do their
      own tone detection operations in the dialplan.
      
      ASTERISK-29546
      
      Change-Id: Ie38c395000f4fd4d04e942e8658e177f8f499b26
      7df69633
    • George Joseph's avatar
      res_snmp: Add -fPIC to _ASTCFLAGS · 448962d0
      George Joseph authored
      With gcc 11, res/res_snmp.c and res/snmp/agent.c need the
      -fPIC option added to its _ASTCFLAGS.
      
      ASTERISK-29634
      
      Change-Id: I34649c85e075fd954e578378fabf798c3f038f50
      448962d0
  5. Sep 08, 2021
    • Jasper Hafkenscheid's avatar
      res_srtp: Disable parsing of not enabled cryptos · c07d5311
      Jasper Hafkenscheid authored
      When compiled without extended srtp crypto suites also disable parsing
      these from received SDP. This prevents using these, as some client
      implementations are not stable.
      
      ASTERISK-29625
      
      Change-Id: I7dafb29be1cdaabdc984002573f4bea87520533a
      c07d5311
  6. Sep 02, 2021
  7. Sep 01, 2021
    • Sebastien Duthil's avatar
      res_rtp_asterisk: Automatically refresh stunaddr from DNS · 6fbf55ac
      Sebastien Duthil authored
      This allows the STUN server to change its IP address without having to
      reload the res_rtp_asterisk module.
      
      The refresh of the name resolution occurs first when the module is
      loaded, then recurringly, slightly after the previous DNS answer TTL
      expires.
      
      ASTERISK-29508 #close
      
      Change-Id: I7955a046293f913ba121bbd82153b04439e3465f
      6fbf55ac
  8. Aug 25, 2021
  9. Aug 19, 2021
  10. Aug 18, 2021
  11. Aug 17, 2021
  12. Aug 16, 2021
  13. Aug 11, 2021
    • Joshua C. Colp's avatar
      policy: Deprecate modules and add versions to others. · 93870e7b
      Joshua C. Colp authored
      app_meetme is deprecated in 19, to be removed in 21.
      app_osplookup is deprecated in 19, to be removed in 21.
      chan_alsa is deprecated in 19, to be removed in 21.
      chan_mgcp is deprecated in 19, to be removed in 21.
      chan_skinny is deprecated in 19, to be removed in 21.
      res_pktccops is deprecated in 19, to be removed in 21.
      app_macro was deprecated in 16, to be removed in 21.
      chan_sip was deprecated in 17, to be removed in 21.
      res_monitor was deprecated in 16, to be removed in 21.
      
      ASTERISK-29548
      ASTERISK-29549
      ASTERISK-29550
      ASTERISK-29551
      ASTERISK-29552
      ASTERISK-29553
      ASTERISK-29558
      ASTERISK-29567
      ASTERISK-29572
      
      Change-Id: Ic3bee31a10d42c4b3bbc913d893f7b2a28a27131
      93870e7b
  14. Aug 03, 2021
    • Igor Goncharovsky's avatar
      res_pjsip_header_funcs: Add PJSIP_HEADERS() ability to read header by pattern · 4f437ea1
      Igor Goncharovsky authored
      PJSIP currently does not provide a function to replace SIP_HEADERS() function to get a list of headers from INVITE request.
      It may be used to get all X- headers in case the actual set and names of headers unknown.
      
      ASTERISK-29389
      
      Change-Id: Ic09d395de71a0021e0d6c5c29e1e19d689079f8b
      4f437ea1
    • Rijnhard Hessel's avatar
      res_statsd: handle non-standard meter type safely · 728a52fb
      Rijnhard Hessel authored
      Meter types are not well supported,
      lacking support in telegraf, datadog and the official statsd servers.
      We deprecate meters and provide a compliant fallback for any existing usages.
      
      A flag has been introduced to allow meters to fallback to counters.
      
      
      ASTERISK-29513
      
      Change-Id: I5fcb385983a1b88f03696ff30a26b55c546a1dd7
      728a52fb
  15. Aug 02, 2021
    • Sean Bright's avatar
      res_http_media_cache: Cleanup audio format lookup in HTTP requests · 6428124b
      Sean Bright authored
      Asterisk first looks at the end of the URL to determine the file
      extension of the returned audio, which in many cases will not work
      because the URL may end with a query string or a URL fragment. If that
      fails, Asterisk then looks at the Content-Type header and then finally
      parses the URL to get the extension.
      
      The order has been changed such that we look at the Content-Type
      header first, followed by looking for the extension of the parsed
      URL. We no longer look at the end of the URL, which was error prone.
      
      ASTERISK-29527 #close
      
      Change-Id: I1e3f83b339ef2b80661704717c23568536511032
      6428124b
  16. Jul 22, 2021
    • Joshua C. Colp's avatar
      AST-2021-007 - res_pjsip_session: Don't offer if no channel exists. · ec16d2ec
      Joshua C. Colp authored
      If a re-INVITE is received after we have sent a BYE request then it
      is possible for no channel to be present on the session. If this
      occurs we allow PJSIP to produce the offer instead. Since the call
      is being hung up if it produces an incorrect offer it doesn't
      actually matter. This also ensures that code which produces SDP
      does not need to handle if a channel is not present.
      
      ASTERISK-29381
      
      Change-Id: I673cb88c432f38f69b2e0851d55cc57a62236042
      ec16d2ec
  17. Jul 20, 2021
    • Andre Barbosa's avatar
      res_stasis_playback: Check for chan hangup on play_on_channels · f4d3f021
      Andre Barbosa authored
      Verify `ast_check_hangup` before looping to the next sound file.
      If the call is already hangup we just break the cycle.
      It also ensures that the PlaybackFinished event is sent if the call was hangup.
      
      This is also use-full when we are playing a big list of file for a channel that is hangup.
      Before this patch Asterisk will give a warning for every sound not played and fire a PlaybackStart for every sound file on the list tried to be played.
      
      With the patch we just break the playback cycle when the chan is hangup.
      
      ASTERISK-29501 #close
      
      Change-Id: Ic4e1c01b974c9a1f2d9678c9d6b380bcfc69feb8
      f4d3f021
  18. Jul 19, 2021
    • Sean Bright's avatar
      res_http_media_cache.c: Fix merge errors from 18 -> master · d5bb27a0
      Sean Bright authored
      ASTERISK-27871 #close
      
      Change-Id: I6624f2d3a57f76a89bb372ef54a124929a0338d7
      d5bb27a0
    • Sean Bright's avatar
      res_pjsip_stir_shaken: RFC 8225 compliance and error message cleanup. · 237285a9
      Sean Bright authored
      From RFC 8225 Section 5.2.1:
      
          The "dest" claim is a JSON object with the claim name of "dest"
          and MUST have at least one identity claim object.  The "dest"
          claim value is an array containing one or more identity claim JSON
          objects representing the destination identities of any type
          (currently "tn" or "uri").  If the "dest" claim value array
          contains both "tn" and "uri" claim names, the JSON object should
          list the "tn" array first and the "uri" array second.  Within the
          "tn" and "uri" arrays, the identity strings should be put in
          lexicographical order, including the scheme-specific portion of
          the URI characters.
      
      Additionally, make it clear that there was a failure to sign the JWT
      payload and not necessarily a memory allocation failure.
      
      Change-Id: Ia8733b861aef6edfaa9c2136e97b447a01578dc9
      237285a9
    • Sean Bright's avatar
      res_http_media_cache.c: Parse media URLs to find extensions. · d5683268
      Sean Bright authored
      Use cURL's URL parsing API, falling back to the urlparser library, to
      parse playback URLs in order to find their file extensions.
      
      For backwards compatibility, we first look at the full URL, then at
      any Content-Type header, and finally at just the path portion of the
      URL.
      
      ASTERISK-27871 #close
      
      Change-Id: I16d0682f6d794be96539261b3e48f237909139cb
      d5683268
  19. Jul 08, 2021
    • Igor Goncharovsky's avatar
      res_ari: Fix audiosocket segfault · 99d44f0c
      Igor Goncharovsky authored
      Add check that data parameter specified when audiosocket used for externalMedia.
      
      ASTERISK-29514 #close
      
      Change-Id: Ie562f03c5d6c3835a3631f376b3d43e75b8f9617
      99d44f0c
    • Sean Bright's avatar
      res_pjsip_config_wizard.c: Add port matching support. · 0ac9c835
      Sean Bright authored
      In f8b0c2c9 we added support for port numbers in 'match' statements
      but neglected to include that support in the PJSIP config wizard.
      
      The removed code would have also prevented IPv6 addresses from being
      successfully used in the config wizard as well.
      
      ASTERISK-29503 #close
      
      Change-Id: Idd5bbfd48009e7a741757743dbaea68e2835a34d
      0ac9c835
  20. Jun 24, 2021
    • Andre Barbosa's avatar
      res_stasis_playback: Send PlaybackFinish event only once for errors · a47308cc
      Andre Barbosa authored
      When we try to play a list of sound files in the same Play command,
      we get only one PlaybackFinish event, after all sounds are played.
      
      But in the case where the Play fails (because channel is destroyed
      for example), Asterisk will send one PlaybackFinish event for each
      sound file still to be played. If the list is big, Asterisk is
      sending many events.
      
      This patch adds a failed state so we can understand that the play
      failed. On that case we don't send the event, if we still have a
      list of sounds to be played.
      
      When we reach the last sound, we send the PlaybackFinish with
      the failed state.
      
      ASTERISK-29464 #close
      
      Change-Id: I4c2e5921cc597702513af0d7c6c2c982e1798322
      a47308cc
  21. Jun 17, 2021
    • Bernd Zobl's avatar
      res_pjsip_sdp_rtp: Evaluate remotely held for Session Progress · c30f68a5
      Bernd Zobl authored
      With the fix for ASTERISK_28754 channels are no longer put on hold if an
      outbound INVITE is answered with a "Session Progress" containing
      "inactive" audio.
      
      The previous change moved the evaluation of the media attributes to
      `negotiate_incoming_sdp_stream()` to have the `remotely_held` status
      available when building the SDP in `create_outgoing_sdp_stream()`.
      This however means that an answer to an outbound INVITE, which does not
      traverse `negotiate_incoming_sdp_stream()`, cannot set the
      `remotely_held` status anymore.
      
      This change moves the check so that both, `negotiate_incoming_sdp_stream()` and
      `apply_negotiated_sdp_stream()` can do the checks.
      
      ASTERISK-29479
      
      Change-Id: Icde805a819399d5123b688e1ed1d2bcd9d5b0f75
      c30f68a5
  22. Jun 16, 2021
    • George Joseph's avatar
      res_pjsip_messaging: Overwrite user in existing contact URI · b7027de1
      George Joseph authored
      When the MessageSend destination is in the form
      PJSIP/<number>@<endpoint> and the endpoint's contact
      URI already has a user component, that user component
      will now be replaced with <number> when creating the
      request URI.
      
      ASTERISK_29404
      
      Change-Id: I80e5910fa25c803d1440da0594a0d6b34b6b4ad5
      b7027de1
  23. Jun 15, 2021
  24. Jun 10, 2021
  25. Jun 08, 2021
  26. May 27, 2021
    • George Joseph's avatar
      res_pjsip_messaging: Refactor outgoing URI processing · c3654a99
      George Joseph authored
       * Implemented the new "to" parameter of the MessageSend()
         dialplan application.  This allows a user to specify
         a complete SIP "To" header separate from the Request URI.
      
       * Completely refactored the get_outbound_endpoint() function
         to actually handle all the destination combinations that
         we advertized as supporting.
      
       * We now also accept a destination in the same format
         as Dial()...  PJSIP/number@endpoint
      
       * Added lots of debugging.
      
      ASTERISK-29404
      Reported by Brian J. Murrell
      
      Change-Id: I67a485196d9199916468f7f98bfb9a0b993a4cce
      c3654a99
  27. May 26, 2021
    • Ben Ford's avatar
      STIR/SHAKEN: Add Date header, dest->tn, and URL checking. · 12e86008
      Ben Ford authored
      STIR/SHAKEN requires a Date header alongside the Identity header, so
      that has been added. Still on the outgoing side, we were missing the
      dest->tn section of the JSON payload, so that has been added as well.
      Moving to the incoming side, URL checking has been added to the public
      cert URL to ensure that it starts with http.
      
      https://wiki.asterisk.org/wiki/display/AST/OpenSIPit+2021
      
      Change-Id: Idee5b1b5e45bc3b483b3070e46ce322dca5b3f1c
      12e86008
    • Joshua C. Colp's avatar
      res_pjsip: On partial transport reload also move factories. · 44fde9f4
      Joshua C. Colp authored
      For connection oriented transports PJSIP uses factories to
      produce transports. When doing a partial transport reload
      we need to also move the factory of the transport over so
      that anything referencing the transport (such as an endpoint)
      has the factory available.
      
      ASTERISK-29441
      
      Change-Id: Ieae0fb98eab2d9257cad996a1136e5a62d307161
      44fde9f4
    • Evgenios_Greek's avatar
      stasis: Fix "FRACK!, Failed assertion bad magic number" when unsubscribing · 2193cf1b
      Evgenios_Greek authored
      When unsubscribing from an endpoint technology a FRACK
      would occur due to incorrect reference counting. This fixes
      that issue, along with some other issues.
      
      Fixed a typo in get_subscription when calling ao2_find as it
      needed to pass the endpoint ID and not the entire object.
      
      Fixed scenario where a subscription would get returned when
      it shouldn't have been when searching based on endpoint
      technology.
      
      A doulbe unreference has also been resolved by only explicitly
      releasing the reference held by tech_subscriptions.
      
      ASTERISK-28237 #close
      Reported by: Lucas Tardioli Silveira
      
      Change-Id: Ia91b15f8e5ea68f850c66889a6325d9575901729
      2193cf1b
    • Joseph Nadiv's avatar
      res_pjsip.c: Support endpoints with domain info in username · 98e41196
      Joseph Nadiv authored
      In multidomain environments, it is desirable to create
      PJSIP endpoints with the domain info in the endpoint name
      in pjsip_endpoint.conf.  This resulted in an error with
      registrations, NOTIFY, and OPTIONS packet generation.
      
      This commit will detect if there is an @ in the endpoint
      identifier and generate the URI accordingly so NOTIFY and
      OPTIONS From headers will generate correctly.
      
      ASTERISK-28393
      
      Change-Id: I96f8d01dfdd5573ba7a28299e46271dd4210b619
      98e41196
    • Joshua C. Colp's avatar
      res_rtp_asterisk: Set correct raddr port on RTCP srflx candidates. · a985e506
      Joshua C. Colp authored
      RTCP ICE candidates use a base address derived from the RTP
      candidate. The port on the base address was not being updated to
      the RTCP port.
      
      This change sets the base port to the RTCP port and all is well.
      
      ASTERISK-29433
      
      Change-Id: Ide2d2115b307bfd3c2dfbc4d187515d724519040
      a985e506
  28. May 21, 2021
Loading