3 * Copyright (C) Igor Sysoev
7 #include <ngx_config.h>
14 } ngx_http_random_index_loc_conf_t
;
17 #define NGX_HTTP_RANDOM_INDEX_PREALLOCATE 50
20 static ngx_int_t
ngx_http_random_index_error(ngx_http_request_t
*r
,
21 ngx_dir_t
*dir
, ngx_str_t
*name
);
22 static ngx_int_t
ngx_http_random_index_init(ngx_conf_t
*cf
);
23 static void *ngx_http_random_index_create_loc_conf(ngx_conf_t
*cf
);
24 static char *ngx_http_random_index_merge_loc_conf(ngx_conf_t
*cf
,
25 void *parent
, void *child
);
28 static ngx_command_t ngx_http_random_index_commands
[] = {
30 { ngx_string("random_index"),
31 NGX_HTTP_LOC_CONF
|NGX_CONF_FLAG
,
32 ngx_conf_set_flag_slot
,
33 NGX_HTTP_LOC_CONF_OFFSET
,
34 offsetof(ngx_http_random_index_loc_conf_t
, enable
),
41 static ngx_http_module_t ngx_http_random_index_module_ctx
= {
42 NULL
, /* preconfiguration */
43 ngx_http_random_index_init
, /* postconfiguration */
45 NULL
, /* create main configuration */
46 NULL
, /* init main configuration */
48 NULL
, /* create server configuration */
49 NULL
, /* merge server configuration */
51 ngx_http_random_index_create_loc_conf
, /* create location configration */
52 ngx_http_random_index_merge_loc_conf
/* merge location configration */
56 ngx_module_t ngx_http_random_index_module
= {
58 &ngx_http_random_index_module_ctx
, /* module context */
59 ngx_http_random_index_commands
, /* module directives */
60 NGX_HTTP_MODULE
, /* module type */
61 NULL
, /* init master */
62 NULL
, /* init module */
63 NULL
, /* init process */
64 NULL
, /* init thread */
65 NULL
, /* exit thread */
66 NULL
, /* exit process */
67 NULL
, /* exit master */
73 ngx_http_random_index_handler(ngx_http_request_t
*r
)
75 u_char
*last
, *filename
;
76 size_t len
, allocated
, root
;
79 ngx_str_t path
, uri
, *name
;
83 ngx_http_random_index_loc_conf_t
*rlcf
;
85 if (r
->uri
.data
[r
->uri
.len
- 1] != '/') {
89 if (!(r
->method
& (NGX_HTTP_GET
|NGX_HTTP_HEAD
|NGX_HTTP_POST
))) {
93 rlcf
= ngx_http_get_module_loc_conf(r
, ngx_http_random_index_module
);
100 len
= NGX_DIR_MASK_LEN
;
102 len
= NGX_HTTP_RANDOM_INDEX_PREALLOCATE
;
105 last
= ngx_http_map_uri_to_path(r
, &path
, &root
, len
);
107 return NGX_HTTP_INTERNAL_SERVER_ERROR
;
110 allocated
= path
.len
;
112 path
.len
= last
- path
.data
- 1;
113 path
.data
[path
.len
] = '\0';
115 ngx_log_debug1(NGX_LOG_DEBUG_HTTP
, r
->connection
->log
, 0,
116 "http random index: \"%s\"", path
.data
);
118 if (ngx_open_dir(&path
, &dir
) == NGX_ERROR
) {
121 if (err
== NGX_ENOENT
122 || err
== NGX_ENOTDIR
123 || err
== NGX_ENAMETOOLONG
)
126 rc
= NGX_HTTP_NOT_FOUND
;
128 } else if (err
== NGX_EACCES
) {
130 rc
= NGX_HTTP_FORBIDDEN
;
133 level
= NGX_LOG_CRIT
;
134 rc
= NGX_HTTP_INTERNAL_SERVER_ERROR
;
137 ngx_log_error(level
, r
->connection
->log
, err
,
138 ngx_open_dir_n
" \"%s\" failed", path
.data
);
143 if (ngx_array_init(&names
, r
->pool
, 32, sizeof(ngx_str_t
)) != NGX_OK
) {
144 return ngx_http_random_index_error(r
, &dir
, &path
);
147 filename
= path
.data
;
148 filename
[path
.len
] = '/';
153 if (ngx_read_dir(&dir
) == NGX_ERROR
) {
156 if (err
!= NGX_ENOMOREFILES
) {
157 ngx_log_error(NGX_LOG_CRIT
, r
->connection
->log
, err
,
158 ngx_read_dir_n
" \"%V\" failed", &path
);
159 return ngx_http_random_index_error(r
, &dir
, &path
);
165 ngx_log_debug1(NGX_LOG_DEBUG_HTTP
, r
->connection
->log
, 0,
166 "http random index file: \"%s\"", ngx_de_name(&dir
));
168 if (ngx_de_name(&dir
)[0] == '.') {
172 len
= ngx_de_namelen(&dir
);
174 if (dir
.type
== 0 || ngx_de_is_link(&dir
)) {
176 /* 1 byte for '/' and 1 byte for terminating '\0' */
178 if (path
.len
+ 1 + len
+ 1 > allocated
) {
179 allocated
= path
.len
+ 1 + len
+ 1
180 + NGX_HTTP_RANDOM_INDEX_PREALLOCATE
;
182 filename
= ngx_pnalloc(r
->pool
, allocated
);
183 if (filename
== NULL
) {
184 return ngx_http_random_index_error(r
, &dir
, &path
);
187 last
= ngx_cpystrn(filename
, path
.data
, path
.len
+ 1);
191 ngx_cpystrn(last
, ngx_de_name(&dir
), len
+ 1);
193 if (ngx_de_info(filename
, &dir
) == NGX_FILE_ERROR
) {
196 if (err
!= NGX_ENOENT
) {
197 ngx_log_error(NGX_LOG_CRIT
, r
->connection
->log
, err
,
198 ngx_de_info_n
" \"%s\" failed", filename
);
199 return ngx_http_random_index_error(r
, &dir
, &path
);
202 if (ngx_de_link_info(filename
, &dir
) == NGX_FILE_ERROR
) {
203 ngx_log_error(NGX_LOG_CRIT
, r
->connection
->log
, ngx_errno
,
204 ngx_de_link_info_n
" \"%s\" failed",
206 return ngx_http_random_index_error(r
, &dir
, &path
);
211 if (!ngx_de_is_file(&dir
)) {
215 name
= ngx_array_push(&names
);
217 return ngx_http_random_index_error(r
, &dir
, &path
);
222 name
->data
= ngx_pnalloc(r
->pool
, len
);
223 if (name
->data
== NULL
) {
224 return ngx_http_random_index_error(r
, &dir
, &path
);
227 ngx_memcpy(name
->data
, ngx_de_name(&dir
), len
);
230 if (ngx_close_dir(&dir
) == NGX_ERROR
) {
231 ngx_log_error(NGX_LOG_ALERT
, r
->connection
->log
, ngx_errno
,
232 ngx_close_dir_n
" \"%s\" failed", &path
);
243 n
= (ngx_uint_t
) (((uint64_t) ngx_random() * n
) / 0x80000000);
245 uri
.len
= r
->uri
.len
+ name
[n
].len
;
247 uri
.data
= ngx_pnalloc(r
->pool
, uri
.len
);
248 if (uri
.data
== NULL
) {
249 return NGX_HTTP_INTERNAL_SERVER_ERROR
;
252 last
= ngx_copy(uri
.data
, r
->uri
.data
, r
->uri
.len
);
253 ngx_memcpy(last
, name
[n
].data
, name
[n
].len
);
255 return ngx_http_internal_redirect(r
, &uri
, &r
->args
);
260 ngx_http_random_index_error(ngx_http_request_t
*r
, ngx_dir_t
*dir
,
263 if (ngx_close_dir(dir
) == NGX_ERROR
) {
264 ngx_log_error(NGX_LOG_ALERT
, r
->connection
->log
, ngx_errno
,
265 ngx_close_dir_n
" \"%V\" failed", name
);
268 return NGX_HTTP_INTERNAL_SERVER_ERROR
;
273 ngx_http_random_index_create_loc_conf(ngx_conf_t
*cf
)
275 ngx_http_random_index_loc_conf_t
*conf
;
277 conf
= ngx_palloc(cf
->pool
, sizeof(ngx_http_random_index_loc_conf_t
));
282 conf
->enable
= NGX_CONF_UNSET
;
289 ngx_http_random_index_merge_loc_conf(ngx_conf_t
*cf
, void *parent
, void *child
)
291 ngx_http_random_index_loc_conf_t
*prev
= parent
;
292 ngx_http_random_index_loc_conf_t
*conf
= child
;
294 ngx_conf_merge_value(conf
->enable
, prev
->enable
, 0);
301 ngx_http_random_index_init(ngx_conf_t
*cf
)
303 ngx_http_handler_pt
*h
;
304 ngx_http_core_main_conf_t
*cmcf
;
306 cmcf
= ngx_http_conf_get_module_main_conf(cf
, ngx_http_core_module
);
308 h
= ngx_array_push(&cmcf
->phases
[NGX_HTTP_CONTENT_PHASE
].handlers
);
313 *h
= ngx_http_random_index_handler
;