summaryrefslogtreecommitdiff
path: root/datapath-windows/ovsext/Conntrack-icmp.c
blob: 081eb73d9dd86dfda4f934a3a4f5c280f339a451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * Copyright (c) 2016 VMware, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at:
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include "NetProto.h"
#include "Conntrack.h"
#include <stddef.h>

enum icmp_state {
    ICMPS_FIRST,
    ICMPS_REPLY,
};

struct conn_icmp {
    struct OVS_CT_ENTRY up;
    enum icmp_state state;
};
C_ASSERT(offsetof(struct conn_icmp, up) == 0);

static const enum ct_timeout icmp_timeouts[] = {
    [ICMPS_FIRST] = 60 * CT_INTERVAL_SEC,
    [ICMPS_REPLY] = 30 * CT_INTERVAL_SEC,
};

static __inline struct conn_icmp *
OvsCastConntrackEntryToIcmpEntry(OVS_CT_ENTRY* conn)
{
    return CONTAINER_OF(conn, struct conn_icmp, up);
}

enum CT_UPDATE_RES
OvsConntrackUpdateIcmpEntry(OVS_CT_ENTRY* conn_,
                            BOOLEAN reply,
                            UINT64 now)
{
    struct conn_icmp *conn = OvsCastConntrackEntryToIcmpEntry(conn_);

    if (reply && conn->state != ICMPS_REPLY) {
        conn->state = ICMPS_REPLY;
    }

    OvsConntrackUpdateExpiration(&conn->up, now,
                                 icmp_timeouts[conn->state]);

    return CT_UPDATE_VALID;
}

BOOLEAN
OvsConntrackValidateIcmpPacket(const ICMPHdr *icmp)
{
    if (!icmp) {
        OVS_LOG_TRACE("Invalid ICMP packet detected, header cannot be NULL");
        return FALSE;
    }

    return icmp->type == ICMP4_ECHO_REQUEST
           || icmp->type == ICMP4_INFO_REQUEST
           || icmp->type == ICMP4_TIMESTAMP_REQUEST;
}

BOOLEAN
OvsConntrackValidateIcmp6Packet(const ICMPHdr *icmp)
{
    if (!icmp) {
        OVS_LOG_TRACE("Invalid ICMP packet detected, header cannot be NULL");
        return FALSE;
    }

    return icmp->type == ICMP6_ECHO_REQUEST ||
           icmp->type == ICMP6_PACKET_TOO_BIG ||
           icmp->type == ICMP6_DST_UNREACH ||
           icmp->type == ICMP6_TIME_EXCEEDED ||
           icmp->type == ICMP6_PARAM_PROB;
}

OVS_CT_ENTRY *
OvsConntrackCreateIcmpEntry(UINT64 now)
{
    struct conn_icmp *conn;

    conn = OvsAllocateMemoryWithTag(sizeof(struct conn_icmp),
                                    OVS_CT_POOL_TAG);
    if (!conn) {
        return NULL;
    }
    conn->up = (OVS_CT_ENTRY) {0};
    conn->state = ICMPS_FIRST;

    OvsConntrackUpdateExpiration(&conn->up, now,
                                 icmp_timeouts[conn->state]);

    return &conn->up;
}