6 * Copyright (C) 2010-2013 SIPE Project <http://sipe.sourceforge.net/>
7 * Copyright (C) 2009 pier11 <pier11@operamail.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
36 #include "sipe-common.h"
38 #include "sipe-backend.h"
39 #include "sipe-core.h"
40 #include "sipe-utils.h"
42 #include "sip-sec-mech.h"
44 /* SSPI is only supported on Windows platform */
45 #if defined(_WIN32) && defined(HAVE_SSPI)
46 #include "sip-sec-sspi.h"
47 #define SIP_SEC_WINDOWS_SSPI 1
49 #define SIP_SEC_WINDOWS_SSPI 0
52 #ifdef HAVE_GSSAPI_GSSAPI_H
53 #include "sip-sec-gssapi.h"
56 /* SIPE_AUTHENTICATION_TYPE_BASIC */
57 #include "sip-sec-basic.h"
58 #define sip_sec_create_context__Basic sip_sec_create_context__basic
59 /* Basic is only used for HTTP, not for SIP */
60 #define sip_sec_password__Basic sip_sec_password__NONE
62 /* SIPE_AUTHENTICATION_TYPE_NTLM */
63 #if SIP_SEC_WINDOWS_SSPI
64 #define sip_sec_create_context__NTLM sip_sec_create_context__sspi
65 #define sip_sec_password__NTLM sip_sec_password__sspi
66 #elif defined(HAVE_GSSAPI_ONLY)
67 #define sip_sec_create_context__NTLM sip_sec_create_context__gssapi
68 #define sip_sec_password__NTLM sip_sec_password__gssapi
70 #include "sip-sec-ntlm.h"
71 #define sip_sec_create_context__NTLM sip_sec_create_context__ntlm
72 #define sip_sec_password__NTLM sip_sec_password__ntlm
75 /* SIPE_AUTHENTICATION_TYPE_KERBEROS */
76 #if SIP_SEC_WINDOWS_SSPI
77 #define sip_sec_create_context__Kerberos sip_sec_create_context__sspi
78 #define sip_sec_password__Kerberos sip_sec_password__sspi
79 #elif defined(HAVE_GSSAPI_GSSAPI_H)
80 #define sip_sec_create_context__Kerberos sip_sec_create_context__gssapi
81 #define sip_sec_password__Kerberos sip_sec_password__gssapi
83 #define sip_sec_create_context__Kerberos sip_sec_create_context__NONE
84 #define sip_sec_password__Kerberos sip_sec_password__NONE
87 /* SIPE_AUTHENTICATION_TYPE_NEGOTIATE */
88 #if SIP_SEC_WINDOWS_SSPI
89 #define sip_sec_create_context__Negotiate sip_sec_create_context__sspi
90 #elif defined(HAVE_GSSAPI_GSSAPI_H)
91 #include "sip-sec-negotiate.h"
92 #define sip_sec_create_context__Negotiate sip_sec_create_context__negotiate
94 #define sip_sec_create_context__Negotiate sip_sec_create_context__NONE
96 /* Negotiate is only used for HTTP, not for SIP */
97 #define sip_sec_password__Negotiate sip_sec_password__NONE
99 /* SIPE_AUTHENTICATION_TYPE_TLS_DSK */
100 #include "sip-sec-tls-dsk.h"
101 #define sip_sec_create_context__TLS_DSK sip_sec_create_context__tls_dsk
102 #define sip_sec_password__TLS_DSK sip_sec_password__tls_dsk
104 /* Dummy initialization hook */
106 sip_sec_create_context__NONE(SIPE_UNUSED_PARAMETER guint type
)
111 /* Dummy SIP password hook */
112 static gboolean
sip_sec_password__NONE(void)
117 /* sip_sec API methods */
119 sip_sec_create_context(guint type
,
123 const gchar
*username
,
124 const gchar
*password
)
126 SipSecContext context
= NULL
;
128 /* Map authentication type to module initialization hook & name */
129 static sip_sec_create_context_func
const auth_to_hook
[] = {
130 sip_sec_create_context__NONE
, /* SIPE_AUTHENTICATION_TYPE_UNSET */
131 sip_sec_create_context__Basic
, /* SIPE_AUTHENTICATION_TYPE_BASIC */
132 sip_sec_create_context__NTLM
, /* SIPE_AUTHENTICATION_TYPE_NTLM */
133 sip_sec_create_context__Kerberos
, /* SIPE_AUTHENTICATION_TYPE_KERBEROS */
134 sip_sec_create_context__Negotiate
, /* SIPE_AUTHENTICATION_TYPE_NEGOTIATE */
135 sip_sec_create_context__TLS_DSK
, /* SIPE_AUTHENTICATION_TYPE_TLS_DSK */
138 SIPE_DEBUG_INFO("sip_sec_create_context: type: %d, Single Sign-On: %s, protocol: %s",
139 type
, sso
? "yes" : "no", http
? "HTTP" : "SIP");
141 context
= (*(auth_to_hook
[type
]))(type
);
144 context
->type
= type
;
146 /* NOTE: mechanism must set private flags acquire_cred_func()! */
149 /* set common flags */
151 context
->flags
|= SIP_SEC_FLAG_COMMON_SSO
;
153 context
->flags
|= SIP_SEC_FLAG_COMMON_HTTP
;
155 if (!(*context
->acquire_cred_func
)(context
, domain
, username
, password
)) {
156 SIPE_DEBUG_INFO_NOFORMAT("ERROR: sip_sec_create_context: failed to acquire credentials.");
157 (*context
->destroy_context_func
)(context
);
166 sip_sec_init_context_step(SipSecContext context
,
168 const gchar
*input_toked_base64
,
169 gchar
**output_toked_base64
,
172 gboolean ret
= FALSE
;
175 SipSecBuffer in_buff
= {0, NULL
};
176 SipSecBuffer out_buff
= {0, NULL
};
178 /* Not NULL for NTLM Type 2 or TLS-DSK */
179 if (input_toked_base64
)
180 in_buff
.value
= g_base64_decode(input_toked_base64
, &in_buff
.length
);
182 ret
= (*context
->init_context_func
)(context
, in_buff
, &out_buff
, target
);
184 if (input_toked_base64
)
185 g_free(in_buff
.value
);
189 if (out_buff
.value
) {
190 if (out_buff
.length
> 0) {
191 *output_toked_base64
= g_base64_encode(out_buff
.value
, out_buff
.length
);
193 /* special string: caller takes ownership */
194 *output_toked_base64
= (gchar
*) out_buff
.value
;
195 out_buff
.value
= NULL
;
199 g_free(out_buff
.value
);
203 *expires
= context
->expires
;
210 gboolean
sip_sec_context_is_ready(SipSecContext context
)
212 return(context
&& (context
->flags
& SIP_SEC_FLAG_COMMON_READY
));
215 const gchar
*sip_sec_context_name(SipSecContext context
)
218 return((*context
->context_name_func
)(context
));
223 guint
sip_sec_context_type(SipSecContext context
)
226 return(context
->type
);
228 return(SIPE_AUTHENTICATION_TYPE_UNSET
);
231 void sip_sec_destroy_context(SipSecContext context
)
233 if (context
) (*context
->destroy_context_func
)(context
);
236 gchar
*sip_sec_make_signature(SipSecContext context
, const gchar
*message
)
238 SipSecBuffer signature
;
239 gchar
*signature_hex
;
241 if (!(*context
->make_signature_func
)(context
, message
, &signature
)) {
242 SIPE_DEBUG_INFO_NOFORMAT("ERROR: sip_sec_make_signature failed. Unable to sign message!");
245 signature_hex
= buff_to_hex_str(signature
.value
, signature
.length
);
246 g_free(signature
.value
);
247 return signature_hex
;
250 gboolean
sip_sec_verify_signature(SipSecContext context
,
251 const gchar
*message
,
252 const gchar
*signature_hex
)
254 SipSecBuffer signature
;
257 SIPE_DEBUG_INFO("sip_sec_verify_signature: message is:%s signature to verify is:%s",
258 message
? message
: "", signature_hex
? signature_hex
: "");
260 if (!message
|| !signature_hex
)
263 signature
.length
= hex_str_to_buff(signature_hex
, &signature
.value
);
264 res
= (*context
->verify_signature_func
)(context
, message
, signature
);
265 g_free(signature
.value
);
269 /* Does authentication type require a password? */
270 gboolean
sip_sec_requires_password(guint authentication
,
273 /* Map authentication type to module initialization hook & name */
274 static sip_sec_password_func
const auth_to_hook
[] = {
275 sip_sec_password__NONE
, /* SIPE_AUTHENTICATION_TYPE_UNSET */
276 sip_sec_password__Basic
, /* SIPE_AUTHENTICATION_TYPE_BASIC */
277 sip_sec_password__NTLM
, /* SIPE_AUTHENTICATION_TYPE_NTLM */
278 sip_sec_password__Kerberos
, /* SIPE_AUTHENTICATION_TYPE_KERBEROS */
279 sip_sec_password__Negotiate
, /* SIPE_AUTHENTICATION_TYPE_NEGOTIATE */
280 sip_sec_password__TLS_DSK
, /* SIPE_AUTHENTICATION_TYPE_TLS_DSK */
283 /* If Single-Sign On is disabled then a password is required */
287 /* Check if authentation method supports Single-Sign On */
288 return((*(auth_to_hook
[authentication
]))());
291 /* Initialize & Destroy */
292 void sip_sec_init(void)
294 #if !defined(HAVE_GSSAPI_ONLY) && !defined(HAVE_SSPI)
295 sip_sec_init__ntlm();
299 void sip_sec_destroy(void)
301 #if !defined(HAVE_GSSAPI_ONLY) && !defined(HAVE_SSPI)
302 sip_sec_destroy__ntlm();