00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "asterisk.h"
00035
00036 ASTERISK_FILE_VERSION(__FILE__, "$Revision: 385689 $")
00037
00038 #include <fcntl.h>
00039 #include <sys/signal.h>
00040
00041 #include "asterisk/lock.h"
00042 #include "asterisk/channel.h"
00043 #include "asterisk/config.h"
00044 #include "asterisk/module.h"
00045 #include "asterisk/pbx.h"
00046 #include "asterisk/sched.h"
00047 #include "asterisk/io.h"
00048 #include "asterisk/acl.h"
00049 #include "asterisk/callerid.h"
00050 #include "asterisk/file.h"
00051 #include "asterisk/cli.h"
00052 #include "asterisk/app.h"
00053 #include "asterisk/rtp_engine.h"
00054 #include "asterisk/causes.h"
00055
00056 static const char tdesc[] = "Multicast RTP Paging Channel Driver";
00057
00058
00059 static struct ast_channel *multicast_rtp_request(const char *type, struct ast_format_cap *cap, const struct ast_channel *requestor, const char *data, int *cause);
00060 static int multicast_rtp_call(struct ast_channel *ast, const char *dest, int timeout);
00061 static int multicast_rtp_hangup(struct ast_channel *ast);
00062 static struct ast_frame *multicast_rtp_read(struct ast_channel *ast);
00063 static int multicast_rtp_write(struct ast_channel *ast, struct ast_frame *f);
00064
00065
00066 static struct ast_channel_tech multicast_rtp_tech = {
00067 .type = "MulticastRTP",
00068 .description = tdesc,
00069 .requester = multicast_rtp_request,
00070 .call = multicast_rtp_call,
00071 .hangup = multicast_rtp_hangup,
00072 .read = multicast_rtp_read,
00073 .write = multicast_rtp_write,
00074 };
00075
00076
00077 static struct ast_frame *multicast_rtp_read(struct ast_channel *ast)
00078 {
00079 return &ast_null_frame;
00080 }
00081
00082
00083 static int multicast_rtp_write(struct ast_channel *ast, struct ast_frame *f)
00084 {
00085 struct ast_rtp_instance *instance = ast_channel_tech_pvt(ast);
00086
00087 return ast_rtp_instance_write(instance, f);
00088 }
00089
00090
00091 static int multicast_rtp_call(struct ast_channel *ast, const char *dest, int timeout)
00092 {
00093 struct ast_rtp_instance *instance = ast_channel_tech_pvt(ast);
00094
00095 ast_queue_control(ast, AST_CONTROL_ANSWER);
00096
00097 return ast_rtp_instance_activate(instance);
00098 }
00099
00100
00101 static int multicast_rtp_hangup(struct ast_channel *ast)
00102 {
00103 struct ast_rtp_instance *instance = ast_channel_tech_pvt(ast);
00104
00105 ast_rtp_instance_destroy(instance);
00106
00107 ast_channel_tech_pvt_set(ast, NULL);
00108
00109 return 0;
00110 }
00111
00112
00113 static struct ast_channel *multicast_rtp_request(const char *type, struct ast_format_cap *cap, const struct ast_channel *requestor, const char *data, int *cause)
00114 {
00115 char *tmp = ast_strdupa(data), *multicast_type = tmp, *destination, *control;
00116 struct ast_rtp_instance *instance;
00117 struct ast_sockaddr control_address;
00118 struct ast_sockaddr destination_address;
00119 struct ast_channel *chan;
00120 struct ast_format fmt;
00121 ast_best_codec(cap, &fmt);
00122
00123 ast_sockaddr_setnull(&control_address);
00124
00125
00126 if (ast_strlen_zero(multicast_type)) {
00127 goto failure;
00128 }
00129
00130 if (!(destination = strchr(tmp, '/'))) {
00131 goto failure;
00132 }
00133 *destination++ = '\0';
00134
00135 if ((control = strchr(destination, '/'))) {
00136 *control++ = '\0';
00137 if (!ast_sockaddr_parse(&control_address, control,
00138 PARSE_PORT_REQUIRE)) {
00139 goto failure;
00140 }
00141 }
00142
00143 if (!ast_sockaddr_parse(&destination_address, destination,
00144 PARSE_PORT_REQUIRE)) {
00145 goto failure;
00146 }
00147
00148 if (!(instance = ast_rtp_instance_new("multicast", NULL, &control_address, multicast_type))) {
00149 goto failure;
00150 }
00151
00152 if (!(chan = ast_channel_alloc(1, AST_STATE_DOWN, "", "", "", "", "", requestor ? ast_channel_linkedid(requestor) : "", 0, "MulticastRTP/%p", instance))) {
00153 ast_rtp_instance_destroy(instance);
00154 goto failure;
00155 }
00156
00157 ast_rtp_instance_set_remote_address(instance, &destination_address);
00158
00159 ast_channel_tech_set(chan, &multicast_rtp_tech);
00160
00161 ast_format_cap_add(ast_channel_nativeformats(chan), &fmt);
00162 ast_format_copy(ast_channel_writeformat(chan), &fmt);
00163 ast_format_copy(ast_channel_rawwriteformat(chan), &fmt);
00164 ast_format_copy(ast_channel_readformat(chan), &fmt);
00165 ast_format_copy(ast_channel_rawreadformat(chan), &fmt);
00166
00167 ast_channel_tech_pvt_set(chan, instance);
00168
00169 return chan;
00170
00171 failure:
00172 *cause = AST_CAUSE_FAILURE;
00173 return NULL;
00174 }
00175
00176
00177 static int load_module(void)
00178 {
00179 if (!(multicast_rtp_tech.capabilities = ast_format_cap_alloc())) {
00180 return AST_MODULE_LOAD_DECLINE;
00181 }
00182 ast_format_cap_add_all(multicast_rtp_tech.capabilities);
00183 if (ast_channel_register(&multicast_rtp_tech)) {
00184 ast_log(LOG_ERROR, "Unable to register channel class 'MulticastRTP'\n");
00185 return AST_MODULE_LOAD_DECLINE;
00186 }
00187
00188 return AST_MODULE_LOAD_SUCCESS;
00189 }
00190
00191
00192 static int unload_module(void)
00193 {
00194 ast_channel_unregister(&multicast_rtp_tech);
00195 multicast_rtp_tech.capabilities = ast_format_cap_destroy(multicast_rtp_tech.capabilities);
00196
00197 return 0;
00198 }
00199
00200 AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "Multicast RTP Paging Channel",
00201 .load = load_module,
00202 .unload = unload_module,
00203 .load_pri = AST_MODPRI_CHANNEL_DRIVER,
00204 );