Skip to content
Snippets Groups Projects
  1. Nov 18, 2019
    • Kevin Harwell's avatar
      various files - fix some alerts raised by lgtm code analysis · bdd785d3
      Kevin Harwell authored
      This patch fixes several issues reported by the lgtm code analysis tool:
      
      https://lgtm.com/projects/g/asterisk/asterisk
      
      Not all reported issues were addressed in this patch. This patch mostly fixes
      confirmed reported errors, potential problematic code points, and a few other
      "low hanging" warnings or recommendations found in core supported modules.
      These include, but are not limited to the following:
      
      * innapropriate stack allocation in loops
      * buffer overflows
      * variable declaration "hiding" another variable declaration
      * comparisons results that are always the same
      * ambiguously signed bit-field members
      * missing header guards
      
      Change-Id: Id4a881686605d26c94ab5409bc70fcc21efacc25
      bdd785d3
  2. Oct 09, 2019
    • Kevin Harwell's avatar
      pbx: deadlock when outgoing dialed channel hangs up too quickly · bf6f2738
      Kevin Harwell authored
      Here's the basic scenario that occurred when executing an AMI fast originate
      while at the same time something else locks the channels container, and also
      wants a lock on the dialed channel:
      
      1. pbx_outgoing_attempt obtains a lock on a dialed channel
      2. concurrently another thread obtains a lock on the channels container, and
         subsequently requests a lock on the dialed channel. It waits on #1. For
         instance, "core show channel <dialed channel"
      3. the outgoing call does not fail, but ends before the pbx_outgoing_attempt
         function exits
      4. pbx_outgoing_attempt function exits, the outgoing structure destructs, and
         attempts to hang up the dialed channel
      5. hang up tries to obtain the channels container lock, but can't due to #2.
      6. Asterisk is deadlocked.
      
      The solution was to allow the pbx_outgoing_exec function to "steal" ownership
      of the dialed channel, and handle hanging it up. The channel now is either hung
      up prior to it being potentially locked by the initiating thread, or if locked
      the hang up takes place in a different thread, thus alleviating the deadlock.
      
      ASTERISK-28561
      patches:
        iliketrains.diff submitted by Joshua Colp (license 5000)
      
      Change-Id: I51b42b92dde8f2215b69bb509e28667ee3a3853a
      bf6f2738
  3. Oct 07, 2019
    • Kevin Harwell's avatar
      serializer: move/add asterisk serializer pool functionality · c0efe19c
      Kevin Harwell authored
      Serializer pools have previously existed in Asterisk. However, for the most
      part the code has been duplicated across modules. This patch abstracts the
      code into an 'ast_serializer_pool' object. As well the code is now centralized
      in serializer.c/h.
      
      In addition serializer pools can now optionally be monitored by a shutdown
      group. This will prevent the pool from being destroyed until all serializers
      have completed.
      
      Change-Id: Ib1e906144b90ffd4d5ed9826f0b719ca9c6d2971
      c0efe19c
  4. Oct 01, 2019
    • Joshua Colp's avatar
      stasis: Pass bumped topic_all reference to proxy_dtor. · 729b286d
      Joshua Colp authored
      This avoids use of the global variable and ensures topic_all remains
      active until all topics are freed.
      
      ASTERISK-28553
      patches:
        ASTERISK-28553.patch by coreyfarrell (license 5909)
      
      Change-Id: I9a8cd8977f3c3a6aa00783f8336d2cfb9c2820f1
      729b286d
  5. Sep 26, 2019
    • Sean Bright's avatar
      pbx: Prevent Realtime switch crash on invalid priority · 702019fc
      Sean Bright authored
      pbx_extension_helper takes two 'context' arguments. One (con) is a
      pointer directly to a 'struct ast_context' and the other (context) is
      the name of the context. In all cases, one of these arguments is NULL
      and the other is non-NULL.
      
      Functions that are ultimately called by pbx_extension_helper expect that
      'context' will be non-NULL, so we set it unconditionally on entry into
      this function.
      
      ASTERISK-28534 #close
      
      Change-Id: Ifbbc5e71440afd80efd441f7a9d72e8b10b6f47d
      702019fc
  6. Sep 25, 2019
  7. Sep 24, 2019
    • Corey Farrell's avatar
      stasis_state: Create internal stasis_state_proxy object. · f7045cef
      Corey Farrell authored
      This improves the way which stasis_state reference counting works.
      Since manager->states holds onto the proxy object instead of the real
      object this allows stasis_state objects to be freed when appropriate
      without use of a special state_remove function.  Additionally each
      distinct eid associated with the state holds a reference to the state to
      prevent early release and potentially allow easier debug of leaks.
      
      Change-Id: I400e0db4b9afa3d5cb4ac7dad60907897e73f9a9
      f7045cef
    • Ben Ford's avatar
      taskprocessor.c: Add CLI commands to reset taskprocessor stats. · 4de1e6d0
      Ben Ford authored
      Added two new CLI commands to reset stats for taskprocessors. You can
      reset stats for a single, specific taskprocessor ('core reset
      taskprocessor <taskprocessor>'), or you can reset all taskprocessors
      ('core reset taskprocessors'). These commands will reset the counter for
      the number of tasks processed as well as the max queue size.
      
      Change-Id: Iaf17fc4ae29396ab0c6ac92408fc7bdc2f12362d
      4de1e6d0
  8. Sep 23, 2019
    • Corey Farrell's avatar
      core: Add AO2_ALLOC_OPT_NO_REF_DEBUG option. · 725e991f
      Corey Farrell authored
      Previous to this patch passing a NULL tag to ao2_alloc or ao2_ref based
      functions would result in the reference not being logged under
      REF_DEBUG.  This could sometimes cause inaccurate logging if NULL was
      accidentally passed to a reference action.  Now reference logging is
      only disabled by option passed to the allocation method.
      
      Change-Id: I3c17d867d901d53f9fcd512bef4d52e342637b54
      725e991f
    • George Joseph's avatar
      astmm.c: Display backtrace with memory show allocations · e82f2f6e
      George Joseph authored
      You can currently capture backtraces of memory allocations but they
      only get displayed when you stop asterisk and the atexit hooks
      are enabled.  Now, if memory backtrace is on and you issue a
      "memory show allocations" CLI command for a specific file, then
      a backtrace will show for each allocation that occurred after
      you turned "memory backtrace on".  The backtrace display is shown
      only when a specific file's allocations are displayed to prevent
      a massive CLI dump of every file's allocations.
      
      Change-Id: Ic657afc1fc6ec7205e16eb36a97a611d235a2b4f
      e82f2f6e
    • Corey Farrell's avatar
      core: Fix ABI mismatch of ao2_global_obj. · a4142c84
      Corey Farrell authored
      astobj2.c declares DEBUG_THREADS_LOOSE_ABI to avoid overhead of debug
      threads tracking information in the internal structures of astobj2.
      Unfortunately this means that ao2_global_obj contains the statically
      allocated debug threads tracking fields which are used by initialization
      and cleanup but main/astobj2.c believed those fields and associated
      space did not exist.
      
      Change-Id: Icef41ad97d88a8c1d1515e034ec8133cab3b1527
      a4142c84
  9. Sep 20, 2019
  10. Sep 19, 2019
    • Corey Farrell's avatar
      stasis: Fix leaks · 3dfbc05c
      Corey Farrell authored
      * Release reference returned by cache_remove
      * state_alloc unconditionally bumped state_topic even when it was
        locally allocated.
      
      Change-Id: I51101bf7d07b8dc8ce8fc46b6cb31fbbd213fbc7
      3dfbc05c
  11. Sep 18, 2019
    • Joshua Colp's avatar
      func_jitterbuffer: Add audio/video sync support. · 7298a785
      Joshua Colp authored
      This change adds support to the JITTERBUFFER dialplan function
      for audio and video synchronization. When enabled the RTCP SR
      report is used to produce an NTP timestamp for both the audio and
      video streams. Using this information the video frames are queued
      until their NTP timestamp is equal to or behind the NTP timestamp
      of the audio. The audio jitterbuffer acts as the leader deciding
      when to shrink/grow the jitterbuffer when adaptive is in use. For
      both adaptive and fixed the video buffer follows the size of the
      audio jitterbuffer.
      
      ASTERISK-28533
      
      Change-Id: I3fd75160426465e6d46bb2e198c07b9d314a4492
      7298a785
  12. Sep 17, 2019
    • Florian Floimair's avatar
      core: Add H.265/HEVC passthrough support · c1898320
      Florian Floimair authored
      This change adds H.265/HEVC as a known codec and creates a cached
      "h265" media format for use.
      
      Note that RFC 7798 section 7.2 also describes additional SDP
      parameters. Handling of these is not yet supported.
      
      ASTERISK-28512
      
      Change-Id: I26d262cc4110b4f7e99348a3ddc53bad0d2cd1f2
      c1898320
  13. Sep 12, 2019
    • Sean Bright's avatar
      channels: Allow updating variable value · 32ce6e9a
      Sean Bright authored
      When modifying an already defined variable in some channel drivers they
      add a new variable with the same name to the list, but that value is
      never used, only the first one found.
      
      Introduce ast_variable_list_replace() and use it where appropriate.
      
      ASTERISK-23756 #close
      Patches:
        setvar-multiplie.patch submitted by Michael Goryainov
      
      Change-Id: Ie1897a96c82b8945e752733612ee963686f32839
      32ce6e9a
  14. Sep 10, 2019
    • Ben Ford's avatar
      res_rtp: Add unit tests for RTCP stats. · 0e56643d
      Ben Ford authored
      Added unit tests for RTCP video stats. These tests include NACK, REMB,
      FIR/FUR/PLI, SR/RR/SDES, and packet loss statistics. The REMB and FIR
      tests are currently disabled due to a bug. We expect to receive a
      compound packet, but the code sends this out as a single packet, which
      the browser accepts, but makes Asterisk upset.
      
      While writing these tests, I noticed an issue with NACK as well. Where
      it is handling a received NACK request, it was reading in only the first
      8 bits of following packets that were also lost. This has been changed
      to the correct value of 16 bits.
      
      Also made a minor fix to the data buffer unit test.
      
      Change-Id: I56107c7411003a247589bbb6086d25c54719901b
      0e56643d
  15. Sep 05, 2019
    • Joshua Colp's avatar
      AST-2019-005 - translate: Don't assume all frames will have a src. · 1e9714a0
      Joshua Colp authored
      This change removes the assumption that a frame will always have
      a src set on it. This assumption is incorrect.
      
      Given a scenario where an RTP packet is received with no payload
      the resulting audio frame will have no samples. If this frame goes
      through a signed linear translation path an interpolated frame can
      be created (if generic packet loss concealment is enabled) that has
      minimal data on it, including no src. If this frame is given to a
      translation path a crash will occur due to the lack of src.
      
      ASTERISK-28499
      
      Change-Id: I024d10dd98207eb8a6b35b59880bcdf1090538f8
      1e9714a0
  16. Aug 22, 2019
    • George Joseph's avatar
      dns_core: Create new API ast_dns_resolve_ipv6_and_ipv4 · 9e015713
      George Joseph authored
      The new function takes in a pointer to an ast_sockaddr structure,
      a hostname and an optional port and then dispatches parallel
      "AAAA" and "A" record queries.  If an "AAAA" record is returned,
      it's parsed into the ast_sockaddr structure along with the port
      if it was supplied.  If no "AAAA" record was returned, the
      first "A" record returned (if any) is parsed instead.
      
      This is a synchronous call.  If you need asynchronous lookups,
      use ast_dns_query_set_resolve_async and roll your own.
      
      Change-Id: I194b0b0e73da94b35cc35263a868ffac3a8d0a95
      9e015713
  17. Aug 20, 2019
    • Sean Bright's avatar
      audiohook.c: Substitute silence for unavailable audio frames · 64906c4c
      Sean Bright authored
      There are 4 scenarios to consider when capturing audio from a channel
      with an audiohook:
      
       1. There is no rx and no tx audio, so return nothing.
       2. There is rx but no tx audio, so return rx.
       3. There is tx but no rx audio, so return tx.
       4. There is rx and tx audio, so mix them and return.
      
      The file passed as the primary argument to MixMonitor will be written to
      in scenarios 2, 3, and 4. However, if you pass the r() and t() options
      to MixMonitor, a frame will only be written to the r() file if there was
      rx audio and a frame will only be written to the t() file if there was
      tx audio.
      
      If you subsequently take the r() and t() files and try to mix them, the
      sides of the conversation will 'drift' and be non-representative of the
      user experience.
      
      This patch adds a new 'S' option to MixMonitor that injects a frame of
      silence on either the r() side or the t() side of the channel so that
      when later mixed, there is no such drift.
      
      Change-Id: Ibf5ed73a811087727bd561a89a59f4447b4ee20e
      64906c4c
  18. Aug 08, 2019
    • Kevin Harwell's avatar
      srtp: Fix possible race condition, and add NULL checks · b805e123
      Kevin Harwell authored
      Somehow it's possible for the srtp session object to be NULL even though the
      Asterisk srtp object itself is valid. When this happened it would cause a
      crash down in the srtp code when attempting to protect or unprotect data.
      
      After looking at the code there is at least one spot that makes this situation
      possible. If Asterisk fails to unprotect the data, and after several retries
      it still can't then the srtp->session gets freed, and set to NULL while still
      leaving the Asterisk srtp object around. However, according to the original
      issue reporter this does not appear to be their situation since they found
      no errors logged stating the above happened (which Asterisk does for that
      situation).
      
      An issue was found however, where a possible race condition could occur between
      the pjsip incoming negotiation, and the receiving of RTP packets. Both places
      could attempt to create/setup srtp for the same rtp instance at the same time.
      This potentially could be the cause of the problem as well.
      
      Given the above this patch adds locking around srtp setup for a given rtp, or
      rtcp instance. NULL checks for the session have also been added within the
      protect and unprotect functions as a precaution. These checks should at least
      stop Asterisk from crashing if it gets in this situation again.
      
      This patch also fixes one other issue noticed during investigation. When doing
      a replace the old object was freed before creating the replacement. If the new
      replacement object failed to create then the rtp/rtcp instance would now point
      to freed srtp data which could potentially cause a crash as well when the next
      attempt to reference it was made. This is now fixed so the old srtp object is
      kept upon replacement failure.
      
      Lastly, more logging has been added to help diagnose future issues.
      
      ASTERISK-28472
      
      Change-Id: I240e11cbb1e9ea8083d59d50db069891228fe5cc
      b805e123
  19. Aug 07, 2019
    • Joshua Colp's avatar
      cdr / cel: Use event time at event creation instead of processing. · 261646c1
      Joshua Colp authored
      When updating times on CDR or CEL records using the time at which
      it is done can result in times being incorrect if the system is
      heavily loaded and stasis message processing is delayed.
      
      This change instead makes it so CDR and CEL use the time at which
      the stasis messages that drive the systems are created. This allows
      them to be backed up while still producing correct records.
      
      ASTERISK-28498
      
      Change-Id: I6829227e67aefa318efe5e183a94d4a1b4e8500a
      261646c1
  20. Aug 01, 2019
    • Kevin Harwell's avatar
      various modules: json integer overflow · 3656c42c
      Kevin Harwell authored
      There were still a few places in the code that could overflow when "packing"
      a json object with a value outside the base type integer's range. For instance:
      
      unsigned int value = INT_MAX + 1
      ast_json_pack("{s: i}", value);
      
      would result in a negative number being "packed". In those situations this patch
      alters those values to a ast_json_int_t, which widens the value up to a long or
      long long.
      
      ASTERISK-28480
      
      Change-Id: Ied530780d83e6f1772adba0e28d8938ef30c49a1
      3656c42c
  21. Jul 30, 2019
  22. Jul 29, 2019
    • Sean Bright's avatar
      manager: Send fewer packets · 5f66fb51
      Sean Bright authored
      The functions that build manager message headers do so in a way that
      results in a single messages being split across multiple packets. While
      this doesn't matter to the remote end, it makes network captures noisier
      and harder to follow, and also means additional system calls.
      
      With this patch, we build up more of the message content into the TLS
      buffer before flushing to the network. This change is completely
      internal to the manager code and does not affect any of the existing
      API's consumers.
      
      Change-Id: I50128b0769060ca5272dbbb5e60242d131eaddf9
      5f66fb51
    • George Joseph's avatar
      loader.c: Fix possible SEGV when a module fails to register · 8e44d823
      George Joseph authored
      When a module fails to register itself (usually a coding error
      in the module), dlerror() can return NULL.  We weren't checking
      for that in load_dlopen() before trying to strdup the error message
      so a SEGV was thrown.  dlerror() is now surrounded with an S_OR
      so we don't SEGV.
      
      Change-Id: Ie0fb9316f08a321434f3f85aecf3c7d2ede8b956
      8e44d823
  23. Jul 18, 2019
    • Walter Doekes's avatar
      sched: Don't allow ast_sched_del to deadlock ast_sched_runq from same thread · 3c6f1199
      Walter Doekes authored
      When fixing ASTERISK~24212, a change was done so a scheduled callback could not
      be removed while it was running. The caller of ast_sched_del would have to wait.
      
      However, when the caller of ast_sched_del is the callback itself (however wrong
      this might be), this new check would cause a deadlock: it would wait forever
      for itself.
      
      This changeset introduces an additional check: if ast_sched_del is called
      by the callback itself, it is immediately rejected (along with an ERROR log and
      a backtrace). Additionally, the AST_SCHED_DEL_UNREF macro is adjusted so the
      after-ast_sched_del-refcall function is only run if ast_sched_del returned
      success.
      
      This should fix the following spurious race condition found in chan_sip:
      - thread 1: schedule sip_poke_peer_now (using AST_SCHED_REPLACE)
      - thread 2: run sip_poke_peer_now
      - thread 2: blank out sched-ID (too soon!)
      - thread 1: set sched-ID (too late!)
      - thread 2: try to delete the currently running sched-ID
      
      After this fix, an ERROR would be logged, but no deadlocks (in do_monitor) nor
      excess calls to sip_unref_peer(peer) (causing double frees of rtp_instances and
      other madness) should occur.
      
      (Thanks Richard Mudgett for reviewing/improving this "scary" change.)
      
      Note that this change does not fix the observed race condition: unlocked
      access to peer->pokeexpire (and potentially other scheduled items in chan_sip),
      causing AST_SCHED_DEL_UNREF to look at a changing id. But it will make the
      deadlock go away. And in the observed case, it will not have adverse affects
      (like memory leaks) because the scheduled item is removed through a different
      path.
      
      ASTERISK-28282
      
      Change-Id: Ic26777fa0732725e6ca7010df17af77a012aa856
      3c6f1199
  24. Jul 15, 2019
    • Kevin Harwell's avatar
      manager: Log AMI actions · ba25038f
      Kevin Harwell authored
      When manager debugging is turned on, this patch makes it so incoming AMI actions
      are now also logged.
      
      Change-Id: I8047524510e7ac97d99482b2448f8e368f29cd47
      ba25038f
  25. Jul 08, 2019
    • Kevin Harwell's avatar
      mwi: Update the MWI core to use stasis_state API · b31ac839
      Kevin Harwell authored
      ** Note **
      
      This patch is meant to be the minimum needed in order for the MWI core to use
      the now underlying stasis_state module. As such it does not completely remove
      its reliance on the stasis_cache. Doing so has allowed current consumers to
      not have to change, and update those code paths for this patch. When time
      allows, subsequent patches can/will be made to those consumers to take advantage
      of some of the new MWI API included here. Thus, eventually and ultimately
      removing MWI dependency on the stasis_cache.
      
      ** End Note **
      
      This patch makes it so the MWI core now takes advantage of the new stasis_state
      API. Consumers of MWI should no longer need to depend upon stasis topic pooling,
      and the stasis cache directly. Similar functionality and implementation details
      have now been pushed into the stasis_state module. However, all MWI state should
      be accessed via the MWI API itself.
      
      As such a few new methods, and constructs have been added to the MWI core that
      facilitate consumer publishing, subscribing, and iterating over MWI state data.
      
      * ast_mwi_subscriber *
      
      Created via ast_mwi_add_subscriber, a subscriber subscribes to a given mailbox
      in order to receive updates about the given mailbox. Adding a subscriber will
      create the underlying topic, and associated state data if those do not already
      exist for it. The topic, and last known state data is guaranteed to exist for
      the lifetime of the subscriber.
      
      * ast_mwi_publisher *
      
      Before publishing to a particular topic a publisher should be created. This can
      be achieved by using ast_mwi_add_publisher. Publishing to a mailbox should then
      be done using one of the MWI publish functions. This ensures the message is
      published to the appropriate topic, and the last known state is maintained.
      
      * ast_mwi_observer *
      
      Add an observer in order to watch for particular MWI module related events. For
      instance if a submodule needs to know when a subscription is added to any
      mailbox an observer can be added to watch for that.
      
      * other *
      
      Urgent message count is now part of the published MWI state object. Also state
      can be iterated over using defined callbacks.
      
      ASTERISK-28442
      
      Change-Id: I93f935f9090cd5ddff6d4bc80ff90703c05cf776
      b31ac839
    • Kevin Harwell's avatar
      stasis_state: Make unsubscribes NULL tolerant · 83c6ebba
      Kevin Harwell authored
      Regular stasis unsubscribes can handle NULL subscription objects. This patch
      makes it so stasis state unsubscribes handles NULL's as well.
      
      ASTERISK-28442
      
      Change-Id: Ic3648e8df043a85b77cff085e9ff10356028e479
      83c6ebba
  26. Jun 28, 2019
    • Kevin Harwell's avatar
      stasis_state: Add new stasis_state module · 363bafc2
      Kevin Harwell authored
      This new module describes an API that can be thought of as a combination of
      stasis topic pools, and caching. Except, hopefully done in a more efficient
      and less memory "leaky" manner.
      
      The API defines methods, and data structures for managing, and tracking
      published message state through stasis. By adding a subscriber or publisher,
      consumers can more easily track the lifetime of the contained state. For
      instance, when no more publishers and/or subscribers have need of the topic,
      and associated state its data is removed from the managed container.
      
      * stasis_state_manager *
      
      The manager stores and well, manages state data. Each state is an association
      of a unique stasis topic, and the last known published stasis message on that
      topic. There is only ever one managed state object per topic. For each topic
      all messages are forwarded to an "all" topic also maintained by the manager.
      
      * stasis_state_subscriber *
      
      Topic and state can be created, or referenced within the manager by adding a
      stasis_state_subscriber. When adding a subscriber if no state currently exists
      new managed state is immediately created. If managed state already exists then
      a new subscriber is created referencing that state. The managed state is
      guaranteed to live throughout the subscriber's lifetime. State is only removed
      from the manager when no other entities require it.
      
      * stasis_state_publisher *
      
      Topic and state can be created, or referenced within the manager by also adding
      a stasis_state_publisher. When adding a publisher if no state currently exists
      new managed state is created. If managed state already exists then a new
      publisher is created referencing that state. The managed state is guaranteed to
      live throughout the publisher's lifetime. State is only removed from the
      manager when no other entities require it.
      
      * stasis_state_observer *
      
      Some modules may wish to watch for, and react to managed state events. By
      registering a state observer, and implementing handlers for the desired
      callbacks those modules can do so.
      
      * other *
      
      Callbacks also exist that allow consumers to iterate over all, or some of the
      managed state.
      
      ASTERISK-28442
      
      Change-Id: I7a4a06685a96e511da9f5bd23f9601642d7bd8e5
      363bafc2
  27. Jun 27, 2019
  28. Jun 18, 2019
    • Alexei Gradinari's avatar
      translate.c do not log WARNING on empty audio frame · e3866cb7
      Alexei Gradinari authored
      There is WARNING "no samples for ..." on each Playtones.
      The function ast_playtones_start calls ast_activate_generator,
      which calls ast_prod.
      The function ast_prod calls ast_write with empty audio frame.
      In this case it's spam log.
      
      Change-Id: Id4ac309489d9ff281bad02abdef341cecdede660
      e3866cb7
  29. Jun 13, 2019
    • George Joseph's avatar
      app_confbridge: Attended transfer event fixup · f3e5419d
      George Joseph authored
      When a channel already in a conference bridge is attended transfered
      to another extension, or when an existing call is attended
      transferred into a conference bridge, we now generate ConfbridgeJoin
      and ConfbridgeLeave events for the entering and departing channels.
      
      Change-Id: Id7709cfbceb26fbcb828b2d0d2a6b2fbeaf028e1
      f3e5419d
  30. May 10, 2019
    • George Joseph's avatar
      Fixes for GCC 9 · c5c953c1
      George Joseph authored
      Various fixes for issues caught by gcc 9.  Mostly snprintf
      trying to copy to a buffer potentially too small.
      
      ASTERISK-28412
      
      Change-Id: I9e85a60f3c81d46df16cfdd1c329ce63432cf32e
      c5c953c1
  31. May 06, 2019
    • Kevin Harwell's avatar
      conversions.c: Add conversions for largest max sized integer · def6bbc9
      Kevin Harwell authored
      Added a conversion for umax (largest maximum sized integer allowed). Adjusted
      the other current conversion functions (uint and ulong) to be derivatives of
      the umax conversion since they are simply subsets of umax.
      
      Also made the negative check move the pointer on spaces since strtoumax does it
      anyways.
      
      Change-Id: I56c2ef2629d49b524c8df58af12951c181f81f08
      def6bbc9
  32. May 02, 2019
    • Holger Hans Peter Freyther's avatar
      stasis: Call callbacks when imparting fails · 3087c82e
      Holger Hans Peter Freyther authored
      After a bridge has been deleted the stasis control will depart
      the channel and might attempt to re-add it to the dial bridge.
      
      The later can fail and this can lead to a situation that the stasis
      control is unlinked but the after_bridge_cb_failed cb is executed trying
      to access a dangling control object.
      
      Fix it by calling the after_cb's before bridge_channel_impart_signal.
      
      ASTERISK-26718
      
      Change-Id: Ib4e8f70d7a21bd54afe3cb51cc6717ef7c355496
      3087c82e
  33. May 01, 2019
    • Joshua Colp's avatar
      rtp: Add support for transport-cc in receiver direction. · 6bb70c93
      Joshua Colp authored
      The transport-cc draft is a mechanism by which additional information
      about packet reception can be provided to the sender of packets so
      they can do sender side bandwidth estimation. This is accomplished
      by having a transport specific sequence number and an RTCP feedback
      message. This change implements this in the receiver direction.
      
      For each received RTP packet where transport-cc is negotiated we store
      the time at which the RTP packet was received and its sequence number.
      At a 1 second interval we go through all packets in that period of time
      and use the stored time of each in comparison to its preceding packet to
      calculate its delta. This delta information is placed in the RTCP
      feedback message, along with indicators for any packets which were not
      received.
      
      The browser then uses this information to better estimate available
      bandwidth and adjust accordingly. This may result in it lowering the
      available send bandwidth or adjusting how "bursty" it can be.
      
      ASTERISK-28400
      
      Change-Id: I654a2cff5bd5554ab94457a14f70adb71f574afc
      6bb70c93
  34. Apr 24, 2019
    • Ben Ford's avatar
      stasis: Fix crash at shutdown. · dc02d0d9
      Ben Ford authored
      When compiling in dev mode, stasis statistics are enabled and can cause
      a crash at shutdown due to the following:
      - Containers are freed
      - Topics and subscriptions remain
      - When those topics and subscriptions are deallocated, they go to do
        things with the container
      
      This changes the containers to global ao2 objects, and whenever needed
      in the code, a reference must be obtained and checked before any
      operations can be done.
      
      ASTERISK-28353 #close
      
      Change-Id: Ie7d5e907fcfcb4d65bd36d5e4eb923126fde8d33
      dc02d0d9
    • Antoni Goldstein's avatar
      app_dial.c: RINGTIME, PROGRESSTIME and ms resolution dial timings · 8e21c25c
      Antoni Goldstein authored
      Added RINGTIME, RINGTIME_MS, PROGRESSTIME, PROGRESSTIME_MS variables filled
      at the earliest received PROGRESS or RINGING.
      Added millisecond versions of DIALEDTIME and ANSWEREDTIME.
      
      Added millisecond versions of ast_channel_get_up_time and
      ast_channel_get_duration in channel.c.
      
      ASTERISK-28363
      
      Change-Id: If95f1a7d8c4acbac740037de0c6e3109ff6620b1
      8e21c25c
Loading