Fix warnings all over citserver; handle function replies; remove unused code.
[citadel.git] / citadel / modules / imap / imap_misc.c
1 /*
2  * Copyright (c) 1987-2011 by the citadel.org team
3  *
4  * This program is open source software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
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  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #include "sysdep.h"
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include <stdio.h>
24 #include <fcntl.h>
25 #include <signal.h>
26 #include <pwd.h>
27 #include <errno.h>
28 #include <sys/types.h>
29
30 #if TIME_WITH_SYS_TIME
31 # include <sys/time.h>
32 # include <time.h>
33 #else
34 # if HAVE_SYS_TIME_H
35 #  include <sys/time.h>
36 # else
37 #  include <time.h>
38 # endif
39 #endif
40
41 #include <sys/wait.h>
42 #include <ctype.h>
43 #include <string.h>
44 #include <limits.h>
45 #include <libcitadel.h>
46 #include "citadel.h"
47 #include "server.h"
48 #include "sysdep_decls.h"
49 #include "citserver.h"
50 #include "support.h"
51 #include "config.h"
52 #include "user_ops.h"
53 #include "database.h"
54 #include "msgbase.h"
55 #include "internet_addressing.h"
56 #include "serv_imap.h"
57 #include "imap_tools.h"
58 #include "imap_fetch.h"
59 #include "imap_misc.h"
60 #include "genstamp.h"
61 #include "ctdl_module.h"
62
63
64
65
66
67 /*
68  * imap_copy() calls imap_do_copy() to do its actual work, once it's
69  * validated and boiled down the request a bit.  (returns 0 on success)
70  */
71 int imap_do_copy(const char *destination_folder) {
72         citimap *Imap = IMAP;
73         int i;
74         char roomname[ROOMNAMELEN];
75         struct ctdlroom qrbuf;
76         long *selected_msgs = NULL;
77         int num_selected = 0;
78
79         if (Imap->num_msgs < 1) {
80                 return(0);
81         }
82
83         i = imap_grabroom(roomname, destination_folder, 1);
84         if (i != 0) return(i);
85
86         /*
87          * Copy all the message pointers in one shot.
88          */
89         selected_msgs = malloc(sizeof(long) * Imap->num_msgs);
90         if (selected_msgs == NULL) return(-1);
91
92         for (i = 0; i < Imap->num_msgs; ++i) {
93                 if (Imap->flags[i] & IMAP_SELECTED) {
94                         selected_msgs[num_selected++] = Imap->msgids[i];
95                 }
96         }
97
98         if (num_selected > 0) {
99                 CtdlSaveMsgPointersInRoom(roomname, selected_msgs, num_selected, 1, NULL, 0);
100         }
101         free(selected_msgs);
102
103         /* Don't bother wasting any more time if there were no messages. */
104         if (num_selected == 0) {
105                 return(0);
106         }
107
108         /* Enumerate lists of messages for which flags are toggled */
109         long *seen_yes = NULL;
110         int num_seen_yes = 0;
111         long *seen_no = NULL;
112         int num_seen_no = 0;
113         long *answ_yes = NULL;
114         int num_answ_yes = 0;
115         long *answ_no = NULL;
116         int num_answ_no = 0;
117
118         seen_yes = malloc(num_selected * sizeof(long));
119         seen_no = malloc(num_selected * sizeof(long));
120         answ_yes = malloc(num_selected * sizeof(long));
121         answ_no = malloc(num_selected * sizeof(long));
122
123         for (i = 0; i < Imap->num_msgs; ++i) {
124                 if (Imap->flags[i] & IMAP_SELECTED) {
125                         if (Imap->flags[i] & IMAP_SEEN) {
126                                 seen_yes[num_seen_yes++] = Imap->msgids[i];
127                         }
128                         if ((Imap->flags[i] & IMAP_SEEN) == 0) {
129                                 seen_no[num_seen_no++] = Imap->msgids[i];
130                         }
131                         if (Imap->flags[i] & IMAP_ANSWERED) {
132                                 answ_yes[num_answ_yes++] = Imap->msgids[i];
133                         }
134                         if ((Imap->flags[i] & IMAP_ANSWERED) == 0) {
135                                 answ_no[num_answ_no++] = Imap->msgids[i];
136                         }
137                 }
138         }
139
140         /* Set the flags... */
141         i = CtdlGetRoom(&qrbuf, roomname);
142         if (i == 0) {
143                 CtdlSetSeen(seen_yes, num_seen_yes, 1, ctdlsetseen_seen, NULL, &qrbuf);
144                 CtdlSetSeen(seen_no, num_seen_no, 0, ctdlsetseen_seen, NULL, &qrbuf);
145                 CtdlSetSeen(answ_yes, num_answ_yes, 1, ctdlsetseen_answered, NULL, &qrbuf);
146                 CtdlSetSeen(answ_no, num_answ_no, 0, ctdlsetseen_answered, NULL, &qrbuf);
147         }
148
149         free(seen_yes);
150         free(seen_no);
151         free(answ_yes);
152         free(answ_no);
153
154         return(0);
155 }
156
157
158 /*
159  * Output the [COPYUID xxx yyy] response code required by RFC2359
160  * to tell the client the UID's of the messages that were copied (if any).
161  * We are assuming that the IMAP_SELECTED flag is still set on any relevant
162  * messages in our source room.  Since the Citadel system uses UID's that
163  * are both globally unique and persistent across a room-to-room copy, we
164  * can get this done quite easily.
165  */
166 void imap_output_copyuid_response(void) {
167         citimap *Imap = IMAP;
168         int i;
169         int num_output = 0;
170   
171         for (i = 0; i < Imap->num_msgs; ++i) {
172                 if (Imap->flags[i] & IMAP_SELECTED) {
173                         ++num_output;
174                         if (num_output == 1) {
175                                 IAPuts("[COPYUID ");
176                         }
177                         else if (num_output > 1) {
178                                 IAPuts(",");
179                         }
180                         IAPrintf("%ld", Imap->msgids[i]);
181                 }
182         }
183         if (num_output > 0) {
184                 IAPuts("] ");
185         }
186 }
187
188
189 /*
190  * This function is called by the main command loop.
191  */
192 void imap_copy(int num_parms, ConstStr *Params) {
193         int ret;
194
195         if (num_parms != 4) {
196                 IReply("BAD invalid parameters");
197                 return;
198         }
199
200         if (imap_is_message_set(Params[2].Key)) {
201                 imap_pick_range(Params[2].Key, 0);
202         }
203         else {
204                 IReply("BAD invalid parameters");
205                 return;
206         }
207
208         ret = imap_do_copy(Params[3].Key);
209         if (!ret) {
210                 IAPrintf("%s OK ", Params[0].Key);
211                 imap_output_copyuid_response();
212                 IAPuts("COPY completed\r\n");
213         }
214         else {
215                 IReplyPrintf("NO COPY failed (error %d)", ret);
216         }
217 }
218
219 /*
220  * This function is called by the main command loop.
221  */
222 void imap_uidcopy(int num_parms, ConstStr *Params) {
223
224         if (num_parms != 5) {
225                 IReply("BAD invalid parameters");
226                 return;
227         }
228
229         if (imap_is_message_set(Params[3].Key)) {
230                 imap_pick_range(Params[3].Key, 1);
231         }
232         else {
233                 IReply("BAD invalid parameters");
234                 return;
235         }
236
237         if (imap_do_copy(Params[4].Key) == 0) {
238                 IAPrintf("%s OK ", Params[0].Key);
239                 imap_output_copyuid_response();
240                 IAPuts("UID COPY completed\r\n");
241         }
242         else {
243                 IReply("NO UID COPY failed");
244         }
245 }
246
247
248 /*
249  * imap_do_append_flags() is called by imap_append() to set any flags that
250  * the client specified at append time.
251  *
252  * FIXME find a way to do these in bulk so we don't max out our db journal
253  */
254 void imap_do_append_flags(long new_msgnum, char *new_message_flags) {
255         char flags[32];
256         char this_flag[sizeof flags];
257         int i;
258
259         if (new_message_flags == NULL) return;
260         if (IsEmptyStr(new_message_flags)) return;
261
262         safestrncpy(flags, new_message_flags, sizeof flags);
263
264         for (i=0; i<num_tokens(flags, ' '); ++i) {
265                 extract_token(this_flag, flags, i, ' ', sizeof this_flag);
266                 if (this_flag[0] == '\\') strcpy(this_flag, &this_flag[1]);
267                 if (!strcasecmp(this_flag, "Seen")) {
268                         CtdlSetSeen(&new_msgnum, 1, 1, ctdlsetseen_seen,
269                                 NULL, NULL);
270                 }
271                 if (!strcasecmp(this_flag, "Answered")) {
272                         CtdlSetSeen(&new_msgnum, 1, 1, ctdlsetseen_answered,
273                                 NULL, NULL);
274                 }
275         }
276 }
277
278
279 /*
280  * This function is called by the main command loop.
281  */
282 void imap_append(int num_parms, ConstStr *Params) {
283         long literal_length;
284         struct CtdlMessage *msg = NULL;
285         long new_msgnum = (-1L);
286         int ret = 0;
287         char roomname[ROOMNAMELEN];
288         char errbuf[SIZ];
289         char dummy[SIZ];
290         char savedroom[ROOMNAMELEN];
291         int msgs, new;
292         int i;
293         char new_message_flags[SIZ];
294         citimap *Imap;
295
296         if (num_parms < 4) {
297                 IReply("BAD usage error");
298                 return;
299         }
300
301         if ( (Params[num_parms-1].Key[0] != '{')
302            || (Params[num_parms-1].Key[Params[num_parms-1].len-1] != '}') )  {
303                 IReply("BAD no message literal supplied");
304                 return;
305         }
306
307         strcpy(new_message_flags, "");
308         if (num_parms >= 5) {
309                 for (i=3; i<num_parms; ++i) {
310                         strcat(new_message_flags, Params[i].Key);
311                         strcat(new_message_flags, " ");
312                 }
313                 stripallbut(new_message_flags, '(', ')');
314         }
315
316         /* This is how we'd do this if it were relevant in our data store.
317          * if (num_parms >= 6) {
318          *  new_message_internaldate = parms[4];
319          * }
320          */
321
322         literal_length = atol(&Params[num_parms-1].Key[1]);
323         if (literal_length < 1) {
324                 IReply("BAD Message length must be at least 1.");
325                 return;
326         }
327
328         Imap = IMAP;
329         imap_free_transmitted_message();        /* just in case. */
330
331         Imap->TransmittedMessage = NewStrBufPlain(NULL, literal_length);
332
333         if (Imap->TransmittedMessage == NULL) {
334                 IReply("NO Cannot allocate memory.");
335                 return;
336         }
337         
338         IAPrintf("+ Transmit message now.\r\n");
339         
340         IUnbuffer ();
341
342         client_read_blob(Imap->TransmittedMessage, literal_length, config.c_sleeping);
343
344         if ((ret < 0) || (StrLength(Imap->TransmittedMessage) < literal_length)) {
345                 IReply("NO Read failed.");
346                 return;
347         }
348
349         /* Client will transmit a trailing CRLF after the literal (the message
350          * text) is received.  This call to client_getln() absorbs it.
351          */
352         flush_output();
353         client_getln(dummy, sizeof dummy);
354
355         /* Convert RFC822 newlines (CRLF) to Unix newlines (LF) */
356         syslog(LOG_DEBUG, "Converting CRLF to LF");
357         StrBufToUnixLF(Imap->TransmittedMessage);
358
359         syslog(LOG_DEBUG, "Converting message format");
360         msg = convert_internet_message_buf(&Imap->TransmittedMessage);
361
362         ret = imap_grabroom(roomname, Params[2].Key, 1);
363         if (ret != 0) {
364                 IReply("NO Invalid mailbox name or access denied");
365                 return;
366         }
367
368         /*
369          * CtdlUserGoto() formally takes us to the desired room.  (If another
370          * folder is selected, save its name so we can return there!!!!!)
371          */
372         if (Imap->selected) {
373                 strcpy(savedroom, CC->room.QRname);
374         }
375         CtdlUserGoto(roomname, 0, 0, &msgs, &new);
376
377         /* If the user is locally authenticated, FORCE the From: header to
378          * show up as the real sender.  FIXME do we really want to do this?
379          * Probably should make it site-definable or even room-definable.
380          *
381          * For now, we allow "forgeries" if the room is one of the user's
382          * private mailboxes.
383          */
384         if (CC->logged_in) {
385            if ( ((CC->room.QRflags & QR_MAILBOX) == 0) && (config.c_imap_keep_from == 0)) {
386                 if (msg->cm_fields['A'] != NULL) free(msg->cm_fields['A']);
387                 if (msg->cm_fields['N'] != NULL) free(msg->cm_fields['N']);
388                 if (msg->cm_fields['H'] != NULL) free(msg->cm_fields['H']);
389                 msg->cm_fields['A'] = strdup(CC->user.fullname);
390                 msg->cm_fields['N'] = strdup(config.c_nodename);
391                 msg->cm_fields['H'] = strdup(config.c_humannode);
392             }
393         }
394
395         /* 
396          * Can we post here?
397          */
398         ret = CtdlDoIHavePermissionToPostInThisRoom(errbuf, sizeof errbuf, NULL, POST_LOGGED_IN, 0);
399
400         if (ret) {
401                 /* Nope ... print an error message */
402                 IReplyPrintf("NO %s", errbuf);
403         }
404
405         else {
406                 /* Yes ... go ahead and post! */
407                 if (msg != NULL) {
408                         new_msgnum = CtdlSubmitMsg(msg, NULL, "", 0);
409                 }
410                 if (new_msgnum >= 0L) {
411                         IReplyPrintf("OK [APPENDUID %ld %ld] APPEND completed",
412                                      GLOBAL_UIDVALIDITY_VALUE, new_msgnum);
413                 }
414                 else {
415                         IReplyPrintf("BAD Error %ld saving message to disk.",
416                                      new_msgnum);
417                 }
418         }
419
420         /*
421          * IMAP protocol response to client has already been sent by now.
422          *
423          * If another folder is selected, go back to that room so we can resume
424          * our happy day without violent explosions.
425          */
426         if (Imap->selected) {
427                 CtdlUserGoto(savedroom, 0, 0, &msgs, &new);
428         }
429
430         /* We don't need this buffer anymore */
431         CtdlFreeMessage(msg);
432
433         if (new_message_flags != NULL) {
434                 imap_do_append_flags(new_msgnum, new_message_flags);
435         }
436 }