Skip to content
Snippets Groups Projects
  1. Feb 12, 2016
    • George Joseph's avatar
      res_pjsip: Refactor load_module/unload_module · b37555cc
      George Joseph authored
      load_module was just too hairy with every step having to clean up all
      previous steps on failure.
      
      Some of the pjproject init calls have now been moved to a separate
      load_pjsip function and the unload_pjsip function was enhanced to clean
      up everything if an error happened at any stage of the load process.
      
      In the process, a bunch of missing pj_shutdowns, serializer_pool_shutdowns
      and ast_threadpool_shutdowns were also corrected.
      
      Change-Id: I5eec711b437c35b56605ed99537ebbb30463b302
      b37555cc
  2. Feb 11, 2016
    • Badalyan Vyacheslav's avatar
      Resources/res_phoneprov: fix memory leak and heap-use-after-free · c4d9f468
      Badalyan Vyacheslav authored
      * heap-use-after-free happens when we free "cfg"
      but then use "value" which refers to it
      
      * A memory leak occurs because in some cases
      it is not released "defaults"
      
      ASTERISK-25721 #close
      Reported by: Badalyan Vyacheslav
      Tested by: Badalyan Vyacheslav
      
      Change-Id: I3807d3f4726df6864430ec144cf6265d3f538469
      c4d9f468
  3. Feb 10, 2016
  4. Feb 09, 2016
    • George Joseph's avatar
      res_pjsip: Fix infinite recursion when loading transports from realtime · bbf3ace6
      George Joseph authored
      Attempting to load a transport from realtime was forcing asterisk into an
      infinite recursion loop.  The first thing transport_apply did was to do a
      sorcery retrieve by id for an existing transport of the same name. For files,
      this just returns the previous object from res_sorcery_config's internal
      container, if any.  For realtime, the res_sourcery_realtime driver looks in the
      database and finds the existing row but now it has to rehydrate it into a
      sorcery object which means calling... transport_apply.  And so it goes.
      
      The main issue with loading from realtime (apart from the loop) was that
      transport stores structures and pointers directly in the ast_sip_transport
      structure instead of the separate ast_transport_state structure.  This patch
      separates those items into the ast_sip_transport_state structure.  The pattern
      is roughly the same as res_pjsip_outbound_registration.
      
      Although all current usages of ast_sip_transport and ast_sip_transport_state
      were modified to use the new ast_sip_get_transport_state API, the original
      items are left in ast_sip_transport and kept updated to maintain ABI
      compatability for third-party modules.  They are marked as deprecated and
      noted that they're now in ast_sip_transport_state.
      
      ASTERISK-25606 #close
      Reported-by: Martin Moučka
      
      Change-Id: Ic7a836ea8e786e8def51fe3f8cce855ea54f5f19
      bbf3ace6
  5. Feb 07, 2016
  6. Feb 04, 2016
    • Mark Michelson's avatar
      res_stasis_device_state: Fix refcounting error. · 82e2938f
      Mark Michelson authored
      Device state subscription lifetimes were governed by when the
      subscription was established and unsubscribed from. However, it is
      possible that at the time of unsubscription, there could be device state
      events still in flight. When those device state events occur, the device
      state callback could attempt to dereference a freed pointer. Crash.
      
      This change ensures that the lifetime of the device state subscription
      does not end until the underlying stasis subscription has confirmed that
      its final message has been sent.
      
      Change-Id: I25a0f1472894c1a562252fb7129671478e25e9b2
      82e2938f
  7. Feb 03, 2016
    • Sean Bright's avatar
      res_rtp_asterisk: Allow ICE host candidates to be overriden · d83dba70
      Sean Bright authored
      During ICE negotiation the IPs of the local interfaces are sent to the remote
      peer as host candidates. In many cases Asterisk is behind a static one-to-one
      NAT, so these host addresses will be internal IP addresses.
      
      To help in hiding the topology of the internal network, this patch adds the
      ability to override the host candidates by matching them against a
      user-defined list of replacements.
      
      Change-Id: I1c9541af97b83a4c690c8150d19bf7202c8bff1f
      d83dba70
    • George Joseph's avatar
      logging: Remove/fix some message annoyances · dcbedf9a
      George Joseph authored
      test_dlinklists doesn't need to NOTICE everyone that every macro worked.
      
      res_phoneprov doesn't need to VERBOSE everyone that a phoneprov extension or
      provider was registered.
      
      res_odbc was missing a newline at the end of one message.
      
      Change-Id: I6c06361518ef3711821795e535acd439782a995e
      dcbedf9a
  8. Feb 02, 2016
    • Mark Michelson's avatar
      res_sorcery_realtime: Fix regex regression. · 65223618
      Mark Michelson authored
      A regression was introduced where searching for realtime PJSIP objects
      by regex by starting the regex with a leading "^" would cause no items
      to be returned.
      
      This was due to a change which attempted to drop the requirement for a
      leading "^" to be present due to how some CLI commands formulate their
      regexes. However, the change, rather than simply eliminating the
      requirement, caused any regexes that did begin with "^" to end up not
      returning the expected results.
      
      This change fixes the problem by inspecting the regex and formulating
      the realtime query differently depending on if it begins with "^".
      
      ASTERISK-25702 #close
      Reported by Nic Colledge
      
      Patches:
          realtime_retrieve_regex.patch submitted by Alexei Gradinari License #5691
      
      Change-Id: I055df608a6e6a10732044fa737a9fe8dca602693
      65223618
    • Karsten Wemheuer's avatar
      res_xmpp: Does not connect in component mode · 2a6f18cd
      Karsten Wemheuer authored
      The module res_xmpp does not accept usernames in the form used in component
      mode (XEP-0114). In component mode there is no @something in the name.
      In component mode the connection is now not dropped anymore.
      
      If the xmpp server sends out a "stream" tag before handshake is finished,
      the connection gets dropped in res_xmpp. Now this tag will be ignored and
      the connection will be established.
      
      After connecting there will be an exchange of presence states. This does
      not work as expected in component mode. The responsible function
      "xmpp_pak_presence" is left before the states get sent out. Sending
      presence states in component mode is now moved to the top of the function.
      
      ASTERISK-25735 #close
      
      Change-Id: I70e036f931c3124ebb2ad1e56f93ed35cfdd9d5c
      2a6f18cd
    • George Joseph's avatar
      build_system: Fix some warnings highlighted by clang · 40da6434
      George Joseph authored
      Fix some warnings found with clang.
      
      Change-Id: I5195b6189b148c2ee3ed4a19d015a6d4ef3e77bd
      40da6434
  9. Jan 26, 2016
    • Mark Michelson's avatar
      Stasis: Use custom structure when setting variables. · a706ad44
      Mark Michelson authored
      A recent change to queue channel variable setting to the Stasis control
      queue caused a regression. When setting channel variables, it is
      possible to give a NULL channel variable value in order to unset the
      variable (i.e. remove it from the channel variable list). The change
      introduced a call to ast_variable_new(), which is not tolerant of NULL
      channel variable values.
      
      This new change switches from using ast_variable to using a custom
      channel variable struct that is lighter weight and NULL value-tolerant.
      
      Change-Id: I784d7beaaa3c036ea936d103e7caf0bb1562162d
      a706ad44
  10. Jan 25, 2016
    • Mark Michelson's avatar
      res_pjsip_pubsub: Prevent crash from AMI command on freed subscription. · b073244c
      Mark Michelson authored
      A test recently uncovered that running an ill-timed AMI command to show
      inbound subscriptions could cause a crash since Asterisk will try to
      operate on a freed subscription.
      
      The fix for this is to remove the subscription tree from the list of
      subscriptions at the time that we are sending our final NOTIFY request
      out. This way, as the subscription is in the process of dying, it is
      inaccessible from AMI.
      
      Change-Id: Ic0239003d8d73e04c47c12dd2a7e23867e5b5b23
      b073244c
  11. Jan 22, 2016
    • Mark Michelson's avatar
      Stasis: Fix potential memory leak of control data. · 959f7436
      Mark Michelson authored
      When queuing tasks onto the Stasis control queue, you can pass an
      arbitrary data pointer and a function to free that data. All ARI
      commands that use the Stasis control queue made the assumption that the
      destructor function would be called in all paths, whether the task was
      queued successfully or not. However, this was not correct. If a task was
      queued onto a control structure that was already completed, the
      allocated data would not be freed properly.
      
      This patch corrects this by making sure that all return paths call the
      data destructor.
      
      Change-Id: Ibf06522094f8e5c4cce652537dc5d7222b1c4fcb
      959f7436
    • Mark Michelson's avatar
      Stasis: Use control queue to prevent crash. · a45eaceb
      Mark Michelson authored
      A crash occurred when attempting to set a channel variable on a channel
      that had already been hung up. This is because there is a small window
      between when a control is grabbed and when the channel variable is set
      that the channel can be hung up.
      
      The fix here is to queue the setting of the channel variable onto the
      control queue. This way, the manipulation of the channel happens in a
      thread where it is safe to be done.
      
      In this change, I also noticed that the setting of bridge roles on
      channels was being done outside of the control queue, so I also changed
      those operations to be done in the control queue.
      
      ASTERISK-25709 #close
      Reported by Mark Michelson
      
      Change-Id: I2a0a4d51bce6fba6f1d9954e40935e42f366ea78
      a45eaceb
    • Mark Michelson's avatar
      res_odbc: Remove connection management · 9714da7a
      Mark Michelson authored
      Asterisk by default will create a single database connection and share
      it among all threads that attempt to access the database. In previous
      versions of Asterisk, this was tolerable, because the most used channel
      driver, chan_sip, mostly accessed the database from a single thread.
      With PJSIP, however, many threads may be attempting to perform database
      operations, and there is the potential for many more database accesses,
      meaning the concurrency is a horrible bottleneck if only one connection
      is shared.
      
      Asterisk has a connection pooling facility built into it, but the
      implementation has flaws. For one, there is a strict limit on the number
      of simultaneous connections that could be made to the database. Anything
      beyond the maximum would result in a failed operation. Attempting to
      predict what the maximum should be is nearly impossible even for someone
      intimately familiar with Asterisk's threading model. In addition, use of
      transactions in the dialplan can cause some severe bugs if connection
      pooling is enabled.
      
      This commit seeks to fix the concurrency problem by removing all
      connection management code from Asterisk and leaving that to the
      underlying unixODBC code instead. Now, Asterisk does not share a single
      connection, nor does it try to maintain a connection pool. Instead, all
      Asterisk ever does is request a connection from unixODBC and allow
      unixODBC to either allocate those connections or retrieve them from a
      pool.
      
      Doing this has a bit of a ripple effect. For one, since connections are
      not long-lived objects, several of the safeguards that previously
      existed have been removed. We don't have to worry about trying to use a
      connection that has gone stale. In every case, when we request a
      connection, it has just been made and we don't need to perform any
      sanity checks to be sure it's still active.
      
      Another major player affected by this change is transactions.
      Transactions and their respective connections were so tightly coupled
      that it was almost pornographic. This code change moves
      transaction-related code to its own file separate from the core ODBC
      functionality. This way, the core of ODBC does not even have to know
      that transactions exist.
      
      In making this large change, I had to look at a lot of code and
      understand it. When making this change, I discovered several places
      where the behavior is definitely not ideal, but it seemed outside the
      scope of this change to be fixing it. Instead, any place where I saw
      some sort of room for improvement has had a XXX comment added explaining
      what could be altered to improve it.
      
      Change-Id: I37a84def5ea4ddf93868ce8105f39de078297fbf
      9714da7a
  12. Jan 21, 2016
    • Richard Mudgett's avatar
      res/res_pjsip/presence_xml.c: Add missing 2nd call presence state case. · 04078f43
      Richard Mudgett authored
      ASTERISK-25712 #close
      Reported by: Richard Mudgett
      
      Change-Id: I70634df24f8c6c3a2c66c45af61d021e4999253f
      04078f43
    • Richard Mudgett's avatar
      res_pjsip: Add CLI "pjsip dump endpt [details]" · 5615db37
      Richard Mudgett authored
      Dump the res_pjsip endpt internals.
      
      In non-developer mode we will not document or make easily accessible the
      "details" option even though it is still available.  The user has to know
      it exists to use it.  Presumably they would also be aware of the potential
      crash warning below.
      
      Warning: PJPROJECT documents that the function used by this CLI command
      may cause a crash when asking for details because it tries to access all
      active memory pools.
      
      Change-Id: If2d98a3641c9873364d1daaad971376311aef3cb
      5615db37
  13. Jan 20, 2016
    • George Joseph's avatar
      res_pjproject: Add module providing pjproject logging and utils · dd5c0639
      George Joseph authored
      res_pjsip_log_forwarder has been renamed to res_pjproject
      and enhanced as follows:
      
      As a follow-on to the recent 'Add CLI "pjsip show buildopts"' patch,
      a new ast_pjproject_get_buildopt function has been added.  It
      allows the caller to get the value of one of the buildopts.
      
      The initial use case is retrieving the runtime value of
      PJ_MAX_HOSTNAME to insure we don't send a hostname greater
      than pjproject can handle.  Since it can differ between
      the version of pjproject that Asterisk was compiled against
      and the version of pjproject that Asterisk is running against,
      we can't use the PJ_MAX_HOSTNAME macro directly in Asterisk
      source code.
      
      Change-Id: Iab6e82fec3d7cf00c1cf6185c42be3e7569dee1e
      dd5c0639
  14. Jan 19, 2016
  15. Jan 13, 2016
    • Daniel Journo's avatar
      pjsip: Add option global/regcontext · 8182146e
      Daniel Journo authored
      Added new global option (regcontext) to pjsip. When set, Asterisk will
      dynamically create and destroy a NoOp priority 1 extension
      for a given endpoint who registers or unregisters with us.
      
      ASTERISK-25670 #close
      Reported-by: Daniel Journo
      
      Change-Id: Ib1530c5b45340625805c057f8ff1fb240a43ea62
      8182146e
    • Sean Bright's avatar
      res_musiconhold: Prevent multiple simultaneous reloads. · 79a7321a
      Sean Bright authored
      There are two ways in which the reload() function in res_musiconhold can be
      called from the CLI:
      
        * module reload res_musiconhold.so
        * moh reload
      
      In the former case, the module loader holds a lock that prevents multiple
      concurrent calls, but in the latter there is no such protection.
      
      This patch changes the 'moh reload' CLI command to invoke the module loader
      directly, rather than call reload() explicitly.
      
      ASTERISK-25687 #close
      
      Change-Id: I408968b4c8932864411b7f9ad88cfdc7b9ba711c
      79a7321a
    • Richard Mudgett's avatar
      res_pjsip_log_forwarder.c: Add CLI "pjsip show buildopts". · 1fffe71f
      Richard Mudgett authored
      PJPROJECT has a function available to dump the compile time
      options used when building the library.
      
      * Add CLI "pjsip show buildopts" command.
      
      * Update contrib/scripts/autosupport to get pjproject information.
      
      Change-Id: Id93a6a916d765b2a2e5a1aeb54caaf83206be748
      1fffe71f
  16. Jan 12, 2016
    • Mark Michelson's avatar
      res_sorcery_realtime: Remove leading ^ requirement. · 01c5e2a0
      Mark Michelson authored
      res_sorcery_realtime's search-by-regex callback performed a check to
      ensure that the passed-in regex began with a caret (^). If it did not,
      then no results would be returned.
      
      This callback only started to become used when "like" support was added
      to PJSIP CLI commands. The CLI command for listing objects would pass an
      empty regex ("") to the sorcery backend if no "like" statement was
      present. For most sorcery backends, this resulted in returning all
      objects. However, for realtime, this resulted in returning no objects.
      
      This commit seeks to fix the regression by removing the requirement from
      res_sorcery_realtime for the passed-in-regex to begin with a caret.
      
      ASTERISK-25689 #close
      Reported by Marcelo Terres
      
      Change-Id: I22b4dc5d7f3f11bb29ac2e42ef94682e9bab3b20
      01c5e2a0
    • George Joseph's avatar
      pjsip_sdp_rtp: Add option endpoint/bind_rtp_to_media_address · a41aab47
      George Joseph authored
      On a system with multiple ip addresses in the same subnet, if a
      transport is bound to a specific ip address and endpoint/media_address
       is set, the SIP/SDP will have the correct address in all fields but
      the rtp stream MAY still originate from one of the other ip addresses,
      most probably the "primary" ip address.  This happens because
       res_pjsip_sdp_rtp/create_rtp always calls ast_instance_new with
      the "all" ip address (0.0.0.0 or ::).
      
      The new option causes res_pjsip_sdp_rtp/create_rtp to call
      ast_rtp_instance_new with the endpoint's media_address (if specified)
      instead of the "all" address.  This causes the packets to originate from
      the specified address.
      
      ASTERISK-25632
      ASTERISK-25637
      Reported-by: Olivier Krief
      Reported-by: Dan Journo
      
      Change-Id: I3dfaa079e54ba7fb7c4fd1f5f7bd9509bbf8bd88
      a41aab47
  17. Jan 10, 2016
    • Corey Farrell's avatar
      res_calendar: Cleanup scheduler context at unload. · a868a381
      Corey Farrell authored
      ASTERISK-25679 #close
      
      Change-Id: I839159bf6882cccc1b23494c7aa2bc2a2624613f
      a868a381
    • Joshua Colp's avatar
      res_rtp_asterisk: Revert DTLS negotiation changes. · a1c43022
      Joshua Colp authored
      Due to locking issues within pjnath these changes are being
      reverted until pjnath can be changed.
      
      ASTERISK-25645
      
      Revert "res_rtp_asterisk.c: Fix DTLS negotiation delays."
      
      This reverts commit 24ae124e.
      
      Change-Id: I2986cfb2c43dc14455c1bcaf92c3804f9da49705
      
      Revert "res_rtp_asterisk: Resolve further timing issues with DTLS negotiation"
      
      This reverts commit 965a0eee.
      
      Change-Id: Ie68fafde27dad4b03cb7a1e27ce2a8502c3f7bbe
      a1c43022
    • George Joseph's avatar
      Revert "pjsip_location: Delete contact_status object when contact is deleted" · 220ba979
      George Joseph authored
      This reverts commit 0a9941de.
      
      Matt,
      
      This patch causes another problem and should not have been needed.
      Before this patch, persistent_endpoint_contact_deleted_observer WAS
      deleting the contact_status when ast_sip_location_delete_contact was
      called.  By deleting it yourself in ast_sip_location_delete_contact
      it was gone before the observer could run and the observer therefore
      was throwing an error and not sending stasis/AMI/statsd messages.
      
      So, I don't think this was the cause of your original issue.  I also
      had verified the contact AMI and statsd lifecycle and it was working.
      I'll double check now though.
      
      ASTERISK-25675
      Reported-by: Daniel Journo
      
      Change-Id: Ib586a6b7f90acb641b0c410f659743ab90e84f1a
      220ba979
  18. Jan 09, 2016
    • Corey Farrell's avatar
      res_crypto: Perform cleanup at shutdown. · dc2c000f
      Corey Farrell authored
      This change causes res_crypto to unregister CLI at shutdown while still
      preventing the module from being unloaded.
      
      ASTERISK-25673 #close
      
      Change-Id: Ie5d57338dc2752abfc0dd05d0eec86413f2304fc
      dc2c000f
    • Richard Mudgett's avatar
      res_pjsip: Create human friendly serializer names. · 0bca2a5c
      Richard Mudgett authored
      PJSIP name formats:
      pjsip/aor/<aor>-<seq> -- registrar thread pool serializer
      pjsip/default-<seq> -- default thread pool serializer
      pjsip/messaging -- messaging thread pool serializer
      pjsip/outreg/<registration>-<seq> -- outbound registration thread pool
      serializer
      pjsip/pubsub/<endpoint>-<seq> -- pubsub thread pool serializer
      pjsip/refer/<endpoint>-<seq> -- REFER thread pool serializer
      pjsip/session/<endpoint>-<seq> -- session thread pool serializer
      pjsip/websocket-<seq> -- websocket thread pool serializer
      
      Change-Id: Iff9df8da3ddae1132cb2ef65f64df0c465c5e084
      0bca2a5c
  19. Jan 07, 2016
    • Mark Michelson's avatar
      PJSIP: Prevent deadlock due to dialog/transaction lock inversion. · 1afc8432
      Mark Michelson authored
      A deadlock was observed where the monitor thread was stuck, therefore
      resulting in no incoming SIP traffic being processed.
      
      The problem occurred when two 200 OK responses arrived in response to a
      terminating NOTIFY request sent from Asterisk. The first 200 OK was
      dispatched to a threadpool worker, who locked the corresponding
      transaction. The second 200 OK arrived, resulting in the monitor thread
      locking the dialog. At this point, the two threads are at odds, because
      the monitor thread attempts to lock the transaction, and the threadpool
      thread loops attempting to try to lock the dialog.
      
      In this case, the fix is to not have the monitor thread attempt to hold
      both the dialog and transaction locks at the same time. Instead, we
      release the dialog lock before attempting to lock the transaction.
      
      There have also been some debug messages added to the process in an
      attempt to make it more clear what is going on in the process.
      
      ASTERISK-25668 #close
      Reported by Mark Michelson
      
      Change-Id: I4db0705f1403737b4360e33a8e6276805d086d4a
      1afc8432
  20. Jan 04, 2016
    • George Joseph's avatar
      voicemail: Move app_voicemail / res_mwi_external conflict to runtime · 6d18fe15
      George Joseph authored
      The menuselect conflict between app_voicemail and res_mwi_external
      makes it hard to package 1 version of Asterisk.  There no actual
      build dependencies between the 2 so moving this check to runtime
      seems like a better solution.
      
      The ast_vm_register and ast_vm_greeter_register functions in app.c
      were modified to return AST_MODULE_LOAD_DECLINE instead of -1 if there
      is already a voicemail module registered. The modules' load_module
      functions were then modified to return DECLINE instead of -1 to the
      loader.  Since -1 is interpreted by the loader as AST_MODULE_LOAD_FAILURE,
      the modules were incorrectly causing Asterisk to stop so this needed
      to be cleaned up anyway.
      
      Now you can build both and use modules.conf to decide which voicemail
      implementation to load.
      
      The default menuselect options still build app_voicemail and not
      res_mwi_external but if both ARE built, res_mwi_external will load
      first and become the voicemail provider unless modules.conf rules
      prevent it.  This is noted in CHANGES.
      
      Change-Id: I7d98d4e8a3b87b8df9e51c2608f0da6ddfb89247
      6d18fe15
  21. Jan 01, 2016
    • Matt Jordan's avatar
      res_pjsip_history: Add a module that provides PJSIP history for debugging · 9cdf3ec1
      Matt Jordan authored
      This patch adds a new module, res_pjsip_history, that provides a slightly
      better way of debugging SIP message traffic on a busy Asterisk system. The
      existing mechanisms all rely on passively dumping a SIP message to the CLI.
      While this is perfectly fine for logging purposes and well controlled
      environments, on many installations, the amount of SIP messages Asterisk
      receives will quickly swamp the CLI. This makes it difficult to view/capture
      those messages that you want to diagnose in real time.
      
      This patch provides another way of handling this. When enabled, the module
      will store SIP message traffic in memory. This traffic can then be queried
      at leisure.
      
      In order to make the querying useful, a CLI command has been implemented,
      'pjsip show history', that supports a basic expression syntax similar to
      SQL or other query languages. A small number of useful fields have been
      added in this initial patch; additional fields can easily be added in
      later improvements. Those fields are:
       - number: The entry index in the history
       - timestamp: The time the message was recieved
       - addr: The source/destination address of the message
       - sip.msg.request.method: The request method
       - sip.msg.call-id: The Call-ID header
      
      Note - this is a resurrection of the module initially proposed on Review Board
      here: https://reviewboard.asterisk.org/r/4053/
      
      Change-Id: I39bd74ce998e99ad5ebc0aab3e84df3a150f8e36
      9cdf3ec1
  22. Dec 28, 2015
    • Dade Brandon's avatar
      res_http_websocket.c: prevent avoidable disconnections caused by write errors · 3bddcc02
      Dade Brandon authored
      Updated ast_websocket_write to encode the entire frame in to one
      write operation, to ensure that we don't end up with a situation
      where the websocket header has been sent, while the body can not
      be written.
      
      Previous to August's patch in commit b9bd3c14, certain network
      conditions could cause the header to be written, and then the
      sub-sequent body to fail - which would cause the next successful
      write to contain a new header, and a new body (resulting in
      the peer receiving two headers - the second of which would be
      read as part of the body for the first header).
      
      This was patched to have both write operations individually fail
      by closing the websocket.
      
      In a case available to the submitter of this patch, the same
      body which would consistently fail to write, would succeed
      if written at the same time as the header.
      
      This update merges the two operations in to one, adds debug messages
      indicating the reason for a websocket connection being closed during
      a write operation, and clarifies some variable names for code legibility.
      
      Change-Id: I4db7a586af1c7a57184c31d3d55bf146f1a40598
      3bddcc02
    • Corey Farrell's avatar
      Remove res_jabber file that was left behind. · 6b08f01c
      Corey Farrell authored
      Change-Id: I9d88fac0394d5bbaff0900a2ee911c4e4478846b
      6b08f01c
  23. Dec 24, 2015
    • Matt Jordan's avatar
      res/res_pjsip_location: Delete contact_status object when contact is deleted · 2df4ad64
      Matt Jordan authored
      In 450579e9, a change was made that removed the deletion of the
      'contact_status' object when a 'contact' object is deleted in sorcery.
      This unfortunately means that the 'contact_status' object persists, even when
      something has explicitly removed a contact. The result is that the state of
      the contact will not be regenerated if that contact is re-created, and the
      stale state will be reported/used for that contact. It also results in
      no ContactStatusChanged events being generated for either ARI or AMI.
      
      This patch restores the deletion logic that was removed. Doing so now
      results in the expected events being generated again.
      
      Change-Id: I28789a112e845072308b5b34522690e3faf58f07
      2df4ad64
    • Kevin Harwell's avatar
      res_rtp_asterisk: rtp->ice check not wrapped in HAVE_PJPROJECT ifdef · b8876711
      Kevin Harwell authored
      Change-Id: I19b49112e1b630bd04e859f14ccf96f8ebd6b151
      b8876711
  24. Dec 21, 2015
    • Dade Brandon's avatar
      res_rtp_asterisk: Resolve further timing issues with DTLS negotiation · 648ca2b1
      Dade Brandon authored
      Resolves an edge case dtls negotiation delay for certain networks which
      somehow manage to drop the rtcp side's packet when these are both sent
      ast_rtp_remote_address_set, causing it to have to time-out and restart
      the handshake.
      
      Move dtls pending bio flush in to it's own function, and call it from
      ast_rtp_on_ice_complete, when we're rtp->ice, rather than when
      ast_rtp_remote_address_set.
      
      Keep the existing flush from the recent change to res_rtp_remote_address_set
      if ice is not being used.
      
      ASTERISK-25614 #close
      Reported-by: XenCALL
      Tested by: XenCALL
      
      Change-Id: Ie2caedbdee1783159f375589b6fd3845c8577ba5
      648ca2b1
  25. Dec 17, 2015
    • Joshua Colp's avatar
      res_sorcery_memory_cache: Add support for a full backend cache. · 902309fd
      Joshua Colp authored
      This change introduces the configuration option 'full_backend_cache'
      which changes the cache to be a full mirror of the backend instead
      of a per-object cache. This allows all sorcery retrieval operations
      to be carried out against it and is useful for object types which
      are used in a "retrieve all" or "retrieve some" pattern.
      
      ASTERISK-25625 #close
      
      Change-Id: Ie2993487e9c19de563413ad5561c7403b48caab5
      902309fd
  26. Dec 16, 2015
    • Joshua Colp's avatar
      json: Audit ast_json_* usage for thread safety. · d17d9a92
      Joshua Colp authored
      The JSON library Asterisk uses, jansson, is not thread
      safe for us in a few ways. To help with this wrappers for JSON
      object reference count increasing and decreasing were added
      which use a global lock to ensure they don't clobber over
      each other. This does not extend to reference count manipulation
      within the jansson library itself. This means you can't safely
      use the object borrowing specifier (O) in ast_json_pack and
      you can't share JSON instances between objects.
      
      This change removes uses of the O specifier and replaces them
      with the o specifier and an explicit ast_json_ref. Some cases
      of instance sharing have also been removed.
      
      ASTERISK-25601 #close
      
      Change-Id: I06550d8b0cc1bfeb56cab580a4e608ae4f1ec7d1
      d17d9a92
Loading