]> git.proxmox.com Git - mirror_ovs.git/blame - lib/conntrack-icmp.c
ovsdb-idl: Fix *_is_new() IDL functions.
[mirror_ovs.git] / lib / conntrack-icmp.c
CommitLineData
b269a122 1/*
967bb5c5 2 * Copyright (c) 2015-2019 Nicira, Inc.
b269a122
DDP
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <config.h>
18
19#include <errno.h>
20#include <sys/types.h>
21#include <netinet/in.h>
22#include <netinet/icmp6.h>
23
24#include "conntrack-private.h"
2078901a 25#include "conntrack-tp.h"
b269a122
DDP
26#include "dp-packet.h"
27
967bb5c5 28enum OVS_PACKED_ENUM icmp_state {
b269a122
DDP
29 ICMPS_FIRST,
30 ICMPS_REPLY,
31};
32
33struct conn_icmp {
34 struct conn up;
967bb5c5 35 enum icmp_state state; /* 'conn' lock protected. */
b269a122
DDP
36};
37
38static const enum ct_timeout icmp_timeouts[] = {
39 [ICMPS_FIRST] = CT_TM_ICMP_FIRST,
40 [ICMPS_REPLY] = CT_TM_ICMP_REPLY,
41};
42
43static struct conn_icmp *
44conn_icmp_cast(const struct conn *conn)
45{
46 return CONTAINER_OF(conn, struct conn_icmp, up);
47}
48
49static enum ct_update_res
967bb5c5 50icmp_conn_update(struct conntrack *ct, struct conn *conn_,
b269a122
DDP
51 struct dp_packet *pkt OVS_UNUSED, bool reply, long long now)
52{
53 struct conn_icmp *conn = conn_icmp_cast(conn_);
b269a122 54
d93c3111
WT
55 if (reply && conn->state == ICMPS_FIRST) {
56 conn->state = ICMPS_REPLY;
57 }
58
59 conn_update_expiration(ct, &conn->up, icmp_timeouts[conn->state], now);
b269a122
DDP
60 return CT_UPDATE_VALID;
61}
62
63static bool
64icmp4_valid_new(struct dp_packet *pkt)
65{
66 struct icmp_header *icmp = dp_packet_l4(pkt);
67
68 return icmp->icmp_type == ICMP4_ECHO_REQUEST
69 || icmp->icmp_type == ICMP4_INFOREQUEST
70 || icmp->icmp_type == ICMP4_TIMESTAMP;
71}
72
73static bool
74icmp6_valid_new(struct dp_packet *pkt)
75{
76 struct icmp6_header *icmp6 = dp_packet_l4(pkt);
77
78 return icmp6->icmp6_type == ICMP6_ECHO_REQUEST;
79}
80
81static struct conn *
967bb5c5 82icmp_new_conn(struct conntrack *ct, struct dp_packet *pkt OVS_UNUSED,
2078901a 83 long long now, uint32_t tp_id)
b269a122 84{
967bb5c5 85 struct conn_icmp *conn = xzalloc(sizeof *conn);
b269a122 86 conn->state = ICMPS_FIRST;
2078901a 87 conn->up.tp_id = tp_id;
b269a122 88
2078901a 89 conn_init_expiration(ct, &conn->up, icmp_timeouts[conn->state], now);
b269a122
DDP
90 return &conn->up;
91}
92
93struct ct_l4_proto ct_proto_icmp4 = {
94 .new_conn = icmp_new_conn,
95 .valid_new = icmp4_valid_new,
96 .conn_update = icmp_conn_update,
97};
98
99struct ct_l4_proto ct_proto_icmp6 = {
100 .new_conn = icmp_new_conn,
101 .valid_new = icmp6_valid_new,
102 .conn_update = icmp_conn_update,
103};