2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 1999 - 2005, Digium, Inc.
6 * chan_skinny was developed by Jeremy McNamara & Florian Overkamp
7 * chan_skinny was heavily modified/fixed by North Antara
9 * See http://www.asterisk.org for more information about
10 * the Asterisk project. Please do not directly contact
11 * any of the maintainers of this project for assistance;
12 * the project provides a web site, mailing lists and IRC
13 * channels for your use.
15 * This program is free software, distributed under the terms of
16 * the GNU General Public License Version 2. See the LICENSE file
17 * at the top of the source tree.
22 * \brief Implementation of the Skinny protocol
24 * \author Jeremy McNamara & Florian Overkamp & North Antara
25 * \ingroup channel_drivers
28 /*! \li \ref chan_skinny.c uses the configuration file \ref skinny.conf
29 * \addtogroup configuration_file
32 /*! \page skinny.conf skinny.conf
33 * \verbinclude skinny.conf.sample
37 <support_level>extended</support_level>
42 ASTERISK_REGISTER_FILE()
44 #include <sys/socket.h>
45 #include <netinet/in.h>
46 #include <netinet/tcp.h>
47 #include <sys/ioctl.h>
51 #include <arpa/inet.h>
52 #include <sys/signal.h>
56 #include "asterisk/lock.h"
57 #include "asterisk/channel.h"
58 #include "asterisk/config.h"
59 #include "asterisk/module.h"
60 #include "asterisk/pbx.h"
61 #include "asterisk/sched.h"
62 #include "asterisk/io.h"
63 #include "asterisk/rtp_engine.h"
64 #include "asterisk/netsock2.h"
65 #include "asterisk/acl.h"
66 #include "asterisk/callerid.h"
67 #include "asterisk/cli.h"
68 #include "asterisk/manager.h"
69 #include "asterisk/say.h"
70 #include "asterisk/astdb.h"
71 #include "asterisk/causes.h"
72 #include "asterisk/pickup.h"
73 #include "asterisk/app.h"
74 #include "asterisk/musiconhold.h"
75 #include "asterisk/utils.h"
76 #include "asterisk/dsp.h"
77 #include "asterisk/stringfields.h"
78 #include "asterisk/abstract_jb.h"
79 #include "asterisk/threadstorage.h"
80 #include "asterisk/devicestate.h"
81 #include "asterisk/indications.h"
82 #include "asterisk/linkedlists.h"
83 #include "asterisk/stasis_endpoints.h"
84 #include "asterisk/bridge.h"
85 #include "asterisk/parking.h"
86 #include "asterisk/stasis_channels.h"
87 #include "asterisk/format_cache.h"
90 <manager name="SKINNYdevices" language="en_US">
92 List SKINNY devices (text format).
95 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
98 <para>Lists Skinny devices in text format with details on current status.
99 Devicelist will follow as separate events, followed by a final event called
100 DevicelistComplete.</para>
103 <manager name="SKINNYshowdevice" language="en_US">
105 Show SKINNY device (text format).
108 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
109 <parameter name="Device" required="true">
110 <para>The device name you want to check.</para>
114 <para>Show one SKINNY device with details on current status.</para>
117 <manager name="SKINNYlines" language="en_US">
119 List SKINNY lines (text format).
122 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
125 <para>Lists Skinny lines in text format with details on current status.
126 Linelist will follow as separate events, followed by a final event called
127 LinelistComplete.</para>
130 <manager name="SKINNYshowline" language="en_US">
132 Show SKINNY line (text format).
135 <xi:include xpointer="xpointer(/docs/manager[@name='Login']/syntax/parameter[@name='ActionID'])" />
136 <parameter name="Line" required="true">
137 <para>The line name you want to check.</para>
141 <para>Show one SKINNY line with details on current status.</para>
146 /* Skinny debugging only available if asterisk configured with --enable-dev-mode */
148 static int skinnydebug = 0;
149 char dbgcli_buf[256];
150 #define DEBUG_GENERAL (1 << 1)
151 #define DEBUG_SUB (1 << 2)
152 #define DEBUG_PACKET (1 << 3)
153 #define DEBUG_AUDIO (1 << 4)
154 #define DEBUG_LOCK (1 << 5)
155 #define DEBUG_TEMPLATE (1 << 6)
156 #define DEBUG_THREAD (1 << 7)
157 #define DEBUG_HINT (1 << 8)
158 #define DEBUG_KEEPALIVE (1 << 9)
159 #define SKINNY_DEBUG(type, verb_level, text, ...) \
161 if (skinnydebug & (type)) { \
162 ast_verb(verb_level, "[%d] " text, ast_get_tid(), ##__VA_ARGS__); \
166 #define SKINNY_DEBUG(type, verb_level, text, ...)
169 /*************************************
170 * Skinny/Asterisk Protocol Settings *
171 *************************************/
172 static const char tdesc[] = "Skinny Client Control Protocol (Skinny)";
173 static const char config[] = "skinny.conf";
175 static struct ast_format_cap *default_cap;
178 SKINNY_CODEC_ALAW = 2,
179 SKINNY_CODEC_ULAW = 4,
180 SKINNY_CODEC_G722 = 6,
181 SKINNY_CODEC_G723_1 = 9,
182 SKINNY_CODEC_G729A = 12,
183 SKINNY_CODEC_G726_32 = 82, /* XXX Which packing order does this translate to? */
184 SKINNY_CODEC_H261 = 100,
185 SKINNY_CODEC_H263 = 101
188 #define DEFAULT_SKINNY_PORT 2000
189 #define DEFAULT_SKINNY_BACKLOG 2
190 #define SKINNY_MAX_PACKET 2000
191 #define DEFAULT_AUTH_TIMEOUT 30
192 #define DEFAULT_AUTH_LIMIT 50
196 unsigned int tos_audio;
197 unsigned int tos_video;
199 unsigned int cos_audio;
200 unsigned int cos_video;
201 } qos = { 0, 0, 0, 0, 0, 0 };
203 static int keep_alive = 120;
204 static int auth_timeout = DEFAULT_AUTH_TIMEOUT;
205 static int auth_limit = DEFAULT_AUTH_LIMIT;
206 static int unauth_sessions = 0;
207 static char immed_dialchar;
208 static char vmexten[AST_MAX_EXTENSION]; /* Voicemail pilot number */
209 static char used_context[AST_MAX_EXTENSION]; /* placeholder to check if context are already used in regcontext */
210 static char regcontext[AST_MAX_CONTEXT]; /* Context for auto-extension */
211 static char date_format[6] = "D-M-Y";
212 static char version_id[16] = "P002F202";
214 #if __BYTE_ORDER == __LITTLE_ENDIAN
215 #define letohl(x) (x)
216 #define letohs(x) (x)
217 #define htolel(x) (x)
218 #define htoles(x) (x)
220 #if defined(HAVE_BYTESWAP_H)
221 #include <byteswap.h>
222 #define letohl(x) bswap_32(x)
223 #define letohs(x) bswap_16(x)
224 #define htolel(x) bswap_32(x)
225 #define htoles(x) bswap_16(x)
226 #elif defined(HAVE_SYS_ENDIAN_SWAP16)
227 #include <sys/endian.h>
228 #define letohl(x) __swap32(x)
229 #define letohs(x) __swap16(x)
230 #define htolel(x) __swap32(x)
231 #define htoles(x) __swap16(x)
232 #elif defined(HAVE_SYS_ENDIAN_BSWAP16)
233 #include <sys/endian.h>
234 #define letohl(x) bswap32(x)
235 #define letohs(x) bswap16(x)
236 #define htolel(x) bswap32(x)
237 #define htoles(x) bswap16(x)
239 #define __bswap_16(x) \
240 ((((x) & 0xff00) >> 8) | \
241 (((x) & 0x00ff) << 8))
242 #define __bswap_32(x) \
243 ((((x) & 0xff000000) >> 24) | \
244 (((x) & 0x00ff0000) >> 8) | \
245 (((x) & 0x0000ff00) << 8) | \
246 (((x) & 0x000000ff) << 24))
247 #define letohl(x) __bswap_32(x)
248 #define letohs(x) __bswap_16(x)
249 #define htolel(x) __bswap_32(x)
250 #define htoles(x) __bswap_16(x)
254 /*! Global jitterbuffer configuration - by default, jb is disabled
255 * \note Values shown here match the defaults shown in skinny.conf.sample */
256 static struct ast_jb_conf default_jbconf =
260 .resync_threshold = 1000,
264 static struct ast_jb_conf global_jbconf;
267 AST_THREADSTORAGE(message2str_threadbuf);
268 #define MESSAGE2STR_BUFSIZE 35
271 AST_THREADSTORAGE(device2str_threadbuf);
272 #define DEVICE2STR_BUFSIZE 15
274 AST_THREADSTORAGE(control2str_threadbuf);
275 #define CONTROL2STR_BUFSIZE 100
277 AST_THREADSTORAGE(substate2str_threadbuf);
278 #define SUBSTATE2STR_BUFSIZE 15
280 AST_THREADSTORAGE(callstate2str_threadbuf);
281 #define CALLSTATE2STR_BUFSIZE 15
283 /*********************
284 * Protocol Messages *
285 *********************/
287 #define KEEP_ALIVE_MESSAGE 0x0000
288 /* no additional struct */
290 #define REGISTER_MESSAGE 0x0001
291 struct register_message {
299 uint8_t protocolVersion;
300 /*! \brief space2 is used for newer version of skinny */
304 #define IP_PORT_MESSAGE 0x0002
306 #define KEYPAD_BUTTON_MESSAGE 0x0003
307 struct keypad_button_message {
309 uint32_t lineInstance;
310 uint32_t callReference;
314 #define ENBLOC_CALL_MESSAGE 0x0004
315 struct enbloc_call_message {
316 char calledParty[24];
319 #define STIMULUS_MESSAGE 0x0005
320 struct stimulus_message {
322 uint32_t stimulusInstance;
323 uint32_t callreference;
326 #define OFFHOOK_MESSAGE 0x0006
327 struct offhook_message {
332 #define ONHOOK_MESSAGE 0x0007
333 struct onhook_message {
338 #define CAPABILITIES_RES_MESSAGE 0x0010
339 struct station_capabilities {
340 uint32_t codec; /* skinny codec, not ast codec */
348 #define SKINNY_MAX_CAPABILITIES 18
350 struct capabilities_res_message {
352 struct station_capabilities caps[SKINNY_MAX_CAPABILITIES];
355 #define SPEED_DIAL_STAT_REQ_MESSAGE 0x000A
356 struct speed_dial_stat_req_message {
357 uint32_t speedDialNumber;
360 #define LINE_STATE_REQ_MESSAGE 0x000B
361 struct line_state_req_message {
365 #define TIME_DATE_REQ_MESSAGE 0x000D
366 #define BUTTON_TEMPLATE_REQ_MESSAGE 0x000E
367 #define VERSION_REQ_MESSAGE 0x000F
368 #define SERVER_REQUEST_MESSAGE 0x0012
370 #define ALARM_MESSAGE 0x0020
371 struct alarm_message {
372 uint32_t alarmSeverity;
373 char displayMessage[80];
374 uint32_t alarmParam1;
375 uint32_t alarmParam2;
378 #define OPEN_RECEIVE_CHANNEL_ACK_MESSAGE 0x0022
379 struct open_receive_channel_ack_message_ip4 {
383 uint32_t callReference;
385 struct open_receive_channel_ack_message_ip6 {
390 uint32_t callReference;
393 #define SOFT_KEY_SET_REQ_MESSAGE 0x0025
395 #define SOFT_KEY_EVENT_MESSAGE 0x0026
396 struct soft_key_event_message {
397 uint32_t softKeyEvent;
399 uint32_t callreference;
402 #define UNREGISTER_MESSAGE 0x0027
403 #define SOFT_KEY_TEMPLATE_REQ_MESSAGE 0x0028
404 #define HEADSET_STATUS_MESSAGE 0x002B
405 #define REGISTER_AVAILABLE_LINES_MESSAGE 0x002D
407 #define SERVICEURL_STATREQ_MESSAGE 0x0033
408 struct serviceurl_statreq_message {
412 #define REGISTER_ACK_MESSAGE 0x0081
413 struct register_ack_message {
415 char dateTemplate[6];
417 uint32_t secondaryKeepAlive;
421 #define START_TONE_MESSAGE 0x0082
422 struct start_tone_message {
429 #define STOP_TONE_MESSAGE 0x0083
430 struct stop_tone_message {
436 #define SET_RINGER_MESSAGE 0x0085
437 struct set_ringer_message {
439 uint32_t unknown1; /* See notes in transmit_ringer_mode */
444 #define SET_LAMP_MESSAGE 0x0086
445 struct set_lamp_message {
447 uint32_t stimulusInstance;
448 uint32_t deviceStimulus;
451 #define SET_SPEAKER_MESSAGE 0x0088
452 struct set_speaker_message {
456 /* XXX When do we need to use this? */
457 #define SET_MICROPHONE_MESSAGE 0x0089
458 struct set_microphone_message {
462 #define START_MEDIA_TRANSMISSION_MESSAGE 0x008A
463 struct media_qualifier {
470 struct start_media_transmission_message_ip4 {
471 uint32_t conferenceId;
472 uint32_t passThruPartyId;
476 uint32_t payloadType;
477 struct media_qualifier qualifier;
481 struct start_media_transmission_message_ip6 {
482 uint32_t conferenceId;
483 uint32_t passThruPartyId;
488 uint32_t payloadType;
489 struct media_qualifier qualifier;
490 /*! \brief space2 is used for newer version of skinny */
494 #define STOP_MEDIA_TRANSMISSION_MESSAGE 0x008B
495 struct stop_media_transmission_message {
496 uint32_t conferenceId;
497 uint32_t passThruPartyId;
501 #define CALL_INFO_MESSAGE 0x008F
502 struct call_info_message {
503 char callingPartyName[40];
504 char callingParty[24];
505 char calledPartyName[40];
506 char calledParty[24];
510 char originalCalledPartyName[40];
511 char originalCalledParty[24];
512 char lastRedirectingPartyName[40];
513 char lastRedirectingParty[24];
514 uint32_t originalCalledPartyRedirectReason;
515 uint32_t lastRedirectingReason;
516 char callingPartyVoiceMailbox[24];
517 char calledPartyVoiceMailbox[24];
518 char originalCalledPartyVoiceMailbox[24];
519 char lastRedirectingVoiceMailbox[24];
523 #define FORWARD_STAT_MESSAGE 0x0090
524 struct forward_stat_message {
525 uint32_t activeforward;
531 uint32_t fwdnoanswer;
532 char fwdnoanswernum[24];
535 #define SPEED_DIAL_STAT_RES_MESSAGE 0x0091
536 struct speed_dial_stat_res_message {
537 uint32_t speedDialNumber;
538 char speedDialDirNumber[24];
539 char speedDialDisplayName[40];
542 #define LINE_STAT_RES_MESSAGE 0x0092
543 struct line_stat_res_message {
545 char lineDirNumber[24];
546 char lineDisplayName[24];
550 #define DEFINETIMEDATE_MESSAGE 0x0094
551 struct definetimedate_message {
552 uint32_t year; /* since 1900 */
554 uint32_t dayofweek; /* monday = 1 */
559 uint32_t milliseconds;
563 #define BUTTON_TEMPLATE_RES_MESSAGE 0x0097
564 struct button_definition {
565 uint8_t instanceNumber;
566 uint8_t buttonDefinition;
569 struct button_definition_template {
570 uint8_t buttonDefinition;
571 /* for now, anything between 0xB0 and 0xCF is custom */
575 #define STIMULUS_REDIAL 0x01
576 #define STIMULUS_SPEEDDIAL 0x02
577 #define STIMULUS_HOLD 0x03
578 #define STIMULUS_TRANSFER 0x04
579 #define STIMULUS_FORWARDALL 0x05
580 #define STIMULUS_FORWARDBUSY 0x06
581 #define STIMULUS_FORWARDNOANSWER 0x07
582 #define STIMULUS_DISPLAY 0x08
583 #define STIMULUS_LINE 0x09
584 #define STIMULUS_VOICEMAIL 0x0F
585 #define STIMULUS_AUTOANSWER 0x11
586 #define STIMULUS_SERVICEURL 0x14
587 #define STIMULUS_DND 0x3F
588 #define STIMULUS_CONFERENCE 0x7D
589 #define STIMULUS_CALLPARK 0x7E
590 #define STIMULUS_CALLPICKUP 0x7F
591 #define STIMULUS_NONE 0xFF
594 #define BT_REDIAL STIMULUS_REDIAL
595 #define BT_SPEEDDIAL STIMULUS_SPEEDDIAL
596 #define BT_HOLD STIMULUS_HOLD
597 #define BT_TRANSFER STIMULUS_TRANSFER
598 #define BT_FORWARDALL STIMULUS_FORWARDALL
599 #define BT_FORWARDBUSY STIMULUS_FORWARDBUSY
600 #define BT_FORWARDNOANSWER STIMULUS_FORWARDNOANSWER
601 #define BT_DISPLAY STIMULUS_DISPLAY
602 #define BT_LINE STIMULUS_LINE
603 #define BT_VOICEMAIL STIMULUS_VOICEMAIL
604 #define BT_AUTOANSWER STIMULUS_AUTOANSWER
605 #define BT_SERVICEURL STIMULUS_SERVICEURL
606 #define BT_DND STIMULUS_DND
607 #define BT_CONFERENCE STIMULUS_CONFERENCE
608 #define BT_CALLPARK STIMULUS_CALLPARK
609 #define BT_CALLPICKUP STIMULUS_CALLPICKUP
612 /* Custom button types - add our own between 0xB0 and 0xCF.
613 This may need to be revised in the future,
614 if stimuluses are ever added in this range. */
615 #define BT_CUST_LINESPEEDDIAL 0xB0 /* line or speeddial with/without hint */
616 #define BT_CUST_LINE 0xB1 /* line or speeddial with hint only */
618 struct button_template_res_message {
619 uint32_t buttonOffset;
620 uint32_t buttonCount;
621 uint32_t totalButtonCount;
622 struct button_definition definition[42];
625 #define VERSION_RES_MESSAGE 0x0098
626 struct version_res_message {
630 #define DISPLAYTEXT_MESSAGE 0x0099
631 struct displaytext_message {
635 #define CLEAR_NOTIFY_MESSAGE 0x0115
636 #define CLEAR_DISPLAY_MESSAGE 0x009A
637 struct clear_display_message {
641 #define CAPABILITIES_REQ_MESSAGE 0x009B
643 #define REGISTER_REJ_MESSAGE 0x009D
644 struct register_rej_message {
648 #define SERVER_RES_MESSAGE 0x009E
649 struct server_identifier {
653 struct server_res_message {
654 struct server_identifier server[5];
655 uint32_t serverListenPort[5];
656 uint32_t serverIpAddr[5];
659 #define RESET_MESSAGE 0x009F
660 struct reset_message {
664 #define KEEP_ALIVE_ACK_MESSAGE 0x0100
666 #define OPEN_RECEIVE_CHANNEL_MESSAGE 0x0105
667 struct open_receive_channel_message {
668 uint32_t conferenceId;
677 #define CLOSE_RECEIVE_CHANNEL_MESSAGE 0x0106
678 struct close_receive_channel_message {
679 uint32_t conferenceId;
684 #define SOFT_KEY_TEMPLATE_RES_MESSAGE 0x0108
685 struct soft_key_template_definition {
686 char softKeyLabel[16];
687 uint32_t softKeyEvent;
690 #define BKSP_REQ_MESSAGE 0x0119
691 struct bksp_req_message {
693 uint32_t callreference;
696 #define KEYDEF_ONHOOK 0
697 #define KEYDEF_CONNECTED 1
698 #define KEYDEF_ONHOLD 2
699 #define KEYDEF_RINGIN 3
700 #define KEYDEF_OFFHOOK 4
701 #define KEYDEF_CONNWITHTRANS 5
702 #define KEYDEF_DADFD 6 /* Digits After Dialing First Digit */
703 #define KEYDEF_CONNWITHCONF 7
704 #define KEYDEF_RINGOUT 8
705 #define KEYDEF_OFFHOOKWITHFEAT 9
706 #define KEYDEF_UNKNOWN 10
707 #define KEYDEF_SLAHOLD 11
708 #define KEYDEF_SLACONNECTEDNOTACTIVE 12
709 #define KEYDEF_RINGOUTWITHTRANS 13
711 #define SOFTKEY_NONE 0x00
712 #define SOFTKEY_REDIAL 0x01
713 #define SOFTKEY_NEWCALL 0x02
714 #define SOFTKEY_HOLD 0x03
715 #define SOFTKEY_TRNSFER 0x04
716 #define SOFTKEY_CFWDALL 0x05
717 #define SOFTKEY_CFWDBUSY 0x06
718 #define SOFTKEY_CFWDNOANSWER 0x07
719 #define SOFTKEY_BKSPC 0x08
720 #define SOFTKEY_ENDCALL 0x09
721 #define SOFTKEY_RESUME 0x0A
722 #define SOFTKEY_ANSWER 0x0B
723 #define SOFTKEY_INFO 0x0C
724 #define SOFTKEY_CONFRN 0x0D
725 #define SOFTKEY_PARK 0x0E
726 #define SOFTKEY_JOIN 0x0F
727 #define SOFTKEY_MEETME 0x10
728 #define SOFTKEY_PICKUP 0x11
729 #define SOFTKEY_GPICKUP 0x12
730 #define SOFTKEY_DND 0x13
731 #define SOFTKEY_IDIVERT 0x14
732 #define SOFTKEY_FORCEDIAL 0x15
734 #define KEYMASK_ALL 0xFFFFFFFF
735 #define KEYMASK_NONE (1 << 0)
736 #define KEYMASK_REDIAL (1 << 1)
737 #define KEYMASK_NEWCALL (1 << 2)
738 #define KEYMASK_HOLD (1 << 3)
739 #define KEYMASK_TRNSFER (1 << 4)
740 #define KEYMASK_CFWDALL (1 << 5)
741 #define KEYMASK_CFWDBUSY (1 << 6)
742 #define KEYMASK_CFWDNOANSWER (1 << 7)
743 #define KEYMASK_BKSPC (1 << 8)
744 #define KEYMASK_ENDCALL (1 << 9)
745 #define KEYMASK_RESUME (1 << 10)
746 #define KEYMASK_ANSWER (1 << 11)
747 #define KEYMASK_INFO (1 << 12)
748 #define KEYMASK_CONFRN (1 << 13)
749 #define KEYMASK_PARK (1 << 14)
750 #define KEYMASK_JOIN (1 << 15)
751 #define KEYMASK_MEETME (1 << 16)
752 #define KEYMASK_PICKUP (1 << 17)
753 #define KEYMASK_GPICKUP (1 << 18)
754 #define KEYMASK_DND (1 << 29)
755 #define KEYMASK_IDIVERT (1 << 20)
756 #define KEYMASK_FORCEDIAL (1 << 21)
758 /* Localized message "codes" (in octal)
759 Below is en_US (taken from a 7970) */
762 #define OCTAL_REDIAL "\200\001" /* Redial */
763 #define OCTAL_NEWCALL "\200\002" /* New Call */
764 #define OCTAL_HOLD "\200\003" /* Hold */
765 #define OCTAL_TRANSFER "\200\004" /* Transfer */
766 #define OCTAL_CFWDALL "\200\005" /* CFwdALL */
767 #define OCTAL_CFWDBUSY "\200\006" /* CFwdBusy */
768 #define OCTAL_CFWDNOAN "\200\007" /* CFwdNoAnswer */
769 #define OCTAL_BKSPC "\200\010" /* << */
770 #define OCTAL_ENDCALL "\200\011" /* EndCall */
771 #define OCTAL_RESUME "\200\012" /* Resume */
772 #define OCTAL_ANSWER "\200\013" /* Answer */
773 #define OCTAL_INFO "\200\014" /* Info */
774 #define OCTAL_CONFRN "\200\015" /* Confrn */
775 #define OCTAL_PARK "\200\016" /* Park */
776 #define OCTAL_JOIN "\200\017" /* Join */
777 #define OCTAL_MEETME "\200\020" /* MeetMe */
778 #define OCTAL_PICKUP "\200\021" /* PickUp */
779 #define OCTAL_GPICKUP "\200\022" /* GPickUp */
780 #define OCTAL_CUROPTS "\200\023" /* Your current options */
781 #define OCTAL_OFFHOOK "\200\024" /* Off Hook */
782 #define OCTAL_ONHOOK "\200\025" /* On Hook */
783 #define OCTAL_RINGOUT "\200\026" /* Ring out */
784 #define OCTAL_FROM "\200\027" /* From */
785 #define OCTAL_CONNECTED "\200\030" /* Connected */
786 #define OCTAL_BUSY "\200\031" /* Busy */
787 #define OCTAL_LINEINUSE "\200\032" /* Line In Use */
788 #define OCTAL_CALLWAITING "\200\033" /* Call Waiting */
789 #define OCTAL_CALLXFER "\200\034" /* Call Transfer */
790 #define OCTAL_CALLPARK "\200\035" /* Call Park */
791 #define OCTAL_CALLPROCEED "\200\036" /* Call Proceed */
792 #define OCTAL_INUSEREMOTE "\200\037" /* In Use Remote */
793 #define OCTAL_ENTRNUM "\200\040" /* Enter number */
794 #define OCTAL_PARKAT "\200\041" /* Call park At */
795 #define OCTAL_PRIMONLY "\200\042" /* Primary Only */
796 #define OCTAL_TMPFAIL "\200\043" /* Temp Fail */
797 #define OCTAL_HAVEVMAIL "\200\044" /* You Have VoiceMail */
798 #define OCTAL_FWDEDTO "\200\045" /* Forwarded to */
799 #define OCTAL_CANTCOMPCNF "\200\046" /* Can Not Complete Conference */
800 #define OCTAL_NOCONFBRDG "\200\047" /* No Conference Bridge */
801 #define OCTAL_NOPRIMARYCTL "\200\050" /* Can Not Hold Primary Control */
802 #define OCTAL_INVALCONFPART "\200\051" /* Invalid Conference Participant */
803 #define OCTAL_INCONFALREADY "\200\052" /* In Conference Already */
804 #define OCTAL_NOPARTINFO "\200\053" /* No Participant Info */
805 #define OCTAL_MAXPARTEXCEED "\200\054" /* Exceed Maximum Parties */
806 #define OCTAL_KEYNOTACTIVE "\200\055" /* Key Is Not Active */
807 #define OCTAL_ERRNOLIC "\200\056" /* Error No License */
808 #define OCTAL_ERRDBCFG "\200\057" /* Error DBConfig */
809 #define OCTAL_ERRDB "\200\060" /* Error Database */
810 #define OCTAL_ERRPASSLMT "\200\061" /* Error Pass Limit */
811 #define OCTAL_ERRUNK "\200\062" /* Error Unknown */
812 #define OCTAL_ERRMISMATCH "\200\063" /* Error Mismatch */
813 #define OCTAL_CONFERENCE "\200\064" /* Conference */
814 #define OCTAL_PARKNO "\200\065" /* Park Number */
815 #define OCTAL_PRIVATE "\200\066" /* Private */
816 #define OCTAL_INSUFBANDW "\200\067" /* Not Enough Bandwidth */
817 #define OCTAL_UNKNUM "\200\070" /* Unknown Number */
818 #define OCTAL_RMLSTC "\200\071" /* RmLstC */
819 #define OCTAL_VOICEMAIL "\200\072" /* Voicemail */
820 #define OCTAL_IMMDIV "\200\073" /* ImmDiv */
821 #define OCTAL_INTRCPT "\200\074" /* Intrcpt */
822 #define OCTAL_SETWTCH "\200\075" /* SetWtch */
823 #define OCTAL_TRNSFVM "\200\076" /* TrnsfVM */
824 #define OCTAL_DND "\200\077" /* DND */
825 #define OCTAL_DIVALL "\200\100" /* DivAll */
826 #define OCTAL_CALLBACK "\200\101" /* CallBack */
827 #define OCTAL_NETCNGREROUT "\200\102" /* Network congestion,rerouting */
828 #define OCTAL_BARGE "\200\103" /* Barge */
829 #define OCTAL_BARGEFAIL "\200\104" /* Failed to setup Barge */
830 #define OCTAL_BARGEEXIST "\200\105" /* Another Barge exists */
831 #define OCTAL_INCOMPATDEV "\200\106" /* Incompatible device type */
832 #define OCTAL_PARKNONUM "\200\107" /* No Park Number Available */
833 #define OCTAL_PARKREVERSION "\200\110" /* CallPark Reversion */
834 #define OCTAL_SRVNOTACTIVE "\200\111" /* Service is not Active */
835 #define OCTAL_HITRAFFIC "\200\112" /* High Traffic Try Again Later */
836 #define OCTAL_QRT "\200\113" /* QRT */
837 #define OCTAL_MCID "\200\114" /* MCID */
838 #define OCTAL_DIRTRFR "\200\115" /* DirTrfr */
839 #define OCTAL_SELECT "\200\116" /* Select */
840 #define OCTAL_CONFLIST "\200\117" /* ConfList */
841 #define OCTAL_IDIVERT "\200\120" /* iDivert */
842 #define OCTAL_CBARGE "\200\121" /* cBarge */
843 #define OCTAL_CANTCOMPLXFER "\200\122" /* Can Not Complete Transfer */
844 #define OCTAL_CANTJOINCALLS "\200\123" /* Can Not Join Calls */
845 #define OCTAL_MCIDSUCCESS "\200\124" /* Mcid Successful */
846 #define OCTAL_NUMNOTCFG "\200\125" /* Number Not Configured */
847 #define OCTAL_SECERROR "\200\126" /* Security Error */
848 #define OCTAL_VIDBANDWNA "\200\127" /* Video Bandwidth Unavailable */
849 #define OCTAL_VIDMODE "\200\130" /* VidMode */
850 #define OCTAL_CALLDURTIMEOUT "\200\131" /* Max Call Duration Timeout */
851 #define OCTAL_HOLDDURTIMEOUT "\200\132" /* Max Hold Duration Timeout */
852 #define OCTAL_OPICKUP "\200\133" /* OPickUp */
858 #define OCTAL_EXTXFERRESTRICT "\200\141" /* External Transfer Restricted */
862 #define OCTAL_MACADD "\200\145" /* Mac Address */
863 #define OCTAL_HOST "\200\146" /* Host Name */
864 #define OCTAL_DOMAIN "\200\147" /* Domain Name */
865 #define OCTAL_IPADD "\200\150" /* IP Address */
866 #define OCTAL_SUBMASK "\200\151" /* Subnet Mask */
867 #define OCTAL_TFTP1 "\200\152" /* TFTP Server 1 */
868 #define OCTAL_ROUTER1 "\200\153" /* Default Router 1 */
869 #define OCTAL_ROUTER2 "\200\154" /* Default Router 2 */
870 #define OCTAL_ROUTER3 "\200\155" /* Default Router 3 */
871 #define OCTAL_ROUTER4 "\200\156" /* Default Router 4 */
872 #define OCTAL_ROUTER5 "\200\157" /* Default Router 5 */
873 #define OCTAL_DNS1 "\200\160" /* DNS Server 1 */
874 #define OCTAL_DNS2 "\200\161" /* DNS Server 2 */
875 #define OCTAL_DNS3 "\200\162" /* DNS Server 3 */
876 #define OCTAL_DNS4 "\200\163" /* DNS Server 4 */
877 #define OCTAL_DNS5 "\200\164" /* DNS Server 5 */
878 #define OCTAL_VLANOPID "\200\165" /* Operational VLAN Id */
879 #define OCTAL_VLANADID "\200\166" /* Admin. VLAN Id */
880 #define OCTAL_CM1 "\200\167" /* CallManager 1 */
881 #define OCTAL_CM2 "\200\170" /* CallManager 2 */
882 #define OCTAL_CM3 "\200\171" /* CallManager 3 */
883 #define OCTAL_CM4 "\200\172" /* CallManager 4 */
884 #define OCTAL_CM5 "\200\173" /* CallManager 5 */
885 #define OCTAL_URLINFO "\200\174" /* Information URL */
886 #define OCTAL_URLDIRS "\200\175" /* Directories URL */
887 #define OCTAL_URLMSGS "\200\176" /* Messages URL */
888 #define OCTAL_URLSRVS "\200\177" /* Services URL */
890 static struct soft_key_template_definition soft_key_template_default[] = {
891 { OCTAL_REDIAL, SOFTKEY_REDIAL },
892 { OCTAL_NEWCALL, SOFTKEY_NEWCALL },
893 { OCTAL_HOLD, SOFTKEY_HOLD },
894 { OCTAL_TRANSFER, SOFTKEY_TRNSFER },
895 { OCTAL_CFWDALL, SOFTKEY_CFWDALL },
896 { OCTAL_CFWDBUSY, SOFTKEY_CFWDBUSY },
897 { OCTAL_CFWDNOAN, SOFTKEY_CFWDNOANSWER },
898 { OCTAL_BKSPC, SOFTKEY_BKSPC },
899 { OCTAL_ENDCALL, SOFTKEY_ENDCALL },
900 { OCTAL_RESUME, SOFTKEY_RESUME },
901 { OCTAL_ANSWER, SOFTKEY_ANSWER },
902 { OCTAL_INFO, SOFTKEY_INFO },
903 { OCTAL_CONFRN, SOFTKEY_CONFRN },
904 { OCTAL_PARK, SOFTKEY_PARK },
905 { OCTAL_JOIN, SOFTKEY_JOIN },
906 { OCTAL_MEETME, SOFTKEY_MEETME },
907 { OCTAL_PICKUP, SOFTKEY_PICKUP },
908 { OCTAL_GPICKUP, SOFTKEY_GPICKUP },
909 { OCTAL_DND, SOFTKEY_DND },
910 { OCTAL_IDIVERT, SOFTKEY_IDIVERT },
911 { "Dial", SOFTKEY_FORCEDIAL},
914 struct soft_key_definitions {
916 const uint8_t *defaults;
920 static const uint8_t soft_key_default_onhook[] = {
925 SOFTKEY_CFWDNOANSWER,
931 static const uint8_t soft_key_default_connected[] = {
938 SOFTKEY_CFWDNOANSWER,
941 static const uint8_t soft_key_default_onhold[] = {
948 static const uint8_t soft_key_default_ringin[] = {
954 static const uint8_t soft_key_default_offhook[] = {
960 SOFTKEY_CFWDNOANSWER,
964 static const uint8_t soft_key_default_connwithtrans[] = {
971 SOFTKEY_CFWDNOANSWER,
974 static const uint8_t soft_key_default_dadfd[] = {
981 static const uint8_t soft_key_default_connwithconf[] = {
985 static const uint8_t soft_key_default_ringout[] = {
990 static const uint8_t soft_key_default_ringoutwithtransfer[] = {
996 static const uint8_t soft_key_default_offhookwithfeat[] = {
1002 static const uint8_t soft_key_default_unknown[] = {
1006 static const uint8_t soft_key_default_SLAhold[] = {
1012 static const uint8_t soft_key_default_SLAconnectednotactive[] = {
1018 static const struct soft_key_definitions soft_key_default_definitions[] = {
1019 {KEYDEF_ONHOOK, soft_key_default_onhook, sizeof(soft_key_default_onhook) / sizeof(uint8_t)},
1020 {KEYDEF_CONNECTED, soft_key_default_connected, sizeof(soft_key_default_connected) / sizeof(uint8_t)},
1021 {KEYDEF_ONHOLD, soft_key_default_onhold, sizeof(soft_key_default_onhold) / sizeof(uint8_t)},
1022 {KEYDEF_RINGIN, soft_key_default_ringin, sizeof(soft_key_default_ringin) / sizeof(uint8_t)},
1023 {KEYDEF_OFFHOOK, soft_key_default_offhook, sizeof(soft_key_default_offhook) / sizeof(uint8_t)},
1024 {KEYDEF_CONNWITHTRANS, soft_key_default_connwithtrans, sizeof(soft_key_default_connwithtrans) / sizeof(uint8_t)},
1025 {KEYDEF_DADFD, soft_key_default_dadfd, sizeof(soft_key_default_dadfd) / sizeof(uint8_t)},
1026 {KEYDEF_CONNWITHCONF, soft_key_default_connwithconf, sizeof(soft_key_default_connwithconf) / sizeof(uint8_t)},
1027 {KEYDEF_RINGOUT, soft_key_default_ringout, sizeof(soft_key_default_ringout) / sizeof(uint8_t)},
1028 {KEYDEF_RINGOUTWITHTRANS, soft_key_default_ringoutwithtransfer, sizeof(soft_key_default_ringoutwithtransfer) / sizeof(uint8_t)},
1029 {KEYDEF_OFFHOOKWITHFEAT, soft_key_default_offhookwithfeat, sizeof(soft_key_default_offhookwithfeat) / sizeof(uint8_t)},
1030 {KEYDEF_UNKNOWN, soft_key_default_unknown, sizeof(soft_key_default_unknown) / sizeof(uint8_t)},
1031 {KEYDEF_SLAHOLD, soft_key_default_SLAhold, sizeof(soft_key_default_SLAhold) / sizeof(uint8_t)},
1032 {KEYDEF_SLACONNECTEDNOTACTIVE, soft_key_default_SLAconnectednotactive, sizeof(soft_key_default_SLAconnectednotactive) / sizeof(uint8_t)}
1035 struct soft_key_template_res_message {
1036 uint32_t softKeyOffset;
1037 uint32_t softKeyCount;
1038 uint32_t totalSoftKeyCount;
1039 struct soft_key_template_definition softKeyTemplateDefinition[32];
1042 #define SOFT_KEY_SET_RES_MESSAGE 0x0109
1044 struct soft_key_set_definition {
1045 uint8_t softKeyTemplateIndex[16];
1046 uint16_t softKeyInfoIndex[16];
1049 struct soft_key_set_res_message {
1050 uint32_t softKeySetOffset;
1051 uint32_t softKeySetCount;
1052 uint32_t totalSoftKeySetCount;
1053 struct soft_key_set_definition softKeySetDefinition[16];
1057 #define SELECT_SOFT_KEYS_MESSAGE 0x0110
1058 struct select_soft_keys_message {
1061 uint32_t softKeySetIndex;
1062 uint32_t validKeyMask;
1065 #define CALL_STATE_MESSAGE 0x0111
1066 struct call_state_message {
1068 uint32_t lineInstance;
1069 uint32_t callReference;
1073 #define DISPLAY_PROMPT_STATUS_MESSAGE 0x0112
1074 struct display_prompt_status_message {
1075 uint32_t messageTimeout;
1076 char promptMessage[32];
1077 uint32_t lineInstance;
1078 uint32_t callReference;
1082 #define CLEAR_PROMPT_MESSAGE 0x0113
1083 struct clear_prompt_message {
1084 uint32_t lineInstance;
1085 uint32_t callReference;
1088 #define DISPLAY_NOTIFY_MESSAGE 0x0114
1089 struct display_notify_message {
1090 uint32_t displayTimeout;
1091 char displayMessage[100];
1094 #define ACTIVATE_CALL_PLANE_MESSAGE 0x0116
1095 struct activate_call_plane_message {
1096 uint32_t lineInstance;
1099 #define DIALED_NUMBER_MESSAGE 0x011D
1100 struct dialed_number_message {
1101 char dialedNumber[24];
1102 uint32_t lineInstance;
1103 uint32_t callReference;
1106 #define MAX_SERVICEURL 256
1107 #define SERVICEURL_STAT_MESSAGE 0x012F
1108 struct serviceurl_stat_message {
1110 char url[MAX_SERVICEURL];
1111 char displayName[40];
1114 #define MAXCALLINFOSTR 256
1115 #define MAXDISPLAYNOTIFYSTR 32
1117 #define DISPLAY_PRINOTIFY_MESSAGE 0x0120
1118 struct display_prinotify_message {
1121 char text[MAXDISPLAYNOTIFYSTR];
1124 #define CLEAR_PRINOTIFY_MESSAGE 0x0121
1125 struct clear_prinotify_message {
1129 #define CALL_INFO_MESSAGE_VARIABLE 0x014A
1130 struct call_info_message_variable {
1132 uint32_t callreference;
1133 uint32_t calldirection;
1139 char calldetails[MAXCALLINFOSTR];
1142 #define DISPLAY_PRINOTIFY_MESSAGE_VARIABLE 0x0144
1143 struct display_prinotify_message_variable {
1146 char text[MAXDISPLAYNOTIFYSTR];
1149 #define DISPLAY_PROMPT_STATUS_MESSAGE_VARIABLE 0x0145
1150 struct display_prompt_status_message_variable {
1152 uint32_t lineInstance;
1153 uint32_t callReference;
1154 char promptMessage[MAXCALLINFOSTR];
1158 struct alarm_message alarm;
1159 struct speed_dial_stat_req_message speeddialreq;
1160 struct register_message reg;
1161 struct register_ack_message regack;
1162 struct register_rej_message regrej;
1163 struct capabilities_res_message caps;
1164 struct version_res_message version;
1165 struct button_template_res_message buttontemplate;
1166 struct displaytext_message displaytext;
1167 struct clear_display_message cleardisplay;
1168 struct display_prompt_status_message displaypromptstatus;
1169 struct clear_prompt_message clearpromptstatus;
1170 struct definetimedate_message definetimedate;
1171 struct start_tone_message starttone;
1172 struct stop_tone_message stoptone;
1173 struct speed_dial_stat_res_message speeddial;
1174 struct line_state_req_message line;
1175 struct line_stat_res_message linestat;
1176 struct soft_key_set_res_message softkeysets;
1177 struct soft_key_template_res_message softkeytemplate;
1178 struct server_res_message serverres;
1179 struct reset_message reset;
1180 struct set_lamp_message setlamp;
1181 struct set_ringer_message setringer;
1182 struct call_state_message callstate;
1183 struct keypad_button_message keypad;
1184 struct select_soft_keys_message selectsoftkey;
1185 struct activate_call_plane_message activatecallplane;
1186 struct stimulus_message stimulus;
1187 struct offhook_message offhook;
1188 struct onhook_message onhook;
1189 struct set_speaker_message setspeaker;
1190 struct set_microphone_message setmicrophone;
1191 struct call_info_message callinfo;
1192 struct start_media_transmission_message_ip4 startmedia_ip4;
1193 struct start_media_transmission_message_ip6 startmedia_ip6;
1194 struct stop_media_transmission_message stopmedia;
1195 struct open_receive_channel_message openreceivechannel;
1196 struct open_receive_channel_ack_message_ip4 openreceivechannelack_ip4;
1197 struct open_receive_channel_ack_message_ip6 openreceivechannelack_ip6;
1198 struct close_receive_channel_message closereceivechannel;
1199 struct display_notify_message displaynotify;
1200 struct dialed_number_message dialednumber;
1201 struct soft_key_event_message softkeyeventmessage;
1202 struct enbloc_call_message enbloccallmessage;
1203 struct forward_stat_message forwardstat;
1204 struct bksp_req_message bkspmessage;
1205 struct call_info_message_variable callinfomessagevariable;
1206 struct display_prompt_status_message_variable displaypromptstatusvar;
1207 struct serviceurl_stat_message serviceurlmessage;
1208 struct clear_prinotify_message clearprinotify;
1209 struct display_prinotify_message displayprinotify;
1210 struct display_prinotify_message_variable displayprinotifyvar;
1213 /* packet composition */
1218 union skinny_data data;
1221 /* XXX This is the combined size of the variables above. (len, res, e)
1222 If more are added, this MUST change.
1223 (sizeof(skinny_req) - sizeof(skinny_data)) DOES NOT WORK on all systems (amd64?). */
1224 static int skinny_header_size = 12;
1226 /*****************************
1227 * Asterisk specific globals *
1228 *****************************/
1230 static int skinnyreload = 0;
1232 /* a hostname, portnumber, socket and such is usefull for VoIP protocols */
1233 static struct sockaddr_in bindaddr;
1234 static char ourhost[256];
1236 static struct in_addr __ourip;
1237 static struct ast_hostent ahp;
1238 static struct hostent *hp;
1239 static int skinnysock = -1;
1240 static pthread_t accept_t;
1241 static int callnums = 1;
1243 #define SKINNY_DEVICE_UNKNOWN -1
1244 #define SKINNY_DEVICE_NONE 0
1245 #define SKINNY_DEVICE_30SPPLUS 1
1246 #define SKINNY_DEVICE_12SPPLUS 2
1247 #define SKINNY_DEVICE_12SP 3
1248 #define SKINNY_DEVICE_12 4
1249 #define SKINNY_DEVICE_30VIP 5
1250 #define SKINNY_DEVICE_7910 6
1251 #define SKINNY_DEVICE_7960 7
1252 #define SKINNY_DEVICE_7940 8
1253 #define SKINNY_DEVICE_7935 9
1254 #define SKINNY_DEVICE_ATA186 12 /* Cisco ATA-186 */
1255 #define SKINNY_DEVICE_7941 115
1256 #define SKINNY_DEVICE_7971 119
1257 #define SKINNY_DEVICE_7914 124 /* Expansion module */
1258 #define SKINNY_DEVICE_7985 302
1259 #define SKINNY_DEVICE_7911 307
1260 #define SKINNY_DEVICE_7961GE 308
1261 #define SKINNY_DEVICE_7941GE 309
1262 #define SKINNY_DEVICE_7931 348
1263 #define SKINNY_DEVICE_7921 365
1264 #define SKINNY_DEVICE_7906 369
1265 #define SKINNY_DEVICE_7962 404 /* Not found */
1266 #define SKINNY_DEVICE_7937 431
1267 #define SKINNY_DEVICE_7942 434
1268 #define SKINNY_DEVICE_7945 435
1269 #define SKINNY_DEVICE_7965 436
1270 #define SKINNY_DEVICE_7975 437
1271 #define SKINNY_DEVICE_7905 20000
1272 #define SKINNY_DEVICE_7920 30002
1273 #define SKINNY_DEVICE_7970 30006
1274 #define SKINNY_DEVICE_7912 30007
1275 #define SKINNY_DEVICE_7902 30008
1276 #define SKINNY_DEVICE_CIPC 30016 /* Cisco IP Communicator */
1277 #define SKINNY_DEVICE_7961 30018
1278 #define SKINNY_DEVICE_7936 30019
1279 #define SKINNY_DEVICE_SCCPGATEWAY_AN 30027 /* Analog gateway */
1280 #define SKINNY_DEVICE_SCCPGATEWAY_BRI 30028 /* BRI gateway */
1282 #define SKINNY_SPEAKERON 1
1283 #define SKINNY_SPEAKEROFF 2
1285 #define SKINNY_MICON 1
1286 #define SKINNY_MICOFF 2
1288 #define SKINNY_OFFHOOK 1
1289 #define SKINNY_ONHOOK 2
1290 #define SKINNY_RINGOUT 3
1291 #define SKINNY_RINGIN 4
1292 #define SKINNY_CONNECTED 5
1293 #define SKINNY_BUSY 6
1294 #define SKINNY_CONGESTION 7
1295 #define SKINNY_HOLD 8
1296 #define SKINNY_CALLWAIT 9
1297 #define SKINNY_TRANSFER 10
1298 #define SKINNY_PARK 11
1299 #define SKINNY_PROGRESS 12
1300 #define SKINNY_CALLREMOTEMULTILINE 13
1301 #define SKINNY_INVALID 14
1303 #define SKINNY_INCOMING 1
1304 #define SKINNY_OUTGOING 2
1306 #define SKINNY_SILENCE 0x00 /* Note sure this is part of the protocol, remove? */
1307 #define SKINNY_DIALTONE 0x21
1308 #define SKINNY_BUSYTONE 0x23
1309 #define SKINNY_ALERT 0x24
1310 #define SKINNY_REORDER 0x25
1311 #define SKINNY_CALLWAITTONE 0x2D
1312 #define SKINNY_ZIPZIP 0x31
1313 #define SKINNY_ZIP 0x32
1314 #define SKINNY_BEEPBONK 0x33
1315 #define SKINNY_BARGIN 0x43
1316 #define SKINNY_NOTONE 0x7F
1318 #define SKINNY_LAMP_OFF 1
1319 #define SKINNY_LAMP_ON 2
1320 #define SKINNY_LAMP_WINK 3
1321 #define SKINNY_LAMP_FLASH 4
1322 #define SKINNY_LAMP_BLINK 5
1324 #define SKINNY_RING_OFF 1
1325 #define SKINNY_RING_INSIDE 2
1326 #define SKINNY_RING_OUTSIDE 3
1327 #define SKINNY_RING_FEATURE 4
1329 #define SKINNY_CFWD_ALL (1 << 0)
1330 #define SKINNY_CFWD_BUSY (1 << 1)
1331 #define SKINNY_CFWD_NOANSWER (1 << 2)
1333 /* Skinny rtp stream modes. Do we really need this? */
1334 #define SKINNY_CX_SENDONLY 0
1335 #define SKINNY_CX_RECVONLY 1
1336 #define SKINNY_CX_SENDRECV 2
1337 #define SKINNY_CX_CONF 3
1338 #define SKINNY_CX_CONFERENCE 3
1339 #define SKINNY_CX_MUTE 4
1340 #define SKINNY_CX_INACTIVE 4
1343 static const char * const skinny_cxmodes[] = {
1352 /* driver scheduler */
1353 static struct ast_sched_context *sched = NULL;
1355 /* Protect the network socket */
1356 AST_MUTEX_DEFINE_STATIC(netlock);
1358 /* Wait up to 16 seconds for first digit */
1359 static int firstdigittimeout = 16000;
1361 /* How long to wait for following digits */
1362 static int gendigittimeout = 8000;
1364 /* How long to wait for an extra digit, if there is an ambiguous match */
1365 static int matchdigittimeout = 3000;
1367 #define SUBSTATE_UNSET 0
1368 #define SUBSTATE_OFFHOOK 1
1369 #define SUBSTATE_ONHOOK 2
1370 #define SUBSTATE_RINGOUT 3
1371 #define SUBSTATE_RINGIN 4
1372 #define SUBSTATE_CONNECTED 5
1373 #define SUBSTATE_BUSY 6
1374 #define SUBSTATE_CONGESTION 7
1375 #define SUBSTATE_HOLD 8
1376 #define SUBSTATE_CALLWAIT 9
1377 #define SUBSTATE_PROGRESS 12
1378 #define SUBSTATE_DIALING 101
1380 #define DIALTYPE_NORMAL 1<<0
1381 #define DIALTYPE_CFWD 1<<1
1382 #define DIALTYPE_XFER 1<<2
1384 struct skinny_subchannel {
1385 struct ast_channel *owner;
1386 struct ast_rtp_instance *rtp;
1387 struct ast_rtp_instance *vrtp;
1388 unsigned int callid;
1389 char exten[AST_MAX_EXTENSION];
1390 /* time_t lastouttime; */ /* Unused */
1393 /* int lastout; */ /* Unused */
1410 AST_LIST_ENTRY(skinny_subchannel) list;
1411 struct skinny_subchannel *related;
1412 struct skinny_line *line;
1413 struct skinny_subline *subline;
1416 #define SKINNY_LINE_OPTIONS \
1419 char accountcode[AST_MAX_ACCOUNT_CODE]; \
1420 char exten[AST_MAX_EXTENSION]; \
1421 char context[AST_MAX_CONTEXT]; \
1422 char language[MAX_LANGUAGE]; \
1423 char cid_num[AST_MAX_EXTENSION]; \
1424 char cid_name[AST_MAX_EXTENSION]; \
1425 char lastcallerid[AST_MAX_EXTENSION]; \
1427 char call_forward_all[AST_MAX_EXTENSION]; \
1428 char call_forward_busy[AST_MAX_EXTENSION]; \
1429 char call_forward_noanswer[AST_MAX_EXTENSION]; \
1430 char mailbox[AST_MAX_MAILBOX_UNIQUEID]; \
1431 char vmexten[AST_MAX_EXTENSION]; \
1432 char regexten[AST_MAX_EXTENSION]; \
1433 char regcontext[AST_MAX_CONTEXT]; \
1434 char parkinglot[AST_MAX_CONTEXT]; \
1435 char mohinterpret[MAX_MUSICCLASS]; \
1436 char mohsuggest[MAX_MUSICCLASS]; \
1437 char lastnumberdialed[AST_MAX_EXTENSION]; \
1438 char dialoutexten[AST_MAX_EXTENSION]; \
1439 char dialoutcontext[AST_MAX_CONTEXT]; \
1440 ast_group_t callgroup; \
1441 ast_group_t pickupgroup; \
1442 struct ast_namedgroups *named_callgroups; \
1443 struct ast_namedgroups *named_pickupgroups; \
1446 int threewaycalling; \
1448 int cancallforward; \
1449 int callfwdtimeout; \
1455 int nonCodecCapability; \
1461 struct skinny_line {
1464 struct skinny_container *container;
1465 struct stasis_subscription *mwi_event_sub; /* Event based MWI */
1466 struct skinny_subchannel *activesub;
1467 AST_LIST_HEAD(, skinny_subchannel) sub;
1468 AST_LIST_HEAD(, skinny_subline) sublines;
1469 AST_LIST_ENTRY(skinny_line) list;
1470 AST_LIST_ENTRY(skinny_line) all;
1471 struct skinny_device *device;
1472 struct ast_format_cap *cap;
1473 struct ast_format_cap *confcap;
1474 struct ast_variable *chanvars; /*!< Channel variables to set for inbound call */
1478 static struct skinny_line_options{
1480 } default_line_struct = {
1490 .callfwdtimeout = 20000,
1493 static struct skinny_line_options *default_line = &default_line_struct;
1495 static AST_LIST_HEAD_STATIC(lines, skinny_line);
1497 struct skinny_subline {
1498 struct skinny_container *container;
1499 struct skinny_line *line;
1500 struct skinny_subchannel *sub;
1501 AST_LIST_ENTRY(skinny_subline) list;
1503 char context[AST_MAX_CONTEXT];
1504 char exten[AST_MAX_EXTENSION];
1505 char stname[AST_MAX_EXTENSION];
1506 char lnname[AST_MAX_EXTENSION];
1514 unsigned int callid;
1517 struct skinny_speeddial {
1519 struct skinny_container *container;
1521 char context[AST_MAX_CONTEXT];
1522 char exten[AST_MAX_EXTENSION];
1528 AST_LIST_ENTRY(skinny_speeddial) list;
1529 struct skinny_device *parent;
1532 struct skinny_serviceurl {
1534 char url[MAX_SERVICEURL];
1535 char displayName[40];
1536 AST_LIST_ENTRY(skinny_serviceurl) list;
1537 struct skinny_device *device;
1540 #define SKINNY_DEVICECONTAINER 1
1541 #define SKINNY_LINECONTAINER 2
1542 #define SKINNY_SUBLINECONTAINER 3
1543 #define SKINNY_SDCONTAINER 4
1545 struct skinny_container {
1550 struct skinny_addon {
1553 AST_LIST_ENTRY(skinny_addon) list;
1554 struct skinny_device *parent;
1557 #define SKINNY_DEVICE_OPTIONS \
1560 char version_id[16]; \
1561 char vmexten[AST_MAX_EXTENSION]; \
1563 int protocolversion; \
1565 int lastlineinstance; \
1566 int lastcallreference; \
1574 struct skinny_device {
1575 SKINNY_DEVICE_OPTIONS
1579 struct sockaddr_in addr;
1580 struct in_addr ourip;
1582 struct skinnysession *session;
1583 struct skinny_line *activeline;
1584 struct ast_format_cap *cap;
1585 struct ast_format_cap *confcap;
1586 struct ast_endpoint *endpoint;
1587 AST_LIST_HEAD(, skinny_line) lines;
1588 AST_LIST_HEAD(, skinny_speeddial) speeddials;
1589 AST_LIST_HEAD(, skinny_serviceurl) serviceurls;
1590 AST_LIST_HEAD(, skinny_addon) addons;
1591 AST_LIST_ENTRY(skinny_device) list;
1594 static struct skinny_device_options {
1595 SKINNY_DEVICE_OPTIONS
1596 } default_device_struct = {
1603 .hookstate = SKINNY_ONHOOK,
1605 static struct skinny_device_options *default_device = &default_device_struct;
1607 static AST_LIST_HEAD_STATIC(devices, skinny_device);
1609 struct skinnysession {
1612 struct timeval start;
1613 struct sockaddr_in sin;
1615 char outbuf[SKINNY_MAX_PACKET];
1616 struct skinny_device *device;
1617 AST_LIST_ENTRY(skinnysession) list;
1618 int lockstate; /* Only for use in the skinny_session thread */
1619 int auth_timeout_sched;
1620 int keepalive_timeout_sched;
1621 struct timeval last_keepalive;
1622 int keepalive_count;
1625 static struct ast_channel *skinny_request(const char *type, struct ast_format_cap *cap, const struct ast_assigned_ids *assignedids, const struct ast_channel *requestor, const char *dest, int *cause);
1626 static AST_LIST_HEAD_STATIC(sessions, skinnysession);
1628 static int skinny_devicestate(const char *data);
1629 static int skinny_call(struct ast_channel *ast, const char *dest, int timeout);
1630 static int skinny_hangup(struct ast_channel *ast);
1631 static int skinny_answer(struct ast_channel *ast);
1632 static struct ast_frame *skinny_read(struct ast_channel *ast);
1633 static int skinny_write(struct ast_channel *ast, struct ast_frame *frame);
1634 static int skinny_indicate(struct ast_channel *ast, int ind, const void *data, size_t datalen);
1635 static int skinny_fixup(struct ast_channel *oldchan, struct ast_channel *newchan);
1636 static int skinny_senddigit_begin(struct ast_channel *ast, char digit);
1637 static int skinny_senddigit_end(struct ast_channel *ast, char digit, unsigned int duration);
1638 static void mwi_event_cb(void *userdata, struct stasis_subscription *sub, struct stasis_message *msg);
1639 static int skinny_dialer_cb(const void *data);
1640 static int skinny_reload(void);
1642 static void skinny_set_owner(struct skinny_subchannel* sub, struct ast_channel* chan);
1643 static void setsubstate(struct skinny_subchannel *sub, int state);
1644 static void dumpsub(struct skinny_subchannel *sub, int forcehangup);
1645 static void activatesub(struct skinny_subchannel *sub, int state);
1646 static void dialandactivatesub(struct skinny_subchannel *sub, char exten[AST_MAX_EXTENSION]);
1647 static int skinny_nokeepalive_cb(const void *data);
1649 static void transmit_definetimedate(struct skinny_device *d);
1651 static struct ast_channel_tech skinny_tech = {
1653 .description = tdesc,
1654 .properties = AST_CHAN_TP_WANTSJITTER | AST_CHAN_TP_CREATESJITTER,
1655 .requester = skinny_request,
1656 .devicestate = skinny_devicestate,
1657 .call = skinny_call,
1658 .hangup = skinny_hangup,
1659 .answer = skinny_answer,
1660 .read = skinny_read,
1661 .write = skinny_write,
1662 .indicate = skinny_indicate,
1663 .fixup = skinny_fixup,
1664 .send_digit_begin = skinny_senddigit_begin,
1665 .send_digit_end = skinny_senddigit_end,
1668 static int skinny_extensionstate_cb(char *context, char *id, struct ast_state_cb_info *info, void *data);
1670 static struct skinny_line *skinny_line_alloc(void)
1672 struct skinny_line *l;
1673 if (!(l = ast_calloc(1, sizeof(*l)))) {
1677 l->cap = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
1678 l->confcap = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
1679 if (!l->cap || !l->confcap) {
1680 ao2_cleanup(l->cap);
1681 ao2_cleanup(l->confcap);
1687 static struct skinny_line *skinny_line_destroy(struct skinny_line *l)
1689 ao2_ref(l->cap, -1);
1690 ao2_ref(l->confcap, -1);
1691 l->named_callgroups = ast_unref_namedgroups(l->named_callgroups);
1692 l->named_pickupgroups = ast_unref_namedgroups(l->named_pickupgroups);
1693 ast_free(l->container);
1697 static struct skinny_device *skinny_device_alloc(const char *dname)
1699 struct skinny_device *d;
1700 if (!(d = ast_calloc(1, sizeof(*d)))) {
1704 d->cap = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
1705 d->confcap = ast_format_cap_alloc(AST_FORMAT_CAP_FLAG_DEFAULT);
1706 d->endpoint = ast_endpoint_create("Skinny", dname);
1707 if (!d->cap || !d->confcap || !d->endpoint) {
1708 ao2_cleanup(d->cap);
1709 ao2_cleanup(d->confcap);
1714 ast_copy_string(d->name, dname, sizeof(d->name));
1718 static struct skinny_device *skinny_device_destroy(struct skinny_device *d)
1720 ao2_ref(d->cap, -1);
1721 ao2_ref(d->confcap, -1);
1722 ast_endpoint_shutdown(d->endpoint);
1727 static void *get_button_template(struct skinnysession *s, struct button_definition_template *btn)
1729 struct skinny_device *d = s->device;
1730 struct skinny_addon *a;
1734 case SKINNY_DEVICE_30SPPLUS:
1735 case SKINNY_DEVICE_30VIP:
1736 /* 13 rows, 2 columns */
1737 for (i = 0; i < 4; i++)
1738 (btn++)->buttonDefinition = BT_CUST_LINE;
1739 (btn++)->buttonDefinition = BT_REDIAL;
1740 (btn++)->buttonDefinition = BT_VOICEMAIL;
1741 (btn++)->buttonDefinition = BT_CALLPARK;
1742 (btn++)->buttonDefinition = BT_FORWARDALL;
1743 (btn++)->buttonDefinition = BT_CONFERENCE;
1744 for (i = 0; i < 4; i++)
1745 (btn++)->buttonDefinition = BT_NONE;
1746 for (i = 0; i < 13; i++)
1747 (btn++)->buttonDefinition = BT_SPEEDDIAL;
1750 case SKINNY_DEVICE_12SPPLUS:
1751 case SKINNY_DEVICE_12SP:
1752 case SKINNY_DEVICE_12:
1753 /* 6 rows, 2 columns */
1754 for (i = 0; i < 2; i++)
1755 (btn++)->buttonDefinition = BT_CUST_LINE;
1756 for (i = 0; i < 4; i++)
1757 (btn++)->buttonDefinition = BT_SPEEDDIAL;
1758 (btn++)->buttonDefinition = BT_HOLD;
1759 (btn++)->buttonDefinition = BT_REDIAL;
1760 (btn++)->buttonDefinition = BT_TRANSFER;
1761 (btn++)->buttonDefinition = BT_FORWARDALL;
1762 (btn++)->buttonDefinition = BT_CALLPARK;
1763 (btn++)->buttonDefinition = BT_VOICEMAIL;
1765 case SKINNY_DEVICE_7910:
1766 (btn++)->buttonDefinition = BT_LINE;
1767 (btn++)->buttonDefinition = BT_HOLD;
1768 (btn++)->buttonDefinition = BT_TRANSFER;
1769 (btn++)->buttonDefinition = BT_DISPLAY;
1770 (btn++)->buttonDefinition = BT_VOICEMAIL;
1771 (btn++)->buttonDefinition = BT_CONFERENCE;
1772 (btn++)->buttonDefinition = BT_FORWARDALL;
1773 for (i = 0; i < 2; i++)
1774 (btn++)->buttonDefinition = BT_SPEEDDIAL;
1775 (btn++)->buttonDefinition = BT_REDIAL;
1777 case SKINNY_DEVICE_7960:
1778 case SKINNY_DEVICE_7961:
1779 case SKINNY_DEVICE_7961GE:
1780 case SKINNY_DEVICE_7962:
1781 case SKINNY_DEVICE_7965:
1782 for (i = 0; i < 6; i++)
1783 (btn++)->buttonDefinition = BT_CUST_LINESPEEDDIAL;
1785 case SKINNY_DEVICE_7940:
1786 case SKINNY_DEVICE_7941:
1787 case SKINNY_DEVICE_7941GE:
1788 case SKINNY_DEVICE_7942:
1789 case SKINNY_DEVICE_7945:
1790 for (i = 0; i < 2; i++)
1791 (btn++)->buttonDefinition = BT_CUST_LINESPEEDDIAL;
1793 case SKINNY_DEVICE_7935:
1794 case SKINNY_DEVICE_7936:
1795 for (i = 0; i < 2; i++)
1796 (btn++)->buttonDefinition = BT_LINE;
1798 case SKINNY_DEVICE_ATA186:
1799 (btn++)->buttonDefinition = BT_LINE;
1801 case SKINNY_DEVICE_7970:
1802 case SKINNY_DEVICE_7971:
1803 case SKINNY_DEVICE_7975:
1804 case SKINNY_DEVICE_CIPC:
1805 for (i = 0; i < 8; i++)
1806 (btn++)->buttonDefinition = BT_CUST_LINESPEEDDIAL;
1808 case SKINNY_DEVICE_7985:
1809 /* XXX I have no idea what the buttons look like on these. */
1810 ast_log(LOG_WARNING, "Unsupported device type '%d (7985)' found.\n", d->type);
1812 case SKINNY_DEVICE_7912:
1813 case SKINNY_DEVICE_7911:
1814 case SKINNY_DEVICE_7905:
1815 (btn++)->buttonDefinition = BT_LINE;
1816 (btn++)->buttonDefinition = BT_HOLD;
1818 case SKINNY_DEVICE_7920:
1819 /* XXX I don't know if this is right. */
1820 for (i = 0; i < 4; i++)
1821 (btn++)->buttonDefinition = BT_CUST_LINESPEEDDIAL;
1823 case SKINNY_DEVICE_7921:
1824 for (i = 0; i < 6; i++)
1825 (btn++)->buttonDefinition = BT_CUST_LINESPEEDDIAL;
1827 case SKINNY_DEVICE_7902:
1828 ast_log(LOG_WARNING, "Unsupported device type '%d (7902)' found.\n", d->type);
1830 case SKINNY_DEVICE_7906:
1831 ast_log(LOG_WARNING, "Unsupported device type '%d (7906)' found.\n", d->type);
1833 case SKINNY_DEVICE_7931:
1834 ast_log(LOG_WARNING, "Unsupported device type '%d (7931)' found.\n", d->type);
1836 case SKINNY_DEVICE_7937:
1837 ast_log(LOG_WARNING, "Unsupported device type '%d (7937)' found.\n", d->type);
1839 case SKINNY_DEVICE_7914:
1840 ast_log(LOG_WARNING, "Unsupported device type '%d (7914)' found. Expansion module registered by itself?\n", d->type);
1842 case SKINNY_DEVICE_SCCPGATEWAY_AN:
1843 case SKINNY_DEVICE_SCCPGATEWAY_BRI:
1844 ast_log(LOG_WARNING, "Unsupported device type '%d (SCCP gateway)' found.\n", d->type);
1847 ast_log(LOG_WARNING, "Unknown device type '%d' found.\n", d->type);
1851 AST_LIST_LOCK(&d->addons);
1852 AST_LIST_TRAVERSE(&d->addons, a, list) {
1853 if (!strcasecmp(a->type, "7914")) {
1854 for (i = 0; i < 14; i++)
1855 (btn++)->buttonDefinition = BT_CUST_LINESPEEDDIAL;
1857 ast_log(LOG_WARNING, "Unknown addon type '%s' found. Skipping.\n", a->type);
1860 AST_LIST_UNLOCK(&d->addons);
1865 static struct skinny_req *req_alloc(size_t size, int response_message)
1867 struct skinny_req *req;
1869 if (!(req = ast_calloc(1, skinny_header_size + size + 4)))
1872 req->len = htolel(size+4);
1873 req->e = htolel(response_message);
1878 static struct skinny_line *find_line_by_instance(struct skinny_device *d, int instance)
1880 struct skinny_line *l;
1882 /*Dialing from on hook or on a 7920 uses instance 0 in requests
1883 but we need to start looking at instance 1 */
1888 AST_LIST_TRAVERSE(&d->lines, l, list){
1889 if (l->instance == instance)
1894 ast_log(LOG_WARNING, "Could not find line with instance '%d' on device '%s'\n", instance, d->name);
1899 static struct skinny_line *find_line_by_name(const char *dest)
1901 struct skinny_line *l;
1902 struct skinny_line *tmpl = NULL;
1903 struct skinny_device *d;
1907 int checkdevice = 0;
1909 ast_copy_string(line, dest, sizeof(line));
1910 at = strchr(line, '@');
1915 if (!ast_strlen_zero(device))
1918 AST_LIST_LOCK(&devices);
1919 AST_LIST_TRAVERSE(&devices, d, list){
1920 if (checkdevice && tmpl)
1922 else if (!checkdevice) {
1923 /* This is a match, since we're checking for line on every device. */
1924 } else if (!strcasecmp(d->name, device)) {
1928 /* Found the device (or we don't care which device) */
1929 AST_LIST_TRAVERSE(&d->lines, l, list){
1930 /* Search for the right line */
1931 if (!strcasecmp(l->name, line)) {
1933 ast_log(LOG_WARNING, "Ambiguous line name: %s\n", line);
1934 AST_LIST_UNLOCK(&devices);
1941 AST_LIST_UNLOCK(&devices);
1945 static struct skinny_subline *find_subline_by_name(const char *dest)
1947 struct skinny_line *l;
1948 struct skinny_subline *subline;
1949 struct skinny_subline *tmpsubline = NULL;
1950 struct skinny_device *d;
1952 AST_LIST_LOCK(&devices);
1953 AST_LIST_TRAVERSE(&devices, d, list){
1954 AST_LIST_TRAVERSE(&d->lines, l, list){
1955 AST_LIST_TRAVERSE(&l->sublines, subline, list){
1956 if (!strcasecmp(subline->name, dest)) {
1958 ast_verb(2, "Ambiguous subline name: %s\n", dest);
1959 AST_LIST_UNLOCK(&devices);
1962 tmpsubline = subline;
1967 AST_LIST_UNLOCK(&devices);
1971 static struct skinny_subline *find_subline_by_callid(struct skinny_device *d, int callid)
1973 struct skinny_subline *subline;
1974 struct skinny_line *l;
1976 AST_LIST_TRAVERSE(&d->lines, l, list){
1977 AST_LIST_TRAVERSE(&l->sublines, subline, list){
1978 if (subline->callid == callid) {
1987 * implement the setvar config line
1989 static struct ast_variable *add_var(const char *buf, struct ast_variable *list)
1991 struct ast_variable *tmpvar = NULL;
1992 char *varname = ast_strdupa(buf), *varval = NULL;
1994 if ((varval = strchr(varname,'='))) {
1996 if ((tmpvar = ast_variable_new(varname, varval, ""))) {
1997 tmpvar->next = list;
2004 static void skinny_locksub(struct skinny_subchannel *sub)
2006 if (sub && sub->owner) {
2007 ast_channel_lock(sub->owner);
2011 static void skinny_unlocksub(struct skinny_subchannel *sub)
2013 if (sub && sub->owner) {
2014 ast_channel_unlock(sub->owner);
2018 static int skinny_sched_del(int sched_id, struct skinny_subchannel *sub)
2020 SKINNY_DEBUG(DEBUG_SUB, 3, "Sub %u - Deleting SCHED %d\n",
2021 sub->callid, sched_id);
2022 return ast_sched_del(sched, sched_id);
2025 static int skinny_sched_add(int when, ast_sched_cb callback, struct skinny_subchannel *sub)
2028 ret = ast_sched_add(sched, when, callback, sub);
2029 SKINNY_DEBUG(DEBUG_SUB, 3, "Sub %u - Added SCHED %d\n",
2034 /* It's quicker/easier to find the subchannel when we know the instance number too */
2035 static struct skinny_subchannel *find_subchannel_by_instance_reference(struct skinny_device *d, int instance, int reference)
2037 struct skinny_line *l = find_line_by_instance(d, instance);
2038 struct skinny_subchannel *sub;
2044 /* 7920 phones set call reference to 0, so use the first
2045 sub-channel on the list.
2046 This MIGHT need more love to be right */
2048 sub = AST_LIST_FIRST(&l->sub);
2050 AST_LIST_TRAVERSE(&l->sub, sub, list) {
2051 if (sub->callid == reference)
2056 ast_log(LOG_WARNING, "Could not find subchannel with reference '%d' on '%s'\n", reference, d->name);
2061 /* Find the subchannel when we only have the callid - this shouldn't happen often */
2062 static struct skinny_subchannel *find_subchannel_by_reference(struct skinny_device *d, int reference)
2064 struct skinny_line *l;
2065 struct skinny_subchannel *sub = NULL;
2067 AST_LIST_TRAVERSE(&d->lines, l, list){
2068 AST_LIST_TRAVERSE(&l->sub, sub, list){
2069 if (sub->callid == reference)
2077 ast_log(LOG_WARNING, "Could not find any lines that contained a subchannel with reference '%d' on device '%s'\n", reference, d->name);
2080 ast_log(LOG_WARNING, "Could not find subchannel with reference '%d' on '%s@%s'\n", reference, l->name, d->name);
2086 static struct skinny_speeddial *find_speeddial_by_instance(struct skinny_device *d, int instance, int isHint)
2088 struct skinny_speeddial *sd;
2090 AST_LIST_TRAVERSE(&d->speeddials, sd, list) {
2091 if (sd->isHint == isHint && sd->instance == instance)
2096 ast_log(LOG_WARNING, "Could not find speeddial with instance '%d' on device '%s'\n", instance, d->name);
2101 static struct ast_format *codec_skinny2ast(enum skinny_codecs skinnycodec)
2103 switch (skinnycodec) {
2104 case SKINNY_CODEC_ALAW:
2105 return ast_format_alaw;
2106 case SKINNY_CODEC_ULAW:
2107 return ast_format_ulaw;
2108 case SKINNY_CODEC_G722:
2109 return ast_format_g722;
2110 case SKINNY_CODEC_G723_1:
2111 return ast_format_g723;
2112 case SKINNY_CODEC_G729A:
2113 return ast_format_g729;
2114 case SKINNY_CODEC_G726_32:
2115 return ast_format_g726; /* XXX Is this right? */
2116 case SKINNY_CODEC_H261:
2117 return ast_format_h261;
2118 case SKINNY_CODEC_H263:
2119 return ast_format_h263;
2121 return ast_format_none;
2125 static int codec_ast2skinny(const struct ast_format *astcodec)
2127 if (ast_format_cmp(astcodec, ast_format_alaw) == AST_FORMAT_CMP_EQUAL) {
2128 return SKINNY_CODEC_ALAW;
2129 } else if (ast_format_cmp(astcodec, ast_format_ulaw) == AST_FORMAT_CMP_EQUAL) {
2130 return SKINNY_CODEC_ULAW;
2131 } else if (ast_format_cmp(astcodec, ast_format_g722) == AST_FORMAT_CMP_EQUAL) {
2132 return SKINNY_CODEC_G722;
2133 } else if (ast_format_cmp(astcodec, ast_format_g723) == AST_FORMAT_CMP_EQUAL) {
2134 return SKINNY_CODEC_G723_1;
2135 } else if (ast_format_cmp(astcodec, ast_format_g729) == AST_FORMAT_CMP_EQUAL) {
2136 return SKINNY_CODEC_G729A;
2137 } else if (ast_format_cmp(astcodec, ast_format_g726) == AST_FORMAT_CMP_EQUAL) {
2138 return SKINNY_CODEC_G726_32;
2139 } else if (ast_format_cmp(astcodec, ast_format_h261) == AST_FORMAT_CMP_EQUAL) {
2140 return SKINNY_CODEC_H261;
2141 } else if (ast_format_cmp(astcodec, ast_format_h263) == AST_FORMAT_CMP_EQUAL) {
2142 return SKINNY_CODEC_H263;
2148 static int set_callforwards(struct skinny_line *l, const char *cfwd, int cfwdtype)
2153 if (!ast_strlen_zero(cfwd)) {
2154 if (cfwdtype & SKINNY_CFWD_ALL) {
2155 l->cfwdtype |= SKINNY_CFWD_ALL;
2156 ast_copy_string(l->call_forward_all, cfwd, sizeof(l->call_forward_all));
2158 if (cfwdtype & SKINNY_CFWD_BUSY) {
2159 l->cfwdtype |= SKINNY_CFWD_BUSY;
2160 ast_copy_string(l->call_forward_busy, cfwd, sizeof(l->call_forward_busy));
2162 if (cfwdtype & SKINNY_CFWD_NOANSWER) {
2163 l->cfwdtype |= SKINNY_CFWD_NOANSWER;
2164 ast_copy_string(l->call_forward_noanswer, cfwd, sizeof(l->call_forward_noanswer));
2167 if (cfwdtype & SKINNY_CFWD_ALL) {
2168 l->cfwdtype &= ~SKINNY_CFWD_ALL;
2169 memset(l->call_forward_all, 0, sizeof(l->call_forward_all));
2171 if (cfwdtype & SKINNY_CFWD_BUSY) {
2172 l->cfwdtype &= ~SKINNY_CFWD_BUSY;
2173 memset(l->call_forward_busy, 0, sizeof(l->call_forward_busy));
2175 if (cfwdtype & SKINNY_CFWD_NOANSWER) {
2176 l->cfwdtype &= ~SKINNY_CFWD_NOANSWER;
2177 memset(l->call_forward_noanswer, 0, sizeof(l->call_forward_noanswer));
2183 static void cleanup_stale_contexts(char *new, char *old)
2185 char *oldcontext, *newcontext, *stalecontext, *stringp, newlist[AST_MAX_CONTEXT];
2187 while ((oldcontext = strsep(&old, "&"))) {
2188 stalecontext = NULL;
2189 ast_copy_string(newlist, new, sizeof(newlist));
2191 while ((newcontext = strsep(&stringp, "&"))) {
2192 if (strcmp(newcontext, oldcontext) == 0) {
2193 /* This is not the context you're looking for */
2194 stalecontext = NULL;
2196 } else if (strcmp(newcontext, oldcontext)) {
2197 stalecontext = oldcontext;
2202 ast_context_destroy(ast_context_find(stalecontext), "Skinny");
2206 static void register_exten(struct skinny_line *l)
2209 char *stringp, *ext, *context;
2211 if (ast_strlen_zero(regcontext))
2214 ast_copy_string(multi, S_OR(l->regexten, l->name), sizeof(multi));
2216 while ((ext = strsep(&stringp, "&"))) {
2217 if ((context = strchr(ext, '@'))) {
2218 *context++ = '\0'; /* split ext@context */
2219 if (!ast_context_find(context)) {
2220 ast_log(LOG_WARNING, "Context %s must exist in regcontext= in skinny.conf!\n", context);
2224 context = regcontext;
2226 ast_add_extension(context, 1, ext, 1, NULL, NULL, "Noop",
2227 ast_strdup(l->name), ast_free_ptr, "Skinny");
2231 static void unregister_exten(struct skinny_line *l)
2234 char *stringp, *ext, *context;
2236 if (ast_strlen_zero(regcontext))
2239 ast_copy_string(multi, S_OR(l->regexten, l->name), sizeof(multi));
2241 while ((ext = strsep(&stringp, "&"))) {
2242 if ((context = strchr(ext, '@'))) {
2243 *context++ = '\0'; /* split ext@context */
2244 if (!ast_context_find(context)) {
2245 ast_log(LOG_WARNING, "Context %s must exist in regcontext= in skinny.conf!\n", context);
2249 context = regcontext;
2251 ast_context_remove_extension(context, ext, 1, NULL);
2255 static int skinny_register(struct skinny_req *req, struct skinnysession *s)
2257 struct skinny_device *d;
2258 struct skinny_line *l;
2259 struct skinny_subline *subline;
2260 struct skinny_speeddial *sd;
2261 struct sockaddr_in sin;
2266 if (s->auth_timeout_sched && ast_sched_del(sched, s->auth_timeout_sched)) {
2269 s->auth_timeout_sched = 0;
2271 AST_LIST_LOCK(&devices);
2272 AST_LIST_TRAVERSE(&devices, d, list){
2273 struct ast_sockaddr addr;
2274 ast_sockaddr_from_sin(&addr, &s->sin);
2275 if (!strcasecmp(req->data.reg.name, d->id)
2276 && ast_apply_ha(d->ha, &addr)) {
2277 RAII_VAR(struct ast_json *, blob, NULL, ast_json_unref);
2280 ast_log(LOG_WARNING, "Device already registered.\n");
2281 transmit_definetimedate(d);
2286 d->type = letohl(req->data.reg.type);
2287 d->protocolversion = letohl(req->data.reg.protocolVersion);
2288 if (ast_strlen_zero(d->version_id)) {
2289 ast_copy_string(d->version_id, version_id, sizeof(d->version_id));
2294 if (getsockname(s->fd, (struct sockaddr *)&sin, &slen)) {
2295 ast_log(LOG_WARNING, "Cannot get socket name\n");
2296 sin.sin_addr = __ourip;
2298 d->ourip = sin.sin_addr;
2300 AST_LIST_TRAVERSE(&d->speeddials, sd, list) {
2301 sd->stateid = ast_extension_state_add(sd->context, sd->exten, skinny_extensionstate_cb, sd->container);
2304 AST_LIST_TRAVERSE(&d->lines, l, list) {
2307 AST_LIST_TRAVERSE(&d->lines, l, list) {
2308 ast_format_cap_get_compatible(l->confcap, d->cap, l->cap);
2309 /* l->capability = d->capability; */
2310 l->instance = instance;
2311 l->newmsgs = ast_app_has_voicemail(l->mailbox, NULL);
2312 set_callforwards(l, NULL, SKINNY_CFWD_ALL|SKINNY_CFWD_BUSY|SKINNY_CFWD_NOANSWER);
2314 /* initialize MWI on line and device */
2315 mwi_event_cb(l, NULL, NULL);
2316 AST_LIST_TRAVERSE(&l->sublines, subline, list) {
2317 ast_extension_state_add(subline->context, subline->exten, skinny_extensionstate_cb, subline->container);
2319 ast_devstate_changed(AST_DEVICE_NOT_INUSE, AST_DEVSTATE_CACHABLE, "Skinny/%s", l->name);
2322 ast_endpoint_set_state(d->endpoint, AST_ENDPOINT_ONLINE);
2323 blob = ast_json_pack("{s: s}", "peer_status", "Registered");
2324 ast_endpoint_blob_publish(d->endpoint, ast_endpoint_state_type(), blob);
2329 AST_LIST_UNLOCK(&devices);
2333 static void end_session(struct skinnysession *s)
2335 pthread_cancel(s->t);
2339 static char *callstate2str(int ind)
2344 case SKINNY_OFFHOOK:
2345 return "SKINNY_OFFHOOK";
2347 return "SKINNY_ONHOOK";
2348 case SKINNY_RINGOUT:
2349 return "SKINNY_RINGOUT";
2351 return "SKINNY_RINGIN";
2352 case SKINNY_CONNECTED:
2353 return "SKINNY_CONNECTED";
2355 return "SKINNY_BUSY";
2356 case SKINNY_CONGESTION:
2357 return "SKINNY_CONGESTION";
2358 case SKINNY_PROGRESS:
2359 return "SKINNY_PROGRESS";
2361 return "SKINNY_HOLD";
2362 case SKINNY_CALLWAIT:
2363 return "SKINNY_CALLWAIT";
2365 if (!(tmp = ast_threadstorage_get(&callstate2str_threadbuf, CALLSTATE2STR_BUFSIZE)))
2367 snprintf(tmp, CALLSTATE2STR_BUFSIZE, "UNKNOWN-%d", ind);
2374 static int transmit_response_bysession(struct skinnysession *s, struct skinny_req *req)
2380 ast_log(LOG_WARNING, "Asked to transmit to a non-existent session!\n");
2384 ast_mutex_lock(&s->lock);
2386 /* Don't optimize out assigning letohl() to len. It is necessary to guarantee that the comparison will always catch invalid values.
2387 * letohl() may or may not return a signed value depending upon which definition is used. */
2388 len = letohl(req->len);
2389 if (SKINNY_MAX_PACKET < len) {
2390 ast_log(LOG_WARNING, "transmit_response: the length of the request (%u) is out of bounds (%d)\n", letohl(req->len), SKINNY_MAX_PACKET);
2391 ast_mutex_unlock(&s->lock);
2395 memset(s->outbuf, 0, sizeof(s->outbuf));
2396 memcpy(s->outbuf, req, skinny_header_size);
2397 memcpy(s->outbuf+skinny_header_size, &req->data, letohl(req->len));
2399 res = write(s->fd, s->outbuf, letohl(req->len)+8);
2401 if (res != letohl(req->len)+8) {
2402 ast_log(LOG_WARNING, "Transmit: write only sent %d out of %u bytes: %s\n", res, letohl(req->len)+8, strerror(errno));
2404 ast_log(LOG_WARNING, "Transmit: Skinny Client was lost, unregistering\n");
2411 ast_mutex_unlock(&s->lock);
2415 static void transmit_response(struct skinny_device *d, struct skinny_req *req)
2417 transmit_response_bysession(d->session, req);
2420 static void transmit_registerrej(struct skinnysession *s)
2422 struct skinny_req *req;
2425 if (!(req = req_alloc(sizeof(struct register_rej_message), REGISTER_REJ_MESSAGE)))
2428 memcpy(&name, req->data.reg.name, sizeof(name));
2429 snprintf(req->data.regrej.errMsg, sizeof(req->data.regrej.errMsg), "No Authority: %s", name);
2431 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting REGISTER_REJ_MESSAGE to UNKNOWN_DEVICE\n");
2432 transmit_response_bysession(s, req);
2435 static void transmit_speaker_mode(struct skinny_device *d, int mode)
2437 struct skinny_req *req;
2439 if (!(req = req_alloc(sizeof(struct set_speaker_message), SET_SPEAKER_MESSAGE)))
2442 req->data.setspeaker.mode = htolel(mode);
2444 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting SET_SPEAKER_MESSAGE to %s, mode %d\n", d->name, mode);
2445 transmit_response(d, req);
2448 static void transmit_microphone_mode(struct skinny_device *d, int mode)
2450 struct skinny_req *req;
2452 if (!(req = req_alloc(sizeof(struct set_microphone_message), SET_MICROPHONE_MESSAGE)))
2455 req->data.setmicrophone.mode = htolel(mode);
2457 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting SET_MICROPHONE_MESSAGE to %s, mode %d\n", d->name, mode);
2458 transmit_response(d, req);
2461 //static void transmit_callinfo(struct skinny_subchannel *sub)
2462 static void transmit_callinfo(struct skinny_device *d, int instance, int callid,
2463 char *fromname, char *fromnum, char *toname, char *tonum, int calldirection, char *origtonum, char *origtoname)
2465 struct skinny_req *req;
2467 if (!(req = req_alloc(sizeof(struct call_info_message), CALL_INFO_MESSAGE)))
2470 ast_copy_string(req->data.callinfo.callingPartyName, fromname, sizeof(req->data.callinfo.callingPartyName));
2471 ast_copy_string(req->data.callinfo.callingParty, fromnum, sizeof(req->data.callinfo.callingParty));
2472 ast_copy_string(req->data.callinfo.calledPartyName, toname, sizeof(req->data.callinfo.calledPartyName));
2473 ast_copy_string(req->data.callinfo.calledParty, tonum, sizeof(req->data.callinfo.calledParty));
2475 ast_copy_string(req->data.callinfo.originalCalledPartyName, origtoname, sizeof(req->data.callinfo.originalCalledPartyName));
2478 ast_copy_string(req->data.callinfo.originalCalledParty, origtonum, sizeof(req->data.callinfo.originalCalledParty));
2481 req->data.callinfo.instance = htolel(instance);
2482 req->data.callinfo.reference = htolel(callid);
2483 req->data.callinfo.type = htolel(calldirection);
2485 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting CALL_INFO_MESSAGE to %s, to %s(%s) from %s(%s), origto %s(%s) (dir=%d) on %s(%d)\n",
2486 d->name, toname, tonum, fromname, fromnum, origtoname, origtonum, calldirection, d->name, instance);
2487 transmit_response(d, req);
2490 static void transmit_callinfo_variable(struct skinny_device *d, int instance, int callreference,
2491 char *fromname, char *fromnum, char *toname, char *tonum, int calldirection, char *origtonum, char *origtoname)
2493 struct skinny_req *req;
2495 char *thestrings[13];
2497 int callinfostrleft = MAXCALLINFOSTR;
2499 if (!(req = req_alloc(sizeof(struct call_info_message_variable), CALL_INFO_MESSAGE_VARIABLE)))
2502 req->data.callinfomessagevariable.instance = htolel(instance);
2503 req->data.callinfomessagevariable.callreference = htolel(callreference);
2504 req->data.callinfomessagevariable.calldirection = htolel(calldirection);
2506 req->data.callinfomessagevariable.unknown1 = htolel(0x00);
2507 req->data.callinfomessagevariable.unknown2 = htolel(0x00);
2508 req->data.callinfomessagevariable.unknown3 = htolel(0x00);
2509 req->data.callinfomessagevariable.unknown4 = htolel(0x00);
2510 req->data.callinfomessagevariable.unknown5 = htolel(0x00);
2512 thestrings[0] = fromnum;
2513 thestrings[1] = ""; /* Appears to be origfrom */
2514 if (calldirection == SKINNY_OUTGOING) {
2515 thestrings[2] = tonum;
2516 thestrings[3] = origtonum;
2527 thestrings[9] = fromname;
2528 thestrings[10] = toname;
2529 thestrings[11] = origtoname;
2530 thestrings[12] = "";
2532 strptr = req->data.callinfomessagevariable.calldetails;
2534 for(i = 0; i < 13; i++) {
2535 if (thestrings[i]) {
2536 ast_copy_string(strptr, thestrings[i], callinfostrleft);
2537 strptr += strlen(thestrings[i]) + 1;
2538 callinfostrleft -= strlen(thestrings[i]) + 1;
2540 ast_copy_string(strptr, "", callinfostrleft);
2546 req->len = req->len - (callinfostrleft & ~0x3);
2548 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting CALL_INFO_MESSAGE_VARIABLE to %s, to %s(%s) from %s(%s), origto %s(%s) (dir=%d) on %s(%d)\n",
2549 d->name, toname, tonum, fromname, fromnum, origtoname, origtonum, calldirection, d->name, instance);
2550 transmit_response(d, req);
2553 static void send_callinfo(struct skinny_subchannel *sub)
2555 struct ast_channel *ast;
2556 struct skinny_device *d;
2557 struct skinny_line *l;
2558 struct ast_party_id connected_id;
2564 if (!sub || !sub->owner || !sub->line || !sub->line->device) {
2571 connected_id = ast_channel_connected_effective_id(ast);
2573 if (sub->calldirection == SKINNY_INCOMING) {
2574 if ((ast_party_id_presentation(&connected_id) & AST_PRES_RESTRICTION) == AST_PRES_ALLOWED) {
2575 fromname = S_COR(connected_id.name.valid, connected_id.name.str, "");
2576 fromnum = S_COR(connected_id.number.valid, connected_id.number.str, "");
2581 toname = S_COR(ast_channel_caller(ast)->id.name.valid, ast_channel_caller(ast)->id.name.str, "");
2582 tonum = S_COR(ast_channel_caller(ast)->id.number.valid, ast_channel_caller(ast)->id.number.str, "");
2583 } else if (sub->calldirection == SKINNY_OUTGOING) {
2584 fromname = S_COR(ast_channel_caller(ast)->id.name.valid, ast_channel_caller(ast)->id.name.str, "");
2585 fromnum = S_COR(ast_channel_caller(ast)->id.number.valid, ast_channel_caller(ast)->id.number.str, "");
2586 toname = S_COR(ast_channel_connected(ast)->id.name.valid, ast_channel_connected(ast)->id.name.str, "");
2587 tonum = S_COR(ast_channel_connected(ast)->id.number.valid, ast_channel_connected(ast)->id.number.str, l->lastnumberdialed);
2589 ast_verb(1, "Error sending Callinfo to %s(%d) - No call direction in sub\n", d->name, l->instance);
2593 if (d->protocolversion < 17) {
2594 transmit_callinfo(d, l->instance, sub->callid, fromname, fromnum, toname, tonum, sub->calldirection, sub->origtonum, sub->origtoname);
2596 transmit_callinfo_variable(d, l->instance, sub->callid, fromname, fromnum, toname, tonum, sub->calldirection, sub->origtonum, sub->origtoname);
2600 static void push_callinfo(struct skinny_subline *subline, struct skinny_subchannel *sub)
2602 struct ast_channel *ast;
2603 struct skinny_device *d;
2604 struct skinny_line *l;
2605 struct ast_party_id connected_id;
2611 if (!sub || !sub->owner || !sub->line || !sub->line->device) {
2618 connected_id = ast_channel_connected_effective_id(ast);
2620 if (sub->calldirection == SKINNY_INCOMING) {
2621 if((ast_party_id_presentation(&connected_id) & AST_PRES_RESTRICTION) == AST_PRES_ALLOWED) {
2622 fromname = S_COR(connected_id.name.valid, connected_id.name.str, "");
2623 fromnum = S_COR(connected_id.number.valid, connected_id.number.str, "");
2628 toname = S_COR(ast_channel_caller(ast)->id.name.valid, ast_channel_caller(ast)->id.name.str, "");
2629 tonum = S_COR(ast_channel_caller(ast)->id.number.valid, ast_channel_caller(ast)->id.number.str, "");
2630 } else if (sub->calldirection == SKINNY_OUTGOING) {
2631 fromname = S_COR(ast_channel_caller(ast)->id.name.valid, ast_channel_caller(ast)->id.name.str, "");
2632 fromnum = S_COR(ast_channel_caller(ast)->id.number.valid, ast_channel_caller(ast)->id.number.str, "");
2633 toname = S_COR(ast_channel_connected(ast)->id.name.valid, ast_channel_connected(ast)->id.name.str, "");
2634 tonum = S_COR(ast_channel_connected(ast)->id.number.valid, ast_channel_connected(ast)->id.number.str, l->lastnumberdialed);
2636 ast_verb(1, "Error sending Callinfo to %s(%d) - No call direction in sub\n", d->name, l->instance);
2640 if (d->protocolversion < 17) {
2641 transmit_callinfo(subline->line->device, subline->line->instance, subline->callid, fromname, fromnum, toname, tonum, sub->calldirection, sub->origtonum, sub->origtoname);
2643 transmit_callinfo_variable(subline->line->device, subline->line->instance, subline->callid, fromname, fromnum, toname, tonum, sub->calldirection, sub->origtonum, sub->origtoname);
2647 static void transmit_connect(struct skinny_device *d, struct skinny_subchannel *sub)
2649 struct skinny_req *req;
2650 struct skinny_line *l = sub->line;
2651 struct ast_format *tmpfmt;
2652 unsigned int framing;
2654 if (!(req = req_alloc(sizeof(struct open_receive_channel_message), OPEN_RECEIVE_CHANNEL_MESSAGE)))
2657 tmpfmt = ast_format_cap_get_format(l->cap, 0);
2658 framing = ast_format_cap_get_format_framing(l->cap, tmpfmt);
2660 req->data.openreceivechannel.conferenceId = htolel(sub->callid);
2661 req->data.openreceivechannel.partyId = htolel(sub->callid);
2662 req->data.openreceivechannel.packets = htolel(framing);
2663 req->data.openreceivechannel.capability = htolel(codec_ast2skinny(tmpfmt));
2664 req->data.openreceivechannel.echo = htolel(0);
2665 req->data.openreceivechannel.bitrate = htolel(0);
2667 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting OPEN_RECEIVE_CHANNEL_MESSAGE to %s, confid %u, partyid %u, ms %u, fmt %d, echo %d, brate %d\n",
2668 d->name, sub->callid, sub->callid, framing, codec_ast2skinny(tmpfmt), 0, 0);
2670 ao2_ref(tmpfmt, -1);
2672 transmit_response(d, req);
2675 static void transmit_start_tone(struct skinny_device *d, int tone, int instance, int reference)
2677 struct skinny_req *req;
2678 if (!(req = req_alloc(sizeof(struct start_tone_message), START_TONE_MESSAGE)))
2680 req->data.starttone.tone = htolel(tone);
2681 req->data.starttone.instance = htolel(instance);
2682 req->data.starttone.reference = htolel(reference);
2684 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting START_TONE_MESSAGE to %s, tone %d, inst %d, ref %d\n",
2685 d->name, tone, instance, reference);
2686 transmit_response(d, req);
2689 static void transmit_stop_tone(struct skinny_device *d, int instance, int reference)
2691 struct skinny_req *req;
2692 if (!(req = req_alloc(sizeof(struct stop_tone_message), STOP_TONE_MESSAGE)))
2694 req->data.stoptone.instance = htolel(instance);
2695 req->data.stoptone.reference = htolel(reference);
2697 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting STOP_TONE_MESSAGE to %s, inst %d, ref %d\n",
2698 d->name, instance, reference);
2699 transmit_response(d, req);
2702 static int keyset_translatebitmask(int keyset, int intmask)
2706 const struct soft_key_definitions *softkeymode = soft_key_default_definitions;
2708 for(x = 0; x < ARRAY_LEN(soft_key_default_definitions); x++) {
2709 if (softkeymode[x].mode == keyset) {
2710 const uint8_t *defaults = softkeymode[x].defaults;
2712 for (y = 0; y < softkeymode[x].count; y++) {
2713 if (intmask & (1 << (defaults[y]))) {
2714 extmask |= (1 << ((y)));
2724 static void transmit_selectsoftkeys(struct skinny_device *d, int instance, int callid, int softkey, int mask)
2726 struct skinny_req *req;
2729 if (!(req = req_alloc(sizeof(struct select_soft_keys_message), SELECT_SOFT_KEYS_MESSAGE)))
2732 newmask = keyset_translatebitmask(softkey, mask);
2733 req->data.selectsoftkey.instance = htolel(instance);
2734 req->data.selectsoftkey.reference = htolel(callid);
2735 req->data.selectsoftkey.softKeySetIndex = htolel(softkey);
2736 req->data.selectsoftkey.validKeyMask = htolel(newmask);
2738 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting SELECT_SOFT_KEYS_MESSAGE to %s, inst %d, callid %d, softkey %d, mask 0x%08x\n",
2739 d->name, instance, callid, softkey, (unsigned)newmask);
2740 transmit_response(d, req);
2743 static void transmit_lamp_indication(struct skinny_device *d, int stimulus, int instance, int indication)
2745 struct skinny_req *req;
2747 if (!(req = req_alloc(sizeof(struct set_lamp_message), SET_LAMP_MESSAGE)))
2750 req->data.setlamp.stimulus = htolel(stimulus);
2751 req->data.setlamp.stimulusInstance = htolel(instance);
2752 req->data.setlamp.deviceStimulus = htolel(indication);
2754 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting SET_LAMP_MESSAGE to %s, stim %d, inst %d, ind %d\n",
2755 d->name, stimulus, instance, indication);
2756 transmit_response(d, req);
2759 static void transmit_ringer_mode(struct skinny_device *d, int mode)
2761 struct skinny_req *req;
2763 if (!(req = req_alloc(sizeof(struct set_ringer_message), SET_RINGER_MESSAGE)))
2766 req->data.setringer.ringerMode = htolel(mode);
2767 /* XXX okay, I don't quite know what this is, but here's what happens (on a 7960).
2768 Note: The phone will always show as ringing on the display.
2770 1: phone will audibly ring over and over
2771 2: phone will audibly ring only once
2772 any other value, will NOT cause the phone to audibly ring
2774 req->data.setringer.unknown1 = htolel(1);
2775 /* XXX the value here doesn't seem to change anything. Must be higher than 0.
2776 Perhaps a packet capture can shed some light on this. */
2777 req->data.setringer.unknown2 = htolel(1);
2779 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting SET_RINGER_MESSAGE to %s, mode %d, unk1 1, unk2 1\n",
2781 transmit_response(d, req);
2784 static void transmit_clear_display_message(struct skinny_device *d, int instance, int reference)
2786 struct skinny_req *req;
2787 if (!(req = req_alloc(sizeof(struct clear_display_message), CLEAR_DISPLAY_MESSAGE)))
2790 //what do we want hear CLEAR_DISPLAY_MESSAGE or CLEAR_PROMPT_STATUS???
2791 //if we are clearing the display, it appears there is no instance and refernece info (size 0)
2792 //req->data.clearpromptstatus.lineInstance = instance;
2793 //req->data.clearpromptstatus.callReference = reference;
2795 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting CLEAR_DISPLAY_MESSAGE to %s\n", d->name);
2796 transmit_response(d, req);
2799 /* This function is not currently used, but will be (wedhorn)*/
2800 /* static void transmit_display_message(struct skinny_device *d, const char *text, int instance, int reference)
2802 struct skinny_req *req;
2805 ast_verb(1, "Bug, Asked to display empty message\n");
2809 if (!(req = req_alloc(sizeof(struct displaytext_message), DISPLAYTEXT_MESSAGE)))
2812 ast_copy_string(req->data.displaytext.text, text, sizeof(req->data.displaytext.text));
2813 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAYTEXT_MESSAGE to %s, text %s\n", d->name, text);
2814 transmit_response(d, req);
2817 static void transmit_displaynotify(struct skinny_device *d, const char *text, int t)
2819 struct skinny_req *req;
2821 if (!(req = req_alloc(sizeof(struct display_notify_message), DISPLAY_NOTIFY_MESSAGE)))
2824 ast_copy_string(req->data.displaynotify.displayMessage, text, sizeof(req->data.displaynotify.displayMessage));
2825 req->data.displaynotify.displayTimeout = htolel(t);
2827 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAY_NOTIFY_MESSAGE to %s, text %s\n", d->name, text);
2828 transmit_response(d, req);
2831 static void transmit_clearprinotify(struct skinny_device *d, int priority)
2833 struct skinny_req *req;
2835 if (!(req = req_alloc(sizeof(struct clear_prinotify_message), CLEAR_PRINOTIFY_MESSAGE)))
2838 req->data.clearprinotify.priority = htolel(priority);
2840 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting CLEAR_PRINOTIFY_MESSAGE to %s, priority %d\n", d->name, priority);
2841 transmit_response(d, req);
2844 static void _transmit_displayprinotify(struct skinny_device *d, const char *text, const char *extratext, int timeout, int priority)
2846 struct skinny_req *req;
2848 if (!(req = req_alloc(sizeof(struct display_prinotify_message), DISPLAY_PRINOTIFY_MESSAGE)))
2851 req->data.displayprinotify.timeout = htolel(timeout);
2852 req->data.displayprinotify.priority = htolel(priority);
2854 if ((char)*text == '\200') {
2855 int octalstrlen = strlen(text);
2856 ast_copy_string(req->data.displayprinotify.text, text, sizeof(req->data.displayprinotify.text));
2857 ast_copy_string(req->data.displayprinotify.text+octalstrlen, extratext, sizeof(req->data.displayprinotify.text)-octalstrlen);
2858 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAY_PRINOTIFY_MESSAGE to %s, '\\%03o\\%03o', '%s', timeout=%d, priority=%d\n",
2859 d->name, (unsigned)*text, (unsigned)*(text+1), extratext, timeout, priority);
2861 ast_copy_string(req->data.displayprinotify.text, text, sizeof(req->data.displayprinotify.text));
2862 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAY_PRINOTIFY_MESSAGE to %s, '%s', timeout=%d, priority=%d\n",
2863 d->name, text, timeout, priority);
2866 transmit_response(d, req);
2869 static void _transmit_displayprinotifyvar(struct skinny_device *d, const char *text, const char *extratext, int timeout, int priority)
2871 struct skinny_req *req;
2874 if (!(req = req_alloc(sizeof(struct display_prinotify_message_variable), DISPLAY_PRINOTIFY_MESSAGE_VARIABLE)))
2877 req->data.displayprinotifyvar.timeout = htolel(timeout);
2878 req->data.displayprinotifyvar.priority = htolel(priority);
2880 if ((char)*text == '\200') {
2881 int octalstrlen = strlen(text);
2882 ast_copy_string(req->data.displayprinotifyvar.text, text, sizeof(req->data.displayprinotifyvar.text));
2883 ast_copy_string(req->data.displayprinotifyvar.text+octalstrlen, extratext, sizeof(req->data.displayprinotifyvar.text)-octalstrlen);
2884 packetlen = req->len - MAXDISPLAYNOTIFYSTR + strlen(text) + strlen(extratext);
2885 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAY_PRINOTIFY_MESSAGE_VARIABLE to %s, '\\%03o\\%03o', '%s', timeout=%d, priority=%d\n",
2886 d->name, (unsigned)*text, (unsigned)*(text+1), extratext, timeout, priority);
2888 ast_copy_string(req->data.displayprinotifyvar.text, text, sizeof(req->data.displayprinotifyvar.text));
2889 packetlen = req->len - MAXDISPLAYNOTIFYSTR + strlen(text);
2890 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAY_PRINOTIFY_MESSAGE_VARIABLE to %s, '%s', timeout=%d, priority=%d\n",
2891 d->name, text, timeout, priority);
2894 req->len = (packetlen & ~0x3) + 4;
2896 transmit_response(d, req);
2899 static void send_displayprinotify(struct skinny_device *d, const char *text, const char *extratext, int timeout, int priority)
2901 if (d->protocolversion < 17) {
2902 _transmit_displayprinotify(d, text, extratext, timeout, priority);
2904 _transmit_displayprinotifyvar(d, text, extratext, timeout, priority);
2908 static void transmit_displaypromptstatus(struct skinny_device *d, const char *text, const char *extratext, int t, int instance, int callid)
2910 struct skinny_req *req;
2912 if (!(req = req_alloc(sizeof(struct display_prompt_status_message), DISPLAY_PROMPT_STATUS_MESSAGE)))
2915 req->data.displaypromptstatus.messageTimeout = htolel(t);
2916 req->data.displaypromptstatus.lineInstance = htolel(instance);
2917 req->data.displaypromptstatus.callReference = htolel(callid);
2919 if ((char)*text == '\200') {
2920 int octalstrlen = strlen(text);
2921 ast_copy_string(req->data.displaypromptstatus.promptMessage, text, sizeof(req->data.displaypromptstatusvar.promptMessage));
2922 ast_copy_string(req->data.displaypromptstatus.promptMessage+octalstrlen, extratext, sizeof(req->data.displaypromptstatus.promptMessage)-octalstrlen);
2923 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAY_PROMPT_STATUS_MESSAGE to %s, '\\%03o\\%03o', '%s'\n",
2924 d->name, (unsigned)*text, (unsigned)*(text+1), extratext);
2926 ast_copy_string(req->data.displaypromptstatus.promptMessage, text, sizeof(req->data.displaypromptstatus.promptMessage));
2927 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAY_PROMPT_STATUS_MESSAGE to %s, '%s'\n",
2930 transmit_response(d, req);
2933 static void transmit_displaypromptstatusvar(struct skinny_device *d, const char *text, const char *extratext, int t, int instance, int callid)
2935 struct skinny_req *req;
2938 if (!(req = req_alloc(sizeof(struct display_prompt_status_message_variable), DISPLAY_PROMPT_STATUS_MESSAGE_VARIABLE)))
2941 req->data.displaypromptstatusvar.lineInstance = htolel(instance);
2942 req->data.displaypromptstatusvar.callReference = htolel(callid);
2944 if ((char)*text == '\200') {
2945 int octalstrlen = strlen(text);
2946 ast_copy_string(req->data.displaypromptstatusvar.promptMessage, text, sizeof(req->data.displaypromptstatusvar.promptMessage));
2947 ast_copy_string(req->data.displaypromptstatusvar.promptMessage+octalstrlen, extratext, sizeof(req->data.displaypromptstatusvar.promptMessage)-octalstrlen);
2948 packetlen = req->len - MAXCALLINFOSTR + strlen(text) + strlen(extratext);
2949 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAY_PROMPT_STATUS_MESSAGE_VARIABLE to %s, '\\%03o\\%03o', '%s'\n",
2950 d->name, (unsigned)*text, (unsigned)*(text+1), extratext);
2952 ast_copy_string(req->data.displaypromptstatusvar.promptMessage, text, sizeof(req->data.displaypromptstatus.promptMessage));
2953 packetlen = req->len - MAXCALLINFOSTR + strlen(text);
2954 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DISPLAY_PROMPT_STATUS_MESSAGE_VARIABLE to %s, '%s'\n",
2957 req->len = (packetlen & ~0x3) + 4;
2959 transmit_response(d, req);
2962 static void send_displaypromptstatus(struct skinny_device *d, const char *text, const char *extratext, int t, int instance, int callid)
2964 if (d->protocolversion < 17) {
2965 transmit_displaypromptstatus(d, text, extratext, t, instance, callid);
2967 transmit_displaypromptstatusvar(d, text, extratext, t, instance, callid);
2971 static void transmit_clearpromptmessage(struct skinny_device *d, int instance, int callid)
2973 struct skinny_req *req;
2975 if (!(req = req_alloc(sizeof(struct clear_prompt_message), CLEAR_PROMPT_MESSAGE)))
2978 req->data.clearpromptstatus.lineInstance = htolel(instance);
2979 req->data.clearpromptstatus.callReference = htolel(callid);
2981 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting CLEAR_PROMPT_MESSAGE to %s, inst %d, callid %d\n",
2982 d->name, instance, callid);
2983 transmit_response(d, req);
2986 static void transmit_dialednumber(struct skinny_device *d, const char *text, int instance, int callid)
2988 struct skinny_req *req;
2990 if (!(req = req_alloc(sizeof(struct dialed_number_message), DIALED_NUMBER_MESSAGE)))
2993 ast_copy_string(req->data.dialednumber.dialedNumber, text, sizeof(req->data.dialednumber.dialedNumber));
2994 req->data.dialednumber.lineInstance = htolel(instance);
2995 req->data.dialednumber.callReference = htolel(callid);
2997 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DIALED_NUMBER_MESSAGE to %s, num %s, inst %d, callid %d\n",
2998 d->name, text, instance, callid);
2999 transmit_response(d, req);
3002 static void transmit_closereceivechannel(struct skinny_device *d, struct skinny_subchannel *sub)
3004 struct skinny_req *req;
3006 if (!(req = req_alloc(sizeof(struct close_receive_channel_message), CLOSE_RECEIVE_CHANNEL_MESSAGE)))
3009 req->data.closereceivechannel.conferenceId = htolel(0);
3010 req->data.closereceivechannel.partyId = htolel(sub->callid);
3012 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting CLOSE_RECEIVE_CHANNEL_MESSAGE to %s, confid %d, callid %u\n",
3013 d->name, 0, sub->callid);
3014 transmit_response(d, req);
3017 static void transmit_stopmediatransmission(struct skinny_device *d, struct skinny_subchannel *sub)
3019 struct skinny_req *req;
3021 if (!(req = req_alloc(sizeof(struct stop_media_transmission_message), STOP_MEDIA_TRANSMISSION_MESSAGE)))
3024 req->data.stopmedia.conferenceId = htolel(0);
3025 req->data.stopmedia.passThruPartyId = htolel(sub->callid);
3027 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting STOP_MEDIA_TRANSMISSION_MESSAGE to %s, confid %d, passthrupartyid %u\n",
3028 d->name, 0, sub->callid);
3029 transmit_response(d, req);
3032 static void transmit_startmediatransmission(struct skinny_device *d, struct skinny_subchannel *sub, struct sockaddr_in dest,
3033 struct ast_format *format, unsigned int framing)
3035 struct skinny_req *req;
3037 if (d->protocolversion < 17) {
3038 if (!(req = req_alloc(sizeof(struct start_media_transmission_message_ip4), START_MEDIA_TRANSMISSION_MESSAGE)))
3040 req->data.startmedia_ip4.conferenceId = htolel(sub->callid);
3041 req->data.startmedia_ip4.passThruPartyId = htolel(sub->callid);
3042 req->data.startmedia_ip4.remoteIp = dest.sin_addr.s_addr;
3043 req->data.startmedia_ip4.remotePort = htolel(ntohs(dest.sin_port));
3044 req->data.startmedia_ip4.packetSize = htolel(framing);
3045 req->data.startmedia_ip4.payloadType = htolel(codec_ast2skinny(format));
3046 req->data.startmedia_ip4.qualifier.precedence = htolel(127);
3047 req->data.startmedia_ip4.qualifier.vad = htolel(0);
3048 req->data.startmedia_ip4.qualifier.packets = htolel(0);
3049 req->data.startmedia_ip4.qualifier.bitRate = htolel(0);
3051 if (!(req = req_alloc(sizeof(struct start_media_transmission_message_ip6), START_MEDIA_TRANSMISSION_MESSAGE)))
3053 req->data.startmedia_ip6.conferenceId = htolel(sub->callid);
3054 req->data.startmedia_ip6.passThruPartyId = htolel(sub->callid);
3055 memcpy(req->data.startmedia_ip6.remoteIp, &dest.sin_addr.s_addr, sizeof(dest.sin_addr.s_addr));
3056 req->data.startmedia_ip6.remotePort = htolel(ntohs(dest.sin_port));
3057 req->data.startmedia_ip6.packetSize = htolel(framing);
3058 req->data.startmedia_ip6.payloadType = htolel(codec_ast2skinny(format));
3059 req->data.startmedia_ip6.qualifier.precedence = htolel(127);
3060 req->data.startmedia_ip6.qualifier.vad = htolel(0);
3061 req->data.startmedia_ip6.qualifier.packets = htolel(0);
3062 req->data.startmedia_ip6.qualifier.bitRate = htolel(0);
3065 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting START_MEDIA_TRANSMISSION_MESSAGE to %s, callid %u, passthrupartyid %u, ip %s:%d, ms %u, fmt %d, prec 127\n",
3066 d->name, sub->callid, sub->callid, ast_inet_ntoa(dest.sin_addr), dest.sin_port, framing, codec_ast2skinny(format));
3067 transmit_response(d, req);
3070 static void transmit_activatecallplane(struct skinny_device *d, struct skinny_line *l)
3072 struct skinny_req *req;
3074 if (!(req = req_alloc(sizeof(struct activate_call_plane_message), ACTIVATE_CALL_PLANE_MESSAGE)))
3077 req->data.activatecallplane.lineInstance = htolel(l->instance);
3079 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting ACTIVATE_CALL_PLANE_MESSAGE to %s, inst %d\n",
3080 d->name, l->instance);
3081 transmit_response(d, req);
3084 static void transmit_callstate(struct skinny_device *d, int buttonInstance, unsigned callid, int state)
3086 struct skinny_req *req;
3088 if (!(req = req_alloc(sizeof(struct call_state_message), CALL_STATE_MESSAGE)))
3091 req->data.callstate.callState = htolel(state);
3092 req->data.callstate.lineInstance = htolel(buttonInstance);
3093 req->data.callstate.callReference = htolel(callid);
3095 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting CALL_STATE_MESSAGE to %s, state %s, inst %d, callid %u\n",
3096 d->name, callstate2str(state), buttonInstance, callid);
3097 transmit_response(d, req);
3100 static void transmit_cfwdstate(struct skinny_device *d, struct skinny_line *l)
3102 struct skinny_req *req;
3105 if (!(req = req_alloc(sizeof(struct forward_stat_message), FORWARD_STAT_MESSAGE)))
3108 if (l->cfwdtype & SKINNY_CFWD_ALL) {
3109 if (!ast_strlen_zero(l->call_forward_all)) {
3110 ast_copy_string(req->data.forwardstat.fwdallnum, l->call_forward_all, sizeof(req->data.forwardstat.fwdallnum));
3111 req->data.forwardstat.fwdall = htolel(1);
3114 req->data.forwardstat.fwdall = htolel(0);
3117 if (l->cfwdtype & SKINNY_CFWD_BUSY) {
3118 if (!ast_strlen_zero(l->call_forward_busy)) {
3119 ast_copy_string(req->data.forwardstat.fwdbusynum, l->call_forward_busy, sizeof(req->data.forwardstat.fwdbusynum));
3120 req->data.forwardstat.fwdbusy = htolel(1);
3123 req->data.forwardstat.fwdbusy = htolel(0);
3126 if (l->cfwdtype & SKINNY_CFWD_NOANSWER) {
3127 if (!ast_strlen_zero(l->call_forward_noanswer)) {
3128 ast_copy_string(req->data.forwardstat.fwdnoanswernum, l->call_forward_noanswer, sizeof(req->data.forwardstat.fwdnoanswernum));
3129 req->data.forwardstat.fwdnoanswer = htolel(1);
3132 req->data.forwardstat.fwdnoanswer = htolel(0);
3135 req->data.forwardstat.lineNumber = htolel(l->instance);
3137 req->data.forwardstat.activeforward = htolel(7);
3139 req->data.forwardstat.activeforward = htolel(0);
3141 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting FORWARD_STAT_MESSAGE to %s, inst %d, all %s, busy %s, noans %s, acitve %d\n",
3142 d->name, l->instance, l->call_forward_all, l->call_forward_busy, l->call_forward_noanswer, anyon ? 7 : 0);
3143 transmit_response(d, req);
3146 static void transmit_speeddialstatres(struct skinny_device *d, struct skinny_speeddial *sd)
3148 struct skinny_req *req;
3150 if (!(req = req_alloc(sizeof(struct speed_dial_stat_res_message), SPEED_DIAL_STAT_RES_MESSAGE)))
3153 req->data.speeddialreq.speedDialNumber = htolel(sd->instance);
3154 ast_copy_string(req->data.speeddial.speedDialDirNumber, sd->exten, sizeof(req->data.speeddial.speedDialDirNumber));
3155 ast_copy_string(req->data.speeddial.speedDialDisplayName, sd->label, sizeof(req->data.speeddial.speedDialDisplayName));
3157 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting SPEED_DIAL_STAT_RES_MESSAGE to %s, inst %d, dir %s, display %s\n",
3158 d->name, sd->instance, sd->exten, sd->label);
3159 transmit_response(d, req);
3162 //static void transmit_linestatres(struct skinny_device *d, struct skinny_line *l)
3163 static void transmit_linestatres(struct skinny_device *d, int instance)
3165 struct skinny_req *req;
3166 struct skinny_line *l;
3167 struct skinny_speeddial *sd;
3169 if (!(req = req_alloc(sizeof(struct line_stat_res_message), LINE_STAT_RES_MESSAGE)))
3172 if ((l = find_line_by_instance(d, instance))) {
3173 req->data.linestat.lineNumber = letohl(l->instance);
3174 memcpy(req->data.linestat.lineDirNumber, l->name, sizeof(req->data.linestat.lineDirNumber));
3175 memcpy(req->data.linestat.lineDisplayName, l->label, sizeof(req->data.linestat.lineDisplayName));
3176 } else if ((sd = find_speeddial_by_instance(d, instance, 1))) {
3177 req->data.linestat.lineNumber = letohl(sd->instance);
3178 memcpy(req->data.linestat.lineDirNumber, sd->label, sizeof(req->data.linestat.lineDirNumber));
3179 memcpy(req->data.linestat.lineDisplayName, sd->label, sizeof(req->data.linestat.lineDisplayName));
3182 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting LINE_STAT_RES_MESSAGE to %s, inst %d, num %s, label %s\n",
3183 d->name, l->instance, req->data.linestat.lineDirNumber, req->data.linestat.lineDisplayName);
3184 transmit_response(d, req);
3187 static void transmit_definetimedate(struct skinny_device *d)
3189 struct skinny_req *req;
3190 struct timeval now = ast_tvnow();
3191 struct ast_tm cmtime;
3193 if (!(req = req_alloc(sizeof(struct definetimedate_message), DEFINETIMEDATE_MESSAGE)))
3196 ast_localtime(&now, &cmtime, NULL);
3197 req->data.definetimedate.year = htolel(cmtime.tm_year+1900);
3198 req->data.definetimedate.month = htolel(cmtime.tm_mon+1);
3199 req->data.definetimedate.dayofweek = htolel(cmtime.tm_wday);
3200 req->data.definetimedate.day = htolel(cmtime.tm_mday);
3201 req->data.definetimedate.hour = htolel(cmtime.tm_hour);
3202 req->data.definetimedate.minute = htolel(cmtime.tm_min);
3203 req->data.definetimedate.seconds = htolel(cmtime.tm_sec);
3204 req->data.definetimedate.milliseconds = htolel(cmtime.tm_usec / 1000);
3205 req->data.definetimedate.timestamp = htolel(now.tv_sec);
3207 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting DEFINETIMEDATE_MESSAGE to %s, date %u %u %u dow %u time %u:%u:%u.%u\n",
3208 d->name, req->data.definetimedate.year, req->data.definetimedate.month, req->data.definetimedate.day, req->data.definetimedate.dayofweek,
3209 req->data.definetimedate.hour, req->data.definetimedate.minute, req->data.definetimedate.seconds, req->data.definetimedate.milliseconds);
3210 transmit_response(d, req);
3213 static void transmit_versionres(struct skinny_device *d)
3215 struct skinny_req *req;
3216 if (!(req = req_alloc(sizeof(struct version_res_message), VERSION_RES_MESSAGE)))
3219 ast_copy_string(req->data.version.version, d->version_id, sizeof(req->data.version.version));
3221 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting VERSION_RES_MESSAGE to %s, version %s\n", d->name, d->version_id);
3222 transmit_response(d, req);
3225 static void transmit_serverres(struct skinny_device *d)
3227 struct skinny_req *req;
3228 if (!(req = req_alloc(sizeof(struct server_res_message), SERVER_RES_MESSAGE)))
3231 memcpy(req->data.serverres.server[0].serverName, ourhost,
3232 sizeof(req->data.serverres.server[0].serverName));
3233 req->data.serverres.serverListenPort[0] = htolel(ourport);
3234 req->data.serverres.serverIpAddr[0] = htolel(d->ourip.s_addr);
3236 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting SERVER_RES_MESSAGE to %s, srvname %s %s:%d\n",
3237 d->name, ourhost, ast_inet_ntoa(d->ourip), ourport);
3238 transmit_response(d, req);
3241 static void transmit_softkeysetres(struct skinny_device *d)
3243 struct skinny_req *req;
3248 const struct soft_key_definitions *softkeymode = soft_key_default_definitions;
3250 if (!(req = req_alloc(sizeof(struct soft_key_set_res_message), SOFT_KEY_SET_RES_MESSAGE)))
3253 SKINNY_DEBUG(DEBUG_TEMPLATE, 3, "Creating Softkey Template\n");
3255 keydefcount = ARRAY_LEN(soft_key_default_definitions);
3256 req->data.softkeysets.softKeySetOffset = htolel(0);
3257 req->data.softkeysets.softKeySetCount = htolel(keydefcount);
3258 req->data.softkeysets.totalSoftKeySetCount = htolel(keydefcount);
3259 for (x = 0; x < keydefcount; x++) {
3260 const uint8_t *defaults = softkeymode->defaults;
3261 /* XXX I wanted to get the size of the array dynamically, but that wasn't wanting to work.
3262 This will have to do for now. */
3263 for (y = 0; y < softkeymode->count; y++) {
3264 for (i = 0; i < (sizeof(soft_key_template_default) / sizeof(struct soft_key_template_definition)); i++) {
3265 if (defaults[y] == i+1) {
3266 req->data.softkeysets.softKeySetDefinition[softkeymode->mode].softKeyTemplateIndex[y] = (i+1);
3267 req->data.softkeysets.softKeySetDefinition[softkeymode->mode].softKeyInfoIndex[y] = htoles(i+301);
3268 SKINNY_DEBUG(DEBUG_TEMPLATE, 4, "softKeySetDefinition : softKeyTemplateIndex: %d softKeyInfoIndex: %d\n",
3276 SKINNY_DEBUG(DEBUG_PACKET | DEBUG_TEMPLATE, 3, "Transmitting SOFT_KEY_SET_RES_MESSAGE to %s, template data\n",
3278 transmit_response(d, req);
3281 static void transmit_softkeytemplateres(struct skinny_device *d)
3283 struct skinny_req *req;
3285 if (!(req = req_alloc(sizeof(struct soft_key_template_res_message), SOFT_KEY_TEMPLATE_RES_MESSAGE)))
3288 req->data.softkeytemplate.softKeyOffset = htolel(0);
3289 req->data.softkeytemplate.softKeyCount = htolel(sizeof(soft_key_template_default) / sizeof(struct soft_key_template_definition));
3290 req->data.softkeytemplate.totalSoftKeyCount = htolel(sizeof(soft_key_template_default) / sizeof(struct soft_key_template_definition));
3291 memcpy(req->data.softkeytemplate.softKeyTemplateDefinition,
3292 soft_key_template_default,
3293 sizeof(soft_key_template_default));
3295 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting SOFT_KEY_TEMPLATE_RES_MESSAGE to %s, offset 0, keycnt %u, totalkeycnt %u, template data\n",
3296 d->name, req->data.softkeytemplate.softKeyCount, req->data.softkeytemplate.totalSoftKeyCount);
3297 transmit_response(d, req);
3300 static void transmit_reset(struct skinny_device *d, int fullrestart)
3302 struct skinny_req *req;
3304 if (!(req = req_alloc(sizeof(struct reset_message), RESET_MESSAGE)))
3308 req->data.reset.resetType = 2;
3310 req->data.reset.resetType = 1;
3312 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting RESET_MESSAGE to %s, type %s\n",
3313 d->name, (fullrestart) ? "Restarting" : "Resetting");
3314 transmit_response(d, req);
3317 static void transmit_keepaliveack(struct skinnysession *s)
3319 struct skinny_req *req;
3321 if (!(req = req_alloc(0, KEEP_ALIVE_ACK_MESSAGE)))
3326 struct skinny_device *d = s->device;
3327 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting KEEP_ALIVE_ACK_MESSAGE to %s\n", (d ? d->name : "unregistered"));
3330 transmit_response_bysession(s, req);
3333 static void transmit_registerack(struct skinny_device *d)
3335 struct skinny_req *req;
3337 if (!(req = req_alloc(sizeof(struct register_ack_message), REGISTER_ACK_MESSAGE)))
3340 req->data.regack.res[0] = '0';
3341 req->data.regack.res[1] = '\0';
3342 req->data.regack.keepAlive = htolel(keep_alive);
3343 memcpy(req->data.regack.dateTemplate, date_format, sizeof(req->data.regack.dateTemplate));
3344 req->data.regack.res2[0] = '0';
3345 req->data.regack.res2[1] = '\0';
3346 req->data.regack.secondaryKeepAlive = htolel(keep_alive);
3350 short res = req->data.regack.res[0] << 8 | req->data.regack.res[1];
3351 unsigned int res2 = req->data.regack.res2[0] << 24 | req->data.regack.res2[1] << 16 | req->data.regack.res2[2] << 8 | req->data.regack.res2[3];
3352 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting REGISTER_ACK_MESSAGE to %s, keepalive %d, datetemplate %s, seckeepalive %d, res 0x%04x, res2 0x%08x\n",
3353 d->name, keep_alive, date_format, keep_alive, (unsigned)res, res2);
3357 transmit_response(d, req);
3360 static void transmit_capabilitiesreq(struct skinny_device *d)
3362 struct skinny_req *req;
3364 if (!(req = req_alloc(0, CAPABILITIES_REQ_MESSAGE)))
3367 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting CAPABILITIES_REQ_MESSAGE to %s\n", d->name);
3368 transmit_response(d, req);
3371 static void transmit_backspace(struct skinny_device *d, int instance, unsigned callid)
3373 struct skinny_req *req;
3375 if (!(req = req_alloc(sizeof(struct bksp_req_message), BKSP_REQ_MESSAGE)))
3378 req->data.bkspmessage.instance = htolel(instance);
3379 req->data.bkspmessage.callreference = htolel(callid);
3381 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting BKSP_REQ_MESSAGE to %s, inst %d, callid %u \n",
3382 d->name, instance, callid);
3383 transmit_response(d, req);
3386 static void transmit_serviceurlstat(struct skinny_device *d, int instance)
3388 struct skinny_req *req;
3389 struct skinny_serviceurl *surl;
3391 if (!(req = req_alloc(sizeof(struct serviceurl_stat_message), SERVICEURL_STAT_MESSAGE)))
3394 AST_LIST_TRAVERSE(&d->serviceurls, surl, list) {
3395 if (surl->instance == instance) {
3401 memcpy(req->data.serviceurlmessage.displayName, surl->displayName, sizeof(req->data.serviceurlmessage.displayName));
3402 memcpy(req->data.serviceurlmessage.url, surl->url, sizeof(req->data.serviceurlmessage.url));
3404 req->data.serviceurlmessage.instance = htolel(instance);
3406 SKINNY_DEBUG(DEBUG_PACKET, 3, "Transmitting SERVICEURL_STAT_MESSAGE to %s, inst %d\n",
3408 transmit_response(d, req);
3411 static int skinny_extensionstate_cb(char *context, char *exten, struct ast_state_cb_info *info, void *data)
3413 struct skinny_container *container = data;
3414 struct skinny_device *d = NULL;
3415 char hint[AST_MAX_EXTENSION];
3416 int state = info->exten_state;
3418 /* only interested in device state here */
3419 if (info->reason != AST_HINT_UPDATE_DEVICE) {
3423 if (container->type == SKINNY_SDCONTAINER) {
3424 struct skinny_speeddial *sd = container->data;
3427 SKINNY_DEBUG(DEBUG_HINT, 3, "Got hint %s on speeddial %s\n", ast_extension_state2str(state), sd->label);
3429 if (ast_get_hint(hint, sizeof(hint), NULL, 0, NULL, sd->context, sd->exten)) {
3430 /* If they are not registered, we will override notification and show no availability */
3431 if (ast_device_state(hint) == AST_DEVICE_UNAVAILABLE) {
3432 transmit_lamp_indication(d, STIMULUS_LINE, sd->instance, SKINNY_LAMP_FLASH);
3433 transmit_callstate(d, sd->instance, 0, SKINNY_ONHOOK);
3437 case AST_EXTENSION_DEACTIVATED: /* Retry after a while */
3438 case AST_EXTENSION_REMOVED: /* Extension is gone */
3439 SKINNY_DEBUG(DEBUG_HINT, 3, "Extension state: Watcher for hint %s %s. Notify Device %s\n",
3440 exten, state == AST_EXTENSION_DEACTIVATED ? "deactivated" : "removed", d->name);
3442 transmit_lamp_indication(d, STIMULUS_LINE, sd->instance, SKINNY_LAMP_OFF);
3443 transmit_callstate(d, sd->instance, 0, SKINNY_ONHOOK);
3445 case AST_EXTENSION_RINGING:
3446 case AST_EXTENSION_UNAVAILABLE:
3447 transmit_lamp_indication(d, STIMULUS_LINE, sd->instance, SKINNY_LAMP_BLINK);
3448 transmit_callstate(d, sd->instance, 0, SKINNY_RINGIN);
3450 case AST_EXTENSION_BUSY: /* callstate = SKINNY_BUSY wasn't wanting to work - I'll settle for this */
3451 case AST_EXTENSION_INUSE:
3452 transmit_lamp_indication(d, STIMULUS_LINE, sd->instance, SKINNY_LAMP_ON);
3453 transmit_callstate(d, sd->instance, 0, SKINNY_CALLREMOTEMULTILINE);
3455 case AST_EXTENSION_ONHOLD:
3456 transmit_lamp_indication(d, STIMULUS_LINE, sd->instance, SKINNY_LAMP_WINK);
3457 transmit_callstate(d, sd->instance, 0, SKINNY_HOLD);
3459 case AST_EXTENSION_NOT_INUSE:
3461 transmit_lamp_indication(d, STIMULUS_LINE, sd->instance, SKINNY_LAMP_OFF);
3462 transmit_callstate(d, sd->instance, 0, SKINNY_ONHOOK);
3466 sd->laststate = state;
3467 } else if (container->type == SKINNY_SUBLINECONTAINER) {
3468 struct skinny_subline *subline = container->data;
3469 struct skinny_line *l = subline->line;
3472 SKINNY_DEBUG(DEBUG_HINT, 3, "Got hint %s on subline %s (%s@%s)\n", ast_extension_state2str(state), subline->name, exten, context);
3474 subline->extenstate = state;
3476 if (subline->callid == 0) {
3481 case AST_EXTENSION_RINGING: /* Handled by normal ringin */
3483 case AST_EXTENSION_INUSE:
3484 if (subline->sub && (subline->sub->substate == SKINNY_CONNECTED)) { /* Device has a real call */
3485 transmit_callstate(d, l->instance, subline->callid, SKINNY_CONNECTED);
3486 transmit_selectsoftkeys(d, l->instance, subline->callid, KEYDEF_CONNECTED, KEYMASK_ALL);
3487 send_displaypromptstatus(d, OCTAL_CONNECTED, "", 0, l->instance, subline->callid);
3488 } else { /* Some other device has active call */
3489 transmit_callstate(d, l->instance, subline->callid, SKINNY_CALLREMOTEMULTILINE);
3490 transmit_selectsoftkeys(d, l->instance, subline->callid, KEYDEF_SLACONNECTEDNOTACTIVE, KEYMASK_ALL);
3491 send_displaypromptstatus(d, "In Use", "", 0, l->instance, subline->callid);
3493 transmit_lamp_indication(d, STIMULUS_LINE, l->instance, SKINNY_LAMP_ON);
3494 transmit_ringer_mode(d, SKINNY_RING_OFF);
3495 transmit_activatecallplane(d, l);
3497 case AST_EXTENSION_ONHOLD:
3498 transmit_callstate(d, l->instance, subline->callid, SKINNY_HOLD);
3499 transmit_selectsoftkeys(d, l->instance, subline->callid, KEYDEF_SLAHOLD, KEYMASK_ALL);
3500 send_displaypromptstatus(d, "Hold", "", 0, l->instance, subline->callid);
3501 transmit_lamp_indication(d, STIMULUS_LINE, l->instance, SKINNY_LAMP_BLINK);
3502 transmit_activatecallplane(d, l);
3504 case AST_EXTENSION_NOT_INUSE:
3505 transmit_callstate(d, l->instance, subline->callid, SKINNY_ONHOOK);
3506 transmit_selectsoftkeys(d, l->instance, subline->callid, KEYDEF_ONHOOK, KEYMASK_ALL);
3507 transmit_clearpromptmessage(d, l->instance, subline->callid);
3508 transmit_lamp_indication(d, STIMULUS_LINE, l->instance, SKINNY_LAMP_OFF);
3509 transmit_activatecallplane(d, l);
3510 subline->callid = 0;
3513 ast_log(LOG_WARNING, "AST_EXTENSION_STATE %s not configured\n", ast_extension_state2str(state));
3516 ast_log(LOG_WARNING, "Invalid data supplied to skinny_extensionstate_cb\n");
3522 static void update_connectedline(struct skinny_subchannel *sub, const void *data, size_t datalen)
3524 struct ast_channel *c = sub->owner;
3525 struct skinny_line *l = sub->line;
3526 struct skinny_device *d = l->device;
3532 if (sub->calldirection == SKINNY_OUTGOING && !sub->origtonum) {
3533 /* Do not set origtonum before here or origtoname won't be set */
3534 sub->origtonum = ast_strdup(sub->exten);
3535 if (ast_channel_connected(c)->id.name.valid) {
3536 sub->origtoname = ast_strdup(ast_channel_connected(c)->id.name.str);
3540 if (!ast_channel_caller(c)->id.number.valid
3541 || ast_strlen_zero(ast_channel_caller(c)->id.number.str)
3542 || !ast_channel_connected(c)->id.number.valid
3543 || ast_strlen_zero(ast_channel_connected(c)->id.number.str))
3546 SKINNY_DEBUG(DEBUG_SUB, 3, "Sub %u - Updating\n", sub->callid);
3551 static void mwi_event_cb(void *userdata, struct stasis_subscription *sub, struct stasis_message *msg)
3553 struct skinny_line *l = userdata;
3554 struct skinny_device *d = l->device;
3555 struct skinny_line *l2;
3558 if (!d || !d->session) {
3562 if (msg && ast_mwi_state_type() == stasis_message_type(msg)) {
3563 struct ast_mwi_state *mwi_state = stasis_message_data(msg);
3564 l->newmsgs = mwi_state->new_msgs;
3568 transmit_lamp_indication(d, STIMULUS_VOICEMAIL, l->instance, l->mwiblink?SKINNY_LAMP_BLINK:SKINNY_LAMP_ON);
3570 transmit_lamp_indication(d, STIMULUS_VOICEMAIL, l->instance, SKINNY_LAMP_OFF);
3573 /* find out wether the device lamp should be on or off */
3574 AST_LIST_TRAVERSE(&d->lines, l2, list) {
3581 transmit_lamp_indication(d, STIMULUS_VOICEMAIL, 0, d->mwiblink?SKINNY_LAMP_BLINK:SKINNY_LAMP_ON);
3583 transmit_lamp_indication(d, STIMULUS_VOICEMAIL, 0, SKINNY_LAMP_OFF);
3585 ast_verb(3, "Skinny mwi_event_cb found %d new messages\n", l->newmsgs);
3588 /* I do not believe skinny can deal with video.
3589 Anyone know differently? */
3590 /* Yes, it can. Currently 7985 and Cisco VT Advantage do video. */
3591 static enum ast_rtp_glue_result skinny_get_vrtp_peer(struct ast_channel *c, struct ast_rtp_instance **instance)
3593 struct skinny_subchannel *sub = NULL;
3595 if (!(sub = ast_channel_tech_pvt(c)) || !(sub->vrtp))
3596 return AST_RTP_GLUE_RESULT_FORBID;
3598 ao2_ref(sub->vrtp, +1);
3599 *instance = sub->vrtp;
3601 return AST_RTP_GLUE_RESULT_REMOTE;
3604 static enum ast_rtp_glue_result skinny_get_rtp_peer(struct ast_channel *c, struct ast_rtp_instance **instance)
3606 struct skinny_subchannel *sub = NULL;
3607 struct skinny_line *l;
3608 enum ast_rtp_glue_result res = AST_RTP_GLUE_RESULT_REMOTE;
3610 SKINNY_DEBUG(DEBUG_AUDIO, 4, "skinny_get_rtp_peer() Channel = %s\n", ast_channel_name(c));
3612 if (!(sub = ast_channel_tech_pvt(c)))
3613 return AST_RTP_GLUE_RESULT_FORBID;
3615 skinny_locksub(sub);
3618 skinny_unlocksub(sub);
3619 return AST_RTP_GLUE_RESULT_FORBID;
3622 ao2_ref(sub->rtp, +1);
3623 *instance = sub->rtp;
3627 if (!l->directmedia || l->nat){
3628 res = AST_RTP_GLUE_RESULT_LOCAL;
3629 SKINNY_DEBUG(DEBUG_AUDIO, 4, "skinny_get_rtp_peer() Using AST_RTP_GLUE_RESULT_LOCAL \n");
3632 skinny_unlocksub(sub);
3638 static int skinny_set_rtp_peer(struct ast_channel *c, struct ast_rtp_instance *rtp, struct ast_rtp_instance *vrtp, struct ast_rtp_instance *trtp, const struct ast_format_cap *codecs, int nat_active)
3640 struct skinny_subchannel *sub;
3641 struct skinny_line *l;
3642 struct skinny_device *d;
3643 struct sockaddr_in us = { 0, };
3644 struct sockaddr_in them = { 0, };
3645 struct ast_sockaddr them_tmp;
3646 struct ast_sockaddr us_tmp;
3648 sub = ast_channel_tech_pvt(c);
3650 if (ast_channel_state(c) != AST_STATE_UP)
3661 struct ast_format *tmpfmt;
3662 unsigned int framing;
3663 ast_rtp_instance_get_remote_address(rtp, &them_tmp);
3664 ast_sockaddr_to_sin(&them_tmp, &them);
3666 /* Shutdown any early-media or previous media on re-invite */
3667 transmit_stopmediatransmission(d, sub);
3669 SKINNY_DEBUG(DEBUG_AUDIO, 4, "Peerip = %s:%d\n", ast_inet_ntoa(them.sin_addr), ntohs(them.sin_port));
3671 tmpfmt = ast_format_cap_get_format(l->cap, 0);
3672 framing = ast_format_cap_get_format_framing(l->cap, tmpfmt);
3674 SKINNY_DEBUG(DEBUG_AUDIO, 4, "Setting payloadType to '%s' (%u ms)\n", ast_format_get_name(tmpfmt), framing);
3676 if (!(l->directmedia) || (l->nat)){
3677 ast_rtp_instance_get_local_address(rtp, &us_tmp);
3678 ast_sockaddr_to_sin(&us_tmp, &us);
3679 us.sin_addr.s_addr = us.sin_addr.s_addr ? us.sin_addr.s_addr : d->ourip.s_addr;
3680 transmit_startmediatransmission(d, sub, us, tmpfmt, framing);
3682 transmit_startmediatransmission(d, sub, them, tmpfmt, framing);
3685 ao2_ref(tmpfmt, -1);
3689 /* Need a return here to break the bridge */
3693 static struct ast_rtp_glue skinny_rtp_glue = {
3695 .get_rtp_info = skinny_get_rtp_peer,
3696 .get_vrtp_info = skinny_get_vrtp_peer,
3697 .update_peer = skinny_set_rtp_peer,
3701 static char *skinny_debugs(void)
3707 strncpy(ptr, "\0", 1);
3708 if (skinnydebug & DEBUG_GENERAL) {
3709 strncpy(ptr, "general ", 8);
3713 if (skinnydebug & DEBUG_SUB) {
3714 strncpy(ptr, "sub ", 4);
3718 if (skinnydebug & DEBUG_AUDIO) {
3719 strncpy(ptr, "audio ", 6);
3723 if (skinnydebug & DEBUG_PACKET) {
3724 strncpy(ptr, "packet ", 7);
3728 if (skinnydebug & DEBUG_LOCK) {
3729 strncpy(ptr, "lock ", 5);
3733 if (skinnydebug & DEBUG_TEMPLATE) {
3734 strncpy(ptr, "template ", 9);
3738 if (skinnydebug & DEBUG_THREAD) {
3739 strncpy(ptr, "thread ", 7);
3743 if (skinnydebug & DEBUG_HINT) {
3744 strncpy(ptr, "hint ", 5);
3748 if (skinnydebug & DEBUG_KEEPALIVE) {
3749 strncpy(ptr, "keepalive ", 10);
3754 strncpy(--ptr, "\0", 1);
3759 static char *complete_skinny_debug(const char *line, const char *word, int pos, int state)
3761 const char *debugOpts[]={ "all","audio","hint","keepalive","lock","off","packet","show","sub","template","thread",NULL };
3762 char *wordptr = (char *)word;
3765 int buflen = sizeof(buf);
3770 if (*word == '+' || *word == '-' || *word == '!') {
3776 wordlen = strlen(wordptr);
3778 while (debugOpts[i]) {
3779 if (!strncasecmp(wordptr, debugOpts[i], wordlen) && ++which > state) {
3780 ast_copy_string(bufptr, debugOpts[i], buflen);
3781 return ast_strdup(buf);
3789 static char *handle_skinny_set_debug(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
3799 e->command = "skinny debug";
3801 "Usage: skinny debug {audio|hint|keepalive|lock|off|packet|show|sub|template|thread}\n"