Skip to content
Snippets Groups Projects
  1. Jul 13, 2015
    • Matthew Jordan's avatar
      media cache: Add a core API and facade for a backend agnostic media cache · 3ea0d383
      Matthew Jordan authored
      This patch adds a new API to the Asterisk core that acts as a media
      cache. The core API itself is mostly a thin wrapper around some bucket
      API provided implementation that itself acts as the mechanism of
      retrieval for media. The media cache API in the core provides the
      following:
       * A very thin in-memory cache of the active bucket_file items. Unlike a
         more traditional cache, it provides no expiration mechanisms. Most
         queries that hit the in-memory cache will also call into the bucket
         implementations as well. The bucket implementations are responsible
         for determining whether or not the active record is active and valid.
         This makes sense for the most likely implementation of a media cache
         backend, i.e., HTTP. The HTTP layer itself is the actual arbiter of
         whether or not a record is truly active; as such, the in-memory cache
         in the core has to defer to it.
       * The ability to create new items in the media cache from local
         resources. This allows for re-creation of items in the cache on
         restart.
       * Synchronization of items in the media cache to the AstDB. This
         also includes various pieces of important metadata.
      
      The API provides sufficient access that higher level APIs, such as the
      file or app APIs, do not have to worry about the semantics of the bucket
      APIs when needing to playback a resource.
      
      In addition, this patch provides unit tests for the media cache API. The
      unit tests use a fake bucket backend to verify correctness.
      
      Change-Id: I11227abbf14d8929eeb140ddd101dd5c3820391e
      3ea0d383
    • Matt Jordan's avatar
      main/bucket: Add a callback function for ast_bucket_file objects · 887945d4
      Matt Jordan authored
      This patch adds a new function to the bucket API for ast_bucket_file
      objects, ast_bucket_file_metadata_callback. It will call ao2_callback on
      the ast_bucket_file's ao2_container of metadata, calling the provided
      ao2_callback_fn callback on each piece of metadata associated with the
      file.
      
      This is particularly useful when a bucket backend has added metadata,
      and a higher level API wants to be aware of/access said metadata,
      without knowing for sure what the key is.
      
      Change-Id: I96f6757717f47b650df91a437f7df16406227466
      887945d4
  2. Jul 11, 2015
  3. Jul 10, 2015
  4. Jul 09, 2015
    • Joshua Colp's avatar
      bridge_native_rtp.c: Don't start native RTP bridging after attended transfer. · 4a25d554
      Joshua Colp authored
      The bridge_native_rtp module adds a frame hook to channels which are in
      a native RTP bridge. This frame hook is used to intercept when a hold
      or unhold frame traverses the bridge so native RTP can be stopped or
      started as appropriate. This is expected but exposes a specific bug
      when attended transfers are involved.
      
      Upon completion of an attended transfer an unhold frame is queued up
      to take one of the channels involved off hold. After this is done
      the channel is moved between bridges.
      
      When the frame hook is involved in this case for the unhold it
      releases the channel lock and acquires the bridge lock. This
      allows the bridge core to step in and move the channel
      (potentially changing the bridging techology) from another thread.
      Once completed the bridge lock is released by the bridge core.
      The frame hook is then able to acquire the bridge lock and
      wrongfully starts native RTP again, despite the channel no longer
      being in the bridge or needing to start native RTP. In fact at
      this point the frame hook is no longer attached to the channel.
      
      This change makes it so the native RTP bridge data is available to
      the frame hook when it is invoked. Whether the frame hook has
      been detached or not is stored on the native RTP bridge data and
      is checked by the frame hook before starting or stopping native
      RTP bridging. If the frame hook has been detached it does nothing.
      
      ASTERISK-25240 #close
      
      Change-Id: I13a73186a05f4e5a764f81e5cd0ccec1ed1891d2
      4a25d554
  5. Jul 08, 2015
  6. Jul 07, 2015
  7. Jul 06, 2015
    • Richard Mudgett's avatar
      res_pjsip_mwi.c: Fix MWI subscription memory corruption crash. · 189841dd
      Richard Mudgett authored
      MWI subscriptions can crash or corrupt memory when using the subscription
      datastore to access the MWI subscription object because the datastore is
      not holding a reference to the object.
      
      * Give the subscription datastore a ref to the MWI subscription object.
      It is unfortunate that the ref causes a circular ref chain that must be
      explicitly broken to allow the memory to get released.  The loop is broken
      when the subscription is shutdown and if the subscription setup fails.
      
      ASTERISK-25168 #close
      Reported by: Carl Fortin
      
      Change-Id: Ice4fa823f138ff10a6c74d280699c41a82836d4f
      189841dd
    • Richard Mudgett's avatar
      PJSIP XML, XPIDF: Fix buffer size overwrite memory corruption error. · 7cd99be5
      Richard Mudgett authored
      When res_pjsip body generator modules were generating XML or XPIDF
      response bodies, there was a chance that the generated body would be the
      exact size of the supplied buffer.  Adding the nul string terminator would
      then write beyond the end of the buffer and potentially corrupt memory.
      
      * Fix MALLOC_DEBUG high fence violations caused by adding a nul string
      terminator on the end of a buffer for XML or XPIDF response bodies.
      
      * Made calls to pj_xml_print() safer if the XML prolog is requested.  Due
      to a bug in pjproject, the return value could be -1 _or_
      AST_PJSIP_XML_PROLOG_LEN if the supplied buffer is not large enough.
      
      * Updated the doxygen comment of AST_PJSIP_XML_PROLOG_LEN to describe the
      return value of pj_xml_print() when the supplied buffer is not large
      enough.
      
      ASTERISK-25168
      Reported by: Carl Fortin
      
      Change-Id: Id70e1d373a6a2b2bd9e678b5cbc5e55b308981de
      7cd99be5
    • Richard Mudgett's avatar
      PJSIP FAX: Fix T.38 automatic reject timer NULL channel pointer dereferences. · 792ed7ce
      Richard Mudgett authored
      When a caller calls a FAX number and then hangs up right after the call is
      answered then the T.38 re-INVITE automatic reject timer may still be
      running after the channel goes away.
      
      * Added session NULL channel checks on the code paths that get executed by
      t38_automatic_reject() to prevent a crash when the T.38 re-INVITE
      automatic reject timer expires.
      
      ASTERISK-25168
      Reported by: Carl Fortin
      
      Change-Id: I07b6cd23815aedce5044f8f32543779e2f7a2403
      792ed7ce
    • Richard Mudgett's avatar
      res_pjsip_mwi.c: Use safer loop coding in mwi_subscription_mailboxes_str(). · 030e8339
      Richard Mudgett authored
      Change-Id: I6f39d809a6d1b47b35bb32b298f5a12f35d6f907
      030e8339
    • Richard Mudgett's avatar
      res_pjsip_mwi.c: Eliminate a simple RAII_VAR. · 453d7b8d
      Richard Mudgett authored
      Change-Id: Ib1843f81e826a6c760c424c88eb70c350d9d61da
      453d7b8d
    • Richard Mudgett's avatar
      res_pjsip_mwi.c: Fix mid-line log message line breaks. · 786c6d42
      Richard Mudgett authored
      * Add create_mwi_subscriptions_for_endpoint() doxygen comment.
      
      Change-Id: I3c3f921f4ec749fb65b62d2f6fa0d4d1888b94e2
      786c6d42
    • Richard Mudgett's avatar
      res_pjsip_t38.c: Fix always false if test. · 1b91094e
      Richard Mudgett authored
      Calling t38_change_state() sets the t38 state so it makes little sense to
      then check the state right after the call for something else.
      
      * Made the code in t38_interpret_parameters() reject or exit T.38 mode as
      intended but not implemented.
      
      Change-Id: Ib281263a6ed44da9448132c4e6df1e183b8a3df2
      1b91094e
    • Mark Michelson's avatar
    • Kevin Harwell's avatar
      res_pjsip: Failover when server is not available · 74135c8e
      Kevin Harwell authored
      Previously Asterisk did not properly failover to the next resolved DNS
      address when a endpoint could not be reached. With this patch, and while
      using res_pjsip, SIP requests (both in/out of dialog) now attempt to use
      the next address in the list of resolved addresses until a proper response
      is received or no more addresses are left.
      
      ASTERISK-25076 #close
      Reported by: Joshua Colp
      
      Change-Id: Ief14f4ebd82474881f72f4538f4577f30af2a764
      74135c8e
    • Joshua Colp's avatar
      res_sorcery_memory_cache: Execute stale unit test last. · 38a3c27a
      Joshua Colp authored
      In Jenkins there is currently a sporadic test failure of a
      variable number of sorcery memory cache unit tests. I have not
      been able to reproduce this on the build agents themselves or
      on my development machine.
      
      My working theory is that the stale unit test is causing a
      sorcery instance to persist longer than expected, causing subsequent
      tests to fail when setting up and initializing the next
      sorcery instance.
      
      To see if this is the case this change moves the stale unit test
      to execute last so no subsequent unit tests can have issues
      initializing their sorcery instance.
      
      Change-Id: Ifd6550a949613be774b75fa5db12c02110f82c4a
      38a3c27a
  8. Jul 05, 2015
    • Matt Jordan's avatar
      bucket: Add clone/staleness operations for ast_bucket/ast_bucket_file · ef8d3f65
      Matt Jordan authored
      This patch enhances the bucket API in two ways.
      
      First, since ast_bucket and ast_bucket_file instances are immutable, a 'clone'
      operation has been added that provides a 'clone' of an existing
      ast_bucket/ast_bucket_file object. Note that this makes use of the
      ast_sorcery_copy operation, along with the copy callback handler on the
      "bucket" and "file" object types for the bucket sorcery instance.
      
      Second, there is a need for the bucket API to ask a wizard if an object
      is stale. This is particularly useful with the upcoming media cache
      enhancements, where we want to ask the backing data storage if the
      object we are currently operating on has known updates. This patch adds
      API calls for ast_bucket and ast_bucket_file objects, which callback
      into their respective sorcery wizards via the sorcery API.
      
      Unit tests have also been added to cover the respective
      ast_bucket/ast_bucket_file clone and staleness operations.
      
      Change-Id: Ib0240ba915ece313f1678a085a716021d75d6b4a
      ef8d3f65
    • Matt Jordan's avatar
      sorcery: Add support for object staleness · b178f870
      Matt Jordan authored
      This patch enhances the sorcery API to allow for sorcery wizards to
      determine if an object is stale. This includes the following:
      
      * Sorcery objects now have a timestamp that is set on creation. Since
        sorcery objects are immutable, this can be used by sorcery wizards to
        determine if an object is stale.
      
      * A new API call has been added, ast_sorcery_is_stale. This API call
        queries the wizards associated with the object, calling a new callback
        function 'is_stale'. Note that if a wizard does not support the new
        callback, objects are always assumed to not be stale.
      
      * Unit tests have been added that cover the new API call.
      
      Change-Id: Ica93c6a4e8a06c0376ea43e00cf702920b806064
      b178f870
    • Joshua Colp's avatar
      98754841
Loading