Fri Feb 10 06:34:17 2012

Asterisk developer's documentation


app.h File Reference

Application convenience functions, designed to give consistent look and feel to Asterisk apps. More...

#include "asterisk/strings.h"
#include "asterisk/threadstorage.h"

Include dependency graph for app.h:

Go to the source code of this file.

Data Structures

struct  ast_app_option
 A structure to hold the description of an application 'option'. More...
struct  ast_ivr_menu
struct  ast_ivr_option

Defines

#define AST_APP_ARG(name)   char *name
 Define an application argument.
#define AST_APP_OPTION(option, flagno)   [option] = { .flag = flagno }
 Declares an application option that does not accept an argument.
#define AST_APP_OPTION_ARG(option, flagno, argno)   [option] = { .flag = flagno, .arg_index = argno + 1 }
 Declares an application option that accepts an argument.
#define AST_APP_OPTIONS(holder, options...)   static const struct ast_app_option holder[128] = options
 Declares an array of options for an application.
#define ast_app_separate_args(a, b, c, d)   __ast_app_separate_args(a,b,1,c,d)
#define AST_DECLARE_APP_ARGS(name, arglist)   AST_DEFINE_APP_ARGS_TYPE(, arglist) name
 Declare a structure to hold an application's arguments.
#define AST_DEFINE_APP_ARGS_TYPE(type, arglist)
 Define a structure type to hold an application's arguments.
#define AST_IVR_DECLARE_MENU(holder, title, flags, foo...)
#define AST_IVR_FLAG_AUTORESTART   (1 << 0)
#define AST_NONSTANDARD_APP_ARGS(args, parse, sep)   args.argc = __ast_app_separate_args(parse, sep, 1, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0])))
 Performs the 'nonstandard' argument separation process for an application.
#define AST_NONSTANDARD_RAW_ARGS(args, parse, sep)   args.argc = __ast_app_separate_args(parse, sep, 0, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0])))
#define AST_STANDARD_APP_ARGS(args, parse)   args.argc = __ast_app_separate_args(parse, ',', 1, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0])))
 Performs the 'standard' argument separation process for an application.
#define AST_STANDARD_RAW_ARGS(args, parse)   args.argc = __ast_app_separate_args(parse, ',', 0, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0])))
#define BEGIN_OPTIONS   {
#define END_OPTIONS   }

Typedefs

typedef int(* ast_ivr_callback )(struct ast_channel *chan, char *option, void *cbdata)
 Callback function for IVR.

Enumerations

enum  ast_getdata_result {
  AST_GETDATA_FAILED = -1, AST_GETDATA_COMPLETE = 0, AST_GETDATA_TIMEOUT = 1, AST_GETDATA_INTERRUPTED = 2,
  AST_GETDATA_EMPTY_END_TERMINATED = 3
}
enum  ast_ivr_action {
  AST_ACTION_UPONE, AST_ACTION_EXIT, AST_ACTION_CALLBACK, AST_ACTION_PLAYBACK,
  AST_ACTION_BACKGROUND, AST_ACTION_PLAYLIST, AST_ACTION_MENU, AST_ACTION_REPEAT,
  AST_ACTION_RESTART, AST_ACTION_TRANSFER, AST_ACTION_WAITOPTION, AST_ACTION_NOOP,
  AST_ACTION_BACKLIST
}
enum  AST_LOCK_RESULT { AST_LOCK_SUCCESS = 0, AST_LOCK_TIMEOUT = -1, AST_LOCK_PATH_NOT_FOUND = -2, AST_LOCK_FAILURE = -3 }
enum  AST_LOCK_TYPE { AST_LOCK_TYPE_LOCKFILE = 0, AST_LOCK_TYPE_FLOCK = 1 }
 Type of locking to use in ast_lock_path / ast_unlock_path. More...
enum  ast_timelen { TIMELEN_HOURS, TIMELEN_MINUTES, TIMELEN_SECONDS, TIMELEN_MILLISECONDS }

Functions

unsigned int __ast_app_separate_args (char *buf, char delim, int remove_chars, char **array, int arraylen)
 Separate a string into arguments in an array.
int ast_app_dtget (struct ast_channel *chan, const char *context, char *collect, size_t size, int maxlen, int timeout)
 Present a dialtone and collect a certain length extension.
int ast_app_getdata (struct ast_channel *c, const char *prompt, char *s, int maxlen, int timeout)
 Plays a stream and gets DTMF data from a channel.
int ast_app_getdata_full (struct ast_channel *c, const char *prompt, char *s, int maxlen, int timeout, int audiofd, int ctrlfd)
 Full version with audiofd and controlfd. NOTE: returns '2' on ctrlfd available, not '1' like other full functions.
int ast_app_group_discard (struct ast_channel *chan)
 Discard all group counting for a channel.
int ast_app_group_get_count (const char *group, const char *category)
 Get the current channel count of the specified group and category.
struct ast_group_infoast_app_group_list_head (void)
 Get the head of the group count list.
int ast_app_group_list_rdlock (void)
 Read Lock the group count list.
int ast_app_group_list_unlock (void)
 Unlock the group count list.
int ast_app_group_list_wrlock (void)
 Write Lock the group count list.
int ast_app_group_match_get_count (const char *groupmatch, const char *category)
 Get the current channel count of all groups that match the specified pattern and category.
int ast_app_group_set_channel (struct ast_channel *chan, const char *data)
 Set the group for a channel, splitting the provided data into group and category, if specified.
int ast_app_group_split_group (const char *data, char *group, int group_max, char *category, int category_max)
 Split a group string into group and category, returning a default category if none is provided.
int ast_app_group_update (struct ast_channel *oldchan, struct ast_channel *newchan)
 Update all group counting for a channel to a new one.
int ast_app_has_voicemail (const char *mailbox, const char *folder)
 Determine if a given mailbox has any voicemail If folder is NULL, defaults to "INBOX". If folder is "INBOX", includes the number of messages in the "Urgent" folder.
int ast_app_inboxcount (const char *mailbox, int *newmsgs, int *oldmsgs)
 Determine number of new/old messages in a mailbox.
int ast_app_inboxcount2 (const char *mailbox, int *urgentmsgs, int *newmsgs, int *oldmsgs)
 Determine number of urgent/new/old messages in a mailbox.
int ast_app_messagecount (const char *context, const char *mailbox, const char *folder)
 Check number of messages in a given context, mailbox, and folder.
void ast_app_options2str64 (const struct ast_app_option *options, struct ast_flags64 *flags, char *buf, size_t len)
 Given a list of options array, return an option string based on passed flags.
int ast_app_parse_options (const struct ast_app_option *options, struct ast_flags *flags, char **args, char *optstr)
 Parses a string containing application options and sets flags/arguments.
int ast_app_parse_options64 (const struct ast_app_option *options, struct ast_flags64 *flags, char **args, char *optstr)
 Parses a string containing application options and sets flags/arguments.
int ast_app_parse_timelen (const char *timestr, int *result, enum ast_timelen defunit)
 Common routine to parse time lengths, with optional time unit specifier.
int ast_app_run_macro (struct ast_channel *autoservice_chan, struct ast_channel *macro_chan, const char *const macro_name, const char *const macro_args)
 Run a macro on a channel, placing a second channel into autoservice.
int ast_app_sayname (struct ast_channel *chan, const char *mailbox, const char *context)
 Given a mailbox and context, play that mailbox owner's name to the channel specified.
void ast_close_fds_above_n (int n)
 Common routine for child processes, to close all fds prior to exec(2).
int ast_control_streamfile (struct ast_channel *chan, const char *file, const char *fwd, const char *rev, const char *stop, const char *pause, const char *restart, int skipms, long *offsetms)
 Stream a file with fast forward, pause, reverse, restart.
int ast_dtmf_stream (struct ast_channel *chan, struct ast_channel *peer, const char *digits, int between, unsigned int duration)
 Send DTMF to a channel.
int ast_get_encoded_char (const char *stream, char *result, size_t *consumed)
 Decode an encoded control or extended ASCII character.
char * ast_get_encoded_str (const char *stream, char *result, size_t result_len)
 Decode a stream of encoded control or extended ASCII characters.
void ast_install_vm_functions (int(*has_voicemail_func)(const char *mailbox, const char *folder), int(*inboxcount_func)(const char *mailbox, int *newmsgs, int *oldmsgs), int(*inboxcount2_func)(const char *mailbox, int *urgentmsgs, int *newmsgs, int *oldmsgs), int(*messagecount_func)(const char *context, const char *mailbox, const char *folder), int(*sayname_func)(struct ast_channel *chan, const char *mailbox, const char *context))
 Set voicemail function callbacks.
int ast_ivr_menu_run (struct ast_channel *c, struct ast_ivr_menu *menu, void *cbdata)
 Runs an IVR menu.
int ast_linear_stream (struct ast_channel *chan, const char *filename, int fd, int allowoverride)
 Stream a filename (or file descriptor) as a generator.
enum AST_LOCK_RESULT ast_lock_path (const char *path)
 Lock a filesystem path.
int ast_play_and_prepend (struct ast_channel *chan, char *playfile, char *recordfile, int maxtime_sec, char *fmt, int *duration, int *sound_duration, int beep, int silencethreshold, int maxsilence_ms)
 Record a file based on input frm a channel. Recording is performed in 'prepend' mode which works a little differently from normal recordings This function will not play a success message due to post-recording control in the application this was added for.
int ast_play_and_record (struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime_sec, const char *fmt, int *duration, int *sound_duration, int silencethreshold, int maxsilence_ms, const char *path)
 Record a file based on input from a channel. Use default accept and cancel DTMF. This function will play "auth-thankyou" upon successful recording.
int ast_play_and_record_full (struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime_sec, const char *fmt, int *duration, int *sound_duration, int silencethreshold, int maxsilence_ms, const char *path, const char *acceptdtmf, const char *canceldtmf)
 Record a file based on input from a channel This function will play "auth-thankyou" upon successful recording.
int ast_play_and_wait (struct ast_channel *chan, const char *fn)
 Play a stream and wait for a digit, returning the digit that was pressed.
char * ast_read_textfile (const char *file)
 Read a file into asterisk.
int ast_record_review (struct ast_channel *chan, const char *playfile, const char *recordfile, int maxtime, const char *fmt, int *duration, const char *path)
 Allow to record message and have a review option.
void ast_replace_sigchld (void)
 Replace the SIGCHLD handler.
int ast_safe_fork (int stop_reaper)
 Common routine to safely fork without a chance of a signal handler firing badly in the child.
void ast_safe_fork_cleanup (void)
 Common routine to cleanup after fork'ed process is complete (if reaping was stopped).
int ast_safe_system (const char *s)
 Safely spawn an external program while closing file descriptors.
void ast_set_lock_type (enum AST_LOCK_TYPE type)
 Set the type of locks used by ast_lock_path().
int ast_str_get_encoded_str (struct ast_str **str, int maxlen, const char *stream)
 Decode a stream of encoded control or extended ASCII characters.
 AST_THREADSTORAGE_EXTERNAL (ast_str_thread_global_buf)
void ast_uninstall_vm_functions (void)
int ast_unlock_path (const char *path)
 Unlock a path.
void ast_unreplace_sigchld (void)
 Restore the SIGCHLD handler.


Detailed Description

Application convenience functions, designed to give consistent look and feel to Asterisk apps.

Definition in file app.h.


Define Documentation

#define AST_APP_ARG ( name   )     char *name

Define an application argument.

Parameters:
name The name of the argument

Definition at line 418 of file app.h.

