]> granicus.if.org Git - apache/blob - server/util_script.c
f6d3e483f09711c38d88025c91c616a4c54e9154
[apache] / server / util_script.c
1 /* ====================================================================
2  * The Apache Software License, Version 1.1
3  *
4  * Copyright (c) 2000-2001 The Apache Software Foundation.  All rights
5  * reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * 3. The end-user documentation included with the redistribution,
20  *    if any, must include the following acknowledgment:
21  *       "This product includes software developed by the
22  *        Apache Software Foundation (http://www.apache.org/)."
23  *    Alternately, this acknowledgment may appear in the software itself,
24  *    if and wherever such third-party acknowledgments normally appear.
25  *
26  * 4. The names "Apache" and "Apache Software Foundation" must
27  *    not be used to endorse or promote products derived from this
28  *    software without prior written permission. For written
29  *    permission, please contact apache@apache.org.
30  *
31  * 5. Products derived from this software may not be called "Apache",
32  *    nor may "Apache" appear in their name, without prior written
33  *    permission of the Apache Software Foundation.
34  *
35  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Apache Software Foundation.  For more
51  * information on the Apache Software Foundation, please see
52  * <http://www.apache.org/>.
53  *
54  * Portions of this software are based upon public domain software
55  * originally written at the National Center for Supercomputing Applications,
56  * University of Illinois, Urbana-Champaign.
57  */
58
59 #include "apr.h"
60 #include "apr_lib.h"
61 #include "apr_strings.h"
62
63 #define APR_WANT_STRFUNC
64 #include "apr_want.h"
65
66 #if APR_HAVE_STDLIB_H
67 #include <stdlib.h>
68 #endif
69
70 #define CORE_PRIVATE
71 #include "ap_config.h"
72 #include "httpd.h"
73 #include "http_config.h"
74 #include "http_main.h"
75 #include "http_log.h"
76 #include "http_core.h"
77 #include "http_protocol.h"
78 #include "http_request.h"       /* for sub_req_lookup_uri() */
79 #include "util_script.h"
80 #include "apr_date.h"           /* For apr_date_parse_http() */
81 #include "util_ebcdic.h"
82
83 #ifdef OS2
84 #define INCL_DOS
85 #include <os2.h>
86 #endif
87
88 /*
89  * Various utility functions which are common to a whole lot of
90  * script-type extensions mechanisms, and might as well be gathered
91  * in one place (if only to avoid creating inter-module dependancies
92  * where there don't have to be).
93  */
94
95 #define MALFORMED_MESSAGE "malformed header from script. Bad header="
96 #define MALFORMED_HEADER_LENGTH_TO_SHOW 30
97
98 static char *http2env(apr_pool_t *a, char *w)
99 {
100     char *res = apr_pstrcat(a, "HTTP_", w, NULL);
101     char *cp = res;
102
103     while (*++cp) {
104         if (!apr_isalnum(*cp) && *cp != '_') {
105             *cp = '_';
106         }
107         else {
108             *cp = apr_toupper(*cp);
109         }
110     }
111
112     return res;
113 }
114
115 AP_DECLARE(char **) ap_create_environment(apr_pool_t *p, apr_table_t *t)
116 {
117     apr_array_header_t *env_arr = apr_table_elts(t);
118     apr_table_entry_t *elts = (apr_table_entry_t *) env_arr->elts;
119     char **env = (char **) apr_palloc(p, (env_arr->nelts + 2) * sizeof(char *));
120     int i, j;
121     char *tz;
122     char *whack;
123
124     j = 0;
125     if (!apr_table_get(t, "TZ")) {
126         tz = getenv("TZ");
127         if (tz != NULL) {
128             env[j++] = apr_pstrcat(p, "TZ=", tz, NULL);
129         }
130     }
131     for (i = 0; i < env_arr->nelts; ++i) {
132         if (!elts[i].key) {
133             continue;
134         }
135         env[j] = apr_pstrcat(p, elts[i].key, "=", elts[i].val, NULL);
136         whack = env[j];
137         if (apr_isdigit(*whack)) {
138             *whack++ = '_';
139         }
140         while (*whack != '=') {
141             if (!apr_isalnum(*whack) && *whack != '_') {
142                 *whack = '_';
143             }
144             ++whack;
145         }
146         ++j;
147     }
148
149     env[j] = NULL;
150     return env;
151 }
152
153 AP_DECLARE(void) ap_add_common_vars(request_rec *r)
154 {
155     apr_table_t *e;
156     server_rec *s = r->server;
157     conn_rec *c = r->connection;
158     const char *rem_logname;
159     char *env_path;
160 #if defined(WIN32) || defined(OS2) || defined(BEOS)
161     char *env_temp;
162 #endif
163     const char *host;
164     apr_array_header_t *hdrs_arr = apr_table_elts(r->headers_in);
165     apr_table_entry_t *hdrs = (apr_table_entry_t *) hdrs_arr->elts;
166     int i;
167     apr_port_t rport;
168     apr_sockaddr_t *remotesa;
169
170     /* use a temporary apr_table_t which we'll overlap onto
171      * r->subprocess_env later
172      */
173     e = apr_table_make(r->pool, 25 + hdrs_arr->nelts);
174
175     /* First, add environment vars from headers... this is as per
176      * CGI specs, though other sorts of scripting interfaces see
177      * the same vars...
178      */
179
180     for (i = 0; i < hdrs_arr->nelts; ++i) {
181         if (!hdrs[i].key) {
182             continue;
183         }
184
185         /* A few headers are special cased --- Authorization to prevent
186          * rogue scripts from capturing passwords; content-type and -length
187          * for no particular reason.
188          */
189
190         if (!strcasecmp(hdrs[i].key, "Content-type")) {
191             apr_table_addn(e, "CONTENT_TYPE", hdrs[i].val);
192         }
193         else if (!strcasecmp(hdrs[i].key, "Content-length")) {
194             apr_table_addn(e, "CONTENT_LENGTH", hdrs[i].val);
195         }
196         /*
197          * You really don't want to disable this check, since it leaves you
198          * wide open to CGIs stealing passwords and people viewing them
199          * in the environment with "ps -e".  But, if you must...
200          */
201 #ifndef SECURITY_HOLE_PASS_AUTHORIZATION
202         else if (!strcasecmp(hdrs[i].key, "Authorization") 
203                  || !strcasecmp(hdrs[i].key, "Proxy-Authorization")) {
204             continue;
205         }
206 #endif
207         else {
208             apr_table_addn(e, http2env(r->pool, hdrs[i].key), hdrs[i].val);
209         }
210     }
211
212     if (!(env_path = getenv("PATH"))) {
213         env_path = DEFAULT_PATH;
214     }
215     apr_table_addn(e, "PATH", apr_pstrdup(r->pool, env_path));
216
217 #ifdef WIN32
218     if (env_temp = getenv("SystemRoot")) {
219         apr_table_addn(e, "SystemRoot", env_temp);         
220     }
221     if (env_temp = getenv("COMSPEC")) {
222         apr_table_addn(e, "COMSPEC", env_temp);            
223     }
224     if (env_temp = getenv("WINDIR")) {
225         apr_table_addn(e, "WINDIR", env_temp);
226     }
227 #endif
228
229 #ifdef OS2
230     if ((env_temp = getenv("COMSPEC")) != NULL) {
231         apr_table_addn(e, "COMSPEC", env_temp);            
232     }
233     if ((env_temp = getenv("ETC")) != NULL) {
234         apr_table_addn(e, "ETC", env_temp);            
235     }
236     if ((env_temp = getenv("DPATH")) != NULL) {
237         apr_table_addn(e, "DPATH", env_temp);            
238     }
239     if ((env_temp = getenv("PERLLIB_PREFIX")) != NULL) {
240         apr_table_addn(e, "PERLLIB_PREFIX", env_temp);            
241     }
242 #endif
243
244 #ifdef BEOS
245     if ((env_temp = getenv("LIBRARY_PATH")) != NULL) {
246         apr_table_addn(e, "LIBRARY_PATH", env_temp);            
247     }
248 #endif
249
250     apr_table_addn(e, "SERVER_SIGNATURE", ap_psignature("", r));
251     apr_table_addn(e, "SERVER_SOFTWARE", ap_get_server_version());
252     apr_table_addn(e, "SERVER_NAME", ap_get_server_name(r));
253     apr_table_addn(e, "SERVER_ADDR", r->connection->local_ip);  /* Apache */
254     apr_table_addn(e, "SERVER_PORT",
255                   apr_psprintf(r->pool, "%u", ap_get_server_port(r)));
256     host = ap_get_remote_host(c, r->per_dir_config, REMOTE_HOST, NULL);
257     if (host) {
258         apr_table_addn(e, "REMOTE_HOST", host);
259     }
260     apr_table_addn(e, "REMOTE_ADDR", c->remote_ip);
261     apr_table_addn(e, "DOCUMENT_ROOT", ap_document_root(r));    /* Apache */
262     apr_table_addn(e, "SERVER_ADMIN", s->server_admin); /* Apache */
263     apr_table_addn(e, "SCRIPT_FILENAME", r->filename);  /* Apache */
264
265     apr_socket_addr_get(&remotesa, APR_REMOTE, c->client_socket);
266     apr_sockaddr_port_get(&rport, remotesa);
267     apr_table_addn(e, "REMOTE_PORT", apr_psprintf(r->pool, "%d", rport));
268
269     if (r->user) {
270         apr_table_addn(e, "REMOTE_USER", r->user);
271     }
272     if (r->ap_auth_type) {
273         apr_table_addn(e, "AUTH_TYPE", r->ap_auth_type);
274     }
275     rem_logname = ap_get_remote_logname(r);
276     if (rem_logname) {
277         apr_table_addn(e, "REMOTE_IDENT", apr_pstrdup(r->pool, rem_logname));
278     }
279
280     /* Apache custom error responses. If we have redirected set two new vars */
281
282     if (r->prev) {
283         if (r->prev->args) {
284             apr_table_addn(e, "REDIRECT_QUERY_STRING", r->prev->args);
285         }
286         if (r->prev->uri) {
287             apr_table_addn(e, "REDIRECT_URL", r->prev->uri);
288         }
289     }
290
291     apr_table_overlap(r->subprocess_env, e, APR_OVERLAP_TABLES_SET);
292 }
293
294 /* This "cute" little function comes about because the path info on
295  * filenames and URLs aren't always the same. So we take the two,
296  * and find as much of the two that match as possible.
297  */
298
299 AP_DECLARE(int) ap_find_path_info(const char *uri, const char *path_info)
300 {
301     int lu = strlen(uri);
302     int lp = strlen(path_info);
303
304     while (lu-- && lp-- && uri[lu] == path_info[lp]);
305
306     if (lu == -1) {
307         lu = 0;
308     }
309
310     while (uri[lu] != '\0' && uri[lu] != '/') {
311         lu++;
312     }
313     return lu;
314 }
315
316 AP_DECLARE(void) ap_add_cgi_vars(request_rec *r)
317 {
318     apr_table_t *e = r->subprocess_env;
319
320     apr_table_setn(e, "GATEWAY_INTERFACE", "CGI/1.1");
321     apr_table_setn(e, "SERVER_PROTOCOL", r->protocol);
322     apr_table_setn(e, "REQUEST_METHOD", r->method);
323     apr_table_setn(e, "QUERY_STRING", r->args ? r->args : "");
324     apr_table_setn(e, "REQUEST_URI", r->unparsed_uri);
325
326     /* Note that the code below special-cases scripts run from includes,
327      * because it "knows" that the sub_request has been hacked to have the
328      * args and path_info of the original request, and not any that may have
329      * come with the script URI in the include command.  Ugh.
330      */
331
332     if (!strcmp(r->protocol, "INCLUDED")) {
333         apr_table_setn(e, "SCRIPT_NAME", r->uri);
334         if (r->path_info && *r->path_info) {
335             apr_table_setn(e, "PATH_INFO", r->path_info);
336         }
337     }
338     else if (!r->path_info || !*r->path_info) {
339         apr_table_setn(e, "SCRIPT_NAME", r->uri);
340     }
341     else {
342         int path_info_start = ap_find_path_info(r->uri, r->path_info);
343
344         apr_table_setn(e, "SCRIPT_NAME",
345                       apr_pstrndup(r->pool, r->uri, path_info_start));
346
347         apr_table_setn(e, "PATH_INFO", r->path_info);
348     }
349
350     if (r->path_info && r->path_info[0]) {
351         /*
352          * To get PATH_TRANSLATED, treat PATH_INFO as a URI path.
353          * Need to re-escape it for this, since the entire URI was
354          * un-escaped before we determined where the PATH_INFO began.
355          */
356         request_rec *pa_req;
357
358         pa_req = ap_sub_req_lookup_uri(ap_escape_uri(r->pool, r->path_info), r,
359                                        NULL);
360
361         if (pa_req->filename) {
362 #ifdef WIN32
363             char buffer[HUGE_STRING_LEN];
364 #endif
365             char *pt = apr_pstrcat(r->pool, pa_req->filename, pa_req->path_info,
366                                   NULL);
367 #ifdef WIN32
368             /* We need to make this a real Windows path name */
369             GetFullPathName(pt, HUGE_STRING_LEN, buffer, NULL);
370             apr_table_setn(e, "PATH_TRANSLATED", apr_pstrdup(r->pool, buffer));
371 #else
372             apr_table_setn(e, "PATH_TRANSLATED", pt);
373 #endif
374         }
375         ap_destroy_sub_req(pa_req);
376     }
377 }
378
379
380 static int set_cookie_doo_doo(void *v, const char *key, const char *val)
381 {
382     apr_table_addn(v, key, val);
383     return 1;
384 }
385
386 AP_DECLARE(int) ap_scan_script_header_err_core(request_rec *r, char *buffer,
387                                        int (*getsfunc) (char *, int, void *),
388                                        void *getsfunc_data)
389 {
390     char x[MAX_STRING_LEN];
391     char *w, *l;
392     int p;
393     int cgi_status = HTTP_OK;
394     apr_table_t *merge;
395     apr_table_t *cookie_table;
396
397     if (buffer) {
398         *buffer = '\0';
399     }
400     w = buffer ? buffer : x;
401
402     /* temporary place to hold headers to merge in later */
403     merge = apr_table_make(r->pool, 10);
404
405     /* The HTTP specification says that it is legal to merge duplicate
406      * headers into one.  Some browsers that support Cookies don't like
407      * merged headers and prefer that each Set-Cookie header is sent
408      * separately.  Lets humour those browsers by not merging.
409      * Oh what a pain it is.
410      */
411     cookie_table = apr_table_make(r->pool, 2);
412     apr_table_do(set_cookie_doo_doo, cookie_table, r->err_headers_out, "Set-Cookie", NULL);
413
414     while (1) {
415
416         if ((*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data) == 0) {
417             ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, r,
418                           "Premature end of script headers: %s", r->filename);
419             return HTTP_INTERNAL_SERVER_ERROR;
420         }
421
422         /* Delete terminal (CR?)LF */
423
424         p = strlen(w);
425              /* Indeed, the host's '\n':
426                 '\012' for UNIX; '\015' for MacOS; '\025' for OS/390
427                  -- whatever the script generates.
428              */                                  
429         if (p > 0 && w[p - 1] == '\n') {
430             if (p > 1 && w[p - 2] == CR) {
431                 w[p - 2] = '\0';
432             }
433             else {
434                 w[p - 1] = '\0';
435             }
436         }
437
438         /*
439          * If we've finished reading the headers, check to make sure any
440          * HTTP/1.1 conditions are met.  If so, we're done; normal processing
441          * will handle the script's output.  If not, just return the error.
442          * The appropriate thing to do would be to send the script process a
443          * SIGPIPE to let it know we're ignoring it, close the channel to the
444          * script process, and *then* return the failed-to-meet-condition
445          * error.  Otherwise we'd be waiting for the script to finish
446          * blithering before telling the client the output was no good.
447          * However, we don't have the information to do that, so we have to
448          * leave it to an upper layer.
449          */
450         if (w[0] == '\0') {
451             int cond_status = OK;
452
453             if ((cgi_status == HTTP_OK) && (r->method_number == M_GET)) {
454                 cond_status = ap_meets_conditions(r);
455             }
456             apr_table_overlap(r->err_headers_out, merge,
457                 APR_OVERLAP_TABLES_MERGE);
458             if (!apr_is_empty_table(cookie_table)) {
459                 /* the cookies have already been copied to the cookie_table */
460                 apr_table_unset(r->err_headers_out, "Set-Cookie");
461                 r->err_headers_out = apr_table_overlay(r->pool,
462                     r->err_headers_out, cookie_table);
463             }
464             return cond_status;
465         }
466
467         /* if we see a bogus header don't ignore it. Shout and scream */
468
469 #if APR_CHARSET_EBCDIC
470             /* Chances are that we received an ASCII header text instead of
471              * the expected EBCDIC header lines. Try to auto-detect:
472              */
473         if (!(l = strchr(w, ':'))) {
474             int maybeASCII = 0, maybeEBCDIC = 0;
475             unsigned char *cp, native;
476             apr_size_t inbytes_left, outbytes_left;
477
478             for (cp = w; *cp != '\0'; ++cp) {
479                 native = apr_xlate_conv_byte(ap_hdrs_from_ascii, *cp);
480                 if (isprint(*cp) && !isprint(native))
481                     ++maybeEBCDIC;
482                 if (!isprint(*cp) && isprint(native))
483                     ++maybeASCII;
484             }
485             if (maybeASCII > maybeEBCDIC) {
486                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, r->server,
487                              "CGI Interface Error: Script headers apparently ASCII: (CGI = %s)",
488                              r->filename);
489                 inbytes_left = outbytes_left = cp - w;
490                 apr_xlate_conv_buffer(ap_hdrs_from_ascii,
491                                       w, &inbytes_left, w, &outbytes_left);
492             }
493         }
494 #endif /*APR_CHARSET_EBCDIC*/
495         if (!(l = strchr(w, ':'))) {
496             char malformed[(sizeof MALFORMED_MESSAGE) + 1
497                            + MALFORMED_HEADER_LENGTH_TO_SHOW];
498
499             strcpy(malformed, MALFORMED_MESSAGE);
500             strncat(malformed, w, MALFORMED_HEADER_LENGTH_TO_SHOW);
501
502             if (!buffer) {
503                 /* Soak up all the script output - may save an outright kill */
504                 while ((*getsfunc) (w, MAX_STRING_LEN - 1, getsfunc_data)) {
505                     continue;
506                 }
507             }
508
509             ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, r,
510                           "%s: %s", malformed, r->filename);
511             return HTTP_INTERNAL_SERVER_ERROR;
512         }
513
514         *l++ = '\0';
515         while (*l && apr_isspace(*l)) {
516             ++l;
517         }
518
519         if (!strcasecmp(w, "Content-type")) {
520             char *tmp;
521
522             /* Nuke trailing whitespace */
523
524             char *endp = l + strlen(l) - 1;
525             while (endp > l && apr_isspace(*endp)) {
526                 *endp-- = '\0';
527             }
528
529             tmp = apr_pstrdup(r->pool, l);
530             ap_content_type_tolower(tmp);
531             r->content_type = tmp;
532         }
533         /*
534          * If the script returned a specific status, that's what
535          * we'll use - otherwise we assume 200 OK.
536          */
537         else if (!strcasecmp(w, "Status")) {
538             r->status = cgi_status = atoi(l);
539             r->status_line = apr_pstrdup(r->pool, l);
540         }
541         else if (!strcasecmp(w, "Location")) {
542             apr_table_set(r->headers_out, w, l);
543         }
544         else if (!strcasecmp(w, "Content-Length")) {
545             apr_table_set(r->headers_out, w, l);
546         }
547         else if (!strcasecmp(w, "Transfer-Encoding")) {
548             apr_table_set(r->headers_out, w, l);
549         }
550         /*
551          * If the script gave us a Last-Modified header, we can't just
552          * pass it on blindly because of restrictions on future values.
553          */
554         else if (!strcasecmp(w, "Last-Modified")) {
555             ap_update_mtime(r, apr_date_parse_http(l));
556             ap_set_last_modified(r);
557         }
558         else if (!strcasecmp(w, "Set-Cookie")) {
559             apr_table_add(cookie_table, w, l);
560         }
561         else {
562             apr_table_add(merge, w, l);
563         }
564     }
565
566     return OK;
567 }
568
569 static int getsfunc_FILE(char *buf, int len, void *f)
570 {
571     return apr_file_gets(buf, len, (apr_file_t *) f) == APR_SUCCESS;
572 }
573
574 AP_DECLARE(int) ap_scan_script_header_err(request_rec *r, apr_file_t *f,
575                                           char *buffer)
576 {
577     return ap_scan_script_header_err_core(r, buffer, getsfunc_FILE, f);
578 }
579
580 struct vastrs {
581     va_list args;
582     int arg;
583     const char *curpos;
584 };
585
586 static int getsfunc_STRING(char *w, int len, void *pvastrs)
587 {
588     struct vastrs *strs = (struct vastrs*) pvastrs;
589     const char *p;
590     int t;
591     
592     if (!strs->curpos || !*strs->curpos) 
593         return 0;
594     p = ap_strchr_c(strs->curpos, '\n');
595     if (p)
596         ++p;
597     else
598         p = ap_strchr_c(strs->curpos, '\0');
599     t = p - strs->curpos;
600     if (t > len)
601         t = len;
602     strncpy (w, strs->curpos, t);
603     w[t] = '\0';
604     if (!strs->curpos[t]) {
605         ++strs->arg;
606         strs->curpos = va_arg(strs->args, const char *);
607     }
608     else
609         strs->curpos += t;
610     return t;    
611 }
612
613 /* ap_scan_script_header_err_strs() accepts additional const char* args...
614  * each is treated as one or more header lines, and the first non-header
615  * character is returned to **arg, **data.  (The first optional arg is
616  * counted as 0.)
617  */
618 AP_DECLARE_NONSTD(int) ap_scan_script_header_err_strs(request_rec *r, 
619                                                       char *buffer, 
620                                                       const char **termch,
621                                                       int *termarg, ...)
622 {
623     struct vastrs strs;
624     int res;
625
626     va_start(strs.args, termarg);
627     strs.arg = 0;
628     strs.curpos = va_arg(strs.args, char*);
629     res = ap_scan_script_header_err_core(r, buffer, getsfunc_STRING, (void *) &strs);
630     if (termch)
631         *termch = strs.curpos;
632     if (termarg)
633         *termarg = strs.arg;
634     va_end(strs.args);
635     return res;
636 }
637
638 AP_DECLARE(void) ap_send_size(apr_ssize_t size, request_rec *r)
639 {
640     /* XXX: this -1 thing is a gross hack */
641     if (size == (apr_ssize_t)-1) {
642         ap_rputs("    -", r);
643     }
644     else if (!size) {
645         ap_rputs("   0k", r);
646     }
647     else if (size < 1024) {
648         ap_rputs("   1k", r);
649     }
650     else if (size < 1048576) {
651         ap_rprintf(r, "%4" APR_SSIZE_T_FMT "k", (size + 512) / 1024);
652     }
653     else if (size < 103809024) {
654         ap_rprintf(r, "%4.1fM", size / 1048576.0);
655     }
656     else {
657         ap_rprintf(r, "%4" APR_SSIZE_T_FMT "M", (size + 524288) / 1048576);
658     }
659 }
660