Brian Waters | 13d9601 | 2017-12-08 16:53:31 -0600 | [diff] [blame] | 1 | /* |
| 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 ts29217_avps (e10). |
| 25 | */ |
| 26 | #include <freeDiameter/extension.h> |
| 27 | |
| 28 | #define PROTO_VER "e10" |
| 29 | #define GEN_DATE 1506697175.31 |
| 30 | |
| 31 | const char *ts29217_avps_proto_ver = PROTO_VER; |
| 32 | const double ts29217_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 | |
| 46 | struct 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 | |
| 100 | static int dict_ts29217_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 = { 10415, "3GPP" }; |
| 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 | /* Congestion-Level-Range */ |
| 128 | { |
| 129 | struct dict_avp_data data = { |
| 130 | 4003, /* Code */ |
| 131 | 10415, /* Vendor */ |
| 132 | "Congestion-Level-Range", /* Name */ |
| 133 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 134 | AVP_FLAG_VENDOR, /* Fixed flag values */ |
| 135 | AVP_TYPE_UNSIGNED32 /* base type of data */ |
| 136 | }; |
| 137 | CHECK_dict_new( DICT_AVP, &data, NULL, NULL); |
| 138 | }; |
| 139 | /* Congestion-Level-Set-Id */ |
| 140 | { |
| 141 | struct dict_avp_data data = { |
| 142 | 4004, /* Code */ |
| 143 | 10415, /* Vendor */ |
| 144 | "Congestion-Level-Set-Id", /* Name */ |
| 145 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 146 | AVP_FLAG_VENDOR, /* Fixed flag values */ |
| 147 | AVP_TYPE_UNSIGNED32 /* base type of data */ |
| 148 | }; |
| 149 | CHECK_dict_new( DICT_AVP, &data, NULL, NULL); |
| 150 | }; |
| 151 | /* Congestion-Level-Value */ |
| 152 | { |
| 153 | struct dict_avp_data data = { |
| 154 | 4005, /* Code */ |
| 155 | 10415, /* Vendor */ |
| 156 | "Congestion-Level-Value", /* Name */ |
| 157 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 158 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flag values */ |
| 159 | AVP_TYPE_UNSIGNED32 /* base type of data */ |
| 160 | }; |
| 161 | CHECK_dict_new( DICT_AVP, &data, NULL, NULL); |
| 162 | }; |
| 163 | /* Conditional-Restriction */ |
| 164 | { |
| 165 | struct dict_avp_data data = { |
| 166 | 4007, /* Code */ |
| 167 | 10415, /* Vendor */ |
| 168 | "Conditional-Restriction", /* Name */ |
| 169 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 170 | AVP_FLAG_VENDOR, /* Fixed flag values */ |
| 171 | AVP_TYPE_UNSIGNED32 /* base type of data */ |
| 172 | }; |
| 173 | CHECK_dict_new( DICT_AVP, &data, NULL, NULL); |
| 174 | }; |
| 175 | /* eNodeB-Id */ |
| 176 | { |
| 177 | struct dict_avp_data data = { |
| 178 | 4008, /* Code */ |
| 179 | 10415, /* Vendor */ |
| 180 | "eNodeB-Id", /* Name */ |
| 181 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 182 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flag values */ |
| 183 | AVP_TYPE_OCTETSTRING /* base type of data */ |
| 184 | }; |
| 185 | CHECK_dict_new( DICT_AVP, &data, NULL, NULL); |
| 186 | }; |
| 187 | /* IMSI-List */ |
| 188 | { |
| 189 | struct dict_avp_data data = { |
| 190 | 4009, /* Code */ |
| 191 | 10415, /* Vendor */ |
| 192 | "IMSI-List", /* Name */ |
| 193 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 194 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flag values */ |
| 195 | AVP_TYPE_OCTETSTRING /* base type of data */ |
| 196 | }; |
| 197 | CHECK_dict_new( DICT_AVP, &data, NULL, NULL); |
| 198 | }; |
| 199 | /* RCAF-Id */ |
| 200 | { |
| 201 | struct dict_avp_data data = { |
| 202 | 4010, /* Code */ |
| 203 | 10415, /* Vendor */ |
| 204 | "RCAF-Id", /* Name */ |
| 205 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 206 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flag values */ |
| 207 | AVP_TYPE_OCTETSTRING /* base type of data */ |
| 208 | }; |
| 209 | CHECK_dict_new( DICT_AVP, &data, DiameterIdentity_type, NULL); |
| 210 | }; |
| 211 | /* Reporting-Restriction */ |
| 212 | { |
| 213 | struct dict_avp_data data = { |
| 214 | 4011, /* Code */ |
| 215 | 10415, /* Vendor */ |
| 216 | "Reporting-Restriction", /* Name */ |
| 217 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 218 | AVP_FLAG_VENDOR, /* Fixed flag values */ |
| 219 | AVP_TYPE_UNSIGNED32 /* base type of data */ |
| 220 | }; |
| 221 | CHECK_dict_new( DICT_AVP, &data, NULL, NULL); |
| 222 | }; |
| 223 | /* RUCI-Action */ |
| 224 | { |
| 225 | struct dict_avp_data data = { |
| 226 | 4012, /* Code */ |
| 227 | 10415, /* Vendor */ |
| 228 | "RUCI-Action", /* Name */ |
| 229 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 230 | AVP_FLAG_VENDOR, /* Fixed flag values */ |
| 231 | AVP_TYPE_UNSIGNED32 /* base type of data */ |
| 232 | }; |
| 233 | CHECK_dict_new( DICT_AVP, &data, NULL, NULL); |
| 234 | }; |
| 235 | /* Extended-eNodeB-Id */ |
| 236 | { |
| 237 | struct dict_avp_data data = { |
| 238 | 4013, /* Code */ |
| 239 | 10415, /* Vendor */ |
| 240 | "Extended-eNodeB-Id", /* Name */ |
| 241 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 242 | AVP_FLAG_VENDOR, /* Fixed flag values */ |
| 243 | AVP_TYPE_OCTETSTRING /* base type of data */ |
| 244 | }; |
| 245 | CHECK_dict_new( DICT_AVP, &data, NULL, NULL); |
| 246 | }; |
| 247 | /* Congestion-Level-Definition */ |
| 248 | { |
| 249 | /* Grouped */ |
| 250 | struct dict_object * avp; |
| 251 | struct dict_avp_data data = { |
| 252 | 4002, /* Code */ |
| 253 | 10415, /* Vendor */ |
| 254 | "Congestion-Level-Definition", /* Name */ |
| 255 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 256 | AVP_FLAG_VENDOR, /* Fixed flag values */ |
| 257 | AVP_TYPE_GROUPED /* base type of data */ |
| 258 | }; |
| 259 | CHECK_dict_new( DICT_AVP, &data , NULL, &avp); |
| 260 | } |
| 261 | /* Congestion-Location-Id */ |
| 262 | { |
| 263 | /* Grouped */ |
| 264 | struct dict_object * avp; |
| 265 | struct dict_avp_data data = { |
| 266 | 4006, /* Code */ |
| 267 | 10415, /* Vendor */ |
| 268 | "Congestion-Location-Id", /* Name */ |
| 269 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 270 | AVP_FLAG_VENDOR, /* Fixed flag values */ |
| 271 | AVP_TYPE_GROUPED /* base type of data */ |
| 272 | }; |
| 273 | CHECK_dict_new( DICT_AVP, &data , NULL, &avp); |
| 274 | } |
| 275 | /* Aggregated-Congestion-Info */ |
| 276 | { |
| 277 | /* Grouped */ |
| 278 | struct dict_object * avp; |
| 279 | struct dict_avp_data data = { |
| 280 | 4000, /* Code */ |
| 281 | 10415, /* Vendor */ |
| 282 | "Aggregated-Congestion-Info", /* Name */ |
| 283 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 284 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flag values */ |
| 285 | AVP_TYPE_GROUPED /* base type of data */ |
| 286 | }; |
| 287 | CHECK_dict_new( DICT_AVP, &data , NULL, &avp); |
| 288 | } |
| 289 | /* Aggregated-RUCI-Report */ |
| 290 | { |
| 291 | /* Grouped */ |
| 292 | struct dict_object * avp; |
| 293 | struct dict_avp_data data = { |
| 294 | 4001, /* Code */ |
| 295 | 10415, /* Vendor */ |
| 296 | "Aggregated-RUCI-Report", /* Name */ |
| 297 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flags */ |
| 298 | AVP_FLAG_VENDOR | AVP_FLAG_MANDATORY, /* Fixed flag values */ |
| 299 | AVP_TYPE_GROUPED /* base type of data */ |
| 300 | }; |
| 301 | CHECK_dict_new( DICT_AVP, &data , NULL, &avp); |
| 302 | } |
| 303 | |
| 304 | |
| 305 | } |
| 306 | |
| 307 | /* Commands section */ |
| 308 | { |
| 309 | |
| 310 | } |
| 311 | |
| 312 | return 0; |
| 313 | } |
| 314 | |
| 315 | static int dict_ts29217_avps_load_rules(char * conffile) |
| 316 | { |
| 317 | /* Grouped AVP section */ |
| 318 | { |
| 319 | /* Congestion-Level-Definition */ |
| 320 | { |
| 321 | /* Grouped */ |
| 322 | struct dict_object * avp; |
| 323 | struct dict_avp_request avp_vendor_plus_name = { .avp_vendor = 10415, .avp_name = "Congestion-Level-Definition"}; |
| 324 | CHECK_dict_search(DICT_AVP, AVP_BY_NAME_AND_VENDOR, &avp_vendor_plus_name, &avp) |
| 325 | struct local_rules_definition rules[] = |
| 326 | { |
| 327 | { { .avp_vendor = 10415, .avp_name = "Congestion-Level-Set-Id"}, RULE_REQUIRED, -1, -1 }, |
| 328 | { { .avp_vendor = 10415, .avp_name = "Congestion-Level-Range"}, RULE_REQUIRED, -1, -1 } |
| 329 | }; |
| 330 | PARSE_loc_rules( rules, avp ); |
| 331 | } |
| 332 | /* Congestion-Location-Id */ |
| 333 | { |
| 334 | /* Grouped */ |
| 335 | struct dict_object * avp; |
| 336 | struct dict_avp_request avp_vendor_plus_name = { .avp_vendor = 10415, .avp_name = "Congestion-Location-Id"}; |
| 337 | CHECK_dict_search(DICT_AVP, AVP_BY_NAME_AND_VENDOR, &avp_vendor_plus_name, &avp) |
| 338 | struct local_rules_definition rules[] = |
| 339 | { |
| 340 | { { .avp_vendor = 10415, .avp_name = "3GPP-User-Location-Info"}, RULE_OPTIONAL, -1, -1 }, |
| 341 | { { .avp_vendor = 10415, .avp_name = "eNodeB-Id"}, RULE_OPTIONAL, -1, -1 }, |
| 342 | { { .avp_vendor = 10415, .avp_name = "Extended-eNodeB-Id"}, RULE_OPTIONAL, -1, -1 } |
| 343 | }; |
| 344 | PARSE_loc_rules( rules, avp ); |
| 345 | } |
| 346 | /* Aggregated-Congestion-Info */ |
| 347 | { |
| 348 | /* Grouped */ |
| 349 | struct dict_object * avp; |
| 350 | struct dict_avp_request avp_vendor_plus_name = { .avp_vendor = 10415, .avp_name = "Aggregated-Congestion-Info"}; |
| 351 | CHECK_dict_search(DICT_AVP, AVP_BY_NAME_AND_VENDOR, &avp_vendor_plus_name, &avp) |
| 352 | struct local_rules_definition rules[] = |
| 353 | { |
| 354 | { { .avp_vendor = 10415, .avp_name = "Congestion-Location-Id"}, RULE_OPTIONAL, -1, -1 }, |
| 355 | { { .avp_vendor = 10415, .avp_name = "IMSI-List"}, RULE_OPTIONAL, -1, -1 } |
| 356 | }; |
| 357 | PARSE_loc_rules( rules, avp ); |
| 358 | } |
| 359 | /* Aggregated-RUCI-Report */ |
| 360 | { |
| 361 | /* Grouped */ |
| 362 | struct dict_object * avp; |
| 363 | struct dict_avp_request avp_vendor_plus_name = { .avp_vendor = 10415, .avp_name = "Aggregated-RUCI-Report"}; |
| 364 | CHECK_dict_search(DICT_AVP, AVP_BY_NAME_AND_VENDOR, &avp_vendor_plus_name, &avp) |
| 365 | struct local_rules_definition rules[] = |
| 366 | { |
| 367 | { { .avp_vendor = 10415, .avp_name = "Aggregated-Congestion-Info"}, RULE_REQUIRED, 1, -1 }, |
| 368 | { { .avp_vendor = 0, .avp_name = "Called-Station-Id"}, RULE_OPTIONAL, -1, -1 }, |
| 369 | { { .avp_vendor = 10415, .avp_name = "Congestion-Level-Value"}, RULE_OPTIONAL, -1, -1 }, |
| 370 | { { .avp_vendor = 10415, .avp_name = "Congestion-Level-Set-Id"}, RULE_OPTIONAL, -1, -1 } |
| 371 | }; |
| 372 | PARSE_loc_rules( rules, avp ); |
| 373 | } |
| 374 | |
| 375 | } |
| 376 | |
| 377 | /* Commands section */ |
| 378 | { |
| 379 | |
| 380 | } |
| 381 | |
| 382 | LOG_D( "Extension 'Dictionary definitions for ts29217_avps (e10)' initialized"); |
| 383 | return 0; |
| 384 | } |
| 385 | |
| 386 | int dict_entry(char * conffile) |
| 387 | { |
| 388 | dict_ts29217_avps_load_defs(conffile); |
| 389 | return dict_ts29217_avps_load_rules(conffile); |
| 390 | } |
| 391 | |
| 392 | const char* dict_ts29217_avps_proto_ver(char * conffile) { |
| 393 | return ts29217_avps_proto_ver; |
| 394 | } |
| 395 | |
| 396 | const double dict_ts29217_avps_gen_ts(char * conffile) { |
| 397 | return ts29217_avps_gen_date; |
| 398 | } |
| 399 | |
| 400 | EXTENSION_ENTRY2("dict_ts29217_avps", dict_ts29217_avps_load_defs, dict_ts29217_avps_load_rules, "dict_ts29215_avps", "dict_ts29229_avps", "dict_ts29061_avps", "dict_rfc4006bis_avps", "dict_draftload_avps", "dict_rfc7683_avps", "dict_rfc7944_avps", "dict_rfc7155_avps"); |
| 401 | |
| 402 | |
| 403 | |