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
|
/* Copyright (c) 2021, Red Hat, 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.
*/
#ifndef OVN_COPP_H
#define OVN_COPP_H 1
/*
* Control plane protection - metered actions.
*/
enum copp_proto {
COPP_PROTO_FIRST,
COPP_ARP = COPP_PROTO_FIRST,
COPP_ARP_RESOLVE,
COPP_DHCPV4_OPTS,
COPP_DHCPV6_OPTS,
COPP_DNS,
COPP_EVENT_ELB,
COPP_ICMP4_ERR,
COPP_ICMP6_ERR,
COPP_IGMP,
COPP_ND_NA,
COPP_ND_NS,
COPP_ND_NS_RESOLVE,
COPP_ND_RA_OPTS,
COPP_TCP_RESET,
COPP_BFD,
COPP_REJECT,
COPP_SVC_MONITOR,
COPP_DHCPV4_RELAY,
COPP_PROTO_MAX,
COPP_PROTO_INVALID = COPP_PROTO_MAX,
};
struct nbrec_copp;
struct ctl_context;
const char *copp_meter_get(enum copp_proto proto,
const struct nbrec_copp *copp,
const struct shash *meter_groups);
void copp_meter_list(struct ctl_context *ctx, const struct nbrec_copp *copp);
const struct nbrec_copp *
copp_meter_add(struct ctl_context *ctx, const struct nbrec_copp *copp,
const char *proto_name, const char *meter);
void
copp_meter_del(const struct nbrec_copp *copp, const char *proto_name);
char * copp_proto_validate(const char *proto_name);
char * OVS_WARN_UNUSED_RESULT
copp_by_name_or_uuid(struct ctl_context *ctx, const char *id, bool must_exist,
const struct nbrec_copp **copp_p);
#endif /* lib/copp.h */
|