6353396df62c67a29dca52a715dae62a2a662418
[vpp.git] / vpp / vpp-api / test_ha.c
1 /*
2  *------------------------------------------------------------------
3  * api.c - message handler registration
4  *
5  * Copyright (c) 2010 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 <stdio.h>
21 #include <stdlib.h>
22 #include <sys/types.h>
23 #include <sys/mman.h>
24 #include <sys/stat.h>
25 #include <netinet/in.h>
26 #include <signal.h>
27 #include <pthread.h>
28 #include <unistd.h>
29 #include <time.h>
30 #include <fcntl.h>
31 #include <string.h>
32 #include <vppinfra/clib.h>
33 #include <vppinfra/vec.h>
34 #include <vppinfra/hash.h>
35 #include <vppinfra/bitmap.h>
36 #include <vppinfra/fifo.h>
37 #include <vppinfra/time.h>
38 #include <vppinfra/mheap.h>
39 #include <vppinfra/heap.h>
40 #include <vppinfra/pool.h>
41 #include <vppinfra/format.h>
42 #include <vppinfra/error.h>
43
44 #include <vnet/vnet.h>
45 #include <vlib/vlib.h>
46 #include <vlib/unix/unix.h>
47 #include <vlibapi/api.h>
48 #include <vlibmemory/api.h>
49 #include <svm.h>
50 #include <svmdb.h>
51
52 #include <vpp-api/vpe_msg_enum.h>
53
54 #include <vnet/ip/ip.h>
55
56 #define f64_endian(a)
57 #define f64_print(a,b)
58
59 #define vl_typedefs             /* define message structures */
60 #include <vpp-api/vpe_all_api_h.h>
61 #undef vl_typedefs
62
63 #define vl_endianfun            /* define message structures */
64 #include <vpp-api/vpe_all_api_h.h>
65 #undef vl_endianfun
66
67 /* instantiate all the print functions we know about */
68 #define vl_print(handle, ...)
69 #define vl_printfun
70 #include <vpp-api/vpe_all_api_h.h>
71 #undef vl_printfun
72
73 vl_shmem_hdr_t *shmem_hdr;
74
75 typedef struct
76 {
77   u32 pings_sent;
78   u32 pings_replied;
79   volatile u32 signal_received;
80
81   /* convenience */
82   unix_shared_memory_queue_t *vl_input_queue;
83   u32 my_client_index;
84   svmdb_client_t *svmdb_client;
85 } test_main_t;
86
87 test_main_t test_main;
88
89 static void vl_api_control_ping_reply_t_handler
90   (vl_api_control_ping_reply_t * mp)
91 {
92   test_main_t *tm = &test_main;
93
94   fformat (stdout, "control ping reply from pid %d\n", ntohl (mp->vpe_pid));
95   tm->pings_replied++;
96 }
97
98 void
99 vlib_cli_output (struct vlib_main_t *vm, char *fmt, ...)
100 {
101   clib_warning ("BUG: vlib_cli_output callled...");
102 }
103
104 #define foreach_api_msg                         \
105 _(CONTROL_PING_REPLY,control_ping_reply)
106
107 void
108 ping (test_main_t * tm)
109 {
110   vl_api_control_ping_t *mp;
111
112   mp = vl_msg_api_alloc (sizeof (*mp));
113   memset (mp, 0, sizeof (*mp));
114   mp->_vl_msg_id = ntohs (VL_API_CONTROL_PING);
115   mp->client_index = tm->my_client_index;
116   mp->context = 0xdeadbeef;
117
118   vl_msg_api_send_shmem (tm->vl_input_queue, (u8 *) & mp);
119 }
120
121 static void
122 noop_handler (void *notused)
123 {
124 }
125
126 int
127 connect_to_vpe (char *name)
128 {
129   int rv = 0;
130   test_main_t *tm = &test_main;
131   api_main_t *am = &api_main;
132
133   rv = vl_client_connect_to_vlib ("/vpe-api", name, 32);
134   if (rv < 0)
135     return rv;
136
137 #define _(N,n)                                                  \
138     vl_msg_api_set_handlers(VL_API_##N, #n,                     \
139                            vl_api_##n##_t_handler,              \
140                            noop_handler,                        \
141                            vl_api_##n##_t_endian,               \
142                            vl_api_##n##_t_print,                \
143                            sizeof(vl_api_##n##_t), 1);
144   foreach_api_msg;
145 #undef _
146
147   shmem_hdr = api_main.shmem_hdr;
148   tm->vl_input_queue = shmem_hdr->vl_input_queue;
149   tm->my_client_index = am->my_client_index;
150   return 0;
151 }
152
153 int
154 disconnect_from_vpe (void)
155 {
156   vl_client_disconnect_from_vlib ();
157
158   return 0;
159 }
160
161 void
162 signal_handler (int signo)
163 {
164   test_main_t *tm = &test_main;
165
166   tm->signal_received = 1;
167 }
168
169
170 int
171 main (int argc, char **argv)
172 {
173   test_main_t *tm = &test_main;
174   api_main_t *am = &api_main;
175   u32 swt_pid = 0;
176   int connected = 0;
177
178   signal (SIGINT, signal_handler);
179
180   while (1)
181     {
182       if (tm->signal_received)
183         break;
184
185       if (am->shmem_hdr)
186         swt_pid = am->shmem_hdr->vl_pid;
187
188       /* If kill returns 0, the vpe-f process is alive */
189       if (kill (swt_pid, 0) == 0)
190         {
191           /* Try to connect */
192           if (connected == 0)
193             {
194               fformat (stdout, "Connect to VPE-f\n");
195               if (connect_to_vpe ("test_ha_client") >= 0)
196                 {
197                   tm->pings_sent = 0;
198                   tm->pings_replied = 0;
199                   connected = 1;
200                 }
201               else
202                 {
203                   fformat (stdout, "Connect failed, sleep and retry...\n");
204                   sleep (1);
205                   continue;
206                 }
207             }
208           tm->pings_sent++;
209           ping (tm);
210
211           sleep (1);
212
213           /* havent heard back in 3 seconds, disco / reco */
214           if ((tm->pings_replied + 3) <= tm->pings_sent)
215             {
216               fformat (stdout, "VPE-f pid %d not responding\n", swt_pid);
217               swt_pid = 0;
218               disconnect_from_vpe ();
219               connected = 0;
220             }
221         }
222       else
223         {
224           if (connected)
225             {
226               fformat (stdout, "VPE-f pid %d died\n", swt_pid);
227               swt_pid = 0;
228               disconnect_from_vpe ();
229               connected = 0;
230             }
231           sleep (1);
232         }
233     }
234
235   fformat (stdout, "Signal received, graceful exit\n");
236   disconnect_from_vpe ();
237   exit (0);
238 }
239
240 /*
241  * fd.io coding-style-patch-verification: ON
242  *
243  * Local Variables:
244  * eval: (c-set-style "gnu")
245  * End:
246  */