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