2003-11-26 04:44:56 +08:00
|
|
|
|
2004-09-28 16:34:51 +08:00
|
|
|
/*
|
2004-09-30 00:00:49 +08:00
|
|
|
* Copyright (C) Igor Sysoev
|
2004-09-28 16:34:51 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
#include <ngx_config.h>
|
|
|
|
#include <ngx_core.h>
|
|
|
|
|
|
|
|
|
|
|
|
static void *ngx_regex_malloc(size_t size);
|
|
|
|
static void ngx_regex_free(void *p);
|
|
|
|
|
|
|
|
|
|
|
|
static ngx_pool_t *ngx_pcre_pool;
|
|
|
|
|
|
|
|
|
2005-03-04 22:06:57 +08:00
|
|
|
void ngx_regex_init(void)
|
2003-11-26 04:44:56 +08:00
|
|
|
{
|
|
|
|
pcre_malloc = ngx_regex_malloc;
|
|
|
|
pcre_free = ngx_regex_free;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ngx_regex_t *ngx_regex_compile(ngx_str_t *pattern, ngx_int_t options,
|
|
|
|
ngx_pool_t *pool, ngx_str_t *err)
|
|
|
|
{
|
2004-07-07 23:01:00 +08:00
|
|
|
int erroff;
|
|
|
|
const char *errstr;
|
|
|
|
ngx_regex_t *re;
|
|
|
|
#if (NGX_THREADS)
|
|
|
|
ngx_core_tls_t *tls;
|
|
|
|
|
|
|
|
#if (NGX_SUPPRESS_WARN)
|
|
|
|
tls = NULL;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (ngx_threaded) {
|
|
|
|
tls = ngx_thread_get_tls(ngx_core_tls_key);
|
|
|
|
tls->pool = pool;
|
|
|
|
} else {
|
|
|
|
ngx_pcre_pool = pool;
|
|
|
|
}
|
|
|
|
|
|
|
|
#else
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
ngx_pcre_pool = pool;
|
|
|
|
|
2004-07-07 23:01:00 +08:00
|
|
|
#endif
|
|
|
|
|
2004-03-16 15:10:12 +08:00
|
|
|
re = pcre_compile((const char *) pattern->data, (int) options,
|
|
|
|
&errstr, &erroff, NULL);
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
if (re == NULL) {
|
2003-12-09 04:48:12 +08:00
|
|
|
if ((size_t) erroff == pattern->len) {
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_snprintf(err->data, err->len - 1,
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
"pcre_compile() failed: %s in \"%s\"%Z",
|
2003-11-26 04:44:56 +08:00
|
|
|
errstr, pattern->data);
|
|
|
|
} else {
|
2004-11-11 22:07:14 +08:00
|
|
|
ngx_snprintf(err->data, err->len - 1,
|
nginx-0.1.14-RELEASE import
*) Feature: the autoconfiguration directives:
--http-client-body-temp-path=PATH, --http-proxy-temp-path=PATH, and
--http-fastcgi-temp-path=PATH
*) Change: the directory name for the temporary files with the client
request body is specified by directive client_body_temp_path, by
default it is <prefix>/client_body_temp.
*) Feature: the ngx_http_fastcgi_module and the directives:
fastcgi_pass, fastcgi_root, fastcgi_index, fastcgi_params,
fastcgi_connect_timeout, fastcgi_send_timeout, fastcgi_read_timeout,
fastcgi_send_lowat, fastcgi_header_buffer_size, fastcgi_buffers,
fastcgi_busy_buffers_size, fastcgi_temp_path,
fastcgi_max_temp_file_size, fastcgi_temp_file_write_size,
fastcgi_next_upstream, and fastcgi_x_powered_by.
*) Bugfix: the "[alert] zero size buf" error; the bug had appeared in
0.1.3.
*) Change: the URI must be specified after the host name in the
proxy_pass directive.
*) Change: the %3F symbol in the URI was considered as the argument
string start.
*) Feature: the unix domain sockets support in the
ngx_http_proxy_module.
*) Feature: the ssl_engine and ssl_ciphers directives.
Thanks to Sergey Skvortsov for SSL-accelerator.
2005-01-18 21:03:58 +08:00
|
|
|
"pcre_compile() failed: %s in \"%s\" at \"%s\"%Z",
|
2003-11-26 04:44:56 +08:00
|
|
|
errstr, pattern->data, pattern->data + erroff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-23 14:01:52 +08:00
|
|
|
/* ensure that there is no current pool */
|
|
|
|
|
2004-07-07 23:01:00 +08:00
|
|
|
#if (NGX_THREADS)
|
|
|
|
if (ngx_threaded) {
|
|
|
|
tls->pool = NULL;
|
|
|
|
} else {
|
|
|
|
ngx_pcre_pool = NULL;
|
|
|
|
}
|
|
|
|
#else
|
2004-03-23 14:01:52 +08:00
|
|
|
ngx_pcre_pool = NULL;
|
2004-07-07 23:01:00 +08:00
|
|
|
#endif
|
2004-03-23 14:01:52 +08:00
|
|
|
|
2003-11-26 04:44:56 +08:00
|
|
|
return re;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
ngx_int_t ngx_regex_capture_count(ngx_regex_t *re)
|
2005-01-19 21:10:56 +08:00
|
|
|
{
|
|
|
|
int rc, n;
|
|
|
|
|
|
|
|
n = 0;
|
|
|
|
|
|
|
|
rc = pcre_fullinfo(re, NULL, PCRE_INFO_CAPTURECOUNT, &n);
|
|
|
|
|
2005-03-19 20:38:37 +08:00
|
|
|
if (rc < 0) {
|
|
|
|
return (ngx_int_t) rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (ngx_int_t) n;
|
2005-01-19 21:10:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-12-26 04:26:58 +08:00
|
|
|
ngx_int_t ngx_regex_exec(ngx_regex_t *re, ngx_str_t *s,
|
2005-01-19 21:10:56 +08:00
|
|
|
int *captures, ngx_int_t size)
|
2003-11-26 04:44:56 +08:00
|
|
|
{
|
|
|
|
int rc;
|
|
|
|
|
2004-03-16 15:10:12 +08:00
|
|
|
rc = pcre_exec(re, NULL, (const char *) s->data, s->len, 0, 0,
|
2005-01-19 21:10:56 +08:00
|
|
|
captures, size);
|
2003-11-26 04:44:56 +08:00
|
|
|
|
|
|
|
if (rc == -1) {
|
2005-01-19 21:10:56 +08:00
|
|
|
return NGX_REGEX_NO_MATCHED;
|
2003-11-26 04:44:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void *ngx_regex_malloc(size_t size)
|
|
|
|
{
|
2004-07-07 23:01:00 +08:00
|
|
|
ngx_pool_t *pool;
|
|
|
|
#if (NGX_THREADS)
|
|
|
|
ngx_core_tls_t *tls;
|
|
|
|
|
|
|
|
if (ngx_threaded) {
|
|
|
|
tls = ngx_thread_get_tls(ngx_core_tls_key);
|
|
|
|
pool = tls->pool;
|
|
|
|
} else {
|
|
|
|
pool = ngx_pcre_pool;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
pool = ngx_pcre_pool;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (pool) {
|
|
|
|
return ngx_palloc(pool, size);
|
2004-03-23 14:01:52 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2003-11-26 04:44:56 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void ngx_regex_free(void *p)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|