blob: 442ba732dda2ce5d41d64a7b7d7b744dcc4cdafb [file] [log] [blame]
Andrew Yourtchenko7e682202016-08-04 13:39:35 +00001/*
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
Dave Barachd7cb1b52016-12-09 09:52:16 -050023typedef enum
24{
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000025 PING_RESPONSE_IP6 = 42,
26 PING_RESPONSE_IP4,
27} ping_response_type_t;
28
Neale Rannse9239c92018-10-15 05:47:58 -070029#define foreach_ip46_ping_result \
30 _ (OK, "OK") \
31 _ (ALLOC_FAIL, "packet allocation failed") \
32 _ (NO_INTERFACE, "no egress interface") \
33 _ (NO_TABLE, "no IPv6 Table for lookup") \
34 _ (NO_SRC_ADDRESS, "no source address for egress interface") \
35
Dave Barachd7cb1b52016-12-09 09:52:16 -050036typedef enum
37{
Neale Rannse9239c92018-10-15 05:47:58 -070038#define _(v, s) SEND_PING_##v,
39 foreach_ip46_ping_result
40#undef _
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000041} send_ip46_ping_result_t;
42
43/*
44 * Currently running ping command.
45 */
Dave Barachd7cb1b52016-12-09 09:52:16 -050046typedef struct ping_run_t
47{
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000048 u16 icmp_id;
49 u16 curr_seq;
50 uword cli_process_id;
Mohammed Hawari03a62132017-07-18 09:25:01 +020051 uword cli_thread_index;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000052} ping_run_t;
53
Dave Barachd7cb1b52016-12-09 09:52:16 -050054typedef struct ping_main_t
55{
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000056 ip6_main_t *ip6_main;
57 ip4_main_t *ip4_main;
58 ping_run_t *ping_runs;
59 /* hash table to find back the CLI process for a reply */
60 // uword *cli_proc_by_icmp_id;
61 ping_run_t *ping_run_by_icmp_id;
62} ping_main_t;
63
Dave Wallace71612d62017-10-24 01:32:41 -040064extern ping_main_t ping_main;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000065
66#define PING_DEFAULT_DATA_LEN 60
67#define PING_DEFAULT_INTERVAL 1.0
68
Andrew Yourtchenko61459c92017-01-28 15:31:19 +000069#define PING_MAXIMUM_DATA_SIZE (VLIB_BUFFER_DATA_SIZE - sizeof(ip6_header_t) - sizeof(icmp46_header_t) - offsetof(icmp46_echo_request_t, data))
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000070
Andrew Yourtchenko61459c92017-01-28 15:31:19 +000071/* *INDENT-OFF* */
72
73typedef CLIB_PACKED (struct {
74 u16 id;
75 u16 seq;
76 f64 time_sent;
77 u8 data[0];
78}) icmp46_echo_request_t;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000079
80
Andrew Yourtchenko61459c92017-01-28 15:31:19 +000081typedef CLIB_PACKED (struct {
82 ip6_header_t ip6;
83 icmp46_header_t icmp;
84 icmp46_echo_request_t icmp_echo;
85}) icmp6_echo_request_header_t;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000086
Andrew Yourtchenko61459c92017-01-28 15:31:19 +000087typedef CLIB_PACKED (struct {
88 ip4_header_t ip4;
89 icmp46_header_t icmp;
90 icmp46_echo_request_t icmp_echo;
91}) icmp4_echo_request_header_t;
92
93/* *INDENT-ON* */
Andrew Yourtchenko7e682202016-08-04 13:39:35 +000094
95
Dave Barachd7cb1b52016-12-09 09:52:16 -050096typedef struct
97{
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -080098 u16 id;
99 u16 seq;
100 u8 bound;
101} icmp_echo_trace_t;
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000102
103
104
105
Dave Barachd7cb1b52016-12-09 09:52:16 -0500106typedef enum
107{
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800108 ICMP6_ECHO_REPLY_NEXT_DROP,
109 ICMP6_ECHO_REPLY_NEXT_PUNT,
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000110 ICMP6_ECHO_REPLY_N_NEXT,
111} icmp6_echo_reply_next_t;
112
Dave Barachd7cb1b52016-12-09 09:52:16 -0500113typedef enum
114{
Alexander Popovskyc90dfdc2016-12-04 02:39:38 -0800115 ICMP4_ECHO_REPLY_NEXT_DROP,
116 ICMP4_ECHO_REPLY_NEXT_PUNT,
Andrew Yourtchenko7e682202016-08-04 13:39:35 +0000117 ICMP4_ECHO_REPLY_N_NEXT,
118} icmp4_echo_reply_next_t;
119
120#endif /* included_vnet_ping_h */