vconn: Make errors in vconn names non-fatal errors.
[openvswitch] / lib / vconn-netlink.c
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  * 
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  * 
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  * 
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  * 
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 #include "vconn.h"
35 #include <arpa/inet.h>
36 #include <assert.h>
37 #include <errno.h>
38 #include <netdb.h>
39 #include <poll.h>
40 #include <netinet/in.h>
41 #include <netinet/tcp.h>
42 #include <stdlib.h>
43 #include <string.h>
44 #include <unistd.h>
45 #include "openflow-netlink.h"
46 #include "buffer.h"
47 #include "dpif.h"
48 #include "netlink.h"
49 #include "poll-loop.h"
50 #include "socket-util.h"
51 #include "util.h"
52 #include "openflow.h"
53
54 #include "vlog.h"
55 #define THIS_MODULE VLM_VCONN_NETLINK
56
57 struct netlink_vconn
58 {
59     struct vconn vconn;
60     struct dpif dp;
61 };
62
63 static struct netlink_vconn *
64 netlink_vconn_cast(struct vconn *vconn) 
65 {
66     assert(vconn->class == &netlink_vconn_class);
67     return CONTAINER_OF(vconn, struct netlink_vconn, vconn); 
68 }
69
70 static int
71 netlink_open(const char *name, char *suffix, struct vconn **vconnp)
72 {
73     struct netlink_vconn *netlink;
74     int dp_idx;
75     int subscribe;
76     int retval;
77
78     subscribe = 1;
79     if (sscanf(suffix, "%d:%d", &dp_idx, &subscribe) < 1) {
80         error(0, "%s: syntax error", name);
81         return EAFNOSUPPORT;
82     }
83
84     netlink = xmalloc(sizeof *netlink);
85     netlink->vconn.class = &netlink_vconn_class;
86     netlink->vconn.connect_status = 0;
87     netlink->vconn.ip = 0;
88     retval = dpif_open(dp_idx, subscribe, &netlink->dp);
89     if (retval) {
90         free(netlink);
91         *vconnp = NULL;
92         return retval;
93     }
94     *vconnp = &netlink->vconn;
95     return 0;
96 }
97
98 static void
99 netlink_close(struct vconn *vconn) 
100 {
101     struct netlink_vconn *netlink = netlink_vconn_cast(vconn);
102     dpif_close(&netlink->dp);
103     free(netlink);
104 }
105
106 static int
107 netlink_recv(struct vconn *vconn, struct buffer **bufferp)
108 {
109     struct netlink_vconn *netlink = netlink_vconn_cast(vconn);
110     return dpif_recv_openflow(&netlink->dp, bufferp, false);
111 }
112
113 static int
114 netlink_send(struct vconn *vconn, struct buffer *buffer) 
115 {
116     struct netlink_vconn *netlink = netlink_vconn_cast(vconn);
117     int retval = dpif_send_openflow(&netlink->dp, buffer, false);
118     if (!retval) {
119         buffer_delete(buffer);
120     }
121     return retval;
122 }
123
124 static void
125 netlink_wait(struct vconn *vconn, enum vconn_wait_type wait) 
126 {
127     struct netlink_vconn *netlink = netlink_vconn_cast(vconn);
128     short int events = 0;
129     switch (wait) {
130     case WAIT_RECV:
131         events = POLLIN;
132         break;
133
134     case WAIT_SEND:
135         events = 0;
136         break;
137
138     default:
139         NOT_REACHED();
140     }
141     poll_fd_wait(nl_sock_fd(netlink->dp.sock), events);
142 }
143
144 struct vconn_class netlink_vconn_class = {
145     .name = "nl",
146     .open = netlink_open,
147     .close = netlink_close,
148     .recv = netlink_recv,
149     .send = netlink_send,
150     .wait = netlink_wait,
151 };