summaryrefslogtreecommitdiffstats
path: root/VNFs/vCGNAPT/pipeline/pipeline_cgnapt.h
blob: 6497de27be59e35634b309f876964884c2dec752 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/*
// Copyright (c) 2017 Intel Corporation
//
// 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 __INCLUDE_PIPELINE_CGNAPT_H__
#define __INCLUDE_PIPELINE_CGNAPT_H__

/**
 * @file
 * Pipeline CG-NAPT FE.
 *
 * PipelineCG-NAPT Front End (FE).
 * Runs on the Master pipeline, responsible for CLI commands.
 *
 */

#include "pipeline.h"
#include "pipeline_cgnapt_common.h"
#include <civetweb.h>
#include <json/json.h>

/**
 * Add NAPT rule to the NAPT rule table.
 * Both IPv4 and IPv6 rules can be added.
 *
 * @param app
 *  A pointer to the pipeline app parameters.
 * @param pipeline_id
 *  Pipeline id
 * @param key
 *  A pointer to the NAPT key corresponding to the entry being added.
 * @param entry_params
 *  A pointer to the NAPT entry being added.
 *
 * @return
 *  0 on success, negative on error.
 */
#if 0
int
app_pipeline_cgnapt_add_entry(struct app_params *app,
						uint32_t pipeline_id,
						struct pipeline_cgnapt_entry_key *key,
						struct app_pipeline_cgnapt_entry_params
						*entry_params);
#endif
int app_pipeline_cgnapt_add_entry(
	struct app_params *app,
	uint32_t pipeline_id,
	struct app_pipeline_cgnapt_entry_params *entry_params);
/**
 * Delete NAPT rule from the NAPT rule table.
 * Both IPv4 and IPv6 rules can be added.
 *
 * @param app
 *  A pointer to the pipeline app parameters.
 * @param pipeline_id
 *  Pipeline id
 * @param key
 *  A pointer to the NAPT key corresponding to the entry being added.
 *
 * @return
 *  0 on success, negative on error.
 */
int
app_pipeline_cgnapt_delete_entry(struct app_params *app,
				 uint32_t pipeline_id,
				 struct pipeline_cgnapt_entry_key *key);

/**
 * Add multiple NAPT rule to the NAPT rule table.
 * Both IPv4 and IPv6 rules can be added.
 *
 * @param app
 *  A pointer to the pipeline app parameters.
 * @param pipeline_id
 *  Pipeline id
 * @param entry_params
 *  A pointer to the multiple NAPT entry params being added.
 *
 * @return
 *  0 on success, negative on error.
 */
int app_pipeline_cgnapt_addm_entry(struct app_params *app, uint32_t pipeline_id,
						struct app_pipeline_cgnapt_mentry_params
					 *entry_params);

/**
 * Add Network Specific Prefix for NAT64.
 *
 * @param app
 *  A pointer to the pipeline app parameters.
 * @param pipeline_id
 *  Pipeline id
 * @param nsp
 *  A pointer to NSP being added.
 *
 * @return
 *  0 on success, negative on error.
 */
int
app_pipeline_cgnapt_nsp_add_entry(struct app_params *app,
					uint32_t pipeline_id,
					struct pipeline_cgnapt_nsp_t *nsp);

/**
 * Delete a Network Specific Prefix for NAT64.
 *
 * @param app
 *  A pointer to the pipeline app parameters.
 * @param pipeline_id
 *  Pipeline id
 * @param nsp
 *  A pointer to NSP being deleted.
 *
 * @return
 *  0 on success, negative on error.
 */
int
app_pipeline_cgnapt_nsp_del_entry(struct app_params *app,
					uint32_t pipeline_id,
					struct pipeline_cgnapt_nsp_t *nsp);
#ifdef REST_API_SUPPORT
/* REST api's are defined here */
int cgnapt_cmd_ver_handler(struct mg_connection *conn, void *cbdata);
int cgnapt_stats_handler(struct mg_connection *conn, void *cbdata);
void rest_api_cgnapt_init(struct mg_context *ctx, struct app_params *app);
#endif

/*
 * Pipeline type
 */
extern struct pipeline_type pipeline_cgnapt;

#endif