source: protocols/jabber/sasl.c @ e1c926f

Last change on this file since e1c926f was e1c926f, checked in by Wilmer van der Gaast <wilmer@…>, at 2011-07-31T15:44:37Z

Facebook authentication. This isn't really OAuth in the end: FB doesn't
really support desktop app OAuth in a way that would work with BitlBee.
Plus, it's only OAuth-compliant by, err, name?

  • Property mode set to 100644
File size: 14.2 KB
Line 
1/***************************************************************************\
2*                                                                           *
3*  BitlBee - An IRC to IM gateway                                           *
4*  Jabber module - SASL authentication                                      *
5*                                                                           *
6*  Copyright 2006 Wilmer van der Gaast <wilmer@gaast.net>                   *
7*                                                                           *
8*  This program is free software; you can redistribute it and/or modify     *
9*  it under the terms of the GNU General Public License as published by     *
10*  the Free Software Foundation; either version 2 of the License, or        *
11*  (at your option) any later version.                                      *
12*                                                                           *
13*  This program is distributed in the hope that it will be useful,          *
14*  but WITHOUT ANY WARRANTY; without even the implied warranty of           *
15*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the            *
16*  GNU General Public License for more details.                             *
17*                                                                           *
18*  You should have received a copy of the GNU General Public License along  *
19*  with this program; if not, write to the Free Software Foundation, Inc.,  *
20*  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.              *
21*                                                                           *
22\***************************************************************************/
23
24#include <ctype.h>
25
26#include "jabber.h"
27#include "base64.h"
28#include "oauth2.h"
29#include "oauth.h"
30
31xt_status sasl_pkt_mechanisms( struct xt_node *node, gpointer data )
32{
33        struct im_connection *ic = data;
34        struct jabber_data *jd = ic->proto_data;
35        struct xt_node *c, *reply;
36        char *s;
37        int sup_plain = 0, sup_digest = 0, sup_oauth2 = 0, sup_fb = 0;
38       
39        if( !sasl_supported( ic ) )
40        {
41                /* Should abort this now, since we should already be doing
42                   IQ authentication. Strange things happen when you try
43                   to do both... */
44                imcb_log( ic, "XMPP 1.0 non-compliant server seems to support SASL, please report this as a BitlBee bug!" );
45                return XT_HANDLED;
46        }
47       
48        s = xt_find_attr( node, "xmlns" );
49        if( !s || strcmp( s, XMLNS_SASL ) != 0 )
50        {
51                imcb_log( ic, "Stream error while authenticating" );
52                imc_logout( ic, FALSE );
53                return XT_ABORT;
54        }
55       
56        c = node->children;
57        while( ( c = xt_find_node( c, "mechanism" ) ) )
58        {
59                if( c->text && g_strcasecmp( c->text, "PLAIN" ) == 0 )
60                        sup_plain = 1;
61                if( c->text && g_strcasecmp( c->text, "DIGEST-MD5" ) == 0 )
62                        sup_digest = 1;
63                if( c->text && g_strcasecmp( c->text, "X-OAUTH2" ) == 0 )
64                        sup_oauth2 = 1;
65                if( c->text && g_strcasecmp( c->text, "X-FACEBOOK-PLATFORM" ) == 0 )
66                        sup_fb = 1;
67               
68                c = c->next;
69        }
70       
71        if( !sup_plain && !sup_digest )
72        {
73                imcb_error( ic, "No known SASL authentication schemes supported" );
74                imc_logout( ic, FALSE );
75                return XT_ABORT;
76        }
77       
78        reply = xt_new_node( "auth", NULL, NULL );
79        xt_add_attr( reply, "xmlns", XMLNS_SASL );
80       
81        if( set_getbool( &ic->acc->set, "oauth" ) )
82        {
83                int len;
84               
85                if( !sup_oauth2 )
86                {
87                        imcb_error( ic, "OAuth requested, but not supported by server" );
88                        imc_logout( ic, FALSE );
89                        xt_free_node( reply );
90                        return XT_ABORT;
91                }
92               
93                /* X-OAUTH2 is, not *the* standard OAuth2 SASL/XMPP implementation.
94                   It's currently used by GTalk and vaguely documented on
95                   http://code.google.com/apis/cloudprint/docs/rawxmpp.html . */
96                xt_add_attr( reply, "mechanism", "X-OAUTH2" );
97               
98                len = strlen( jd->username ) + strlen( jd->oauth2_access_token ) + 2;
99                s = g_malloc( len + 1 );
100                s[0] = 0;
101                strcpy( s + 1, jd->username );
102                strcpy( s + 2 + strlen( jd->username ), jd->oauth2_access_token );
103                reply->text = base64_encode( (unsigned char *)s, len );
104                reply->text_len = strlen( reply->text );
105                g_free( s );
106        }
107        else if( sup_fb && strstr( ic->acc->pass, "session_key=" ) )
108        {
109                xt_add_attr( reply, "mechanism", "X-FACEBOOK-PLATFORM" );
110                jd->flags |= JFLAG_SASL_FB;
111        }
112        else if( sup_digest )
113        {
114                xt_add_attr( reply, "mechanism", "DIGEST-MD5" );
115               
116                /* The rest will be done later, when we receive a <challenge/>. */
117        }
118        else if( sup_plain )
119        {
120                int len;
121               
122                xt_add_attr( reply, "mechanism", "PLAIN" );
123               
124                /* With SASL PLAIN in XMPP, the text should be b64(\0user\0pass) */
125                len = strlen( jd->username ) + strlen( ic->acc->pass ) + 2;
126                s = g_malloc( len + 1 );
127                s[0] = 0;
128                strcpy( s + 1, jd->username );
129                strcpy( s + 2 + strlen( jd->username ), ic->acc->pass );
130                reply->text = base64_encode( (unsigned char *)s, len );
131                reply->text_len = strlen( reply->text );
132                g_free( s );
133        }
134       
135        if( reply && !jabber_write_packet( ic, reply ) )
136        {
137                xt_free_node( reply );
138                return XT_ABORT;
139        }
140        xt_free_node( reply );
141       
142        /* To prevent classic authentication from happening. */
143        jd->flags |= JFLAG_STREAM_STARTED;
144       
145        return XT_HANDLED;
146}
147
148/* Non-static function, but not mentioned in jabber.h because it's for internal
149   use, just that the unittest should be able to reach it... */
150char *sasl_get_part( char *data, char *field )
151{
152        int i, len;
153       
154        len = strlen( field );
155       
156        while( isspace( *data ) || *data == ',' )
157                data ++;
158       
159        if( g_strncasecmp( data, field, len ) == 0 && data[len] == '=' )
160        {
161                i = strlen( field ) + 1;
162        }
163        else
164        {
165                for( i = 0; data[i]; i ++ )
166                {
167                        /* If we have a ", skip until it's closed again. */
168                        if( data[i] == '"' )
169                        {
170                                i ++;
171                                while( data[i] != '"' || data[i-1] == '\\' )
172                                        i ++;
173                        }
174                       
175                        /* If we got a comma, we got a new field. Check it,
176                           find the next key after it. */
177                        if( data[i] == ',' )
178                        {
179                                while( isspace( data[i] ) || data[i] == ',' )
180                                        i ++;
181                               
182                                if( g_strncasecmp( data + i, field, len ) == 0 &&
183                                    data[i+len] == '=' )
184                                {
185                                        i += len + 1;
186                                        break;
187                                }
188                        }
189                }
190        }
191       
192        if( data[i] == '"' )
193        {
194                int j;
195                char *ret;
196               
197                i ++;
198                len = 0;
199                while( data[i+len] != '"' || data[i+len-1] == '\\' )
200                        len ++;
201               
202                ret = g_strndup( data + i, len );
203                for( i = j = 0; ret[i]; i ++ )
204                {
205                        if( ret[i] == '\\' )
206                        {
207                                ret[j++] = ret[++i];
208                        }
209                        else
210                        {
211                                ret[j++] = ret[i];
212                        }
213                }
214                ret[j] = 0;
215               
216                return ret;
217        }
218        else if( data[i] )
219        {
220                len = 0;
221                while( data[i+len] && data[i+len] != ',' )
222                        len ++;
223               
224                return g_strndup( data + i, len );
225        }
226        else
227        {
228                return NULL;
229        }
230}
231
232xt_status sasl_pkt_challenge( struct xt_node *node, gpointer data )
233{
234        struct im_connection *ic = data;
235        struct jabber_data *jd = ic->proto_data;
236        struct xt_node *reply = NULL;
237        char *nonce = NULL, *realm = NULL, *cnonce = NULL;
238        unsigned char cnonce_bin[30];
239        char *digest_uri = NULL;
240        char *dec = NULL;
241        char *s = NULL;
242        xt_status ret = XT_ABORT;
243       
244        if( node->text_len == 0 )
245                goto error;
246       
247        dec = frombase64( node->text );
248       
249        if( jd->flags & JFLAG_SASL_FB )
250        {
251                GSList *p_in = NULL, *p_out = NULL, *p;
252                md5_state_t md5;
253                char time[33], *fmt, *token;
254                const char *secret;
255               
256                oauth_params_parse( &p_in, dec );
257                oauth_params_add( &p_out, "nonce", oauth_params_get( &p_in, "nonce" ) );
258                oauth_params_add( &p_out, "method", oauth_params_get( &p_in, "method" ) );
259                oauth_params_free( &p_in );
260               
261                token = g_strdup( ic->acc->pass );
262                oauth_params_parse( &p_in, token );
263                g_free( token );
264                oauth_params_add( &p_out, "session_key", oauth_params_get( &p_in, "session_key" ) );
265               
266                g_snprintf( time, sizeof( time ), "%lld", (long long) ( gettime() * 1000 ) );
267                oauth_params_add( &p_out, "call_id", time );
268                oauth_params_add( &p_out, "api_key", oauth2_service_facebook.consumer_key );
269                oauth_params_add( &p_out, "v", "1.0" );
270                oauth_params_add( &p_out, "format", "XML" );
271               
272                md5_init( &md5 );
273                for( p = p_out; p; p = p->next )
274                        md5_append( &md5, p->data, strlen( p->data ) );
275               
276                secret = oauth_params_get( &p_in, "secret" );
277                md5_append( &md5, (unsigned char*) secret, strlen( secret ) );
278                md5_finish_ascii( &md5, time );
279                oauth_params_add( &p_out, "sig", time );
280               
281                fmt = oauth_params_string( p_out );
282                oauth_params_free( &p_out );
283                oauth_params_free( &p_in );
284                s = tobase64( fmt );
285                g_free( fmt );
286        }
287        else if( !( s = sasl_get_part( dec, "rspauth" ) ) )
288        {
289                /* See RFC 2831 for for information. */
290                md5_state_t A1, A2, H;
291                md5_byte_t A1r[16], A2r[16], Hr[16];
292                char A1h[33], A2h[33], Hh[33];
293                int i;
294               
295                nonce = sasl_get_part( dec, "nonce" );
296                realm = sasl_get_part( dec, "realm" );
297               
298                if( !nonce )
299                        goto error;
300               
301                /* Jabber.Org considers the realm part optional and doesn't
302                   specify one. Oh well, actually they're right, but still,
303                   don't know if this is right... */
304                if( !realm )
305                        realm = g_strdup( jd->server );
306               
307                random_bytes( cnonce_bin, sizeof( cnonce_bin ) );
308                cnonce = base64_encode( cnonce_bin, sizeof( cnonce_bin ) );
309                digest_uri = g_strdup_printf( "%s/%s", "xmpp", jd->server );
310               
311                /* Generate the MD5 hash of username:realm:password,
312                   I decided to call it H. */
313                md5_init( &H );
314                s = g_strdup_printf( "%s:%s:%s", jd->username, realm, ic->acc->pass );
315                md5_append( &H, (unsigned char *) s, strlen( s ) );
316                g_free( s );
317                md5_finish( &H, Hr );
318               
319                /* Now generate the hex. MD5 hash of H:nonce:cnonce, called A1. */
320                md5_init( &A1 );
321                s = g_strdup_printf( ":%s:%s", nonce, cnonce );
322                md5_append( &A1, Hr, 16 );
323                md5_append( &A1, (unsigned char *) s, strlen( s ) );
324                g_free( s );
325                md5_finish( &A1, A1r );
326                for( i = 0; i < 16; i ++ )
327                        sprintf( A1h + i * 2, "%02x", A1r[i] );
328               
329                /* A2... */
330                md5_init( &A2 );
331                s = g_strdup_printf( "%s:%s", "AUTHENTICATE", digest_uri );
332                md5_append( &A2, (unsigned char *) s, strlen( s ) );
333                g_free( s );
334                md5_finish( &A2, A2r );
335                for( i = 0; i < 16; i ++ )
336                        sprintf( A2h + i * 2, "%02x", A2r[i] );
337               
338                /* Final result: A1:nonce:00000001:cnonce:auth:A2. Let's reuse H for it. */
339                md5_init( &H );
340                s = g_strdup_printf( "%s:%s:%s:%s:%s:%s", A1h, nonce, "00000001", cnonce, "auth", A2h );
341                md5_append( &H, (unsigned char *) s, strlen( s ) );
342                g_free( s );
343                md5_finish( &H, Hr );
344                for( i = 0; i < 16; i ++ )
345                        sprintf( Hh + i * 2, "%02x", Hr[i] );
346               
347                /* Now build the SASL response string: */
348                g_free( dec );
349                dec = g_strdup_printf( "username=\"%s\",realm=\"%s\",nonce=\"%s\",cnonce=\"%s\","
350                                       "nc=%08x,qop=auth,digest-uri=\"%s\",response=%s,charset=%s",
351                                       jd->username, realm, nonce, cnonce, 1, digest_uri, Hh, "utf-8" );
352                s = tobase64( dec );
353        }
354        else
355        {
356                /* We found rspauth, but don't really care... */
357                g_free( s );
358                s = NULL;
359        }
360       
361        reply = xt_new_node( "response", s, NULL );
362        xt_add_attr( reply, "xmlns", XMLNS_SASL );
363       
364        if( !jabber_write_packet( ic, reply ) )
365                goto silent_error;
366       
367        ret = XT_HANDLED;
368        goto silent_error;
369
370error:
371        imcb_error( ic, "Incorrect SASL challenge received" );
372        imc_logout( ic, FALSE );
373
374silent_error:
375        g_free( digest_uri );
376        g_free( cnonce );
377        g_free( nonce );
378        g_free( realm );
379        g_free( dec );
380        g_free( s );
381        xt_free_node( reply );
382       
383        return ret;
384}
385
386xt_status sasl_pkt_result( struct xt_node *node, gpointer data )
387{
388        struct im_connection *ic = data;
389        struct jabber_data *jd = ic->proto_data;
390        char *s;
391       
392        s = xt_find_attr( node, "xmlns" );
393        if( !s || strcmp( s, XMLNS_SASL ) != 0 )
394        {
395                imcb_log( ic, "Stream error while authenticating" );
396                imc_logout( ic, FALSE );
397                return XT_ABORT;
398        }
399       
400        if( strcmp( node->name, "success" ) == 0 )
401        {
402                imcb_log( ic, "Authentication finished" );
403                jd->flags |= JFLAG_AUTHENTICATED | JFLAG_STREAM_RESTART;
404        }
405        else if( strcmp( node->name, "failure" ) == 0 )
406        {
407                imcb_error( ic, "Authentication failure" );
408                imc_logout( ic, FALSE );
409                return XT_ABORT;
410        }
411       
412        return XT_HANDLED;
413}
414
415/* This one is needed to judge if we'll do authentication using IQ or SASL.
416   It's done by checking if the <stream:stream> from the server has a
417   version attribute. I don't know if this is the right way though... */
418gboolean sasl_supported( struct im_connection *ic )
419{
420        struct jabber_data *jd = ic->proto_data;
421       
422        return ( jd->xt && jd->xt->root && xt_find_attr( jd->xt->root, "version" ) ) != 0;
423}
424
425void sasl_oauth2_init( struct im_connection *ic )
426{
427        char *msg, *url;
428       
429        imcb_log( ic, "Starting OAuth authentication" );
430       
431        /* Temporary contact, just used to receive the OAuth response. */
432        imcb_add_buddy( ic, "jabber_oauth", NULL );
433        url = oauth2_url( &oauth2_service_google,
434                          "https://www.googleapis.com/auth/googletalk" );
435        msg = g_strdup_printf( "Open this URL in your browser to authenticate: %s", url );
436        imcb_buddy_msg( ic, "jabber_oauth", msg, 0, 0 );
437        imcb_buddy_msg( ic, "jabber_oauth", "Respond to this message with the returned "
438                                            "authorization token.", 0, 0 );
439       
440        g_free( msg );
441        g_free( url );
442}
443
444static gboolean sasl_oauth2_remove_contact( gpointer data, gint fd, b_input_condition cond )
445{
446        struct im_connection *ic = data;
447        imcb_remove_buddy( ic, "jabber_oauth", NULL );
448        return FALSE;
449}
450
451static void sasl_oauth2_got_token( gpointer data, const char *access_token, const char *refresh_token );
452
453int sasl_oauth2_get_refresh_token( struct im_connection *ic, const char *msg )
454{
455        char *code;
456        int ret;
457       
458        imcb_log( ic, "Requesting OAuth access token" );
459       
460        /* Don't do it here because the caller may get confused if the contact
461           we're currently sending a message to is deleted. */
462        b_timeout_add( 1, sasl_oauth2_remove_contact, ic );
463       
464        code = g_strdup( msg );
465        g_strstrip( code );
466        ret = oauth2_access_token( &oauth2_service_google, OAUTH2_AUTH_CODE,
467                                   code, sasl_oauth2_got_token, ic );
468       
469        g_free( code );
470        return ret;
471}
472
473int sasl_oauth2_refresh( struct im_connection *ic, const char *refresh_token )
474{
475        return oauth2_access_token( &oauth2_service_google, OAUTH2_AUTH_REFRESH,
476                                    refresh_token, sasl_oauth2_got_token, ic );
477}
478
479static void sasl_oauth2_got_token( gpointer data, const char *access_token, const char *refresh_token )
480{
481        struct im_connection *ic = data;
482        struct jabber_data *jd;
483       
484        if( g_slist_find( jabber_connections, ic ) == NULL )
485                return;
486       
487        jd = ic->proto_data;
488       
489        if( access_token == NULL )
490        {
491                imcb_error( ic, "OAuth failure (missing access token)" );
492                imc_logout( ic, TRUE );
493                return;
494        }
495        if( refresh_token != NULL )
496        {
497                g_free( ic->acc->pass );
498                ic->acc->pass = g_strdup_printf( "refresh_token=%s", refresh_token );
499        }
500       
501        g_free( jd->oauth2_access_token );
502        jd->oauth2_access_token = g_strdup( access_token );
503       
504        jabber_connect( ic );
505}
Note: See TracBrowser for help on using the repository browser.