Asterisk - The Open Source Telephony Project GIT-master-b023714
Loading...
Searching...
No Matches
func_scramble.c
Go to the documentation of this file.
1/*
2 * Asterisk -- An open source telephony toolkit.
3 *
4 * Copyright (C) 2021, Naveen Albert
5 *
6 * Naveen Albert <asterisk@phreaknet.org>
7 *
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
13 *
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
17 */
18
19/*! \file
20 *
21 * \brief Frequency inverter
22 *
23 * \author Naveen Albert <asterisk@phreaknet.org>
24 *
25 * \ingroup functions
26 *
27 */
28
29/*** MODULEINFO
30 <support_level>extended</support_level>
31 ***/
32
33/*** DOCUMENTATION
34 <function name="SCRAMBLE" language="en_US">
35 <since>
36 <version>16.21.0</version>
37 <version>18.7.0</version>
38 </since>
39 <synopsis>
40 Scrambles audio on a channel.
41 </synopsis>
42 <syntax>
43 <parameter name="direction" required="false">
44 <para>Must be <literal>TX</literal> or <literal>RX</literal>
45 to limit to a specific direction, or <literal>both</literal>
46 for both directions. <literal>remove</literal>
47 will remove an existing scrambler.</para>
48 </parameter>
49 </syntax>
50 <description>
51 <para>Scrambles audio on a channel using whole spectrum inversion.
52 This is not intended to be used for securely scrambling
53 audio. It merely renders obfuscates audio on a channel
54 to render it unintelligible, as a privacy enhancement.</para>
55 <example title="Scramble speech in both directions">
56 same => n,Set(SCRAMBLE()=both)
57 </example>
58 </description>
59 <see-also>
60 <ref type="application">ChanSpy</ref>
61 </see-also>
62 </function>
63 ***/
64
65#include "asterisk.h"
66
67#include "asterisk/module.h"
68#include "asterisk/channel.h"
69#include "asterisk/pbx.h"
70#include "asterisk/utils.h"
71#include "asterisk/audiohook.h"
72#include "asterisk/app.h"
73
74#include <stdio.h>
75#include <string.h>
76
79 unsigned short int tx;
80 unsigned short int rx;
81 unsigned short int state;
82};
83
84static void destroy_callback(void *data)
85{
86 struct scramble_information *ni = data;
87
88 /* Destroy the audiohook, and destroy ourselves */
93 ast_free(ni);
94
95 return;
96}
97
98/*! \brief Static structure for datastore information */
100 .type = "scramble",
101 .destroy = destroy_callback
102};
103
104/* modifies buffer pointed to by 'amp' with inverted values */
105static inline void freq_invert(short *amp, int samples)
106{
107 int i;
108 /* invert every other sample by 1 */
109 for (i = 0; i < samples; i += 2) {
110 amp[i] = -amp[i];
111 }
112}
113
114static int scramble_callback(struct ast_audiohook *audiohook, struct ast_channel *chan, struct ast_frame *frame, enum ast_audiohook_direction direction)
115{
116 struct ast_datastore *datastore = NULL;
117 struct scramble_information *ni = NULL;
118
119 /* If the audiohook is stopping it means the channel is shutting down.... but we let the datastore destroy take care of it */
121 return 0;
122 }
123
124 /* Grab datastore which contains our gain information */
125 if (!(datastore = ast_channel_datastore_find(chan, &scramble_datastore, NULL))) {
126 return 0;
127 }
128
129 if (frame->frametype == AST_FRAME_VOICE) { /* only invert voice frequencies */
130 ni = datastore->data;
131 /* Based on direction of frame, and confirm it is applicable */
132 if (!(direction == AST_AUDIOHOOK_DIRECTION_READ ? ni->rx : ni->tx)) {
133 return 0;
134 }
135 /* Scramble the sample now */
136 freq_invert(frame->data.ptr, frame->samples);
137 }
138 return 0;
139}
140
141/*! \internal \brief Disable scrambling on the channel */
142static int remove_scrambler(struct ast_channel *chan)
143{
144 struct ast_datastore *datastore = NULL;
145 struct scramble_information *data;
146 SCOPED_CHANNELLOCK(chan_lock, chan);
147
149 if (!datastore) {
150 ast_log(AST_LOG_WARNING, "Cannot remove SCRAMBLE from %s: SCRAMBLE not currently enabled\n",
151 ast_channel_name(chan));
152 return -1;
153 }
154 data = datastore->data;
155
156 if (ast_audiohook_remove(chan, &data->audiohook)) {
157 ast_log(AST_LOG_WARNING, "Failed to remove SCRAMBLE audiohook from channel %s\n", ast_channel_name(chan));
158 return -1;
159 }
160
161 if (ast_channel_datastore_remove(chan, datastore)) {
162 ast_log(AST_LOG_WARNING, "Failed to remove SCRAMBLE datastore from channel %s\n",
163 ast_channel_name(chan));
164 return -1;
165 }
166 ast_datastore_free(datastore);
167
168 return 0;
169}
170
171static int scramble_write(struct ast_channel *chan, const char *cmd, char *data, const char *value)
172{
173 char *parse;
174 struct ast_datastore *datastore = NULL;
175 struct scramble_information *ni = NULL;
176 int tx = 1, rx = 1;
177
180 );
181
182 if (!chan) {
183 ast_log(LOG_WARNING, "No channel was provided to %s function.\n", cmd);
184 return -1;
185 }
186
187 parse = ast_strdupa(value);
189
190 if (!strcasecmp(args.direction, "remove")) {
191 return remove_scrambler(chan);
192 }
193 if (!strcasecmp(args.direction, "tx")) {
194 tx = 1;
195 rx = 0;
196 } else if (!strcasecmp(args.direction, "rx")) {
197 rx = 0;
198 tx = 1;
199 } else if (strcasecmp(args.direction, "both")) {
200 ast_log(LOG_ERROR, "Direction must be either RX, TX, both, or remove\n");
201 return -1;
202 }
203 ast_channel_lock(chan);
204 if (!(datastore = ast_channel_datastore_find(chan, &scramble_datastore, NULL))) {
205 /* Allocate a new datastore to hold the reference to this audiohook information */
206 if (!(datastore = ast_datastore_alloc(&scramble_datastore, NULL))) {
207 return 0;
208 }
209 if (!(ni = ast_calloc(1, sizeof(*ni)))) {
210 ast_datastore_free(datastore);
211 return 0;
212 }
215 datastore->data = ni;
216 ast_channel_datastore_add(chan, datastore);
218 } else {
219 ni = datastore->data;
220 }
221 ni->tx = tx;
222 ni->rx = rx;
223 ast_channel_unlock(chan);
224
225 return 0;
226}
227
229 .name = "SCRAMBLE",
230 .write = scramble_write,
231};
232
233static int unload_module(void)
234{
236}
237
238static int load_module(void)
239{
241}
242
243AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Frequency inverting voice scrambler");
Asterisk main include file. File version handling, generic pbx functions.
#define ast_free(a)
Definition astmm.h:180
#define ast_strdupa(s)
duplicate a string in memory from the stack
Definition astmm.h:298
#define ast_calloc(num, len)
A wrapper for calloc()
Definition astmm.h:202
#define ast_log
Definition astobj2.c:42
Audiohooks Architecture.
@ AST_AUDIOHOOK_MANIPULATE_ALL_RATES
Definition audiohook.h:75
int ast_audiohook_init(struct ast_audiohook *audiohook, enum ast_audiohook_type type, const char *source, enum ast_audiohook_init_flags flags)
Initialize an audiohook structure.
Definition audiohook.c:100
int ast_audiohook_remove(struct ast_channel *chan, struct ast_audiohook *audiohook)
Remove an audiohook from a specified channel.
Definition audiohook.c:758
ast_audiohook_direction
Definition audiohook.h:48
@ AST_AUDIOHOOK_DIRECTION_READ
Definition audiohook.h:49
#define ast_audiohook_lock(ah)
Lock an audiohook.
Definition audiohook.h:313
int ast_audiohook_detach(struct ast_audiohook *audiohook)
Detach audiohook from channel.
Definition audiohook.c:587
int ast_audiohook_attach(struct ast_channel *chan, struct ast_audiohook *audiohook)
Attach audiohook to channel.
Definition audiohook.c:521
int ast_audiohook_destroy(struct ast_audiohook *audiohook)
Destroys an audiohook structure.
Definition audiohook.c:124
#define ast_audiohook_unlock(ah)
Unlock an audiohook.
Definition audiohook.h:318
@ AST_AUDIOHOOK_TYPE_MANIPULATE
Definition audiohook.h:38
@ AST_AUDIOHOOK_STATUS_DONE
Definition audiohook.h:45
General Asterisk PBX channel definitions.
const char * ast_channel_name(const struct ast_channel *chan)
int ast_channel_datastore_add(struct ast_channel *chan, struct ast_datastore *datastore)
Add a datastore to a channel.
Definition channel.c:2357
int ast_channel_datastore_remove(struct ast_channel *chan, struct ast_datastore *datastore)
Remove a datastore from a channel.
Definition channel.c:2366
#define ast_channel_lock(chan)
Definition channel.h:2982
#define ast_channel_unlock(chan)
Definition channel.h:2983
struct ast_datastore * ast_channel_datastore_find(struct ast_channel *chan, const struct ast_datastore_info *info, const char *uid)
Find a datastore on a channel.
Definition channel.c:2371
#define ast_datastore_alloc(info, uid)
Definition datastore.h:85
int ast_datastore_free(struct ast_datastore *datastore)
Free a data store object.
Definition datastore.c:68
direction
static int scramble_callback(struct ast_audiohook *audiohook, struct ast_channel *chan, struct ast_frame *frame, enum ast_audiohook_direction direction)
static void freq_invert(short *amp, int samples)
static int remove_scrambler(struct ast_channel *chan)
static const struct ast_datastore_info scramble_datastore
Static structure for datastore information.
static void destroy_callback(void *data)
static int load_module(void)
static struct ast_custom_function scramble_function
static int scramble_write(struct ast_channel *chan, const char *cmd, char *data, const char *value)
static int unload_module(void)
Application convenience functions, designed to give consistent look and feel to Asterisk apps.
#define AST_APP_ARG(name)
Define an application argument.
#define AST_DECLARE_APP_ARGS(name, arglist)
Declare a structure to hold an application's arguments.
#define AST_STANDARD_APP_ARGS(args, parse)
Performs the 'standard' argument separation process for an application.
#define AST_LOG_WARNING
#define LOG_ERROR
#define LOG_WARNING
#define SCOPED_CHANNELLOCK(varname, chan)
scoped lock specialization for channels.
Definition lock.h:626
Asterisk module definitions.
#define AST_MODULE_INFO_STANDARD(keystr, desc)
Definition module.h:581
#define ASTERISK_GPL_KEY
The text the key() function should return.
Definition module.h:46
Core PBX routines and definitions.
#define ast_custom_function_register(acf)
Register a custom function.
Definition pbx.h:1562
int ast_custom_function_unregister(struct ast_custom_function *acf)
Unregister a custom function.
static struct @519 args
#define NULL
Definition resample.c:96
ast_audiohook_manipulate_callback manipulate_callback
Definition audiohook.h:118
enum ast_audiohook_status status
Definition audiohook.h:108
Main Channel structure associated with a channel.
Data structure associated with a custom dialplan function.
Definition pbx.h:118
const char * name
Definition pbx.h:119
Structure for a data store type.
Definition datastore.h:31
const char * type
Definition datastore.h:32
Structure for a data store object.
Definition datastore.h:64
void * data
Definition datastore.h:66
Data structure associated with a single frame of data.
enum ast_frame_type frametype
union ast_frame::@239 data
unsigned short int tx
unsigned short int state
struct ast_audiohook audiohook
unsigned short int rx
int value
Definition syslog.c:37
Utility functions.