Changeset 21167d2


Ignore:
Timestamp:
2006-09-20T19:42:27Z (18 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
70f6aab8
Parents:
f06894d
Message:

It can send a valid (pre-XMPP) login packet. Lots of work to do, still...

Location:
protocols/jabber
Files:
1 added
8 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/Makefile

    rf06894d r21167d2  
    1010
    1111# [SH] Program variables
    12 objects = iq.o jabber.o jabber_util.o message.o presence.o xmltree.o
     12objects = io.o iq.o jabber.o jabber_util.o message.o presence.o xmltree.o
    1313
    1414CFLAGS += -Wall
  • protocols/jabber/iq.c

    rf06894d r21167d2  
    2424#include "jabber.h"
    2525
     26/*
     27<iq xmlns="jabber:client" id="BeeX00000001" type="result"><query
     28xmlns="jabber:iq:auth"><username>wilmer</username><resource/><password/><digest/>
     29<sequence>499</sequence><token>450D1FFD</token></query></iq>
     30*/
     31
    2632xt_status jabber_pkt_iq( struct xt_node *node, gpointer data )
    2733{
    28         char *from = xt_find_attr( node, "from" );
     34        struct gaim_connection *gc = data;
     35        struct jabber_data *jd = gc->proto_data;
     36        struct xt_node *query, *reply = NULL;
     37        char *s;
     38        int st;
    2939       
    30         printf( "Received IQ from %s:\n", from );
    31         xt_print( node );
     40        query = xt_find_node( node->children, "query" );
     41       
     42        if( !query )
     43                return XT_HANDLED;      /* Ignore it for now, don't know what's best... */
     44       
     45        if( ( s = xt_find_attr( query, "xmlns" ) ) && strcmp( s, "jabber:iq:auth" ) == 0 )
     46        {
     47                /* Time to authenticate ourselves! */
     48                reply = xt_new_node( "query", NULL, NULL );
     49                xt_add_attr( reply, "xmlns", "jabber:iq:auth" );
     50                xt_add_child( reply, xt_new_node( "username", jd->username, NULL ) );
     51                xt_add_child( reply, xt_new_node( "resource", set_getstr( &gc->acc->set, "resource" ), NULL ) );
     52               
     53                if( xt_find_node( query->children, "digest" ) && ( s = xt_find_attr( jd->xt->root, "id" ) ) )
     54                {
     55                        /* We can do digest authentication, it seems, and of
     56                           course we prefer that. */
     57                        SHA_CTX sha;
     58                        char hash_hex[40];
     59                        unsigned char hash[20];
     60                        int i;
     61                       
     62                        shaInit( &sha );
     63                        shaUpdate( &sha, (unsigned char*) s, strlen( s ) );
     64                        shaUpdate( &sha, (unsigned char*) gc->acc->pass, strlen( gc->acc->pass ) );
     65                        shaFinal( &sha, hash );
     66                       
     67                        for( i = 0; i < 20; i ++ )
     68                                sprintf( hash_hex + i * 2, "%02x", hash[i] );
     69                       
     70                        xt_add_child( reply, xt_new_node( "digest", hash_hex, NULL ) );
     71                }
     72                else if( xt_find_node( query->children, "password" ) )
     73                {
     74                        /* We'll have to stick with plaintext. Let's hope we're using SSL/TLS... */
     75                        xt_add_child( reply, xt_new_node( "password", gc->acc->pass, NULL ) );
     76                }
     77                else
     78                {
     79                        xt_free_node( reply );
     80                       
     81                        hide_login_progress_error( gc, "Can't find suitable authentication method" );
     82                        signoff( gc );
     83                        return XT_ABORT;
     84                }
     85               
     86                reply = jabber_make_packet( "iq", "set", NULL, reply );
     87                st = jabber_write_packet( gc, reply );
     88                xt_free_node( reply );
     89               
     90                return st ? XT_HANDLED : XT_ABORT;
     91        }
    3292       
    3393        return XT_HANDLED;
    3494}
    3595
     96int jabber_start_auth( struct gaim_connection *gc )
     97{
     98        struct jabber_data *jd = gc->proto_data;
     99        struct xt_node *node;
     100        int st;
     101       
     102        node = xt_new_node( "query", NULL, xt_new_node( "username", jd->username, NULL ) );
     103        xt_add_attr( node, "xmlns", "jabber:iq:auth" );
     104        node = jabber_make_packet( "iq", "get", NULL, node );
     105       
     106        st = jabber_write_packet( gc, node );
     107       
     108        xt_free_node( node );
     109        return st;
     110}
  • protocols/jabber/jabber.c

    rf06894d r21167d2  
    2828#include <stdio.h>
    2929
     30#include "ssl_client.h"
    3031#include "xmltree.h"
    3132#include "bitlbee.h"
     
    5556static void jabber_login( account_t *acc )
    5657{
     58        struct gaim_connection *gc = new_gaim_conn( acc );
     59        struct jabber_data *jd = g_new0( struct jabber_data, 1 );
     60       
     61        jd->gc = gc;
     62        gc->proto_data = jd;
     63       
     64        jd->username = g_strdup( acc->user );
     65        jd->server = strchr( jd->username, '@' );
     66       
     67        if( jd->server == NULL )
     68        {
     69                hide_login_progress( gc, "Incomplete account name (format it like <username@jabberserver.name>)" );
     70                signoff( gc );
     71                return;
     72        }
     73       
     74        /* So don't think of free()ing jd->server.. :-) */
     75        *jd->server = 0;
     76        jd->server ++;
     77       
     78        if( set_getbool( &acc->set, "ssl" ) )
     79        {
     80                signoff( gc );
     81                /* TODO! */
     82        }
     83        else
     84        {
     85                jd->fd = proxy_connect( jd->server, set_getint( &acc->set, "port" ), jabber_connected_plain, gc );
     86        }
    5787}
    5888
    5989static void jabber_close( struct gaim_connection *gc )
    6090{
     91        struct jabber_data *jd = gc->proto_data;
     92       
     93        if( jd->r_inpa >= 0 )
     94                b_event_remove( jd->r_inpa );
     95        if( jd->w_inpa >= 0 )
     96                b_event_remove( jd->w_inpa );
     97       
     98        if( jd->ssl )
     99                ssl_disconnect( jd->ssl );
     100        if( jd->fd >= 0 )
     101                closesocket( jd->fd );
     102       
     103        g_free( jd->username );
     104        g_free( jd );
    61105}
    62106
    63107static int jabber_send_im( struct gaim_connection *gc, char *who, char *message, int len, int away )
    64108{
     109        return 0;
    65110}
    66111
     
    96141}
    97142
    98 static xt_status jabber_end_of_stream( struct xt_node *node, gpointer data )
    99 {
    100         return XT_ABORT;
    101 }
    102 
    103 static xt_status jabber_pkt_misc( struct xt_node *node, gpointer data )
    104 {
    105         printf( "Received unknown packet:\n" );
    106         xt_print( node );
    107        
    108         return XT_HANDLED;
    109 }
    110 
    111 static const struct xt_handler_entry jabber_handlers[] = {
    112         { "stream:stream",      "<root>",               jabber_end_of_stream },
    113         { "iq",                 "stream:stream",        jabber_pkt_iq },
    114         { "message",            "stream:stream",        jabber_pkt_message },
    115         { "presence",           "stream:stream",        jabber_pkt_presence },
    116         { NULL,                 "stream:stream",        jabber_pkt_misc },
    117         { NULL,                 NULL,                   NULL }
    118 };
    119 
    120143#if 0
    121144int main( int argc, char *argv[] )
  • protocols/jabber/jabber.h

    rf06894d r21167d2  
    3030#include "bitlbee.h"
    3131
     32typedef enum
     33{
     34        JFLAG_STREAM_STARTED = 1,
     35        JFLAG_AUTHENTICATED = 2,
     36} jabber_flags_t;
     37
     38/* iq.c */
    3239xt_status jabber_pkt_iq( struct xt_node *node, gpointer data );
     40int jabber_start_auth( struct gaim_connection *gc );
     41
    3342xt_status jabber_pkt_message( struct xt_node *node, gpointer data );
    3443xt_status jabber_pkt_presence( struct xt_node *node, gpointer data );
    3544
     45/* jabber_util.c */
    3646char *set_eval_resprio( set_t *set, char *value );
    3747char *set_eval_tls( set_t *set, char *value );
     48struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children );
     49
     50/* io.c */
     51int jabber_write_packet( struct gaim_connection *gc, struct xt_node *node );
     52int jabber_write( struct gaim_connection *gc, char *buf, int len );
     53gboolean jabber_connected_plain( gpointer data, gint source, b_input_condition cond );
     54
     55struct jabber_data
     56{
     57        struct gaim_connection *gc;
     58       
     59        int fd;
     60        void *ssl;
     61        char *txq;
     62        int tx_len;
     63        int r_inpa, w_inpa;
     64       
     65        struct xt_parser *xt;
     66        jabber_flags_t flags;
     67       
     68        char *username;         /* USERNAME@server */
     69        char *server;           /* username@SERVER -=> server/domain, not hostname */
     70};
    3871
    3972#endif
  • protocols/jabber/jabber_util.c

    rf06894d r21167d2  
    22*                                                                           *
    33*  BitlBee - An IRC to IM gateway                                           *
    4 *  Jabber module - Main file                                                *
     4*  Jabber module - Misc. stuff                                              *
    55*                                                                           *
    66*  Copyright 2006 Wilmer van der Gaast <wilmer@gaast.net>                   *
     
    2323
    2424#include "jabber.h"
     25
     26static int next_id = 1;
    2527
    2628char *set_eval_resprio( set_t *set, char *value )
     
    4749                return set_eval_bool( set, value );
    4850}
     51
     52struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children )
     53{
     54        char *id = g_strdup_printf( "BeeX%04x", next_id++ );
     55        struct xt_node *node;
     56       
     57        node = xt_new_node( name, NULL, children );
     58       
     59        xt_add_attr( node, "id", id );
     60        if( type )
     61                xt_add_attr( node, "type", type );
     62        if( to )
     63                xt_add_attr( node, "to", to );
     64       
     65        g_free( id );
     66       
     67        return node;
     68}
  • protocols/jabber/message.c

    rf06894d r21167d2  
    22*                                                                           *
    33*  BitlBee - An IRC to IM gateway                                           *
    4 *  Jabber module - Main file                                                *
     4*  Jabber module - Handling of message(s) (tags), etc                       *
    55*                                                                           *
    66*  Copyright 2006 Wilmer van der Gaast <wilmer@gaast.net>                   *
  • protocols/jabber/presence.c

    rf06894d r21167d2  
    22*                                                                           *
    33*  BitlBee - An IRC to IM gateway                                           *
    4 *  Jabber module - Main file                                                *
     4*  Jabber module - Handling of presence (tags), etc                         *
    55*                                                                           *
    66*  Copyright 2006 Wilmer van der Gaast <wilmer@gaast.net>                   *
  • protocols/jabber/xmltree.c

    rf06894d r21167d2  
    206206        struct xt_node *c, *prev;
    207207       
    208         /* Let's just hope xt->root isn't NULL! */
     208        if( !xt || !xt->root )
     209                return;
     210       
    209211        if( node == NULL )
    210212                return xt_cleanup( xt, xt->root );
     
    357359        int i;
    358360       
     361        if( !node )
     362                return;
     363       
    359364        g_free( node->name );
    360365        g_free( node->text );
     
    380385void xt_free( struct xt_parser *xt )
    381386{
     387        if( !xt )
     388                return;
     389       
    382390        if( xt->root )
    383391                xt_free_node( xt->root );
     
    407415{
    408416        int i;
     417       
     418        if( !node )
     419                return NULL;
    409420       
    410421        for( i = 0; node->attr[i].key; i ++ )
Note: See TracChangeset for help on using the changeset viewer.