blob: a09901d6266b5338bb807036d50d06d73ff47f73 [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 rfc4590_avps.
25 */
26#include <freeDiameter/extension.h>
27
28#define PROTO_VER "unspecified"
29#define GEN_DATE 1506697143.52
30
31const char *rfc4590_avps_proto_ver = PROTO_VER;
32const double rfc4590_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_rfc4590_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 /* Message-Authenticator */
120 {
121 struct dict_avp_data data = {
122 80, /* Code */
123 0, /* Vendor */
124 "Message-Authenticator", /* Name */
125 0, /* Fixed flags */
126 0, /* Fixed flag values */
127 AVP_TYPE_OCTETSTRING /* base type of data */
128 };
129 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
130 };
131 /* Digest-Response */
132 {
133 struct dict_avp_data data = {
134 103, /* Code */
135 0, /* Vendor */
136 "Digest-Response", /* Name */
137 0, /* Fixed flags */
138 0, /* Fixed flag values */
139 AVP_TYPE_OCTETSTRING /* base type of data */
140 };
141 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
142 };
143 /* Digest-Realm */
144 {
145 struct dict_avp_data data = {
146 104, /* Code */
147 0, /* Vendor */
148 "Digest-Realm", /* Name */
149 0, /* Fixed flags */
150 0, /* Fixed flag values */
151 AVP_TYPE_OCTETSTRING /* base type of data */
152 };
153 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
154 };
155 /* Digest-Nonce */
156 {
157 struct dict_avp_data data = {
158 105, /* Code */
159 0, /* Vendor */
160 "Digest-Nonce", /* Name */
161 0, /* Fixed flags */
162 0, /* Fixed flag values */
163 AVP_TYPE_OCTETSTRING /* base type of data */
164 };
165 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
166 };
167 /* Digest-Response-Auth */
168 {
169 struct dict_avp_data data = {
170 106, /* Code */
171 0, /* Vendor */
172 "Digest-Response-Auth", /* Name */
173 0, /* Fixed flags */
174 0, /* Fixed flag values */
175 AVP_TYPE_OCTETSTRING /* base type of data */
176 };
177 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
178 };
179 /* Digest-Nextnonce */
180 {
181 struct dict_avp_data data = {
182 107, /* Code */
183 0, /* Vendor */
184 "Digest-Nextnonce", /* Name */
185 0, /* Fixed flags */
186 0, /* Fixed flag values */
187 AVP_TYPE_OCTETSTRING /* base type of data */
188 };
189 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
190 };
191 /* Digest-Method */
192 {
193 struct dict_avp_data data = {
194 108, /* Code */
195 0, /* Vendor */
196 "Digest-Method", /* Name */
197 0, /* Fixed flags */
198 0, /* Fixed flag values */
199 AVP_TYPE_OCTETSTRING /* base type of data */
200 };
201 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
202 };
203 /* Digest-URI */
204 {
205 struct dict_avp_data data = {
206 109, /* Code */
207 0, /* Vendor */
208 "Digest-URI", /* Name */
209 0, /* Fixed flags */
210 0, /* Fixed flag values */
211 AVP_TYPE_OCTETSTRING /* base type of data */
212 };
213 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
214 };
215 /* Digest-QoP */
216 {
217 struct dict_avp_data data = {
218 110, /* Code */
219 0, /* Vendor */
220 "Digest-QoP", /* Name */
221 0, /* Fixed flags */
222 0, /* Fixed flag values */
223 AVP_TYPE_OCTETSTRING /* base type of data */
224 };
225 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
226 };
227 /* Digest-Algorithm */
228 {
229 struct dict_avp_data data = {
230 111, /* Code */
231 0, /* Vendor */
232 "Digest-Algorithm", /* Name */
233 0, /* Fixed flags */
234 0, /* Fixed flag values */
235 AVP_TYPE_OCTETSTRING /* base type of data */
236 };
237 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
238 };
239 /* Digest-Entity-Body-Hash */
240 {
241 struct dict_avp_data data = {
242 112, /* Code */
243 0, /* Vendor */
244 "Digest-Entity-Body-Hash", /* Name */
245 0, /* Fixed flags */
246 0, /* Fixed flag values */
247 AVP_TYPE_OCTETSTRING /* base type of data */
248 };
249 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
250 };
251 /* Digest-CNonce */
252 {
253 struct dict_avp_data data = {
254 113, /* Code */
255 0, /* Vendor */
256 "Digest-CNonce", /* Name */
257 0, /* Fixed flags */
258 0, /* Fixed flag values */
259 AVP_TYPE_OCTETSTRING /* base type of data */
260 };
261 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
262 };
263 /* Digest-Nonce-Count */
264 {
265 struct dict_avp_data data = {
266 114, /* Code */
267 0, /* Vendor */
268 "Digest-Nonce-Count", /* Name */
269 0, /* Fixed flags */
270 0, /* Fixed flag values */
271 AVP_TYPE_OCTETSTRING /* base type of data */
272 };
273 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
274 };
275 /* Digest-Username */
276 {
277 struct dict_avp_data data = {
278 115, /* Code */
279 0, /* Vendor */
280 "Digest-Username", /* Name */
281 0, /* Fixed flags */
282 0, /* Fixed flag values */
283 AVP_TYPE_OCTETSTRING /* base type of data */
284 };
285 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
286 };
287 /* Digest-Opaque */
288 {
289 struct dict_avp_data data = {
290 116, /* Code */
291 0, /* Vendor */
292 "Digest-Opaque", /* Name */
293 0, /* Fixed flags */
294 0, /* Fixed flag values */
295 AVP_TYPE_OCTETSTRING /* base type of data */
296 };
297 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
298 };
299 /* Digest-Auth-Param */
300 {
301 struct dict_avp_data data = {
302 117, /* Code */
303 0, /* Vendor */
304 "Digest-Auth-Param", /* Name */
305 0, /* Fixed flags */
306 0, /* Fixed flag values */
307 AVP_TYPE_OCTETSTRING /* base type of data */
308 };
309 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
310 };
311 /* Digest-AKA-Auts */
312 {
313 struct dict_avp_data data = {
314 118, /* Code */
315 0, /* Vendor */
316 "Digest-AKA-Auts", /* Name */
317 0, /* Fixed flags */
318 0, /* Fixed flag values */
319 AVP_TYPE_OCTETSTRING /* base type of data */
320 };
321 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
322 };
323 /* Digest-Domain */
324 {
325 struct dict_avp_data data = {
326 119, /* Code */
327 0, /* Vendor */
328 "Digest-Domain", /* Name */
329 0, /* Fixed flags */
330 0, /* Fixed flag values */
331 AVP_TYPE_OCTETSTRING /* base type of data */
332 };
333 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
334 };
335 /* Digest-Stale */
336 {
337 struct dict_avp_data data = {
338 120, /* Code */
339 0, /* Vendor */
340 "Digest-Stale", /* Name */
341 0, /* Fixed flags */
342 0, /* Fixed flag values */
343 AVP_TYPE_OCTETSTRING /* base type of data */
344 };
345 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
346 };
347 /* Digest-HA1 */
348 {
349 struct dict_avp_data data = {
350 121, /* Code */
351 0, /* Vendor */
352 "Digest-HA1", /* Name */
353 0, /* Fixed flags */
354 0, /* Fixed flag values */
355 AVP_TYPE_OCTETSTRING /* base type of data */
356 };
357 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
358 };
359 /* SIP-AOR */
360 {
361 struct dict_avp_data data = {
362 122, /* Code */
363 0, /* Vendor */
364 "SIP-AOR", /* Name */
365 0, /* Fixed flags */
366 0, /* Fixed flag values */
367 AVP_TYPE_OCTETSTRING /* base type of data */
368 };
369 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
370 };
371
372
373 }
374
375 /* Commands section */
376 {
377
378 }
379
380 return 0;
381}
382
383static int dict_rfc4590_avps_load_rules(char * conffile)
384{
385 /* Grouped AVP section */
386 {
387
388 }
389
390 /* Commands section */
391 {
392
393 }
394
395 LOG_D( "Extension 'Dictionary definitions for rfc4590_avps (None)' initialized");
396 return 0;
397}
398
399int dict_entry(char * conffile)
400{
401 dict_rfc4590_avps_load_defs(conffile);
402 return dict_rfc4590_avps_load_rules(conffile);
403}
404
405const char* dict_rfc4590_avps_proto_ver(char * conffile) {
406 return rfc4590_avps_proto_ver;
407}
408
409const double dict_rfc4590_avps_gen_ts(char * conffile) {
410 return rfc4590_avps_gen_date;
411}
412
413EXTENSION_ENTRY2("dict_rfc4590_avps", dict_rfc4590_avps_load_defs, dict_rfc4590_avps_load_rules);
414
415
416