0a8c3b7a3f78d9388c8266bc60361c1472b57f77
[citadel.git] / citadel / modules / xmpp / xmpp_query_namespace.c
1 /*
2  * Handle <iq> <get> <query> type situations (namespace queries)
3  *
4  * Copyright (c) 2007-2015 by Art Cancro and citadel.org
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, CtdlGetConfigStr("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, "xmpp: 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                                 syslog(LOG_DEBUG, "xmpp: rosterizing %s", cptr[i].user.fullname);
88                                 xmpp_roster_item(&cptr[i]);
89                         }
90                 }
91                 free (cptr);
92         }
93         cprintf("</query>");
94 }
95
96
97 /*
98  * Client is doing a namespace query.  These are all handled differently.
99  */
100 void xmpp_query_namespace(char *iq_id, char *iq_from, char *iq_to, char *query_xmlns)
101 {
102         int supported_namespace = 0;
103         int roster_query = 0;
104         char xmlbuf[256];
105         int reply_must_be_from_my_jid = 0;
106
107         /* We need to know before we begin the response whether this is a supported namespace, so
108          * unfortunately all supported namespaces need to be defined here *and* down below where
109          * they are handled.
110          */
111         if (
112                 (!strcasecmp(query_xmlns, "jabber:iq:roster:query"))
113                 || (!strcasecmp(query_xmlns, "jabber:iq:auth:query"))
114                 || (!strcasecmp(query_xmlns, "http://jabber.org/protocol/disco#items:query"))
115                 || (!strcasecmp(query_xmlns, "http://jabber.org/protocol/disco#info:query"))
116         ) {
117                 supported_namespace = 1;
118         }
119
120         syslog(LOG_DEBUG, "xmpp: xmpp_query_namespace(id=%s, from=%s, to=%s, xmlns=%s)", iq_id, iq_from, iq_to, query_xmlns);
121
122         /*
123          * Beginning of query result.
124          */
125
126         if (!strcasecmp(query_xmlns, "jabber:iq:roster:query")) {
127                 reply_must_be_from_my_jid = 1;
128         }
129
130         char dom[1024];                                                         // client is expecting to see the reply
131         if (reply_must_be_from_my_jid) {                                        // coming "from" the user's jid
132                 safestrncpy(dom, XMPP->client_jid, sizeof(dom));
133                 char *slash = strchr(dom, '/');
134                 if (slash) {
135                         *slash = 0;
136                 }
137         }
138         else {
139                 safestrncpy(dom, XMPP->client_jid, sizeof(dom));                // client is expecting to see the reply
140                 if (IsEmptyStr(dom)) {                                          // coming "from" the domain of the user's jid
141                         safestrncpy(dom, XMPP->server_name, sizeof(dom));
142                 }
143                 char *at = strrchr(dom, '@');
144                 if (at) {
145                         strcpy(dom, ++at);
146                 }
147                 char *slash = strchr(dom, '/');
148                 if (slash) {
149                         *slash = 0;
150                 }
151         }
152
153         if (supported_namespace) {
154                 cprintf("<iq type=\"result\" from=\"%s\" ", xmlesc(xmlbuf, dom, sizeof xmlbuf) );
155         }
156         else {
157                 cprintf("<iq type=\"error\" from=\"%s\" ", xmlesc(xmlbuf, dom, sizeof xmlbuf) );
158         }
159         if (!IsEmptyStr(iq_from)) {
160                 cprintf("to=\"%s\" ", xmlesc(xmlbuf, iq_from, sizeof xmlbuf));
161         }
162         cprintf("id=\"%s\">", xmlesc(xmlbuf, iq_id, sizeof xmlbuf));
163
164         /*
165          * Is this a query we know how to handle?
166          */
167
168         if (!strcasecmp(query_xmlns, "jabber:iq:roster:query")) {
169                 roster_query = 1;
170                 xmpp_iq_roster_query();
171         }
172
173         else if (!strcasecmp(query_xmlns, "jabber:iq:auth:query")) {
174                 cprintf("<query xmlns=\"jabber:iq:auth\">"
175                         "<username/><password/><resource/>"
176                         "</query>"
177                 );
178         }
179
180         // Extension "xep-0030" (http://xmpp.org/extensions/xep-0030.html) (return an empty set of results)
181         else if (!strcasecmp(query_xmlns, "http://jabber.org/protocol/disco#items:query")) {
182                 cprintf("<query xmlns=\"%s\"/>", xmlesc(xmlbuf, query_xmlns, sizeof xmlbuf));
183         }
184
185         // Extension "xep-0030" (http://xmpp.org/extensions/xep-0030.html) (return an empty set of results)
186         else if (!strcasecmp(query_xmlns, "http://jabber.org/protocol/disco#info:query")) {
187                 cprintf("<query xmlns=\"%s\"/>", xmlesc(xmlbuf, query_xmlns, sizeof xmlbuf));
188         }
189
190         /*
191          * If we didn't hit any known query namespaces then we should deliver a
192          * "service unavailable" error (see RFC3921 section 2.4 and 11.1.5.4)
193          */
194
195         else {
196                 syslog(LOG_DEBUG, "xmpp: unknown query namespace '%s' - returning <service-unavailable/>", query_xmlns);
197                 cprintf("<error code=\"503\" type=\"cancel\">"
198                         "<service-unavailable xmlns=\"urn:ietf:params:xml:ns:xmpp-stanzas\"/>"
199                         "</error>"
200                 );
201         }
202
203         cprintf("</iq>");
204
205         /* If we told the client who is on the roster, we also need to tell the client
206          * who is *not* on the roster.  (It's down here because we can't do it in the same
207          * stanza; this will be an unsolicited push.)
208          */
209         if (roster_query) {
210                 xmpp_delete_old_buddies_who_no_longer_exist_from_the_client_roster();
211         }
212 }