Referenced by acf_curl_helper(), acf_if(), acf_isexten_exec(), acf_jabberreceive_read(), acf_jabberstatus_read(), acf_mailbox_exists(), acf_meetme_info(), acf_odbc_read(), acf_odbc_write(), acf_rand_exec(), acf_sprintf(), acf_strftime(), acf_strptime(), acf_transaction_read(), acf_transaction_write(), acf_version_exec(), acf_vm_info(), acf_vmcount_exec(), action_status(), add_agent(), admin_exec(), aelsub_exec(), aes_helper(), agi_exec_full(), aji_join_exec(), aji_leave_exec(), aji_send_exec(), aji_sendgroup_exec(), aji_status_exec(), app_exec(), aqm_exec(), array(), ast_eivr_senddtmf(), ast_queue_log(), asyncgoto_exec(), auth_exec(), background_detect_exec(), bridge_exec(), build_profile(), calendar_query_exec(), calendar_query_result_exec(), calendar_write_exec(), callerid_read(), cdr_read(), cdr_write(), celgenuserevent_exec(), chanavail_exec(), channel_admin_exec(), chanspy_exec(), cli_odbc_read(), cli_odbc_write(), conf_exec(), confbridge_exec(), config_function_read(), controlplayback_exec(), count_exec(), create_addr(), cut_internal(), dahdi_call(), determine_starting_point(), dial_exec_full(), dialgroup_write(), dictate_exec(), directory_exec(), disa_exec(), dundi_query_read(), dundi_result_read(), dundifunc_read(), enable_jack_hook(), enum_query_read(), enum_result_read(), execif_exec(), extenspy_exec(), festival_exec(), file_count_line(), file_read(), file_write(), filter(), find_conf(), find_realtime_gw(), find_table_cb(), forkcdr_exec(), func_confbridge_info(), func_header_read(), function_agent(), function_db_delete(), function_db_exists(), function_db_read(), function_db_write(), function_enum(), function_fieldnum_helper(), function_fieldqty_helper(), function_realtime_read(), function_realtime_readdestroy(), function_realtime_store(), function_realtime_write(), function_txtcidname(), gosub_exec(), gosubif_exec(), hash_read(), hash_write(), hint_read(), iconv_read(), import_helper(), init_acf_query(), isAnsweringMachine(), isexten_function_read(), jb_framedata_init(), listfilter(), load_values_config(), log_exec(), login_exec(), man_do_variable_value(), math(), misdn_call(), misdn_check_l2l1(), misdn_facility_exec(), misdn_request(), mixmonitor_exec(), msg_send_exec(), originate_exec(), ospauth_exec(), ospfinished_exec(), osplookup_exec(), ospnext_exec(), oss_call(), oss_request(), page_exec(), parkandannounce_exec(), parked_call_exec(), pbx_builtin_answer(), pbx_builtin_background(), pbx_builtin_setvar_multiple(), pbx_builtin_waitexten(), peek_read(), pickupchan_exec(), play_moh_exec(), playback_exec(), pp_each_extension_helper(), pp_each_user_helper(), pqm_exec(), privacy_exec(), process_applicationmap_line(), ql_exec(), queue_exec(), queue_function_mem_read(), queue_function_mem_write(), queue_function_memberpenalty_read(), queue_function_memberpenalty_write(), rcvfax_exec(), read_exec(), readexten_exec(), realtimefield_read(), receivefax_exec(), record_exec(), reg_source_db(), regex(), reload_single_member(), replace(), retrydial_exec(), rqm_exec(), saycountedadj_exec(), saycountednoun_exec(), sayunixtime_exec(), senddtmf_exec(), sendfax_exec(), sendurl_exec(), shared_read(), shared_write(), shift_pop(), sip_acf_channel_read(), sip_parse_register_line(), sip_request_call(), sla_trunk_exec(), smdi_msg_read(), smdi_msg_retrieve_read(), sms_exec(), sndfax_exec(), softhangup_exec(), speech_background(), speech_load(), srv_result_read(), start_moh_exec(), start_monitor_exec(), stop_mixmonitor_exec(), strreplace(), transfer_exec(), unshift_push(), upqm_exec(), userevent_exec(), verbose_exec(), vm_box_exists(), vm_check_password_shell(), vm_exec(), vm_execmain(), volume_write(), and zapateller_exec().

#define AST_APP_OPTION ( option,
flagno   )     [option] = { .flag = flagno }

Declares an application option that does not accept an argument.

Parameters:
option The single character representing the option
flagno The flag index to be set if this option is present
See also:
AST_APP_OPTIONS, ast_app_parse_options

Definition at line 584 of file app.h.

#define AST_APP_OPTION_ARG ( option,
flagno,
argno   )     [option] = { .flag = flagno, .arg_index = argno + 1 }

Declares an application option that accepts an argument.

Parameters:
option The single character representing the option
flagno The flag index to be set if this option is present
argno The index into the argument array where the argument should be placed
See also:
AST_APP_OPTIONS, ast_app_parse_options

Definition at line 595 of file app.h.

#define AST_APP_OPTIONS ( holder,
options...   )     static const struct ast_app_option holder[128] = options

Declares an array of options for an application.

Parameters:
holder The name of the array to be created
options The actual options to be placed into the array
See also:
ast_app_parse_options
This macro declares a 'static const' array of struct ast_option elements to hold the list of available options for an application. Each option must be declared using either the AST_APP_OPTION() or AST_APP_OPTION_ARG() macros.

Example usage:

  enum my_app_option_flags {
        OPT_JUMP = (1 << 0),
        OPT_BLAH = (1 << 1),
        OPT_BLORT = (1 << 2),
  };

  enum my_app_option_args {
        OPT_ARG_BLAH = 0,
        OPT_ARG_BLORT,
        !! this entry tells how many possible arguments there are,
           and must be the last entry in the list
        OPT_ARG_ARRAY_SIZE,
  };

  AST_APP_OPTIONS(my_app_options, {
        AST_APP_OPTION('j', OPT_JUMP),
        AST_APP_OPTION_ARG('b', OPT_BLAH, OPT_ARG_BLAH),
        AST_APP_OPTION_BLORT('B', OPT_BLORT, OPT_ARG_BLORT),
  });

  static int my_app_exec(struct ast_channel *chan, void *data)
  {
   char *options;
   struct ast_flags opts = { 0, };
   char *opt_args[OPT_ARG_ARRAY_SIZE];

   ... do any argument parsing here ...

   if (ast_app_parse_options(my_app_options, &opts, opt_args, options)) {
      return -1;
   }
  }

Definition at line 575 of file app.h.

#define ast_app_separate_args ( a,
b,
c,
 )     __ast_app_separate_args(a,b,1,c,d)

#define AST_DECLARE_APP_ARGS ( name,
arglist   )     AST_DEFINE_APP_ARGS_TYPE(, arglist) name

Declare a structure to hold an application's arguments.

Parameters:
name The name of the structure
arglist The list of arguments, defined using AST_APP_ARG
This macro declares a structure intended to be used in a call to ast_app_separate_args(). The structure includes all the arguments specified, plus an argv array that overlays them and an argc argument counter. The arguments must be declared using AST_APP_ARG, and they will all be character pointers (strings).

Note:
The structure is not initialized, as the call to ast_app_separate_args() will perform that function before parsing the arguments.

Definition at line 435 of file app.h.

Referenced by acf_curl_helper(), acf_if(), acf_isexten_exec(), acf_jabberreceive_read(), acf_jabberstatus_read(), acf_mailbox_exists(), acf_meetme_info(), acf_odbc_read(), acf_odbc_write(), acf_rand_exec(), acf_sprintf(), acf_strftime(), acf_strptime(), acf_transaction_read(), acf_transaction_write(), acf_version_exec(), acf_vm_info(), acf_vmcount_exec(), action_status(), add_agent(), admin_exec(), aelsub_exec(), aes_helper(), agi_exec_full(), aji_join_exec(), aji_leave_exec(), aji_send_exec(), aji_sendgroup_exec(), aji_status_exec(), app_exec(), aqm_exec(), array(), ast_eivr_senddtmf(), ast_queue_log(), asyncgoto_exec(), auth_exec(), background_detect_exec(), bridge_exec(), build_profile(), calendar_query_exec(), calendar_query_result_exec(), calendar_write_exec(), callerid_read(), cdr_read(), cdr_write(), celgenuserevent_exec(), chanavail_exec(), channel_admin_exec(), chanspy_exec(), cli_odbc_read(), cli_odbc_write(), conf_exec(), confbridge_exec(), config_function_read(), controlplayback_exec(), count_exec(), create_addr(), cut_internal(), dahdi_call(), determine_starting_point(), dial_exec_full(), dialgroup_write(), dictate_exec(), directory_exec(), disa_exec(), dundi_query_read(), dundi_result_read(), dundifunc_read(), enable_jack_hook(), enum_query_read(), enum_result_read(), execif_exec(), extenspy_exec(), festival_exec(), file_count_line(), file_read(), file_write(), filter(), find_conf(), find_realtime_gw(), find_table_cb(), forkcdr_exec(), func_confbridge_info(), func_header_read(), function_agent(), function_db_delete(), function_db_exists(), function_db_read(), function_db_write(), function_enum(), function_fieldnum_helper(), function_fieldqty_helper(), function_realtime_read(), function_realtime_readdestroy(), function_realtime_store(), function_realtime_write(), function_txtcidname(), gosub_exec(), gosubif_exec(), hash_read(), hash_write(), hint_read(), iconv_read(), import_helper(), init_acf_query(), isAnsweringMachine(), isexten_function_read(), jb_framedata_init(), listfilter(), load_values_config(), log_exec(), login_exec(), man_do_variable_value(), math(), misdn_call(), misdn_check_l2l1(), misdn_facility_exec(), misdn_request(), mixmonitor_exec(), msg_send_exec(), originate_exec(), ospauth_exec(), ospfinished_exec(), osplookup_exec(), ospnext_exec(), oss_call(), oss_request(), page_exec(), parkandannounce_exec(), parked_call_exec(), pbx_builtin_answer(), pbx_builtin_background(), pbx_builtin_setvar_multiple(), pbx_builtin_waitexten(), peek_read(), pickupchan_exec(), play_moh_exec(), playback_exec(), pp_each_extension_helper(), pp_each_user_helper(), pqm_exec(), privacy_exec(), process_applicationmap_line(), ql_exec(), queue_exec(), queue_function_mem_read(), queue_function_mem_write(), queue_function_memberpenalty_read(), queue_function_memberpenalty_write(), rcvfax_exec(), read_exec(), readexten_exec(), realtimefield_read(), receivefax_exec(), record_exec(), reg_source_db(), regex(), reload_single_member(), replace(), retrydial_exec(), rqm_exec(), saycountedadj_exec(), saycountednoun_exec(), sayunixtime_exec(), senddtmf_exec(), sendfax_exec(), sendurl_exec(), shared_read(), shared_write(), shift_pop(), sip_acf_channel_read(), sip_parse_register_line(), sip_request_call(), sla_trunk_exec(), smdi_msg_read(), smdi_msg_retrieve_read(), sms_exec(), sndfax_exec(), softhangup_exec(), speech_background(), speech_load(), srv_result_read(), start_moh_exec(), start_monitor_exec(), stop_mixmonitor_exec(), strreplace(), transfer_exec(), unshift_push(), upqm_exec(), userevent_exec(), verbose_exec(), vm_box_exists(), vm_check_password_shell(), vm_exec(), vm_execmain(), volume_write(), and zapateller_exec().

#define AST_DEFINE_APP_ARGS_TYPE ( type,
arglist   ) 

Value:

struct type { \
      unsigned int argc; \
      char *argv[0]; \
      arglist \
   }
Define a structure type to hold an application's arguments.

Parameters:
type The name of the structure type
arglist The list of arguments, defined using AST_APP_ARG
This macro defines a structure type intended to be used in a call to ast_app_separate_args(). The structure includes all the arguments specified, plus an argv array that overlays them and an argc argument counter. The arguments must be declared using AST_APP_ARG, and they will all be character pointers (strings).

Note:
This defines a structure type, but does not declare an instance of the structure. That must be done separately.

Definition at line 451 of file app.h.

#define AST_IVR_DECLARE_MENU ( holder,
title,
flags,
foo...   ) 

Value:

static struct ast_ivr_option __options_##holder[] = foo;\
   static struct ast_ivr_menu holder = { title, flags, __options_##holder }

Definition at line 83 of file app.h.

#define AST_IVR_FLAG_AUTORESTART   (1 << 0)

Definition at line 81 of file app.h.

#define AST_NONSTANDARD_APP_ARGS ( args,
parse,
sep   )     args.argc = __ast_app_separate_args(parse, sep, 1, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0])))

Performs the 'nonstandard' argument separation process for an application.

Parameters:
args An argument structure defined using AST_DECLARE_APP_ARGS
parse A modifiable buffer containing the input to be parsed
sep A nonstandard separator character
This function will separate the input string using the nonstandard argument separator character and fill in the provided structure, including the argc argument counter field.

Definition at line 482 of file app.h.

Referenced by acf_if(), acf_jabberreceive_read(), acf_jabberstatus_read(), acf_mailbox_exists(), aji_status_exec(), ast_queue_log(), build_profile(), callerid_read(), callerid_write(), connectedline_read(), connectedline_write(), dahdi_call(), determine_starting_point(), dialgroup_write(), function_agent(), function_db_delete(), function_db_exists(), function_db_read(), function_db_write(), misdn_call(), misdn_request(), oss_call(), oss_request(), pbx_builtin_setvar_multiple(), record_exec(), redirecting_read(), redirecting_write(), regex(), sip_request_call(), and vm_check_password_shell().

#define AST_NONSTANDARD_RAW_ARGS ( args,
parse,
sep   )     args.argc = __ast_app_separate_args(parse, sep, 0, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0])))

Definition at line 484 of file app.h.

Referenced by create_addr(), execif_exec(), gosubif_exec(), reg_source_db(), and sip_parse_register_line().

#define AST_STANDARD_APP_ARGS ( args,
parse   )     args.argc = __ast_app_separate_args(parse, ',', 1, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0])))

Performs the 'standard' argument separation process for an application.

Parameters:
args An argument structure defined using AST_DECLARE_APP_ARGS
parse A modifiable buffer containing the input to be parsed
This function will separate the input string using the standard argument separator character ',' and fill in the provided structure, including the argc argument counter field.

Definition at line 467 of file app.h.

