2 * Copyright (C) 2005-2011 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file http_send.c paraslash's http sender */
10 #include <sys/types.h>
18 #include "server.cmdline.h"
26 #include "close_on_fork.h"
29 #include "chunk_queue.h"
32 /** Message sent to clients that do not send a valid get request. */
33 #define HTTP_ERR_MSG "HTTP/1.0 400 Bad Request\n"
35 /** The possible states of a client from the server's POV. */
36 enum http_client_status
{
37 /** We accepted the connection on the tcp socket. */
39 /** Successfully received the get request. */
41 /** Connection is ready for sending audio data. */
43 /** We didn't receive a valid get request. */
44 HTTP_INVALID_GET_REQUEST
47 /** For each connected client, a structure of this type is maintained. */
48 struct private_http_sender_data
{
49 /** The current state of this client. */
50 enum http_client_status status
;
53 static struct sender_status http_sender_status
, *hss
= &http_sender_status
;
55 static int http_send_msg(struct sender_client
*sc
, const char *msg
)
57 int ret
= send_buffer(sc
->fd
, msg
);
60 shutdown_client(sc
, hss
);
64 static void http_send_ok_msg(struct sender_client
*sc
)
66 PARA_INFO_LOG("sending http ok message to fd %d\n", sc
->fd
);
67 http_send_msg(sc
, HTTP_OK_MSG
);
70 static int http_send_err_msg(struct sender_client
*sc
)
72 PARA_NOTICE_LOG("sending bad request message to fd %d\n", sc
->fd
);
73 return http_send_msg(sc
, HTTP_ERR_MSG
);
76 static void http_shutdown_clients(void)
78 shutdown_clients(hss
);
81 static int queue_chunk_or_shutdown(struct sender_client
*sc
,
82 struct sender_status
*ss
, const char *buf
, size_t num_bytes
)
84 int ret
= cq_enqueue(sc
->cq
, buf
, num_bytes
);
86 shutdown_client(sc
, ss
);
91 * Send one chunk of audio data to a connected client.
93 * \param sc The client.
94 * \param ss The sender.
95 * \param current_chunk The number of the chunk to write.
96 * \param buf The data to write.
97 * \param len The number of bytes of \a buf.
98 * \param header_buf The audio file header.
99 * \param header_len The number of bytes of \a header_buf.
101 * On errors, the client is shut down. If only a part of the buffer could be
102 * written, the remainder is put into the chunk queue for that client.
104 static void http_send_chunk(struct sender_client
*sc
, struct sender_status
*ss
,
105 long unsigned current_chunk
, const char *buf
, size_t len
,
106 const char *header_buf
, size_t header_len
)
110 if (!sc
->header_sent
&& current_chunk
) {
111 if (header_buf
&& header_len
> 0) {
112 ret
= queue_chunk_or_shutdown(sc
, ss
, header_buf
, header_len
);
118 ret
= send_queued_chunks(sc
->fd
, sc
->cq
);
120 shutdown_client(sc
, ss
);
125 if (!ret
) { /* still data left in the queue */
126 ret
= queue_chunk_or_shutdown(sc
, ss
, buf
, len
);
129 ret
= write_nonblock(sc
->fd
, buf
, len
);
131 shutdown_client(sc
, ss
);
135 ret
= queue_chunk_or_shutdown(sc
, ss
, buf
+ ret
, len
- ret
);
138 PARA_NOTICE_LOG("%s\n", para_strerror(-ret
));
141 static void http_send(long unsigned current_chunk
,
142 __a_unused
long unsigned chunks_sent
, const char *buf
, size_t len
,
143 const char *header_buf
, size_t header_len
)
145 struct sender_client
*sc
, *tmp
;
147 list_for_each_entry_safe(sc
, tmp
, &hss
->client_list
, node
) {
148 struct private_http_sender_data
*phsd
= sc
->private_data
;
150 if (phsd
->status
== HTTP_STREAMING
)
151 http_send_chunk(sc
, hss
, current_chunk
, buf
, len
,
152 header_buf
, header_len
);
156 static void http_post_select(fd_set
*rfds
, __a_unused fd_set
*wfds
)
158 struct sender_client
*sc
, *tmp
;
159 struct private_http_sender_data
*phsd
;
162 list_for_each_entry_safe(sc
, tmp
, &hss
->client_list
, node
) {
163 phsd
= sc
->private_data
;
164 switch (phsd
->status
) {
165 case HTTP_STREAMING
: /* nothing to do */
167 case HTTP_CONNECTED
: /* need to recv get request */
168 ret
= read_pattern(sc
->fd
, HTTP_GET_MSG
, MAXLINE
, rfds
);
170 phsd
->status
= HTTP_INVALID_GET_REQUEST
;
172 phsd
->status
= HTTP_GOT_GET_REQUEST
;
173 PARA_INFO_LOG("received get request\n");
176 case HTTP_GOT_GET_REQUEST
: /* need to send ok msg */
177 phsd
->status
= HTTP_STREAMING
;
178 http_send_ok_msg(sc
);
180 case HTTP_INVALID_GET_REQUEST
: /* need to send err msg */
181 if (http_send_err_msg(sc
) >= 0)
182 shutdown_client(sc
, hss
);
186 sc
= accept_sender_client(hss
, rfds
);
189 phsd
= para_malloc(sizeof(*phsd
));
190 sc
->private_data
= phsd
;
191 phsd
->status
= HTTP_CONNECTED
;
194 static void http_pre_select(int *max_fileno
, fd_set
*rfds
, fd_set
*wfds
)
196 struct sender_client
*sc
, *tmp
;
198 if (hss
->listen_fd
< 0)
200 para_fd_set(hss
->listen_fd
, rfds
, max_fileno
);
201 list_for_each_entry_safe(sc
, tmp
, &hss
->client_list
, node
) {
202 struct private_http_sender_data
*phsd
= sc
->private_data
;
203 if (phsd
->status
== HTTP_CONNECTED
) /* need to recv get request */
204 para_fd_set(sc
->fd
, rfds
, max_fileno
);
205 if (phsd
->status
== HTTP_GOT_GET_REQUEST
||
206 phsd
->status
== HTTP_INVALID_GET_REQUEST
)
207 para_fd_set(sc
->fd
, wfds
, max_fileno
);
211 static int http_com_on(__a_unused
struct sender_command_data
*scd
)
213 return generic_com_on(hss
, IPPROTO_TCP
);
216 static int http_com_off(__a_unused
struct sender_command_data
*scd
)
218 generic_com_off(hss
);
222 static int http_com_deny(struct sender_command_data
*scd
)
224 generic_com_deny(scd
, hss
);
228 static int http_com_allow(struct sender_command_data
*scd
)
230 generic_com_allow(scd
, hss
);
234 static char *http_info(void)
236 return get_sender_info(hss
, "http");
240 * The init function of the http sender.
242 * \param s Pointer to the http sender struct.
244 * It initializes all function pointers of \a s, the client list and the access
245 * control list. If the autostart option was given, the tcp port is opened.
247 void http_send_init(struct sender
*s
)
252 s
->pre_select
= http_pre_select
;
253 s
->post_select
= http_post_select
;
254 s
->shutdown_clients
= http_shutdown_clients
;
255 s
->resolve_target
= NULL
;
256 s
->help
= generic_sender_help
;
257 s
->client_cmds
[SENDER_ON
] = http_com_on
;
258 s
->client_cmds
[SENDER_OFF
] = http_com_off
;
259 s
->client_cmds
[SENDER_DENY
] = http_com_deny
;
260 s
->client_cmds
[SENDER_ALLOW
] = http_com_allow
;
261 s
->client_cmds
[SENDER_ADD
] = NULL
;
262 s
->client_cmds
[SENDER_DELETE
] = NULL
;
264 init_sender_status(hss
, conf
.http_access_arg
, conf
.http_access_given
,
265 conf
.http_port_arg
, conf
.http_max_clients_arg
,
266 conf
.http_default_deny_given
);
267 if (conf
.http_no_autostart_given
)
269 ret
= generic_com_on(hss
, IPPROTO_TCP
);
271 PARA_ERROR_LOG("%s\n", para_strerror(-ret
));