Asterisk - The Open Source Telephony Project GIT-master-f36a736
Functions | Variables
func_base64.c File Reference

Use the base64 as functions. More...

#include "asterisk.h"
#include "asterisk/module.h"
#include "asterisk/pbx.h"
#include "asterisk/utils.h"
#include "asterisk/strings.h"
Include dependency graph for func_base64.c:

Go to the source code of this file.

Functions

static void __reg_module (void)
 
static void __unreg_module (void)
 
struct ast_moduleAST_MODULE_SELF_SYM (void)
 
static int base64_buf_helper (struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len)
 
static int base64_helper (struct ast_channel *chan, const char *cmd, char *data, char *buf, struct ast_str **str, ssize_t len)
 
static int base64_str_helper (struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, ssize_t len)
 
static int load_module (void)
 
static int unload_module (void)
 

Variables

static struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_LOAD_ORDER , .description = "base64 encode/decode dialplan functions" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = AST_BUILDOPT_SUM, .load = load_module, .unload = unload_module, .load_pri = AST_MODPRI_DEFAULT, .support_level = AST_MODULE_SUPPORT_CORE, }
 
static const struct ast_module_infoast_module_info = &__mod_info
 
static struct ast_custom_function base64_decode_function
 
static struct ast_custom_function base64_encode_function
 

Detailed Description

Use the base64 as functions.

Definition in file func_base64.c.

Function Documentation

◆ __reg_module()

static void __reg_module ( void  )
static

Definition at line 160 of file func_base64.c.

◆ __unreg_module()

static void __unreg_module ( void  )
static

Definition at line 160 of file func_base64.c.

◆ AST_MODULE_SELF_SYM()

struct ast_module * AST_MODULE_SELF_SYM ( void  )

Definition at line 160 of file func_base64.c.

◆ base64_buf_helper()

static int base64_buf_helper ( struct ast_channel chan,
const char *  cmd,
char *  data,
char *  buf,
size_t  len 
)
static

Definition at line 124 of file func_base64.c.

126{
127 return base64_helper(chan, cmd, data, buf, NULL, len);
128}
char buf[BUFSIZE]
Definition: eagi_proxy.c:66
static int base64_helper(struct ast_channel *chan, const char *cmd, char *data, char *buf, struct ast_str **str, ssize_t len)
Definition: func_base64.c:75
static int len(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t buflen)
#define NULL
Definition: resample.c:96

References base64_helper(), buf, len(), and NULL.

◆ base64_helper()

static int base64_helper ( struct ast_channel chan,
const char *  cmd,
char *  data,
char *  buf,
struct ast_str **  str,
ssize_t  len 
)
static

Definition at line 75 of file func_base64.c.

77{
78 if (ast_strlen_zero(data)) {
79 ast_log(LOG_WARNING, "Syntax: %s(<data>) - missing argument!\n", cmd);
80 return -1;
81 }
82
83 if (cmd[7] == 'E') {
84 if (buf) {
85 ast_base64encode(buf, (unsigned char *) data, strlen(data), len);
86 } else {
87 if (len >= 0) {
88 /* This calculation accounts for padding and the trailing 0 byte. Borrowed
89 from utils.c */
90 size_t bytes_needed_to_encode_data = ((strlen(data) * 4 / 3 + 3) & ~3) + 1;
91 ast_str_make_space(str, len ? len : ast_str_strlen(*str) + bytes_needed_to_encode_data);
92 }
93 ast_base64encode(ast_str_buffer(*str) + ast_str_strlen(*str), (unsigned char *) data, strlen(data), ast_str_size(*str) - ast_str_strlen(*str));
95 }
96 } else {
97 int decoded_len;
98 if (buf) {
99 decoded_len = ast_base64decode((unsigned char *) buf, data, len);
100 /* add a terminating null at the end of buf, or at the
101 * end of our decoded string, which ever is less */
102 buf[decoded_len <= (len - 1) ? decoded_len : len - 1] = '\0';
103 } else {
104 if (len >= 0) {
105 ast_str_make_space(str, len ? len : ast_str_strlen(*str) + strlen(data) * 3 / 4 + 2);
106 }
107 decoded_len = ast_base64decode((unsigned char *) ast_str_buffer(*str) + ast_str_strlen(*str), data, ast_str_size(*str) - ast_str_strlen(*str));
108 if (len)
109 /* add a terminating null at the end of our
110 * buffer, or at the end of our decoded string,
111 * which ever is less */
112 ast_str_buffer(*str)[decoded_len <= (len - 1) ? decoded_len : len - 1] = '\0';
113 else
114 /* space for the null is allocated above */
115 ast_str_buffer(*str)[decoded_len] = '\0';
116
118 }
119 }
120
121 return 0;
122}
const char * str
Definition: app_jack.c:147
#define ast_log
Definition: astobj2.c:42
#define LOG_WARNING
char * ast_str_buffer(const struct ast_str *buf)
Returns the string buffer within the ast_str buf.
Definition: strings.h:761
static force_inline int attribute_pure ast_strlen_zero(const char *s)
Definition: strings.h:65
#define ast_str_make_space(buf, new_len)
Definition: strings.h:828
void ast_str_update(struct ast_str *buf)
Update the length of the buffer, after using ast_str merely as a buffer.
Definition: strings.h:703
size_t ast_str_strlen(const struct ast_str *buf)
Returns the current length of the string stored within buf.
Definition: strings.h:730
size_t ast_str_size(const struct ast_str *buf)
Returns the current maximum length (without reallocation) of the current buffer.
Definition: strings.h:742
int ast_base64decode(unsigned char *dst, const char *src, int max)
Decode data from base64.
Definition: utils.c:296
int ast_base64encode(char *dst, const unsigned char *src, int srclen, int max)
Encode data in base64.
Definition: utils.c:406

