Update copyright on all non-GPL files
[sliver-openvswitch.git] / 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 retval;
76
77     if (sscanf(suffix, "%d", &dp_idx) != 1) {
78         fatal(0, "%s: bad peer name format", name);
79     }
80
81     netlink = xmalloc(sizeof *netlink);
82     netlink->vconn.class = &netlink_vconn_class;
83     netlink->vconn.connect_status = 0;
84     retval = dpif_open(dp_idx, true, &netlink->dp);
85     if (retval) {
86         free(netlink);
87         *vconnp = NULL;
88         return retval;
89     }
90     *vconnp = &netlink->vconn;
91     return 0;
92 }
93
94 static void
95 netlink_close(struct vconn *vconn) 
96 {
97     struct netlink_vconn *netlink = netlink_vconn_cast(vconn);
98     dpif_close(&netlink->dp);
99     free(netlink);
100 }
101
102 static int
103 netlink_recv(struct vconn *vconn, struct buffer **bufferp)
104 {
105     struct netlink_vconn *netlink = netlink_vconn_cast(vconn);
106     return dpif_recv_openflow(&netlink->dp, bufferp, false);
107 }
108
109 static int
110 netlink_send(struct vconn *vconn, struct buffer *buffer) 
111 {
112     struct netlink_vconn *netlink = netlink_vconn_cast(vconn);
113     int retval = dpif_send_openflow(&netlink->dp, buffer, false);
114     if (!retval) {
115         buffer_delete(buffer);
116     }
117     return retval;
118 }
119
120 static void
121 netlink_wait(struct vconn *vconn, enum vconn_wait_type wait) 
122 {
123     struct netlink_vconn *netlink = netlink_vconn_cast(vconn);
124     short int events = 0;
125     switch (wait) {
126     case WAIT_RECV:
127         events = POLLIN;
128         break;
129
130     case WAIT_SEND:
131         events = 0;
132         break;
133
134     default:
135         NOT_REACHED();
136     }
137     poll_fd_wait(nl_sock_fd(netlink->dp.sock), events, NULL);
138 }
139
140 struct vconn_class netlink_vconn_class = {
141     .name = "nl",
142     .open = netlink_open,
143     .close = netlink_close,
144     .recv = netlink_recv,
145     .send = netlink_send,
146     .wait = netlink_wait,
147 };