Referenced by acf_curl_helper(), acf_isexten_exec(), acf_jabberreceive_read(), acf_jabberstatus_read(), acf_meetme_info(), acf_odbc_read(), acf_odbc_write(), acf_rand_exec(), acf_sprintf(), acf_strftime(), acf_strptime(), acf_transaction_read(), acf_transaction_write(), acf_version_exec(), acf_vm_info(), acf_vmcount_exec(), action_status(), add_agent(), admin_exec(), aes_helper(), agi_exec_full(), aji_join_exec(), aji_leave_exec(), aji_send_exec(), aji_sendgroup_exec(), aji_status_exec(), app_exec(), aqm_exec(), array(), ast_eivr_senddtmf(), ast_masq_park_call_exten(), ast_park_call_exten(), asyncgoto_exec(), auth_exec(), background_detect_exec(), bridge_exec(), build_profile(), calendar_query_exec(), calendar_query_result_exec(), calendar_write_exec(), callerid_read(), callerid_write(), cdr_read(), cdr_write(), celgenuserevent_exec(), chanavail_exec(), channel_admin_exec(), chanspy_exec(), cli_odbc_read(), cli_odbc_write(), conf_exec(), confbridge_exec(), config_function_read(), connectedline_write(), controlplayback_exec(), count_exec(), cut_internal(), dial_exec_full(), dialgroup_write(), dictate_exec(), directory_exec(), disa_exec(), dundi_query_read(), dundi_result_read(), dundifunc_read(), enable_jack_hook(), enum_query_read(), enum_result_read(), execif_exec(), extenspy_exec(), festival_exec(), file_count_line(), file_read(), file_write(), find_conf(), find_realtime_gw(), find_table_cb(), forkcdr_exec(), func_confbridge_info(), func_header_read(), function_enum(), function_fieldnum_helper(), function_fieldqty_helper(), function_realtime_read(), function_realtime_readdestroy(), function_realtime_store(), function_realtime_write(), function_txtcidname(), hash_read(), hash_write(), hint_read(), iconv_read(), import_helper(), init_acf_query(), isAnsweringMachine(), isexten_function_read(), jb_framedata_init(), listfilter(), log_exec(), login_exec(), man_do_variable_value(), math(), misdn_check_l2l1(), misdn_facility_exec(), mixmonitor_exec(), msg_send_exec(), originate_exec(), ospauth_exec(), ospfinished_exec(), osplookup_exec(), ospnext_exec(), page_exec(), park_call_exec(), parkandannounce_exec(), parked_call_exec(), pbx_builtin_answer(), pbx_builtin_background(), pbx_builtin_setvar_multiple(), pbx_builtin_waitexten(), pickupchan_exec(), play_moh_exec(), playback_exec(), pp_each_extension_helper(), pp_each_user_helper(), pqm_exec(), privacy_exec(), process_applicationmap_line(), ql_exec(), queue_exec(), queue_function_mem_read(), queue_function_mem_write(), queue_function_memberpenalty_read(), queue_function_memberpenalty_write(), rcvfax_exec(), read_exec(), readexten_exec(), realtimefield_read(), receivefax_exec(), record_exec(), redirecting_write(), reload_single_member(), replace(), retrydial_exec(), rqm_exec(), saycountedadj_exec(), saycountednoun_exec(), sayunixtime_exec(), senddtmf_exec(), sendfax_exec(), sendurl_exec(), shared_read(), shared_write(), shift_pop(), sip_acf_channel_read(), sla_trunk_exec(), smdi_msg_read(), smdi_msg_retrieve_read(), sms_exec(), sndfax_exec(), softhangup_exec(), speech_background(), speech_load(), srv_result_read(), start_moh_exec(), start_monitor_exec(), stop_mixmonitor_exec(), strreplace(), transfer_exec(), unshift_push(), upqm_exec(), userevent_exec(), verbose_exec(), vm_box_exists(), vm_exec(), vm_execmain(), volume_write(), xfer_park_call_helper(), and zapateller_exec().

#define AST_STANDARD_RAW_ARGS ( args,
parse   )     args.argc = __ast_app_separate_args(parse, ',', 0, args.argv, ((sizeof(args) - offsetof(typeof(args), argv)) / sizeof(args.argv[0])))

Definition at line 469 of file app.h.

Referenced by aelsub_exec(), filter(), gosub_exec(), load_values_config(), and peek_read().

#define BEGIN_OPTIONS   {

Definition at line 525 of file app.h.

#define END_OPTIONS   }

Definition at line 526 of file app.h.


Typedef Documentation

typedef int(* ast_ivr_callback)(struct ast_channel *chan, char *option, void *cbdata)

Callback function for IVR.

Returns:
returns 0 on completion, -1 on hangup or digit if interrupted

Definition at line 42 of file app.h.


Enumeration Type Documentation

Enumerator:
AST_GETDATA_FAILED 
AST_GETDATA_COMPLETE 
AST_GETDATA_TIMEOUT 
AST_GETDATA_INTERRUPTED 
AST_GETDATA_EMPTY_END_TERMINATED  indicates a user terminated empty string rather than an empty string resulting from a timeout or other factors

Definition at line 340 of file app.h.

00340                         {
00341    AST_GETDATA_FAILED = -1,
00342    AST_GETDATA_COMPLETE = 0,
00343    AST_GETDATA_TIMEOUT = 1,
00344    AST_GETDATA_INTERRUPTED = 2,
00345    /*! indicates a user terminated empty string rather than an empty string resulting 
00346     * from a timeout or other factors */
00347    AST_GETDATA_EMPTY_END_TERMINATED = 3,
00348 };

Enumerator:
AST_ACTION_UPONE  adata is unused
AST_ACTION_EXIT  adata is the return value for ast_ivr_menu_run if channel was not hungup
AST_ACTION_CALLBACK  adata is an ast_ivr_callback
AST_ACTION_PLAYBACK  adata is file to play
AST_ACTION_BACKGROUND  adata is file to play
AST_ACTION_PLAYLIST  adata is list of files, separated by ; to play
AST_ACTION_MENU  adata is a pointer to an ast_ivr_menu
AST_ACTION_REPEAT  adata is max # of repeats, cast to a pointer
AST_ACTION_RESTART  adata is like repeat, but resets repeats to 0
AST_ACTION_TRANSFER  adata is a string with exten
[@context]
AST_ACTION_WAITOPTION  adata is a timeout, or 0 for defaults
AST_ACTION_NOOP  adata is unused
AST_ACTION_BACKLIST  adata is list of files separated by ; allows interruption

Definition at line 44 of file app.h.

00044              {
00045    AST_ACTION_UPONE, /*!< adata is unused */
00046    AST_ACTION_EXIT,  /*!< adata is the return value for ast_ivr_menu_run if channel was not hungup */
00047    AST_ACTION_CALLBACK, /*!< adata is an ast_ivr_callback */
00048    AST_ACTION_PLAYBACK, /*!< adata is file to play */
00049    AST_ACTION_BACKGROUND,  /*!< adata is file to play */
00050    AST_ACTION_PLAYLIST, /*!< adata is list of files, separated by ; to play */
00051    AST_ACTION_MENU,  /*!< adata is a pointer to an ast_ivr_menu */
00052    AST_ACTION_REPEAT,   /*!< adata is max # of repeats, cast to a pointer */
00053    AST_ACTION_RESTART,  /*!< adata is like repeat, but resets repeats to 0 */
00054    AST_ACTION_TRANSFER, /*!< adata is a string with exten\verbatim[@context]\endverbatim */
00055    AST_ACTION_WAITOPTION,  /*!< adata is a timeout, or 0 for defaults */
00056    AST_ACTION_NOOP,  /*!< adata is unused */
00057    AST_ACTION_BACKLIST, /*!< adata is list of files separated by ; allows interruption */
00058 } ast_ivr_action;

Enumerator:
AST_LOCK_SUCCESS 
AST_LOCK_TIMEOUT 
AST_LOCK_PATH_NOT_FOUND 
AST_LOCK_FAILURE 

Definition at line 350 of file app.h.

00350                      {
00351    AST_LOCK_SUCCESS = 0,
00352    AST_LOCK_TIMEOUT = -1,
00353    AST_LOCK_PATH_NOT_FOUND = -2,
00354    AST_LOCK_FAILURE = -3,
00355 };

Type of locking to use in ast_lock_path / ast_unlock_path.

Enumerator:
AST_LOCK_TYPE_LOCKFILE 
AST_LOCK_TYPE_FLOCK 

Definition at line 358 of file app.h.

00358                    {
00359    AST_LOCK_TYPE_LOCKFILE = 0,
00360    AST_LOCK_TYPE_FLOCK = 1,
00361 };

Enumerator:
TIMELEN_HOURS 
TIMELEN_MINUTES 
TIMELEN_SECONDS 
TIMELEN_MILLISECONDS 

Definition at line 87 of file app.h.

00087                  {
00088    TIMELEN_HOURS,
00089    TIMELEN_MINUTES,
00090    TIMELEN_SECONDS,
00091    TIMELEN_MILLISECONDS,
00092 };


Function Documentation

unsigned int __ast_app_separate_args ( char *  buf,
char  delim,
int  remove_chars,
char **  array,
int  arraylen 
)

Separate a string into arguments in an array.

Parameters:
buf The string to be parsed (this must be a writable copy, as it will be modified)
delim The character to be used to delimit arguments
remove_chars Remove backslashes and quote characters, while parsing
array An array of 'char *' to be filled in with pointers to the found arguments
arraylen The number of elements in the array (i.e. the number of arguments you will accept)
Note: if there are more arguments in the string than the array will hold, the last element of the array will contain the remaining arguments, not separated.

The array will be completely zeroed by this function before it populates any entries.

Returns:
The number of arguments found, or zero if the function arguments are not valid.

Definition at line 1259 of file app.c.

References paren, and quote().

Referenced by ast_app_separate_args().

01260 {
01261    int argc;
01262    char *scan, *wasdelim = NULL;
01263    int paren = 0, quote = 0, bracket = 0;
01264 
01265    if (!array || !arraylen) {
01266       return 0;
01267    }
01268 
01269    memset(array, 0, arraylen * sizeof(*array));
01270 
01271    if (!buf) {
01272       return 0;
01273    }
01274 
01275    scan = buf;
01276 
01277    for (argc = 0; *scan && (argc < arraylen - 1); argc++) {
01278       array[argc] = scan;
01279       for (; *scan; scan++) {
01280          if (*scan == '(') {
01281             paren++;
01282          } else if (*scan == ')') {
01283             if (paren) {
01284                paren--;
01285             }
01286          } else if (*scan == '[') {
01287             bracket++;
01288          } else if (*scan == ']') {
01289             if (bracket) {
01290                bracket--;
01291             }
01292          } else if (*scan == '"' && delim != '"') {
01293             quote = quote ? 0 : 1;
01294             if (remove_chars) {
01295                /* Remove quote character from argument */
01296                memmove(scan, scan + 1, strlen(scan));
01297                scan--;
01298             }
01299          } else if (*scan == '\\') {
01300             if (remove_chars) {
01301                /* Literal character, don't parse */
01302                memmove(scan, scan + 1, strlen(scan));
01303             } else {
01304                scan++;
01305             }
01306          } else if ((*scan == delim) && !paren && !quote && !bracket) {
01307             wasdelim = scan;
01308             *scan++ = '\0';
01309             break;
01310          }
01311       }
01312    }
01313 
01314    /* If the last character in the original string was the delimiter, then
01315     * there is one additional argument. */
01316    if (*scan || (scan > buf && (scan - 1) == wasdelim)) {
01317       array[argc++] = scan;
01318    }
01319 
01320    return argc;
01321 }

int ast_app_dtget ( struct ast_channel chan,
const char *  context,
char *  collect,
size_t  size,
int  maxlen,
int  timeout 
)

Present a dialtone and collect a certain length extension.

Returns:
Returns 1 on valid extension entered, -1 on hangup, or 0 on invalid extension.
Note:
Note that if 'collect' holds digits already, new digits will be appended, so be sure it's initialized properly
Present a dialtone and collect a certain length extension.

Parameters:
chan struct.
context 
collect 
size 
maxlen 
timeout timeout in milliseconds
Returns:
0 if extension does not exist, 1 if extension exists

Definition at line 115 of file app.c.

References ast_exists_extension(), ast_get_indication_tone(), ast_ignore_pattern(), ast_log(), ast_matchmore_extension(), ast_playtones_start(), ast_playtones_stop(), ast_tone_zone_sound_unref(), ast_waitfordigit(), ast_channel::caller, ast_tone_zone_sound::data, ast_pbx::dtimeoutms, ast_party_caller::id, LOG_NOTICE, ast_party_id::number, ast_channel::pbx, S_COR, ast_party_number::str, ast_party_number::valid, and ast_channel::zone.

Referenced by builtin_atxfer(), builtin_blindtransfer(), and grab_transfer().

00116 {
00117    struct ast_tone_zone_sound *ts;
00118    int res = 0, x = 0;
00119 
00120    if (maxlen > size) {
00121       maxlen = size;
00122    }
00123 
00124    if (!timeout) {
00125       if (chan->pbx && chan->pbx->dtimeoutms) {
00126          timeout = chan->pbx->dtimeoutms;
00127       } else {
00128          timeout = 5000;
00129       }
00130    }
00131 
00132    if ((ts = ast_get_indication_tone(chan->zone, "dial"))) {
00133       res = ast_playtones_start(chan, 0, ts->data, 0);
00134       ts = ast_tone_zone_sound_unref(ts);
00135    } else {
00136       ast_log(LOG_NOTICE, "Huh....? no dial for indications?\n");
00137    }
00138 
00139    for (x = strlen(collect); x < maxlen; ) {
00140       res = ast_waitfordigit(chan, timeout);
00141       if (!ast_ignore_pattern(context, collect)) {
00142          ast_playtones_stop(chan);
00143       }
00144       if (res < 1) {
00145          break;
00146       }
00147       if (res == '#') {
00148          break;
00149       }
00150       collect[x++] = res;
00151       if (!ast_matchmore_extension(chan, context, collect, 1,
00152          S_COR(chan->caller.id.number.valid, chan->caller.id.number.str, NULL))) {
00153          break;
00154       }
00155    }
00156 
00157    if (res >= 0) {
00158       res = ast_exists_extension(chan, context, collect, 1,
00159          S_COR(chan->caller.id.number.valid, chan->caller.id.number.str, NULL)) ? 1 : 0;
00160    }
00161 
00162    return res;
00163 }

int ast_app_getdata ( struct ast_channel c,
const char *  prompt,
char *  s,
int  maxlen,
int  timeout 
)

