nginx-0.0.1-2003-04-21-18:55:47 import
diff --git a/src/core/ngx_alloc.h b/src/core/ngx_alloc.h
index 7fef65b..722d79c 100644
--- a/src/core/ngx_alloc.h
+++ b/src/core/ngx_alloc.h
@@ -6,8 +6,12 @@
#include <ngx_log.h>
+/* NGX_MAX_ALLOC_FROM_POOL should be (PAGE_SIZE - 1), i.e. 4095 on x86.
+ On FreeBSD 5.x it allows to use zero copy send.
+ On Windows NT it decreases number of locked pages in kernel.
+ */
+#define NGX_MAX_ALLOC_FROM_POOL 4095
-#define NGX_MAX_ALLOC_FROM_POOL (8192 - sizeof(ngx_pool_t))
#define NGX_DEFAULT_POOL_SIZE (16 * 1024)
#define ngx_test_null(p, alloc, rc) if ((p = alloc) == NULL) { return rc; }
diff --git a/src/event/ngx_event_proxy.c b/src/event/ngx_event_proxy.c
index 891536b..334f868 100644
--- a/src/event/ngx_event_proxy.c
+++ b/src/event/ngx_event_proxy.c
@@ -25,7 +25,7 @@
#endif
- p->level++;
+ p->upstream_level++;
ngx_log_debug(p->log, "read upstream");
@@ -52,27 +52,33 @@
/* allocate a new hunk if it's still allowed */
} else if (p->allocated < p->max_block_size) {
- ngx_test_null(h,
- ngx_create_temp_hunk(p->pool,
- p->block_size, 20, 20),
- NGX_ERROR);
+ h = ngx_create_temp_hunk(p->pool, p->block_size, 20, 20);
+ if (h == NULL) {
+ p->fatal_error = 1;
+ return NGX_ERROR;
+ }
p->allocated += p->block_size;
- ngx_test_null(temp, ngx_alloc_chain_entry(p->pool), NGX_ERROR);
+ temp = ngx_alloc_chain_entry(p->pool);
+ if (temp == NULL) {
+ p->fatal_error = 1;
+ return NGX_ERROR;
+ }
+
temp->hunk = h;
temp->next = NULL;
chain = temp;
ngx_log_debug(p->log, "new hunk: %08X" _ chain->hunk);
- /* use the shadow hunks if they exist */
+ /* use the file hunks if they exist */
- } else if (p->shadow_hunks) {
- chain = p->shadow_hunks;
- p->shadow_hunks = NULL;
+ } else if (p->file_hunks) {
+ chain = p->file_hunks;
+ p->file_hunks = NULL;
-ngx_log_debug(p->log, "shadow hunk: %08X" _ chain->hunk _
+ngx_log_debug(p->log, "file hunk: %08X" _ chain->hunk _
chain->hunk->end - chain->hunk->last);
/* if the hunks is not needed to be saved in a cache and
@@ -80,13 +86,14 @@
} else if (p->cachable == 0 && p->downstream->write->ready) {
- rc = ngx_event_proxy_write_to_downstream(p);
+ngx_log_debug(p->log, "downstream ready");
- continue;
+ break;
- /* if it's allowed then save the incoming hunks
- to a temporary file, move the saved hunks to a shadow chain,
- and add the file hunks to an outgoing chain */
+ /* if it's allowed then save the incoming hunks to a temporary
+ file, move the saved read hunks to a file chain,
+ convert the incoming hunks into the file hunks
+ and add them to an outgoing chain */
} else if (p->temp_offset < p->max_temp_file_size) {
rc = ngx_event_proxy_write_chain_to_temp_file(p);
@@ -97,18 +104,18 @@
return rc;
}
- chain = p->shadow_hunks;
- p->shadow_hunks = NULL;
+ chain = p->file_hunks;
+ p->file_hunks = NULL;
-ngx_log_debug(p->log, "new shadow hunk: %08X:%d" _ chain->hunk _
+ngx_log_debug(p->log, "new file hunk: %08X:%d" _ chain->hunk _
chain->hunk->end - chain->hunk->last);
/* if there're no hunks to read in then disable a level event */
} else {
- if (ngx_event_flags & NGX_USE_LEVEL_EVENT) {
- p->block_upstream = 1;
- }
+ p->block_upstream = 1;
+
+ngx_log_debug(p->log, "no hunks to read in");
break;
}
@@ -128,8 +135,10 @@
if (p->upstream->read->blocked) {
if (ngx_add_event(p->upstream->read, NGX_READ_EVENT,
NGX_LEVEL_EVENT) == NGX_ERROR) {
+ p->fatal_error = 1;
return NGX_ERROR;
}
+ p->block_upstream = 0;
p->upstream->read->blocked = 0;
}
@@ -197,14 +206,23 @@
/* the inline copy input filter */
- ngx_test_null(h, ngx_alloc_hunk(p->pool), NGX_ERROR);
+ h = ngx_alloc_hunk(p->pool);
+ if (h == NULL) {
+ p->fatal_error = 1;
+ return NGX_ERROR;
+ }
+
ngx_memcpy(h, entry->hunk, sizeof(ngx_hunk_t));
h->shadow = entry->hunk;
h->type |= NGX_HUNK_LAST_SHADOW|NGX_HUNK_RECYCLED;
entry->hunk->shadow = h;
- ngx_test_null(temp, ngx_alloc_chain_entry(p->pool),
- NGX_ERROR);
+ temp = ngx_alloc_chain_entry(p->pool);
+ if (temp == NULL) {
+ p->fatal_error = 1;
+ return NGX_ERROR;
+ }
+
temp->hunk = h;
temp->next = NULL;
@@ -235,18 +253,19 @@
if (p->input_filter) {
if (p->input_filter(p, chain) == NGX_ERROR) {
+ p->fatal_error = 1;
return NGX_ERROR;
}
}
ngx_log_debug(p->log, "rest chain: %08X" _ entry);
- /* if the rest hunks are shadow then move them to a shadow chain
+ /* if the rest hunks are file hunks then move them to a file chain
otherwise add them to a free chain */
if (entry) {
if (entry->hunk->shadow) {
- p->shadow_hunks = entry;
+ p->file_hunks = entry;
} else {
if (p->free_hunks) {
@@ -278,11 +297,13 @@
#if (NGX_EVENT_COPY_FILTER)
if (p->input_filter(p, NULL) == NGX_ERROR) {
+ p->fatal_error = 1;
return NGX_ERROR;
}
#else
if (p->input_filter) {
if (p->input_filter(p, NULL) == NGX_ERROR) {
+ p->fatal_error = 1;
return NGX_ERROR;
}
@@ -323,34 +344,49 @@
if (p->cachable) {
if (p->in_hunks) {
rc = ngx_event_proxy_write_chain_to_temp_file(p);
+
if (rc != NGX_OK) {
return rc;
}
}
if (p->out_hunks && p->downstream->write->ready) {
- rc = ngx_event_proxy_write_to_downstream(p);
+ if (ngx_event_proxy_write_to_downstream(p) == NGX_ERROR
+ && p->fatal_error)
+ {
+ return NGX_ERROR;
+ }
}
} else if ((p->out_hunks || p->in_hunks) && p->downstream->write->ready) {
- rc = ngx_event_proxy_write_to_downstream(p);
- }
-
- p->level--;
-
-ngx_log_debug(p->log, "level: %d" _ p->level);
-
- if (p->level == 0 && p->block_upstream) {
- p->upstream->read->blocked = 1;
- if (ngx_del_event(p->upstream->read, NGX_READ_EVENT, 0) == NGX_ERROR) {
+ if (ngx_event_proxy_write_to_downstream(p) == NGX_ERROR
+ && p->fatal_error)
+ {
return NGX_ERROR;
}
+ }
+
+ p->upstream_level--;
+
+ngx_log_debug(p->log, "upstream level: %d" _ p->upstream_level);
+
+ if (p->upstream_level == 0
+ && p->block_upstream
+ && ngx_event_flags & NGX_USE_LEVEL_EVENT)
+ {
+ if (ngx_del_event(p->upstream->read, NGX_READ_EVENT, 0) == NGX_ERROR) {
+ p->fatal_error = 1;
+ return NGX_ERROR;
+ }
+
+ p->upstream->read->blocked = 1;
return NGX_AGAIN;
}
if (p->upstream_eof) {
return NGX_OK;
+
} else {
return NGX_AGAIN;
}
@@ -363,8 +399,27 @@
ngx_hunk_t *h;
ngx_chain_t *entry;
+ if (p->downstream_level == 0
+ && p->busy_hunk == NULL
+ && p->out_hunks == NULL
+ && p->in_hunks == NULL
+ && ngx_event_flags & NGX_USE_LEVEL_EVENT)
+ {
+ if (ngx_del_event(p->downstream->write, NGX_WRITE_EVENT, 0)
+ == NGX_ERROR) {
+ p->fatal_error = 1;
+ return NGX_ERROR;
+ }
+
+ p->downstream->write->blocked = 1;
+ return NGX_AGAIN;
+ }
+
+ p->downstream_level++;
+
ngx_log_debug(p->log, "write to downstream");
+ entry = NULL;
h = p->busy_hunk;
for ( ;; ) {
@@ -376,9 +431,9 @@
h = entry->hunk;
entry->next = NULL;
- if (p->shadow_hunks) {
- if (p->shadow_hunks->hunk == h->shadow) {
- p->shadow_hunks = p->shadow_hunks->next;
+ if (p->file_hunks) {
+ if (p->file_hunks->hunk == h->shadow) {
+ p->file_hunks = p->file_hunks->next;
}
}
@@ -390,23 +445,19 @@
entry->next = NULL;
if (p->read_hunks) {
- if (p->read_hunks->hunk == h->shadow) {
- p->read_hunks = p->read_hunks->next;
+ if (p->read_hunks->hunk == h->shadow) {
+ p->read_hunks = p->read_hunks->next;
- } else {
- ngx_log_error(NGX_LOG_CRIT, p->log, 0, "ERROR !!!");
- }
+ } else {
+ ngx_log_error(NGX_LOG_CRIT, p->log, 0, "ERROR0");
+ }
}
}
ngx_log_debug(p->log, "event proxy write hunk: %08X" _ h);
if (h == NULL) {
- if (p->upstream->read->ready) {
- rc = ngx_event_proxy_read_upstream(p);
- }
-
- return NGX_OK;
+ break;
}
}
@@ -419,23 +470,37 @@
ngx_log_debug(p->log, "event proxy: %d" _ rc);
if (rc == NGX_ERROR) {
+ p->downstream_error = 1;
return NGX_ERROR;
}
- if (rc == NGX_AGAIN
+ if (rc == NGX_AGAIN) {
+#if 0
|| (h->type & NGX_HUNK_IN_MEMORY && h->pos < h->last)
- || (h->type & NGX_HUNK_FILE && h->file_pos < h->file_last))
- {
+ || (h->type & NGX_HUNK_FILE && h->file_pos < h->file_last)
+#endif
if (p->busy_hunk == NULL) {
p->busy_hunk = h;
}
+
+ if (p->downstream->write->blocked) {
+ if (ngx_add_event(p->downstream->write, NGX_WRITE_EVENT,
+ NGX_LEVEL_EVENT) == NGX_ERROR) {
+ p->fatal_error = 1;
+ return NGX_ERROR;
+ }
+ p->downstream->write->blocked = 0;
+ }
+
+ p->downstream_level--;
+
return NGX_AGAIN;
}
p->busy_hunk = NULL;
- /* if the complete hunk is the file hunk and it has a shadow hunk
- then add a shadow hunk to a free chain */
+ /* if the complete hunk is the file hunk and it has a shadow read hunk
+ then add a shadow read hunk to a free chain */
if (h->type & NGX_HUNK_FILE) {
if (p->cachable == 0 && p->out_hunks == NULL) {
@@ -457,12 +522,18 @@
if (p->upstream_eof) {
ngx_free_hunk(p->pool, h);
+ h = NULL;
continue;
}
#endif
h->pos = h->last = h->start;
+ if (entry == NULL) {
+ h = NULL;
+ continue;
+ }
+
entry->hunk = h;
/* if the first hunk in a free chain is partially filled
@@ -481,6 +552,18 @@
h = NULL;
}
+
+ if (p->upstream->read->ready) {
+ if (ngx_event_proxy_read_upstream(p) == NGX_ERROR && p->fatal_error) {
+ return NGX_ERROR;
+ }
+ }
+
+ p->downstream_level--;
+
+ngx_log_debug(p->log, "downstream level: %d" _ p->downstream_level);
+
+ return NGX_OK;
}
@@ -496,8 +579,13 @@
rc = ngx_create_temp_file(p->temp_file, p->temp_path, p->pool,
p->number, p->random, p->cachable);
- if (rc != NGX_OK) {
- return rc;
+ if (rc == NGX_ERROR) {
+ p->fatal_error = 1;
+ return NGX_ERROR;
+ }
+
+ if (rc == NGX_AGAIN) {
+ return NGX_AGAIN;
}
if (p->cachable == 0 && p->temp_file_warn) {
@@ -542,6 +630,7 @@
if (ngx_write_chain_to_file(p->temp_file, p->in_hunks, p->temp_offset,
p->pool) == NGX_ERROR) {
+ p->fatal_error = 1;
return NGX_ERROR;
}
@@ -576,7 +665,7 @@
p->last_out_hunk = entry;
}
- p->shadow_hunks = p->read_hunks;
+ p->file_hunks = p->read_hunks;
p->read_hunks = saved_read;
p->in_hunks = saved_in;
@@ -584,6 +673,7 @@
return NGX_OK;
}
+
#if (NGX_EVENT_COPY_FILTER)
/* the copy input filter */
diff --git a/src/event/ngx_event_proxy.h b/src/event/ngx_event_proxy.h
index b73232b..520b837 100644
--- a/src/event/ngx_event_proxy.h
+++ b/src/event/ngx_event_proxy.h
@@ -21,7 +21,7 @@
ngx_chain_t *read_hunks;
ngx_chain_t *last_read_hunk;
- ngx_chain_t *shadow_hunks;
+ ngx_chain_t *file_hunks;
ngx_chain_t *in_hunks;
ngx_chain_t *last_in_hunk;
@@ -43,13 +43,15 @@
void *output_data;
unsigned cachable:1;
+ unsigned fatal_error:1;
unsigned block_upstream:1;
unsigned upstream_eof:1;
unsigned upstream_error:1;
unsigned downstream_eof:1;
unsigned downstream_error:1;
- int level;
+ int upstream_level;
+ int downstream_level;
int allocated;
int block_size;