Allow configuring DSCP on controller and manager connections.
[cascardo/ovs.git] / ofproto / collectors.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18
19 #include "collectors.h"
20
21 #include <errno.h>
22 #include <stdlib.h>
23 #include <sys/socket.h>
24 #include <unistd.h>
25
26 #include "socket-util.h"
27 #include "sset.h"
28 #include "util.h"
29 #include "vlog.h"
30
31 VLOG_DEFINE_THIS_MODULE(collectors);
32
33 struct collectors {
34     int *fds;                     /* Sockets. */
35     size_t n_fds;                 /* Number of sockets. */
36 };
37
38 /* Opens the targets specified in 'targets' for sending UDP packets.  This is
39  * useful for e.g. sending NetFlow or sFlow packets.  Returns 0 if successful,
40  * otherwise a positive errno value if opening at least one collector failed.
41  *
42  * Each target in 'targets' should be a string in the format "<host>[:<port>]".
43  * <port> may be omitted if 'default_port' is nonzero, in which case it
44  * defaults to 'default_port'.
45  *
46  * '*collectorsp' is set to a null pointer if no targets were successfully
47  * added, otherwise to a new collectors object if at least one was successfully
48  * added.  Thus, even on a failure return, it is possible that '*collectorsp'
49  * is nonnull, and even on a successful return, it is possible that
50  * '*collectorsp' is null, if 'target's is an empty sset. */
51 int
52 collectors_create(const struct sset *targets, uint16_t default_port,
53                   struct collectors **collectorsp)
54 {
55     struct collectors *c;
56     const char *name;
57     int retval = 0;
58
59     c = xmalloc(sizeof *c);
60     c->fds = xmalloc(sizeof *c->fds * sset_count(targets));
61     c->n_fds = 0;
62     SSET_FOR_EACH (name, targets) {
63         int error;
64         int fd;
65
66         error = inet_open_active(SOCK_DGRAM, name, default_port, NULL, &fd,
67                                  DSCP_INVALID);
68         if (fd >= 0) {
69             c->fds[c->n_fds++] = fd;
70         } else {
71             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
72
73             VLOG_WARN_RL(&rl, "couldn't open connection to collector %s (%s)",
74                          name, strerror(error));
75             if (!retval) {
76                 retval = error;
77             }
78         }
79     }
80
81     if (c->n_fds) {
82         *collectorsp = c;
83     } else {
84         collectors_destroy(c);
85         *collectorsp = NULL;
86     }
87
88     return retval;
89 }
90
91 /* Destroys 'c'. */
92 void
93 collectors_destroy(struct collectors *c)
94 {
95     if (c) {
96         size_t i;
97
98         for (i = 0; i < c->n_fds; i++) {
99             close(c->fds[i]);
100         }
101         free(c->fds);
102         free(c);
103     }
104 }
105
106 /* Sends the 'n'-byte 'payload' to each of the collectors in 'c'. */
107 void
108 collectors_send(const struct collectors *c, const void *payload, size_t n)
109 {
110     if (c) {
111         size_t i;
112
113         for (i = 0; i < c->n_fds; i++) {
114             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
115             if (send(c->fds[i], payload, n, 0) == -1) {
116                 VLOG_WARN_RL(&rl, "sending to collector failed: %s",
117                              strerror(errno));
118             }
119         }
120     }
121 }
122
123 int
124 collectors_count(const struct collectors *c)
125 {
126     return c ? c->n_fds : 0;
127 }