Plays a stream and gets DTMF data from a channel.

Parameters:
c Which channel one is interacting with
prompt File to pass to ast_streamfile (the one that you wish to play). It is also valid for this to be multiple files concatenated by "&". For example, "file1&file2&file3".
s The location where the DTMF data will be stored
maxlen Max Length of the data
timeout Timeout length waiting for data(in milliseconds). Set to 0 for standard timeout(six seconds), or -1 for no time out.
This function was designed for application programmers for situations where they need to play a message and then get some DTMF data in response to the message. If a digit is pressed during playback, it will immediately break out of the message and continue execution of your code.

Plays a stream and gets DTMF data from a channel.

Parameters:
c The channel to read from
prompt The file to stream to the channel
s The string to read in to. Must be at least the size of your length
maxlen How many digits to read (maximum)
timeout set timeout to 0 for "standard" timeouts. Set timeout to -1 for "ludicrous time" (essentially never times out)

Definition at line 173 of file app.c.

References ast_channel_language(), ast_channel_name(), AST_GETDATA_EMPTY_END_TERMINATED, ast_readstring(), ast_strdupa, ast_streamfile(), ast_strlen_zero(), ast_test_suite_event_notify, ast_pbx::dtimeoutms, ast_channel::pbx, ast_pbx::rtimeoutms, and strsep().

Referenced by auth_exec(), conf_exec(), conf_get_pin(), dictate_exec(), find_conf(), login_exec(), read_exec(), testclient_exec(), testserver_exec(), and vm_exec().

00174 {
00175    int res = 0, to, fto;
00176    char *front, *filename;
00177 
00178    /* XXX Merge with full version? XXX */
00179 
00180    if (maxlen)
00181       s[0] = '\0';
00182 
00183    if (!prompt)
00184       prompt = "";
00185 
00186    filename = ast_strdupa(prompt);
00187    while ((front = strsep(&filename, "&"))) {
00188       ast_test_suite_event_notify("PLAYBACK", "Message: %s\r\nChannel: %s", front, ast_channel_name(c));
00189       if (!ast_strlen_zero(front)) {
00190          res = ast_streamfile(c, front, ast_channel_language(c));
00191          if (res)
00192             continue;
00193       }
00194       if (ast_strlen_zero(filename)) {
00195          /* set timeouts for the last prompt */
00196          fto = c->pbx ? c->pbx->rtimeoutms : 6000;
00197          to = c->pbx ? c->pbx->dtimeoutms : 2000;
00198 
00199          if (timeout > 0) {
00200             fto = to = timeout;
00201          }
00202          if (timeout < 0) {
00203             fto = to = 1000000000;
00204          }
00205       } else {
00206          /* there is more than one prompt, so
00207           * get rid of the long timeout between
00208           * prompts, and make it 50ms */
00209          fto = 50;
00210          to = c->pbx ? c->pbx->dtimeoutms : 2000;
00211       }
00212       res = ast_readstring(c, s, maxlen, to, fto, "#");
00213       if (res == AST_GETDATA_EMPTY_END_TERMINATED) {
00214          return res;
00215       }
00216       if (!ast_strlen_zero(s)) {
00217          return res;
00218       }
00219    }
00220 
00221    return res;
00222 }

int ast_app_getdata_full ( struct ast_channel c,
const char *  prompt,
char *  s,
int  maxlen,
int  timeout,
int  audiofd,
int  ctrlfd 
)

Full version with audiofd and controlfd. NOTE: returns '2' on ctrlfd available, not '1' like other full functions.

Definition at line 227 of file app.c.

References ast_channel_language(), ast_readstring_full(), ast_streamfile(), and ast_strlen_zero().

Referenced by handle_getdata().

00228 {
00229    int res, to = 2000, fto = 6000;
00230 
00231    if (!ast_strlen_zero(prompt)) {
00232       res = ast_streamfile(c, prompt, ast_channel_language(c));
00233       if (res < 0) {
00234          return res;
00235       }
00236    }
00237 
00238    if (timeout > 0) {
00239       fto = to = timeout;
00240    }
00241    if (timeout < 0) {
00242       fto = to = 1000000000;
00243    }
00244 
00245    res = ast_readstring_full(c, s, maxlen, to, fto, "#", audiofd, ctrlfd);
00246 
00247    return res;
00248 }

int ast_app_group_discard ( struct ast_channel chan  ) 

Discard all group counting for a channel.

Definition at line 1219 of file app.c.

References ast_free, AST_RWLIST_REMOVE_CURRENT, AST_RWLIST_TRAVERSE_SAFE_BEGIN, AST_RWLIST_TRAVERSE_SAFE_END, AST_RWLIST_UNLOCK, AST_RWLIST_WRLOCK, ast_group_info::chan, and ast_group_info::group_list.

Referenced by ast_channel_destructor().

01220 {
01221    struct ast_group_info *gi = NULL;
01222 
01223    AST_RWLIST_WRLOCK(&groups);
01224    AST_RWLIST_TRAVERSE_SAFE_BEGIN(&groups, gi, group_list) {
01225       if (gi->chan == chan) {
01226          AST_RWLIST_REMOVE_CURRENT(group_list);
01227          ast_free(gi);
01228       }
01229    }
01230    AST_RWLIST_TRAVERSE_SAFE_END;
01231    AST_RWLIST_UNLOCK(&groups);
01232 
01233    return 0;
01234 }

int ast_app_group_get_count ( const char *  group,
const char *  category 
)

Get the current channel count of the specified group and category.

Definition at line 1141 of file app.c.

References AST_RWLIST_RDLOCK, AST_RWLIST_TRAVERSE, AST_RWLIST_UNLOCK, ast_strlen_zero(), ast_group_info::category, ast_group_info::group, and ast_group_info::group_list.

Referenced by group_count_function_read().

01142 {
01143    struct ast_group_info *gi = NULL;
01144    int count = 0;
01145 
01146    if (ast_strlen_zero(group)) {
01147       return 0;
01148    }
01149 
01150    AST_RWLIST_RDLOCK(&groups);
01151    AST_RWLIST_TRAVERSE(&groups, gi, group_list) {
01152       if (!strcasecmp(gi->group, group) && (ast_strlen_zero(category) || (!ast_strlen_zero(gi->category) && !strcasecmp(gi->category, category)))) {
01153          count++;
01154       }
01155    }
01156    AST_RWLIST_UNLOCK(&groups);
01157 
01158    return count;
01159 }

struct ast_group_info* ast_app_group_list_head ( void   )  [read]

Get the head of the group count list.

Definition at line 1246 of file app.c.

References AST_RWLIST_FIRST.

Referenced by group_count_function_read(), group_function_read(), group_list_function_read(), and group_show_channels().

01247 {
01248    return AST_RWLIST_FIRST(&groups);
01249 }

int ast_app_group_list_rdlock ( void   ) 

Read Lock the group count list.

Definition at line 1241 of file app.c.

References AST_RWLIST_RDLOCK.

Referenced by group_count_function_read(), group_function_read(), group_list_function_read(), and group_show_channels().

01242 {
01243    return AST_RWLIST_RDLOCK(&groups);
01244 }

int ast_app_group_list_unlock ( void   ) 

Unlock the group count list.

Definition at line 1251 of file app.c.

References AST_RWLIST_UNLOCK.

Referenced by group_count_function_read(), group_function_read(), group_list_function_read(), and group_show_channels().

01252 {
01253    return AST_RWLIST_UNLOCK(&groups);
01254 }

int ast_app_group_list_wrlock ( void   ) 

Write Lock the group count list.

Definition at line 1236 of file app.c.

References AST_RWLIST_WRLOCK.

01237 {
01238    return AST_RWLIST_WRLOCK(&groups);
01239 }

int ast_app_group_match_get_count ( const char *  groupmatch,
const char *  category 
)

Get the current channel count of all groups that match the specified pattern and category.

Definition at line 1161 of file app.c.

References ast_log(), AST_RWLIST_RDLOCK, AST_RWLIST_TRAVERSE, AST_RWLIST_UNLOCK, ast_strlen_zero(), ast_group_info::category, ast_group_info::group, ast_group_info::group_list, LOG_ERROR, and LOG_NOTICE.

Referenced by group_match_count_function_read().

01162 {
01163    struct ast_group_info *gi = NULL;
01164    regex_t regexbuf_group;
01165    regex_t regexbuf_category;
01166    int count = 0;
01167 
01168    if (ast_strlen_zero(groupmatch)) {
01169       ast_log(LOG_NOTICE, "groupmatch empty\n");
01170       return 0;
01171    }
01172 
01173    /* if regex compilation fails, return zero matches */
01174    if (regcomp(&regexbuf_group, groupmatch, REG_EXTENDED | REG_NOSUB)) {
01175       ast_log(LOG_ERROR, "Regex compile failed on: %s\n", groupmatch);
01176       return 0;
01177    }
01178 
01179    if (!ast_strlen_zero(category) && regcomp(&regexbuf_category, category, REG_EXTENDED | REG_NOSUB)) {
01180       ast_log(LOG_ERROR, "Regex compile failed on: %s\n", category);
01181       return 0;
01182    }
01183 
01184    AST_RWLIST_RDLOCK(&groups);
01185    AST_RWLIST_TRAVERSE(&groups, gi, group_list) {
01186       if (!regexec(&regexbuf_group, gi->group, 0, NULL, 0) && (ast_strlen_zero(category) || (!ast_strlen_zero(gi->category) && !regexec(&regexbuf_category, gi->category, 0, NULL, 0)))) {
01187          count++;
01188       }
01189    }
01190    AST_RWLIST_UNLOCK(&groups);
01191 
01192    regfree(&regexbuf_group);
01193    if (!ast_strlen_zero(category)) {
01194       regfree(&regexbuf_category);
01195    }
01196 
01197    return count;
01198 }

int ast_app_group_set_channel ( struct ast_channel chan,
const char *  data 
)

Set the group for a channel, splitting the provided data into group and category, if specified.

Definition at line 1094 of file app.c.

References ast_app_group_split_group(), AST_RWLIST_INSERT_TAIL, AST_RWLIST_REMOVE_CURRENT, AST_RWLIST_TRAVERSE_SAFE_BEGIN, AST_RWLIST_TRAVERSE_SAFE_END, AST_RWLIST_UNLOCK, AST_RWLIST_WRLOCK, ast_strlen_zero(), calloc, ast_group_info::category, ast_group_info::chan, free, ast_group_info::group, ast_group_info::group_list, and len().

Referenced by dial_exec_full(), and group_function_write().

01095 {
01096    int res = 0;
01097    char group[80] = "", category[80] = "";
01098    struct ast_group_info *gi = NULL;
01099    size_t len = 0;
01100 
01101    if (ast_app_group_split_group(data, group, sizeof(group), category, sizeof(category))) {
01102       return -1;
01103    }
01104 
01105    /* Calculate memory we will need if this is new */
01106    len = sizeof(*gi) + strlen(group) + 1;
01107    if (!ast_strlen_zero(category)) {
01108       len += strlen(category) + 1;
01109    }
01110 
01111    AST_RWLIST_WRLOCK(&groups);
01112    AST_RWLIST_TRAVERSE_SAFE_BEGIN(&groups, gi, group_list) {
01113       if ((gi->chan == chan) && ((ast_strlen_zero(category) && ast_strlen_zero(gi->category)) || (!ast_strlen_zero(gi->category) && !strcasecmp(gi->category, category)))) {
01114          AST_RWLIST_REMOVE_CURRENT(group_list);
01115          free(gi);
01116          break;
01117       }
01118    }
01119    AST_RWLIST_TRAVERSE_SAFE_END;
01120 
01121    if (ast_strlen_zero(group)) {
01122       /* Enable unsetting the group */
01123    } else if ((gi = calloc(1, len))) {
01124       gi->chan = chan;
01125       gi->group = (char *) gi + sizeof(*gi);
01126       strcpy(gi->group, group);
01127       if (!ast_strlen_zero(category)) {
01128          gi->category = (char *) gi + sizeof(*gi) + strlen(group) + 1;
01129          strcpy(gi->category, category);
01130       }
01131       AST_RWLIST_INSERT_TAIL(&groups, gi, group_list);
01132    } else {
01133       res = -1;
01134    }
01135 
01136    AST_RWLIST_UNLOCK(&groups);
01137 
01138    return res;
01139 }

int ast_app_group_split_group ( const char *  data,
char *  group,
int  group_max,
char *  category,
int  category_max 
)

Split a group string into group and category, returning a default category if none is provided.

Definition at line 1067 of file app.c.

References ast_copy_string(), and ast_strlen_zero().

Referenced by ast_app_group_set_channel(), group_count_function_read(), and group_match_count_function_read().

01068 {
01069    int res = 0;
01070    char tmp[256];
01071    char *grp = NULL, *cat = NULL;
01072 
01073    if (!ast_strlen_zero(data)) {
01074       ast_copy_string(tmp, data, sizeof(tmp));
01075       grp = tmp;
01076       if ((cat = strchr(tmp, '@'))) {
01077          *cat++ = '\0';
01078       }
01079    }
01080 
01081    if (!ast_strlen_zero(grp)) {
01082       ast_copy_string(group, grp, group_max);
01083    } else {
01084       *group = '\0';
01085    }
01086 
01087    if (!ast_strlen_zero(cat)) {
01088       ast_copy_string(category, cat, category_max);
01089    }
01090 
01091    return res;
01092 }

int ast_app_group_update ( struct ast_channel oldchan,
struct ast_channel newchan 
)

