CDR: Improve handling of parking; resolve assertion when originating into park
[asterisk/asterisk.git] / main / cdr.c
1 /*
2  * Asterisk -- An open source telephony toolkit.
3  *
4  * Copyright (C) 1999 - 2006, Digium, Inc.
5  *
6  * Mark Spencer <markster@digium.com>
7  *
8  * See http://www.asterisk.org for more information about
9  * the Asterisk project. Please do not directly contact
10  * any of the maintainers of this project for assistance;
11  * the project provides a web site, mailing lists and IRC
12  * channels for your use.
13  *
14  * This program is free software, distributed under the terms of
15  * the GNU General Public License Version 2. See the LICENSE file
16  * at the top of the source tree.
17  */
18
19 /*! \file
20  *
21  * \brief Call Detail Record API
22  *
23  * \author Mark Spencer <markster@digium.com>
24  *
25  * \note Includes code and algorithms from the Zapata library.
26  *
27  * \note We do a lot of checking here in the CDR code to try to be sure we don't ever let a CDR slip
28  * through our fingers somehow.  If someone allocates a CDR, it must be completely handled normally
29  * or a WARNING shall be logged, so that we can best keep track of any escape condition where the CDR
30  * isn't properly generated and posted.
31  */
32
33 /*! \li \ref cdr.c uses the configuration file \ref cdr.conf
34  * \addtogroup configuration_file Configuration Files
35  */
36
37 /*!
38  * \page cdr.conf cdr.conf
39  * \verbinclude cdr.conf.sample
40  */
41
42 /*** MODULEINFO
43         <support_level>core</support_level>
44  ***/
45
46 #include "asterisk.h"
47
48 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
49
50 #include <signal.h>
51 #include <inttypes.h>
52
53 #include "asterisk/lock.h"
54 #include "asterisk/channel.h"
55 #include "asterisk/cdr.h"
56 #include "asterisk/callerid.h"
57 #include "asterisk/manager.h"
58 #include "asterisk/causes.h"
59 #include "asterisk/linkedlists.h"
60 #include "asterisk/utils.h"
61 #include "asterisk/sched.h"
62 #include "asterisk/config.h"
63 #include "asterisk/cli.h"
64 #include "asterisk/stringfields.h"
65 #include "asterisk/data.h"
66 #include "asterisk/config_options.h"
67 #include "asterisk/json.h"
68 #include "asterisk/parking.h"
69 #include "asterisk/stasis.h"
70 #include "asterisk/stasis_channels.h"
71 #include "asterisk/stasis_bridges.h"
72 #include "asterisk/stasis_message_router.h"
73 #include "asterisk/astobj2.h"
74
75 /*** DOCUMENTATION
76         <configInfo name="cdr" language="en_US">
77                 <synopsis>Call Detail Record configuration</synopsis>
78                 <description>
79                         <para>CDR is Call Detail Record, which provides logging services via a variety of
80                         pluggable backend modules. Detailed call information can be recorded to
81                         databases, files, etc. Useful for billing, fraud prevention, compliance with
82                         Sarbanes-Oxley aka The Enron Act, QOS evaluations, and more.</para>
83                 </description>
84                 <configFile name="cdr.conf">
85                         <configObject name="general">
86                                 <synopsis>Global settings applied to the CDR engine.</synopsis>
87                                 <configOption name="debug">
88                                         <synopsis>Enable/disable verbose CDR debugging.</synopsis>
89                                         <description><para>When set to <literal>True</literal>, verbose updates
90                                         of changes in CDR information will be logged. Note that this is only
91                                         of use when debugging CDR behavior.</para>
92                                         </description>
93                                 </configOption>
94                                 <configOption name="enable">
95                                         <synopsis>Enable/disable CDR logging.</synopsis>
96                                         <description><para>Define whether or not to use CDR logging. Setting this to "no" will override
97                                         any loading of backend CDR modules.  Default is "yes".</para>
98                                         </description>
99                                 </configOption>
100                                 <configOption name="unanswered">
101                                         <synopsis>Log calls that are never answered.</synopsis>
102                                         <description><para>Define whether or not to log unanswered calls. Setting this to "yes" will
103                                         report every attempt to ring a phone in dialing attempts, when it was not
104                                         answered. For example, if you try to dial 3 extensions, and this option is "yes",
105                                         you will get 3 CDR's, one for each phone that was rung. Some find this information horribly
106                                         useless. Others find it very valuable. Note, in "yes" mode, you will see one CDR, with one of
107                                         the call targets on one side, and the originating channel on the other, and then one CDR for
108                                         each channel attempted. This may seem redundant, but cannot be helped.</para>
109                                         <para>In brief, this option controls the reporting of unanswered calls which only have an A
110                                         party. Calls which get offered to an outgoing line, but are unanswered, are still
111                                         logged, and that is the intended behavior. (It also results in some B side CDRs being
112                                         output, as they have the B side channel as their source channel, and no destination
113                                         channel.)</para>
114                                         </description>
115                                 </configOption>
116                                 <configOption name="congestion">
117                                         <synopsis>Log congested calls.</synopsis>
118                                         <description><para>Define whether or not to log congested calls. Setting this to "yes" will
119                                         report each call that fails to complete due to congestion conditions.</para>
120                                         </description>
121                                 </configOption>
122                                 <configOption name="endbeforehexten">
123                                         <synopsis>Don't produce CDRs while executing hangup logic</synopsis>
124                                         <description>
125                                                 <para>As each CDR for a channel is finished, its end time is updated
126                                                 and the CDR is finalized. When a channel is hung up and hangup
127                                                 logic is present (in the form of a hangup handler or the
128                                                 <literal>h</literal> extension), a new CDR is generated for the
129                                                 channel. Any statistics are gathered from this new CDR. By enabling
130                                                 this option, no new CDR is created for the dialplan logic that is
131                                                 executed in <literal>h</literal> extensions or attached hangup handler
132                                                 subroutines. The default value is <literal>no</literal>, indicating
133                                                 that a CDR will be generated during hangup logic.</para>
134                                         </description>
135                                 </configOption>
136                                 <configOption name="initiatedseconds">
137                                         <synopsis>Count microseconds for billsec purposes</synopsis>
138                                         <description><para>Normally, the <literal>billsec</literal> field logged to the CDR backends
139                                         is simply the end time (hangup time) minus the answer time in seconds. Internally,
140                                         asterisk stores the time in terms of microseconds and seconds. By setting
141                                         initiatedseconds to <literal>yes</literal>, you can force asterisk to report any seconds
142                                         that were initiated (a sort of round up method). Technically, this is
143                                         when the microsecond part of the end time is greater than the microsecond
144                                         part of the answer time, then the billsec time is incremented one second.</para>
145                                         </description>
146                                 </configOption>
147                                 <configOption name="batch">
148                                         <synopsis>Submit CDRs to the backends for processing in batches</synopsis>
149                                         <description><para>Define the CDR batch mode, where instead of posting the CDR at the end of
150                                         every call, the data will be stored in a buffer to help alleviate load on the
151                                         asterisk server.</para>
152                                         <warning><para>Use of batch mode may result in data loss after unsafe asterisk termination,
153                                         i.e., software crash, power failure, kill -9, etc.</para>
154                                         </warning>
155                                         </description>
156                                 </configOption>
157                                 <configOption name="size">
158                                         <synopsis>The maximum number of CDRs to accumulate before triggering a batch</synopsis>
159                                         <description><para>Define the maximum number of CDRs to accumulate in the buffer before posting
160                                         them to the backend engines. batch must be set to <literal>yes</literal>.</para>
161                                         </description>
162                                 </configOption>
163                                 <configOption name="time">
164                                         <synopsis>The maximum time to accumulate CDRs before triggering a batch</synopsis>
165                                         <description><para>Define the maximum time to accumulate CDRs before posting them in a batch to the
166                                         backend engines. If this time limit is reached, then it will post the records, regardless of the value
167                                         defined for size. batch must be set to <literal>yes</literal>.</para>
168                                         <note><para>Time is expressed in seconds.</para></note>
169                                         </description>
170                                 </configOption>
171                                 <configOption name="scheduleronly">
172                                         <synopsis>Post batched CDRs on their own thread instead of the scheduler</synopsis>
173                                         <description><para>The CDR engine uses the internal asterisk scheduler to determine when to post
174                                         records.  Posting can either occur inside the scheduler thread, or a new
175                                         thread can be spawned for the submission of every batch.  For small batches,
176                                         it might be acceptable to just use the scheduler thread, so set this to <literal>yes</literal>.
177                                         For large batches, say anything over size=10, a new thread is recommended, so
178                                         set this to <literal>no</literal>.</para>
179                                         </description>
180                                 </configOption>
181                                 <configOption name="safeshutdown">
182                                         <synopsis>Block shutdown of Asterisk until CDRs are submitted</synopsis>
183                                         <description><para>When shutting down asterisk, you can block until the CDRs are submitted.  If
184                                         you don't, then data will likely be lost.  You can always check the size of
185                                         the CDR batch buffer with the CLI <astcli>cdr status</astcli> command.  To enable blocking on
186                                         submission of CDR data during asterisk shutdown, set this to <literal>yes</literal>.</para>
187                                         </description>
188                                 </configOption>
189                         </configObject>
190                 </configFile>
191         </configInfo>
192  ***/
193
194
195 /* The prime here should be similar in size to the channel container. */
196 #ifdef LOW_MEMORY
197 #define NUM_CDR_BUCKETS 61
198 #else
199 #define NUM_CDR_BUCKETS 769
200 #endif
201
202 #define DEFAULT_ENABLED "1"
203 #define DEFAULT_BATCHMODE "0"
204 #define DEFAULT_UNANSWERED "0"
205 #define DEFAULT_CONGESTION "0"
206 #define DEFAULT_END_BEFORE_H_EXTEN "0"
207 #define DEFAULT_INITIATED_SECONDS "0"
208
209 #define DEFAULT_BATCH_SIZE "100"
210 #define MAX_BATCH_SIZE 1000
211 #define DEFAULT_BATCH_TIME "300"
212 #define MAX_BATCH_TIME 86400
213 #define DEFAULT_BATCH_SCHEDULER_ONLY "0"
214 #define DEFAULT_BATCH_SAFE_SHUTDOWN "1"
215
216 #define CDR_DEBUG(mod_cfg, fmt, ...) \
217         do { \
218         if (ast_test_flag(&(mod_cfg)->general->settings, CDR_DEBUG)) { \
219                 ast_verb(1, (fmt), ##__VA_ARGS__); \
220         } } while (0)
221
222 static void cdr_detach(struct ast_cdr *cdr);
223 static void cdr_submit_batch(int shutdown);
224
225 /*! \brief The configuration settings for this module */
226 struct module_config {
227         struct ast_cdr_config *general;         /*< CDR global settings */
228 };
229
230 /*! \brief The container for the module configuration */
231 static AO2_GLOBAL_OBJ_STATIC(module_configs);
232
233 /*! \brief The type definition for general options */
234 static struct aco_type general_option = {
235         .type = ACO_GLOBAL,
236         .name = "general",
237         .item_offset = offsetof(struct module_config, general),
238         .category = "^general$",
239         .category_match = ACO_WHITELIST,
240 };
241
242 static void *module_config_alloc(void);
243 static void module_config_destructor(void *obj);
244
245 /*! \brief The file definition */
246 static struct aco_file module_file_conf = {
247         .filename = "cdr.conf",
248         .skip_category = "(^csv$|^custom$|^manager$|^odbc$|^pgsql$|^radius$|^sqlite$|^tds$|^mysql$)",
249         .types = ACO_TYPES(&general_option),
250 };
251
252 CONFIG_INFO_CORE("cdr", cfg_info, module_configs, module_config_alloc,
253         .files = ACO_FILES(&module_file_conf),
254 );
255
256 static struct aco_type *general_options[] = ACO_TYPES(&general_option);
257
258 /*! \brief Dispose of a module config object */
259 static void module_config_destructor(void *obj)
260 {
261         struct module_config *cfg = obj;
262
263         if (!cfg) {
264                 return;
265         }
266         ao2_ref(cfg->general, -1);
267 }
268
269 /*! \brief Create a new module config object */
270 static void *module_config_alloc(void)
271 {
272         struct module_config *mod_cfg;
273         struct ast_cdr_config *cdr_config;
274
275         mod_cfg = ao2_alloc(sizeof(*mod_cfg), module_config_destructor);
276         if (!mod_cfg) {
277                 return NULL;
278         }
279
280         cdr_config = ao2_alloc(sizeof(*cdr_config), NULL);
281         if (!cdr_config) {
282                 ao2_ref(cdr_config, -1);
283                 return NULL;
284         }
285         mod_cfg->general = cdr_config;
286
287         return mod_cfg;
288 }
289
290 /*! \brief Registration object for CDR backends */
291 struct cdr_beitem {
292         char name[20];
293         char desc[80];
294         ast_cdrbe be;
295         AST_RWLIST_ENTRY(cdr_beitem) list;
296 };
297
298 /*! \brief List of registered backends */
299 static AST_RWLIST_HEAD_STATIC(be_list, cdr_beitem);
300
301 /*! \brief Queued CDR waiting to be batched */
302 struct cdr_batch_item {
303         struct ast_cdr *cdr;
304         struct cdr_batch_item *next;
305 };
306
307 /*! \brief The actual batch queue */
308 static struct cdr_batch {
309         int size;
310         struct cdr_batch_item *head;
311         struct cdr_batch_item *tail;
312 } *batch = NULL;
313
314 /*! \brief The global sequence counter used for CDRs */
315 static int global_cdr_sequence =  0;
316
317 /*! \brief Scheduler items */
318 static struct ast_sched_context *sched;
319 static int cdr_sched = -1;
320 AST_MUTEX_DEFINE_STATIC(cdr_sched_lock);
321 static pthread_t cdr_thread = AST_PTHREADT_NULL;
322
323 /*! \brief Lock protecting modifications to the batch queue */
324 AST_MUTEX_DEFINE_STATIC(cdr_batch_lock);
325
326 /*! \brief These are used to wake up the CDR thread when there's work to do */
327 AST_MUTEX_DEFINE_STATIC(cdr_pending_lock);
328 static ast_cond_t cdr_pending_cond;
329
330 /*! \brief A container of the active CDRs indexed by Party A channel id */
331 static struct ao2_container *active_cdrs_by_channel;
332
333 /*! \brief Message router for stasis messages regarding channel state */
334 static struct stasis_message_router *stasis_router;
335
336 /*! \brief Our subscription for bridges */
337 static struct stasis_subscription *bridge_subscription;
338
339 /*! \brief Our subscription for channels */
340 static struct stasis_subscription *channel_subscription;
341
342 /*! \brief Our subscription for parking */
343 static struct stasis_subscription *parking_subscription;
344
345 /*! \brief The parent topic for all topics we want to aggregate for CDRs */
346 static struct stasis_topic *cdr_topic;
347
348 struct cdr_object;
349
350 /*! \brief Return types for \ref process_bridge_enter functions */
351 enum process_bridge_enter_results {
352         /*!
353          * The CDR was the only party in the bridge.
354          */
355         BRIDGE_ENTER_ONLY_PARTY,
356         /*!
357          * The CDR was able to obtain a Party B from some other party already in the bridge
358          */
359         BRIDGE_ENTER_OBTAINED_PARTY_B,
360         /*!
361          * The CDR was not able to obtain a Party B
362          */
363         BRIDGE_ENTER_NO_PARTY_B,
364         /*!
365          * This CDR can't handle a bridge enter message and a new CDR needs to be created
366          */
367         BRIDGE_ENTER_NEED_CDR,
368 };
369
370 /*!
371  * \brief A virtual table used for \ref cdr_object.
372  *
373  * Note that all functions are optional - if a subclass does not need an
374  * implementation, it is safe to leave it NULL.
375  */
376 struct cdr_object_fn_table {
377         /*! \brief Name of the subclass */
378         const char *name;
379
380         /*!
381          * \brief An initialization function. This will be called automatically
382          * when a \ref cdr_object is switched to this type in
383          * \ref cdr_object_transition_state
384          *
385          * \param cdr The \ref cdr_object that was just transitioned
386          */
387         void (* const init_function)(struct cdr_object *cdr);
388
389         /*!
390          * \brief Process a Party A update for the \ref cdr_object
391          *
392          * \param cdr The \ref cdr_object to process the update
393          * \param snapshot The snapshot for the CDR's Party A
394          * \retval 0 the CDR handled the update or ignored it
395          * \retval 1 the CDR is finalized and a new one should be made to handle it
396          */
397         int (* const process_party_a)(struct cdr_object *cdr,
398                         struct ast_channel_snapshot *snapshot);
399
400         /*!
401          * \brief Process a Party B update for the \ref cdr_object
402          *
403          * \param cdr The \ref cdr_object to process the update
404          * \param snapshot The snapshot for the CDR's Party B
405          */
406         void (* const process_party_b)(struct cdr_object *cdr,
407                         struct ast_channel_snapshot *snapshot);
408
409         /*!
410          * \brief Process the beginning of a dial. A dial message implies one of two
411          * things:
412          * The \ref cdr_object's Party A has been originated
413          * The \ref cdr_object's Party A is dialing its Party B
414          *
415          * \param cdr The \ref cdr_object
416          * \param caller The originator of the dial attempt
417          * \param peer The destination of the dial attempt
418          *
419          * \retval 0 if the parties in the dial were handled by this CDR
420          * \retval 1 if the parties could not be handled by this CDR
421          */
422         int (* const process_dial_begin)(struct cdr_object *cdr,
423                         struct ast_channel_snapshot *caller,
424                         struct ast_channel_snapshot *peer);
425
426         /*!
427          * \brief Process the end of a dial. At the end of a dial, a CDR can be
428          * transitioned into one of two states - DialedPending
429          * (\ref dialed_pending_state_fn_table) or Finalized
430          * (\ref finalized_state_fn_table).
431          *
432          * \param cdr The \ref cdr_object
433          * \param caller The originator of the dial attempt
434          * \param peer the Destination of the dial attempt
435          * \param dial_status What happened
436          *
437          * \retval 0 if the parties in the dial were handled by this CDR
438          * \retval 1 if the parties could not be handled by this CDR
439          */
440         int (* const process_dial_end)(struct cdr_object *cdr,
441                         struct ast_channel_snapshot *caller,
442                         struct ast_channel_snapshot *peer,
443                         const char *dial_status);
444
445         /*!
446          * \brief Process the entering of a bridge by this CDR. The purpose of this
447          * callback is to have the CDR prepare itself for the bridge and attempt to
448          * find a valid Party B. The act of creating new CDRs based on the entering
449          * of this channel into the bridge is handled by the higher level message
450          * handler.
451          *
452          * Note that this handler is for when a channel enters into a "normal"
453          * bridge, where people actually talk to each other. Parking is its own
454          * thing.
455          *
456          * \param cdr The \ref cdr_object
457          * \param bridge The bridge that the Party A just entered into
458          * \param channel The \ref ast_channel_snapshot for this CDR's Party A
459          *
460          * \retval process_bridge_enter_results Defines whether or not this CDR was able
461          * to fully handle the bridge enter message.
462          */
463         enum process_bridge_enter_results (* const process_bridge_enter)(
464                         struct cdr_object *cdr,
465                         struct ast_bridge_snapshot *bridge,
466                         struct ast_channel_snapshot *channel);
467
468         /*!
469          * \brief Process entering into a parking bridge.
470          *
471          * \param cdr The \ref cdr_object
472          * \param bridge The parking bridge that Party A just entered into
473          * \param channel The \ref ast_channel_snapshot for this CDR's Party A
474          *
475          * \retval 0 This CDR successfully transitioned itself into the parked state
476          * \retval 1 This CDR couldn't handle the parking transition and we need a
477          *  new CDR.
478          */
479         int (* const process_parking_bridge_enter)(struct cdr_object *cdr,
480                         struct ast_bridge_snapshot *bridge,
481                         struct ast_channel_snapshot *channel);
482
483         /*!
484          * \brief Process the leaving of a bridge by this CDR.
485          *
486          * \param cdr The \ref cdr_object
487          * \param bridge The bridge that the Party A just left
488          * \param channel The \ref ast_channel_snapshot for this CDR's Party A
489          *
490          * \retval 0 This CDR left successfully
491          * \retval 1 Error
492          */
493         int (* const process_bridge_leave)(struct cdr_object *cdr,
494                         struct ast_bridge_snapshot *bridge,
495                         struct ast_channel_snapshot *channel);
496
497         /*!
498          * \brief Process an update informing us that the channel got itself parked
499          *
500          * \param cdr The \ref cdr_object
501          * \param channel The parking information for this CDR's party A
502          *
503          * \retval 0 This CDR successfully parked itself
504          * \retval 1 This CDR couldn't handle the park
505          */
506         int (* const process_parked_channel)(struct cdr_object *cdr,
507                         struct ast_parked_call_payload *parking_info);
508 };
509
510 static int base_process_party_a(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot);
511 static enum process_bridge_enter_results base_process_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel);
512 static int base_process_bridge_leave(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel);
513 static int base_process_dial_end(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer, const char *dial_status);
514 static int base_process_parked_channel(struct cdr_object *cdr, struct ast_parked_call_payload *parking_info);
515
516 static void single_state_init_function(struct cdr_object *cdr);
517 static void single_state_process_party_b(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot);
518 static int single_state_process_dial_begin(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer);
519 static enum process_bridge_enter_results single_state_process_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel);
520 static int single_state_process_parking_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel);
521
522 /*!
523  * \brief The virtual table for the Single state.
524  *
525  * A \ref cdr_object starts off in this state. This represents a channel that
526  * has no Party B information itself.
527  *
528  * A \ref cdr_object from this state can go into any of the following states:
529  * * \ref dial_state_fn_table
530  * * \ref bridge_state_fn_table
531  * * \ref finalized_state_fn_table
532  */
533 struct cdr_object_fn_table single_state_fn_table = {
534         .name = "Single",
535         .init_function = single_state_init_function,
536         .process_party_a = base_process_party_a,
537         .process_party_b = single_state_process_party_b,
538         .process_dial_begin = single_state_process_dial_begin,
539         .process_dial_end = base_process_dial_end,
540         .process_bridge_enter = single_state_process_bridge_enter,
541         .process_parking_bridge_enter = single_state_process_parking_bridge_enter,
542         .process_bridge_leave = base_process_bridge_leave,
543         .process_parked_channel = base_process_parked_channel,
544 };
545
546 static void dial_state_process_party_b(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot);
547 static int dial_state_process_dial_begin(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer);
548 static int dial_state_process_dial_end(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer, const char *dial_status);
549 static enum process_bridge_enter_results dial_state_process_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel);
550
551 /*!
552  * \brief The virtual table for the Dial state.
553  *
554  * A \ref cdr_object that has begun a dial operation. This state is entered when
555  * the Party A for a CDR is determined to be dialing out to a Party B or when
556  * a CDR is for an originated channel (in which case the Party A information is
557  * the originated channel, and there is no Party B).
558  *
559  * A \ref cdr_object from this state can go in any of the following states:
560  * * \ref dialed_pending_state_fn_table
561  * * \ref bridge_state_fn_table
562  * * \ref finalized_state_fn_table
563  */
564 struct cdr_object_fn_table dial_state_fn_table = {
565         .name = "Dial",
566         .process_party_a = base_process_party_a,
567         .process_party_b = dial_state_process_party_b,
568         .process_dial_begin = dial_state_process_dial_begin,
569         .process_dial_end = dial_state_process_dial_end,
570         .process_bridge_enter = dial_state_process_bridge_enter,
571         .process_bridge_leave = base_process_bridge_leave,
572 };
573
574 static int dialed_pending_state_process_party_a(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot);
575 static int dialed_pending_state_process_dial_begin(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer);
576 static enum process_bridge_enter_results dialed_pending_state_process_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel);
577 static int dialed_pending_state_process_parking_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel);
578
579 /*!
580  * \brief The virtual table for the Dialed Pending state.
581  *
582  * A \ref cdr_object that has successfully finished a dial operation, but we
583  * don't know what they're going to do yet. It's theoretically possible to dial
584  * a party and then have that party not be bridged with the caller; likewise,
585  * an origination can complete and the channel go off and execute dialplan. The
586  * pending state acts as a bridge between either:
587  * * Entering a bridge
588  * * Getting a new CDR for new dialplan execution
589  * * Switching from being originated to executing dialplan
590  *
591  * A \ref cdr_object from this state can go in any of the following states:
592  * * \ref single_state_fn_table
593  * * \ref dialed_pending_state_fn_table
594  * * \ref bridge_state_fn_table
595  * * \ref finalized_state_fn_table
596  */
597 struct cdr_object_fn_table dialed_pending_state_fn_table = {
598         .name = "DialedPending",
599         .process_party_a = dialed_pending_state_process_party_a,
600         .process_dial_begin = dialed_pending_state_process_dial_begin,
601         .process_bridge_enter = dialed_pending_state_process_bridge_enter,
602         .process_parking_bridge_enter = dialed_pending_state_process_parking_bridge_enter,
603         .process_bridge_leave = base_process_bridge_leave,
604         .process_parked_channel = base_process_parked_channel,
605 };
606
607 static void bridge_state_process_party_b(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot);
608 static int bridge_state_process_bridge_leave(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel);
609
610 /*!
611  * \brief The virtual table for the Bridged state
612  *
613  * A \ref cdr_object enters this state when it receives notification that the
614  * channel has entered a bridge.
615  *
616  * A \ref cdr_object from this state can go to:
617  * * \ref finalized_state_fn_table
618  */
619 struct cdr_object_fn_table bridge_state_fn_table = {
620         .name = "Bridged",
621         .process_party_a = base_process_party_a,
622         .process_party_b = bridge_state_process_party_b,
623         .process_bridge_leave = bridge_state_process_bridge_leave,
624         .process_parked_channel = base_process_parked_channel,
625 };
626
627 static int parked_state_process_bridge_leave(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel);
628
629 /*!
630  * \brief The virtual table for the Parked state
631  *
632  * Parking is weird. Unlike typical bridges, it has to be treated somewhat
633  * uniquely - a channel in a parking bridge (which is a subclass of a holding
634  * bridge) has to be handled as if the channel went into an application.
635  * However, when the channel comes out, we need a new CDR - unlike the Single
636  * state.
637  */
638 struct cdr_object_fn_table parked_state_fn_table = {
639         .name = "Parked",
640         .process_party_a = base_process_party_a,
641         .process_bridge_leave = parked_state_process_bridge_leave,
642         .process_parked_channel = base_process_parked_channel,
643 };
644
645 static void finalized_state_init_function(struct cdr_object *cdr);
646 static int finalized_state_process_party_a(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot);
647
648 /*!
649  * \brief The virtual table for the finalized state.
650  *
651  * Once in the finalized state, the CDR is done. No modifications can be made
652  * to the CDR.
653  */
654 struct cdr_object_fn_table finalized_state_fn_table = {
655         .name = "Finalized",
656         .init_function = finalized_state_init_function,
657         .process_party_a = finalized_state_process_party_a,
658         .process_bridge_enter = base_process_bridge_enter,
659 };
660
661 /*! \brief A wrapper object around a snapshot.
662  * Fields that are mutable by the CDR engine are replicated here.
663  */
664 struct cdr_object_snapshot {
665         struct ast_channel_snapshot *snapshot;  /*!< The channel snapshot */
666         char userfield[AST_MAX_USER_FIELD];     /*!< Userfield for the channel */
667         unsigned int flags;                     /*!< Specific flags for this party */
668         struct varshead variables;              /*!< CDR variables for the channel */
669 };
670
671 /*! \brief An in-memory representation of an active CDR */
672 struct cdr_object {
673         struct cdr_object_snapshot party_a;     /*!< The Party A information */
674         struct cdr_object_snapshot party_b;     /*!< The Party B information */
675         struct cdr_object_fn_table *fn_table;   /*!< The current virtual table */
676
677         enum ast_cdr_disposition disposition;   /*!< The disposition of the CDR */
678         struct timeval start;                   /*!< When this CDR was created */
679         struct timeval answer;                  /*!< Either when the channel was answered, or when the path between channels was established */
680         struct timeval end;                     /*!< When this CDR was finalized */
681         unsigned int sequence;                  /*!< A monotonically increasing number for each CDR */
682         struct ast_flags flags;                 /*!< Flags on the CDR */
683         AST_DECLARE_STRING_FIELDS(
684                 AST_STRING_FIELD(linkedid);         /*!< Linked ID. Cached here as it may change out from party A, which must be immutable */
685                 AST_STRING_FIELD(uniqueid);                     /*!< Unique id of party A. Cached here as it is the primary key of this CDR */
686                 AST_STRING_FIELD(name);             /*!< Channel name of party A. Cached here as the party A address may change */
687                 AST_STRING_FIELD(bridge);           /*!< The bridge the party A happens to be in. */
688                 AST_STRING_FIELD(appl);             /*!< The last accepted application party A was in */
689                 AST_STRING_FIELD(data);             /*!< The data for the last accepted application party A was in */
690         );
691         struct cdr_object *next;                /*!< The next CDR object in the chain */
692         struct cdr_object *last;                /*!< The last CDR object in the chain */
693 };
694
695 /*!
696  * \brief Copy variables from one list to another
697  * \param to_list destination
698  * \param from_list source
699  * \retval The number of copied variables
700  */
701 static int copy_variables(struct varshead *to_list, struct varshead *from_list)
702 {
703         struct ast_var_t *variables;
704         struct ast_var_t *newvariable;
705         const char *var;
706         const char *val;
707         int x = 0;
708
709         AST_LIST_TRAVERSE(from_list, variables, entries) {
710                 var = ast_var_name(variables);
711                 if (ast_strlen_zero(var)) {
712                         continue;
713                 }
714                 val = ast_var_value(variables);
715                 if (ast_strlen_zero(val)) {
716                         continue;
717                 }
718                 newvariable = ast_var_assign(var, val);
719                 if (newvariable) {
720                         AST_LIST_INSERT_HEAD(to_list, newvariable, entries);
721                         ++x;
722                 }
723         }
724
725         return x;
726 }
727
728 /*!
729  * \brief Delete all variables from a variable list
730  * \param headp The head pointer to the variable list to delete
731  */
732 static void free_variables(struct varshead *headp)
733 {
734         struct ast_var_t *vardata;
735
736         while ((vardata = AST_LIST_REMOVE_HEAD(headp, entries))) {
737                 ast_var_delete(vardata);
738         }
739 }
740
741 /*!
742  * \brief Copy a snapshot and its details
743  * \param dst The destination
744  * \param src The source
745  */
746 static void cdr_object_snapshot_copy(struct cdr_object_snapshot *dst, struct cdr_object_snapshot *src)
747 {
748         if (dst->snapshot) {
749                 ao2_t_ref(dst->snapshot, -1, "release old snapshot during copy");
750         }
751         dst->snapshot = src->snapshot;
752         ao2_t_ref(dst->snapshot, +1, "bump new snapshot during copy");
753         strcpy(dst->userfield, src->userfield);
754         dst->flags = src->flags;
755         copy_variables(&dst->variables, &src->variables);
756 }
757
758 /*!
759  * \brief Transition a \ref cdr_object to a new state
760  * \param cdr The \ref cdr_object to transition
761  * \param fn_table The \ref cdr_object_fn_table state to go to
762  */
763 static void cdr_object_transition_state(struct cdr_object *cdr, struct cdr_object_fn_table *fn_table)
764 {
765         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
766
767         CDR_DEBUG(mod_cfg, "%p - Transitioning CDR for %s from state %s to %s\n",
768                 cdr, cdr->party_a.snapshot->name,
769                 cdr->fn_table ? cdr->fn_table->name : "NONE", fn_table->name);
770         cdr->fn_table = fn_table;
771         if (cdr->fn_table->init_function) {
772                 cdr->fn_table->init_function(cdr);
773         }
774 }
775 /*! \internal
776  * \brief Hash function for containers of CDRs indexing by Party A uniqueid */
777 static int cdr_object_channel_hash_fn(const void *obj, const int flags)
778 {
779         const struct cdr_object *cdr;
780         const char *key;
781
782         switch (flags & (OBJ_POINTER | OBJ_KEY | OBJ_PARTIAL_KEY)) {
783         case OBJ_KEY:
784                 key = obj;
785                 break;
786         case OBJ_POINTER:
787                 cdr = obj;
788                 key = cdr->uniqueid;
789                 break;
790         default:
791                 ast_assert(0);
792                 return 0;
793         }
794         return ast_str_case_hash(key);
795 }
796
797 /*! \internal
798  * \brief Comparison function for containers of CDRs indexing by Party A uniqueid
799  */
800 static int cdr_object_channel_cmp_fn(void *obj, void *arg, int flags)
801 {
802     struct cdr_object *left = obj;
803     struct cdr_object *right = arg;
804     const char *right_key = arg;
805     int cmp;
806
807     switch (flags & (OBJ_POINTER | OBJ_KEY | OBJ_PARTIAL_KEY)) {
808     case OBJ_POINTER:
809         right_key = right->uniqueid;
810         /* Fall through */
811     case OBJ_KEY:
812         cmp = strcmp(left->uniqueid, right_key);
813         break;
814     case OBJ_PARTIAL_KEY:
815         /*
816          * We could also use a partial key struct containing a length
817          * so strlen() does not get called for every comparison instead.
818          */
819         cmp = strncmp(left->uniqueid, right_key, strlen(right_key));
820         break;
821     default:
822         /* Sort can only work on something with a full or partial key. */
823         ast_assert(0);
824         cmp = 0;
825         break;
826     }
827     return cmp ? 0 : CMP_MATCH;
828 }
829
830 /*!
831  * \brief \ref cdr_object Destructor
832  */
833 static void cdr_object_dtor(void *obj)
834 {
835         struct cdr_object *cdr = obj;
836         struct ast_var_t *it_var;
837
838         ao2_cleanup(cdr->party_a.snapshot);
839         ao2_cleanup(cdr->party_b.snapshot);
840         while ((it_var = AST_LIST_REMOVE_HEAD(&cdr->party_a.variables, entries))) {
841                 ast_var_delete(it_var);
842         }
843         while ((it_var = AST_LIST_REMOVE_HEAD(&cdr->party_b.variables, entries))) {
844                 ast_var_delete(it_var);
845         }
846         ast_string_field_free_memory(cdr);
847
848         ao2_cleanup(cdr->next);
849 }
850
851 /*!
852  * \brief \ref cdr_object constructor
853  * \param chan The \ref ast_channel_snapshot that is the CDR's Party A
854  *
855  * This implicitly sets the state of the newly created CDR to the Single state
856  * (\ref single_state_fn_table)
857  */
858 static struct cdr_object *cdr_object_alloc(struct ast_channel_snapshot *chan)
859 {
860         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
861         struct cdr_object *cdr;
862
863         ast_assert(chan != NULL);
864
865         cdr = ao2_alloc(sizeof(*cdr), cdr_object_dtor);
866         if (!cdr) {
867                 return NULL;
868         }
869         cdr->last = cdr;
870         if (ast_string_field_init(cdr, 64)) {
871                 ao2_cleanup(cdr);
872                 return NULL;
873         }
874         ast_string_field_set(cdr, uniqueid, chan->uniqueid);
875         ast_string_field_set(cdr, name, chan->name);
876         ast_string_field_set(cdr, linkedid, chan->linkedid);
877         cdr->disposition = AST_CDR_NULL;
878         cdr->sequence = ast_atomic_fetchadd_int(&global_cdr_sequence, +1);
879
880         cdr->party_a.snapshot = chan;
881         ao2_t_ref(cdr->party_a.snapshot, +1, "bump snapshot during CDR creation");
882
883         CDR_DEBUG(mod_cfg, "%p - Created CDR for channel %s\n", cdr, chan->name);
884
885         cdr_object_transition_state(cdr, &single_state_fn_table);
886
887         return cdr;
888 }
889
890 /*!
891  * \brief Create a new \ref cdr_object and append it to an existing chain
892  * \param cdr The \ref cdr_object to append to
893  */
894 static struct cdr_object *cdr_object_create_and_append(struct cdr_object *cdr)
895 {
896         struct cdr_object *new_cdr;
897         struct cdr_object *it_cdr;
898         struct cdr_object *cdr_last;
899
900         cdr_last = cdr->last;
901         new_cdr = cdr_object_alloc(cdr_last->party_a.snapshot);
902         if (!new_cdr) {
903                 return NULL;
904         }
905         new_cdr->disposition = AST_CDR_NULL;
906
907         /* Copy over the linkedid, as it may have changed */
908         ast_string_field_set(new_cdr, linkedid, cdr_last->linkedid);
909         ast_string_field_set(new_cdr, appl, cdr_last->appl);
910         ast_string_field_set(new_cdr, data, cdr_last->data);
911
912         /* Copy over other Party A information */
913         cdr_object_snapshot_copy(&new_cdr->party_a, &cdr_last->party_a);
914
915         /* Append the CDR to the end of the list */
916         for (it_cdr = cdr; it_cdr->next; it_cdr = it_cdr->next) {
917                 it_cdr->last = new_cdr;
918         }
919         it_cdr->last = new_cdr;
920         it_cdr->next = new_cdr;
921
922         return new_cdr;
923 }
924
925 /*!
926  * \brief Return whether or not a channel has changed its state in the dialplan, subject
927  * to endbeforehexten logic
928  *
929  * \param old_snapshot The previous state
930  * \param new_snapshot The new state
931  *
932  * \retval 0 if the state has not changed
933  * \retval 1 if the state changed
934  */
935 static int snapshot_cep_changed(struct ast_channel_snapshot *old_snapshot,
936         struct ast_channel_snapshot *new_snapshot)
937 {
938         RAII_VAR(struct module_config *, mod_cfg,
939                 ao2_global_obj_ref(module_configs), ao2_cleanup);
940
941         /* If we ignore hangup logic, don't indicate that we're executing anything new */
942         if (ast_test_flag(&mod_cfg->general->settings, CDR_END_BEFORE_H_EXTEN)
943                 && ast_test_flag(&new_snapshot->softhangup_flags, AST_SOFTHANGUP_HANGUP_EXEC)) {
944                 return 0;
945         }
946
947         /* When Party A is originated to an application and the application exits, the stack
948          * will attempt to clear the application and restore the dummy originate application
949          * of "AppDialX". Ignore application changes to AppDialX as a result.
950          */
951         if (strcmp(new_snapshot->appl, old_snapshot->appl) && strncasecmp(new_snapshot->appl, "appdial", 7)
952                 && (strcmp(new_snapshot->context, old_snapshot->context)
953                 || strcmp(new_snapshot->exten, old_snapshot->exten)
954                 || new_snapshot->priority != old_snapshot->priority)) {
955                 return 1;
956         }
957
958         return 0;
959 }
960
961 /*!
962  * \brief Return whether or not a \ref ast_channel_snapshot is for a channel
963  * that was created as the result of a dial operation
964  *
965  * \retval 0 the channel was not created as the result of a dial
966  * \retval 1 the channel was created as the result of a dial
967  */
968 static int snapshot_is_dialed(struct ast_channel_snapshot *snapshot)
969 {
970         return (ast_test_flag(&snapshot->flags, AST_FLAG_OUTGOING)
971                         && !(ast_test_flag(&snapshot->flags, AST_FLAG_ORIGINATED)));
972 }
973
974 /*!
975  * \brief Given two CDR snapshots, figure out who should be Party A for the
976  * resulting CDR
977  * \param left One of the snapshots
978  * \param right The other snapshot
979  * \retval The snapshot that won
980  */
981 static struct cdr_object_snapshot *cdr_object_pick_party_a(struct cdr_object_snapshot *left, struct cdr_object_snapshot *right)
982 {
983         /* Check whether or not the party is dialed. A dialed party is never the
984          * Party A with a party that was not dialed.
985          */
986         if (!snapshot_is_dialed(left->snapshot) && snapshot_is_dialed(right->snapshot)) {
987                 return left;
988         } else if (snapshot_is_dialed(left->snapshot) && !snapshot_is_dialed(right->snapshot)) {
989                 return right;
990         }
991
992         /* Try the Party A flag */
993         if (ast_test_flag(left, AST_CDR_FLAG_PARTY_A) && !ast_test_flag(right, AST_CDR_FLAG_PARTY_A)) {
994                 return left;
995         } else if (!ast_test_flag(right, AST_CDR_FLAG_PARTY_A) && ast_test_flag(right, AST_CDR_FLAG_PARTY_A)) {
996                 return right;
997         }
998
999         /* Neither party is dialed and neither has the Party A flag - defer to
1000          * creation time */
1001         if (left->snapshot->creationtime.tv_sec < right->snapshot->creationtime.tv_sec) {
1002                 return left;
1003         } else if (left->snapshot->creationtime.tv_sec > right->snapshot->creationtime.tv_sec) {
1004                 return right;
1005         } else if (left->snapshot->creationtime.tv_usec > right->snapshot->creationtime.tv_usec) {
1006                 return right;
1007         } else {
1008                 /* Okay, fine, take the left one */
1009                 return left;
1010         }
1011 }
1012
1013 /*!
1014  * Compute the duration for a \ref cdr_object
1015  */
1016 static long cdr_object_get_duration(struct cdr_object *cdr)
1017 {
1018         return (long)(ast_tvdiff_ms(ast_tvzero(cdr->end) ? ast_tvnow() : cdr->end, cdr->start) / 1000);
1019 }
1020
1021 /*!
1022  * \brief Compute the billsec for a \ref cdr_object
1023  */
1024 static long cdr_object_get_billsec(struct cdr_object *cdr)
1025 {
1026         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
1027         long int ms;
1028
1029         if (ast_tvzero(cdr->answer)) {
1030                 return 0;
1031         }
1032         ms = ast_tvdiff_ms(ast_tvzero(cdr->end) ? ast_tvnow() : cdr->end, cdr->answer);
1033         if (ast_test_flag(&mod_cfg->general->settings, CDR_INITIATED_SECONDS)
1034                 && (ms % 1000 >= 500)) {
1035                 ms = (ms / 1000) + 1;
1036         } else {
1037                 ms = ms / 1000;
1038         }
1039
1040         return ms;
1041 }
1042
1043 /*!
1044  * \internal
1045  * \brief Set a variable on a CDR object
1046  *
1047  * \param headp The header pointer to the variable to set
1048  * \param name The name of the variable
1049  * \param value The value of the variable
1050  */
1051 static void set_variable(struct varshead *headp, const char *name, const char *value)
1052 {
1053         struct ast_var_t *newvariable;
1054
1055         AST_LIST_TRAVERSE_SAFE_BEGIN(headp, newvariable, entries) {
1056                 if (!strcasecmp(ast_var_name(newvariable), name)) {
1057                         AST_LIST_REMOVE_CURRENT(entries);
1058                         ast_var_delete(newvariable);
1059                         break;
1060                 }
1061         }
1062         AST_LIST_TRAVERSE_SAFE_END;
1063
1064         if (value && (newvariable = ast_var_assign(name, value))) {
1065                 AST_LIST_INSERT_HEAD(headp, newvariable, entries);
1066         }
1067 }
1068
1069 /*!
1070  * \brief Create a chain of \ref ast_cdr objects from a chain of \ref cdr_object
1071  * suitable for consumption by the registered CDR backends
1072  * \param cdr The \ref cdr_object to convert to a public record
1073  * \retval A chain of \ref ast_cdr objects on success
1074  * \retval NULL on failure
1075  */
1076 static struct ast_cdr *cdr_object_create_public_records(struct cdr_object *cdr)
1077 {
1078         struct ast_cdr *pub_cdr = NULL, *cdr_prev = NULL;
1079         struct cdr_object *it_cdr;
1080         struct ast_var_t *it_var, *it_copy_var;
1081         struct ast_channel_snapshot *party_a;
1082         struct ast_channel_snapshot *party_b;
1083         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
1084
1085         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
1086                 struct ast_cdr *cdr_copy;
1087
1088                 /* Don't create records for CDRs where the party A was a dialed channel */
1089                 if (snapshot_is_dialed(it_cdr->party_a.snapshot) && !it_cdr->party_b.snapshot) {
1090                         CDR_DEBUG(mod_cfg, "%p - %s is dialed and has no Party B; discarding\n", it_cdr,
1091                                 it_cdr->party_a.snapshot->name);
1092                         continue;
1093                 }
1094
1095                 cdr_copy = ast_calloc(1, sizeof(*cdr_copy));
1096                 if (!cdr_copy) {
1097                         ast_free(pub_cdr);
1098                         return NULL;
1099                 }
1100
1101                 party_a = it_cdr->party_a.snapshot;
1102                 party_b = it_cdr->party_b.snapshot;
1103
1104                 /* Party A */
1105                 ast_assert(party_a != NULL);
1106                 ast_copy_string(cdr_copy->accountcode, party_a->accountcode, sizeof(cdr_copy->accountcode));
1107                 cdr_copy->amaflags = party_a->amaflags;
1108                 ast_copy_string(cdr_copy->channel, party_a->name, sizeof(cdr_copy->channel));
1109                 ast_callerid_merge(cdr_copy->clid, sizeof(cdr_copy->clid), party_a->caller_name, party_a->caller_number, "");
1110                 ast_copy_string(cdr_copy->src, party_a->caller_number, sizeof(cdr_copy->src));
1111                 ast_copy_string(cdr_copy->uniqueid, party_a->uniqueid, sizeof(cdr_copy->uniqueid));
1112                 ast_copy_string(cdr_copy->lastapp, it_cdr->appl, sizeof(cdr_copy->lastapp));
1113                 ast_copy_string(cdr_copy->lastdata, it_cdr->data, sizeof(cdr_copy->lastdata));
1114                 ast_copy_string(cdr_copy->dst, party_a->exten, sizeof(cdr_copy->dst));
1115                 ast_copy_string(cdr_copy->dcontext, party_a->context, sizeof(cdr_copy->dcontext));
1116
1117                 /* Party B */
1118                 if (party_b) {
1119                         ast_copy_string(cdr_copy->dstchannel, party_b->name, sizeof(cdr_copy->dstchannel));
1120                         ast_copy_string(cdr_copy->peeraccount, party_b->accountcode, sizeof(cdr_copy->peeraccount));
1121                         if (!ast_strlen_zero(it_cdr->party_b.userfield)) {
1122                                 snprintf(cdr_copy->userfield, sizeof(cdr_copy->userfield), "%s;%s", it_cdr->party_a.userfield, it_cdr->party_b.userfield);
1123                         }
1124                 }
1125                 if (ast_strlen_zero(cdr_copy->userfield) && !ast_strlen_zero(it_cdr->party_a.userfield)) {
1126                         ast_copy_string(cdr_copy->userfield, it_cdr->party_a.userfield, sizeof(cdr_copy->userfield));
1127                 }
1128
1129                 /* Timestamps/durations */
1130                 cdr_copy->start = it_cdr->start;
1131                 cdr_copy->answer = it_cdr->answer;
1132                 cdr_copy->end = it_cdr->end;
1133                 cdr_copy->billsec = cdr_object_get_billsec(it_cdr);
1134                 cdr_copy->duration = cdr_object_get_duration(it_cdr);
1135
1136                 /* Flags and IDs */
1137                 ast_copy_flags(cdr_copy, &it_cdr->flags, AST_FLAGS_ALL);
1138                 ast_copy_string(cdr_copy->linkedid, it_cdr->linkedid, sizeof(cdr_copy->linkedid));
1139                 cdr_copy->disposition = it_cdr->disposition;
1140                 cdr_copy->sequence = it_cdr->sequence;
1141
1142                 /* Variables */
1143                 copy_variables(&cdr_copy->varshead, &it_cdr->party_a.variables);
1144                 AST_LIST_TRAVERSE(&it_cdr->party_b.variables, it_var, entries) {
1145                         int found = 0;
1146                         struct ast_var_t *newvariable;
1147                         AST_LIST_TRAVERSE(&cdr_copy->varshead, it_copy_var, entries) {
1148                                 if (!strcasecmp(ast_var_name(it_var), ast_var_name(it_copy_var))) {
1149                                         found = 1;
1150                                         break;
1151                                 }
1152                         }
1153                         if (!found && (newvariable = ast_var_assign(ast_var_name(it_var), ast_var_value(it_var)))) {
1154                                 AST_LIST_INSERT_TAIL(&cdr_copy->varshead, newvariable, entries);
1155                         }
1156                 }
1157
1158                 if (!pub_cdr) {
1159                         pub_cdr = cdr_copy;
1160                         cdr_prev = pub_cdr;
1161                 } else {
1162                         cdr_prev->next = cdr_copy;
1163                         cdr_prev = cdr_copy;
1164                 }
1165         }
1166
1167         return pub_cdr;
1168 }
1169
1170 /*!
1171  * \brief Dispatch a CDR.
1172  * \param cdr The \ref cdr_object to dispatch
1173  *
1174  * This will create a \ref ast_cdr object and publish it to the various backends
1175  */
1176 static void cdr_object_dispatch(struct cdr_object *cdr)
1177 {
1178         RAII_VAR(struct module_config *, mod_cfg,
1179                         ao2_global_obj_ref(module_configs), ao2_cleanup);
1180         struct ast_cdr *pub_cdr;
1181
1182         CDR_DEBUG(mod_cfg, "%p - Dispatching CDR for Party A %s, Party B %s\n", cdr,
1183                         cdr->party_a.snapshot->name,
1184                         cdr->party_b.snapshot ? cdr->party_b.snapshot->name : "<none>");
1185         pub_cdr = cdr_object_create_public_records(cdr);
1186         cdr_detach(pub_cdr);
1187 }
1188
1189 /*!
1190  * \brief Set the disposition on a \ref cdr_object based on a hangupcause code
1191  * \param cdr The \ref cdr_object
1192  * \param hangupcause The Asterisk hangup cause code
1193  */
1194 static void cdr_object_set_disposition(struct cdr_object *cdr, int hangupcause)
1195 {
1196         RAII_VAR(struct module_config *, mod_cfg,
1197                         ao2_global_obj_ref(module_configs), ao2_cleanup);
1198
1199         /* Change the disposition based on the hang up cause */
1200         switch (hangupcause) {
1201         case AST_CAUSE_BUSY:
1202                 cdr->disposition = AST_CDR_BUSY;
1203                 break;
1204         case AST_CAUSE_CONGESTION:
1205                 if (!ast_test_flag(&mod_cfg->general->settings, CDR_CONGESTION)) {
1206                         cdr->disposition = AST_CDR_FAILED;
1207                 } else {
1208                         cdr->disposition = AST_CDR_CONGESTION;
1209                 }
1210                 break;
1211         case AST_CAUSE_NO_ROUTE_DESTINATION:
1212         case AST_CAUSE_UNREGISTERED:
1213                 cdr->disposition = AST_CDR_FAILED;
1214                 break;
1215         case AST_CAUSE_NORMAL_CLEARING:
1216         case AST_CAUSE_NO_ANSWER:
1217                 cdr->disposition = AST_CDR_NOANSWER;
1218                 break;
1219         default:
1220                 break;
1221         }
1222 }
1223
1224 /*!
1225  * \brief Finalize a CDR.
1226  *
1227  * This function is safe to call multiple times. Note that you can call this
1228  * explicitly before going to the finalized state if there's a chance the CDR
1229  * will be re-activated, in which case the \ref cdr_object's end time should be
1230  * cleared. This function is implicitly called when a CDR transitions to the
1231  * finalized state and right before it is dispatched
1232  *
1233  * \param cdr_object The CDR to finalize
1234  */
1235 static void cdr_object_finalize(struct cdr_object *cdr)
1236 {
1237         RAII_VAR(struct module_config *, mod_cfg,
1238                         ao2_global_obj_ref(module_configs), ao2_cleanup);
1239
1240         if (!ast_tvzero(cdr->end)) {
1241                 return;
1242         }
1243         cdr->end = ast_tvnow();
1244
1245         if (cdr->disposition == AST_CDR_NULL) {
1246                 if (!ast_tvzero(cdr->answer)) {
1247                         cdr->disposition = AST_CDR_ANSWERED;
1248                 } else if (cdr->party_a.snapshot->hangupcause) {
1249                         cdr_object_set_disposition(cdr, cdr->party_a.snapshot->hangupcause);
1250                 } else if (cdr->party_b.snapshot && cdr->party_b.snapshot->hangupcause) {
1251                         cdr_object_set_disposition(cdr, cdr->party_b.snapshot->hangupcause);
1252                 } else {
1253                         cdr->disposition = AST_CDR_FAILED;
1254                 }
1255         }
1256
1257         /* tv_usec is suseconds_t, which could be int or long */
1258         ast_debug(1, "Finalized CDR for %s - start %ld.%06ld answer %ld.%06ld end %ld.%06ld dispo %s\n",
1259                         cdr->party_a.snapshot->name,
1260                         cdr->start.tv_sec,
1261                         (long)cdr->start.tv_usec,
1262                         cdr->answer.tv_sec,
1263                         (long)cdr->answer.tv_usec,
1264                         cdr->end.tv_sec,
1265                         (long)cdr->end.tv_usec,
1266                         ast_cdr_disp2str(cdr->disposition));
1267 }
1268
1269 /*!
1270  * \brief Check to see if a CDR needs to move to the finalized state because
1271  * its Party A hungup.
1272  */
1273 static void cdr_object_check_party_a_hangup(struct cdr_object *cdr)
1274 {
1275         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
1276
1277         if (ast_test_flag(&mod_cfg->general->settings, CDR_END_BEFORE_H_EXTEN)
1278                 && ast_test_flag(&cdr->party_a.snapshot->softhangup_flags, AST_SOFTHANGUP_HANGUP_EXEC)) {
1279                 cdr_object_finalize(cdr);
1280         }
1281
1282         if (ast_test_flag(&cdr->party_a.snapshot->flags, AST_FLAG_DEAD)
1283                 && cdr->fn_table != &finalized_state_fn_table) {
1284                 cdr_object_transition_state(cdr, &finalized_state_fn_table);
1285         }
1286 }
1287
1288 /*!
1289  * \brief Check to see if a CDR needs to be answered based on its Party A.
1290  * Note that this is safe to call as much as you want - we won't answer twice
1291  */
1292 static void cdr_object_check_party_a_answer(struct cdr_object *cdr) {
1293         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
1294
1295         if (cdr->party_a.snapshot->state == AST_STATE_UP && ast_tvzero(cdr->answer)) {
1296                 cdr->answer = ast_tvnow();
1297                 /* tv_usec is suseconds_t, which could be int or long */
1298                 CDR_DEBUG(mod_cfg, "%p - Set answered time to %ld.%06ld\n", cdr,
1299                         cdr->answer.tv_sec,
1300                         (long)cdr->answer.tv_usec);
1301         }
1302 }
1303
1304 /* \brief Set Caller ID information on a CDR */
1305 static void cdr_object_update_cid(struct cdr_object_snapshot *old_snapshot, struct ast_channel_snapshot *new_snapshot)
1306 {
1307         if (!old_snapshot->snapshot) {
1308                 set_variable(&old_snapshot->variables, "dnid", new_snapshot->caller_dnid);
1309                 set_variable(&old_snapshot->variables, "callingsubaddr", new_snapshot->caller_subaddr);
1310                 set_variable(&old_snapshot->variables, "calledsubaddr", new_snapshot->dialed_subaddr);
1311                 return;
1312         }
1313         if (!strcmp(old_snapshot->snapshot->caller_dnid, new_snapshot->caller_dnid)) {
1314                 set_variable(&old_snapshot->variables, "dnid", new_snapshot->caller_dnid);
1315         }
1316         if (!strcmp(old_snapshot->snapshot->caller_subaddr, new_snapshot->caller_subaddr)) {
1317                 set_variable(&old_snapshot->variables, "callingsubaddr", new_snapshot->caller_subaddr);
1318         }
1319         if (!strcmp(old_snapshot->snapshot->dialed_subaddr, new_snapshot->dialed_subaddr)) {
1320                 set_variable(&old_snapshot->variables, "calledsubaddr", new_snapshot->dialed_subaddr);
1321         }
1322 }
1323
1324 /*!
1325  * \brief Swap an old \ref cdr_object_snapshot's \ref ast_channel_snapshot for
1326  * a new \ref ast_channel_snapshot
1327  * \param old_snapshot The old \ref cdr_object_snapshot
1328  * \param new_snapshot The new \ref ast_channel_snapshot for old_snapshot
1329  */
1330 static void cdr_object_swap_snapshot(struct cdr_object_snapshot *old_snapshot,
1331                 struct ast_channel_snapshot *new_snapshot)
1332 {
1333         cdr_object_update_cid(old_snapshot, new_snapshot);
1334         if (old_snapshot->snapshot) {
1335                 ao2_t_ref(old_snapshot->snapshot, -1, "Drop ref for swap");
1336         }
1337         ao2_t_ref(new_snapshot, +1, "Bump ref for swap");
1338         old_snapshot->snapshot = new_snapshot;
1339 }
1340
1341 /* BASE METHOD IMPLEMENTATIONS */
1342
1343 static int base_process_party_a(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot)
1344 {
1345         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
1346
1347         ast_assert(strcasecmp(snapshot->name, cdr->party_a.snapshot->name) == 0);
1348         cdr_object_swap_snapshot(&cdr->party_a, snapshot);
1349
1350         /* When Party A is originated to an application and the application exits, the stack
1351          * will attempt to clear the application and restore the dummy originate application
1352          * of "AppDialX". Prevent that, and any other application changes we might not want
1353          * here.
1354          */
1355         if (!ast_strlen_zero(snapshot->appl)
1356                         && (strncasecmp(snapshot->appl, "appdial", 7) || ast_strlen_zero(cdr->appl))
1357                         && !ast_test_flag(&cdr->flags, AST_CDR_LOCK_APP)) {
1358                 ast_string_field_set(cdr, appl, snapshot->appl);
1359                 ast_string_field_set(cdr, data, snapshot->data);
1360         }
1361
1362         ast_string_field_set(cdr, linkedid, snapshot->linkedid);
1363         cdr_object_check_party_a_answer(cdr);
1364         cdr_object_check_party_a_hangup(cdr);
1365
1366         return 0;
1367 }
1368
1369 static int base_process_bridge_leave(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel)
1370 {
1371         /* In general, most things shouldn't get a bridge leave */
1372         ast_assert(0);
1373         return 1;
1374 }
1375
1376 static int base_process_dial_end(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer, const char *dial_status)
1377 {
1378         /* In general, most things shouldn't get a dial end. */
1379         ast_assert(0);
1380         return 0;
1381 }
1382
1383 static enum process_bridge_enter_results base_process_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel)
1384 {
1385         /* Base process bridge enter simply indicates that we can't handle it */
1386         return BRIDGE_ENTER_NEED_CDR;
1387 }
1388
1389 static int base_process_parked_channel(struct cdr_object *cdr, struct ast_parked_call_payload *parking_info)
1390 {
1391         char park_info[128];
1392
1393         ast_assert(!strcasecmp(parking_info->parkee->name, cdr->party_a.snapshot->name));
1394
1395         /* Update Party A information regardless */
1396         cdr->fn_table->process_party_a(cdr, parking_info->parkee);
1397
1398         /* Fake out where we're parked */
1399         ast_string_field_set(cdr, appl, "Park");
1400         snprintf(park_info, sizeof(park_info), "%s:%u", parking_info->parkinglot, parking_info->parkingspace);
1401         ast_string_field_set(cdr, data, park_info);
1402
1403         /* Prevent any further changes to the App/Data fields for this record */
1404         ast_set_flag(&cdr->flags, AST_CDR_LOCK_APP);
1405
1406         return 0;
1407 }
1408
1409 /* SINGLE STATE */
1410
1411 static void single_state_init_function(struct cdr_object *cdr) {
1412         cdr->start = ast_tvnow();
1413         cdr_object_check_party_a_answer(cdr);
1414 }
1415
1416 static void single_state_process_party_b(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot)
1417 {
1418         /* This should never happen! */
1419         ast_assert(cdr->party_b.snapshot == NULL);
1420         ast_assert(0);
1421         return;
1422 }
1423
1424 static int single_state_process_dial_begin(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer)
1425 {
1426         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
1427
1428         if (caller && !strcasecmp(cdr->party_a.snapshot->name, caller->name)) {
1429                 cdr_object_swap_snapshot(&cdr->party_a, caller);
1430                 CDR_DEBUG(mod_cfg, "%p - Updated Party A %s snapshot\n", cdr,
1431                                 cdr->party_a.snapshot->name);
1432                 cdr_object_swap_snapshot(&cdr->party_b, peer);
1433                 CDR_DEBUG(mod_cfg, "%p - Updated Party B %s snapshot\n", cdr,
1434                                 cdr->party_b.snapshot->name);
1435         } else if (!strcasecmp(cdr->party_a.snapshot->name, peer->name)) {
1436                 /* We're the entity being dialed, i.e., outbound origination */
1437                 cdr_object_swap_snapshot(&cdr->party_a, peer);
1438                 CDR_DEBUG(mod_cfg, "%p - Updated Party A %s snapshot\n", cdr,
1439                                 cdr->party_a.snapshot->name);
1440         }
1441
1442         cdr_object_transition_state(cdr, &dial_state_fn_table);
1443         return 0;
1444 }
1445
1446 /*!
1447  * \brief Handle a comparison between our \ref cdr_object and a \ref cdr_object
1448  * already in the bridge while in the Single state. The goal of this is to find
1449  * a Party B for our CDR.
1450  *
1451  * \param cdr Our \ref cdr_object in the Single state
1452  * \param cand_cdr The \ref cdr_object already in the Bridge state
1453  *
1454  * \retval 0 The cand_cdr had a Party A or Party B that we could use as our
1455  * Party B
1456  * \retval 1 No party in the cand_cdr could be used as our Party B
1457  */
1458 static int single_state_bridge_enter_comparison(struct cdr_object *cdr,
1459                 struct cdr_object *cand_cdr)
1460 {
1461         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
1462         struct cdr_object_snapshot *party_a;
1463
1464         /* Don't match on ourselves */
1465         if (!strcasecmp(cdr->party_a.snapshot->name, cand_cdr->party_a.snapshot->name)) {
1466                 return 1;
1467         }
1468
1469         /* Try the candidate CDR's Party A first */
1470         party_a = cdr_object_pick_party_a(&cdr->party_a, &cand_cdr->party_a);
1471         if (!strcasecmp(party_a->snapshot->name, cdr->party_a.snapshot->name)) {
1472                 CDR_DEBUG(mod_cfg, "%p - Party A %s has new Party B %s\n",
1473                         cdr, cdr->party_a.snapshot->name, cand_cdr->party_a.snapshot->name);
1474                 cdr_object_snapshot_copy(&cdr->party_b, &cand_cdr->party_a);
1475                 if (!cand_cdr->party_b.snapshot) {
1476                         /* We just stole them - finalize their CDR. Note that this won't
1477                          * transition their state, it just sets the end time and the
1478                          * disposition - if we need to re-activate them later, we can.
1479                          */
1480                         cdr_object_finalize(cand_cdr);
1481                 }
1482                 return 0;
1483         }
1484
1485         /* Try their Party B, unless it's us */
1486         if (!cand_cdr->party_b.snapshot
1487                 || !strcasecmp(cdr->party_a.snapshot->name, cand_cdr->party_b.snapshot->name)) {
1488                 return 1;
1489         }
1490         party_a = cdr_object_pick_party_a(&cdr->party_a, &cand_cdr->party_b);
1491         if (!strcasecmp(party_a->snapshot->name, cdr->party_a.snapshot->name)) {
1492                 CDR_DEBUG(mod_cfg, "%p - Party A %s has new Party B %s\n",
1493                         cdr, cdr->party_a.snapshot->name, cand_cdr->party_b.snapshot->name);
1494                 cdr_object_snapshot_copy(&cdr->party_b, &cand_cdr->party_b);
1495                 return 0;
1496         }
1497
1498         return 1;
1499 }
1500
1501 static enum process_bridge_enter_results single_state_process_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel)
1502 {
1503         struct ao2_iterator it_cdrs;
1504         char *channel_id;
1505         int success = 0;
1506
1507         ast_string_field_set(cdr, bridge, bridge->uniqueid);
1508
1509         if (ao2_container_count(bridge->channels) == 1) {
1510                 /* No one in the bridge yet but us! */
1511                 cdr_object_transition_state(cdr, &bridge_state_fn_table);
1512                 return BRIDGE_ENTER_ONLY_PARTY;
1513         }
1514
1515         for (it_cdrs = ao2_iterator_init(bridge->channels, 0);
1516                 !success && (channel_id = ao2_iterator_next(&it_cdrs));
1517                 ao2_ref(channel_id, -1)) {
1518                 RAII_VAR(struct cdr_object *, cand_cdr_master,
1519                         ao2_find(active_cdrs_by_channel, channel_id, OBJ_KEY),
1520                         ao2_cleanup);
1521                 struct cdr_object *cand_cdr;
1522
1523                 if (!cand_cdr_master) {
1524                         continue;
1525                 }
1526
1527                 ao2_lock(cand_cdr_master);
1528                 for (cand_cdr = cand_cdr_master; cand_cdr; cand_cdr = cand_cdr->next) {
1529                         /* Skip any records that are not in a bridge or in this bridge.
1530                          * I'm not sure how that would happen, but it pays to be careful. */
1531                         if (cand_cdr->fn_table != &bridge_state_fn_table ||
1532                                         strcmp(cdr->bridge, cand_cdr->bridge)) {
1533                                 continue;
1534                         }
1535
1536                         if (single_state_bridge_enter_comparison(cdr, cand_cdr)) {
1537                                 continue;
1538                         }
1539                         /* We successfully got a party B - break out */
1540                         success = 1;
1541                         break;
1542                 }
1543                 ao2_unlock(cand_cdr_master);
1544         }
1545         ao2_iterator_destroy(&it_cdrs);
1546
1547         /* We always transition state, even if we didn't get a peer */
1548         cdr_object_transition_state(cdr, &bridge_state_fn_table);
1549
1550         /* Success implies that we have a Party B */
1551         if (success) {
1552                 return BRIDGE_ENTER_OBTAINED_PARTY_B;
1553         }
1554
1555         return BRIDGE_ENTER_NO_PARTY_B;
1556 }
1557
1558 static int single_state_process_parking_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel)
1559 {
1560         cdr_object_transition_state(cdr, &parked_state_fn_table);
1561         return 0;
1562 }
1563
1564
1565 /* DIAL STATE */
1566
1567 static void dial_state_process_party_b(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot)
1568 {
1569         ast_assert(snapshot != NULL);
1570
1571         if (!cdr->party_b.snapshot
1572                 || strcasecmp(cdr->party_b.snapshot->name, snapshot->name)) {
1573                 return;
1574         }
1575         cdr_object_swap_snapshot(&cdr->party_b, snapshot);
1576
1577         /* If party B hangs up, finalize this CDR */
1578         if (ast_test_flag(&cdr->party_b.snapshot->flags, AST_FLAG_DEAD)) {
1579                 cdr_object_transition_state(cdr, &finalized_state_fn_table);
1580         }
1581 }
1582
1583 static int dial_state_process_dial_begin(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer)
1584 {
1585         /* Don't process a begin dial here. A party A already in the dial state will
1586          * who receives a dial begin for something else will be handled by the
1587          * message router callback and will add a new CDR for the party A */
1588         return 1;
1589 }
1590
1591 /*!
1592  * \internal
1593  * \brief Convert a dial status to a CDR disposition
1594  */
1595 static enum ast_cdr_disposition dial_status_to_disposition(const char *dial_status)
1596 {
1597         RAII_VAR(struct module_config *, mod_cfg,
1598                 ao2_global_obj_ref(module_configs), ao2_cleanup);
1599
1600         if (!strcmp(dial_status, "ANSWER")) {
1601                 return AST_CDR_ANSWERED;
1602         } else if (!strcmp(dial_status, "BUSY")) {
1603                 return AST_CDR_BUSY;
1604         } else if (!strcmp(dial_status, "CANCEL") || !strcmp(dial_status, "NOANSWER")) {
1605                 return AST_CDR_NOANSWER;
1606         } else if (!strcmp(dial_status, "CONGESTION")) {
1607                 if (!ast_test_flag(&mod_cfg->general->settings, CDR_CONGESTION)) {
1608                         return AST_CDR_FAILED;
1609                 } else {
1610                         return AST_CDR_CONGESTION;
1611                 }
1612         } else if (!strcmp(dial_status, "FAILED")) {
1613                 return AST_CDR_FAILED;
1614         }
1615         return AST_CDR_FAILED;
1616 }
1617
1618 static int dial_state_process_dial_end(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer, const char *dial_status)
1619 {
1620         RAII_VAR(struct module_config *, mod_cfg,
1621                         ao2_global_obj_ref(module_configs), ao2_cleanup);
1622         struct ast_channel_snapshot *party_a;
1623
1624         if (caller) {
1625                 party_a = caller;
1626         } else {
1627                 party_a = peer;
1628         }
1629         ast_assert(!strcasecmp(cdr->party_a.snapshot->name, party_a->name));
1630         cdr_object_swap_snapshot(&cdr->party_a, party_a);
1631
1632         if (cdr->party_b.snapshot) {
1633                 if (strcasecmp(cdr->party_b.snapshot->name, peer->name)) {
1634                         /* Not the status for this CDR - defer back to the message router */
1635                         return 1;
1636                 }
1637                 cdr_object_swap_snapshot(&cdr->party_b, peer);
1638         }
1639
1640         /* Set the disposition based on the dial string. */
1641         cdr->disposition = dial_status_to_disposition(dial_status);
1642         if (cdr->disposition == AST_CDR_ANSWERED) {
1643                 /* Switch to dial pending to wait and see what the caller does */
1644                 cdr_object_transition_state(cdr, &dialed_pending_state_fn_table);
1645         } else {
1646                 cdr_object_transition_state(cdr, &finalized_state_fn_table);
1647         }
1648
1649         return 0;
1650 }
1651
1652 static enum process_bridge_enter_results dial_state_process_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel)
1653 {
1654         struct ao2_iterator it_cdrs;
1655         char *channel_id;
1656         int success = 0;
1657
1658         ast_string_field_set(cdr, bridge, bridge->uniqueid);
1659
1660         /* Get parties in the bridge */
1661         if (ao2_container_count(bridge->channels) == 1) {
1662                 /* No one in the bridge yet but us! */
1663                 cdr_object_transition_state(cdr, &bridge_state_fn_table);
1664                 return BRIDGE_ENTER_ONLY_PARTY;
1665         }
1666
1667         for (it_cdrs = ao2_iterator_init(bridge->channels, 0);
1668                 !success && (channel_id = ao2_iterator_next(&it_cdrs));
1669                 ao2_ref(channel_id, -1)) {
1670                 RAII_VAR(struct cdr_object *, cand_cdr_master,
1671                         ao2_find(active_cdrs_by_channel, channel_id, OBJ_KEY),
1672                         ao2_cleanup);
1673                 struct cdr_object *cand_cdr;
1674
1675                 if (!cand_cdr_master) {
1676                         continue;
1677                 }
1678
1679                 ao2_lock(cand_cdr_master);
1680                 for (cand_cdr = cand_cdr_master; cand_cdr; cand_cdr = cand_cdr->next) {
1681                         /* Skip any records that are not in a bridge or in this bridge.
1682                          * I'm not sure how that would happen, but it pays to be careful. */
1683                         if (cand_cdr->fn_table != &bridge_state_fn_table ||
1684                                         strcmp(cdr->bridge, cand_cdr->bridge)) {
1685                                 continue;
1686                         }
1687
1688                         /* If we don't have a Party B (originated channel), skip it */
1689                         if (!cdr->party_b.snapshot) {
1690                                 continue;
1691                         }
1692
1693                         /* Skip any records that aren't our Party B */
1694                         if (strcasecmp(cdr->party_b.snapshot->name, cand_cdr->party_a.snapshot->name)) {
1695                                 continue;
1696                         }
1697                         cdr_object_snapshot_copy(&cdr->party_b, &cand_cdr->party_a);
1698                         /* If they have a Party B, they joined up with someone else as their
1699                          * Party A. Don't finalize them as they're active. Otherwise, we
1700                          * have stolen them so they need to be finalized.
1701                          */
1702                         if (!cand_cdr->party_b.snapshot) {
1703                                 cdr_object_finalize(cand_cdr);
1704                         }
1705                         success = 1;
1706                         break;
1707                 }
1708                 ao2_unlock(cand_cdr_master);
1709         }
1710         ao2_iterator_destroy(&it_cdrs);
1711
1712         /* We always transition state, even if we didn't get a peer */
1713         cdr_object_transition_state(cdr, &bridge_state_fn_table);
1714
1715         /* Success implies that we have a Party B */
1716         if (success) {
1717                 return BRIDGE_ENTER_OBTAINED_PARTY_B;
1718         }
1719         return BRIDGE_ENTER_NO_PARTY_B;
1720 }
1721
1722 /* DIALED PENDING STATE */
1723
1724 static int dialed_pending_state_process_party_a(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot)
1725 {
1726         /* If we get a CEP change, we're executing dialplan. If we have a Party B
1727          * that means we need a new CDR; otherwise, switch us over to single.
1728          */
1729         if (snapshot_cep_changed(cdr->party_a.snapshot, snapshot)) {
1730                 if (cdr->party_b.snapshot) {
1731                         cdr_object_transition_state(cdr, &finalized_state_fn_table);
1732                         cdr->fn_table->process_party_a(cdr, snapshot);
1733                         return 1;
1734                 } else {
1735                         cdr_object_transition_state(cdr, &single_state_fn_table);
1736                         cdr->fn_table->process_party_a(cdr, snapshot);
1737                         return 0;
1738                 }
1739         }
1740         base_process_party_a(cdr, snapshot);
1741         return 0;
1742 }
1743
1744 static enum process_bridge_enter_results dialed_pending_state_process_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel)
1745 {
1746         cdr_object_transition_state(cdr, &dial_state_fn_table);
1747         return cdr->fn_table->process_bridge_enter(cdr, bridge, channel);
1748 }
1749
1750 static int dialed_pending_state_process_parking_bridge_enter(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel)
1751 {
1752         if (cdr->party_b.snapshot) {
1753                 /* We can't handle this as we have a Party B - ask for a new one */
1754                 return 1;
1755         }
1756         cdr_object_transition_state(cdr, &parked_state_fn_table);
1757         return 0;
1758 }
1759
1760 static int dialed_pending_state_process_dial_begin(struct cdr_object *cdr, struct ast_channel_snapshot *caller, struct ast_channel_snapshot *peer)
1761 {
1762         cdr_object_transition_state(cdr, &finalized_state_fn_table);
1763
1764         /* Ask for a new CDR */
1765         return 1;
1766 }
1767
1768 /* BRIDGE STATE */
1769
1770 static void bridge_state_process_party_b(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot)
1771 {
1772         if (!cdr->party_b.snapshot
1773                 || strcasecmp(cdr->party_b.snapshot->name, snapshot->name)) {
1774                 return;
1775         }
1776         cdr_object_swap_snapshot(&cdr->party_b, snapshot);
1777
1778         /* If party B hangs up, finalize this CDR */
1779         if (ast_test_flag(&cdr->party_b.snapshot->flags, AST_FLAG_DEAD)) {
1780                 cdr_object_transition_state(cdr, &finalized_state_fn_table);
1781         }
1782 }
1783
1784 static int bridge_state_process_bridge_leave(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel)
1785 {
1786         if (strcmp(cdr->bridge, bridge->uniqueid)) {
1787                 return 1;
1788         }
1789         if (strcasecmp(cdr->party_a.snapshot->name, channel->name)
1790                 && cdr->party_b.snapshot
1791                 && strcasecmp(cdr->party_b.snapshot->name, channel->name)) {
1792                 return 1;
1793         }
1794         cdr_object_transition_state(cdr, &finalized_state_fn_table);
1795
1796         return 0;
1797 }
1798
1799 /* PARKED STATE */
1800
1801 static int parked_state_process_bridge_leave(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge, struct ast_channel_snapshot *channel)
1802 {
1803         if (strcasecmp(cdr->party_a.snapshot->name, channel->name)) {
1804                 return 1;
1805         }
1806         cdr_object_transition_state(cdr, &finalized_state_fn_table);
1807
1808         return 0;
1809 }
1810
1811 /* FINALIZED STATE */
1812
1813 static void finalized_state_init_function(struct cdr_object *cdr)
1814 {
1815         cdr_object_finalize(cdr);
1816 }
1817
1818 static int finalized_state_process_party_a(struct cdr_object *cdr, struct ast_channel_snapshot *snapshot)
1819 {
1820         RAII_VAR(struct module_config *, mod_cfg,
1821                 ao2_global_obj_ref(module_configs), ao2_cleanup);
1822
1823         /* If we ignore hangup logic, indicate that we don't need a new CDR */
1824         if (ast_test_flag(&mod_cfg->general->settings, CDR_END_BEFORE_H_EXTEN)
1825                 && ast_test_flag(&snapshot->softhangup_flags, AST_SOFTHANGUP_HANGUP_EXEC)) {
1826                 return 0;
1827         }
1828
1829         /* Indicate that, if possible, we should get a new CDR */
1830         return 1;
1831 }
1832
1833 /* TOPIC ROUTER CALLBACKS */
1834
1835 /*!
1836  * \brief Handler for Stasis-Core dial messages
1837  * \param data Passed on
1838  * \param sub The stasis subscription for this message callback
1839  * \param topic The topic this message was published for
1840  * \param message The message
1841  */
1842 static void handle_dial_message(void *data, struct stasis_subscription *sub, struct stasis_topic *topic, struct stasis_message *message)
1843 {
1844         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
1845         RAII_VAR(struct cdr_object *, cdr, NULL, ao2_cleanup);
1846         struct ast_multi_channel_blob *payload = stasis_message_data(message);
1847         struct ast_channel_snapshot *caller;
1848         struct ast_channel_snapshot *peer;
1849         struct cdr_object *it_cdr;
1850         struct ast_json *dial_status_blob;
1851         const char *dial_status = NULL;
1852         int res = 1;
1853
1854         caller = ast_multi_channel_blob_get_channel(payload, "caller");
1855         peer = ast_multi_channel_blob_get_channel(payload, "peer");
1856         if (!peer && !caller) {
1857                 return;
1858         }
1859         dial_status_blob = ast_json_object_get(ast_multi_channel_blob_get_json(payload), "dialstatus");
1860         if (dial_status_blob) {
1861                 dial_status = ast_json_string_get(dial_status_blob);
1862         }
1863
1864         CDR_DEBUG(mod_cfg, "Dial %s message for %s, %s: %u.%08u\n",
1865                         ast_strlen_zero(dial_status) ? "Begin" : "End",
1866                         caller ? caller->name : "(none)",
1867                         peer ? peer->name : "(none)",
1868                         (unsigned int)stasis_message_timestamp(message)->tv_sec,
1869                         (unsigned int)stasis_message_timestamp(message)->tv_usec);
1870
1871         /* Figure out who is running this show */
1872         if (caller) {
1873                 cdr = ao2_find(active_cdrs_by_channel, caller->uniqueid, OBJ_KEY);
1874         } else {
1875                 cdr = ao2_find(active_cdrs_by_channel, peer->uniqueid, OBJ_KEY);
1876         }
1877
1878         if (!cdr) {
1879                 ast_log(AST_LOG_WARNING, "No CDR for channel %s\n", caller ? caller->name : peer->name);
1880                 return;
1881         }
1882
1883         ao2_lock(cdr);
1884         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
1885                 if (ast_strlen_zero(dial_status)) {
1886                         if (!it_cdr->fn_table->process_dial_begin) {
1887                                 continue;
1888                         }
1889                         CDR_DEBUG(mod_cfg, "%p - Processing Dial Begin message for channel %s, peer %s\n",
1890                                         cdr,
1891                                         caller ? caller->name : "(none)",
1892                                         peer ? peer->name : "(none)");
1893                         res &= it_cdr->fn_table->process_dial_begin(it_cdr,
1894                                         caller,
1895                                         peer);
1896                 } else {
1897                         if (!it_cdr->fn_table->process_dial_end) {
1898                                 continue;
1899                         }
1900                         CDR_DEBUG(mod_cfg, "%p - Processing Dial End message for channel %s, peer %s\n",
1901                                         cdr,
1902                                         caller ? caller->name : "(none)",
1903                                         peer ? peer->name : "(none)");
1904                         it_cdr->fn_table->process_dial_end(it_cdr,
1905                                         caller,
1906                                         peer,
1907                                         dial_status);
1908                 }
1909         }
1910
1911         /* If no CDR handled a dial begin message, make a new one */
1912         if (res && ast_strlen_zero(dial_status)) {
1913                 struct cdr_object *new_cdr;
1914
1915                 new_cdr = cdr_object_create_and_append(cdr);
1916                 if (!new_cdr) {
1917                         return;
1918                 }
1919                 new_cdr->fn_table->process_dial_begin(new_cdr,
1920                                 caller,
1921                                 peer);
1922         }
1923         ao2_unlock(cdr);
1924 }
1925
1926 static int cdr_object_finalize_party_b(void *obj, void *arg, int flags)
1927 {
1928         struct cdr_object *cdr = obj;
1929         struct ast_channel_snapshot *party_b = arg;
1930         struct cdr_object *it_cdr;
1931         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
1932                 if (it_cdr->party_b.snapshot
1933                         && !strcasecmp(it_cdr->party_b.snapshot->name, party_b->name)) {
1934                         /* Don't transition to the finalized state - let the Party A do
1935                          * that when its ready
1936                          */
1937                         cdr_object_finalize(it_cdr);
1938                 }
1939         }
1940         return 0;
1941 }
1942
1943 static int cdr_object_update_party_b(void *obj, void *arg, int flags)
1944 {
1945         struct cdr_object *cdr = obj;
1946         struct ast_channel_snapshot *party_b = arg;
1947         struct cdr_object *it_cdr;
1948         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
1949                 if (!it_cdr->fn_table->process_party_b) {
1950                         continue;
1951                 }
1952                 if (it_cdr->party_b.snapshot
1953                         && !strcasecmp(it_cdr->party_b.snapshot->name, party_b->name)) {
1954                         it_cdr->fn_table->process_party_b(it_cdr, party_b);
1955                 }
1956         }
1957         return 0;
1958 }
1959
1960 /*!
1961  * \internal
1962  * \brief Filter channel snapshots by technology
1963  */
1964 static int filter_channel_snapshot(struct ast_channel_snapshot *snapshot)
1965 {
1966         return snapshot->tech_properties & AST_CHAN_TP_INTERNAL;
1967 }
1968
1969 /*!
1970  * \internal
1971  * \brief Filter a channel cache update
1972  */
1973 static int filter_channel_cache_message(struct ast_channel_snapshot *old_snapshot,
1974                 struct ast_channel_snapshot *new_snapshot)
1975 {
1976         int ret = 0;
1977
1978         /* Drop cache updates from certain channel technologies */
1979         if (old_snapshot) {
1980                 ret |= filter_channel_snapshot(old_snapshot);
1981         }
1982         if (new_snapshot) {
1983                 ret |= filter_channel_snapshot(new_snapshot);
1984         }
1985
1986         return ret;
1987 }
1988
1989 /*! \brief Determine if we need to add a new CDR based on snapshots */
1990 static int check_new_cdr_needed(struct ast_channel_snapshot *old_snapshot,
1991                 struct ast_channel_snapshot *new_snapshot)
1992 {
1993         RAII_VAR(struct module_config *, mod_cfg,
1994                         ao2_global_obj_ref(module_configs), ao2_cleanup);
1995
1996         if (!new_snapshot) {
1997                 return 0;
1998         }
1999
2000         if (ast_test_flag(&new_snapshot->flags, AST_FLAG_DEAD)) {
2001                 return 0;
2002         }
2003
2004         /* Auto-fall through will increment the priority but have no application */
2005         if (ast_strlen_zero(new_snapshot->appl)) {
2006                 return 0;
2007         }
2008
2009         if (old_snapshot && !snapshot_cep_changed(old_snapshot, new_snapshot)) {
2010                 return 0;
2011         }
2012
2013         return 1;
2014 }
2015
2016 /*!
2017  * \brief Handler for Stasis-Core channel cache update messages
2018  * \param data Passed on
2019  * \param sub The stasis subscription for this message callback
2020  * \param topic The topic this message was published for
2021  * \param message The message
2022  */
2023 static void handle_channel_cache_message(void *data, struct stasis_subscription *sub, struct stasis_topic *topic, struct stasis_message *message)
2024 {
2025         RAII_VAR(struct cdr_object *, cdr, NULL, ao2_cleanup);
2026         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
2027         struct stasis_cache_update *update = stasis_message_data(message);
2028         struct ast_channel_snapshot *old_snapshot;
2029         struct ast_channel_snapshot *new_snapshot;
2030         const char *uniqueid;
2031         const char *name;
2032         struct cdr_object *it_cdr;
2033
2034         ast_assert(update != NULL);
2035         ast_assert(ast_channel_snapshot_type() == update->type);
2036
2037         old_snapshot = stasis_message_data(update->old_snapshot);
2038         new_snapshot = stasis_message_data(update->new_snapshot);
2039         uniqueid = new_snapshot ? new_snapshot->uniqueid : old_snapshot->uniqueid;
2040         name = new_snapshot ? new_snapshot->name : old_snapshot->name;
2041
2042         if (filter_channel_cache_message(old_snapshot, new_snapshot)) {
2043                 return;
2044         }
2045
2046         if (new_snapshot && !old_snapshot) {
2047                 cdr = cdr_object_alloc(new_snapshot);
2048                 if (!cdr) {
2049                         return;
2050                 }
2051                 ao2_link(active_cdrs_by_channel, cdr);
2052         }
2053
2054         /* Handle Party A */
2055         if (!cdr) {
2056                 cdr = ao2_find(active_cdrs_by_channel, uniqueid, OBJ_KEY);
2057         }
2058         if (!cdr) {
2059                 ast_log(AST_LOG_WARNING, "No CDR for channel %s\n", name);
2060         } else {
2061                 ao2_lock(cdr);
2062                 if (new_snapshot) {
2063                         int all_reject = 1;
2064                         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
2065                                 if (!it_cdr->fn_table->process_party_a) {
2066                                         continue;
2067                                 }
2068                                 all_reject &= it_cdr->fn_table->process_party_a(it_cdr, new_snapshot);
2069                         }
2070                         if (all_reject && check_new_cdr_needed(old_snapshot, new_snapshot)) {
2071                                 /* We're not hung up and we have a new snapshot - we need a new CDR */
2072                                 struct cdr_object *new_cdr;
2073                                 new_cdr = cdr_object_create_and_append(cdr);
2074                                 if (new_cdr) {
2075                                         new_cdr->fn_table->process_party_a(new_cdr, new_snapshot);
2076                                 }
2077                         }
2078                 } else {
2079                         CDR_DEBUG(mod_cfg, "%p - Beginning finalize/dispatch for %s\n", cdr, old_snapshot->name);
2080                         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
2081                                 cdr_object_finalize(it_cdr);
2082                         }
2083                         cdr_object_dispatch(cdr);
2084                         ao2_unlink(active_cdrs_by_channel, cdr);
2085                 }
2086                 ao2_unlock(cdr);
2087         }
2088
2089         /* Handle Party B */
2090         if (new_snapshot) {
2091                 ao2_callback(active_cdrs_by_channel, OBJ_NODATA, cdr_object_update_party_b,
2092                         new_snapshot);
2093         } else {
2094                 ao2_callback(active_cdrs_by_channel, OBJ_NODATA, cdr_object_finalize_party_b,
2095                         old_snapshot);
2096         }
2097
2098 }
2099
2100 struct bridge_leave_data {
2101         struct ast_bridge_snapshot *bridge;
2102         struct ast_channel_snapshot *channel;
2103 };
2104
2105 /*! \brief Callback used to notify CDRs of a Party B leaving the bridge */
2106 static int cdr_object_party_b_left_bridge_cb(void *obj, void *arg, int flags)
2107 {
2108         struct cdr_object *cdr = obj;
2109         struct bridge_leave_data *leave_data = arg;
2110         struct cdr_object *it_cdr;
2111
2112         if (strcmp(cdr->bridge, leave_data->bridge->uniqueid)) {
2113                 return 0;
2114         }
2115         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
2116                 if (it_cdr->fn_table != &bridge_state_fn_table) {
2117                         continue;
2118                 }
2119                 if (!it_cdr->party_b.snapshot) {
2120                         continue;
2121                 }
2122                 if (strcasecmp(it_cdr->party_b.snapshot->name, leave_data->channel->name)) {
2123                         continue;
2124                 }
2125                 /* It is our Party B, in our bridge. Set the end time and let the handler
2126                  * transition our CDR appropriately when we leave the bridge.
2127                  */
2128                 cdr_object_finalize(it_cdr);
2129         }
2130         return 0;
2131 }
2132
2133 /*! \brief Filter bridge messages based on bridge technology */
2134 static int filter_bridge_messages(struct ast_bridge_snapshot *bridge)
2135 {
2136         /* Ignore holding bridge technology messages. We treat this simply as an application
2137          * that a channel enters into.
2138          */
2139         if (!strcmp(bridge->technology, "holding_bridge") && strcmp(bridge->subclass, "parking")) {
2140                 return 1;
2141         }
2142         return 0;
2143 }
2144
2145 /*!
2146  * \brief Handler for when a channel leaves a bridge
2147  * \param data Passed on
2148  * \param sub The stasis subscription for this message callback
2149  * \param topic The topic this message was published for
2150  * \param message The message - hopefully a bridge one!
2151  */
2152 static void handle_bridge_leave_message(void *data, struct stasis_subscription *sub,
2153                 struct stasis_topic *topic, struct stasis_message *message)
2154 {
2155         struct ast_bridge_blob *update = stasis_message_data(message);
2156         struct ast_bridge_snapshot *bridge = update->bridge;
2157         struct ast_channel_snapshot *channel = update->channel;
2158         RAII_VAR(struct module_config *, mod_cfg,
2159                         ao2_global_obj_ref(module_configs), ao2_cleanup);
2160         RAII_VAR(struct cdr_object *, cdr,
2161                         ao2_find(active_cdrs_by_channel, channel->uniqueid, OBJ_KEY),
2162                         ao2_cleanup);
2163         struct cdr_object *it_cdr;
2164         struct bridge_leave_data leave_data = {
2165                 .bridge = bridge,
2166                 .channel = channel,
2167         };
2168         int left_bridge = 0;
2169
2170         if (filter_bridge_messages(bridge)) {
2171                 return;
2172         }
2173
2174         CDR_DEBUG(mod_cfg, "Bridge Leave message for %s: %u.%08u\n",
2175                         channel->name,
2176                         (unsigned int)stasis_message_timestamp(message)->tv_sec,
2177                         (unsigned int)stasis_message_timestamp(message)->tv_usec);
2178
2179         if (!cdr) {
2180                 ast_log(AST_LOG_WARNING, "No CDR for channel %s\n", channel->name);
2181                 return;
2182         }
2183
2184         /* Party A */
2185         ao2_lock(cdr);
2186         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
2187                 if (!it_cdr->fn_table->process_bridge_leave) {
2188                         continue;
2189                 }
2190                 CDR_DEBUG(mod_cfg, "%p - Processing Bridge Leave for %s\n",
2191                                 it_cdr, channel->name);
2192                 if (!it_cdr->fn_table->process_bridge_leave(it_cdr, bridge, channel)) {
2193                         ast_string_field_set(it_cdr, bridge, "");
2194                         left_bridge = 1;
2195                 }
2196         }
2197         if (!left_bridge) {
2198                 ao2_unlock(cdr);
2199                 return;
2200         }
2201         ao2_unlock(cdr);
2202
2203         if (strcmp(bridge->subclass, "parking")) {
2204                 /* Party B */
2205                 ao2_callback(active_cdrs_by_channel, OBJ_NODATA,
2206                                 cdr_object_party_b_left_bridge_cb,
2207                                 &leave_data);
2208         }
2209 }
2210
2211 /*!
2212  * \internal
2213  * \brief Create a new CDR, append it to an existing CDR, and update its snapshots
2214  *
2215  * \note The new CDR will be automatically transitioned to the bridge state
2216  */
2217 static void bridge_candidate_add_to_cdr(struct cdr_object *cdr,
2218                 struct cdr_object_snapshot *party_b)
2219 {
2220         RAII_VAR(struct module_config *,  mod_cfg,
2221                 ao2_global_obj_ref(module_configs), ao2_cleanup);
2222         struct cdr_object *new_cdr;
2223
2224         new_cdr = cdr_object_create_and_append(cdr);
2225         if (!new_cdr) {
2226                 return;
2227         }
2228         cdr_object_snapshot_copy(&new_cdr->party_b, party_b);
2229         cdr_object_check_party_a_answer(new_cdr);
2230         ast_string_field_set(new_cdr, bridge, cdr->bridge);
2231         cdr_object_transition_state(new_cdr, &bridge_state_fn_table);
2232         CDR_DEBUG(mod_cfg, "%p - Party A %s has new Party B %s\n",
2233                 new_cdr, new_cdr->party_a.snapshot->name,
2234                 party_b->snapshot->name);
2235 }
2236
2237 /*!
2238  * \brief Process a single \ref bridge_candidate
2239  *
2240  * When a CDR enters a bridge, it needs to make pairings with everyone else
2241  * that it is not currently paired with. This function determines, for the
2242  * CDR for the channel that entered the bridge and the CDR for every other
2243  * channel currently in the bridge, who is Party A and makes new CDRs.
2244  *
2245  * \param cdr The \ref cdr_obj being processed
2246  * \param cand_cdr The \ref cdr_object that is a candidate
2247  *
2248  */
2249 static int bridge_candidate_process(struct cdr_object *cdr, struct cdr_object *base_cand_cdr)
2250 {
2251         RAII_VAR(struct module_config *, mod_cfg,
2252                 ao2_global_obj_ref(module_configs), ao2_cleanup);
2253         struct cdr_object_snapshot *party_a;
2254         struct cdr_object *cand_cdr;
2255
2256         SCOPED_AO2LOCK(lock, base_cand_cdr);
2257
2258         for (cand_cdr = base_cand_cdr; cand_cdr; cand_cdr = cand_cdr->next) {
2259                 /* Skip any records that are not in this bridge */
2260                 if (strcmp(cand_cdr->bridge, cdr->bridge)) {
2261                         continue;
2262                 }
2263
2264                 /* If the candidate is us or someone we've taken on, pass on by */
2265                 if (!strcasecmp(cdr->party_a.snapshot->name, cand_cdr->party_a.snapshot->name)
2266                         || (cdr->party_b.snapshot
2267                                 && !strcasecmp(cdr->party_b.snapshot->name, cand_cdr->party_a.snapshot->name))) {
2268                         return 0;
2269                 }
2270
2271                 party_a = cdr_object_pick_party_a(&cdr->party_a, &cand_cdr->party_a);
2272                 /* We're party A - make a new CDR, append it to us, and set the candidate as
2273                  * Party B */
2274                 if (!strcasecmp(party_a->snapshot->name, cdr->party_a.snapshot->name)) {
2275                         bridge_candidate_add_to_cdr(cdr, &cand_cdr->party_a);
2276                         return 0;
2277                 }
2278
2279                 /* We're Party B. Check if we can add ourselves immediately or if we need
2280                  * a new CDR for them (they already have a Party B) */
2281                 if (cand_cdr->party_b.snapshot
2282                         && strcasecmp(cand_cdr->party_b.snapshot->name, cdr->party_a.snapshot->name)) {
2283                         bridge_candidate_add_to_cdr(cand_cdr, &cdr->party_a);
2284                 } else {
2285                         CDR_DEBUG(mod_cfg, "%p - Party A %s has new Party B %s\n",
2286                                 cand_cdr, cand_cdr->party_a.snapshot->name,
2287                                 cdr->party_a.snapshot->name);
2288                         cdr_object_snapshot_copy(&cand_cdr->party_b, &cdr->party_a);
2289                         /* It's possible that this joined at one point and was never chosen
2290                          * as party A. Clear their end time, as it would be set in such a
2291                          * case.
2292                          */
2293                         memset(&cand_cdr->end, 0, sizeof(cand_cdr->end));
2294                 }
2295         }
2296         return 0;
2297 }
2298
2299 /*!
2300  * \brief Handle creating bridge pairings for the \ref cdr_object that just
2301  * entered a bridge
2302  * \param cdr The \ref cdr_object that just entered the bridge
2303  * \param bridge The \ref ast_bridge_snapshot representing the bridge it just entered
2304  */
2305 static void handle_bridge_pairings(struct cdr_object *cdr, struct ast_bridge_snapshot *bridge)
2306 {
2307         struct ao2_iterator it_channels;
2308         char *channel_id;
2309
2310         it_channels = ao2_iterator_init(bridge->channels, 0);
2311         while ((channel_id = ao2_iterator_next(&it_channels))) {
2312                 RAII_VAR(struct cdr_object *, cand_cdr,
2313                         ao2_find(active_cdrs_by_channel, channel_id, OBJ_KEY),
2314                         ao2_cleanup);
2315
2316                 if (!cand_cdr) {
2317                         ao2_ref(channel_id, -1);
2318                         continue;
2319                 }
2320
2321                 bridge_candidate_process(cdr, cand_cdr);
2322
2323                 ao2_ref(channel_id, -1);
2324         }
2325         ao2_iterator_destroy(&it_channels);
2326 }
2327
2328 /*! \brief Handle entering into a parking bridge
2329  * \param cdr The CDR to operate on
2330  * \param bridge The bridge the channel just entered
2331  * \param channel The channel snapshot
2332  */
2333 static void handle_parking_bridge_enter_message(struct cdr_object *cdr,
2334                 struct ast_bridge_snapshot *bridge,
2335                 struct ast_channel_snapshot *channel)
2336 {
2337         RAII_VAR(struct module_config *, mod_cfg,
2338                         ao2_global_obj_ref(module_configs), ao2_cleanup);
2339         int res = 1;
2340         struct cdr_object *it_cdr;
2341         struct cdr_object *new_cdr;
2342
2343         ao2_lock(cdr);
2344
2345         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
2346                 if (it_cdr->fn_table->process_parking_bridge_enter) {
2347                         res &= it_cdr->fn_table->process_parking_bridge_enter(it_cdr, bridge, channel);
2348                 }
2349                 if (it_cdr->fn_table->process_party_a) {
2350                         CDR_DEBUG(mod_cfg, "%p - Updating Party A %s snapshot\n", it_cdr,
2351                                         channel->name);
2352                         it_cdr->fn_table->process_party_a(it_cdr, channel);
2353                 }
2354         }
2355
2356         if (res) {
2357                 /* No one handled it - we need a new one! */
2358                 new_cdr = cdr_object_create_and_append(cdr);
2359                 if (new_cdr) {
2360                         /* Let the single state transition us to Parked */
2361                         cdr_object_transition_state(new_cdr, &single_state_fn_table);
2362                         new_cdr->fn_table->process_parking_bridge_enter(new_cdr, bridge, channel);
2363                 }
2364         }
2365         ao2_unlock(cdr);
2366 }
2367
2368 /*! \brief Handle a bridge enter message for a 'normal' bridge
2369  * \param cdr The CDR to operate on
2370  * \param bridge The bridge the channel just entered
2371  * \param channel The channel snapshot
2372  */
2373 static void handle_standard_bridge_enter_message(struct cdr_object *cdr,
2374                 struct ast_bridge_snapshot *bridge,
2375                 struct ast_channel_snapshot *channel)
2376 {
2377         RAII_VAR(struct module_config *, mod_cfg,
2378                         ao2_global_obj_ref(module_configs), ao2_cleanup);
2379         enum process_bridge_enter_results result;
2380         struct cdr_object *it_cdr;
2381         struct cdr_object *new_cdr;
2382         struct cdr_object *handled_cdr = NULL;
2383
2384         ao2_lock(cdr);
2385
2386         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
2387                 if (it_cdr->fn_table->process_party_a) {
2388                         CDR_DEBUG(mod_cfg, "%p - Updating Party A %s snapshot\n", it_cdr,
2389                                         channel->name);
2390                         it_cdr->fn_table->process_party_a(it_cdr, channel);
2391                 }
2392
2393                 /* Notify all states that they have entered a bridge */
2394                 if (it_cdr->fn_table->process_bridge_enter) {
2395                         CDR_DEBUG(mod_cfg, "%p - Processing bridge enter for %s\n", it_cdr,
2396                                         channel->name);
2397                         result = it_cdr->fn_table->process_bridge_enter(it_cdr, bridge, channel);
2398                         switch (result) {
2399                         case BRIDGE_ENTER_ONLY_PARTY:
2400                                 /* Fall through */
2401                         case BRIDGE_ENTER_OBTAINED_PARTY_B:
2402                                 if (!handled_cdr) {
2403                                         handled_cdr = it_cdr;
2404                                 }
2405                         break;
2406                         case BRIDGE_ENTER_NEED_CDR:
2407                                 /* Pass */
2408                         break;
2409                         case BRIDGE_ENTER_NO_PARTY_B:
2410                                 /* We didn't win on any - end this CDR. If someone else comes in later
2411                                  * that is Party B to this CDR, it can re-activate this CDR.
2412                                  */
2413                                 if (!handled_cdr) {
2414                                         handled_cdr = it_cdr;
2415                                 }
2416                                 cdr_object_finalize(cdr);
2417                         break;
2418                         }
2419                 }
2420         }
2421
2422         /* Create the new matchings, but only for either:
2423          *  * The first CDR in the chain that handled it. This avoids issues with
2424          *    forked CDRs.
2425          *  * If no one handled it, the last CDR in the chain. This would occur if
2426          *    a CDR joined a bridge and it wasn't Party A for anyone. We still need
2427          *    to make pairings with everyone in the bridge.
2428          */
2429         if (handled_cdr) {
2430                 handle_bridge_pairings(handled_cdr, bridge);
2431         } else {
2432                 /* Nothing handled it - we need a new one! */
2433                 new_cdr = cdr_object_create_and_append(cdr);
2434                 if (new_cdr) {
2435                         /* This is guaranteed to succeed: the new CDR is created in the single state
2436                          * and will be able to handle the bridge enter message
2437                          */
2438                         handle_standard_bridge_enter_message(cdr, bridge, channel);
2439                 }
2440         }
2441         ao2_unlock(cdr);
2442 }
2443
2444 /*!
2445  * \internal
2446  * \brief Handler for Stasis-Core bridge enter messages
2447  * \param data Passed on
2448  * \param sub The stasis subscription for this message callback
2449  * \param topic The topic this message was published for
2450  * \param message The message - hopefully a bridge one!
2451  */
2452 static void handle_bridge_enter_message(void *data, struct stasis_subscription *sub,
2453                 struct stasis_topic *topic, struct stasis_message *message)
2454 {
2455         struct ast_bridge_blob *update = stasis_message_data(message);
2456         struct ast_bridge_snapshot *bridge = update->bridge;
2457         struct ast_channel_snapshot *channel = update->channel;
2458         RAII_VAR(struct cdr_object *, cdr,
2459                         ao2_find(active_cdrs_by_channel, channel->uniqueid, OBJ_KEY),
2460                         ao2_cleanup);
2461         RAII_VAR(struct module_config *, mod_cfg,
2462                         ao2_global_obj_ref(module_configs), ao2_cleanup);
2463
2464         if (filter_bridge_messages(bridge)) {
2465                 return;
2466         }
2467
2468         if (filter_channel_snapshot(channel)) {
2469                 return;
2470         }
2471
2472         CDR_DEBUG(mod_cfg, "Bridge Enter message for channel %s: %u.%08u\n",
2473                         channel->name,
2474                         (unsigned int)stasis_message_timestamp(message)->tv_sec,
2475                         (unsigned int)stasis_message_timestamp(message)->tv_usec);
2476
2477         if (!cdr) {
2478                 ast_log(AST_LOG_WARNING, "No CDR for channel %s\n", channel->name);
2479                 return;
2480         }
2481
2482         if (!strcmp(bridge->subclass, "parking")) {
2483                 handle_parking_bridge_enter_message(cdr, bridge, channel);
2484         } else {
2485                 handle_standard_bridge_enter_message(cdr, bridge, channel);
2486         }
2487 }
2488
2489 /*!
2490  * \brief Handler for when a channel is parked
2491  * \param data Passed on
2492  * \param sub The stasis subscription for this message callback
2493  * \param topic The topic this message was published for
2494  * \param message The message about who got parked
2495  * */
2496 static void handle_parked_call_message(void *data, struct stasis_subscription *sub,
2497                 struct stasis_topic *topic, struct stasis_message *message)
2498 {
2499         struct ast_parked_call_payload *payload = stasis_message_data(message);
2500         struct ast_channel_snapshot *channel = payload->parkee;
2501         RAII_VAR(struct cdr_object *, cdr, NULL, ao2_cleanup);
2502         RAII_VAR(struct module_config *, mod_cfg,
2503                         ao2_global_obj_ref(module_configs), ao2_cleanup);
2504         int unhandled = 1;
2505         struct cdr_object *it_cdr;
2506
2507         /* Anything other than getting parked will be handled by other updates */
2508         if (payload->event_type != PARKED_CALL) {
2509                 return;
2510         }
2511
2512         /* No one got parked? */
2513         if (!channel) {
2514                 return;
2515         }
2516
2517         CDR_DEBUG(mod_cfg, "Parked Call message for channel %s: %u.%08u\n",
2518                         channel->name,
2519                         (unsigned int)stasis_message_timestamp(message)->tv_sec,
2520                         (unsigned int)stasis_message_timestamp(message)->tv_usec);
2521
2522         cdr = ao2_find(active_cdrs_by_channel, channel->uniqueid, OBJ_KEY);
2523         if (!cdr) {
2524                 ast_log(AST_LOG_WARNING, "No CDR for channel %s\n", channel->name);
2525                 return;
2526         }
2527
2528         ao2_lock(cdr);
2529
2530         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
2531                 if (it_cdr->fn_table->process_parked_channel) {
2532                         unhandled &= it_cdr->fn_table->process_parked_channel(it_cdr, payload);
2533                 }
2534         }
2535
2536         if (unhandled) {
2537                 /* Nothing handled the messgae - we need a new one! */
2538                 struct cdr_object *new_cdr = cdr_object_create_and_append(cdr);
2539                 if (new_cdr) {
2540                         /* As the new CDR is created in the single state, it is guaranteed
2541                          * to have a function for the parked call message and will handle
2542                          * the message */
2543                         new_cdr->fn_table->process_parked_channel(new_cdr, payload);
2544                 }
2545         }
2546
2547         ao2_unlock(cdr);
2548
2549 }
2550
2551 struct ast_cdr_config *ast_cdr_get_config(void)
2552 {
2553         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
2554         ao2_ref(mod_cfg->general, +1);
2555         return mod_cfg->general;
2556 }
2557
2558 void ast_cdr_set_config(struct ast_cdr_config *config)
2559 {
2560         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
2561         ao2_cleanup(mod_cfg->general);
2562         mod_cfg->general = config;
2563         ao2_ref(mod_cfg->general, +1);
2564 }
2565
2566 int ast_cdr_is_enabled(void)
2567 {
2568         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
2569         return ast_test_flag(&mod_cfg->general->settings, CDR_ENABLED);
2570 }
2571
2572 int ast_cdr_register(const char *name, const char *desc, ast_cdrbe be)
2573 {
2574         struct cdr_beitem *i = NULL;
2575
2576         if (!name)
2577                 return -1;
2578
2579         if (!be) {
2580                 ast_log(LOG_WARNING, "CDR engine '%s' lacks backend\n", name);
2581                 return -1;
2582         }
2583
2584         AST_RWLIST_WRLOCK(&be_list);
2585         AST_RWLIST_TRAVERSE(&be_list, i, list) {
2586                 if (!strcasecmp(name, i->name)) {
2587                         ast_log(LOG_WARNING, "Already have a CDR backend called '%s'\n", name);
2588                         AST_RWLIST_UNLOCK(&be_list);
2589                         return -1;
2590                 }
2591         }
2592
2593         if (!(i = ast_calloc(1, sizeof(*i))))
2594                 return -1;
2595
2596         i->be = be;
2597         ast_copy_string(i->name, name, sizeof(i->name));
2598         ast_copy_string(i->desc, desc, sizeof(i->desc));
2599
2600         AST_RWLIST_INSERT_HEAD(&be_list, i, list);
2601         AST_RWLIST_UNLOCK(&be_list);
2602
2603         return 0;
2604 }
2605
2606 void ast_cdr_unregister(const char *name)
2607 {
2608         struct cdr_beitem *i = NULL;
2609
2610         AST_RWLIST_WRLOCK(&be_list);
2611         AST_RWLIST_TRAVERSE_SAFE_BEGIN(&be_list, i, list) {
2612                 if (!strcasecmp(name, i->name)) {
2613                         AST_RWLIST_REMOVE_CURRENT(list);
2614                         break;
2615                 }
2616         }
2617         AST_RWLIST_TRAVERSE_SAFE_END;
2618         AST_RWLIST_UNLOCK(&be_list);
2619
2620         if (i) {
2621                 ast_verb(2, "Unregistered '%s' CDR backend\n", name);
2622                 ast_free(i);
2623         }
2624 }
2625
2626 struct ast_cdr *ast_cdr_dup(struct ast_cdr *cdr)
2627 {
2628         struct ast_cdr *newcdr;
2629
2630         if (!cdr) {
2631                 return NULL;
2632         }
2633         newcdr = ast_cdr_alloc();
2634         if (!newcdr) {
2635                 return NULL;
2636         }
2637
2638         *newcdr = *cdr;
2639         AST_LIST_HEAD_INIT_NOLOCK(&newcdr->varshead);
2640         copy_variables(&newcdr->varshead, &cdr->varshead);
2641         newcdr->next = NULL;
2642
2643         return newcdr;
2644 }
2645
2646 static const char *cdr_format_var_internal(struct ast_cdr *cdr, const char *name)
2647 {
2648         struct ast_var_t *variables;
2649
2650         if (ast_strlen_zero(name)) {
2651                 return NULL;
2652         }
2653
2654         AST_LIST_TRAVERSE(&cdr->varshead, variables, entries) {
2655                 if (!strcasecmp(name, ast_var_name(variables))) {
2656                         return ast_var_value(variables);
2657                 }
2658         }
2659
2660         return NULL;
2661 }
2662
2663 static void cdr_get_tv(struct timeval when, const char *fmt, char *buf, int bufsize)
2664 {
2665         if (fmt == NULL) {      /* raw mode */
2666                 snprintf(buf, bufsize, "%ld.%06ld", (long)when.tv_sec, (long)when.tv_usec);
2667         } else {
2668                 buf[0] = '\0';/* Ensure the buffer is initialized. */
2669                 if (when.tv_sec) {
2670                         struct ast_tm tm;
2671
2672                         ast_localtime(&when, &tm, NULL);
2673                         ast_strftime(buf, bufsize, fmt, &tm);
2674                 }
2675         }
2676 }
2677
2678 void ast_cdr_format_var(struct ast_cdr *cdr, const char *name, char **ret, char *workspace, int workspacelen, int raw)
2679 {
2680         const char *fmt = "%Y-%m-%d %T";
2681         const char *varbuf;
2682
2683         if (!cdr) {
2684                 return;
2685         }
2686
2687         *ret = NULL;
2688
2689         if (!strcasecmp(name, "clid")) {
2690                 ast_copy_string(workspace, cdr->clid, workspacelen);
2691         } else if (!strcasecmp(name, "src")) {
2692                 ast_copy_string(workspace, cdr->src, workspacelen);
2693         } else if (!strcasecmp(name, "dst")) {
2694                 ast_copy_string(workspace, cdr->dst, workspacelen);
2695         } else if (!strcasecmp(name, "dcontext")) {
2696                 ast_copy_string(workspace, cdr->dcontext, workspacelen);
2697         } else if (!strcasecmp(name, "channel")) {
2698                 ast_copy_string(workspace, cdr->channel, workspacelen);
2699         } else if (!strcasecmp(name, "dstchannel")) {
2700                 ast_copy_string(workspace, cdr->dstchannel, workspacelen);
2701         } else if (!strcasecmp(name, "lastapp")) {
2702                 ast_copy_string(workspace, cdr->lastapp, workspacelen);
2703         } else if (!strcasecmp(name, "lastdata")) {
2704                 ast_copy_string(workspace, cdr->lastdata, workspacelen);
2705         } else if (!strcasecmp(name, "start")) {
2706                 cdr_get_tv(cdr->start, raw ? NULL : fmt, workspace, workspacelen);
2707         } else if (!strcasecmp(name, "answer")) {
2708                 cdr_get_tv(cdr->answer, raw ? NULL : fmt, workspace, workspacelen);
2709         } else if (!strcasecmp(name, "end")) {
2710                 cdr_get_tv(cdr->end, raw ? NULL : fmt, workspace, workspacelen);
2711         } else if (!strcasecmp(name, "duration")) {
2712                 snprintf(workspace, workspacelen, "%ld", cdr->end.tv_sec != 0 ? cdr->duration : (long)ast_tvdiff_ms(ast_tvnow(), cdr->start) / 1000);
2713         } else if (!strcasecmp(name, "billsec")) {
2714                 snprintf(workspace, workspacelen, "%ld", (cdr->billsec || !ast_tvzero(cdr->end) || ast_tvzero(cdr->answer)) ? cdr->billsec : (long)ast_tvdiff_ms(ast_tvnow(), cdr->answer) / 1000);
2715         } else if (!strcasecmp(name, "disposition")) {
2716                 if (raw) {
2717                         snprintf(workspace, workspacelen, "%ld", cdr->disposition);
2718                 } else {
2719                         ast_copy_string(workspace, ast_cdr_disp2str(cdr->disposition), workspacelen);
2720                 }
2721         } else if (!strcasecmp(name, "amaflags")) {
2722                 if (raw) {
2723                         snprintf(workspace, workspacelen, "%ld", cdr->amaflags);
2724                 } else {
2725                         ast_copy_string(workspace, ast_channel_amaflags2string(cdr->amaflags), workspacelen);
2726                 }
2727         } else if (!strcasecmp(name, "accountcode")) {
2728                 ast_copy_string(workspace, cdr->accountcode, workspacelen);
2729         } else if (!strcasecmp(name, "peeraccount")) {
2730                 ast_copy_string(workspace, cdr->peeraccount, workspacelen);
2731         } else if (!strcasecmp(name, "uniqueid")) {
2732                 ast_copy_string(workspace, cdr->uniqueid, workspacelen);
2733         } else if (!strcasecmp(name, "linkedid")) {
2734                 ast_copy_string(workspace, cdr->linkedid, workspacelen);
2735         } else if (!strcasecmp(name, "userfield")) {
2736                 ast_copy_string(workspace, cdr->userfield, workspacelen);
2737         } else if (!strcasecmp(name, "sequence")) {
2738                 snprintf(workspace, workspacelen, "%d", cdr->sequence);
2739         } else if ((varbuf = cdr_format_var_internal(cdr, name))) {
2740                 ast_copy_string(workspace, varbuf, workspacelen);
2741         } else {
2742                 workspace[0] = '\0';
2743         }
2744
2745         if (!ast_strlen_zero(workspace)) {
2746                 *ret = workspace;
2747         }
2748 }
2749
2750 /*
2751  * \internal
2752  * \brief Callback that finds all CDRs that reference a particular channel by name
2753  */
2754 static int cdr_object_select_all_by_name_cb(void *obj, void *arg, int flags)
2755 {
2756         struct cdr_object *cdr = obj;
2757         const char *name = arg;
2758
2759         if (!strcasecmp(cdr->party_a.snapshot->name, name) ||
2760                         (cdr->party_b.snapshot && !strcasecmp(cdr->party_b.snapshot->name, name))) {
2761                 return CMP_MATCH;
2762         }
2763         return 0;
2764 }
2765
2766 /*
2767  * \internal
2768  * \brief Callback that finds a CDR by channel name
2769  */
2770 static int cdr_object_get_by_name_cb(void *obj, void *arg, int flags)
2771 {
2772         struct cdr_object *cdr = obj;
2773         const char *name = arg;
2774
2775         if (!strcasecmp(cdr->party_a.snapshot->name, name)) {
2776                 return CMP_MATCH;
2777         }
2778         return 0;
2779 }
2780
2781 /* Read Only CDR variables */
2782 static const char * const cdr_readonly_vars[] = {
2783         "clid",
2784         "src",
2785         "dst",
2786         "dcontext",
2787         "channel",
2788         "dstchannel",
2789         "lastapp",
2790         "lastdata",
2791         "start",
2792         "answer",
2793         "end",
2794         "duration",
2795         "billsec",
2796         "disposition",
2797         "amaflags",
2798         "accountcode",
2799         "uniqueid",
2800         "linkedid",
2801         "userfield",
2802         "sequence",
2803         NULL
2804 };
2805
2806 int ast_cdr_setvar(const char *channel_name, const char *name, const char *value)
2807 {
2808         struct cdr_object *cdr;
2809         struct cdr_object *it_cdr;
2810         struct ao2_iterator *it_cdrs;
2811         char *arg = ast_strdupa(channel_name);
2812         int x;
2813
2814         for (x = 0; cdr_readonly_vars[x]; x++) {
2815                 if (!strcasecmp(name, cdr_readonly_vars[x])) {
2816                         ast_log(LOG_ERROR, "Attempt to set the '%s' read-only variable!\n", name);
2817                         return -1;
2818                 }
2819         }
2820
2821         it_cdrs = ao2_callback(active_cdrs_by_channel, OBJ_MULTIPLE, cdr_object_select_all_by_name_cb, arg);
2822         if (!it_cdrs) {
2823                 ast_log(AST_LOG_ERROR, "Unable to find CDR for channel %s\n", channel_name);
2824                 return -1;
2825         }
2826
2827         for (; (cdr = ao2_iterator_next(it_cdrs)); ao2_unlock(cdr), ao2_cleanup(cdr)) {
2828                 ao2_lock(cdr);
2829                 for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
2830                         struct varshead *headp = NULL;
2831
2832                         if (it_cdr->fn_table == &finalized_state_fn_table) {
2833                                 continue;
2834                         }
2835                         if (!strcasecmp(channel_name, it_cdr->party_a.snapshot->name)) {
2836                                 headp = &it_cdr->party_a.variables;
2837                         } else if (it_cdr->party_b.snapshot
2838                                 && !strcasecmp(channel_name, it_cdr->party_b.snapshot->name)) {
2839                                 headp = &it_cdr->party_b.variables;
2840                         }
2841                         if (headp) {
2842                                 set_variable(headp, name, value);
2843                         }
2844                 }
2845         }
2846         ao2_iterator_destroy(it_cdrs);
2847
2848         return 0;
2849 }
2850
2851 /*!
2852  * \brief Format a variable on a \ref cdr_object
2853  */
2854 static void cdr_object_format_var_internal(struct cdr_object *cdr, const char *name, char *value, size_t length)
2855 {
2856         struct ast_var_t *variable;
2857
2858         AST_LIST_TRAVERSE(&cdr->party_a.variables, variable, entries) {
2859                 if (!strcasecmp(name, ast_var_name(variable))) {
2860                         ast_copy_string(value, ast_var_value(variable), length);
2861                         return;
2862                 }
2863         }
2864
2865         *value = '\0';
2866 }
2867
2868 /*!
2869  * \brief Format one of the standard properties on a \ref cdr_object
2870  */
2871 static int cdr_object_format_property(struct cdr_object *cdr_obj, const char *name, char *value, size_t length)
2872 {
2873         struct ast_channel_snapshot *party_a = cdr_obj->party_a.snapshot;
2874         struct ast_channel_snapshot *party_b = cdr_obj->party_b.snapshot;
2875
2876         if (!strcasecmp(name, "clid")) {
2877                 ast_callerid_merge(value, length, party_a->caller_name, party_a->caller_number, "");
2878         } else if (!strcasecmp(name, "src")) {
2879                 ast_copy_string(value, party_a->caller_number, length);
2880         } else if (!strcasecmp(name, "dst")) {
2881                 ast_copy_string(value, party_a->exten, length);
2882         } else if (!strcasecmp(name, "dcontext")) {
2883                 ast_copy_string(value, party_a->context, length);
2884         } else if (!strcasecmp(name, "channel")) {
2885                 ast_copy_string(value, party_a->name, length);
2886         } else if (!strcasecmp(name, "dstchannel")) {
2887                 if (party_b) {
2888                         ast_copy_string(value, party_b->name, length);
2889                 } else {
2890                         ast_copy_string(value, "", length);
2891                 }
2892         } else if (!strcasecmp(name, "lastapp")) {
2893                 ast_copy_string(value, party_a->appl, length);
2894         } else if (!strcasecmp(name, "lastdata")) {
2895                 ast_copy_string(value, party_a->data, length);
2896         } else if (!strcasecmp(name, "start")) {
2897                 cdr_get_tv(cdr_obj->start, NULL, value, length);
2898         } else if (!strcasecmp(name, "answer")) {
2899                 cdr_get_tv(cdr_obj->answer, NULL, value, length);
2900         } else if (!strcasecmp(name, "end")) {
2901                 cdr_get_tv(cdr_obj->end, NULL, value, length);
2902         } else if (!strcasecmp(name, "duration")) {
2903                 snprintf(value, length, "%ld", cdr_object_get_duration(cdr_obj));
2904         } else if (!strcasecmp(name, "billsec")) {
2905                 snprintf(value, length, "%ld", cdr_object_get_billsec(cdr_obj));
2906         } else if (!strcasecmp(name, "disposition")) {
2907                 snprintf(value, length, "%d", cdr_obj->disposition);
2908         } else if (!strcasecmp(name, "amaflags")) {
2909                 snprintf(value, length, "%d", party_a->amaflags);
2910         } else if (!strcasecmp(name, "accountcode")) {
2911                 ast_copy_string(value, party_a->accountcode, length);
2912         } else if (!strcasecmp(name, "peeraccount")) {
2913                 if (party_b) {
2914                         ast_copy_string(value, party_b->accountcode, length);
2915                 } else {
2916                         ast_copy_string(value, "", length);
2917                 }
2918         } else if (!strcasecmp(name, "uniqueid")) {
2919                 ast_copy_string(value, party_a->uniqueid, length);
2920         } else if (!strcasecmp(name, "linkedid")) {
2921                 ast_copy_string(value, cdr_obj->linkedid, length);
2922         } else if (!strcasecmp(name, "userfield")) {
2923                 ast_copy_string(value, cdr_obj->party_a.userfield, length);
2924         } else if (!strcasecmp(name, "sequence")) {
2925                 snprintf(value, length, "%d", cdr_obj->sequence);
2926         } else {
2927                 return 1;
2928         }
2929
2930         return 0;
2931 }
2932
2933 /*! \internal
2934  * \brief Look up and retrieve a CDR object by channel name
2935  * \param name The name of the channel
2936  * \retval NULL on error
2937  * \retval The \ref cdr_object for the channel on success, with the reference
2938  *      count bumped by one.
2939  */
2940 static struct cdr_object *cdr_object_get_by_name(const char *name)
2941 {
2942         char *param;
2943
2944         if (ast_strlen_zero(name)) {
2945                 return NULL;
2946         }
2947
2948         param = ast_strdupa(name);
2949         return ao2_callback(active_cdrs_by_channel, 0, cdr_object_get_by_name_cb, param);
2950 }
2951
2952 int ast_cdr_getvar(const char *channel_name, const char *name, char *value, size_t length)
2953 {
2954         RAII_VAR(struct cdr_object *, cdr, cdr_object_get_by_name(channel_name), ao2_cleanup);
2955         struct cdr_object *cdr_obj;
2956
2957         if (!cdr) {
2958                 ast_log(AST_LOG_ERROR, "Unable to find CDR for channel %s\n", channel_name);
2959                 return 1;
2960         }
2961
2962         if (ast_strlen_zero(name)) {
2963                 return 1;
2964         }
2965
2966         ao2_lock(cdr);
2967
2968         cdr_obj = cdr->last;
2969         if (cdr_object_format_property(cdr_obj, name, value, length)) {
2970                 /* Property failed; attempt variable */
2971                 cdr_object_format_var_internal(cdr_obj, name, value, length);
2972         }
2973
2974         ao2_unlock(cdr);
2975
2976         return 0;
2977 }
2978
2979 int ast_cdr_serialize_variables(const char *channel_name, struct ast_str **buf, char delim, char sep)
2980 {
2981         RAII_VAR(struct cdr_object *, cdr, cdr_object_get_by_name(channel_name), ao2_cleanup);
2982         struct cdr_object *it_cdr;
2983         struct ast_var_t *variable;
2984         const char *var;
2985         RAII_VAR(char *, workspace, ast_malloc(256), ast_free);
2986         int total = 0, x = 0, i;
2987
2988         if (!workspace) {
2989                 return 0;
2990         }
2991
2992         if (!cdr) {
2993                 ast_log(AST_LOG_ERROR, "Unable to find CDR for channel %s\n", channel_name);
2994                 return 0;
2995         }
2996
2997         ast_str_reset(*buf);
2998
2999         ao2_lock(cdr);
3000         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
3001                 if (++x > 1)
3002                         ast_str_append(buf, 0, "\n");
3003
3004                 AST_LIST_TRAVERSE(&it_cdr->party_a.variables, variable, entries) {
3005                         if (!(var = ast_var_name(variable))) {
3006                                 continue;
3007                         }
3008
3009                         if (ast_str_append(buf, 0, "level %d: %s%c%s%c", x, var, delim, S_OR(ast_var_value(variable), ""), sep) < 0) {
3010                                 ast_log(LOG_ERROR, "Data Buffer Size Exceeded!\n");
3011                                 break;
3012                         }
3013
3014                         total++;
3015                 }
3016
3017                 for (i = 0; cdr_readonly_vars[i]; i++) {
3018                         if (cdr_object_format_property(it_cdr, cdr_readonly_vars[i], workspace, sizeof(workspace))) {
3019                                 /* Unhandled read-only CDR variable. */
3020                                 ast_assert(0);
3021                                 continue;
3022                         }
3023
3024                         if (!ast_strlen_zero(workspace)
3025                                 && ast_str_append(buf, 0, "level %d: %s%c%s%c", x, cdr_readonly_vars[i], delim, workspace, sep) < 0) {
3026                                 ast_log(LOG_ERROR, "Data Buffer Size Exceeded!\n");
3027                                 break;
3028                         }
3029                         total++;
3030                 }
3031         }
3032         ao2_unlock(cdr);
3033         return total;
3034 }
3035
3036 void ast_cdr_free(struct ast_cdr *cdr)
3037 {
3038         while (cdr) {
3039                 struct ast_cdr *next = cdr->next;
3040
3041                 free_variables(&cdr->varshead);
3042                 ast_free(cdr);
3043                 cdr = next;
3044         }
3045 }
3046
3047 struct ast_cdr *ast_cdr_alloc(void)
3048 {
3049         struct ast_cdr *x;
3050
3051         x = ast_calloc(1, sizeof(*x));
3052         return x;
3053 }
3054
3055 const char *ast_cdr_disp2str(int disposition)
3056 {
3057         switch (disposition) {
3058         case AST_CDR_NULL:
3059                 return "NO ANSWER"; /* by default, for backward compatibility */
3060         case AST_CDR_NOANSWER:
3061                 return "NO ANSWER";
3062         case AST_CDR_FAILED:
3063                 return "FAILED";
3064         case AST_CDR_BUSY:
3065                 return "BUSY";
3066         case AST_CDR_ANSWERED:
3067                 return "ANSWERED";
3068         case AST_CDR_CONGESTION:
3069                 return "CONGESTION";
3070         }
3071         return "UNKNOWN";
3072 }
3073
3074 struct party_b_userfield_update {
3075         const char *channel_name;
3076         const char *userfield;
3077 };
3078
3079 /*! \brief Callback used to update the userfield on Party B on all CDRs */
3080 static int cdr_object_update_party_b_userfield_cb(void *obj, void *arg, int flags)
3081 {
3082         struct cdr_object *cdr = obj;
3083         struct party_b_userfield_update *info = arg;
3084         struct cdr_object *it_cdr;
3085         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
3086                 if (it_cdr->fn_table == &finalized_state_fn_table) {
3087                         continue;
3088                 }
3089                 if (it_cdr->party_b.snapshot
3090                         && !strcasecmp(it_cdr->party_b.snapshot->name, info->channel_name)) {
3091                         strcpy(it_cdr->party_b.userfield, info->userfield);
3092                 }
3093         }
3094         return 0;
3095 }
3096
3097 void ast_cdr_setuserfield(const char *channel_name, const char *userfield)
3098 {
3099         RAII_VAR(struct cdr_object *, cdr, cdr_object_get_by_name(channel_name), ao2_cleanup);
3100         struct party_b_userfield_update party_b_info = {
3101                         .channel_name = channel_name,
3102                         .userfield = userfield,
3103         };
3104         struct cdr_object *it_cdr;
3105
3106         /* Handle Party A */
3107         if (cdr) {
3108                 ao2_lock(cdr);
3109                 for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
3110                         if (it_cdr->fn_table == &finalized_state_fn_table) {
3111                                 continue;
3112                         }
3113                         strcpy(it_cdr->party_a.userfield, userfield);
3114                 }
3115                 ao2_unlock(cdr);
3116         }
3117
3118         /* Handle Party B */
3119         ao2_callback(active_cdrs_by_channel, OBJ_NODATA,
3120                         cdr_object_update_party_b_userfield_cb,
3121                         &party_b_info);
3122
3123 }
3124
3125 static void post_cdr(struct ast_cdr *cdr)
3126 {
3127         RAII_VAR(struct module_config *, mod_cfg, ao2_global_obj_ref(module_configs), ao2_cleanup);
3128         struct cdr_beitem *i;
3129
3130         for (; cdr ; cdr = cdr->next) {
3131                 /* For people, who don't want to see unanswered single-channel events */
3132                 if (!ast_test_flag(&mod_cfg->general->settings, CDR_UNANSWERED) &&
3133                                 cdr->disposition < AST_CDR_ANSWERED &&
3134                                 (ast_strlen_zero(cdr->channel) || ast_strlen_zero(cdr->dstchannel))) {
3135                         ast_debug(1, "Skipping CDR  for %s since we weren't answered\n", cdr->channel);
3136                         continue;
3137                 }
3138
3139                 if (ast_test_flag(cdr, AST_CDR_FLAG_DISABLE)) {
3140                         continue;
3141                 }
3142                 AST_RWLIST_RDLOCK(&be_list);
3143                 AST_RWLIST_TRAVERSE(&be_list, i, list) {
3144                         i->be(cdr);
3145                 }
3146                 AST_RWLIST_UNLOCK(&be_list);
3147         }
3148 }
3149
3150 int ast_cdr_set_property(const char *channel_name, enum ast_cdr_options option)
3151 {
3152         RAII_VAR(struct cdr_object *, cdr, cdr_object_get_by_name(channel_name), ao2_cleanup);
3153         struct cdr_object *it_cdr;
3154
3155         if (!cdr) {
3156                 return -1;
3157         }
3158
3159         ao2_lock(cdr);
3160         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
3161                 if (it_cdr->fn_table == &finalized_state_fn_table) {
3162                         continue;
3163                 }
3164                 /* Note: in general, set the flags on both the CDR record as well as the
3165                  * Party A. Sometimes all we have is the Party A to look at.
3166                  */
3167                 ast_set_flag(&it_cdr->flags, option);
3168                 ast_set_flag(&it_cdr->party_a, option);
3169         }
3170         ao2_unlock(cdr);
3171
3172         return 0;
3173 }
3174
3175 int ast_cdr_clear_property(const char *channel_name, enum ast_cdr_options option)
3176 {
3177         RAII_VAR(struct cdr_object *, cdr, cdr_object_get_by_name(channel_name), ao2_cleanup);
3178         struct cdr_object *it_cdr;
3179
3180         if (!cdr) {
3181                 return -1;
3182         }
3183
3184         ao2_lock(cdr);
3185         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
3186                 if (it_cdr->fn_table == &finalized_state_fn_table) {
3187                         continue;
3188                 }
3189                 ast_clear_flag(&it_cdr->flags, option);
3190         }
3191         ao2_unlock(cdr);
3192
3193         return 0;
3194 }
3195
3196 int ast_cdr_reset(const char *channel_name, struct ast_flags *options)
3197 {
3198         RAII_VAR(struct cdr_object *, cdr, cdr_object_get_by_name(channel_name), ao2_cleanup);
3199         struct ast_var_t *vardata;
3200         struct cdr_object *it_cdr;
3201
3202         if (!cdr) {
3203                 return -1;
3204         }
3205
3206         ao2_lock(cdr);
3207         for (it_cdr = cdr; it_cdr; it_cdr = it_cdr->next) {
3208                 /* clear variables */
3209                 if (!ast_test_flag(options, AST_CDR_FLAG_KEEP_VARS)) {
3210                         while ((vardata = AST_LIST_REMOVE_HEAD(&it_cdr->party_a.variables, entries))) {
3211                                 ast_var_delete(vardata);
3212                         }
3213                         if (cdr->party_b.snapshot) {
3214                                 while ((vardata = AST_LIST_REMOVE_HEAD(&it_cdr->party_b.variables, entries))) {
3215                                         ast_var_delete(vardata);
3216                                 }
3217                         }
3218                 }
3219
3220                 /* Reset to initial state */
3221                 memset(&it_cdr->start, 0, sizeof(it_cdr->start));
3222                 memset(&it_cdr->end, 0, sizeof(it_cdr->end));
3223                 memset(&it_cdr->answer, 0, sizeof(it_cdr->answer));
3224                 it_cdr->start = ast_tvnow();
3225                 cdr_object_check_party_a_answer(it_cdr);
3226         }
3227         ao2_unlock(cdr);
3228
3229         return 0;
3230 }
3231
3232 int ast_cdr_fork(const char *channel_name, struct ast_flags *options)
3233 {
3234         RAII_VAR(struct cdr_object *, cdr, cdr_object_get_by_name(channel_name), ao2_cleanup);
3235         struct cdr_object *new_cdr;
3236         struct cdr_object *it_cdr;
3237         struct cdr_object *cdr_obj;
3238
3239         if (!cdr) {
3240                 return -1;
3241         }
3242
3243         {
3244                 SCOPED_AO2LOCK(lock, cdr);
3245                 cdr_obj = cdr->last;
3246                 if (cdr_obj->fn_table == &finalized_state_fn_table) {
3247                         /* If the last CDR in the chain is finalized, don't allow a fork -
3248                          * things are already dying at this point
3249                          */
3250                         return -1;
3251                 }
3252
3253                 /* Copy over the basic CDR information. The Party A information is
3254                  * copied over automatically as part of the append
3255                  */
3256                 ast_debug(1, "Forking CDR for channel %s\n", cdr->party_a.snapshot->name);
3257                 new_cdr = cdr_object_create_and_append(cdr);
3258                 if (!new_cdr) {
3259                         return -1;
3260                 }
3261                 new_cdr->fn_table = cdr_obj->fn_table;
3262                 ast_string_field_set(new_cdr, bridge, cdr->bridge);
3263                 new_cdr->flags = cdr->flags;
3264
3265                 /* If there's a Party B, copy it over as well */
3266                 if (cdr_obj->party_b.snapshot) {
3267                         new_cdr->party_b.snapshot = cdr_obj->party_b.snapshot;
3268                         ao2_ref(new_cdr->party_b.snapshot, +1);
3269                         strcpy(new_cdr->party_b.userfield, cdr_obj->party_b.userfield);
3270                         new_cdr->party_b.flags = cdr_obj->party_b.flags;
3271                         if (ast_test_flag(options, AST_CDR_FLAG_KEEP_VARS)) {
327