fade: Implement new mode "set".
[paraslash.git] / dccp_recv.c
1 /*
2  * Copyright (C) 2006-2013 Andre Noll <maan@systemlinux.org>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file dccp_recv.c paraslash's dccp receiver */
8
9 /*
10  * based on client.c of dccp-cs-0.01.tar.bz2,
11  * (C) 2005 Ian McDonald <imcdnzl@gmail.com>
12  */
13
14 #include <regex.h>
15 #include <sys/types.h>
16
17 #include "para.h"
18 #include "error.h"
19 #include "list.h"
20 #include "sched.h"
21 #include "ggo.h"
22 #include "buffer_tree.h"
23 #include "recv.h"
24 #include "string.h"
25 #include "net.h"
26 #include "fd.h"
27
28 #include "dccp_recv.cmdline.h"
29
30 static void dccp_recv_close(struct receiver_node *rn)
31 {
32         if (rn->fd > 0)
33                 close(rn->fd);
34         btr_pool_free(rn->btrp);
35 }
36
37 static int dccp_recv_open(struct receiver_node *rn)
38 {
39         struct dccp_recv_args_info *conf = rn->conf;
40         struct flowopts *fo = NULL;
41         uint8_t *ccids = NULL;
42         int fd, ret, i;
43
44         /* Copy CCID preference list (u8 array required) */
45         if (conf->ccid_given) {
46                 ccids = para_malloc(conf->ccid_given);
47                 fo    = flowopt_new();
48
49                 for (i = 0; i < conf->ccid_given; i++)
50                         ccids[i] = conf->ccid_arg[i];
51
52                 OPT_ADD(fo, SOL_DCCP, DCCP_SOCKOPT_CCID, ccids, i);
53         }
54
55         fd = makesock(IPPROTO_DCCP, 0, conf->host_arg, conf->port_arg, fo);
56         free(ccids);
57         if (fd < 0)
58                 return fd;
59         /*
60          * Disable unused CCIDs: the receiver does not send any application
61          * data to the server. By shutting down this unused path we reduce
62          * internal processing costs, as the unused CCIDs (in the kernel) are
63          * then bypassed.
64          */
65         if (shutdown(fd, SHUT_WR) < 0) {
66                 ret = -ERRNO_TO_PARA_ERROR(errno);
67                 goto err;
68         }
69         ret = mark_fd_nonblocking(fd);
70         if (ret < 0)
71                 goto err;
72         rn->btrp = btr_pool_new("dccp_recv", 320 * 1024);
73         rn->fd = fd;
74         return 1;
75 err:
76         close(fd);
77         return ret;
78 }
79
80 /**
81  * Check whether the host supports the requested 'ccid' arguments.
82  * \param conf DCCP receiver arguments.
83  * \return True if all CCIDs requested in \a conf are supported.
84  */
85 static bool dccp_recv_ccid_support_check(struct dccp_recv_args_info *conf)
86 {
87         uint8_t *ccids;
88         int i, j, nccids;
89
90         nccids = dccp_available_ccids(&ccids);
91         if (nccids <= 0)
92                 return false;
93
94         for (i = 0; i < conf->ccid_given; i++) {
95                 for (j = 0; j < nccids && ccids[j] != conf->ccid_arg[i]; j++)
96                         ;
97                 if (j == nccids) {
98                         PARA_ERROR_LOG("'CCID-%d' not supported on this host.\n",
99                                         conf->ccid_arg[i]);
100                         return false;
101                 }
102         }
103         return true;
104 }
105
106 static void *dccp_recv_parse_config(int argc, char **argv)
107 {
108         struct dccp_recv_args_info *tmp = para_calloc(sizeof(*tmp));
109
110         dccp_recv_cmdline_parser(argc, argv, tmp);
111         if (!dccp_recv_ccid_support_check(tmp))
112                 exit(EXIT_FAILURE);
113         return tmp;
114 }
115
116 static void dccp_recv_pre_select(struct sched *s, struct task *t)
117 {
118         struct receiver_node *rn = container_of(t, struct receiver_node, task);
119
120         t->error = 0;
121         if (generic_recv_pre_select(s, t) <= 0)
122                 return;
123         para_fd_set(rn->fd, &s->rfds, &s->max_fileno);
124 }
125
126 static int dccp_recv_post_select(struct sched *s, struct task *t)
127 {
128         struct receiver_node *rn = container_of(t, struct receiver_node, task);
129         struct btr_node *btrn = rn->btrn;
130         struct iovec iov[2];
131         int ret, iovcnt;
132         size_t num_bytes;
133
134         ret = task_get_notification(t);
135         if (ret < 0)
136                 goto out;
137         ret = btr_node_status(btrn, 0, BTR_NT_ROOT);
138         if (ret <= 0)
139                 goto out;
140         iovcnt = btr_pool_get_buffers(rn->btrp, iov);
141         ret = -E_DCCP_OVERRUN;
142         if (iovcnt == 0)
143                 goto out;
144         ret = readv_nonblock(rn->fd, iov, iovcnt, &s->rfds, &num_bytes);
145         if (num_bytes == 0)
146                 goto out;
147         if (num_bytes <= iov[0].iov_len) /* only the first buffer was filled */
148                 btr_add_output_pool(rn->btrp, num_bytes, btrn);
149         else { /* both buffers contain data */
150                 btr_add_output_pool(rn->btrp, iov[0].iov_len, btrn);
151                 btr_add_output_pool(rn->btrp, num_bytes - iov[0].iov_len, btrn);
152         }
153 out:
154         if (ret < 0)
155                 btr_remove_node(&rn->btrn);
156         return ret;
157 }
158
159 static void dccp_recv_free_config(void *conf)
160 {
161         dccp_recv_cmdline_parser_free(conf);
162         free(conf);
163 }
164
165 /**
166  * The init function of the dccp receiver.
167  *
168  * \param r Pointer to the receiver struct to initialize.
169  *
170  * Initialize all function pointers of \a r.
171  */
172 void dccp_recv_init(struct receiver *r)
173 {
174         struct dccp_recv_args_info dummy;
175
176         dccp_recv_cmdline_parser_init(&dummy);
177         r->open = dccp_recv_open;
178         r->close = dccp_recv_close;
179         r->pre_select = dccp_recv_pre_select;
180         r->post_select = dccp_recv_post_select;
181         r->parse_config = dccp_recv_parse_config;
182         r->free_config = dccp_recv_free_config;
183         r->help = (struct ggo_help)DEFINE_GGO_HELP(dccp_recv);
184         dccp_recv_cmdline_parser_free(&dummy);
185 }