Skip to content
Snippets Groups Projects
  1. Feb 09, 2021
    • George Joseph's avatar
      chan_iax2.c: Require secret and auth method if encryption is enabled · 28f187d6
      George Joseph authored
      If there's no secret specified for an iax2 peer and there's no secret
      specified in the dial string, Asterisk will crash if the auth method
      requested by the peer is MD5 or plaintext.  You also couldn't specify
      a default auth method in the [general] section of iax.conf so if you
      don't have static peers defined and just use the dial string, Asterisk
      will still crash even if you have a secret specified in the dial string.
      
      * Added logic to iax2_call() and authenticate_reply() to print
        a warning and hanhup the call if encryption is requested and
        there's no secret or auth method.  This prevents the crash.
      
      * Added the ability to specify a default "auth" in the [general]
        section of iax.conf.
      
      ASTERISK-29624
      Reported by: N A
      
      Change-Id: I5928e16137581f7d383fcc7fa04ad96c919e6254
      28f187d6
  2. Feb 04, 2021
  3. Feb 03, 2021
    • Alexander Traud's avatar
      chan_sip: Set up calls without audio (text+video), again. · 87ad1138
      Alexander Traud authored
      The previous commit 6d980de2 fixed this issue in the core of Asterisk.
      With that, each channel technology can be used without audio
      theoretically. Practically, the channel-technology driver chan_sip
      turned out to have an invalid check preventing that. chan_sip tested
      whether there is at least one audio format. However, chan_sip has to
      test whether there is at least one format. More cannot be tested while
      requesting chan_sip because only the [general] capabilities but not the
      [peer] caps are known yet. And the [peer] caps might not be a subset or
      show any intersection with the [general] caps. This change here fixes
      this.
      
      The original commit f04d5fb8, thirteen years ago, contained a software
      bug as it passed ANY audio capability to the channel-technology driver.
      Instead, it should have passed NO audio format. Therefore, this
      addressed issue here was not noticed in Asterisk 1.6.x and Asterisk 1.8.
      Then, Asterisk 10 changed that from ANY to NO, but nobody reported since
      then.
      
      ASTERISK-29265
      
      Change-Id: Ic16a3bf13cd1b5c4fc4041ed74961177d96b600f
      87ad1138
  4. Jan 27, 2021
    • Dan Cropp's avatar
      chan_pjsip, app_transfer: Add TRANSFERSTATUSPROTOCOL variable · 08881628
      Dan Cropp authored
      When a Transfer/REFER is executed, TRANSFERSTATUSPROTOCOL variable is
      0 when no protocl specific error
      SIP example of failure, 3xx-6xx for the SIP error code received
      
      This allows applications to perform actions based on the failure
      reason.
      
      ASTERISK-29252 #close
      Reported-by: Dan Cropp
      
      Change-Id: Ia6a94784b4925628af122409cdd733c9f29abfc4
      08881628
    • roadkill's avatar
      res/res_pjsip.c: allow user=phone when number contain *# · 176274ca
      roadkill authored
      if From number contain * or # asterisk will not add user=phone
      
      Currently only number that uses AST_DIGIT_ANYNUM can have "user=phone" but the validation should use AST_DIGIT_ANY
      this is a problem when you want to send call to ISUP
      as they will disregard the From header and either replace From with anonymous or with p-asserted-identity
      
      ASTERISK-29261
      Reported by: Mark Petersen
      Tested by: Mark Petersen
      
      Change-Id: I3307bdbf757582740bfee4110e85f7b6c9291cc4
      176274ca
    • Alexander Traud's avatar
      channel: Set up calls without audio (text+video), again. · f64ddf3d
      Alexander Traud authored
      ASTERISK-29259
      
      Change-Id: Ib6a6550e0e08355745d66da8e60ef49e81f9c6c5
      f64ddf3d
    • Alexander Traud's avatar
      chan_sip: SDP: Reject audio streams correctly. · 4c154f34
      Alexander Traud authored
      This completes the fix for ASTERISK_24543. Only when the call is an
      outgoing call, consult and append the configured format capabilities
      (p->caps). When all audio formats got rejected the negotiated format
      capabilities (p->jointcaps) contain no audio formats for incoming
      calls. This is required when there are other accepted media streams.
      
      ASTERISK-29258
      
      Change-Id: I8bab31c7f3f3700dce204b429ad238a524efebb9
      4c154f34
    • Ivan Poddubnyi's avatar
      main/frame: Add missing control frame names to ast_frame_subclass2str · 7c0fbaf0
      Ivan Poddubnyi authored
      Log proper control frame names instead of "Unknown control '14'", etc.
      
      Change-Id: I1724f2f4d1b064b25a5c93a7da0cb03be5143935
      7c0fbaf0
  5. Jan 25, 2021
  6. Jan 18, 2021
  7. Jan 14, 2021
  8. Jan 13, 2021
    • Jean Aunis's avatar
      Stasis/messaging: tech subscriptions conflict with endpoint subscriptions. · c10557c4
      Jean Aunis authored
      When both a tech subscription and an endpoint subscription exist for a given
      endpoint, TextMessageReceived events are dispatched to the tech subscription
      only.
      
      ASTERISK-29229
      
      Change-Id: I9eac4cba5f9e27285a282509395347abc58fc2b8
      c10557c4
    • Ivan Poddubnyi's avatar
      chan_pjsip: Assign SIPDOMAIN after creating a channel · c3fad2fd
      Ivan Poddubnyi authored
      session->channel doesn't exist until chan_pjsip creates it, so intead of
      setting a channel variable every new incoming call sets one and the same
      global variable.
      
      This patch moves the code to chan_pjsip so that SIPDOMAIN is set on
      a newly created channel, it also removes a misleading reference to
      channel->session used to fetch call pickup configuraion.
      
      ASTERISK-29240
      
      Change-Id: I90c9bbbed01f5d8863585631a29322ae4e046755
      c3fad2fd
    • Alexander Traud's avatar
      chan_sip: SDP: Sidestep stream parsing when its media is disabled. · ad606d4a
      Alexander Traud authored
      Previously, chan_sip parsed all known media streams in an SDP offer
      like video (and text) even when videosupport=no (and textsupport=no).
      This wasted processor power. Furthermore, chan_sip accepted SDP offers,
      including no audio but just video (or text) streams although
      videosupport=no (or textsupport=no). Finally, chan_sip denied the whole
      offer instead of individual streams when they had encryption (SDES-sRTP)
      unexpectedly enabled.
      
      ASTERISK-29238
      ASTERISK-29237
      ASTERISK-29222
      
      Change-Id: Ie49e4e2a11f0265f914b684738348ba8c0f89755
      ad606d4a
  9. Jan 11, 2021
    • Ivan Poddubnyi's avatar
      chan_pjsip: Stop queueing control frames twice on outgoing channels · cc496044
      Ivan Poddubnyi authored
      The fix for ASTERISK-27902 made chan_pjsip process SIP responses twice.
      This resulted in extra noise in logs (for example, "is making progress"
      and "is ringing" get logged twice by app_dial), as well as in noise in
      signalling: one incoming 183 Session Progress results in 2 outgoing 183-s.
      
      This change splits the response handler into 2 functions:
       - one for updating HANGUPCAUSE, which is still called twice,
       - another that does the rest, which is called only once as before.
      
      ASTERISK-28016
      Reported-by: Alex Hermann
      
      ASTERISK-28549
      Reported-by: Gant Liu
      
      ASTERISK-28185
      Reported-by: Julien
      
      Change-Id: I0a1874be5bb5ed12d572d17c7f80de6e5e542940
      cc496044
    • roadkill's avatar
      contrib/systemd: Added note on common issues with systemd and asterisk · cba8426b
      roadkill authored
      With newer version of linux /var/run/ is a symlink to /run/ that has
      been turned into tmpfs.
      
      Added note that if asterisk has to bind to a specific IP that
      systemd has to wait until the network is up.
      
      Added note on how to make sure that the environment variable
      HOSTNAME is included.
      
      ASTERISK-29216
      Reported by: Mark Petersen
      Tested by: Mark Petersen
      
      Change-Id: Ib3e560655befd3e99eec743687144f5569533379
      cba8426b
    • George Joseph's avatar
      Revert "res_pjsip_outbound_registration.c: Use our own scheduler and other stuff" · b3927ff8
      George Joseph authored
      This reverts commit 860e40dd.
      
      Reason for revert: Too many issues reported.  Need to research and correct.
      
      ASTERISK-29230
      ASTERISK-29231
      Reported by: Michael Maier
      
      Change-Id: I9011e2eecda4e91e1cfeeda6d1a7f1a0453eab41
      b3927ff8
  10. Jan 06, 2021
    • Jaco Kroon's avatar
      func_lock: fix multiple-channel-grant problems. · 3a230cc6
      Jaco Kroon authored
      
      Under contention it becomes possible that multiple channels will be told
      they successfully obtained the lock, which is a bug.  Please refer
      
      ASTERISK-29217
      
      This introduces a couple of changes.
      
      1.  Replaces requesters ao2 container with simple counter (we don't
          really care who is waiting for the lock, only how many).  This is
          updated undex ->mutex to prevent memory access races.
      2.  Correct semantics for ast_cond_timedwait() as described in
          pthread_cond_broadcast(3P) is used (multiple threads can be released
          on a single _signal()).
      3.  Module unload races are taken care of and memory properly cleaned
          up.
      
      Change-Id: I6f68b5ec82ff25b2909daf6e4d19ca864a463e29
      Signed-off-by: default avatarJaco Kroon <jaco@uls.co.za>
      3a230cc6
    • Jaco Kroon's avatar
      pbx_lua: Add LUA_VERSIONS environment variable to ./configure. · 49f625b8
      Jaco Kroon authored
      
      On Gentoo it's possible to have multiple lua versions installed, all
      with a path of /usr, so it's not possible to use the current --with-lua
      option to determisticly pin to a specific version as is required by the
      Gentoo PMS standards.
      
      This environment variable allows to lock to specific versions,
      unversioned check will be skipped if this variable is supplied.
      
      Change-Id: I8c403eda05df25ee0193960262ce849c7d2fd088
      Signed-off-by: default avatarJaco Kroon <jaco@uls.co.za>
      49f625b8
    • Dan Cropp's avatar
      chan_pjsip: Incorporate channel reference count into transfer_refer(). · fb23f985
      Dan Cropp authored
      Add channel reference count for PJSIP REFER. The call could be terminated
      prior to the result of the transfer. In that scenario, when the SUBSCRIBE/NOTIFY
      occurred several minutes later, it would attempt to access a session which was
      no longer valid.  Terminate event subscription if pjsip_xfer_initiate() or
      pjsip_xfer_send_request() fails in transfer_refer().
      
      ASTERISK-29201 #close
      Reported-by: Dan Cropp
      
      Change-Id: I3fd92fd14b4e3844d3d7b0f60fe417a4df5f2435
      fb23f985
    • Kevin Harwell's avatar
      app_mixmonitor: cleanup datastore when monitor thread fails to launch · 0e1ba9a7
      Kevin Harwell authored
      launch_monitor_thread is responsible for creating and initializing
      the mixmonitor, and dependent data structures. There was one off
      nominal path after the datastore gets created that triggers when
      the channel being monitored is hung up prior to monitor starting
      itself.
      
      If this happened the monitor thread would not "launch", and the
      mixmonitor object and associated objects are freed, including the
      underlying datastore data object. However, the datastore itself was
      not removed from the channel, so when the channel eventually gets
      destroyed it tries to access the previously freed datastore data
      and crashes.
      
      This patch removes and frees datastore object itself from the channel
      before freeing the mixmonitor object thus ensuring the channel does
      not call it when destroyed.
      
      ASTERISK-28947 #close
      
      Change-Id: Id4f9e958956d62473ed5ff06c98ae3436e839ff8
      0e1ba9a7
    • Sean Bright's avatar
      app_voicemail: Prevent deadlocks when out of ODBC database connections · 9ff548f1
      Sean Bright authored
      ASTERISK-28992 #close
      
      Change-Id: Ia7d608924036139ee2520b840d077762d02668d0
      9ff548f1
    • Kevin Harwell's avatar
      pbx_realtime: wrong type stored on publish of ast_channel_snapshot_type · d9aef0e6
      Kevin Harwell authored
      A prior patch segmented channel snapshots, and changed the underlying
      data object type associated with ast_channel_snapshot_type stasis
      messages. Prior to Asterisk 18 it was a type ast_channel_snapshot, but
      now it type ast_channel_snapshot_update.
      
      When publishing ast_channel_snapshot_type in pbx_realtime the
      ast_channel_snapshot was being passed in as the message data
      object. When a handler, expecting a data object type of
      ast_channel_snapshot_update, dereferenced this value a crash
      would occur.
      
      This patch makes it so pbx_realtime now uses the expected type, and
      channel snapshot publish method when publishing.
      
      ASTERISK-29168 #close
      
      Change-Id: I9a2cfa0ec285169317f4b9146e4027da8a4fe896
      d9aef0e6
    • Sean Bright's avatar
      asterisk: Export additional manager functions · 68d3d3af
      Sean Bright authored
      Rename check_manager_enabled() and check_webmanager_enabled() to begin
      with ast_ so that the symbols are automatically exported by the
      linker.
      
      ASTERISK~29184
      
      Change-Id: I85762b9a5d14500c15f6bad6507138c8858644c9
      68d3d3af
  11. Jan 04, 2021
    • Nick French's avatar
      res_pjsip: Prevent segfault in UDP registration with flow transports · 3c8598ff
      Nick French authored
      Segfault occurs during outbound UDP registration when all
      transport states are being iterated over. The transport object
      in the transport is accessed, but flow transports have a NULL
      transport object.
      
      Modify to not iterate over any flow transport
      
      ASTERISK-29210 #close
      
      Change-Id: If28dc3a18bdcbd0a49598b09b7fe4404d45c996a
      3c8598ff
  12. Dec 31, 2020
  13. Dec 28, 2020
  14. Dec 23, 2020
  15. Dec 22, 2020
  16. Dec 17, 2020
    • Sean Bright's avatar
      app_chanspy: Spyee information missing in ChanSpyStop AMI Event · 13682210
      Sean Bright authored
      The documentation in the wiki says there should be spyee-channel
      information elements in the ChanSpyStop AMI event.
      
          https://wiki.asterisk.org/wiki/x/Xc5uAg
      
      However, this is not the case in Asterisk <= 16.10.0 Version. We're
      using these Spyee* arguments since Asterisk 11.x, so these arguments
      vanished in Asterisk 12 or higher.
      
      For maximum compatibility, we still send the ChanSpyStop event even if
      we are not able to find any 'Spyee' information.
      
      ASTERISK-28883 #close
      
      Change-Id: I81ce397a3fd614c094d043ffe5b1b1d76188835f
      13682210
    • Sungtae Kim's avatar
      res_ari: Fix wrong media uri handle for channel play · 4b450b43
      Sungtae Kim authored
      Fixed wrong null object handle in
      /channels/<channel_id>/play request handler.
      
      ASTERISK-29188
      
      Change-Id: I6691c640247a51ad15f23e4a203ca8430809bafe
      4b450b43
    • Pirmin Walthert's avatar
      res_pjsip_nat.c: Create deep copies of strings when appropriate · 7a6cfde4
      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
      7a6cfde4
    • George Joseph's avatar
      logger.c: Automatically add a newline to formats that don't have one · ccb4951b
      George Joseph authored
      Scope tracing allows you to not specify a format string or
      variable, in which case it just prints the indent, file,
      function, and line number.  The trace output automatically
      adds a newline to the end in this case.  If you also have
      debugging turned on for the module, a debug message is
      also printed but the standard log functionality which
      prints it doesn't add the newline so you have messages
      that don't break correctly.
      
       * format_log_message_ap(), which is the common log
         message formatter for all channels, now adds a
         newline to the end of format strings that don't
         already have a newline.
      
      ASTERISK-29209
      Reported by: Alexander Traud
      
      Change-Id: I994a7df27f88df343b7d19f3e81a4b562d9d41da
      ccb4951b
  17. Dec 16, 2020
  18. Dec 15, 2020
Loading