Look up home servers by type, too.
[freeradius.git] / src / main / client.c
1 /*
2  * client.c     Read clients into memory.
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 2000,2006  The FreeRADIUS server project
21  * Copyright 2000  Miquel van Smoorenburg <miquels@cistron.nl>
22  * Copyright 2000  Alan DeKok <aland@ox.org>
23  */
24
25 #include <freeradius-devel/ident.h>
26 RCSID("$Id$")
27
28 #include <freeradius-devel/radiusd.h>
29 #include <freeradius-devel/rad_assert.h>
30
31 #include <sys/stat.h>
32
33 #include <ctype.h>
34 #include <fcntl.h>
35
36 #ifdef WITH_DYNAMIC_CLIENTS
37 #ifdef HAVE_DIRENT_H
38 #include <dirent.h>
39 #endif
40 #endif
41
42 struct radclient_list {
43         /*
44          *      FIXME: One set of trees for IPv4, and another for IPv6?
45          */
46         rbtree_t        *trees[129]; /* for 0..128, inclusive. */
47         int             min_prefix;
48 };
49
50
51 #ifdef WITH_STATS
52 static rbtree_t         *tree_num = NULL;     /* client numbers 0..N */
53 static int              tree_num_max = 0;
54 #endif
55 static RADCLIENT_LIST   *root_clients = NULL;
56
57 #ifdef WITH_DYNAMIC_CLIENTS
58 static fr_fifo_t        *deleted_clients = NULL;
59 #endif
60
61 /*
62  *      Callback for freeing a client.
63  */
64 void client_free(RADCLIENT *client)
65 {
66 #ifdef WITH_DYNAMIC_CLIENTS
67         if (client->dynamic == 2) {
68                 time_t now;
69
70                 if (!deleted_clients) {
71                         deleted_clients = fr_fifo_create(1024,
72                                                          (void *) client_free);
73                         if (!deleted_clients) return; /* MEMLEAK */
74                 }
75
76                 /*
77                  *      Mark it as in the fifo, and remember when we
78                  *      pushed it.
79                  */
80                 client->dynamic = 3;
81                 client->created = now = time(NULL); /* re-set it */
82                 fr_fifo_push(deleted_clients, client);
83
84                 /*
85                  *      Peek at the head of the fifo.  If it might
86                  *      still be in use, return.  Otherwise, pop it
87                  *      from the queue and delete it.
88                  */
89                 client = fr_fifo_peek(deleted_clients);
90                 if ((client->created + 120) >= now) return;
91
92                 client = fr_fifo_pop(deleted_clients);
93                 rad_assert(client != NULL);
94         }
95 #endif
96
97         free(client->longname);
98         free(client->secret);
99         free(client->shortname);
100         free(client->nastype);
101         free(client->login);
102         free(client->password);
103         free(client->server);
104
105 #ifdef WITH_STATS
106         free(client->auth);
107 #ifdef WITH_ACCOUNTING
108         free(client->acct);
109 #endif
110 #endif
111
112 #ifdef WITH_DYNAMIC_CLIENTS
113         free(client->client_server);
114 #endif
115
116         free(client);
117 }
118
119 /*
120  *      Callback for comparing two clients.
121  */
122 static int client_ipaddr_cmp(const void *one, const void *two)
123 {
124         const RADCLIENT *a = one;
125         const RADCLIENT *b = two;
126
127         return fr_ipaddr_cmp(&a->ipaddr, &b->ipaddr);
128 }
129
130 #ifdef WITH_STATS
131 static int client_num_cmp(const void *one, const void *two)
132 {
133         const RADCLIENT *a = one;
134         const RADCLIENT *b = two;
135
136         return (a->number - b->number);
137 }
138 #endif
139
140 /*
141  *      Free a RADCLIENT list.
142  */
143 void clients_free(RADCLIENT_LIST *clients)
144 {
145         int i;
146
147         if (!clients) return;
148
149         for (i = 0; i <= 128; i++) {
150                 if (clients->trees[i]) rbtree_free(clients->trees[i]);
151                 clients->trees[i] = NULL;
152         }
153
154         if (clients == root_clients) {
155 #ifdef WITH_STATS
156                 if (tree_num) rbtree_free(tree_num);
157                 tree_num = NULL;
158                 tree_num_max = 0;
159 #endif
160                 root_clients = NULL;
161         }
162
163 #ifdef WITH_DYNAMIC_CLIENTS
164         /*
165          *      FIXME: No fr_fifo_delete()
166          */
167 #endif
168
169         free(clients);
170 }
171
172 /*
173  *      Return a new, initialized, set of clients.
174  */
175 RADCLIENT_LIST *clients_init(void)
176 {
177         RADCLIENT_LIST *clients = calloc(1, sizeof(RADCLIENT_LIST));
178
179         if (!clients) return NULL;
180
181         clients->min_prefix = 128;
182
183         return clients;
184 }
185
186
187 /*
188  *      Sanity check a client.
189  */
190 static int client_sane(RADCLIENT *client)
191 {
192         switch (client->ipaddr.af) {
193         case AF_INET:
194                 if (client->prefix > 32) {
195                         return 0;
196                 }
197
198                 /*
199                  *      Zero out the subnet bits.
200                  */
201                 if (client->prefix == 0) {
202                         memset(&client->ipaddr.ipaddr.ip4addr, 0,
203                                sizeof(client->ipaddr.ipaddr.ip4addr));
204
205                 } else if (client->prefix < 32) {
206                         uint32_t mask = ~0;
207
208                         mask <<= (32 - client->prefix);
209                         client->ipaddr.ipaddr.ip4addr.s_addr &= htonl(mask);
210                 }
211                 break;
212
213         case AF_INET6:
214                 if (client->prefix > 128) return 0;
215
216                 if (client->prefix == 0) {
217                         memset(&client->ipaddr.ipaddr.ip6addr, 0,
218                                sizeof(client->ipaddr.ipaddr.ip6addr));
219
220                 } else if (client->prefix < 128) {
221                         int i;
222                         uint32_t mask, *addr;
223
224                         addr = (uint32_t *) &client->ipaddr.ipaddr.ip6addr;
225
226                         for (i = client->prefix; i < 128; i += 32) {
227                                 mask = ~0;
228                                 mask <<= ((128 - i) & 0x1f);
229                                 addr[i / 32] &= mask;
230                         }
231                 }
232                 break;
233
234         default:
235                 return 0;
236         }
237
238         return 1;
239 }
240
241
242 /*
243  *      Add a client to the tree.
244  */
245 int client_add(RADCLIENT_LIST *clients, RADCLIENT *client)
246 {
247         RADCLIENT *old;
248
249         if (!client) {
250                 return 0;
251         }
252
253         /*
254          *      If "clients" is NULL, it means add to the global list.
255          */
256         if (!clients) {
257                 /*
258                  *      Initialize it, if not done already.
259                  */
260                 if (!root_clients) {
261                         root_clients = clients_init();
262                         if (!root_clients) return 0;
263                 }
264                 clients = root_clients;
265         }
266
267         if ((client->prefix < 0) || (client->prefix > 128)) {
268                 return 0;
269         }
270
271         if (!client_sane(client)) return 0;
272
273         /*
274          *      Create a tree for it.
275          */
276         if (!clients->trees[client->prefix]) {
277                 clients->trees[client->prefix] = rbtree_create(client_ipaddr_cmp,
278                                                                (void *) client_free, 0);
279                 if (!clients->trees[client->prefix]) {
280                         return 0;
281                 }
282         }
283
284 #define namecmp(a) ((!old->a && !client->a) || (old->a && client->a && (strcmp(old->a, client->a) == 0)))
285
286         /*
287          *      Cannot insert the same client twice.
288          */
289         old = rbtree_finddata(clients->trees[client->prefix], client);
290         if (old) {
291                 /*
292                  *      If it's a complete duplicate, then free the new
293                  *      one, and return "OK".
294                  */
295                 if ((fr_ipaddr_cmp(&old->ipaddr, &client->ipaddr) == 0) &&
296                     (old->prefix == client->prefix) &&
297                     namecmp(longname) && namecmp(secret) &&
298                     namecmp(shortname) && namecmp(nastype) &&
299                     namecmp(login) && namecmp(password) && namecmp(server) &&
300 #ifdef WITH_DYNAMIC_CLIENTS
301                     (old->lifetime == client->lifetime) &&
302                     namecmp(client_server) &&
303 #endif
304 #ifdef WITH_COA
305                     namecmp(coa_name) &&
306                     (old->coa_server == client->coa_server) &&
307                     (old->coa_pool == client->coa_pool) &&
308 #endif
309                     (old->message_authenticator == client->message_authenticator)) {
310                         DEBUG("WARNING: Ignoring duplicate client %s", client->longname);
311                         client_free(client);
312                         return 1;
313                 }
314
315                 radlog(L_ERR, "Failed to add duplicate client %s",
316                        client->shortname);
317                 return 0;
318         }
319 #undef namecmp
320
321         /*
322          *      Other error adding client: likely is fatal.
323          */
324         if (!rbtree_insert(clients->trees[client->prefix], client)) {
325                 return 0;
326         }
327
328 #ifdef WITH_STATS
329         if (!tree_num) {
330                 tree_num = rbtree_create(client_num_cmp, NULL, 0);
331         }
332
333
334         /*
335          *      Catch clients added by rlm_sql.
336          */
337         if (!client->auth) {
338                 client->auth = rad_malloc(sizeof(*client->auth));
339                 memset(client->auth, 0, sizeof(*client->auth));
340         }
341
342 #ifdef WITH_ACCOUNTING
343         if (!client->acct) {
344                 client->acct = rad_malloc(sizeof(*client->acct));
345                 memset(client->acct, 0, sizeof(*client->acct));
346         }
347 #endif
348
349 #ifdef WITH_DYNAMIC_CLIENTS
350         /*
351          *      More catching of clients added by rlm_sql.
352          *
353          *      The sql modules sets the dynamic flag BEFORE calling
354          *      us.  The client_create() function sets it AFTER
355          *      calling us.
356          */
357         if (client->dynamic && (client->lifetime == 0)) {
358                 RADCLIENT *network;
359
360                 /*
361                  *      If there IS an enclosing network,
362                  *      inherit the lifetime from it.
363                  */
364                 network = client_find(clients, &client->ipaddr);
365                 if (network) {
366                         client->lifetime = network->lifetime;
367                 }
368         }
369 #endif
370
371         client->number = tree_num_max;
372         tree_num_max++;
373         if (tree_num) rbtree_insert(tree_num, client);
374 #endif
375
376         if (client->prefix < clients->min_prefix) {
377                 clients->min_prefix = client->prefix;
378         }
379
380         return 1;
381 }
382
383
384 #ifdef WITH_DYNAMIC_CLIENTS
385 void client_delete(RADCLIENT_LIST *clients, RADCLIENT *client)
386 {
387         if (!clients || !client) return;
388
389         rad_assert((client->prefix >= 0) && (client->prefix <= 128));
390
391         client->dynamic = 2;    /* signal to client_free */
392
393         rbtree_deletebydata(tree_num, client);
394         rbtree_deletebydata(clients->trees[client->prefix], client);
395 }
396 #endif
397
398
399 /*
400  *      Find a client in the RADCLIENTS list by number.
401  *      This is a support function for the statistics code.
402  */
403 RADCLIENT *client_findbynumber(const RADCLIENT_LIST *clients,
404                                int number)
405 {
406 #ifdef WITH_STATS
407         if (!clients) clients = root_clients;
408
409         if (!clients) return NULL;
410
411         if (number >= tree_num_max) return NULL;
412
413         if (tree_num) {
414                 RADCLIENT myclient;
415
416                 myclient.number = number;
417
418                 return rbtree_finddata(tree_num, &myclient);
419         }
420 #else
421         clients = clients;      /* -Wunused */
422         number = number;        /* -Wunused */
423 #endif
424         return NULL;
425 }
426
427
428 /*
429  *      Find a client in the RADCLIENTS list.
430  */
431 RADCLIENT *client_find(const RADCLIENT_LIST *clients,
432                        const fr_ipaddr_t *ipaddr)
433 {
434         int i, max_prefix;
435         RADCLIENT myclient;
436
437         if (!clients) clients = root_clients;
438
439         if (!clients || !ipaddr) return NULL;
440
441         switch (ipaddr->af) {
442         case AF_INET:
443                 max_prefix = 32;
444                 break;
445
446         case AF_INET6:
447                 max_prefix = 128;
448                 break;
449
450         default :
451                 return NULL;
452         }
453
454         for (i = max_prefix; i >= clients->min_prefix; i--) {
455                 void *data;
456
457                 myclient.prefix = i;
458                 myclient.ipaddr = *ipaddr;
459                 client_sane(&myclient); /* clean up the ipaddress */
460
461                 if (!clients->trees[i]) continue;
462
463                 data = rbtree_finddata(clients->trees[i], &myclient);
464                 if (data) {
465                         return data;
466                 }
467         }
468
469         return NULL;
470 }
471
472
473 /*
474  *      Old wrapper for client_find
475  */
476 RADCLIENT *client_find_old(const fr_ipaddr_t *ipaddr)
477 {
478         return client_find(root_clients, ipaddr);
479 }
480
481 static struct in_addr cl_ip4addr;
482 static struct in6_addr cl_ip6addr;
483
484 static const CONF_PARSER client_config[] = {
485         { "ipaddr",  PW_TYPE_IPADDR,
486           0, &cl_ip4addr,  NULL },
487         { "ipv6addr",  PW_TYPE_IPV6ADDR,
488           0, &cl_ip6addr, NULL },
489         { "netmask",  PW_TYPE_INTEGER,
490           offsetof(RADCLIENT, prefix), 0, NULL },
491
492         { "require_message_authenticator",  PW_TYPE_BOOLEAN,
493           offsetof(RADCLIENT, message_authenticator), 0, "no" },
494
495         { "secret",  PW_TYPE_STRING_PTR,
496           offsetof(RADCLIENT, secret), 0, NULL },
497         { "shortname",  PW_TYPE_STRING_PTR,
498           offsetof(RADCLIENT, shortname), 0, NULL },
499         { "nastype",  PW_TYPE_STRING_PTR,
500           offsetof(RADCLIENT, nastype), 0, NULL },
501         { "login",  PW_TYPE_STRING_PTR,
502           offsetof(RADCLIENT, login), 0, NULL },
503         { "password",  PW_TYPE_STRING_PTR,
504           offsetof(RADCLIENT, password), 0, NULL },
505         { "virtual_server",  PW_TYPE_STRING_PTR,
506           offsetof(RADCLIENT, server), 0, NULL },
507         { "server",  PW_TYPE_STRING_PTR, /* compatability with 2.0-pre */
508           offsetof(RADCLIENT, server), 0, NULL },
509
510 #ifdef WITH_DYNAMIC_CLIENTS
511         { "dynamic_clients",  PW_TYPE_STRING_PTR,
512           offsetof(RADCLIENT, client_server), 0, NULL },
513         { "lifetime",  PW_TYPE_INTEGER,
514           offsetof(RADCLIENT, lifetime), 0, NULL },
515 #endif
516
517 #ifdef WITH_COA
518         { "coa_server",  PW_TYPE_STRING_PTR,
519           offsetof(RADCLIENT, coa_name), 0, NULL },
520 #endif
521
522         { NULL, -1, 0, NULL, NULL }
523 };
524
525
526 static RADCLIENT *client_parse(CONF_SECTION *cs, int in_server)
527 {
528         RADCLIENT       *c;
529         const char      *name2;
530
531         name2 = cf_section_name2(cs);
532         if (!name2) {
533                 cf_log_err(cf_sectiontoitem(cs),
534                            "Missing client name");
535                 return NULL;
536         }
537
538         /*
539          * The size is fine.. Let's create the buffer
540          */
541         c = rad_malloc(sizeof(*c));
542         memset(c, 0, sizeof(*c));
543         c->cs = cs;
544
545 #ifdef WITH_STATS
546         c->auth = rad_malloc(sizeof(*c->auth));
547         memset(c->auth, 0, sizeof(*c->auth));
548
549 #ifdef WITH_ACCOUNTING
550         c->acct = rad_malloc(sizeof(*c->acct));
551         memset(c->acct, 0, sizeof(*c->acct));
552 #endif
553 #endif
554
555         memset(&cl_ip4addr, 0, sizeof(cl_ip4addr));
556         memset(&cl_ip6addr, 0, sizeof(cl_ip6addr));
557         c->prefix = -1;
558
559         if (cf_section_parse(cs, c, client_config) < 0) {
560                 client_free(c);
561                 cf_log_err(cf_sectiontoitem(cs),
562                            "Error parsing client section.");
563                 return NULL;
564         }
565
566         /*
567          *      Global clients can set servers to use,
568          *      per-server clients cannot.
569          */
570         if (in_server && c->server) {
571                 client_free(c);
572                 cf_log_err(cf_sectiontoitem(cs),
573                            "Clients inside of an server section cannot point to a server.");
574                 return NULL;
575         }
576                 
577         /*
578          *      No "ipaddr" or "ipv6addr", use old-style
579          *      "client <ipaddr> {" syntax.
580          */
581         if (!cf_pair_find(cs, "ipaddr") &&
582             !cf_pair_find(cs, "ipv6addr")) {
583                 char *prefix_ptr;
584
585                 prefix_ptr = strchr(name2, '/');
586
587                 /*
588                  *      Look for prefixes.
589                  */
590                 if (prefix_ptr) {
591                         c->prefix = atoi(prefix_ptr + 1);
592                         if ((c->prefix < 0) || (c->prefix > 128)) {
593                                 client_free(c);
594                                 cf_log_err(cf_sectiontoitem(cs),
595                                            "Invalid Prefix value '%s' for IP.",
596                                            prefix_ptr + 1);
597                                 return NULL;
598                         }
599                         /* Replace '/' with '\0' */
600                         *prefix_ptr = '\0';
601                 }
602                         
603                 /*
604                  *      Always get the numeric representation of IP
605                  */
606                 if (ip_hton(name2, AF_UNSPEC, &c->ipaddr) < 0) {
607                         client_free(c);
608                         cf_log_err(cf_sectiontoitem(cs),
609                                    "Failed to look up hostname %s: %s",
610                                    name2, fr_strerror());
611                         return NULL;
612                 }
613
614                 if (prefix_ptr) *prefix_ptr = '/';
615                 c->longname = strdup(name2);
616
617                 if (!c->shortname) c->shortname = strdup(c->longname);
618
619         } else {
620                 char buffer[1024];
621
622                 /*
623                  *      Figure out which one to use.
624                  */
625                 if (cf_pair_find(cs, "ipaddr")) {
626                         c->ipaddr.af = AF_INET;
627                         c->ipaddr.ipaddr.ip4addr = cl_ip4addr;
628
629                         if ((c->prefix < -1) || (c->prefix > 32)) {
630                                 client_free(c);
631                                 cf_log_err(cf_sectiontoitem(cs),
632                                            "Netmask must be between 0 and 32");
633                                 return NULL;
634                         }
635                                 
636                 } else if (cf_pair_find(cs, "ipv6addr")) {
637                         c->ipaddr.af = AF_INET6;
638                         c->ipaddr.ipaddr.ip6addr = cl_ip6addr;
639                                 
640                         if ((c->prefix < -1) || (c->prefix > 128)) {
641                                 client_free(c);
642                                 cf_log_err(cf_sectiontoitem(cs),
643                                            "Netmask must be between 0 and 128");
644                                 return NULL;
645                         }
646                 } else {
647                         cf_log_err(cf_sectiontoitem(cs),
648                                    "No IP address defined for the client");
649                         client_free(c);
650                         return NULL;
651                 }
652
653                 ip_ntoh(&c->ipaddr, buffer, sizeof(buffer));
654                 c->longname = strdup(buffer);
655
656                 /*
657                  *      Set the short name to the name2
658                  */
659                 if (!c->shortname) c->shortname = strdup(name2);
660         }
661
662         if (c->prefix < 0) switch (c->ipaddr.af) {
663         case AF_INET:
664                 c->prefix = 32;
665                 break;
666         case AF_INET6:
667                 c->prefix = 128;
668                 break;
669         default:
670                 break;
671         }
672
673 #ifdef WITH_DYNAMIC_CLIENTS
674         if (c->client_server) {
675                 free(c->secret);
676                 c->secret = strdup("testing123");
677
678                 if (((c->ipaddr.af == AF_INET) &&
679                      (c->prefix == 32)) ||
680                     ((c->ipaddr.af == AF_INET6) &&
681                      (c->prefix == 128))) {
682                         cf_log_err(cf_sectiontoitem(cs),
683                                    "Dynamic clients MUST be a network, not a single IP address.");
684                         client_free(c);
685                         return NULL;
686                 }
687
688                 return c;
689         }
690 #endif
691
692         if (!c->secret || !*c->secret) {
693 #ifdef WITH_DHCP
694                 const char *value = NULL;
695                 CONF_PAIR *cp = cf_pair_find(cs, "dhcp");
696
697                 if (cp) value = cf_pair_value(cp);
698
699                 /*
700                  *      Secrets aren't needed for DHCP.
701                  */
702                 if (value && (strcmp(value, "yes") == 0)) return c;
703
704 #endif
705                 client_free(c);
706                 cf_log_err(cf_sectiontoitem(cs),
707                            "secret must be at least 1 character long");
708                 return NULL;
709         }
710
711 #ifdef WITH_COA
712         /*
713          *      Point the client to the home server pool, OR to the
714          *      home server.  This gets around the problem of figuring
715          *      out which port to use.
716          */
717         if (c->coa_name) {
718                 c->coa_pool = home_pool_byname(c->coa_name, HOME_TYPE_COA);
719                 if (!c->coa_pool) {
720                         c->coa_server = home_server_byname(c->coa_name,
721                                                            HOME_TYPE_COA);
722                 }
723                 if (!c->coa_pool && !c->coa_server) {
724                         client_free(c);
725                         cf_log_err(cf_sectiontoitem(cs), "No such home_server or home_server_pool \"%s\"", c->coa_name);
726                         return NULL;
727                 }
728         }
729 #endif
730
731         return c;
732 }
733
734
735 /*
736  *      Create the linked list of clients from the new configuration
737  *      type.  This way we don't have to change too much in the other
738  *      source-files.
739  */
740 RADCLIENT_LIST *clients_parse_section(CONF_SECTION *section)
741 {
742         int             global = FALSE, in_server = FALSE;
743         CONF_SECTION    *cs;
744         RADCLIENT       *c;
745         RADCLIENT_LIST  *clients;
746
747         /*
748          *      Be forgiving.  If there's already a clients, return
749          *      it.  Otherwise create a new one.
750          */
751         clients = cf_data_find(section, "clients");
752         if (clients) return clients;
753
754         clients = clients_init();
755         if (!clients) return NULL;
756
757         if (cf_top_section(section) == section) global = TRUE;
758
759         if (strcmp("server", cf_section_name1(section)) == 0) in_server = TRUE;
760
761         /*
762          *      Associate the clients structure with the section, where
763          *      it will be freed once the section is freed.
764          */
765         if (cf_data_add(section, "clients", clients, (void *) clients_free) < 0) {
766                 cf_log_err(cf_sectiontoitem(section),
767                            "Failed to associate clients with section %s",
768                        cf_section_name1(section));
769                 clients_free(clients);
770                 return NULL;
771         }
772
773         for (cs = cf_subsection_find_next(section, NULL, "client");
774              cs != NULL;
775              cs = cf_subsection_find_next(section, cs, "client")) {
776                 c = client_parse(cs, in_server);
777                 if (!c) {
778                         return NULL;
779                 }
780
781                 /*
782                  *      FIXME: Add the client as data via cf_data_add,
783                  *      for migration issues.
784                  */
785
786 #ifdef WITH_DYNAMIC_CLIENTS
787 #ifdef HAVE_DIRENT_H
788                 if (c->client_server) {
789                         const char *value;
790                         CONF_PAIR *cp;
791                         DIR             *dir;
792                         struct dirent   *dp;
793                         struct stat stat_buf;
794                         char buf2[2048];
795
796                         /*
797                          *      Find the directory where individual
798                          *      client definitions are stored.
799                          */
800                         cp = cf_pair_find(cs, "directory");
801                         if (!cp) goto add_client;
802                         
803                         value = cf_pair_value(cp);
804                         if (!value) {
805                                 cf_log_err(cf_sectiontoitem(cs),
806                                            "The \"directory\" entry must not be empty");
807                                 client_free(c);
808                                 return NULL;
809                         }
810
811                         DEBUG("including dynamic clients in %s", value);
812                         
813                         dir = opendir(value);
814                         if (!dir) {
815                                 cf_log_err(cf_sectiontoitem(cs), "Error reading directory %s: %s", value, strerror(errno));
816                                 client_free(c);
817                                 return NULL;
818                         }
819                         
820                         /*
821                          *      Read the directory, ignoring "." files.
822                          */
823                         while ((dp = readdir(dir)) != NULL) {
824                                 const char *p;
825                                 RADCLIENT *dc;
826
827                                 if (dp->d_name[0] == '.') continue;
828
829                                 /*
830                                  *      Check for valid characters
831                                  */
832                                 for (p = dp->d_name; *p != '\0'; p++) {
833                                         if (isalpha((int)*p) ||
834                                             isdigit((int)*p) ||
835                                             (*p == ':') ||
836                                             (*p == '.')) continue;
837                                                 break;
838                                 }
839                                 if (*p != '\0') continue;
840
841                                 snprintf(buf2, sizeof(buf2), "%s/%s",
842                                          value, dp->d_name);
843
844                                 if ((stat(buf2, &stat_buf) != 0) ||
845                                     S_ISDIR(stat_buf.st_mode)) continue;
846
847                                 dc = client_read(buf2, in_server, TRUE);
848                                 if (!dc) {
849                                         cf_log_err(cf_sectiontoitem(cs),
850                                                    "Failed reading client file \"%s\"", buf2);
851                                         client_free(c);
852                                         return NULL;
853                                 }
854
855                                 /*
856                                  *      Validate, and add to the list.
857                                  */
858                                 if (!client_validate(clients, c, dc)) {
859                                         
860                                         client_free(c);
861                                         return NULL;
862                                 }
863                         } /* loop over the directory */
864                 }
865 #endif /* HAVE_DIRENT_H */
866 #endif /* WITH_DYNAMIC_CLIENTS */
867
868         add_client:
869                 if (!client_add(clients, c)) {
870                         cf_log_err(cf_sectiontoitem(cs),
871                                    "Failed to add client %s",
872                                    cf_section_name2(cs));
873                         client_free(c);
874                         return NULL;
875                 }
876
877         }
878
879         /*
880          *      Replace the global list of clients with the new one.
881          *      The old one is still referenced from the original
882          *      configuration, and will be freed when that is freed.
883          */
884         if (global) {
885                 root_clients = clients;
886         }
887
888         return clients;
889 }
890
891 #ifdef WITH_DYNAMIC_CLIENTS
892 /*
893  *      We overload this structure a lot.
894  */
895 static const CONF_PARSER dynamic_config[] = {
896         { "FreeRADIUS-Client-IP-Address",  PW_TYPE_IPADDR,
897           offsetof(RADCLIENT, ipaddr), 0, NULL },
898         { "FreeRADIUS-Client-IPv6-Address",  PW_TYPE_IPV6ADDR,
899           offsetof(RADCLIENT, ipaddr), 0, NULL },
900
901         { "FreeRADIUS-Client-Require-MA",  PW_TYPE_BOOLEAN,
902           offsetof(RADCLIENT, message_authenticator), NULL, NULL },
903
904         { "FreeRADIUS-Client-Secret",  PW_TYPE_STRING_PTR,
905           offsetof(RADCLIENT, secret), 0, "" },
906         { "FreeRADIUS-Client-Shortname",  PW_TYPE_STRING_PTR,
907           offsetof(RADCLIENT, shortname), 0, "" },
908         { "FreeRADIUS-Client-NAS-Type",  PW_TYPE_STRING_PTR,
909           offsetof(RADCLIENT, nastype), 0, NULL },
910         { "FreeRADIUS-Client-Virtual-Server",  PW_TYPE_STRING_PTR,
911           offsetof(RADCLIENT, server), 0, NULL },
912
913         { NULL, -1, 0, NULL, NULL }
914 };
915
916
917 int client_validate(RADCLIENT_LIST *clients, RADCLIENT *master, RADCLIENT *c)
918 {
919         char buffer[128];
920
921         /*
922          *      No virtual server defined.  Inherit the parent's
923          *      definition.
924          */
925         if (master->server && !c->server) {
926                 c->server = strdup(master->server);
927         }
928
929         /*
930          *      If the client network isn't global (not tied to a
931          *      virtual server), then ensure that this clients server
932          *      is the same as the enclosing networks virtual server.
933          */
934         if (master->server &&
935              (strcmp(master->server, c->server) != 0)) {
936                 DEBUG("- Cannot add client %s: Virtual server %s is not the same as the virtual server for the network.",
937                       ip_ntoh(&c->ipaddr,
938                               buffer, sizeof(buffer)),
939                       c->server);
940
941                 goto error;
942         }
943
944         if (!client_add(clients, c)) {
945                 DEBUG("- Cannot add client %s: Internal error",
946                       ip_ntoh(&c->ipaddr,
947                               buffer, sizeof(buffer)));
948
949                 goto error;
950         }
951
952         /*
953          *      Initialize the remaining fields.
954          */
955         c->dynamic = TRUE;
956         c->lifetime = master->lifetime;
957         c->created = time(NULL);
958         c->longname = strdup(c->shortname);
959
960         DEBUG("- Added client %s with shared secret %s",
961               ip_ntoh(&c->ipaddr, buffer, sizeof(buffer)),
962               c->secret);
963
964         return 1;
965
966  error:
967         client_free(c);
968         return 0;
969 }
970
971
972 RADCLIENT *client_create(RADCLIENT_LIST *clients, REQUEST *request)
973 {
974         int i, *pi;
975         char **p;
976         RADCLIENT *c;
977         char buffer[128];
978
979         if (!clients || !request) return NULL;
980
981         c = rad_malloc(sizeof(*c));
982         memset(c, 0, sizeof(*c));
983         c->cs = request->client->cs;
984         c->ipaddr.af = AF_UNSPEC;
985
986         for (i = 0; dynamic_config[i].name != NULL; i++) {
987                 DICT_ATTR *da;
988                 VALUE_PAIR *vp;
989
990                 da = dict_attrbyname(dynamic_config[i].name);
991                 if (!da) {
992                         DEBUG("- Cannot add client %s: attribute \"%s\"is not in the dictionary",
993                               ip_ntoh(&request->packet->src_ipaddr,
994                                       buffer, sizeof(buffer)),
995                               dynamic_config[i].name);
996                 error:
997                         client_free(c);
998                         return NULL;
999                 }
1000
1001                 vp = pairfind(request->config_items, da->attr);
1002                 if (!vp) {
1003                         /*
1004                          *      Not required.  Skip it.
1005                          */
1006                         if (!dynamic_config[i].dflt) continue;
1007                         
1008                         DEBUG("- Cannot add client %s: Required attribute \"%s\" is missing.",  
1009                               ip_ntoh(&request->packet->src_ipaddr,
1010                                       buffer, sizeof(buffer)),
1011                               dynamic_config[i].name);
1012                         goto error;
1013                 }
1014
1015                 switch (dynamic_config[i].type) {
1016                 case PW_TYPE_IPADDR:
1017                         c->ipaddr.af = AF_INET;
1018                         c->ipaddr.ipaddr.ip4addr.s_addr = vp->vp_ipaddr;
1019                         c->prefix = 32;
1020                         break;
1021
1022                 case PW_TYPE_IPV6ADDR:
1023                         c->ipaddr.af = AF_INET6;
1024                         c->ipaddr.ipaddr.ip6addr = vp->vp_ipv6addr;
1025                         c->prefix = 128;
1026                         break;
1027
1028                 case PW_TYPE_STRING_PTR:
1029                         p = (char **) ((char *) c + dynamic_config[i].offset);
1030                         if (*p) free(*p);
1031                         *p = strdup(vp->vp_strvalue);
1032                         break;
1033
1034                 case PW_TYPE_BOOLEAN:
1035                         pi = (int *) ((char *) c + dynamic_config[i].offset);
1036                         *pi = vp->vp_integer;
1037                         break;
1038
1039                 default:
1040                         goto error;
1041                 }
1042         }
1043
1044         if (c->ipaddr.af == AF_UNSPEC) {
1045                 DEBUG("- Cannot add client %s: No IP address was specified.",
1046                       ip_ntoh(&request->packet->src_ipaddr,
1047                               buffer, sizeof(buffer)));
1048
1049                 goto error;
1050         }
1051
1052         if (fr_ipaddr_cmp(&request->packet->src_ipaddr, &c->ipaddr) != 0) {
1053                 char buf2[128];
1054
1055                 DEBUG("- Cannot add client %s: IP address %s do not match",
1056                       ip_ntoh(&request->packet->src_ipaddr,
1057                               buffer, sizeof(buffer)),
1058                       ip_ntoh(&c->ipaddr,
1059                               buf2, sizeof(buf2)));                   
1060                 goto error;
1061         }
1062
1063         if (!client_validate(clients, request->client, c)) {
1064                 return NULL;
1065         }
1066
1067         return c;
1068 }
1069
1070 /*
1071  *      Read a client definition from the given filename.
1072  */
1073 RADCLIENT *client_read(const char *filename, int in_server, int flag)
1074 {
1075         const char *p;
1076         RADCLIENT *c;
1077         CONF_SECTION *cs;
1078         char buffer[256];
1079
1080         if (!filename) return NULL;
1081
1082         cs = cf_file_read(filename);
1083         if (!cs) return NULL;
1084
1085         c = client_parse(cf_section_sub_find(cs, "client"), in_server);
1086
1087         p = strrchr(filename, FR_DIR_SEP);
1088         if (p) {
1089                 p++;
1090         } else {
1091                 p = filename;
1092         }
1093
1094         if (!flag) return c;
1095
1096         /*
1097          *      Additional validations
1098          */
1099         ip_ntoh(&c->ipaddr, buffer, sizeof(buffer));
1100         if (strcmp(p, buffer) != 0) {
1101                 DEBUG("Invalid client definition in %s: IP address %s does not match name %s", filename, buffer, p);
1102                 client_free(c);
1103                 return NULL;
1104         }
1105
1106
1107
1108         return c;
1109 }
1110 #endif