/* Copyright (C) 2012-2013 Serval Project Inc. 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ /* Portions Copyright (C) 2013 Petter Reinholdtsen Some rights reserved Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include #include #include #ifdef HAVE_POLL_H #include #endif #include "serval.h" #include "conf.h" #include "cli.h" #include "monitor-client.h" #include "str.h" #include "constants.h" #include "strbuf.h" #include "strbuf_helpers.h" int call_token=-1; int seen_audio=0; int monitor_client_fd=-1; struct monitor_state *monitor_state; struct line_state{ struct sched_ent alarm; int fd; char line_buff[1024]; int line_pos; void (*process_line)(char *line); }; static void send_hangup(int session_id){ monitor_client_writeline(monitor_client_fd, "hangup %06x\n",session_id); } static void send_ringing(int session_id){ monitor_client_writeline(monitor_client_fd, "ringing %06x\n",session_id); } static void send_pickup(int session_id){ monitor_client_writeline(monitor_client_fd, "pickup %06x\n",session_id); } static void send_call(const char *sid, const char *caller_id, const char *remote_ext){ monitor_client_writeline(monitor_client_fd, "call %s %s %s\n", sid, caller_id, remote_ext); } static void send_audio(int session_id, unsigned char *buffer, int len, int codec){ monitor_client_writeline_and_data(monitor_client_fd, buffer, len, "audio %06x %d\n", session_id, codec); } static int remote_call(char *UNUSED(cmd), int UNUSED(argc), char **argv, unsigned char *UNUSED(data), int UNUSED(dataLen), void *UNUSED(context)) { int token = strtol(argv[0], NULL, 16); if (call_token != -1){ send_hangup(token); printf("Rejected incoming call, already busy\n"); fflush(stdout); return 1; } call_token = token; seen_audio = 0; printf("Incoming call from %s (%s)\n",argv[3],argv[4]); fflush(stdout); send_ringing(token); return 1; } static int remote_ringing(char *UNUSED(cmd), int UNUSED(argc), char **argv, unsigned char *UNUSED(data), int UNUSED(dataLen), void *UNUSED(context)) { int token = strtol(argv[0], NULL, 16); if (call_token == token){ printf("They're ringing\n"); fflush(stdout); }else send_hangup(token); return 1; } static int remote_pickup(char *UNUSED(cmd), int UNUSED(argc), char **argv, unsigned char *UNUSED(data), int UNUSED(dataLen), void *UNUSED(context)) { int token = strtol(argv[0], NULL, 16); if (call_token == token){ printf("They've picked up\n"); fflush(stdout); }else send_hangup(token); return 1; } static int remote_dialing(char *UNUSED(cmd), int UNUSED(argc), char **argv, unsigned char *UNUSED(data), int UNUSED(dataLen), void *UNUSED(context)) { int token = strtol(argv[0], NULL, 16); if (call_token == -1){ call_token=token; seen_audio=0; printf("Dialling\n"); fflush(stdout); }else send_hangup(token); return 1; } static int remote_hangup(char *UNUSED(cmd), int UNUSED(argc), char **argv, unsigned char *UNUSED(data), int UNUSED(dataLen), void *UNUSED(context)) { int token = strtol(argv[0], NULL, 16); if (call_token == token){ printf("Call ended\n"); fflush(stdout); call_token=-1; } return 1; } static int remote_audio(char *UNUSED(cmd), int UNUSED(argc), char **argv, unsigned char *UNUSED(data), int UNUSED(dataLen), void *UNUSED(context)) { int token = strtol(argv[0], NULL, 16); if (call_token == token){ int codec = strtol(argv[1], NULL, 10); // int start_time = strtol(argv[2], NULL, 10); // int sequence = strtol(argv[3], NULL, 10); switch (codec){ case VOMP_CODEC_TEXT: data[dataLen]=0; printf("%s\n",data); fflush(stdout); break; } }else send_hangup(token); return 1; } static int remote_codecs(char *UNUSED(cmd), int UNUSED(argc), char **argv, unsigned char *UNUSED(data), int UNUSED(dataLen), void *UNUSED(context)) { int token = strtol(argv[0], NULL, 16); if (call_token == token){ int i; printf("Codec list"); for (i=1;iargs[1]; const char *local = parsed->argc >= 3 ? parsed->args[2] : ""; const char *remote = parsed->argc >= 4 ? parsed->args[3] : ""; send_call(sid, local, remote); return 0; } static int console_answer(const struct cli_parsed *UNUSED(parsed), struct cli_context *UNUSED(context)) { if (call_token==-1){ printf("No active call to answer\n"); fflush(stdout); }else send_pickup(call_token); return 0; } static int console_hangup(const struct cli_parsed *UNUSED(parsed), struct cli_context *UNUSED(context)) { if (call_token==-1){ printf("No call to hangup\n"); fflush(stdout); }else send_hangup(call_token); return 0; } static int console_audio(const struct cli_parsed *parsed, struct cli_context *UNUSED(context)) { if (call_token==-1){ printf("No active call\n"); fflush(stdout); }else{ static char buf[256]; static struct strbuf str_buf = STRUCT_STRBUF_EMPTY; strbuf_init(&str_buf, buf, sizeof(buf)); unsigned i; for (i = 0; i < parsed->argc; ++i) { if (i) strbuf_putc(&str_buf, ' '); if (parsed->args[i]) strbuf_toprint_quoted(&str_buf, "\"\"", parsed->args[i]); else strbuf_puts(&str_buf, "NULL"); } send_audio(call_token, (unsigned char *)strbuf_str(&str_buf), strbuf_len(&str_buf), VOMP_CODEC_TEXT); } return 0; } static int console_usage(const struct cli_parsed *parsed, struct cli_context *context); struct cli_schema console_commands[]={ {console_answer,{"answer",NULL},0,"Answer an incoming phone call"}, {console_dial,{"call","","[]","[]",NULL},0,"Start dialling a given person"}, {console_hangup,{"hangup",NULL},0,"Hangup the phone line"}, {console_usage,{"help",NULL},0,"This usage message"}, {console_audio,{"say","...",NULL},0,"Send a text string to the other party"}, {NULL, {NULL, NULL, NULL}, 0, NULL}, }; static int console_usage(const struct cli_parsed *UNUSED(parsed), struct cli_context *UNUSED(context)) { cli_usage(console_commands, XPRINTF_STDIO(stdout)); fflush(stdout); return 0; } static void console_command(char *line){ char *argv[16]; int argc = parse_argv(line, ' ', argv, 16); struct cli_parsed parsed; switch (cli_parse(argc, (const char *const*)argv, console_commands, &parsed)) { case 0: cli_invoke(&parsed, NULL); break; case 1: printf("Unknown command, try help\n"); fflush(stdout); break; case 2: printf("Ambiguous command, try help\n"); fflush(stdout); break; default: printf("Error\n"); fflush(stdout); break; } } static void read_lines(struct sched_ent *alarm){ struct line_state *state=(struct line_state *)alarm; set_nonblock(STDIN_FILENO); int bytes = read(state->alarm.poll.fd, state->line_buff + state->line_pos, sizeof(state->line_buff) - state->line_pos); set_block(STDIN_FILENO); int i = state->line_pos; int processed=0; state->line_pos+=bytes; char *line_start=state->line_buff; for (;iline_pos;i++){ if (state->line_buff[i]=='\n'){ state->line_buff[i]=0; if (*line_start) state->process_line(line_start); processed=i+1; line_start = state->line_buff + processed; } } if (processed){ // squash unprocessed data back to the start of the buffer state->line_pos -= processed; bcopy(state->line_buff, line_start, state->line_pos); } } static void monitor_read(struct sched_ent *alarm){ if (monitor_client_read(alarm->poll.fd, monitor_state, console_handlers, sizeof(console_handlers)/sizeof(struct monitor_command_handler))<0){ unwatch(alarm); monitor_client_close(alarm->poll.fd, monitor_state); alarm->poll.fd=-1; monitor_client_fd=-1; } } int app_vomp_console(const struct cli_parsed *parsed, struct cli_context *UNUSED(context)) { if (config.debug.verbose) DEBUG_cli_parsed(parsed); static struct profile_total stdin_profile={ .name="read_lines", }; struct line_state stdin_state={ .alarm = { .poll = {.fd = STDIN_FILENO,.events = POLLIN}, .function = read_lines, .stats=&stdin_profile }, .fd=0, .process_line=console_command, }; static struct profile_total monitor_profile={ .name="monitor_read", }; struct sched_ent monitor_alarm={ .poll = {.fd = STDIN_FILENO,.events = POLLIN}, .function = monitor_read, .stats=&monitor_profile, }; monitor_client_fd = monitor_client_open(&monitor_state); monitor_client_writeline(monitor_client_fd, "monitor vomp %d\n", VOMP_CODEC_TEXT); set_nonblock(monitor_client_fd); monitor_alarm.poll.fd = monitor_client_fd; watch(&monitor_alarm); watch(&stdin_state.alarm); while(monitor_client_fd!=-1){ fd_poll(); } unwatch(&stdin_state.alarm); return 0; }