Mon Sep 20 2010 00:22:48

Asterisk developer's documentation


func_aes.c

Go to the documentation of this file.
00001 /*
00002  * Asterisk -- An open source telephony toolkit.
00003  *
00004  * Copyright (C) 2009, Digium, Inc.
00005  *
00006  * See http://www.asterisk.org for more information about
00007  * the Asterisk project. Please do not directly contact
00008  * any of the maintainers of this project for assistance;
00009  * the project provides a web site, mailing lists and IRC
00010  * channels for your use.
00011  *
00012  * This program is free software, distributed under the terms of
00013  * the GNU General Public License Version 2. See the LICENSE file
00014  * at the top of the source tree.
00015  */
00016 
00017 /*! \file
00018  *
00019  * \brief AES encryption/decryption dialplan functions
00020  *
00021  * \author David Vossel <dvossel@digium.com>
00022  * \ingroup functions
00023  */
00024 
00025 
00026 #include "asterisk.h"
00027 
00028 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 172548 $")
00029 
00030 #include "asterisk/module.h"
00031 #include "asterisk/pbx.h"
00032 #include "asterisk/app.h"
00033 #include "asterisk/aes.h"
00034 
00035 #define AES_BLOCK_SIZE 16
00036 
00037 /*** DOCUMENTATION
00038    <function name="AES_ENCRYPT" language="en_US">
00039       <synopsis>
00040          Encrypt a string with AES given a 16 character key.
00041       </synopsis>
00042       <syntax>
00043          <parameter name="key" required="true">
00044             <para>AES Key</para>
00045          </parameter>
00046          <parameter name="string" required="true">
00047             <para>Input string</para>
00048          </parameter>
00049       </syntax>
00050       <description>
00051          <para>Returns an AES encrypted string encoded in base64.</para>
00052       </description>
00053    </function>
00054    <function name="AES_DECRYPT" language="en_US">
00055       <synopsis>
00056          Decrypt a string encoded in base64 with AES given a 16 character key.
00057       </synopsis>
00058       <syntax>
00059          <parameter name="key" required="true">
00060             <para>AES Key</para>
00061          </parameter>
00062          <parameter name="string" required="true">
00063             <para>Input string.</para>
00064          </parameter>
00065       </syntax>
00066       <description>
00067          <para>Returns the plain text string.</para>
00068       </description>
00069    </function>
00070  ***/
00071 
00072 
00073 static int aes_helper(struct ast_channel *chan, const char *cmd, char *data,
00074           char *buf, size_t len)
00075 {
00076    unsigned char curblock[AES_BLOCK_SIZE] = { 0, };
00077    char *tmp;
00078    char *tmpP;
00079    int data_len, encrypt;
00080    ast_aes_encrypt_key ecx;                        /*  AES 128 Encryption context */
00081    ast_aes_decrypt_key dcx;
00082 
00083    AST_DECLARE_APP_ARGS(args,
00084       AST_APP_ARG(key);
00085       AST_APP_ARG(data);
00086    );
00087 
00088    AST_STANDARD_APP_ARGS(args, data);
00089 
00090    if (ast_strlen_zero(args.data) || ast_strlen_zero(args.key)) {
00091       ast_log(LOG_WARNING, "Syntax: %s(<key>,<data>) - missing argument!\n", cmd);
00092       return -1;
00093    }
00094 
00095    if (strlen(args.key) != AES_BLOCK_SIZE) {        /* key must be of 16 characters in length, 128 bits */
00096       ast_log(LOG_WARNING, "Syntax: %s(<key>,<data>) - <key> parameter must be exactly 16 characters!\n", cmd);
00097       return -1;
00098    }
00099 
00100    ast_aes_encrypt_key((unsigned char *) args.key, &ecx);   /* encryption:  plaintext -> encryptedtext -> base64 */
00101    ast_aes_decrypt_key((unsigned char *) args.key, &dcx);   /* decryption:  base64 -> encryptedtext -> plaintext */
00102    tmp = ast_calloc(1, len);                     /* requires a tmp buffer for the base64 decode */
00103    tmpP = tmp;
00104    encrypt = strcmp("AES_DECRYPT", cmd);           /* -1 if encrypting, 0 if decrypting */
00105 
00106    if (encrypt) {                                  /* if decrypting first decode src to base64 */
00107       ast_copy_string(tmp, args.data, len);
00108       data_len = strlen(tmp);
00109    } else {
00110       data_len = ast_base64decode((unsigned char *) tmp, args.data, len);
00111    }
00112 
00113    if (data_len >= len) {                        /* make sure to not go over buffer len */
00114       ast_log(LOG_WARNING, "Syntax: %s(<keys>,<data>) - <data> exceeds buffer length.  Result may be truncated!\n", cmd);
00115       data_len = len - 1;
00116    }
00117 
00118    while (data_len > 0) {
00119       memset(curblock, 0, AES_BLOCK_SIZE);
00120       memcpy(curblock, tmpP, (data_len < AES_BLOCK_SIZE) ? data_len : AES_BLOCK_SIZE);
00121       if (encrypt) {
00122          ast_aes_encrypt(curblock, (unsigned char *) tmpP, &ecx);
00123       } else {
00124          ast_aes_decrypt(curblock, (unsigned char *) tmpP, &dcx);
00125       }
00126       tmpP += AES_BLOCK_SIZE;
00127       data_len -= AES_BLOCK_SIZE;
00128    }
00129 
00130    if (encrypt) {                            /* if encrypting encode result to base64 */
00131       ast_base64encode(buf, (unsigned char *) tmp, strlen(tmp), len);
00132    } else {
00133       memcpy(buf, tmp, len);
00134    }
00135    ast_free(tmp);
00136 
00137    return 0;
00138 }
00139 
00140 static struct ast_custom_function aes_encrypt_function = {
00141    .name = "AES_ENCRYPT",
00142    .read = aes_helper,
00143 };
00144 
00145 static struct ast_custom_function aes_decrypt_function = {
00146    .name = "AES_DECRYPT",
00147    .read = aes_helper,
00148 };
00149 
00150 static int unload_module(void)
00151 {
00152    int res = ast_custom_function_unregister(&aes_decrypt_function);
00153    return res | ast_custom_function_unregister(&aes_encrypt_function);
00154 }
00155 
00156 static int load_module(void)
00157 {
00158    int res = ast_custom_function_register(&aes_decrypt_function);
00159    res |= ast_custom_function_register(&aes_encrypt_function);
00160    return res ? AST_MODULE_LOAD_DECLINE : AST_MODULE_LOAD_SUCCESS;
00161 }
00162 
00163 AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "AES dialplan functions");