f616d7e742214c4149a2709e0db0f8160884886b
[citadel.git] / citadel / room_ops.c
1 /* 
2  * Server functions which perform operations on room objects.
3  *
4  * Copyright (c) 1987-2016 by the citadel.org team
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 <stdio.h>
16 #include <libcitadel.h>
17
18 #include "citserver.h"
19 #include "ctdl_module.h"
20 #include "config.h"
21 #include "control.h"
22 #include "user_ops.h"
23 #include "room_ops.h"
24
25 struct floor *floorcache[MAXFLOORS];
26
27 /* 
28  * Determine whether the currently logged in session has permission to read
29  * messages in the current room.
30  */
31 int CtdlDoIHavePermissionToReadMessagesInThisRoom(void) {
32         if (    (!(CC->logged_in))
33                 && (!(CC->internal_pgm))
34                 && (!CtdlGetConfigInt("c_guest_logins"))
35         ) {
36                 return(om_not_logged_in);
37         }
38         return(om_ok);
39 }
40
41 /*
42  * Check to see whether we have permission to post a message in the current
43  * room.  Returns a *CITADEL ERROR CODE* and puts a message in errmsgbuf, or
44  * returns 0 on success.
45  */
46 int CtdlDoIHavePermissionToPostInThisRoom(
47         char *errmsgbuf, 
48         size_t n, 
49         const char* RemoteIdentifier,
50         PostType PostPublic,
51         int is_reply
52         ) {
53         int ra;
54
55         if (!(CC->logged_in) && 
56             (PostPublic == POST_LOGGED_IN)) {
57                 snprintf(errmsgbuf, n, "Not logged in.");
58                 return (ERROR + NOT_LOGGED_IN);
59         }
60         else if (PostPublic == CHECK_EXISTANCE) {
61                 return (0); // We're Evaling whether a recipient exists
62         }
63         else if (!(CC->logged_in)) {
64                 
65                 if ((CC->room.QRflags & QR_READONLY)) {
66                         snprintf(errmsgbuf, n, "Not logged in.");
67                         return (ERROR + NOT_LOGGED_IN);
68                 }
69                 if (CC->room.QRflags2 & QR2_MODERATED) {
70                         snprintf(errmsgbuf, n, "Not logged in Moderation feature not yet implemented!");
71                         return (ERROR + NOT_LOGGED_IN);
72                 }
73                 if ((PostPublic!=POST_LMTP) &&(CC->room.QRflags2 & QR2_SMTP_PUBLIC) == 0) {
74
75                         return CtdlNetconfigCheckRoomaccess(errmsgbuf, n, RemoteIdentifier);
76                 }
77                 return (0);
78
79         }
80
81         if ((CC->user.axlevel < AxProbU) && ((CC->room.QRflags & QR_MAILBOX) == 0))
82         {
83                 snprintf(errmsgbuf, n, "Need to be validated to enter (except in %s> to sysop)", MAILROOM);
84                 return (ERROR + HIGHER_ACCESS_REQUIRED);
85         }
86
87         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
88
89         if (ra & UA_POSTALLOWED) {
90                 strcpy(errmsgbuf, "OK to post or reply here");
91                 return(0);
92         }
93
94         if ( (ra & UA_REPLYALLOWED) && (is_reply) ) {
95                 /*
96                  * To be thorough, we ought to check to see if the message they are
97                  * replying to is actually a valid one in this room, but unless this
98                  * actually becomes a problem we'll go with high performance instead.
99                  */
100                 strcpy(errmsgbuf, "OK to reply here");
101                 return(0);
102         }
103
104         if ( (ra & UA_REPLYALLOWED) && (!is_reply) ) {
105                 /* Clarify what happened with a better error message */
106                 snprintf(errmsgbuf, n, "You may only reply to existing messages here.");
107                 return (ERROR + HIGHER_ACCESS_REQUIRED);
108         }
109
110         snprintf(errmsgbuf, n, "Higher access is required to post in this room.");
111         return (ERROR + HIGHER_ACCESS_REQUIRED);
112
113 }
114
115 /*
116  * Check whether the current user has permission to delete messages from
117  * the current room (returns 1 for yes, 0 for no)
118  */
119 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void) {
120         int ra;
121         CtdlRoomAccess(&CC->room, &CC->user, &ra, NULL);
122         if (ra & UA_DELETEALLOWED) return(1);
123         return(0);
124 }
125
126 /*
127  * Retrieve access control information for any user/room pair.
128  * Yes, it has a couple of gotos.  If you don't like that, go die in a car fire.
129  */
130 void CtdlRoomAccess(struct ctdlroom *roombuf, struct ctdluser *userbuf,
131                 int *result, int *view)
132 {
133         int retval = 0;
134         visit vbuf;
135         int is_me = 0;
136         int is_guest = 0;
137
138         if (userbuf == &CC->user) {
139                 is_me = 1;
140         }
141
142         if ((is_me) && (CtdlGetConfigInt("c_guest_logins")) && (!CC->logged_in)) {
143                 is_guest = 1;
144         }
145
146         /* for internal programs, always do everything */
147         if (((CC->internal_pgm)) && (roombuf->QRflags & QR_INUSE)) {
148                 retval = (UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED | UA_DELETEALLOWED | UA_REPLYALLOWED);
149                 vbuf.v_view = 0;
150                 goto SKIP_EVERYTHING;
151         }
152
153         /* If guest mode is enabled, always grant access to the Lobby */
154         if ((is_guest) && (!strcasecmp(roombuf->QRname, BASEROOM))) {
155                 retval = (UA_KNOWN | UA_GOTOALLOWED);
156                 vbuf.v_view = 0;
157                 goto SKIP_EVERYTHING;
158         }
159
160         /* Locate any applicable user/room relationships */
161         if (is_guest) {
162                 memset(&vbuf, 0, sizeof vbuf);
163         }
164         else {
165                 CtdlGetRelationship(&vbuf, userbuf, roombuf);
166         }
167
168         /* Force the properties of the Aide room */
169         if (!strcasecmp(roombuf->QRname, CtdlGetConfigStr("c_aideroom"))) {
170                 if (userbuf->axlevel >= AxAideU) {
171                         retval = UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED | UA_DELETEALLOWED | UA_REPLYALLOWED;
172                 } else {
173                         retval = 0;
174                 }
175                 goto NEWMSG;
176         }
177
178         /* If this is a public room, it's accessible... */
179         if (    ((roombuf->QRflags & QR_PRIVATE) == 0) 
180                 && ((roombuf->QRflags & QR_MAILBOX) == 0)
181         ) {
182                 retval = retval | UA_KNOWN | UA_GOTOALLOWED;
183         }
184
185         /* If this is a preferred users only room, check access level */
186         if (roombuf->QRflags & QR_PREFONLY) {
187                 if (userbuf->axlevel < AxPrefU) {
188                         retval = retval & ~UA_KNOWN & ~UA_GOTOALLOWED;
189                 }
190         }
191
192         /* For private rooms, check the generation number matchups */
193         if (    (roombuf->QRflags & QR_PRIVATE) 
194                 && ((roombuf->QRflags & QR_MAILBOX) == 0)
195         ) {
196
197                 /* An explicit match means the user belongs in this room */
198                 if (vbuf.v_flags & V_ACCESS) {
199                         retval = retval | UA_KNOWN | UA_GOTOALLOWED;
200                 }
201                 /* Otherwise, check if this is a guess-name or passworded
202                  * room.  If it is, a goto may at least be attempted
203                  */
204                 else if (       (roombuf->QRflags & QR_PRIVATE)
205                                 || (roombuf->QRflags & QR_PASSWORDED)
206                 ) {
207                         retval = retval & ~UA_KNOWN;
208                         retval = retval | UA_GOTOALLOWED;
209                 }
210         }
211
212         /* For mailbox rooms, also check the namespace */
213         /* Also, mailbox owners can delete their messages */
214         if ( (roombuf->QRflags & QR_MAILBOX) && (atol(roombuf->QRname) != 0)) {
215                 if (userbuf->usernum == atol(roombuf->QRname)) {
216                         retval = retval | UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED | UA_DELETEALLOWED | UA_REPLYALLOWED;
217                 }
218                 /* An explicit match means the user belongs in this room */
219                 if (vbuf.v_flags & V_ACCESS) {
220                         retval = retval | UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED | UA_DELETEALLOWED | UA_REPLYALLOWED;
221                 }
222         }
223
224         /* For non-mailbox rooms... */
225         else {
226
227                 /* User is allowed to post in the room unless:
228                  * - User is not validated
229                  * - User has no net privileges and it is a shared network room
230                  * - It is a read-only room
231                  * - It is a blog room (in which case we only allow replies to existing messages)
232                  */
233                 int post_allowed = 1;
234                 int reply_allowed = 1;
235                 if (userbuf->axlevel < AxProbU) {
236                         post_allowed = 0;
237                         reply_allowed = 0;
238                 }
239                 if ((userbuf->axlevel < AxNetU) && (roombuf->QRflags & QR_NETWORK)) {
240                         post_allowed = 0;
241                         reply_allowed = 0;
242                 }
243                 if (roombuf->QRflags & QR_READONLY) {
244                         post_allowed = 0;
245                         reply_allowed = 0;
246                 }
247                 if (roombuf->QRdefaultview == VIEW_BLOG) {
248                         post_allowed = 0;
249                 }
250                 if (post_allowed) {
251                         retval = retval | UA_POSTALLOWED | UA_REPLYALLOWED;
252                 }
253                 if (reply_allowed) {
254                         retval = retval | UA_REPLYALLOWED;
255                 }
256
257                 /* If "collaborative deletion" is active for this room, any user who can post
258                  * is also allowed to delete
259                  */
260                 if (roombuf->QRflags2 & QR2_COLLABDEL) {
261                         if (retval & UA_POSTALLOWED) {
262                                 retval = retval | UA_DELETEALLOWED;
263                         }
264                 }
265
266         }
267
268         /* Check to see if the user has forgotten this room */
269         if (vbuf.v_flags & V_FORGET) {
270                 retval = retval & ~UA_KNOWN;
271                 if (    ( ((roombuf->QRflags & QR_PRIVATE) == 0) 
272                         && ((roombuf->QRflags & QR_MAILBOX) == 0)
273                 ) || (  (roombuf->QRflags & QR_MAILBOX) 
274                         && (atol(roombuf->QRname) == CC->user.usernum))
275                 ) {
276                         retval = retval | UA_ZAPPED;
277                 }
278         }
279
280         /* If user is explicitly locked out of this room, deny everything */
281         if (vbuf.v_flags & V_LOCKOUT) {
282                 retval = retval & ~UA_KNOWN & ~UA_GOTOALLOWED & ~UA_POSTALLOWED & ~UA_REPLYALLOWED;
283         }
284
285         /* Aides get access to all private rooms */
286         if (    (userbuf->axlevel >= AxAideU)
287                 && ((roombuf->QRflags & QR_MAILBOX) == 0)
288         ) {
289                 if (vbuf.v_flags & V_FORGET) {
290                         retval = retval | UA_GOTOALLOWED | UA_POSTALLOWED | UA_REPLYALLOWED;
291                 }
292                 else {
293                         retval = retval | UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED | UA_REPLYALLOWED;
294                 }
295         }
296
297         /* Aides can gain access to mailboxes as well, but they don't show
298          * by default.
299          */
300         if (    (userbuf->axlevel >= AxAideU)
301                 && (roombuf->QRflags & QR_MAILBOX)
302         ) {
303                 retval = retval | UA_GOTOALLOWED | UA_POSTALLOWED | UA_REPLYALLOWED;
304         }
305
306         /* Aides and Room Aides have admin privileges */
307         if (    (userbuf->axlevel >= AxAideU)
308                 || (userbuf->usernum == roombuf->QRroomaide)
309         ) {
310                 retval = retval | UA_ADMINALLOWED | UA_DELETEALLOWED | UA_POSTALLOWED | UA_REPLYALLOWED;
311         }
312
313 NEWMSG: /* By the way, we also check for the presence of new messages */
314         if (is_msg_in_sequence_set(vbuf.v_seen, roombuf->QRhighest) == 0) {
315                 retval = retval | UA_HASNEWMSGS;
316         }
317
318         /* System rooms never show up in the list. */
319         if (roombuf->QRflags2 & QR2_SYSTEM) {
320                 retval = retval & ~UA_KNOWN;
321         }
322
323 SKIP_EVERYTHING:
324         /* Now give the caller the information it wants. */
325         if (result != NULL) *result = retval;
326         if (view != NULL) *view = vbuf.v_view;
327 }
328
329
330 /*
331  * Self-checking stuff for a room record read into memory
332  */
333 void room_sanity_check(struct ctdlroom *qrbuf)
334 {
335         /* Mailbox rooms are always on the lowest floor */
336         if (qrbuf->QRflags & QR_MAILBOX) {
337                 qrbuf->QRfloor = 0;
338         }
339         /* Listing order of 0 is illegal except for base rooms */
340         if (qrbuf->QRorder == 0)
341                 if (    !(qrbuf->QRflags & QR_MAILBOX)
342                         && strncasecmp(qrbuf->QRname, CtdlGetConfigStr("c_baseroom"), ROOMNAMELEN)
343                         && strncasecmp(qrbuf->QRname, CtdlGetConfigStr("c_aideroom"), ROOMNAMELEN)
344                 ) {
345                         qrbuf->QRorder = 64;
346                 }
347 }
348
349
350 /*
351  * CtdlGetRoom()  -  retrieve room data from disk
352  */
353 int CtdlGetRoom(struct ctdlroom *qrbuf, const char *room_name)
354 {
355         struct cdbdata *cdbqr;
356         char lowercase_name[ROOMNAMELEN];
357         char personal_lowercase_name[ROOMNAMELEN];
358         const char *sptr;
359         char *dptr, *eptr;
360
361         dptr = lowercase_name;
362         sptr = room_name;
363         eptr = (dptr + (sizeof lowercase_name - 1));
364         while (!IsEmptyStr(sptr) && (dptr < eptr)){
365                 *dptr = tolower(*sptr);
366                 sptr++; dptr++;
367         }
368         *dptr = '\0';
369
370         memset(qrbuf, 0, sizeof(struct ctdlroom));
371
372         /* First, try the public namespace */
373         cdbqr = cdb_fetch(CDB_ROOMS,
374                           lowercase_name, strlen(lowercase_name));
375
376         /* If that didn't work, try the user's personal namespace */
377         if (cdbqr == NULL) {
378                 snprintf(personal_lowercase_name,
379                          sizeof personal_lowercase_name, "%010ld.%s",
380                          CC->user.usernum, lowercase_name);
381                 cdbqr = cdb_fetch(CDB_ROOMS,
382                                   personal_lowercase_name,
383                                   strlen(personal_lowercase_name));
384         }
385         if (cdbqr != NULL) {
386                 memcpy(qrbuf, cdbqr->ptr,
387                        ((cdbqr->len > sizeof(struct ctdlroom)) ?
388                         sizeof(struct ctdlroom) : cdbqr->len));
389                 cdb_free(cdbqr);
390
391                 room_sanity_check(qrbuf);
392
393                 return (0);
394         } else {
395                 return (1);
396         }
397 }
398
399
400 /*
401  * CtdlGetRoomLock()  -  same as getroom() but locks the record (if supported)
402  */
403 int CtdlGetRoomLock(struct ctdlroom *qrbuf, const char *room_name)
404 {
405         register int retval;
406         retval = CtdlGetRoom(qrbuf, room_name);
407         if (retval == 0) begin_critical_section(S_ROOMS);
408         return(retval);
409 }
410
411
412 /*
413  * b_putroom()  -  back end to putroom() and b_deleteroom()
414  *              (if the supplied buffer is NULL, delete the room record)
415  */
416 void b_putroom(struct ctdlroom *qrbuf, char *room_name)
417 {
418         char lowercase_name[ROOMNAMELEN];
419         char *aptr, *bptr;
420         long len;
421
422         aptr = room_name;
423         bptr = lowercase_name;
424         while (!IsEmptyStr(aptr))
425         {
426                 *bptr = tolower(*aptr);
427                 aptr++;
428                 bptr++;
429         }
430         *bptr='\0';
431
432         len = bptr - lowercase_name;
433         if (qrbuf == NULL) {
434                 cdb_delete(CDB_ROOMS, lowercase_name, len);
435         } else {
436                 time(&qrbuf->QRmtime);
437                 cdb_store(CDB_ROOMS, lowercase_name, len, qrbuf, sizeof(struct ctdlroom));
438         }
439 }
440
441
442 /* 
443  * CtdlPutRoom()  -  store room data to disk
444  */
445 void CtdlPutRoom(struct ctdlroom *qrbuf) {
446         b_putroom(qrbuf, qrbuf->QRname);
447 }
448
449
450 /*
451  * b_deleteroom()  -  delete a room record from disk
452  */
453 void b_deleteroom(char *room_name) {
454         b_putroom(NULL, room_name);
455 }
456
457
458 /*
459  * CtdlPutRoomLock()  -  same as CtdlPutRoom() but unlocks the record (if supported)
460  */
461 void CtdlPutRoomLock(struct ctdlroom *qrbuf)
462 {
463         CtdlPutRoom(qrbuf);
464         end_critical_section(S_ROOMS);
465 }
466
467
468 /*
469  * CtdlGetFloorByName()  -  retrieve the number of the named floor
470  * return < 0 if not found else return floor number
471  */
472 int CtdlGetFloorByName(const char *floor_name)
473 {
474         int a;
475         struct floor *flbuf = NULL;
476
477         for (a = 0; a < MAXFLOORS; ++a) {
478                 flbuf = CtdlGetCachedFloor(a);
479
480                 /* check to see if it already exists */
481                 if ((!strcasecmp(flbuf->f_name, floor_name))
482                     && (flbuf->f_flags & F_INUSE)) {
483                         return a;
484                 }
485         }
486         return -1;
487 }
488
489
490 /*
491  * CtdlGetFloorByNameLock()  -  retrieve floor number for given floor and lock the floor list.
492  */
493 int CtdlGetFloorByNameLock(const char *floor_name)
494 {
495         begin_critical_section(S_FLOORTAB);
496         return CtdlGetFloorByName(floor_name);
497 }
498
499
500
501 /*
502  * CtdlGetAvailableFloor()  -  Return number of first unused floor
503  * return < 0 if none available
504  */
505 int CtdlGetAvailableFloor(void)
506 {
507         int a;
508         struct floor *flbuf = NULL;
509
510         for (a = 0; a < MAXFLOORS; a++) {
511                 flbuf = CtdlGetCachedFloor(a);
512
513                 /* check to see if it already exists */
514                 if ((flbuf->f_flags & F_INUSE) == 0) {
515                         return a;
516                 }
517         }
518         return -1;
519 }
520
521
522 /*
523  * CtdlGetFloor()  -  retrieve floor data from disk
524  */
525 void CtdlGetFloor(struct floor *flbuf, int floor_num)
526 {
527         struct cdbdata *cdbfl;
528
529         memset(flbuf, 0, sizeof(struct floor));
530         cdbfl = cdb_fetch(CDB_FLOORTAB, &floor_num, sizeof(int));
531         if (cdbfl != NULL) {
532                 memcpy(flbuf, cdbfl->ptr,
533                        ((cdbfl->len > sizeof(struct floor)) ?
534                         sizeof(struct floor) : cdbfl->len));
535                 cdb_free(cdbfl);
536         } else {
537                 if (floor_num == 0) {
538                         safestrncpy(flbuf->f_name, "Main Floor", 
539                                 sizeof flbuf->f_name);
540                         flbuf->f_flags = F_INUSE;
541                         flbuf->f_ref_count = 3;
542                 }
543         }
544
545 }
546
547
548 /*
549  * lgetfloor()  -  same as CtdlGetFloor() but locks the record (if supported)
550  */
551 void lgetfloor(struct floor *flbuf, int floor_num)
552 {
553         begin_critical_section(S_FLOORTAB);
554         CtdlGetFloor(flbuf, floor_num);
555 }
556
557
558 /*
559  * CtdlGetCachedFloor()  -  Get floor record from *cache* (loads from disk if needed)
560  *    
561  * This is strictly a performance hack.
562  */
563 struct floor *CtdlGetCachedFloor(int floor_num) {
564         static int initialized = 0;
565         int i;
566         int fetch_new = 0;
567         struct floor *fl = NULL;
568
569         begin_critical_section(S_FLOORCACHE);
570         if (initialized == 0) {
571                 for (i=0; i<MAXFLOORS; ++i) {
572                         floorcache[floor_num] = NULL;
573                 }
574         initialized = 1;
575         }
576         if (floorcache[floor_num] == NULL) {
577                 fetch_new = 1;
578         }
579         end_critical_section(S_FLOORCACHE);
580
581         if (fetch_new) {
582                 fl = malloc(sizeof(struct floor));
583                 CtdlGetFloor(fl, floor_num);
584                 begin_critical_section(S_FLOORCACHE);
585                 if (floorcache[floor_num] != NULL) {
586                         free(floorcache[floor_num]);
587                 }
588                 floorcache[floor_num] = fl;
589                 end_critical_section(S_FLOORCACHE);
590         }
591
592         return(floorcache[floor_num]);
593 }
594
595
596 /*
597  * CtdlPutFloor()  -  store floor data on disk
598  */
599 void CtdlPutFloor(struct floor *flbuf, int floor_num)
600 {
601         /* If we've cached this, clear it out, 'cuz it's WRONG now! */
602         begin_critical_section(S_FLOORCACHE);
603         if (floorcache[floor_num] != NULL) {
604                 free(floorcache[floor_num]);
605                 floorcache[floor_num] = malloc(sizeof(struct floor));
606                 memcpy(floorcache[floor_num], flbuf, sizeof(struct floor));
607         }
608         end_critical_section(S_FLOORCACHE);
609
610         cdb_store(CDB_FLOORTAB, &floor_num, sizeof(int),
611                   flbuf, sizeof(struct floor));
612 }
613
614
615 /*
616  * CtdlPutFloorLock()  -  same as CtdlPutFloor() but unlocks the record (if supported)
617  */
618 void CtdlPutFloorLock(struct floor *flbuf, int floor_num)
619 {
620         CtdlPutFloor(flbuf, floor_num);
621         end_critical_section(S_FLOORTAB);
622
623 }
624
625
626 /*
627  * lputfloor()  -  same as CtdlPutFloor() but unlocks the record (if supported)
628  */
629 void lputfloor(struct floor *flbuf, int floor_num)
630 {
631         CtdlPutFloorLock(flbuf, floor_num);
632 }
633
634
635 /* 
636  *  Traverse the room file...
637  */
638 void CtdlForEachRoom(ForEachRoomCallBack CB, void *in_data)
639 {
640         struct ctdlroom qrbuf;
641         struct cdbdata *cdbqr;
642
643         cdb_rewind(CDB_ROOMS);
644
645         while (cdbqr = cdb_next_item(CDB_ROOMS), cdbqr != NULL) {
646                 memset(&qrbuf, 0, sizeof(struct ctdlroom));
647                 memcpy(&qrbuf, cdbqr->ptr,
648                        ((cdbqr->len > sizeof(struct ctdlroom)) ?
649                         sizeof(struct ctdlroom) : cdbqr->len)
650                 );
651                 cdb_free(cdbqr);
652                 room_sanity_check(&qrbuf);
653                 if (qrbuf.QRflags & QR_INUSE) {
654                         CB(&qrbuf, in_data);
655                 }
656         }
657 }
658
659 /* 
660  *  Traverse the room file...
661  */
662 void CtdlForEachNetCfgRoom(ForEachRoomNetCfgCallBack CB, void *in_data, RoomNetCfg filter)
663 {
664         struct ctdlroom qrbuf;
665         struct cdbdata *cdbqr;
666
667         cdb_rewind(CDB_ROOMS);
668
669         while (cdbqr = cdb_next_item(CDB_ROOMS), cdbqr != NULL) {
670                 memset(&qrbuf, 0, sizeof(struct ctdlroom));
671                 memcpy(&qrbuf, cdbqr->ptr,
672                        ((cdbqr->len > sizeof(struct ctdlroom)) ?
673                         sizeof(struct ctdlroom) : cdbqr->len)
674                 );
675                 cdb_free(cdbqr);
676                 room_sanity_check(&qrbuf);
677                 if (qrbuf.QRflags & QR_INUSE)
678                 {
679                         OneRoomNetCfg* RNCfg;
680                         RNCfg = CtdlGetNetCfgForRoom(qrbuf.QRnumber);
681                         if ((RNCfg != NULL) &&
682                             ((filter == maxRoomNetCfg) ||
683                              (RNCfg->NetConfigs[filter] != NULL)))
684                         {
685                                 CB(&qrbuf, in_data, RNCfg);
686                         }
687                 }
688         }
689 }
690
691
692 /*
693  * delete_msglist()  -  delete room message pointers
694  */
695 void delete_msglist(struct ctdlroom *whichroom)
696 {
697         struct cdbdata *cdbml;
698
699         /* Make sure the msglist we're deleting actually exists, otherwise
700          * libdb will complain when we try to delete an invalid record
701          */
702         cdbml = cdb_fetch(CDB_MSGLISTS, &whichroom->QRnumber, sizeof(long));
703         if (cdbml != NULL) {
704                 cdb_free(cdbml);
705
706                 /* Go ahead and delete it */
707                 cdb_delete(CDB_MSGLISTS, &whichroom->QRnumber, sizeof(long));
708         }
709 }
710
711
712 /*
713  * Message pointer compare function for sort_msglist()
714  */
715 int sort_msglist_cmp(const void *m1, const void *m2) {
716         if ((*(const long *)m1) > (*(const long *)m2)) return(1);
717         if ((*(const long *)m1) < (*(const long *)m2)) return(-1);
718         return(0);
719 }
720
721
722 /*
723  * sort message pointers
724  * (returns new msg count)
725  */
726 int sort_msglist(long listptrs[], int oldcount)
727 {
728         int numitems;
729         int i = 0;
730
731         numitems = oldcount;
732         if (numitems < 2) {
733                 return (oldcount);
734         }
735
736         /* do the sort */
737         qsort(listptrs, numitems, sizeof(long), sort_msglist_cmp);
738
739         /* and yank any nulls */
740         while ((i < numitems) && (listptrs[i] == 0L)) i++;
741
742         if (i > 0)
743         {
744                 memmove(&listptrs[0], &listptrs[i], (sizeof(long) * (numitems - i)));
745                 numitems-=i;
746         }
747
748         return (numitems);
749 }
750
751
752 /*
753  * Determine whether a given room is non-editable.
754  */
755 int CtdlIsNonEditable(struct ctdlroom *qrbuf)
756 {
757
758         /* Mail> rooms are non-editable */
759         if ( (qrbuf->QRflags & QR_MAILBOX)
760              && (!strcasecmp(&qrbuf->QRname[11], MAILROOM)) )
761                 return (1);
762
763         /* Everything else is editable */
764         return (0);
765 }
766
767
768
769 /*
770  * Make the specified room the current room for this session.  No validation
771  * or access control is done here -- the caller should make sure that the
772  * specified room exists and is ok to access.
773  */
774 void CtdlUserGoto(char *where, int display_result, int transiently,
775                 int *retmsgs, int *retnew, long *retoldest, long *retnewest)
776 {
777         struct CitContext *CCC = CC;
778         int a;
779         int new_messages = 0;
780         int old_messages = 0;
781         int total_messages = 0;
782         long oldest_message = 0;
783         long newest_message = 0;
784         int info = 0;
785         int rmailflag;
786         int raideflag;
787         int newmailcount = 0;
788         visit vbuf;
789         char truncated_roomname[ROOMNAMELEN];
790         struct cdbdata *cdbfr;
791         long *msglist = NULL;
792         int num_msgs = 0;
793         unsigned int original_v_flags;
794         int num_sets;
795         int s;
796         char setstr[128], lostr[64], histr[64];
797         long lo, hi;
798         int is_trash = 0;
799
800         /* If the supplied room name is NULL, the caller wants us to know that
801          * it has already copied the room record into CC->room, so
802          * we can skip the extra database fetch.
803          */
804         if (where != NULL) {
805                 safestrncpy(CCC->room.QRname, where, sizeof CCC->room.QRname);
806                 CtdlGetRoom(&CCC->room, where);
807         }
808
809         /* Take care of all the formalities. */
810
811         begin_critical_section(S_USERS);
812         CtdlGetRelationship(&vbuf, &CCC->user, &CCC->room);
813         original_v_flags = vbuf.v_flags;
814
815         /* Know the room ... but not if it's the page log room, or if the
816          * caller specified that we're only entering this room transiently.
817          */
818         if ((strcasecmp(CCC->room.QRname, CtdlGetConfigStr("c_logpages"))) && (transiently == 0))
819         {
820                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
821                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
822         }
823         
824         /* Only rewrite the database record if we changed something */
825         if (vbuf.v_flags != original_v_flags) {
826                 CtdlSetRelationship(&vbuf, &CCC->user, &CCC->room);
827         }
828         end_critical_section(S_USERS);
829
830         /* Check for new mail */
831         newmailcount = NewMailCount();
832
833         /* set info to 1 if the user needs to read the room's info file */
834         if (CCC->room.QRinfo > vbuf.v_lastseen) {
835                 info = 1;
836         }
837
838         cdbfr = cdb_fetch(CDB_MSGLISTS, &CCC->room.QRnumber, sizeof(long));
839         if (cdbfr != NULL) {
840                 msglist = (long *) cdbfr->ptr;
841                 cdbfr->ptr = NULL;      /* CtdlUserGoto() now owns this memory */
842                 num_msgs = cdbfr->len / sizeof(long);
843                 cdb_free(cdbfr);
844         }
845
846         total_messages = 0;
847         for (a=0; a<num_msgs; ++a) {
848                 if (msglist[a] > 0L) ++total_messages;
849         }
850
851         if (total_messages > 0) {
852                 oldest_message = msglist[0];
853                 newest_message = msglist[num_msgs - 1];
854         }
855
856         num_sets = num_tokens(vbuf.v_seen, ',');
857         for (s=0; s<num_sets; ++s) {
858                 extract_token(setstr, vbuf.v_seen, s, ',', sizeof setstr);
859
860                 extract_token(lostr, setstr, 0, ':', sizeof lostr);
861                 if (num_tokens(setstr, ':') >= 2) {
862                         extract_token(histr, setstr, 1, ':', sizeof histr);
863                         if (!strcmp(histr, "*")) {
864                                 snprintf(histr, sizeof histr, "%ld", LONG_MAX);
865                         }
866                 } 
867                 else {
868                         strcpy(histr, lostr);
869                 }
870                 lo = atol(lostr);
871                 hi = atol(histr);
872
873                 for (a=0; a<num_msgs; ++a) if (msglist[a] > 0L) {
874                         if ((msglist[a] >= lo) && (msglist[a] <= hi)) {
875                                 ++old_messages;
876                                 msglist[a] = 0L;
877                         }
878                 }
879         }
880         new_messages = total_messages - old_messages;
881
882         if (msglist != NULL) free(msglist);
883
884         if (CCC->room.QRflags & QR_MAILBOX)
885                 rmailflag = 1;
886         else
887                 rmailflag = 0;
888
889         if ((CCC->room.QRroomaide == CCC->user.usernum)
890             || (CCC->user.axlevel >= AxAideU))
891                 raideflag = 1;
892         else
893                 raideflag = 0;
894
895         safestrncpy(truncated_roomname, CCC->room.QRname, sizeof truncated_roomname);
896         if ( (CCC->room.QRflags & QR_MAILBOX)
897            && (atol(CCC->room.QRname) == CCC->user.usernum) ) {
898                 safestrncpy(truncated_roomname, &truncated_roomname[11], sizeof truncated_roomname);
899         }
900
901         if (!strcasecmp(truncated_roomname, USERTRASHROOM)) {
902                 is_trash = 1;
903         }
904
905         if (retmsgs != NULL) *retmsgs = total_messages;
906         if (retnew != NULL) *retnew = new_messages;
907         if (retoldest != NULL) *retoldest = oldest_message;
908         if (retnewest != NULL) *retnewest = newest_message;
909         MSG_syslog(LOG_INFO, "<%s> %d new of %d total messages, oldest=%ld, newest=%ld",
910                    CCC->room.QRname, new_messages, total_messages, oldest_message, newest_message
911         );
912
913         CCC->curr_view = (int)vbuf.v_view;
914
915         if (display_result) {
916                 cprintf("%d%c%s|%d|%d|%d|%d|%ld|%ld|%d|%d|%d|%d|%d|%d|%d|%d|%ld|\n",
917                         CIT_OK, CtdlCheckExpress(),
918                         truncated_roomname,
919                         (int)new_messages,
920                         (int)total_messages,
921                         (int)info,
922                         (int)CCC->room.QRflags,
923                         (long)CCC->room.QRhighest,
924                         (long)vbuf.v_lastseen,
925                         (int)rmailflag,
926                         (int)raideflag,
927                         (int)newmailcount,
928                         (int)CCC->room.QRfloor,
929                         (int)vbuf.v_view,
930                         (int)CCC->room.QRdefaultview,
931                         (int)is_trash,
932                         (int)CCC->room.QRflags2,
933                         (long)CCC->room.QRmtime
934                 );
935         }
936 }
937
938
939 /*
940  * Handle some of the macro named rooms
941  */
942 void convert_room_name_macros(char *towhere, size_t maxlen) {
943         if (!strcasecmp(towhere, "_BASEROOM_")) {
944                 safestrncpy(towhere, CtdlGetConfigStr("c_baseroom"), maxlen);
945         }
946         else if (!strcasecmp(towhere, "_MAIL_")) {
947                 safestrncpy(towhere, MAILROOM, maxlen);
948         }
949         else if (!strcasecmp(towhere, "_TRASH_")) {
950                 safestrncpy(towhere, USERTRASHROOM, maxlen);
951         }
952         else if (!strcasecmp(towhere, "_DRAFTS_")) {
953                 safestrncpy(towhere, USERDRAFTROOM, maxlen);
954         }
955         else if (!strcasecmp(towhere, "_BITBUCKET_")) {
956                 safestrncpy(towhere, CtdlGetConfigStr("c_twitroom"), maxlen);
957         }
958         else if (!strcasecmp(towhere, "_CALENDAR_")) {
959                 safestrncpy(towhere, USERCALENDARROOM, maxlen);
960         }
961         else if (!strcasecmp(towhere, "_TASKS_")) {
962                 safestrncpy(towhere, USERTASKSROOM, maxlen);
963         }
964         else if (!strcasecmp(towhere, "_CONTACTS_")) {
965                 safestrncpy(towhere, USERCONTACTSROOM, maxlen);
966         }
967         else if (!strcasecmp(towhere, "_NOTES_")) {
968                 safestrncpy(towhere, USERNOTESROOM, maxlen);
969         }
970 }
971
972
973 /*
974  * Back end function to rename a room.
975  * You can also specify which floor to move the room to, or specify -1 to
976  * keep the room on the same floor it was on.
977  *
978  * If you are renaming a mailbox room, you must supply the namespace prefix
979  * in *at least* the old name!
980  */
981 int CtdlRenameRoom(char *old_name, char *new_name, int new_floor) {
982         int old_floor = 0;
983         struct ctdlroom qrbuf;
984         struct ctdlroom qrtmp;
985         int ret = 0;
986         struct floor *fl;
987         struct floor flbuf;
988         long owner = 0L;
989         char actual_old_name[ROOMNAMELEN];
990
991         syslog(LOG_DEBUG, "CtdlRenameRoom(%s, %s, %d)", old_name, new_name, new_floor);
992
993         if (new_floor >= 0) {
994                 fl = CtdlGetCachedFloor(new_floor);
995                 if ((fl->f_flags & F_INUSE) == 0) {
996                         return(crr_invalid_floor);
997                 }
998         }
999
1000         begin_critical_section(S_ROOMS);
1001
1002         if ( (CtdlGetRoom(&qrtmp, new_name) == 0) 
1003            && (strcasecmp(new_name, old_name)) ) {
1004                 ret = crr_already_exists;
1005         }
1006
1007         else if (CtdlGetRoom(&qrbuf, old_name) != 0) {
1008                 ret = crr_room_not_found;
1009         }
1010
1011         else if ( (CC->user.axlevel < AxAideU) && (!CC->internal_pgm)
1012                   && (CC->user.usernum != qrbuf.QRroomaide)
1013                   && ( (((qrbuf.QRflags & QR_MAILBOX) == 0) || (atol(qrbuf.QRname) != CC->user.usernum))) )  {
1014                 ret = crr_access_denied;
1015         }
1016
1017         else if (CtdlIsNonEditable(&qrbuf)) {
1018                 ret = crr_noneditable;
1019         }
1020
1021         else {
1022                 /* Rename it */
1023                 safestrncpy(actual_old_name, qrbuf.QRname, sizeof actual_old_name);
1024                 if (qrbuf.QRflags & QR_MAILBOX) {
1025                         owner = atol(qrbuf.QRname);
1026                 }
1027                 if ( (owner > 0L) && (atol(new_name) == 0L) ) {
1028                         snprintf(qrbuf.QRname, sizeof(qrbuf.QRname),
1029                                         "%010ld.%s", owner, new_name);
1030                 }
1031                 else {
1032                         safestrncpy(qrbuf.QRname, new_name,
1033                                                 sizeof(qrbuf.QRname));
1034                 }
1035
1036                 /* Reject change of floor for baseroom/aideroom */
1037                 if (!strncasecmp(old_name, CtdlGetConfigStr("c_baseroom"), ROOMNAMELEN) ||
1038                     !strncasecmp(old_name, CtdlGetConfigStr("c_aideroom"), ROOMNAMELEN))
1039                 {
1040                         new_floor = 0;
1041                 }
1042
1043                 /* Take care of floor stuff */
1044                 old_floor = qrbuf.QRfloor;
1045                 if (new_floor < 0) {
1046                         new_floor = old_floor;
1047                 }
1048                 qrbuf.QRfloor = new_floor;
1049                 CtdlPutRoom(&qrbuf);
1050
1051                 begin_critical_section(S_CONFIG);
1052         
1053                 /* If baseroom/aideroom name changes, update config */
1054                 if (!strncasecmp(old_name, CtdlGetConfigStr("c_baseroom"), ROOMNAMELEN)) {
1055                         CtdlSetConfigStr("c_baseroom", new_name);
1056                 }
1057                 if (!strncasecmp(old_name, CtdlGetConfigStr("c_aideroom"), ROOMNAMELEN)) {
1058                         CtdlSetConfigStr("c_aideroom", new_name);
1059                 }
1060         
1061                 end_critical_section(S_CONFIG);
1062         
1063                 /* If the room name changed, then there are now two room
1064                  * records, so we have to delete the old one.
1065                  */
1066                 if (strcasecmp(new_name, old_name)) {
1067                         b_deleteroom(actual_old_name);
1068                 }
1069
1070                 ret = crr_ok;
1071         }
1072
1073         end_critical_section(S_ROOMS);
1074
1075         /* Adjust the floor reference counts if necessary */
1076         if (new_floor != old_floor) {
1077                 lgetfloor(&flbuf, old_floor);
1078                 --flbuf.f_ref_count;
1079                 lputfloor(&flbuf, old_floor);
1080                 syslog(LOG_DEBUG, "Reference count for floor %d is now %d", old_floor, flbuf.f_ref_count);
1081                 lgetfloor(&flbuf, new_floor);
1082                 ++flbuf.f_ref_count;
1083                 lputfloor(&flbuf, new_floor);
1084                 syslog(LOG_DEBUG, "Reference count for floor %d is now %d", new_floor, flbuf.f_ref_count);
1085         }
1086
1087         /* ...and everybody say "YATTA!" */     
1088         return(ret);
1089 }
1090
1091
1092 /*
1093  * Asynchronously schedule a room for deletion.  By placing the room into an invalid private namespace,
1094  * the room will appear deleted to the user(s), but the session doesn't need to block while waiting for
1095  * database operations to complete.  Instead, the room gets purged when THE DREADED AUTO-PURGER makes
1096  * its next run.  Aren't we so clever?!!
1097  */
1098 void CtdlScheduleRoomForDeletion(struct ctdlroom *qrbuf)
1099 {
1100         char old_name[ROOMNAMELEN];
1101         static int seq = 0;
1102
1103         syslog(LOG_NOTICE, "Scheduling room <%s> for deletion", qrbuf->QRname);
1104
1105         safestrncpy(old_name, qrbuf->QRname, sizeof old_name);
1106         CtdlGetRoom(qrbuf, qrbuf->QRname);
1107
1108         /* Turn the room into a private mailbox owned by a user who doesn't
1109          * exist.  This will immediately make the room invisible to everyone,
1110          * and qualify the room for purging.
1111          */
1112         snprintf(qrbuf->QRname, sizeof qrbuf->QRname, "9999999999.%08lx.%04d.%s",
1113                 time(NULL),
1114                 ++seq,
1115                 old_name
1116         );
1117         qrbuf->QRflags |= QR_MAILBOX;
1118         time(&qrbuf->QRgen);    /* Use a timestamp as the new generation number  */
1119         CtdlPutRoom(qrbuf);
1120         b_deleteroom(old_name);
1121 }
1122
1123
1124
1125 /*
1126  * Back end processing to delete a room and everything associated with it
1127  * (This one is synchronous and should only get called by THE DREADED
1128  * AUTO-PURGER in serv_expire.c.  All user-facing code should call
1129  * the asynchronous schedule_room_for_deletion() instead.)
1130  */
1131 void CtdlDeleteRoom(struct ctdlroom *qrbuf)
1132 {
1133         struct floor flbuf;
1134         char filename[PATH_MAX];
1135         char configdbkeyname[25];
1136
1137         syslog(LOG_NOTICE, "Deleting room <%s>", qrbuf->QRname);
1138
1139         /* Delete the info file */
1140         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_info_dir);
1141         unlink(filename);
1142
1143         /* Delete the image file */
1144         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_image_dir);
1145         unlink(filename);
1146
1147         /* Delete the room's network configdb entry */
1148         netcfg_keyname(configdbkeyname, qrbuf->QRnumber);
1149         CtdlDelConfig(configdbkeyname);
1150
1151         /* Delete the messages in the room
1152          * (Careful: this opens an S_ROOMS critical section!)
1153          */
1154         CtdlDeleteMessages(qrbuf->QRname, NULL, 0, "");
1155
1156         /* Flag the room record as not in use */
1157         CtdlGetRoomLock(qrbuf, qrbuf->QRname);
1158         qrbuf->QRflags = 0;
1159         CtdlPutRoomLock(qrbuf);
1160
1161         /* then decrement the reference count for the floor */
1162         lgetfloor(&flbuf, (int) (qrbuf->QRfloor));
1163         flbuf.f_ref_count = flbuf.f_ref_count - 1;
1164         lputfloor(&flbuf, (int) (qrbuf->QRfloor));
1165
1166         /* Delete the room record from the database! */
1167         b_deleteroom(qrbuf->QRname);
1168 }
1169
1170
1171 /*
1172  * Check access control for deleting a room
1173  */
1174 int CtdlDoIHavePermissionToDeleteThisRoom(struct ctdlroom *qr) {
1175
1176         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
1177                 return(0);
1178         }
1179
1180         if (CtdlIsNonEditable(qr)) {
1181                 return(0);
1182         }
1183
1184         /*
1185          * For mailboxes, check stuff
1186          */
1187         if (qr->QRflags & QR_MAILBOX) {
1188
1189                 if (strlen(qr->QRname) < 12) return(0); /* bad name */
1190
1191                 if (atol(qr->QRname) != CC->user.usernum) {
1192                         return(0);      /* not my room */
1193                 }
1194
1195                 /* Can't delete your Mail> room */
1196                 if (!strcasecmp(&qr->QRname[11], MAILROOM)) return(0);
1197
1198                 /* Otherwise it's ok */
1199                 return(1);
1200         }
1201
1202         /*
1203          * For normal rooms, just check for admin or room admin status.
1204          */
1205         return(is_room_aide());
1206 }
1207
1208
1209
1210 /*
1211  * Internal code to create a new room (returns room flags)
1212  *
1213  * Room types:  0=public, 1=hidden, 2=passworded, 3=invitation-only,
1214  *              4=mailbox, 5=mailbox, but caller supplies namespace
1215  */
1216 unsigned CtdlCreateRoom(char *new_room_name,
1217                      int new_room_type,
1218                      char *new_room_pass,
1219                      int new_room_floor,
1220                      int really_create,
1221                      int avoid_access,
1222                      int new_room_view)
1223 {
1224
1225         struct ctdlroom qrbuf;
1226         struct floor flbuf;
1227         visit vbuf;
1228
1229         syslog(LOG_DEBUG, "CtdlCreateRoom(name=%s, type=%d, view=%d)", new_room_name, new_room_type, new_room_view);
1230
1231         if (CtdlGetRoom(&qrbuf, new_room_name) == 0) {
1232                 syslog(LOG_DEBUG, "Cannot create room <%s> - already exists", new_room_name);
1233                 return(0);
1234         }
1235
1236         memset(&qrbuf, 0, sizeof(struct ctdlroom));
1237         safestrncpy(qrbuf.QRpasswd, new_room_pass, sizeof qrbuf.QRpasswd);
1238         qrbuf.QRflags = QR_INUSE;
1239         if (new_room_type > 0)
1240                 qrbuf.QRflags = (qrbuf.QRflags | QR_PRIVATE);
1241         if (new_room_type == 1)
1242                 qrbuf.QRflags = (qrbuf.QRflags | QR_GUESSNAME);
1243         if (new_room_type == 2)
1244                 qrbuf.QRflags = (qrbuf.QRflags | QR_PASSWORDED);
1245         if ( (new_room_type == 4) || (new_room_type == 5) ) {
1246                 qrbuf.QRflags = (qrbuf.QRflags | QR_MAILBOX);
1247                 /* qrbuf.QRflags2 |= QR2_SUBJECTREQ; */
1248         }
1249
1250         /* If the user is requesting a personal room, set up the room
1251          * name accordingly (prepend the user number)
1252          */
1253         if (new_room_type == 4) {
1254                 CtdlMailboxName(qrbuf.QRname, sizeof qrbuf.QRname, &CC->user, new_room_name);
1255         }
1256         else {
1257                 safestrncpy(qrbuf.QRname, new_room_name, sizeof qrbuf.QRname);
1258         }
1259
1260         /* If the room is private, and the system administrator has elected
1261          * to automatically grant room admin privileges, do so now.
1262          */
1263         if ((qrbuf.QRflags & QR_PRIVATE) && (CREATAIDE == 1)) {
1264                 qrbuf.QRroomaide = CC->user.usernum;
1265         }
1266         /* Blog owners automatically become room admins of their blogs.
1267          * (In the future we will offer a site-wide configuration setting to suppress this behavior.)
1268          */
1269         else if (new_room_view == VIEW_BLOG) {
1270                 qrbuf.QRroomaide = CC->user.usernum;
1271         }
1272         /* Otherwise, set the room admin to undefined.
1273          */
1274         else {
1275                 qrbuf.QRroomaide = (-1L);
1276         }
1277
1278         /* 
1279          * If the caller is only interested in testing whether this will work,
1280          * return now without creating the room.
1281          */
1282         if (!really_create) return (qrbuf.QRflags);
1283
1284         qrbuf.QRnumber = get_new_room_number();
1285         qrbuf.QRhighest = 0L;   /* No messages in this room yet */
1286         time(&qrbuf.QRgen);     /* Use a timestamp as the generation number */
1287         qrbuf.QRfloor = new_room_floor;
1288         qrbuf.QRdefaultview = new_room_view;
1289
1290         /* save what we just did... */
1291         CtdlPutRoom(&qrbuf);
1292
1293         /* bump the reference count on whatever floor the room is on */
1294         lgetfloor(&flbuf, (int) qrbuf.QRfloor);
1295         flbuf.f_ref_count = flbuf.f_ref_count + 1;
1296         lputfloor(&flbuf, (int) qrbuf.QRfloor);
1297
1298         /* Grant the creator access to the room unless the avoid_access
1299          * parameter was specified.
1300          */
1301         if ( (CC->logged_in) && (avoid_access == 0) ) {
1302                 CtdlGetRelationship(&vbuf, &CC->user, &qrbuf);
1303                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1304                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1305                 CtdlSetRelationship(&vbuf, &CC->user, &qrbuf);
1306         }
1307
1308         /* resume our happy day */
1309         return (qrbuf.QRflags);
1310 }