blob: 8d88569a1958c007eb9d9d5dbdba007e383634c5 [file] [log] [blame]
Brian Waters13d96012017-12-08 16:53:31 -06001/*
2* Copyright (c) 2017 Sprint
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/****************
18 Generated By: fdtool enhancements to diafuzzer
19 License: same as freeDiameter
20****************/
21
22
23/*
24 * Dictionary definitions of objects specified in rfc5778_avps.
25 */
26#include <freeDiameter/extension.h>
27
28#define PROTO_VER "unspecified"
29#define GEN_DATE 1506697143.61
30
31const char *rfc5778_avps_proto_ver = PROTO_VER;
32const double rfc5778_avps_gen_date = GEN_DATE;
33
34/* The content of this file follows the same structure as dict_base_proto.c */
35
36#define CHECK_dict_new( _type, _data, _parent, _ref ) \
37{ \
38 int _ret = fd_dict_new( fd_g_config->cnf_dict, (_type), (_data), (_parent), (_ref) ); \
39 if ( _ret != 0 && _ret != EEXIST ) \
40 return _ret; \
41}
42
43#define CHECK_dict_search( _type, _criteria, _what, _result ) \
44 CHECK_FCT( fd_dict_search( fd_g_config->cnf_dict, (_type), (_criteria), (_what), (_result), ENOENT) );
45
46struct local_rules_definition {
47 struct dict_avp_request avp_vendor_plus_name;
48 enum rule_position position;
49 int min;
50 int max;
51};
52
53#define RULE_ORDER( _position ) ((((_position) == RULE_FIXED_HEAD) || ((_position) == RULE_FIXED_TAIL)) ? 1 : 0 )
54
55/* Attention! This version of the macro uses AVP_BY_NAME_AND_VENDOR, in contrast to most other copies! */
56#define PARSE_loc_rules( _rulearray, _parent) { \
57 int __ar; \
58 for (__ar=0; __ar < sizeof(_rulearray) / sizeof((_rulearray)[0]); __ar++) { \
59 struct dict_rule_data __data = { NULL, \
60 (_rulearray)[__ar].position, \
61 0, \
62 (_rulearray)[__ar].min, \
63 (_rulearray)[__ar].max}; \
64 __data.rule_order = RULE_ORDER(__data.rule_position); \
65 CHECK_FCT( fd_dict_search( \
66 fd_g_config->cnf_dict, \
67 DICT_AVP, \
68 AVP_BY_NAME_AND_VENDOR, \
69 &(_rulearray)[__ar].avp_vendor_plus_name, \
70 &__data.rule_avp, 0 ) ); \
71 if ( !__data.rule_avp ) { \
72 TRACE_DEBUG(INFO, "AVP Not found: '%s'", (_rulearray)[__ar].avp_vendor_plus_name.avp_name); \
73 return ENOENT; \
74 } \
75 { \
76 int _ret = fd_dict_new( fd_g_config->cnf_dict, DICT_RULE, &(__data), (_parent), NULL ); \
77 if ( _ret != 0 && _ret != EEXIST ) { \
78 TRACE_DEBUG(INFO, "Error on rule with AVP '%s'", \
79 (_rulearray)[__ar].avp_vendor_plus_name.avp_name); \
80 return EINVAL; \
81 } \
82 } \
83 } \
84}
85
86#define CHECK_vendor_new( _data ) { \
87 struct dict_object * vendor_found; \
88 if (fd_dict_search(fd_g_config->cnf_dict,DICT_VENDOR,VENDOR_BY_ID,&_data.vendor_id,&vendor_found,ENOENT) == ENOENT) { \
89 CHECK_FCT(fd_dict_new(fd_g_config->cnf_dict, DICT_VENDOR, &_data, NULL, NULL)); \
90 } \
91}
92
93#define enumval_def_u32( _val_, _str_ ) \
94 { _str_, { .u32 = _val_ }}
95
96#define enumval_def_os( _len_, _val_, _str_ ) \
97 { _str_, { .os = { .data = (unsigned char *)_val_, .len = _len_ }}}
98
99
100static int dict_rfc5778_avps_load_defs(char * conffile)
101{
102 TRACE_ENTRY("%p", conffile);
103
104 /* AVP section */
105 {
106 struct dict_object * Address_type;
107 struct dict_object * UTF8String_type;
108 struct dict_object * DiameterIdentity_type;
109 struct dict_object * DiameterURI_type;
110 struct dict_object * Time_type;
111 struct dict_object * IPFilterRule_type;
112
113 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "Address", &Address_type);
114 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "UTF8String", &UTF8String_type);
115 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "DiameterIdentity", &DiameterIdentity_type);
116 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "DiameterURI", &DiameterURI_type);
117 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "Time", &Time_type);
118 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "IPFilterRule", &IPFilterRule_type);
119 /* Service-Selection */
120 {
121 struct dict_avp_data data = {
122 493, /* Code */
123 0, /* Vendor */
124 "Service-Selection", /* Name */
125 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
126 AVP_FLAG_MANDATORY, /* Fixed flag values */
127 AVP_TYPE_OCTETSTRING /* base type of data */
128 };
129 CHECK_dict_new( DICT_AVP, &data, UTF8String_type, NULL);
130 };
131 /* MIP-MN-HA-SPI */
132 {
133 struct dict_avp_data data = {
134 491, /* Code */
135 0, /* Vendor */
136 "MIP-MN-HA-SPI", /* Name */
137 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
138 AVP_FLAG_MANDATORY, /* Fixed flag values */
139 AVP_TYPE_UNSIGNED32 /* base type of data */
140 };
141 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
142 };
143 /* MIP-Careof-Address */
144 {
145 struct dict_avp_data data = {
146 487, /* Code */
147 0, /* Vendor */
148 "MIP-Careof-Address", /* Name */
149 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
150 AVP_FLAG_MANDATORY, /* Fixed flag values */
151 AVP_TYPE_OCTETSTRING /* base type of data */
152 };
153 CHECK_dict_new( DICT_AVP, &data, Address_type, NULL);
154 };
155 /* MIP-Authenticator */
156 {
157 struct dict_avp_data data = {
158 488, /* Code */
159 0, /* Vendor */
160 "MIP-Authenticator", /* Name */
161 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
162 AVP_FLAG_MANDATORY, /* Fixed flag values */
163 AVP_TYPE_OCTETSTRING /* base type of data */
164 };
165 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
166 };
167 /* MIP-MAC-Mobility-Data */
168 {
169 struct dict_avp_data data = {
170 489, /* Code */
171 0, /* Vendor */
172 "MIP-MAC-Mobility-Data", /* Name */
173 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
174 AVP_FLAG_MANDATORY, /* Fixed flag values */
175 AVP_TYPE_OCTETSTRING /* base type of data */
176 };
177 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
178 };
179 /* MIP-Timestamp */
180 {
181 struct dict_avp_data data = {
182 490, /* Code */
183 0, /* Vendor */
184 "MIP-Timestamp", /* Name */
185 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
186 AVP_FLAG_MANDATORY, /* Fixed flag values */
187 AVP_TYPE_OCTETSTRING /* base type of data */
188 };
189 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
190 };
191 /* MIP6-Auth-Mode */
192 {
193 struct dict_avp_data data = {
194 494, /* Code */
195 0, /* Vendor */
196 "MIP6-Auth-Mode", /* Name */
197 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
198 AVP_FLAG_MANDATORY, /* Fixed flag values */
199 AVP_TYPE_INTEGER32 /* base type of data */
200 };
201 struct dict_object *type;
202 struct dict_type_data tdata = { AVP_TYPE_INTEGER32, "Enumerated(MIP6-Auth-Mode)", NULL, NULL, NULL };
203 struct dict_enumval_data t_1 = { "MN_HA", { .i32=1 }};
204 struct dict_enumval_data t_2 = { "MN_AAA", { .i32=2 }};
205 /* Create the Enumerated type, and then the AVP */
206 CHECK_dict_new( DICT_TYPE, &tdata, NULL, &type);
207 CHECK_dict_new( DICT_ENUMVAL, &t_1, type, NULL);
208 CHECK_dict_new( DICT_ENUMVAL, &t_2, type, NULL);
209 CHECK_dict_new( DICT_AVP, &data, type, NULL);
210 };
211 /* MIP-MN-HA-MSA */
212 {
213 /* Grouped */
214 struct dict_object * avp;
215 struct dict_avp_data data = {
216 492, /* Code */
217 0, /* Vendor */
218 "MIP-MN-HA-MSA", /* Name */
219 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
220 AVP_FLAG_MANDATORY, /* Fixed flag values */
221 AVP_TYPE_GROUPED /* base type of data */
222 };
223 CHECK_dict_new( DICT_AVP, &data , NULL, &avp);
224 }
225
226
227 }
228
229 /* Commands section */
230 {
231
232 }
233
234 return 0;
235}
236
237static int dict_rfc5778_avps_load_rules(char * conffile)
238{
239 /* Grouped AVP section */
240 {
241 /* MIP-MN-HA-MSA */
242 {
243 /* Grouped */
244 struct dict_object * avp;
245 struct dict_avp_request avp_vendor_plus_name = { .avp_vendor = 0, .avp_name = "MIP-MN-HA-MSA"};
246 CHECK_dict_search(DICT_AVP, AVP_BY_NAME_AND_VENDOR, &avp_vendor_plus_name, &avp)
247 struct local_rules_definition rules[] =
248 {
249 { { .avp_vendor = 0, .avp_name = "MIP-Session-Key"}, RULE_REQUIRED, -1, -1 },
250 { { .avp_vendor = 0, .avp_name = "MIP-MSA-Lifetime"}, RULE_REQUIRED, -1, -1 },
251 { { .avp_vendor = 0, .avp_name = "MIP-MN-HA-SPI"}, RULE_OPTIONAL, -1, -1 },
252 { { .avp_vendor = 0, .avp_name = "MIP-Algorithm-Type"}, RULE_OPTIONAL, -1, -1 },
253 { { .avp_vendor = 0, .avp_name = "MIP-Replay-Mode"}, RULE_OPTIONAL, -1, -1 }
254 };
255 PARSE_loc_rules( rules, avp );
256 }
257
258 }
259
260 /* Commands section */
261 {
262
263 }
264
265 LOG_D( "Extension 'Dictionary definitions for rfc5778_avps (None)' initialized");
266 return 0;
267}
268
269int dict_entry(char * conffile)
270{
271 dict_rfc5778_avps_load_defs(conffile);
272 return dict_rfc5778_avps_load_rules(conffile);
273}
274
275const char* dict_rfc5778_avps_proto_ver(char * conffile) {
276 return rfc5778_avps_proto_ver;
277}
278
279const double dict_rfc5778_avps_gen_ts(char * conffile) {
280 return rfc5778_avps_gen_date;
281}
282
283EXTENSION_ENTRY2("dict_rfc5778_avps", dict_rfc5778_avps_load_defs, dict_rfc5778_avps_load_rules, "dict_rfc7155_avps", "dict_rfc5447_avps", "dict_rfc5777_avps", "dict_rfc4004_avps");
284
285
286