45011467ebd461d686f7ce5b175a44b4e7a2947c
[vpp.git] / vpp-japi / japi / vppjni.c
1 /*
2  * Copyright (c) 2015 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15 #include <vnet/vnet.h>
16
17 #define vl_api_version(n,v) static u32 vpe_api_version = (v);
18 #include <api/vpe.api.h>
19 #undef vl_api_version
20
21 #include <jni.h>
22 #include <japi/vppjni.h>
23 #include <japi/vppjni_bridge_domain.h>
24 #include <japi/vppjni_env.h>
25 #include <japi/org_openvpp_vppjapi_vppConn.h>
26 #include <japi/org_openvpp_vppjapi_vppApi.h>
27
28 #include <api/vpe_msg_enum.h>
29 #define vl_typedefs             /* define message structures */
30 #include <api/vpe_all_api_h.h>
31 #undef vl_typedefs
32
33 #define vl_endianfun
34 #include <api/vpe_all_api_h.h>
35 #undef vl_endianfun
36
37 /* instantiate all the print functions we know about */
38 #define vl_print(handle, ...)
39 #define vl_printfun
40 #include <api/vpe_all_api_h.h>
41 #undef vl_printfun
42
43 #define VPPJNI_DEBUG 0
44
45 #if VPPJNI_DEBUG == 1
46   #define DEBUG_LOG(...) clib_warning(__VA_ARGS__)
47 #else
48   #define DEBUG_LOG(...)
49 #endif
50
51 static int connect_to_vpe(char *name);
52
53 /*
54  * The Java runtime isn't compile w/ -fstack-protector,
55  * so we have to supply missing external references for the
56  * regular vpp libraries. Weak reference in case folks get religion
57  * at a later date...
58  */
59 void __stack_chk_guard (void) __attribute__((weak));
60 void __stack_chk_guard (void) {  }
61
62 BIND_JAPI_CLASS(vppBridgeDomainDetails, "()V");
63 BIND_JAPI_BOOL_FIELD(vppBridgeDomainDetails, arpTerm);
64 BIND_JAPI_BOOL_FIELD(vppBridgeDomainDetails, flood);
65 BIND_JAPI_BOOL_FIELD(vppBridgeDomainDetails, forward);
66 BIND_JAPI_BOOL_FIELD(vppBridgeDomainDetails, learn);
67 BIND_JAPI_BOOL_FIELD(vppBridgeDomainDetails, uuFlood);
68 BIND_JAPI_INT_FIELD(vppBridgeDomainDetails, bdId);
69 BIND_JAPI_STRING_FIELD(vppBridgeDomainDetails, name);
70 BIND_JAPI_STRING_FIELD(vppBridgeDomainDetails, bviInterfaceName);
71 BIND_JAPI_OBJ_FIELD(vppBridgeDomainDetails, interfaces, "[Lorg/openvpp/vppjapi/vppBridgeDomainInterfaceDetails;");
72
73 BIND_JAPI_CLASS(vppBridgeDomainInterfaceDetails, "()V");
74 BIND_JAPI_BYTE_FIELD(vppBridgeDomainInterfaceDetails, splitHorizonGroup);
75 BIND_JAPI_STRING_FIELD(vppBridgeDomainInterfaceDetails, interfaceName);
76
77 BIND_JAPI_CLASS(vppInterfaceCounters, "(JJJJJJJJJJJJJJJJJJJJJJ)V");
78 BIND_JAPI_CLASS(vppInterfaceDetails, "(ILjava/lang/String;I[BBBBBIBBIIBBBBIIII)V");
79 BIND_JAPI_CLASS(vppIPv4Address, "(IB)V");
80 BIND_JAPI_CLASS(vppIPv6Address, "([BB)V");
81 BIND_JAPI_CLASS(vppL2Fib, "([BZLjava/lang/String;ZZ)V");
82 BIND_JAPI_CLASS(vppVersion, "(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V");
83 BIND_JAPI_CLASS(vppVxlanTunnelDetails, "(IIIII)V");
84
85 void vl_client_add_api_signatures (vl_api_memclnt_create_t *mp)
86 {
87     /*
88      * Send the main API signature in slot 0. This bit of code must
89      * match the checks in ../vpe/api/api.c: vl_msg_api_version_check().
90      */
91     mp->api_versions[0] = clib_host_to_net_u32 (vpe_api_version);
92 }
93
94 /* Note: non-static, called once to set up the initial intfc table */
95 static int sw_interface_dump (vppjni_main_t * jm)
96 {
97     vl_api_sw_interface_dump_t *mp;
98     f64 timeout;
99     hash_pair_t * p;
100     name_sort_t * nses = 0, * ns;
101     sw_interface_subif_t * sub = NULL;
102
103     /* Toss the old name table */
104     hash_foreach_pair (p, jm->sw_if_index_by_interface_name,
105     ({
106         vec_add2 (nses, ns, 1);
107         ns->name = (u8 *)(p->key);
108         ns->value = (u32) p->value[0];
109     }));
110
111     hash_free (jm->sw_if_index_by_interface_name);
112
113     vec_foreach (ns, nses)
114         vec_free (ns->name);
115
116     vec_free (nses);
117
118     vec_foreach (sub, jm->sw_if_subif_table) {
119         vec_free (sub->interface_name);
120     }
121     vec_free (jm->sw_if_subif_table);
122
123     /* recreate the interface name hash table */
124     jm->sw_if_index_by_interface_name
125       = hash_create_string (0, sizeof(uword));
126
127     /* Get list of ethernets */
128     M(SW_INTERFACE_DUMP, sw_interface_dump);
129     mp->name_filter_valid = 1;
130     strncpy ((char *) mp->name_filter, "Ether", sizeof(mp->name_filter-1));
131     S;
132
133     /* and local / loopback interfaces */
134     M(SW_INTERFACE_DUMP, sw_interface_dump);
135     mp->name_filter_valid = 1;
136     strncpy ((char *) mp->name_filter, "lo", sizeof(mp->name_filter-1));
137     S;
138
139     /* and vxlan tunnel interfaces */
140     M(SW_INTERFACE_DUMP, sw_interface_dump);
141     mp->name_filter_valid = 1;
142     strncpy ((char *) mp->name_filter, "vxlan", sizeof(mp->name_filter-1));
143     S;
144
145     /* and tap tunnel interfaces */
146     M(SW_INTERFACE_DUMP, sw_interface_dump);
147     mp->name_filter_valid = 1;
148     strncpy ((char *) mp->name_filter, "tap", sizeof(mp->name_filter-1));
149     S;
150
151     /* and l2tpv3 tunnel interfaces */
152     M(SW_INTERFACE_DUMP, sw_interface_dump);
153     mp->name_filter_valid = 1;
154     strncpy ((char *) mp->name_filter, "l2tpv3_tunnel",
155              sizeof(mp->name_filter-1));
156     S;
157
158     /* Use a control ping for synchronization */
159     {
160         vl_api_control_ping_t * mp;
161         M(CONTROL_PING, control_ping);
162         S;
163     }
164     W;
165 }
166
167 JNIEXPORT jobject JNICALL Java_org_openvpp_vppjapi_vppConn_getVppVersion0
168   (JNIEnv *env, jobject obj)
169 {
170     vppjni_main_t * jm = &vppjni_main;
171
172     vppjni_lock (jm, 11);
173     jstring progName = (*env)->NewStringUTF(env, (char *)jm->program_name);
174     jstring buildDir = (*env)->NewStringUTF(env, (char *)jm->build_directory);
175     jstring version = (*env)->NewStringUTF(env, (char *)jm->version);
176     jstring buildDate = (*env)->NewStringUTF(env, (char *)jm->build_date);
177     vppjni_unlock (jm);
178
179     return vppVersionObject(env, progName, buildDir, version, buildDate);
180 }
181
182 static int jm_show_version (vppjni_main_t *jm)
183 {
184     int rv;
185     vl_api_show_version_t *mp;
186     f64 timeout;
187
188     vppjni_lock (jm, 10);
189     M(SHOW_VERSION, show_version);
190
191     S;
192     vppjni_unlock (jm);
193     WNR;
194     return rv;
195 }
196
197 static int jm_stats_enable_disable (vppjni_main_t *jm, u8 enable)
198 {
199     vl_api_want_stats_t * mp;
200     f64 timeout;
201     int rv;
202
203     vppjni_lock (jm, 13);
204
205     M(WANT_STATS, want_stats);
206
207     mp->enable_disable = enable;
208
209     S;
210     vppjni_unlock (jm);
211     WNR;
212
213     // already subscribed / already disabled (it's ok)
214     if (rv == -2 || rv == -3)
215         rv = 0;
216     return rv;
217 }
218
219 JNIEXPORT jint JNICALL Java_org_openvpp_vppjapi_vppConn_setInterfaceDescription0
220   (JNIEnv *env, jobject obj, jstring ifName, jstring ifDesc)
221 {
222     int rv = 0;
223     vppjni_main_t * jm = &vppjni_main;
224     uword * p;
225     u32 sw_if_index = ~0;
226     sw_if_config_t *cfg;
227
228     const char *if_name_str = (*env)->GetStringUTFChars (env, ifName, 0);
229     const char *if_desc_str = (*env)->GetStringUTFChars (env, ifDesc, 0);
230
231     vppjni_lock (jm, 23);
232
233     p = hash_get_mem (jm->sw_if_index_by_interface_name, if_name_str);
234     if (p == 0) {
235         rv = -1;
236         goto out;
237     }
238     sw_if_index = (jint) p[0];
239
240     u8 *if_desc = 0;
241     vec_validate_init_c_string (if_desc, if_desc_str, strlen(if_desc_str));
242     (*env)->ReleaseStringUTFChars (env, ifDesc, if_desc_str);
243
244     p = hash_get (jm->sw_if_config_by_sw_if_index, sw_if_index);
245     if (p != 0) {
246         cfg = (sw_if_config_t *) (p[0]);
247         if (cfg->desc)
248             vec_free(cfg->desc);
249     } else {
250         cfg = (sw_if_config_t *) clib_mem_alloc(sizeof(sw_if_config_t));
251         hash_set (jm->sw_if_config_by_sw_if_index, sw_if_index, cfg);
252     }
253
254     cfg->desc = if_desc;
255
256 out:
257     (*env)->ReleaseStringUTFChars (env, ifName, if_name_str);
258     vppjni_unlock (jm);
259     return rv;
260 }
261
262 JNIEXPORT jstring JNICALL Java_org_openvpp_vppjapi_vppConn_getInterfaceDescription0
263 (JNIEnv * env, jobject obj, jstring ifName)
264 {
265     vppjni_main_t * jm = &vppjni_main;
266     u32 sw_if_index = ~0;
267     uword * p;
268     const char *if_name_str = (*env)->GetStringUTFChars (env, ifName, 0);
269     jstring ifDesc = NULL;
270
271     vppjni_lock (jm, 24);
272     p = hash_get_mem (jm->sw_if_index_by_interface_name, if_name_str);
273     if (p == 0)
274         goto out;
275
276     sw_if_index = (jint) p[0];
277
278     p = hash_get (jm->sw_if_config_by_sw_if_index, sw_if_index);
279     if (p == 0)
280         goto out;
281
282     sw_if_config_t *cfg = (sw_if_config_t *) (p[0]);
283     u8 * s = format (0, "%s%c", cfg->desc, 0);
284     ifDesc = (*env)->NewStringUTF(env, (char *)s);
285
286 out:
287     vppjni_unlock (jm);
288
289     return ifDesc;
290 }
291
292 JNIEXPORT jint JNICALL Java_org_openvpp_vppjapi_vppConn_clientConnect
293   (JNIEnv *env, jobject obj, jstring clientName)
294 {
295     int rv;
296     const char *client_name;
297     void vl_msg_reply_handler_hookup(void);
298     vppjni_main_t * jm = &vppjni_main;
299     api_main_t * am = &api_main;
300     u8 * heap;
301     mheap_t * h;
302     f64 timeout;
303
304     /*
305      * Bail out now if we're not running as root
306      */
307     if (geteuid() != 0)
308         return -1;
309
310     if (jm->is_connected)
311         return -2;
312
313     if (jm->heap == 0)
314         clib_mem_init (0, 128<<20);
315
316     heap = clib_mem_get_per_cpu_heap();
317     h = mheap_header (heap);
318
319     client_name = (*env)->GetStringUTFChars (env, clientName, 0);
320
321     clib_time_init (&jm->clib_time);
322
323     rv = connect_to_vpe ((char *) client_name);
324
325     if (rv < 0)
326         clib_warning ("connection failed, rv %d", rv);
327
328     (*env)->ReleaseStringUTFChars (env, clientName, client_name);
329
330     if (rv == 0) {
331         vl_msg_reply_handler_hookup ();
332         jm->is_connected = 1;
333         /* make the main heap thread-safe */
334         h->flags |= MHEAP_FLAG_THREAD_SAFE;
335
336         jm->reply_hash = hash_create (0, sizeof (uword));
337         //jm->callback_hash = hash_create (0, sizeof (uword));
338         //jm->ping_hash = hash_create (0, sizeof (uword));
339         jm->api_main = am;
340         vjbd_main_init(&jm->vjbd_main);
341         jm->sw_if_index_by_interface_name =
342             hash_create_string (0, sizeof (uword));
343         jm->sw_if_config_by_sw_if_index =
344             hash_create (0, sizeof (uword));
345
346         {
347             // call control ping first to attach rx thread to java thread
348             vl_api_control_ping_t * mp;
349             M(CONTROL_PING, control_ping);
350             S;
351             WNR;
352
353             if (rv != 0) {
354                 clib_warning ("first control ping failed: %d", rv);
355             }
356         }
357         rv = jm_show_version(jm);
358         if (rv != 0)
359             clib_warning ("unable to retrieve vpp version (rv: %d)", rv);
360         rv = sw_interface_dump(jm);
361         if (rv != 0)
362             clib_warning ("unable to retrieve interface list (rv: %d)", rv);
363         rv = jm_stats_enable_disable(jm, 1);
364         if (rv != 0)
365             clib_warning ("unable to subscribe to stats (rv: %d)", rv);
366     }
367     DEBUG_LOG ("clientConnect result: %d", rv);
368
369     return rv;
370 }
371
372 JNIEXPORT void JNICALL Java_org_openvpp_vppjapi_vppConn_clientDisconnect
373   (JNIEnv *env, jobject obj)
374 {
375     u8 *save_heap;
376     vppjni_main_t * jm = &vppjni_main;
377     vl_client_disconnect_from_vlib();
378
379     save_heap = jm->heap;
380     memset (jm, 0, sizeof (*jm));
381     jm->heap = save_heap;
382 }
383
384 void vl_api_generic_reply_handler (vl_api_generic_reply_t *mp)
385 {
386     api_main_t * am = &api_main;
387     u16 msg_id = clib_net_to_host_u16 (mp->_vl_msg_id);
388     trace_cfg_t *cfgp;
389     i32 retval = clib_net_to_host_u32 (mp->retval);
390     int total_bytes = sizeof(mp);
391     vppjni_main_t * jm = &vppjni_main;
392     u8 * saved_reply = 0;
393     u32 context = clib_host_to_net_u32 (mp->context);
394
395     cfgp = am->api_trace_cfg + msg_id;
396
397     if (!cfgp)
398         clib_warning ("msg id %d: no trace configuration\n", msg_id);
399     else
400         total_bytes = cfgp->size;
401
402     jm->context_id_received = context;
403
404     DEBUG_LOG ("Received generic reply for msg id %d", msg_id);
405
406     /* A generic reply, successful, we're done */
407     if (retval >= 0 && total_bytes == sizeof(*mp))
408         return;
409
410     /* Save the reply */
411     vec_validate (saved_reply, total_bytes - 1);
412     memcpy (saved_reply, mp, total_bytes);
413
414     vppjni_lock (jm, 2);
415     hash_set (jm->reply_hash, context, saved_reply);
416     jm->saved_reply_count ++;
417     vppjni_unlock (jm);
418 }
419
420 JNIEXPORT jint JNICALL Java_org_openvpp_vppjapi_vppConn_getRetval0
421 (JNIEnv * env, jobject obj, jint context, jint release)
422 {
423     vppjni_main_t * jm = &vppjni_main;
424     vl_api_generic_reply_t * mp;
425     uword * p;
426     int rv = 0;
427
428     /* Dunno yet? */
429     if (context > jm->context_id_received)
430         return (VNET_API_ERROR_RESPONSE_NOT_READY);
431
432     vppjni_lock (jm, 1);
433     p = hash_get (jm->reply_hash, context);
434
435     /*
436      * Two cases: a generic "yes" reply - won't be in the hash table
437      * or "no", or "more data" which will be in the table.
438      */
439     if (p == 0)
440         goto out;
441
442     mp = (vl_api_generic_reply_t *) (p[0]);
443     rv = clib_net_to_host_u32 (mp->retval);
444
445     if (release) {
446         u8 * free_me = (u8 *) mp;
447         vec_free (free_me);
448         hash_unset (jm->reply_hash, context);
449         jm->saved_reply_count --;
450     }
451
452 out:
453     vppjni_unlock (jm);
454     return (rv);
455 }
456
457 static int
458 name_sort_cmp (void * a1, void * a2)
459 {
460     name_sort_t * n1 = a1;
461     name_sort_t * n2 = a2;
462
463     return strcmp ((char *)n1->name, (char *)n2->name);
464 }
465
466 JNIEXPORT jstring JNICALL Java_org_openvpp_vppjapi_vppConn_getInterfaceList0
467   (JNIEnv * env, jobject obj, jstring name_filter)
468 {
469     vppjni_main_t * jm = &vppjni_main;
470     jstring rv;
471     hash_pair_t * p;
472     name_sort_t * nses = 0, * ns;
473     const char *this_name;
474     const char * nf = (*env)->GetStringUTFChars (env, name_filter, NULL);
475     u8 * s = 0;
476     char *strcasestr (const char *, const char *);
477
478     vppjni_lock (jm, 4);
479
480     hash_foreach_pair (p, jm->sw_if_index_by_interface_name,
481             ({
482                 this_name = (const char *)(p->key);
483                 if (strlen (nf) == 0 || strcasestr (this_name, nf)) {
484                     vec_add2 (nses, ns, 1);
485                     ns->name = (u8 *)(p->key);
486                     ns->value = (u32) p->value[0];
487                 }
488             }));
489
490     vec_sort_with_function (nses, name_sort_cmp);
491
492     vec_foreach (ns, nses)
493         s = format (s, "%s: %d, ", ns->name, ns->value);
494
495     _vec_len (s) = vec_len (s) - 2;
496     vec_terminate_c_string (s);
497     vppjni_unlock (jm);
498
499     vec_free (nses);
500
501     (*env)->ReleaseStringUTFChars (env, name_filter, nf);
502
503     rv = (*env)->NewStringUTF (env, (char *) s);
504     vec_free (s);
505
506     return rv;
507 }
508
509 JNIEXPORT jint JNICALL Java_org_openvpp_vppjapi_vppConn_swIfIndexFromName0
510   (JNIEnv * env, jobject obj, jstring interfaceName)
511 {
512     vppjni_main_t * jm = &vppjni_main;
513     jint rv = -1;
514     const char * if_name = (*env)->GetStringUTFChars (env, interfaceName, NULL);
515     uword * p;
516
517     vppjni_lock (jm, 5);
518
519     p = hash_get_mem (jm->sw_if_index_by_interface_name, if_name);
520
521     if (p != 0)
522         rv = (jint) p[0];
523
524     vppjni_unlock (jm);
525
526     (*env)->ReleaseStringUTFChars (env, interfaceName, if_name);
527
528     return rv;
529 }
530
531 JNIEXPORT jobject JNICALL Java_org_openvpp_vppjapi_vppConn_getInterfaceCounters0
532 (JNIEnv * env, jobject obj, jint swIfIndex)
533 {
534     vppjni_main_t * jm = &vppjni_main;
535     sw_interface_stats_t *s;
536     u32 sw_if_index = swIfIndex;
537     jobject result = NULL;
538
539     vppjni_lock (jm, 16);
540
541     if (sw_if_index >= vec_len(jm->sw_if_stats_by_sw_if_index)) {
542         goto out;
543     }
544     s = &jm->sw_if_stats_by_sw_if_index[sw_if_index];
545     if (!s->valid) {
546         goto out;
547     }
548
549     result = vppInterfaceCountersObject(env,
550             s->rx.octets, s->rx.pkts.ip4, s->rx.pkts.ip6, s->rx.pkts.unicast,
551             s->rx.pkts.multicast, s->rx.pkts.broadcast, s->rx.pkts.discard,
552             s->rx.pkts.fifo_full, s->rx.pkts.error, s->rx.pkts.unknown_proto,
553             s->rx.pkts.miss,
554             s->tx.octets, s->tx.pkts.ip4, s->tx.pkts.ip6, s->tx.pkts.unicast,
555             s->tx.pkts.multicast, s->tx.pkts.broadcast, s->tx.pkts.discard,
556             s->tx.pkts.fifo_full, s->tx.pkts.error, s->tx.pkts.unknown_proto,
557             s->tx.pkts.miss);
558
559 out:
560     vppjni_unlock (jm);
561     return result;
562 }
563
564 JNIEXPORT jstring JNICALL Java_org_openvpp_vppjapi_vppConn_interfaceNameFromSwIfIndex0
565 (JNIEnv * env, jobject obj, jint swIfIndex)
566 {
567     vppjni_main_t * jm = &vppjni_main;
568     sw_interface_details_t *sw_if_details;
569     u32 sw_if_index;
570     jstring ifname = NULL;
571
572     vppjni_lock (jm, 8);
573
574     sw_if_index = swIfIndex;
575
576     if (sw_if_index >= vec_len(jm->sw_if_table)) {
577         goto out;
578     }
579     sw_if_details = &jm->sw_if_table[sw_if_index];
580     if (!sw_if_details->valid) {
581         goto out;
582     }
583
584     u8 * s = format (0, "%s%c", sw_if_details->interface_name, 0);
585     ifname = (*env)->NewStringUTF(env, (char *)s);
586
587 out:
588     vppjni_unlock (jm);
589
590     return ifname;
591 }
592
593 JNIEXPORT void JNICALL Java_org_openvpp_vppjapi_vppConn_clearInterfaceTable0
594 (JNIEnv * env, jobject obj)
595 {
596     vppjni_main_t * jm = &vppjni_main;
597
598     vppjni_lock (jm, 21);
599
600     vec_reset_length(jm->sw_if_table);
601
602     vppjni_unlock (jm);
603 }
604
605 static jobjectArray sw_if_dump_get_interfaces ();
606
607 JNIEXPORT jobjectArray JNICALL Java_org_openvpp_vppjapi_vppConn_swInterfaceDump0
608 (JNIEnv * env, jobject obj, jbyte name_filter_valid, jbyteArray name_filter)
609 {
610     vppjni_main_t *jm = &vppjni_main;
611     f64 timeout;
612     vl_api_sw_interface_dump_t * mp;
613     u32 my_context_id;
614     int rv;
615     rv = vppjni_sanity_check (jm);
616     if (rv) {
617         clib_warning("swInterfaceDump sanity_check rv = %d", rv);
618         return NULL;
619     }
620
621     vppjni_lock (jm, 7);
622     my_context_id = vppjni_get_context_id (jm);
623     jsize cnt = (*env)->GetArrayLength (env, name_filter);
624
625     M(SW_INTERFACE_DUMP, sw_interface_dump);
626     mp->context = clib_host_to_net_u32 (my_context_id);
627     mp->name_filter_valid = name_filter_valid;
628
629     if (cnt > sizeof(mp->name_filter))
630         cnt = sizeof(mp->name_filter);
631
632     (*env)->GetByteArrayRegion(env, name_filter, 0, cnt, (jbyte *)mp->name_filter);
633
634     DEBUG_LOG ("interface filter (%d, %s, len: %d)", mp->name_filter_valid, (char *)mp->name_filter, cnt);
635
636     jm->collect_indices = 1;
637
638     S;
639     {
640         // now send control ping so we know when it ends
641         vl_api_control_ping_t * mp;
642         M(CONTROL_PING, control_ping);
643         mp->context = clib_host_to_net_u32 (my_context_id);
644
645         S;
646     }
647     vppjni_unlock (jm);
648     WNR;
649
650     vppjni_lock (jm, 7);
651     jobjectArray result = sw_if_dump_get_interfaces(env);
652     vppjni_unlock (jm);
653     return result;
654 }
655
656 static jobjectArray sw_if_dump_get_interfaces (JNIEnv * env)
657 {
658     vppjni_main_t * jm = &vppjni_main;
659     sw_interface_details_t *sw_if_details;
660     u32 i;
661
662     int len = vec_len(jm->sw_if_dump_if_indices);
663
664     jobjectArray ifArray = vppInterfaceDetailsArray(env, len);
665
666     for (i = 0; i < len; i++) {
667         u32 sw_if_index = jm->sw_if_dump_if_indices[i];
668         ASSERT(sw_if_index < vec_len(jm->sw_if_table));
669         sw_if_details = &jm->sw_if_table[sw_if_index];
670         ASSERT(sw_if_details->valid);
671
672         u8 * s = format (0, "%s%c", sw_if_details->interface_name, 0);
673
674         jstring ifname = (*env)->NewStringUTF(env, (char *)s);
675         jint ifIndex = sw_if_details->sw_if_index;
676         jint supIfIndex = sw_if_details->sup_sw_if_index;
677         jbyteArray physAddr = (*env)->NewByteArray(env,
678                 sw_if_details->l2_address_length);
679         (*env)->SetByteArrayRegion(env, physAddr, 0,
680                 sw_if_details->l2_address_length,
681                 (signed char*)sw_if_details->l2_address);
682         jint subId = sw_if_details->sub_id;
683         jint subOuterVlanId = sw_if_details->sub_outer_vlan_id;
684         jint subInnerVlanId = sw_if_details->sub_inner_vlan_id;
685         jint vtrOp = sw_if_details->vtr_op;
686         jint vtrPushDot1q = sw_if_details->vtr_push_dot1q;
687         jint vtrTag1 = sw_if_details->vtr_tag1;
688         jint vtrTag2 = sw_if_details->vtr_tag2;
689
690         jbyte adminUpDown = sw_if_details->admin_up_down;
691         jbyte linkUpDown = sw_if_details->link_up_down;
692         jbyte linkDuplex = sw_if_details->link_duplex;
693         jbyte linkSpeed = sw_if_details->link_speed;
694         jbyte subDot1ad = sw_if_details->sub_dot1ad;
695         jbyte subNumberOfTags = sw_if_details->sub_number_of_tags;
696         jbyte subExactMatch = sw_if_details->sub_exact_match;
697         jbyte subDefault = sw_if_details->sub_default;
698         jbyte subOuterVlanIdAny = sw_if_details->sub_outer_vlan_id_any;
699         jbyte subInnerVlanIdAny = sw_if_details->sub_inner_vlan_id_any;
700
701         jobject ifObj = vppInterfaceDetailsObject(env,
702                 ifIndex, ifname,
703                 supIfIndex, physAddr, adminUpDown, linkUpDown,
704                 linkDuplex, linkSpeed, subId, subDot1ad,
705                 subNumberOfTags, subOuterVlanId, subInnerVlanId,
706                 subExactMatch, subDefault, subOuterVlanIdAny,
707                 subInnerVlanIdAny, vtrOp, vtrPushDot1q, vtrTag1, vtrTag2);
708         (*env)->SetObjectArrayElement(env, ifArray, i, ifObj);
709     }
710
711     jm->collect_indices = 0;
712     vec_reset_length(jm->sw_if_dump_if_indices);
713     return ifArray;
714 }
715
716 JNIEXPORT jint JNICALL Java_org_openvpp_vppjapi_vppConn_findOrAddBridgeDomainId0
717   (JNIEnv * env, jobject obj, jstring bridgeDomain)
718 {
719     vppjni_main_t * jm = &vppjni_main;
720     static u8 * bd_name = 0;
721     jint rv = -1;
722     const char * bdName = (*env)->GetStringUTFChars (env, bridgeDomain, NULL);
723
724     vec_validate_init_c_string (bd_name, bdName, strlen(bdName));
725     (*env)->ReleaseStringUTFChars (env, bridgeDomain, bdName);
726
727     vppjni_lock (jm, 6);
728     rv = (jint)vjbd_find_or_add_bd (&jm->vjbd_main, bd_name);
729     vppjni_unlock (jm);
730
731     _vec_len(bd_name) = 0;
732     return rv;
733 }
734
735 JNIEXPORT jint JNICALL Java_org_openvpp_vppjapi_vppConn_bridgeDomainIdFromName0
736   (JNIEnv * env, jobject obj, jstring bridgeDomain)
737 {
738     vppjni_main_t * jm = &vppjni_main;
739     static u8 * bd_name = 0;
740     jint rv = -1;
741     const char * bdName = (*env)->GetStringUTFChars (env, bridgeDomain, NULL);
742
743     vec_validate_init_c_string (bd_name, bdName, strlen(bdName));
744     (*env)->ReleaseStringUTFChars (env, bridgeDomain, bdName);
745
746     vppjni_lock (jm, 20);
747     rv = (jint)vjbd_id_from_name(&jm->vjbd_main, (u8 *)bd_name);
748     vppjni_unlock (jm);
749
750     _vec_len(bd_name) = 0;
751
752     return rv;
753 }
754
755 JNIEXPORT jint JNICALL Java_org_openvpp_vppjapi_vppConn_bridgeDomainIdFromInterfaceName0
756   (JNIEnv * env, jobject obj, jstring interfaceName)
757 {
758     vppjni_main_t * jm = &vppjni_main;
759     vjbd_main_t * bdm = &jm->vjbd_main;
760     u32 sw_if_index;
761     jint rv = -1;
762     const char * if_name;
763     uword * p;
764
765     if_name = (*env)->GetStringUTFChars (env, interfaceName, NULL);
766
767     vppjni_lock (jm, 14);
768
769     p = hash_get_mem (jm->sw_if_index_by_interface_name, if_name);
770
771     if (p != 0) {
772         sw_if_index = (jint) p[0];
773         p = hash_get (bdm->bd_id_by_sw_if_index, sw_if_index);
774         if (p != 0) {
775             rv = (jint) p[0];
776         }
777     }
778
779     vppjni_unlock (jm);
780
781     (*env)->ReleaseStringUTFChars (env, interfaceName, if_name);
782
783     return rv;
784 }
785
786 /*
787  * Special-case: build the interface table, maintain
788  * the next loopback sw_if_index vbl.
789  */
790 static void vl_api_sw_interface_details_t_handler
791 (vl_api_sw_interface_details_t * mp)
792 {
793     vppjni_main_t * jm = &vppjni_main;
794     static sw_interface_details_t empty_sw_if_details = {0,};
795     sw_interface_details_t *sw_if_details;
796     u32 sw_if_index;
797
798     vppjni_lock (jm, 1);
799
800     sw_if_index = ntohl (mp->sw_if_index);
801
802     u8 * s = format (0, "%s%c", mp->interface_name, 0);
803
804     if (jm->collect_indices) {
805         u32 pos = vec_len(jm->sw_if_dump_if_indices);
806         vec_validate(jm->sw_if_dump_if_indices, pos);
807         jm->sw_if_dump_if_indices[pos] = sw_if_index;
808     }
809
810     vec_validate_init_empty(jm->sw_if_table, sw_if_index, empty_sw_if_details);
811     sw_if_details = &jm->sw_if_table[sw_if_index];
812     sw_if_details->valid = 1;
813
814     snprintf((char *)sw_if_details->interface_name,
815             sizeof(sw_if_details->interface_name), "%s", (char *)s);
816     sw_if_details->sw_if_index = sw_if_index;
817     sw_if_details->sup_sw_if_index = ntohl(mp->sup_sw_if_index);
818     sw_if_details->l2_address_length = ntohl (mp->l2_address_length);
819     ASSERT(sw_if_details->l2_address_length <= sizeof(sw_if_details->l2_address));
820     memcpy(sw_if_details->l2_address, mp->l2_address,
821             sw_if_details->l2_address_length);
822     sw_if_details->sub_id = ntohl (mp->sub_id);
823     sw_if_details->sub_outer_vlan_id = ntohl (mp->sub_outer_vlan_id);
824     sw_if_details->sub_inner_vlan_id = ntohl (mp->sub_inner_vlan_id);
825     sw_if_details->vtr_op = ntohl (mp->vtr_op);
826     sw_if_details->vtr_push_dot1q = ntohl (mp->vtr_push_dot1q);
827     sw_if_details->vtr_tag1 = ntohl (mp->vtr_tag1);
828     sw_if_details->vtr_tag2 = ntohl (mp->vtr_tag2);
829
830     sw_if_details->admin_up_down = mp->admin_up_down;
831     sw_if_details->link_up_down = mp->link_up_down;
832     sw_if_details->link_duplex = mp->link_duplex;
833     sw_if_details->link_speed = mp->link_speed;
834     sw_if_details->sub_dot1ad = mp->sub_dot1ad;
835     sw_if_details->sub_number_of_tags = mp->sub_number_of_tags;
836     sw_if_details->sub_exact_match = mp->sub_exact_match;
837     sw_if_details->sub_default = mp->sub_default;
838     sw_if_details->sub_outer_vlan_id_any = mp->sub_outer_vlan_id_any;
839     sw_if_details->sub_inner_vlan_id_any = mp->sub_inner_vlan_id_any;
840
841     hash_set_mem (jm->sw_if_index_by_interface_name, s, sw_if_index);
842     DEBUG_LOG ("Got interface %s", (char *)s);
843
844     /* In sub interface case, fill the sub interface table entry */
845     if (mp->sw_if_index != mp->sup_sw_if_index) {
846         sw_interface_subif_t * sub = NULL;
847
848         vec_add2(jm->sw_if_subif_table, sub, 1);
849
850         vec_validate(sub->interface_name, strlen((char *)s) + 1);
851         strncpy((char *)sub->interface_name, (char *)s,
852                 vec_len(sub->interface_name));
853         sub->sw_if_index = ntohl(mp->sw_if_index);
854         sub->sub_id = ntohl(mp->sub_id);
855
856         sub->sub_dot1ad = mp->sub_dot1ad;
857         sub->sub_number_of_tags = mp->sub_number_of_tags;
858         sub->sub_outer_vlan_id = ntohs(mp->sub_outer_vlan_id);
859         sub->sub_inner_vlan_id = ntohs(mp->sub_inner_vlan_id);
860         sub->sub_exact_match = mp->sub_exact_match;
861         sub->sub_default = mp->sub_default;
862         sub->sub_outer_vlan_id_any = mp->sub_outer_vlan_id_any;
863         sub->sub_inner_vlan_id_any = mp->sub_inner_vlan_id_any;
864
865         /* vlan tag rewrite */
866         sub->vtr_op = ntohl(mp->vtr_op);
867         sub->vtr_push_dot1q = ntohl(mp->vtr_push_dot1q);
868         sub->vtr_tag1 = ntohl(mp->vtr_tag1);
869         sub->vtr_tag2 = ntohl(mp->vtr_tag2);
870     }
871     vppjni_unlock (jm);
872 }
873
874 static void vl_api_sw_interface_set_flags_t_handler
875 (vl_api_sw_interface_set_flags_t * mp)
876 {
877   /* $$$ nothing for the moment */
878 }
879
880 static jintArray create_array_of_bd_ids(JNIEnv * env, jint bd_id)
881 {
882     vppjni_main_t *jm = &vppjni_main;
883     vjbd_main_t * bdm = &jm->vjbd_main;
884     u32 *buf = NULL;
885     u32 i;
886
887     if (bd_id != ~0) {
888         vec_add1(buf, bd_id);
889     } else {
890         for (i = 0; i < vec_len(bdm->bd_oper); i++) {
891             u32 bd_id = bdm->bd_oper[i].bd_id;
892             vec_add1(buf, bd_id);
893         }
894     }
895
896     jintArray bdidArray = (*env)->NewIntArray(env, vec_len(buf));
897
898     (*env)->SetIntArrayRegion(env, bdidArray, 0, vec_len(buf), (int*)buf);
899
900     vec_free(buf);
901
902     return bdidArray;
903 }
904
905 static void bridge_domain_oper_free(void)
906 {
907     vppjni_main_t *jm = &vppjni_main;
908     vjbd_main_t *bdm = &jm->vjbd_main;
909     u32 i;
910
911     for (i = 0; i < vec_len(bdm->bd_oper); i++) {
912         vec_free(bdm->bd_oper->l2fib_oper);
913     }
914     vec_reset_length(bdm->bd_oper);
915     hash_free(bdm->bd_id_by_sw_if_index);
916     hash_free(bdm->oper_bd_index_by_bd_id);
917 }
918
919 JNIEXPORT jintArray JNICALL Java_org_openvpp_vppjapi_vppConn_bridgeDomainDump0
920 (JNIEnv * env, jobject obj, jint bd_id)
921 {
922     vppjni_main_t *jm = &vppjni_main;
923     vl_api_bridge_domain_dump_t * mp;
924     u32 my_context_id;
925     f64 timeout;
926     int rv;
927     rv = vppjni_sanity_check (jm);
928     if (rv) return NULL;
929
930     vppjni_lock (jm, 15);
931
932     if (~0 == bd_id) {
933         bridge_domain_oper_free();
934     }
935
936     my_context_id = vppjni_get_context_id (jm);
937     M(BRIDGE_DOMAIN_DUMP, bridge_domain_dump);
938     mp->context = clib_host_to_net_u32 (my_context_id);
939     mp->bd_id = clib_host_to_net_u32(bd_id);
940     S;
941
942     /* Use a control ping for synchronization */
943     {
944         vl_api_control_ping_t * mp;
945         M(CONTROL_PING, control_ping);
946         S;
947     }
948
949     WNR;
950     if (0 != rv) {
951         return NULL;
952     }
953
954     jintArray ret = create_array_of_bd_ids(env, bd_id);
955
956     vppjni_unlock (jm);
957
958     return ret;
959 }
960
961 static void
962 vl_api_bridge_domain_details_t_handler (vl_api_bridge_domain_details_t * mp)
963 {
964     vppjni_main_t *jm = &vppjni_main;
965     vjbd_main_t * bdm = &jm->vjbd_main;
966     vjbd_oper_t * bd_oper;
967     u32 bd_id, bd_index;
968
969     bd_id = ntohl (mp->bd_id);
970
971     bd_index = vec_len(bdm->bd_oper);
972     vec_validate (bdm->bd_oper, bd_index);
973     bd_oper = vec_elt_at_index(bdm->bd_oper, bd_index);
974
975     hash_set(bdm->oper_bd_index_by_bd_id, bd_id, bd_index);
976
977     bd_oper->bd_id = bd_id;
978     bd_oper->flood = mp->flood != 0;
979     bd_oper->forward = mp->forward != 0;
980     bd_oper->learn =  mp->learn != 0;
981     bd_oper->uu_flood = mp->uu_flood != 0;
982     bd_oper->arp_term = mp->arp_term != 0;
983     bd_oper->bvi_sw_if_index = ntohl (mp->bvi_sw_if_index);
984     bd_oper->n_sw_ifs = ntohl (mp->n_sw_ifs);
985
986     bd_oper->bd_sw_if_oper = 0;
987 }
988
989 static void
990 vl_api_bridge_domain_sw_if_details_t_handler
991 (vl_api_bridge_domain_sw_if_details_t * mp)
992 {
993     vppjni_main_t *jm = &vppjni_main;
994     vjbd_main_t * bdm = &jm->vjbd_main;
995     bd_sw_if_oper_t * bd_sw_if_oper;
996     u32 bd_id, sw_if_index;
997
998     bd_id = ntohl (mp->bd_id);
999     sw_if_index = ntohl (mp->sw_if_index);
1000
1001     uword *p;
1002     p = hash_get (bdm->oper_bd_index_by_bd_id, bd_id);
1003     if (p == 0) {
1004         clib_warning("Invalid bd_id %d in bridge_domain_sw_if_details_t_handler", bd_id);
1005         return;
1006     }
1007     u32 oper_bd_index = (jint) p[0];
1008     vjbd_oper_t *bd_oper = vec_elt_at_index(bdm->bd_oper, oper_bd_index);
1009
1010     u32 len = vec_len(bd_oper->bd_sw_if_oper);
1011     vec_validate(bd_oper->bd_sw_if_oper, len);
1012     bd_sw_if_oper = &bd_oper->bd_sw_if_oper[len];
1013     bd_sw_if_oper->bd_id = bd_id;
1014     bd_sw_if_oper->sw_if_index = sw_if_index;
1015     bd_sw_if_oper->shg = mp->shg;
1016
1017     hash_set(bdm->bd_id_by_sw_if_index, sw_if_index, bd_id);
1018 }
1019
1020 static const char* interface_name_from_sw_if_index(u32 sw_if_index)
1021 {
1022     vppjni_main_t *jm = &vppjni_main;
1023
1024     if (sw_if_index >= vec_len(jm->sw_if_table)) {
1025         return NULL;
1026     }
1027     if (!jm->sw_if_table[sw_if_index].valid) {
1028         return NULL;
1029     }
1030     return (const char*)jm->sw_if_table[sw_if_index].interface_name;
1031 }
1032
1033 JNIEXPORT jobject JNICALL Java_org_openvpp_vppjapi_vppConn_getBridgeDomainDetails0
1034 (JNIEnv * env, jobject obj, jint bdId)
1035 {
1036     vppjni_main_t *jm = &vppjni_main;
1037     vjbd_main_t * bdm = &jm->vjbd_main;
1038     u32 oper_bd_index;
1039     u32 bd_id = bdId;
1040     jobject rv = NULL;
1041     uword *p;
1042
1043     vppjni_lock (jm, 16);
1044
1045     p = hash_get (bdm->oper_bd_index_by_bd_id, bd_id);
1046     if (p == 0) {
1047         rv = NULL;
1048         goto out;
1049     }
1050     oper_bd_index = (jint) p[0];
1051
1052     vjbd_oper_t *bd_oper = vec_elt_at_index(bdm->bd_oper, oper_bd_index);
1053
1054
1055     /* setting BridgeDomainDetails */
1056
1057     jobject bddObj = vppBridgeDomainDetailsObject(env);
1058
1059     u8 *vec_bd_name = vjbd_oper_name_from_id(bdm, bd_id);
1060     if (NULL == vec_bd_name) {
1061         rv = NULL;
1062         goto out;
1063     }
1064     char *str_bd_name = (char*)format (0, "%s%c", vec_bd_name, 0);
1065     vec_free(vec_bd_name);
1066     jstring bdName = (*env)->NewStringUTF(env, str_bd_name);
1067     vec_free(str_bd_name);
1068     if (NULL == bdName) {
1069         rv = NULL;
1070         goto out;
1071     }
1072
1073     set_vppBridgeDomainDetails_name(env, bddObj, bdName);
1074     set_vppBridgeDomainDetails_bdId(env, bddObj, bdId);
1075     set_vppBridgeDomainDetails_flood(env, bddObj, (jboolean)bd_oper->flood);
1076     set_vppBridgeDomainDetails_uuFlood(env, bddObj, (jboolean)bd_oper->uu_flood);
1077     set_vppBridgeDomainDetails_forward(env, bddObj, (jboolean)bd_oper->forward);
1078     set_vppBridgeDomainDetails_learn(env, bddObj, (jboolean)bd_oper->learn);
1079     set_vppBridgeDomainDetails_arpTerm(env, bddObj, (jboolean)bd_oper->arp_term);
1080
1081     jstring bviInterfaceName = NULL;
1082     if (~0 != bd_oper->bvi_sw_if_index) {
1083         const char *str_if_name = interface_name_from_sw_if_index(bd_oper->bvi_sw_if_index);
1084         if (NULL == str_if_name) {
1085             clib_warning("Could not get interface name for sw_if_index %d", bd_oper->bvi_sw_if_index);
1086             rv = NULL;
1087             goto out;
1088         }
1089         bviInterfaceName = (*env)->NewStringUTF(env, str_if_name);
1090         if (NULL == bviInterfaceName) {
1091             rv = NULL;
1092             goto out;
1093         }
1094     }
1095
1096     set_vppBridgeDomainDetails_bviInterfaceName(env, bddObj, bviInterfaceName);
1097
1098     /* setting BridgeDomainInterfaceDetails */
1099
1100     u32 len = vec_len(bd_oper->bd_sw_if_oper);
1101     ASSERT(len == bd_oper->n_sw_ifs);
1102
1103     jobjectArray bdidArray = vppBridgeDomainInterfaceDetailsArray(env, len);
1104
1105     u32 i;
1106     for (i = 0; i < len; i++) {
1107         bd_sw_if_oper_t *sw_if_oper = &bd_oper->bd_sw_if_oper[i];
1108
1109         jobject bdidObj = vppBridgeDomainInterfaceDetailsObject(env);
1110         (*env)->SetObjectArrayElement(env, bdidArray, i, bdidObj);
1111
1112         u32 sw_if_index = sw_if_oper->sw_if_index;
1113         const char *str_if_name = interface_name_from_sw_if_index(sw_if_index);
1114         if (NULL == str_if_name) {
1115             rv = NULL;
1116             goto out;
1117         }
1118         jstring interfaceName = (*env)->NewStringUTF(env, str_if_name);
1119         if (NULL == interfaceName) {
1120             rv = NULL;
1121             goto out;
1122         }
1123
1124         set_vppBridgeDomainInterfaceDetails_interfaceName(env, bdidObj, interfaceName);
1125         set_vppBridgeDomainInterfaceDetails_splitHorizonGroup(env, bdidObj, (jbyte)sw_if_oper->shg);
1126     }
1127
1128     set_vppBridgeDomainDetails_interfaces(env, bddObj, bdidArray);
1129
1130     rv = bddObj;
1131
1132 out:
1133
1134     vppjni_unlock (jm);
1135
1136     return rv;
1137 }
1138
1139 static jobject l2_fib_create_object(JNIEnv *env, bd_l2fib_oper_t *l2_fib)
1140 {
1141     u32 sw_if_index = l2_fib->sw_if_index;
1142     const char *str_if_name = interface_name_from_sw_if_index(sw_if_index);
1143     if (NULL == str_if_name) {
1144         return NULL;
1145     }
1146     jstring interfaceName = (*env)->NewStringUTF(env, str_if_name);
1147     if (NULL == interfaceName) {
1148         return NULL;
1149     }
1150
1151     jbyteArray physAddr = (*env)->NewByteArray(env, 6);
1152     (*env)->SetByteArrayRegion(env, physAddr, 0, 6,
1153             (signed char*)l2_fib->mac_addr.fields.mac);
1154     jboolean staticConfig = !l2_fib->learned;
1155     jstring outgoingInterface = interfaceName;
1156     jboolean filter = l2_fib->filter;
1157     jboolean bridgedVirtualInterface = l2_fib->bvi;
1158
1159     return vppL2FibObject(env, physAddr, staticConfig, outgoingInterface, filter, bridgedVirtualInterface);
1160 }
1161
1162 JNIEXPORT jobjectArray JNICALL Java_org_openvpp_vppjapi_vppConn_l2FibTableDump0
1163 (JNIEnv * env, jobject obj, jint bd_id)
1164 {
1165     vppjni_main_t *jm = &vppjni_main;
1166     vjbd_main_t * bdm = &jm->vjbd_main;
1167     vl_api_l2_fib_table_dump_t *mp;
1168     jobjectArray l2FibArray = NULL;
1169     vjbd_oper_t *bd_oper;
1170     u32 oper_bd_index;
1171     uword *p;
1172     f64 timeout;
1173     int rv;
1174     u32 i;
1175
1176     vppjni_lock (jm, 17);
1177
1178     //vjbd_l2fib_oper_reset (bdm);
1179
1180     p = hash_get (bdm->oper_bd_index_by_bd_id, bd_id);
1181     if (p == 0) {
1182         goto done;
1183     }
1184     oper_bd_index = p[0];
1185     bd_oper = vec_elt_at_index(bdm->bd_oper, oper_bd_index);
1186     vec_reset_length (bd_oper->l2fib_oper);
1187
1188     /* Get list of l2 fib table entries */
1189     M(L2_FIB_TABLE_DUMP, l2_fib_table_dump);
1190     mp->bd_id = ntohl(bd_id);
1191     S;
1192
1193     /* Use a control ping for synchronization */
1194     {
1195         vl_api_control_ping_t * mp;
1196         M(CONTROL_PING, control_ping);
1197         S;
1198     }
1199
1200     WNR;
1201     if (0 != rv) {
1202         goto done;
1203     }
1204
1205     u32 count = vec_len(bd_oper->l2fib_oper);
1206     bd_l2fib_oper_t *l2fib_oper = bd_oper->l2fib_oper;
1207
1208     l2FibArray = vppL2FibArray(env, count);
1209     for (i = 0; i < count; i++) {
1210         bd_l2fib_oper_t *l2_fib = &l2fib_oper[i];
1211         jobject l2FibObj = l2_fib_create_object(env, l2_fib);
1212         (*env)->SetObjectArrayElement(env, l2FibArray, i, l2FibObj);
1213     }
1214
1215 done:
1216     vppjni_unlock (jm);
1217
1218     return l2FibArray;
1219 }
1220
1221 static void
1222 vl_api_l2_fib_table_entry_t_handler (vl_api_l2_fib_table_entry_t * mp)
1223 {
1224     //static u8 * mac_addr;
1225     vppjni_main_t *jm = &vppjni_main;
1226     vjbd_main_t * bdm = &jm->vjbd_main;
1227     vjbd_oper_t * bd_oper;
1228     u32 bd_id, oper_bd_index;
1229     //uword mhash_val_l2fi;
1230     bd_l2fib_oper_t * l2fib_oper;
1231     l2fib_u64_mac_t * l2fe_u64_mac = (l2fib_u64_mac_t *)&mp->mac;
1232
1233     bd_id = ntohl (mp->bd_id);
1234
1235     uword *p = hash_get (bdm->oper_bd_index_by_bd_id, bd_id);
1236     if (p == 0) {
1237         return;
1238     }
1239     oper_bd_index = (jint) p[0];
1240     bd_oper = vec_elt_at_index(bdm->bd_oper, oper_bd_index);
1241
1242 #if 0
1243     vec_validate (mac_addr, MAC_ADDRESS_SIZE);
1244     memcpy (mac_addr, l2fe_u64_mac->fields.mac, MAC_ADDRESS_SIZE);
1245     mhash_val_l2fi = vec_len (bd_oper->l2fib_oper);
1246     if (mhash_elts (&bd_oper->l2fib_index_by_mac) == 0)
1247         mhash_init (&bd_oper->l2fib_index_by_mac, sizeof (u32), MAC_ADDRESS_SIZE);
1248     mhash_set_mem (&bd_oper->l2fib_index_by_mac, mac_addr, &mhash_val_l2fi, 0);
1249 #endif
1250
1251     vec_add2 (bd_oper->l2fib_oper, l2fib_oper, 1);
1252
1253     l2fib_oper->bd_id = bd_id;
1254     l2fib_oper->mac_addr.raw = l2fib_mac_to_u64 (l2fe_u64_mac->fields.mac);
1255     l2fib_oper->sw_if_index = ntohl (mp->sw_if_index);
1256     l2fib_oper->learned = !mp->static_mac;
1257     l2fib_oper->filter = mp->filter_mac;
1258     l2fib_oper->bvi = mp->bvi_mac;
1259 }
1260
1261 static int ipAddressDump
1262 (JNIEnv * env, jobject obj, jstring interfaceName, jboolean isIPv6)
1263 {
1264     vppjni_main_t *jm = &vppjni_main;
1265     vl_api_ip_address_dump_t * mp;
1266     const char *if_name;
1267     u32 my_context_id;
1268     u32 sw_if_index;
1269     f64 timeout;
1270     uword *p;
1271     int rv = 0;
1272
1273     if (NULL == interfaceName) {
1274         return -1;
1275     }
1276
1277     if_name = (*env)->GetStringUTFChars (env, interfaceName, NULL);
1278     p = hash_get_mem (jm->sw_if_index_by_interface_name, if_name);
1279     (*env)->ReleaseStringUTFChars (env, interfaceName, if_name);
1280     if (p == 0) {
1281         return -1;
1282     }
1283     sw_if_index = (u32) p[0];
1284
1285     rv = vppjni_sanity_check (jm);
1286     if (0 != rv) {
1287         return rv;
1288     }
1289
1290     my_context_id = vppjni_get_context_id (jm);
1291     M(IP_ADDRESS_DUMP, ip_address_dump);
1292     mp->context = clib_host_to_net_u32 (my_context_id);
1293     mp->sw_if_index = clib_host_to_net_u32(sw_if_index);
1294     mp->is_ipv6 = isIPv6;
1295     jm->is_ipv6 = isIPv6;
1296     S;
1297
1298     /* Use a control ping for synchronization */
1299     {
1300       vl_api_control_ping_t * mp;
1301       M(CONTROL_PING, control_ping);
1302       S;
1303     }
1304
1305     WNR;
1306
1307     return rv;
1308 }
1309
1310 JNIEXPORT jobjectArray JNICALL Java_org_openvpp_vppjapi_vppConn_ipv4AddressDump0
1311 (JNIEnv * env, jobject obj, jstring interfaceName)
1312 {
1313     vppjni_main_t *jm = &vppjni_main;
1314     jobject returnArray = NULL;
1315     int i;
1316
1317     vppjni_lock (jm, 18);
1318
1319     vec_reset_length(jm->ipv4_addresses);
1320
1321     if (0 != ipAddressDump(env, obj, interfaceName, 0)) {
1322         goto done;
1323     }
1324
1325     u32 count = vec_len(jm->ipv4_addresses);
1326     ipv4_address_t *ipv4_address = jm->ipv4_addresses;
1327
1328     jobjectArray ipv4AddressArray = vppIPv4AddressArray(env, count);
1329
1330     for (i = 0; i < count; i++) {
1331         ipv4_address_t *address = &ipv4_address[i];
1332
1333         jint ip = address->ip;
1334         jbyte prefixLength = address->prefix_length;
1335
1336         jobject ipv4AddressObj = vppIPv4AddressObject(env, ip, prefixLength);
1337
1338         (*env)->SetObjectArrayElement(env, ipv4AddressArray, i, ipv4AddressObj);
1339     }
1340
1341     returnArray = ipv4AddressArray;
1342
1343 done:
1344     vppjni_unlock (jm);
1345     return returnArray;
1346 }
1347
1348 JNIEXPORT jobjectArray JNICALL Java_org_openvpp_vppjapi_vppConn_ipv6AddressDump0
1349 (JNIEnv * env, jobject obj, jstring interfaceName)
1350 {
1351     vppjni_main_t *jm = &vppjni_main;
1352     jobject returnArray = NULL;
1353     int i;
1354
1355     vppjni_lock (jm, 19);
1356
1357     vec_reset_length(jm->ipv6_addresses);
1358
1359     if (0 != ipAddressDump(env, obj, interfaceName, 1)) {
1360         goto done;
1361     }
1362
1363     u32 count = vec_len(jm->ipv6_addresses);
1364     ipv6_address_t *ipv6_address = jm->ipv6_addresses;
1365
1366     jobjectArray ipv6AddressArray = vppIPv6AddressArray(env, count);
1367
1368     for (i = 0; i < count; i++) {
1369         ipv6_address_t *address = &ipv6_address[i];
1370
1371         jbyteArray ip = (*env)->NewByteArray(env, 16);
1372         (*env)->SetByteArrayRegion(env, ip, 0, 16,
1373                 (signed char*)address->ip);
1374
1375         jbyte prefixLength = address->prefix_length;
1376
1377         jobject ipv6AddressObj = vppIPv6AddressObject(env, ip, prefixLength);
1378
1379         (*env)->SetObjectArrayElement(env, ipv6AddressArray, i, ipv6AddressObj);
1380     }
1381
1382     returnArray = ipv6AddressArray;
1383
1384 done:
1385     vppjni_unlock (jm);
1386     return returnArray;
1387 }
1388
1389 static void vl_api_ip_address_details_t_handler (vl_api_ip_address_details_t * mp)
1390 {
1391     vppjni_main_t * jm = &vppjni_main;
1392
1393     if (!jm->is_ipv6) {
1394         ipv4_address_t *address = 0;
1395         vec_add2(jm->ipv4_addresses, address, 1);
1396         memcpy(&address->ip, mp->ip, 4);
1397         address->prefix_length = mp->prefix_length;
1398     } else {
1399         ipv6_address_t *address = 0;
1400         vec_add2(jm->ipv6_addresses, address, 1);
1401         memcpy(address->ip, mp->ip, 16);
1402         address->prefix_length = mp->prefix_length;
1403     }
1404 }
1405
1406 #define VXLAN_TUNNEL_INTERFACE_NAME_PREFIX "vxlan_tunnel"
1407
1408 JNIEXPORT jobjectArray JNICALL Java_org_openvpp_vppjapi_vppConn_vxlanTunnelDump0
1409 (JNIEnv * env, jobject obj, jint swIfIndex)
1410 {
1411     vppjni_main_t *jm = &vppjni_main;
1412     vl_api_vxlan_tunnel_dump_t * mp;
1413     jobjectArray returnArray = NULL;
1414     u32 my_context_id;
1415     f64 timeout;
1416     int rv = 0;
1417     int i;
1418
1419     vppjni_lock (jm, 22);
1420
1421     vec_reset_length(jm->vxlan_tunnel_details);
1422
1423     my_context_id = vppjni_get_context_id (jm);
1424     M(VXLAN_TUNNEL_DUMP, vxlan_tunnel_dump);
1425     mp->context = clib_host_to_net_u32 (my_context_id);
1426     mp->sw_if_index = clib_host_to_net_u32 (swIfIndex);
1427     S;
1428
1429     /* Use a control ping for synchronization */
1430     {
1431       vl_api_control_ping_t * mp;
1432       M(CONTROL_PING, control_ping);
1433       S;
1434     }
1435
1436     WNR;
1437     if (0 != rv) {
1438         goto done;
1439     }
1440
1441     u32 count = vec_len(jm->vxlan_tunnel_details);
1442
1443     jobjectArray vxlanTunnelDetailsArray = vppVxlanTunnelDetailsArray(env, count);
1444
1445     for (i = 0; i < count; i++) {
1446         vxlan_tunnel_details_t *details = &jm->vxlan_tunnel_details[i];
1447
1448         jint src_address = details->src_address;
1449         jint dst_address = details->dst_address;
1450         jint encap_vrf_id = details->encap_vrf_id;
1451         jint vni = details->vni;
1452         jint decap_next_index = details->decap_next_index;
1453
1454         jobject vxlanTunnelDetailsObj = vppVxlanTunnelDetailsObject(env,
1455                 src_address, dst_address, encap_vrf_id, vni, decap_next_index);
1456
1457         (*env)->SetObjectArrayElement(env, vxlanTunnelDetailsArray, i,
1458                 vxlanTunnelDetailsObj);
1459     }
1460
1461     returnArray = vxlanTunnelDetailsArray;
1462
1463 done:
1464     vppjni_unlock (jm);
1465     return returnArray;
1466 }
1467
1468 static void vl_api_vxlan_tunnel_details_t_handler
1469 (vl_api_vxlan_tunnel_details_t * mp)
1470 {
1471     vppjni_main_t * jm = &vppjni_main;
1472     vxlan_tunnel_details_t *tunnel_details;
1473
1474     vec_add2(jm->vxlan_tunnel_details, tunnel_details, 1);
1475     tunnel_details->src_address = ntohl(mp->src_address);
1476     tunnel_details->dst_address = ntohl(mp->dst_address);
1477     tunnel_details->encap_vrf_id = ntohl(mp->encap_vrf_id);
1478     tunnel_details->vni = ntohl(mp->vni);
1479     tunnel_details->decap_next_index = ntohl(mp->decap_next_index);
1480 }
1481
1482 /* cleanup handler for RX thread */
1483 static void cleanup_rx_thread(void *arg)
1484 {
1485     vppjni_main_t * jm = &vppjni_main;
1486
1487     vppjni_lock (jm, 99);
1488
1489     int getEnvStat = (*jm->jvm)->GetEnv(jm->jvm, (void **)&(jm->jenv), JNI_VERSION_1_6);
1490     if (getEnvStat == JNI_EVERSION) {
1491         clib_warning ("Unsupported JNI version\n");
1492         jm->retval = -999;
1493         goto out;
1494     } else if (getEnvStat != JNI_EDETACHED) {
1495         (*jm->jvm)->DetachCurrentThread(jm->jvm);
1496     }
1497 out:
1498     vppjni_unlock (jm);
1499 }
1500
1501 static void
1502 vl_api_show_version_reply_t_handler (vl_api_show_version_reply_t * mp)
1503 {
1504     vppjni_main_t * jm = &vppjni_main;
1505     i32 retval = ntohl(mp->retval);
1506
1507     if (retval >= 0) {
1508         DEBUG_LOG ("show version request succeeded(%d)");
1509         strncpy((char*)jm->program_name, (const char*)mp->program,
1510                 sizeof(jm->program_name)-1);
1511         jm->program_name[sizeof(jm->program_name)-1] = 0;
1512
1513         strncpy((char*)jm->build_directory, (const char*)mp->build_directory,
1514                 sizeof(jm->build_directory)-1);
1515         jm->build_directory[sizeof(jm->build_directory)-1] = 0;
1516
1517         strncpy((char*)jm->version, (const char*)mp->version,
1518                 sizeof(jm->version)-1);
1519         jm->version[sizeof(jm->version)-1] = 0;
1520
1521         strncpy((char*)jm->build_date, (const char*)mp->build_date,
1522                 sizeof(jm->build_date)-1);
1523         jm->build_date[sizeof(jm->build_date)-1] = 0;
1524     } else {
1525         clib_error ("show version request failed(%d)", retval);
1526     }
1527     jm->retval = retval;
1528     jm->result_ready = 1;
1529 }
1530
1531 static void vl_api_want_stats_reply_t_handler (vl_api_want_stats_reply_t * mp)
1532 {
1533     vppjni_main_t * jm = &vppjni_main;
1534     jm->retval = mp->retval; // FIXME: vpp api does not do ntohl on this retval
1535     jm->result_ready = 1;
1536 }
1537
1538 // control ping needs to be very first thing called
1539 // to attach rx thread to java thread
1540 static void vl_api_control_ping_reply_t_handler
1541 (vl_api_control_ping_reply_t * mp)
1542 {
1543     vppjni_main_t * jm = &vppjni_main;
1544     i32 retval = ntohl(mp->retval);
1545     jm->retval = retval;
1546
1547     // attach to java thread if not attached
1548     int getEnvStat = (*jm->jvm)->GetEnv(jm->jvm, (void **)&(jm->jenv), JNI_VERSION_1_6);
1549     if (getEnvStat == JNI_EDETACHED) {
1550         if ((*jm->jvm)->AttachCurrentThread(jm->jvm, (void **)&(jm->jenv), NULL) != 0) {
1551             clib_warning("Failed to attach thread\n");
1552             jm->retval = -999;
1553             goto out;
1554         }
1555
1556         // workaround as we can't use pthread_cleanup_push
1557         pthread_key_create(&jm->cleanup_rx_thread_key, cleanup_rx_thread);
1558         // destructor is only called if the value of key is non null
1559         pthread_setspecific(jm->cleanup_rx_thread_key, (void *)1);
1560     } else if (getEnvStat == JNI_EVERSION) {
1561         clib_warning ("Unsupported JNI version\n");
1562         jm->retval = -999;
1563         goto out;
1564     }
1565     // jm->jenv is now stable global reference that can be reused (only within RX thread)
1566
1567 #if 0
1568     // ! callback system removed for now
1569     //
1570     // get issuer msg-id
1571     p = hash_get (jm->ping_hash, context);
1572     if (p != 0) { // ping marks end of some dump call
1573         JNIEnv *env = jm->jenv;
1574         u16 msg_id = (u16)p[0];
1575
1576         // we will no longer need this
1577         hash_unset (jm->ping_hash, context);
1578
1579         // get original caller obj
1580         p = hash_get (jm->callback_hash, context);
1581
1582         if (p == 0) // don't have callback stored
1583             goto out;
1584
1585         jobject obj = (jobject)p[0]; // object that called original call
1586
1587         switch (msg_id) {
1588             case VL_API_SW_INTERFACE_DUMP:
1589                 if (0 != sw_if_dump_call_all_callbacks(obj)) {
1590                     goto out2;
1591                 }
1592                 break;
1593             default:
1594                 clib_warning("Unhandled control ping issuer msg-id: %d", msg_id);
1595                 goto out2;
1596                 break;
1597         }
1598 out2:
1599         // free the saved obj
1600         hash_unset (jm->callback_hash, context);
1601         // delete global reference
1602         (*env)->DeleteGlobalRef(env, obj);
1603     }
1604 #endif
1605
1606 out:
1607     jm->result_ready = 1;
1608 }
1609
1610 #define VPPJNI_DEBUG_COUNTERS 0
1611
1612 static void vl_api_vnet_interface_counters_t_handler
1613 (vl_api_vnet_interface_counters_t *mp)
1614 {
1615     vppjni_main_t *jm = &vppjni_main;
1616     CLIB_UNUSED(char *counter_name);
1617     u32 count, sw_if_index;
1618     int i;
1619     static sw_interface_stats_t empty_stats = {0, };
1620
1621     vppjni_lock (jm, 12);
1622     count = ntohl (mp->count);
1623     sw_if_index = ntohl (mp->first_sw_if_index);
1624     if (mp->is_combined == 0) {
1625         u64 * vp, v;
1626         vp = (u64 *) mp->data;
1627
1628         for (i = 0; i < count; i++) {
1629             sw_interface_details_t *sw_if = NULL;
1630
1631             v = clib_mem_unaligned (vp, u64);
1632             v = clib_net_to_host_u64 (v);
1633             vp++;
1634
1635             if (sw_if_index < vec_len(jm->sw_if_table))
1636                 sw_if = vec_elt_at_index(jm->sw_if_table, sw_if_index);
1637
1638             if (sw_if /* && (sw_if->admin_up_down == 1)*/ && sw_if->interface_name[0] != 0) {
1639                 vec_validate_init_empty(jm->sw_if_stats_by_sw_if_index, sw_if_index, empty_stats);
1640                 sw_interface_stats_t * s = vec_elt_at_index(jm->sw_if_stats_by_sw_if_index, sw_if_index);
1641
1642                 s->sw_if_index = sw_if_index;
1643                 s->valid = 1;
1644
1645                 switch (mp->vnet_counter_type) {
1646                     case  VNET_INTERFACE_COUNTER_DROP:
1647                         counter_name = "drop";
1648                         s->rx.pkts.discard = v;
1649                         break;
1650                     case  VNET_INTERFACE_COUNTER_PUNT:
1651                         counter_name = "punt";
1652                         s->rx.pkts.unknown_proto = v;
1653                         break;
1654                     case  VNET_INTERFACE_COUNTER_IP4:
1655                         counter_name = "ip4";
1656                         s->rx.pkts.ip4 = v;
1657                         break;
1658                     case  VNET_INTERFACE_COUNTER_IP6:
1659                         counter_name = "ip6";
1660                         s->rx.pkts.ip6 = v;
1661                         break;
1662                     case  VNET_INTERFACE_COUNTER_RX_NO_BUF:
1663                         counter_name = "rx-no-buf";
1664                         s->rx.pkts.fifo_full = v;
1665                         break;
1666                     case  VNET_INTERFACE_COUNTER_RX_MISS:
1667                         counter_name = "rx-miss";
1668                         s->rx.pkts.miss = v;
1669                         break;
1670                     case  VNET_INTERFACE_COUNTER_RX_ERROR:
1671                         counter_name = "rx-error";
1672                         s->rx.pkts.error = v;
1673                         break;
1674                     case  VNET_INTERFACE_COUNTER_TX_ERROR:
1675                         counter_name = "tx-error (fifo-full)";
1676                         s->tx.pkts.fifo_full = v;
1677                         break;
1678                     default:
1679                         counter_name = "bogus";
1680                         break;
1681                 }
1682
1683 #if VPPJNI_DEBUG_COUNTERS == 1
1684                 clib_warning ("%s (%d): %s (%lld)\n", sw_if->interface_name, s->sw_if_index,
1685                         counter_name, v);
1686 #endif
1687             }
1688             sw_if_index++;
1689         }
1690     } else {
1691         vlib_counter_t *vp;
1692         u64 packets, bytes;
1693         vp = (vlib_counter_t *) mp->data;
1694
1695         for (i = 0; i < count; i++) {
1696             sw_interface_details_t *sw_if = NULL;
1697
1698             packets = clib_mem_unaligned (&vp->packets, u64);
1699             packets = clib_net_to_host_u64 (packets);
1700             bytes = clib_mem_unaligned (&vp->bytes, u64);
1701             bytes = clib_net_to_host_u64 (bytes);
1702             vp++;
1703
1704             if (sw_if_index < vec_len(jm->sw_if_table))
1705                 sw_if = vec_elt_at_index(jm->sw_if_table, sw_if_index);
1706
1707             if (sw_if /* && (sw_if->admin_up_down == 1) */ && sw_if->interface_name[0] != 0) {
1708                 vec_validate_init_empty(jm->sw_if_stats_by_sw_if_index, sw_if_index, empty_stats);
1709                 sw_interface_stats_t * s = vec_elt_at_index(jm->sw_if_stats_by_sw_if_index, sw_if_index);
1710
1711                 s->valid = 1;
1712                 s->sw_if_index = sw_if_index;
1713
1714                 switch (mp->vnet_counter_type) {
1715                     case  VNET_INTERFACE_COUNTER_RX:
1716                         s->rx.pkts.unicast = packets;
1717                         s->rx.octets = bytes;
1718                         counter_name = "rx";
1719                         break;
1720
1721                     case  VNET_INTERFACE_COUNTER_TX:
1722                         s->tx.pkts.unicast = packets;
1723                         s->tx.octets = bytes;
1724                         counter_name = "tx";
1725                         break;
1726
1727                     default:
1728                         counter_name = "bogus";
1729                         break;
1730                 }
1731
1732 #if VPPJNI_DEBUG_COUNTERS == 1
1733                 clib_warning ("%s (%d): %s.packets %lld\n",
1734                         sw_if->interface_name,
1735                         sw_if_index, counter_name, packets);
1736                 clib_warning ("%s (%d): %s.bytes %lld\n",
1737                         sw_if->interface_name,
1738                         sw_if_index, counter_name, bytes);
1739 #endif
1740             }
1741             sw_if_index++;
1742         }
1743     }
1744     vppjni_unlock (jm);
1745 }
1746
1747 jint JNI_OnLoad(JavaVM *vm, void *reserved) {
1748     vppjni_main_t * jm = &vppjni_main;
1749     JNIEnv* env;
1750     if ((*vm)->GetEnv(vm, (void**) &env, JNI_VERSION_1_6) != JNI_OK) {
1751         return JNI_ERR;
1752     }
1753
1754     if (vppjni_init(env) != 0) {
1755         return JNI_ERR;
1756     }
1757
1758     jm->jvm = vm;
1759     return JNI_VERSION_1_6;
1760 }
1761
1762 void JNI_OnUnload(JavaVM *vm, void *reserved) {
1763     vppjni_main_t * jm = &vppjni_main;
1764     JNIEnv* env;
1765     if ((*vm)->GetEnv(vm, (void**) &env, JNI_VERSION_1_6) != JNI_OK) {
1766         return;
1767     }
1768
1769     vppjni_uninit(env);
1770
1771     jm->jenv = NULL;
1772     jm->jvm = NULL;
1773 }
1774
1775 #define foreach_vpe_api_msg                             \
1776 _(CONTROL_PING_REPLY, control_ping_reply)               \
1777 _(SW_INTERFACE_DETAILS, sw_interface_details)           \
1778 _(SHOW_VERSION_REPLY, show_version_reply)               \
1779 _(WANT_STATS_REPLY, want_stats_reply)                   \
1780 _(VNET_INTERFACE_COUNTERS, vnet_interface_counters)     \
1781 _(SW_INTERFACE_SET_FLAGS, sw_interface_set_flags)       \
1782 _(BRIDGE_DOMAIN_DETAILS, bridge_domain_details)         \
1783 _(BRIDGE_DOMAIN_SW_IF_DETAILS, bridge_domain_sw_if_details) \
1784 _(L2_FIB_TABLE_ENTRY, l2_fib_table_entry)               \
1785 _(IP_ADDRESS_DETAILS, ip_address_details)               \
1786 _(VXLAN_TUNNEL_DETAILS, vxlan_tunnel_details)
1787
1788 static int connect_to_vpe(char *name)
1789 {
1790     vppjni_main_t * jm = &vppjni_main;
1791     api_main_t * am = &api_main;
1792
1793     if (vl_client_connect_to_vlib("/vpe-api", name, 32) < 0)
1794         return -1;
1795
1796     jm->my_client_index = am->my_client_index;
1797     jm->vl_input_queue = am->shmem_hdr->vl_input_queue;
1798
1799 #define _(N,n)                                  \
1800     vl_msg_api_set_handlers(VL_API_##N, #n,     \
1801             vl_api_##n##_t_handler,                 \
1802             vl_noop_handler,                    \
1803             vl_api_##n##_t_endian,              \
1804             vl_api_##n##_t_print,               \
1805             sizeof(vl_api_##n##_t), 1);
1806     foreach_vpe_api_msg;
1807 #undef _
1808
1809     return 0;
1810 }
1811
1812 /* Format an IP6 address. */
1813 u8 * format_ip6_address (u8 * s, va_list * args)
1814 {
1815     ip6_address_t * a = va_arg (*args, ip6_address_t *);
1816     u32 max_zero_run = 0, this_zero_run = 0;
1817     int max_zero_run_index = -1, this_zero_run_index=0;
1818     int in_zero_run = 0, i;
1819     int last_double_colon = 0;
1820
1821     /* Ugh, this is a pain. Scan forward looking for runs of 0's */
1822     for (i = 0; i < ARRAY_LEN (a->as_u16); i++) {
1823         if (a->as_u16[i] == 0) {
1824             if (in_zero_run) {
1825                 this_zero_run++;
1826             } else {
1827                 in_zero_run = 1;
1828                 this_zero_run =1;
1829                 this_zero_run_index = i;
1830             }
1831         } else {
1832             if (in_zero_run) {
1833                 /* offer to compress the biggest run of > 1 zero */
1834                 if (this_zero_run > max_zero_run && this_zero_run > 1) {
1835                     max_zero_run_index = this_zero_run_index;
1836                     max_zero_run = this_zero_run;
1837                 }
1838             }
1839             in_zero_run = 0;
1840             this_zero_run = 0;
1841         }
1842     }
1843
1844     if (in_zero_run) {
1845         if (this_zero_run > max_zero_run && this_zero_run > 1) {
1846             max_zero_run_index = this_zero_run_index;
1847             max_zero_run = this_zero_run;
1848         }
1849     }
1850
1851     for (i = 0; i < ARRAY_LEN (a->as_u16); i++) {
1852         if (i == max_zero_run_index) {
1853             s = format (s, "::");
1854             i += max_zero_run - 1;
1855             last_double_colon = 1;
1856         } else {
1857             s = format (s, "%s%x",
1858                     (last_double_colon || i == 0) ? "" : ":",
1859                     clib_net_to_host_u16 (a->as_u16[i]));
1860             last_double_colon = 0;
1861         }
1862     }
1863
1864     return s;
1865 }
1866
1867 /* Format an IP4 address. */
1868 u8 * format_ip4_address (u8 * s, va_list * args)
1869 {
1870     u8 * a = va_arg (*args, u8 *);
1871     return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
1872 }
1873
1874