Citadel API clean up.
[citadel.git] / citadel / modules / jabber / serv_xmpp.c
1 /*
2  * $Id$ 
3  *
4  * XMPP (Jabber) service for the Citadel system
5  * Copyright (c) 2007-2009 by Art Cancro
6  *
7  *  This program is free software; you can redistribute it and/or modify
8  *  it under the terms of the GNU General Public License as published by
9  *  the Free Software Foundation; either version 3 of the License, or
10  *  (at your option) any later version.
11  *
12  *  This program is distributed in the hope that it will be useful,
13  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  *  GNU General Public License for more details.
16  *
17  *  You should have received a copy of the GNU General Public License
18  *  along with this program; if not, write to the Free Software
19  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include "sysdep.h"
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include <stdio.h>
26 #include <fcntl.h>
27 #include <signal.h>
28 #include <pwd.h>
29 #include <errno.h>
30 #include <sys/types.h>
31
32 #if TIME_WITH_SYS_TIME
33 # include <sys/time.h>
34 # include <time.h>
35 #else
36 # if HAVE_SYS_TIME_H
37 #  include <sys/time.h>
38 # else
39 #  include <time.h>
40 # endif
41 #endif
42
43 #include <sys/wait.h>
44 #include <string.h>
45 #include <limits.h>
46 #include <ctype.h>
47 #include <libcitadel.h>
48 #include <expat.h>
49 #include "citadel.h"
50 #include "server.h"
51 #include "citserver.h"
52 #include "support.h"
53 #include "config.h"
54 #include "user_ops.h"
55 #include "policy.h"
56 #include "database.h"
57 #include "msgbase.h"
58 #include "internet_addressing.h"
59 #include "md5.h"
60 #include "ctdl_module.h"
61 #include "serv_xmpp.h"
62
63 struct xmpp_event *xmpp_queue = NULL;
64
65 /* We have just received a <stream> tag from the client, so send them ours */
66
67 void xmpp_stream_start(void *data, const char *supplied_el, const char **attr)
68 {
69         while (*attr) {
70                 if (!strcasecmp(attr[0], "to")) {
71                         safestrncpy(XMPP->server_name, attr[1], sizeof XMPP->server_name);
72                 }
73                 attr += 2;
74         }
75
76         cprintf("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
77
78         cprintf("<stream:stream ");
79         cprintf("from=\"%s\" ", XMPP->server_name);
80         cprintf("id=\"%08x\" ", CC->cs_pid);
81         cprintf("version=\"1.0\" ");
82         cprintf("xmlns:stream=\"http://etherx.jabber.org/streams\" ");
83         cprintf("xmlns=\"jabber:client\">");
84
85         /* The features of this stream are... */
86         cprintf("<stream:features>");
87
88 #ifdef HAVE_OPENSSL_XXXX_COMMENTED_OUT
89         /* TLS encryption (but only if it isn't already active) */
90         if (!CC->redirect_ssl) {
91                 cprintf("<starttls xmlns='urn:ietf:params:xml:ns:xmpp-tls'></starttls>");
92         }
93 #endif
94
95         if (!CC->logged_in) {
96                 /* If we're not logged in yet, offer SASL as our feature set */
97                 xmpp_output_auth_mechs();
98
99                 /* Also offer non-SASL authentication */
100                 cprintf("<auth xmlns=\"http://jabber.org/features/iq-auth\"/>");
101         }
102
103         /* Offer binding and sessions as part of our feature set */
104         cprintf("<bind xmlns=\"urn:ietf:params:xml:ns:xmpp-bind\"/>");
105         cprintf("<session xmlns=\"urn:ietf:params:xml:ns:xmpp-session\"/>");
106
107         cprintf("</stream:features>");
108
109         CC->is_async = 1;               /* XMPP sessions are inherently async-capable */
110 }
111
112
113 void xmpp_xml_start(void *data, const char *supplied_el, const char **attr) {
114         char el[256];
115         char *sep = NULL;
116         int i;
117
118         /* Axe the namespace, we don't care about it */
119         safestrncpy(el, supplied_el, sizeof el);
120         while (sep = strchr(el, ':'), sep) {
121                 strcpy(el, ++sep);
122         }
123
124         /*
125         CtdlLogPrintf(CTDL_DEBUG, "XMPP ELEMENT START: <%s>\n", el);
126         for (i=0; attr[i] != NULL; i+=2) {
127                 CtdlLogPrintf(CTDL_DEBUG, "                    Attribute '%s' = '%s'\n", attr[i], attr[i+1]);
128         }
129         uncomment for more verbosity */
130
131         if (!strcasecmp(el, "stream")) {
132                 xmpp_stream_start(data, supplied_el, attr);
133         }
134
135         else if (!strcasecmp(el, "query")) {
136                 XMPP->iq_query_xmlns[0] = 0;
137                 safestrncpy(XMPP->iq_query_xmlns, supplied_el, sizeof XMPP->iq_query_xmlns);
138         }
139
140         else if (!strcasecmp(el, "bind")) {
141                 XMPP->bind_requested = 1;
142         }
143
144         else if (!strcasecmp(el, "iq")) {
145                 for (i=0; attr[i] != NULL; i+=2) {
146                         if (!strcasecmp(attr[i], "type")) {
147                                 safestrncpy(XMPP->iq_type, attr[i+1], sizeof XMPP->iq_type);
148                         }
149                         else if (!strcasecmp(attr[i], "id")) {
150                                 safestrncpy(XMPP->iq_id, attr[i+1], sizeof XMPP->iq_id);
151                         }
152                         else if (!strcasecmp(attr[i], "from")) {
153                                 safestrncpy(XMPP->iq_from, attr[i+1], sizeof XMPP->iq_from);
154                         }
155                         else if (!strcasecmp(attr[i], "to")) {
156                                 safestrncpy(XMPP->iq_to, attr[i+1], sizeof XMPP->iq_to);
157                         }
158                 }
159         }
160
161         else if (!strcasecmp(el, "auth")) {
162                 XMPP->sasl_auth_mech[0] = 0;
163                 for (i=0; attr[i] != NULL; i+=2) {
164                         if (!strcasecmp(attr[i], "mechanism")) {
165                                 safestrncpy(XMPP->sasl_auth_mech, attr[i+1], sizeof XMPP->sasl_auth_mech);
166                         }
167                 }
168         }
169
170         else if (!strcasecmp(el, "message")) {
171                 for (i=0; attr[i] != NULL; i+=2) {
172                         if (!strcasecmp(attr[i], "to")) {
173                                 safestrncpy(XMPP->message_to, attr[i+1], sizeof XMPP->message_to);
174                         }
175                 }
176         }
177
178         else if (!strcasecmp(el, "html")) {
179                 ++XMPP->html_tag_level;
180         }
181 }
182
183
184
185 void xmpp_xml_end(void *data, const char *supplied_el) {
186         char el[256];
187         char *sep = NULL;
188
189         /* Axe the namespace, we don't care about it */
190         safestrncpy(el, supplied_el, sizeof el);
191         while (sep = strchr(el, ':'), sep) {
192                 strcpy(el, ++sep);
193         }
194
195         /*
196         CtdlLogPrintf(CTDL_DEBUG, "XMPP ELEMENT END  : <%s>\n", el);
197         if (XMPP->chardata_len > 0) {
198                 CtdlLogPrintf(CTDL_DEBUG, "          chardata: %s\n", XMPP->chardata);
199         }
200         uncomment for more verbosity */
201
202         if (!strcasecmp(el, "resource")) {
203                 if (XMPP->chardata_len > 0) {
204                         safestrncpy(XMPP->iq_client_resource, XMPP->chardata,
205                                 sizeof XMPP->iq_client_resource);
206                         striplt(XMPP->iq_client_resource);
207                 }
208         }
209
210         if (!strcasecmp(el, "username")) {              /* NON SASL ONLY */
211                 if (XMPP->chardata_len > 0) {
212                         safestrncpy(XMPP->iq_client_username, XMPP->chardata,
213                                 sizeof XMPP->iq_client_username);
214                         striplt(XMPP->iq_client_username);
215                 }
216         }
217
218         if (!strcasecmp(el, "password")) {              /* NON SASL ONLY */
219                 if (XMPP->chardata_len > 0) {
220                         safestrncpy(XMPP->iq_client_password, XMPP->chardata,
221                                 sizeof XMPP->iq_client_password);
222                         striplt(XMPP->iq_client_password);
223                 }
224         }
225
226         else if (!strcasecmp(el, "iq")) {
227
228                 /*
229                  * iq type="get" (handle queries)
230                  */
231                 if (!strcasecmp(XMPP->iq_type, "get")) {
232
233                         /*
234                          * Query on a namespace
235                          */
236                         if (!IsEmptyStr(XMPP->iq_query_xmlns)) {
237                                 xmpp_query_namespace(XMPP->iq_id, XMPP->iq_from,
238                                                 XMPP->iq_to, XMPP->iq_query_xmlns);
239                         }
240
241                         /*
242                          * Unknown queries ... return the XML equivalent of a blank stare
243                          */
244                         else {
245                                 cprintf("<iq type=\"result\" id=\"%s\">", XMPP->iq_id);
246                                 cprintf("</iq>");
247                         }
248                 }
249
250                 /*
251                  * Non SASL authentication
252                  */
253                 else if (
254                         (!strcasecmp(XMPP->iq_type, "set"))
255                         && (!strcasecmp(XMPP->iq_query_xmlns, "jabber:iq:auth:query"))
256                         ) {
257
258                         jabber_non_sasl_authenticate(
259                                 XMPP->iq_id,
260                                 XMPP->iq_client_username,
261                                 XMPP->iq_client_password,
262                                 XMPP->iq_client_resource
263                         );
264                 }       
265
266                 /*
267                  * If this <iq> stanza was a "bind" attempt, process it ...
268                  */
269                 else if (
270                         (XMPP->bind_requested)
271                         && (!IsEmptyStr(XMPP->iq_id))
272                         && (!IsEmptyStr(XMPP->iq_client_resource))
273                         && (CC->logged_in)
274                         ) {
275
276                         /* Generate the "full JID" of the client resource */
277
278                         snprintf(XMPP->client_jid, sizeof XMPP->client_jid,
279                                 "%s/%s",
280                                 CC->cs_inet_email,
281                                 XMPP->iq_client_resource
282                         );
283
284                         /* Tell the client what its JID is */
285
286                         cprintf("<iq type=\"result\" id=\"%s\">", XMPP->iq_id);
287                         cprintf("<bind xmlns=\"urn:ietf:params:xml:ns:xmpp-bind\">");
288                         cprintf("<jid>%s</jid>", XMPP->client_jid);
289                         cprintf("</bind>");
290                         cprintf("</iq>");
291                 }
292
293                 else if (XMPP->iq_session) {
294                         cprintf("<iq type=\"result\" id=\"%s\">", XMPP->iq_id);
295                         cprintf("</iq>");
296                 }
297
298                 else {
299                         cprintf("<iq type=\"error\" id=\"%s\">", XMPP->iq_id);
300                         cprintf("<error></error>");
301                         cprintf("</iq>");
302                 }
303
304                 /* Now clear these fields out so they don't get used by a future stanza */
305                 XMPP->iq_id[0] = 0;
306                 XMPP->iq_from[0] = 0;
307                 XMPP->iq_to[0] = 0;
308                 XMPP->iq_type[0] = 0;
309                 XMPP->iq_client_resource[0] = 0;
310                 XMPP->iq_session = 0;
311                 XMPP->iq_query_xmlns[0] = 0;
312                 XMPP->bind_requested = 0;
313         }
314
315         else if (!strcasecmp(el, "auth")) {
316
317                 /* Try to authenticate (this function is responsible for the output stanza) */
318                 xmpp_sasl_auth(XMPP->sasl_auth_mech, (XMPP->chardata != NULL ? XMPP->chardata : "") );
319
320                 /* Now clear these fields out so they don't get used by a future stanza */
321                 XMPP->sasl_auth_mech[0] = 0;
322         }
323
324         else if (!strcasecmp(el, "session")) {
325                 XMPP->iq_session = 1;
326         }
327
328         else if (!strcasecmp(el, "presence")) {
329
330                 /* Respond to a <presence> update by firing back with presence information
331                  * on the entire wholist.  Check this assumption, it's probably wrong.
332                  */
333                 jabber_wholist_presence_dump();
334         }
335
336         else if ( (!strcasecmp(el, "body")) && (XMPP->html_tag_level == 0) ) {
337                 if (XMPP->message_body != NULL) {
338                         free(XMPP->message_body);
339                         XMPP->message_body = NULL;
340                 }
341                 if (XMPP->chardata_len > 0) {
342                         XMPP->message_body = strdup(XMPP->chardata);
343                 }
344         }
345
346         else if (!strcasecmp(el, "message")) {
347                 jabber_send_message(XMPP->message_to, XMPP->message_body);
348                 XMPP->html_tag_level = 0;
349         }
350
351         else if (!strcasecmp(el, "html")) {
352                 --XMPP->html_tag_level;
353         }
354
355         else if (!strcasecmp(el, "starttls")) {
356 #ifdef HAVE_OPENSSL
357         cprintf("<proceed xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
358         CtdlModuleStartCryptoMsgs(NULL, NULL, NULL);
359         if (!CC->redirect_ssl) CC->kill_me = 1;
360 #else
361         cprintf("<failure xmlns='urn:ietf:params:xml:ns:xmpp-tls'/>");
362         CC->kill_me = 1;
363 #endif
364         }
365
366         XMPP->chardata_len = 0;
367         if (XMPP->chardata_alloc > 0) {
368                 XMPP->chardata[0] = 0;
369         }
370 }
371
372
373 void xmpp_xml_chardata(void *data, const XML_Char *s, int len)
374 {
375         struct citxmpp *X = XMPP;
376
377         if (X->chardata_alloc == 0) {
378                 X->chardata_alloc = SIZ;
379                 X->chardata = malloc(X->chardata_alloc);
380         }
381         if ((X->chardata_len + len + 1) > X->chardata_alloc) {
382                 X->chardata_alloc = X->chardata_len + len + 1024;
383                 X->chardata = realloc(X->chardata, X->chardata_alloc);
384         }
385         memcpy(&X->chardata[X->chardata_len], s, len);
386         X->chardata_len += len;
387         X->chardata[X->chardata_len] = 0;
388 }
389
390
391 /*
392  * This cleanup function blows away the temporary memory and files used by the XMPP service.
393  */
394 void xmpp_cleanup_function(void) {
395
396         /* Don't do this stuff if this is not a XMPP session! */
397         if (CC->h_command_function != xmpp_command_loop) return;
398
399         if (XMPP->chardata != NULL) {
400                 free(XMPP->chardata);
401                 XMPP->chardata = NULL;
402                 XMPP->chardata_len = 0;
403                 XMPP->chardata_alloc = 0;
404                 if (XMPP->message_body != NULL) {
405                         free(XMPP->message_body);
406                 }
407         }
408         XML_ParserFree(XMPP->xp);
409         free(XMPP);
410 }
411
412
413
414 /*
415  * Here's where our XMPP session begins its happy day.
416  */
417 void xmpp_greeting(void) {
418         strcpy(CC->cs_clientname, "Jabber session");
419         CC->session_specific_data = malloc(sizeof(struct citxmpp));
420         memset(XMPP, 0, sizeof(struct citxmpp));
421         XMPP->last_event_processed = queue_event_seq;
422
423         /* XMPP does not use a greeting, but we still have to initialize some things. */
424
425         XMPP->xp = XML_ParserCreateNS("UTF-8", ':');
426         if (XMPP->xp == NULL) {
427                 CtdlLogPrintf(CTDL_ALERT, "Cannot create XML parser!\n");
428                 CC->kill_me = 1;
429                 return;
430         }
431
432         XML_SetElementHandler(XMPP->xp, xmpp_xml_start, xmpp_xml_end);
433         XML_SetCharacterDataHandler(XMPP->xp, xmpp_xml_chardata);
434         // XML_SetUserData(XMPP->xp, something...);
435
436         CC->can_receive_im = 1;         /* This protocol is capable of receiving instant messages */
437 }
438
439
440 /* 
441  * Main command loop for XMPP sessions.
442  */
443 void xmpp_command_loop(void) {
444         char cmdbuf[16];
445         int retval;
446
447         time(&CC->lastcmd);
448         memset(cmdbuf, 0, sizeof cmdbuf); /* Clear it, just in case */
449         retval = client_read(cmdbuf, 1);
450         if (retval != 1) {
451                 CtdlLogPrintf(CTDL_ERR, "Client disconnected: ending session.\r\n");
452                 CC->kill_me = 1;
453                 return;
454         }
455
456         /* FIXME ... this is woefully inefficient. */
457
458         XML_Parse(XMPP->xp, cmdbuf, 1, 0);
459 }
460
461
462 /*
463  * Async loop for XMPP sessions (handles the transmission of unsolicited stanzas)
464  */
465 void xmpp_async_loop(void) {
466         xmpp_process_events();
467         jabber_output_incoming_messages();
468 }
469
470
471 /*
472  * Login hook for XMPP sessions
473  */
474 void xmpp_login_hook(void) {
475         xmpp_queue_event(XMPP_EVT_LOGIN, CC->cs_inet_email);
476 }
477
478
479 /*
480  * Logout hook for XMPP sessions
481  */
482 void xmpp_logout_hook(void) {
483         xmpp_queue_event(XMPP_EVT_LOGOUT, CC->cs_inet_email);
484 }
485
486
487 const char *CitadelServiceXMPP="XMPP";
488
489 CTDL_MODULE_INIT(jabber)
490 {
491         if (!threading) {
492                 CtdlRegisterServiceHook(config.c_xmpp_c2s_port,
493                                         NULL,
494                                         xmpp_greeting,
495                                         xmpp_command_loop,
496                                         xmpp_async_loop,
497                                         CitadelServiceXMPP);
498                 CtdlRegisterSessionHook(xmpp_cleanup_function, EVT_STOP);
499                 CtdlRegisterSessionHook(xmpp_login_hook, EVT_LOGIN);
500                 CtdlRegisterSessionHook(xmpp_logout_hook, EVT_LOGOUT);
501                 CtdlRegisterSessionHook(xmpp_login_hook, EVT_UNSTEALTH);
502                 CtdlRegisterSessionHook(xmpp_logout_hook, EVT_STEALTH);
503         }
504
505         /* return our Subversion id for the Log */
506         return "$Id$";
507 }