References ast_base64decode(), ast_base64encode(), ast_log, ast_str_buffer(), ast_str_make_space, ast_str_size(), ast_str_strlen(), ast_str_update(), ast_strlen_zero(), buf, len(), LOG_WARNING, and str.

Referenced by base64_buf_helper(), and base64_str_helper().

◆ base64_str_helper()

static int base64_str_helper ( struct ast_channel chan,
const char *  cmd,
char *  data,
struct ast_str **  buf,
ssize_t  len 
)
static

Definition at line 130 of file func_base64.c.

132{
133 return base64_helper(chan, cmd, data, NULL, buf, len);
134}

References base64_helper(), buf, len(), and NULL.

◆ load_module()

static int load_module ( void  )
static

Definition at line 154 of file func_base64.c.

155{
158}
static struct ast_custom_function base64_decode_function
Definition: func_base64.c:142
static struct ast_custom_function base64_encode_function
Definition: func_base64.c:136
#define ast_custom_function_register(acf)
Register a custom function.
Definition: pbx.h:1558

References ast_custom_function_register, base64_decode_function, and base64_encode_function.

◆ unload_module()

static int unload_module ( void  )
static

Definition at line 148 of file func_base64.c.

149{
152}
int ast_custom_function_unregister(struct ast_custom_function *acf)
Unregister a custom function.

References ast_custom_function_unregister(), base64_decode_function, and base64_encode_function.

Variable Documentation

◆ __mod_info

struct ast_module_info __mod_info = { .name = AST_MODULE, .flags = AST_MODFLAG_LOAD_ORDER , .description = "base64 encode/decode dialplan functions" , .key = "This paragraph is copyright (c) 2006 by Digium, Inc. \In order for your module to load, it must return this \key via a function called \"key\". Any code which \includes this paragraph must be licensed under the GNU \General Public License version 2 or later (at your \option). In addition to Digium's general reservations \of rights, Digium expressly reserves the right to \allow other parties to license this paragraph under \different terms. Any use of Digium, Inc. trademarks or \logos (including \"Asterisk\" or \"Digium\") without \express written permission of Digium, Inc. is prohibited.\n" , .buildopt_sum = AST_BUILDOPT_SUM, .load = load_module, .unload = unload_module, .load_pri = AST_MODPRI_DEFAULT, .support_level = AST_MODULE_SUPPORT_CORE, }
static

Definition at line 160 of file func_base64.c.

◆ ast_module_info

const struct ast_module_info* ast_module_info = &__mod_info
static

Definition at line 160 of file func_base64.c.

◆ base64_decode_function

struct ast_custom_function base64_decode_function
static
Initial value:
= {
.name = "BASE64_DECODE",
}
static int base64_buf_helper(struct ast_channel *chan, const char *cmd, char *data, char *buf, size_t len)
Definition: func_base64.c:124
static int base64_str_helper(struct ast_channel *chan, const char *cmd, char *data, struct ast_str **buf, ssize_t len)
Definition: func_base64.c:130

Definition at line 142 of file func_base64.c.

Referenced by load_module(), and unload_module().

◆ base64_encode_function

struct ast_custom_function base64_encode_function
static
Initial value:
= {
.name = "BASE64_ENCODE",
}

Definition at line 136 of file func_base64.c.

Referenced by load_module(), and unload_module().