]> granicus.if.org Git - apache/blob - include/http_protocol.h
Follow up to r1750392: r1756186 should have also bumped MMN minor for
[apache] / include / http_protocol.h
1 /* Licensed to the Apache Software Foundation (ASF) under one or more
2  * contributor license agreements.  See the NOTICE file distributed with
3  * this work for additional information regarding copyright ownership.
4  * The ASF licenses this file to You under the Apache License, Version 2.0
5  * (the "License"); you may not use this file except in compliance with
6  * the License.  You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file  http_protocol.h
19  * @brief HTTP protocol handling
20  *
21  * @defgroup APACHE_CORE_PROTO HTTP Protocol Handling
22  * @ingroup  APACHE_CORE
23  * @{
24  */
25
26 #ifndef APACHE_HTTP_PROTOCOL_H
27 #define APACHE_HTTP_PROTOCOL_H
28
29 #include "httpd.h"
30 #include "apr_portable.h"
31 #include "apr_mmap.h"
32 #include "apr_buckets.h"
33 #include "util_filter.h"
34
35 #ifdef __cplusplus
36 extern "C" {
37 #endif
38
39 /**
40  * This hook allows modules to insert filters for the current error response
41  * @param r the current request
42  * @ingroup hooks
43  */
44 AP_DECLARE_HOOK(void,insert_error_filter,(request_rec *r))
45
46 /** This is an optimization.  We keep a record of the filter_rec that
47  * stores the old_write filter, so that we can avoid strcmp's later.
48  */
49 AP_DECLARE_DATA extern ap_filter_rec_t *ap_old_write_func;
50
51 /*
52  * Prototypes for routines which either talk directly back to the user,
53  * or control the ones that eventually do.
54  */
55
56 /**
57  * Read an empty request and set reasonable defaults.
58  * @param c The current connection
59  * @return The new request_rec
60  */
61 AP_DECLARE(request_rec *) ap_create_request(conn_rec *c);
62
63 /**
64  * Read a request and fill in the fields.
65  * @param c The current connection
66  * @return The new request_rec
67  */
68 request_rec *ap_read_request(conn_rec *c);
69
70 /**
71  * Read the mime-encoded headers.
72  * @param r The current request
73  */
74 AP_DECLARE(void) ap_get_mime_headers(request_rec *r);
75
76 /**
77  * Optimized version of ap_get_mime_headers() that requires a
78  * temporary brigade to work with
79  * @param r The current request
80  * @param bb temp brigade
81  */
82 AP_DECLARE(void) ap_get_mime_headers_core(request_rec *r,
83                                           apr_bucket_brigade *bb);
84
85 /* Finish up stuff after a request */
86
87 /**
88  * Called at completion of sending the response.  It sends the terminating
89  * protocol information.
90  * @param r The current request
91  */
92 AP_DECLARE(void) ap_finalize_request_protocol(request_rec *r);
93
94 /**
95  * Send error back to client.
96  * @param r The current request
97  * @param recursive_error last arg indicates error status in case we get
98  *      an error in the process of trying to deal with an ErrorDocument
99  *      to handle some other error.  In that case, we print the default
100  *      report for the first thing that went wrong, and more briefly report
101  *      on the problem with the ErrorDocument.
102  */
103 AP_DECLARE(void) ap_send_error_response(request_rec *r, int recursive_error);
104
105 /* Set last modified header line from the lastmod date of the associated file.
106  * Also, set content length.
107  *
108  * May return an error status, typically HTTP_NOT_MODIFIED (that when the
109  * permit_cache argument is set to one).
110  */
111
112 /**
113  * Set the content length for this request
114  * @param r The current request
115  * @param length The new content length
116  */
117 AP_DECLARE(void) ap_set_content_length(request_rec *r, apr_off_t length);
118
119 /**
120  * Set the keepalive status for this request
121  * @param r The current request
122  * @return 1 if keepalive can be set, 0 otherwise
123  */
124 AP_DECLARE(int) ap_set_keepalive(request_rec *r);
125
126 /**
127  * Return the latest rational time from a request/mtime pair.  Mtime is
128  * returned unless it's in the future, in which case we return the current time.
129  * @param r The current request
130  * @param mtime The last modified time
131  * @return the latest rational time.
132  */
133 AP_DECLARE(apr_time_t) ap_rationalize_mtime(request_rec *r, apr_time_t mtime);
134
135 /**
136  * Build the content-type that should be sent to the client from the
137  * content-type specified.  The following rules are followed:
138  *    - if type is NULL or "", return NULL (do not set content-type).
139  *    - if charset adding is disabled, stop processing and return type.
140  *    - then, if there are no parameters on type, add the default charset
141  *    - return type
142  * @param r The current request
143  * @param type The content type
144  * @return The content-type
145  */
146 AP_DECLARE(const char *) ap_make_content_type(request_rec *r,
147                                               const char *type);
148
149 /**
150  * Precompile metadata structures used by ap_make_content_type()
151  * @param pool The pool to use for allocations
152  */
153 AP_DECLARE(void) ap_setup_make_content_type(apr_pool_t *pool);
154
155 /**
156  * Construct an entity tag from the resource information.  If it's a real
157  * file, build in some of the file characteristics.
158  * @param r The current request
159  * @param force_weak Force the entity tag to be weak - it could be modified
160  *                   again in as short an interval.
161  * @return The entity tag
162  */
163 AP_DECLARE(char *) ap_make_etag(request_rec *r, int force_weak);
164
165 /**
166  * Set the E-tag outgoing header
167  * @param r The current request
168  */
169 AP_DECLARE(void) ap_set_etag(request_rec *r);
170
171 /**
172  * Set the last modified time for the file being sent
173  * @param r The current request
174  */
175 AP_DECLARE(void) ap_set_last_modified(request_rec *r);
176
177 typedef enum {
178     AP_CONDITION_NONE,
179     AP_CONDITION_NOMATCH,
180     AP_CONDITION_WEAK,
181     AP_CONDITION_STRONG
182 } ap_condition_e;
183
184 /**
185  * Tests conditional request rules for the If-Match header.
186  * @param r The current request
187  * @param headers The response headers to check against
188  * @return AP_CONDITION_NONE if the header is missing, AP_CONDITION_NOMATCH
189  *         if the header does not match, AP_CONDITION_STRONG for a strong
190  *         match. Weak matches are not permitted for the If-Match header.
191  */
192 AP_DECLARE(ap_condition_e) ap_condition_if_match(request_rec *r,
193         apr_table_t *headers);
194
195 /**
196  * Tests conditional request rules for the If-Unmodified-Since header.
197  * @param r The current request
198  * @param headers The response headers to check against
199  * @return AP_CONDITION_NONE if the header is missing, AP_CONDITION_NOMATCH
200  *         if the header does not match, AP_CONDITION_WEAK if a weak match
201  *         was present and allowed by RFC2616, AP_CONDITION_STRONG for a
202  *         strong match.
203  */
204 AP_DECLARE(ap_condition_e) ap_condition_if_unmodified_since(request_rec *r,
205         apr_table_t *headers);
206
207 /**
208  * Tests conditional request rules for the If-None-Match header.
209  * @param r The current request
210  * @param headers The response headers to check against
211  * @return AP_CONDITION_NONE if the header is missing, AP_CONDITION_NOMATCH
212  *         if the header does not match, AP_CONDITION_WEAK if a weak match
213  *         was present and allowed by RFC2616, AP_CONDITION_STRONG for a
214  *         strong match.
215  */
216 AP_DECLARE(ap_condition_e) ap_condition_if_none_match(request_rec *r,
217         apr_table_t *headers);
218
219 /**
220  * Tests conditional request rules for the If-Modified-Since header.
221  * @param r The current request
222  * @param headers The response headers to check against
223  * @return AP_CONDITION_NONE if the header is missing, AP_CONDITION_NOMATCH
224  *         if the header does not match, AP_CONDITION_WEAK if a weak match
225  *         was present and allowed by RFC2616, AP_CONDITION_STRONG for a
226  *         strong match.
227  */
228 AP_DECLARE(ap_condition_e) ap_condition_if_modified_since(request_rec *r,
229         apr_table_t *headers);
230
231 /**
232  * Tests conditional request rules for the If-Range header.
233  * @param r The current request
234  * @param headers The response headers to check against
235  * @return AP_CONDITION_NONE if either the If-Range or Range header is
236  *         missing, AP_CONDITION_NOMATCH if the header does not match,
237  *         AP_CONDITION_STRONG for a strong match. Weak matches are not
238  *         permitted for the If-Range header.
239  */
240 AP_DECLARE(ap_condition_e) ap_condition_if_range(request_rec *r,
241         apr_table_t *headers);
242
243 /**
244  * Implements condition GET rules for HTTP/1.1 specification.  This function
245  * inspects the client headers and determines if the response fulfills
246  * the requirements specified.
247  * @param r The current request
248  * @return OK if the response fulfills the condition GET rules, some
249  *         other status code otherwise
250  */
251 AP_DECLARE(int) ap_meets_conditions(request_rec *r);
252
253 /* Other ways to send stuff at the client.  All of these keep track
254  * of bytes_sent automatically.  This indirection is intended to make
255  * it a little more painless to slide things like HTTP-NG packetization
256  * underneath the main body of the code later.  In the meantime, it lets
257  * us centralize a bit of accounting (bytes_sent).
258  *
259  * These also return the number of bytes written by the call.
260  * They should only be called with a timeout registered, for obvious reaasons.
261  * (Ditto the send_header stuff).
262  */
263
264 /**
265  * Send an entire file to the client, using sendfile if supported by the
266  * current platform
267  * @param fd The file to send.
268  * @param r The current request
269  * @param offset Offset into the file to start sending.
270  * @param length Amount of data to send
271  * @param nbytes Amount of data actually sent
272  */
273 AP_DECLARE(apr_status_t) ap_send_fd(apr_file_t *fd, request_rec *r, apr_off_t offset,
274                                    apr_size_t length, apr_size_t *nbytes);
275
276 #if APR_HAS_MMAP
277 /**
278  * Send an MMAP'ed file to the client
279  * @param mm The MMAP'ed file to send
280  * @param r The current request
281  * @param offset The offset into the MMAP to start sending
282  * @param length The amount of data to send
283  * @return The number of bytes sent
284  */
285 AP_DECLARE(apr_size_t) ap_send_mmap(apr_mmap_t *mm,
286                                     request_rec *r,
287                                     apr_size_t offset,
288                                     apr_size_t length);
289 #endif
290
291
292 /**
293  * Register a new request method, and return the offset that will be
294  * associated with that method.
295  *
296  * @param p        The pool to create registered method numbers from.
297  * @param methname The name of the new method to register.
298  * @return         An int value representing an offset into a bitmask.
299  */
300 AP_DECLARE(int) ap_method_register(apr_pool_t *p, const char *methname);
301
302 /**
303  * Initialize the method_registry and allocate memory for it.
304  *
305  * @param p Pool to allocate memory for the registry from.
306  */
307 AP_DECLARE(void) ap_method_registry_init(apr_pool_t *p);
308
309 /**
310  * This is a convenience macro to ease with checking a mask
311  * against a method name.
312  */
313 #define AP_METHOD_CHECK_ALLOWED(mask, methname) \
314     ((mask) & (AP_METHOD_BIT << ap_method_number_of((methname))))
315
316 /**
317  * Create a new method list with the specified number of preallocated
318  * slots for extension methods.
319  *
320  * @param   p       Pointer to a pool in which the structure should be
321  *                  allocated.
322  * @param   nelts   Number of preallocated extension slots
323  * @return  Pointer to the newly created structure.
324  */
325 AP_DECLARE(ap_method_list_t *) ap_make_method_list(apr_pool_t *p, int nelts);
326
327
328 /**
329  * Copy a method list
330  *
331  * @param   dest List to copy to
332  * @param   src  List to copy from
333  */
334 AP_DECLARE(void) ap_copy_method_list(ap_method_list_t *dest,
335                                      ap_method_list_t *src);
336
337 /**
338  * Search for an HTTP method name in an ap_method_list_t structure, and
339  * return true if found.
340  *
341  * @param   method  String containing the name of the method to check.
342  * @param   l       Pointer to a method list, such as r->allowed_methods.
343  * @return  1 if method is in the list, otherwise 0
344  */
345 AP_DECLARE(int) ap_method_in_list(ap_method_list_t *l, const char *method);
346
347 /**
348  * Add an HTTP method name to an ap_method_list_t structure if it isn't
349  * already listed.
350  *
351  * @param   method  String containing the name of the method to check.
352  * @param   l       Pointer to a method list, such as r->allowed_methods.
353  * @return  None.
354  */
355 AP_DECLARE(void) ap_method_list_add(ap_method_list_t *l, const char *method);
356
357 /**
358  * Remove an HTTP method name from an ap_method_list_t structure.
359  *
360  * @param   l       Pointer to a method list, such as r->allowed_methods.
361  * @param   method  String containing the name of the method to remove.
362  * @return  None.
363  */
364 AP_DECLARE(void) ap_method_list_remove(ap_method_list_t *l,
365                                        const char *method);
366
367 /**
368  * Reset a method list to be completely empty.
369  *
370  * @param   l       Pointer to a method list, such as r->allowed_methods.
371  * @return  None.
372  */
373 AP_DECLARE(void) ap_clear_method_list(ap_method_list_t *l);
374
375 /**
376  * Set the content type for this request (r->content_type).
377  * @param r The current request
378  * @param ct The new content type
379  * @warning This function must be called to set r->content_type in order
380  * for the AddOutputFilterByType directive to work correctly.
381  */
382 AP_DECLARE(void) ap_set_content_type(request_rec *r, const char *ct);
383
384 /**
385  * Set the Accept-Ranges header for this response
386  * @param r The current request
387  */
388 AP_DECLARE(void) ap_set_accept_ranges(request_rec *r);
389
390
391 /* Hmmm... could macrofy these for now, and maybe forever, though the
392  * definitions of the macros would get a whole lot hairier.
393  */
394
395 /**
396  * Output one character for this request
397  * @param c the character to output
398  * @param r the current request
399  * @return The number of bytes sent
400  */
401 AP_DECLARE(int) ap_rputc(int c, request_rec *r);
402
403 /**
404  * Write a buffer for the current request
405  * @param buf The buffer to write
406  * @param nbyte The number of bytes to send from the buffer
407  * @param r The current request
408  * @return The number of bytes sent
409  */
410 AP_DECLARE(int) ap_rwrite(const void *buf, int nbyte, request_rec *r);
411
412 /**
413  * Output a string for the current request
414  * @param str The string to output
415  * @param r The current request
416  * @return The number of bytes sent
417  * @note ap_rputs may be implemented as macro or inline function
418  */
419 static APR_INLINE int ap_rputs(const char *str, request_rec *r)
420 {
421     return ap_rwrite(str, (int)strlen(str), r);
422 }
423
424 /**
425  * Write an unspecified number of strings to the request
426  * @param r The current request
427  * @param ... The strings to write
428  * @return The number of bytes sent
429  */
430 AP_DECLARE_NONSTD(int) ap_rvputs(request_rec *r,...)
431                        AP_FN_ATTR_SENTINEL;
432
433 /**
434  * Output data to the client in a printf format
435  * @param r The current request
436  * @param fmt The format string
437  * @param vlist The arguments to use to fill out the format string
438  * @return The number of bytes sent
439  */
440 AP_DECLARE(int) ap_vrprintf(request_rec *r, const char *fmt, va_list vlist);
441
442 /**
443  * Output data to the client in a printf format
444  * @param r The current request
445  * @param fmt The format string
446  * @param ... The arguments to use to fill out the format string
447  * @return The number of bytes sent
448  */
449 AP_DECLARE_NONSTD(int) ap_rprintf(request_rec *r, const char *fmt,...)
450                                 __attribute__((format(printf,2,3)));
451
452 /**
453  * Flush all of the data for the current request to the client
454  * @param r The current request
455  * @return 0 on success, -1 if an error occurred
456  */
457 AP_DECLARE(int) ap_rflush(request_rec *r);
458
459 /**
460  * Index used in custom_responses array for a specific error code
461  * (only use outside protocol.c is in getting them configured).
462  * @param status HTTP status code
463  * @return The index of the response
464  */
465 AP_DECLARE(int) ap_index_of_response(int status);
466
467 /**
468  * Return the Status-Line for a given status code (excluding the
469  * HTTP-Version field). If an invalid or unknown status code is
470  * passed, "500 Internal Server Error" will be returned.
471  * @param status The HTTP status code
472  * @return The Status-Line
473  */
474 AP_DECLARE(const char *) ap_get_status_line(int status);
475
476 /* Reading a block of data from the client connection (e.g., POST arg) */
477
478 /**
479  * Setup the client to allow Apache to read the request body.
480  * @param r The current request
481  * @param read_policy How the server should interpret a chunked
482  *                    transfer-encoding.  One of: <pre>
483  *    REQUEST_NO_BODY          Send 413 error if message has any body
484  *    REQUEST_CHUNKED_ERROR    Send 411 error if body without Content-Length
485  *    REQUEST_CHUNKED_DECHUNK  If chunked, remove the chunks for me.
486  * </pre>
487  * @return either OK or an error code
488  */
489 AP_DECLARE(int) ap_setup_client_block(request_rec *r, int read_policy);
490
491 /**
492  * Determine if the client has sent any data.  This also sends a
493  * 100 Continue response to HTTP/1.1 clients, so modules should not be called
494  * until the module is ready to read content.
495  * @warning Never call this function more than once.
496  * @param r The current request
497  * @return 0 if there is no message to read, 1 otherwise
498  */
499 AP_DECLARE(int) ap_should_client_block(request_rec *r);
500
501 /**
502  * Call this in a loop.  It will put data into a buffer and return the length
503  * of the input block
504  * @param r The current request
505  * @param buffer The buffer in which to store the data
506  * @param bufsiz The size of the buffer
507  * @return Number of bytes inserted into the buffer.  When done reading, 0
508  *         if EOF, or -1 if there was an error
509  */
510 AP_DECLARE(long) ap_get_client_block(request_rec *r, char *buffer, apr_size_t bufsiz);
511
512 /**
513  * Map specific APR codes returned by the filter stack to HTTP error
514  * codes, or the default status code provided. Use it as follows:
515  *
516  * return ap_map_http_request_error(rv, HTTP_BAD_REQUEST);
517  *
518  * If the filter has already handled the error, AP_FILTER_ERROR will
519  * be returned, which is cleanly passed through.
520  *
521  * These mappings imply that the filter stack is reading from the
522  * downstream client, the proxy will map these codes differently.
523  * @param rv APR status code
524  * @param status Default HTTP code should the APR code not be recognised
525  * @return Mapped HTTP status code
526  */
527 AP_DECLARE(int) ap_map_http_request_error(apr_status_t rv, int status);
528
529 /**
530  * In HTTP/1.1, any method can have a body.  However, most GET handlers
531  * wouldn't know what to do with a request body if they received one.
532  * This helper routine tests for and reads any message body in the request,
533  * simply discarding whatever it receives.  We need to do this because
534  * failing to read the request body would cause it to be interpreted
535  * as the next request on a persistent connection.
536  * @param r The current request
537  * @return error status if request is malformed, OK otherwise
538  */
539 AP_DECLARE(int) ap_discard_request_body(request_rec *r);
540
541 /**
542  * Setup the output headers so that the client knows how to authenticate
543  * itself the next time, if an authentication request failed.
544  * @param r The current request
545  */
546 AP_DECLARE(void) ap_note_auth_failure(request_rec *r);
547
548 /**
549  * @deprecated @see ap_note_auth_failure
550  */
551 AP_DECLARE(void) ap_note_basic_auth_failure(request_rec *r);
552
553 /**
554  * @deprecated @see ap_note_auth_failure
555  */
556 AP_DECLARE(void) ap_note_digest_auth_failure(request_rec *r);
557
558 /**
559  * This hook allows modules to add support for a specific auth type to
560  * ap_note_auth_failure
561  * @param r the current request
562  * @param auth_type the configured auth_type
563  * @return OK, DECLINED
564  */
565 AP_DECLARE_HOOK(int, note_auth_failure, (request_rec *r, const char *auth_type))
566
567 /**
568  * Get the password from the request headers
569  * @param r The current request
570  * @param pw The password as set in the headers
571  * @return 0 (OK) if it set the 'pw' argument (and assured
572  *         a correct value in r->user); otherwise it returns
573  *         an error code, either HTTP_INTERNAL_SERVER_ERROR if things are
574  *         really confused, HTTP_UNAUTHORIZED if no authentication at all
575  *         seemed to be in use, or DECLINED if there was authentication but
576  *         it wasn't Basic (in which case, the caller should presumably
577  *         decline as well).
578  */
579 AP_DECLARE(int) ap_get_basic_auth_pw(request_rec *r, const char **pw);
580
581 /**
582  * parse_uri: break apart the uri
583  * @warning Side Effects:
584  *    @li sets r->args to rest after '?' (or NULL if no '?')
585  *    @li sets r->uri to request uri (without r->args part)
586  *    @li sets r->hostname (if not set already) from request (scheme://host:port)
587  * @param r The current request
588  * @param uri The uri to break apart
589  */
590 AP_CORE_DECLARE(void) ap_parse_uri(request_rec *r, const char *uri);
591
592 /**
593  * Get the next line of input for the request
594  * @param s The buffer into which to read the line
595  * @param n The size of the buffer
596  * @param r The request
597  * @param fold Whether to merge continuation lines
598  * @return The length of the line, if successful
599  *         n, if the line is too big to fit in the buffer
600  *         -1 for miscellaneous errors
601  */
602 AP_DECLARE(int) ap_getline(char *s, int n, request_rec *r, int fold);
603
604 /**
605  * Get the next line of input for the request
606  *
607  * Note: on ASCII boxes, ap_rgetline is a macro which simply calls
608  *       ap_rgetline_core to get the line of input.
609  *
610  *       on EBCDIC boxes, ap_rgetline is a wrapper function which
611  *       translates ASCII protocol lines to the local EBCDIC code page
612  *       after getting the line of input.
613  *
614  * @param s Pointer to the pointer to the buffer into which the line
615  *          should be read; if *s==NULL, a buffer of the necessary size
616  *          to hold the data will be allocated from the request pool
617  * @param n The size of the buffer
618  * @param read The length of the line.
619  * @param r The request
620  * @param fold Whether to merge continuation lines
621  * @param bb Working brigade to use when reading buckets
622  * @return APR_SUCCESS, if successful
623  *         APR_ENOSPC, if the line is too big to fit in the buffer
624  *         Other errors where appropriate
625  */
626 #if APR_CHARSET_EBCDIC
627 AP_DECLARE(apr_status_t) ap_rgetline(char **s, apr_size_t n,
628                                      apr_size_t *read,
629                                      request_rec *r, int fold,
630                                      apr_bucket_brigade *bb);
631 #else /* ASCII box */
632 #define ap_rgetline(s, n, read, r, fold, bb) \
633         ap_rgetline_core((s), (n), (read), (r), (fold), (bb))
634 #endif
635
636 /** @see ap_rgetline */
637 AP_DECLARE(apr_status_t) ap_rgetline_core(char **s, apr_size_t n,
638                                           apr_size_t *read,
639                                           request_rec *r, int fold,
640                                           apr_bucket_brigade *bb);
641
642 /**
643  * Get the method number associated with the given string, assumed to
644  * contain an HTTP method.  Returns M_INVALID if not recognized.
645  * @param method A string containing a valid HTTP method
646  * @return The method number
647  */
648 AP_DECLARE(int) ap_method_number_of(const char *method);
649
650 /**
651  * Get the method name associated with the given internal method
652  * number.  Returns NULL if not recognized.
653  * @param p A pool to use for temporary allocations.
654  * @param methnum An integer value corresponding to an internal method number
655  * @return The name corresponding to the method number
656  */
657 AP_DECLARE(const char *) ap_method_name_of(apr_pool_t *p, int methnum);
658
659
660 /* Hooks */
661 /*
662  * pre_read_request --- run right before read_request_line(),
663  *                  and not run during any subrequests.
664  */
665 /**
666  * This hook allows modules to affect the request or connection immediately before
667  * the request has been read, and before any other phases have been processes.
668  * @param r The current request of the soon-to-be-read request
669  * @param c The connection
670  * @return None/void
671  */
672 AP_DECLARE_HOOK(void,pre_read_request,(request_rec *r, conn_rec *c))
673
674 /*
675  * post_read_request --- run right after read_request or internal_redirect,
676  *                  and not run during any subrequests.
677  */
678 /**
679  * This hook allows modules to affect the request immediately after the request
680  * has been read, and before any other phases have been processes.  This allows
681  * modules to make decisions based upon the input header fields
682  * @param r The current request
683  * @return OK or DECLINED
684  */
685 AP_DECLARE_HOOK(int,post_read_request,(request_rec *r))
686
687 /**
688  * This hook allows modules to perform any module-specific logging activities
689  * over and above the normal server things.
690  * @param r The current request
691  * @return OK, DECLINED, or HTTP_...
692  */
693 AP_DECLARE_HOOK(int,log_transaction,(request_rec *r))
694
695 /**
696  * This hook allows modules to retrieve the http scheme for a request.  This
697  * allows Apache modules to easily extend the schemes that Apache understands
698  * @param r The current request
699  * @return The http scheme from the request
700  */
701 AP_DECLARE_HOOK(const char *,http_scheme,(const request_rec *r))
702
703 /**
704  * Return the default port from the current request
705  * @param r The current request
706  * @return The current port
707  */
708 AP_DECLARE_HOOK(apr_port_t,default_port,(const request_rec *r))
709
710
711 #define AP_PROTOCOL_HTTP1               "http/1.1"
712
713 /**
714  * Determine the list of protocols available for a connection/request. This may
715  * be collected with or without any request sent, in which case the request is 
716  * NULL. Or it may be triggered by the request received, e.g. through the 
717  * "Upgrade" header.
718  *
719  * This hook will be run whenever protocols are being negotiated (ALPN as
720  * one example). It may also be invoked at other times, e.g. when the server
721  * wants to advertise protocols it is capable of switching to.
722  * 
723  * The identifiers for protocols are taken from the TLS extension type ALPN:
724  * https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xml
725  *
726  * If no protocols are added to the proposals, the server not perform any
727  * switch. If the protocol selected from the proposals is the protocol
728  * already in place, also no protocol switch will be invoked.
729  *
730  * The client may already have announced the protocols it is willing to
731  * accept. These will then be listed as offers. This parameter may also
732  * be NULL, indicating that offers from the client are not known and
733  * the hooks should propose all protocols that are valid for the
734  * current connection/request.
735  *
736  * All hooks are run, unless one returns an error. Proposals may contain
737  * duplicates. The order in which proposals are added is usually ignored.
738  * 
739  * @param c The current connection
740  * @param r The current request or NULL
741  * @param s The server/virtual host selected
742  * @param offers A list of protocol identifiers offered by the client or
743  *               NULL to indicated that the hooks are free to propose 
744  * @param proposals The list of protocol identifiers proposed by the hooks
745  * @return OK or DECLINED
746  */
747 AP_DECLARE_HOOK(int,protocol_propose,(conn_rec *c, request_rec *r,
748                                       server_rec *s,
749                                       const apr_array_header_t *offers,
750                                       apr_array_header_t *proposals))
751
752 /**
753  * Perform a protocol switch on the connection. The exact requirements for
754  * that depend on the protocol in place and the one switched to. The first 
755  * protocol module to handle the switch is the last module run.
756  * 
757  * For a connection level switch (r == NULL), the handler must on return
758  * leave the conn_rec in a state suitable for processing the switched
759  * protocol, e.g. correct filters in place.
760  *
761  * For a request triggered switch (r != NULL), the protocol switch is done
762  * before the response is sent out. When switching from "http/1.1" via Upgrade
763  * header, the 101 intermediate response will have been sent. The
764  * hook needs then to process the connection until it can be closed. Which
765  * the server will enforce on hook return.
766  * Any error the hook might encounter must already be sent by the hook itself
767  * to the client in whatever form the new protocol requires.
768  *
769  * @param c The current connection
770  * @param r The current request or NULL
771  * @param s The server/virtual host selected
772  * @param choices A list of protocol identifiers, normally the client's wishes
773  * @param proposals the list of protocol identifiers proposed by the hooks
774  * @return OK or DECLINED
775  */
776 AP_DECLARE_HOOK(int,protocol_switch,(conn_rec *c, request_rec *r,
777                                      server_rec *s,
778                                      const char *protocol))
779
780 /**
781  * Return the protocol used on the connection. Modules implementing
782  * protocol switching must register here and return the correct protocol
783  * identifier for connections they switched.
784  *
785  * To find out the protocol for the current connection, better call
786  * @see ap_get_protocol which internally uses this hook.
787  *
788  * @param c The current connection
789  * @return The identifier of the protocol in place or NULL
790  */
791 AP_DECLARE_HOOK(const char *,protocol_get,(const conn_rec *c))
792
793 /**
794  * Get the protocols that the connection and optional request may
795  * upgrade to - besides the protocol currently active on the connection. These
796  * values may be used to announce to a client what choices it has.
797  *
798  * If report_all == 0, only protocols more preferable than the one currently
799  * being used, are reported. Otherwise, all available protocols beside the
800  * current one are being reported.
801  *
802  * @param c The current connection
803  * @param r The current request or NULL
804  * @param s The server/virtual host selected or NULL
805  * @param report_all include also protocols less preferred than the current one
806  * @param pupgrades on return, possible protocols to upgrade to in descending order 
807  *                 of preference. Maybe NULL if none are available.    
808  */
809 AP_DECLARE(apr_status_t) ap_get_protocol_upgrades(conn_rec *c, request_rec *r, 
810                                                   server_rec *s, int report_all, 
811                                                   const apr_array_header_t **pupgrades);
812                                                   
813 /**
814  * Select a protocol for the given connection and optional request. Will return
815  * the protocol identifier selected which may be the protocol already in place
816  * on the connection. The selected protocol will be NULL if non of the given
817  * choices could be agreed upon (e.g. no proposal as made).
818  *
819  * A special case is where the choices itself is NULL (instead of empty). In
820  * this case there are no restrictions imposed on protocol selection.
821  *
822  * @param c The current connection
823  * @param r The current request or NULL
824  * @param s The server/virtual host selected
825  * @param choices A list of protocol identifiers, normally the client's wishes
826  * @return The selected protocol or NULL if no protocol could be agreed upon
827  */
828 AP_DECLARE(const char *) ap_select_protocol(conn_rec *c, request_rec *r, 
829                                             server_rec *s,
830                                             const apr_array_header_t *choices);
831
832 /**
833  * Perform the actual protocol switch. The protocol given must have been
834  * selected before on the very same connection and request pair.
835  *
836  * @param c The current connection
837  * @param r The current request or NULL
838  * @param s The server/virtual host selected
839  * @param protocol the protocol to switch to
840  * @return APR_SUCCESS, if caller may continue processing as usual
841  *         APR_EOF,     if caller needs to stop processing the connection
842  *         APR_EINVAL,  if the protocol is already in place
843  *         APR_NOTIMPL, if no module performed the switch
844  *         Other errors where appropriate
845  */
846 AP_DECLARE(apr_status_t) ap_switch_protocol(conn_rec *c, request_rec *r, 
847                                             server_rec *s,
848                                             const char *protocol);
849
850 /**
851  * Call the protocol_get hook to determine the protocol currently in use
852  * for the given connection.
853  *
854  * Unless another protocol has been switch to, will default to
855  * @see AP_PROTOCOL_HTTP1 and modules implementing a  new protocol must
856  * report a switched connection via the protocol_get hook.
857  *
858  * @param c The connection to determine the protocol for
859  * @return the protocol in use, never NULL
860  */
861 AP_DECLARE(const char *) ap_get_protocol(conn_rec *c);
862
863 /**
864  * Check if the given protocol is an allowed choice on the given
865  * combination of connection, request and server. 
866  *
867  * When server is NULL, it is taken from request_rec, unless
868  * request_rec is NULL. Then it is taken from the connection base
869  * server.
870  *
871  * @param c The current connection
872  * @param r The current request or NULL
873  * @param s The server/virtual host selected or NULL
874  * @param protocol the protocol to switch to
875  * @return != 0 iff protocol is allowed
876  */
877 AP_DECLARE(int) ap_is_allowed_protocol(conn_rec *c, request_rec *r,
878                                        server_rec *s, const char *protocol);
879
880 /** @see ap_bucket_type_error */
881 typedef struct ap_bucket_error ap_bucket_error;
882
883 /**
884  * @struct ap_bucket_error
885  * @brief  A bucket referring to an HTTP error
886  *
887  * This bucket can be passed down the filter stack to indicate that an
888  * HTTP error occurred while running a filter.  In order for this bucket
889  * to be used successfully, it MUST be sent as the first bucket in the
890  * first brigade to be sent from a given filter.
891  */
892 struct ap_bucket_error {
893     /** Number of buckets using this memory */
894     apr_bucket_refcount refcount;
895     /** The error code */
896     int status;
897     /** The error string */
898     const char    *data;
899 };
900
901 /** @see ap_bucket_type_error */
902 AP_DECLARE_DATA extern const apr_bucket_type_t ap_bucket_type_error;
903
904 /**
905  * Determine if a bucket is an error bucket
906  * @param e The bucket to inspect
907  * @return true or false
908  */
909 #define AP_BUCKET_IS_ERROR(e)         (e->type == &ap_bucket_type_error)
910
911 /**
912  * Make the bucket passed in an error bucket
913  * @param b The bucket to make into an error bucket
914  * @param error The HTTP error code to put in the bucket.
915  * @param buf An optional error string to put in the bucket.
916  * @param p A pool to allocate out of.
917  * @return The new bucket, or NULL if allocation failed
918  */
919 AP_DECLARE(apr_bucket *) ap_bucket_error_make(apr_bucket *b, int error,
920                 const char *buf, apr_pool_t *p);
921
922 /**
923  * Create a bucket referring to an HTTP error.
924  * @param error The HTTP error code to put in the bucket.
925  * @param buf An optional error string to put in the bucket.
926  * @param p A pool to allocate the error string out of.
927  * @param list The bucket allocator from which to allocate the bucket
928  * @return The new bucket, or NULL if allocation failed
929  */
930 AP_DECLARE(apr_bucket *) ap_bucket_error_create(int error, const char *buf,
931                                                 apr_pool_t *p,
932                                                 apr_bucket_alloc_t *list);
933
934 AP_DECLARE_NONSTD(apr_status_t) ap_byterange_filter(ap_filter_t *f, apr_bucket_brigade *b);
935 AP_DECLARE_NONSTD(apr_status_t) ap_http_header_filter(ap_filter_t *f, apr_bucket_brigade *b);
936 AP_DECLARE_NONSTD(apr_status_t) ap_content_length_filter(ap_filter_t *,
937                                                               apr_bucket_brigade *);
938 AP_DECLARE_NONSTD(apr_status_t) ap_old_write_filter(ap_filter_t *f, apr_bucket_brigade *b);
939
940 /**
941  * Sett up the protocol fields for subsidiary requests
942  * @param rnew New Sub Request
943  * @param r current request
944  */
945 AP_DECLARE(void) ap_set_sub_req_protocol(request_rec *rnew, const request_rec *r);
946
947 /**
948  * A wrapup function to keep the internal accounting straight.
949  * Indicates that there is no more content coming.
950  * @param sub_r Subrequest that is now compete
951  */
952 AP_DECLARE(void) ap_finalize_sub_req_protocol(request_rec *sub_r);
953
954 /**
955  * Send an interim (HTTP 1xx) response immediately.
956  * @param r The request
957  * @param send_headers Whether to send&clear headers in r->headers_out
958  */
959 AP_DECLARE(void) ap_send_interim_response(request_rec *r, int send_headers);
960
961 #ifdef __cplusplus
962 }
963 #endif
964
965 #endif  /* !APACHE_HTTP_PROTOCOL_H */
966 /** @} */