* add _DRAFTS_ to the userdata creator, and translate it apropriate into imap (mail...
[citadel.git] / citadel / room_ops.c
1 /* 
2  * $Id$
3  * 
4  * Server functions which perform operations on room objects.
5  *
6  */
7
8 #include "sysdep.h"
9 #include <stdlib.h>
10 #include <unistd.h>
11 #include <stdio.h>
12 #include <sys/stat.h>
13 #include <ctype.h>
14 #include <string.h>
15 #include <dirent.h>     /* for cmd_rdir to read contents of the directory */
16
17 #if TIME_WITH_SYS_TIME
18 # include <sys/time.h>
19 # include <time.h>
20 #else
21 # if HAVE_SYS_TIME_H
22 #  include <sys/time.h>
23 # else
24 #  include <time.h>
25 # endif
26 #endif
27
28 #include <limits.h>
29 #include <errno.h>
30 #include "citadel.h"
31 #include <libcitadel.h>
32 #include "server.h"
33 #include "database.h"
34 #include "config.h"
35 #include "room_ops.h"
36 #include "sysdep_decls.h"
37 #include "support.h"
38 #include "user_ops.h"
39 #include "msgbase.h"
40 #include "citserver.h"
41 #include "control.h"
42 #include "citadel_dirs.h"
43 #include "threads.h"
44
45 #include "ctdl_module.h"
46
47 struct floor *floorcache[MAXFLOORS];
48
49 /*
50  * Retrieve access control information for any user/room pair
51  */
52 void CtdlRoomAccess(struct ctdlroom *roombuf, struct ctdluser *userbuf,
53                 int *result, int *view)
54 {
55         int retval = 0;
56         struct visit vbuf;
57
58         /* for internal programs, always do everything */
59         if (((CC->internal_pgm)) && (roombuf->QRflags & QR_INUSE)) {
60                 retval = (UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED);
61                 vbuf.v_view = 0;
62                 goto SKIP_EVERYTHING;
63         }
64
65         /* Locate any applicable user/room relationships */
66         CtdlGetRelationship(&vbuf, userbuf, roombuf);
67
68         /* Force the properties of the Aide room */
69         if (!strcasecmp(roombuf->QRname, config.c_aideroom)) {
70                 if (userbuf->axlevel >= 6) {
71                         retval = UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED | UA_DELETEALLOWED;
72                 } else {
73                         retval = 0;
74                 }
75                 goto NEWMSG;
76         }
77
78         /* If this is a public room, it's accessible... */
79         if ( ((roombuf->QRflags & QR_PRIVATE) == 0) 
80            && ((roombuf->QRflags & QR_MAILBOX) == 0) ) {
81                 retval = retval | UA_KNOWN | UA_GOTOALLOWED;
82         }
83
84         /* If this is a preferred users only room, check access level */
85         if (roombuf->QRflags & QR_PREFONLY) {
86                 if (userbuf->axlevel < 5) {
87                         retval = retval & ~UA_KNOWN & ~UA_GOTOALLOWED;
88                 }
89         }
90
91         /* For private rooms, check the generation number matchups */
92         if ( (roombuf->QRflags & QR_PRIVATE) 
93            && ((roombuf->QRflags & QR_MAILBOX) == 0) ) {
94
95                 /* An explicit match means the user belongs in this room */
96                 if (vbuf.v_flags & V_ACCESS) {
97                         retval = retval | UA_KNOWN | UA_GOTOALLOWED;
98                 }
99                 /* Otherwise, check if this is a guess-name or passworded
100                  * room.  If it is, a goto may at least be attempted
101                  */
102                 else if ((roombuf->QRflags & QR_PRIVATE)
103                          || (roombuf->QRflags & QR_PASSWORDED)) {
104                         retval = retval & ~UA_KNOWN;
105                         retval = retval | UA_GOTOALLOWED;
106                 }
107         }
108
109         /* For mailbox rooms, also check the namespace */
110         /* Also, mailbox owners can delete their messages */
111         if (roombuf->QRflags & QR_MAILBOX) {
112                 if (userbuf->usernum == atol(roombuf->QRname)) {
113                         retval = retval | UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED | UA_DELETEALLOWED;
114                 }
115                 /* An explicit match means the user belongs in this room */
116                 if (vbuf.v_flags & V_ACCESS) {
117                         retval = retval | UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED | UA_DELETEALLOWED;
118                 }
119         }
120
121         /* For non-mailbox rooms... */
122         else {
123
124                 /* User is allowed to post in the room unless:
125                  * - User is not validated
126                  * - User has no net privileges and it is a shared network room
127                  * - It is a read-only room
128                  */
129                 int post_allowed = 1;
130                 if (CC->user.axlevel < 2) post_allowed = 0;
131                 if ((CC->user.axlevel < 4) && (CC->room.QRflags & QR_NETWORK)) post_allowed = 0;
132                 if (roombuf->QRflags & QR_READONLY) post_allowed = 0;
133                 if (post_allowed) {
134                         retval = retval | UA_POSTALLOWED;
135                 }
136
137                 /* If "collaborative deletion" is active for this room, any user who can post
138                  * is also allowed to delete
139                  */
140                 if (CC->room.QRflags2 & QR2_COLLABDEL) {
141                         if (retval & UA_POSTALLOWED) {
142                                 retval = retval | UA_DELETEALLOWED;
143                         }
144                 }
145
146         }
147
148         /* Check to see if the user has forgotten this room */
149         if (vbuf.v_flags & V_FORGET) {
150                 retval = retval & ~UA_KNOWN;
151                 if ( ( ((roombuf->QRflags & QR_PRIVATE) == 0) 
152                       && ((roombuf->QRflags & QR_MAILBOX) == 0) )
153                    || ( (roombuf->QRflags & QR_MAILBOX) 
154                       && (atol(roombuf->QRname) == CC->user.usernum))) {
155                         retval = retval | UA_ZAPPED;
156                 }
157         }
158         /* If user is explicitly locked out of this room, deny everything */
159         if (vbuf.v_flags & V_LOCKOUT) {
160                 retval = retval & ~UA_KNOWN & ~UA_GOTOALLOWED & ~UA_POSTALLOWED;
161         }
162
163         /* Aides get access to all private rooms */
164         if ( (userbuf->axlevel >= 6)
165            && ((roombuf->QRflags & QR_MAILBOX) == 0) ) {
166                 if (vbuf.v_flags & V_FORGET) {
167                         retval = retval | UA_GOTOALLOWED | UA_POSTALLOWED;
168                 }
169                 else {
170                         retval = retval | UA_KNOWN | UA_GOTOALLOWED | UA_POSTALLOWED;
171                 }
172         }
173
174         /* Aides can gain access to mailboxes as well, but they don't show
175          * by default.
176          */
177         if ( (userbuf->axlevel >= 6)
178            && (roombuf->QRflags & QR_MAILBOX) ) {
179                 retval = retval | UA_GOTOALLOWED | UA_POSTALLOWED;
180         }
181
182         /* Aides and Room Aides have admin privileges */
183         if ( (userbuf->axlevel >= 6)
184            || (userbuf->usernum == roombuf->QRroomaide)
185            ) {
186                 retval = retval | UA_ADMINALLOWED | UA_DELETEALLOWED | UA_POSTALLOWED;
187         }
188
189 NEWMSG: /* By the way, we also check for the presence of new messages */
190         if (is_msg_in_sequence_set(vbuf.v_seen, roombuf->QRhighest) == 0) {
191                 retval = retval | UA_HASNEWMSGS;
192         }
193
194         /* System rooms never show up in the list. */
195         if (roombuf->QRflags2 & QR2_SYSTEM) {
196                 retval = retval & ~UA_KNOWN;
197         }
198
199 SKIP_EVERYTHING:
200         /* Now give the caller the information it wants. */
201         if (result != NULL) *result = retval;
202         if (view != NULL) *view = vbuf.v_view;
203 }
204
205 /*
206  * Self-checking stuff for a room record read into memory
207  */
208 void room_sanity_check(struct ctdlroom *qrbuf)
209 {
210         /* Mailbox rooms are always on the lowest floor */
211         if (qrbuf->QRflags & QR_MAILBOX) {
212                 qrbuf->QRfloor = 0;
213         }
214         /* Listing order of 0 is illegal except for base rooms */
215         if (qrbuf->QRorder == 0)
216                 if (!(qrbuf->QRflags & QR_MAILBOX) &&
217                     strncasecmp(qrbuf->QRname, config.c_baseroom, ROOMNAMELEN)
218                     &&
219                     strncasecmp(qrbuf->QRname, config.c_aideroom, ROOMNAMELEN))
220                         qrbuf->QRorder = 64;
221 }
222
223
224 /*
225  * getroom()  -  retrieve room data from disk
226  */
227 int getroom(struct ctdlroom *qrbuf, char *room_name)
228 {
229         struct cdbdata *cdbqr;
230         char lowercase_name[ROOMNAMELEN];
231         char personal_lowercase_name[ROOMNAMELEN];
232         char *dptr, *sptr, *eptr;
233
234         dptr = lowercase_name;
235         sptr = room_name;
236         eptr = (dptr + (sizeof lowercase_name - 1));
237         while (!IsEmptyStr(sptr) && (dptr < eptr)){
238                 *dptr = tolower(*sptr);
239                 sptr++; dptr++;
240         }
241         *dptr = '\0';
242
243         memset(qrbuf, 0, sizeof(struct ctdlroom));
244
245         /* First, try the public namespace */
246         cdbqr = cdb_fetch(CDB_ROOMS,
247                           lowercase_name, strlen(lowercase_name));
248
249         /* If that didn't work, try the user's personal namespace */
250         if (cdbqr == NULL) {
251                 snprintf(personal_lowercase_name,
252                          sizeof personal_lowercase_name, "%010ld.%s",
253                          CC->user.usernum, lowercase_name);
254                 cdbqr = cdb_fetch(CDB_ROOMS,
255                                   personal_lowercase_name,
256                                   strlen(personal_lowercase_name));
257         }
258         if (cdbqr != NULL) {
259                 memcpy(qrbuf, cdbqr->ptr,
260                        ((cdbqr->len > sizeof(struct ctdlroom)) ?
261                         sizeof(struct ctdlroom) : cdbqr->len));
262                 cdb_free(cdbqr);
263
264                 room_sanity_check(qrbuf);
265
266                 return (0);
267         } else {
268                 return (1);
269         }
270 }
271
272 /*
273  * lgetroom()  -  same as getroom() but locks the record (if supported)
274  */
275 int lgetroom(struct ctdlroom *qrbuf, char *room_name)
276 {
277         register int retval;
278         retval = getroom(qrbuf, room_name);
279         if (retval == 0) begin_critical_section(S_ROOMS);
280         return(retval);
281 }
282
283
284 /*
285  * b_putroom()  -  back end to putroom() and b_deleteroom()
286  *              (if the supplied buffer is NULL, delete the room record)
287  */
288 void b_putroom(struct ctdlroom *qrbuf, char *room_name)
289 {
290         char lowercase_name[ROOMNAMELEN];
291         char *aptr, *bptr;
292         long len;
293
294         aptr = room_name;
295         bptr = lowercase_name;
296         while (!IsEmptyStr(aptr))
297         {
298                 *bptr = tolower(*aptr);
299                 aptr++;
300                 bptr++;
301         }
302         *bptr='\0';
303
304         len = bptr - lowercase_name;
305         if (qrbuf == NULL) {
306                 cdb_delete(CDB_ROOMS,
307                            lowercase_name, len);
308         } else {
309                 time(&qrbuf->QRmtime);
310                 cdb_store(CDB_ROOMS,
311                           lowercase_name, len,
312                           qrbuf, sizeof(struct ctdlroom));
313         }
314 }
315
316
317 /* 
318  * putroom()  -  store room data to disk
319  */
320 void putroom(struct ctdlroom *qrbuf) {
321         b_putroom(qrbuf, qrbuf->QRname);
322 }
323
324
325 /*
326  * b_deleteroom()  -  delete a room record from disk
327  */
328 void b_deleteroom(char *room_name) {
329         b_putroom(NULL, room_name);
330 }
331
332
333
334 /*
335  * lputroom()  -  same as putroom() but unlocks the record (if supported)
336  */
337 void lputroom(struct ctdlroom *qrbuf)
338 {
339
340         putroom(qrbuf);
341         end_critical_section(S_ROOMS);
342
343 }
344
345 /****************************************************************************/
346
347 /*
348  * getfloor()  -  retrieve floor data from disk
349  */
350 void getfloor(struct floor *flbuf, int floor_num)
351 {
352         struct cdbdata *cdbfl;
353
354         memset(flbuf, 0, sizeof(struct floor));
355         cdbfl = cdb_fetch(CDB_FLOORTAB, &floor_num, sizeof(int));
356         if (cdbfl != NULL) {
357                 memcpy(flbuf, cdbfl->ptr,
358                        ((cdbfl->len > sizeof(struct floor)) ?
359                         sizeof(struct floor) : cdbfl->len));
360                 cdb_free(cdbfl);
361         } else {
362                 if (floor_num == 0) {
363                         safestrncpy(flbuf->f_name, "Main Floor", 
364                                 sizeof flbuf->f_name);
365                         flbuf->f_flags = F_INUSE;
366                         flbuf->f_ref_count = 3;
367                 }
368         }
369
370 }
371
372 /*
373  * lgetfloor()  -  same as getfloor() but locks the record (if supported)
374  */
375 void lgetfloor(struct floor *flbuf, int floor_num)
376 {
377
378         begin_critical_section(S_FLOORTAB);
379         getfloor(flbuf, floor_num);
380 }
381
382
383 /*
384  * cgetfloor()  -  Get floor record from *cache* (loads from disk if needed)
385  *    
386  * This is strictly a performance hack.
387  */
388 struct floor *cgetfloor(int floor_num) {
389         static int initialized = 0;
390         int i;
391         int fetch_new = 0;
392         struct floor *fl = NULL;
393
394         begin_critical_section(S_FLOORCACHE);
395         if (initialized == 0) {
396                 for (i=0; i<MAXFLOORS; ++i) {
397                         floorcache[floor_num] = NULL;
398                 }
399         initialized = 1;
400         }
401         if (floorcache[floor_num] == NULL) {
402                 fetch_new = 1;
403         }
404         end_critical_section(S_FLOORCACHE);
405
406         if (fetch_new) {
407                 fl = malloc(sizeof(struct floor));
408                 getfloor(fl, floor_num);
409                 begin_critical_section(S_FLOORCACHE);
410                 if (floorcache[floor_num] != NULL) {
411                         free(floorcache[floor_num]);
412                 }
413                 floorcache[floor_num] = fl;
414                 end_critical_section(S_FLOORCACHE);
415         }
416
417         return(floorcache[floor_num]);
418 }
419
420
421
422 /*
423  * putfloor()  -  store floor data on disk
424  */
425 void putfloor(struct floor *flbuf, int floor_num)
426 {
427         /* If we've cached this, clear it out, 'cuz it's WRONG now! */
428         begin_critical_section(S_FLOORCACHE);
429         if (floorcache[floor_num] != NULL) {
430                 free(floorcache[floor_num]);
431                 floorcache[floor_num] = malloc(sizeof(struct floor));
432                 memcpy(floorcache[floor_num], flbuf, sizeof(struct floor));
433         }
434         end_critical_section(S_FLOORCACHE);
435
436         cdb_store(CDB_FLOORTAB, &floor_num, sizeof(int),
437                   flbuf, sizeof(struct floor));
438 }
439
440
441 /*
442  * lputfloor()  -  same as putfloor() but unlocks the record (if supported)
443  */
444 void lputfloor(struct floor *flbuf, int floor_num)
445 {
446
447         putfloor(flbuf, floor_num);
448         end_critical_section(S_FLOORTAB);
449
450 }
451
452
453 /* 
454  *  Traverse the room file...
455  */
456 void ForEachRoom(void (*CallBack) (struct ctdlroom *EachRoom, void *out_data),
457                 void *in_data)
458 {
459         struct ctdlroom qrbuf;
460         struct cdbdata *cdbqr;
461
462         cdb_rewind(CDB_ROOMS);
463
464         while (cdbqr = cdb_next_item(CDB_ROOMS), cdbqr != NULL) {
465                 memset(&qrbuf, 0, sizeof(struct ctdlroom));
466                 memcpy(&qrbuf, cdbqr->ptr,
467                        ((cdbqr->len > sizeof(struct ctdlroom)) ?
468                         sizeof(struct ctdlroom) : cdbqr->len));
469                 cdb_free(cdbqr);
470                 room_sanity_check(&qrbuf);
471                 if (qrbuf.QRflags & QR_INUSE)
472                         (*CallBack)(&qrbuf, in_data);
473         }
474 }
475
476
477 /*
478  * delete_msglist()  -  delete room message pointers
479  */
480 void delete_msglist(struct ctdlroom *whichroom)
481 {
482         struct cdbdata *cdbml;
483
484         /* Make sure the msglist we're deleting actually exists, otherwise
485          * gdbm will complain when we try to delete an invalid record
486          */
487         cdbml = cdb_fetch(CDB_MSGLISTS, &whichroom->QRnumber, sizeof(long));
488         if (cdbml != NULL) {
489                 cdb_free(cdbml);
490
491                 /* Go ahead and delete it */
492                 cdb_delete(CDB_MSGLISTS, &whichroom->QRnumber, sizeof(long));
493         }
494 }
495
496
497
498 /*
499  * Message pointer compare function for sort_msglist()
500  */
501 int sort_msglist_cmp(const void *m1, const void *m2) {
502         if ((*(const long *)m1) > (*(const long *)m2)) return(1);
503         if ((*(const long *)m1) < (*(const long *)m2)) return(-1);
504         return(0);
505 }
506
507
508 /*
509  * sort message pointers
510  * (returns new msg count)
511  */
512 int sort_msglist(long listptrs[], int oldcount)
513 {
514         int numitems;
515
516         numitems = oldcount;
517         if (numitems < 2) {
518                 return (oldcount);
519         }
520
521         /* do the sort */
522         qsort(listptrs, numitems, sizeof(long), sort_msglist_cmp);
523
524         /* and yank any nulls */
525         while ((numitems > 0) && (listptrs[0] == 0L)) {
526                 memmove(&listptrs[0], &listptrs[1],
527                        (sizeof(long) * (numitems - 1)));
528                 --numitems;
529         }
530
531         return (numitems);
532 }
533
534
535 /*
536  * Determine whether a given room is non-editable.
537  */
538 int is_noneditable(struct ctdlroom *qrbuf)
539 {
540
541         /* Mail> rooms are non-editable */
542         if ( (qrbuf->QRflags & QR_MAILBOX)
543              && (!strcasecmp(&qrbuf->QRname[11], MAILROOM)) )
544                 return (1);
545
546         /* Everything else is editable */
547         return (0);
548 }
549
550
551
552 /*
553  * Back-back-end for all room listing commands
554  */
555 void list_roomname(struct ctdlroom *qrbuf, int ra, int current_view, int default_view)
556 {
557         char truncated_roomname[ROOMNAMELEN];
558
559         /* For my own mailbox rooms, chop off the owner prefix */
560         if ( (qrbuf->QRflags & QR_MAILBOX)
561              && (atol(qrbuf->QRname) == CC->user.usernum) ) {
562                 safestrncpy(truncated_roomname, qrbuf->QRname, sizeof truncated_roomname);
563                 safestrncpy(truncated_roomname, &truncated_roomname[11], sizeof truncated_roomname);
564                 cprintf("%s", truncated_roomname);
565         }
566         /* For all other rooms, just display the name in its entirety */
567         else {
568                 cprintf("%s", qrbuf->QRname);
569         }
570
571         /* ...and now the other parameters */
572         cprintf("|%u|%d|%d|%d|%d|%d|%d|%ld|\n",
573                 qrbuf->QRflags,
574                 (int) qrbuf->QRfloor,
575                 (int) qrbuf->QRorder,
576                 (int) qrbuf->QRflags2,
577                 ra,
578                 current_view,
579                 default_view,
580                 qrbuf->QRmtime
581         );
582 }
583
584
585 /* 
586  * cmd_lrms()   -  List all accessible rooms, known or forgotten
587  */
588 void cmd_lrms_backend(struct ctdlroom *qrbuf, void *data)
589 {
590         int FloorBeingSearched = (-1);
591         int ra;
592         int view;
593
594         FloorBeingSearched = *(int *)data;
595         CtdlRoomAccess(qrbuf, &CC->user, &ra, &view);
596
597         if ((( ra & (UA_KNOWN | UA_ZAPPED)))
598             && ((qrbuf->QRfloor == (FloorBeingSearched))
599                 || ((FloorBeingSearched) < 0)))
600                 list_roomname(qrbuf, ra, view, qrbuf->QRdefaultview);
601 }
602
603 void cmd_lrms(char *argbuf)
604 {
605         int FloorBeingSearched = (-1);
606         if (!IsEmptyStr(argbuf))
607                 FloorBeingSearched = extract_int(argbuf, 0);
608
609         if (CtdlAccessCheck(ac_logged_in)) return;
610
611         if (getuser(&CC->user, CC->curr_user)) {
612                 cprintf("%d Can't locate user!\n", ERROR + INTERNAL_ERROR);
613                 return;
614         }
615         cprintf("%d Accessible rooms:\n", LISTING_FOLLOWS);
616
617         ForEachRoom(cmd_lrms_backend, &FloorBeingSearched);
618         cprintf("000\n");
619 }
620
621
622
623 /* 
624  * cmd_lkra()   -  List all known rooms
625  */
626 void cmd_lkra_backend(struct ctdlroom *qrbuf, void *data)
627 {
628         int FloorBeingSearched = (-1);
629         int ra;
630         int view;
631
632         FloorBeingSearched = *(int *)data;
633         CtdlRoomAccess(qrbuf, &CC->user, &ra, &view);
634
635         if ((( ra & (UA_KNOWN)))
636             && ((qrbuf->QRfloor == (FloorBeingSearched))
637                 || ((FloorBeingSearched) < 0)))
638                 list_roomname(qrbuf, ra, view, qrbuf->QRdefaultview);
639 }
640
641 void cmd_lkra(char *argbuf)
642 {
643         int FloorBeingSearched = (-1);
644         if (!IsEmptyStr(argbuf))
645                 FloorBeingSearched = extract_int(argbuf, 0);
646
647         if (CtdlAccessCheck(ac_logged_in)) return;
648         
649         if (getuser(&CC->user, CC->curr_user)) {
650                 cprintf("%d Can't locate user!\n", ERROR + INTERNAL_ERROR);
651                 return;
652         }
653         cprintf("%d Known rooms:\n", LISTING_FOLLOWS);
654
655         ForEachRoom(cmd_lkra_backend, &FloorBeingSearched);
656         cprintf("000\n");
657 }
658
659
660
661 void cmd_lprm_backend(struct ctdlroom *qrbuf, void *data)
662 {
663         int FloorBeingSearched = (-1);
664         int ra;
665         int view;
666
667         FloorBeingSearched = *(int *)data;
668         CtdlRoomAccess(qrbuf, &CC->user, &ra, &view);
669
670         if (   ((qrbuf->QRflags & QR_PRIVATE) == 0)
671                 && ((qrbuf->QRflags & QR_MAILBOX) == 0)
672             && ((qrbuf->QRfloor == (FloorBeingSearched))
673                 || ((FloorBeingSearched) < 0)))
674                 list_roomname(qrbuf, ra, view, qrbuf->QRdefaultview);
675 }
676
677 void cmd_lprm(char *argbuf)
678 {
679         int FloorBeingSearched = (-1);
680         if (!IsEmptyStr(argbuf))
681                 FloorBeingSearched = extract_int(argbuf, 0);
682
683         cprintf("%d Publiic rooms:\n", LISTING_FOLLOWS);
684
685         ForEachRoom(cmd_lprm_backend, &FloorBeingSearched);
686         cprintf("000\n");
687 }
688
689
690
691 /* 
692  * cmd_lkrn()   -  List all known rooms with new messages
693  */
694 void cmd_lkrn_backend(struct ctdlroom *qrbuf, void *data)
695 {
696         int FloorBeingSearched = (-1);
697         int ra;
698         int view;
699
700         FloorBeingSearched = *(int *)data;
701         CtdlRoomAccess(qrbuf, &CC->user, &ra, &view);
702
703         if ((ra & UA_KNOWN)
704             && (ra & UA_HASNEWMSGS)
705             && ((qrbuf->QRfloor == (FloorBeingSearched))
706                 || ((FloorBeingSearched) < 0)))
707                 list_roomname(qrbuf, ra, view, qrbuf->QRdefaultview);
708 }
709
710 void cmd_lkrn(char *argbuf)
711 {
712         int FloorBeingSearched = (-1);
713         if (!IsEmptyStr(argbuf))
714                 FloorBeingSearched = extract_int(argbuf, 0);
715
716         if (CtdlAccessCheck(ac_logged_in)) return;
717         
718         if (getuser(&CC->user, CC->curr_user)) {
719                 cprintf("%d Can't locate user!\n", ERROR + INTERNAL_ERROR);
720                 return;
721         }
722         cprintf("%d Rooms w/ new msgs:\n", LISTING_FOLLOWS);
723
724         ForEachRoom(cmd_lkrn_backend, &FloorBeingSearched);
725         cprintf("000\n");
726 }
727
728
729
730 /* 
731  * cmd_lkro()   -  List all known rooms
732  */
733 void cmd_lkro_backend(struct ctdlroom *qrbuf, void *data)
734 {
735         int FloorBeingSearched = (-1);
736         int ra;
737         int view;
738
739         FloorBeingSearched = *(int *)data;
740         CtdlRoomAccess(qrbuf, &CC->user, &ra, &view);
741
742         if ((ra & UA_KNOWN)
743             && ((ra & UA_HASNEWMSGS) == 0)
744             && ((qrbuf->QRfloor == (FloorBeingSearched))
745                 || ((FloorBeingSearched) < 0)))
746                 list_roomname(qrbuf, ra, view, qrbuf->QRdefaultview);
747 }
748
749 void cmd_lkro(char *argbuf)
750 {
751         int FloorBeingSearched = (-1);
752         if (!IsEmptyStr(argbuf))
753                 FloorBeingSearched = extract_int(argbuf, 0);
754
755         if (CtdlAccessCheck(ac_logged_in)) return;
756         
757         if (getuser(&CC->user, CC->curr_user)) {
758                 cprintf("%d Can't locate user!\n", ERROR + INTERNAL_ERROR);
759                 return;
760         }
761         cprintf("%d Rooms w/o new msgs:\n", LISTING_FOLLOWS);
762
763         ForEachRoom(cmd_lkro_backend, &FloorBeingSearched);
764         cprintf("000\n");
765 }
766
767
768
769 /* 
770  * cmd_lzrm()   -  List all forgotten rooms
771  */
772 void cmd_lzrm_backend(struct ctdlroom *qrbuf, void *data)
773 {
774         int FloorBeingSearched = (-1);
775         int ra;
776         int view;
777
778         FloorBeingSearched = *(int *)data;
779         CtdlRoomAccess(qrbuf, &CC->user, &ra, &view);
780
781         if ((ra & UA_GOTOALLOWED)
782             && (ra & UA_ZAPPED)
783             && ((qrbuf->QRfloor == (FloorBeingSearched))
784                 || ((FloorBeingSearched) < 0)))
785                 list_roomname(qrbuf, ra, view, qrbuf->QRdefaultview);
786 }
787
788 void cmd_lzrm(char *argbuf)
789 {
790         int FloorBeingSearched = (-1);
791         if (!IsEmptyStr(argbuf))
792                 FloorBeingSearched = extract_int(argbuf, 0);
793
794         if (CtdlAccessCheck(ac_logged_in)) return;
795         
796         if (getuser(&CC->user, CC->curr_user)) {
797                 cprintf("%d Can't locate user!\n", ERROR + INTERNAL_ERROR);
798                 return;
799         }
800         cprintf("%d Zapped rooms:\n", LISTING_FOLLOWS);
801
802         ForEachRoom(cmd_lzrm_backend, &FloorBeingSearched);
803         cprintf("000\n");
804 }
805
806
807 /*
808  * Make the specified room the current room for this session.  No validation
809  * or access control is done here -- the caller should make sure that the
810  * specified room exists and is ok to access.
811  */
812 void usergoto(char *where, int display_result, int transiently,
813                 int *retmsgs, int *retnew)
814 {
815         int a;
816         int new_messages = 0;
817         int old_messages = 0;
818         int total_messages = 0;
819         int info = 0;
820         int rmailflag;
821         int raideflag;
822         int newmailcount = 0;
823         struct visit vbuf;
824         char truncated_roomname[ROOMNAMELEN];
825         struct cdbdata *cdbfr;
826         long *msglist = NULL;
827         int num_msgs = 0;
828         unsigned int original_v_flags;
829         int num_sets;
830         int s;
831         char setstr[128], lostr[64], histr[64];
832         long lo, hi;
833         int is_trash = 0;
834
835         /* If the supplied room name is NULL, the caller wants us to know that
836          * it has already copied the room record into CC->room, so
837          * we can skip the extra database fetch.
838          */
839         if (where != NULL) {
840                 safestrncpy(CC->room.QRname, where, sizeof CC->room.QRname);
841                 getroom(&CC->room, where);
842         }
843
844         /* Take care of all the formalities. */
845
846         begin_critical_section(S_USERS);
847         CtdlGetRelationship(&vbuf, &CC->user, &CC->room);
848         original_v_flags = vbuf.v_flags;
849
850         /* Know the room ... but not if it's the page log room, or if the
851          * caller specified that we're only entering this room transiently.
852          */
853         if ((strcasecmp(CC->room.QRname, config.c_logpages))
854            && (transiently == 0) ) {
855                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
856                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
857         }
858         
859         /* Only rewrite the database record if we changed something */
860         if (vbuf.v_flags != original_v_flags) {
861                 CtdlSetRelationship(&vbuf, &CC->user, &CC->room);
862         }
863         end_critical_section(S_USERS);
864
865         /* Check for new mail */
866         newmailcount = NewMailCount();
867
868         /* set info to 1 if the user needs to read the room's info file */
869         if (CC->room.QRinfo > vbuf.v_lastseen) {
870                 info = 1;
871         }
872
873         cdbfr = cdb_fetch(CDB_MSGLISTS, &CC->room.QRnumber, sizeof(long));
874         if (cdbfr != NULL) {
875                 msglist = (long *) cdbfr->ptr;
876                 cdbfr->ptr = NULL;      /* usergoto() now owns this memory */
877                 num_msgs = cdbfr->len / sizeof(long);
878                 cdb_free(cdbfr);
879         }
880
881         total_messages = 0;
882         for (a=0; a<num_msgs; ++a) {
883                 if (msglist[a] > 0L) ++total_messages;
884         }
885         new_messages = num_msgs;
886         num_sets = num_tokens(vbuf.v_seen, ',');
887         for (s=0; s<num_sets; ++s) {
888                 extract_token(setstr, vbuf.v_seen, s, ',', sizeof setstr);
889
890                 extract_token(lostr, setstr, 0, ':', sizeof lostr);
891                 if (num_tokens(setstr, ':') >= 2) {
892                         extract_token(histr, setstr, 1, ':', sizeof histr);
893                         if (!strcmp(histr, "*")) {
894                                 snprintf(histr, sizeof histr, "%ld", LONG_MAX);
895                         }
896                 } 
897                 else {
898                         strcpy(histr, lostr);
899                 }
900                 lo = atol(lostr);
901                 hi = atol(histr);
902
903                 for (a=0; a<num_msgs; ++a) if (msglist[a] > 0L) {
904                         if ((msglist[a] >= lo) && (msglist[a] <= hi)) {
905                                 ++old_messages;
906                                 msglist[a] = 0L;
907                         }
908                 }
909         }
910         new_messages = total_messages - old_messages;
911
912         if (msglist != NULL) free(msglist);
913
914         if (CC->room.QRflags & QR_MAILBOX)
915                 rmailflag = 1;
916         else
917                 rmailflag = 0;
918
919         if ((CC->room.QRroomaide == CC->user.usernum)
920             || (CC->user.axlevel >= 6))
921                 raideflag = 1;
922         else
923                 raideflag = 0;
924
925         safestrncpy(truncated_roomname, CC->room.QRname, sizeof truncated_roomname);
926         if ( (CC->room.QRflags & QR_MAILBOX)
927            && (atol(CC->room.QRname) == CC->user.usernum) ) {
928                 safestrncpy(truncated_roomname, &truncated_roomname[11], sizeof truncated_roomname);
929         }
930
931         if (!strcasecmp(truncated_roomname, USERTRASHROOM)) {
932                 is_trash = 1;
933         }
934
935         if (retmsgs != NULL) *retmsgs = total_messages;
936         if (retnew != NULL) *retnew = new_messages;
937         CtdlLogPrintf(CTDL_DEBUG, "<%s> %d new of %d total messages\n",
938                 CC->room.QRname,
939                 new_messages, total_messages
940         );
941
942         CC->curr_view = (int)vbuf.v_view;
943
944         if (display_result) {
945                 cprintf("%d%c%s|%d|%d|%d|%d|%ld|%ld|%d|%d|%d|%d|%d|%d|%d|%d|\n",
946                         CIT_OK, CtdlCheckExpress(),
947                         truncated_roomname,
948                         (int)new_messages,
949                         (int)total_messages,
950                         (int)info,
951                         (int)CC->room.QRflags,
952                         (long)CC->room.QRhighest,
953                         (long)vbuf.v_lastseen,
954                         (int)rmailflag,
955                         (int)raideflag,
956                         (int)newmailcount,
957                         (int)CC->room.QRfloor,
958                         (int)vbuf.v_view,
959                         (int)CC->room.QRdefaultview,
960                         (int)is_trash,
961                         (int)CC->room.QRflags2
962                 );
963         }
964 }
965
966
967 /*
968  * Handle some of the macro named rooms
969  */
970 void convert_room_name_macros(char *towhere, size_t maxlen) {
971         if (!strcasecmp(towhere, "_BASEROOM_")) {
972                 safestrncpy(towhere, config.c_baseroom, maxlen);
973         }
974         else if (!strcasecmp(towhere, "_MAIL_")) {
975                 safestrncpy(towhere, MAILROOM, maxlen);
976         }
977         else if (!strcasecmp(towhere, "_TRASH_")) {
978                 safestrncpy(towhere, USERTRASHROOM, maxlen);
979         }
980         else if (!strcasecmp(towhere, "_DRAFTS_")) {
981                 safestrncpy(towhere, USERDRAFTROOM, maxlen);
982         }
983         else if (!strcasecmp(towhere, "_BITBUCKET_")) {
984                 safestrncpy(towhere, config.c_twitroom, maxlen);
985         }
986         else if (!strcasecmp(towhere, "_CALENDAR_")) {
987                 safestrncpy(towhere, USERCALENDARROOM, maxlen);
988         }
989         else if (!strcasecmp(towhere, "_TASKS_")) {
990                 safestrncpy(towhere, USERTASKSROOM, maxlen);
991         }
992         else if (!strcasecmp(towhere, "_CONTACTS_")) {
993                 safestrncpy(towhere, USERCONTACTSROOM, maxlen);
994         }
995         else if (!strcasecmp(towhere, "_NOTES_")) {
996                 safestrncpy(towhere, USERNOTESROOM, maxlen);
997         }
998 }
999
1000
1001 /* 
1002  * cmd_goto()  -  goto a new room
1003  */
1004 void cmd_goto(char *gargs)
1005 {
1006         struct ctdlroom QRscratch;
1007         int c;
1008         int ok = 0;
1009         int ra;
1010         char augmented_roomname[ROOMNAMELEN];
1011         char towhere[ROOMNAMELEN];
1012         char password[32];
1013         int transiently = 0;
1014
1015         if (CtdlAccessCheck(ac_logged_in)) return;
1016
1017         extract_token(towhere, gargs, 0, '|', sizeof towhere);
1018         extract_token(password, gargs, 1, '|', sizeof password);
1019         transiently = extract_int(gargs, 2);
1020
1021         getuser(&CC->user, CC->curr_user);
1022
1023         /*
1024          * Handle some of the macro named rooms
1025          */
1026         convert_room_name_macros(towhere, sizeof towhere);
1027
1028         /* First try a regular match */
1029         c = getroom(&QRscratch, towhere);
1030
1031         /* Then try a mailbox name match */
1032         if (c != 0) {
1033                 MailboxName(augmented_roomname, sizeof augmented_roomname,
1034                             &CC->user, towhere);
1035                 c = getroom(&QRscratch, augmented_roomname);
1036                 if (c == 0)
1037                         safestrncpy(towhere, augmented_roomname, sizeof towhere);
1038         }
1039
1040         /* And if the room was found... */
1041         if (c == 0) {
1042
1043                 /* Let internal programs go directly to any room. */
1044                 if (CC->internal_pgm) {
1045                         memcpy(&CC->room, &QRscratch,
1046                                 sizeof(struct ctdlroom));
1047                         usergoto(NULL, 1, transiently, NULL, NULL);
1048                         return;
1049                 }
1050
1051                 /* See if there is an existing user/room relationship */
1052                 CtdlRoomAccess(&QRscratch, &CC->user, &ra, NULL);
1053
1054                 /* normal clients have to pass through security */
1055                 if (ra & UA_GOTOALLOWED) {
1056                         ok = 1;
1057                 }
1058
1059                 if (ok == 1) {
1060                         if ((QRscratch.QRflags & QR_MAILBOX) &&
1061                             ((ra & UA_GOTOALLOWED))) {
1062                                 memcpy(&CC->room, &QRscratch,
1063                                         sizeof(struct ctdlroom));
1064                                 usergoto(NULL, 1, transiently, NULL, NULL);
1065                                 return;
1066                         } else if ((QRscratch.QRflags & QR_PASSWORDED) &&
1067                             ((ra & UA_KNOWN) == 0) &&
1068                             (strcasecmp(QRscratch.QRpasswd, password)) &&
1069                             (CC->user.axlevel < 6)
1070                             ) {
1071                                 cprintf("%d wrong or missing passwd\n",
1072                                         ERROR + PASSWORD_REQUIRED);
1073                                 return;
1074                         } else if ((QRscratch.QRflags & QR_PRIVATE) &&
1075                                    ((QRscratch.QRflags & QR_PASSWORDED) == 0) &&
1076                                    ((QRscratch.QRflags & QR_GUESSNAME) == 0) &&
1077                                    ((ra & UA_KNOWN) == 0) &&
1078                                    (CC->user.axlevel < 6)
1079                                   ) {
1080                                 CtdlLogPrintf(CTDL_DEBUG, "Failed to acquire private room\n");
1081                         } else {
1082                                 memcpy(&CC->room, &QRscratch,
1083                                         sizeof(struct ctdlroom));
1084                                 usergoto(NULL, 1, transiently, NULL, NULL);
1085                                 return;
1086                         }
1087                 }
1088         }
1089
1090         cprintf("%d room '%s' not found\n", ERROR + ROOM_NOT_FOUND, towhere);
1091 }
1092
1093
1094 void cmd_whok(char *cmdbuf)
1095 {
1096         struct ctdluser temp;
1097         struct cdbdata *cdbus;
1098         int ra;
1099
1100         cprintf("%d Who knows room:\n", LISTING_FOLLOWS);
1101         cdb_rewind(CDB_USERS);
1102         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1103                 memset(&temp, 0, sizeof temp);
1104                 memcpy(&temp, cdbus->ptr, sizeof temp);
1105                 cdb_free(cdbus);
1106
1107                 CtdlRoomAccess(&CC->room, &temp, &ra, NULL);
1108                 if ((CC->room.QRflags & QR_INUSE)
1109                     && (ra & UA_KNOWN)
1110                     )
1111                         cprintf("%s\n", temp.fullname);
1112         }
1113         cprintf("000\n");
1114 }
1115
1116
1117 /*
1118  * RDIR command for room directory
1119  */
1120 void cmd_rdir(char *cmdbuf)
1121 {
1122         char buf[256];
1123         char comment[256];
1124         FILE *fd;
1125         struct stat statbuf;
1126         DIR *filedir = NULL;
1127         struct dirent *filedir_entry;
1128         int d_namelen;
1129         char buf2[SIZ];
1130         char mimebuf[64];
1131         long len;
1132         
1133         if (CtdlAccessCheck(ac_logged_in)) return;
1134         
1135         getroom(&CC->room, CC->room.QRname);
1136         getuser(&CC->user, CC->curr_user);
1137
1138         if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
1139                 cprintf("%d not here.\n", ERROR + NOT_HERE);
1140                 return;
1141         }
1142         if (((CC->room.QRflags & QR_VISDIR) == 0)
1143             && (CC->user.axlevel < 6)
1144             && (CC->user.usernum != CC->room.QRroomaide)) {
1145                 cprintf("%d not here.\n", ERROR + HIGHER_ACCESS_REQUIRED);
1146                 return;
1147         }
1148
1149         snprintf(buf, sizeof buf, "%s/%s", ctdl_file_dir, CC->room.QRdirname);
1150         filedir = opendir (buf);
1151         
1152         if (filedir == NULL) {
1153                 cprintf("%d not here.\n", ERROR + HIGHER_ACCESS_REQUIRED);
1154                 return;
1155         }
1156         cprintf("%d %s|%s/%s\n", LISTING_FOLLOWS, config.c_fqdn, ctdl_file_dir, CC->room.QRdirname);
1157         
1158         snprintf(buf, sizeof buf, "%s/%s/filedir", ctdl_file_dir, CC->room.QRdirname);
1159         fd = fopen(buf, "r");
1160         if (fd == NULL)
1161                 fd = fopen("/dev/null", "r");
1162         while ((filedir_entry = readdir(filedir)))
1163         {
1164                 if (strcasecmp(filedir_entry->d_name, "filedir") && filedir_entry->d_name[0] != '.')
1165                 {
1166 #ifdef _DIRENT_HAVE_D_NAMELEN
1167                         d_namelen = filedir_entry->d_namelen;
1168 #else
1169                         d_namelen = strlen(filedir_entry->d_name);
1170 #endif
1171                         snprintf(buf, sizeof buf, "%s/%s/%s", ctdl_file_dir, CC->room.QRdirname, filedir_entry->d_name);
1172                         stat(buf, &statbuf);    /* stat the file */
1173                         if (!(statbuf.st_mode & S_IFREG))
1174                         {
1175                                 snprintf(buf2, sizeof buf2, "Command RDIR found something that is not a useable file. It should be cleaned up.\n RDIR found this non regular file:\n%s\n", buf);
1176                                 aide_message(buf2, "RDIR found bad file");
1177                                 continue;       /* not a useable file type so don't show it */
1178                         }
1179                         safestrncpy(comment, "", sizeof comment);
1180                         fseek(fd, 0L, 0);       /* rewind descriptions file */
1181                         /* Get the description from the descriptions file */
1182                         while ((fgets(buf, sizeof buf, fd) != NULL) && (IsEmptyStr(comment))) 
1183                         {
1184                                 buf[strlen(buf) - 1] = 0;
1185                                 if ((!strncasecmp(buf, filedir_entry->d_name, d_namelen)) && (buf[d_namelen] == ' '))
1186                                         safestrncpy(comment, &buf[d_namelen + 1], sizeof comment);
1187                         }
1188                         len = extract_token (mimebuf, comment, 0,' ', 64);
1189                         if ((len <0) || strchr(mimebuf, '/') == NULL)
1190                         {
1191                                 snprintf (mimebuf, 64, "application/octetstream");
1192                                 len = 0;
1193                         }
1194                         cprintf("%s|%ld|%s|%s\n", 
1195                                 filedir_entry->d_name, 
1196                                 (long)statbuf.st_size, 
1197                                 mimebuf, 
1198                                 &comment[len]);
1199                 }
1200         }
1201         fclose(fd);
1202         closedir(filedir);
1203         
1204         cprintf("000\n");
1205 }
1206
1207 /*
1208  * get room parameters (aide or room aide command)
1209  */
1210 void cmd_getr(char *cmdbuf)
1211 {
1212         if (CtdlAccessCheck(ac_room_aide)) return;
1213
1214         getroom(&CC->room, CC->room.QRname);
1215         cprintf("%d%c%s|%s|%s|%d|%d|%d|%d|%d|\n",
1216                 CIT_OK,
1217                 CtdlCheckExpress(),
1218
1219                 ((CC->room.QRflags & QR_MAILBOX) ?
1220                         &CC->room.QRname[11] : CC->room.QRname),
1221
1222                 ((CC->room.QRflags & QR_PASSWORDED) ?
1223                         CC->room.QRpasswd : ""),
1224
1225                 ((CC->room.QRflags & QR_DIRECTORY) ?
1226                         CC->room.QRdirname : ""),
1227
1228                 CC->room.QRflags,
1229                 (int) CC->room.QRfloor,
1230                 (int) CC->room.QRorder,
1231
1232                 CC->room.QRdefaultview,
1233                 CC->room.QRflags2
1234                 );
1235 }
1236
1237
1238 /*
1239  * Back end function to rename a room.
1240  * You can also specify which floor to move the room to, or specify -1 to
1241  * keep the room on the same floor it was on.
1242  *
1243  * If you are renaming a mailbox room, you must supply the namespace prefix
1244  * in *at least* the old name!
1245  */
1246 int CtdlRenameRoom(char *old_name, char *new_name, int new_floor) {
1247         int old_floor = 0;
1248         struct ctdlroom qrbuf;
1249         struct ctdlroom qrtmp;
1250         int ret = 0;
1251         struct floor *fl;
1252         struct floor flbuf;
1253         long owner = 0L;
1254         char actual_old_name[ROOMNAMELEN];
1255
1256         CtdlLogPrintf(CTDL_DEBUG, "CtdlRenameRoom(%s, %s, %d)\n",
1257                 old_name, new_name, new_floor);
1258
1259         if (new_floor >= 0) {
1260                 fl = cgetfloor(new_floor);
1261                 if ((fl->f_flags & F_INUSE) == 0) {
1262                         return(crr_invalid_floor);
1263                 }
1264         }
1265
1266         begin_critical_section(S_ROOMS);
1267
1268         if ( (getroom(&qrtmp, new_name) == 0) 
1269            && (strcasecmp(new_name, old_name)) ) {
1270                 ret = crr_already_exists;
1271         }
1272
1273         else if (getroom(&qrbuf, old_name) != 0) {
1274                 ret = crr_room_not_found;
1275         }
1276
1277         else if ( (CC->user.axlevel < 6) && (!CC->internal_pgm)
1278                   && (CC->user.usernum != qrbuf.QRroomaide)
1279                   && ( (((qrbuf.QRflags & QR_MAILBOX) == 0) || (atol(qrbuf.QRname) != CC->user.usernum))) )  {
1280                 ret = crr_access_denied;
1281         }
1282
1283         else if (is_noneditable(&qrbuf)) {
1284                 ret = crr_noneditable;
1285         }
1286
1287         else {
1288                 /* Rename it */
1289                 safestrncpy(actual_old_name, qrbuf.QRname, sizeof actual_old_name);
1290                 if (qrbuf.QRflags & QR_MAILBOX) {
1291                         owner = atol(qrbuf.QRname);
1292                 }
1293                 if ( (owner > 0L) && (atol(new_name) == 0L) ) {
1294                         snprintf(qrbuf.QRname, sizeof(qrbuf.QRname),
1295                                         "%010ld.%s", owner, new_name);
1296                 }
1297                 else {
1298                         safestrncpy(qrbuf.QRname, new_name,
1299                                                 sizeof(qrbuf.QRname));
1300                 }
1301
1302                 /* Reject change of floor for baseroom/aideroom */
1303                 if (!strncasecmp(old_name, config.c_baseroom, ROOMNAMELEN) ||
1304                     !strncasecmp(old_name, config.c_aideroom, ROOMNAMELEN)) {
1305                         new_floor = 0;
1306                 }
1307
1308                 /* Take care of floor stuff */
1309                 old_floor = qrbuf.QRfloor;
1310                 if (new_floor < 0) {
1311                         new_floor = old_floor;
1312                 }
1313                 qrbuf.QRfloor = new_floor;
1314                 putroom(&qrbuf);
1315
1316                 begin_critical_section(S_CONFIG);
1317         
1318                 /* If baseroom/aideroom name changes, update config */
1319                 if (!strncasecmp(old_name, config.c_baseroom, ROOMNAMELEN)) {
1320                         safestrncpy(config.c_baseroom, new_name, ROOMNAMELEN);
1321                         put_config();
1322                 }
1323                 if (!strncasecmp(old_name, config.c_aideroom, ROOMNAMELEN)) {
1324                         safestrncpy(config.c_aideroom, new_name, ROOMNAMELEN);
1325                         put_config();
1326                 }
1327         
1328                 end_critical_section(S_CONFIG);
1329         
1330                 /* If the room name changed, then there are now two room
1331                  * records, so we have to delete the old one.
1332                  */
1333                 if (strcasecmp(new_name, old_name)) {
1334                         b_deleteroom(actual_old_name);
1335                 }
1336
1337                 ret = crr_ok;
1338         }
1339
1340         end_critical_section(S_ROOMS);
1341
1342         /* Adjust the floor reference counts if necessary */
1343         if (new_floor != old_floor) {
1344                 lgetfloor(&flbuf, old_floor);
1345                 --flbuf.f_ref_count;
1346                 lputfloor(&flbuf, old_floor);
1347                 CtdlLogPrintf(CTDL_DEBUG, "Reference count for floor %d is now %d\n", old_floor, flbuf.f_ref_count);
1348                 lgetfloor(&flbuf, new_floor);
1349                 ++flbuf.f_ref_count;
1350                 lputfloor(&flbuf, new_floor);
1351                 CtdlLogPrintf(CTDL_DEBUG, "Reference count for floor %d is now %d\n", new_floor, flbuf.f_ref_count);
1352         }
1353
1354         /* ...and everybody say "YATTA!" */     
1355         return(ret);
1356 }
1357
1358
1359 /*
1360  * set room parameters (aide or room aide command)
1361  */
1362 void cmd_setr(char *args)
1363 {
1364         char buf[256];
1365         int new_order = 0;
1366         int r;
1367         int new_floor;
1368         char new_name[ROOMNAMELEN];
1369
1370         if (CtdlAccessCheck(ac_logged_in)) return;
1371
1372         if (num_parms(args) >= 6) {
1373                 new_floor = extract_int(args, 5);
1374         } else {
1375                 new_floor = (-1);       /* don't change the floor */
1376         }
1377
1378         /* When is a new name more than just a new name?  When the old name
1379          * has a namespace prefix.
1380          */
1381         if (CC->room.QRflags & QR_MAILBOX) {
1382                 sprintf(new_name, "%010ld.", atol(CC->room.QRname) );
1383         } else {
1384                 safestrncpy(new_name, "", sizeof new_name);
1385         }
1386         extract_token(&new_name[strlen(new_name)], args, 0, '|', (sizeof new_name - strlen(new_name)));
1387
1388         r = CtdlRenameRoom(CC->room.QRname, new_name, new_floor);
1389
1390         if (r == crr_room_not_found) {
1391                 cprintf("%d Internal error - room not found?\n", ERROR + INTERNAL_ERROR);
1392         } else if (r == crr_already_exists) {
1393                 cprintf("%d '%s' already exists.\n",
1394                         ERROR + ALREADY_EXISTS, new_name);
1395         } else if (r == crr_noneditable) {
1396                 cprintf("%d Cannot edit this room.\n", ERROR + NOT_HERE);
1397         } else if (r == crr_invalid_floor) {
1398                 cprintf("%d Target floor does not exist.\n",
1399                         ERROR + INVALID_FLOOR_OPERATION);
1400         } else if (r == crr_access_denied) {
1401                 cprintf("%d You do not have permission to edit '%s'\n",
1402                         ERROR + HIGHER_ACCESS_REQUIRED,
1403                         CC->room.QRname);
1404         } else if (r != crr_ok) {
1405                 cprintf("%d Error: CtdlRenameRoom() returned %d\n",
1406                         ERROR + INTERNAL_ERROR, r);
1407         }
1408
1409         if (r != crr_ok) {
1410                 return;
1411         }
1412
1413         getroom(&CC->room, new_name);
1414
1415         /* Now we have to do a bunch of other stuff */
1416
1417         if (num_parms(args) >= 7) {
1418                 new_order = extract_int(args, 6);
1419                 if (new_order < 1)
1420                         new_order = 1;
1421                 if (new_order > 127)
1422                         new_order = 127;
1423         }
1424
1425         lgetroom(&CC->room, CC->room.QRname);
1426
1427         /* Directory room */
1428         extract_token(buf, args, 2, '|', sizeof buf);
1429         buf[15] = 0;
1430         safestrncpy(CC->room.QRdirname, buf,
1431                 sizeof CC->room.QRdirname);
1432
1433         /* Default view */
1434         if (num_parms(args) >= 8) {
1435                 CC->room.QRdefaultview = extract_int(args, 7);
1436         }
1437
1438         /* Second set of flags */
1439         if (num_parms(args) >= 9) {
1440                 CC->room.QRflags2 = extract_int(args, 8);
1441         }
1442
1443         /* Misc. flags */
1444         CC->room.QRflags = (extract_int(args, 3) | QR_INUSE);
1445         /* Clean up a client boo-boo: if the client set the room to
1446          * guess-name or passworded, ensure that the private flag is
1447          * also set.
1448          */
1449         if ((CC->room.QRflags & QR_GUESSNAME)
1450             || (CC->room.QRflags & QR_PASSWORDED))
1451                 CC->room.QRflags |= QR_PRIVATE;
1452
1453         /* Some changes can't apply to BASEROOM */
1454         if (!strncasecmp(CC->room.QRname, config.c_baseroom,
1455                          ROOMNAMELEN)) {
1456                 CC->room.QRorder = 0;
1457                 CC->room.QRpasswd[0] = '\0';
1458                 CC->room.QRflags &= ~(QR_PRIVATE & QR_PASSWORDED &
1459                         QR_GUESSNAME & QR_PREFONLY & QR_MAILBOX);
1460                 CC->room.QRflags |= QR_PERMANENT;
1461         } else {        
1462                 /* March order (doesn't apply to AIDEROOM) */
1463                 if (num_parms(args) >= 7)
1464                         CC->room.QRorder = (char) new_order;
1465                 /* Room password */
1466                 extract_token(buf, args, 1, '|', sizeof buf);
1467                 buf[10] = 0;
1468                 safestrncpy(CC->room.QRpasswd, buf,
1469                             sizeof CC->room.QRpasswd);
1470                 /* Kick everyone out if the client requested it
1471                  * (by changing the room's generation number)
1472                  */
1473                 if (extract_int(args, 4)) {
1474                         time(&CC->room.QRgen);
1475                 }
1476         }
1477         /* Some changes can't apply to AIDEROOM */
1478         if (!strncasecmp(CC->room.QRname, config.c_baseroom,
1479                          ROOMNAMELEN)) {
1480                 CC->room.QRorder = 0;
1481                 CC->room.QRflags &= ~QR_MAILBOX;
1482                 CC->room.QRflags |= QR_PERMANENT;
1483         }
1484
1485         /* Write the room record back to disk */
1486         lputroom(&CC->room);
1487
1488         /* Create a room directory if necessary */
1489         if (CC->room.QRflags & QR_DIRECTORY) {
1490                 snprintf(buf, sizeof buf,"%s/%s",
1491                                  ctdl_file_dir,
1492                                  CC->room.QRdirname);
1493                 mkdir(buf, 0755);
1494         }
1495         snprintf(buf, sizeof buf, "The room \"%s\" has been edited by %s.\n",
1496                 CC->room.QRname, CC->curr_user);
1497         aide_message(buf, "Room modification Message");
1498         cprintf("%d Ok\n", CIT_OK);
1499 }
1500
1501
1502
1503 /* 
1504  * get the name of the room aide for this room
1505  */
1506 void cmd_geta(char *cmdbuf)
1507 {
1508         struct ctdluser usbuf;
1509
1510         if (CtdlAccessCheck(ac_logged_in)) return;
1511
1512         if (getuserbynumber(&usbuf, CC->room.QRroomaide) == 0) {
1513                 cprintf("%d %s\n", CIT_OK, usbuf.fullname);
1514         } else {
1515                 cprintf("%d \n", CIT_OK);
1516         }
1517 }
1518
1519
1520 /* 
1521  * set the room aide for this room
1522  */
1523 void cmd_seta(char *new_ra)
1524 {
1525         struct ctdluser usbuf;
1526         long newu;
1527         char buf[SIZ];
1528         int post_notice;
1529
1530         if (CtdlAccessCheck(ac_room_aide)) return;
1531
1532         if (getuser(&usbuf, new_ra) != 0) {
1533                 newu = (-1L);
1534         } else {
1535                 newu = usbuf.usernum;
1536         }
1537
1538         lgetroom(&CC->room, CC->room.QRname);
1539         post_notice = 0;
1540         if (CC->room.QRroomaide != newu) {
1541                 post_notice = 1;
1542         }
1543         CC->room.QRroomaide = newu;
1544         lputroom(&CC->room);
1545
1546         /*
1547          * We have to post the change notice _after_ writing changes to 
1548          * the room table, otherwise it would deadlock!
1549          */
1550         if (post_notice == 1) {
1551                 if (!IsEmptyStr(usbuf.fullname))
1552                         snprintf(buf, sizeof buf,
1553                                 "%s is now the room aide for \"%s\".\n",
1554                                 usbuf.fullname, CC->room.QRname);
1555                 else
1556                         snprintf(buf, sizeof buf,
1557                                 "There is now no room aide for \"%s\".\n",
1558                                 CC->room.QRname);
1559                 aide_message(buf, "Aide Room Modification");
1560         }
1561         cprintf("%d Ok\n", CIT_OK);
1562 }
1563
1564 /* 
1565  * retrieve info file for this room
1566  */
1567 void cmd_rinf(char *gargs)
1568 {
1569         char filename[128];
1570         char buf[SIZ];
1571         FILE *info_fp;
1572
1573         assoc_file_name(filename, sizeof filename, &CC->room, ctdl_info_dir);
1574         info_fp = fopen(filename, "r");
1575
1576         if (info_fp == NULL) {
1577                 cprintf("%d No info file.\n", ERROR + FILE_NOT_FOUND);
1578                 return;
1579         }
1580         cprintf("%d Info:\n", LISTING_FOLLOWS);
1581         while (fgets(buf, sizeof buf, info_fp) != NULL) {
1582                 if (!IsEmptyStr(buf))
1583                         buf[strlen(buf) - 1] = 0;
1584                 cprintf("%s\n", buf);
1585         }
1586         cprintf("000\n");
1587         fclose(info_fp);
1588 }
1589
1590 /*
1591  * Asynchronously schedule a room for deletion.  The room will appear
1592  * deleted to the user(s), but it won't actually get purged from the
1593  * database until THE DREADED AUTO-PURGER makes its next run.
1594  */
1595 void schedule_room_for_deletion(struct ctdlroom *qrbuf)
1596 {
1597         char old_name[ROOMNAMELEN];
1598         static int seq = 0;
1599
1600         CtdlLogPrintf(CTDL_NOTICE, "Scheduling room <%s> for deletion\n",
1601                 qrbuf->QRname);
1602
1603         safestrncpy(old_name, qrbuf->QRname, sizeof old_name);
1604
1605         getroom(qrbuf, qrbuf->QRname);
1606
1607         /* Turn the room into a private mailbox owned by a user who doesn't
1608          * exist.  This will immediately make the room invisible to everyone,
1609          * and qualify the room for purging.
1610          */
1611         snprintf(qrbuf->QRname, sizeof qrbuf->QRname, "9999999999.%08lx.%04d.%s",
1612                 time(NULL),
1613                 ++seq,
1614                 old_name
1615         );
1616         qrbuf->QRflags |= QR_MAILBOX;
1617         time(&qrbuf->QRgen);    /* Use a timestamp as the new generation number  */
1618
1619         putroom(qrbuf);
1620
1621         b_deleteroom(old_name);
1622 }
1623
1624
1625
1626 /*
1627  * Back end processing to delete a room and everything associated with it
1628  * (This one is synchronous and should only get called by THE DREADED
1629  * AUTO-PURGER in serv_expire.c.  All user-facing code should call
1630  * the asynchronous schedule_room_for_deletion() instead.)
1631  */
1632 void delete_room(struct ctdlroom *qrbuf)
1633 {
1634         struct floor flbuf;
1635         char filename[100];
1636         /* TODO: filename magic? does this realy work? */
1637
1638         CtdlLogPrintf(CTDL_NOTICE, "Deleting room <%s>\n", qrbuf->QRname);
1639
1640         /* Delete the info file */
1641         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_info_dir);
1642         unlink(filename);
1643
1644         /* Delete the image file */
1645         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_image_dir);
1646         unlink(filename);
1647
1648         /* Delete the room's network config file */
1649         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_netcfg_dir);
1650         unlink(filename);
1651
1652         /* Delete the messages in the room
1653          * (Careful: this opens an S_ROOMS critical section!)
1654          */
1655         CtdlDeleteMessages(qrbuf->QRname, NULL, 0, "");
1656
1657         /* Flag the room record as not in use */
1658         lgetroom(qrbuf, qrbuf->QRname);
1659         qrbuf->QRflags = 0;
1660         lputroom(qrbuf);
1661
1662         /* then decrement the reference count for the floor */
1663         lgetfloor(&flbuf, (int) (qrbuf->QRfloor));
1664         flbuf.f_ref_count = flbuf.f_ref_count - 1;
1665         lputfloor(&flbuf, (int) (qrbuf->QRfloor));
1666
1667         /* Delete the room record from the database! */
1668         b_deleteroom(qrbuf->QRname);
1669 }
1670
1671
1672
1673 /*
1674  * Check access control for deleting a room
1675  */
1676 int CtdlDoIHavePermissionToDeleteThisRoom(struct ctdlroom *qr) {
1677
1678         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
1679                 return(0);
1680         }
1681
1682         if (is_noneditable(qr)) {
1683                 return(0);
1684         }
1685
1686         /*
1687          * For mailboxes, check stuff
1688          */
1689         if (qr->QRflags & QR_MAILBOX) {
1690
1691                 if (strlen(qr->QRname) < 12) return(0); /* bad name */
1692
1693                 if (atol(qr->QRname) != CC->user.usernum) {
1694                         return(0);      /* not my room */
1695                 }
1696
1697                 /* Can't delete your Mail> room */
1698                 if (!strcasecmp(&qr->QRname[11], MAILROOM)) return(0);
1699
1700                 /* Otherwise it's ok */
1701                 return(1);
1702         }
1703
1704         /*
1705          * For normal rooms, just check for aide or room aide status.
1706          */
1707         return(is_room_aide());
1708 }
1709
1710 /*
1711  * aide command: kill the current room
1712  */
1713 void cmd_kill(char *argbuf)
1714 {
1715         char deleted_room_name[ROOMNAMELEN];
1716         char msg[SIZ];
1717         int kill_ok;
1718
1719         kill_ok = extract_int(argbuf, 0);
1720
1721         if (CtdlDoIHavePermissionToDeleteThisRoom(&CC->room) == 0) {
1722                 cprintf("%d Can't delete this room.\n", ERROR + NOT_HERE);
1723                 return;
1724         }
1725         if (kill_ok) {
1726                 if (CC->room.QRflags & QR_MAILBOX) {
1727                         safestrncpy(deleted_room_name, &CC->room.QRname[11], sizeof deleted_room_name);
1728                 }
1729                 else {
1730                         safestrncpy(deleted_room_name, CC->room.QRname, sizeof deleted_room_name);
1731                 }
1732
1733                 /* Do the dirty work */
1734                 schedule_room_for_deletion(&CC->room);
1735
1736                 /* Return to the Lobby */
1737                 usergoto(config.c_baseroom, 0, 0, NULL, NULL);
1738
1739                 /* tell the world what we did */
1740                 snprintf(msg, sizeof msg, "The room \"%s\" has been deleted by %s.\n",
1741                          deleted_room_name, CC->curr_user);
1742                 aide_message(msg, "Room Purger Message");
1743                 cprintf("%d '%s' deleted.\n", CIT_OK, deleted_room_name);
1744         } else {
1745                 cprintf("%d ok to delete.\n", CIT_OK);
1746         }
1747 }
1748
1749
1750 /*
1751  * Internal code to create a new room (returns room flags)
1752  *
1753  * Room types:  0=public, 1=guessname, 2=passworded, 3=inv-only,
1754  *              4=mailbox, 5=mailbox, but caller supplies namespace
1755  */
1756 unsigned create_room(char *new_room_name,
1757                      int new_room_type,
1758                      char *new_room_pass,
1759                      int new_room_floor,
1760                      int really_create,
1761                      int avoid_access,
1762                      int new_room_view)
1763 {
1764
1765         struct ctdlroom qrbuf;
1766         struct floor flbuf;
1767         struct visit vbuf;
1768
1769         CtdlLogPrintf(CTDL_DEBUG, "create_room(name=%s, type=%d, view=%d)\n",
1770                 new_room_name, new_room_type, new_room_view);
1771
1772         if (getroom(&qrbuf, new_room_name) == 0) {
1773                 CtdlLogPrintf(CTDL_DEBUG, "%s already exists.\n", new_room_name);
1774                 return(0);
1775         }
1776
1777         memset(&qrbuf, 0, sizeof(struct ctdlroom));
1778         safestrncpy(qrbuf.QRpasswd, new_room_pass, sizeof qrbuf.QRpasswd);
1779         qrbuf.QRflags = QR_INUSE;
1780         if (new_room_type > 0)
1781                 qrbuf.QRflags = (qrbuf.QRflags | QR_PRIVATE);
1782         if (new_room_type == 1)
1783                 qrbuf.QRflags = (qrbuf.QRflags | QR_GUESSNAME);
1784         if (new_room_type == 2)
1785                 qrbuf.QRflags = (qrbuf.QRflags | QR_PASSWORDED);
1786         if ( (new_room_type == 4) || (new_room_type == 5) ) {
1787                 qrbuf.QRflags = (qrbuf.QRflags | QR_MAILBOX);
1788                 /* qrbuf.QRflags2 |= QR2_SUBJECTREQ; */
1789         }
1790
1791         /* If the user is requesting a personal room, set up the room
1792          * name accordingly (prepend the user number)
1793          */
1794         if (new_room_type == 4) {
1795                 MailboxName(qrbuf.QRname, sizeof qrbuf.QRname, &CC->user, new_room_name);
1796         }
1797         else {
1798                 safestrncpy(qrbuf.QRname, new_room_name, sizeof qrbuf.QRname);
1799         }
1800
1801         /* If the room is private, and the system administrator has elected
1802          * to automatically grant room aide privileges, do so now; otherwise,
1803          * set the room aide to undefined.
1804          */
1805         if ((qrbuf.QRflags & QR_PRIVATE) && (CREATAIDE == 1)) {
1806                 qrbuf.QRroomaide = CC->user.usernum;
1807         } else {
1808                 qrbuf.QRroomaide = (-1L);
1809         }
1810
1811         /* 
1812          * If the caller is only interested in testing whether this will work,
1813          * return now without creating the room.
1814          */
1815         if (!really_create) return (qrbuf.QRflags);
1816
1817         qrbuf.QRnumber = get_new_room_number();
1818         qrbuf.QRhighest = 0L;   /* No messages in this room yet */
1819         time(&qrbuf.QRgen);     /* Use a timestamp as the generation number */
1820         qrbuf.QRfloor = new_room_floor;
1821         qrbuf.QRdefaultview = new_room_view;
1822
1823         /* save what we just did... */
1824         putroom(&qrbuf);
1825
1826         /* bump the reference count on whatever floor the room is on */
1827         lgetfloor(&flbuf, (int) qrbuf.QRfloor);
1828         flbuf.f_ref_count = flbuf.f_ref_count + 1;
1829         lputfloor(&flbuf, (int) qrbuf.QRfloor);
1830
1831         /* Grant the creator access to the room unless the avoid_access
1832          * parameter was specified.
1833          */
1834         if ( (CC->logged_in) && (avoid_access == 0) ) {
1835                 CtdlGetRelationship(&vbuf, &CC->user, &qrbuf);
1836                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1837                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1838                 CtdlSetRelationship(&vbuf, &CC->user, &qrbuf);
1839         }
1840
1841         /* resume our happy day */
1842         return (qrbuf.QRflags);
1843 }
1844
1845
1846 /*
1847  * create a new room
1848  */
1849 void cmd_cre8(char *args)
1850 {
1851         int cre8_ok;
1852         char new_room_name[ROOMNAMELEN];
1853         int new_room_type;
1854         char new_room_pass[32];
1855         int new_room_floor;
1856         int new_room_view;
1857         char *notification_message = NULL;
1858         unsigned newflags;
1859         struct floor *fl;
1860         int avoid_access = 0;
1861
1862         cre8_ok = extract_int(args, 0);
1863         extract_token(new_room_name, args, 1, '|', sizeof new_room_name);
1864         new_room_name[ROOMNAMELEN - 1] = 0;
1865         new_room_type = extract_int(args, 2);
1866         extract_token(new_room_pass, args, 3, '|', sizeof new_room_pass);
1867         avoid_access = extract_int(args, 5);
1868         new_room_view = extract_int(args, 6);
1869         new_room_pass[9] = 0;
1870         new_room_floor = 0;
1871
1872         if ((IsEmptyStr(new_room_name)) && (cre8_ok == 1)) {
1873                 cprintf("%d Invalid room name.\n", ERROR + ILLEGAL_VALUE);
1874                 return;
1875         }
1876
1877         if (!strcasecmp(new_room_name, MAILROOM)) {
1878                 cprintf("%d '%s' already exists.\n",
1879                         ERROR + ALREADY_EXISTS, new_room_name);
1880                 return;
1881         }
1882
1883         if (num_parms(args) >= 5) {
1884                 fl = cgetfloor(extract_int(args, 4));
1885                 if (fl == NULL) {
1886                         cprintf("%d Invalid floor number.\n",
1887                                 ERROR + INVALID_FLOOR_OPERATION);
1888                         return;
1889                 }
1890                 else if ((fl->f_flags & F_INUSE) == 0) {
1891                         cprintf("%d Invalid floor number.\n",
1892                                 ERROR + INVALID_FLOOR_OPERATION);
1893                         return;
1894                 } else {
1895                         new_room_floor = extract_int(args, 4);
1896                 }
1897         }
1898
1899         if (CtdlAccessCheck(ac_logged_in)) return;
1900
1901         if (CC->user.axlevel < config.c_createax && !CC->internal_pgm) {
1902                 cprintf("%d You need higher access to create rooms.\n",
1903                         ERROR + HIGHER_ACCESS_REQUIRED);
1904                 return;
1905         }
1906
1907         if ((IsEmptyStr(new_room_name)) && (cre8_ok == 0)) {
1908                 cprintf("%d Ok to create rooms.\n", CIT_OK);
1909                 return;
1910         }
1911
1912         if ((new_room_type < 0) || (new_room_type > 5)) {
1913                 cprintf("%d Invalid room type.\n", ERROR + ILLEGAL_VALUE);
1914                 return;
1915         }
1916
1917         if (new_room_type == 5) {
1918                 if (CC->user.axlevel < 6) {
1919                         cprintf("%d Higher access required\n", 
1920                                 ERROR + HIGHER_ACCESS_REQUIRED);
1921                         return;
1922                 }
1923         }
1924
1925         /* Check to make sure the requested room name doesn't already exist */
1926         newflags = create_room(new_room_name,
1927                                 new_room_type, new_room_pass, new_room_floor,
1928                                 0, avoid_access, new_room_view);
1929         if (newflags == 0) {
1930                 cprintf("%d '%s' already exists.\n",
1931                         ERROR + ALREADY_EXISTS, new_room_name);
1932                 return;
1933         }
1934
1935         if (cre8_ok == 0) {
1936                 cprintf("%d OK to create '%s'\n", CIT_OK, new_room_name);
1937                 return;
1938         }
1939
1940         /* If we reach this point, the room needs to be created. */
1941
1942         newflags = create_room(new_room_name,
1943                            new_room_type, new_room_pass, new_room_floor, 1, 0,
1944                            new_room_view);
1945
1946         /* post a message in Aide> describing the new room */
1947         notification_message = malloc(1024);
1948         snprintf(notification_message, 1024,
1949                 "A new room called \"%s\" has been created by %s%s%s%s%s%s\n",
1950                 new_room_name,
1951                 CC->user.fullname,
1952                 ((newflags & QR_MAILBOX) ? " [personal]" : ""),
1953                 ((newflags & QR_PRIVATE) ? " [private]" : ""),
1954                 ((newflags & QR_GUESSNAME) ? " [hidden]" : ""),
1955                 ((newflags & QR_PASSWORDED) ? " Password: " : ""),
1956                 ((newflags & QR_PASSWORDED) ? new_room_pass : "")
1957         );
1958         aide_message(notification_message, "Room Creation Message");
1959         free(notification_message);
1960
1961         cprintf("%d '%s' has been created.\n", CIT_OK, new_room_name);
1962 }
1963
1964
1965
1966 void cmd_einf(char *ok)
1967 {                               /* enter info file for current room */
1968         FILE *fp;
1969         char infofilename[SIZ];
1970         char buf[SIZ];
1971
1972         unbuffer_output();
1973
1974         if (CtdlAccessCheck(ac_room_aide)) return;
1975
1976         if (atoi(ok) == 0) {
1977                 cprintf("%d Ok.\n", CIT_OK);
1978                 return;
1979         }
1980         assoc_file_name(infofilename, sizeof infofilename, &CC->room, ctdl_info_dir);
1981         CtdlLogPrintf(CTDL_DEBUG, "opening\n");
1982         fp = fopen(infofilename, "w");
1983         CtdlLogPrintf(CTDL_DEBUG, "checking\n");
1984         if (fp == NULL) {
1985                 cprintf("%d Cannot open %s: %s\n",
1986                   ERROR + INTERNAL_ERROR, infofilename, strerror(errno));
1987                 return;
1988         }
1989         cprintf("%d Send info...\n", SEND_LISTING);
1990
1991         do {
1992                 client_getln(buf, sizeof buf);
1993                 if (strcmp(buf, "000"))
1994                         fprintf(fp, "%s\n", buf);
1995         } while (strcmp(buf, "000"));
1996         fclose(fp);
1997
1998         /* now update the room index so people will see our new info */
1999         lgetroom(&CC->room, CC->room.QRname);           /* lock so no one steps on us */
2000         CC->room.QRinfo = CC->room.QRhighest + 1L;
2001         lputroom(&CC->room);
2002 }
2003
2004
2005 /* 
2006  * cmd_lflr()   -  List all known floors
2007  */
2008 void cmd_lflr(char *gargs)
2009 {
2010         int a;
2011         struct floor flbuf;
2012
2013         if (CtdlAccessCheck(ac_logged_in)) return;
2014
2015         cprintf("%d Known floors:\n", LISTING_FOLLOWS);
2016
2017         for (a = 0; a < MAXFLOORS; ++a) {
2018                 getfloor(&flbuf, a);
2019                 if (flbuf.f_flags & F_INUSE) {
2020                         cprintf("%d|%s|%d\n",
2021                                 a,
2022                                 flbuf.f_name,
2023                                 flbuf.f_ref_count);
2024                 }
2025         }
2026         cprintf("000\n");
2027 }
2028
2029
2030
2031 /*
2032  * create a new floor
2033  */
2034 void cmd_cflr(char *argbuf)
2035 {
2036         char new_floor_name[256];
2037         struct floor flbuf;
2038         int cflr_ok;
2039         int free_slot = (-1);
2040         int a;
2041
2042         extract_token(new_floor_name, argbuf, 0, '|', sizeof new_floor_name);
2043         cflr_ok = extract_int(argbuf, 1);
2044
2045         if (CtdlAccessCheck(ac_aide)) return;
2046
2047         if (IsEmptyStr(new_floor_name)) {
2048                 cprintf("%d Blank floor name not allowed.\n",
2049                         ERROR + ILLEGAL_VALUE);
2050                 return;
2051         }
2052
2053         for (a = 0; a < MAXFLOORS; ++a) {
2054                 getfloor(&flbuf, a);
2055
2056                 /* note any free slots while we're scanning... */
2057                 if (((flbuf.f_flags & F_INUSE) == 0)
2058                     && (free_slot < 0))
2059                         free_slot = a;
2060
2061                 /* check to see if it already exists */
2062                 if ((!strcasecmp(flbuf.f_name, new_floor_name))
2063                     && (flbuf.f_flags & F_INUSE)) {
2064                         cprintf("%d Floor '%s' already exists.\n",
2065                                 ERROR + ALREADY_EXISTS,
2066                                 flbuf.f_name);
2067                         return;
2068                 }
2069         }
2070
2071         if (free_slot < 0) {
2072                 cprintf("%d There is no space available for a new floor.\n",
2073                         ERROR + INVALID_FLOOR_OPERATION);
2074                 return;
2075         }
2076         if (cflr_ok == 0) {
2077                 cprintf("%d ok to create...\n", CIT_OK);
2078                 return;
2079         }
2080         lgetfloor(&flbuf, free_slot);
2081         flbuf.f_flags = F_INUSE;
2082         flbuf.f_ref_count = 0;
2083         safestrncpy(flbuf.f_name, new_floor_name, sizeof flbuf.f_name);
2084         lputfloor(&flbuf, free_slot);
2085         cprintf("%d %d\n", CIT_OK, free_slot);
2086 }
2087
2088
2089
2090 /*
2091  * delete a floor
2092  */
2093 void cmd_kflr(char *argbuf)
2094 {
2095         struct floor flbuf;
2096         int floor_to_delete;
2097         int kflr_ok;
2098         int delete_ok;
2099
2100         floor_to_delete = extract_int(argbuf, 0);
2101         kflr_ok = extract_int(argbuf, 1);
2102
2103         if (CtdlAccessCheck(ac_aide)) return;
2104
2105         lgetfloor(&flbuf, floor_to_delete);
2106
2107         delete_ok = 1;
2108         if ((flbuf.f_flags & F_INUSE) == 0) {
2109                 cprintf("%d Floor %d not in use.\n",
2110                         ERROR + INVALID_FLOOR_OPERATION, floor_to_delete);
2111                 delete_ok = 0;
2112         } else {
2113                 if (flbuf.f_ref_count != 0) {
2114                         cprintf("%d Cannot delete; floor contains %d rooms.\n",
2115                                 ERROR + INVALID_FLOOR_OPERATION,
2116                                 flbuf.f_ref_count);
2117                         delete_ok = 0;
2118                 } else {
2119                         if (kflr_ok == 1) {
2120                                 cprintf("%d Ok\n", CIT_OK);
2121                         } else {
2122                                 cprintf("%d Ok to delete...\n", CIT_OK);
2123                         }
2124
2125                 }
2126
2127         }
2128
2129         if ((delete_ok == 1) && (kflr_ok == 1))
2130                 flbuf.f_flags = 0;
2131         lputfloor(&flbuf, floor_to_delete);
2132 }
2133
2134 /*
2135  * edit a floor
2136  */
2137 void cmd_eflr(char *argbuf)
2138 {
2139         struct floor flbuf;
2140         int floor_num;
2141         int np;
2142
2143         np = num_parms(argbuf);
2144         if (np < 1) {
2145                 cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
2146                 return;
2147         }
2148
2149         if (CtdlAccessCheck(ac_aide)) return;
2150
2151         floor_num = extract_int(argbuf, 0);
2152         lgetfloor(&flbuf, floor_num);
2153         if ((flbuf.f_flags & F_INUSE) == 0) {
2154                 lputfloor(&flbuf, floor_num);
2155                 cprintf("%d Floor %d is not in use.\n",
2156                         ERROR + INVALID_FLOOR_OPERATION, floor_num);
2157                 return;
2158         }
2159         if (np >= 2)
2160                 extract_token(flbuf.f_name, argbuf, 1, '|', sizeof flbuf.f_name);
2161         lputfloor(&flbuf, floor_num);
2162
2163         cprintf("%d Ok\n", CIT_OK);
2164 }
2165
2166
2167 /*****************************************************************************/
2168 /*                      MODULE INITIALIZATION STUFF                          */
2169 /*****************************************************************************/
2170
2171 CTDL_MODULE_INIT(room_ops)
2172 {
2173         CtdlRegisterProtoHook(cmd_lrms, "LRMS", "Autoconverted. TODO: document me.");
2174         CtdlRegisterProtoHook(cmd_lkra, "LKRA", "Autoconverted. TODO: document me.");
2175         CtdlRegisterProtoHook(cmd_lkrn, "LKRN", "Autoconverted. TODO: document me.");
2176         CtdlRegisterProtoHook(cmd_lkro, "LKRO", "Autoconverted. TODO: document me.");
2177         CtdlRegisterProtoHook(cmd_lzrm, "LZRM", "Autoconverted. TODO: document me.");
2178         CtdlRegisterProtoHook(cmd_lprm, "LPRM", "Autoconverted. TODO: document me.");
2179         CtdlRegisterProtoHook(cmd_goto, "GOTO", "Autoconverted. TODO: document me.");
2180         CtdlRegisterProtoHook(cmd_whok, "WHOK", "Autoconverted. TODO: document me.");
2181         CtdlRegisterProtoHook(cmd_rdir, "RDIR", "Autoconverted. TODO: document me.");
2182         CtdlRegisterProtoHook(cmd_getr, "GETR", "Autoconverted. TODO: document me.");
2183         CtdlRegisterProtoHook(cmd_setr, "SETR", "Autoconverted. TODO: document me.");
2184         CtdlRegisterProtoHook(cmd_geta, "GETA", "Autoconverted. TODO: document me.");
2185         CtdlRegisterProtoHook(cmd_seta, "SETA", "Autoconverted. TODO: document me.");
2186         CtdlRegisterProtoHook(cmd_rinf, "RINF", "Autoconverted. TODO: document me.");
2187         CtdlRegisterProtoHook(cmd_kill, "KILL", "Autoconverted. TODO: document me.");
2188         CtdlRegisterProtoHook(cmd_cre8, "CRE8", "Autoconverted. TODO: document me.");
2189         CtdlRegisterProtoHook(cmd_einf, "EINF", "Autoconverted. TODO: document me.");
2190         CtdlRegisterProtoHook(cmd_lflr, "LFLR", "Autoconverted. TODO: document me.");
2191         CtdlRegisterProtoHook(cmd_cflr, "CFLR", "Autoconverted. TODO: document me.");
2192         CtdlRegisterProtoHook(cmd_kflr, "KFLR", "Autoconverted. TODO: document me.");
2193         CtdlRegisterProtoHook(cmd_eflr, "EFLR", "Autoconverted. TODO: document me.");
2194         /* return our Subversion id for the Log */
2195         return "$Id$";
2196 }