Update all group counting for a channel to a new one.

Definition at line 1200 of file app.c.

References ast_free, AST_RWLIST_REMOVE_CURRENT, AST_RWLIST_TRAVERSE_SAFE_BEGIN, AST_RWLIST_TRAVERSE_SAFE_END, AST_RWLIST_UNLOCK, AST_RWLIST_WRLOCK, ast_group_info::chan, and ast_group_info::group_list.

Referenced by ast_do_masquerade(), and check_bridge().

01201 {
01202    struct ast_group_info *gi = NULL;
01203 
01204    AST_RWLIST_WRLOCK(&groups);
01205    AST_RWLIST_TRAVERSE_SAFE_BEGIN(&groups, gi, group_list) {
01206       if (gi->chan == old) {
01207          gi->chan = new;
01208       } else if (gi->chan == new) {
01209          AST_RWLIST_REMOVE_CURRENT(group_list);
01210          ast_free(gi);
01211       }
01212    }
01213    AST_RWLIST_TRAVERSE_SAFE_END;
01214    AST_RWLIST_UNLOCK(&groups);
01215 
01216    return 0;
01217 }

int ast_app_has_voicemail ( const char *  mailbox,
const char *  folder 
)

Determine if a given mailbox has any voicemail If folder is NULL, defaults to "INBOX". If folder is "INBOX", includes the number of messages in the "Urgent" folder.

Return values:
1 Mailbox has voicemail
0 No new voicemail in specified mailbox
-1 Failure
Since:
1.0

Definition at line 300 of file app.c.

References ast_has_voicemail_func, and ast_verb.

Referenced by action_mailboxstatus(), has_voicemail(), notify_new_message(), play_dialtone(), poll_mailbox(), run_externnotify(), skinny_register(), and unistim_send_mwi_to_peer().

00301 {
00302    static int warned = 0;
00303    if (ast_has_voicemail_func) {
00304       return ast_has_voicemail_func(mailbox, folder);
00305    }
00306 
00307    if (warned++ % 10 == 0) {
00308       ast_verb(3, "Message check requested for mailbox %s/folder %s but voicemail not loaded.\n", mailbox, folder ? folder : "INBOX");
00309    }
00310    return 0;
00311 }

int ast_app_inboxcount ( const char *  mailbox,
int *  newmsgs,
int *  oldmsgs 
)

Determine number of new/old messages in a mailbox.

Since:
1.0
Parameters:
[in] mailbox Mailbox specification in the format mbox[][&mbox2[]][...]
[out] newmsgs Number of messages in the "INBOX" folder. Includes number of messages in the "Urgent" folder, if any.
[out] oldmsgs Number of messages in the "Old" folder.
Return values:
0 Success
-1 Failure

Definition at line 314 of file app.c.

References ast_inboxcount_func, and ast_verb.

Referenced by sip_send_mwi_to_peer(), and update_registry().

00315 {
00316    static int warned = 0;
00317    if (newmsgs) {
00318       *newmsgs = 0;
00319    }
00320    if (oldmsgs) {
00321       *oldmsgs = 0;
00322    }
00323    if (ast_inboxcount_func) {
00324       return ast_inboxcount_func(mailbox, newmsgs, oldmsgs);
00325    }
00326 
00327    if (warned++ % 10 == 0) {
00328       ast_verb(3, "Message count requested for mailbox %s but voicemail not loaded.\n", mailbox);
00329    }
00330 
00331    return 0;
00332 }

int ast_app_inboxcount2 ( const char *  mailbox,
int *  urgentmsgs,
int *  newmsgs,
int *  oldmsgs 
)

Determine number of urgent/new/old messages in a mailbox.

Parameters:
[in] mailbox the mailbox context to use
[out] urgentmsgs the urgent message count
[out] newmsgs the new message count
[out] oldmsgs the old message count
Returns:
Returns 0 for success, negative upon error
Since:
1.6.1

Definition at line 334 of file app.c.

References ast_inboxcount2_func, ast_inboxcount_func, and ast_verb.

Referenced by action_mailboxcount(), notify_new_message(), and vm_execmain().

00335 {
00336    static int warned = 0;
00337    if (newmsgs) {
00338       *newmsgs = 0;
00339    }
00340    if (oldmsgs) {
00341       *oldmsgs = 0;
00342    }
00343    if (urgentmsgs) {
00344       *urgentmsgs = 0;
00345    }
00346    if (ast_inboxcount_func) {
00347       return ast_inboxcount2_func(mailbox, urgentmsgs, newmsgs, oldmsgs);
00348    }
00349 
00350    if (warned++ % 10 == 0) {
00351       ast_verb(3, "Message count requested for mailbox %s but voicemail not loaded.\n", mailbox);
00352    }
00353 
00354    return 0;
00355 }

int ast_app_messagecount ( const char *  context,
const char *  mailbox,
const char *  folder 
)

Check number of messages in a given context, mailbox, and folder.

Since:
1.4
Parameters:
[in] context Mailbox context
[in] mailbox Mailbox number
[in] folder Mailbox folder
Returns:
Number of messages in the given context, mailbox, and folder. If folder is NULL, folder "INBOX" is assumed. If folder is "INBOX", includes number of messages in the "Urgent" folder.

Definition at line 365 of file app.c.

References ast_messagecount_func, and ast_verb.

Referenced by acf_vmcount_exec().

00366 {
00367    static int warned = 0;
00368    if (ast_messagecount_func) {
00369       return ast_messagecount_func(context, mailbox, folder);
00370    }
00371 
00372    if (!warned) {
00373       warned++;
00374       ast_verb(3, "Message count requested for mailbox %s@%s/%s but voicemail not loaded.\n", mailbox, context, folder);
00375    }
00376 
00377    return 0;
00378 }

void ast_app_options2str64 ( const struct ast_app_option options,
struct ast_flags64 flags,
char *  buf,
size_t  len 
)

Given a list of options array, return an option string based on passed flags.

Parameters:
options The array of possible options declared with AST_APP_OPTIONS
flags The flags of the options that you wish to populate the buffer with
buf The buffer to fill with the string of options
len The maximum length of buf

Definition at line 1982 of file app.c.

References ast_test_flag64.

01983 {
01984    unsigned int i, found = 0;
01985    for (i = 32; i < 128 && found < len; i++) {
01986       if (ast_test_flag64(flags, options[i].flag)) {
01987          buf[found++] = i;
01988       }
01989    }
01990    buf[found] = '\0';
01991 }

int ast_app_parse_options ( const struct ast_app_option options,
struct ast_flags flags,
char **  args,
char *  optstr 
)

Parses a string containing application options and sets flags/arguments.

Parameters:
options The array of possible options declared with AST_APP_OPTIONS
flags The flag structure to have option flags set
args The array of argument pointers to hold arguments found
optstr The string containing the options to be parsed
Returns:
zero for success, non-zero if an error occurs
See also:
AST_APP_OPTIONS

Definition at line 1972 of file app.c.

References parse_options().

Referenced by app_exec(), auth_exec(), bridge_exec(), cdr_read(), cdr_write(), chanspy_exec(), connectedline_write(), controlplayback_exec(), directory_exec(), disa_exec(), dundi_query_read(), dundifunc_read(), extenspy_exec(), forkcdr_exec(), handle_options(), hint_read(), manager_mixmonitor(), minivm_accmess_exec(), minivm_greet_exec(), minivm_record_exec(), mixmonitor_exec(), page_exec(), park_call_exec(), pbx_builtin_background(), pbx_builtin_resetcdr(), pbx_builtin_waitexten(), read_exec(), readexten_exec(), realtime_common(), receivefax_exec(), record_exec(), redirecting_write(), sendfax_exec(), sendurl_exec(), sla_trunk_exec(), smdi_msg_retrieve_read(), sms_exec(), softhangup_exec(), speech_background(), vm_exec(), vm_execmain(), and volume_write().

01973 {
01974    return parse_options(options, flags, args, optstr, 32);
01975 }

int ast_app_parse_options64 ( const struct ast_app_option options,
struct ast_flags64 flags,
char **  args,
char *  optstr 
)

Parses a string containing application options and sets flags/arguments.

Parameters:
options The array of possible options declared with AST_APP_OPTIONS
flags The 64-bit flag structure to have option flags set
args The array of argument pointers to hold arguments found
optstr The string containing the options to be parsed
Returns:
zero for success, non-zero if an error occurs
See also:
AST_APP_OPTIONS

Definition at line 1977 of file app.c.

References parse_options().

Referenced by conf_exec(), dial_exec_full(), find_conf_realtime(), and sayunixtime_exec().

01978 {
01979    return parse_options(options, flags, args, optstr, 64);
01980 }

int ast_app_parse_timelen ( const char *  timestr,
int *  result,
enum ast_timelen  defunit 
)

Common routine to parse time lengths, with optional time unit specifier.

Parameters:
[in] timestr String to parse
[in] defunit Default unit type
[out] result Resulting value, specified in milliseconds
Return values:
0 Success
-1 Failure
Since:
1.8

Definition at line 2182 of file app.c.

References FMT, TIMELEN_HOURS, TIMELEN_MILLISECONDS, TIMELEN_MINUTES, and TIMELEN_SECONDS.

Referenced by ast_eivr_senddtmf(), new_realtime_sqlite3_db(), pbx_builtin_wait(), pbx_builtin_waitexten(), and senddtmf_exec().

02183 {
02184    int res;
02185    char u[10];
02186 #ifdef HAVE_LONG_DOUBLE_WIDER
02187    long double amount;
02188    #define FMT "%30Lf%9s"
02189 #else
02190    double amount;
02191    #define FMT "%30lf%9s"
02192 #endif
02193    if (!timestr) {
02194       return -1;
02195    }
02196 
02197    if ((res = sscanf(timestr, FMT, &amount, u)) == 0) {
02198 #undef FMT
02199       return -1;
02200    } else if (res == 2) {
02201       switch (u[0]) {
02202       case 'h':
02203       case 'H':
02204          unit = TIMELEN_HOURS;
02205          break;
02206       case 's':
02207       case 'S':
02208          unit = TIMELEN_SECONDS;
02209          break;
02210       case 'm':
02211       case 'M':
02212          if (toupper(u[1]) == 'S') {
02213             unit = TIMELEN_MILLISECONDS;
02214          } else if (u[1] == '\0') {
02215             unit = TIMELEN_MINUTES;
02216          }
02217          break;
02218       }
02219    }
02220 
02221    switch (unit) {
02222    case TIMELEN_HOURS:
02223       amount *= 60;
02224       /* fall-through */
02225    case TIMELEN_MINUTES:
02226       amount *= 60;
02227       /* fall-through */
02228    case TIMELEN_SECONDS:
02229       amount *= 1000;
02230       /* fall-through */
02231    case TIMELEN_MILLISECONDS:
02232       ;
02233    }
02234    *result = amount > INT_MAX ? INT_MAX : (int) amount;
02235    return 0;
02236 }

int ast_app_run_macro ( struct ast_channel autoservice_chan,
struct ast_channel macro_chan,
const char *const   macro_name,
const char *const   macro_args 
)

Run a macro on a channel, placing a second channel into autoservice.

Since:
1.8 This is a shorthand method that makes it very easy to run a macro on any given channel. It is perfectly reasonable to supply a NULL autoservice_chan here in case there is no channel to place into autoservice. It is very important that the autoservice_chan parameter is not locked prior to calling ast_app_run_macro. A deadlock could result, otherwise.
Parameters:
autoservice_chan A channel to place into autoservice while the macro is run
macro_chan The channel to run the macro on
macro_name The name of the macro to run
macro_args The arguments to pass to the macro
Return values:
0 success
-1 failure

Definition at line 250 of file app.c.

References ast_autoservice_start(), ast_autoservice_stop(), ast_log(), ast_strlen_zero(), LOG_WARNING, pbx_exec(), pbx_findapp(), and S_OR.

Referenced by ast_channel_connected_line_macro(), ast_channel_redirecting_macro(), and generic_recall().

00251 {
00252    struct ast_app *macro_app;
00253    int res;
00254    char buf[1024];
00255 
00256    macro_app = pbx_findapp("Macro");
00257    if (!macro_app) {
00258       ast_log(LOG_WARNING, "Cannot run macro '%s' because the 'Macro' application in not available\n", macro_name);
00259       return -1;
00260    }
00261    snprintf(buf, sizeof(buf), "%s%s%s", macro_name, ast_strlen_zero(macro_args) ? "" : ",", S_OR(macro_args, ""));
00262    if (autoservice_chan) {
00263       ast_autoservice_start(autoservice_chan);
00264    }
00265    res = pbx_exec(macro_chan, macro_app, buf);
00266    if (autoservice_chan) {
00267       ast_autoservice_stop(autoservice_chan);
00268    }
00269    return res;
00270 }

int ast_app_sayname ( struct ast_channel chan,
const char *  mailbox,
const char *  context 
)

Given a mailbox and context, play that mailbox owner's name to the channel specified.

Parameters:
[in] chan Channel on which to play the name
[in] mailbox Mailbox number from which to retrieve the recording
[in] context Mailbox context from which to locate the mailbox number
Return values:
0 Name played without interruption
dtmf ASCII value of the DTMF which interrupted playback.
-1 Unable to locate mailbox or hangup occurred.
Since:
1.6.1

Definition at line 357 of file app.c.

References ast_sayname_func.

Referenced by common_exec(), and play_mailbox_owner().

00358 {
00359    if (ast_sayname_func) {
00360       return ast_sayname_func(chan, mailbox, context);
00361    }
00362    return -1;
00363 }

