* give all commands their own function
[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, "_BITBUCKET_")) {
981                 safestrncpy(towhere, config.c_twitroom, maxlen);
982         }
983         else if (!strcasecmp(towhere, "_CALENDAR_")) {
984                 safestrncpy(towhere, USERCALENDARROOM, maxlen);
985         }
986         else if (!strcasecmp(towhere, "_TASKS_")) {
987                 safestrncpy(towhere, USERTASKSROOM, maxlen);
988         }
989         else if (!strcasecmp(towhere, "_CONTACTS_")) {
990                 safestrncpy(towhere, USERCONTACTSROOM, maxlen);
991         }
992         else if (!strcasecmp(towhere, "_NOTES_")) {
993                 safestrncpy(towhere, USERNOTESROOM, maxlen);
994         }
995 }
996
997
998 /* 
999  * cmd_goto()  -  goto a new room
1000  */
1001 void cmd_goto(char *gargs)
1002 {
1003         struct ctdlroom QRscratch;
1004         int c;
1005         int ok = 0;
1006         int ra;
1007         char augmented_roomname[ROOMNAMELEN];
1008         char towhere[ROOMNAMELEN];
1009         char password[32];
1010         int transiently = 0;
1011
1012         if (CtdlAccessCheck(ac_logged_in)) return;
1013
1014         extract_token(towhere, gargs, 0, '|', sizeof towhere);
1015         extract_token(password, gargs, 1, '|', sizeof password);
1016         transiently = extract_int(gargs, 2);
1017
1018         getuser(&CC->user, CC->curr_user);
1019
1020         /*
1021          * Handle some of the macro named rooms
1022          */
1023         convert_room_name_macros(towhere, sizeof towhere);
1024
1025         /* First try a regular match */
1026         c = getroom(&QRscratch, towhere);
1027
1028         /* Then try a mailbox name match */
1029         if (c != 0) {
1030                 MailboxName(augmented_roomname, sizeof augmented_roomname,
1031                             &CC->user, towhere);
1032                 c = getroom(&QRscratch, augmented_roomname);
1033                 if (c == 0)
1034                         safestrncpy(towhere, augmented_roomname, sizeof towhere);
1035         }
1036
1037         /* And if the room was found... */
1038         if (c == 0) {
1039
1040                 /* Let internal programs go directly to any room. */
1041                 if (CC->internal_pgm) {
1042                         memcpy(&CC->room, &QRscratch,
1043                                 sizeof(struct ctdlroom));
1044                         usergoto(NULL, 1, transiently, NULL, NULL);
1045                         return;
1046                 }
1047
1048                 /* See if there is an existing user/room relationship */
1049                 CtdlRoomAccess(&QRscratch, &CC->user, &ra, NULL);
1050
1051                 /* normal clients have to pass through security */
1052                 if (ra & UA_GOTOALLOWED) {
1053                         ok = 1;
1054                 }
1055
1056                 if (ok == 1) {
1057                         if ((QRscratch.QRflags & QR_MAILBOX) &&
1058                             ((ra & UA_GOTOALLOWED))) {
1059                                 memcpy(&CC->room, &QRscratch,
1060                                         sizeof(struct ctdlroom));
1061                                 usergoto(NULL, 1, transiently, NULL, NULL);
1062                                 return;
1063                         } else if ((QRscratch.QRflags & QR_PASSWORDED) &&
1064                             ((ra & UA_KNOWN) == 0) &&
1065                             (strcasecmp(QRscratch.QRpasswd, password)) &&
1066                             (CC->user.axlevel < 6)
1067                             ) {
1068                                 cprintf("%d wrong or missing passwd\n",
1069                                         ERROR + PASSWORD_REQUIRED);
1070                                 return;
1071                         } else if ((QRscratch.QRflags & QR_PRIVATE) &&
1072                                    ((QRscratch.QRflags & QR_PASSWORDED) == 0) &&
1073                                    ((QRscratch.QRflags & QR_GUESSNAME) == 0) &&
1074                                    ((ra & UA_KNOWN) == 0) &&
1075                                    (CC->user.axlevel < 6)
1076                                   ) {
1077                                 CtdlLogPrintf(CTDL_DEBUG, "Failed to acquire private room\n");
1078                         } else {
1079                                 memcpy(&CC->room, &QRscratch,
1080                                         sizeof(struct ctdlroom));
1081                                 usergoto(NULL, 1, transiently, NULL, NULL);
1082                                 return;
1083                         }
1084                 }
1085         }
1086
1087         cprintf("%d room '%s' not found\n", ERROR + ROOM_NOT_FOUND, towhere);
1088 }
1089
1090
1091 void cmd_whok(char *cmdbuf)
1092 {
1093         struct ctdluser temp;
1094         struct cdbdata *cdbus;
1095         int ra;
1096
1097         cprintf("%d Who knows room:\n", LISTING_FOLLOWS);
1098         cdb_rewind(CDB_USERS);
1099         while (cdbus = cdb_next_item(CDB_USERS), cdbus != NULL) {
1100                 memset(&temp, 0, sizeof temp);
1101                 memcpy(&temp, cdbus->ptr, sizeof temp);
1102                 cdb_free(cdbus);
1103
1104                 CtdlRoomAccess(&CC->room, &temp, &ra, NULL);
1105                 if ((CC->room.QRflags & QR_INUSE)
1106                     && (ra & UA_KNOWN)
1107                     )
1108                         cprintf("%s\n", temp.fullname);
1109         }
1110         cprintf("000\n");
1111 }
1112
1113
1114 /*
1115  * RDIR command for room directory
1116  */
1117 void cmd_rdir(char *cmdbuf)
1118 {
1119         char buf[256];
1120         char comment[256];
1121         FILE *fd;
1122         struct stat statbuf;
1123         DIR *filedir = NULL;
1124         struct dirent *filedir_entry;
1125         int d_namelen;
1126         char buf2[SIZ];
1127         char mimebuf[64];
1128         long len;
1129         
1130         if (CtdlAccessCheck(ac_logged_in)) return;
1131         
1132         getroom(&CC->room, CC->room.QRname);
1133         getuser(&CC->user, CC->curr_user);
1134
1135         if ((CC->room.QRflags & QR_DIRECTORY) == 0) {
1136                 cprintf("%d not here.\n", ERROR + NOT_HERE);
1137                 return;
1138         }
1139         if (((CC->room.QRflags & QR_VISDIR) == 0)
1140             && (CC->user.axlevel < 6)
1141             && (CC->user.usernum != CC->room.QRroomaide)) {
1142                 cprintf("%d not here.\n", ERROR + HIGHER_ACCESS_REQUIRED);
1143                 return;
1144         }
1145
1146         snprintf(buf, sizeof buf, "%s/%s", ctdl_file_dir, CC->room.QRdirname);
1147         filedir = opendir (buf);
1148         
1149         if (filedir == NULL) {
1150                 cprintf("%d not here.\n", ERROR + HIGHER_ACCESS_REQUIRED);
1151                 return;
1152         }
1153         cprintf("%d %s|%s/%s\n", LISTING_FOLLOWS, config.c_fqdn, ctdl_file_dir, CC->room.QRdirname);
1154         
1155         snprintf(buf, sizeof buf, "%s/%s/filedir", ctdl_file_dir, CC->room.QRdirname);
1156         fd = fopen(buf, "r");
1157         if (fd == NULL)
1158                 fd = fopen("/dev/null", "r");
1159         while ((filedir_entry = readdir(filedir)))
1160         {
1161                 if (strcasecmp(filedir_entry->d_name, "filedir") && filedir_entry->d_name[0] != '.')
1162                 {
1163 #ifdef _DIRENT_HAVE_D_NAMELEN
1164                         d_namelen = filedir_entry->d_namelen;
1165 #else
1166                         d_namelen = strlen(filedir_entry->d_name);
1167 #endif
1168                         snprintf(buf, sizeof buf, "%s/%s/%s", ctdl_file_dir, CC->room.QRdirname, filedir_entry->d_name);
1169                         stat(buf, &statbuf);    /* stat the file */
1170                         if (!(statbuf.st_mode & S_IFREG))
1171                         {
1172                                 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);
1173                                 aide_message(buf2, "RDIR found bad file");
1174                                 continue;       /* not a useable file type so don't show it */
1175                         }
1176                         safestrncpy(comment, "", sizeof comment);
1177                         fseek(fd, 0L, 0);       /* rewind descriptions file */
1178                         /* Get the description from the descriptions file */
1179                         while ((fgets(buf, sizeof buf, fd) != NULL) && (IsEmptyStr(comment))) 
1180                         {
1181                                 buf[strlen(buf) - 1] = 0;
1182                                 if ((!strncasecmp(buf, filedir_entry->d_name, d_namelen)) && (buf[d_namelen] == ' '))
1183                                         safestrncpy(comment, &buf[d_namelen + 1], sizeof comment);
1184                         }
1185                         len = extract_token (mimebuf, comment, 0,' ', 64);
1186                         if ((len <0) || strchr(mimebuf, '/') == NULL)
1187                         {
1188                                 snprintf (mimebuf, 64, "application/octetstream");
1189                                 len = 0;
1190                         }
1191                         cprintf("%s|%ld|%s|%s\n", 
1192                                 filedir_entry->d_name, 
1193                                 (long)statbuf.st_size, 
1194                                 mimebuf, 
1195                                 &comment[len]);
1196                 }
1197         }
1198         fclose(fd);
1199         closedir(filedir);
1200         
1201         cprintf("000\n");
1202 }
1203
1204 /*
1205  * get room parameters (aide or room aide command)
1206  */
1207 void cmd_getr(char *cmdbuf)
1208 {
1209         if (CtdlAccessCheck(ac_room_aide)) return;
1210
1211         getroom(&CC->room, CC->room.QRname);
1212         cprintf("%d%c%s|%s|%s|%d|%d|%d|%d|%d|\n",
1213                 CIT_OK,
1214                 CtdlCheckExpress(),
1215
1216                 ((CC->room.QRflags & QR_MAILBOX) ?
1217                         &CC->room.QRname[11] : CC->room.QRname),
1218
1219                 ((CC->room.QRflags & QR_PASSWORDED) ?
1220                         CC->room.QRpasswd : ""),
1221
1222                 ((CC->room.QRflags & QR_DIRECTORY) ?
1223                         CC->room.QRdirname : ""),
1224
1225                 CC->room.QRflags,
1226                 (int) CC->room.QRfloor,
1227                 (int) CC->room.QRorder,
1228
1229                 CC->room.QRdefaultview,
1230                 CC->room.QRflags2
1231                 );
1232 }
1233
1234
1235 /*
1236  * Back end function to rename a room.
1237  * You can also specify which floor to move the room to, or specify -1 to
1238  * keep the room on the same floor it was on.
1239  *
1240  * If you are renaming a mailbox room, you must supply the namespace prefix
1241  * in *at least* the old name!
1242  */
1243 int CtdlRenameRoom(char *old_name, char *new_name, int new_floor) {
1244         int old_floor = 0;
1245         struct ctdlroom qrbuf;
1246         struct ctdlroom qrtmp;
1247         int ret = 0;
1248         struct floor *fl;
1249         struct floor flbuf;
1250         long owner = 0L;
1251         char actual_old_name[ROOMNAMELEN];
1252
1253         CtdlLogPrintf(CTDL_DEBUG, "CtdlRenameRoom(%s, %s, %d)\n",
1254                 old_name, new_name, new_floor);
1255
1256         if (new_floor >= 0) {
1257                 fl = cgetfloor(new_floor);
1258                 if ((fl->f_flags & F_INUSE) == 0) {
1259                         return(crr_invalid_floor);
1260                 }
1261         }
1262
1263         begin_critical_section(S_ROOMS);
1264
1265         if ( (getroom(&qrtmp, new_name) == 0) 
1266            && (strcasecmp(new_name, old_name)) ) {
1267                 ret = crr_already_exists;
1268         }
1269
1270         else if (getroom(&qrbuf, old_name) != 0) {
1271                 ret = crr_room_not_found;
1272         }
1273
1274         else if ( (CC->user.axlevel < 6) && (!CC->internal_pgm)
1275                   && (CC->user.usernum != qrbuf.QRroomaide)
1276                   && ( (((qrbuf.QRflags & QR_MAILBOX) == 0) || (atol(qrbuf.QRname) != CC->user.usernum))) )  {
1277                 ret = crr_access_denied;
1278         }
1279
1280         else if (is_noneditable(&qrbuf)) {
1281                 ret = crr_noneditable;
1282         }
1283
1284         else {
1285                 /* Rename it */
1286                 safestrncpy(actual_old_name, qrbuf.QRname, sizeof actual_old_name);
1287                 if (qrbuf.QRflags & QR_MAILBOX) {
1288                         owner = atol(qrbuf.QRname);
1289                 }
1290                 if ( (owner > 0L) && (atol(new_name) == 0L) ) {
1291                         snprintf(qrbuf.QRname, sizeof(qrbuf.QRname),
1292                                         "%010ld.%s", owner, new_name);
1293                 }
1294                 else {
1295                         safestrncpy(qrbuf.QRname, new_name,
1296                                                 sizeof(qrbuf.QRname));
1297                 }
1298
1299                 /* Reject change of floor for baseroom/aideroom */
1300                 if (!strncasecmp(old_name, config.c_baseroom, ROOMNAMELEN) ||
1301                     !strncasecmp(old_name, config.c_aideroom, ROOMNAMELEN)) {
1302                         new_floor = 0;
1303                 }
1304
1305                 /* Take care of floor stuff */
1306                 old_floor = qrbuf.QRfloor;
1307                 if (new_floor < 0) {
1308                         new_floor = old_floor;
1309                 }
1310                 qrbuf.QRfloor = new_floor;
1311                 putroom(&qrbuf);
1312
1313                 begin_critical_section(S_CONFIG);
1314         
1315                 /* If baseroom/aideroom name changes, update config */
1316                 if (!strncasecmp(old_name, config.c_baseroom, ROOMNAMELEN)) {
1317                         safestrncpy(config.c_baseroom, new_name, ROOMNAMELEN);
1318                         put_config();
1319                 }
1320                 if (!strncasecmp(old_name, config.c_aideroom, ROOMNAMELEN)) {
1321                         safestrncpy(config.c_aideroom, new_name, ROOMNAMELEN);
1322                         put_config();
1323                 }
1324         
1325                 end_critical_section(S_CONFIG);
1326         
1327                 /* If the room name changed, then there are now two room
1328                  * records, so we have to delete the old one.
1329                  */
1330                 if (strcasecmp(new_name, old_name)) {
1331                         b_deleteroom(actual_old_name);
1332                 }
1333
1334                 ret = crr_ok;
1335         }
1336
1337         end_critical_section(S_ROOMS);
1338
1339         /* Adjust the floor reference counts if necessary */
1340         if (new_floor != old_floor) {
1341                 lgetfloor(&flbuf, old_floor);
1342                 --flbuf.f_ref_count;
1343                 lputfloor(&flbuf, old_floor);
1344                 CtdlLogPrintf(CTDL_DEBUG, "Reference count for floor %d is now %d\n", old_floor, flbuf.f_ref_count);
1345                 lgetfloor(&flbuf, new_floor);
1346                 ++flbuf.f_ref_count;
1347                 lputfloor(&flbuf, new_floor);
1348                 CtdlLogPrintf(CTDL_DEBUG, "Reference count for floor %d is now %d\n", new_floor, flbuf.f_ref_count);
1349         }
1350
1351         /* ...and everybody say "YATTA!" */     
1352         return(ret);
1353 }
1354
1355
1356 /*
1357  * set room parameters (aide or room aide command)
1358  */
1359 void cmd_setr(char *args)
1360 {
1361         char buf[256];
1362         int new_order = 0;
1363         int r;
1364         int new_floor;
1365         char new_name[ROOMNAMELEN];
1366
1367         if (CtdlAccessCheck(ac_logged_in)) return;
1368
1369         if (num_parms(args) >= 6) {
1370                 new_floor = extract_int(args, 5);
1371         } else {
1372                 new_floor = (-1);       /* don't change the floor */
1373         }
1374
1375         /* When is a new name more than just a new name?  When the old name
1376          * has a namespace prefix.
1377          */
1378         if (CC->room.QRflags & QR_MAILBOX) {
1379                 sprintf(new_name, "%010ld.", atol(CC->room.QRname) );
1380         } else {
1381                 safestrncpy(new_name, "", sizeof new_name);
1382         }
1383         extract_token(&new_name[strlen(new_name)], args, 0, '|', (sizeof new_name - strlen(new_name)));
1384
1385         r = CtdlRenameRoom(CC->room.QRname, new_name, new_floor);
1386
1387         if (r == crr_room_not_found) {
1388                 cprintf("%d Internal error - room not found?\n", ERROR + INTERNAL_ERROR);
1389         } else if (r == crr_already_exists) {
1390                 cprintf("%d '%s' already exists.\n",
1391                         ERROR + ALREADY_EXISTS, new_name);
1392         } else if (r == crr_noneditable) {
1393                 cprintf("%d Cannot edit this room.\n", ERROR + NOT_HERE);
1394         } else if (r == crr_invalid_floor) {
1395                 cprintf("%d Target floor does not exist.\n",
1396                         ERROR + INVALID_FLOOR_OPERATION);
1397         } else if (r == crr_access_denied) {
1398                 cprintf("%d You do not have permission to edit '%s'\n",
1399                         ERROR + HIGHER_ACCESS_REQUIRED,
1400                         CC->room.QRname);
1401         } else if (r != crr_ok) {
1402                 cprintf("%d Error: CtdlRenameRoom() returned %d\n",
1403                         ERROR + INTERNAL_ERROR, r);
1404         }
1405
1406         if (r != crr_ok) {
1407                 return;
1408         }
1409
1410         getroom(&CC->room, new_name);
1411
1412         /* Now we have to do a bunch of other stuff */
1413
1414         if (num_parms(args) >= 7) {
1415                 new_order = extract_int(args, 6);
1416                 if (new_order < 1)
1417                         new_order = 1;
1418                 if (new_order > 127)
1419                         new_order = 127;
1420         }
1421
1422         lgetroom(&CC->room, CC->room.QRname);
1423
1424         /* Directory room */
1425         extract_token(buf, args, 2, '|', sizeof buf);
1426         buf[15] = 0;
1427         safestrncpy(CC->room.QRdirname, buf,
1428                 sizeof CC->room.QRdirname);
1429
1430         /* Default view */
1431         if (num_parms(args) >= 8) {
1432                 CC->room.QRdefaultview = extract_int(args, 7);
1433         }
1434
1435         /* Second set of flags */
1436         if (num_parms(args) >= 9) {
1437                 CC->room.QRflags2 = extract_int(args, 8);
1438         }
1439
1440         /* Misc. flags */
1441         CC->room.QRflags = (extract_int(args, 3) | QR_INUSE);
1442         /* Clean up a client boo-boo: if the client set the room to
1443          * guess-name or passworded, ensure that the private flag is
1444          * also set.
1445          */
1446         if ((CC->room.QRflags & QR_GUESSNAME)
1447             || (CC->room.QRflags & QR_PASSWORDED))
1448                 CC->room.QRflags |= QR_PRIVATE;
1449
1450         /* Some changes can't apply to BASEROOM */
1451         if (!strncasecmp(CC->room.QRname, config.c_baseroom,
1452                          ROOMNAMELEN)) {
1453                 CC->room.QRorder = 0;
1454                 CC->room.QRpasswd[0] = '\0';
1455                 CC->room.QRflags &= ~(QR_PRIVATE & QR_PASSWORDED &
1456                         QR_GUESSNAME & QR_PREFONLY & QR_MAILBOX);
1457                 CC->room.QRflags |= QR_PERMANENT;
1458         } else {        
1459                 /* March order (doesn't apply to AIDEROOM) */
1460                 if (num_parms(args) >= 7)
1461                         CC->room.QRorder = (char) new_order;
1462                 /* Room password */
1463                 extract_token(buf, args, 1, '|', sizeof buf);
1464                 buf[10] = 0;
1465                 safestrncpy(CC->room.QRpasswd, buf,
1466                             sizeof CC->room.QRpasswd);
1467                 /* Kick everyone out if the client requested it
1468                  * (by changing the room's generation number)
1469                  */
1470                 if (extract_int(args, 4)) {
1471                         time(&CC->room.QRgen);
1472                 }
1473         }
1474         /* Some changes can't apply to AIDEROOM */
1475         if (!strncasecmp(CC->room.QRname, config.c_baseroom,
1476                          ROOMNAMELEN)) {
1477                 CC->room.QRorder = 0;
1478                 CC->room.QRflags &= ~QR_MAILBOX;
1479                 CC->room.QRflags |= QR_PERMANENT;
1480         }
1481
1482         /* Write the room record back to disk */
1483         lputroom(&CC->room);
1484
1485         /* Create a room directory if necessary */
1486         if (CC->room.QRflags & QR_DIRECTORY) {
1487                 snprintf(buf, sizeof buf,"%s/%s",
1488                                  ctdl_file_dir,
1489                                  CC->room.QRdirname);
1490                 mkdir(buf, 0755);
1491         }
1492         snprintf(buf, sizeof buf, "The room \"%s\" has been edited by %s.\n",
1493                 CC->room.QRname, CC->curr_user);
1494         aide_message(buf, "Room modification Message");
1495         cprintf("%d Ok\n", CIT_OK);
1496 }
1497
1498
1499
1500 /* 
1501  * get the name of the room aide for this room
1502  */
1503 void cmd_geta(char *cmdbuf)
1504 {
1505         struct ctdluser usbuf;
1506
1507         if (CtdlAccessCheck(ac_logged_in)) return;
1508
1509         if (getuserbynumber(&usbuf, CC->room.QRroomaide) == 0) {
1510                 cprintf("%d %s\n", CIT_OK, usbuf.fullname);
1511         } else {
1512                 cprintf("%d \n", CIT_OK);
1513         }
1514 }
1515
1516
1517 /* 
1518  * set the room aide for this room
1519  */
1520 void cmd_seta(char *new_ra)
1521 {
1522         struct ctdluser usbuf;
1523         long newu;
1524         char buf[SIZ];
1525         int post_notice;
1526
1527         if (CtdlAccessCheck(ac_room_aide)) return;
1528
1529         if (getuser(&usbuf, new_ra) != 0) {
1530                 newu = (-1L);
1531         } else {
1532                 newu = usbuf.usernum;
1533         }
1534
1535         lgetroom(&CC->room, CC->room.QRname);
1536         post_notice = 0;
1537         if (CC->room.QRroomaide != newu) {
1538                 post_notice = 1;
1539         }
1540         CC->room.QRroomaide = newu;
1541         lputroom(&CC->room);
1542
1543         /*
1544          * We have to post the change notice _after_ writing changes to 
1545          * the room table, otherwise it would deadlock!
1546          */
1547         if (post_notice == 1) {
1548                 if (!IsEmptyStr(usbuf.fullname))
1549                         snprintf(buf, sizeof buf,
1550                                 "%s is now the room aide for \"%s\".\n",
1551                                 usbuf.fullname, CC->room.QRname);
1552                 else
1553                         snprintf(buf, sizeof buf,
1554                                 "There is now no room aide for \"%s\".\n",
1555                                 CC->room.QRname);
1556                 aide_message(buf, "Aide Room Modification");
1557         }
1558         cprintf("%d Ok\n", CIT_OK);
1559 }
1560
1561 /* 
1562  * retrieve info file for this room
1563  */
1564 void cmd_rinf(char *gargs)
1565 {
1566         char filename[128];
1567         char buf[SIZ];
1568         FILE *info_fp;
1569
1570         assoc_file_name(filename, sizeof filename, &CC->room, ctdl_info_dir);
1571         info_fp = fopen(filename, "r");
1572
1573         if (info_fp == NULL) {
1574                 cprintf("%d No info file.\n", ERROR + FILE_NOT_FOUND);
1575                 return;
1576         }
1577         cprintf("%d Info:\n", LISTING_FOLLOWS);
1578         while (fgets(buf, sizeof buf, info_fp) != NULL) {
1579                 if (!IsEmptyStr(buf))
1580                         buf[strlen(buf) - 1] = 0;
1581                 cprintf("%s\n", buf);
1582         }
1583         cprintf("000\n");
1584         fclose(info_fp);
1585 }
1586
1587 /*
1588  * Asynchronously schedule a room for deletion.  The room will appear
1589  * deleted to the user(s), but it won't actually get purged from the
1590  * database until THE DREADED AUTO-PURGER makes its next run.
1591  */
1592 void schedule_room_for_deletion(struct ctdlroom *qrbuf)
1593 {
1594         char old_name[ROOMNAMELEN];
1595         static int seq = 0;
1596
1597         CtdlLogPrintf(CTDL_NOTICE, "Scheduling room <%s> for deletion\n",
1598                 qrbuf->QRname);
1599
1600         safestrncpy(old_name, qrbuf->QRname, sizeof old_name);
1601
1602         getroom(qrbuf, qrbuf->QRname);
1603
1604         /* Turn the room into a private mailbox owned by a user who doesn't
1605          * exist.  This will immediately make the room invisible to everyone,
1606          * and qualify the room for purging.
1607          */
1608         snprintf(qrbuf->QRname, sizeof qrbuf->QRname, "9999999999.%08lx.%04d.%s",
1609                 time(NULL),
1610                 ++seq,
1611                 old_name
1612         );
1613         qrbuf->QRflags |= QR_MAILBOX;
1614         time(&qrbuf->QRgen);    /* Use a timestamp as the new generation number  */
1615
1616         putroom(qrbuf);
1617
1618         b_deleteroom(old_name);
1619 }
1620
1621
1622
1623 /*
1624  * Back end processing to delete a room and everything associated with it
1625  * (This one is synchronous and should only get called by THE DREADED
1626  * AUTO-PURGER in serv_expire.c.  All user-facing code should call
1627  * the asynchronous schedule_room_for_deletion() instead.)
1628  */
1629 void delete_room(struct ctdlroom *qrbuf)
1630 {
1631         struct floor flbuf;
1632         char filename[100];
1633         /* TODO: filename magic? does this realy work? */
1634
1635         CtdlLogPrintf(CTDL_NOTICE, "Deleting room <%s>\n", qrbuf->QRname);
1636
1637         /* Delete the info file */
1638         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_info_dir);
1639         unlink(filename);
1640
1641         /* Delete the image file */
1642         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_image_dir);
1643         unlink(filename);
1644
1645         /* Delete the room's network config file */
1646         assoc_file_name(filename, sizeof filename, qrbuf, ctdl_netcfg_dir);
1647         unlink(filename);
1648
1649         /* Delete the messages in the room
1650          * (Careful: this opens an S_ROOMS critical section!)
1651          */
1652         CtdlDeleteMessages(qrbuf->QRname, NULL, 0, "");
1653
1654         /* Flag the room record as not in use */
1655         lgetroom(qrbuf, qrbuf->QRname);
1656         qrbuf->QRflags = 0;
1657         lputroom(qrbuf);
1658
1659         /* then decrement the reference count for the floor */
1660         lgetfloor(&flbuf, (int) (qrbuf->QRfloor));
1661         flbuf.f_ref_count = flbuf.f_ref_count - 1;
1662         lputfloor(&flbuf, (int) (qrbuf->QRfloor));
1663
1664         /* Delete the room record from the database! */
1665         b_deleteroom(qrbuf->QRname);
1666 }
1667
1668
1669
1670 /*
1671  * Check access control for deleting a room
1672  */
1673 int CtdlDoIHavePermissionToDeleteThisRoom(struct ctdlroom *qr) {
1674
1675         if ((!(CC->logged_in)) && (!(CC->internal_pgm))) {
1676                 return(0);
1677         }
1678
1679         if (is_noneditable(qr)) {
1680                 return(0);
1681         }
1682
1683         /*
1684          * For mailboxes, check stuff
1685          */
1686         if (qr->QRflags & QR_MAILBOX) {
1687
1688                 if (strlen(qr->QRname) < 12) return(0); /* bad name */
1689
1690                 if (atol(qr->QRname) != CC->user.usernum) {
1691                         return(0);      /* not my room */
1692                 }
1693
1694                 /* Can't delete your Mail> room */
1695                 if (!strcasecmp(&qr->QRname[11], MAILROOM)) return(0);
1696
1697                 /* Otherwise it's ok */
1698                 return(1);
1699         }
1700
1701         /*
1702          * For normal rooms, just check for aide or room aide status.
1703          */
1704         return(is_room_aide());
1705 }
1706
1707 /*
1708  * aide command: kill the current room
1709  */
1710 void cmd_kill(char *argbuf)
1711 {
1712         char deleted_room_name[ROOMNAMELEN];
1713         char msg[SIZ];
1714         int kill_ok;
1715
1716         kill_ok = extract_int(argbuf, 0);
1717
1718         if (CtdlDoIHavePermissionToDeleteThisRoom(&CC->room) == 0) {
1719                 cprintf("%d Can't delete this room.\n", ERROR + NOT_HERE);
1720                 return;
1721         }
1722         if (kill_ok) {
1723                 if (CC->room.QRflags & QR_MAILBOX) {
1724                         safestrncpy(deleted_room_name, &CC->room.QRname[11], sizeof deleted_room_name);
1725                 }
1726                 else {
1727                         safestrncpy(deleted_room_name, CC->room.QRname, sizeof deleted_room_name);
1728                 }
1729
1730                 /* Do the dirty work */
1731                 schedule_room_for_deletion(&CC->room);
1732
1733                 /* Return to the Lobby */
1734                 usergoto(config.c_baseroom, 0, 0, NULL, NULL);
1735
1736                 /* tell the world what we did */
1737                 snprintf(msg, sizeof msg, "The room \"%s\" has been deleted by %s.\n",
1738                          deleted_room_name, CC->curr_user);
1739                 aide_message(msg, "Room Purger Message");
1740                 cprintf("%d '%s' deleted.\n", CIT_OK, deleted_room_name);
1741         } else {
1742                 cprintf("%d ok to delete.\n", CIT_OK);
1743         }
1744 }
1745
1746
1747 /*
1748  * Internal code to create a new room (returns room flags)
1749  *
1750  * Room types:  0=public, 1=guessname, 2=passworded, 3=inv-only,
1751  *              4=mailbox, 5=mailbox, but caller supplies namespace
1752  */
1753 unsigned create_room(char *new_room_name,
1754                      int new_room_type,
1755                      char *new_room_pass,
1756                      int new_room_floor,
1757                      int really_create,
1758                      int avoid_access,
1759                      int new_room_view)
1760 {
1761
1762         struct ctdlroom qrbuf;
1763         struct floor flbuf;
1764         struct visit vbuf;
1765
1766         CtdlLogPrintf(CTDL_DEBUG, "create_room(name=%s, type=%d, view=%d)\n",
1767                 new_room_name, new_room_type, new_room_view);
1768
1769         if (getroom(&qrbuf, new_room_name) == 0) {
1770                 CtdlLogPrintf(CTDL_DEBUG, "%s already exists.\n", new_room_name);
1771                 return(0);
1772         }
1773
1774         memset(&qrbuf, 0, sizeof(struct ctdlroom));
1775         safestrncpy(qrbuf.QRpasswd, new_room_pass, sizeof qrbuf.QRpasswd);
1776         qrbuf.QRflags = QR_INUSE;
1777         if (new_room_type > 0)
1778                 qrbuf.QRflags = (qrbuf.QRflags | QR_PRIVATE);
1779         if (new_room_type == 1)
1780                 qrbuf.QRflags = (qrbuf.QRflags | QR_GUESSNAME);
1781         if (new_room_type == 2)
1782                 qrbuf.QRflags = (qrbuf.QRflags | QR_PASSWORDED);
1783         if ( (new_room_type == 4) || (new_room_type == 5) ) {
1784                 qrbuf.QRflags = (qrbuf.QRflags | QR_MAILBOX);
1785                 /* qrbuf.QRflags2 |= QR2_SUBJECTREQ; */
1786         }
1787
1788         /* If the user is requesting a personal room, set up the room
1789          * name accordingly (prepend the user number)
1790          */
1791         if (new_room_type == 4) {
1792                 MailboxName(qrbuf.QRname, sizeof qrbuf.QRname, &CC->user, new_room_name);
1793         }
1794         else {
1795                 safestrncpy(qrbuf.QRname, new_room_name, sizeof qrbuf.QRname);
1796         }
1797
1798         /* If the room is private, and the system administrator has elected
1799          * to automatically grant room aide privileges, do so now; otherwise,
1800          * set the room aide to undefined.
1801          */
1802         if ((qrbuf.QRflags & QR_PRIVATE) && (CREATAIDE == 1)) {
1803                 qrbuf.QRroomaide = CC->user.usernum;
1804         } else {
1805                 qrbuf.QRroomaide = (-1L);
1806         }
1807
1808         /* 
1809          * If the caller is only interested in testing whether this will work,
1810          * return now without creating the room.
1811          */
1812         if (!really_create) return (qrbuf.QRflags);
1813
1814         qrbuf.QRnumber = get_new_room_number();
1815         qrbuf.QRhighest = 0L;   /* No messages in this room yet */
1816         time(&qrbuf.QRgen);     /* Use a timestamp as the generation number */
1817         qrbuf.QRfloor = new_room_floor;
1818         qrbuf.QRdefaultview = new_room_view;
1819
1820         /* save what we just did... */
1821         putroom(&qrbuf);
1822
1823         /* bump the reference count on whatever floor the room is on */
1824         lgetfloor(&flbuf, (int) qrbuf.QRfloor);
1825         flbuf.f_ref_count = flbuf.f_ref_count + 1;
1826         lputfloor(&flbuf, (int) qrbuf.QRfloor);
1827
1828         /* Grant the creator access to the room unless the avoid_access
1829          * parameter was specified.
1830          */
1831         if ( (CC->logged_in) && (avoid_access == 0) ) {
1832                 CtdlGetRelationship(&vbuf, &CC->user, &qrbuf);
1833                 vbuf.v_flags = vbuf.v_flags & ~V_FORGET & ~V_LOCKOUT;
1834                 vbuf.v_flags = vbuf.v_flags | V_ACCESS;
1835                 CtdlSetRelationship(&vbuf, &CC->user, &qrbuf);
1836         }
1837
1838         /* resume our happy day */
1839         return (qrbuf.QRflags);
1840 }
1841
1842
1843 /*
1844  * create a new room
1845  */
1846 void cmd_cre8(char *args)
1847 {
1848         int cre8_ok;
1849         char new_room_name[ROOMNAMELEN];
1850         int new_room_type;
1851         char new_room_pass[32];
1852         int new_room_floor;
1853         int new_room_view;
1854         char *notification_message = NULL;
1855         unsigned newflags;
1856         struct floor *fl;
1857         int avoid_access = 0;
1858
1859         cre8_ok = extract_int(args, 0);
1860         extract_token(new_room_name, args, 1, '|', sizeof new_room_name);
1861         new_room_name[ROOMNAMELEN - 1] = 0;
1862         new_room_type = extract_int(args, 2);
1863         extract_token(new_room_pass, args, 3, '|', sizeof new_room_pass);
1864         avoid_access = extract_int(args, 5);
1865         new_room_view = extract_int(args, 6);
1866         new_room_pass[9] = 0;
1867         new_room_floor = 0;
1868
1869         if ((IsEmptyStr(new_room_name)) && (cre8_ok == 1)) {
1870                 cprintf("%d Invalid room name.\n", ERROR + ILLEGAL_VALUE);
1871                 return;
1872         }
1873
1874         if (!strcasecmp(new_room_name, MAILROOM)) {
1875                 cprintf("%d '%s' already exists.\n",
1876                         ERROR + ALREADY_EXISTS, new_room_name);
1877                 return;
1878         }
1879
1880         if (num_parms(args) >= 5) {
1881                 fl = cgetfloor(extract_int(args, 4));
1882                 if (fl == NULL) {
1883                         cprintf("%d Invalid floor number.\n",
1884                                 ERROR + INVALID_FLOOR_OPERATION);
1885                         return;
1886                 }
1887                 else if ((fl->f_flags & F_INUSE) == 0) {
1888                         cprintf("%d Invalid floor number.\n",
1889                                 ERROR + INVALID_FLOOR_OPERATION);
1890                         return;
1891                 } else {
1892                         new_room_floor = extract_int(args, 4);
1893                 }
1894         }
1895
1896         if (CtdlAccessCheck(ac_logged_in)) return;
1897
1898         if (CC->user.axlevel < config.c_createax && !CC->internal_pgm) {
1899                 cprintf("%d You need higher access to create rooms.\n",
1900                         ERROR + HIGHER_ACCESS_REQUIRED);
1901                 return;
1902         }
1903
1904         if ((IsEmptyStr(new_room_name)) && (cre8_ok == 0)) {
1905                 cprintf("%d Ok to create rooms.\n", CIT_OK);
1906                 return;
1907         }
1908
1909         if ((new_room_type < 0) || (new_room_type > 5)) {
1910                 cprintf("%d Invalid room type.\n", ERROR + ILLEGAL_VALUE);
1911                 return;
1912         }
1913
1914         if (new_room_type == 5) {
1915                 if (CC->user.axlevel < 6) {
1916                         cprintf("%d Higher access required\n", 
1917                                 ERROR + HIGHER_ACCESS_REQUIRED);
1918                         return;
1919                 }
1920         }
1921
1922         /* Check to make sure the requested room name doesn't already exist */
1923         newflags = create_room(new_room_name,
1924                                 new_room_type, new_room_pass, new_room_floor,
1925                                 0, avoid_access, new_room_view);
1926         if (newflags == 0) {
1927                 cprintf("%d '%s' already exists.\n",
1928                         ERROR + ALREADY_EXISTS, new_room_name);
1929                 return;
1930         }
1931
1932         if (cre8_ok == 0) {
1933                 cprintf("%d OK to create '%s'\n", CIT_OK, new_room_name);
1934                 return;
1935         }
1936
1937         /* If we reach this point, the room needs to be created. */
1938
1939         newflags = create_room(new_room_name,
1940                            new_room_type, new_room_pass, new_room_floor, 1, 0,
1941                            new_room_view);
1942
1943         /* post a message in Aide> describing the new room */
1944         notification_message = malloc(1024);
1945         snprintf(notification_message, 1024,
1946                 "A new room called \"%s\" has been created by %s%s%s%s%s%s\n",
1947                 new_room_name,
1948                 CC->user.fullname,
1949                 ((newflags & QR_MAILBOX) ? " [personal]" : ""),
1950                 ((newflags & QR_PRIVATE) ? " [private]" : ""),
1951                 ((newflags & QR_GUESSNAME) ? " [hidden]" : ""),
1952                 ((newflags & QR_PASSWORDED) ? " Password: " : ""),
1953                 ((newflags & QR_PASSWORDED) ? new_room_pass : "")
1954         );
1955         aide_message(notification_message, "Room Creation Message");
1956         free(notification_message);
1957
1958         cprintf("%d '%s' has been created.\n", CIT_OK, new_room_name);
1959 }
1960
1961
1962
1963 void cmd_einf(char *ok)
1964 {                               /* enter info file for current room */
1965         FILE *fp;
1966         char infofilename[SIZ];
1967         char buf[SIZ];
1968
1969         unbuffer_output();
1970
1971         if (CtdlAccessCheck(ac_room_aide)) return;
1972
1973         if (atoi(ok) == 0) {
1974                 cprintf("%d Ok.\n", CIT_OK);
1975                 return;
1976         }
1977         assoc_file_name(infofilename, sizeof infofilename, &CC->room, ctdl_info_dir);
1978         CtdlLogPrintf(CTDL_DEBUG, "opening\n");
1979         fp = fopen(infofilename, "w");
1980         CtdlLogPrintf(CTDL_DEBUG, "checking\n");
1981         if (fp == NULL) {
1982                 cprintf("%d Cannot open %s: %s\n",
1983                   ERROR + INTERNAL_ERROR, infofilename, strerror(errno));
1984                 return;
1985         }
1986         cprintf("%d Send info...\n", SEND_LISTING);
1987
1988         do {
1989                 client_getln(buf, sizeof buf);
1990                 if (strcmp(buf, "000"))
1991                         fprintf(fp, "%s\n", buf);
1992         } while (strcmp(buf, "000"));
1993         fclose(fp);
1994
1995         /* now update the room index so people will see our new info */
1996         lgetroom(&CC->room, CC->room.QRname);           /* lock so no one steps on us */
1997         CC->room.QRinfo = CC->room.QRhighest + 1L;
1998         lputroom(&CC->room);
1999 }
2000
2001
2002 /* 
2003  * cmd_lflr()   -  List all known floors
2004  */
2005 void cmd_lflr(char *gargs)
2006 {
2007         int a;
2008         struct floor flbuf;
2009
2010         if (CtdlAccessCheck(ac_logged_in)) return;
2011
2012         cprintf("%d Known floors:\n", LISTING_FOLLOWS);
2013
2014         for (a = 0; a < MAXFLOORS; ++a) {
2015                 getfloor(&flbuf, a);
2016                 if (flbuf.f_flags & F_INUSE) {
2017                         cprintf("%d|%s|%d\n",
2018                                 a,
2019                                 flbuf.f_name,
2020                                 flbuf.f_ref_count);
2021                 }
2022         }
2023         cprintf("000\n");
2024 }
2025
2026
2027
2028 /*
2029  * create a new floor
2030  */
2031 void cmd_cflr(char *argbuf)
2032 {
2033         char new_floor_name[256];
2034         struct floor flbuf;
2035         int cflr_ok;
2036         int free_slot = (-1);
2037         int a;
2038
2039         extract_token(new_floor_name, argbuf, 0, '|', sizeof new_floor_name);
2040         cflr_ok = extract_int(argbuf, 1);
2041
2042         if (CtdlAccessCheck(ac_aide)) return;
2043
2044         if (IsEmptyStr(new_floor_name)) {
2045                 cprintf("%d Blank floor name not allowed.\n",
2046                         ERROR + ILLEGAL_VALUE);
2047                 return;
2048         }
2049
2050         for (a = 0; a < MAXFLOORS; ++a) {
2051                 getfloor(&flbuf, a);
2052
2053                 /* note any free slots while we're scanning... */
2054                 if (((flbuf.f_flags & F_INUSE) == 0)
2055                     && (free_slot < 0))
2056                         free_slot = a;
2057
2058                 /* check to see if it already exists */
2059                 if ((!strcasecmp(flbuf.f_name, new_floor_name))
2060                     && (flbuf.f_flags & F_INUSE)) {
2061                         cprintf("%d Floor '%s' already exists.\n",
2062                                 ERROR + ALREADY_EXISTS,
2063                                 flbuf.f_name);
2064                         return;
2065                 }
2066         }
2067
2068         if (free_slot < 0) {
2069                 cprintf("%d There is no space available for a new floor.\n",
2070                         ERROR + INVALID_FLOOR_OPERATION);
2071                 return;
2072         }
2073         if (cflr_ok == 0) {
2074                 cprintf("%d ok to create...\n", CIT_OK);
2075                 return;
2076         }
2077         lgetfloor(&flbuf, free_slot);
2078         flbuf.f_flags = F_INUSE;
2079         flbuf.f_ref_count = 0;
2080         safestrncpy(flbuf.f_name, new_floor_name, sizeof flbuf.f_name);
2081         lputfloor(&flbuf, free_slot);
2082         cprintf("%d %d\n", CIT_OK, free_slot);
2083 }
2084
2085
2086
2087 /*
2088  * delete a floor
2089  */
2090 void cmd_kflr(char *argbuf)
2091 {
2092         struct floor flbuf;
2093         int floor_to_delete;
2094         int kflr_ok;
2095         int delete_ok;
2096
2097         floor_to_delete = extract_int(argbuf, 0);
2098         kflr_ok = extract_int(argbuf, 1);
2099
2100         if (CtdlAccessCheck(ac_aide)) return;
2101
2102         lgetfloor(&flbuf, floor_to_delete);
2103
2104         delete_ok = 1;
2105         if ((flbuf.f_flags & F_INUSE) == 0) {
2106                 cprintf("%d Floor %d not in use.\n",
2107                         ERROR + INVALID_FLOOR_OPERATION, floor_to_delete);
2108                 delete_ok = 0;
2109         } else {
2110                 if (flbuf.f_ref_count != 0) {
2111                         cprintf("%d Cannot delete; floor contains %d rooms.\n",
2112                                 ERROR + INVALID_FLOOR_OPERATION,
2113                                 flbuf.f_ref_count);
2114                         delete_ok = 0;
2115                 } else {
2116                         if (kflr_ok == 1) {
2117                                 cprintf("%d Ok\n", CIT_OK);
2118                         } else {
2119                                 cprintf("%d Ok to delete...\n", CIT_OK);
2120                         }
2121
2122                 }
2123
2124         }
2125
2126         if ((delete_ok == 1) && (kflr_ok == 1))
2127                 flbuf.f_flags = 0;
2128         lputfloor(&flbuf, floor_to_delete);
2129 }
2130
2131 /*
2132  * edit a floor
2133  */
2134 void cmd_eflr(char *argbuf)
2135 {
2136         struct floor flbuf;
2137         int floor_num;
2138         int np;
2139
2140         np = num_parms(argbuf);
2141         if (np < 1) {
2142                 cprintf("%d Usage error.\n", ERROR + ILLEGAL_VALUE);
2143                 return;
2144         }
2145
2146         if (CtdlAccessCheck(ac_aide)) return;
2147
2148         floor_num = extract_int(argbuf, 0);
2149         lgetfloor(&flbuf, floor_num);
2150         if ((flbuf.f_flags & F_INUSE) == 0) {
2151                 lputfloor(&flbuf, floor_num);
2152                 cprintf("%d Floor %d is not in use.\n",
2153                         ERROR + INVALID_FLOOR_OPERATION, floor_num);
2154                 return;
2155         }
2156         if (np >= 2)
2157                 extract_token(flbuf.f_name, argbuf, 1, '|', sizeof flbuf.f_name);
2158         lputfloor(&flbuf, floor_num);
2159
2160         cprintf("%d Ok\n", CIT_OK);
2161 }
2162
2163
2164 /*****************************************************************************/
2165 /*                      MODULE INITIALIZATION STUFF                          */
2166 /*****************************************************************************/
2167
2168 CTDL_MODULE_INIT(room_ops)
2169 {
2170         CtdlRegisterProtoHook(cmd_lrms, "LRMS", "Autoconverted. TODO: document me.");
2171         CtdlRegisterProtoHook(cmd_lkra, "LKRA", "Autoconverted. TODO: document me.");
2172         CtdlRegisterProtoHook(cmd_lkrn, "LKRN", "Autoconverted. TODO: document me.");
2173         CtdlRegisterProtoHook(cmd_lkro, "LKRO", "Autoconverted. TODO: document me.");
2174         CtdlRegisterProtoHook(cmd_lzrm, "LZRM", "Autoconverted. TODO: document me.");
2175         CtdlRegisterProtoHook(cmd_lprm, "LPRM", "Autoconverted. TODO: document me.");
2176         CtdlRegisterProtoHook(cmd_goto, "GOTO", "Autoconverted. TODO: document me.");
2177         CtdlRegisterProtoHook(cmd_whok, "WHOK", "Autoconverted. TODO: document me.");
2178         CtdlRegisterProtoHook(cmd_rdir, "RDIR", "Autoconverted. TODO: document me.");
2179         CtdlRegisterProtoHook(cmd_getr, "GETR", "Autoconverted. TODO: document me.");
2180         CtdlRegisterProtoHook(cmd_setr, "SETR", "Autoconverted. TODO: document me.");
2181         CtdlRegisterProtoHook(cmd_geta, "GETA", "Autoconverted. TODO: document me.");
2182         CtdlRegisterProtoHook(cmd_seta, "SETA", "Autoconverted. TODO: document me.");
2183         CtdlRegisterProtoHook(cmd_rinf, "RINF", "Autoconverted. TODO: document me.");
2184         CtdlRegisterProtoHook(cmd_kill, "KILL", "Autoconverted. TODO: document me.");
2185         CtdlRegisterProtoHook(cmd_cre8, "CRE8", "Autoconverted. TODO: document me.");
2186         CtdlRegisterProtoHook(cmd_einf, "EINF", "Autoconverted. TODO: document me.");
2187         CtdlRegisterProtoHook(cmd_lflr, "LFLR", "Autoconverted. TODO: document me.");
2188         CtdlRegisterProtoHook(cmd_cflr, "CFLR", "Autoconverted. TODO: document me.");
2189         CtdlRegisterProtoHook(cmd_kflr, "KFLR", "Autoconverted. TODO: document me.");
2190         CtdlRegisterProtoHook(cmd_eflr, "EFLR", "Autoconverted. TODO: document me.");
2191         /* return our Subversion id for the Log */
2192         return "$Id$";
2193 }