feature: convert all feature nodes to new feature infra
[vpp.git] / vnet / vnet / ip / ping.h
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 #ifndef included_vnet_ping_h
16 #define included_vnet_ping_h
17
18
19 #include <vnet/ip/ip.h>
20
21 #include <vnet/ip/lookup.h>
22
23 typedef enum {
24   PING_RESPONSE_IP6 = 42,
25   PING_RESPONSE_IP4,
26 } ping_response_type_t;
27
28 typedef enum {
29   SEND_PING_OK = 0,
30   SEND_PING_ALLOC_FAIL,
31   SEND_PING_NO_INTERFACE,
32 } send_ip46_ping_result_t;
33
34 /*
35  * Currently running ping command.
36  */
37 typedef struct ping_run_t {
38   u16 icmp_id;
39   u16 curr_seq;
40   uword cli_process_id;
41 } ping_run_t;
42
43 typedef struct ping_main_t {
44   ip6_main_t *ip6_main;
45   ip4_main_t *ip4_main;
46   ping_run_t *ping_runs;
47   /* hash table to find back the CLI process for a reply */
48   // uword *cli_proc_by_icmp_id;
49   ping_run_t *ping_run_by_icmp_id;
50 } ping_main_t;
51
52 ping_main_t ping_main;
53
54 #define PING_DEFAULT_DATA_LEN 60
55 #define PING_DEFAULT_INTERVAL 1.0
56
57 #define PING_MAXIMUM_DATA_SIZE 2000
58
59 typedef CLIB_PACKED (struct {
60   u16 id;
61   u16 seq;
62   f64 time_sent;
63   u8 data[PING_MAXIMUM_DATA_SIZE];
64 }) icmp46_echo_request_t;
65
66
67 typedef CLIB_PACKED (struct {
68   ip6_header_t ip6;
69   icmp46_header_t icmp;
70   icmp46_echo_request_t icmp_echo;
71 }) icmp6_echo_request_header_t;
72
73 typedef CLIB_PACKED(struct {
74     ip4_header_t ip4;
75     icmp46_header_t icmp;
76     icmp46_echo_request_t icmp_echo;
77 }) icmp4_echo_request_header_t;
78
79
80 typedef struct {
81   u8 packet_data[64];
82 } icmp4_input_trace_t;
83
84
85
86
87 typedef enum {
88   ICMP6_ECHO_REPLY_NEXT_NORMAL,
89   ICMP6_ECHO_REPLY_N_NEXT,
90 } icmp6_echo_reply_next_t;
91
92 typedef enum {
93   ICMP4_ECHO_REPLY_NEXT_NORMAL,
94   ICMP4_ECHO_REPLY_N_NEXT,
95 } icmp4_echo_reply_next_t;
96
97 #endif /* included_vnet_ping_h */