void ast_close_fds_above_n ( int  n  ) 

Common routine for child processes, to close all fds prior to exec(2).

Parameters:
[in] n starting file descriptor number for closing all higher file descriptors
Since:
1.6.1

Definition at line 2108 of file app.c.

References closefrom().

Referenced by app_exec(), ast_safe_system(), icesencode(), launch_script(), main(), mp3play(), NBScatplay(), send_waveform_to_fd(), spawn_mp3(), spawn_ras(), and vm_check_password_shell().

02109 {
02110    closefrom(n + 1);
02111 }

int ast_control_streamfile ( struct ast_channel chan,
const char *  file,
const char *  fwd,
const char *  rev,
const char *  stop,
const char *  pause,
const char *  restart,
int  skipms,
long *  offsetms 
)

Stream a file with fast forward, pause, reverse, restart.

Parameters:
chan 
file filename
fwd,rev,stop,pause,restart,skipms,offsetms Before calling this function, set this to be the number of ms to start from the beginning of the file. When the function returns, it will be the number of ms from the beginning where the playback stopped. Pass NULL if you don't care.

Definition at line 563 of file app.c.

References ast_channel::_state, ast_answer(), ast_channel_language(), ast_debug, ast_seekstream(), AST_STATE_UP, ast_stopstream(), ast_streamfile(), ast_tellstream(), ast_verb, ast_waitfordigit(), ast_waitstream_fr(), and ast_channel::stream.

Referenced by controlplayback_exec(), handle_controlstreamfile(), and wait_file().

00567 {
00568    char *breaks = NULL;
00569    char *end = NULL;
00570    int blen = 2;
00571    int res;
00572    long pause_restart_point = 0;
00573    long offset = 0;
00574 
00575    if (offsetms) {
00576       offset = *offsetms * 8; /* XXX Assumes 8kHz */
00577    }
00578 
00579    if (stop) {
00580       blen += strlen(stop);
00581    }
00582    if (suspend) {
00583       blen += strlen(suspend);
00584    }
00585    if (restart) {
00586       blen += strlen(restart);
00587    }
00588 
00589    if (blen > 2) {
00590       breaks = alloca(blen + 1);
00591       breaks[0] = '\0';
00592       if (stop) {
00593          strcat(breaks, stop);
00594       }
00595       if (suspend) {
00596          strcat(breaks, suspend);
00597       }
00598       if (restart) {
00599          strcat(breaks, restart);
00600       }
00601    }
00602    if (chan->_state != AST_STATE_UP) {
00603       res = ast_answer(chan);
00604    }
00605 
00606    if (file) {
00607       if ((end = strchr(file, ':'))) {
00608          if (!strcasecmp(end, ":end")) {
00609             *end = '\0';
00610             end++;
00611          }
00612       }
00613    }
00614 
00615    for (;;) {
00616       ast_stopstream(chan);
00617       res = ast_streamfile(chan, file, ast_channel_language(chan));
00618       if (!res) {
00619          if (pause_restart_point) {
00620             ast_seekstream(chan->stream, pause_restart_point, SEEK_SET);
00621             pause_restart_point = 0;
00622          }
00623          else if (end || offset < 0) {
00624             if (offset == -8) {
00625                offset = 0;
00626             }
00627             ast_verb(3, "ControlPlayback seek to offset %ld from end\n", offset);
00628 
00629             ast_seekstream(chan->stream, offset, SEEK_END);
00630             end = NULL;
00631             offset = 0;
00632          } else if (offset) {
00633             ast_verb(3, "ControlPlayback seek to offset %ld\n", offset);
00634             ast_seekstream(chan->stream, offset, SEEK_SET);
00635             offset = 0;
00636          }
00637          res = ast_waitstream_fr(chan, breaks, fwd, rev, skipms);
00638       }
00639 
00640       if (res < 1) {
00641          break;
00642       }
00643 
00644       /* We go at next loop if we got the restart char */
00645       if (restart && strchr(restart, res)) {
00646          ast_debug(1, "we'll restart the stream here at next loop\n");
00647          pause_restart_point = 0;
00648          continue;
00649       }
00650 
00651       if (suspend && strchr(suspend, res)) {
00652          pause_restart_point = ast_tellstream(chan->stream);
00653          for (;;) {
00654             ast_stopstream(chan);
00655             if (!(res = ast_waitfordigit(chan, 1000))) {
00656                continue;
00657             } else if (res == -1 || strchr(suspend, res) || (stop && strchr(stop, res))) {
00658                break;
00659             }
00660          }
00661          if (res == *suspend) {
00662             res = 0;
00663             continue;
00664          }
00665       }
00666 
00667       if (res == -1) {
00668          break;
00669       }
00670 
00671       /* if we get one of our stop chars, return it to the calling function */
00672       if (stop && strchr(stop, res)) {
00673          break;
00674       }
00675    }
00676 
00677    if (pause_restart_point) {
00678       offset = pause_restart_point;
00679    } else {
00680       if (chan->stream) {
00681          offset = ast_tellstream(chan->stream);
00682       } else {
00683          offset = -8;  /* indicate end of file */
00684       }
00685    }
00686 
00687    if (offsetms) {
00688       *offsetms = offset / 8; /* samples --> ms ... XXX Assumes 8 kHz */
00689    }
00690 
00691    /* If we are returning a digit cast it as char */
00692    if (res > 0 || chan->stream) {
00693       res = (char)res;
00694    }
00695 
00696    ast_stopstream(chan);
00697 
00698    return res;
00699 }

int ast_dtmf_stream ( struct ast_channel chan,
struct ast_channel peer,
const char *  digits,
int  between,
unsigned int  duration 
)

Send DTMF to a channel.

Parameters:
chan The channel that will receive the DTMF frames
peer (optional) Peer channel that will be autoserviced while the primary channel is receiving DTMF
digits This is a string of characters representing the DTMF digits to be sent to the channel. Valid characters are "0123456789*#abcdABCD". Note: You can pass arguments 'f' or 'F', if you want to Flash the channel (if supported by the channel), or 'w' to add a 500 millisecond pause to the DTMF sequence.
between This is the number of milliseconds to wait in between each DTMF digit. If zero milliseconds is specified, then the default value of 100 will be used.
duration This is the duration that each DTMF digit should have.

Definition at line 380 of file app.c.

References ast_autoservice_start(), ast_autoservice_stop(), ast_channel_start_silence_generator(), ast_channel_stop_silence_generator(), AST_CONTROL_FLASH, ast_indicate(), ast_log(), ast_opt_transmit_silence, ast_safe_sleep(), ast_senddigit(), ast_waitfor(), and LOG_WARNING.

Referenced by ast_bridge_call(), ast_eivr_senddtmf(), bridge_channel_dtmf_stream(), dial_exec_full(), handle_cli_misdn_send_digit(), senddtmf_exec(), testclient_exec(), testserver_exec(), and wait_for_answer().

00381 {
00382    const char *ptr;
00383    int res = 0;
00384    struct ast_silence_generator *silgen = NULL;
00385 
00386    if (!between) {
00387       between = 100;
00388    }
00389 
00390    if (peer) {
00391       res = ast_autoservice_start(peer);
00392    }
00393 
00394    if (!res) {
00395       res = ast_waitfor(chan, 100);
00396    }
00397 
00398    /* ast_waitfor will return the number of remaining ms on success */
00399    if (res < 0) {
00400       if (peer) {
00401          ast_autoservice_stop(peer);
00402       }
00403       return res;
00404    }
00405 
00406    if (ast_opt_transmit_silence) {
00407       silgen = ast_channel_start_silence_generator(chan);
00408    }
00409 
00410    for (ptr = digits; *ptr; ptr++) {
00411       if (*ptr == 'w') {
00412          /* 'w' -- wait half a second */
00413          if ((res = ast_safe_sleep(chan, 500))) {
00414             break;
00415          }
00416       } else if (strchr("0123456789*#abcdfABCDF", *ptr)) {
00417          /* Character represents valid DTMF */
00418          if (*ptr == 'f' || *ptr == 'F') {
00419             /* ignore return values if not supported by channel */
00420             ast_indicate(chan, AST_CONTROL_FLASH);
00421          } else {
00422             ast_senddigit(chan, *ptr, duration);
00423          }
00424          /* pause between digits */
00425          if ((res = ast_safe_sleep(chan, between))) {
00426             break;
00427          }
00428       } else {
00429          ast_log(LOG_WARNING, "Illegal DTMF character '%c' in string. (0-9*#aAbBcCdD allowed)\n", *ptr);
00430       }
00431    }
00432 
00433    if (peer) {
00434       /* Stop autoservice on the peer channel, but don't overwrite any error condition
00435          that has occurred previously while acting on the primary channel */
00436       if (ast_autoservice_stop(peer) && !res) {
00437          res = -1;
00438       }
00439    }
00440 
00441    if (silgen) {
00442       ast_channel_stop_silence_generator(chan, silgen);
00443    }
00444 
00445    return res;
00446 }

int ast_get_encoded_char ( const char *  stream,
char *  result,
size_t *  consumed 
)

Decode an encoded control or extended ASCII character.

Parameters:
[in] stream String to decode
[out] result Decoded character
[out] consumed Number of characters used in stream to encode the character
Return values:
-1 Stream is of zero length
0 Success

Definition at line 1993 of file app.c.

References ast_debug, ast_log(), ast_strlen_zero(), and LOG_ERROR.

Referenced by ast_get_encoded_str(), ast_str_get_encoded_str(), cut_internal(), filter(), function_fieldnum_helper(), function_fieldqty_helper(), replace(), shift_pop(), and unshift_push().

01994 {
01995    int i;
01996    *consumed = 1;
01997    *result = 0;
01998    if (ast_strlen_zero(stream)) {
01999       *consumed = 0;
02000       return -1;
02001    }
02002 
02003    if (*stream == '\\') {
02004       *consumed = 2;
02005       switch (*(stream + 1)) {
02006       case 'n':
02007          *result = '\n';
02008          break;
02009       case 'r':
02010          *result = '\r';
02011          break;
02012       case 't':
02013          *result = '\t';
02014          break;
02015       case 'x':
02016          /* Hexadecimal */
02017          if (strchr("0123456789ABCDEFabcdef", *(stream + 2)) && *(stream + 2) != '\0') {
02018             *consumed = 3;
02019             if (*(stream + 2) <= '9') {
02020                *result = *(stream + 2) - '0';
02021             } else if (*(stream + 2) <= 'F') {
02022                *result = *(stream + 2) - 'A' + 10;
02023             } else {
02024                *result = *(stream + 2) - 'a' + 10;
02025             }
02026          } else {
02027             ast_log(LOG_ERROR, "Illegal character '%c' in hexadecimal string\n", *(stream + 2));
02028             return -1;
02029          }
02030 
02031          if (strchr("0123456789ABCDEFabcdef", *(stream + 3)) && *(stream + 3) != '\0') {
02032             *consumed = 4;
02033             *result <<= 4;
02034             if (*(stream + 3) <= '9') {
02035                *result += *(stream + 3) - '0';
02036             } else if (*(stream + 3) <= 'F') {
02037                *result += *(stream + 3) - 'A' + 10;
02038             } else {
02039                *result += *(stream + 3) - 'a' + 10;
02040             }
02041          }
02042          break;
02043       case '0':
02044          /* Octal */
02045          *consumed = 2;
02046          for (i = 2; ; i++) {
02047             if (strchr("01234567", *(stream + i)) && *(stream + i) != '\0') {
02048                (*consumed)++;
02049                ast_debug(5, "result was %d, ", *result);
02050                *result <<= 3;
02051                *result += *(stream + i) - '0';
02052                ast_debug(5, "is now %d\n", *result);
02053             } else {
02054                break;
02055             }
02056          }
02057          break;
02058       default:
02059          *result = *(stream + 1);
02060       }
02061    } else {
02062       *result = *stream;
02063       *consumed = 1;
02064    }
02065    return 0;
02066 }

char* ast_get_encoded_str ( const char *  stream,
char *  result,
size_t  result_len 
)

Decode a stream of encoded control or extended ASCII characters.

Parameters:
[in] stream Encoded string
[out] result Decoded string
[in] result_len Maximum size of the result buffer
Returns:
A pointer to the result string

Definition at line 2068 of file app.c.

References ast_get_encoded_char().

Referenced by listfilter(), mgcp_new(), replace(), sip_addheader(), and sip_new().

02069 {
02070    char *cur = result;
02071    size_t consumed;
02072 
02073    while (cur < result + result_size - 1 && !ast_get_encoded_char(stream, cur, &consumed)) {
02074       cur++;
02075       stream += consumed;
02076    }
02077    *cur = '\0';
02078    return result;
02079 }

