Skip to content
Snippets Groups Projects
  1. Jan 25, 2016
    • Corey Farrell's avatar
      chan_sip: Fix buffer overrun in sip_sipredirect. · 830f8933
      Corey Farrell authored
      sip_sipredirect uses sscanf to copy up to 256 characters to a stacked buffer
      of 256 characters.  This patch reduces the copy to 255 characters to leave
      room for the string null terminator.
      
      ASTERISK-25722 #close
      
      Change-Id: Id6c3a629a609e94153287512c59aa1923e8a03ab
      830f8933
  2. Jan 23, 2016
  3. 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
    • Richard Mudgett's avatar
      logger.c: Fix buffer overrun found by address sanitizer. · 7866806f
      Richard Mudgett authored
      The null terminator of the tail struct member was not being allocated
      when no logger.conf config file is installed.
      
      ASTERISK-25714 #close
      Reported by: Badalian Vyacheslav
      
      Change-Id: I45770fdd08af39506a3bc33ba279c4f16e047a30
      7866806f
    • Matt Jordan's avatar
  4. Jan 21, 2016
  5. Jan 20, 2016
  6. Jan 19, 2016
  7. Jan 18, 2016
  8. Jan 17, 2016
  9. Jan 16, 2016
  10. Jan 15, 2016
    • Kevin Harwell's avatar
      bridge_basic: don't cache xferfailsound during an attended transfer · a5b38b60
      Kevin Harwell authored
      The xferfailsound was read from the channel at the beginning of the transfer,
      and that value is "cached" for the duration of the transfer. Therefore, changing
      the xferfailsound on the channel using the FEATURE() dialplan function does
      nothing once the transfer is under way.
      
      This makes it so the transfer code instead gets the xferfailsound configuration
      options from the channel when it is actually going to be used.
      
      This patch also fixes a potential memory leak of the props object as well as
      making sure the condition variable gets initialized before being destroyed.
      
      ASTERISK-25696 #close
      
      Change-Id: Ic726b0f54ef588bd9c9c67f4b0e4d787934f85e4
      a5b38b60
    • Richard Mudgett's avatar
      taskprocessor.c: Simplify ast_taskprocessor_get() return code. · d36c4d0b
      Richard Mudgett authored
      Change-Id: Id5bd18ef1f60ef8be453e677e98478298358a9d1
      d36c4d0b
Loading