[svn-commits@lists.digium.com: [svn-commits] branch 1.0 r32428 -
/branches/1.0/channels/chan_iax2.c]
Tzafrir Cohen
tzafrir.cohen at xorcom.com
Mon Jun 5 22:20:40 UTC 2006
A backport of the security fix in asterisk 1.2.9 to asterisk 1.0.x .
I haven't tried it on the Sarge packages yet.
----- Forwarded message from svn-commits at lists.digium.com -----
Envelope-to: tzafrir.cohen at xorcom.com
Delivery-date: Mon, 05 Jun 2006 18:03:28 -0400
To: asterisk-commits at lists.digium.com, svn-commits at lists.digium.com
Date: Mon, 05 Jun 2006 22:03:16 -0000
Cc:
From: svn-commits at lists.digium.com
Subject: [svn-commits] branch 1.0 r32428 - /branches/1.0/channels/chan_iax2.c
Author: russell
Date: Mon Jun 5 17:03:16 2006
New Revision: 32428
URL: http://svn.digium.com/view/asterisk?rev=32428&view=rev
Log:
backport the chan_iax2 security fix from 1.2 and trunk ...
ensure that the received number of bytes is included in all IAX2 incoming
frame analysis checks (fixes a known vulnerability)
Modified:
branches/1.0/channels/chan_iax2.c
Modified: branches/1.0/channels/chan_iax2.c
URL: http://svn.digium.com/view/asterisk/branches/1.0/channels/chan_iax2.c?rev=32428&r1=32427&r2=32428&view=diff
==============================================================================
--- branches/1.0/channels/chan_iax2.c (original)
+++ branches/1.0/channels/chan_iax2.c Mon Jun 5 17:03:16 2006
@@ -5052,11 +5052,11 @@
ast_log(LOG_WARNING, "midget packet received (%d of %d min)\n", res, (int)sizeof(struct ast_iax2_mini_hdr));
return 1;
}
- if ((vh->zeros == 0) && (ntohs(vh->callno) & 0x8000)) {
+ if ((res >= sizeof(*vh)) && ((vh->zeros == 0) && (ntohs(vh->callno) & 0x8000))) {
/* This is a video frame, get call number */
fr.callno = find_callno(ntohs(vh->callno) & ~0x8000, dcallno, &sin, new, 1);
minivid = 1;
- } else if (meta->zeros == 0) {
+ } else if ((res >= sizeof(*meta)) && (meta->zeros == 0) && !(ntohs(meta->metacmd) & 0x8000)) {
/* This is a meta header */
switch(meta->metacmd) {
case IAX_META_TRUNK:
@@ -5149,11 +5149,19 @@
}
return 1;
}
+ /* if we got here and ->zeros contains zeros, this cannot be a valid
+ miniframe or full frame but it wasn't a valid video frame or meta
+ frame either, so we reject it
+ */
+ if (vh->zeros == 0) {
+ ast_log(LOG_WARNING, "Rejecting packet from '%s.%d' that is flagged as a video or meta frame but is not properly formatted\n", ast_inet_ntoa(iabuf, sizeof(iabuf), sin.sin_addr), ntohs(sin.sin_port));
+ return 1;
+ }
#ifdef DEBUG_SUPPORT
if (iaxdebug)
iax_showframe(NULL, fh, 1, &sin, res - sizeof(struct ast_iax2_full_hdr));
#endif
- if (ntohs(mh->callno) & IAX_FLAG_FULL) {
+ if ((res >= sizeof(*fh)) && ntohs(mh->callno) & IAX_FLAG_FULL) {
/* Get the destination call number */
dcallno = ntohs(fh->dcallno) & ~IAX_FLAG_RETRANS;
/* Retrieve the type and subclass */
_______________________________________________
--Bandwidth and Colocation provided by Easynews.com --
svn-commits mailing list
To UNSUBSCRIBE or update options visit:
http://lists.digium.com/mailman/listinfo/svn-commits
----- End forwarded message -----
--
Tzafrir Cohen sip:tzafrir at local.xorcom.com
icq#16849755 iax:tzafrir at local.xorcom.com
+972-50-7952406
tzafrir.cohen at xorcom.com http://www.xorcom.com
More information about the Pkg-voip-maintainers
mailing list