2021-10-30 02:41:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Aon plc
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <errno.h>
|
2022-10-31 08:50:09 +08:00
|
|
|
// test
|
2021-10-30 02:41:03 +08:00
|
|
|
#include <pjsua-lib/pjsua.h>
|
|
|
|
|
|
|
|
#define SIGNATURE PJMEDIA_SIG_CLASS_PORT_AUD('D','M')
|
2022-10-31 08:50:09 +08:00
|
|
|
#define DMODEM_DIAL_MODE 0
|
|
|
|
#define DMODEM_ANSWER_MODE 2
|
|
|
|
#define DMODEM_RING_DETECT_MODE 3
|
|
|
|
|
|
|
|
uint8_t mode = DMODEM_DIAL_MODE;
|
|
|
|
uint8_t ringing = 0;
|
|
|
|
pjsua_call_id incoming;
|
2021-10-30 02:41:03 +08:00
|
|
|
|
|
|
|
struct dmodem {
|
|
|
|
pjmedia_port base;
|
|
|
|
pj_timestamp timestamp;
|
|
|
|
pj_sock_t sock;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct dmodem port;
|
|
|
|
static bool destroying = false;
|
|
|
|
static pj_pool_t *pool;
|
|
|
|
|
|
|
|
static void error_exit(const char *title, pj_status_t status) {
|
|
|
|
pjsua_perror(__FILE__, title, status);
|
|
|
|
if (!destroying) {
|
|
|
|
destroying = true;
|
|
|
|
pjsua_destroy();
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static pj_status_t dmodem_put_frame(pjmedia_port *this_port, pjmedia_frame *frame) {
|
|
|
|
struct dmodem *sm = (struct dmodem *)this_port;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
if (frame->type == PJMEDIA_FRAME_TYPE_AUDIO) {
|
|
|
|
if ((len=write(sm->sock, frame->buf, frame->size)) != frame->size) {
|
|
|
|
error_exit("error writing frame",0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return PJ_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pj_status_t dmodem_get_frame(pjmedia_port *this_port, pjmedia_frame *frame) {
|
|
|
|
struct dmodem *sm = (struct dmodem *)this_port;
|
|
|
|
frame->size = PJMEDIA_PIA_AVG_FSZ(&this_port->info); // MAX? what is
|
|
|
|
|
|
|
|
int len;
|
|
|
|
if ((len=read(sm->sock, frame->buf, frame->size)) != frame->size) {
|
|
|
|
error_exit("error reading frame",0);
|
|
|
|
}
|
|
|
|
|
|
|
|
frame->timestamp.u64 = sm->timestamp.u64;
|
|
|
|
frame->type = PJMEDIA_FRAME_TYPE_AUDIO;
|
|
|
|
sm->timestamp.u64 += PJMEDIA_PIA_SPF(&this_port->info);
|
|
|
|
|
|
|
|
return PJ_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static pj_status_t dmodem_on_destroy(pjmedia_port *this_port) {
|
|
|
|
printf("destroy\n");
|
|
|
|
exit(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Callback called by the library when call's state has changed */
|
|
|
|
static void on_call_state(pjsua_call_id call_id, pjsip_event *e) {
|
|
|
|
pjsua_call_info ci;
|
|
|
|
|
|
|
|
PJ_UNUSED_ARG(e);
|
|
|
|
|
|
|
|
pjsua_call_get_info(call_id, &ci);
|
|
|
|
PJ_LOG(3,(__FILE__, "Call %d state=%.*s", call_id,
|
|
|
|
(int)ci.state_text.slen,
|
|
|
|
ci.state_text.ptr));
|
|
|
|
|
|
|
|
if (ci.state == PJSIP_INV_STATE_DISCONNECTED) {
|
2022-10-31 08:50:09 +08:00
|
|
|
if(mode != DMODEM_RING_DETECT_MODE) {
|
|
|
|
close(port.sock);
|
|
|
|
if (!destroying) {
|
|
|
|
destroying = true;
|
|
|
|
pjsua_destroy();
|
|
|
|
exit(0);
|
|
|
|
}
|
2021-10-30 02:41:03 +08:00
|
|
|
}
|
2022-10-31 08:50:09 +08:00
|
|
|
ringing = 0;
|
2021-10-30 02:41:03 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-10-31 08:50:09 +08:00
|
|
|
static void on_incoming_call(pjsua_acc_id acc_id, pjsua_call_id call_id, pjsip_rx_data *rdata) {
|
|
|
|
pjsua_call_info ci;
|
|
|
|
pjsua_call_get_info(call_id, &ci);
|
|
|
|
char* tmp = malloc(pj_strlen(&ci.remote_contact)+1);
|
|
|
|
strcpy(tmp, ci.remote_contact.ptr);
|
|
|
|
tmp[pj_strlen(&ci.remote_contact)] = '\0';
|
|
|
|
printf("Incoming call from: %s\n", tmp);
|
|
|
|
free(tmp);
|
|
|
|
incoming = call_id;
|
|
|
|
ringing = 1;
|
|
|
|
}
|
|
|
|
|
2021-10-30 02:41:03 +08:00
|
|
|
/* Callback called by the library when call's media state has changed */
|
|
|
|
static void on_call_media_state(pjsua_call_id call_id) {
|
|
|
|
pjsua_call_info ci;
|
|
|
|
pjsua_conf_port_id port_id;
|
|
|
|
static int done=0;
|
|
|
|
|
|
|
|
pjsua_call_get_info(call_id, &ci);
|
|
|
|
|
|
|
|
// printf("media_status %d media_cnt %d ci.conf_slot %d aud.conf_slot %d\n",ci.media_status,ci.media_cnt,ci.conf_slot,ci.media[0].stream.aud.conf_slot);
|
|
|
|
if (ci.media_status == PJSUA_CALL_MEDIA_ACTIVE) {
|
|
|
|
if (!done) {
|
|
|
|
pjsua_conf_add_port(pool, &port.base, &port_id);
|
|
|
|
pjsua_conf_connect(ci.conf_slot, port_id);
|
|
|
|
pjsua_conf_connect(port_id, ci.conf_slot);
|
|
|
|
done = 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
done = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
pjsua_acc_id acc_id;
|
|
|
|
pj_status_t status;
|
|
|
|
if (argc != 3) {
|
|
|
|
return -1;
|
|
|
|
}
|
2022-10-31 08:50:09 +08:00
|
|
|
ringing = 0;
|
|
|
|
if(!strncmp(argv[1], "++", 2)) {
|
|
|
|
mode = DMODEM_ANSWER_MODE;
|
|
|
|
} else if(!strncmp(argv[1], "rr", 2)) {
|
|
|
|
mode = DMODEM_RING_DETECT_MODE;
|
|
|
|
}
|
2021-10-30 02:41:03 +08:00
|
|
|
signal(SIGPIPE,SIG_IGN);
|
|
|
|
char *dialstr = argv[1];
|
|
|
|
|
2022-10-31 08:50:09 +08:00
|
|
|
char *sip_user = "dialupuser";
|
|
|
|
char *sip_domain = "192.168.1.2";
|
|
|
|
char *sip_pass = "pppasswdModem1";
|
|
|
|
printf("sip data: user: %s, passwd: %s, server: %s\nMODE: %d\n", sip_user, sip_pass, sip_domain, mode);
|
2021-10-30 02:41:03 +08:00
|
|
|
status = pjsua_create();
|
|
|
|
if (status != PJ_SUCCESS) error_exit("Error in pjsua_create()", status);
|
|
|
|
|
|
|
|
/* Init pjsua */
|
|
|
|
{
|
|
|
|
pjsua_config cfg;
|
|
|
|
pjsua_logging_config log_cfg;
|
|
|
|
pjsua_media_config med_cfg;
|
|
|
|
|
|
|
|
pjsua_config_default(&cfg);
|
|
|
|
cfg.cb.on_call_media_state = &on_call_media_state;
|
|
|
|
cfg.cb.on_call_state = &on_call_state;
|
|
|
|
|
2022-10-31 08:50:09 +08:00
|
|
|
if(mode == DMODEM_RING_DETECT_MODE) {
|
|
|
|
cfg.cb.on_incoming_call = &on_incoming_call;
|
|
|
|
}
|
|
|
|
|
2021-10-30 02:41:03 +08:00
|
|
|
pjsua_logging_config_default(&log_cfg);
|
|
|
|
log_cfg.console_level = 4;
|
|
|
|
|
|
|
|
pjsua_media_config_default(&med_cfg);
|
|
|
|
med_cfg.no_vad = true;
|
|
|
|
med_cfg.ec_tail_len = 0;
|
|
|
|
med_cfg.jb_max = 2000;
|
|
|
|
// med_cfg.jb_init = 200;
|
|
|
|
med_cfg.audio_frame_ptime = 5;
|
|
|
|
|
|
|
|
status = pjsua_init(&cfg, &log_cfg, &med_cfg);
|
|
|
|
if (status != PJ_SUCCESS) error_exit("Error in pjsua_init()", status);
|
|
|
|
}
|
|
|
|
|
|
|
|
pjsua_set_ec(0,0); // maybe?
|
|
|
|
pjsua_set_null_snd_dev();
|
|
|
|
|
|
|
|
/* g711 only */
|
|
|
|
pjsua_codec_info codecs[32];
|
|
|
|
unsigned count = sizeof(codecs)/sizeof(*codecs);
|
|
|
|
pjsua_enum_codecs(codecs,&count);
|
|
|
|
for (int i=0; i<count; i++) {
|
|
|
|
int pri = 0;
|
|
|
|
if (pj_strcmp2(&codecs[i].codec_id,"PCMU/8000/1") == 0) {
|
|
|
|
pri = 1;
|
|
|
|
} else if (pj_strcmp2(&codecs[i].codec_id,"PCMA/8000/1") == 0) {
|
|
|
|
pri = 2;
|
|
|
|
}
|
|
|
|
pjsua_codec_set_priority(&codecs[i].codec_id, pri);
|
|
|
|
// printf("codec: %s %d\n",pj_strbuf(&codecs[i].codec_id),pri);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add UDP transport. */
|
|
|
|
{
|
|
|
|
pjsua_transport_config cfg;
|
|
|
|
|
|
|
|
pjsua_transport_config_default(&cfg);
|
|
|
|
cfg.port = 5060;
|
|
|
|
status = pjsua_transport_create(PJSIP_TRANSPORT_UDP, &cfg, NULL);
|
|
|
|
if (status != PJ_SUCCESS) error_exit("Error creating transport", status);
|
|
|
|
}
|
2022-10-31 08:50:09 +08:00
|
|
|
char buf[384];
|
|
|
|
printf("Initializing pool\n");
|
2021-10-30 02:41:03 +08:00
|
|
|
pj_caching_pool cp;
|
|
|
|
pj_caching_pool_init(&cp, NULL, 1024*1024);
|
|
|
|
pool = pj_pool_create(&cp.factory, "pool1", 4000, 4000, NULL);
|
|
|
|
|
|
|
|
pj_str_t name = pj_str("dmodem");
|
2022-10-31 08:50:09 +08:00
|
|
|
|
2021-10-30 02:41:03 +08:00
|
|
|
memset(&port,0,sizeof(port));
|
|
|
|
port.sock = atoi(argv[2]); // inherited from parent
|
2022-10-31 08:50:09 +08:00
|
|
|
if(mode == DMODEM_RING_DETECT_MODE)
|
|
|
|
port.sock = NULL;
|
2021-10-30 02:41:03 +08:00
|
|
|
pjmedia_port_info_init(&port.base.info, &name, SIGNATURE, 9600, 1, 16, 192);
|
|
|
|
port.base.put_frame = dmodem_put_frame;
|
|
|
|
port.base.get_frame = dmodem_get_frame;
|
|
|
|
port.base.on_destroy = dmodem_on_destroy;
|
|
|
|
|
|
|
|
memset(buf,0,sizeof(buf));
|
|
|
|
write(port.sock, buf, sizeof(buf));
|
|
|
|
/* Initialization is done, now start pjsua */
|
|
|
|
status = pjsua_start();
|
|
|
|
if (status != PJ_SUCCESS) error_exit("Error starting pjsua", status);
|
|
|
|
|
|
|
|
{
|
|
|
|
pjsua_acc_config cfg;
|
|
|
|
pjsua_acc_config_default(&cfg);
|
|
|
|
snprintf(buf,sizeof(buf),"sip:%s@%s",sip_user,sip_domain);
|
|
|
|
pj_strdup2(pool,&cfg.id,buf);
|
|
|
|
snprintf(buf,sizeof(buf),"sip:%s",sip_domain);
|
|
|
|
pj_strdup2(pool,&cfg.reg_uri,buf);
|
2022-10-31 08:50:09 +08:00
|
|
|
cfg.register_on_acc_add = mode ? true : false;
|
2021-10-30 02:41:03 +08:00
|
|
|
cfg.cred_count = 1;
|
|
|
|
cfg.cred_info[0].realm = pj_str("*");
|
|
|
|
cfg.cred_info[0].scheme = pj_str("digest");
|
|
|
|
cfg.cred_info[0].username = pj_str(sip_user);
|
|
|
|
cfg.cred_info[0].data_type = PJSIP_CRED_DATA_PLAIN_PASSWD;
|
|
|
|
cfg.cred_info[0].data = pj_str(sip_pass);
|
|
|
|
|
|
|
|
status = pjsua_acc_add(&cfg, PJ_TRUE, &acc_id);
|
|
|
|
if (status != PJ_SUCCESS) error_exit("Error adding account", status);
|
|
|
|
}
|
|
|
|
|
2022-10-31 08:50:09 +08:00
|
|
|
if(mode == DMODEM_DIAL_MODE) {
|
|
|
|
snprintf(buf,sizeof(buf),"sip:%s@%s",dialstr,sip_domain);
|
|
|
|
printf("calling %s\n",buf);
|
|
|
|
pj_str_t uri = pj_str(buf);
|
|
|
|
pjsua_call_id callid;
|
|
|
|
status = pjsua_call_make_call(acc_id, &uri, 0, NULL, NULL, &callid);
|
|
|
|
if (status != PJ_SUCCESS) error_exit("Error making call", status);
|
|
|
|
}
|
|
|
|
if(mode == DMODEM_ANSWER_MODE) {
|
|
|
|
pjsua_call_id id;
|
|
|
|
char* cid = strrchr(argv[1], '+');
|
|
|
|
id = atoi(cid);
|
|
|
|
status = pjsua_call_answer(id, 200, NULL, NULL);
|
|
|
|
if (status != PJ_SUCCESS) error_exit("Error answering call", status);
|
|
|
|
}
|
2021-10-30 02:41:03 +08:00
|
|
|
struct timespec ts = {100, 0};
|
2022-10-31 08:50:09 +08:00
|
|
|
if(mode == DMODEM_RING_DETECT_MODE)
|
|
|
|
ts.tv_sec = 1;
|
|
|
|
time_t now = time(NULL);
|
2021-10-30 02:41:03 +08:00
|
|
|
while(1) {
|
2022-10-31 08:50:09 +08:00
|
|
|
if(mode == DMODEM_RING_DETECT_MODE) {
|
|
|
|
if(ringing) {
|
|
|
|
char cid[11];
|
|
|
|
snprintf(cid, 10, "%d", incoming);
|
|
|
|
write(atoi(argv[2]), cid, strlen(cid));
|
|
|
|
}
|
|
|
|
}
|
2021-10-30 02:41:03 +08:00
|
|
|
nanosleep(&ts,NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|