More info for home server list
[freeradius.git] / src / main / command.c
1 /*
2  * command.c    Command socket processing.
3  *
4  * Version:     $Id$
5  *
6  *   This program is free software; you can redistribute it and/or modify
7  *   it under the terms of the GNU General Public License as published by
8  *   the Free Software Foundation; either version 2 of the License, or
9  *   (at your option) any later version.
10  *
11  *   This program is distributed in the hope that it will be useful,
12  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *   GNU General Public License for more details.
15  *
16  *   You should have received a copy of the GNU General Public License
17  *   along with this program; if not, write to the Free Software
18  *   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  *
20  * Copyright 2008 The FreeRADIUS server project
21  * Copyright 2008 Alan DeKok <aland@deployingradius.com>
22  */
23
24 #ifdef WITH_COMMAND_SOCKET
25
26 #include <freeradius-devel/modpriv.h>
27 #include <freeradius-devel/conffile.h>
28 #include <freeradius-devel/stats.h>
29 #include <freeradius-devel/realms.h>
30
31 #ifdef HAVE_SYS_UN_H
32 #include <sys/un.h>
33 #endif
34
35 #ifdef HAVE_SYS_STAT_H
36 #include <sys/stat.h>
37 #endif
38
39 #ifdef HAVE_PWD_H
40 #include <pwd.h>
41 #endif
42
43 #ifdef HAVE_GRP_H
44 #include <grp.h>
45 #endif
46
47 typedef struct fr_command_table_t fr_command_table_t;
48
49 typedef int (*fr_command_func_t)(rad_listen_t *, int, char *argv[]);
50
51 #define FR_READ  (1)
52 #define FR_WRITE (2)
53
54 struct fr_command_table_t {
55         const char *command;
56         int mode;               /* read/write */
57         const char *help;
58         fr_command_func_t func;
59         fr_command_table_t *table;
60 };
61
62 #define COMMAND_BUFFER_SIZE (1024)
63
64 typedef struct fr_command_socket_t {
65         char    *path;
66         uid_t   uid;
67         gid_t   gid;
68         int     mode;
69         char    *uid_name;
70         char    *gid_name;
71         char    *mode_name;
72         char user[256];
73         ssize_t offset;
74         ssize_t next;
75         char buffer[COMMAND_BUFFER_SIZE];
76 } fr_command_socket_t;
77
78 static const CONF_PARSER command_config[] = {
79   { "socket",  PW_TYPE_STRING_PTR,
80     offsetof(fr_command_socket_t, path), NULL, "${run_dir}/radiusd.sock"},
81   { "uid",  PW_TYPE_STRING_PTR,
82     offsetof(fr_command_socket_t, uid_name), NULL, NULL},
83   { "gid",  PW_TYPE_STRING_PTR,
84     offsetof(fr_command_socket_t, gid_name), NULL, NULL},
85   { "mode",  PW_TYPE_STRING_PTR,
86     offsetof(fr_command_socket_t, mode_name), NULL, NULL},
87
88   { NULL, -1, 0, NULL, NULL }           /* end the list */
89 };
90
91 static FR_NAME_NUMBER mode_names[] = {
92         { "ro", FR_READ },
93         { "read-only", FR_READ },
94         { "read-write", FR_READ | FR_WRITE },
95         { "rw", FR_READ | FR_WRITE },
96         { NULL, 0 }
97 };
98
99
100 static ssize_t cprintf(rad_listen_t *listener, const char *fmt, ...)
101 #ifdef __GNUC__
102                 __attribute__ ((format (printf, 2, 3)))
103 #endif
104 ;
105
106 #ifndef HAVE_GETPEEREID
107 static int getpeereid(int s, uid_t *euid, gid_t *egid)
108 {
109 #ifndef SO_PEERCRED
110         return -1;
111 #else
112         struct ucred cr;
113         socklen_t cl = sizeof(cr);
114         
115         if (getsockopt(s, SOL_SOCKET, SO_PEERCRED, &cr, &cl) < 0) {
116                 return -1;
117         }
118
119         *euid = cr.uid;
120         *egid = cr.gid;
121         return 0;
122 #endif /* SO_PEERCRED */
123 }
124 #endif /* HAVE_GETPEEREID */
125
126
127 static int fr_server_domain_socket(const char *path)
128 {
129         int sockfd;
130         size_t len;
131         socklen_t socklen;
132         struct sockaddr_un salocal;
133         struct stat buf;
134
135         len = strlen(path);
136         if (len >= sizeof(salocal.sun_path)) {
137                 radlog(L_ERR, "Path too long in socket filename.");
138                 return -1;
139         }
140
141         if ((sockfd = socket(AF_UNIX, SOCK_STREAM, 0)) < 0) {
142                 radlog(L_ERR, "Failed creating socket: %s",
143                         strerror(errno));
144                 return -1;
145         }
146
147         memset(&salocal, 0, sizeof(salocal));
148         salocal.sun_family = AF_UNIX;
149         memcpy(salocal.sun_path, path, len); /* not zero terminated */
150         
151         socklen = sizeof(salocal.sun_family) + len;
152
153         /*
154          *      Check the path.
155          */
156         if (stat(path, &buf) < 0) {
157                 if (errno != ENOENT) {
158                         radlog(L_ERR, "Failed to stat %s: %s",
159                                path, strerror(errno));
160                         return -1;
161                 }
162
163                 /*
164                  *      FIXME: Check the enclosing directory?
165                  */
166         } else {                /* it exists */
167                 if (!S_ISREG(buf.st_mode)
168 #ifdef S_ISSOCK
169                     && !S_ISSOCK(buf.st_mode)
170 #endif
171                         ) {
172                         radlog(L_ERR, "Cannot turn %s into socket", path);
173                         return -1;                     
174                 }
175
176                 /*
177                  *      Refuse to open sockets not owned by us.
178                  */
179                 if (buf.st_uid != geteuid()) {
180                         radlog(L_ERR, "We do not own %s", path);
181                         return -1;
182                 }
183
184                 if (unlink(path) < 0) {
185                         radlog(L_ERR, "Failed to delete %s: %s",
186                                path, strerror(errno));
187                         return -1;
188                 }
189         }
190
191         if (bind(sockfd, (struct sockaddr *)&salocal, socklen) < 0) {
192                 radlog(L_ERR, "Failed binding to %s: %s",
193                         path, strerror(errno));
194                 close(sockfd);
195                 return -1;
196         }
197
198         /*
199          *      FIXME: There's a race condition here.  But Linux
200          *      doesn't seem to permit fchmod on domain sockets.
201          */
202         if (chmod(path, S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP) < 0) {
203                 radlog(L_ERR, "Failed setting permissions on %s: %s",
204                        path, strerror(errno));
205                 close(sockfd);
206                 return -1;
207         }
208
209         if (listen(sockfd, 8) < 0) {
210                 radlog(L_ERR, "Failed listening to %s: %s",
211                         path, strerror(errno));
212                 close(sockfd);
213                 return -1;
214         }
215
216 #ifdef O_NONBLOCK
217         {
218                 int flags;
219                 
220                 if ((flags = fcntl(sockfd, F_GETFL, NULL)) < 0)  {
221                         radlog(L_ERR, "Failure getting socket flags: %s",
222                                 strerror(errno));
223                         close(sockfd);
224                         return -1;
225                 }
226                 
227                 flags |= O_NONBLOCK;
228                 if( fcntl(sockfd, F_SETFL, flags) < 0) {
229                         radlog(L_ERR, "Failure setting socket flags: %s",
230                                 strerror(errno));
231                         close(sockfd);
232                         return -1;
233                 }
234         }
235 #endif
236
237         return sockfd;
238 }
239
240
241 static ssize_t cprintf(rad_listen_t *listener, const char *fmt, ...)
242 {
243         ssize_t len;
244         va_list ap;
245         char buffer[256];
246
247         va_start(ap, fmt);
248         len = vsnprintf(buffer, sizeof(buffer), fmt, ap);
249         va_end(ap);
250
251         if (listener->status == RAD_LISTEN_STATUS_CLOSED) return 0;
252
253         len = write(listener->fd, buffer, len);
254         if (len < 0) {
255                 listener->status = RAD_LISTEN_STATUS_CLOSED;
256                 event_new_fd(listener);
257         }
258
259         /*
260          *      FIXME: Keep writing until done?
261          */
262         return len;
263 }
264
265 static int command_hup(rad_listen_t *listener, int argc, char *argv[])
266 {
267         CONF_SECTION *cs;
268         module_instance_t *mi;
269
270         if (argc == 0) {
271                 radius_signal_self(RADIUS_SIGNAL_SELF_HUP);
272                 return 1;
273         }
274
275         cs = cf_section_find("modules");
276         if (!cs) return 0;
277
278         mi = find_module_instance(cs, argv[0], 0);
279         if (!mi) {
280                 cprintf(listener, "ERROR: No such module \"%s\"\n", argv[0]);
281                 return 0;
282         }
283
284         if ((mi->entry->module->type & RLM_TYPE_HUP_SAFE) == 0) {
285                 cprintf(listener, "ERROR: Module %s cannot be hup'd\n",
286                         argv[0]);
287                 return 0;
288         }
289
290         if (!module_hup_module(mi->cs, mi, time(NULL))) {
291                 cprintf(listener, "ERROR: Failed to reload module\n");
292                 return 0;
293         }
294
295         return 1;               /* success */
296 }
297
298 static int command_terminate(UNUSED rad_listen_t *listener,
299                              UNUSED int argc, UNUSED char *argv[])
300 {
301         radius_signal_self(RADIUS_SIGNAL_SELF_TERM);
302
303         return 1;               /* success */
304 }
305
306 extern time_t fr_start_time;
307
308 static int command_uptime(rad_listen_t *listener,
309                           UNUSED int argc, UNUSED char *argv[])
310 {
311         char buffer[128];
312
313         CTIME_R(&fr_start_time, buffer, sizeof(buffer));
314         cprintf(listener, "Up since %s", buffer); /* no \r\n */
315
316         return 1;               /* success */
317 }
318
319 static const char *tabs = "\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t";
320
321 /*
322  *      FIXME: Recurse && indent?
323  */
324 static void cprint_conf_parser(rad_listen_t *listener, int indent, CONF_SECTION *cs,
325                                const void *base)
326                                
327 {
328         int i;
329         const void *data;
330         const char *name1 = cf_section_name1(cs);
331         const char *name2 = cf_section_name2(cs);
332         const CONF_PARSER *variables = cf_section_parse_table(cs);
333         char buffer[256];
334
335         if (name2) {
336                 cprintf(listener, "%.*s%s %s {\n", indent, tabs, name1, name2);
337         } else {
338                 cprintf(listener, "%.*s%s {\n", indent, tabs, name1);
339         }
340
341         indent++;
342         
343         /*
344          *      Print
345          */
346         if (variables) for (i = 0; variables[i].name != NULL; i++) {
347                 /*
348                  *      No base struct offset, data must be the pointer.
349                  *      If data doesn't exist, ignore the entry, there
350                  *      must be something wrong.
351                  */
352                 if (!base) {
353                         if (!variables[i].data) {
354                                 continue;
355                         }
356                         
357                         data = variables[i].data;;
358                         
359                 } else if (variables[i].data) {
360                         data = variables[i].data;;
361                         
362                 } else {
363                         data = (((char *)base) + variables[i].offset);
364                 }
365
366                 switch (variables[i].type) {
367                 default:
368                         cprintf(listener, "%.*s%s = ?\n", indent, tabs,
369                                 variables[i].name);
370                         break;
371                         
372                 case PW_TYPE_INTEGER:
373                         cprintf(listener, "%.*s%s = %u\n", indent, tabs,
374                                 variables[i].name, *(int *) data);
375                         break;
376                         
377                 case PW_TYPE_IPADDR:
378                         inet_ntop(AF_INET, data, buffer, sizeof(buffer));
379                         break;
380
381                 case PW_TYPE_IPV6ADDR:
382                         inet_ntop(AF_INET6, data, buffer, sizeof(buffer));
383                         break;
384
385                 case PW_TYPE_BOOLEAN:
386                         cprintf(listener, "%.*s%s = %s\n", indent, tabs,
387                                 variables[i].name, 
388                                 ((*(int *) data) == 0) ? "no" : "yes");
389                         break;
390                         
391                 case PW_TYPE_STRING_PTR:
392                 case PW_TYPE_FILENAME:
393                         /*
394                          *      FIXME: Escape things in the string!
395                          */
396                         if (*(char **) data) {
397                                 cprintf(listener, "%.*s%s = \"%s\"\n", indent, tabs,
398                                         variables[i].name, *(char **) data);
399                         } else {
400                                 cprintf(listener, "%.*s%s = \n", indent, tabs,
401                                         variables[i].name);
402                         }
403                                 
404                         break;
405                 }
406         }
407
408         indent--;
409
410         cprintf(listener, "%.*s}\n", indent, tabs);
411 }
412
413 static int command_show_module_config(rad_listen_t *listener, int argc, char *argv[])
414 {
415         CONF_SECTION *cs;
416         module_instance_t *mi;
417
418         if (argc != 1) {
419                 cprintf(listener, "ERROR: No module name was given\n");
420                 return 0;
421         }
422
423         cs = cf_section_find("modules");
424         if (!cs) return 0;
425
426         mi = find_module_instance(cs, argv[0], 0);
427         if (!mi) {
428                 cprintf(listener, "ERROR: No such module \"%s\"\n", argv[0]);
429                 return 0;
430         }
431
432         cprint_conf_parser(listener, 0, mi->cs, mi->insthandle);
433
434         return 1;               /* success */
435 }
436
437 static const char *method_names[RLM_COMPONENT_COUNT] = {
438         "authenticate",
439         "authorize",
440         "preacct",
441         "accounting",
442         "session",
443         "pre-proxy",
444         "post-proxy",
445         "post-auth"
446 };
447
448
449 static int command_show_module_methods(rad_listen_t *listener, int argc, char *argv[])
450 {
451         int i;
452         CONF_SECTION *cs;
453         const module_instance_t *mi;
454         const module_t *mod;
455
456         if (argc != 1) {
457                 cprintf(listener, "ERROR: No module name was given\n");
458                 return 0;
459         }
460
461         cs = cf_section_find("modules");
462         if (!cs) return 0;
463
464         mi = find_module_instance(cs, argv[0], 0);
465         if (!mi) {
466                 cprintf(listener, "ERROR: No such module \"%s\"\n", argv[0]);
467                 return 0;
468         }
469
470         mod = mi->entry->module;
471
472         for (i = 0; i < RLM_COMPONENT_COUNT; i++) {
473                 if (mod->methods[i]) cprintf(listener, "\t%s\n", method_names[i]);
474         }
475
476         return 1;               /* success */
477 }
478
479
480 static int command_show_module_flags(rad_listen_t *listener, int argc, char *argv[])
481 {
482         CONF_SECTION *cs;
483         const module_instance_t *mi;
484         const module_t *mod;
485
486         if (argc != 1) {
487                 cprintf(listener, "ERROR: No module name was given\n");
488                 return 0;
489         }
490
491         cs = cf_section_find("modules");
492         if (!cs) return 0;
493
494         mi = find_module_instance(cs, argv[0], 0);
495         if (!mi) {
496                 cprintf(listener, "ERROR: No such module \"%s\"\n", argv[0]);
497                 return 0;
498         }
499
500         mod = mi->entry->module;
501
502         if ((mod->type & RLM_TYPE_THREAD_SAFE) != 0)
503                 cprintf(listener, "\tthread-safe\n");
504
505
506         if ((mod->type & RLM_TYPE_CHECK_CONFIG_SAFE) != 0)
507                 cprintf(listener, "\twill-check-config\n");
508
509
510         if ((mod->type & RLM_TYPE_HUP_SAFE) != 0)
511                 cprintf(listener, "\treload-on-hup\n");
512
513         return 1;               /* success */
514 }
515
516
517 /*
518  *      Show all loaded modules
519  */
520 static int command_show_modules(rad_listen_t *listener, UNUSED int argc, UNUSED char *argv[])
521 {
522         CONF_SECTION *cs, *subcs;
523
524         cs = cf_section_find("modules");
525         if (!cs) return 0;
526
527         subcs = NULL;
528         while ((subcs = cf_subsection_find_next(cs, subcs, NULL)) != NULL) {
529                 const char *name1 = cf_section_name1(subcs);
530                 const char *name2 = cf_section_name2(subcs);
531
532                 module_instance_t *mi;
533
534                 if (name2) {
535                         mi = find_module_instance(cs, name2, 0);
536                         if (!mi) continue;
537
538                         cprintf(listener, "\t%s (%s)\n", name2, name1);
539                 } else {
540                         mi = find_module_instance(cs, name1, 0);
541                         if (!mi) continue;
542
543                         cprintf(listener, "\t%s\n", name1);
544                 }
545         }
546
547         return 1;               /* success */
548 }
549
550 static int command_show_home_servers(rad_listen_t *listener, UNUSED int argc, UNUSED char *argv[])
551 {
552         int i;
553         home_server *home;
554         const char *type, *state;
555
556         char buffer[256];
557
558         for (i = 0; i < 256; i++) {
559                 home = home_server_bynumber(i);
560                 if (!home) break;
561
562                 /*
563                  *      Internal "virtual" home server.
564                  */
565                 if (home->ipaddr.af == AF_UNSPEC) continue;
566
567                 if (home->type == HOME_TYPE_AUTH) {
568                         type = "auth";
569
570                 } else if (home->type == HOME_TYPE_AUTH) {
571                         type = "auth";
572
573                 } else continue;
574
575                 if (home->state == HOME_STATE_ALIVE) {
576                         state = "alive";
577
578                 } else if (home->state == HOME_STATE_ZOMBIE) {
579                         state = "zombie";
580
581                 } else if (home->state == HOME_STATE_IS_DEAD) {
582                         state = "dead";
583
584                 } else continue;
585
586                 cprintf(listener, "\t%s\t%d\t%s\t%s\t%d\n",
587                         ip_ntoh(&home->ipaddr, buffer, sizeof(buffer)),
588                         home->port, type, state,
589                         home->currently_outstanding);
590         }
591
592         return 0;
593 }
594
595
596 static int command_show_clients(rad_listen_t *listener, UNUSED int argc, UNUSED char *argv[])
597 {
598         int i;
599         RADCLIENT *client;
600         char buffer[256];
601
602         for (i = 0; i < 256; i++) {
603                 client = client_findbynumber(NULL, i);
604                 if (!client) break;
605
606                 ip_ntoh(&client->ipaddr, buffer, sizeof(buffer));
607
608                 if (((client->ipaddr.af == AF_INET) &&
609                      (client->prefix != 32)) ||
610                     ((client->ipaddr.af == AF_INET6) &&
611                      (client->prefix != 128))) {
612                         cprintf(listener, "\t%s/%d\n", buffer, client->prefix);
613                 } else {
614                         cprintf(listener, "\t%s\n", buffer);
615                 }
616         }
617
618         return 0;
619 }
620
621
622 static int command_show_xml(rad_listen_t *listener, UNUSED int argc, UNUSED char *argv[])
623 {
624         CONF_ITEM *ci;
625         FILE *fp = fdopen(dup(listener->fd), "a");
626
627         if (!fp) {
628                 cprintf(listener, "ERROR: Can't dup %s\n", strerror(errno));
629                 return 0;
630         }
631
632         if (argc == 0) {
633                 cprintf(listener, "ERROR: <reference> is required\n");
634                 return 0;
635         }
636         
637         ci = cf_reference_item(mainconfig.config, mainconfig.config, argv[0]);
638         if (!ci) {
639                 cprintf(listener, "ERROR: No such item <reference>\n");
640                 return 0;
641         }
642
643         if (cf_item_is_section(ci)) {
644                 cf_section2xml(fp, cf_itemtosection(ci));
645
646         } else if (cf_item_is_pair(ci)) {
647                 cf_pair2xml(fp, cf_itemtopair(ci));
648
649         } else {
650                 cprintf(listener, "ERROR: No such item <reference>\n");
651                 fclose(fp);
652                 return 0;
653         }
654
655         fclose(fp);
656
657         return 1;               /* success */
658 }
659
660 static int command_debug_level(rad_listen_t *listener, int argc, char *argv[])
661 {
662         int number;
663
664         if (argc == 0) {
665                 cprintf(listener, "ERROR: Must specify <number>\n");
666                 return -1;
667         }
668
669         number = atoi(argv[0]);
670         if ((number < 0) || (number > 4)) {
671                 cprintf(listener, "ERROR: <number> must be between 0 and 4\n");
672                 return -1;
673         }
674
675         fr_debug_flag = debug_flag = number;
676
677         return 0;
678 }
679
680 extern char *debug_log_file;
681 static int command_debug_file(rad_listen_t *listener, int argc, char *argv[])
682 {
683         if (argc == 0) {
684                 cprintf(listener, "ERROR: Must specify <filename>\n");
685                 return -1;
686         }
687
688         if (debug_flag && mainconfig.radlog_dest == RADLOG_STDOUT) {
689                 cprintf(listener, "ERROR: Cannot redirect debug logs to a file when already in debugging mode.\n");
690                 return -1;
691         }
692
693         if (debug_log_file) {
694                 free(debug_log_file);
695                 debug_log_file = NULL;
696         }
697         debug_log_file = strdup(argv[0]);
698
699         return 0;
700 }
701
702 extern char *debug_condition;
703 static int command_debug_condition(UNUSED rad_listen_t *listener, int argc, char *argv[])
704 {
705         /*
706          *      Delete old condition.
707          *
708          *      This is thread-safe because the condition is evaluated
709          *      in the main server thread, as is this code.
710          */
711         free(debug_condition);
712         debug_condition = NULL;
713
714         /*
715          *      Disable it.
716          */
717         if (argc == 0) {
718                 return 0;
719         }
720
721         debug_condition = strdup(argv[0]);
722
723         return 0;
724 }
725
726 static int command_show_debug_condition(rad_listen_t *listener,
727                                         UNUSED int argc, UNUSED char *argv[])
728 {
729         if (!debug_condition) return 0;
730
731         cprintf(listener, "%s\n", debug_condition);
732         return 0;
733 }
734
735
736 static int command_show_debug_file(rad_listen_t *listener,
737                                         UNUSED int argc, UNUSED char *argv[])
738 {
739         if (!debug_log_file) return 0;
740
741         cprintf(listener, "%s\n", debug_log_file);
742         return 0;
743 }
744
745
746 static int command_show_debug_level(rad_listen_t *listener,
747                                         UNUSED int argc, UNUSED char *argv[])
748 {
749         cprintf(listener, "%d\n", debug_flag);
750         return 0;
751 }
752
753
754 static RADCLIENT *get_client(rad_listen_t *listener, int argc, char *argv[])
755 {
756         RADCLIENT *client;
757         fr_ipaddr_t ipaddr;
758
759         if (argc < 1) {
760                 cprintf(listener, "ERROR: Must specify <ipaddr>\n");
761                 return NULL;
762         }
763
764         if (ip_hton(argv[0], AF_UNSPEC, &ipaddr) < 0) {
765                 cprintf(listener, "ERROR: Failed parsing IP address; %s\n",
766                         fr_strerror());
767                 return NULL;
768         }
769
770         client = client_find(NULL, &ipaddr);
771         if (!client) {
772                 cprintf(listener, "ERROR: No such client\n");
773                 return NULL;
774         }
775
776         return client;
777 }
778
779
780 static int command_show_client_config(rad_listen_t *listener, int argc, char *argv[])
781 {
782         RADCLIENT *client;
783         FILE *fp;
784
785         client = get_client(listener, argc, argv);
786         if (!client) {
787                 return 0;
788         }
789
790         if (!client->cs) return 1;
791
792         fp = fdopen(dup(listener->fd), "a");
793         if (!fp) {
794                 cprintf(listener, "ERROR: Can't dup %s\n", strerror(errno));
795                 return 0;
796         }
797
798         cf_section2file(fp, client->cs);
799         fclose(fp);
800
801         return 1;
802 }
803
804 static home_server *get_home_server(rad_listen_t *listener, int argc, char *argv[])
805 {
806         home_server *home;
807         int port;
808         fr_ipaddr_t ipaddr;
809
810         if (argc < 2) {
811                 cprintf(listener, "ERROR: Must specify <ipaddr> <port>\n");
812                 return NULL;
813         }
814
815         if (ip_hton(argv[0], AF_UNSPEC, &ipaddr) < 0) {
816                 cprintf(listener, "ERROR: Failed parsing IP address; %s\n",
817                         fr_strerror());
818                 return NULL;
819         }
820
821         port = atoi(argv[1]);
822
823         home = home_server_find(&ipaddr, port);
824         if (!home) {
825                 cprintf(listener, "ERROR: No such home server\n");
826                 return NULL;
827         }
828
829         return home;
830 }
831
832 static int command_show_home_server_config(rad_listen_t *listener, int argc, char *argv[])
833 {
834         home_server *home;
835         FILE *fp;
836
837         home = get_home_server(listener, argc, argv);
838         if (!home) {
839                 return 0;
840         }
841
842         if (!home->cs) return 1;
843
844         fp = fdopen(dup(listener->fd), "a");
845         if (!fp) {
846                 cprintf(listener, "ERROR: Can't dup %s\n", strerror(errno));
847                 return 0;
848         }
849
850         cf_section2file(fp, home->cs);
851         fclose(fp);
852
853         return 1;
854 }
855
856 extern void revive_home_server(void *ctx);
857 extern void mark_home_server_dead(home_server *home, struct timeval *when);
858
859 static int command_set_home_server_state(rad_listen_t *listener, int argc, char *argv[])
860 {
861         home_server *home;
862
863         if (argc < 3) {
864                 cprintf(listener, "ERROR: Must specify <ipaddr> <port> <state>\n");
865                 return 0;
866         }
867
868         home = get_home_server(listener, argc, argv);
869         if (!home) {
870                 return 0;
871         }
872
873         if (strcmp(argv[2], "alive") == 0) {
874                 revive_home_server(home);
875
876         } else if (strcmp(argv[2], "dead") == 0) {
877                 struct timeval now;
878
879                 gettimeofday(&now, NULL); /* we do this WAY too ofetn */
880                 mark_home_server_dead(home, &now);
881
882         } else {
883                 cprintf(listener, "ERROR: Unknown state \"%s\"\n", argv[2]);
884                 return 0;
885         }
886
887         return 1;
888 }
889
890 static int command_show_home_server_state(rad_listen_t *listener, int argc, char *argv[])
891 {
892         home_server *home;
893
894         home = get_home_server(listener, argc, argv);
895         if (!home) {
896                 return 0;
897         }
898
899         switch (home->state) {
900         case HOME_STATE_ALIVE:
901                 cprintf(listener, "alive\n");
902                 break;
903
904         case HOME_STATE_IS_DEAD:
905                 cprintf(listener, "dead\n");
906                 break;
907
908         case HOME_STATE_ZOMBIE:
909                 cprintf(listener, "zombie\n");
910                 break;
911
912         default:
913                 cprintf(listener, "unknown\n");
914                 break;
915         }
916         
917         return 1;
918 }
919
920
921
922 static fr_command_table_t command_table_debug[] = {
923         { "condition", FR_WRITE,
924           "debug condition <condition> - Enable debugging for requests matching <condition>",
925           command_debug_condition, NULL },
926
927         { "level", FR_WRITE,
928           "debug level <number> - Set debug level to <number>.  Higher is more debugging.",
929           command_debug_level, NULL },
930
931         { "file", FR_WRITE,
932           "debug file <filename> - Send all debuggin output to <filename>",
933           command_debug_file, NULL },
934
935         { NULL, 0, NULL, NULL, NULL }
936 };
937
938 static fr_command_table_t command_table_show_debug[] = {
939         { "condition", FR_READ,
940           "show debug condition - Shows current debugging condition.",
941           command_show_debug_condition, NULL },
942
943         { "level", FR_READ,
944           "show debug level - Shows current debugging level.",
945           command_show_debug_level, NULL },
946
947         { "file", FR_READ,
948           "show debug file - Shows current debugging file.",
949           command_show_debug_file, NULL },
950
951         { NULL, 0, NULL, NULL, NULL }
952 };
953
954 static fr_command_table_t command_table_show_module[] = {
955         { "config", FR_READ,
956           "show module config <module> - show configuration for given module",
957           command_show_module_config, NULL },
958         { "flags", FR_READ,
959           "show module flags <module> - show other module properties",
960           command_show_module_flags, NULL },
961         { "list", FR_READ,
962           "show module list - shows list of loaded modules",
963           command_show_modules, NULL },
964         { "methods", FR_READ,
965           "show module methods <module> - show sections where <module> may be used",
966           command_show_module_methods, NULL },
967
968         { NULL, 0, NULL, NULL, NULL }
969 };
970
971 static fr_command_table_t command_table_show_client[] = {
972         { "config", FR_READ,
973           "show client config <ipaddr> - show configuration for given client",
974           command_show_client_config, NULL },
975         { "list", FR_READ,
976           "show client list - shows list of global clients",
977           command_show_clients, NULL },
978
979         { NULL, 0, NULL, NULL, NULL }
980 };
981
982 static fr_command_table_t command_table_show_home[] = {
983         { "config", FR_READ,
984           "show home_server config <ipaddr> <port> - show configuration for given home server",
985           command_show_home_server_config, NULL },
986         { "list", FR_READ,
987           "show home_server list - shows list of home servers",
988           command_show_home_servers, NULL },
989         { "state", FR_READ,
990           "show home_server state <ipaddr> <port> - shows state of given home server",
991           command_show_home_server_state, NULL },
992
993         { NULL, 0, NULL, NULL, NULL }
994 };
995
996
997 static fr_command_table_t command_table_show[] = {
998         { "client", FR_READ,
999           "show client <command> - do sub-command of client",
1000           NULL, command_table_show_client },
1001         { "debug", FR_READ,
1002           "show debug <command> - show debug properties",
1003           NULL, command_table_show_debug },
1004         { "home_server", FR_READ,
1005           "show home_server <command> - do sub-command of home_server",
1006           NULL, command_table_show_home },
1007         { "module", FR_READ,
1008           "show module <command> - do sub-command of module",
1009           NULL, command_table_show_module },
1010         { "uptime", FR_READ,
1011           "show uptime - shows time at which server started",
1012           command_uptime, NULL },
1013         { "xml", FR_READ,
1014           "show xml <reference> - Prints out configuration as XML",
1015           command_show_xml, NULL },
1016         { NULL, 0, NULL, NULL, NULL }
1017 };
1018
1019
1020 static int command_set_module_config(rad_listen_t *listener, int argc, char *argv[])
1021 {
1022         int i, rcode;
1023         CONF_PAIR *cp;
1024         CONF_SECTION *cs;
1025         module_instance_t *mi;
1026         const CONF_PARSER *variables;
1027         void *data;
1028
1029         if (argc < 3) {
1030                 cprintf(listener, "ERROR: No module name or variable was given\n");
1031                 return 0;
1032         }
1033
1034         cs = cf_section_find("modules");
1035         if (!cs) return 0;
1036
1037         mi = find_module_instance(cs, argv[0], 0);
1038         if (!mi) {
1039                 cprintf(listener, "ERROR: No such module \"%s\"\n", argv[0]);
1040                 return 0;
1041         }
1042
1043         if ((mi->entry->module->type & RLM_TYPE_HUP_SAFE) == 0) {
1044                 cprintf(listener, "ERROR: Cannot change configuration of module as it is cannot be HUP'd.\n");
1045                 return 0;
1046         }
1047
1048         variables = cf_section_parse_table(mi->cs);
1049         if (!variables) {
1050                 cprintf(listener, "ERROR: Cannot find configuration for module\n");
1051                 return 0;
1052         }
1053
1054         rcode = -1;
1055         for (i = 0; variables[i].name != NULL; i++) {
1056                 /*
1057                  *      FIXME: Recurse into sub-types somehow...
1058                  */
1059                 if (variables[i].type == PW_TYPE_SUBSECTION) continue;
1060
1061                 if (strcmp(variables[i].name, argv[1]) == 0) {
1062                         rcode = i;
1063                         break;
1064                 }
1065         }
1066
1067         if (rcode < 0) {
1068                 cprintf(listener, "ERROR: No such variable \"%s\"\n", argv[1]);
1069                 return 0;
1070         }
1071
1072         i = rcode;              /* just to be safe */
1073
1074         /*
1075          *      It's not part of the dynamic configuration.  The module
1076          *      needs to re-parse && validate things.
1077          */
1078         if (variables[i].data) {
1079                 cprintf(listener, "ERROR: Variable cannot be dynamically updated\n");
1080                 return 0;
1081         }
1082
1083         data = ((char *) mi->insthandle) + variables[i].offset;
1084
1085         cp = cf_pair_find(mi->cs, argv[1]);
1086         if (!cp) return 0;
1087
1088         /*
1089          *      Replace the OLD value in the configuration file with
1090          *      the NEW value.
1091          *
1092          *      FIXME: Parse argv[2] depending on it's data type!
1093          *      If it's a string, look for leading single/double quotes,
1094          *      end then call tokenize functions???
1095          */
1096         cf_pair_replace(mi->cs, cp, argv[2]);
1097
1098         rcode = cf_item_parse(mi->cs, argv[1], variables[i].type,
1099                               data, argv[2]);
1100         if (rcode < 0) {
1101                 cprintf(listener, "ERROR: Failed to parse value\n");
1102                 return 0;
1103         }
1104
1105         return 1;               /* success */
1106 }
1107
1108 static int command_print_stats(rad_listen_t *listener, fr_stats_t *stats,
1109                                int auth)
1110 {
1111         cprintf(listener, "\trequests\t%d\n", stats->total_requests);
1112         cprintf(listener, "\tresponses\t%d\n", stats->total_responses);
1113         
1114         if (auth) {
1115                 cprintf(listener, "\taccepts\t\t%d\n",
1116                         stats->total_access_accepts);
1117                 cprintf(listener, "\trejects\t\t%d\n",
1118                         stats->total_access_rejects);
1119                 cprintf(listener, "\tchallenges\t%d\n",
1120                         stats->total_access_challenges);
1121         }
1122
1123         cprintf(listener, "\tdup\t\t%d\n", stats->total_dup_requests);
1124         cprintf(listener, "\tinvalid\t\t%d\n", stats->total_invalid_requests);
1125         cprintf(listener, "\tmalformed\t%d\n", stats->total_malformed_requests);
1126         cprintf(listener, "\tbad_signature\t%d\n", stats->total_bad_authenticators);
1127         cprintf(listener, "\tdropped\t\t%d\n", stats->total_packets_dropped);
1128         cprintf(listener, "\tunknown_types\t%d\n", stats->total_unknown_types);
1129         
1130         return 1;
1131 }
1132
1133
1134 static int command_stats_home_server(rad_listen_t *listener, int argc, char *argv[])
1135 {
1136         home_server *home;
1137
1138         home = get_home_server(listener, argc, argv);
1139         if (!home) {
1140                 return 0;
1141         }
1142
1143         command_print_stats(listener, &home->stats,
1144                             (home->type == HOME_TYPE_AUTH));
1145         cprintf(listener, "\toutstanding\t%d\n", home->currently_outstanding);
1146         return 1;
1147 }
1148
1149
1150 static int command_stats_client(rad_listen_t *listener, int argc, char *argv[])
1151 {
1152         int auth = TRUE;
1153         RADCLIENT *client;
1154
1155         if (argc < 1) {
1156                 cprintf(listener, "ERROR: Must specify [auth/acct]\n");
1157                 return 0;
1158         }
1159
1160         if (strcmp(argv[0], "auth") == 0) {
1161                 auth = TRUE;
1162
1163         } else if (strcmp(argv[0], "acct") == 0) {
1164 #ifdef WITH_ACCOUNTING
1165                 auth = FALSE;
1166 #else
1167                 cprintf(listener, "ERROR: This server was built without accounting support.\n");
1168                 return 0;
1169 #endif
1170
1171         } else {
1172                 cprintf(listener, "ERROR: Unknown statistics type\n");
1173                 return 0;
1174         }
1175
1176         /*
1177          *      Global results for all client.
1178          */
1179         if (argc == 1) {
1180 #ifdef WITH_ACCOUNTING
1181                 if (!auth) {
1182                         return command_print_stats(listener,
1183                                                    &radius_acct_stats, auth);
1184                 }
1185 #endif
1186                 return command_print_stats(listener, &radius_auth_stats, auth);
1187         }
1188
1189         client = get_client(listener, argc - 1, argv + 1);
1190         if (!client) {
1191                 return 0;
1192         }
1193
1194 #ifdef WITH_ACCOUNTING
1195         if (!auth) {
1196                 return command_print_stats(listener, client->acct, auth);
1197         }
1198 #endif
1199
1200         return command_print_stats(listener, client->auth, auth);
1201 }
1202
1203
1204 static int command_add_client_file(rad_listen_t *listener, int argc, char *argv[])
1205 {
1206         RADCLIENT *c;
1207
1208         if (argc < 1) {
1209                 cprintf(listener, "ERROR: <file> is required\n");
1210                 return 0;
1211         }
1212
1213         /*
1214          *      Read the file and generate the client.
1215          */
1216         c = client_read(argv[0], FALSE, FALSE);
1217         if (!c) {
1218                 cprintf(listener, "ERROR: Unknown error reading client file.\n");
1219                 return 0;
1220         }
1221
1222         if (!client_add(NULL, c)) {
1223                 cprintf(listener, "ERROR: Unknown error inserting new client.\n");
1224                 client_free(c);
1225                 return 0;
1226         }
1227
1228         return 1;
1229 }
1230
1231
1232 static fr_command_table_t command_table_add_client[] = {
1233         { "file", FR_WRITE,
1234           "add client file <filename> - Add new client definition from <filename>",
1235           command_add_client_file, NULL },
1236
1237         { NULL, 0, NULL, NULL, NULL }
1238 };
1239
1240
1241 static fr_command_table_t command_table_add[] = {
1242         { "client", FR_WRITE,
1243           "add client <command> - Add client configuration commands",
1244           NULL, command_table_add_client },
1245
1246         { NULL, 0, NULL, NULL, NULL }
1247 };
1248
1249
1250 static fr_command_table_t command_table_set_home[] = {
1251         { "state", FR_WRITE,
1252           "set home_server state <ipaddr> <port> [alive|dead] - set state for given home server",
1253           command_set_home_server_state, NULL },
1254
1255         { NULL, 0, NULL, NULL, NULL }
1256 };
1257
1258 static fr_command_table_t command_table_set_module[] = {
1259         { "config", FR_WRITE,
1260           "set module config <module> variable value - set configuration for <module>",
1261           command_set_module_config, NULL },
1262
1263         { NULL, 0, NULL, NULL, NULL }
1264 };
1265
1266
1267 static fr_command_table_t command_table_set[] = {
1268         { "module", FR_WRITE,
1269           "set module <command> - set module commands",
1270           NULL, command_table_set_module },
1271         { "home_server", FR_WRITE, 
1272           "set home_server <command> - set home server commands",
1273           NULL, command_table_set_home },
1274
1275         { NULL, 0, NULL, NULL, NULL }
1276 };
1277
1278
1279 static fr_command_table_t command_table_stats[] = {
1280         { "client", FR_READ,
1281           "stats client [auth/acct] <ipaddr> - show statistics for client",
1282           command_stats_client, NULL },
1283         { "home_server", FR_READ,
1284           "stats home_server <ipaddr> <port> - show statistics for home server",
1285           command_stats_home_server, NULL },
1286
1287         { NULL, 0, NULL, NULL, NULL }
1288 };
1289
1290 static fr_command_table_t command_table[] = {
1291         { "add", FR_WRITE,
1292           "add <command> - add configuration commands",
1293           NULL, command_table_add },
1294         { "debug", FR_WRITE,
1295           "debug <command> - debugging commands",
1296           NULL, command_table_debug },
1297         { "hup", FR_WRITE,
1298           "hup [module] - sends a HUP signal to the server, or optionally to one module",
1299           command_hup, NULL },
1300         { "reconnect", FR_READ,
1301           "reconnect - reconnect to a running server",
1302           NULL, NULL },         /* just here for "help" */
1303         { "terminate", FR_WRITE,
1304           "terminate - terminates the server, and causes it to exit",
1305           command_terminate, NULL },
1306         { "set", FR_WRITE, NULL, NULL, command_table_set },
1307         { "show",  FR_READ, NULL, NULL, command_table_show },
1308         { "stats",  FR_READ, NULL, NULL, command_table_stats },
1309
1310         { NULL, 0, NULL, NULL, NULL }
1311 };
1312
1313
1314 /*
1315  *      Parse the unix domain sockets.
1316  *
1317  *      FIXME: TCP + SSL, after RadSec is in.
1318  */
1319 static int command_socket_parse(CONF_SECTION *cs, rad_listen_t *this)
1320 {
1321         fr_command_socket_t *sock;
1322
1323         sock = this->data;
1324
1325         if (cf_section_parse(cs, sock, command_config) < 0) {
1326                 return -1;
1327         }
1328
1329 #if defined(HAVE_GETPEEREID) || defined (SO_PEERCRED)
1330         if (sock->uid_name) {
1331                 struct passwd *pw;
1332                 
1333                 pw = getpwnam(sock->uid_name);
1334                 if (!pw) {
1335                         radlog(L_ERR, "Failed getting uid for %s: %s",
1336                                sock->uid_name, strerror(errno));
1337                         return -1;
1338                 }
1339
1340                 sock->uid = pw->pw_uid;
1341         }
1342
1343         if (sock->gid_name) {
1344                 struct group *gr;
1345
1346                 gr = getgrnam(sock->gid_name);
1347                 if (!gr) {
1348                         radlog(L_ERR, "Failed getting gid for %s: %s",
1349                                sock->gid_name, strerror(errno));
1350                         return -1;
1351                 }
1352                 sock->gid = gr->gr_gid; 
1353         }
1354
1355 #else  /* can't get uid or gid of connecting user */
1356
1357         if (sock->uid_name || sock->gid_name) {
1358                 radlog(L_ERR, "System does not support uid or gid authentication for sockets");
1359                 return -1;
1360         }
1361
1362 #endif
1363
1364         if (!sock->mode_name) {
1365                 sock->mode = FR_READ;
1366         } else {
1367                 sock->mode = fr_str2int(mode_names, sock->mode_name, 0);
1368                 if (!sock->mode) {
1369                         radlog(L_ERR, "Invalid mode name \"%s\"",
1370                                sock->mode_name);
1371                         return -1;
1372                 }
1373         }
1374
1375         /*
1376          *      FIXME: check for absolute pathnames?
1377          *      check for uid/gid on the other end...    
1378          */
1379
1380         this->fd = fr_server_domain_socket(sock->path);
1381         if (this->fd < 0) {
1382                 return -1;
1383         }
1384
1385         return 0;
1386 }
1387
1388 static int command_socket_print(rad_listen_t *this, char *buffer, size_t bufsize)
1389 {
1390         fr_command_socket_t *sock = this->data;
1391
1392         snprintf(buffer, bufsize, "command file %s", sock->path);
1393         return 1;
1394 }
1395
1396
1397 /*
1398  *      String split routine.  Splits an input string IN PLACE
1399  *      into pieces, based on spaces.
1400  */
1401 static int str2argv(char *str, char **argv, int max_argc)
1402 {
1403         int argc = 0;
1404         size_t len;
1405         char buffer[1024];
1406
1407         while (*str) {
1408                 if (argc >= max_argc) return argc;
1409
1410                 /*
1411                  *      Chop out comments early.
1412                  */
1413                 if (*str == '#') {
1414                         *str = '\0';
1415                         break;
1416                 }
1417
1418                 while ((*str == ' ') ||
1419                        (*str == '\t') ||
1420                        (*str == '\r') ||
1421                        (*str == '\n')) *(str++) = '\0';
1422
1423                 if (!*str) return argc;
1424
1425                 if ((*str == '\'') || (*str == '"')) {
1426                         char *p = str;
1427                         FR_TOKEN token;
1428
1429                         token = gettoken((const char **) &p, buffer,
1430                                          sizeof(buffer));
1431                         if ((token != T_SINGLE_QUOTED_STRING) &&
1432                             (token != T_DOUBLE_QUOTED_STRING)) {
1433                                 return -1;
1434                         }
1435
1436                         len = strlen(buffer);
1437                         if (len >= (size_t) (p - str)) {
1438                                 return -1;
1439                         }
1440
1441                         memcpy(str, buffer, len + 1);
1442                         argv[argc] = str;
1443                         str = p;
1444
1445                 } else {
1446                         argv[argc] = str;
1447                 }
1448                 argc++;
1449
1450                 while (*str &&
1451                        (*str != ' ') &&
1452                        (*str != '\t') &&
1453                        (*str != '\r') &&
1454                        (*str != '\n')) str++;
1455         }
1456
1457         return argc;
1458 }
1459
1460 #define MAX_ARGV (16)
1461
1462 /*
1463  *      Check if an incoming request is "ok"
1464  *
1465  *      It takes packets, not requests.  It sees if the packet looks
1466  *      OK.  If so, it does a number of sanity checks on it.
1467  */
1468 static int command_domain_recv(rad_listen_t *listener,
1469                                UNUSED RAD_REQUEST_FUNP *pfun,
1470                                UNUSED REQUEST **prequest)
1471 {
1472         int i, rcode;
1473         ssize_t len;
1474         int argc;
1475         char *my_argv[MAX_ARGV], **argv;
1476         fr_command_table_t *table;
1477         fr_command_socket_t *co = listener->data;
1478
1479         *pfun = NULL;
1480         *prequest = NULL;
1481
1482         do {
1483                 ssize_t c;
1484                 char *p;
1485
1486                 len = recv(listener->fd, co->buffer + co->offset,
1487                            sizeof(co->buffer) - co->offset - 1, 0);
1488                 if (len == 0) goto close_socket; /* clean close */
1489
1490                 if (len < 0) {
1491                         if ((errno == EAGAIN) || (errno == EINTR)) {
1492                                 return 0;
1493                         }
1494                         goto close_socket;
1495                 }
1496
1497                 /*
1498                  *      CTRL-D
1499                  */
1500                 if ((co->offset == 0) && (co->buffer[0] == 0x04)) {
1501                 close_socket:
1502                         listener->status = RAD_LISTEN_STATUS_CLOSED;
1503                         event_new_fd(listener);
1504                         return 0;
1505                 }
1506
1507                 /*
1508                  *      See if there are multiple lines in the buffer.
1509                  */
1510                 p = co->buffer + co->offset;
1511                 rcode = 0;
1512                 p[len] = '\0';
1513                 for (c = 0; c < len; c++) {
1514                         if ((*p == '\r') || (*p == '\n')) {
1515                                 rcode = 1;
1516                                 *p = '\0';
1517
1518                                 /*
1519                                  *      FIXME: do real buffering...
1520                                  *      handling of CTRL-C, etc.
1521                                  */
1522
1523                         } else if (rcode) {
1524                                 /*
1525                                  *      \r \n followed by ASCII...
1526                                  */
1527                                 break;
1528                         }
1529
1530                         p++;
1531                 }
1532
1533                 co->offset += len;
1534
1535                 /*
1536                  *      Saw CR/LF.  Set next element, and exit.
1537                  */
1538                 if (rcode) {
1539                         co->next = p - co->buffer;
1540                         break;
1541                 }
1542
1543                 if (co->offset >= (ssize_t) (sizeof(co->buffer) - 1)) {
1544                         radlog(L_ERR, "Line too long!");
1545                         goto close_socket;
1546                 }
1547
1548                 co->offset++;
1549         } while (1);
1550
1551         argc = str2argv(co->buffer, my_argv, MAX_ARGV);
1552         if (argc == 0) goto do_next; /* empty strings are OK */
1553
1554         if (argc < 0) {
1555                 cprintf(listener, "ERROR: Failed parsing command.\n");
1556                 goto do_next;
1557         }
1558
1559         argv = my_argv;
1560
1561         for (len = 0; len <= co->offset; len++) {
1562                 if (co->buffer[len] < 0x20) {
1563                         co->buffer[len] = '\0';
1564                         break;
1565                 }
1566         }
1567
1568         /*
1569          *      Hard-code exit && quit.
1570          */
1571         if ((strcmp(argv[0], "exit") == 0) ||
1572             (strcmp(argv[0], "quit") == 0)) goto close_socket;
1573
1574 #if 0
1575         if (!co->user[0]) {
1576                 if (strcmp(argv[0], "login") != 0) {
1577                         cprintf(listener, "ERROR: Login required\n");
1578                         goto do_next;
1579                 }
1580
1581                 if (argc < 3) {
1582                         cprintf(listener, "ERROR: login <user> <password>\n");
1583                         goto do_next;
1584                 }
1585
1586                 /*
1587                  *      FIXME: Generate && process fake RADIUS request.
1588                  */
1589                 if ((strcmp(argv[1], "root") == 0) &&
1590                     (strcmp(argv[2], "password") == 0)) {
1591                         strlcpy(co->user, argv[1], sizeof(co->user));
1592                         goto do_next;
1593                 }
1594
1595                 cprintf(listener, "ERROR: Login incorrect\n");
1596                 goto do_next;
1597         }
1598 #endif
1599
1600         table = command_table;
1601  retry:
1602         len = 0;
1603         for (i = 0; table[i].command != NULL; i++) {
1604                 if (strcmp(table[i].command, argv[0]) == 0) {
1605                         /*
1606                          *      Check permissions.
1607                          */
1608                         if (((co->mode & FR_WRITE) == 0) &&
1609                             ((table[i].mode & FR_WRITE) != 0)) {
1610                                 cprintf(listener, "ERROR: You do not have write permission.\n");
1611                                 goto do_next;
1612                         }
1613
1614                         if (table[i].table) {
1615                                 /*
1616                                  *      This is the last argument, but
1617                                  *      there's a sub-table.  Print help.
1618                                  *      
1619                                  */
1620                                 if (argc == 1) {
1621                                         table = table[i].table;
1622                                         goto do_help;
1623                                 }
1624
1625                                 argc--;
1626                                 argv++;
1627                                 table = table[i].table;
1628                                 goto retry;
1629                         }
1630
1631                         if (!table[i].func) {
1632                                 cprintf(listener, "ERROR: Invalid command\n");
1633                                 goto do_next;
1634                         }
1635
1636                         len = 1;
1637                         rcode = table[i].func(listener,
1638                                               argc - 1, argv + 1);
1639                         break;
1640                 }
1641         }
1642
1643         /*
1644          *      No such command
1645          */
1646         if (!len) {
1647                 if ((strcmp(argv[0], "help") == 0) ||
1648                     (strcmp(argv[0], "?") == 0)) {
1649                 do_help:
1650                         for (i = 0; table[i].command != NULL; i++) {
1651                                 if (table[i].help) {
1652                                         cprintf(listener, "%s\n",
1653                                                 table[i].help);
1654                                 } else {
1655                                         cprintf(listener, "%s <command> - do sub-command of %s\n",
1656                                                 table[i].command, table[i].command);
1657                                 }
1658                         }
1659                         goto do_next;
1660                 }
1661
1662                 cprintf(listener, "ERROR: Unknown command \"%s\"\r\n",
1663                         argv[0]);
1664         }
1665
1666  do_next:
1667         cprintf(listener, "radmin> ");
1668
1669         if (co->next <= co->offset) {
1670                 co->offset = 0;
1671         } else {
1672                 memmove(co->buffer, co->buffer + co->next,
1673                         co->offset - co->next);
1674                 co->offset -= co->next;
1675         }
1676
1677         return 0;
1678 }
1679
1680
1681 static int command_domain_accept(rad_listen_t *listener,
1682                                  UNUSED RAD_REQUEST_FUNP *pfun,
1683                                  UNUSED REQUEST **prequest)
1684 {
1685         int newfd;
1686         uint32_t magic;
1687         rad_listen_t *this;
1688         socklen_t salen;
1689         struct sockaddr_storage src;
1690         fr_command_socket_t *sock = listener->data;
1691         
1692         salen = sizeof(src);
1693
1694         DEBUG2(" ... new connection request on command socket.");
1695         
1696         newfd = accept(listener->fd, (struct sockaddr *) &src, &salen);
1697         if (newfd < 0) {
1698                 /*
1699                  *      Non-blocking sockets must handle this.
1700                  */
1701                 if (errno == EWOULDBLOCK) {
1702                         return 0;
1703                 }
1704
1705                 DEBUG2(" ... failed to accept connection.");
1706                 return -1;
1707         }
1708
1709         /*
1710          *      Perform user authentication.
1711          */
1712         if (sock->uid_name || sock->gid_name) {
1713                 uid_t uid;
1714                 gid_t gid;
1715
1716                 if (getpeereid(listener->fd, &uid, &gid) < 0) {
1717                         radlog(L_ERR, "Failed getting peer credentials for %s: %s",
1718                                sock->path, strerror(errno));
1719                         close(newfd);
1720                         return -1;
1721                 }
1722
1723                 if (sock->uid_name && (sock->uid != uid)) {
1724                         radlog(L_ERR, "Unauthorized connection to %s from uid %ld",
1725                                sock->path, (long int) uid);
1726                         close(newfd);
1727                         return -1;
1728                 }
1729
1730                 if (sock->gid_name && (sock->gid != gid)) {
1731                         radlog(L_ERR, "Unauthorized connection to %s from gid %ld",
1732                                sock->path, (long int) gid);
1733                         close(newfd);
1734                         return -1;
1735                 }
1736         }
1737
1738         /*
1739          *      Write 32-bit magic number && version information.
1740          */
1741         magic = htonl(0xf7eead15);
1742         if (write(newfd, &magic, 4) < 0) {
1743                 radlog(L_ERR, "Failed writing initial data to socket: %s",
1744                        strerror(errno));
1745                 close(newfd);
1746                 return -1;
1747         }
1748         magic = htonl(1);       /* protocol version */
1749         if (write(newfd, &magic, 4) < 0) {
1750                 radlog(L_ERR, "Failed writing initial data to socket: %s",
1751                        strerror(errno));
1752                 close(newfd);
1753                 return -1;
1754         }
1755
1756
1757         /*
1758          *      Add the new listener.
1759          */
1760         this = listen_alloc(listener->type);
1761         if (!this) return -1;
1762
1763         /*
1764          *      Copy everything, including the pointer to the socket
1765          *      information.
1766          */
1767         sock = this->data;
1768         memcpy(this, listener, sizeof(*this));
1769         this->status = RAD_LISTEN_STATUS_INIT;
1770         this->next = NULL;
1771         this->data = sock;      /* fix it back */
1772
1773         sock->offset = 0;
1774         sock->user[0] = '\0';
1775         sock->path = ((fr_command_socket_t *) listener->data)->path;
1776         sock->mode = ((fr_command_socket_t *) listener->data)->mode;
1777
1778         this->fd = newfd;
1779         this->recv = command_domain_recv;
1780
1781         /*
1782          *      Tell the event loop that we have a new FD
1783          */
1784         event_new_fd(this);
1785
1786         return 0;
1787 }
1788
1789
1790 /*
1791  *      Send an authentication response packet
1792  */
1793 static int command_domain_send(UNUSED rad_listen_t *listener,
1794                                UNUSED REQUEST *request)
1795 {
1796         return 0;
1797 }
1798
1799
1800 static int command_socket_encode(UNUSED rad_listen_t *listener,
1801                                  UNUSED REQUEST *request)
1802 {
1803         return 0;
1804 }
1805
1806
1807 static int command_socket_decode(UNUSED rad_listen_t *listener,
1808                                  UNUSED REQUEST *request)
1809 {
1810         return 0;
1811 }
1812
1813 #endif /* WITH_COMMAND_SOCKET */