Sun, 06 May 2012 10:09:27 +0200
added logging
1 | 1 | /* |
2 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. | |
3 | * | |
4 | * Copyright 2011 Olaf Wintermann. All rights reserved. | |
5 | * | |
6 | * Redistribution and use in source and binary forms, with or without | |
7 | * modification, are permitted provided that the following conditions are met: | |
8 | * | |
9 | * 1. Redistributions of source code must retain the above copyright | |
10 | * notice, this list of conditions and the following disclaimer. | |
11 | * | |
12 | * 2. Redistributions in binary form must reproduce the above copyright | |
13 | * notice, this list of conditions and the following disclaimer in the | |
14 | * documentation and/or other materials provided with the distribution. | |
15 | * | |
16 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | |
17 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | |
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | |
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | |
20 | * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | |
21 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | |
22 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | |
23 | * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | |
24 | * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | |
25 | * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | |
26 | * POSSIBILITY OF SUCH DAMAGE. | |
27 | */ | |
28 | ||
14
b8bf95b39952
New source folder layout
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
9
diff
changeset
|
29 | #include "../public/nsapi.h" |
1 | 30 | |
31 | #include <stdio.h> | |
32 | #include <stdlib.h> | |
33 | #include <fcntl.h> | |
34 | #include <sys/shm.h> | |
35 | #include <sys/types.h> | |
36 | #include <sys/ipc.h> | |
37 | #include <sys/socket.h> | |
38 | #include <sys/file.h> | |
39 | #include <netinet/in.h> | |
40 | #include <netdb.h> | |
41 | #include <stdio.h> | |
42 | #include <stdlib.h> | |
43 | #include <fcntl.h> | |
44 | #include <unistd.h> | |
45 | #include <strings.h> | |
46 | #include <stdbool.h> | |
47 | #include <pthread.h> | |
48 | ||
15
cff9c4101dd7
Replaced old utils with ucx
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
14
diff
changeset
|
49 | #include "../ucx/map.h" |
1 | 50 | #include "httplistener.h" |
51 | ||
52 | #include "session.h" | |
19
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
53 | #include "configmanager.h" |
1 | 54 | |
23
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
55 | UcxMap *listener_map = NULL; |
1 | 56 | |
57 | int start_all_listener() { | |
19
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
58 | ServerConfiguration *conf = cfgmgr_get_server_config(); |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
59 | UcxList *ls = conf->listeners; |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
60 | while(ls) { |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
61 | HttpListener *listener = ls->data; |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
62 | http_listener_start(listener); |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
63 | ls = ls->next; |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
64 | } |
1 | 65 | |
66 | return 0; | |
67 | } | |
68 | ||
69 | ||
70 | HttpListener* http_listener_new(ListenerConfig *conf) { | |
23
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
71 | if(listener_map == NULL) { |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
72 | listener_map = ucx_map_new(16); |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
73 | } |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
74 | |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
75 | HttpListener *fl = ucx_map_sstr_get(listener_map, conf->name); |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
76 | if(fl != NULL) { |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
77 | return fl; |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
78 | } |
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
79 | |
1 | 80 | HttpListener *listener = malloc(sizeof(HttpListener)); |
19
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
81 | listener->name = conf->name; |
1 | 82 | listener->session_handler = create_basic_session_handler(); |
83 | listener->nacceptors = conf->nacceptors; | |
23
a2c8fc23c90e
Added basic authentication
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
21
diff
changeset
|
84 | ucx_map_sstr_put(listener_map, listener->name, listener); |
1 | 85 | |
86 | struct sockaddr_in servaddr; /* server address */ | |
87 | ||
88 | /* init address structure */ | |
89 | memset(&servaddr, 0, sizeof(servaddr)); | |
90 | servaddr.sin_family = AF_INET; | |
91 | servaddr.sin_addr.s_addr = htonl(INADDR_ANY); | |
92 | servaddr.sin_port = htons(conf->port); | |
93 | ||
94 | /* create socket */ | |
95 | if((listener->server_socket = socket(AF_INET, SOCK_STREAM, 0)) == -1) { | |
96 | perror("Error: http_listener_new: socket"); | |
97 | return NULL; | |
98 | } | |
99 | ||
100 | int o = 1; | |
101 | setsockopt( | |
102 | listener->server_socket, | |
103 | SOL_SOCKET, SO_REUSEADDR, | |
104 | &o, | |
105 | sizeof(int)); | |
106 | ||
107 | /* bind server socket to address */ | |
108 | if(bind(listener->server_socket, (struct sockaddr*)&servaddr, sizeof(servaddr))){ | |
109 | perror("Error: http_listener_new: bind"); | |
20
7b235fa88008
Some fixes for mod_jk
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
19
diff
changeset
|
110 | printf("port: %d\n", conf->port); |
1 | 111 | return NULL; |
112 | } | |
113 | ||
114 | /* create acceptors */ | |
115 | listener->acceptors = calloc(listener->nacceptors, sizeof(void*)); | |
116 | for (int i=0;i<listener->nacceptors;i++) { | |
117 | listener->acceptors[i] = acceptor_new(listener); | |
118 | } | |
119 | ||
120 | return listener; | |
121 | } | |
122 | ||
123 | int http_listener_start(HttpListener *listener) { | |
124 | printf("INFO: start listener\n"); | |
125 | ||
21
627b09ee74e4
New configuration loader
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
20
diff
changeset
|
126 | if (listen(listener->server_socket, 256) == -1) { |
1 | 127 | perror("Error: http_listener_start: listen"); |
128 | return -1; | |
129 | } | |
130 | ||
131 | /* start acceptor threads */ | |
132 | for (int i=0;i<listener->nacceptors;i++) { | |
133 | acceptor_start(listener->acceptors[i]); | |
134 | } | |
19
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
135 | |
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
136 | return 0; |
1 | 137 | } |
138 | ||
139 | ||
140 | ||
141 | Acceptor* acceptor_new(HttpListener *listener) { | |
142 | Acceptor *acceptor = malloc(sizeof(Acceptor)); | |
143 | acceptor->listener = listener; | |
144 | return acceptor; | |
145 | } | |
146 | ||
147 | void acceptor_start(Acceptor *a) { | |
148 | if(pthread_create( | |
149 | &a->tid, | |
150 | NULL, | |
151 | (void*(*)(void*))acceptor_thread, | |
152 | a) != 0) | |
153 | { | |
154 | perror("Error: acceptor_start: pthread_create"); | |
155 | } | |
156 | } | |
157 | ||
158 | void* acceptor_thread(Acceptor *acceptor) { | |
159 | HttpListener *listener = acceptor->listener; | |
160 | ||
161 | for (;;) { | |
162 | /* accept connections */ | |
163 | struct sockaddr_in ca; | |
4
998844b5ed25
Added some protocol functions
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
1
diff
changeset
|
164 | socklen_t length = sizeof(ca); |
1 | 165 | int clientfd; |
166 | ||
167 | /* accept a connection */ | |
168 | clientfd = accept( | |
169 | listener->server_socket, | |
170 | (struct sockaddr*)&ca, | |
171 | &length); | |
172 | if (clientfd == -1) { | |
173 | perror("Error: acceptor_thread: accept"); | |
174 | continue; | |
175 | } | |
9
30e51941a673
Added mod_jk dependencies
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
4
diff
changeset
|
176 | |
1 | 177 | /* create Connection object */ |
178 | Connection *conn = malloc(sizeof(Connection)); | |
179 | conn->address = ca; | |
180 | conn->fd = clientfd; | |
19
d680536f8c2f
Added configuration manager
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
15
diff
changeset
|
181 | conn->listener = listener; |
1 | 182 | |
183 | /* enqueue the connection */ | |
184 | listener->session_handler->enqueue_connection( | |
185 | listener->session_handler, | |
186 | conn); | |
187 | ||
188 | /* ready for new connection */ | |
25
5dee29c7c530
Fixed config parser bug
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
189 | if(0) { |
5dee29c7c530
Fixed config parser bug
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
190 | break; |
5dee29c7c530
Fixed config parser bug
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
191 | } |
1 | 192 | } |
25
5dee29c7c530
Fixed config parser bug
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
193 | |
5dee29c7c530
Fixed config parser bug
Olaf Wintermann <olaf.wintermann@gmail.com>
parents:
23
diff
changeset
|
194 | return NULL; |
1 | 195 | } |