NEWS,md: Add introductory text for v0.5.7.
[paraslash.git] / send_common.c
index dea96081d43a51209a0d667cbf8f73a9ff11e08d..ec7ab67108334c85085b46b84ada1db45eb91a82 100644 (file)
@@ -1,14 +1,18 @@
 /*
- * Copyright (C) 2005-2010 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2005 Andre Noll <maan@tuebingen.mpg.de>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
 
 /** \file send_common.c Functions used by more than one paraslash sender. */
 
+#include <netinet/in.h>
+#include <sys/socket.h>
 #include <regex.h>
-#include <dirent.h>
 #include <osl.h>
+#include <arpa/inet.h>
+#include <sys/un.h>
+#include <netdb.h>
 
 #include "para.h"
 #include "error.h"
@@ -23,6 +27,7 @@
 #include "send.h"
 #include "close_on_fork.h"
 #include "chunk_queue.h"
+#include "sched.h"
 #include "vss.h"
 
 /** Clients will be kicked if there are more than that many bytes pending. */
@@ -113,7 +118,7 @@ int send_queued_chunks(int fd, struct chunk_queue *cq)
                int ret;
 
                cq_get(qc, &buf, &len);
-               ret = write_nonblock(fd, buf, len);
+               ret = xwrite(fd, buf, len);
                if (ret < 0)
                        return ret;
                cq_update(cq, ret);
@@ -154,7 +159,7 @@ void init_sender_status(struct sender_status *ss, char **access_arg,
  *
  * \return The string printed in the "si" command.
  */
-char *get_sender_info(struct sender_status *ss, const char *name)
+char *generic_sender_status(struct sender_status *ss, const char *name)
 {
        char *clnts = NULL, *ret;
        struct sender_client *sc, *tmp_sc;
@@ -166,14 +171,12 @@ char *get_sender_info(struct sender_status *ss, const char *name)
                clnts = tmp;
        }
        ret = make_message(
-               "%s sender:\n"
-               "\tstatus: %s\n"
-               "\tport: %s\n"
-               "\tnumber of connected clients: %d\n"
-               "\tmaximal number of clients: %d%s\n"
-               "\tconnected clients: %s\n"
-               "\taccess %s list: %s\n",
-               name,
+               "status: %s\n"
+               "port: %s\n"
+               "number of connected clients: %d\n"
+               "maximal number of clients: %d%s\n"
+               "connected clients: %s\n"
+               "access %s list: %s\n",
                (ss->listen_fd >= 0)? "on" : "off",
                stringify_port(ss->port, strcmp(name, "http") ? "dccp" : "tcp"),
                ss->num_clients,
@@ -261,6 +264,7 @@ void generic_com_off(struct sender_status *ss)
  * Accept a connection on the socket this server is listening on.
  *
  * \param ss The sender whose listening fd is ready for reading.
+ * \param rfds Passed to para_accept(),
  *
  * This must be called only if the socket fd of \a ss is ready for reading.  It
  * calls para_accept() to accept the connection and performs the following
@@ -309,7 +313,7 @@ struct sender_client *accept_sender_client(struct sender_status *ss, fd_set *rfd
        ss->num_clients++;
        sc = para_calloc(sizeof(*sc));
        sc->fd = fd;
-       sc->name = make_message("%s", remote_name(fd));
+       sc->name = para_strdup(remote_name(fd));
        sc->cq = cq_new(MAX_CQ_BYTES);
        para_list_add(&sc->node, &ss->client_list);
        add_close_on_fork_list(fd);
@@ -341,47 +345,51 @@ char *generic_sender_help(void)
 static int parse_fec_parms(const char *arg, struct sender_command_data *scd)
 {
        int32_t val;
-       char *a = para_strdup(arg), *b = a, *e = strchr(b, ':');
+       char *a = para_strdup(arg),
+            *b = strchr(a, ':'),
+            *c = strrchr(a, ':');
        int ret = -E_COMMAND_SYNTAX;
 
-       /* parse max slice bytes */
-       if (!e)
+       if (!b || !c)
                goto out;
-       *e = '\0';
-       ret = para_atoi32(b, &val);
-       if (ret < 0)
-               goto out;
-       ret = -ERRNO_TO_PARA_ERROR(EINVAL);
-       if (val < 0 || val > 65535)
-               goto out;
-       scd->max_slice_bytes = val;
-       /* parse data_slices_per_group */
-       b = e + 1;
-       e = strchr(b, ':');
-       ret = -E_COMMAND_SYNTAX;
-       if (!e)
-               goto out;
-       *e = '\0';
-       ret = para_atoi32(b, &val);
+       *b = *c = '\0';
+
+       ret = para_atoi32(a, &val);
        if (ret < 0)
                goto out;
-       ret = -ERRNO_TO_PARA_ERROR(EINVAL);
+
+       /* optional max_slice_bytes (0 means "use MTU") */
+       if (b == c) {
+               scd->max_slice_bytes = 0;
+       } else {
+               if (val < 0 || val > 65535)
+                       goto fec_einval;
+               scd->max_slice_bytes = val;
+
+               ret = para_atoi32(b + 1, &val);
+               if (ret < 0)
+                       goto out;
+       }
+
+       /* k = data_slices_per_group */
        if (val < 0 || val > 255)
-               goto out;
+               goto fec_einval;
        scd->data_slices_per_group = val;
-       /* parse slices_per_group */
-       b = e + 1;
-       ret = para_atoi32(b, &val);
+
+       /* n = slices_per_group */
+       ret = para_atoi32(c + 1, &val);
        if (ret < 0)
                goto out;
-       ret = -ERRNO_TO_PARA_ERROR(EINVAL);
        if (val < 0 || val < scd->data_slices_per_group)
-               goto out;
+               goto fec_einval;
        scd->slices_per_group = val;
        ret = 0;
 out:
        free(a);
        return ret;
+fec_einval:
+       ret = -ERRNO_TO_PARA_ERROR(EINVAL);
+       goto out;
 }
 
 /**
@@ -401,26 +409,22 @@ out:
  */
 int parse_fec_url(const char *arg, struct sender_command_data *scd)
 {
-       int ret;
-       ssize_t len = sizeof(scd->host);
        char *a = para_strdup(arg), *p = strchr(a, '/');
+       int ret = 0;
+
+       /* default fec parameters */
+       scd->max_slice_bytes       = 0;
+       scd->data_slices_per_group = 14;
+       scd->slices_per_group      = 16;
 
        if (p) {
                *p = '\0';
-               len = strlen(a);
-       }
-       ret = -ERRNO_TO_PARA_ERROR(EINVAL);
-       if (!parse_url(a, scd->host, len, &scd->port))
-               goto out;
-       if (p) {
                ret = parse_fec_parms(p + 1, scd);
-               goto out;
+               if (ret < 0)
+                       goto out;
        }
-       /* use default fec parameters. */
-       scd->max_slice_bytes = 0;
-       scd->slices_per_group = 16;
-       scd->data_slices_per_group = 14;
-       ret = 0;
+       if (!parse_url(a, scd->host, sizeof(scd->host), &scd->port))
+               ret = -ERRNO_TO_PARA_ERROR(EINVAL);
 out:
        free(a);
        return ret;