src/http/modules/perl/ngx_http_perl_module.c - nginx source code

Global variables defined

Data types defined

Functions defined

Macros defined

Source code


  1. /*
  2. * Copyright (C) Igor Sysoev
  3. * Copyright (C) Nginx, Inc.
  4. */


  5. #include <ngx_config.h>
  6. #include <ngx_core.h>
  7. #include <ngx_http.h>
  8. #include <ngx_http_perl_module.h>


  9. typedef struct {
  10.     PerlInterpreter   *perl;
  11.     HV                *nginx;
  12.     ngx_array_t       *modules;
  13.     ngx_array_t       *requires;
  14. } ngx_http_perl_main_conf_t;


  15. typedef struct {
  16.     SV                *sub;
  17.     ngx_str_t          handler;
  18. } ngx_http_perl_loc_conf_t;


  19. typedef struct {
  20.     SV                *sub;
  21.     ngx_str_t          handler;
  22. } ngx_http_perl_variable_t;


  23. #if (NGX_HTTP_SSI)
  24. static ngx_int_t ngx_http_perl_ssi(ngx_http_request_t *r,
  25.     ngx_http_ssi_ctx_t *ssi_ctx, ngx_str_t **params);
  26. #endif

  27. static char *ngx_http_perl_init_interpreter(ngx_conf_t *cf,
  28.     ngx_http_perl_main_conf_t *pmcf);
  29. static PerlInterpreter *ngx_http_perl_create_interpreter(ngx_conf_t *cf,
  30.     ngx_http_perl_main_conf_t *pmcf);
  31. static ngx_int_t ngx_http_perl_run_requires(pTHX_ ngx_array_t *requires,
  32.     ngx_log_t *log);
  33. static ngx_int_t ngx_http_perl_call_handler(pTHX_ ngx_http_request_t *r,
  34.     ngx_http_perl_ctx_t *ctx, HV *nginx, SV *sub, SV **args,
  35.     ngx_str_t *handler, ngx_str_t *rv);
  36. static void ngx_http_perl_eval_anon_sub(pTHX_ ngx_str_t *handler, SV **sv);

  37. static ngx_int_t ngx_http_perl_preconfiguration(ngx_conf_t *cf);
  38. static void *ngx_http_perl_create_main_conf(ngx_conf_t *cf);
  39. static char *ngx_http_perl_init_main_conf(ngx_conf_t *cf, void *conf);
  40. static void *ngx_http_perl_create_loc_conf(ngx_conf_t *cf);
  41. static char *ngx_http_perl_merge_loc_conf(ngx_conf_t *cf, void *parent,
  42.     void *child);
  43. static char *ngx_http_perl(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);
  44. static char *ngx_http_perl_set(ngx_conf_t *cf, ngx_command_t *cmd, void *conf);

  45. #if (NGX_HAVE_PERL_MULTIPLICITY)
  46. static void ngx_http_perl_cleanup_perl(void *data);
  47. #endif

  48. static ngx_int_t ngx_http_perl_init_worker(ngx_cycle_t *cycle);
  49. static void ngx_http_perl_exit(ngx_cycle_t *cycle);


  50. static ngx_command_t  ngx_http_perl_commands[] = {

  51.     { ngx_string("perl_modules"),
  52.       NGX_HTTP_MAIN_CONF|NGX_CONF_TAKE1,
  53.       ngx_conf_set_str_array_slot,
  54.       NGX_HTTP_MAIN_CONF_OFFSET,
  55.       offsetof(ngx_http_perl_main_conf_t, modules),
  56.       NULL },

  57.     { ngx_string("perl_require"),
  58.       NGX_HTTP_MAIN_CONF|NGX_CONF_TAKE1,
  59.       ngx_conf_set_str_array_slot,
  60.       NGX_HTTP_MAIN_CONF_OFFSET,
  61.       offsetof(ngx_http_perl_main_conf_t, requires),
  62.       NULL },

  63.     { ngx_string("perl"),
  64.       NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF|NGX_CONF_TAKE1,
  65.       ngx_http_perl,
  66.       NGX_HTTP_LOC_CONF_OFFSET,
  67.       0,
  68.       NULL },

  69.     { ngx_string("perl_set"),
  70.       NGX_HTTP_MAIN_CONF|NGX_CONF_TAKE2,
  71.       ngx_http_perl_set,
  72.       NGX_HTTP_LOC_CONF_OFFSET,
  73.       0,
  74.       NULL },

  75.       ngx_null_command
  76. };


  77. static ngx_http_module_t  ngx_http_perl_module_ctx = {
  78.     ngx_http_perl_preconfiguration,        /* preconfiguration */
  79.     NULL,                                  /* postconfiguration */

  80.     ngx_http_perl_create_main_conf,        /* create main configuration */
  81.     ngx_http_perl_init_main_conf,          /* init main configuration */

  82.     NULL,                                  /* create server configuration */
  83.     NULL,                                  /* merge server configuration */

  84.     ngx_http_perl_create_loc_conf,         /* create location configuration */
  85.     ngx_http_perl_merge_loc_conf           /* merge location configuration */
  86. };


  87. ngx_module_t  ngx_http_perl_module = {
  88.     NGX_MODULE_V1,
  89.     &ngx_http_perl_module_ctx,             /* module context */
  90.     ngx_http_perl_commands,                /* module directives */
  91.     NGX_HTTP_MODULE,                       /* module type */
  92.     NULL,                                  /* init master */
  93.     NULL,                                  /* init module */
  94.     ngx_http_perl_init_worker,             /* init process */
  95.     NULL,                                  /* init thread */
  96.     NULL,                                  /* exit thread */
  97.     NULL,                                  /* exit process */
  98.     ngx_http_perl_exit,                    /* exit master */
  99.     NGX_MODULE_V1_PADDING
  100. };


  101. #if (NGX_HTTP_SSI)

  102. #define NGX_HTTP_PERL_SSI_SUB  0
  103. #define NGX_HTTP_PERL_SSI_ARG  1


  104. static ngx_http_ssi_param_t  ngx_http_perl_ssi_params[] = {
  105.     { ngx_string("sub"), NGX_HTTP_PERL_SSI_SUB, 1, 0 },
  106.     { ngx_string("arg"), NGX_HTTP_PERL_SSI_ARG, 0, 1 },
  107.     { ngx_null_string, 0, 0, 0 }
  108. };

  109. static ngx_http_ssi_command_t  ngx_http_perl_ssi_command = {
  110.     ngx_string("perl"), ngx_http_perl_ssi, ngx_http_perl_ssi_params, 0, 0, 1
  111. };

  112. #endif


  113. static ngx_str_t         ngx_null_name = ngx_null_string;
  114. static HV               *nginx_stash;

  115. #if (NGX_HAVE_PERL_MULTIPLICITY)
  116. static ngx_uint_t        ngx_perl_term;
  117. #else
  118. static PerlInterpreter  *perl;
  119. #endif


  120. static void
  121. ngx_http_perl_xs_init(pTHX)
  122. {
  123.     newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, __FILE__);

  124.     nginx_stash = gv_stashpv("nginx", TRUE);
  125. }


  126. static ngx_int_t
  127. ngx_http_perl_handler(ngx_http_request_t *r)
  128. {
  129.     r->main->count++;

  130.     ngx_http_perl_handle_request(r);

  131.     return NGX_DONE;
  132. }


  133. void
  134. ngx_http_perl_handle_request(ngx_http_request_t *r)
  135. {
  136.     SV                         *sub;
  137.     ngx_int_t                   rc;
  138.     ngx_str_t                   uri, args, *handler;
  139.     ngx_uint_t                  flags;
  140.     ngx_http_perl_ctx_t        *ctx;
  141.     ngx_http_perl_loc_conf_t   *plcf;
  142.     ngx_http_perl_main_conf_t  *pmcf;

  143.     ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "perl handler");

  144.     ctx = ngx_http_get_module_ctx(r, ngx_http_perl_module);

  145.     if (ctx == NULL) {
  146.         ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_perl_ctx_t));
  147.         if (ctx == NULL) {
  148.             ngx_http_finalize_request(r, NGX_ERROR);
  149.             return;
  150.         }

  151.         ngx_http_set_ctx(r, ctx, ngx_http_perl_module);

  152.         ctx->request = r;
  153.     }

  154.     pmcf = ngx_http_get_module_main_conf(r, ngx_http_perl_module);

  155.     {

  156.     dTHXa(pmcf->perl);
  157.     PERL_SET_CONTEXT(pmcf->perl);
  158.     PERL_SET_INTERP(pmcf->perl);

  159.     if (ctx->next == NULL) {
  160.         plcf = ngx_http_get_module_loc_conf(r, ngx_http_perl_module);
  161.         sub = plcf->sub;
  162.         handler = &plcf->handler;

  163.     } else {
  164.         sub = ctx->next;
  165.         handler = &ngx_null_name;
  166.         ctx->next = NULL;
  167.     }

  168.     rc = ngx_http_perl_call_handler(aTHX_ r, ctx, pmcf->nginx, sub, NULL,
  169.                                     handler, NULL);

  170.     }

  171.     ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
  172.                    "perl handler done: %i", rc);

  173.     if (rc > 600) {
  174.         rc = NGX_OK;
  175.     }

  176.     if (ctx->redirect_uri.len) {
  177.         uri = ctx->redirect_uri;

  178.     } else {
  179.         uri.len = 0;
  180.     }

  181.     ctx->filename.data = NULL;
  182.     ctx->redirect_uri.len = 0;

  183.     if (rc == NGX_ERROR) {
  184.         ngx_http_finalize_request(r, rc);
  185.         return;
  186.     }

  187.     if (ctx->done || ctx->next) {
  188.         ngx_http_finalize_request(r, NGX_DONE);
  189.         return;
  190.     }

  191.     if (uri.len) {
  192.         if (uri.data[0] == '@') {
  193.             ngx_http_named_location(r, &uri);

  194.         } else {
  195.             ngx_str_null(&args);
  196.             flags = NGX_HTTP_LOG_UNSAFE;

  197.             if (ngx_http_parse_unsafe_uri(r, &uri, &args, &flags) != NGX_OK) {
  198.                 ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
  199.                 return;
  200.             }

  201.             ngx_http_internal_redirect(r, &uri, &args);
  202.         }

  203.         ngx_http_finalize_request(r, NGX_DONE);
  204.         return;
  205.     }

  206.     if (rc == NGX_OK || rc == NGX_HTTP_OK) {
  207.         ngx_http_send_special(r, NGX_HTTP_LAST);
  208.         ctx->done = 1;
  209.     }

  210.     ngx_http_finalize_request(r, rc);
  211. }


  212. void
  213. ngx_http_perl_sleep_handler(ngx_http_request_t *r)
  214. {
  215.     ngx_event_t  *wev;

  216.     ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
  217.                    "perl sleep handler");

  218.     wev = r->connection->write;

  219.     if (wev->delayed) {

  220.         if (ngx_handle_write_event(wev, 0) != NGX_OK) {
  221.             ngx_http_finalize_request(r, NGX_HTTP_INTERNAL_SERVER_ERROR);
  222.         }

  223.         return;
  224.     }

  225.     ngx_http_perl_handle_request(r);
  226. }


  227. static ngx_int_t
  228. ngx_http_perl_variable(ngx_http_request_t *r, ngx_http_variable_value_t *v,
  229.     uintptr_t data)
  230. {
  231.     ngx_http_perl_variable_t *pv = (ngx_http_perl_variable_t *) data;

  232.     ngx_int_t                   rc;
  233.     ngx_str_t                   value;
  234.     ngx_uint_t                  saved;
  235.     ngx_http_perl_ctx_t        *ctx;
  236.     ngx_http_perl_main_conf_t  *pmcf;

  237.     ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
  238.                    "perl variable handler");

  239.     ctx = ngx_http_get_module_ctx(r, ngx_http_perl_module);

  240.     if (ctx == NULL) {
  241.         ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_perl_ctx_t));
  242.         if (ctx == NULL) {
  243.             return NGX_ERROR;
  244.         }

  245.         ngx_http_set_ctx(r, ctx, ngx_http_perl_module);

  246.         ctx->request = r;
  247.     }

  248.     saved = ctx->variable;
  249.     ctx->variable = 1;

  250.     pmcf = ngx_http_get_module_main_conf(r, ngx_http_perl_module);

  251.     value.data = NULL;

  252.     {

  253.     dTHXa(pmcf->perl);
  254.     PERL_SET_CONTEXT(pmcf->perl);
  255.     PERL_SET_INTERP(pmcf->perl);

  256.     rc = ngx_http_perl_call_handler(aTHX_ r, ctx, pmcf->nginx, pv->sub, NULL,
  257.                                     &pv->handler, &value);

  258.     }

  259.     if (value.data) {
  260.         v->len = value.len;
  261.         v->valid = 1;
  262.         v->no_cacheable = 0;
  263.         v->not_found = 0;
  264.         v->data = value.data;

  265.     } else {
  266.         v->not_found = 1;
  267.     }

  268.     ctx->variable = saved;
  269.     ctx->filename.data = NULL;
  270.     ctx->redirect_uri.len = 0;

  271.     ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
  272.                    "perl variable done");

  273.     return rc;
  274. }


  275. #if (NGX_HTTP_SSI)

  276. static ngx_int_t
  277. ngx_http_perl_ssi(ngx_http_request_t *r, ngx_http_ssi_ctx_t *ssi_ctx,
  278.     ngx_str_t **params)
  279. {
  280.     SV                         *sv, **asv;
  281.     ngx_int_t                   rc;
  282.     ngx_str_t                  *handler, **args;
  283.     ngx_uint_t                  i;
  284.     ngx_http_perl_ctx_t        *ctx;
  285.     ngx_http_perl_main_conf_t  *pmcf;

  286.     ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
  287.                    "perl ssi handler");

  288.     ctx = ngx_http_get_module_ctx(r, ngx_http_perl_module);

  289.     if (ctx == NULL) {
  290.         ctx = ngx_pcalloc(r->pool, sizeof(ngx_http_perl_ctx_t));
  291.         if (ctx == NULL) {
  292.             return NGX_ERROR;
  293.         }

  294.         ngx_http_set_ctx(r, ctx, ngx_http_perl_module);

  295.         ctx->request = r;
  296.     }

  297.     pmcf = ngx_http_get_module_main_conf(r, ngx_http_perl_module);

  298.     ctx->ssi = ssi_ctx;
  299.     ctx->header_sent = 1;

  300.     handler = params[NGX_HTTP_PERL_SSI_SUB];
  301.     handler->data[handler->len] = '\0';

  302.     {

  303.     dTHXa(pmcf->perl);
  304.     PERL_SET_CONTEXT(pmcf->perl);
  305.     PERL_SET_INTERP(pmcf->perl);

  306. #if 0

  307.     /* the code is disabled to force the precompiled perl code using only */

  308.     ngx_http_perl_eval_anon_sub(aTHX_ handler, &sv);

  309.     if (sv == &PL_sv_undef) {
  310.         ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
  311.                       "eval_pv(\"%V\") failed", handler);
  312.         return NGX_ERROR;
  313.     }

  314.     if (sv == NULL) {
  315.         sv = newSVpvn((char *) handler->data, handler->len);
  316.     }

  317. #endif

  318.     sv = newSVpvn((char *) handler->data, handler->len);

  319.     args = &params[NGX_HTTP_PERL_SSI_ARG];

  320.     if (args[0]) {

  321.         for (i = 0; args[i]; i++) { /* void */ }

  322.         asv = ngx_pcalloc(r->pool, (i + 1) * sizeof(SV *));

  323.         if (asv == NULL) {
  324.             SvREFCNT_dec(sv);
  325.             return NGX_ERROR;
  326.         }

  327.         asv[0] = (SV *) (uintptr_t) i;

  328.         for (i = 0; args[i]; i++) {
  329.             asv[i + 1] = newSVpvn((char *) args[i]->data, args[i]->len);
  330.         }

  331.     } else {
  332.         asv = NULL;
  333.     }

  334.     rc = ngx_http_perl_call_handler(aTHX_ r, ctx, pmcf->nginx, sv, asv,
  335.                                     handler, NULL);

  336.     SvREFCNT_dec(sv);

  337.     }

  338.     ctx->filename.data = NULL;
  339.     ctx->redirect_uri.len = 0;
  340.     ctx->ssi = NULL;

  341.     ngx_log_debug0(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, "perl ssi done");

  342.     return rc;
  343. }

  344. #endif


  345. static char *
  346. ngx_http_perl_init_interpreter(ngx_conf_t *cf, ngx_http_perl_main_conf_t *pmcf)
  347. {
  348.     ngx_str_t           *m;
  349.     ngx_uint_t           i;
  350. #if (NGX_HAVE_PERL_MULTIPLICITY)
  351.     ngx_pool_cleanup_t  *cln;

  352.     cln = ngx_pool_cleanup_add(cf->pool, 0);
  353.     if (cln == NULL) {
  354.         return NGX_CONF_ERROR;
  355.     }

  356. #endif

  357. #ifdef NGX_PERL_MODULES
  358.     if (pmcf->modules == NGX_CONF_UNSET_PTR) {

  359.         pmcf->modules = ngx_array_create(cf->pool, 1, sizeof(ngx_str_t));
  360.         if (pmcf->modules == NULL) {
  361.             return NGX_CONF_ERROR;
  362.         }

  363.         m = ngx_array_push(pmcf->modules);
  364.         if (m == NULL) {
  365.             return NGX_CONF_ERROR;
  366.         }

  367.         ngx_str_set(m, NGX_PERL_MODULES);
  368.     }
  369. #endif

  370.     if (pmcf->modules != NGX_CONF_UNSET_PTR) {
  371.         m = pmcf->modules->elts;
  372.         for (i = 0; i < pmcf->modules->nelts; i++) {
  373.             if (ngx_conf_full_name(cf->cycle, &m[i], 0) != NGX_OK) {
  374.                 return NGX_CONF_ERROR;
  375.             }
  376.         }
  377.     }

  378. #if !(NGX_HAVE_PERL_MULTIPLICITY)

  379.     if (perl) {

  380.         if (ngx_set_environment(cf->cycle, NULL) == NULL) {
  381.             return NGX_CONF_ERROR;
  382.         }

  383.         if (ngx_http_perl_run_requires(aTHX_ pmcf->requires, cf->log)
  384.             != NGX_OK)
  385.         {
  386.             return NGX_CONF_ERROR;
  387.         }

  388.         pmcf->perl = perl;
  389.         pmcf->nginx = nginx_stash;

  390.         return NGX_CONF_OK;
  391.     }

  392. #endif

  393.     if (nginx_stash == NULL) {
  394.         PERL_SYS_INIT(&ngx_argc, &ngx_argv);
  395.     }

  396.     pmcf->perl = ngx_http_perl_create_interpreter(cf, pmcf);

  397.     if (pmcf->perl == NULL) {
  398.         return NGX_CONF_ERROR;
  399.     }

  400.     pmcf->nginx = nginx_stash;

  401. #if (NGX_HAVE_PERL_MULTIPLICITY)

  402.     cln->handler = ngx_http_perl_cleanup_perl;
  403.     cln->data = pmcf->perl;

  404. #else

  405.     perl = pmcf->perl;

  406. #endif

  407.     return NGX_CONF_OK;
  408. }


  409. static PerlInterpreter *
  410. ngx_http_perl_create_interpreter(ngx_conf_t *cf,
  411.     ngx_http_perl_main_conf_t *pmcf)
  412. {
  413.     int                n;
  414.     STRLEN             len;
  415.     SV                *sv;
  416.     char              *ver, **embedding;
  417.     ngx_str_t         *m;
  418.     ngx_uint_t         i;
  419.     PerlInterpreter   *perl;

  420.     ngx_log_debug0(NGX_LOG_DEBUG_HTTP, cf->log, 0, "create perl interpreter");

  421.     if (ngx_set_environment(cf->cycle, NULL) == NULL) {
  422.         return NULL;
  423.     }

  424.     perl = perl_alloc();
  425.     if (perl == NULL) {
  426.         ngx_log_error(NGX_LOG_ALERT, cf->log, 0, "perl_alloc() failed");
  427.         return NULL;
  428.     }

  429.     {

  430.     dTHXa(perl);
  431.     PERL_SET_CONTEXT(perl);
  432.     PERL_SET_INTERP(perl);

  433.     perl_construct(perl);

  434. #ifdef PERL_EXIT_DESTRUCT_END
  435.     PL_exit_flags |= PERL_EXIT_DESTRUCT_END;
  436. #endif

  437.     n = (pmcf->modules != NGX_CONF_UNSET_PTR) ? pmcf->modules->nelts * 2 : 0;

  438.     embedding = ngx_palloc(cf->pool, (5 + n) * sizeof(char *));
  439.     if (embedding == NULL) {
  440.         goto fail;
  441.     }

  442.     embedding[0] = "";

  443.     if (n++) {
  444.         m = pmcf->modules->elts;
  445.         for (i = 0; i < pmcf->modules->nelts; i++) {
  446.             embedding[2 * i + 1] = "-I";
  447.             embedding[2 * i + 2] = (char *) m[i].data;
  448.         }
  449.     }

  450.     embedding[n++] = "-Mnginx";
  451.     embedding[n++] = "-e";
  452.     embedding[n++] = "0";
  453.     embedding[n] = NULL;

  454.     n = perl_parse(perl, ngx_http_perl_xs_init, n, embedding, NULL);

  455.     if (n != 0) {
  456.         ngx_log_error(NGX_LOG_ALERT, cf->log, 0, "perl_parse() failed: %d", n);
  457.         goto fail;
  458.     }

  459.     sv = get_sv("nginx::VERSION", FALSE);
  460.     ver = SvPV(sv, len);

  461.     if (ngx_strcmp(ver, NGINX_VERSION) != 0) {
  462.         ngx_log_error(NGX_LOG_ALERT, cf->log, 0,
  463.                       "version " NGINX_VERSION " of nginx.pm is required, "
  464.                       "but %s was found", ver);
  465.         goto fail;
  466.     }

  467.     if (ngx_http_perl_run_requires(aTHX_ pmcf->requires, cf->log) != NGX_OK) {
  468.         goto fail;
  469.     }

  470.     }

  471.     return perl;

  472. fail:

  473.     (void) perl_destruct(perl);

  474.     perl_free(perl);

  475.     return NULL;
  476. }


  477. static ngx_int_t
  478. ngx_http_perl_run_requires(pTHX_ ngx_array_t *requires, ngx_log_t *log)
  479. {
  480.     u_char      *err;
  481.     STRLEN       len;
  482.     ngx_str_t   *script;
  483.     ngx_uint_t   i;

  484.     if (requires == NGX_CONF_UNSET_PTR) {
  485.         return NGX_OK;
  486.     }

  487.     script = requires->elts;
  488.     for (i = 0; i < requires->nelts; i++) {

  489.         require_pv((char *) script[i].data);

  490.         if (SvTRUE(ERRSV)) {

  491.             err = (u_char *) SvPV(ERRSV, len);
  492.             while (--len && (err[len] == CR || err[len] == LF)) { /* void */ }

  493.             ngx_log_error(NGX_LOG_EMERG, log, 0,
  494.                           "require_pv(\"%s\") failed: \"%*s\"",
  495.                           script[i].data, len + 1, err);

  496.             return NGX_ERROR;
  497.         }
  498.     }

  499.     return NGX_OK;
  500. }


  501. static ngx_int_t
  502. ngx_http_perl_call_handler(pTHX_ ngx_http_request_t *r,
  503.     ngx_http_perl_ctx_t *ctx, HV *nginx, SV *sub, SV **args,
  504.     ngx_str_t *handler, ngx_str_t *rv)
  505. {
  506.     SV                *sv;
  507.     int                n, status;
  508.     char              *line;
  509.     u_char            *err;
  510.     STRLEN             len, n_a;
  511.     ngx_uint_t         i;
  512.     ngx_connection_t  *c;

  513.     dSP;

  514.     status = 0;

  515.     ctx->error = 0;
  516.     ctx->status = NGX_OK;

  517.     ENTER;
  518.     SAVETMPS;

  519.     PUSHMARK(sp);

  520.     sv = sv_2mortal(sv_bless(newRV_noinc(newSViv(PTR2IV(ctx))), nginx));
  521.     XPUSHs(sv);

  522.     if (args) {
  523.         EXTEND(sp, (intptr_t) args[0]);

  524.         for (i = 1; i <= (uintptr_t) args[0]; i++) {
  525.             PUSHs(sv_2mortal(args[i]));
  526.         }
  527.     }

  528.     PUTBACK;

  529.     c = r->connection;

  530.     n = call_sv(sub, G_EVAL);

  531.     SPAGAIN;

  532.     if (n) {
  533.         if (rv == NULL) {
  534.             status = POPi;

  535.             ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0,
  536.                            "call_sv: %d", status);

  537.         } else {
  538.             line = SvPVx(POPs, n_a);
  539.             rv->len = n_a;

  540.             rv->data = ngx_pnalloc(r->pool, n_a);
  541.             if (rv->data == NULL) {
  542.                 return NGX_ERROR;
  543.             }

  544.             ngx_memcpy(rv->data, line, n_a);
  545.         }
  546.     }

  547.     PUTBACK;

  548.     FREETMPS;
  549.     LEAVE;

  550.     if (ctx->error) {

  551.         ngx_log_debug1(NGX_LOG_DEBUG_HTTP, c->log, 0,
  552.                        "call_sv: error, %d", ctx->status);

  553.         if (ctx->status != NGX_OK) {
  554.             return ctx->status;
  555.         }

  556.         return NGX_ERROR;
  557.     }

  558.     /* check $@ */

  559.     if (SvTRUE(ERRSV)) {

  560.         err = (u_char *) SvPV(ERRSV, len);
  561.         while (--len && (err[len] == CR || err[len] == LF)) { /* void */ }

  562.         ngx_log_error(NGX_LOG_ERR, c->log, 0,
  563.                       "call_sv(\"%V\") failed: \"%*s\"", handler, len + 1, err);

  564.         if (rv) {
  565.             return NGX_ERROR;
  566.         }

  567.         ctx->redirect_uri.len = 0;

  568.         if (ctx->header_sent) {
  569.             return NGX_ERROR;
  570.         }

  571.         return NGX_HTTP_INTERNAL_SERVER_ERROR;
  572.     }

  573.     if (n != 1) {
  574.         ngx_log_error(NGX_LOG_ALERT, c->log, 0,
  575.                       "call_sv(\"%V\") returned %d results", handler, n);
  576.         status = NGX_OK;
  577.     }

  578.     if (rv) {
  579.         return NGX_OK;
  580.     }

  581.     return (ngx_int_t) status;
  582. }


  583. static void
  584. ngx_http_perl_eval_anon_sub(pTHX_ ngx_str_t *handler, SV **sv)
  585. {
  586.     u_char  *p;

  587.     for (p = handler->data; *p; p++) {
  588.         if (*p != ' ' && *p != '\t' && *p != CR && *p != LF) {
  589.             break;
  590.         }
  591.     }

  592.     if (ngx_strncmp(p, "sub ", 4) == 0
  593.         || ngx_strncmp(p, "sub{", 4) == 0
  594.         || ngx_strncmp(p, "use ", 4) == 0)
  595.     {
  596.         *sv = eval_pv((char *) p, FALSE);

  597.         /* eval_pv() does not set ERRSV on failure */

  598.         return;
  599.     }

  600.     *sv = NULL;
  601. }


  602. static void *
  603. ngx_http_perl_create_main_conf(ngx_conf_t *cf)
  604. {
  605.     ngx_http_perl_main_conf_t  *pmcf;

  606.     pmcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_perl_main_conf_t));
  607.     if (pmcf == NULL) {
  608.         return NULL;
  609.     }

  610.     pmcf->modules = NGX_CONF_UNSET_PTR;
  611.     pmcf->requires = NGX_CONF_UNSET_PTR;

  612.     return pmcf;
  613. }


  614. static char *
  615. ngx_http_perl_init_main_conf(ngx_conf_t *cf, void *conf)
  616. {
  617.     ngx_http_perl_main_conf_t *pmcf = conf;

  618.     if (pmcf->perl == NULL) {
  619.         if (ngx_http_perl_init_interpreter(cf, pmcf) != NGX_CONF_OK) {
  620.             return NGX_CONF_ERROR;
  621.         }
  622.     }

  623.     return NGX_CONF_OK;
  624. }


  625. #if (NGX_HAVE_PERL_MULTIPLICITY)

  626. static void
  627. ngx_http_perl_cleanup_perl(void *data)
  628. {
  629.     PerlInterpreter  *perl = data;

  630.     PERL_SET_CONTEXT(perl);
  631.     PERL_SET_INTERP(perl);

  632.     (void) perl_destruct(perl);

  633.     perl_free(perl);

  634.     if (ngx_perl_term) {
  635.         ngx_log_debug0(NGX_LOG_DEBUG_HTTP, ngx_cycle->log, 0, "perl term");

  636.         PERL_SYS_TERM();
  637.     }
  638. }

  639. #endif


  640. static ngx_int_t
  641. ngx_http_perl_preconfiguration(ngx_conf_t *cf)
  642. {
  643. #if (NGX_HTTP_SSI)
  644.     ngx_int_t                  rc;
  645.     ngx_http_ssi_main_conf_t  *smcf;

  646.     smcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_ssi_filter_module);

  647.     rc = ngx_hash_add_key(&smcf->commands, &ngx_http_perl_ssi_command.name,
  648.                           &ngx_http_perl_ssi_command, NGX_HASH_READONLY_KEY);

  649.     if (rc != NGX_OK) {
  650.         if (rc == NGX_BUSY) {
  651.             ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  652.                                "conflicting SSI command \"%V\"",
  653.                                &ngx_http_perl_ssi_command.name);
  654.         }

  655.         return NGX_ERROR;
  656.     }
  657. #endif

  658.     return NGX_OK;
  659. }


  660. static void *
  661. ngx_http_perl_create_loc_conf(ngx_conf_t *cf)
  662. {
  663.     ngx_http_perl_loc_conf_t *plcf;

  664.     plcf = ngx_pcalloc(cf->pool, sizeof(ngx_http_perl_loc_conf_t));
  665.     if (plcf == NULL) {
  666.         return NULL;
  667.     }

  668.     /*
  669.      * set by ngx_pcalloc():
  670.      *
  671.      *     plcf->handler = { 0, NULL };
  672.      */

  673.     return plcf;
  674. }


  675. static char *
  676. ngx_http_perl_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child)
  677. {
  678.     ngx_http_perl_loc_conf_t *prev = parent;
  679.     ngx_http_perl_loc_conf_t *conf = child;

  680.     if (conf->sub == NULL) {
  681.         conf->sub = prev->sub;
  682.         conf->handler = prev->handler;
  683.     }

  684.     return NGX_CONF_OK;
  685. }


  686. static char *
  687. ngx_http_perl(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
  688. {
  689.     ngx_http_perl_loc_conf_t *plcf = conf;

  690.     ngx_str_t                  *value;
  691.     ngx_http_core_loc_conf_t   *clcf;
  692.     ngx_http_perl_main_conf_t  *pmcf;

  693.     value = cf->args->elts;

  694.     if (plcf->handler.data) {
  695.         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  696.                            "duplicate perl handler \"%V\"", &value[1]);
  697.         return NGX_CONF_ERROR;
  698.     }

  699.     pmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_perl_module);

  700.     if (pmcf->perl == NULL) {
  701.         if (ngx_http_perl_init_interpreter(cf, pmcf) != NGX_CONF_OK) {
  702.             return NGX_CONF_ERROR;
  703.         }
  704.     }

  705.     plcf->handler = value[1];

  706.     {

  707.     dTHXa(pmcf->perl);
  708.     PERL_SET_CONTEXT(pmcf->perl);
  709.     PERL_SET_INTERP(pmcf->perl);

  710.     ngx_http_perl_eval_anon_sub(aTHX_ &value[1], &plcf->sub);

  711.     if (plcf->sub == &PL_sv_undef) {
  712.         ngx_conf_log_error(NGX_LOG_ERR, cf, 0,
  713.                            "eval_pv(\"%V\") failed", &value[1]);
  714.         return NGX_CONF_ERROR;
  715.     }

  716.     if (plcf->sub == NULL) {
  717.         plcf->sub = newSVpvn((char *) value[1].data, value[1].len);
  718.     }

  719.     }

  720.     clcf = ngx_http_conf_get_module_loc_conf(cf, ngx_http_core_module);
  721.     clcf->handler = ngx_http_perl_handler;

  722.     return NGX_CONF_OK;
  723. }


  724. static char *
  725. ngx_http_perl_set(ngx_conf_t *cf, ngx_command_t *cmd, void *conf)
  726. {
  727.     ngx_int_t                   index;
  728.     ngx_str_t                  *value;
  729.     ngx_http_variable_t        *v;
  730.     ngx_http_perl_variable_t   *pv;
  731.     ngx_http_perl_main_conf_t  *pmcf;

  732.     value = cf->args->elts;

  733.     if (value[1].data[0] != '$') {
  734.         ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
  735.                            "invalid variable name \"%V\"", &value[1]);
  736.         return NGX_CONF_ERROR;
  737.     }

  738.     value[1].len--;
  739.     value[1].data++;

  740.     v = ngx_http_add_variable(cf, &value[1], NGX_HTTP_VAR_CHANGEABLE);
  741.     if (v == NULL) {
  742.         return NGX_CONF_ERROR;
  743.     }

  744.     pv = ngx_palloc(cf->pool, sizeof(ngx_http_perl_variable_t));
  745.     if (pv == NULL) {
  746.         return NGX_CONF_ERROR;
  747.     }

  748.     index = ngx_http_get_variable_index(cf, &value[1]);
  749.     if (index == NGX_ERROR) {
  750.         return NGX_CONF_ERROR;
  751.     }

  752.     pmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_perl_module);

  753.     if (pmcf->perl == NULL) {
  754.         if (ngx_http_perl_init_interpreter(cf, pmcf) != NGX_CONF_OK) {
  755.             return NGX_CONF_ERROR;
  756.         }
  757.     }

  758.     pv->handler = value[2];

  759.     {

  760.     dTHXa(pmcf->perl);
  761.     PERL_SET_CONTEXT(pmcf->perl);
  762.     PERL_SET_INTERP(pmcf->perl);

  763.     ngx_http_perl_eval_anon_sub(aTHX_ &value[2], &pv->sub);

  764.     if (pv->sub == &PL_sv_undef) {
  765.         ngx_conf_log_error(NGX_LOG_ERR, cf, 0,
  766.                            "eval_pv(\"%V\") failed", &value[2]);
  767.         return NGX_CONF_ERROR;
  768.     }

  769.     if (pv->sub == NULL) {
  770.         pv->sub = newSVpvn((char *) value[2].data, value[2].len);
  771.     }

  772.     }

  773.     v->get_handler = ngx_http_perl_variable;
  774.     v->data = (uintptr_t) pv;

  775.     return NGX_CONF_OK;
  776. }


  777. static ngx_int_t
  778. ngx_http_perl_init_worker(ngx_cycle_t *cycle)
  779. {
  780.     ngx_http_perl_main_conf_t  *pmcf;

  781.     pmcf = ngx_http_cycle_get_module_main_conf(cycle, ngx_http_perl_module);

  782.     if (pmcf) {
  783.         dTHXa(pmcf->perl);
  784.         PERL_SET_CONTEXT(pmcf->perl);
  785.         PERL_SET_INTERP(pmcf->perl);

  786.         /* set worker's $$ */

  787.         sv_setiv(GvSV(gv_fetchpv("$", TRUE, SVt_PV)), (I32) ngx_pid);
  788.     }

  789.     return NGX_OK;
  790. }


  791. static void
  792. ngx_http_perl_exit(ngx_cycle_t *cycle)
  793. {
  794. #if (NGX_HAVE_PERL_MULTIPLICITY)

  795.     /*
  796.      * the master exit hook is run before global pool cleanup,
  797.      * therefore just set flag here
  798.      */

  799.     ngx_perl_term = 1;

  800. #else

  801.     if (nginx_stash) {
  802.         ngx_log_debug0(NGX_LOG_DEBUG_HTTP, cycle->log, 0, "perl term");

  803.         (void) perl_destruct(perl);

  804.         perl_free(perl);

  805.         PERL_SYS_TERM();
  806.     }

  807. #endif
  808. }