/[hydra]/hydra/src/boa.h
ViewVC logotype

Annotation of /hydra/src/boa.h

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.16 - (hide annotations)
Sat Sep 28 08:51:19 2002 UTC (21 years, 6 months ago) by nmav
Branch: MAIN
Changes since 1.15: +2 -2 lines
File MIME type: text/plain
*** empty log message ***

1 nmav 1.1 /*
2     * Boa, an http server
3     * Copyright (C) 1995 Paul Phillips <paulp@go2net.com>
4     * Some changes Copyright (C) 1996-99 Larry Doolittle <ldoolitt@jlab.org>
5     * Some changes Copyright (C) 1997-99 Jon Nelson <jnelson@boa.org>
6     *
7     * This program is free software; you can redistribute it and/or modify
8     * it under the terms of the GNU General Public License as published by
9     * the Free Software Foundation; either version 1, or (at your option)
10     * any later version.
11     *
12     * This program is distributed in the hope that it will be useful,
13     * but WITHOUT ANY WARRANTY; without even the implied warranty of
14     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15     * GNU General Public License for more details.
16     *
17     * You should have received a copy of the GNU General Public License
18     * along with this program; if not, write to the Free Software
19     * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20     *
21     */
22    
23 nmav 1.16 /* $Id: boa.h,v 1.15 2002/09/28 08:50:07 nmav Exp $*/
24 nmav 1.1
25     #ifndef _BOA_H
26     #define _BOA_H
27    
28     #include <errno.h>
29     #include <stdlib.h> /* malloc, free, etc. */
30     #include <stdio.h> /* stdin, stdout, stderr */
31     #include <string.h> /* strdup */
32     #include <ctype.h>
33     #include <time.h> /* localtime, time */
34     #include <pwd.h>
35     #include <grp.h>
36     #include <unistd.h>
37     #include <fcntl.h>
38     #include <limits.h> /* OPEN_MAX */
39     #include <setjmp.h>
40    
41     #include <netdb.h>
42     #include <netinet/in.h>
43    
44     #include <sys/mman.h>
45     #include <sys/select.h>
46     #include <sys/types.h> /* socket, bind, accept */
47     #include <sys/socket.h> /* socket, bind, accept, setsockopt, */
48     #include <sys/stat.h> /* open */
49    
50     #include "compat.h" /* oh what fun is porting */
51     #include "defines.h"
52 nmav 1.14 #include "hic.h"
53 nmav 1.10
54     #ifdef ENABLE_SMP
55     # include <pthread.h>
56     #endif
57 nmav 1.4
58     #ifdef HAVE_NETINET_TCP_H
59     # include <netinet/tcp.h>
60     #endif
61    
62 nmav 1.1 #include "globals.h"
63    
64     /* alias */
65 nmav 1.7 void add_alias(char* hostname, char *fakename, char *realname, int script);
66 nmav 1.1 int translate_uri(request * req);
67     int init_script_alias(request * req, alias * current, int uri_len);
68 nmav 1.7 void dump_alias( virthost*);
69 nmav 1.5
70     /* virthost */
71     void add_virthost(const char *host, const char *ip, const char* document_root, const char* user_dir);
72     virthost *find_virthost(const char *host, int hostlen);
73 nmav 1.6 void dump_virthost(void);
74 nmav 1.9
75     /* directory_index */
76     char *find_and_open_directory_index(const char *directory, int dirlen, int* fd);
77     void dump_directory_index(void);
78     void add_directory_index( const char* index);
79     char* find_default_directory_index( void);
80 nmav 1.1
81     /* config */
82     void read_config_files(void);
83    
84     /* escape */
85     #include "escape.h"
86    
87     /* get */
88    
89     int init_get(server_params*, request * req);
90     int process_get(server_params*, request * req);
91     int get_dir(request * req, struct stat *statbuf);
92 nmav 1.11 const char* hydra_method_str( int method);
93 nmav 1.1
94     /* hash */
95     unsigned get_mime_hash_value(char *extension);
96     char *get_mime_type(char *filename);
97     char *get_home_dir(char *name);
98     void dump_mime(void);
99     void dump_passwd(void);
100     void show_hash_stats(void);
101    
102 nmav 1.15 int get_hash_value( const char* str);
103    
104     #define get_alias_hash_value(x) (get_hash_value(x)%ALIAS_HASHTABLE_SIZE)
105     #define get_host_hash_value(x) (get_hash_value(x)%VIRTHOST_HASHTABLE_SIZE)
106 nmav 1.16 #define get_hic_module_hash_value(x) (get_hash_value(x)%MODULE_HASHTABLE_SIZE)
107 nmav 1.15
108 nmav 1.1 /* log */
109     void open_logs(void);
110     void close_access_log(void);
111     void log_access(request * req);
112     void log_error_doc(request * req);
113     void boa_perror(request * req, char *message);
114     void log_error_time(void);
115     void log_error_mesg(char *file, int line, char *mesg);
116    
117     /* queue */
118     void block_request(server_params*, request * req);
119     void ready_request(server_params*, request * req);
120     void dequeue(request ** head, request * req);
121     void enqueue(request ** head, request * req);
122    
123     /* read */
124     int read_header(server_params*, request * req);
125     int read_body(request * req);
126     int write_body(request * req);
127    
128     /* request */
129     request *new_request(server_params* params);
130 nmav 1.4 void get_request(server_params* params, socket_type*);
131     void process_requests(server_params* params, socket_type* server_s);
132 nmav 1.1 int process_header_end(server_params*, request * req);
133     int process_header_line(request * req);
134     int process_logline(request * req);
135     int process_option_line(request * req);
136     void add_accept_header(request * req, char *mime_type);
137     void free_requests(server_params* params);
138    
139     /* response */
140     void print_ka_phrase(request * req);
141     void print_content_type(request * req);
142     void print_content_length(request * req);
143     void print_last_modified(request * req);
144     void print_http_headers(request * req);
145    
146     void send_r_request_ok(request * req); /* 200 */
147 nmav 1.3 void send_r_request_partial(request * req); /* 206 */
148 nmav 1.1 void send_r_moved_perm(request * req, char *url); /* 301 */
149     void send_r_moved_temp(request * req, char *url, char *more_hdr); /* 302 */
150     void send_r_not_modified(request * req); /* 304 */
151     void send_r_bad_request(request * req); /* 400 */
152     void send_r_unauthorized(request * req, char *name); /* 401 */
153     void send_r_forbidden(request * req); /* 403 */
154     void send_r_not_found(request * req); /* 404 */
155 nmav 1.3 void send_r_range_unsatisfiable(request * req); /* 416 */
156 nmav 1.1 void send_r_error(request * req); /* 500 */
157     void send_r_not_implemented(request * req); /* 501 */
158     void send_r_bad_gateway(request * req); /* 502 */
159     void send_r_service_unavailable(request * req); /* 503 */
160     void send_r_bad_version(request * req); /* 505 */
161    
162     /* cgi */
163     void create_common_env(void);
164     void clear_common_env(void);
165 nmav 1.12 int add_cgi_env(request * req, const char *key, const char *value, int http_prefix);
166 nmav 1.1 int complete_env(request * req);
167     void create_argv(request * req, char **aargv);
168     int init_cgi(request * req);
169    
170     /* signals */
171     void init_signals(void);
172     void block_main_signals(void);
173     void unblock_main_signals(void);
174     void sighup_run(void);
175     void sigchld_run(void);
176     void sigalrm_run(void);
177     void sigusr1_run(void);
178     void sigterm_stage1_run(void);
179     void sigterm_stage2_run(void);
180    
181     /* smp */
182     void smp_reinit();
183    
184     /* util.c */
185     void clean_pathname(char *pathname);
186 nmav 1.2 void get_commonlog_time(char buf[30]);
187 nmav 1.1 void rfc822_time_buf(char *buf, time_t s);
188 nmav 1.3 void simple_itoa(unsigned long int i, char buf[22]);
189     int boa_atoi(const char *s);
190 nmav 1.1 char *escape_string(char *inp, char *buf);
191     int month2int(char *month);
192     int modified_since(time_t * mtime, char *if_modified_since);
193     char *to_upper(char *str);
194     int unescape_uri(char *uri, char **query_string);
195     int create_temporary_file(short want_unlink, char *storage, int size);
196     char * normalize_path(char *path);
197     int real_set_block_fd(int fd);
198     int real_set_nonblock_fd(int fd);
199    
200     /* buffer */
201 nmav 1.2 int req_write(request * req, const char *msg);
202 nmav 1.1 void reset_output_buffer(request *req);
203     int req_write_escape_http(request * req, char *msg);
204     int req_write_escape_html(request * req, char *msg);
205     int req_flush(request * req);
206     char *escape_uri(char *uri);
207    
208     /* timestamp */
209     void timestamp(void);
210    
211     /* mmap_cache */
212     struct mmap_entry *find_mmap( int data_fd, struct stat *s);
213     void release_mmap( struct mmap_entry *e);
214 nmav 1.8 void initialize_mmap( void);
215     void mmap_reinit( void);
216 nmav 1.1
217     /* sublog */
218     int open_gen_fd(char *spec);
219     int process_cgi_header(request * req);
220    
221     /* pipe */
222     int read_from_pipe(request * req);
223     int write_from_pipe(request * req);
224    
225     /* ip */
226     int bind_server(int server_s, char *ip, int port);
227     char *ascii_sockaddr(struct SOCKADDR *s, char *dest, int len);
228     int net_port(struct SOCKADDR *s);
229    
230     /* select */
231     void* select_loop(void*);
232 nmav 1.14
233     /* HIC stuff */
234 nmav 1.13 void* hic_main_loop(void*);
235    
236 nmav 1.15 void dump_hic_modules( void);
237 nmav 1.14 void add_hic_module(const char *module, const char* sym_prefix, const char* file_suffix);
238 nmav 1.15 hic_module_st *find_hic_appr_module(const char *content_type, int content_type_len);
239    
240 nmav 1.13 int hic_send_command( request *req, int out_fd);
241 nmav 1.1
242     #endif

webmaster@linux.gr
ViewVC Help
Powered by ViewVC 1.1.26