http_send.c: Fix a bug in http_post_select().
[paraslash.git] / http_send.c
1 /*
2  * Copyright (C) 2005-2008 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file http_send.c paraslash's http sender */
8
9 #include <sys/types.h>
10 #include <dirent.h>
11
12 #include "para.h"
13 #include "error.h"
14 #include "string.h"
15 #include "server.cmdline.h"
16 #include "afh.h"
17 #include "afs.h"
18 #include "server.h"
19 #include "http.h"
20 #include "vss.h"
21 #include "list.h"
22 #include "send.h"
23 #include "close_on_fork.h"
24 #include "net.h"
25 #include "fd.h"
26 #include "chunk_queue.h"
27 #include "acl.h"
28
29 /** Message sent to clients that do not send a valid get request. */
30 #define HTTP_ERR_MSG "HTTP/1.0 400 Bad Request\n"
31
32
33 /** The possible states of a client from the server's POV. */
34 enum http_status {
35         /** We accepted the connection on the tcp socket. */
36         HTTP_CONNECTED,
37         /** Successfully received the get request. */
38         HTTP_GOT_GET_REQUEST,
39         /** Connection is ready for sending audio data. */
40         HTTP_STREAMING,
41         /** We didn't receive a valid get request. */
42         HTTP_INVALID_GET_REQUEST
43 };
44
45 /** Clients will be kicked if there are more than that many bytes pending. */
46 #define MAX_BACKLOG 400000
47 /** The list of connected clients. */
48 static struct list_head clients;
49 /** The whitelist/blacklist. */
50 static struct list_head http_acl;
51
52 static int listen_fd = -1, numclients;
53
54 struct private_http_sender_data {
55         enum http_status status;
56 };
57
58 static int http_send_msg(struct sender_client *sc, const char *msg)
59 {
60         int ret = send_buffer(sc->fd, msg);
61
62         if (ret < 0)
63                 shutdown_client(sc);
64         return ret;
65 }
66
67 static void http_send_ok_msg(struct sender_client *sc)
68 {
69         PARA_INFO_LOG("sending http ok message to fd %d\n", sc->fd);
70         http_send_msg(sc, HTTP_OK_MSG);
71 }
72
73 static int http_send_err_msg(struct sender_client *sc)
74 {
75         PARA_NOTICE_LOG("sending bad request message to fd %d\n", sc->fd);
76         return http_send_msg(sc, HTTP_ERR_MSG);
77 }
78
79 static void http_shutdown_clients(void)
80 {
81         struct sender_client *sc, *tmp;
82         list_for_each_entry_safe(sc, tmp, &clients, node)
83                 shutdown_client(sc);
84 }
85
86 static void http_send(long unsigned current_chunk,
87         __a_unused long unsigned chunks_sent, const char *buf, size_t len)
88 {
89         struct sender_client *sc, *tmp;
90
91         list_for_each_entry_safe(sc, tmp, &clients, node) {
92                 struct private_http_sender_data *phsd = sc->private_data;
93                 if (phsd->status != HTTP_STREAMING)
94                         continue;
95                 send_chunk(sc, 0, current_chunk, buf, len);
96         }
97 }
98
99 static void http_post_select(fd_set *rfds, __a_unused fd_set *wfds)
100 {
101         int ret, i = -1, match;
102         struct sender_client *sc, *tmp;
103         struct private_http_sender_data *phsd;
104
105         if (listen_fd < 0)
106                 return;
107         list_for_each_entry_safe(sc, tmp, &clients, node) {
108                 i++;
109                 phsd = sc->private_data;
110 //              PARA_DEBUG_LOG("handling client %d: %s\n", i, remote_name(sc->fd));
111                 switch (phsd->status) {
112                 case HTTP_STREAMING: /* nothing to do */
113                         break;
114                 case HTTP_CONNECTED: /* need to recv get request */
115                         if (FD_ISSET(sc->fd, rfds)) {
116                                 if (recv_pattern(sc->fd, HTTP_GET_MSG, MAXLINE)
117                                                 < 0) {
118                                         phsd->status = HTTP_INVALID_GET_REQUEST;
119                                 } else {
120                                         phsd->status = HTTP_GOT_GET_REQUEST;
121                                         PARA_INFO_LOG("%s",
122                                                 "received get request\n");
123                                 }
124                         }
125                         break;
126                 case HTTP_GOT_GET_REQUEST: /* need to send ok msg */
127                         phsd->status = HTTP_STREAMING;
128                         http_send_ok_msg(sc);
129                         break;
130                 case HTTP_INVALID_GET_REQUEST: /* need to send err msg */
131                         if (http_send_err_msg(sc) >= 0)
132                                 shutdown_client(sc);
133                         break;
134                 }
135         }
136         if (!FD_ISSET(listen_fd, rfds))
137                 return;
138         ret = para_accept(listen_fd, NULL, 0);
139         if (ret < 0) {
140                 PARA_ERROR_LOG("%s\n", para_strerror(-ret));
141                 return;
142         }
143         sc = para_calloc(sizeof(*sc));
144         sc->fd = ret;
145         sc->name = make_message("%s", remote_name(sc->fd));
146         PARA_NOTICE_LOG("connection from %s (fd %d)\n", sc->name, sc->fd);
147         ret = -E_MAX_CLIENTS;
148         if (conf.http_max_clients_arg > 0 && numclients >=
149                         conf.http_max_clients_arg) {
150                 goto err_out;
151         }
152         match = acl_lookup(sc->fd, &http_acl);
153         PARA_DEBUG_LOG("acl lookup returned %d\n", match);
154         ret = -E_ACL_PERM;
155         if ((match && !conf.http_default_deny_given) ||
156                         (!match && conf.http_default_deny_given))
157                 goto err_out;
158         ret = mark_fd_nonblocking(sc->fd);
159         if (ret < 0)
160                 goto err_out;
161         phsd = para_malloc(sizeof(*phsd));
162         sc->private_data = phsd;
163         phsd->status = HTTP_CONNECTED;
164         sc->cq = cq_new(MAX_BACKLOG);
165         numclients++;
166         PARA_INFO_LOG("accepted client #%d: %s (fd %d)\n", numclients,
167                 sc->name, sc->fd);
168         para_list_add(&sc->node, &clients);
169         add_close_on_fork_list(sc->fd);
170         return;
171 err_out:
172         PARA_WARNING_LOG("%s\n", para_strerror(-ret));
173         close(sc->fd);
174         free(sc);
175 }
176
177 static void http_pre_select(int *max_fileno, fd_set *rfds, __a_unused fd_set *wfds)
178 {
179         struct sender_client *sc, *tmp;
180
181         if (listen_fd < 0)
182                 return;
183         para_fd_set(listen_fd, rfds, max_fileno);
184         list_for_each_entry_safe(sc, tmp, &clients, node) {
185                 struct private_http_sender_data *phsd = sc->private_data;
186                 if (phsd->status == HTTP_CONNECTED) /* need to recv get request */
187                         para_fd_set(sc->fd, rfds, max_fileno);
188         }
189 }
190
191 static int http_com_on(__a_unused struct sender_command_data *scd)
192 {
193         if (listen_fd >= 0)
194                 return 1;
195         return open_sender(IPPROTO_TCP, conf.http_port_arg);
196 }
197
198 static int http_com_off(__a_unused struct sender_command_data *scd)
199 {
200         if (listen_fd < 0)
201                 return 1;
202         PARA_NOTICE_LOG("closing http port %d\n", conf.http_port_arg);
203         close(listen_fd);
204         del_close_on_fork_list(listen_fd);
205         http_shutdown_clients();
206         listen_fd = -1;
207         return 1;
208 }
209
210 static int http_com_deny(struct sender_command_data *scd)
211 {
212         if (conf.http_default_deny_given)
213                 acl_del_entry(&http_acl, scd->addr, scd->netmask);
214         else
215                 acl_add_entry(&http_acl, scd->addr, scd->netmask);
216         return 1;
217 }
218
219 static int http_com_allow(struct sender_command_data *scd)
220 {
221         if (conf.http_default_deny_given)
222                 acl_add_entry(&http_acl, scd->addr, scd->netmask);
223         else
224                 acl_del_entry(&http_acl, scd->addr, scd->netmask);
225         return 1;
226 }
227
228 static char *http_info(void)
229 {
230         char *clnts = NULL, *ret;
231         struct sender_client *sc, *tmp_sc;
232
233         char *acl_contents = acl_get_contents(&http_acl);
234         list_for_each_entry_safe(sc, tmp_sc, &clients, node) {
235                 char *tmp = make_message("%s%s ", clnts? clnts : "", sc->name);
236                 free(clnts);
237                 clnts = tmp;
238         }
239         ret = make_message(
240                 "http status: %s\n"
241                 "http tcp port: %d\n"
242                 "http clients: %d\n"
243                 "http maximal number of clients: %d%s\n"
244                 "http connected clients: %s\n"
245                 "http access %s list: %s\n",
246                 (listen_fd >= 0)? "on" : "off",
247                 conf.http_port_arg,
248                 numclients,
249                 conf.http_max_clients_arg,
250                 conf.http_max_clients_arg > 0? "" : " (unlimited)",
251                 clnts? clnts : "(none)",
252                 conf.http_default_deny_given? "allow" : "deny",
253                 acl_contents? acl_contents : "(none)"
254         );
255         free(acl_contents);
256         free(clnts);
257         return ret;
258 }
259
260 static char *http_help(void)
261 {
262         return make_message(
263                 "usage: {on|off}\n"
264                 "usage: {allow|deny} IP mask\n"
265                 "example: allow 127.0.0.1 32\n"
266         );
267 }
268
269 /**
270  * The init function of the http sender.
271  *
272  * \param s Pointer to the http sender struct.
273  *
274  * It initializes all function pointers of \a s, the client list and the access
275  * control list. If the autostart option was given, the tcp port is opened.
276  */
277 void http_send_init(struct sender *s)
278 {
279         int ret;
280         INIT_LIST_HEAD(&clients);
281         s->info = http_info;
282         s->send = http_send;
283         s->pre_select = http_pre_select;
284         s->post_select = http_post_select;
285         s->shutdown_clients = http_shutdown_clients;
286         s->help = http_help;
287         s->client_cmds[SENDER_ON] = http_com_on;
288         s->client_cmds[SENDER_OFF] = http_com_off;
289         s->client_cmds[SENDER_DENY] = http_com_deny;
290         s->client_cmds[SENDER_ALLOW] = http_com_allow;
291         s->client_cmds[SENDER_ADD] = NULL;
292         s->client_cmds[SENDER_DELETE] = NULL;
293         acl_init(&http_acl, conf.http_access_arg, conf.http_access_given);
294         if (conf.http_no_autostart_given)
295                 return;
296         ret = open_sender(IPPROTO_TCP, conf.http_port_arg);
297         if (ret < 0)
298                 PARA_ERROR_LOG("%s\n", para_strerror(-ret));
299         else
300                 listen_fd = ret;
301 }