Add API calls for packet generator
[vpp.git] / vlib-api / vlibsocket / sockclnt_vlib.c
1 /*
2  *------------------------------------------------------------------
3  * sockclnt_vlib.c
4  *
5  * Copyright (c) 2009 Cisco and/or its affiliates.
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at:
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *------------------------------------------------------------------
18  */
19
20 #include <sys/types.h>
21 #include <sys/socket.h>
22 #include <unistd.h>
23 #include <netinet/in.h>
24 #include <sys/ioctl.h>
25 #include <vppinfra/byte_order.h>
26 #include <netdb.h>
27
28 #include <fcntl.h>
29 #include <sys/stat.h>
30
31 #include <vlibmemory/api.h>
32 #include <vlibsocket/api.h>
33
34 #include <vlibsocket/vl_socket_msg_enum.h>
35
36 #define vl_typedefs             /* define message structures */
37 #include <vlibsocket/vl_socket_api_h.h>
38 #undef vl_typedefs
39
40 /* instantiate all the print functions we know about */
41 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
42 #define vl_printfun
43 #include <vlibsocket/vl_socket_api_h.h>
44 #undef vl_printfun
45
46 /* instantiate all the endian swap functions we know about */
47 #define vl_endianfun
48 #include <vlibsocket/vl_socket_api_h.h>
49 #undef vl_endianfun
50
51 static void
52 vl_api_sockclnt_create_reply_t_handler (vl_api_sockclnt_create_reply_t * mp)
53 {
54   vl_api_registration_t *rp = socket_main.current_rp;
55
56   rp->server_handle = mp->handle;
57   rp->server_index = mp->index;
58 }
59
60 static void
61 vl_api_sockclnt_delete_reply_t_handler (vl_api_sockclnt_delete_reply_t * mp)
62 {
63   unix_main_t *um = &unix_main;
64   unix_file_t *uf = socket_main.current_uf;
65   vl_api_registration_t *rp = socket_main.current_rp;
66
67   unix_file_del (um, uf);
68   vl_free_socket_registration_index (rp->vl_api_registration_pool_index);
69 }
70
71 u32
72 sockclnt_open_index (char *client_name, char *hostname, int port)
73 {
74   vl_api_registration_t *rp;
75   unix_main_t *um = &unix_main;
76   unix_file_t template = { 0 };
77   int sockfd;
78   int one = 1;
79   int rv;
80   struct sockaddr_in serv_addr;
81   struct hostent *server;
82   vl_api_sockclnt_create_t *mp;
83   char my_hostname[64];
84
85   server = gethostbyname (hostname);
86   if (server == NULL)
87     {
88       clib_warning ("Couldn't translate server name %s", hostname);
89       return ~0;
90     }
91
92   /* Set up non-blocking server socket on CLIENT_API_SERVER_PORT */
93   sockfd = socket (AF_INET, SOCK_STREAM, 0);
94
95   if (sockfd < 0)
96     {
97       clib_unix_warning ("socket");
98       return ~0;
99     }
100
101   bzero ((char *) &serv_addr, sizeof (serv_addr));
102   serv_addr.sin_family = AF_INET;
103   bcopy ((char *) server->h_addr,
104          (char *) &serv_addr.sin_addr.s_addr, server->h_length);
105   serv_addr.sin_port = htons (port);
106
107   if (connect (sockfd, (const void *) &serv_addr, sizeof (serv_addr)) < 0)
108     {
109       clib_unix_warning ("Connect failure to (%s, %d)", hostname, port);
110       return ~0;
111     }
112
113   rv = ioctl (sockfd, FIONBIO, &one);
114   if (rv < 0)
115     {
116       clib_unix_warning ("FIONBIO");
117       return ~0;
118     }
119
120   pool_get (socket_main.registration_pool, rp);
121   memset (rp, 0, sizeof (*rp));
122   rp->registration_type = REGISTRATION_TYPE_SOCKET_CLIENT;
123   rp->vl_api_registration_pool_index = rp - socket_main.registration_pool;
124
125   template.read_function = vl_socket_read_ready;
126   template.write_function = vl_socket_write_ready;
127   template.file_descriptor = sockfd;
128   template.private_data = rp - socket_main.registration_pool;
129
130   rp->unix_file_index = unix_file_add (um, &template);
131   rp->name = format (0, "%s:%d", hostname, port);
132
133   mp = vl_msg_api_alloc (sizeof (*mp));
134   mp->_vl_msg_id = ntohs (VL_API_SOCKCLNT_CREATE);
135   mp->context = rp - socket_main.registration_pool;
136
137   if (gethostname (my_hostname, sizeof (my_hostname)) < 0)
138     {
139       clib_unix_warning ("gethostname");
140       strncpy (my_hostname, "unknown!", sizeof (my_hostname) - 1);
141     }
142   strncpy ((char *) mp->name, my_hostname, sizeof (mp->name) - 1);
143
144   vl_msg_api_send (rp, (u8 *) mp);
145   return rp - socket_main.registration_pool;
146 }
147
148 void
149 sockclnt_close_index (u32 index)
150 {
151   vl_api_sockclnt_delete_t *mp;
152   vl_api_registration_t *rp;
153
154   /* Don't crash / assert if fed garbage */
155   if (pool_is_free_index (socket_main.registration_pool, index))
156     {
157       clib_warning ("registration_pool index %d already free", index);
158       return;
159     }
160   rp = pool_elt_at_index (socket_main.registration_pool, index);
161
162   mp = vl_msg_api_alloc (sizeof (*mp));
163   mp->_vl_msg_id = ntohs (VL_API_SOCKCLNT_DELETE);
164   mp->handle = rp->server_handle;
165   mp->index = rp->server_index;
166   vl_msg_api_send (rp, (u8 *) mp);
167 }
168
169 vl_api_registration_t *
170 sockclnt_get_registration (u32 index)
171 {
172   return pool_elt_at_index (socket_main.registration_pool, index);
173 }
174
175 /*
176  * Both rx and tx msgs MUST be initialized, or we'll have
177  * precisely no idea how many bytes to write into the API trace...
178  */
179 #define foreach_sockclnt_api_msg                        \
180 _(SOCKCLNT_CREATE_REPLY, sockclnt_create_reply)         \
181 _(SOCKCLNT_DELETE_REPLY, sockclnt_delete_reply)
182
183
184 static clib_error_t *
185 sockclnt_vlib_api_init (vlib_main_t * vm)
186 {
187 #define _(N,n)                                                  \
188     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
189                            vl_api_##n##_t_handler,              \
190                            vl_noop_handler,                     \
191                            vl_api_##n##_t_endian,               \
192                            vl_api_##n##_t_print,                \
193                            sizeof(vl_api_##n##_t), 1);
194   foreach_sockclnt_api_msg;
195 #undef _
196   return 0;
197 }
198
199 VLIB_API_INIT_FUNCTION (sockclnt_vlib_api_init);
200
201 /*
202  * fd.io coding-style-patch-verification: ON
203  *
204  * Local Variables:
205  * eval: (c-set-style "gnu")
206  * End:
207  */