[f06894d] | 1 | /***************************************************************************\ |
---|
| 2 | * * |
---|
| 3 | * BitlBee - An IRC to IM gateway * |
---|
[21167d2] | 4 | * Jabber module - Misc. stuff * |
---|
[f06894d] | 5 | * * |
---|
[842cd8d] | 6 | * Copyright 2006-2010 Wilmer van der Gaast <wilmer@gaast.net> |
---|
[f06894d] | 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 "jabber.h" |
---|
[89d736a] | 25 | #include "md5.h" |
---|
| 26 | #include "base64.h" |
---|
[f06894d] | 27 | |
---|
[dfa41a4] | 28 | static unsigned int next_id = 1; |
---|
[21167d2] | 29 | |
---|
[ebe7b36] | 30 | char *set_eval_priority( set_t *set, char *value ) |
---|
[f06894d] | 31 | { |
---|
| 32 | account_t *acc = set->data; |
---|
[788a1af] | 33 | int i; |
---|
[f06894d] | 34 | |
---|
[788a1af] | 35 | if( sscanf( value, "%d", &i ) == 1 ) |
---|
| 36 | { |
---|
| 37 | /* Priority is a signed 8-bit integer, according to RFC 3921. */ |
---|
| 38 | if( i < -128 || i > 127 ) |
---|
[7125cb3] | 39 | return SET_INVALID; |
---|
[788a1af] | 40 | } |
---|
| 41 | else |
---|
[7125cb3] | 42 | return SET_INVALID; |
---|
[172a73f1] | 43 | |
---|
| 44 | /* Only run this stuff if the account is online ATM, |
---|
| 45 | and if the setting seems to be acceptable. */ |
---|
[0da65d5] | 46 | if( acc->ic ) |
---|
[f06894d] | 47 | { |
---|
[ebe7b36] | 48 | /* Although set_eval functions usually are very nice and |
---|
| 49 | convenient, they have one disadvantage: If I would just |
---|
| 50 | call p_s_u() now to send the new prio setting, it would |
---|
| 51 | send the old setting because the set->value gets changed |
---|
[e35d1a1] | 52 | after the (this) eval returns a non-NULL value. |
---|
[ebe7b36] | 53 | |
---|
| 54 | So now I can choose between implementing post-set |
---|
| 55 | functions next to evals, or just do this little hack: */ |
---|
| 56 | |
---|
| 57 | g_free( set->value ); |
---|
[788a1af] | 58 | set->value = g_strdup( value ); |
---|
[ebe7b36] | 59 | |
---|
| 60 | /* (Yes, sorry, I prefer the hack. :-P) */ |
---|
| 61 | |
---|
[0da65d5] | 62 | presence_send_update( acc->ic ); |
---|
[f06894d] | 63 | } |
---|
| 64 | |
---|
[788a1af] | 65 | return value; |
---|
[f06894d] | 66 | } |
---|
| 67 | |
---|
| 68 | char *set_eval_tls( set_t *set, char *value ) |
---|
| 69 | { |
---|
| 70 | if( g_strcasecmp( value, "try" ) == 0 ) |
---|
| 71 | return value; |
---|
| 72 | else |
---|
| 73 | return set_eval_bool( set, value ); |
---|
| 74 | } |
---|
[21167d2] | 75 | |
---|
| 76 | struct xt_node *jabber_make_packet( char *name, char *type, char *to, struct xt_node *children ) |
---|
| 77 | { |
---|
| 78 | struct xt_node *node; |
---|
| 79 | |
---|
| 80 | node = xt_new_node( name, NULL, children ); |
---|
| 81 | |
---|
| 82 | if( type ) |
---|
| 83 | xt_add_attr( node, "type", type ); |
---|
| 84 | if( to ) |
---|
| 85 | xt_add_attr( node, "to", to ); |
---|
| 86 | |
---|
[dfa41a4] | 87 | /* IQ packets should always have an ID, so let's generate one. It |
---|
| 88 | might get overwritten by jabber_cache_add() if this packet has |
---|
| 89 | to be saved until we receive a response. Cached packets get |
---|
| 90 | slightly different IDs so we can recognize them. */ |
---|
| 91 | if( strcmp( name, "iq" ) == 0 ) |
---|
| 92 | { |
---|
| 93 | char *id = g_strdup_printf( "%s%05x", JABBER_PACKET_ID, ( next_id++ ) & 0xfffff ); |
---|
| 94 | xt_add_attr( node, "id", id ); |
---|
| 95 | g_free( id ); |
---|
| 96 | } |
---|
| 97 | |
---|
[fe7a554] | 98 | return node; |
---|
| 99 | } |
---|
| 100 | |
---|
[2c2df7d] | 101 | struct xt_node *jabber_make_error_packet( struct xt_node *orig, char *err_cond, char *err_type, char *err_code ) |
---|
[259edd4] | 102 | { |
---|
| 103 | struct xt_node *node, *c; |
---|
| 104 | char *to; |
---|
| 105 | |
---|
| 106 | /* Create the "defined-condition" tag. */ |
---|
| 107 | c = xt_new_node( err_cond, NULL, NULL ); |
---|
[47d3ac4] | 108 | xt_add_attr( c, "xmlns", XMLNS_STANZA_ERROR ); |
---|
[259edd4] | 109 | |
---|
| 110 | /* Put it in an <error> tag. */ |
---|
| 111 | c = xt_new_node( "error", NULL, c ); |
---|
| 112 | xt_add_attr( c, "type", err_type ); |
---|
| 113 | |
---|
[2c2df7d] | 114 | /* Add the error code, if present */ |
---|
| 115 | if (err_code) |
---|
| 116 | xt_add_attr( c, "code", err_code ); |
---|
| 117 | |
---|
[259edd4] | 118 | /* To make the actual error packet, we copy the original packet and |
---|
| 119 | add our <error>/type="error" tag. Including the original packet |
---|
| 120 | is recommended, so let's just do it. */ |
---|
| 121 | node = xt_dup( orig ); |
---|
| 122 | xt_add_child( node, c ); |
---|
| 123 | xt_add_attr( node, "type", "error" ); |
---|
| 124 | |
---|
| 125 | /* Return to sender. */ |
---|
| 126 | if( ( to = xt_find_attr( node, "from" ) ) ) |
---|
| 127 | { |
---|
| 128 | xt_add_attr( node, "to", to ); |
---|
| 129 | xt_remove_attr( node, "from" ); |
---|
| 130 | } |
---|
| 131 | |
---|
| 132 | return node; |
---|
| 133 | } |
---|
| 134 | |
---|
[dfa41a4] | 135 | /* Cache a node/packet for later use. Mainly useful for IQ packets if you need |
---|
[fe7a554] | 136 | them when you receive the response. Use this BEFORE sending the packet so |
---|
[e35d1a1] | 137 | it'll get a new id= tag, and do NOT free() the packet after sending it! */ |
---|
[0da65d5] | 138 | void jabber_cache_add( struct im_connection *ic, struct xt_node *node, jabber_cache_event func ) |
---|
[fe7a554] | 139 | { |
---|
[0da65d5] | 140 | struct jabber_data *jd = ic->proto_data; |
---|
[038d17f] | 141 | struct jabber_cache_entry *entry = g_new0( struct jabber_cache_entry, 1 ); |
---|
[89d736a] | 142 | md5_state_t id_hash; |
---|
| 143 | md5_byte_t id_sum[16]; |
---|
| 144 | char *id, *asc_hash; |
---|
[fe7a554] | 145 | |
---|
[89d736a] | 146 | next_id ++; |
---|
| 147 | |
---|
| 148 | id_hash = jd->cached_id_prefix; |
---|
| 149 | md5_append( &id_hash, (md5_byte_t*) &next_id, sizeof( next_id ) ); |
---|
| 150 | md5_finish( &id_hash, id_sum ); |
---|
| 151 | asc_hash = base64_encode( id_sum, 12 ); |
---|
| 152 | |
---|
| 153 | id = g_strdup_printf( "%s%s", JABBER_CACHED_ID, asc_hash ); |
---|
[fe7a554] | 154 | xt_add_attr( node, "id", id ); |
---|
[21167d2] | 155 | g_free( id ); |
---|
[89d736a] | 156 | g_free( asc_hash ); |
---|
[038d17f] | 157 | |
---|
| 158 | entry->node = node; |
---|
[861c199] | 159 | entry->func = func; |
---|
[979cfb4] | 160 | entry->saved_at = time( NULL ); |
---|
[038d17f] | 161 | g_hash_table_insert( jd->node_cache, xt_find_attr( node, "id" ), entry ); |
---|
[fe7a554] | 162 | } |
---|
| 163 | |
---|
[038d17f] | 164 | void jabber_cache_entry_free( gpointer data ) |
---|
| 165 | { |
---|
| 166 | struct jabber_cache_entry *entry = data; |
---|
[21167d2] | 167 | |
---|
[038d17f] | 168 | xt_free_node( entry->node ); |
---|
| 169 | g_free( entry ); |
---|
| 170 | } |
---|
| 171 | |
---|
| 172 | gboolean jabber_cache_clean_entry( gpointer key, gpointer entry, gpointer nullpointer ); |
---|
| 173 | |
---|
[861c199] | 174 | /* This one should be called from time to time (from keepalive, in this case) |
---|
| 175 | to make sure things don't stay in the node cache forever. By marking nodes |
---|
| 176 | during the first run and deleting marked nodes during a next run, every |
---|
| 177 | node should be available in the cache for at least a minute (assuming the |
---|
| 178 | function is indeed called every minute). */ |
---|
[0da65d5] | 179 | void jabber_cache_clean( struct im_connection *ic ) |
---|
[038d17f] | 180 | { |
---|
[0da65d5] | 181 | struct jabber_data *jd = ic->proto_data; |
---|
[979cfb4] | 182 | time_t threshold = time( NULL ) - JABBER_CACHE_MAX_AGE; |
---|
[038d17f] | 183 | |
---|
[979cfb4] | 184 | g_hash_table_foreach_remove( jd->node_cache, jabber_cache_clean_entry, &threshold ); |
---|
[038d17f] | 185 | } |
---|
| 186 | |
---|
[979cfb4] | 187 | gboolean jabber_cache_clean_entry( gpointer key, gpointer entry_, gpointer threshold_ ) |
---|
[038d17f] | 188 | { |
---|
| 189 | struct jabber_cache_entry *entry = entry_; |
---|
[979cfb4] | 190 | time_t *threshold = threshold_; |
---|
[038d17f] | 191 | |
---|
[979cfb4] | 192 | return entry->saved_at < *threshold; |
---|
[21167d2] | 193 | } |
---|
[5e202b0] | 194 | |
---|
[4306d8b] | 195 | xt_status jabber_cache_handle_packet( struct im_connection *ic, struct xt_node *node ) |
---|
| 196 | { |
---|
| 197 | struct jabber_data *jd = ic->proto_data; |
---|
| 198 | struct jabber_cache_entry *entry; |
---|
| 199 | char *s; |
---|
| 200 | |
---|
| 201 | if( ( s = xt_find_attr( node, "id" ) ) == NULL || |
---|
[89d736a] | 202 | strncmp( s, JABBER_CACHED_ID, strlen( JABBER_CACHED_ID ) ) != 0 ) |
---|
[4306d8b] | 203 | { |
---|
| 204 | /* Silently ignore it, without an ID (or a non-cache |
---|
| 205 | ID) we don't know how to handle the packet and we |
---|
| 206 | probably don't have to. */ |
---|
| 207 | return XT_HANDLED; |
---|
| 208 | } |
---|
| 209 | |
---|
| 210 | entry = g_hash_table_lookup( jd->node_cache, s ); |
---|
| 211 | |
---|
| 212 | if( entry == NULL ) |
---|
| 213 | { |
---|
[89d736a] | 214 | /* |
---|
| 215 | There's no longer an easy way to see if we generated this |
---|
| 216 | one or someone else, and there's a ten-minute timeout anyway, |
---|
| 217 | so meh. |
---|
| 218 | |
---|
[43462708] | 219 | imcb_log( ic, "Warning: Received %s-%s packet with unknown/expired ID %s!", |
---|
[4306d8b] | 220 | node->name, xt_find_attr( node, "type" ) ? : "(no type)", s ); |
---|
[89d736a] | 221 | */ |
---|
[4306d8b] | 222 | } |
---|
| 223 | else if( entry->func ) |
---|
| 224 | { |
---|
| 225 | return entry->func( ic, node, entry->node ); |
---|
| 226 | } |
---|
| 227 | |
---|
| 228 | return XT_HANDLED; |
---|
| 229 | } |
---|
| 230 | |
---|
[5e202b0] | 231 | const struct jabber_away_state jabber_away_state_list[] = |
---|
| 232 | { |
---|
| 233 | { "away", "Away" }, |
---|
[840bba8] | 234 | { "chat", "Free for Chat" }, /* WTF actually uses this? */ |
---|
[5e202b0] | 235 | { "dnd", "Do not Disturb" }, |
---|
| 236 | { "xa", "Extended Away" }, |
---|
| 237 | { "", NULL } |
---|
| 238 | }; |
---|
| 239 | |
---|
| 240 | const struct jabber_away_state *jabber_away_state_by_code( char *code ) |
---|
| 241 | { |
---|
| 242 | int i; |
---|
| 243 | |
---|
[840bba8] | 244 | if( code == NULL ) |
---|
| 245 | return NULL; |
---|
| 246 | |
---|
[5e202b0] | 247 | for( i = 0; jabber_away_state_list[i].full_name; i ++ ) |
---|
| 248 | if( g_strcasecmp( jabber_away_state_list[i].code, code ) == 0 ) |
---|
| 249 | return jabber_away_state_list + i; |
---|
| 250 | |
---|
| 251 | return NULL; |
---|
| 252 | } |
---|
| 253 | |
---|
| 254 | const struct jabber_away_state *jabber_away_state_by_name( char *name ) |
---|
| 255 | { |
---|
| 256 | int i; |
---|
| 257 | |
---|
[840bba8] | 258 | if( name == NULL ) |
---|
| 259 | return NULL; |
---|
| 260 | |
---|
[5e202b0] | 261 | for( i = 0; jabber_away_state_list[i].full_name; i ++ ) |
---|
| 262 | if( g_strcasecmp( jabber_away_state_list[i].full_name, name ) == 0 ) |
---|
| 263 | return jabber_away_state_list + i; |
---|
| 264 | |
---|
| 265 | return NULL; |
---|
| 266 | } |
---|
[8e5e2e9] | 267 | |
---|
| 268 | struct jabber_buddy_ask_data |
---|
| 269 | { |
---|
[0da65d5] | 270 | struct im_connection *ic; |
---|
[8e5e2e9] | 271 | char *handle; |
---|
| 272 | char *realname; |
---|
| 273 | }; |
---|
| 274 | |
---|
[9143aeb] | 275 | static void jabber_buddy_ask_yes( void *data ) |
---|
[8e5e2e9] | 276 | { |
---|
[9143aeb] | 277 | struct jabber_buddy_ask_data *bla = data; |
---|
| 278 | |
---|
[0da65d5] | 279 | presence_send_request( bla->ic, bla->handle, "subscribed" ); |
---|
[8e5e2e9] | 280 | |
---|
[17a6ee9] | 281 | imcb_ask_add( bla->ic, bla->handle, NULL ); |
---|
[8e5e2e9] | 282 | |
---|
| 283 | g_free( bla->handle ); |
---|
| 284 | g_free( bla ); |
---|
| 285 | } |
---|
| 286 | |
---|
[9143aeb] | 287 | static void jabber_buddy_ask_no( void *data ) |
---|
[8e5e2e9] | 288 | { |
---|
[9143aeb] | 289 | struct jabber_buddy_ask_data *bla = data; |
---|
| 290 | |
---|
[0da65d5] | 291 | presence_send_request( bla->ic, bla->handle, "subscribed" ); |
---|
[8e5e2e9] | 292 | |
---|
| 293 | g_free( bla->handle ); |
---|
| 294 | g_free( bla ); |
---|
| 295 | } |
---|
| 296 | |
---|
[0da65d5] | 297 | void jabber_buddy_ask( struct im_connection *ic, char *handle ) |
---|
[8e5e2e9] | 298 | { |
---|
| 299 | struct jabber_buddy_ask_data *bla = g_new0( struct jabber_buddy_ask_data, 1 ); |
---|
| 300 | char *buf; |
---|
| 301 | |
---|
[0da65d5] | 302 | bla->ic = ic; |
---|
[8e5e2e9] | 303 | bla->handle = g_strdup( handle ); |
---|
| 304 | |
---|
| 305 | buf = g_strdup_printf( "The user %s wants to add you to his/her buddy list.", handle ); |
---|
[84b045d] | 306 | imcb_ask( ic, buf, bla, jabber_buddy_ask_yes, jabber_buddy_ask_no ); |
---|
[6266fca] | 307 | g_free( buf ); |
---|
[8e5e2e9] | 308 | } |
---|
[6a1128d] | 309 | |
---|
[0d3f30f] | 310 | /* Returns a new string. Don't leak it! */ |
---|
[e35d1a1] | 311 | char *jabber_normalize( const char *orig ) |
---|
[0d3f30f] | 312 | { |
---|
| 313 | int len, i; |
---|
| 314 | char *new; |
---|
| 315 | |
---|
| 316 | len = strlen( orig ); |
---|
| 317 | new = g_new( char, len + 1 ); |
---|
[98de2cc] | 318 | |
---|
| 319 | /* So it turns out the /resource part is case sensitive. Yeah, and |
---|
| 320 | it's Unicode but feck Unicode. :-P So stop once we see a slash. */ |
---|
| 321 | for( i = 0; i < len && orig[i] != '/' ; i ++ ) |
---|
[0d3f30f] | 322 | new[i] = tolower( orig[i] ); |
---|
[98de2cc] | 323 | for( ; orig[i]; i ++ ) |
---|
| 324 | new[i] = orig[i]; |
---|
[0d3f30f] | 325 | |
---|
| 326 | new[i] = 0; |
---|
| 327 | return new; |
---|
| 328 | } |
---|
| 329 | |
---|
[6a1128d] | 330 | /* Adds a buddy/resource to our list. Returns NULL if full_jid is not really a |
---|
[0d3f30f] | 331 | FULL jid or if we already have this buddy/resource. XXX: No, great, actually |
---|
| 332 | buddies from transports don't (usually) have resources. So we'll really have |
---|
| 333 | to deal with that properly. Set their ->resource property to NULL. Do *NOT* |
---|
| 334 | allow to mix this stuff, though... */ |
---|
[0da65d5] | 335 | struct jabber_buddy *jabber_buddy_add( struct im_connection *ic, char *full_jid_ ) |
---|
[6a1128d] | 336 | { |
---|
[0da65d5] | 337 | struct jabber_data *jd = ic->proto_data; |
---|
[6a1128d] | 338 | struct jabber_buddy *bud, *new, *bi; |
---|
[0d3f30f] | 339 | char *s, *full_jid; |
---|
[6a1128d] | 340 | |
---|
[0d3f30f] | 341 | full_jid = jabber_normalize( full_jid_ ); |
---|
| 342 | |
---|
| 343 | if( ( s = strchr( full_jid, '/' ) ) ) |
---|
| 344 | *s = 0; |
---|
[6a1128d] | 345 | |
---|
| 346 | new = g_new0( struct jabber_buddy, 1 ); |
---|
| 347 | |
---|
| 348 | if( ( bud = g_hash_table_lookup( jd->buddies, full_jid ) ) ) |
---|
| 349 | { |
---|
[76c85b4c] | 350 | /* The first entry is always a bare JID. If there are more, we |
---|
| 351 | should ignore the first one here. */ |
---|
| 352 | if( bud->next ) |
---|
| 353 | bud = bud->next; |
---|
| 354 | |
---|
[0d3f30f] | 355 | /* If this is a transport buddy or whatever, it can't have more |
---|
| 356 | than one instance, so this is always wrong: */ |
---|
| 357 | if( s == NULL || bud->resource == NULL ) |
---|
| 358 | { |
---|
| 359 | if( s ) *s = '/'; |
---|
| 360 | g_free( new ); |
---|
| 361 | g_free( full_jid ); |
---|
| 362 | return NULL; |
---|
| 363 | } |
---|
| 364 | |
---|
| 365 | new->bare_jid = bud->bare_jid; |
---|
[6a1128d] | 366 | |
---|
| 367 | /* We already have another resource for this buddy, add the |
---|
| 368 | new one to the list. */ |
---|
| 369 | for( bi = bud; bi; bi = bi->next ) |
---|
| 370 | { |
---|
[0d3f30f] | 371 | /* Check for dupes. */ |
---|
[98de2cc] | 372 | if( strcmp( bi->resource, s + 1 ) == 0 ) |
---|
[6a1128d] | 373 | { |
---|
| 374 | *s = '/'; |
---|
| 375 | g_free( new ); |
---|
[0d3f30f] | 376 | g_free( full_jid ); |
---|
[6a1128d] | 377 | return NULL; |
---|
| 378 | } |
---|
| 379 | /* Append the new item to the list. */ |
---|
| 380 | else if( bi->next == NULL ) |
---|
| 381 | { |
---|
| 382 | bi->next = new; |
---|
| 383 | break; |
---|
| 384 | } |
---|
| 385 | } |
---|
| 386 | } |
---|
| 387 | else |
---|
| 388 | { |
---|
[76c85b4c] | 389 | new->full_jid = new->bare_jid = g_strdup( full_jid ); |
---|
[0d3f30f] | 390 | g_hash_table_insert( jd->buddies, new->bare_jid, new ); |
---|
[76c85b4c] | 391 | |
---|
| 392 | if( s ) |
---|
| 393 | { |
---|
| 394 | new->next = g_new0( struct jabber_buddy, 1 ); |
---|
| 395 | new->next->bare_jid = new->bare_jid; |
---|
| 396 | new = new->next; |
---|
| 397 | } |
---|
[6a1128d] | 398 | } |
---|
| 399 | |
---|
[0d3f30f] | 400 | if( s ) |
---|
| 401 | { |
---|
| 402 | *s = '/'; |
---|
| 403 | new->full_jid = full_jid; |
---|
| 404 | new->resource = strchr( new->full_jid, '/' ) + 1; |
---|
| 405 | } |
---|
| 406 | else |
---|
| 407 | { |
---|
| 408 | /* Let's waste some more bytes of RAM instead of to make |
---|
[b9f8b87] | 409 | memory management a total disaster here. And it saves |
---|
| 410 | me one g_free() call in this function. :-P */ |
---|
[0d3f30f] | 411 | new->full_jid = full_jid; |
---|
| 412 | } |
---|
[6a1128d] | 413 | |
---|
| 414 | return new; |
---|
| 415 | } |
---|
| 416 | |
---|
[788a1af] | 417 | /* Finds a buddy from our structures. Can find both full- and bare JIDs. When |
---|
| 418 | asked for a bare JID, it uses the "resource_select" setting to see which |
---|
| 419 | resource to pick. */ |
---|
[0da65d5] | 420 | struct jabber_buddy *jabber_buddy_by_jid( struct im_connection *ic, char *jid_, get_buddy_flags_t flags ) |
---|
[6a1128d] | 421 | { |
---|
[0da65d5] | 422 | struct jabber_data *jd = ic->proto_data; |
---|
[76c85b4c] | 423 | struct jabber_buddy *bud, *head; |
---|
[0d3f30f] | 424 | char *s, *jid; |
---|
| 425 | |
---|
| 426 | jid = jabber_normalize( jid_ ); |
---|
[6a1128d] | 427 | |
---|
| 428 | if( ( s = strchr( jid, '/' ) ) ) |
---|
| 429 | { |
---|
[08e5bb2] | 430 | int bare_exists = 0; |
---|
| 431 | |
---|
[6a1128d] | 432 | *s = 0; |
---|
| 433 | if( ( bud = g_hash_table_lookup( jd->buddies, jid ) ) ) |
---|
[0d3f30f] | 434 | { |
---|
[08e5bb2] | 435 | bare_exists = 1; |
---|
| 436 | |
---|
[76c85b4c] | 437 | if( bud->next ) |
---|
| 438 | bud = bud->next; |
---|
| 439 | |
---|
[0adce21] | 440 | /* Just return the first one for this bare JID. */ |
---|
| 441 | if( flags & GET_BUDDY_FIRST ) |
---|
| 442 | { |
---|
| 443 | *s = '/'; |
---|
| 444 | g_free( jid ); |
---|
| 445 | return bud; |
---|
| 446 | } |
---|
| 447 | |
---|
[0d3f30f] | 448 | /* Is this one of those no-resource buddies? */ |
---|
| 449 | if( bud->resource == NULL ) |
---|
| 450 | { |
---|
[0adce21] | 451 | *s = '/'; |
---|
[16b5f86] | 452 | g_free( jid ); |
---|
| 453 | return NULL; |
---|
[0d3f30f] | 454 | } |
---|
[0adce21] | 455 | |
---|
| 456 | /* See if there's an exact match. */ |
---|
| 457 | for( ; bud; bud = bud->next ) |
---|
[98de2cc] | 458 | if( strcmp( bud->resource, s + 1 ) == 0 ) |
---|
[0adce21] | 459 | break; |
---|
[0d3f30f] | 460 | } |
---|
| 461 | |
---|
[08e5bb2] | 462 | if( bud == NULL && ( flags & GET_BUDDY_CREAT ) && |
---|
[17a6ee9] | 463 | ( bare_exists || bee_user_by_handle( ic->bee, ic, jid ) ) ) |
---|
[16b5f86] | 464 | { |
---|
| 465 | *s = '/'; |
---|
[0da65d5] | 466 | bud = jabber_buddy_add( ic, jid ); |
---|
[16b5f86] | 467 | } |
---|
[0d3f30f] | 468 | |
---|
| 469 | g_free( jid ); |
---|
| 470 | return bud; |
---|
[6a1128d] | 471 | } |
---|
| 472 | else |
---|
| 473 | { |
---|
[a21a8ac] | 474 | struct jabber_buddy *best_prio, *best_time; |
---|
| 475 | char *set; |
---|
| 476 | |
---|
[76c85b4c] | 477 | head = g_hash_table_lookup( jd->buddies, jid ); |
---|
[20e830b] | 478 | bud = ( head && head->next ) ? head->next : head; |
---|
[0d3f30f] | 479 | |
---|
| 480 | g_free( jid ); |
---|
| 481 | |
---|
| 482 | if( bud == NULL ) |
---|
[16b5f86] | 483 | /* No match. Create it now? */ |
---|
[17a6ee9] | 484 | return ( ( flags & GET_BUDDY_CREAT ) && |
---|
| 485 | bee_user_by_handle( ic->bee, ic, jid_ ) ) ? |
---|
[0da65d5] | 486 | jabber_buddy_add( ic, jid_ ) : NULL; |
---|
[16b5f86] | 487 | else if( bud->resource && ( flags & GET_BUDDY_EXACT ) ) |
---|
| 488 | /* We want an exact match, so in thise case there shouldn't be a /resource. */ |
---|
| 489 | return NULL; |
---|
[98de2cc] | 490 | else if( bud->resource == NULL || bud->next == NULL ) |
---|
[16b5f86] | 491 | /* No need for selection if there's only one option. */ |
---|
[0d3f30f] | 492 | return bud; |
---|
[0adce21] | 493 | else if( flags & GET_BUDDY_FIRST ) |
---|
| 494 | /* Looks like the caller doesn't care about details. */ |
---|
| 495 | return bud; |
---|
[76c85b4c] | 496 | else if( flags & GET_BUDDY_BARE ) |
---|
| 497 | return head; |
---|
[0d3f30f] | 498 | |
---|
| 499 | best_prio = best_time = bud; |
---|
[a21a8ac] | 500 | for( ; bud; bud = bud->next ) |
---|
| 501 | { |
---|
| 502 | if( bud->priority > best_prio->priority ) |
---|
| 503 | best_prio = bud; |
---|
[76c85b4c] | 504 | if( bud->last_msg > best_time->last_msg ) |
---|
[a21a8ac] | 505 | best_time = bud; |
---|
| 506 | } |
---|
| 507 | |
---|
[0da65d5] | 508 | if( ( set = set_getstr( &ic->acc->set, "resource_select" ) ) == NULL ) |
---|
[a21a8ac] | 509 | return NULL; |
---|
[76c85b4c] | 510 | else if( strcmp( set, "priority" ) == 0 ) |
---|
[a21a8ac] | 511 | return best_prio; |
---|
[76c85b4c] | 512 | else if( flags & GET_BUDDY_BARE_OK ) /* && strcmp( set, "activity" ) == 0 */ |
---|
| 513 | { |
---|
| 514 | if( best_time->last_msg + set_getint( &ic->acc->set, "activity_timeout" ) >= time( NULL ) ) |
---|
| 515 | return best_time; |
---|
| 516 | else |
---|
| 517 | return head; |
---|
| 518 | } |
---|
| 519 | else |
---|
| 520 | return best_time; |
---|
[6a1128d] | 521 | } |
---|
| 522 | } |
---|
| 523 | |
---|
[b9f8b87] | 524 | /* I'm keeping a separate ext_jid attribute to save a JID that makes sense |
---|
| 525 | to export to BitlBee. This is mainly for groupchats right now. It's |
---|
| 526 | a bit of a hack, but I just think having the user nickname in the hostname |
---|
| 527 | part of the hostmask doesn't look nice on IRC. Normally you can convert |
---|
| 528 | a normal JID to ext_jid by swapping the part before and after the / and |
---|
| 529 | replacing the / with a =. But there should be some stripping (@s are |
---|
| 530 | allowed in Jabber nicks...). */ |
---|
| 531 | struct jabber_buddy *jabber_buddy_by_ext_jid( struct im_connection *ic, char *jid_, get_buddy_flags_t flags ) |
---|
| 532 | { |
---|
| 533 | struct jabber_buddy *bud; |
---|
| 534 | char *s, *jid; |
---|
| 535 | |
---|
| 536 | jid = jabber_normalize( jid_ ); |
---|
| 537 | |
---|
| 538 | if( ( s = strchr( jid, '=' ) ) == NULL ) |
---|
| 539 | return NULL; |
---|
| 540 | |
---|
| 541 | for( bud = jabber_buddy_by_jid( ic, s + 1, GET_BUDDY_FIRST ); bud; bud = bud->next ) |
---|
| 542 | { |
---|
| 543 | /* Hmmm, could happen if not all people in the chat are anonymized? */ |
---|
| 544 | if( bud->ext_jid == NULL ) |
---|
| 545 | continue; |
---|
| 546 | |
---|
| 547 | if( strcmp( bud->ext_jid, jid ) == 0 ) |
---|
| 548 | break; |
---|
| 549 | } |
---|
| 550 | |
---|
| 551 | g_free( jid ); |
---|
| 552 | |
---|
| 553 | return bud; |
---|
| 554 | } |
---|
| 555 | |
---|
[788a1af] | 556 | /* Remove one specific full JID from our list. Use this when a buddy goes |
---|
[0d3f30f] | 557 | off-line (because (s)he can still be online from a different location. |
---|
| 558 | XXX: See above, we should accept bare JIDs too... */ |
---|
[0da65d5] | 559 | int jabber_buddy_remove( struct im_connection *ic, char *full_jid_ ) |
---|
[6a1128d] | 560 | { |
---|
[0da65d5] | 561 | struct jabber_data *jd = ic->proto_data; |
---|
[842cd8d] | 562 | struct jabber_buddy *bud, *prev = NULL, *bi; |
---|
[0d3f30f] | 563 | char *s, *full_jid; |
---|
[6a1128d] | 564 | |
---|
[0d3f30f] | 565 | full_jid = jabber_normalize( full_jid_ ); |
---|
| 566 | |
---|
| 567 | if( ( s = strchr( full_jid, '/' ) ) ) |
---|
| 568 | *s = 0; |
---|
[6a1128d] | 569 | |
---|
[20e830b] | 570 | if( ( bud = g_hash_table_lookup( jd->buddies, full_jid ) ) ) |
---|
[6a1128d] | 571 | { |
---|
[20e830b] | 572 | if( bud->next ) |
---|
[842cd8d] | 573 | bud = (prev=bud)->next; |
---|
[76c85b4c] | 574 | |
---|
[6a1128d] | 575 | /* If there's only one item in the list (and if the resource |
---|
| 576 | matches), removing it is simple. (And the hash reference |
---|
| 577 | should be removed too!) */ |
---|
[3e6764a] | 578 | if( bud->next == NULL && |
---|
| 579 | ( ( s == NULL && bud->resource == NULL ) || |
---|
[98de2cc] | 580 | ( bud->resource && s && strcmp( bud->resource, s + 1 ) == 0 ) ) ) |
---|
[6a1128d] | 581 | { |
---|
[76c85b4c] | 582 | return jabber_buddy_remove_bare( ic, full_jid ); |
---|
[0d3f30f] | 583 | } |
---|
| 584 | else if( s == NULL || bud->resource == NULL ) |
---|
| 585 | { |
---|
| 586 | /* Tried to remove a bare JID while this JID does seem |
---|
| 587 | to have resources... (Or the opposite.) *sigh* */ |
---|
| 588 | g_free( full_jid ); |
---|
| 589 | return 0; |
---|
[6a1128d] | 590 | } |
---|
| 591 | else |
---|
| 592 | { |
---|
[842cd8d] | 593 | for( bi = bud; bi; bi = (prev=bi)->next ) |
---|
[98de2cc] | 594 | if( strcmp( bi->resource, s + 1 ) == 0 ) |
---|
[6a1128d] | 595 | break; |
---|
| 596 | |
---|
[0d3f30f] | 597 | g_free( full_jid ); |
---|
| 598 | |
---|
[6a1128d] | 599 | if( bi ) |
---|
| 600 | { |
---|
| 601 | if( prev ) |
---|
| 602 | prev->next = bi->next; |
---|
| 603 | else |
---|
[842cd8d] | 604 | /* Don't think this should ever happen anymore. */ |
---|
[0d3f30f] | 605 | g_hash_table_replace( jd->buddies, bi->bare_jid, bi->next ); |
---|
[6a1128d] | 606 | |
---|
[6286f80] | 607 | g_free( bi->ext_jid ); |
---|
[a21a8ac] | 608 | g_free( bi->full_jid ); |
---|
[6a1128d] | 609 | g_free( bi->away_message ); |
---|
| 610 | g_free( bi ); |
---|
[0d3f30f] | 611 | |
---|
| 612 | return 1; |
---|
[6a1128d] | 613 | } |
---|
| 614 | else |
---|
| 615 | { |
---|
| 616 | return 0; |
---|
| 617 | } |
---|
| 618 | } |
---|
| 619 | } |
---|
| 620 | else |
---|
| 621 | { |
---|
[0d3f30f] | 622 | g_free( full_jid ); |
---|
[6a1128d] | 623 | return 0; |
---|
| 624 | } |
---|
| 625 | } |
---|
[788a1af] | 626 | |
---|
| 627 | /* Remove a buddy completely; removes all resources that belong to the |
---|
| 628 | specified bare JID. Use this when removing someone from the contact |
---|
| 629 | list, for example. */ |
---|
[9da0bbf] | 630 | int jabber_buddy_remove_bare( struct im_connection *ic, char *bare_jid ) |
---|
[788a1af] | 631 | { |
---|
[0da65d5] | 632 | struct jabber_data *jd = ic->proto_data; |
---|
[788a1af] | 633 | struct jabber_buddy *bud, *next; |
---|
| 634 | |
---|
[9da0bbf] | 635 | if( strchr( bare_jid, '/' ) ) |
---|
[788a1af] | 636 | return 0; |
---|
| 637 | |
---|
[9da0bbf] | 638 | if( ( bud = jabber_buddy_by_jid( ic, bare_jid, GET_BUDDY_FIRST ) ) ) |
---|
[788a1af] | 639 | { |
---|
| 640 | /* Most important: Remove the hash reference. We don't know |
---|
| 641 | this buddy anymore. */ |
---|
[0d3f30f] | 642 | g_hash_table_remove( jd->buddies, bud->bare_jid ); |
---|
[9da0bbf] | 643 | g_free( bud->bare_jid ); |
---|
[788a1af] | 644 | |
---|
| 645 | /* Deallocate the linked list of resources. */ |
---|
| 646 | while( bud ) |
---|
| 647 | { |
---|
[9da0bbf] | 648 | /* ext_jid && anonymous means that this buddy is |
---|
| 649 | specific to one groupchat (the one we're |
---|
| 650 | currently cleaning up) so it can be deleted |
---|
| 651 | completely. */ |
---|
| 652 | if( bud->ext_jid && bud->flags & JBFLAG_IS_ANONYMOUS ) |
---|
| 653 | imcb_remove_buddy( ic, bud->ext_jid, NULL ); |
---|
| 654 | |
---|
[788a1af] | 655 | next = bud->next; |
---|
[6286f80] | 656 | g_free( bud->ext_jid ); |
---|
[788a1af] | 657 | g_free( bud->full_jid ); |
---|
| 658 | g_free( bud->away_message ); |
---|
| 659 | g_free( bud ); |
---|
| 660 | bud = next; |
---|
| 661 | } |
---|
| 662 | |
---|
| 663 | return 1; |
---|
| 664 | } |
---|
| 665 | else |
---|
| 666 | { |
---|
| 667 | return 0; |
---|
| 668 | } |
---|
| 669 | } |
---|
[e35d1a1] | 670 | |
---|
[43671b9] | 671 | time_t jabber_get_timestamp( struct xt_node *xt ) |
---|
| 672 | { |
---|
| 673 | struct tm tp, utc; |
---|
| 674 | struct xt_node *c; |
---|
| 675 | time_t res, tres; |
---|
| 676 | char *s = NULL; |
---|
| 677 | |
---|
| 678 | for( c = xt->children; ( c = xt_find_node( c, "x" ) ); c = c->next ) |
---|
| 679 | { |
---|
| 680 | if( ( s = xt_find_attr( c, "xmlns" ) ) && strcmp( s, XMLNS_DELAY ) == 0 ) |
---|
| 681 | break; |
---|
| 682 | } |
---|
| 683 | |
---|
| 684 | if( !c || !( s = xt_find_attr( c, "stamp" ) ) ) |
---|
| 685 | return 0; |
---|
| 686 | |
---|
| 687 | memset( &tp, 0, sizeof( tp ) ); |
---|
| 688 | if( sscanf( s, "%4d%2d%2dT%2d:%2d:%2d", &tp.tm_year, &tp.tm_mon, &tp.tm_mday, |
---|
| 689 | &tp.tm_hour, &tp.tm_min, &tp.tm_sec ) != 6 ) |
---|
| 690 | return 0; |
---|
| 691 | |
---|
| 692 | tp.tm_year -= 1900; |
---|
| 693 | tp.tm_mon --; |
---|
| 694 | tp.tm_isdst = -1; /* GRRRRRRRRRRR */ |
---|
| 695 | |
---|
| 696 | res = mktime( &tp ); |
---|
| 697 | /* Problem is, mktime() just gave us the GMT timestamp for the |
---|
| 698 | given local time... While the given time WAS NOT local. So |
---|
| 699 | we should fix this now. |
---|
| 700 | |
---|
| 701 | Now I could choose between messing with environment variables |
---|
| 702 | (kludgy) or using timegm() (not portable)... Or doing the |
---|
| 703 | following, which I actually prefer... */ |
---|
| 704 | gmtime_r( &res, &utc ); |
---|
| 705 | utc.tm_isdst = -1; /* Once more: GRRRRRRRRRRRRRRRRRR!!! */ |
---|
| 706 | if( utc.tm_hour == tp.tm_hour && utc.tm_min == tp.tm_min ) |
---|
| 707 | /* Sweet! We're in UTC right now... */ |
---|
| 708 | return res; |
---|
| 709 | |
---|
| 710 | tres = mktime( &utc ); |
---|
| 711 | res += res - tres; |
---|
| 712 | |
---|
| 713 | /* Yes, this is a hack. And it will go wrong around DST changes. |
---|
| 714 | BUT this is more likely to be threadsafe than messing with |
---|
| 715 | environment variables, and possibly more portable... */ |
---|
| 716 | |
---|
| 717 | return res; |
---|
| 718 | } |
---|
[1baaef8] | 719 | |
---|
| 720 | struct jabber_error *jabber_error_parse( struct xt_node *node, char *xmlns ) |
---|
| 721 | { |
---|
[5bd21df] | 722 | struct jabber_error *err; |
---|
[1baaef8] | 723 | struct xt_node *c; |
---|
| 724 | char *s; |
---|
| 725 | |
---|
[5bd21df] | 726 | if( node == NULL ) |
---|
| 727 | return NULL; |
---|
| 728 | |
---|
| 729 | err = g_new0( struct jabber_error, 1 ); |
---|
[1baaef8] | 730 | err->type = xt_find_attr( node, "type" ); |
---|
| 731 | |
---|
| 732 | for( c = node->children; c; c = c->next ) |
---|
| 733 | { |
---|
| 734 | if( !( s = xt_find_attr( c, "xmlns" ) ) || |
---|
| 735 | strcmp( s, xmlns ) != 0 ) |
---|
| 736 | continue; |
---|
| 737 | |
---|
| 738 | if( strcmp( c->name, "text" ) != 0 ) |
---|
| 739 | { |
---|
| 740 | err->code = c->name; |
---|
| 741 | } |
---|
| 742 | /* Only use the text if it doesn't have an xml:lang attribute, |
---|
| 743 | if it's empty or if it's set to something English. */ |
---|
| 744 | else if( !( s = xt_find_attr( c, "xml:lang" ) ) || |
---|
| 745 | !*s || strncmp( s, "en", 2 ) == 0 ) |
---|
| 746 | { |
---|
| 747 | err->text = c->text; |
---|
| 748 | } |
---|
| 749 | } |
---|
| 750 | |
---|
| 751 | return err; |
---|
| 752 | } |
---|
| 753 | |
---|
| 754 | void jabber_error_free( struct jabber_error *err ) |
---|
| 755 | { |
---|
| 756 | g_free( err ); |
---|
| 757 | } |
---|