source: protocols/msn/ns.c @ 3752019

Last change on this file since 3752019 was 3752019, checked in by dequis <dx@…>, at 2015-03-15T14:41:47Z

msn: start update to msnp21

  • bump protocol version
  • update CVR parameters
  • don't send BLP, send ADL right after getting contact list
  • NFY payload size parsing
  • MSNP21 style ADL
  • Property mode set to 100644
File size: 24.9 KB
RevLine 
[5ebff60]1/********************************************************************\
[b7d3cc34]2  * BitlBee -- An IRC to other IM-networks gateway                     *
3  *                                                                    *
[f9258ae]4  * Copyright 2002-2012 Wilmer van der Gaast and others                *
[b7d3cc34]5  \********************************************************************/
6
7/* MSN module - Notification server callbacks                           */
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;
[6f10697]22  if not, write to the Free Software Foundation, Inc., 51 Franklin St.,
23  Fifth Floor, Boston, MA  02110-1301  USA
[b7d3cc34]24*/
25
26#include <ctype.h>
[f9258ae]27#include <sys/utsname.h>
[b7d3cc34]28#include "nogaim.h"
29#include "msn.h"
30#include "md5.h"
[f9258ae]31#include "sha1.h"
[7db65b7]32#include "soap.h"
[ca7de3a]33#include "xmltree.h"
[b7d3cc34]34
[5ebff60]35static gboolean msn_ns_connected(gpointer data, gint source, b_input_condition cond);
36static gboolean msn_ns_callback(gpointer data, gint source, b_input_condition cond);
37static int msn_ns_command(struct msn_handler_data *handler, char **cmd, int num_parts);
38static int msn_ns_message(struct msn_handler_data *handler, char *msg, int msglen, char **cmd, int num_parts);
[b7d3cc34]39
[5ebff60]40static void msn_ns_send_adl_start(struct im_connection *ic);
41static void msn_ns_send_adl(struct im_connection *ic);
[b7d3cc34]42
[5ebff60]43int msn_ns_write(struct im_connection *ic, int fd, const char *fmt, ...)
[64768d4]44{
45        struct msn_data *md = ic->proto_data;
46        va_list params;
47        char *out;
48        size_t len;
49        int st;
[5ebff60]50
51        va_start(params, fmt);
52        out = g_strdup_vprintf(fmt, params);
53        va_end(params);
54
55        if (fd < 0) {
[bae0617]56                fd = md->ns->fd;
[5ebff60]57        }
58
59        if (getenv("BITLBEE_DEBUG")) {
[fa8c775]60                fprintf(stderr, "\x1b[91m>>>[NS%d] %s\n\x1b[97m", fd, out);
[5ebff60]61        }
62
63        len = strlen(out);
64        st = write(fd, out, len);
65        g_free(out);
66        if (st != len) {
67                imcb_error(ic, "Short write() to main server");
68                imc_logout(ic, TRUE);
[64768d4]69                return 0;
70        }
[5ebff60]71
[64768d4]72        return 1;
73}
74
[5ebff60]75gboolean msn_ns_connect(struct im_connection *ic, struct msn_handler_data *handler, const char *host, int port)
[b7d3cc34]76{
[5ebff60]77        if (handler->fd >= 0) {
78                closesocket(handler->fd);
79        }
80
[bae0617]81        handler->exec_command = msn_ns_command;
82        handler->exec_message = msn_ns_message;
83        handler->data = ic;
[5ebff60]84        handler->fd = proxy_connect(host, port, msn_ns_connected, handler);
85        if (handler->fd < 0) {
86                imcb_error(ic, "Could not connect to server");
87                imc_logout(ic, TRUE);
[ba9edaa]88                return FALSE;
[b7d3cc34]89        }
[5ebff60]90
[bae0617]91        return TRUE;
92}
93
[5ebff60]94static gboolean msn_ns_connected(gpointer data, gint source, b_input_condition cond)
[bae0617]95{
96        struct msn_handler_data *handler = data;
97        struct im_connection *ic = handler->data;
98        struct msn_data *md;
[5ebff60]99
100        if (!g_slist_find(msn_connections, ic)) {
[bae0617]101                return FALSE;
[5ebff60]102        }
103
[0da65d5]104        md = ic->proto_data;
[5ebff60]105
106        if (source == -1) {
107                imcb_error(ic, "Could not connect to server");
108                imc_logout(ic, TRUE);
[bae0617]109                return FALSE;
[b7d3cc34]110        }
[5ebff60]111
112        g_free(handler->rxq);
[bae0617]113        handler->rxlen = 0;
[5ebff60]114        handler->rxq = g_new0(char, 1);
115
116        if (md->uuid == NULL) {
[f9258ae]117                struct utsname name;
118                sha1_state_t sha[1];
[5ebff60]119
[f9258ae]120                /* UUID == SHA1("BitlBee" + my hostname + MSN username) */
[5ebff60]121                sha1_init(sha);
122                sha1_append(sha, (void *) "BitlBee", 7);
123                if (uname(&name) == 0) {
124                        sha1_append(sha, (void *) name.nodename, strlen(name.nodename));
[f9258ae]125                }
[5ebff60]126                sha1_append(sha, (void *) ic->acc->user, strlen(ic->acc->user));
127                md->uuid = sha1_random_uuid(sha);
128                memcpy(md->uuid, "b171be3e", 8);   /* :-P */
[f9258ae]129        }
[5ebff60]130
131        if (msn_ns_write(ic, source, "VER %d %s CVR0\r\n", ++md->trId, MSNP_VER)) {
132                handler->inpa = b_input_add(handler->fd, B_EV_IO_READ, msn_ns_callback, handler);
133                imcb_log(ic, "Connected to server, waiting for reply");
[b7d3cc34]134        }
[5ebff60]135
[ba9edaa]136        return FALSE;
[b7d3cc34]137}
138
[5ebff60]139void msn_ns_close(struct msn_handler_data *handler)
[bae0617]140{
[5ebff60]141        if (handler->fd >= 0) {
142                closesocket(handler->fd);
143                b_event_remove(handler->inpa);
[bae0617]144        }
[5ebff60]145
[bae0617]146        handler->fd = handler->inpa = -1;
[5ebff60]147        g_free(handler->rxq);
148        g_free(handler->cmd_text);
149
[bae0617]150        handler->rxlen = 0;
151        handler->rxq = NULL;
152        handler->cmd_text = NULL;
153}
154
[5ebff60]155static gboolean msn_ns_callback(gpointer data, gint source, b_input_condition cond)
[b7d3cc34]156{
[bae0617]157        struct msn_handler_data *handler = data;
158        struct im_connection *ic = handler->data;
[5ebff60]159
160        if (msn_handler(handler) == -1) {  /* Don't do this on ret == 0, it's already done then. */
161                imcb_error(ic, "Error while reading from server");
162                imc_logout(ic, TRUE);
163
[ba9edaa]164                return FALSE;
[5ebff60]165        } else {
[ba9edaa]166                return TRUE;
[5ebff60]167        }
[b7d3cc34]168}
169
[5ebff60]170static int msn_ns_command(struct msn_handler_data *handler, char **cmd, int num_parts)
[b7d3cc34]171{
[bae0617]172        struct im_connection *ic = handler->data;
[0da65d5]173        struct msn_data *md = ic->proto_data;
[5ebff60]174
175        if (num_parts == 0) {
[b7d3cc34]176                /* Hrrm... Empty command...? Ignore? */
[5ebff60]177                return(1);
[b7d3cc34]178        }
[5ebff60]179
180        if (strcmp(cmd[0], "VER") == 0) {
181                if (cmd[2] && strncmp(cmd[2], MSNP_VER, 5) != 0) {
182                        imcb_error(ic, "Unsupported protocol");
183                        imc_logout(ic, FALSE);
184                        return(0);
[b7d3cc34]185                }
[5ebff60]186
[3752019]187                return(msn_ns_write(ic, handler->fd, "CVR %d 0x0409 mac 10.2.0 ppc macmsgs 3.5.1 macmsgs %s VmVyc2lvbjogMQ0KWGZyQ291bnQ6IDINClhmclNlbnRVVENUaW1lOiA2MzU2MTQ3OTU5NzgzOTAwMDANCklzR2VvWGZyOiB0cnVlDQo=\r\n",
[5ebff60]188                                    ++md->trId, ic->acc->user));
189        } else if (strcmp(cmd[0], "CVR") == 0) {
[b7d3cc34]190                /* We don't give a damn about the information we just received */
[5ebff60]191                return msn_ns_write(ic, handler->fd, "USR %d SSO I %s\r\n", ++md->trId, ic->acc->user);
192        } else if (strcmp(cmd[0], "XFR") == 0) {
[b7d3cc34]193                char *server;
194                int port;
[5ebff60]195
196                if (num_parts >= 6 && strcmp(cmd[2], "NS") == 0) {
197                        b_event_remove(handler->inpa);
[bae0617]198                        handler->inpa = -1;
[5ebff60]199
200                        server = strchr(cmd[3], ':');
201                        if (!server) {
202                                imcb_error(ic, "Syntax error");
203                                imc_logout(ic, TRUE);
204                                return(0);
[b7d3cc34]205                        }
206                        *server = 0;
[5ebff60]207                        port = atoi(server + 1);
[b7d3cc34]208                        server = cmd[3];
[5ebff60]209
210                        imcb_log(ic, "Transferring to other server");
211                        return msn_ns_connect(ic, handler, server, port);
212                } else if (num_parts >= 6 && strcmp(cmd[2], "SB") == 0) {
[b7d3cc34]213                        struct msn_switchboard *sb;
[5ebff60]214
215                        server = strchr(cmd[3], ':');
216                        if (!server) {
217                                imcb_error(ic, "Syntax error");
218                                imc_logout(ic, TRUE);
219                                return(0);
[b7d3cc34]220                        }
221                        *server = 0;
[5ebff60]222                        port = atoi(server + 1);
[b7d3cc34]223                        server = cmd[3];
[5ebff60]224
225                        if (strcmp(cmd[4], "CKI") != 0) {
226                                imcb_error(ic, "Unknown authentication method for switchboard");
227                                imc_logout(ic, TRUE);
228                                return(0);
[b7d3cc34]229                        }
[99f929c]230
[5ebff60]231                        debug("Connecting to a new switchboard with key %s", cmd[5]);
232
233                        if ((sb = msn_sb_create(ic, server, port, cmd[5], MSN_SB_NEW)) == NULL) {
[99f929c]234                                /* Although this isn't strictly fatal for the NS connection, it's
235                                   definitely something serious (we ran out of file descriptors?). */
[5ebff60]236                                imcb_error(ic, "Could not create new switchboard");
237                                imc_logout(ic, TRUE);
238                                return(0);
[99f929c]239                        }
[5ebff60]240
241                        if (md->msgq) {
[b7d3cc34]242                                struct msn_message *m = md->msgq->data;
243                                GSList *l;
[5ebff60]244
245                                sb->who = g_strdup(m->who);
246
[b7d3cc34]247                                /* Move all the messages to the first user in the message
248                                   queue to the switchboard message queue. */
249                                l = md->msgq;
[5ebff60]250                                while (l) {
[b7d3cc34]251                                        m = l->data;
252                                        l = l->next;
[5ebff60]253                                        if (strcmp(m->who, sb->who) == 0) {
254                                                sb->msgq = g_slist_append(sb->msgq, m);
255                                                md->msgq = g_slist_remove(md->msgq, m);
[b7d3cc34]256                                        }
257                                }
258                        }
[5ebff60]259                } else {
260                        imcb_error(ic, "Syntax error");
261                        imc_logout(ic, TRUE);
262                        return(0);
263                }
264        } else if (strcmp(cmd[0], "USR") == 0) {
265                if (num_parts >= 6 && strcmp(cmd[2], "SSO") == 0 &&
266                    strcmp(cmd[3], "S") == 0) {
267                        g_free(md->pp_policy);
268                        md->pp_policy = g_strdup(cmd[4]);
269                        msn_soap_passport_sso_request(ic, cmd[5]);
270                } else if (strcmp(cmd[2], "OK") == 0) {
[ed0589c]271                        /* If the number after the handle is 0, the e-mail
272                           address is unverified, which means we can't change
273                           the display name. */
[5ebff60]274                        if (cmd[4][0] == '0') {
[ed0589c]275                                md->flags |= MSN_EMAIL_UNVERIFIED;
[5ebff60]276                        }
277
278                        imcb_log(ic, "Authenticated, getting buddy list");
279                        msn_soap_memlist_request(ic);
280                } else {
281                        imcb_error(ic, "Unknown authentication type");
282                        imc_logout(ic, FALSE);
283                        return(0);
284                }
285        } else if (strcmp(cmd[0], "MSG") == 0) {
286                if (num_parts < 4) {
287                        imcb_error(ic, "Syntax error");
288                        imc_logout(ic, TRUE);
289                        return(0);
[e5854a8]290                }
[5ebff60]291
292                handler->msglen = atoi(cmd[3]);
293
294                if (handler->msglen <= 0) {
295                        imcb_error(ic, "Syntax error");
296                        imc_logout(ic, TRUE);
297                        return(0);
298                }
299        } else if (strcmp(cmd[0], "ADL") == 0) {
300                if (num_parts >= 3 && strcmp(cmd[2], "OK") == 0) {
301                        msn_ns_send_adl(ic);
302                        return msn_ns_finish_login(ic);
303                } else if (num_parts >= 3) {
304                        handler->msglen = atoi(cmd[2]);
305                }
306        } else if (strcmp(cmd[0], "PRP") == 0) {
307                imcb_connected(ic);
308        } else if (strcmp(cmd[0], "CHL") == 0) {
[be7a180]309                char *resp;
[64768d4]310                int st;
[5ebff60]311
312                if (num_parts < 3) {
313                        imcb_error(ic, "Syntax error");
314                        imc_logout(ic, TRUE);
315                        return(0);
[b7d3cc34]316                }
[5ebff60]317
318                resp = msn_p11_challenge(cmd[2]);
319
320                st =  msn_ns_write(ic, -1, "QRY %d %s %zd\r\n%s",
321                                   ++md->trId, MSNP11_PROD_ID,
322                                   strlen(resp), resp);
323                g_free(resp);
[64768d4]324                return st;
[5ebff60]325        } else if (strcmp(cmd[0], "ILN") == 0 || strcmp(cmd[0], "NLN") == 0) {
[08995b0]326                const struct msn_away_state *st;
[79bb7e4]327                const char *handle;
328                int cap = 0;
[5ebff60]329
330                if (num_parts < 6) {
331                        imcb_error(ic, "Syntax error");
332                        imc_logout(ic, TRUE);
333                        return(0);
[b7d3cc34]334                }
[79bb7e4]335                /* ILN and NLN are more or less the same, except ILN has a trId
[5ebff60]336                   at the start, and NLN has a capability field at the end.
[79bb7e4]337                   Does ILN still exist BTW? */
[5ebff60]338                if (cmd[0][1] == 'I') {
339                        cmd++;
340                } else {
341                        cap = atoi(cmd[4]);
342                }
[79bb7e4]343
[5ebff60]344                handle = msn_normalize_handle(cmd[2]);
345                if (strcmp(handle, ic->acc->user) == 0) {
[79bb7e4]346                        return 1; /* That's me! */
[5ebff60]347
348                }
349                http_decode(cmd[3]);
350                imcb_rename_buddy(ic, handle, cmd[3]);
351
352                st = msn_away_state_by_code(cmd[1]);
353                if (!st) {
[b7d3cc34]354                        /* FIXME: Warn/Bomb about unknown away state? */
[b051d39]355                        st = msn_away_state_list + 1;
[b7d3cc34]356                }
[5ebff60]357
358                imcb_buddy_status(ic, handle, OPT_LOGGED_IN |
359                                  (st != msn_away_state_list ? OPT_AWAY : 0) |
360                                  (cap & 1 ? OPT_MOBILE : 0),
361                                  st->name, NULL);
362
363                msn_sb_stop_keepalives(msn_sb_by_handle(ic, handle));
364        } else if (strcmp(cmd[0], "FLN") == 0) {
[79bb7e4]365                const char *handle;
[5ebff60]366
367                if (cmd[1] == NULL) {
[9bf2481]368                        return 1;
[5ebff60]369                }
370
371                handle = msn_normalize_handle(cmd[1]);
372                imcb_buddy_status(ic, handle, 0, NULL, NULL);
373                msn_sb_start_keepalives(msn_sb_by_handle(ic, handle), TRUE);
374        } else if (strcmp(cmd[0], "RNG") == 0) {
[b7d3cc34]375                struct msn_switchboard *sb;
376                char *server;
377                int session, port;
[5ebff60]378
379                if (num_parts < 7) {
380                        imcb_error(ic, "Syntax error");
381                        imc_logout(ic, TRUE);
382                        return(0);
[b7d3cc34]383                }
[5ebff60]384
385                session = atoi(cmd[1]);
386
387                server = strchr(cmd[2], ':');
388                if (!server) {
389                        imcb_error(ic, "Syntax error");
390                        imc_logout(ic, TRUE);
391                        return(0);
[b7d3cc34]392                }
393                *server = 0;
[5ebff60]394                port = atoi(server + 1);
[b7d3cc34]395                server = cmd[2];
[5ebff60]396
397                if (strcmp(cmd[3], "CKI") != 0) {
398                        imcb_error(ic, "Unknown authentication method for switchboard");
399                        imc_logout(ic, TRUE);
400                        return(0);
[b7d3cc34]401                }
[5ebff60]402
403                debug("Got a call from %s (session %d). Key = %s", cmd[5], session, cmd[4]);
404
405                if ((sb = msn_sb_create(ic, server, port, cmd[4], session)) == NULL) {
[99f929c]406                        /* Although this isn't strictly fatal for the NS connection, it's
407                           definitely something serious (we ran out of file descriptors?). */
[5ebff60]408                        imcb_error(ic, "Could not create new switchboard");
409                        imc_logout(ic, TRUE);
410                        return(0);
411                } else {
412                        sb->who = g_strdup(msn_normalize_handle(cmd[5]));
[99f929c]413                }
[5ebff60]414        } else if (strcmp(cmd[0], "OUT") == 0) {
[c2fb3809]415                int allow_reconnect = TRUE;
[5ebff60]416
417                if (cmd[1] && strcmp(cmd[1], "OTH") == 0) {
418                        imcb_error(ic, "Someone else logged in with your account");
[c2fb3809]419                        allow_reconnect = FALSE;
[5ebff60]420                } else if (cmd[1] && strcmp(cmd[1], "SSD") == 0) {
421                        imcb_error(ic, "Terminating session because of server shutdown");
422                } else {
423                        imcb_error(ic, "Session terminated by remote server (%s)",
424                                   cmd[1] ? cmd[1] : "reason unknown)");
[b7d3cc34]425                }
[5ebff60]426
427                imc_logout(ic, allow_reconnect);
428                return(0);
429        } else if (strcmp(cmd[0], "IPG") == 0) {
430                imcb_error(ic, "Received IPG command, we don't handle them yet.");
431
432                handler->msglen = atoi(cmd[1]);
433
434                if (handler->msglen <= 0) {
435                        imcb_error(ic, "Syntax error");
436                        imc_logout(ic, TRUE);
437                        return(0);
[b7d3cc34]438                }
439        }
[e5854a8]440#if 0
[5ebff60]441        else if (strcmp(cmd[0], "ADG") == 0) {
442                char *group = g_strdup(cmd[3]);
[70ac477]443                int groupnum, i;
444                GSList *l, *next;
[5ebff60]445
446                http_decode(group);
447                if (sscanf(cmd[4], "%d", &groupnum) == 1) {
448                        if (groupnum >= md->groupcount) {
449                                md->grouplist = g_renew(char *, md->grouplist, groupnum + 1);
450                                for (i = md->groupcount; i <= groupnum; i++) {
[70ac477]451                                        md->grouplist[i] = NULL;
[5ebff60]452                                }
[70ac477]453                                md->groupcount = groupnum + 1;
454                        }
[5ebff60]455                        g_free(md->grouplist[groupnum]);
[70ac477]456                        md->grouplist[groupnum] = group;
[5ebff60]457                } else {
[70ac477]458                        /* Shouldn't happen, but if it does, give up on the group. */
[5ebff60]459                        g_free(group);
460                        imcb_error(ic, "Syntax error");
461                        imc_logout(ic, TRUE);
[70ac477]462                        return 0;
463                }
[5ebff60]464
465                for (l = md->grpq; l; l = next) {
[70ac477]466                        struct msn_groupadd *ga = l->data;
467                        next = l->next;
[5ebff60]468                        if (g_strcasecmp(ga->group, group) == 0) {
469                                if (!msn_buddy_list_add(ic, "FL", ga->who, ga->who, group)) {
[70ac477]470                                        return 0;
[5ebff60]471                                }
472
473                                g_free(ga->group);
474                                g_free(ga->who);
475                                g_free(ga);
476                                md->grpq = g_slist_remove(md->grpq, ga);
[70ac477]477                        }
478                }
479        }
[e5854a8]480#endif
[5ebff60]481        else if (strcmp(cmd[0], "GCF") == 0) {
[5fecede]482                /* Coming up is cmd[2] bytes of stuff we're supposed to
483                   censore. Meh. */
[5ebff60]484                handler->msglen = atoi(cmd[2]);
485        } else if (strcmp(cmd[0], "UBX") == 0) {
[e5854a8]486                /* Status message. */
[5ebff60]487                if (num_parts >= 3) {
488                        handler->msglen = atoi(cmd[2]);
489                }
490        } else if (strcmp(cmd[0], "NOT") == 0) {
[e5854a8]491                /* Some kind of notification, poorly documented but
492                   apparently used to announce address book changes. */
[5ebff60]493                if (num_parts >= 2) {
494                        handler->msglen = atoi(cmd[1]);
495                }
[3752019]496        } else if (strcmp(cmd[0], "NFY") == 0) {
497                if (num_parts >= 3) {
498                        handler->msglen = atoi(cmd[2]);
499                }
[5ebff60]500        } else if (strcmp(cmd[0], "UBM") == 0) {
501                if (num_parts >= 7) {
502                        handler->msglen = atoi(cmd[6]);
503                }
504        } else if (strcmp(cmd[0], "QNG") == 0) {
[e132b60]505                ic->flags |= OPT_PONGED;
[5ebff60]506        } else if (g_ascii_isdigit(cmd[0][0])) {
507                int num = atoi(cmd[0]);
508                const struct msn_status_code *err = msn_status_by_number(num);
509
510                imcb_error(ic, "Error reported by MSN server: %s", err->text);
511
512                if (err->flags & STATUS_FATAL) {
513                        imc_logout(ic, TRUE);
514                        return(0);
[b7d3cc34]515                }
[5ebff60]516
[02bb9db]517                /* Oh yes, errors can have payloads too now. Discard them for now. */
[5ebff60]518                if (num_parts >= 3) {
519                        handler->msglen = atoi(cmd[2]);
520                }
521        } else {
[8ff0a61]522                /* debug( "Received unknown command from main server: %s", cmd[0] ); */
[b7d3cc34]523        }
[5ebff60]524
525        return(1);
[b7d3cc34]526}
527
[5ebff60]528static int msn_ns_message(struct msn_handler_data *handler, char *msg, int msglen, char **cmd, int num_parts)
[b7d3cc34]529{
[bae0617]530        struct im_connection *ic = handler->data;
[b7d3cc34]531        char *body;
532        int blen = 0;
[5ebff60]533
534        if (!num_parts) {
535                return(1);
536        }
537
538        if ((body = strstr(msg, "\r\n\r\n"))) {
[b7d3cc34]539                body += 4;
[5ebff60]540                blen = msglen - (body - msg);
[b7d3cc34]541        }
[5ebff60]542
543        if (strcmp(cmd[0], "MSG") == 0) {
544                if (g_strcasecmp(cmd[1], "Hotmail") == 0) {
545                        char *ct = get_rfc822_header(msg, "Content-Type:", msglen);
546
547                        if (!ct) {
548                                return(1);
549                        }
550
551                        if (g_strncasecmp(ct, "application/x-msmsgssystemmessage", 33) == 0) {
[b7d3cc34]552                                char *mtype;
553                                char *arg1;
[5ebff60]554
555                                if (!body) {
556                                        return(1);
[b7d3cc34]557                                }
[5ebff60]558
559                                mtype = get_rfc822_header(body, "Type:", blen);
560                                arg1 = get_rfc822_header(body, "Arg1:", blen);
561
562                                if (mtype && strcmp(mtype, "1") == 0) {
563                                        if (arg1) {
564                                                imcb_log(ic, "The server is going down for maintenance in %s minutes.",
565                                                         arg1);
566                                        }
567                                }
568
569                                g_free(arg1);
570                                g_free(mtype);
571                        } else if (g_strncasecmp(ct, "text/x-msmsgsprofile", 20) == 0) {
[b7d3cc34]572                                /* We don't care about this profile for now... */
[5ebff60]573                        } else if (g_strncasecmp(ct, "text/x-msmsgsinitialemailnotification", 37) == 0) {
574                                if (set_getbool(&ic->acc->set, "mail_notifications")) {
575                                        char *inbox = get_rfc822_header(body, "Inbox-Unread:", blen);
576                                        char *folders = get_rfc822_header(body, "Folders-Unread:", blen);
577
578                                        if (inbox && folders) {
579                                                imcb_log(ic,
580                                                         "INBOX contains %s new messages, plus %s messages in other folders.", inbox,
581                                                         folders);
582                                        }
583
584                                        g_free(inbox);
585                                        g_free(folders);
[b7d3cc34]586                                }
[5ebff60]587                        } else if (g_strncasecmp(ct, "text/x-msmsgsemailnotification", 30) == 0) {
588                                if (set_getbool(&ic->acc->set, "mail_notifications")) {
589                                        char *from = get_rfc822_header(body, "From-Addr:", blen);
590                                        char *fromname = get_rfc822_header(body, "From:", blen);
591
592                                        if (from && fromname) {
593                                                imcb_log(ic, "Received an e-mail message from %s <%s>.", fromname,
594                                                         from);
595                                        }
596
597                                        g_free(from);
598                                        g_free(fromname);
[b7d3cc34]599                                }
[5ebff60]600                        } else if (g_strncasecmp(ct, "text/x-msmsgsactivemailnotification", 35) == 0) {
601                        } else if (g_strncasecmp(ct, "text/x-msmsgsinitialmdatanotification", 37) == 0 ||
602                                   g_strncasecmp(ct, "text/x-msmsgsoimnotification", 28) == 0) {
[a325ebd]603                                /* We received an offline message. Or at least notification
604                                   that there is one waiting for us. Fetching the message(s)
605                                   and purging them from the server is a lot of SOAPy work
606                                   not worth doing IMHO. Also I thought it was possible to
607                                   have the notification server send them directly, I was
608                                   pretty sure I saw Pidgin do it..
[5ebff60]609
[a325ebd]610                                   At least give a notification for now, seems like a
611                                   reasonable thing to do. Only problem is, they'll keep
612                                   coming back at login time until you read them using a
613                                   different client. :-( */
[5ebff60]614
615                                char *xml = get_rfc822_header(body, "Mail-Data:", blen);
[a325ebd]616                                struct xt_node *md, *m;
[5ebff60]617
618                                if (!xml) {
[a325ebd]619                                        return 1;
[5ebff60]620                                }
621                                md = xt_from_string(xml, 0);
622                                if (!md) {
[a325ebd]623                                        return 1;
[5ebff60]624                                }
625
626                                for (m = md->children; (m = xt_find_node(m, "M")); m = m->next) {
627                                        struct xt_node *e = xt_find_node(m->children, "E");
628                                        struct xt_node *rt = xt_find_node(m->children, "RT");
[a325ebd]629                                        struct tm tp;
630                                        time_t msgtime = 0;
[5ebff60]631
632                                        if (!e || !e->text) {
[a325ebd]633                                                continue;
[5ebff60]634                                        }
635
636                                        memset(&tp, 0, sizeof(tp));
637                                        if (rt && rt->text &&
638                                            sscanf(rt->text, "%4d-%2d-%2dT%2d:%2d:%2d.",
639                                                   &tp.tm_year, &tp.tm_mon, &tp.tm_mday,
640                                                   &tp.tm_hour, &tp.tm_min, &tp.tm_sec) == 6) {
[a325ebd]641                                                tp.tm_year -= 1900;
[5ebff60]642                                                tp.tm_mon--;
643                                                msgtime = mktime_utc(&tp);
644
[a325ebd]645                                        }
[5ebff60]646                                        imcb_buddy_msg(ic, e->text,
647                                                       "<< \002BitlBee\002 - Received offline message. BitlBee can't show these. >>", 0,
648                                                       msgtime);
[a325ebd]649                                }
[5ebff60]650
651                                g_free(xml);
652                                xt_free_node(md);
653                        } else {
654                                debug("Can't handle %s packet from notification server", ct);
[b7d3cc34]655                        }
[5ebff60]656
657                        g_free(ct);
[b7d3cc34]658                }
[5ebff60]659        } else if (strcmp(cmd[0], "UBX") == 0) {
[9066974]660                struct xt_node *ubx, *psm;
[d93c0eb9]661                char *psm_text = NULL;
[5ebff60]662
663                ubx = xt_from_string(msg, msglen);
664                if (ubx && strcmp(ubx->name, "Data") == 0 &&
665                    (psm = xt_find_node(ubx->children, "PSM"))) {
[d93c0eb9]666                        psm_text = psm->text;
[5ebff60]667                }
668
669                imcb_buddy_status_msg(ic, msn_normalize_handle(cmd[1]), psm_text);
670                xt_free_node(ubx);
671        } else if (strcmp(cmd[0], "ADL") == 0) {
[e5854a8]672                struct xt_node *adl, *d, *c;
[5ebff60]673
674                if (!(adl = xt_from_string(msg, msglen))) {
[e5854a8]675                        return 1;
[5ebff60]676                }
677
678                for (d = adl->children; d; d = d->next) {
[e5854a8]679                        char *dn;
[5ebff60]680                        if (strcmp(d->name, "d") != 0 ||
681                            (dn = xt_find_attr(d, "n")) == NULL) {
[e5854a8]682                                continue;
[5ebff60]683                        }
684                        for (c = d->children; c; c = c->next) {
[e5854a8]685                                bee_user_t *bu;
686                                struct msn_buddy_data *bd;
687                                char *cn, *handle, *f, *l;
688                                int flags;
[5ebff60]689
690                                if (strcmp(c->name, "c") != 0 ||
691                                    (l = xt_find_attr(c, "l")) == NULL ||
692                                    (cn = xt_find_attr(c, "n")) == NULL) {
[e5854a8]693                                        continue;
[5ebff60]694                                }
695
[3901b5d]696                                /* FIXME: Use "t" here, guess I should just add it
697                                   as a prefix like elsewhere in the protocol. */
[5ebff60]698                                handle = g_strdup_printf("%s@%s", cn, dn);
699                                if (!((bu = bee_user_by_handle(ic->bee, ic, handle)) ||
700                                      (bu = bee_user_new(ic->bee, ic, handle, 0)))) {
701                                        g_free(handle);
[e5854a8]702                                        continue;
703                                }
[5ebff60]704                                g_free(handle);
[e5854a8]705                                bd = bu->data;
[5ebff60]706
707                                if ((f = xt_find_attr(c, "f"))) {
708                                        http_decode(f);
709                                        imcb_rename_buddy(ic, bu->handle, f);
[e5854a8]710                                }
[5ebff60]711
712                                flags = atoi(l) & 15;
713                                if (bd->flags != flags) {
[e5854a8]714                                        bd->flags = flags;
[5ebff60]715                                        msn_buddy_ask(bu);
[e5854a8]716                                }
717                        }
718                }
[5ebff60]719        } else if (strcmp(cmd[0], "UBM") == 0) {
[4c9d377]720                /* This one will give us msgs from federated networks. Technically
721                   it should also get us offline messages, but I don't know how
722                   I can signal MSN servers to use it. */
723                char *ct, *handle;
[5ebff60]724
725                if (strcmp(cmd[1], ic->acc->user) == 0) {
[4c9d377]726                        /* With MPOP, you'll get copies of your own msgs from other
727                           sessions. Discard those at least for now. */
728                        return 1;
729                }
[5ebff60]730
731                ct = get_rfc822_header(msg, "Content-Type", msglen);
732                if (strncmp(ct, "text/plain", 10) != 0) {
[4c9d377]733                        /* Typing notification or something? */
[5ebff60]734                        g_free(ct);
[3901b5d]735                        return 1;
736                }
[5ebff60]737                if (strcmp(cmd[2], "1") != 0) {
738                        handle = g_strdup_printf("%s:%s", cmd[2], cmd[1]);
739                } else {
740                        handle = g_strdup(cmd[1]);
741                }
742
743                imcb_buddy_msg(ic, handle, body, 0, 0);
744                g_free(handle);
[3901b5d]745        }
[5ebff60]746
[3901b5d]747        return 1;
[b7d3cc34]748}
749
[5ebff60]750void msn_auth_got_passport_token(struct im_connection *ic, const char *token, const char *error)
[b7d3cc34]751{
[d84e2a9]752        struct msn_data *md;
[5ebff60]753
[d84e2a9]754        /* Dead connection? */
[5ebff60]755        if (g_slist_find(msn_connections, ic) == NULL) {
[d84e2a9]756                return;
[b7d3cc34]757        }
[5ebff60]758
759        md = ic->proto_data;
760
761        if (token) {
762                msn_ns_write(ic, -1, "USR %d SSO S %s %s {%s}\r\n", ++md->trId, md->tokens[0], token, md->uuid);
763        } else {
764                imcb_error(ic, "Error during Passport authentication: %s", error);
765                imc_logout(ic, TRUE);
[660cb00]766        }
[b7d3cc34]767}
[e3413cc]768
[5ebff60]769void msn_auth_got_contact_list(struct im_connection *ic)
[ca7de3a]770{
771        /* Dead connection? */
[5ebff60]772        if (g_slist_find(msn_connections, ic) == NULL) {
[ca7de3a]773                return;
[5ebff60]774        }
775
[3752019]776        msn_ns_send_adl_start(ic);
777        msn_ns_finish_login(ic);
[ca7de3a]778}
779
[5ebff60]780static gboolean msn_ns_send_adl_1(gpointer key, gpointer value, gpointer data)
[ca7de3a]781{
[3752019]782        struct xt_node *adl = data, *d, *c, *s;
[ca7de3a]783        struct bee_user *bu = value;
784        struct msn_buddy_data *bd = bu->data;
[5a7af1b]785        struct msn_data *md = bu->ic->proto_data;
[4f161e3]786        char handle[strlen(bu->handle) + 1];
[ca7de3a]787        char *domain;
788        char l[4];
[5ebff60]789
790        if ((bd->flags & 7) == 0 || (bd->flags & MSN_BUDDY_ADL_SYNCED)) {
791                return FALSE;
792        }
793
794        strcpy(handle, bu->handle);
795        if ((domain = strchr(handle, '@')) == NULL) {    /* WTF */
[e5854a8]796                return FALSE;
[5ebff60]797        }
[ca7de3a]798        *domain = '\0';
[5ebff60]799        domain++;
800
801        if ((d = adl->children) == NULL ||
802            g_strcasecmp(xt_find_attr(d, "n"), domain) != 0) {
803                d = xt_new_node("d", NULL, NULL);
804                xt_add_attr(d, "n", domain);
805                xt_insert_child(adl, d);
[ca7de3a]806        }
[5ebff60]807
808        g_snprintf(l, sizeof(l), "%d", bd->flags & 7);
809        c = xt_new_node("c", NULL, NULL);
810        xt_add_attr(c, "n", handle);
811        xt_add_attr(c, "t", "1");   /* FIXME: Network type, i.e. 32 for Y!MSG */
[3752019]812        s = xt_new_node("s", NULL, NULL);
813        xt_add_attr(s, "n", "IM");
814        xt_add_attr(s, "l", l);
815        xt_insert_child(c, s);
[5ebff60]816        xt_insert_child(d, c);
817
[5a7af1b]818        /* Do this in batches of 100. */
819        bd->flags |= MSN_BUDDY_ADL_SYNCED;
820        return (--md->adl_todo % 140) == 0;
[ca7de3a]821}
822
[5ebff60]823static void msn_ns_send_adl(struct im_connection *ic)
[ca7de3a]824{
825        struct xt_node *adl;
[5a7af1b]826        struct msn_data *md = ic->proto_data;
[64768d4]827        char *adls;
[5ebff60]828
829        adl = xt_new_node("ml", NULL, NULL);
830        xt_add_attr(adl, "l", "1");
831        g_tree_foreach(md->domaintree, msn_ns_send_adl_1, adl);
832        if (adl->children == NULL) {
[5a7af1b]833                /* This tells the caller that we're done now. */
834                md->adl_todo = -1;
[5ebff60]835                xt_free_node(adl);
[5a7af1b]836                return;
837        }
[5ebff60]838
839        adls = xt_to_string(adl);
840        xt_free_node(adl);
841        msn_ns_write(ic, -1, "ADL %d %zd\r\n%s", ++md->trId, strlen(adls), adls);
842        g_free(adls);
[5a7af1b]843}
844
[5ebff60]845static void msn_ns_send_adl_start(struct im_connection *ic)
[5a7af1b]846{
847        struct msn_data *md;
848        GSList *l;
[5ebff60]849
[5a7af1b]850        /* Dead connection? */
[5ebff60]851        if (g_slist_find(msn_connections, ic) == NULL) {
[5a7af1b]852                return;
[5ebff60]853        }
854
[5a7af1b]855        md = ic->proto_data;
856        md->adl_todo = 0;
[5ebff60]857        for (l = ic->bee->users; l; l = l->next) {
[5a7af1b]858                bee_user_t *bu = l->data;
859                struct msn_buddy_data *bd = bu->data;
[5ebff60]860
861                if (bu->ic != ic || (bd->flags & 7) == 0) {
[5a7af1b]862                        continue;
[5ebff60]863                }
864
[5a7af1b]865                bd->flags &= ~MSN_BUDDY_ADL_SYNCED;
866                md->adl_todo++;
867        }
[5ebff60]868
869        msn_ns_send_adl(ic);
[ca7de3a]870}
[80175a1]871
[5ebff60]872int msn_ns_finish_login(struct im_connection *ic)
[80175a1]873{
874        struct msn_data *md = ic->proto_data;
[5ebff60]875
876        if (ic->flags & OPT_LOGGED_IN) {
[80175a1]877                return 1;
[5ebff60]878        }
879
880        if (md->adl_todo < 0) {
[80175a1]881                md->flags |= MSN_DONE_ADL;
[ed0589c]882        }
[5ebff60]883
884        if ((md->flags & MSN_DONE_ADL) && (md->flags & MSN_GOT_PROFILE)) {
885                if (md->flags & MSN_EMAIL_UNVERIFIED) {
886                        imcb_connected(ic);
887                } else {
888                        return msn_ns_set_display_name(ic, set_getstr(&ic->acc->set, "display_name"));
889                }
890        }
891
[ed0589c]892        return 1;
[80175a1]893}
[bc676ac]894
[5ebff60]895int msn_ns_sendmessage(struct im_connection *ic, bee_user_t *bu, const char *text)
[bc676ac]896{
897        struct msn_data *md = ic->proto_data;
[208db4b]898        int type = 0;
899        char *buf, *handle;
[5ebff60]900
901        if (strncmp(text, "\r\r\r", 3) == 0) {
[bc676ac]902                /* Err. Shouldn't happen but I guess it can. Don't send others
903                   any of the "SHAKE THAT THING" messages. :-D */
904                return 1;
[5ebff60]905        }
906
[208db4b]907        /* This might be a federated contact. Get its network number,
908           prefixed to bu->handle with a colon. Default is 1. */
[5ebff60]909        for (handle = bu->handle; g_ascii_isdigit(*handle); handle++) {
[208db4b]910                type = type * 10 + *handle - '0';
[5ebff60]911        }
912        if (*handle == ':') {
913                handle++;
914        } else {
[208db4b]915                type = 1;
[5ebff60]916        }
917
918        buf = g_strdup_printf("%s%s", MSN_MESSAGE_HEADERS, text);
919
920        if (msn_ns_write(ic, -1, "UUM %d %s %d %d %zd\r\n%s",
921                         ++md->trId, handle, type,
922                         1,          /* type == IM (not nudge/typing) */
923                         strlen(buf), buf)) {
[bc676ac]924                return 1;
[5ebff60]925        } else {
[bc676ac]926                return 0;
[5ebff60]927        }
[bc676ac]928}
929
[5ebff60]930void msn_ns_oim_send_queue(struct im_connection *ic, GSList **msgq)
[bc676ac]931{
932        GSList *l;
[5ebff60]933
934        for (l = *msgq; l; l = l->next) {
[bc676ac]935                struct msn_message *m = l->data;
[5ebff60]936                bee_user_t *bu = bee_user_by_handle(ic->bee, ic, m->who);
937
938                if (bu) {
939                        if (!msn_ns_sendmessage(ic, bu, m->text)) {
[bc676ac]940                                return;
[5ebff60]941                        }
942                }
[bc676ac]943        }
[5ebff60]944
945        while (*msgq != NULL) {
[bc676ac]946                struct msn_message *m = (*msgq)->data;
[5ebff60]947
[05816dd]948                *msgq = g_slist_remove(*msgq, m);
[5ebff60]949                g_free(m->who);
950                g_free(m->text);
951                g_free(m);
[bc676ac]952        }
953}
Note: See TracBrowser for help on using the repository browser.