fba04f75f0408ac02ef210b34e132bc72029bd70
[citadel.git] / citadel / modules / xmpp / xmpp_query_namespace.c
1 /*
2  * Handle <iq> <get> <query> type situations (namespace queries)
3  *
4  * Copyright (c) 2007-2009 by Art Cancro
5  *
6  * This program is open source software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 3.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14
15 #include "sysdep.h"
16 #include <stdlib.h>
17 #include <unistd.h>
18 #include <stdio.h>
19 #include <fcntl.h>
20 #include <signal.h>
21 #include <pwd.h>
22 #include <errno.h>
23 #include <sys/types.h>
24
25 #if TIME_WITH_SYS_TIME
26 # include <sys/time.h>
27 # include <time.h>
28 #else
29 # if HAVE_SYS_TIME_H
30 #  include <sys/time.h>
31 # else
32 #  include <time.h>
33 # endif
34 #endif
35
36 #include <sys/wait.h>
37 #include <string.h>
38 #include <limits.h>
39 #include <ctype.h>
40 #include <expat.h>
41 #include <libcitadel.h>
42 #include "citadel.h"
43 #include "server.h"
44 #include "citserver.h"
45 #include "support.h"
46 #include "config.h"
47 #include "internet_addressing.h"
48 #include "md5.h"
49 #include "ctdl_module.h"
50 #include "serv_xmpp.h"
51
52
53 /*
54  * Output a single roster item, for roster queries or pushes
55  */
56 void xmpp_roster_item(struct CitContext *cptr) {
57         char xmlbuf1[256];
58         char xmlbuf2[256];
59
60         cprintf("<item jid=\"%s\" name=\"%s\" subscription=\"both\">",
61                 xmlesc(xmlbuf1, cptr->cs_inet_email, sizeof xmlbuf1),
62                 xmlesc(xmlbuf2, cptr->user.fullname, sizeof xmlbuf2)
63         );
64         cprintf("<group>%s</group>", xmlesc(xmlbuf1, config.c_humannode, sizeof xmlbuf1));
65         cprintf("</item>");
66 }
67
68
69 /* 
70  * Return the results for a "jabber:iq:roster:query"
71  *
72  * Since we are not yet managing a roster, we simply return the entire wholist
73  * (minus any entries for this user -- don't tell me about myself)
74  *
75  */
76 void xmpp_iq_roster_query(void)
77 {
78         struct CitContext *cptr;
79         int nContexts, i;
80
81         syslog(LOG_DEBUG, "Roster push!");
82         cprintf("<query xmlns=\"jabber:iq:roster\">");
83         cptr = CtdlGetContextArray(&nContexts);
84         if (cptr) {
85                 for (i=0; i<nContexts; i++) {
86                         if (xmpp_is_visible(&cptr[i], CC)) {
87                                 XMPP_syslog(LOG_DEBUG, "Rosterizing %s\n", cptr[i].user.fullname);
88                                 xmpp_roster_item(&cptr[i]);
89                         }
90                 }
91                 free (cptr);
92         }
93         cprintf("</query>");
94 }
95
96
97
98 /*
99  * Client is doing a namespace query.  These are all handled differently.
100  * A "rumplestiltskin lookup" is the most efficient way to handle this.  Please do not refactor this code.
101  */
102 void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_xmlns)
103 {
104         int supported_namespace = 0;
105         int roster_query = 0;
106         char xmlbuf[256];
107
108         /* We need to know before we begin the response whether this is a supported namespace, so
109          * unfortunately all supported namespaces need to be defined here *and* down below where
110          * they are handled.
111          */
112         if (
113                 (!strcasecmp(query_xmlns, "jabber:iq:roster:query"))
114                 || (!strcasecmp(query_xmlns, "jabber:iq:auth:query"))
115                 || (!strcasecmp(query_xmlns, "http://jabber.org/protocol/disco#items:query"))
116                 || (!strcasecmp(query_xmlns, "http://jabber.org/protocol/disco#info:query"))
117         ) {
118                 supported_namespace = 1;
119         }
120
121         XMPP_syslog(LOG_DEBUG, "xmpp_query_namespace(id=%s, from=%s, to=%s, xmlns=%s)\n", iq_id, iq_from, iq_to, query_xmlns);
122
123         /*
124          * Beginning of query result.
125          */
126         if (supported_namespace) {
127                 cprintf("<iq type=\"result\" ");
128         }
129         else {
130                 cprintf("<iq type=\"error\" ");
131         }
132         if (!IsEmptyStr(iq_from)) {
133                 cprintf("to=\"%s\" ", xmlesc(xmlbuf, iq_from, sizeof xmlbuf));
134         }
135         cprintf("id=\"%s\">", xmlesc(xmlbuf, iq_id, sizeof xmlbuf));
136
137         /*
138          * Is this a query we know how to handle?
139          */
140
141         if (!strcasecmp(query_xmlns, "jabber:iq:roster:query")) {
142                 roster_query = 1;
143                 xmpp_iq_roster_query();
144         }
145
146         else if (!strcasecmp(query_xmlns, "jabber:iq:auth:query")) {
147                 cprintf("<query xmlns=\"jabber:iq:auth\">"
148                         "<username/><password/><resource/>"
149                         "</query>"
150                 );
151         }
152
153         // Extension "xep-0030" (http://xmpp.org/extensions/xep-0030.html) (return an empty set of results)
154         else if (!strcasecmp(query_xmlns, "http://jabber.org/protocol/disco#items:query")) {
155                 cprintf("<query xmlns=\"%s\"/>", xmlesc(xmlbuf, query_xmlns, sizeof xmlbuf));
156         }
157
158         // Extension "xep-0030" (http://xmpp.org/extensions/xep-0030.html) (return an empty set of results)
159         else if (!strcasecmp(query_xmlns, "http://jabber.org/protocol/disco#info:query")) {
160                 cprintf("<query xmlns=\"%s\"/>", xmlesc(xmlbuf, query_xmlns, sizeof xmlbuf));
161         }
162
163         /*
164          * If we didn't hit any known query namespaces then we should deliver a
165          * "service unavailable" error (see RFC3921 section 2.4 and 11.1.5.4)
166          */
167
168         else {
169                 XMPP_syslog(LOG_DEBUG, "Unknown query namespace '%s' - returning <service-unavailable/>\n", query_xmlns);
170                 cprintf("<error code=\"503\" type=\"cancel\">"
171                         "<service-unavailable xmlns=\"urn:ietf:params:xml:ns:xmpp-stanzas\"/>"
172                         "</error>"
173                 );
174         }
175
176         cprintf("</iq>");
177
178         /* If we told the client who is on the roster, we also need to tell the client
179          * who is *not* on the roster.  (It's down here because we can't do it in the same
180          * stanza; this will be an unsolicited push.)
181          */
182         if (roster_query) {
183                 xmpp_delete_old_buddies_who_no_longer_exist_from_the_client_roster();
184         }
185 }