2 * Copyright (C) 2006-2007 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
7 /** \file dccp_send.c paraslash's dccp sender */
10 * based on server.c of dccp-cs-0.01.tar.bz2,
11 * (C) 2005 Ian McDonald <imcdnzl@gmail.com>
14 #include <sys/types.h>
28 #include "close_on_fork.h"
29 #include "chunk_queue.h"
30 #include "server.cmdline.h"
32 /** the list of connected clients **/
33 static struct list_head clients
;
34 static int listen_fd
= -1;
35 static struct sender
*self
;
37 /** Maximal number of bytes in a chunk queue. */
38 #define DCCP_MAX_PENDING_BYTES 40000
40 /** describes one connected client */
42 /** the dccp socket */
44 /** The socket `name' of the client. */
46 /** the position of this client in the client list */
47 struct list_head node
;
48 /** non-zero if audio file header has been sent */
50 /** The list of pending chunks for this client. */
51 struct chunk_queue
*cq
;
54 static void dccp_pre_select( int *max_fileno
, fd_set
*rfds
,
55 __a_unused fd_set
*wfds
)
59 FD_SET(listen_fd
, rfds
);
60 *max_fileno
= PARA_MAX(*max_fileno
, listen_fd
);
63 static void dccp_post_select(fd_set
*rfds
, __a_unused fd_set
*wfds
)
65 struct dccp_client
*dc
;
68 if (!FD_ISSET(listen_fd
, rfds
))
70 ret
= para_accept(listen_fd
, NULL
, 0);
72 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret
));
75 dc
= para_calloc(sizeof(struct dccp_client
));
77 dc
->name
= make_message("%s", remote_name(dc
->fd
));
78 PARA_NOTICE_LOG("connection from %s\n", dc
->name
);
79 para_list_add(&dc
->node
, &clients
);
80 add_close_on_fork_list(dc
->fd
);
81 mark_fd_nonblocking(dc
->fd
);
82 dc
->cq
= cq_new(DCCP_MAX_PENDING_BYTES
);
85 static int dccp_open(void)
87 int ret
= para_listen(AF_UNSPEC
, IPPROTO_DCCP
, conf
.dccp_port_arg
);
92 add_close_on_fork_list(listen_fd
);
93 mark_fd_nonblocking(listen_fd
);
97 static void dccp_shutdown_client(struct dccp_client
*dc
)
99 PARA_DEBUG_LOG("shutting down %s (fd %d)\n", dc
->name
, dc
->fd
);
102 del_close_on_fork_list(dc
->fd
);
109 * ret: Negative on errors, zero if nothing was written and write returned
110 * EAGAIN, number of bytes written else.
112 static int dccp_write(int fd
, const char *buf
, size_t len
)
117 while (written
< len
) {
118 ret
= write(fd
, buf
+ written
, PARA_MIN(1024, len
- written
));
120 * Error handling: CCID3 has a sending wait queue which fills up and is
121 * emptied asynchronously. The EAGAIN case means that there is currently
122 * no space in the wait queue, but this can change at any moment and is
123 * thus not an error condition.
125 if (ret
< 0 && errno
== EAGAIN
)
128 PARA_ERROR_LOG("%s\n", strerror(errno
));
129 return -E_DCCP_WRITE
;
136 static int queue_chunk_or_shutdown(struct dccp_client
*dc
, long unsigned chunk_num
,
139 int ret
= cq_enqueue(dc
->cq
, chunk_num
, sent
);
141 PARA_NOTICE_LOG("enqueue error\n");
142 dccp_shutdown_client(dc
);
147 static int send_queued_chunks(struct dccp_client
*dc
)
149 struct queued_chunk
*qc
;
150 while ((qc
= cq_peek(dc
->cq
))) {
154 cq_get(qc
, &buf
, &len
);
155 ret
= dccp_write(dc
->fd
, buf
, len
);
158 cq_update(dc
->cq
, ret
);
166 static void dccp_send(long unsigned current_chunk
,
167 __a_unused
long unsigned chunks_sent
, const char *buf
, size_t len
)
169 struct dccp_client
*dc
, *tmp
;
174 if (listen_fd
< 0 || !len
)
177 list_for_each_entry_safe(dc
, tmp
, &clients
, node
) {
178 if (!dc
->header_sent
&& current_chunk
) {
179 header_buf
= vss_get_header(&header_len
);
180 if (header_buf
&& header_len
> 0) {
181 if (queue_chunk_or_shutdown(dc
, -1U, 0) < 0)
186 ret
= send_queued_chunks(dc
);
188 dccp_shutdown_client(dc
);
191 // PARA_DEBUG_LOG("writing %d bytes to fd %d\n", len, dc->fd);
192 ret
= dccp_write(dc
->fd
, buf
, len
);
194 PARA_NOTICE_LOG("%s\n", PARA_STRERROR(-ret
));
195 dccp_shutdown_client(dc
);
199 queue_chunk_or_shutdown(dc
, current_chunk
, ret
);
203 static void dccp_shutdown_clients(void)
205 struct dccp_client
*dc
, *tmp
;
207 list_for_each_entry_safe(dc
, tmp
, &clients
, node
)
208 dccp_shutdown_client(dc
);
211 static char *dccp_info(void)
215 struct dccp_client
*dc
, *tmp
;
218 list_for_each_entry_safe(dc
, tmp
, &clients
, node
)
220 buf
= make_message("dccp connected clients: %d\n", num_clients
);
224 static char *dccp_help(void)
226 return make_message("no help available\n");
230 * the init function of the dccp sender
232 * \param s pointer to the dccp sender struct
234 * It initializes all function pointers of \a s and starts
235 * listening on the given port.
237 void dccp_send_init(struct sender
*s
)
241 INIT_LIST_HEAD(&clients
);
244 s
->pre_select
= dccp_pre_select
;
245 s
->post_select
= dccp_post_select
;
246 s
->shutdown_clients
= dccp_shutdown_clients
;
248 s
->client_cmds
[SENDER_ON
] = NULL
;
249 s
->client_cmds
[SENDER_OFF
] = NULL
;
250 s
->client_cmds
[SENDER_DENY
] = NULL
;
251 s
->client_cmds
[SENDER_ALLOW
] = NULL
;
252 s
->client_cmds
[SENDER_ADD
] = NULL
;
253 s
->client_cmds
[SENDER_DELETE
] = NULL
;
257 PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret
));
258 s
->status
= SENDER_OFF
;
260 s
->status
= SENDER_ON
;