[a312b6b] | 1 | /********************************************************************\ |
---|
| 2 | * BitlBee -- An IRC to other IM-networks gateway * |
---|
| 3 | * * |
---|
| 4 | * Copyright 2002-2006 Wilmer van der Gaast and others * |
---|
| 5 | \********************************************************************/ |
---|
| 6 | |
---|
| 7 | /* Storage backend that uses an XMLish format for all data. */ |
---|
| 8 | |
---|
| 9 | /* |
---|
| 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. |
---|
| 14 | |
---|
| 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. |
---|
| 19 | |
---|
| 20 | You should have received a copy of the GNU General Public License with |
---|
| 21 | the Debian GNU/Linux distribution in /usr/share/common-licenses/GPL; |
---|
| 22 | if not, write to the Free Software Foundation, Inc., 59 Temple Place, |
---|
| 23 | Suite 330, Boston, MA 02111-1307 USA |
---|
| 24 | */ |
---|
| 25 | |
---|
| 26 | #define BITLBEE_CORE |
---|
| 27 | #include "bitlbee.h" |
---|
[6e1fed7] | 28 | #include "base64.h" |
---|
[a7b5925] | 29 | #include "arc.h" |
---|
[d28f3b35] | 30 | #include "md5.h" |
---|
[a312b6b] | 31 | |
---|
[88d2208] | 32 | #if GLIB_CHECK_VERSION(2,8,0) |
---|
| 33 | #include <glib/gstdio.h> |
---|
| 34 | #else |
---|
[47b571d] | 35 | /* GLib < 2.8.0 doesn't have g_access, so just use the system access(). */ |
---|
[88d2208] | 36 | #include <unistd.h> |
---|
[47b571d] | 37 | #define g_access access |
---|
| 38 | #endif |
---|
| 39 | |
---|
[c121f89] | 40 | typedef enum |
---|
| 41 | { |
---|
| 42 | XML_PASS_CHECK_ONLY = -1, |
---|
| 43 | XML_PASS_UNKNOWN = 0, |
---|
[c9f0c79] | 44 | XML_PASS_WRONG, |
---|
[c121f89] | 45 | XML_PASS_OK |
---|
| 46 | } xml_pass_st; |
---|
| 47 | |
---|
[c9f0c79] | 48 | /* To make it easier later when extending the format: */ |
---|
[88086db] | 49 | #define XML_FORMAT_VERSION 1 |
---|
[c121f89] | 50 | |
---|
[a312b6b] | 51 | struct xml_parsedata |
---|
| 52 | { |
---|
| 53 | irc_t *irc; |
---|
| 54 | char *current_setting; |
---|
| 55 | account_t *current_account; |
---|
[84c3a72] | 56 | irc_channel_t *current_channel; |
---|
[1917a1ec] | 57 | set_t **current_set_head; |
---|
[c121f89] | 58 | char *given_nick; |
---|
| 59 | char *given_pass; |
---|
| 60 | xml_pass_st pass_st; |
---|
[a312b6b] | 61 | }; |
---|
| 62 | |
---|
| 63 | static char *xml_attr( const gchar **attr_names, const gchar **attr_values, const gchar *key ) |
---|
| 64 | { |
---|
| 65 | int i; |
---|
| 66 | |
---|
| 67 | for( i = 0; attr_names[i]; i ++ ) |
---|
| 68 | if( g_strcasecmp( attr_names[i], key ) == 0 ) |
---|
[c121f89] | 69 | return (char*) attr_values[i]; |
---|
[a312b6b] | 70 | |
---|
| 71 | return NULL; |
---|
| 72 | } |
---|
| 73 | |
---|
[c121f89] | 74 | static void xml_destroy_xd( gpointer data ) |
---|
| 75 | { |
---|
| 76 | struct xml_parsedata *xd = data; |
---|
| 77 | |
---|
| 78 | g_free( xd->given_nick ); |
---|
| 79 | g_free( xd->given_pass ); |
---|
| 80 | g_free( xd ); |
---|
| 81 | } |
---|
| 82 | |
---|
[a312b6b] | 83 | static void xml_start_element( GMarkupParseContext *ctx, const gchar *element_name, const gchar **attr_names, const gchar **attr_values, gpointer data, GError **error ) |
---|
| 84 | { |
---|
| 85 | struct xml_parsedata *xd = data; |
---|
[c121f89] | 86 | irc_t *irc = xd->irc; |
---|
[a312b6b] | 87 | |
---|
| 88 | if( g_strcasecmp( element_name, "user" ) == 0 ) |
---|
| 89 | { |
---|
| 90 | char *nick = xml_attr( attr_names, attr_values, "nick" ); |
---|
[c121f89] | 91 | char *pass = xml_attr( attr_names, attr_values, "password" ); |
---|
[4e8db1c] | 92 | int st; |
---|
[a312b6b] | 93 | |
---|
[c121f89] | 94 | if( !nick || !pass ) |
---|
[a312b6b] | 95 | { |
---|
[c121f89] | 96 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
| 97 | "Missing attributes for %s element", element_name ); |
---|
[a312b6b] | 98 | } |
---|
[4e8db1c] | 99 | else if( ( st = md5_verify_password( xd->given_pass, pass ) ) == -1 ) |
---|
[6e1fed7] | 100 | { |
---|
[4e8db1c] | 101 | xd->pass_st = XML_PASS_WRONG; |
---|
[6e1fed7] | 102 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
| 103 | "Error while decoding password attribute" ); |
---|
| 104 | } |
---|
[4e8db1c] | 105 | else if( st == 0 ) |
---|
| 106 | { |
---|
| 107 | if( xd->pass_st != XML_PASS_CHECK_ONLY ) |
---|
| 108 | xd->pass_st = XML_PASS_OK; |
---|
| 109 | } |
---|
[c121f89] | 110 | else |
---|
| 111 | { |
---|
[4e8db1c] | 112 | xd->pass_st = XML_PASS_WRONG; |
---|
| 113 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
| 114 | "Password mismatch" ); |
---|
[c121f89] | 115 | } |
---|
| 116 | } |
---|
| 117 | else if( xd->pass_st < XML_PASS_OK ) |
---|
| 118 | { |
---|
| 119 | /* Let's not parse anything else if we only have to check |
---|
| 120 | the password. */ |
---|
[a312b6b] | 121 | } |
---|
| 122 | else if( g_strcasecmp( element_name, "account" ) == 0 ) |
---|
| 123 | { |
---|
[6ee9d2d] | 124 | char *protocol, *handle, *server, *password = NULL, *autoconnect; |
---|
[3b6eadc] | 125 | char *pass_b64 = NULL; |
---|
[a7b5925] | 126 | unsigned char *pass_cr = NULL; |
---|
[6e1fed7] | 127 | int pass_len; |
---|
[a312b6b] | 128 | struct prpl *prpl = NULL; |
---|
| 129 | |
---|
| 130 | handle = xml_attr( attr_names, attr_values, "handle" ); |
---|
[6e1fed7] | 131 | pass_b64 = xml_attr( attr_names, attr_values, "password" ); |
---|
[c121f89] | 132 | server = xml_attr( attr_names, attr_values, "server" ); |
---|
[2b14eef] | 133 | autoconnect = xml_attr( attr_names, attr_values, "autoconnect" ); |
---|
[a312b6b] | 134 | |
---|
| 135 | protocol = xml_attr( attr_names, attr_values, "protocol" ); |
---|
| 136 | if( protocol ) |
---|
| 137 | prpl = find_protocol( protocol ); |
---|
| 138 | |
---|
[6e1fed7] | 139 | if( !handle || !pass_b64 || !protocol ) |
---|
[c121f89] | 140 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
| 141 | "Missing attributes for %s element", element_name ); |
---|
| 142 | else if( !prpl ) |
---|
| 143 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
[9b46b64] | 144 | "Unknown protocol: %s", protocol ); |
---|
[a7b5925] | 145 | else if( ( pass_len = base64_decode( pass_b64, (unsigned char**) &pass_cr ) ) && |
---|
| 146 | arc_decode( pass_cr, pass_len, &password, xd->given_pass ) ) |
---|
[a312b6b] | 147 | { |
---|
[1f92a58] | 148 | xd->current_account = account_add( irc->b, prpl, handle, password ); |
---|
[c121f89] | 149 | if( server ) |
---|
[5100caa] | 150 | set_setstr( &xd->current_account->set, "server", server ); |
---|
[2b14eef] | 151 | if( autoconnect ) |
---|
[5100caa] | 152 | set_setstr( &xd->current_account->set, "auto_connect", autoconnect ); |
---|
[a312b6b] | 153 | } |
---|
[6e1fed7] | 154 | else |
---|
| 155 | { |
---|
| 156 | /* Actually the _decode functions don't even return error codes, |
---|
| 157 | but maybe they will later... */ |
---|
| 158 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
| 159 | "Error while decrypting account password" ); |
---|
| 160 | } |
---|
| 161 | |
---|
[a7b5925] | 162 | g_free( pass_cr ); |
---|
[6e1fed7] | 163 | g_free( password ); |
---|
[a312b6b] | 164 | } |
---|
| 165 | else if( g_strcasecmp( element_name, "setting" ) == 0 ) |
---|
| 166 | { |
---|
[5100caa] | 167 | char *setting; |
---|
| 168 | |
---|
| 169 | if( xd->current_setting ) |
---|
[a312b6b] | 170 | { |
---|
[5100caa] | 171 | g_free( xd->current_setting ); |
---|
| 172 | xd->current_setting = NULL; |
---|
[a312b6b] | 173 | } |
---|
[5100caa] | 174 | |
---|
| 175 | if( ( setting = xml_attr( attr_names, attr_values, "name" ) ) ) |
---|
[1917a1ec] | 176 | { |
---|
[547ea68] | 177 | if( xd->current_channel != NULL ) |
---|
| 178 | xd->current_set_head = &xd->current_channel->set; |
---|
| 179 | else if( xd->current_account != NULL ) |
---|
[1917a1ec] | 180 | xd->current_set_head = &xd->current_account->set; |
---|
| 181 | else |
---|
[1f92a58] | 182 | xd->current_set_head = &xd->irc->b->set; |
---|
[1917a1ec] | 183 | |
---|
[5100caa] | 184 | xd->current_setting = g_strdup( setting ); |
---|
[1917a1ec] | 185 | } |
---|
[5100caa] | 186 | else |
---|
| 187 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
| 188 | "Missing attributes for %s element", element_name ); |
---|
[a312b6b] | 189 | } |
---|
| 190 | else if( g_strcasecmp( element_name, "buddy" ) == 0 ) |
---|
| 191 | { |
---|
[c121f89] | 192 | char *handle, *nick; |
---|
| 193 | |
---|
| 194 | handle = xml_attr( attr_names, attr_values, "handle" ); |
---|
| 195 | nick = xml_attr( attr_names, attr_values, "nick" ); |
---|
| 196 | |
---|
| 197 | if( xd->current_account && handle && nick ) |
---|
| 198 | { |
---|
[b1f818b] | 199 | nick_set_raw( xd->current_account, handle, nick ); |
---|
[c121f89] | 200 | } |
---|
| 201 | else |
---|
| 202 | { |
---|
| 203 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
| 204 | "Missing attributes for %s element", element_name ); |
---|
| 205 | } |
---|
[a312b6b] | 206 | } |
---|
[547ea68] | 207 | else if( g_strcasecmp( element_name, "channel" ) == 0 ) |
---|
| 208 | { |
---|
| 209 | char *name, *type; |
---|
| 210 | |
---|
| 211 | name = xml_attr( attr_names, attr_values, "name" ); |
---|
| 212 | type = xml_attr( attr_names, attr_values, "type" ); |
---|
| 213 | |
---|
| 214 | if( !name || !type ) |
---|
| 215 | { |
---|
| 216 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
| 217 | "Missing attributes for %s element", element_name ); |
---|
| 218 | return; |
---|
| 219 | } |
---|
| 220 | |
---|
[7a6ba50] | 221 | /* The channel may exist already, for example if it's &bitlbee. |
---|
| 222 | Also, it's possible that the user just reconnected and the |
---|
| 223 | IRC client already rejoined all channels it was in. They |
---|
| 224 | should still get the right settings. */ |
---|
[547ea68] | 225 | if( ( xd->current_channel = irc_channel_by_name( irc, name ) ) || |
---|
| 226 | ( xd->current_channel = irc_channel_new( irc, name ) ) ) |
---|
| 227 | set_setstr( &xd->current_channel->set, "type", type ); |
---|
| 228 | } |
---|
| 229 | /* Backward compatibility: Keep this around for a while for people |
---|
| 230 | switching from BitlBee 1.2.4+. */ |
---|
[1917a1ec] | 231 | else if( g_strcasecmp( element_name, "chat" ) == 0 ) |
---|
| 232 | { |
---|
| 233 | char *handle, *channel; |
---|
| 234 | |
---|
| 235 | handle = xml_attr( attr_names, attr_values, "handle" ); |
---|
| 236 | channel = xml_attr( attr_names, attr_values, "channel" ); |
---|
| 237 | |
---|
| 238 | if( xd->current_account && handle && channel ) |
---|
| 239 | { |
---|
[84c3a72] | 240 | irc_channel_t *ic; |
---|
| 241 | char *acc; |
---|
| 242 | |
---|
| 243 | acc = g_strdup_printf( "%s(%s)", |
---|
| 244 | xd->current_account->prpl->name, |
---|
| 245 | xd->current_account->user ); |
---|
| 246 | |
---|
| 247 | if( ( ic = irc_channel_new( irc, channel ) ) && |
---|
[547ea68] | 248 | set_setstr( &ic->set, "type", "chat" ) && |
---|
[84c3a72] | 249 | set_setstr( &ic->set, "chat_type", "room" ) && |
---|
| 250 | set_setstr( &ic->set, "account", acc ) && |
---|
| 251 | set_setstr( &ic->set, "room", handle ) ) |
---|
| 252 | { |
---|
[547ea68] | 253 | /* Try to pick up some settings where possible. */ |
---|
| 254 | xd->current_channel = ic; |
---|
[84c3a72] | 255 | } |
---|
| 256 | else if( ic ) |
---|
| 257 | irc_channel_free( ic ); |
---|
| 258 | |
---|
| 259 | g_free( acc ); |
---|
[1917a1ec] | 260 | } |
---|
| 261 | else |
---|
| 262 | { |
---|
| 263 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_INVALID_CONTENT, |
---|
| 264 | "Missing attributes for %s element", element_name ); |
---|
| 265 | } |
---|
| 266 | } |
---|
[a312b6b] | 267 | else |
---|
| 268 | { |
---|
[c121f89] | 269 | g_set_error( error, G_MARKUP_ERROR, G_MARKUP_ERROR_UNKNOWN_ELEMENT, |
---|
| 270 | "Unkown element: %s", element_name ); |
---|
[a312b6b] | 271 | } |
---|
| 272 | } |
---|
| 273 | |
---|
| 274 | static void xml_end_element( GMarkupParseContext *ctx, const gchar *element_name, gpointer data, GError **error ) |
---|
| 275 | { |
---|
[5898ef8] | 276 | struct xml_parsedata *xd = data; |
---|
| 277 | |
---|
| 278 | if( g_strcasecmp( element_name, "setting" ) == 0 && xd->current_setting ) |
---|
| 279 | { |
---|
| 280 | g_free( xd->current_setting ); |
---|
| 281 | xd->current_setting = NULL; |
---|
| 282 | } |
---|
| 283 | else if( g_strcasecmp( element_name, "account" ) == 0 ) |
---|
| 284 | { |
---|
| 285 | xd->current_account = NULL; |
---|
| 286 | } |
---|
[547ea68] | 287 | else if( g_strcasecmp( element_name, "channel" ) == 0 || |
---|
| 288 | g_strcasecmp( element_name, "chat" ) == 0 ) |
---|
[1917a1ec] | 289 | { |
---|
[547ea68] | 290 | xd->current_channel = NULL; |
---|
[1917a1ec] | 291 | } |
---|
[a312b6b] | 292 | } |
---|
| 293 | |
---|
[8320a7a] | 294 | static void xml_text( GMarkupParseContext *ctx, const gchar *text_orig, gsize text_len, gpointer data, GError **error ) |
---|
[a312b6b] | 295 | { |
---|
[8320a7a] | 296 | char text[text_len+1]; |
---|
[a312b6b] | 297 | struct xml_parsedata *xd = data; |
---|
| 298 | |
---|
[8320a7a] | 299 | strncpy( text, text_orig, text_len ); |
---|
| 300 | text[text_len] = 0; |
---|
| 301 | |
---|
[c121f89] | 302 | if( xd->pass_st < XML_PASS_OK ) |
---|
| 303 | { |
---|
| 304 | /* Let's not parse anything else if we only have to check |
---|
[84e9cea] | 305 | the password, or if we didn't get the chance to check it |
---|
| 306 | yet. */ |
---|
[c121f89] | 307 | } |
---|
[5100caa] | 308 | else if( g_strcasecmp( g_markup_parse_context_get_element( ctx ), "setting" ) == 0 && xd->current_setting ) |
---|
[a312b6b] | 309 | { |
---|
[1917a1ec] | 310 | set_setstr( xd->current_set_head, xd->current_setting, (char*) text ); |
---|
[c121f89] | 311 | g_free( xd->current_setting ); |
---|
| 312 | xd->current_setting = NULL; |
---|
[a312b6b] | 313 | } |
---|
| 314 | } |
---|
| 315 | |
---|
| 316 | GMarkupParser xml_parser = |
---|
| 317 | { |
---|
| 318 | xml_start_element, |
---|
| 319 | xml_end_element, |
---|
| 320 | xml_text, |
---|
| 321 | NULL, |
---|
[5898ef8] | 322 | NULL |
---|
[a312b6b] | 323 | }; |
---|
| 324 | |
---|
| 325 | static void xml_init( void ) |
---|
| 326 | { |
---|
[dfd442b] | 327 | if( g_access( global.conf->configdir, F_OK ) != 0 ) |
---|
[eeb85a8] | 328 | log_message( LOGLVL_WARNING, "The configuration directory `%s' does not exist. Configuration won't be saved.", global.conf->configdir ); |
---|
[dfd442b] | 329 | else if( g_access( global.conf->configdir, F_OK ) != 0 || |
---|
| 330 | g_access( global.conf->configdir, W_OK ) != 0 ) |
---|
[eeb85a8] | 331 | log_message( LOGLVL_WARNING, "Permission problem: Can't read/write from/to `%s'.", global.conf->configdir ); |
---|
[a312b6b] | 332 | } |
---|
| 333 | |
---|
[3183c21] | 334 | static storage_status_t xml_load_real( irc_t *irc, const char *my_nick, const char *password, xml_pass_st action ) |
---|
[a312b6b] | 335 | { |
---|
| 336 | GMarkupParseContext *ctx; |
---|
[c121f89] | 337 | struct xml_parsedata *xd; |
---|
| 338 | char *fn, buf[512]; |
---|
| 339 | GError *gerr = NULL; |
---|
| 340 | int fd, st; |
---|
[a312b6b] | 341 | |
---|
[c121f89] | 342 | xd = g_new0( struct xml_parsedata, 1 ); |
---|
| 343 | xd->irc = irc; |
---|
| 344 | xd->given_nick = g_strdup( my_nick ); |
---|
| 345 | xd->given_pass = g_strdup( password ); |
---|
[84e9cea] | 346 | xd->pass_st = action; |
---|
[c121f89] | 347 | nick_lc( xd->given_nick ); |
---|
[a312b6b] | 348 | |
---|
[c121f89] | 349 | fn = g_strdup_printf( "%s%s%s", global.conf->configdir, xd->given_nick, ".xml" ); |
---|
| 350 | if( ( fd = open( fn, O_RDONLY ) ) < 0 ) |
---|
[a312b6b] | 351 | { |
---|
[c121f89] | 352 | xml_destroy_xd( xd ); |
---|
| 353 | g_free( fn ); |
---|
| 354 | return STORAGE_NO_SUCH_USER; |
---|
[a312b6b] | 355 | } |
---|
[c121f89] | 356 | g_free( fn ); |
---|
[a312b6b] | 357 | |
---|
[c121f89] | 358 | ctx = g_markup_parse_context_new( &xml_parser, 0, xd, xml_destroy_xd ); |
---|
[a312b6b] | 359 | |
---|
[c121f89] | 360 | while( ( st = read( fd, buf, sizeof( buf ) ) ) > 0 ) |
---|
[a312b6b] | 361 | { |
---|
[c121f89] | 362 | if( !g_markup_parse_context_parse( ctx, buf, st, &gerr ) || gerr ) |
---|
| 363 | { |
---|
[c9f0c79] | 364 | xml_pass_st pass_st = xd->pass_st; |
---|
| 365 | |
---|
[c121f89] | 366 | g_markup_parse_context_free( ctx ); |
---|
[5898ef8] | 367 | close( fd ); |
---|
[c121f89] | 368 | |
---|
[c9f0c79] | 369 | if( pass_st == XML_PASS_WRONG ) |
---|
[00ab350] | 370 | { |
---|
| 371 | g_clear_error( &gerr ); |
---|
[c121f89] | 372 | return STORAGE_INVALID_PASSWORD; |
---|
[00ab350] | 373 | } |
---|
[c121f89] | 374 | else |
---|
[5898ef8] | 375 | { |
---|
[84e9cea] | 376 | if( gerr && irc ) |
---|
[5898ef8] | 377 | irc_usermsg( irc, "Error from XML-parser: %s", gerr->message ); |
---|
| 378 | |
---|
[00ab350] | 379 | g_clear_error( &gerr ); |
---|
[c121f89] | 380 | return STORAGE_OTHER_ERROR; |
---|
[5898ef8] | 381 | } |
---|
[c121f89] | 382 | } |
---|
[a312b6b] | 383 | } |
---|
[00ab350] | 384 | /* Just to be sure... */ |
---|
| 385 | g_clear_error( &gerr ); |
---|
[a312b6b] | 386 | |
---|
[c121f89] | 387 | g_markup_parse_context_free( ctx ); |
---|
[5898ef8] | 388 | close( fd ); |
---|
[c121f89] | 389 | |
---|
[84e9cea] | 390 | if( action == XML_PASS_CHECK_ONLY ) |
---|
| 391 | return STORAGE_OK; |
---|
| 392 | |
---|
[a312b6b] | 393 | return STORAGE_OK; |
---|
| 394 | } |
---|
| 395 | |
---|
[3183c21] | 396 | static storage_status_t xml_load( irc_t *irc, const char *password ) |
---|
[84e9cea] | 397 | { |
---|
[1f92a58] | 398 | return xml_load_real( irc, irc->user->nick, password, XML_PASS_UNKNOWN ); |
---|
[84e9cea] | 399 | } |
---|
| 400 | |
---|
| 401 | static storage_status_t xml_check_pass( const char *my_nick, const char *password ) |
---|
| 402 | { |
---|
| 403 | /* This is a little bit risky because we have to pass NULL for the |
---|
| 404 | irc_t argument. This *should* be fine, if I didn't miss anything... */ |
---|
[3183c21] | 405 | return xml_load_real( NULL, my_nick, password, XML_PASS_CHECK_ONLY ); |
---|
[84e9cea] | 406 | } |
---|
| 407 | |
---|
[5100caa] | 408 | static int xml_printf( int fd, int indent, char *fmt, ... ) |
---|
[5898ef8] | 409 | { |
---|
| 410 | va_list params; |
---|
| 411 | char *out; |
---|
[5100caa] | 412 | char tabs[9] = "\t\t\t\t\t\t\t\t"; |
---|
[5898ef8] | 413 | int len; |
---|
| 414 | |
---|
[5100caa] | 415 | /* Maybe not very clean, but who needs more than 8 levels of indentation anyway? */ |
---|
| 416 | if( write( fd, tabs, indent <= 8 ? indent : 8 ) != indent ) |
---|
| 417 | return 0; |
---|
| 418 | |
---|
[5898ef8] | 419 | va_start( params, fmt ); |
---|
| 420 | out = g_markup_vprintf_escaped( fmt, params ); |
---|
| 421 | va_end( params ); |
---|
| 422 | |
---|
| 423 | len = strlen( out ); |
---|
| 424 | len -= write( fd, out, len ); |
---|
| 425 | g_free( out ); |
---|
| 426 | |
---|
| 427 | return len == 0; |
---|
| 428 | } |
---|
| 429 | |
---|
[5b52a48] | 430 | static gboolean xml_save_nick( gpointer key, gpointer value, gpointer data ); |
---|
| 431 | |
---|
[c121f89] | 432 | static storage_status_t xml_save( irc_t *irc, int overwrite ) |
---|
[a312b6b] | 433 | { |
---|
[6e1fed7] | 434 | char path[512], *path2, *pass_buf = NULL; |
---|
[5898ef8] | 435 | set_t *set; |
---|
| 436 | account_t *acc; |
---|
[1719464] | 437 | int fd; |
---|
[6e1fed7] | 438 | md5_byte_t pass_md5[21]; |
---|
[ece2cd2] | 439 | md5_state_t md5_state; |
---|
[547ea68] | 440 | GSList *l; |
---|
[ece2cd2] | 441 | |
---|
[1f92a58] | 442 | path2 = g_strdup( irc->user->nick ); |
---|
[7e3592e] | 443 | nick_lc( path2 ); |
---|
| 444 | g_snprintf( path, sizeof( path ) - 2, "%s%s%s", global.conf->configdir, path2, ".xml" ); |
---|
| 445 | g_free( path2 ); |
---|
[5898ef8] | 446 | |
---|
[dfd442b] | 447 | if( !overwrite && g_access( path, F_OK ) == 0 ) |
---|
[5898ef8] | 448 | return STORAGE_ALREADY_EXISTS; |
---|
| 449 | |
---|
[f277225] | 450 | strcat( path, ".XXXXXX" ); |
---|
| 451 | if( ( fd = mkstemp( path ) ) < 0 ) |
---|
[5898ef8] | 452 | { |
---|
| 453 | irc_usermsg( irc, "Error while opening configuration file." ); |
---|
| 454 | return STORAGE_OTHER_ERROR; |
---|
[a312b6b] | 455 | } |
---|
[5898ef8] | 456 | |
---|
[6e1fed7] | 457 | /* Generate a salted md5sum of the password. Use 5 bytes for the salt |
---|
| 458 | (to prevent dictionary lookups of passwords) to end up with a 21- |
---|
| 459 | byte password hash, more convenient for base64 encoding. */ |
---|
[1719464] | 460 | random_bytes( pass_md5 + 16, 5 ); |
---|
[ece2cd2] | 461 | md5_init( &md5_state ); |
---|
| 462 | md5_append( &md5_state, (md5_byte_t*) irc->password, strlen( irc->password ) ); |
---|
[6e1fed7] | 463 | md5_append( &md5_state, pass_md5 + 16, 5 ); /* Add the salt. */ |
---|
[ece2cd2] | 464 | md5_finish( &md5_state, pass_md5 ); |
---|
[6e1fed7] | 465 | /* Save the hash in base64-encoded form. */ |
---|
[3b6eadc] | 466 | pass_buf = base64_encode( pass_md5, 21 ); |
---|
[ece2cd2] | 467 | |
---|
[1f92a58] | 468 | if( !xml_printf( fd, 0, "<user nick=\"%s\" password=\"%s\" version=\"%d\">\n", irc->user->nick, pass_buf, XML_FORMAT_VERSION ) ) |
---|
[5898ef8] | 469 | goto write_error; |
---|
| 470 | |
---|
[6e1fed7] | 471 | g_free( pass_buf ); |
---|
| 472 | |
---|
[1f92a58] | 473 | for( set = irc->b->set; set; set = set->next ) |
---|
[b84800d] | 474 | if( set->value ) |
---|
[5100caa] | 475 | if( !xml_printf( fd, 1, "<setting name=\"%s\">%s</setting>\n", set->key, set->value ) ) |
---|
[5898ef8] | 476 | goto write_error; |
---|
| 477 | |
---|
[1f92a58] | 478 | for( acc = irc->b->accounts; acc; acc = acc->next ) |
---|
[5898ef8] | 479 | { |
---|
[a7b5925] | 480 | unsigned char *pass_cr; |
---|
[3b6eadc] | 481 | char *pass_b64; |
---|
[6e1fed7] | 482 | int pass_len; |
---|
| 483 | |
---|
[ddcf491f] | 484 | pass_len = arc_encode( acc->pass, strlen( acc->pass ), (unsigned char**) &pass_cr, irc->password, 12 ); |
---|
[a7b5925] | 485 | pass_b64 = base64_encode( pass_cr, pass_len ); |
---|
| 486 | g_free( pass_cr ); |
---|
[6e1fed7] | 487 | |
---|
[5100caa] | 488 | if( !xml_printf( fd, 1, "<account protocol=\"%s\" handle=\"%s\" password=\"%s\" autoconnect=\"%d\"", acc->prpl->name, acc->user, pass_b64, acc->auto_connect ) ) |
---|
[6e1fed7] | 489 | { |
---|
| 490 | g_free( pass_b64 ); |
---|
[5898ef8] | 491 | goto write_error; |
---|
[6e1fed7] | 492 | } |
---|
| 493 | g_free( pass_b64 ); |
---|
| 494 | |
---|
[5100caa] | 495 | if( acc->server && acc->server[0] && !xml_printf( fd, 0, " server=\"%s\"", acc->server ) ) |
---|
[5898ef8] | 496 | goto write_error; |
---|
[5100caa] | 497 | if( !xml_printf( fd, 0, ">\n" ) ) |
---|
[5898ef8] | 498 | goto write_error; |
---|
| 499 | |
---|
[5100caa] | 500 | for( set = acc->set; set; set = set->next ) |
---|
[b84800d] | 501 | if( set->value && !( set->flags & ACC_SET_NOSAVE ) ) |
---|
[5100caa] | 502 | if( !xml_printf( fd, 2, "<setting name=\"%s\">%s</setting>\n", set->key, set->value ) ) |
---|
| 503 | goto write_error; |
---|
| 504 | |
---|
[5b52a48] | 505 | /* This probably looks pretty strange. g_hash_table_foreach |
---|
| 506 | is quite a PITA already (but it can't get much better in |
---|
| 507 | C without using #define, I'm afraid), and since it |
---|
| 508 | doesn't seem to be possible to abort the foreach on write |
---|
| 509 | errors, so instead let's use the _find function and |
---|
| 510 | return TRUE on write errors. Which means, if we found |
---|
| 511 | something, there was an error. :-) */ |
---|
[56f260a] | 512 | if( g_hash_table_find( acc->nicks, xml_save_nick, & fd ) ) |
---|
[5b52a48] | 513 | goto write_error; |
---|
[5898ef8] | 514 | |
---|
[5100caa] | 515 | if( !xml_printf( fd, 1, "</account>\n" ) ) |
---|
[5898ef8] | 516 | goto write_error; |
---|
| 517 | } |
---|
| 518 | |
---|
[547ea68] | 519 | for( l = irc->channels; l; l = l->next ) |
---|
| 520 | { |
---|
| 521 | irc_channel_t *ic = l->data; |
---|
| 522 | |
---|
[1c40aa7] | 523 | if( ic->flags & IRC_CHANNEL_TEMP ) |
---|
| 524 | continue; |
---|
| 525 | |
---|
[547ea68] | 526 | if( !xml_printf( fd, 1, "<channel name=\"%s\" type=\"%s\">\n", |
---|
| 527 | ic->name, set_getstr( &ic->set, "type" ) ) ) |
---|
| 528 | goto write_error; |
---|
| 529 | |
---|
| 530 | for( set = ic->set; set; set = set->next ) |
---|
| 531 | if( set->value && strcmp( set->key, "type" ) != 0 ) |
---|
| 532 | if( !xml_printf( fd, 2, "<setting name=\"%s\">%s</setting>\n", set->key, set->value ) ) |
---|
| 533 | goto write_error; |
---|
| 534 | |
---|
| 535 | if( !xml_printf( fd, 1, "</channel>\n" ) ) |
---|
| 536 | goto write_error; |
---|
| 537 | } |
---|
| 538 | |
---|
[5100caa] | 539 | if( !xml_printf( fd, 0, "</user>\n" ) ) |
---|
[5898ef8] | 540 | goto write_error; |
---|
| 541 | |
---|
[542e44a] | 542 | fsync( fd ); |
---|
[5898ef8] | 543 | close( fd ); |
---|
| 544 | |
---|
[f277225] | 545 | path2 = g_strndup( path, strlen( path ) - 7 ); |
---|
[5898ef8] | 546 | if( rename( path, path2 ) != 0 ) |
---|
| 547 | { |
---|
| 548 | irc_usermsg( irc, "Error while renaming temporary configuration file." ); |
---|
| 549 | |
---|
| 550 | g_free( path2 ); |
---|
| 551 | unlink( path ); |
---|
| 552 | |
---|
| 553 | return STORAGE_OTHER_ERROR; |
---|
| 554 | } |
---|
| 555 | |
---|
| 556 | g_free( path2 ); |
---|
| 557 | |
---|
[a312b6b] | 558 | return STORAGE_OK; |
---|
[5898ef8] | 559 | |
---|
| 560 | write_error: |
---|
[6e1fed7] | 561 | g_free( pass_buf ); |
---|
| 562 | |
---|
[5898ef8] | 563 | irc_usermsg( irc, "Write error. Disk full?" ); |
---|
| 564 | close( fd ); |
---|
| 565 | |
---|
| 566 | return STORAGE_OTHER_ERROR; |
---|
[a312b6b] | 567 | } |
---|
| 568 | |
---|
[5b52a48] | 569 | static gboolean xml_save_nick( gpointer key, gpointer value, gpointer data ) |
---|
| 570 | { |
---|
[56f260a] | 571 | return !xml_printf( *( (int*) data ), 2, "<buddy handle=\"%s\" nick=\"%s\" />\n", key, value ); |
---|
[5b52a48] | 572 | } |
---|
| 573 | |
---|
[84e9cea] | 574 | static storage_status_t xml_remove( const char *nick, const char *password ) |
---|
| 575 | { |
---|
[e0f9170] | 576 | char s[512], *lc; |
---|
[84e9cea] | 577 | storage_status_t status; |
---|
| 578 | |
---|
| 579 | status = xml_check_pass( nick, password ); |
---|
| 580 | if( status != STORAGE_OK ) |
---|
| 581 | return status; |
---|
| 582 | |
---|
[e0f9170] | 583 | lc = g_strdup( nick ); |
---|
| 584 | nick_lc( lc ); |
---|
| 585 | g_snprintf( s, 511, "%s%s%s", global.conf->configdir, lc, ".xml" ); |
---|
| 586 | g_free( lc ); |
---|
| 587 | |
---|
[84e9cea] | 588 | if( unlink( s ) == -1 ) |
---|
| 589 | return STORAGE_OTHER_ERROR; |
---|
| 590 | |
---|
| 591 | return STORAGE_OK; |
---|
| 592 | } |
---|
| 593 | |
---|
[a312b6b] | 594 | storage_t storage_xml = { |
---|
| 595 | .name = "xml", |
---|
| 596 | .init = xml_init, |
---|
[84e9cea] | 597 | .check_pass = xml_check_pass, |
---|
| 598 | .remove = xml_remove, |
---|
[a312b6b] | 599 | .load = xml_load, |
---|
| 600 | .save = xml_save |
---|
| 601 | }; |
---|