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