void ast_install_vm_functions ( int(*)(const char *mailbox, const char *folder)  has_voicemail_func,
int(*)(const char *mailbox, int *newmsgs, int *oldmsgs)  inboxcount_func,
int(*)(const char *mailbox, int *urgentmsgs, int *newmsgs, int *oldmsgs)  inboxcount2_func,
int(*)(const char *context, const char *mailbox, const char *folder)  messagecount_func,
int(*)(struct ast_channel *chan, const char *mailbox, const char *context sayname_func 
)

Set voicemail function callbacks.

Parameters:
[in] has_voicemail_func set function pointer
[in] inboxcount2_func set function pointer
[in] sayname_func set function pointer
[in] inboxcount_func set function pointer
[in] messagecount_func set function pointer
Version:
1.6.1 Added inboxcount2_func, sayname_func

Definition at line 278 of file app.c.

References ast_has_voicemail_func, ast_inboxcount2_func, ast_inboxcount_func, ast_messagecount_func, and ast_sayname_func.

Referenced by load_module().

00283 {
00284    ast_has_voicemail_func = has_voicemail_func;
00285    ast_inboxcount_func = inboxcount_func;
00286    ast_inboxcount2_func = inboxcount2_func;
00287    ast_messagecount_func = messagecount_func;
00288    ast_sayname_func = sayname_func;
00289 }

int ast_ivr_menu_run ( struct ast_channel c,
struct ast_ivr_menu menu,
void *  cbdata 
)

Runs an IVR menu.

Returns:
returns 0 on successful completion, -1 on hangup, or -2 on user error in menu

Definition at line 1851 of file app.c.

References ast_ivr_menu_run_internal().

Referenced by skel_exec().

01852 {
01853    int res = ast_ivr_menu_run_internal(chan, menu, cbdata);
01854    /* Hide internal coding */
01855    return res > 0 ? 0 : res;
01856 }

int ast_linear_stream ( struct ast_channel chan,
const char *  filename,
int  fd,
int  allowoverride 
)

Stream a filename (or file descriptor) as a generator.

Definition at line 533 of file app.c.

References linear_state::allowoverride, ast_activate_generator(), ast_calloc, ast_config_AST_DATA_DIR, ast_copy_string(), ast_log(), ast_strlen_zero(), linear_state::autoclose, errno, linear_state::fd, linearstream, and LOG_WARNING.

00534 {
00535    struct linear_state *lin;
00536    char tmpf[256];
00537    int res = -1;
00538    int autoclose = 0;
00539    if (fd < 0) {
00540       if (ast_strlen_zero(filename)) {
00541          return -1;
00542       }
00543       autoclose = 1;
00544       if (filename[0] == '/') {
00545          ast_copy_string(tmpf, filename, sizeof(tmpf));
00546       } else {
00547          snprintf(tmpf, sizeof(tmpf), "%s/%s/%s", ast_config_AST_DATA_DIR, "sounds", filename);
00548       }
00549       if ((fd = open(tmpf, O_RDONLY)) < 0) {
00550          ast_log(LOG_WARNING, "Unable to open file '%s': %s\n", tmpf, strerror(errno));
00551          return -1;
00552       }
00553    }
00554    if ((lin = ast_calloc(1, sizeof(*lin)))) {
00555       lin->fd = fd;
00556       lin->allowoverride = allowoverride;
00557       lin->autoclose = autoclose;
00558       res = ast_activate_generator(chan, &linearstream, lin);
00559    }
00560    return res;
00561 }

enum AST_LOCK_RESULT ast_lock_path ( const char *  path  ) 

Lock a filesystem path.

Parameters:
path the path to be locked
Returns:
one of AST_LOCK_RESULT values

Definition at line 1523 of file app.c.

References AST_LOCK_FAILURE, ast_lock_path_flock(), ast_lock_path_lockfile(), ast_lock_type, AST_LOCK_TYPE_FLOCK, and AST_LOCK_TYPE_LOCKFILE.

Referenced by ast_module_reload(), and vm_lock_path().

01524 {
01525    enum AST_LOCK_RESULT r = AST_LOCK_FAILURE;
01526 
01527    switch (ast_lock_type) {
01528    case AST_LOCK_TYPE_LOCKFILE:
01529       r = ast_lock_path_lockfile(path);
01530       break;
01531    case AST_LOCK_TYPE_FLOCK:
01532       r = ast_lock_path_flock(path);
01533       break;
01534    }
01535 
01536    return r;
01537 }

int ast_play_and_prepend ( struct ast_channel chan,
char *  playfile,
char *  recordfile,
int  maxtime_sec,
char *  fmt,
int *  duration,
int *  sound_duration,
int  beep,
int  silencethreshold,
int  maxsilence_ms 
)

Record a file based on input frm a channel. Recording is performed in 'prepend' mode which works a little differently from normal recordings This function will not play a success message due to post-recording control in the application this was added for.

Parameters:
chan the channel being recorded
playfile Filename of sound to play before recording begins
recordfile Filename to save the recording
maxtime_sec Longest possible message length in seconds
fmt string containing all formats to be recorded delimited by '|'
duration pointer to integer for storing length of the recording
sound_duration pointer to integer for storing length of the recording minus all silence
beep whether to play a beep to prompt the recording
silencethreshold tolerance of noise levels that can be considered silence for the purpose of silence timeout, -1 for default
maxsilence_ms length of time in milliseconds which will trigger a timeout from silence, -1 for default.
Return values:
-1 failure or hangup
'S' Recording ended from silence timeout
't' Recording either exceeded maximum duration or the call was ended via DTMF

Definition at line 1060 of file app.c.

References __ast_play_and_record(), default_acceptdtmf, and default_canceldtmf.

Referenced by vm_forwardoptions().

01061 {
01062    return __ast_play_and_record(chan, playfile, recordfile, maxtime, fmt, duration, sound_duration, beep, silencethreshold, maxsilence, NULL, 1, default_acceptdtmf, default_canceldtmf, 1);
01063 }

int ast_play_and_record ( struct ast_channel chan,
const char *  playfile,
const char *  recordfile,
int  maxtime_sec,
const char *  fmt,
int *  duration,
int *  sound_duration,
int  silencethreshold,
int  maxsilence_ms,
const char *  path 
)

Record a file based on input from a channel. Use default accept and cancel DTMF. This function will play "auth-thankyou" upon successful recording.

Parameters:
chan the channel being recorded
playfile Filename of sound to play before recording begins
recordfile Filename to save the recording
maxtime_sec Longest possible message length in seconds
fmt string containing all formats to be recorded delimited by '|'
duration pointer to integer for storing length of the recording
sound_duration pointer to integer for storing length of the recording minus all silence
silencethreshold tolerance of noise levels that can be considered silence for the purpose of silence timeout, -1 for default
maxsilence_ms length of time in milliseconds which will trigger a timeout from silence, -1 for default
path Optional filesystem path to unlock
Return values:
-1 failure or hangup
'S' Recording ended from silence timeout
't' Recording ended from the message exceeding the maximum duration
dtmfchar Recording ended via the return value's DTMF character for either cancel or accept.

Definition at line 1055 of file app.c.

References __ast_play_and_record(), default_acceptdtmf, and default_canceldtmf.

Referenced by app_exec(), ast_record_review(), conf_rec_name(), conf_run(), and setup_privacy_args().

01056 {
01057    return __ast_play_and_record(chan, playfile, recordfile, maxtime, fmt, duration, sound_duration, 0, silencethreshold, maxsilence, path, 0, default_acceptdtmf, default_canceldtmf, 0);
01058 }

int ast_play_and_record_full ( struct ast_channel chan,
const char *  playfile,
const char *  recordfile,
int  maxtime_sec,
const char *  fmt,
int *  duration,
int *  sound_duration,
int  silencethreshold,
int  maxsilence_ms,
const char *  path,
const char *  acceptdtmf,
const char *  canceldtmf 
)

Record a file based on input from a channel This function will play "auth-thankyou" upon successful recording.

Parameters:
chan the channel being recorded
playfile Filename of sound to play before recording begins
recordfile Filename to save the recording
maxtime_sec Longest possible message length in seconds
fmt string containing all formats to be recorded delimited by '|'
duration pointer to integer for storing length of the recording
sound_duration pointer to integer for storing length of the recording minus all silence
silencethreshold tolerance of noise levels that can be considered silence for the purpose of silence timeout, -1 for default
maxsilence_ms Length of time in milliseconds which will trigger a timeout from silence, -1 for default
path Optional filesystem path to unlock
acceptdtmf Character of DTMF to end and accept the recording
canceldtmf Character of DTMF to end and cancel the recording
Return values:
-1 failure or hangup
'S' Recording ended from silence timeout
't' Recording ended from the message exceeding the maximum duration
dtmfchar Recording ended via the return value's DTMF character for either cancel or accept.

Definition at line 1050 of file app.c.

References __ast_play_and_record(), default_acceptdtmf, default_canceldtmf, and S_OR.

Referenced by play_record_review().

01051 {
01052    return __ast_play_and_record(chan, playfile, recordfile, maxtime, fmt, duration, sound_duration, 0, silencethreshold, maxsilence, path, 0, S_OR(acceptdtmf, default_acceptdtmf), S_OR(canceldtmf, default_canceldtmf), 0);
01053 }

int ast_play_and_wait ( struct ast_channel chan,
const char *  fn 
)

Play a stream and wait for a digit, returning the digit that was pressed.

Definition at line 701 of file app.c.

References ast_channel_language(), ast_channel_name(), AST_DIGIT_ANY, ast_stopstream(), ast_streamfile(), ast_test_suite_event_notify, and ast_waitstream().

Referenced by __ast_play_and_record(), advanced_options(), ast_record_review(), ast_say_counted_adjective(), ast_say_counted_noun(), dialout(), forward_message(), get_folder(), get_folder2(), leave_voicemail(), minivm_greet_exec(), play_message_category(), play_message_duration(), play_record_review(), vm_authenticate(), vm_browse_messages_en(), vm_browse_messages_es(), vm_browse_messages_gr(), vm_browse_messages_he(), vm_browse_messages_it(), vm_browse_messages_pt(), vm_browse_messages_vi(), vm_browse_messages_zh(), vm_exec(), vm_execmain(), vm_forwardoptions(), vm_instructions_en(), vm_instructions_zh(), vm_intro(), vm_intro_cs(), vm_intro_de(), vm_intro_en(), vm_intro_es(), vm_intro_fr(), vm_intro_gr(), vm_intro_he(), vm_intro_it(), vm_intro_multilang(), vm_intro_nl(), vm_intro_no(), vm_intro_pl(), vm_intro_pt(), vm_intro_pt_BR(), vm_intro_se(), vm_intro_vi(), vm_intro_zh(), vm_newuser(), vm_options(), vm_play_folder_name(), vm_play_folder_name_gr(), vm_play_folder_name_pl(), vm_play_folder_name_ua(), vm_tempgreeting(), and vmauthenticate().

00702 {
00703    int d = 0;
00704 
00705    ast_test_suite_event_notify("PLAYBACK", "Message: %s\r\nChannel: %s", fn, ast_channel_name(chan));
00706    if ((d = ast_streamfile(chan, fn, ast_channel_language(chan)))) {
00707       return d;
00708    }
00709 
00710    d = ast_waitstream(chan, AST_DIGIT_ANY);
00711 
00712    ast_stopstream(chan);
00713 
00714    return d;
00715 }

char* ast_read_textfile ( const char *  file  ) 

Read a file into asterisk.

Definition at line 1858 of file app.c.

References ast_free, ast_log(), ast_malloc, errno, and LOG_WARNING.

Referenced by readfile_exec().

01859 {
01860    int fd, count = 0, res;
01861    char *output = NULL;
01862    struct stat filesize;
01863 
01864    if (stat(filename, &filesize) == -1) {
01865       ast_log(LOG_WARNING, "Error can't stat %s\n", filename);
01866       return NULL;
01867    }
01868 
01869    count = filesize.st_size + 1;
01870 
01871    if ((fd = open(filename, O_RDONLY)) < 0) {
01872       ast_log(LOG_WARNING, "Cannot open file '%s' for reading: %s\n", filename, strerror(errno));
01873       return NULL;
01874    }
01875 
01876    if ((output = ast_malloc(count))) {
01877       res = read(fd, output, count - 1);
01878       if (res == count - 1) {
01879          output[res] = '\0';
01880       } else {
01881          ast_log(LOG_WARNING, "Short read of %s (%d of %d): %s\n", filename, res, count - 1, strerror(errno));
01882          ast_free(output);
01883          output = NULL;
01884       }
01885    }
01886 
01887    close(fd);
01888 
01889    return output;
01890 }

int ast_record_review ( struct ast_channel chan,
const char *  playfile,
const char *  recordfile,
int  maxtime,
const char *  fmt,
int *  duration,
const char *  path 
)

Allow to record message and have a review option.

Definition at line 1555 of file app.c.

References AST_DIGIT_ANY, ast_dsp_get_threshold_from_settings(), ast_log(), ast_play_and_record(), ast_play_and_wait(), ast_stream_and_wait(), ast_verb, ast_waitfordigit(), LOG_WARNING, maxsilence, silencethreshold, and THRESHOLD_SILENCE.

Referenced by conf_run().

01556 {
01557    int silencethreshold;
01558    int maxsilence = 0;
01559    int res = 0;
01560    int cmd = 0;
01561    int max_attempts = 3;
01562    int attempts = 0;
01563    int recorded = 0;
01564    int message_exists = 0;
01565    /* Note that urgent and private are for flagging messages as such in the future */
01566 
01567    /* barf if no pointer passed to store duration in */
01568    if (!duration) {
01569       ast_log(LOG_WARNING, "Error ast_record_review called without duration pointer\n");
01570       return -1;
01571    }
01572 
01573    cmd = '3';   /* Want to start by recording */
01574 
01575    silencethreshold = ast_dsp_get_threshold_from_settings(THRESHOLD_SILENCE);
01576 
01577    while ((cmd >= 0) && (cmd != 't')) {
01578       switch (cmd) {
01579       case '1':
01580          if (!message_exists) {
01581             /* In this case, 1 is to record a message */
01582             cmd = '3';
01583             break;
01584          } else {
01585             ast_stream_and_wait(chan, "vm-msgsaved", "");
01586             cmd = 't';
01587             return res;
01588          }
01589       case '2':
01590          /* Review */
01591          ast_verb(3, "Reviewing the recording\n");
01592          cmd = ast_stream_and_wait(chan, recordfile, AST_DIGIT_ANY);
01593          break;
01594       case '3':
01595          message_exists = 0;
01596          /* Record */
01597          ast_verb(3, "R%secording\n", recorded == 1 ? "e-r" : "");
01598          recorded = 1;
01599          if ((cmd = ast_play_and_record(chan, playfile, recordfile, maxtime, fmt, duration, NULL, silencethreshold, maxsilence, path)) == -1) {
01600             /* User has hung up, no options to give */
01601             return cmd;
01602          }
01603          if (cmd == '0') {
01604             break;
01605          } else if (cmd == '*') {
01606             break;
01607          } else {
01608             /* If all is well, a message exists */
01609             message_exists = 1;
01610             cmd = 0;
01611          }
01612          break;
01613       case '4':
01614       case '5':
01615       case '6':
01616       case '7':
01617       case '8':
01618       case '9':
01619       case '*':
01620       case '#':
01621          cmd = ast_play_and_wait(chan, "vm-sorry");
01622          break;
01623       default:
01624          if (message_exists) {
01625             cmd = ast_play_and_wait(chan, "vm-review");
01626          } else {
01627             if (!(cmd = ast_play_and_wait(chan, "vm-torerecord"))) {
01628                cmd = ast_waitfordigit(chan, 600);
01629             }
01630          }
01631 
01632          if (!cmd) {
01633             cmd = ast_waitfordigit(chan, 6000);
01634          }
01635          if (!cmd) {
01636             attempts++;
01637          }
01638          if (attempts > max_attempts) {
01639             cmd = 't';
01640          }
01641       }
01642    }
01643    if (cmd == 't') {
01644       cmd = 0;
01645    }
01646    return cmd;
01647 }

void ast_replace_sigchld ( void   ) 

Replace the SIGCHLD handler.

Normally, Asterisk has a SIGCHLD handler that is cleaning up all zombie processes from forking elsewhere in Asterisk. However, if you want to wait*() on the process to retrieve information about it's exit status, then this signal handler needs to be temporarily replaced.

Code that executes this function *must* call ast_unreplace_sigchld() after it is finished doing the wait*().

Definition at line 1015 of file asterisk.c.

References ast_mutex_lock, ast_mutex_unlock, null_sig_handler, safe_system_level, safe_system_lock, and safe_system_prev_handler.

Referenced by ast_safe_fork(), and ast_safe_system().

01016 {
01017    unsigned int level;
01018 
01019    ast_mutex_lock(&safe_system_lock);
01020    level = safe_system_level++;
01021 
01022    /* only replace the handler if it has not already been done */
01023    if (level == 0) {
01024       sigaction(SIGCHLD, &null_sig_handler, &safe_system_prev_handler);
01025    }
01026 
01027    ast_mutex_unlock(&safe_system_lock);
01028 }

int ast_safe_fork ( int  stop_reaper  ) 

Common routine to safely fork without a chance of a signal handler firing badly in the child.

Parameters:
[in] stop_reaper flag to determine if sigchld handler is replaced or not
Since:
1.6.1

Definition at line 2113 of file app.c.

References ast_calloc, AST_LIST_INSERT_TAIL, AST_LIST_LOCK, AST_LIST_UNLOCK, ast_log(), ast_pthread_create_background, AST_PTHREADT_NULL, ast_replace_sigchld(), errno, zombie::list, LOG_ERROR, LOG_WARNING, zombie::pid, and shaun_of_the_dead().

Referenced by app_exec(), filestream_destructor(), icesencode(), launch_script(), mp3play(), NBScatplay(), send_waveform_to_fd(), spawn_mp3(), spawn_ras(), statpost(), and vm_check_password_shell().

02114 {
02115    sigset_t signal_set, old_set;
02116    int pid;
02117 
02118    /* Don't let the default signal handler for children reap our status */
02119    if (stop_reaper) {
02120       ast_replace_sigchld();
02121    }
02122 
02123    sigfillset(&signal_set);
02124    pthread_sigmask(SIG_BLOCK, &signal_set, &old_set);
02125 
02126    pid = fork();
02127 
02128    if (pid != 0) {
02129       /* Fork failed or parent */
02130       pthread_sigmask(SIG_SETMASK, &old_set, NULL);
02131       if (!stop_reaper && pid > 0) {
02132          struct zombie *cur = ast_calloc(1, sizeof(*cur));
02133          if (cur) {
02134             cur->pid = pid;
02135             AST_LIST_LOCK(&zombies);
02136             AST_LIST_INSERT_TAIL(&zombies, cur, list);
02137             AST_LIST_UNLOCK(&zombies);
02138             if (shaun_of_the_dead_thread == AST_PTHREADT_NULL) {
02139                if (ast_pthread_create_background(&shaun_of_the_dead_thread, NULL, shaun_of_the_dead, NULL)) {
02140                   ast_log(LOG_ERROR, "Shaun of the Dead wants to kill zombies, but can't?!!\n");
02141                   shaun_of_the_dead_thread = AST_PTHREADT_NULL;
02142                }
02143             }
02144          }
02145       }
02146       return pid;
02147    } else {
02148       /* Child */
02149 #ifdef HAVE_CAP
02150       cap_t cap = cap_from_text("cap_net_admin-eip");
02151 
02152       if (cap_set_proc(cap)) {
02153          ast_log(LOG_WARNING, "Unable to remove capabilities.\n");
02154       }
02155       cap_free(cap);
02156 #endif
02157 
02158       /* Before we unblock our signals, return our trapped signals back to the defaults */
02159       signal(SIGHUP, SIG_DFL);
02160       signal(SIGCHLD, SIG_DFL);
02161       signal(SIGINT, SIG_DFL);
02162       signal(SIGURG, SIG_DFL);
02163       signal(SIGTERM, SIG_DFL);
02164       signal(SIGPIPE, SIG_DFL);
02165       signal(SIGXFSZ, SIG_DFL);
02166 
02167       /* unblock important signal handlers */
02168       if (pthread_sigmask(SIG_UNBLOCK, &signal_set, NULL)) {
02169          ast_log(LOG_WARNING, "unable to unblock signals: %s\n", strerror(errno));
02170          _exit(1);
02171       }
02172 
02173       return pid;
02174    }
02175 }

void ast_safe_fork_cleanup ( void   ) 

Common routine to cleanup after fork'ed process is complete (if reaping was stopped).

Since:
1.6.1

Definition at line 2177 of file app.c.

References ast_unreplace_sigchld().

Referenced by agi_exec_full(), and run_ras().

02178 {
02179    ast_unreplace_sigchld();
02180 }

int ast_safe_system ( const char *  s  ) 

Safely spawn an external program while closing file descriptors.

Note:
This replaces the system call in all Asterisk modules

Definition at line 1045 of file asterisk.c.

References ast_close_fds_above_n(), ast_log(), ast_opt_high_priority, ast_replace_sigchld(), ast_set_priority(), ast_unreplace_sigchld(), errno, LOG_WARNING, status, WEXITSTATUS, and WIFEXITED.

Referenced by add_email_attachment(), alarmreceiver_exec(), ast_monitor_stop(), consolehandler(), convert_bdb_to_sqlite3(), mixmonitor_thread(), notify_message(), process_text_line(), remoteconsolehandler(), rotate_file(), run_externnotify(), sendmail(), sendpage(), system_exec_helper(), and vm_change_password_shell().

01046 {
01047    pid_t pid;
01048    int res;
01049    struct rusage rusage;
01050    int status;
01051 
01052 #if defined(HAVE_WORKING_FORK) || defined(HAVE_WORKING_VFORK)
01053    ast_replace_sigchld();
01054 
01055 #ifdef HAVE_WORKING_FORK
01056    pid = fork();
01057 #else
01058    pid = vfork();
01059 #endif   
01060 
01061    if (pid == 0) {
01062 #ifdef HAVE_CAP
01063       cap_t cap = cap_from_text("cap_net_admin-eip");
01064 
01065       if (cap_set_proc(cap)) {
01066          /* Careful with order! Logging cannot happen after we close FDs */
01067          ast_log(LOG_WARNING, "Unable to remove capabilities.\n");
01068       }
01069       cap_free(cap);
01070 #endif
01071 #ifdef HAVE_WORKING_FORK
01072       if (ast_opt_high_priority)
01073          ast_set_priority(0);
01074       /* Close file descriptors and launch system command */
01075       ast_close_fds_above_n(STDERR_FILENO);
01076 #endif
01077       execl("/bin/sh", "/bin/sh", "-c", s, (char *) NULL);
01078       _exit(1);
01079    } else if (pid > 0) {
01080       for (;;) {
01081          res = wait4(pid, &status, 0, &rusage);
01082          if (res > -1) {
01083             res = WIFEXITED(status) ? WEXITSTATUS(status) : -1;
01084             break;
01085          } else if (errno != EINTR) 
01086             break;
01087       }
01088    } else {
01089       ast_log(LOG_WARNING, "Fork failed: %s\n", strerror(errno));
01090       res = -1;
01091    }
01092 
01093    ast_unreplace_sigchld();
01094 #else /* !defined(HAVE_WORKING_FORK) && !defined(HAVE_WORKING_VFORK) */
01095    res = -1;
01096 #endif
01097 
01098    return res;
01099 }

void ast_set_lock_type ( enum AST_LOCK_TYPE  type  ) 

Set the type of locks used by ast_lock_path().

Parameters:
type the locking type to use

Definition at line 1518 of file app.c.

References ast_lock_type.

Referenced by ast_readconfig().

01519 {
01520    ast_lock_type = type;
01521 }

int ast_str_get_encoded_str ( struct ast_str **  str,
int  maxlen,
const char *  stream 
)

Decode a stream of encoded control or extended ASCII characters.

Definition at line 2081 of file app.c.

References ast_get_encoded_char(), ast_str_buffer(), ast_str_make_space(), ast_str_set(), ast_str_size(), ast_str_update(), and zombie::next.

Referenced by sendtext_exec(), and system_exec_helper().

02082 {
02083    char next, *buf;
02084    size_t offset = 0;
02085    size_t consumed;
02086 
02087    if (strchr(stream, '\\')) {
02088       while (!ast_get_encoded_char(stream, &next, &consumed)) {
02089          if (offset + 2 > ast_str_size(*str) && maxlen > -1) {
02090             ast_str_make_space(str, maxlen > 0 ? maxlen : (ast_str_size(*str) + 48) * 2 - 48);
02091          }
02092          if (offset + 2 > ast_str_size(*str)) {
02093             break;
02094          }
02095          buf = ast_str_buffer(*str);
02096          buf[offset++] = next;
02097          stream += consumed;
02098       }
02099       buf = ast_str_buffer(*str);
02100       buf[offset++] = '\0';
02101       ast_str_update(*str);
02102    } else {
02103       ast_str_set(str, maxlen, "%s", stream);
02104    }
02105    return 0;
02106 }

AST_THREADSTORAGE_EXTERNAL ( ast_str_thread_global_buf   ) 

void ast_uninstall_vm_functions ( void   ) 

Definition at line 291 of file app.c.

References ast_has_voicemail_func, ast_inboxcount2_func, ast_inboxcount_func, ast_messagecount_func, and ast_sayname_func.

Referenced by unload_module().

00292 {
00293    ast_has_voicemail_func = NULL;
00294    ast_inboxcount_func = NULL;
00295    ast_inboxcount2_func = NULL;
00296    ast_messagecount_func = NULL;
00297    ast_sayname_func = NULL;
00298 }

int ast_unlock_path ( const char *  path  ) 

Unlock a path.

Definition at line 1539 of file app.c.

References ast_lock_type, AST_LOCK_TYPE_FLOCK, AST_LOCK_TYPE_LOCKFILE, ast_unlock_path_flock(), and ast_unlock_path_lockfile().

Referenced by __ast_play_and_record(), access_counter_file(), ast_module_reload(), close_mailbox(), copy_message(), count_messages(), leave_voicemail(), open_mailbox(), resequence_mailbox(), and save_to_folder().

01540 {
01541    int r = 0;
01542 
01543    switch (ast_lock_type) {
01544    case AST_LOCK_TYPE_LOCKFILE:
01545       r = ast_unlock_path_lockfile(path);
01546       break;
01547    case AST_LOCK_TYPE_FLOCK:
01548       r = ast_unlock_path_flock(path);
01549       break;
01550    }
01551 
01552    return r;
01553 }

void ast_unreplace_sigchld ( void   ) 

Restore the SIGCHLD handler.

This function is called after a call to ast_replace_sigchld. It restores the SIGCHLD handler that cleans up any zombie processes.

Definition at line 1030 of file asterisk.c.

References ast_mutex_lock, ast_mutex_unlock, safe_system_level, safe_system_lock, and safe_system_prev_handler.

Referenced by ast_safe_fork_cleanup(), and ast_safe_system().

01031 {
01032    unsigned int level;
01033 
01034    ast_mutex_lock(&safe_system_lock);
01035    level = --safe_system_level;
01036 
01037    /* only restore the handler if we are the last one */
01038    if (level == 0) {
01039       sigaction(SIGCHLD, &safe_system_prev_handler, NULL);
01040    }
01041 
01042    ast_mutex_unlock(&safe_system_lock);
01043 }


Generated on Fri Feb 10 06:34:18 2012 for Asterisk - The Open Source Telephony Project by  doxygen 1.5.6