Skip to content
Snippets Groups Projects
  1. Mar 15, 2018
  2. Mar 13, 2018
    • Corey Farrell's avatar
      core: Remove incorrect usage of attribute_malloc. · 9e488dd4
      Corey Farrell authored
      GCC documentation states that when __attribute__((malloc)) is used it
      should not return storage which contains any valid pointers.  It
      specifically mentions that realloc functions should not have the malloc
      attribute, but this also means that complex initializers which could
      contain initialized pointers should not use this attribute.
      
      Change-Id: If507f33ffb3ca3b83b702196eb0e8215d27fc7d2
      9e488dd4
    • Corey Farrell's avatar
      core: Remove non-critical cleanup from startup aborts. · fee929c8
      Corey Farrell authored
      When built-in components of Asterisk fail to start they cause the
      Asterisk startup to abort.  In these cases only the most critical
      cleanup should be performed - closing databases and terminating
      proceses.  These cleanups are registered using ast_register_atexit, all
      other cleanups should not be run during startup abort.
      
      The main reason for this change is that these cleanup procedures are
      untestable from the partially initialized states, if they fail it could
      prevent us from ever running the critical cleanup with ast_run_atexits.
      
      Create separate initialization for dns_core.c to be run unconditionally
      during startup instead of being initialized by the first dns resolver to
      be registered. This ensures that 'sched' is initialized before it can be
      potentially used.
      
      Replace ast_register_atexit with ast_register_cleanup in media_cache.c.
      There is no reason for this cleanup to happen unconditionally.
      
      Change-Id: Iecc2df98008b21509925ff16740bd5fa29527db3
      fee929c8
  3. Mar 07, 2018
    • Corey Farrell's avatar
      Replace direct checks of option_debug with DEBUG_ATLEAST macro. · c8a521b6
      Corey Farrell authored
      Checking option_debug directly is incorrect as it ignores file/module
      specific debug settings.  This system-wide change replaces nearly all
      direct checks for option_debug with the DEBUG_ATLEAST macro.
      
      Change-Id: Ic342d4799a945dbc40ac085ac142681094a4ebf0
      c8a521b6
    • Alexander Traud's avatar
      utils: In Solaris, avoid a warning about an unused variable. · 58f44f22
      Alexander Traud authored
      When HAVE_GETHOSTBYNAME_R_5 was set by the script ./configure, GCC 7.3.0 found
      an unused variable. Actually, the variable was used (set to a dummy value) but
      the compiler optimization might have removed that. Instead, this change ensures
      that the variable 'res' is only used when it is really required.
      
      Change-Id: Ic3ea23ccf84ac4bc2d501b514985b989030abab5
      58f44f22
  4. Mar 03, 2018
  5. Mar 01, 2018
    • Richard Mudgett's avatar
      core: Remove ABI effects of MALLOC_DEBUG. · c711e407
      Richard Mudgett authored
      This allows asterisk to be compiled with MALLOC_DEBUG to load modules
      built without MALLOC_DEBUG.  Now pre-compiled third-party modules will
      still work regardless of MALLOC_DEBUG being enabled or not.
      
      Change-Id: Ic07ad80b2c2df894db984cf27b16a69383ce0e10
      c711e407
  6. Feb 28, 2018
    • Richard Mudgett's avatar
      pjproject: Add cache_pools debugging option. · 1a36a452
      Richard Mudgett authored
      The pool cache gets in the way of finding use after free errors of memory
      pool contents.  Tools like valgrind and MALLOC_DEBUG don't know when a
      pool is released because it gets put into the cache instead of being
      freed.
      
      * Added the "cache_pools" option to pjproject.conf.  Disabling the option
      helps track down pool content mismanagement when using valgrind or
      MALLOC_DEBUG.  The cache gets in the way of determining if the pool
      contents are used after free and who freed it.
      
      To disable the pool caching simply disable the cache_pools option in
      pjproject.conf and restart Asterisk.
      
      Sample pjproject.conf setting:
      [startup]
      cache_pools=no
      
      * Made current users of the caching pool factory initialization and
      destruction calls call common routines to create and destroy cached pools.
      
      ASTERISK-27704
      
      Change-Id: I64d5befbaeed2532f93aa027a51eb52347d2b828
      1a36a452
  7. Feb 23, 2018
    • Corey Farrell's avatar
      core: Fix handling of maximum length lines in config files. · a7927471
      Corey Farrell authored
      When a line is the maximum length "\n" is found at sizeof(buf) - 2 since
      the last character is actually the null terminator.  In addition if a
      line was exactly 8190 plus a multiple of 8192 characters long the config
      parser would skip the following line.
      
      Additionally fix comment in voicemail.conf sample config.  It previously
      stated that emailbody can only contain up to 512 characters which is
      always wrong.  The buffer is normally 8192 characters unless LOW_MEMORY
      is enabled then it is 512 characters.  The updated comment states that
      the line can be up to 8190 or 510 characters since the line feed and
      NULL terminator each use a character.
      
      ASTERISK-26688 #close
      
      Change-Id: I80864a0d40d2e2d8cd79d72af52a8f0a3a99c015
      a7927471
  8. Feb 21, 2018
    • Richard Mudgett's avatar
      manager.c: Fix lseek() parameter order. · f083edc4
      Richard Mudgett authored
      ASTERISK-27659
      
      Change-Id: I04a2705d2cb7df250769967bc59e2b397a49b797
      f083edc4
    • Joshua Colp's avatar
      AST-2018-001: rtp / channel: Don't allow an unnegotiated format to be passed up. · e70c4ec8
      Joshua Colp authored
      When an RTP packet is received by an RTP engine it has to map the
      payload into the Asterisk format. The code was incorrectly checking
      our own static list for ALL payloads if it couldn't find a negotiated one.
      This included dynamic payloads. If the payload mapped to a format
      of a different type (for example receiving a video packet on an audio
      RTP instance) then the core stream code could cause a crash if a legacy
      channel driver was in use as no stream would be present.
      
      To provide further protection the core stream code will no longer assume
      that a video or audio frame will always have a stream for legacy channel
      drivers. If no stream is present the frame is dropped.
      
      ASTERISK-27488
      
      Change-Id: I022556f524ad8379ee73f14037040af17ea3316a
      e70c4ec8
  9. Feb 20, 2018
  10. Feb 19, 2018
    • Corey Farrell's avatar
      core: Rename sounds_index.c to sounds.c. · 97c21e9c
      Corey Farrell authored
      This will make the source filename match the 'module reload sounds'
      command.  This will allow conversion to a built-in module in Asterisk 16
      without needing to redefine AST_MODULE.
      
      Change-Id: Ifb8e489575b27eb33d8c0b6a531f266670557f6e
      97c21e9c
    • Corey Farrell's avatar
      config: Fix locking for extconfig reload. · e03f0f95
      Corey Farrell authored
      Expand locking to include full reload process for extconfig to ensure
      nothing can read the config mappings between clearing and reloading.
      
      Change-Id: I378316bad04f1b599ea82d0fef62b8978a644b92
      e03f0f95
  11. Feb 17, 2018
  12. Feb 15, 2018
  13. Feb 13, 2018
  14. Feb 12, 2018
    • Sungtae Kim's avatar
      manager: Add AMI event Load/Unload · cb4cfb8c
      Sungtae Kim authored
      Add an AMI events Load and Unload for notify when the
      module has been loaded and unloaded.
      
      ASTERISK-27661
      
      Change-Id: Ib916c41eddd63651952998f2f49c57c42ef87a64
      cb4cfb8c
    • Corey Farrell's avatar
      json: Add conditionals to avoid locking if Jansson is thread safe. · 04490fb1
      Corey Farrell authored
      Jansson is thread safe for all read-only functions and reference
      counting starting v2.11.  This allows simplification of our code and
      removal of locking around reference counting and dumping.
      
      Change-Id: Id985cb3ffa6681f9ac765642e20fcd187bd4aeee
      04490fb1
    • Corey Farrell's avatar
      core: Remove embedded editline. · 9fddc8b4
      Corey Farrell authored
      This removes the embedded copy of editline from the Asterisk source
      tree, making a system copy of libedit mandatory in Asterisk 16+.
      
      ASTERISK-27634 #close
      
      Change-Id: Iedb64ad92acb78419f3caefedaa2bb7cd2a1a33f
      9fddc8b4
  15. Feb 10, 2018
  16. Feb 09, 2018
    • Richard Mudgett's avatar
      cdr.c: Fix runtime leak of CDR records. · b2fcb30d
      Richard Mudgett authored
      Need to remove all CDR's listed by a CDR object from the active_cdrs_all
      container including the root/master record.
      
      ASTERISK-27656
      
      Change-Id: I48b4970663fea98baa262593d2204ef304aaf80e
      b2fcb30d
  17. Feb 01, 2018
  18. Jan 31, 2018
  19. Jan 27, 2018
  20. Jan 26, 2018
    • Corey Farrell's avatar
      core: Tweak startup order. · 39fcecad
      Corey Farrell authored
      Move initialization of units which do not require configuration to occur
      before preload modules.  This leaves only units which load config between
      module preload and regular load stages.
      
      Change-Id: I1d15384acad16a22c3498124421af474fa517478
      39fcecad
  21. Jan 25, 2018
    • Corey Farrell's avatar
      Build System: Require __sync or __atomic functions. · 23381d2c
      Corey Farrell authored
      This change causes the configure script to throw an error if neither
      __sync nor __atomic builtin functions are available.
      
      ASTERISK-27619
      
      Change-Id: Ie01a281e0f5c41dfeeb5f250c1ccea8752f56ef9
      23381d2c
    • Corey Farrell's avatar
      loader: Correct overly strict startup checks. · a164b7cc
      Corey Farrell authored
      The code which handled loading modules had too many situations which
      would result in halting Asterisk startup.  Treat most errors as declines
      instead of failures.  The exception is when the module load function
      returns AST_MODULE_LOAD_FAILURE or an invalid code.
      
      Clear the missingdeps vector when appropriate to ensure the next loop
      starts clean.
      
      ASTERISK-27620
      
      Change-Id: I45547d9641fd45bd86d80250224417625631ad84
      a164b7cc
  22. Jan 22, 2018
    • Richard Mudgett's avatar
      pbx_variables.c: Misc fixes in variable substitution. · 2f78dc2b
      Richard Mudgett authored
      * Copy more than one character at a time when there is nothing to
      substitute.
      
      * Fix off by one error if a '}' or ']' is missing.
      
      * Eliminated the requirement that the "used" parameter had to point to a
      variable.  The current callers were always declaring a variable to meet
      the requirement and discarding the value put into that variable.  Now it
      can be NULL.
      
      * In ast_str_substitute_variables_full() fixed using the bogus channel to
      evaluate a function.  We were not using the bogus channel we just created
      to help evaluate a subexpression.
      
      Change-Id: Ia83d99f4f16abe47f329eb39b6ff2013ae7c9854
      2f78dc2b
  23. Jan 19, 2018
    • krells's avatar
      pbx: Reduce verbosity while loading extensions · 77f2814d
      krells authored
      Each time the dial plan is reloaded, a lot of logs like these are generated:
      "Added extension 'XXXXX' priority 1 to YYYYYYYYYYY"
      This patch changes the log level for those logs.
      
      ASTERISK-27084
      
      Change-Id: I5662902161c50890997ddc56835d4cafb456c529
      77f2814d
Loading