blob: 37d1221f0b73318db29776663502d26d889a5d0e [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 etsi283034_avps.
25 */
26#include <freeDiameter/extension.h>
27
28#define PROTO_VER "unspecified"
29#define GEN_DATE 1506697184.91
30
31const char *etsi283034_avps_proto_ver = PROTO_VER;
32const double etsi283034_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_etsi283034_avps_load_defs(char * conffile)
101{
102 TRACE_ENTRY("%p", conffile);
103 /* Application Section */
104 {
105 /* Create the vendors */ {
106 struct dict_vendor_data vendor_data = { 13019, "ETSI" };
107 CHECK_dict_new(DICT_VENDOR, &vendor_data, NULL, NULL)
108 }
109 }
110
111
112 /* AVP section */
113 {
114 struct dict_object * Address_type;
115 struct dict_object * UTF8String_type;
116 struct dict_object * DiameterIdentity_type;
117 struct dict_object * DiameterURI_type;
118 struct dict_object * Time_type;
119 struct dict_object * IPFilterRule_type;
120
121 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "Address", &Address_type);
122 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "UTF8String", &UTF8String_type);
123 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "DiameterIdentity", &DiameterIdentity_type);
124 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "DiameterURI", &DiameterURI_type);
125 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "Time", &Time_type);
126 CHECK_dict_search( DICT_TYPE, TYPE_BY_NAME, "IPFilterRule", &IPFilterRule_type);
127 /* Address-Realm */
128 {
129 struct dict_avp_data data = {
130 301, /* Code */
131 13019, /* Vendor */
132 "Address-Realm", /* Name */
133 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
134 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flag values */
135 AVP_TYPE_OCTETSTRING /* base type of data */
136 };
137 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
138 };
139 /* Logical-Access-Id */
140 {
141 struct dict_avp_data data = {
142 302, /* Code */
143 13019, /* Vendor */
144 "Logical-Access-Id", /* Name */
145 AVP_FLAG_VENDOR, /* Fixed flags */
146 AVP_FLAG_VENDOR, /* Fixed flag values */
147 AVP_TYPE_OCTETSTRING /* base type of data */
148 };
149 CHECK_dict_new( DICT_AVP, &data, NULL, NULL);
150 };
151 /* Physical-Access-Id */
152 {
153 struct dict_avp_data data = {
154 303, /* Code */
155 13019, /* Vendor */
156 "Physical-Access-Id", /* Name */
157 AVP_FLAG_VENDOR, /* Fixed flags */
158 AVP_FLAG_VENDOR, /* Fixed flag values */
159 AVP_TYPE_OCTETSTRING /* base type of data */
160 };
161 CHECK_dict_new( DICT_AVP, &data, UTF8String_type, NULL);
162 };
163 /* Line-Identifier */
164 {
165 struct dict_avp_data data = {
166 500, /* Code */
167 13019, /* Vendor */
168 "Line-Identifier", /* Name */
169 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
170 AVP_FLAG_VENDOR, /* Fixed flag values */
171 AVP_TYPE_OCTETSTRING /* base type of data */
172 };
173 CHECK_dict_new( DICT_AVP, &data, UTF8String_type, NULL);
174 };
175 /* Reservation-Priority */
176 {
177 struct dict_avp_data data = {
178 458, /* Code */
179 13019, /* Vendor */
180 "Reservation-Priority", /* Name */
181 AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */
182 AVP_FLAG_VENDOR, /* Fixed flag values */
183 AVP_TYPE_INTEGER32 /* base type of data */
184 };
185 struct dict_object *type;
186 struct dict_type_data tdata = { AVP_TYPE_INTEGER32, "ETSI/Enumerated(Reservation-Priority)", NULL, NULL, NULL };
187 struct dict_enumval_data t_1 = { "PRIORITY_ONE", { .i32=1 }};
188 struct dict_enumval_data t_2 = { "PRIORITY_TWO", { .i32=2 }};
189 struct dict_enumval_data t_3 = { "PRIORITY_THREE", { .i32=3 }};
190 struct dict_enumval_data t_4 = { "PRIORITY_FOUR", { .i32=4 }};
191 struct dict_enumval_data t_5 = { "PRIORITY_FIVE", { .i32=5 }};
192 struct dict_enumval_data t_6 = { "PRIORITY_SIX", { .i32=6 }};
193 struct dict_enumval_data t_7 = { "PRIORITY_SEVEN", { .i32=7 }};
194 /* Create the Enumerated type, and then the AVP */
195 CHECK_dict_new( DICT_TYPE, &tdata, NULL, &type);
196 CHECK_dict_new( DICT_ENUMVAL, &t_1, type, NULL);
197 CHECK_dict_new( DICT_ENUMVAL, &t_2, type, NULL);
198 CHECK_dict_new( DICT_ENUMVAL, &t_3, type, NULL);
199 CHECK_dict_new( DICT_ENUMVAL, &t_4, type, NULL);
200 CHECK_dict_new( DICT_ENUMVAL, &t_5, type, NULL);
201 CHECK_dict_new( DICT_ENUMVAL, &t_6, type, NULL);
202 CHECK_dict_new( DICT_ENUMVAL, &t_7, type, NULL);
203 CHECK_dict_new( DICT_AVP, &data, type, NULL);
204 };
205
206
207 }
208
209 /* Commands section */
210 {
211
212 }
213
214 return 0;
215}
216
217static int dict_etsi283034_avps_load_rules(char * conffile)
218{
219 /* Grouped AVP section */
220 {
221
222 }
223
224 /* Commands section */
225 {
226
227 }
228
229 LOG_D( "Extension 'Dictionary definitions for etsi283034_avps (None)' initialized");
230 return 0;
231}
232
233int dict_entry(char * conffile)
234{
235 dict_etsi283034_avps_load_defs(conffile);
236 return dict_etsi283034_avps_load_rules(conffile);
237}
238
239const char* dict_etsi283034_avps_proto_ver(char * conffile) {
240 return etsi283034_avps_proto_ver;
241}
242
243const double dict_etsi283034_avps_gen_ts(char * conffile) {
244 return etsi283034_avps_gen_date;
245}
246
247EXTENSION_ENTRY2("dict_etsi283034_avps", dict_etsi283034_avps_load_defs, dict_etsi283034_avps_load_rules);
248
249
250