summaryrefslogtreecommitdiff
path: root/res/res_pjsip_sips_contact.c
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2015-01-29 20:58:12 +0000
committerMark Michelson <mmichelson@digium.com>2015-01-29 20:58:12 +0000
commite8896ac00845850e9d88dadcd1d6dc30a476c1fc (patch)
tree92da9788c52242e8fa93c83b23b8a084ee2fe11e /res/res_pjsip_sips_contact.c
parent22fc3359dabe8b0f6dfaa4073a9380a9fcd31ec7 (diff)
Use SIPS URIs in Contact headers when appropriate.
RFC 3261 sections 8.1.1.8 and 12.1.1 dictate specific scenarios when we are required to use SIPS URIs in Contact headers. Asterisk's non-compliance with this could actually cause calls to get dropped when communicating with clients that are strict about checking the Contact header. Both of the SIP stacks in Asterisk suffered from this issue. This changeset corrects the behavior in res_pjsip/chan_pjsip.c Review: https://reviewboard.asterisk.org/r/4345 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@431426 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_pjsip_sips_contact.c')
-rw-r--r--res/res_pjsip_sips_contact.c107
1 files changed, 107 insertions, 0 deletions
diff --git a/res/res_pjsip_sips_contact.c b/res/res_pjsip_sips_contact.c
new file mode 100644
index 000000000..f8e554cf4
--- /dev/null
+++ b/res/res_pjsip_sips_contact.c
@@ -0,0 +1,107 @@
+/*
+ * Asterisk -- An open source telephony toolkit.
+ *
+ * Copyright (C) 2015, Digium, Inc.
+ *
+ * Mark Michelson <mmichelson@digium.com>
+ *
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2. See the LICENSE file
+ * at the top of the source tree.
+ */
+
+/*** MODULEINFO
+ <depend>pjproject</depend>
+ <depend>res_pjsip</depend>
+ <support_level>core</support_level>
+ ***/
+
+#include "asterisk.h"
+
+#include <pjsip.h>
+
+#include "asterisk/res_pjsip.h"
+#include "asterisk/module.h"
+
+/*!
+ * \brief Upgrade Contact URIs on outgoing SIP requests to SIPS if required.
+ *
+ * The rules being used here are according to RFC 3261 section 8.1.1.8. In
+ * brief, if the request URI is SIPS or the topmost Route header is SIPS,
+ * then the Contact header we send must also be SIPS.
+ */
+static pj_status_t sips_contact_on_tx_request(pjsip_tx_data *tdata)
+{
+ pjsip_contact_hdr *contact;
+ pjsip_route_hdr *route;
+ pjsip_sip_uri *contact_uri;
+
+ contact = pjsip_msg_find_hdr(tdata->msg, PJSIP_H_CONTACT, NULL);
+ if (!contact) {
+ return PJ_SUCCESS;
+ }
+
+ contact_uri = pjsip_uri_get_uri(contact->uri);
+ if (PJSIP_URI_SCHEME_IS_SIPS(contact_uri)) {
+ /* If the Contact header is already SIPS, then we don't need to do anything */
+ return PJ_SUCCESS;
+ }
+
+ if (PJSIP_URI_SCHEME_IS_SIPS(tdata->msg->line.req.uri)) {
+ ast_debug(1, "Upgrading contact URI on outgoing SIP request to SIPS due to SIPS Request URI\n");
+ pjsip_sip_uri_set_secure(contact_uri, PJ_TRUE);
+ return PJ_SUCCESS;
+ }
+
+ route = pjsip_msg_find_hdr(tdata->msg, PJSIP_H_ROUTE, NULL);
+ if (!route) {
+ return PJ_SUCCESS;
+ }
+
+ if (!PJSIP_URI_SCHEME_IS_SIPS(&route->name_addr)) {
+ return PJ_SUCCESS;
+ }
+
+ /* Our Contact header is not a SIPS URI, but our topmost Route header is. */
+ ast_debug(1, "Upgrading contact URI on outgoing SIP request to SIPS due to SIPS Route header\n");
+ pjsip_sip_uri_set_secure(contact_uri, PJ_TRUE);
+
+ return PJ_SUCCESS;
+}
+
+static pjsip_module sips_contact_module = {
+ .name = {"SIPS Contact", 12 },
+ .id = -1,
+ .priority = PJSIP_MOD_PRIORITY_TSX_LAYER - 2,
+ .on_tx_request = sips_contact_on_tx_request,
+};
+
+static int unload_module(void)
+{
+ ast_sip_unregister_service(&sips_contact_module);
+ return 0;
+}
+
+static int load_module(void)
+{
+ CHECK_PJSIP_MODULE_LOADED();
+
+ if (ast_sip_register_service(&sips_contact_module)) {
+ return AST_MODULE_LOAD_DECLINE;
+ }
+
+ return AST_MODULE_LOAD_SUCCESS;
+}
+
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "UAC SIPS Contact support",
+ .support_level = AST_MODULE_SUPPORT_CORE,
+ .load = load_module,
+ .unload = unload_module,
+ .load_pri = AST_MODPRI_APP_DEPEND,
+ );