[asterisk-dev] [Code Review]: Fix incorrect duration reporting in CDRs created in batch mode that use ast_cdr_getvar

Tilghman Lesher reviewboard at asterisk.org
Thu Jun 21 11:57:11 CDT 2012



> On June 21, 2012, 10:12 a.m., Tilghman Lesher wrote:
> > /branches/1.8/main/cdr.c, lines 292-295
> > <https://reviewboard.asterisk.org/r/1996/diff/1/?file=29024#file29024line292>
> >
> >     I really don't think you should do this, especially in a released version.  You are likely to break more dialplans than you will help, and it violates one of our core tenets that multiple developers have regretted (thou shalt not change how CDRs work).
> 
> Matt Jordan wrote:
>     I won't say that I'm a fan of doing this.  I'm not.  On the other hand, it is a legitimate bug.  And it isn't happening due to undefined behavior (see, transfers/masquerades/anything involving more then two channels), it isn't happening due to an incredibly contrived dialplan or configuration - its happening because they happen to be using a well documented (if rarely exercised) feature.
>     
>     I find it a little tough to say that we won't attempt to fix that.
>     
>     BUT: to minimize the risk further, there are a few things that can be done here to make this a bit less likely to cause problems.  In particular, we could check (similar to billsec) whether or not a value has been set for cdr->end.  If a value has been set for cdr->end and duration is 0, we can trust that we have a valid duration of 0.  If not, we re-calculate using the current time.
>     
>     That preserves the intent of the original patch, which was to calculate the duration if - for whatever reason - ast_cdr_end failed to get called, while preventing that calculation from occurring if ast_cdr_end really was called.

Right, the original intent is so that with endbeforehexten=no, an admin can rely upon using CDR(duration) in the "h" extension to set additional CDR variables.  I agree with the rest of what you've said above.


- Tilghman


-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviewboard.asterisk.org/r/1996/#review6529
-----------------------------------------------------------


On June 21, 2012, 11:08 a.m., Matt Jordan wrote:
> 
> -----------------------------------------------------------
> This is an automatically generated e-mail. To reply, visit:
> https://reviewboard.asterisk.org/r/1996/
> -----------------------------------------------------------
> 
> (Updated June 21, 2012, 11:08 a.m.)
> 
> 
> Review request for Asterisk Developers, Mark Michelson and Tilghman Lesher.
> 
> 
> Summary
> -------
> 
> Certain places in core/cdr.c would, if the duration value were 0, would calculate the duration as being the delta between the current time and the time at which the CDR record was started.  While this does not typically cause a problem in non-batch mode, this can cause an issue in batch mode where CDR records are gathered and written long after those calls have ended. In particular, this affects calls that were never answered, as those are expected to have a duration of 0.  Often, this would result in CDR logs with a significant number of calls with lengthy durations, but dispositions of "BUSY".
> 
> Note that this does not affect CSV CDRs, as that backend does not use ast_cdr_getvar and instead directly reports the duration value.  The affected core backends include cdr_apative_odbc and cdr_custom; other extended or deprecated CDR backends may potentially still directly manipulate the duration values. 
> 
> This patch essentially reverts r91617, when this behavior was introduced.
> 
> 
> This addresses bug ASTERISK-19860.
>     https://issues.asterisk.org/jira/browse/ASTERISK-19860
> 
> 
> Diffs
> -----
> 
>   /branches/1.8/main/cdr.c 369001 
> 
> Diff: https://reviewboard.asterisk.org/r/1996/diff
> 
> 
> Testing
> -------
> 
> Ran through the Asterisk Test Suite's CDR tests.  A new test for batch CDR creation was also written that also tests that the disposition/billsec are 0 when they should be, and non-zero when the calls are answered.
> 
> 
> Thanks,
> 
> Matt
> 
>

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digium.com/pipermail/asterisk-dev/attachments/20120621/8322623d/attachment-0001.htm>


More information about the asterisk-dev mailing list