Added optional query. May be usefull to some people
[freeradius.git] / src / modules / rlm_perl / rlm_perl.c
1 /*
2  * rlm_perl.c
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 2002  The FreeRADIUS server project
21  * Copyright 2002  Boian Jordanov <bjordanov@orbitel.bg>
22  */
23
24 #include <freeradius-devel/autoconf.h>
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #include <freeradius-devel/radiusd.h>
31 #include <freeradius-devel/modules.h>
32 #include <freeradius-devel/conffile.h>
33
34 #ifdef DEBUG
35 #undef DEBUG
36 #endif
37
38 #ifdef INADDR_ANY
39 #undef INADDR_ANY
40 #endif
41
42 #include <EXTERN.h>
43 #include <perl.h>
44 #include <XSUB.h>
45 #include <dlfcn.h>
46 #include <semaphore.h>
47
48 #ifdef __APPLE__
49 extern char **environ;
50 #endif
51
52 static const char rcsid[] = "$Id$";
53
54 #ifdef USE_ITHREADS
55
56 /*
57  * Pool of Perl's clones (genetically cloned) ;)
58  *
59  */
60 typedef struct pool_handle {
61         struct pool_handle      *next;
62         struct pool_handle      *prev;
63         enum {busy, idle}       status;
64         unsigned int            request_count;
65         PerlInterpreter         *clone;
66         perl_mutex              lock;
67 } POOL_HANDLE;
68
69 typedef struct PERL_POOL {
70         POOL_HANDLE     *head;
71         POOL_HANDLE     *tail;
72
73         int             current_clones;
74         int             active_clones;
75         int             max_clones;
76         int             start_clones;
77         int             min_spare_clones;
78         int             max_spare_clones;
79         int             max_request_per_clone;
80         int             cleanup_delay;
81         enum {yes,no}   detach;
82         perl_mutex      mutex;
83         time_t          time_when_last_added;
84 } PERL_POOL;
85
86 #endif
87
88 /*
89  *      Define a structure for our module configuration.
90  *
91  *      These variables do not need to be in a structure, but it's
92  *      a lot cleaner to do so, and a pointer to the structure can
93  *      be used as the instance handle.
94  */
95 typedef struct perl_inst {
96         /* Name of the perl module */
97         char    *module;
98
99         /* Name of the functions for each module method */
100         char    *func_authorize;
101         char    *func_authenticate;
102         char    *func_accounting;
103         char    *func_start_accounting;
104         char    *func_stop_accounting;
105         char    *func_preacct;
106         char    *func_checksimul;
107         char    *func_detach;
108         char    *func_xlat;
109         char    *func_pre_proxy;
110         char    *func_post_proxy;
111         char    *func_post_auth;
112         char    *xlat_name;
113         char    *perl_flags;
114         PerlInterpreter *perl;
115 #ifdef USE_ITHREADS
116         PERL_POOL       *perl_pool;
117 #endif
118 } PERL_INST;
119 /*
120  *      A mapping of configuration file names to internal variables.
121  *
122  *      Note that the string is dynamically allocated, so it MUST
123  *      be freed.  When the configuration file parse re-reads the string,
124  *      it free's the old one, and strdup's the new one, placing the pointer
125  *      to the strdup'd string into 'config.string'.  This gets around
126  *      buffer over-flows.
127  */
128 static const CONF_PARSER module_config[] = {
129         { "module",  PW_TYPE_FILENAME,
130           offsetof(PERL_INST,module), NULL,  "module"},
131         { "func_authorize", PW_TYPE_STRING_PTR,
132           offsetof(PERL_INST,func_authorize), NULL, "authorize"},
133         { "func_authenticate", PW_TYPE_STRING_PTR,
134           offsetof(PERL_INST,func_authenticate), NULL, "authenticate"},
135         { "func_accounting", PW_TYPE_STRING_PTR,
136           offsetof(PERL_INST,func_accounting), NULL, "accounting"},
137         { "func_preacct", PW_TYPE_STRING_PTR,
138           offsetof(PERL_INST,func_preacct), NULL, "preacct"},
139         { "func_checksimul", PW_TYPE_STRING_PTR,
140           offsetof(PERL_INST,func_checksimul), NULL, "checksimul"},
141         { "func_detach", PW_TYPE_STRING_PTR,
142           offsetof(PERL_INST,func_detach), NULL, "detach"},
143         { "func_xlat", PW_TYPE_STRING_PTR,
144           offsetof(PERL_INST,func_xlat), NULL, "xlat"},
145         { "func_pre_proxy", PW_TYPE_STRING_PTR,
146           offsetof(PERL_INST,func_pre_proxy), NULL, "pre_proxy"},
147         { "func_post_proxy", PW_TYPE_STRING_PTR,
148           offsetof(PERL_INST,func_post_proxy), NULL, "post_proxy"},
149         { "func_post_auth", PW_TYPE_STRING_PTR,
150           offsetof(PERL_INST,func_post_auth), NULL, "post_auth"},
151         { "perl_flags", PW_TYPE_STRING_PTR,
152           offsetof(PERL_INST,perl_flags), NULL, NULL},
153         { "func_start_accounting", PW_TYPE_STRING_PTR,
154           offsetof(PERL_INST,func_start_accounting), NULL, NULL},
155         { "func_stop_accounting", PW_TYPE_STRING_PTR,
156           offsetof(PERL_INST,func_stop_accounting), NULL, NULL},
157
158         { NULL, -1, 0, NULL, NULL }             /* end the list */
159 };
160
161 /*
162  * man perlembed
163  */
164 EXTERN_C void boot_DynaLoader(pTHX_ CV* cv);
165
166 #ifdef USE_ITHREADS
167 /*
168  *      We use one perl to clone from it i.e. main boss
169  *      We clone it for every instance if we have perl
170  *      with -Duseithreads compiled in
171  */
172 static PerlInterpreter  *interp = NULL;
173
174 static const CONF_PARSER pool_conf[] = {
175         { "max_clones", PW_TYPE_INTEGER, offsetof(PERL_POOL, max_clones), NULL,         "32"},
176         { "start_clones",PW_TYPE_INTEGER, offsetof(PERL_POOL, start_clones), NULL,              "32"},
177         { "min_spare_clones",PW_TYPE_INTEGER, offsetof(PERL_POOL, min_spare_clones),NULL,       "0"},
178         { "max_spare_clones",PW_TYPE_INTEGER, offsetof(PERL_POOL,max_spare_clones),NULL,        "32"},
179         { "cleanup_delay",PW_TYPE_INTEGER, offsetof(PERL_POOL,cleanup_delay),NULL,              "5"},
180         { "max_request_per_clone",PW_TYPE_INTEGER, offsetof(PERL_POOL,max_request_per_clone),NULL,      "0"},
181         { NULL, -1, 0, NULL, NULL }             /* end the list */
182 };
183
184
185 #define dl_librefs "DynaLoader::dl_librefs"
186 #define dl_modules "DynaLoader::dl_modules"
187 static void rlm_perl_clear_handles(pTHX)
188 {
189         AV *librefs = get_av(dl_librefs, FALSE);
190         if (librefs) {
191                 av_clear(librefs);
192         }
193 }
194
195 static void **rlm_perl_get_handles(pTHX)
196 {
197         I32 i;
198         AV *librefs = get_av(dl_librefs, FALSE);
199         AV *modules = get_av(dl_modules, FALSE);
200         void **handles;
201
202         if (!librefs) {
203                 radlog(L_ERR,
204                    "Could not get @%s for unloading.\n",
205                    dl_librefs);
206                 return NULL;
207         }
208
209         if (!(AvFILL(librefs) >= 0)) {
210                 return NULL;
211         }
212
213         handles = (void **)rad_malloc(sizeof(void *) * (AvFILL(librefs)+2));
214
215         for (i=0; i<=AvFILL(librefs); i++) {
216                 void *handle;
217                 SV *handle_sv = *av_fetch(librefs, i, FALSE);
218
219                 if(!handle_sv) {
220                     radlog(L_ERR,
221                                "Could not fetch $%s[%d]!\n",
222                                dl_librefs, (int)i);
223                     continue;
224                 }
225                 handle = (void *)SvIV(handle_sv);
226
227                 if (handle) {
228                     handles[i] = handle;
229                 }
230         }
231
232         av_clear(modules);
233         av_clear(librefs);
234
235         handles[i] = (void *)0;
236
237         return handles;
238 }
239
240 static void rlm_perl_close_handles(void **handles)
241 {
242         int i;
243
244         if (!handles) {
245                 return;
246         }
247
248         for (i=0; handles[i]; i++) {
249                 radlog(L_DBG, "close 0x%lx\n", (unsigned long)handles[i]);
250                 dlclose(handles[i]);
251         }
252
253         free(handles);
254 }
255
256 static PerlInterpreter *rlm_perl_clone(PerlInterpreter *perl)
257 {
258         PerlInterpreter *clone;
259         UV clone_flags = 0;
260
261         PERL_SET_CONTEXT(perl);
262
263         clone = perl_clone(perl, clone_flags);
264         {
265                 dTHXa(clone);
266         }
267 #if PERL_REVISION >= 5 && PERL_VERSION <8
268         call_pv("CLONE",0);
269 #endif
270         ptr_table_free(PL_ptr_table);
271         PL_ptr_table = NULL;
272
273         PERL_SET_CONTEXT(aTHX);
274         rlm_perl_clear_handles(aTHX);
275
276         return clone;
277 }
278
279 static void rlm_perl_destruct(PerlInterpreter *perl)
280 {
281         char **orig_environ = NULL;
282         dTHXa(perl);
283
284         PERL_SET_CONTEXT(perl);
285
286         PL_perl_destruct_level = 2;
287
288         PL_origenviron = environ;
289
290         {
291                 dTHXa(perl);
292         }
293         /*
294          * FIXME: This shouldn't happen
295          *
296          */
297         while (PL_scopestack_ix > 1 ){
298                 LEAVE;
299         }
300
301         perl_destruct(perl);
302         perl_free(perl);
303
304         if (orig_environ) {
305                 environ = orig_environ;
306         }
307 }
308
309 static void rlm_destroy_perl(PerlInterpreter *perl)
310 {
311         void    **handles;
312
313         dTHXa(perl);
314         PERL_SET_CONTEXT(perl);
315
316         handles = rlm_perl_get_handles(aTHX);
317         rlm_perl_destruct(perl);
318         rlm_perl_close_handles(handles);
319 }
320
321 static void delete_pool_handle(POOL_HANDLE *handle, PERL_INST *inst)
322 {
323         POOL_HANDLE *prev;
324         POOL_HANDLE *next;
325
326         prev = handle->prev;
327         next = handle->next;
328
329         if (prev == NULL) {
330                 inst->perl_pool->head = next;
331         } else {
332                 prev->next = next;
333         }
334
335         if (next == NULL) {
336                 inst->perl_pool->tail = prev;
337         } else {
338                 next->prev = prev;
339         }
340         inst->perl_pool->current_clones--;
341         MUTEX_DESTROY(&handle->lock);
342         free(handle);
343 }
344
345 static void move2tail(POOL_HANDLE *handle, PERL_INST *inst)
346 {
347         POOL_HANDLE *prev;
348         POOL_HANDLE *next;
349
350         if (inst->perl_pool->head == NULL) {
351
352                 handle->prev = NULL;
353                 handle->next = NULL;
354                 inst->perl_pool->head = handle;
355                 inst->perl_pool->tail = handle;
356                 return;
357         }
358
359         if (inst->perl_pool->tail == handle) {
360                 return;
361         }
362
363         prev = handle->prev;
364         next = handle->next;
365
366         if ((next != NULL) ||
367                         (prev != NULL)) {
368                 if (next == NULL) {
369                         return;
370                 }
371
372                 if (prev == NULL) {
373                         inst->perl_pool->head = next;
374                         next->prev = NULL;
375
376                 } else {
377
378                         prev->next = next;
379                         next->prev = prev;
380                 }
381         }
382
383         handle->next = NULL;
384         prev = inst->perl_pool->tail;
385
386         inst->perl_pool->tail = handle;
387         handle->prev = prev;
388         prev->next = handle;
389 }
390
391
392 static POOL_HANDLE *pool_grow (PERL_INST *inst) {
393         POOL_HANDLE *handle;
394         time_t  now;
395
396         if (inst->perl_pool->max_clones == inst->perl_pool->current_clones) {
397                 return NULL;
398         }
399         if (inst->perl_pool->detach == yes ) {
400                 return NULL;
401         }
402
403         handle = (POOL_HANDLE *)rad_malloc(sizeof(POOL_HANDLE));
404
405         if (!handle) {
406                 radlog(L_ERR,"Could not find free memory for pool. Aborting");
407                 return NULL;
408         }
409
410         handle->prev = NULL;
411         handle->next = NULL;
412         handle->status = idle;
413         handle->clone = rlm_perl_clone(inst->perl);
414         handle->request_count = 0;
415         MUTEX_INIT(&handle->lock);
416         inst->perl_pool->current_clones++;
417         move2tail(handle, inst);
418
419         now = time(NULL);
420         inst->perl_pool->time_when_last_added = now;
421
422         return handle;
423 }
424
425 static POOL_HANDLE *pool_pop(PERL_INST *inst)
426 {
427         POOL_HANDLE     *handle;
428         POOL_HANDLE     *found;
429         POOL_HANDLE     *tmp;
430         /*
431          * Lock the pool and be fast other thread maybe
432          * waiting for us to finish
433          */
434         MUTEX_LOCK(&inst->perl_pool->mutex);
435
436         found = NULL;
437
438         for (handle = inst->perl_pool->head; handle ; handle = tmp) {
439                 tmp = handle->next;
440
441                 if (handle->status == idle){
442                         found = handle;
443                         break;
444                 }
445         }
446
447         if (found == NULL) {
448                 if (inst->perl_pool->current_clones < inst->perl_pool->max_clones ) {
449
450                         found = pool_grow(inst);
451
452                         if (found == NULL) {
453                                 radlog(L_ERR,"Cannot grow pool returning");
454                                 MUTEX_UNLOCK(&inst->perl_pool->mutex);
455                                 return NULL;
456                         }
457                 } else {
458                         radlog(L_ERR,"rlm_perl:: reached maximum clones %d cannot grow",
459                                         inst->perl_pool->current_clones);
460                         MUTEX_UNLOCK(&inst->perl_pool->mutex);
461                         return NULL;
462                 }
463         }
464
465         move2tail(found, inst);
466         found->status = busy;
467         MUTEX_LOCK(&found->lock);
468         inst->perl_pool->active_clones++;
469         found->request_count++;
470         /*
471          * Hurry Up
472          */
473         MUTEX_UNLOCK(&inst->perl_pool->mutex);
474         radlog(L_DBG,"perl_pool: item 0x%lx asigned new request. Handled so far: %d",
475                         (unsigned long) found->clone, found->request_count);
476         return found;
477 }
478 static int pool_release(POOL_HANDLE *handle, PERL_INST *inst) {
479
480         POOL_HANDLE *tmp, *tmp2;
481         int spare, i, t;
482         time_t  now;
483         /*
484          * Lock it
485          */
486         MUTEX_LOCK(&inst->perl_pool->mutex);
487
488         /*
489          * If detach is set then just release the mutex
490          */
491         if (inst->perl_pool->detach == yes ) {
492         handle->status = idle;
493                 MUTEX_UNLOCK(&handle->lock);
494                 MUTEX_UNLOCK(&inst->perl_pool->mutex);
495                 return 0;
496         }
497
498         MUTEX_UNLOCK(&handle->lock);
499         handle->status = idle;
500         inst->perl_pool->active_clones--;
501
502         spare = inst->perl_pool->current_clones - inst->perl_pool->active_clones;
503
504         radlog(L_DBG,"perl_pool total/active/spare [%d/%d/%d]"
505                         , inst->perl_pool->current_clones, inst->perl_pool->active_clones, spare);
506
507         if (spare < inst->perl_pool->min_spare_clones) {
508                 t = inst->perl_pool->min_spare_clones - spare;
509                 for (i=0;i<t; i++) {
510                         if ((tmp = pool_grow(inst)) == NULL) {
511                                 MUTEX_UNLOCK(&inst->perl_pool->mutex);
512                                 return -1;
513                         }
514                 }
515                 MUTEX_UNLOCK(&inst->perl_pool->mutex);
516                 return 0;
517         }
518         now = time(NULL);
519         if ((now - inst->perl_pool->time_when_last_added) < inst->perl_pool->cleanup_delay) {
520                 MUTEX_UNLOCK(&inst->perl_pool->mutex);
521                 return 0;
522         }
523         if (spare > inst->perl_pool->max_spare_clones) {
524                 spare -= inst->perl_pool->max_spare_clones;
525                 for (tmp = inst->perl_pool->head; (tmp !=NULL ) && (spare > 0) ; tmp = tmp2) {
526                         tmp2 = tmp->next;
527
528                         if(tmp->status == idle) {
529                                 rlm_destroy_perl(tmp->clone);
530                                 delete_pool_handle(tmp,inst);
531                                 spare--;
532                                 break;
533                         }
534                 }
535         }
536         /*
537          * If the clone have reached max_request_per_clone clean it.
538          */
539         if (inst->perl_pool->max_request_per_clone > 0 ) {
540                         if (handle->request_count > inst->perl_pool->max_request_per_clone) {
541                                 rlm_destroy_perl(handle->clone);
542                                 delete_pool_handle(handle,inst);
543                 }
544         }
545         /*
546          * Hurry Up :)
547          */
548         MUTEX_UNLOCK(&inst->perl_pool->mutex);
549         return 0;
550 }
551 static int init_pool (CONF_SECTION *conf, PERL_INST *inst) {
552         POOL_HANDLE     *handle;
553         int t;
554         PERL_POOL       *pool;
555
556
557         pool = rad_malloc(sizeof(PERL_POOL));
558         memset(pool,0,sizeof(PERL_POOL));
559
560         inst->perl_pool = pool;
561
562         MUTEX_INIT(&pool->mutex);
563
564         /*
565          * Read The Config
566          *
567          */
568
569         cf_section_parse(conf,pool,pool_conf);
570         inst->perl_pool = pool;
571         inst->perl_pool->detach = no;
572
573         for(t = 0;t < inst->perl_pool->start_clones ;t++){
574                 if ((handle = pool_grow(inst)) == NULL) {
575                         return -1;
576                 }
577
578         }
579
580         return 1;
581 }
582 #endif
583
584 static void xs_init(pTHX)
585 {
586         char *file = __FILE__;
587
588         /* DynaLoader is a special case */
589         newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
590
591 }
592 /*
593  *
594  * This is wrapper for radlog
595  * Now users can call radiusd::radlog(level,msg) wich is the same
596  * calling radlog from C code.
597  * Boyan
598  */
599 static XS(XS_radiusd_radlog)
600 {
601        dXSARGS;
602        if (items !=2)
603                croak("Usage: radiusd::radlog(level, message)");
604        {
605                int     level;
606                char    *msg;
607
608                level = (int) SvIV(ST(0));
609                msg   = (char *) SvPV(ST(1), PL_na);
610
611                /*
612                 *       Because 'msg' is a 'char *', we don't want '%s', etc.
613                 *       in it to give us printf-style vulnerabilities.
614                 */
615                radlog(level, "rlm_perl: %s", msg);
616         }
617        XSRETURN_NO;
618 }
619
620 /*
621  * The xlat function
622  */
623 static int perl_xlat(void *instance, REQUEST *request, char *fmt, char * out,
624                      size_t freespace, RADIUS_ESCAPE_STRING func)
625 {
626
627         PERL_INST       *inst= (PERL_INST *) instance;
628         PerlInterpreter *perl;
629         char            params[1024], *ptr, *tmp;
630         int             count, ret=0;
631         STRLEN          n_a;
632 #ifndef USE_ITHREADS
633         perl = inst->perl;
634 #endif
635 #ifdef USE_ITHREADS
636         POOL_HANDLE     *handle;
637
638         if ((handle = pool_pop(instance)) == NULL) {
639                 return 0;
640         }
641
642         perl = handle->clone;
643
644         radlog(L_DBG,"Found a interpetator 0x%lx",(unsigned long) perl);
645         {
646         dTHXa(perl);
647         }
648 #endif
649         PERL_SET_CONTEXT(perl);
650         {
651         dSP;
652         ENTER;SAVETMPS;
653
654         /*
655          * Do an xlat on the provided string (nice recursive operation).
656         */
657         if (!radius_xlat(params, sizeof(params), fmt, request, func)) {
658                 radlog(L_ERR, "rlm_perl: xlat failed.");
659                 return 0;
660         }
661         ptr = strtok(params, " ");
662
663         PUSHMARK(SP);
664
665         while (ptr != NULL) {
666                 XPUSHs(sv_2mortal(newSVpv(ptr,0)));
667                 ptr = strtok(NULL, " ");
668         }
669
670         PUTBACK;
671
672         count = call_pv(inst->func_xlat, G_SCALAR | G_EVAL);
673
674         SPAGAIN;
675         if (SvTRUE(ERRSV)) {
676                 radlog(L_ERR, "rlm_perl: perl_xlat exit %s\n",
677                        SvPV(ERRSV,n_a));
678                 return 0;
679         }
680
681         if (count > 0) {
682                 tmp = POPp;
683                 ret = strlen(tmp);
684                 strncpy(out,tmp,ret);
685
686                 radlog(L_DBG,"rlm_perl: Len is %d , out is %s freespace is %d",
687                        ret, out,freespace);
688
689                 PUTBACK ;
690                 FREETMPS ;
691                 LEAVE ;
692
693         }
694         }
695 #ifdef USE_ITHREADS
696         pool_release(handle, instance);
697 #endif
698         return ret;
699 }
700 /*
701  *      Do any per-module initialization that is separate to each
702  *      configured instance of the module.  e.g. set up connections
703  *      to external databases, read configuration files, set up
704  *      dictionary entries, etc.
705  *
706  *      If configuration information is given in the config section
707  *      that must be referenced in later calls, store a handle to it
708  *      in *instance otherwise put a null pointer there.
709  *
710  *      Boyan:
711  *      Setup a hashes wich we will use later
712  *      parse a module and give him a chance to live
713  *
714  */
715 static int perl_instantiate(CONF_SECTION *conf, void **instance)
716 {
717         PERL_INST       *inst = (PERL_INST *) instance;
718         HV              *rad_reply_hv;
719         HV              *rad_check_hv;
720         HV              *rad_request_hv;
721         HV              *rad_request_proxy_hv;
722         HV              *rad_request_proxy_reply_hv;
723         AV              *end_AV;
724
725         char *embed[4];
726         const char *xlat_name;
727         int exitstatus = 0, argc=0;
728
729         /*
730          *      Set up a storage area for instance data
731          */
732         inst = rad_malloc(sizeof(PERL_INST));
733         memset(inst, 0, sizeof(PERL_INST));
734
735         /*
736          *      If the configuration parameters can't be parsed, then
737          *      fail.
738          */
739         if (cf_section_parse(conf, inst, module_config) < 0) {
740                 free(inst);
741                 return -1;
742         }
743
744
745         embed[0] = NULL;
746         if (inst->perl_flags) {
747                 embed[1] = inst->perl_flags;
748                 embed[2] = inst->module;
749                 embed[3] = "0";
750                 argc = 4;
751         } else {
752                 embed[1] = inst->module;
753                 embed[2] = "0";
754                 argc = 3;
755         }
756
757 #ifdef USE_ITHREADS
758         if (!interp) {
759                 if ((interp = perl_alloc()) == NULL) {
760                         radlog(L_DBG, "rlm_perl: No memory for allocating new perl !");
761                         return -1;
762                 }
763                 
764                 perl_construct(interp);
765                 PL_perl_destruct_level = 2;
766         }
767
768         inst->perl = perl_clone(interp ,CLONEf_KEEP_PTR_TABLE);
769         {
770         dTHXa(inst->perl);
771         }
772         PERL_SET_CONTEXT(inst->perl);
773 #else
774         if ((inst->perl = perl_alloc()) == NULL) {
775                 radlog(L_ERR, "rlm_perl: No memory for allocating new perl !");
776                 return -1;
777         }
778
779         perl_construct(inst->perl);
780 #endif
781
782 #if PERL_REVISION >= 5 && PERL_VERSION >=8
783         PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
784 #endif
785
786         exitstatus = perl_parse(inst->perl, xs_init, argc, embed, NULL);
787
788         end_AV = PL_endav;
789         PL_endav = Nullav;
790
791         if(!exitstatus) {
792                 exitstatus = perl_run(inst->perl);
793         } else {
794                 radlog(L_ERR,"rlm_perl: perl_parse failed: %s not found or has syntax errors. \n", inst->module);
795                 return (-1);
796         }
797
798         PL_endav = end_AV;
799
800         newXS("radiusd::radlog",XS_radiusd_radlog, "rlm_perl.c");
801
802         rad_reply_hv = newHV();
803         rad_check_hv = newHV();
804         rad_request_hv = newHV();
805         rad_request_proxy_hv = newHV();
806         rad_request_proxy_reply_hv = newHV();
807
808         rad_reply_hv = get_hv("RAD_REPLY",1);
809         rad_check_hv = get_hv("RAD_CHECK",1);
810         rad_request_hv = get_hv("RAD_REQUEST",1);
811         rad_request_proxy_hv = get_hv("RAD_REQUEST_PROXY",1);
812         rad_request_proxy_reply_hv = get_hv("RAD_REQUEST_PROXY_REPLY",1);
813
814         xlat_name = cf_section_name2(conf);
815         if (xlat_name == NULL)
816                 xlat_name = cf_section_name1(conf);
817         if (xlat_name){
818                 inst->xlat_name = strdup(xlat_name);
819                 xlat_register(xlat_name, perl_xlat, inst);
820         }
821
822 #ifdef USE_ITHREADS
823         if ((init_pool(conf, inst)) == -1) {
824                 radlog(L_ERR,"Couldn't init a pool of perl clones. Exiting");
825                 return -1;
826         }
827
828 #endif
829         *instance = inst;
830
831         return 0;
832 }
833
834 /*
835  *      get the vps and put them in perl hash
836  *      If one VP have multiple values it is added as array_ref
837  *      Example for this is Cisco-AVPair that holds multiple values.
838  *      Which will be available as array_ref in $RAD_REQUEST{'Cisco-AVPair'}
839  */
840 static void perl_store_vps(VALUE_PAIR *vp, HV *rad_hv)
841 {
842         VALUE_PAIR      *nvp, *vpa, *vpn;
843         AV              *av;
844         char            buffer[1024];
845         int             attr, len;
846
847         hv_undef(rad_hv);
848         nvp = paircopy(vp);
849
850         while (nvp != NULL) {
851                 attr = nvp->attribute;
852                 vpa = paircopy2(nvp,attr);
853                 if (vpa->next) {
854                         av = newAV();
855                         vpn = vpa;
856                         while (vpn) {
857                                 len = vp_prints_value(buffer, sizeof(buffer),
858                                                 vpn, FALSE);
859                                 av_push(av, newSVpv(buffer, len));
860                                 vpn = vpn->next;
861                         }
862                         hv_store(rad_hv, nvp->name, strlen(nvp->name),
863                                         newRV_noinc((SV *) av), 0);
864                 } else {
865                         len = vp_prints_value(buffer, sizeof(buffer),
866                                         vpa, FALSE);
867                         hv_store(rad_hv, vpa->name, strlen(vpa->name),
868                                         newSVpv(buffer, len), 0);
869                 }
870
871                 pairfree(&vpa);
872                 vpa = nvp; while ((vpa != NULL) && (vpa->attribute == attr))
873                         vpa = vpa->next;
874                 pairdelete(&nvp, attr);
875                 nvp = vpa;
876         }
877 }
878
879 /*
880  *
881  *     Verify that a Perl SV is a string and save it in FreeRadius
882  *     Value Pair Format
883  *
884  */
885 static int pairadd_sv(VALUE_PAIR **vp, char *key, SV *sv) {
886        char            *val;
887        VALUE_PAIR      *vpp;
888
889        if (SvOK(sv)) {
890                val = SvPV_nolen(sv);
891                vpp = pairmake(key, val, T_OP_EQ);
892                if (vpp != NULL) {
893                        pairadd(vp, vpp);
894                        radlog(L_DBG,
895                          "rlm_perl: Added pair %s = %s", key, val);
896                        return 1;
897                } else {
898                        radlog(L_DBG,
899                          "rlm_perl: ERROR: Failed to create pair %s = %s",
900                          key, val);
901                }
902         }
903        return 0;
904 }
905
906 /*
907   *     Boyan :
908   *     Gets the content from hashes
909   */
910 static int get_hv_content(HV *my_hv, VALUE_PAIR **vp)
911 {
912        SV               *res_sv, **av_sv;
913        AV               *av;
914        char             *key;
915        I32              key_len, len, i, j;
916        int              ret=0;
917
918        for (i = hv_iterinit(my_hv); i > 0; i--) {
919                res_sv = hv_iternextsv(my_hv,&key,&key_len);
920                if (SvROK(res_sv) && (SvTYPE(SvRV(res_sv)) == SVt_PVAV)) {
921                        av = (AV*)SvRV(res_sv);
922                        len = av_len(av);
923                        for (j = 0; j <= len; j++) {
924                                av_sv = av_fetch(av, j, 0);
925                                ret = pairadd_sv(vp, key, *av_sv) + ret;
926                        }
927                } else ret = pairadd_sv(vp, key, res_sv) + ret;
928         }
929
930         return ret;
931 }
932
933 /*
934  *      Call the function_name inside the module
935  *      Store all vps in hashes %RAD_CHECK %RAD_REPLY %RAD_REQUEST
936  *
937  */
938 static int rlmperl_call(void *instance, REQUEST *request, char *function_name)
939 {
940
941         PERL_INST       *inst = instance;
942         VALUE_PAIR      *vp;
943         int             exitstatus=0, count;
944         STRLEN          n_a;
945
946         HV              *rad_reply_hv;
947         HV              *rad_check_hv;
948         HV              *rad_request_hv;
949         HV              *rad_request_proxy_hv;
950         HV              *rad_request_proxy_reply_hv;
951
952 #ifdef USE_ITHREADS
953         POOL_HANDLE     *handle;
954
955         if ((handle = pool_pop(instance)) == NULL) {
956                 return RLM_MODULE_FAIL;
957         }
958
959         radlog(L_DBG,"found interpetator at address 0x%lx",(unsigned long) handle->clone);
960         {
961         dTHXa(handle->clone);
962         PERL_SET_CONTEXT(handle->clone);
963         }
964 #else
965         PERL_SET_CONTEXT(inst->perl);
966         radlog(L_DBG,"Using perl at 0x%lx",(unsigned long) inst->perl);
967 #endif
968         {
969         dSP;
970
971         ENTER;
972         SAVETMPS;
973
974
975         /*
976          *      Radius has told us to call this function, but none
977          *      is defined.
978          */
979         if (!function_name) {
980                 return RLM_MODULE_FAIL;
981         }
982
983         rad_reply_hv = get_hv("RAD_REPLY",1);
984         rad_check_hv = get_hv("RAD_CHECK",1);
985         rad_request_hv = get_hv("RAD_REQUEST",1);
986         rad_request_proxy_hv = get_hv("RAD_REQUEST_PROXY",1);
987         rad_request_proxy_reply_hv = get_hv("RAD_REQUEST_PROXY_REPLY",1);
988
989
990         perl_store_vps(request->reply->vps, rad_reply_hv);
991         perl_store_vps(request->config_items, rad_check_hv);
992         perl_store_vps(request->packet->vps, rad_request_hv);
993         
994         if (request->proxy != NULL) {
995                 perl_store_vps(request->proxy->vps, rad_request_proxy_hv);
996         } else {
997                 hv_undef(rad_request_proxy_hv);
998         }
999
1000         if (request->proxy_reply !=NULL) {
1001                 perl_store_vps(request->proxy_reply->vps, rad_request_proxy_reply_hv);
1002         } else {
1003                 hv_undef(rad_request_proxy_reply_hv);
1004         }       
1005         
1006         vp = NULL;
1007
1008
1009         PUSHMARK(SP);
1010         /*
1011         * This way %RAD_xx can be pushed onto stack as sub parameters.
1012         * XPUSHs( newRV_noinc((SV *)rad_request_hv) );
1013         * XPUSHs( newRV_noinc((SV *)rad_reply_hv) );
1014         * XPUSHs( newRV_noinc((SV *)rad_check_hv) );
1015         * PUTBACK;
1016         */
1017
1018         count = call_pv(function_name, G_SCALAR | G_EVAL | G_NOARGS);
1019
1020         SPAGAIN;
1021
1022         if (count == 1) {
1023                 exitstatus = POPi;
1024                 if (exitstatus >= 100 || exitstatus < 0) {
1025                         exitstatus = RLM_MODULE_FAIL;
1026                 }
1027         }
1028
1029         PUTBACK;
1030         FREETMPS;
1031         LEAVE;
1032
1033         if (SvTRUE(ERRSV)) {
1034                 radlog(L_ERR, "rlm_perl: perl_embed:: module = %s , func = %s exit status= %s\n",
1035                        inst->module,
1036                        function_name, SvPV(ERRSV,n_a));
1037         }
1038
1039         if ((get_hv_content(rad_reply_hv, &vp)) > 0 ) {
1040                 pairmove(&request->reply->vps, &vp);
1041                 pairfree(&vp);
1042         }
1043
1044         if ((get_hv_content(rad_check_hv, &vp)) > 0 ) {
1045                 pairmove(&request->config_items, &vp);
1046                 pairfree(&vp);
1047         }
1048         
1049         if ((get_hv_content(rad_request_proxy_reply_hv, &vp)) > 0 && request->proxy_reply != NULL) {
1050                 pairfree(&request->proxy_reply->vps);
1051                 pairmove(&request->proxy_reply->vps, &vp);
1052                 pairfree(&vp);
1053         }
1054         }
1055 #ifdef USE_ITHREADS
1056         pool_release(handle,instance);
1057         radlog(L_DBG,"Unreserve perl at address 0x%lx", (unsigned long) handle->clone);
1058 #endif
1059
1060         return exitstatus;
1061 }
1062
1063 /*
1064  *      Find the named user in this modules database.  Create the set
1065  *      of attribute-value pairs to check and reply with for this user
1066  *      from the database. The authentication code only needs to check
1067  *      the password, the rest is done here.
1068  */
1069 static int perl_authorize(void *instance, REQUEST *request)
1070 {
1071         return rlmperl_call(instance, request,
1072                             ((PERL_INST *)instance)->func_authorize);
1073 }
1074
1075 /*
1076  *      Authenticate the user with the given password.
1077  */
1078 static int perl_authenticate(void *instance, REQUEST *request)
1079 {
1080         return rlmperl_call(instance, request,
1081                             ((PERL_INST *)instance)->func_authenticate);
1082 }
1083 /*
1084  *      Massage the request before recording it or proxying it
1085  */
1086 static int perl_preacct(void *instance, REQUEST *request)
1087 {
1088         return rlmperl_call(instance, request,
1089                             ((PERL_INST *)instance)->func_preacct);
1090 }
1091 /*
1092  *      Write accounting information to this modules database.
1093  */
1094 static int perl_accounting(void *instance, REQUEST *request)
1095 {
1096         VALUE_PAIR      *pair;
1097         int             acctstatustype=0;
1098
1099         if ((pair = pairfind(request->packet->vps, PW_ACCT_STATUS_TYPE)) != NULL) {
1100                 acctstatustype = pair->lvalue;
1101         } else {
1102                 radlog(L_ERR, "Invalid Accounting Packet");
1103                 return RLM_MODULE_INVALID;
1104         }
1105
1106         switch (acctstatustype) {
1107
1108                 case PW_STATUS_START:
1109
1110                         if (((PERL_INST *)instance)->func_start_accounting) {
1111                                 return rlmperl_call(instance, request,
1112                                             ((PERL_INST *)instance)->func_start_accounting);
1113                         } else {
1114                                 return rlmperl_call(instance, request,
1115                                             ((PERL_INST *)instance)->func_accounting);
1116                         }
1117                         break;
1118
1119                 case PW_STATUS_STOP:
1120
1121                         if (((PERL_INST *)instance)->func_stop_accounting) {
1122                                 return rlmperl_call(instance, request,
1123                                             ((PERL_INST *)instance)->func_stop_accounting);
1124                         } else {
1125                                 return rlmperl_call(instance, request,
1126                                             ((PERL_INST *)instance)->func_accounting);
1127                         }
1128                         break;
1129                 default:
1130                         return rlmperl_call(instance, request,
1131                                             ((PERL_INST *)instance)->func_accounting);
1132
1133         }
1134 }
1135 /*
1136  *      Check for simultaneouse-use
1137  */
1138 static int perl_checksimul(void *instance, REQUEST *request)
1139 {
1140         return rlmperl_call(instance, request,
1141                         ((PERL_INST *)instance)->func_checksimul);
1142 }
1143 /*
1144  *      Pre-Proxy request
1145  */
1146 static int perl_pre_proxy(void *instance, REQUEST *request)
1147 {
1148         return rlmperl_call(instance, request,
1149                         ((PERL_INST *)instance)->func_pre_proxy);
1150 }
1151 /*
1152  *      Post-Proxy request
1153  */
1154 static int perl_post_proxy(void *instance, REQUEST *request)
1155 {
1156         return rlmperl_call(instance, request,
1157                         ((PERL_INST *)instance)->func_post_proxy);
1158 }
1159 /*
1160  *      Pre-Auth request
1161  */
1162 static int perl_post_auth(void *instance, REQUEST *request)
1163 {
1164         return rlmperl_call(instance, request,
1165                         ((PERL_INST *)instance)->func_post_auth);
1166 }
1167 /*
1168  * Detach a instance give a chance to a module to make some internal setup ...
1169  */
1170 static int perl_detach(void *instance)
1171 {
1172         PERL_INST       *inst = (PERL_INST *) instance;
1173         int             exitstatus = 0, count = 0;
1174
1175 #ifdef USE_ITHREADS
1176         POOL_HANDLE     *handle, *tmp, *tmp2;
1177
1178         MUTEX_LOCK(&inst->perl_pool->mutex);
1179         inst->perl_pool->detach = yes;
1180         MUTEX_UNLOCK(&inst->perl_pool->mutex);
1181
1182         for (handle = inst->perl_pool->head; handle != NULL; handle = handle->next) {
1183
1184                 radlog(L_DBG,"Detach perl 0x%lx", (unsigned long) handle->clone);
1185                 /*
1186                  * Wait until clone becomes idle
1187                  */
1188                 MUTEX_LOCK(&handle->lock);
1189
1190                 /*
1191                  * Give a clones chance to run detach function
1192                  */
1193                 {
1194                 dTHXa(handle->clone);
1195                 PERL_SET_CONTEXT(handle->clone);
1196                 {
1197                 dSP; ENTER; SAVETMPS; PUSHMARK(SP);
1198                 count = call_pv(inst->func_detach, G_SCALAR | G_EVAL );
1199                 SPAGAIN;
1200
1201                 if (count == 1) {
1202                         exitstatus = POPi;
1203                         /*
1204                          * FIXME: bug in perl
1205                          *
1206                          */
1207                         if (exitstatus >= 100 || exitstatus < 0) {
1208                                 exitstatus = RLM_MODULE_FAIL;
1209                         }
1210                 }
1211                 PUTBACK;
1212                 FREETMPS;
1213                 LEAVE;
1214                 radlog(L_DBG,"detach at 0x%lx returned status %d",
1215                                 (unsigned long) handle->clone, exitstatus);
1216                 }
1217                 }
1218                 MUTEX_UNLOCK(&handle->lock);
1219         }
1220         /*
1221          * Free handles
1222          */
1223
1224         for (tmp = inst->perl_pool->head; tmp !=NULL  ; tmp = tmp2) {
1225                 tmp2 = tmp->next;
1226                 radlog(L_DBG,"rlm_perl:: Destroy perl");
1227                 rlm_perl_destruct(tmp->clone);
1228                 delete_pool_handle(tmp,inst);
1229         }
1230
1231         {
1232         dTHXa(inst->perl);
1233 #endif /* USE_ITHREADS */
1234         PERL_SET_CONTEXT(inst->perl);
1235         {
1236         dSP; ENTER; SAVETMPS;
1237         PUSHMARK(SP);
1238
1239         count = call_pv(inst->func_detach, G_SCALAR | G_EVAL );
1240         SPAGAIN;
1241
1242         if (count == 1) {
1243                 exitstatus = POPi;
1244                 if (exitstatus >= 100 || exitstatus < 0) {
1245                         exitstatus = RLM_MODULE_FAIL;
1246                 }
1247         }
1248         PUTBACK;
1249         FREETMPS;
1250         LEAVE;
1251         }
1252 #ifdef USE_ITHREADS
1253         }
1254 #endif
1255
1256         xlat_unregister(inst->xlat_name, perl_xlat);
1257         free(inst->xlat_name);
1258
1259         if (inst->func_authorize) free(inst->func_authorize);
1260         if (inst->func_authenticate) free(inst->func_authenticate);
1261         if (inst->func_accounting) free(inst->func_accounting);
1262         if (inst->func_preacct) free(inst->func_preacct);
1263         if (inst->func_checksimul) free(inst->func_checksimul);
1264         if (inst->func_pre_proxy) free(inst->func_pre_proxy);
1265         if (inst->func_post_proxy) free(inst->func_post_proxy);
1266         if (inst->func_post_auth) free(inst->func_post_auth);
1267         if (inst->func_detach) free(inst->func_detach);
1268
1269 #ifdef USE_ITHREADS
1270         free(inst->perl_pool->head);
1271         free(inst->perl_pool->tail);
1272         MUTEX_DESTROY(&inst->perl_pool->mutex);
1273         free(inst->perl_pool);
1274         rlm_perl_destruct(inst->perl);
1275 #else
1276         perl_destruct(inst->perl);
1277         perl_free(inst->perl);
1278 #endif
1279
1280         free(inst);
1281         return exitstatus;
1282 }
1283 /*
1284  *      The module name should be the only globally exported symbol.
1285  *      That is, everything else should be 'static'.
1286  *
1287  *      If the module needs to temporarily modify it's instantiation
1288  *      data, the type should be changed to RLM_TYPE_THREAD_UNSAFE.
1289  *      The server will then take care of ensuring that the module
1290  *      is single-threaded.
1291  */
1292 module_t rlm_perl = {
1293         RLM_MODULE_INIT,
1294         "perl",                         /* Name */
1295 #ifdef USE_ITHREADS
1296         RLM_TYPE_THREAD_SAFE,           /* type */
1297 #else
1298         RLM_TYPE_THREAD_UNSAFE,
1299 #endif
1300         perl_instantiate,               /* instantiation */
1301         perl_detach,                    /* detach */
1302         {
1303                 perl_authenticate,      /* authenticate */
1304                 perl_authorize,         /* authorize */
1305                 perl_preacct,           /* preacct */
1306                 perl_accounting,        /* accounting */
1307                 perl_checksimul,        /* check simul */
1308                 perl_pre_proxy,         /* pre-proxy */
1309                 perl_post_proxy,        /* post-proxy */
1310                 perl_post_auth          /* post-auth */
1311         },
1312 };