Removed extraneous fprintf
[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,2006  The FreeRADIUS server project
21  * Copyright 2002  Boian Jordanov <bjordanov@orbitel.bg>
22  */
23
24 #include <freeradius-devel/ident.h>
25 RCSID("$Id$")
26
27 #include <freeradius-devel/radiusd.h>
28 #include <freeradius-devel/modules.h>
29
30 #ifdef DEBUG
31 #undef DEBUG
32 #endif
33
34 #ifdef INADDR_ANY
35 #undef INADDR_ANY
36 #endif
37
38 #include <EXTERN.h>
39 #include <perl.h>
40 #include <XSUB.h>
41 #include <dlfcn.h>
42 #include <semaphore.h>
43
44 #ifdef __APPLE__
45 extern char **environ;
46 #endif
47
48 /*
49  *      Define a structure for our module configuration.
50  *
51  *      These variables do not need to be in a structure, but it's
52  *      a lot cleaner to do so, and a pointer to the structure can
53  *      be used as the instance handle.
54  */
55 typedef struct perl_inst {
56         /* Name of the perl module */
57         char    *module;
58
59         /* Name of the functions for each module method */
60         char    *func_authorize;
61         char    *func_authenticate;
62         char    *func_accounting;
63         char    *func_start_accounting;
64         char    *func_stop_accounting;
65         char    *func_preacct;
66         char    *func_checksimul;
67         char    *func_detach;
68         char    *func_xlat;
69         char    *func_pre_proxy;
70         char    *func_post_proxy;
71         char    *func_post_auth;
72 #ifdef WITH_COA
73         char    *func_recv_coa;
74         char    *func_send_coa;
75 #endif
76         char    *xlat_name;
77         char    *perl_flags;
78         PerlInterpreter *perl;
79         pthread_key_t   *thread_key;
80 } PERL_INST;
81 /*
82  *      A mapping of configuration file names to internal variables.
83  *
84  *      Note that the string is dynamically allocated, so it MUST
85  *      be freed.  When the configuration file parse re-reads the string,
86  *      it free's the old one, and strdup's the new one, placing the pointer
87  *      to the strdup'd string into 'config.string'.  This gets around
88  *      buffer over-flows.
89  */
90 static const CONF_PARSER module_config[] = {
91         { "module",  PW_TYPE_FILENAME,
92           offsetof(PERL_INST,module), NULL,  "module"},
93         { "func_authorize", PW_TYPE_STRING_PTR,
94           offsetof(PERL_INST,func_authorize), NULL, "authorize"},
95         { "func_authenticate", PW_TYPE_STRING_PTR,
96           offsetof(PERL_INST,func_authenticate), NULL, "authenticate"},
97         { "func_accounting", PW_TYPE_STRING_PTR,
98           offsetof(PERL_INST,func_accounting), NULL, "accounting"},
99         { "func_preacct", PW_TYPE_STRING_PTR,
100           offsetof(PERL_INST,func_preacct), NULL, "preacct"},
101         { "func_checksimul", PW_TYPE_STRING_PTR,
102           offsetof(PERL_INST,func_checksimul), NULL, "checksimul"},
103         { "func_detach", PW_TYPE_STRING_PTR,
104           offsetof(PERL_INST,func_detach), NULL, "detach"},
105         { "func_xlat", PW_TYPE_STRING_PTR,
106           offsetof(PERL_INST,func_xlat), NULL, "xlat"},
107         { "func_pre_proxy", PW_TYPE_STRING_PTR,
108           offsetof(PERL_INST,func_pre_proxy), NULL, "pre_proxy"},
109         { "func_post_proxy", PW_TYPE_STRING_PTR,
110           offsetof(PERL_INST,func_post_proxy), NULL, "post_proxy"},
111         { "func_post_auth", PW_TYPE_STRING_PTR,
112           offsetof(PERL_INST,func_post_auth), NULL, "post_auth"},
113 #ifdef WITH_COA
114         { "func_recv_coa", PW_TYPE_STRING_PTR,
115           offsetof(PERL_INST,func_recv_coa), NULL, "recv_coa"},
116         { "func_send_coa", PW_TYPE_STRING_PTR,
117           offsetof(PERL_INST,func_send_coa), NULL, "send_coa"},
118 #endif
119         { "perl_flags", PW_TYPE_STRING_PTR,
120           offsetof(PERL_INST,perl_flags), NULL, NULL},
121         { "func_start_accounting", PW_TYPE_STRING_PTR,
122           offsetof(PERL_INST,func_start_accounting), NULL, NULL},
123         { "func_stop_accounting", PW_TYPE_STRING_PTR,
124           offsetof(PERL_INST,func_stop_accounting), NULL, NULL},
125
126         { NULL, -1, 0, NULL, NULL }             /* end the list */
127 };
128
129 /*
130  * man perlembed
131  */
132 EXTERN_C void boot_DynaLoader(pTHX_ CV* cv);
133
134 #ifdef USE_ITHREADS
135 #define dl_librefs "DynaLoader::dl_librefs"
136 #define dl_modules "DynaLoader::dl_modules"
137 static void rlm_perl_clear_handles(pTHX)
138 {
139         AV *librefs = get_av(dl_librefs, FALSE);
140         if (librefs) {
141                 av_clear(librefs);
142         }
143 }
144
145 static void **rlm_perl_get_handles(pTHX)
146 {
147         I32 i;
148         AV *librefs = get_av(dl_librefs, FALSE);
149         AV *modules = get_av(dl_modules, FALSE);
150         void **handles;
151
152         if (!librefs) {
153                 radlog(L_ERR,
154                    "Could not get @%s for unloading.\n",
155                    dl_librefs);
156                 return NULL;
157         }
158
159         if (!(AvFILL(librefs) >= 0)) {
160                 return NULL;
161         }
162
163         handles = (void **)rad_malloc(sizeof(void *) * (AvFILL(librefs)+2));
164
165         for (i=0; i<=AvFILL(librefs); i++) {
166                 void *handle;
167                 SV *handle_sv = *av_fetch(librefs, i, FALSE);
168
169                 if(!handle_sv) {
170                     radlog(L_ERR,
171                                "Could not fetch $%s[%d]!\n",
172                                dl_librefs, (int)i);
173                     continue;
174                 }
175                 handle = (void *)SvIV(handle_sv);
176
177                 if (handle) {
178                     handles[i] = handle;
179                 }
180         }
181
182         av_clear(modules);
183         av_clear(librefs);
184
185         handles[i] = (void *)0;
186
187         return handles;
188 }
189
190 static void rlm_perl_close_handles(void **handles)
191 {
192         int i;
193
194         if (!handles) {
195                 return;
196         }
197
198         for (i=0; handles[i]; i++) {
199                 radlog(L_DBG, "close %p\n", handles[i]);
200                 dlclose(handles[i]);
201         }
202
203         free(handles);
204 }
205
206 static void rlm_perl_destruct(PerlInterpreter *perl)
207 {
208         dTHXa(perl);
209
210         PERL_SET_CONTEXT(perl);
211
212         PL_perl_destruct_level = 2;
213
214         PL_origenviron = environ;
215
216         {
217                 dTHXa(perl);
218         }
219         /*
220          * FIXME: This shouldn't happen
221          *
222          */
223         while (PL_scopestack_ix > 1 ){
224                 LEAVE;
225         }
226
227         perl_destruct(perl);
228         perl_free(perl);
229 }
230
231 static void rlm_destroy_perl(PerlInterpreter *perl)
232 {
233         void    **handles;
234
235         dTHXa(perl);
236         PERL_SET_CONTEXT(perl);
237
238         handles = rlm_perl_get_handles(aTHX);
239         rlm_perl_destruct(perl);
240         rlm_perl_close_handles(handles);
241 }
242
243 /* Create Key */
244 static void rlm_perl_make_key(pthread_key_t *key)
245 {
246         pthread_key_create(key, rlm_destroy_perl);
247 }
248
249 static PerlInterpreter *rlm_perl_clone(PerlInterpreter *perl, pthread_key_t *key)
250 {
251         PerlInterpreter *interp;
252         UV clone_flags = 0;
253
254         PERL_SET_CONTEXT(perl);
255
256         interp = pthread_getspecific(*key);
257         if (interp) return interp;
258
259         interp = perl_clone(perl, clone_flags);
260         {
261                 dTHXa(interp);
262         }
263 #if PERL_REVISION >= 5 && PERL_VERSION <8
264         call_pv("CLONE",0);
265 #endif
266         ptr_table_free(PL_ptr_table);
267         PL_ptr_table = NULL;
268
269         PERL_SET_CONTEXT(aTHX);
270         rlm_perl_clear_handles(aTHX);
271
272         pthread_setspecific(*key, interp);
273
274         return interp;
275 }
276 #endif
277
278 static void xs_init(pTHX)
279 {
280         char *file = __FILE__;
281
282         /* DynaLoader is a special case */
283         newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
284
285 }
286 /*
287  *
288  * This is wrapper for radlog
289  * Now users can call radiusd::radlog(level,msg) wich is the same
290  * calling radlog from C code.
291  * Boyan
292  */
293 static XS(XS_radiusd_radlog)
294 {
295        dXSARGS;
296        if (items !=2)
297                croak("Usage: radiusd::radlog(level, message)");
298        {
299                int     level;
300                char    *msg;
301
302                level = (int) SvIV(ST(0));
303                msg   = (char *) SvPV(ST(1), PL_na);
304
305                /*
306                 *       Because 'msg' is a 'char *', we don't want '%s', etc.
307                 *       in it to give us printf-style vulnerabilities.
308                 */
309                radlog(level, "rlm_perl: %s", msg);
310         }
311        XSRETURN_NO;
312 }
313
314 /*
315  * The xlat function
316  */
317 static size_t perl_xlat(void *instance, REQUEST *request, char *fmt, char *out,
318                         size_t freespace, RADIUS_ESCAPE_STRING func)
319 {
320
321         PERL_INST       *inst= (PERL_INST *) instance;
322         PerlInterpreter *perl;
323         char            params[1024], *ptr, *tmp;
324         int             count;
325         size_t          ret = 0;
326         STRLEN          n_a;
327
328         /*
329          * Do an xlat on the provided string (nice recursive operation).
330         */
331         if (!radius_xlat(params, sizeof(params), fmt, request, func)) {
332                 radlog(L_ERR, "rlm_perl: xlat failed.");
333                 return 0;
334         }
335
336 #ifndef WITH_ITHREADS
337         perl = inst->perl;
338 #else
339         perl = rlm_perl_clone(inst->perl,inst->thread_key);
340         {
341           dTHXa(perl);
342         }
343 #endif
344         PERL_SET_CONTEXT(perl);
345         {
346         dSP;
347         ENTER;SAVETMPS;
348
349         ptr = strtok(params, " ");
350
351         PUSHMARK(SP);
352
353         while (ptr != NULL) {
354                 XPUSHs(sv_2mortal(newSVpv(ptr,0)));
355                 ptr = strtok(NULL, " ");
356         }
357
358         PUTBACK;
359
360         count = call_pv(inst->func_xlat, G_SCALAR | G_EVAL);
361
362         SPAGAIN;
363         if (SvTRUE(ERRSV)) {
364                 radlog(L_ERR, "rlm_perl: perl_xlat exit %s\n",
365                        SvPV(ERRSV,n_a));
366                 POPs ;
367         } else if (count > 0) {
368                 tmp = POPp;
369                 strlcpy(out, tmp, freespace);
370                 ret = strlen(out);
371
372                 radlog(L_DBG,"rlm_perl: Len is %d , out is %s freespace is %d",
373                        ret, out,freespace);
374         }
375
376         PUTBACK ;
377         FREETMPS ;
378         LEAVE ;
379
380         }
381         return ret;
382 }
383 /*
384  *      Do any per-module initialization that is separate to each
385  *      configured instance of the module.  e.g. set up connections
386  *      to external databases, read configuration files, set up
387  *      dictionary entries, etc.
388  *
389  *      If configuration information is given in the config section
390  *      that must be referenced in later calls, store a handle to it
391  *      in *instance otherwise put a null pointer there.
392  *
393  *      Boyan:
394  *      Setup a hashes wich we will use later
395  *      parse a module and give him a chance to live
396  *
397  */
398 static int perl_instantiate(CONF_SECTION *conf, void **instance)
399 {
400         PERL_INST       *inst = (PERL_INST *) instance;
401         HV              *rad_reply_hv;
402         HV              *rad_check_hv;
403         HV              *rad_config_hv;
404         HV              *rad_request_hv;
405         HV              *rad_request_proxy_hv;
406         HV              *rad_request_proxy_reply_hv;
407         AV              *end_AV;
408
409         char **embed;
410         char **envp = NULL;
411         const char *xlat_name;
412         int exitstatus = 0, argc=0;
413
414         embed = rad_malloc(4*(sizeof(char *)));
415         memset(embed, 0, sizeof(4*(sizeof(char *))));
416         /*
417          *      Set up a storage area for instance data
418          */
419         inst = rad_malloc(sizeof(PERL_INST));
420         memset(inst, 0, sizeof(PERL_INST));
421
422         /*
423          *      If the configuration parameters can't be parsed, then
424          *      fail.
425          */
426         if (cf_section_parse(conf, inst, module_config) < 0) {
427                 free(inst);
428                 return -1;
429         }
430         
431         /*
432          *      Create pthread key. This key will be stored in instance
433          */
434
435 #ifdef USE_ITHREADS
436         inst->thread_key = rad_malloc(sizeof(*inst->thread_key));
437         memset(inst->thread_key,0,sizeof(*inst->thread_key));
438         
439         rlm_perl_make_key(inst->thread_key);
440 #endif
441         embed[0] = NULL;
442         if (inst->perl_flags) {
443                 embed[1] = inst->perl_flags;
444                 embed[2] = inst->module;
445                 embed[3] = "0";
446                 argc = 4;
447         } else {
448                 embed[1] = inst->module;
449                 embed[2] = "0";
450                 argc = 3;
451         }
452
453         PERL_SYS_INIT3(&argc, &embed, &envp);
454 #ifdef USE_ITHREADS
455         if ((inst->perl = perl_alloc()) == NULL) {
456                 radlog(L_DBG, "rlm_perl: No memory for allocating new perl !");
457                 return (-1);
458         }
459
460         perl_construct(inst->perl);
461         PL_perl_destruct_level = 2;
462
463         {
464         dTHXa(inst->perl);
465         }
466         PERL_SET_CONTEXT(inst->perl);
467 #else
468         if ((inst->perl = perl_alloc()) == NULL) {
469                 radlog(L_ERR, "rlm_perl: No memory for allocating new perl !");
470                 return -1;
471         }
472
473         perl_construct(inst->perl);
474 #endif
475
476 #if PERL_REVISION >= 5 && PERL_VERSION >=8
477         PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
478 #endif
479
480         exitstatus = perl_parse(inst->perl, xs_init, argc, embed, NULL);
481
482         end_AV = PL_endav;
483         PL_endav = Nullav;
484
485         if(!exitstatus) {
486                 exitstatus = perl_run(inst->perl);
487         } else {
488                 radlog(L_ERR,"rlm_perl: perl_parse failed: %s not found or has syntax errors. \n", inst->module);
489                 return (-1);
490         }
491
492         PL_endav = end_AV;
493
494         newXS("radiusd::radlog",XS_radiusd_radlog, "rlm_perl.c");
495
496         rad_reply_hv = newHV();
497         rad_check_hv = newHV();
498         rad_config_hv = newHV();
499         rad_request_hv = newHV();
500         rad_request_proxy_hv = newHV();
501         rad_request_proxy_reply_hv = newHV();
502
503         rad_reply_hv = get_hv("RAD_REPLY",1);
504         rad_check_hv = get_hv("RAD_CHECK",1);
505         rad_config_hv = get_hv("RAD_CONFIG",1);
506         rad_request_hv = get_hv("RAD_REQUEST",1);
507         rad_request_proxy_hv = get_hv("RAD_REQUEST_PROXY",1);
508         rad_request_proxy_reply_hv = get_hv("RAD_REQUEST_PROXY_REPLY",1);
509
510         xlat_name = cf_section_name2(conf);
511         if (xlat_name == NULL)
512                 xlat_name = cf_section_name1(conf);
513         if (xlat_name){
514                 inst->xlat_name = strdup(xlat_name);
515                 xlat_register(xlat_name, perl_xlat, inst);
516         }
517
518         *instance = inst;
519
520         return 0;
521 }
522
523 /*
524  *      get the vps and put them in perl hash
525  *      If one VP have multiple values it is added as array_ref
526  *      Example for this is Cisco-AVPair that holds multiple values.
527  *      Which will be available as array_ref in $RAD_REQUEST{'Cisco-AVPair'}
528  */
529 static void perl_store_vps(VALUE_PAIR *vp, HV *rad_hv)
530 {
531         VALUE_PAIR      *nvp, *vpa, *vpn;
532         AV              *av;
533         char            namebuf[256], *name;
534         char            buffer[1024];
535         int             attr, vendor, len;
536
537         hv_undef(rad_hv);
538         nvp = paircopy(vp);
539
540         while (nvp != NULL) {
541                 name = nvp->name;
542                 attr = nvp->attribute;
543                 vendor = nvp->vendor;
544                 vpa = paircopy2(nvp, attr, vendor);
545
546                 if (vpa->next) {
547                         av = newAV();
548                         vpn = vpa;
549                         while (vpn) {
550                                 len = vp_prints_value(buffer, sizeof(buffer),
551                                                 vpn, FALSE);
552                                 av_push(av, newSVpv(buffer, len));
553                                 vpn = vpn->next;
554                         }
555                         hv_store(rad_hv, nvp->name, strlen(nvp->name),
556                                         newRV_noinc((SV *) av), 0);
557                 } else {
558                         if ((vpa->flags.has_tag) &&
559                             (vpa->flags.tag != 0)) {
560                                 snprintf(namebuf, sizeof(namebuf), "%s:%d",
561                                          nvp->name, nvp->flags.tag);
562                                 name = namebuf;
563                         }
564
565                         len = vp_prints_value(buffer, sizeof(buffer),
566                                               vpa, FALSE);
567                         hv_store(rad_hv, name, strlen(name),
568                                  newSVpv(buffer, len), 0);
569                 }
570
571                 pairfree(&vpa);
572                 vpa = nvp; while ((vpa != NULL) && (vpa->attribute == attr) && (vpa->vendor == vendor))
573                         vpa = vpa->next;
574                 pairdelete(&nvp, attr, vendor);
575                 nvp = vpa;
576         }
577 }
578
579 /*
580  *
581  *     Verify that a Perl SV is a string and save it in FreeRadius
582  *     Value Pair Format
583  *
584  */
585 static int pairadd_sv(VALUE_PAIR **vp, char *key, SV *sv, int operator) {
586        char            *val;
587        VALUE_PAIR      *vpp;
588
589        if (SvOK(sv)) {
590                val = SvPV_nolen(sv);
591                vpp = pairmake(key, val, operator);
592                if (vpp != NULL) {
593                        pairadd(vp, vpp);
594                        radlog(L_DBG,
595                          "rlm_perl: Added pair %s = %s", key, val);
596                        return 1;
597                } else {
598                        radlog(L_DBG,
599                          "rlm_perl: ERROR: Failed to create pair %s = %s",
600                          key, val);
601                }
602         }
603        return 0;
604 }
605
606 /*
607   *     Boyan :
608   *     Gets the content from hashes
609   */
610 static int get_hv_content(HV *my_hv, VALUE_PAIR **vp)
611 {
612        SV               *res_sv, **av_sv;
613        AV               *av;
614        char             *key;
615        I32              key_len, len, i, j;
616        int              ret=0;
617
618        *vp = NULL;
619        for (i = hv_iterinit(my_hv); i > 0; i--) {
620                res_sv = hv_iternextsv(my_hv,&key,&key_len);
621                if (SvROK(res_sv) && (SvTYPE(SvRV(res_sv)) == SVt_PVAV)) {
622                        av = (AV*)SvRV(res_sv);
623                        len = av_len(av);
624                        for (j = 0; j <= len; j++) {
625                                av_sv = av_fetch(av, j, 0);
626                                ret = pairadd_sv(vp, key, *av_sv, T_OP_ADD) + ret;
627                        }
628                } else ret = pairadd_sv(vp, key, res_sv, T_OP_EQ) + ret;
629         }
630
631         return ret;
632 }
633
634 /*
635  *      Call the function_name inside the module
636  *      Store all vps in hashes %RAD_CHECK %RAD_REPLY %RAD_REQUEST
637  *
638  */
639 static int rlmperl_call(void *instance, REQUEST *request, char *function_name)
640 {
641
642         PERL_INST       *inst = instance;
643         VALUE_PAIR      *vp;
644         int             exitstatus=0, count;
645         STRLEN          n_a;
646
647         HV              *rad_reply_hv;
648         HV              *rad_check_hv;
649         HV              *rad_config_hv;
650         HV              *rad_request_hv;
651         HV              *rad_request_proxy_hv;
652         HV              *rad_request_proxy_reply_hv;
653
654 #ifdef USE_ITHREADS
655         PerlInterpreter *interp;
656
657         interp = rlm_perl_clone(inst->perl,inst->thread_key);
658         {
659           dTHXa(interp);
660           PERL_SET_CONTEXT(interp);
661         }
662 #else
663         PERL_SET_CONTEXT(inst->perl);
664 #endif
665         {
666         dSP;
667
668         ENTER;
669         SAVETMPS;
670
671
672         /*
673          *      Radius has told us to call this function, but none
674          *      is defined.
675          */
676         if (!function_name) {
677                 return RLM_MODULE_FAIL;
678         }
679
680         rad_reply_hv = get_hv("RAD_REPLY",1);
681         rad_check_hv = get_hv("RAD_CHECK",1);
682         rad_config_hv = get_hv("RAD_CONFIG",1);
683         rad_request_hv = get_hv("RAD_REQUEST",1);
684         rad_request_proxy_hv = get_hv("RAD_REQUEST_PROXY",1);
685         rad_request_proxy_reply_hv = get_hv("RAD_REQUEST_PROXY_REPLY",1);
686
687
688         perl_store_vps(request->reply->vps, rad_reply_hv);
689         perl_store_vps(request->config_items, rad_check_hv);
690         perl_store_vps(request->packet->vps, rad_request_hv);
691         perl_store_vps(request->config_items, rad_config_hv);
692
693         if (request->proxy != NULL) {
694                 perl_store_vps(request->proxy->vps, rad_request_proxy_hv);
695         } else {
696                 hv_undef(rad_request_proxy_hv);
697         }
698
699         if (request->proxy_reply !=NULL) {
700                 perl_store_vps(request->proxy_reply->vps, rad_request_proxy_reply_hv);
701         } else {
702                 hv_undef(rad_request_proxy_reply_hv);
703         }
704
705         PUSHMARK(SP);
706         /*
707         * This way %RAD_xx can be pushed onto stack as sub parameters.
708         * XPUSHs( newRV_noinc((SV *)rad_request_hv) );
709         * XPUSHs( newRV_noinc((SV *)rad_reply_hv) );
710         * XPUSHs( newRV_noinc((SV *)rad_check_hv) );
711         * PUTBACK;
712         */
713
714         count = call_pv(function_name, G_SCALAR | G_EVAL | G_NOARGS);
715
716         SPAGAIN;
717
718         if (SvTRUE(ERRSV)) {
719                 radlog(L_ERR, "rlm_perl: perl_embed:: module = %s , func = %s exit status= %s\n",
720                        inst->module,
721                        function_name, SvPV(ERRSV,n_a));
722                 POPs;
723         }
724
725         if (count == 1) {
726                 exitstatus = POPi;
727                 if (exitstatus >= 100 || exitstatus < 0) {
728                         exitstatus = RLM_MODULE_FAIL;
729                 }
730         }
731
732
733         PUTBACK;
734         FREETMPS;
735         LEAVE;
736
737         vp = NULL;
738         if ((get_hv_content(rad_request_hv, &vp)) > 0 ) {
739                 pairfree(&request->packet->vps);
740                 request->packet->vps = vp;
741                 vp = NULL;
742
743                 /*
744                  *      Update cached copies
745                  */
746                 request->username = pairfind(request->packet->vps,
747                                              PW_USER_NAME, 0);
748                 request->password = pairfind(request->packet->vps,
749                                              PW_USER_PASSWORD, 0);
750                 if (!request->password)
751                         request->password = pairfind(request->packet->vps,
752                                                      PW_CHAP_PASSWORD, 0);
753         }
754
755         if ((get_hv_content(rad_reply_hv, &vp)) > 0 ) {
756                 pairfree(&request->reply->vps);
757                 request->reply->vps = vp;
758                 vp = NULL;
759         }
760
761         if ((get_hv_content(rad_check_hv, &vp)) > 0 ) {
762                 pairfree(&request->config_items);
763                 request->config_items = vp;
764                 vp = NULL;
765         }
766
767         if (request->proxy &&
768             (get_hv_content(rad_request_proxy_hv, &vp) > 0)) {
769                 pairfree(&request->proxy->vps);
770                 request->proxy->vps = vp;
771                 vp = NULL;
772         }
773
774         if (request->proxy_reply &&
775             (get_hv_content(rad_request_proxy_reply_hv, &vp) > 0)) {
776                 pairfree(&request->proxy_reply->vps);
777                 request->proxy_reply->vps = vp;
778                 vp = NULL;
779         }
780
781         }
782         return exitstatus;
783 }
784
785 /*
786  *      Find the named user in this modules database.  Create the set
787  *      of attribute-value pairs to check and reply with for this user
788  *      from the database. The authentication code only needs to check
789  *      the password, the rest is done here.
790  */
791 static int perl_authorize(void *instance, REQUEST *request)
792 {
793         return rlmperl_call(instance, request,
794                             ((PERL_INST *)instance)->func_authorize);
795 }
796
797 /*
798  *      Authenticate the user with the given password.
799  */
800 static int perl_authenticate(void *instance, REQUEST *request)
801 {
802         return rlmperl_call(instance, request,
803                             ((PERL_INST *)instance)->func_authenticate);
804 }
805 /*
806  *      Massage the request before recording it or proxying it
807  */
808 static int perl_preacct(void *instance, REQUEST *request)
809 {
810         return rlmperl_call(instance, request,
811                             ((PERL_INST *)instance)->func_preacct);
812 }
813 /*
814  *      Write accounting information to this modules database.
815  */
816 static int perl_accounting(void *instance, REQUEST *request)
817 {
818         VALUE_PAIR      *pair;
819         int             acctstatustype=0;
820
821         if ((pair = pairfind(request->packet->vps, PW_ACCT_STATUS_TYPE, 0)) != NULL) {
822                 acctstatustype = pair->vp_integer;
823         } else {
824                 radlog(L_ERR, "Invalid Accounting Packet");
825                 return RLM_MODULE_INVALID;
826         }
827
828         switch (acctstatustype) {
829
830                 case PW_STATUS_START:
831
832                         if (((PERL_INST *)instance)->func_start_accounting) {
833                                 return rlmperl_call(instance, request,
834                                             ((PERL_INST *)instance)->func_start_accounting);
835                         } else {
836                                 return rlmperl_call(instance, request,
837                                             ((PERL_INST *)instance)->func_accounting);
838                         }
839                         break;
840
841                 case PW_STATUS_STOP:
842
843                         if (((PERL_INST *)instance)->func_stop_accounting) {
844                                 return rlmperl_call(instance, request,
845                                             ((PERL_INST *)instance)->func_stop_accounting);
846                         } else {
847                                 return rlmperl_call(instance, request,
848                                             ((PERL_INST *)instance)->func_accounting);
849                         }
850                         break;
851                 default:
852                         return rlmperl_call(instance, request,
853                                             ((PERL_INST *)instance)->func_accounting);
854
855         }
856 }
857 /*
858  *      Check for simultaneouse-use
859  */
860 static int perl_checksimul(void *instance, REQUEST *request)
861 {
862         return rlmperl_call(instance, request,
863                         ((PERL_INST *)instance)->func_checksimul);
864 }
865 /*
866  *      Pre-Proxy request
867  */
868 static int perl_pre_proxy(void *instance, REQUEST *request)
869 {
870         return rlmperl_call(instance, request,
871                         ((PERL_INST *)instance)->func_pre_proxy);
872 }
873 /*
874  *      Post-Proxy request
875  */
876 static int perl_post_proxy(void *instance, REQUEST *request)
877 {
878         return rlmperl_call(instance, request,
879                         ((PERL_INST *)instance)->func_post_proxy);
880 }
881 /*
882  *      Pre-Auth request
883  */
884 static int perl_post_auth(void *instance, REQUEST *request)
885 {
886         return rlmperl_call(instance, request,
887                         ((PERL_INST *)instance)->func_post_auth);
888 }
889 #ifdef WITH_COA
890 /*
891  *      Recv CoA request
892  */
893 static int perl_recv_coa(void *instance, REQUEST *request)
894 {
895         return rlmperl_call(instance, request,
896                         ((PERL_INST *)instance)->func_recv_coa);
897 }
898 /*
899  *      Send CoA request
900  */
901 static int perl_send_coa(void *instance, REQUEST *request)
902 {
903         return rlmperl_call(instance, request,
904                         ((PERL_INST *)instance)->func_send_coa);
905 }
906 #endif
907 /*
908  * Detach a instance give a chance to a module to make some internal setup ...
909  */
910 static int perl_detach(void *instance)
911 {
912         PERL_INST       *inst = (PERL_INST *) instance;
913         int             exitstatus = 0, count = 0;
914
915 #if 0
916         /*
917          *      FIXME: Call this in the destruct function?
918          */
919                 {
920                 dTHXa(handle->clone);
921                 PERL_SET_CONTEXT(handle->clone);
922                 {
923                 dSP; ENTER; SAVETMPS; PUSHMARK(SP);
924                 count = call_pv(inst->func_detach, G_SCALAR | G_EVAL );
925                 SPAGAIN;
926
927                 if (count == 1) {
928                         exitstatus = POPi;
929                         /*
930                          * FIXME: bug in perl
931                          *
932                          */
933                         if (exitstatus >= 100 || exitstatus < 0) {
934                                 exitstatus = RLM_MODULE_FAIL;
935                         }
936                 }
937                 PUTBACK;
938                 FREETMPS;
939                 LEAVE;
940                 }
941                 }
942 #endif
943
944                 if (inst->func_detach) {
945         dTHXa(inst->perl);
946         PERL_SET_CONTEXT(inst->perl);
947         {
948         dSP; ENTER; SAVETMPS;
949         PUSHMARK(SP);
950
951         count = call_pv(inst->func_detach, G_SCALAR | G_EVAL );
952         SPAGAIN;
953
954         if (count == 1) {
955                 exitstatus = POPi;
956                 if (exitstatus >= 100 || exitstatus < 0) {
957                         exitstatus = RLM_MODULE_FAIL;
958                 }
959         }
960         PUTBACK;
961         FREETMPS;
962         LEAVE;
963         }
964         }
965
966         xlat_unregister(inst->xlat_name, perl_xlat);
967         free(inst->xlat_name);
968
969 #ifdef USE_ITHREADS
970         rlm_perl_destruct(inst->perl);
971 #else
972         perl_destruct(inst->perl);
973         perl_free(inst->perl);
974 #endif
975
976         PERL_SYS_TERM();
977         free(inst);
978         return exitstatus;
979 }
980
981
982 /*
983  *      The module name should be the only globally exported symbol.
984  *      That is, everything else should be 'static'.
985  *
986  *      If the module needs to temporarily modify it's instantiation
987  *      data, the type should be changed to RLM_TYPE_THREAD_UNSAFE.
988  *      The server will then take care of ensuring that the module
989  *      is single-threaded.
990  */
991 module_t rlm_perl = {
992         RLM_MODULE_INIT,
993         "perl",                         /* Name */
994 #ifdef USE_ITHREADS
995         RLM_TYPE_THREAD_SAFE,           /* type */
996 #else
997         RLM_TYPE_THREAD_UNSAFE,
998 #endif
999         perl_instantiate,               /* instantiation */
1000         perl_detach,                    /* detach */
1001         {
1002                 perl_authenticate,      /* authenticate */
1003                 perl_authorize,         /* authorize */
1004                 perl_preacct,           /* preacct */
1005                 perl_accounting,        /* accounting */
1006                 perl_checksimul,        /* check simul */
1007                 perl_pre_proxy,         /* pre-proxy */
1008                 perl_post_proxy,        /* post-proxy */
1009                 perl_post_auth          /* post-auth */
1010 #ifdef WITH_COA
1011                 , perl_recv_coa,
1012                 perl_send_coa
1013 #endif
1014         },
1015 };