2 * Asterisk -- An open source telephony toolkit.
4 * Copyright (C) 2013, Digium, Inc.
6 * Mark Michelson <mmichelson@digium.com>
8 * See http://www.asterisk.org for more information about
9 * the Asterisk project. Please do not directly contact
10 * any of the maintainers of this project for assistance;
11 * the project provides a web site, mailing lists and IRC
12 * channels for your use.
14 * This program is free software, distributed under the terms of
15 * the GNU General Public License Version 2. See the LICENSE file
16 * at the top of the source tree.
20 <depend>pjproject</depend>
21 <depend>res_pjsip</depend>
22 <support_level>core</support_level>
29 #include "asterisk/res_pjsip.h"
30 #include "asterisk/logger.h"
31 #include "asterisk/module.h"
32 #include "asterisk/strings.h"
34 static pjsip_www_authenticate_hdr *get_auth_header(pjsip_rx_data *challenge) {
35 pjsip_hdr_e search_type;
37 if (challenge->msg_info.msg->line.status.code == PJSIP_SC_UNAUTHORIZED) {
38 search_type = PJSIP_H_WWW_AUTHENTICATE;
39 } else if (challenge->msg_info.msg->line.status.code == PJSIP_SC_PROXY_AUTHENTICATION_REQUIRED) {
40 search_type = PJSIP_H_PROXY_AUTHENTICATE;
43 "Status code %d was received when it should have been 401 or 407.\n",
44 challenge->msg_info.msg->line.status.code);
48 return pjsip_msg_find_hdr(challenge->msg_info.msg, search_type, NULL);
52 static int set_outbound_authentication_credentials(pjsip_auth_clt_sess *auth_sess,
53 const struct ast_sip_auth_array *array, pjsip_rx_data *challenge)
55 struct ast_sip_auth **auths = ast_alloca(array->num * sizeof(*auths));
56 pjsip_cred_info *auth_creds = ast_alloca(array->num * sizeof(*auth_creds));
57 pjsip_www_authenticate_hdr *auth_hdr = NULL;
61 if (ast_sip_retrieve_auths(array, auths)) {
66 auth_hdr = get_auth_header(challenge);
67 if (auth_hdr == NULL) {
69 ast_log(LOG_ERROR, "Unable to find authenticate header in challenge.\n");
73 for (i = 0; i < array->num; ++i) {
74 if (ast_strlen_zero(auths[i]->realm)) {
75 auth_creds[i].realm = auth_hdr->challenge.common.realm;
77 pj_cstr(&auth_creds[i].realm, auths[i]->realm);
79 pj_cstr(&auth_creds[i].username, auths[i]->auth_user);
80 pj_cstr(&auth_creds[i].scheme, "digest");
81 switch (auths[i]->type) {
82 case AST_SIP_AUTH_TYPE_USER_PASS:
83 pj_cstr(&auth_creds[i].data, auths[i]->auth_pass);
84 auth_creds[i].data_type = PJSIP_CRED_DATA_PLAIN_PASSWD;
86 case AST_SIP_AUTH_TYPE_MD5:
87 pj_cstr(&auth_creds[i].data, auths[i]->md5_creds);
88 auth_creds[i].data_type = PJSIP_CRED_DATA_DIGEST;
90 case AST_SIP_AUTH_TYPE_ARTIFICIAL:
91 ast_log(LOG_ERROR, "Trying to set artificial outbound auth credentials shouldn't happen.\n");
96 pjsip_auth_clt_set_credentials(auth_sess, array->num, auth_creds);
99 ast_sip_cleanup_auths(auths, array->num);
103 static int digest_create_request_with_auth(const struct ast_sip_auth_array *auths, pjsip_rx_data *challenge,
104 pjsip_transaction *tsx, pjsip_tx_data **new_request)
106 pjsip_auth_clt_sess auth_sess;
108 if (pjsip_auth_clt_init(&auth_sess, ast_sip_get_pjsip_endpoint(),
109 tsx->pool, 0) != PJ_SUCCESS) {
110 ast_log(LOG_WARNING, "Failed to initialize client authentication session\n");
114 if (set_outbound_authentication_credentials(&auth_sess, auths, challenge)) {
115 ast_log(LOG_WARNING, "Failed to set authentication credentials\n");
119 switch (pjsip_auth_clt_reinit_req(&auth_sess, challenge,
120 tsx->last_tx, new_request)) {
123 case PJSIP_ENOCREDENTIAL:
124 ast_log(LOG_WARNING, "Unable to create request with auth."
125 "No auth credentials for any realms in challenge.\n");
127 case PJSIP_EAUTHSTALECOUNT:
128 ast_log(LOG_WARNING, "Unable to create request with auth."
129 "Number of stale retries exceeded\n");
131 case PJSIP_EFAILEDCREDENTIAL:
132 ast_log(LOG_WARNING, "Authentication credentials not accepted by server\n");
135 ast_log(LOG_WARNING, "Unable to create request with auth. Unknown failure\n");
142 static struct ast_sip_outbound_authenticator digest_authenticator = {
143 .create_request_with_auth = digest_create_request_with_auth,
146 static int load_module(void)
148 if (ast_sip_register_outbound_authenticator(&digest_authenticator)) {
149 return AST_MODULE_LOAD_DECLINE;
151 return AST_MODULE_LOAD_SUCCESS;
154 static int unload_module(void)
156 ast_sip_unregister_outbound_authenticator(&digest_authenticator);
160 AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "PJSIP authentication resource",
162 .unload = unload_module,
163 .load_pri = AST_MODPRI_CHANNEL_DEPEND,