]> git.ipfire.org Git - thirdparty/asterisk.git/commit
Prevent exhaustion of system resources through exploitation of event cache certified/1.8.11
authorMatthew Jordan <mjordan@digium.com>
Wed, 2 Jan 2013 18:17:26 +0000 (18:17 +0000)
committerMatthew Jordan <mjordan@digium.com>
Wed, 2 Jan 2013 18:17:26 +0000 (18:17 +0000)
commit4f6a7564825558cef8466cc954a0d8b843d36ae3
tree47699afef2b1899a629bcf542a308be725418775
parent637a9805e9bf19bb1d458f7af639134a910f344a
Prevent exhaustion of system resources through exploitation of event cache

Asterisk maintains an internal cache for devices in the event subsystem. The
device state cache holds the state of each device known to Asterisk, such that
consumers of device state information can query for the last known state for
a particular device, even if it is not part of an active call. The concept of
a device in Asterisk can include entities that do not have a physical
representation. One way that this occurred was when anonymous calls are allowed
in Asterisk. A device was automatically created and stored in the cache for
each anonymous call that occurred; this was possible in the SIP and IAX2
channel drivers and through channel drivers that utilized the
res_jabber/res_xmpp resource modules (Gtalk, Jingle, and Motif). These devices
are never removed from the system, allowing anonymous calls to potentially
exhaust a system's resources.

This patch changes the event cache subsystem and device state management to
no longer cache devices that are not associated with a physical entity.

(issue ASTERISK-20175)
Reported by: Russell Bryant, Leif Madsen, Joshua Colp
Tested by: kmoore
patches:
  event-cachability-3.diff uploaded by jcolp (license 5000)
........

Merged revisions 378303 from http://svn.asterisk.org/svn/asterisk/branches/1.8

git-svn-id: https://origsvn.digium.com/svn/asterisk/certified/branches/1.8.11@378323 65c4cc65-6c06-0410-ace0-fbb531ad65f3
18 files changed:
apps/app_confbridge.c
apps/app_meetme.c
channels/chan_agent.c
channels/chan_dahdi.c
channels/chan_iax2.c
channels/chan_local.c
channels/chan_sip.c
channels/chan_skinny.c
funcs/func_devstate.c
include/asterisk/channel.h
include/asterisk/devicestate.h
include/asterisk/event_defs.h
main/channel.c
main/devicestate.c
main/event.c
main/features.c
res/res_calendar.c
res/res_jabber.c