]> code.citadel.org Git - citadel.git/blob - citadel/imap_acl.c
* Moved message deletion into the CtdlRoomAccess() API. The
[citadel.git] / citadel / imap_acl.c
1 /*
2  * $Id:  $
3  *
4  * Functions which implement RFC2086/RFC4314 (IMAP ACL extension)
5  *
6  */
7
8
9 #include "sysdep.h"
10 #include <stdlib.h>
11 #include <unistd.h>
12 #include <stdio.h>
13 #include <fcntl.h>
14 #include <signal.h>
15 #include <pwd.h>
16 #include <errno.h>
17 #include <sys/types.h>
18
19 #if TIME_WITH_SYS_TIME
20 # include <sys/time.h>
21 # include <time.h>
22 #else
23 # if HAVE_SYS_TIME_H
24 #  include <sys/time.h>
25 # else
26 #  include <time.h>
27 # endif
28 #endif
29
30 #include <sys/wait.h>
31 #include <ctype.h>
32 #include <string.h>
33 #include <limits.h>
34 #include "citadel.h"
35 #include "server.h"
36 #include "sysdep_decls.h"
37 #include "citserver.h"
38 #include "support.h"
39 #include "config.h"
40 #include "serv_extensions.h"
41 #include "room_ops.h"
42 #include "user_ops.h"
43 #include "policy.h"
44 #include "database.h"
45 #include "msgbase.h"
46 #include "tools.h"
47 #include "internet_addressing.h"
48 #include "serv_imap.h"
49 #include "imap_tools.h"
50 #include "imap_fetch.h"
51 #include "imap_misc.h"
52 #include "genstamp.h"
53
54
55
56 /*
57  * Implements the SETACL command.
58  */
59 void imap_setacl(int num_parms, char *parms[]) {
60
61         cprintf("%s BAD not yet implemented FIXME\r\n", parms[0]);
62         return;
63 }
64
65
66 /*
67  * Implements the DELETEACL command.
68  */
69 void imap_deleteacl(int num_parms, char *parms[]) {
70
71         cprintf("%s BAD not yet implemented FIXME\r\n", parms[0]);
72         return;
73 }
74
75
76 /*
77  * Given the bits returned by CtdlRoomAccess(), populate a string buffer
78  * with IMAP ACL format flags.   This code is common to GETACL and MYRIGHTS.
79  */
80 void imap_acl_flags(char *rights, int ra)
81 {
82         strcpy(rights, "");
83
84         /* l - lookup (mailbox is visible to LIST/LSUB commands, SUBSCRIBE mailbox)
85          * r - read (SELECT the mailbox, perform STATUS)
86          * s - keep seen/unseen information across sessions (set or clear \SEEN flag
87          *     via STORE, also set \SEEN during APPEND/COPY/ FETCH BODY[...])
88          * e - perform EXPUNGE and expunge as a part of CLOSE
89          */
90         if (    (ra & UA_KNOWN)                                 /* known rooms */
91            ||   ((ra & UA_GOTOALLOWED) && (ra & UA_ZAPPED))     /* zapped rooms */
92            ) {
93                 strcat(rights, "l");
94                 strcat(rights, "r");
95                 strcat(rights, "s");
96                 strcat(rights, "e");
97
98                 /* Only output the remaining flags if the room is known */
99
100                 /* w - write (set or clear arbitrary flags; not supported in Citadel) */
101
102                 /* i - insert (perform APPEND, COPY into mailbox) */
103                 /* p - post (send mail to submission address for mailbox - not enforced) */
104                 if (ra & UA_POSTALLOWED) {
105                         strcat(rights, "i");
106                         strcat(rights, "p");
107                 }
108
109                 /* k - create mailboxes in this hierarchy */
110
111                 /* t - delete messages (set/clear \Deleted flag) */
112                 if (ra & UA_DELETEALLOWED) {
113                         strcat(rights, "t");
114                 }
115
116                 /* a - administer (perform SETACL/DELETEACL/GETACL/LISTRIGHTS) */
117                 /* x - delete mailbox (DELETE mailbox, old mailbox name in RENAME) */
118                 if (ra & UA_ADMINALLOWED) {
119                         strcat(rights, "a");
120                         strcat(rights, "x");
121                 }
122         }
123 }
124
125
126 /*
127  * Implements the GETACL command.
128  */
129 void imap_getacl(int num_parms, char *parms[]) {
130         char roomname[ROOMNAMELEN];
131         char savedroom[ROOMNAMELEN];
132         int msgs, new;
133         int ret;
134         struct ctdluser temp;
135         struct cdbdata *cdbus;
136         int ra;
137         char rights[32];
138
139         if (num_parms != 3) {
140                 cprintf("%s BAD usage error\r\n", parms[0]);
141                 return;
142         }
143
144         ret = imap_grabroom(roomname, parms[2], 0);
145         if (ret != 0) {
146                 cprintf("%s NO Invalid mailbox name or access denied\r\n",
147                         parms[0]);
148                 return;
149         }
150
151         /*
152          * usergoto() formally takes us to the desired room.  (If another
153          * folder is selected, save its name so we can return there!!!!!)
154          */
155         if (IMAP->selected) {
156                 strcpy(savedroom, CC->room.QRname);
157         }
158         usergoto(roomname, 0, 0, &msgs, &new);
159
160         cprintf("* ACL");
161         cprintf(" ");
162         imap_strout(parms[2]);
163
164         /*
165          * Traverse the userlist
166          */
167         cdb_rewind(CDB_USERS);
168         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
169                 memset(&temp, 0, sizeof temp);
170                 memcpy(&temp, cdbus->ptr, sizeof temp);
171                 cdb_free(cdbus);
172
173                 CtdlRoomAccess(&CC->room, &temp, &ra, NULL);
174                 if (strlen(temp.fullname) > 0) {
175                         imap_acl_flags(rights, ra);
176                         if (strlen(rights) > 0) {
177                                 cprintf(" ");
178                                 imap_strout(temp.fullname);
179                                 cprintf(" %s", rights);
180                         }
181                 }
182         }
183
184         cprintf("\r\n");
185
186         /*
187          * If another folder is selected, go back to that room so we can resume
188          * our happy day without violent explosions.
189          */
190         if (IMAP->selected) {
191                 usergoto(savedroom, 0, 0, &msgs, &new);
192         }
193
194         cprintf("%s OK GETACL completed\r\n", parms[0]);
195 }
196
197
198 /*
199  * Implements the LISTRIGHTS command.
200  */
201 void imap_listrights(int num_parms, char *parms[]) {
202
203         cprintf("%s BAD not yet implemented FIXME\r\n", parms[0]);
204         return;
205 }
206
207
208 /*
209  * Implements the MYRIGHTS command.
210  */
211 void imap_myrights(int num_parms, char *parms[]) {
212         char roomname[ROOMNAMELEN];
213         char savedroom[ROOMNAMELEN];
214         int msgs, new;
215         int ret;
216         int ra;
217         char rights[32];
218
219         if (num_parms != 3) {
220                 cprintf("%s BAD usage error\r\n", parms[0]);
221                 return;
222         }
223
224         ret = imap_grabroom(roomname, parms[2], 0);
225         if (ret != 0) {
226                 cprintf("%s NO Invalid mailbox name or access denied\r\n",
227                         parms[0]);
228                 return;
229         }
230
231         /*
232          * usergoto() formally takes us to the desired room.  (If another
233          * folder is selected, save its name so we can return there!!!!!)
234          */
235         if (IMAP->selected) {
236                 strcpy(savedroom, CC->room.QRname);
237         }
238         usergoto(roomname, 0, 0, &msgs, &new);
239
240         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
241         imap_acl_flags(rights, ra);
242
243         cprintf("* MYRIGHTS ");
244         imap_strout(parms[2]);
245         cprintf(" %s\r\n", rights);
246
247         /*
248          * If a different folder was previously selected, return there now.
249          */
250         if ( (IMAP->selected) && (strcasecmp(roomname, savedroom)) ) {
251                 usergoto(savedroom, 0, 0, &msgs, &new);
252         }
253
254         cprintf("%s OK MYRIGHTS completed\r\n", parms[0]);
255         return;
256 }
257
258