Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 1 | #include "pdr.h" |
| 2 | #include "platform.h" |
| 3 | #include <assert.h> |
| 4 | #include <stdlib.h> |
| 5 | #include <string.h> |
| 6 | |
| 7 | typedef struct pldm_pdr_record { |
| 8 | uint32_t record_handle; |
| 9 | uint32_t size; |
| 10 | uint8_t *data; |
| 11 | struct pldm_pdr_record *next; |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 12 | bool is_remote; |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 13 | } pldm_pdr_record; |
| 14 | |
| 15 | typedef struct pldm_pdr { |
| 16 | uint32_t record_count; |
| 17 | uint32_t size; |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 18 | pldm_pdr_record *first; |
| 19 | pldm_pdr_record *last; |
| 20 | } pldm_pdr; |
| 21 | |
| 22 | static inline uint32_t get_next_record_handle(const pldm_pdr *repo, |
| 23 | const pldm_pdr_record *record) |
| 24 | { |
| 25 | assert(repo != NULL); |
| 26 | assert(record != NULL); |
| 27 | |
| 28 | if (record == repo->last) { |
| 29 | return 0; |
| 30 | } |
| 31 | return record->next->record_handle; |
| 32 | } |
| 33 | |
| 34 | static void add_record(pldm_pdr *repo, pldm_pdr_record *record) |
| 35 | { |
| 36 | assert(repo != NULL); |
| 37 | assert(record != NULL); |
| 38 | |
| 39 | if (repo->first == NULL) { |
| 40 | assert(repo->last == NULL); |
| 41 | repo->first = record; |
| 42 | repo->last = record; |
| 43 | } else { |
| 44 | repo->last->next = record; |
| 45 | repo->last = record; |
| 46 | } |
| 47 | repo->size += record->size; |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 48 | ++repo->record_count; |
| 49 | } |
| 50 | |
| 51 | static inline uint32_t get_new_record_handle(const pldm_pdr *repo) |
| 52 | { |
| 53 | assert(repo != NULL); |
Deepak Kodihalli | b984873 | 2020-04-21 23:34:01 -0500 | [diff] [blame] | 54 | uint32_t last_used_hdl = |
| 55 | repo->last != NULL ? repo->last->record_handle : 0; |
| 56 | assert(last_used_hdl != UINT32_MAX); |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 57 | |
Deepak Kodihalli | b984873 | 2020-04-21 23:34:01 -0500 | [diff] [blame] | 58 | return last_used_hdl + 1; |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | static pldm_pdr_record *make_new_record(const pldm_pdr *repo, |
| 62 | const uint8_t *data, uint32_t size, |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 63 | uint32_t record_handle, bool is_remote) |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 64 | { |
| 65 | assert(repo != NULL); |
| 66 | assert(size != 0); |
| 67 | |
| 68 | pldm_pdr_record *record = malloc(sizeof(pldm_pdr_record)); |
| 69 | assert(record != NULL); |
| 70 | record->record_handle = |
| 71 | record_handle == 0 ? get_new_record_handle(repo) : record_handle; |
| 72 | record->size = size; |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 73 | record->is_remote = is_remote; |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 74 | if (data != NULL) { |
| 75 | record->data = malloc(size); |
| 76 | assert(record->data != NULL); |
| 77 | memcpy(record->data, data, size); |
| 78 | /* If record handle is 0, that is an indication for this API to |
| 79 | * compute a new handle. For that reason, the computed handle |
| 80 | * needs to be populated in the PDR header. For a case where the |
| 81 | * caller supplied the record handle, it would exist in the |
| 82 | * header already. |
| 83 | */ |
| 84 | if (!record_handle) { |
| 85 | struct pldm_pdr_hdr *hdr = |
| 86 | (struct pldm_pdr_hdr *)(record->data); |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 87 | hdr->record_handle = htole32(record->record_handle); |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 88 | } |
| 89 | } |
| 90 | record->next = NULL; |
| 91 | |
| 92 | return record; |
| 93 | } |
| 94 | |
| 95 | uint32_t pldm_pdr_add(pldm_pdr *repo, const uint8_t *data, uint32_t size, |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 96 | uint32_t record_handle, bool is_remote) |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 97 | { |
| 98 | assert(size != 0); |
| 99 | assert(data != NULL); |
| 100 | |
| 101 | pldm_pdr_record *record = |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 102 | make_new_record(repo, data, size, record_handle, is_remote); |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 103 | add_record(repo, record); |
| 104 | |
| 105 | return record->record_handle; |
| 106 | } |
| 107 | |
| 108 | pldm_pdr *pldm_pdr_init() |
| 109 | { |
| 110 | pldm_pdr *repo = malloc(sizeof(pldm_pdr)); |
| 111 | assert(repo != NULL); |
| 112 | repo->record_count = 0; |
| 113 | repo->size = 0; |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 114 | repo->first = NULL; |
| 115 | repo->last = NULL; |
| 116 | |
| 117 | return repo; |
| 118 | } |
| 119 | |
| 120 | void pldm_pdr_destroy(pldm_pdr *repo) |
| 121 | { |
| 122 | assert(repo != NULL); |
| 123 | |
| 124 | pldm_pdr_record *record = repo->first; |
| 125 | while (record != NULL) { |
| 126 | pldm_pdr_record *next = record->next; |
| 127 | if (record->data) { |
| 128 | free(record->data); |
| 129 | record->data = NULL; |
| 130 | } |
| 131 | free(record); |
| 132 | record = next; |
| 133 | } |
| 134 | free(repo); |
| 135 | } |
| 136 | |
| 137 | const pldm_pdr_record *pldm_pdr_find_record(const pldm_pdr *repo, |
| 138 | uint32_t record_handle, |
| 139 | uint8_t **data, uint32_t *size, |
| 140 | uint32_t *next_record_handle) |
| 141 | { |
| 142 | assert(repo != NULL); |
| 143 | assert(data != NULL); |
| 144 | assert(size != NULL); |
| 145 | assert(next_record_handle != NULL); |
| 146 | |
| 147 | if (!record_handle && (repo->first != NULL)) { |
| 148 | record_handle = repo->first->record_handle; |
| 149 | } |
| 150 | pldm_pdr_record *record = repo->first; |
| 151 | while (record != NULL) { |
| 152 | if (record->record_handle == record_handle) { |
| 153 | *size = record->size; |
| 154 | *data = record->data; |
| 155 | *next_record_handle = |
| 156 | get_next_record_handle(repo, record); |
| 157 | return record; |
| 158 | } |
| 159 | record = record->next; |
| 160 | } |
| 161 | |
| 162 | *size = 0; |
| 163 | *next_record_handle = 0; |
| 164 | return NULL; |
| 165 | } |
| 166 | |
| 167 | const pldm_pdr_record * |
| 168 | pldm_pdr_get_next_record(const pldm_pdr *repo, |
| 169 | const pldm_pdr_record *curr_record, uint8_t **data, |
| 170 | uint32_t *size, uint32_t *next_record_handle) |
| 171 | { |
| 172 | assert(repo != NULL); |
| 173 | assert(curr_record != NULL); |
| 174 | assert(data != NULL); |
| 175 | assert(size != NULL); |
| 176 | assert(next_record_handle != NULL); |
| 177 | |
| 178 | if (curr_record == repo->last) { |
| 179 | *data = NULL; |
| 180 | *size = 0; |
| 181 | *next_record_handle = get_next_record_handle(repo, curr_record); |
| 182 | return NULL; |
| 183 | } |
| 184 | |
| 185 | *next_record_handle = get_next_record_handle(repo, curr_record->next); |
| 186 | *data = curr_record->next->data; |
| 187 | *size = curr_record->next->size; |
| 188 | return curr_record->next; |
| 189 | } |
| 190 | |
| 191 | const pldm_pdr_record * |
| 192 | pldm_pdr_find_record_by_type(const pldm_pdr *repo, uint8_t pdr_type, |
| 193 | const pldm_pdr_record *curr_record, uint8_t **data, |
| 194 | uint32_t *size) |
| 195 | { |
| 196 | assert(repo != NULL); |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 197 | |
| 198 | pldm_pdr_record *record = repo->first; |
| 199 | if (curr_record != NULL) { |
| 200 | record = curr_record->next; |
| 201 | } |
| 202 | while (record != NULL) { |
| 203 | struct pldm_pdr_hdr *hdr = (struct pldm_pdr_hdr *)record->data; |
| 204 | if (hdr->type == pdr_type) { |
Pavithra Barithaya | e8beb89 | 2020-04-14 23:24:25 -0500 | [diff] [blame] | 205 | if (data && size) { |
| 206 | *size = record->size; |
| 207 | *data = record->data; |
| 208 | } |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 209 | return record; |
| 210 | } |
| 211 | record = record->next; |
| 212 | } |
| 213 | |
Pavithra Barithaya | e8beb89 | 2020-04-14 23:24:25 -0500 | [diff] [blame] | 214 | if (size) { |
| 215 | *size = 0; |
| 216 | } |
Deepak Kodihalli | 3b02ed8 | 2020-02-06 01:18:25 -0600 | [diff] [blame] | 217 | return NULL; |
| 218 | } |
| 219 | |
| 220 | uint32_t pldm_pdr_get_record_count(const pldm_pdr *repo) |
| 221 | { |
| 222 | assert(repo != NULL); |
| 223 | |
| 224 | return repo->record_count; |
| 225 | } |
| 226 | |
| 227 | uint32_t pldm_pdr_get_repo_size(const pldm_pdr *repo) |
| 228 | { |
| 229 | assert(repo != NULL); |
| 230 | |
| 231 | return repo->size; |
| 232 | } |
| 233 | |
| 234 | uint32_t pldm_pdr_get_record_handle(const pldm_pdr *repo, |
| 235 | const pldm_pdr_record *record) |
| 236 | { |
| 237 | assert(repo != NULL); |
| 238 | assert(record != NULL); |
| 239 | |
| 240 | return record->record_handle; |
| 241 | } |
Deepak Kodihalli | db91467 | 2020-02-07 02:47:45 -0600 | [diff] [blame] | 242 | |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 243 | inline bool pldm_pdr_record_is_remote(const pldm_pdr_record *record) |
| 244 | { |
| 245 | assert(record != NULL); |
| 246 | |
| 247 | return record->is_remote; |
| 248 | } |
| 249 | |
Deepak Kodihalli | db91467 | 2020-02-07 02:47:45 -0600 | [diff] [blame] | 250 | uint32_t pldm_pdr_add_fru_record_set(pldm_pdr *repo, uint16_t terminus_handle, |
| 251 | uint16_t fru_rsi, uint16_t entity_type, |
| 252 | uint16_t entity_instance_num, |
| 253 | uint16_t container_id) |
| 254 | { |
| 255 | uint32_t size = sizeof(struct pldm_pdr_hdr) + |
| 256 | sizeof(struct pldm_pdr_fru_record_set); |
| 257 | uint8_t data[size]; |
| 258 | |
| 259 | struct pldm_pdr_hdr *hdr = (struct pldm_pdr_hdr *)&data; |
| 260 | hdr->version = 1; |
| 261 | hdr->record_handle = 0; |
| 262 | hdr->type = PLDM_PDR_FRU_RECORD_SET; |
| 263 | hdr->record_change_num = 0; |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 264 | hdr->length = htole16(sizeof(struct pldm_pdr_fru_record_set)); |
Deepak Kodihalli | db91467 | 2020-02-07 02:47:45 -0600 | [diff] [blame] | 265 | struct pldm_pdr_fru_record_set *fru = |
| 266 | (struct pldm_pdr_fru_record_set *)((uint8_t *)hdr + |
| 267 | sizeof(struct pldm_pdr_hdr)); |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 268 | fru->terminus_handle = htole16(terminus_handle); |
| 269 | fru->fru_rsi = htole16(fru_rsi); |
| 270 | fru->entity_type = htole16(entity_type); |
| 271 | fru->entity_instance_num = htole16(entity_instance_num); |
| 272 | fru->container_id = htole16(container_id); |
Deepak Kodihalli | db91467 | 2020-02-07 02:47:45 -0600 | [diff] [blame] | 273 | |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 274 | return pldm_pdr_add(repo, data, size, 0, false); |
Deepak Kodihalli | db91467 | 2020-02-07 02:47:45 -0600 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | const pldm_pdr_record *pldm_pdr_fru_record_set_find_by_rsi( |
| 278 | const pldm_pdr *repo, uint16_t fru_rsi, uint16_t *terminus_handle, |
| 279 | uint16_t *entity_type, uint16_t *entity_instance_num, |
| 280 | uint16_t *container_id) |
| 281 | { |
| 282 | assert(terminus_handle != NULL); |
| 283 | assert(entity_type != NULL); |
| 284 | assert(entity_instance_num != NULL); |
| 285 | assert(container_id != NULL); |
| 286 | |
| 287 | uint8_t *data = NULL; |
| 288 | uint32_t size = 0; |
| 289 | const pldm_pdr_record *curr_record = pldm_pdr_find_record_by_type( |
| 290 | repo, PLDM_PDR_FRU_RECORD_SET, NULL, &data, &size); |
| 291 | while (curr_record != NULL) { |
| 292 | struct pldm_pdr_fru_record_set *fru = |
| 293 | (struct pldm_pdr_fru_record_set |
| 294 | *)(data + sizeof(struct pldm_pdr_hdr)); |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 295 | if (fru->fru_rsi == htole16(fru_rsi)) { |
| 296 | *terminus_handle = le16toh(fru->terminus_handle); |
| 297 | *entity_type = le16toh(fru->entity_type); |
| 298 | *entity_instance_num = |
| 299 | le16toh(fru->entity_instance_num); |
| 300 | *container_id = le16toh(fru->container_id); |
Deepak Kodihalli | db91467 | 2020-02-07 02:47:45 -0600 | [diff] [blame] | 301 | return curr_record; |
| 302 | } |
| 303 | data = NULL; |
| 304 | curr_record = pldm_pdr_find_record_by_type( |
| 305 | repo, PLDM_PDR_FRU_RECORD_SET, curr_record, &data, &size); |
| 306 | } |
| 307 | |
| 308 | *terminus_handle = 0; |
| 309 | *entity_type = 0; |
| 310 | *entity_instance_num = 0; |
| 311 | *container_id = 0; |
| 312 | |
| 313 | return NULL; |
| 314 | } |
Deepak Kodihalli | 0578705 | 2020-03-10 01:54:08 -0500 | [diff] [blame] | 315 | |
| 316 | typedef struct pldm_entity_association_tree { |
| 317 | pldm_entity_node *root; |
| 318 | uint16_t last_used_container_id; |
| 319 | } pldm_entity_association_tree; |
| 320 | |
| 321 | typedef struct pldm_entity_node { |
| 322 | pldm_entity entity; |
| 323 | pldm_entity_node *first_child; |
| 324 | pldm_entity_node *next_sibling; |
| 325 | uint8_t association_type; |
| 326 | } pldm_entity_node; |
| 327 | |
| 328 | static inline uint16_t next_container_id(pldm_entity_association_tree *tree) |
| 329 | { |
| 330 | assert(tree != NULL); |
| 331 | assert(tree->last_used_container_id != UINT16_MAX); |
| 332 | |
| 333 | return ++tree->last_used_container_id; |
| 334 | } |
| 335 | |
| 336 | pldm_entity_association_tree *pldm_entity_association_tree_init() |
| 337 | { |
| 338 | pldm_entity_association_tree *tree = |
| 339 | malloc(sizeof(pldm_entity_association_tree)); |
| 340 | assert(tree != NULL); |
| 341 | tree->root = NULL; |
| 342 | tree->last_used_container_id = 0; |
| 343 | |
| 344 | return tree; |
| 345 | } |
| 346 | |
| 347 | static pldm_entity_node *find_insertion_at(pldm_entity_node *start, |
| 348 | uint16_t entity_type) |
| 349 | { |
| 350 | assert(start != NULL); |
| 351 | |
| 352 | /* Insert after the the last node that matches the input entity type, or |
| 353 | * at the end if no such match occurrs |
| 354 | */ |
| 355 | while (start->next_sibling != NULL) { |
| 356 | uint16_t this_type = start->entity.entity_type; |
| 357 | pldm_entity_node *next = start->next_sibling; |
| 358 | if (this_type == entity_type && |
| 359 | (this_type != next->entity.entity_type)) { |
| 360 | break; |
| 361 | } |
| 362 | start = start->next_sibling; |
| 363 | } |
| 364 | |
| 365 | return start; |
| 366 | } |
| 367 | |
| 368 | pldm_entity_node * |
| 369 | pldm_entity_association_tree_add(pldm_entity_association_tree *tree, |
| 370 | pldm_entity *entity, pldm_entity_node *parent, |
| 371 | uint8_t association_type) |
| 372 | { |
| 373 | assert(tree != NULL); |
| 374 | assert(association_type == PLDM_ENTITY_ASSOCIAION_PHYSICAL || |
| 375 | association_type == PLDM_ENTITY_ASSOCIAION_LOGICAL); |
| 376 | pldm_entity_node *node = malloc(sizeof(pldm_entity_node)); |
| 377 | assert(node != NULL); |
| 378 | node->first_child = NULL; |
| 379 | node->next_sibling = NULL; |
| 380 | node->entity.entity_type = entity->entity_type; |
| 381 | node->entity.entity_instance_num = 1; |
| 382 | node->association_type = association_type; |
| 383 | |
| 384 | if (tree->root == NULL) { |
| 385 | assert(parent == NULL); |
| 386 | tree->root = node; |
| 387 | /* container_id 0 here indicates this is the top-most entry */ |
| 388 | node->entity.entity_container_id = 0; |
| 389 | } else if (parent != NULL && parent->first_child == NULL) { |
| 390 | parent->first_child = node; |
| 391 | node->entity.entity_container_id = next_container_id(tree); |
| 392 | } else { |
| 393 | pldm_entity_node *start = |
| 394 | parent == NULL ? tree->root : parent->first_child; |
| 395 | pldm_entity_node *prev = |
| 396 | find_insertion_at(start, entity->entity_type); |
| 397 | assert(prev != NULL); |
| 398 | pldm_entity_node *next = prev->next_sibling; |
| 399 | if (prev->entity.entity_type == entity->entity_type) { |
| 400 | assert(prev->entity.entity_instance_num != UINT16_MAX); |
| 401 | node->entity.entity_instance_num = |
| 402 | prev->entity.entity_instance_num + 1; |
| 403 | } |
| 404 | prev->next_sibling = node; |
| 405 | node->next_sibling = next; |
| 406 | node->entity.entity_container_id = |
| 407 | prev->entity.entity_container_id; |
| 408 | } |
| 409 | entity->entity_instance_num = node->entity.entity_instance_num; |
| 410 | entity->entity_container_id = node->entity.entity_container_id; |
| 411 | |
| 412 | return node; |
| 413 | } |
| 414 | |
| 415 | static void get_num_nodes(pldm_entity_node *node, size_t *num) |
| 416 | { |
| 417 | if (node == NULL) { |
| 418 | return; |
| 419 | } |
| 420 | |
| 421 | ++(*num); |
| 422 | get_num_nodes(node->next_sibling, num); |
| 423 | get_num_nodes(node->first_child, num); |
| 424 | } |
| 425 | |
| 426 | static void entity_association_tree_visit(pldm_entity_node *node, |
| 427 | pldm_entity *entities, size_t *index) |
| 428 | { |
| 429 | if (node == NULL) { |
| 430 | return; |
| 431 | } |
| 432 | |
| 433 | pldm_entity *entity = &entities[*index]; |
| 434 | ++(*index); |
| 435 | entity->entity_type = node->entity.entity_type; |
| 436 | entity->entity_instance_num = node->entity.entity_instance_num; |
| 437 | entity->entity_container_id = node->entity.entity_container_id; |
| 438 | |
| 439 | entity_association_tree_visit(node->next_sibling, entities, index); |
| 440 | entity_association_tree_visit(node->first_child, entities, index); |
| 441 | } |
| 442 | |
| 443 | void pldm_entity_association_tree_visit(pldm_entity_association_tree *tree, |
| 444 | pldm_entity **entities, size_t *size) |
| 445 | { |
| 446 | assert(tree != NULL); |
| 447 | |
| 448 | *size = 0; |
| 449 | if (tree->root == NULL) { |
| 450 | return; |
| 451 | } |
| 452 | |
| 453 | get_num_nodes(tree->root, size); |
| 454 | *entities = malloc(*size * sizeof(pldm_entity)); |
| 455 | size_t index = 0; |
| 456 | entity_association_tree_visit(tree->root, *entities, &index); |
| 457 | } |
| 458 | |
| 459 | static void entity_association_tree_destroy(pldm_entity_node *node) |
| 460 | { |
| 461 | if (node == NULL) { |
| 462 | return; |
| 463 | } |
| 464 | |
| 465 | entity_association_tree_destroy(node->next_sibling); |
| 466 | entity_association_tree_destroy(node->first_child); |
| 467 | free(node); |
| 468 | } |
| 469 | |
| 470 | void pldm_entity_association_tree_destroy(pldm_entity_association_tree *tree) |
| 471 | { |
| 472 | assert(tree != NULL); |
| 473 | |
| 474 | entity_association_tree_destroy(tree->root); |
| 475 | free(tree); |
| 476 | } |
| 477 | |
| 478 | inline bool pldm_entity_is_node_parent(pldm_entity_node *node) |
| 479 | { |
| 480 | assert(node != NULL); |
| 481 | |
| 482 | return node->first_child != NULL; |
| 483 | } |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 484 | |
| 485 | uint8_t pldm_entity_get_num_children(pldm_entity_node *node, |
| 486 | uint8_t association_type) |
| 487 | { |
| 488 | assert(node != NULL); |
| 489 | assert(association_type == PLDM_ENTITY_ASSOCIAION_PHYSICAL || |
| 490 | association_type == PLDM_ENTITY_ASSOCIAION_LOGICAL); |
| 491 | |
| 492 | size_t count = 0; |
| 493 | pldm_entity_node *curr = node->first_child; |
| 494 | while (curr != NULL) { |
| 495 | if (curr->association_type == association_type) { |
| 496 | ++count; |
| 497 | } |
| 498 | curr = curr->next_sibling; |
| 499 | } |
| 500 | |
| 501 | assert(count < UINT8_MAX); |
| 502 | return count; |
| 503 | } |
| 504 | |
| 505 | static void _entity_association_pdr_add_entry(pldm_entity_node *curr, |
| 506 | pldm_pdr *repo, uint16_t size, |
| 507 | uint8_t contained_count, |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 508 | uint8_t association_type, |
| 509 | bool is_remote) |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 510 | { |
| 511 | uint8_t pdr[size]; |
| 512 | uint8_t *start = pdr; |
| 513 | |
| 514 | struct pldm_pdr_hdr *hdr = (struct pldm_pdr_hdr *)start; |
| 515 | hdr->version = 1; |
| 516 | hdr->record_handle = 0; |
| 517 | hdr->type = PLDM_PDR_ENTITY_ASSOCIATION; |
| 518 | hdr->record_change_num = 0; |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 519 | hdr->length = htole16(size - sizeof(struct pldm_pdr_hdr)); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 520 | start += sizeof(struct pldm_pdr_hdr); |
| 521 | |
| 522 | uint16_t *container_id = (uint16_t *)start; |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 523 | *container_id = htole16(curr->first_child->entity.entity_container_id); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 524 | start += sizeof(uint16_t); |
| 525 | *start = association_type; |
| 526 | start += sizeof(uint8_t); |
| 527 | |
| 528 | pldm_entity *entity = (pldm_entity *)start; |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 529 | entity->entity_type = htole16(curr->entity.entity_type); |
| 530 | entity->entity_instance_num = htole16(curr->entity.entity_instance_num); |
| 531 | entity->entity_container_id = htole16(curr->entity.entity_container_id); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 532 | start += sizeof(pldm_entity); |
| 533 | |
| 534 | *start = contained_count; |
| 535 | start += sizeof(uint8_t); |
| 536 | |
| 537 | pldm_entity_node *node = curr->first_child; |
| 538 | while (node != NULL) { |
| 539 | if (node->association_type == association_type) { |
| 540 | pldm_entity *entity = (pldm_entity *)start; |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 541 | entity->entity_type = htole16(node->entity.entity_type); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 542 | entity->entity_instance_num = |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 543 | htole16(node->entity.entity_instance_num); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 544 | entity->entity_container_id = |
Deepak Kodihalli | fb4dd7b | 2020-03-17 03:27:22 -0500 | [diff] [blame] | 545 | htole16(node->entity.entity_container_id); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 546 | start += sizeof(pldm_entity); |
| 547 | } |
| 548 | node = node->next_sibling; |
| 549 | } |
| 550 | |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 551 | pldm_pdr_add(repo, pdr, size, 0, is_remote); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 552 | } |
| 553 | |
| 554 | static void entity_association_pdr_add_entry(pldm_entity_node *curr, |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 555 | pldm_pdr *repo, bool is_remote) |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 556 | { |
| 557 | uint8_t num_logical_children = |
| 558 | pldm_entity_get_num_children(curr, PLDM_ENTITY_ASSOCIAION_LOGICAL); |
| 559 | uint8_t num_physical_children = |
| 560 | pldm_entity_get_num_children(curr, PLDM_ENTITY_ASSOCIAION_PHYSICAL); |
| 561 | |
| 562 | if (num_logical_children) { |
| 563 | uint16_t logical_pdr_size = |
| 564 | sizeof(struct pldm_pdr_hdr) + sizeof(uint16_t) + |
| 565 | sizeof(uint8_t) + sizeof(pldm_entity) + sizeof(uint8_t) + |
| 566 | (num_logical_children * sizeof(pldm_entity)); |
| 567 | _entity_association_pdr_add_entry( |
| 568 | curr, repo, logical_pdr_size, num_logical_children, |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 569 | PLDM_ENTITY_ASSOCIAION_LOGICAL, is_remote); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 570 | } |
| 571 | |
| 572 | if (num_physical_children) { |
| 573 | uint16_t physical_pdr_size = |
| 574 | sizeof(struct pldm_pdr_hdr) + sizeof(uint16_t) + |
| 575 | sizeof(uint8_t) + sizeof(pldm_entity) + sizeof(uint8_t) + |
| 576 | (num_physical_children * sizeof(pldm_entity)); |
| 577 | _entity_association_pdr_add_entry( |
| 578 | curr, repo, physical_pdr_size, num_physical_children, |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 579 | PLDM_ENTITY_ASSOCIAION_PHYSICAL, is_remote); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 580 | } |
| 581 | } |
| 582 | |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 583 | static void entity_association_pdr_add(pldm_entity_node *curr, pldm_pdr *repo, |
| 584 | bool is_remote) |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 585 | { |
| 586 | if (curr == NULL) { |
| 587 | return; |
| 588 | } |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 589 | entity_association_pdr_add_entry(curr, repo, is_remote); |
| 590 | entity_association_pdr_add(curr->next_sibling, repo, is_remote); |
| 591 | entity_association_pdr_add(curr->first_child, repo, is_remote); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 592 | } |
| 593 | |
| 594 | void pldm_entity_association_pdr_add(pldm_entity_association_tree *tree, |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 595 | pldm_pdr *repo, bool is_remote) |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 596 | { |
| 597 | assert(tree != NULL); |
| 598 | assert(repo != NULL); |
| 599 | |
Deepak Kodihalli | 87514cc | 2020-04-16 09:08:38 -0500 | [diff] [blame] | 600 | entity_association_pdr_add(tree->root, repo, is_remote); |
Deepak Kodihalli | 0a738f0 | 2020-03-10 01:56:21 -0500 | [diff] [blame] | 601 | } |
Deepak Kodihalli | 3b28ba8 | 2020-03-30 07:39:47 -0500 | [diff] [blame] | 602 | |
Deepak Kodihalli | 4a68093 | 2020-04-22 03:31:17 -0500 | [diff] [blame] | 603 | void pldm_pdr_remove_remote_pdrs(pldm_pdr *repo) |
| 604 | { |
| 605 | assert(repo != NULL); |
| 606 | bool removed = false; |
| 607 | |
| 608 | pldm_pdr_record *record = repo->first; |
| 609 | pldm_pdr_record *prev = NULL; |
| 610 | while (record != NULL) { |
| 611 | pldm_pdr_record *next = record->next; |
| 612 | if (record->is_remote == true) { |
| 613 | if (repo->first == record) { |
| 614 | repo->first = next; |
| 615 | } else { |
| 616 | prev->next = next; |
| 617 | } |
| 618 | if (repo->last == record) { |
| 619 | repo->last = prev; |
| 620 | } |
| 621 | if (record->data) { |
| 622 | free(record->data); |
| 623 | } |
| 624 | --repo->record_count; |
| 625 | repo->size -= record->size; |
| 626 | free(record); |
| 627 | removed = true; |
| 628 | } else { |
| 629 | prev = record; |
| 630 | } |
| 631 | record = next; |
| 632 | } |
| 633 | |
| 634 | if (removed == true) { |
| 635 | record = repo->first; |
| 636 | uint32_t record_handle = 0; |
| 637 | while (record != NULL) { |
| 638 | record->record_handle = ++record_handle; |
| 639 | if (record->data != NULL) { |
| 640 | struct pldm_pdr_hdr *hdr = |
| 641 | (struct pldm_pdr_hdr *)(record->data); |
| 642 | hdr->record_handle = |
| 643 | htole32(record->record_handle); |
| 644 | } |
| 645 | record = record->next; |
| 646 | } |
| 647 | } |
| 648 | } |
| 649 | |
Deepak Kodihalli | 3b28ba8 | 2020-03-30 07:39:47 -0500 | [diff] [blame] | 650 | void entity_association_tree_find(pldm_entity_node *node, pldm_entity *entity, |
| 651 | pldm_entity_node **out) |
| 652 | { |
| 653 | if (node == NULL) { |
| 654 | return; |
| 655 | } |
| 656 | |
| 657 | if (node->entity.entity_type == entity->entity_type && |
| 658 | node->entity.entity_instance_num == entity->entity_instance_num) { |
| 659 | entity->entity_container_id = node->entity.entity_container_id; |
| 660 | *out = node; |
| 661 | return; |
| 662 | } |
| 663 | |
| 664 | entity_association_tree_find(node->next_sibling, entity, out); |
| 665 | entity_association_tree_find(node->first_child, entity, out); |
| 666 | } |
| 667 | |
| 668 | pldm_entity_node * |
| 669 | pldm_entity_association_tree_find(pldm_entity_association_tree *tree, |
| 670 | pldm_entity *entity) |
| 671 | { |
| 672 | assert(tree != NULL); |
| 673 | |
| 674 | pldm_entity_node *node = NULL; |
| 675 | entity_association_tree_find(tree->root, entity, &node); |
| 676 | return node; |
| 677 | } |
| 678 | |
| 679 | void pldm_entity_association_pdr_extract(const uint8_t *pdr, uint16_t pdr_len, |
| 680 | size_t *num_entities, |
| 681 | pldm_entity **entities) |
| 682 | { |
| 683 | assert(pdr != NULL); |
| 684 | assert(pdr_len >= sizeof(struct pldm_pdr_hdr) + |
| 685 | sizeof(struct pldm_pdr_entity_association)); |
| 686 | |
| 687 | struct pldm_pdr_hdr *hdr = (struct pldm_pdr_hdr *)pdr; |
| 688 | assert(hdr->type == PLDM_PDR_ENTITY_ASSOCIATION); |
| 689 | |
| 690 | const uint8_t *start = (uint8_t *)pdr; |
| 691 | const uint8_t *end = |
| 692 | start + sizeof(struct pldm_pdr_hdr) + le16toh(hdr->length); |
| 693 | start += sizeof(struct pldm_pdr_hdr); |
| 694 | struct pldm_pdr_entity_association *entity_association_pdr = |
| 695 | (struct pldm_pdr_entity_association *)start; |
| 696 | *num_entities = entity_association_pdr->num_children + 1; |
| 697 | assert(*num_entities >= 2); |
| 698 | *entities = malloc(sizeof(pldm_entity) * *num_entities); |
| 699 | assert(*entities != NULL); |
| 700 | assert(start + sizeof(struct pldm_pdr_entity_association) + |
| 701 | sizeof(pldm_entity) * (*num_entities - 2) == |
| 702 | end); |
| 703 | (*entities)->entity_type = |
| 704 | le16toh(entity_association_pdr->container.entity_type); |
| 705 | (*entities)->entity_instance_num = |
| 706 | le16toh(entity_association_pdr->container.entity_instance_num); |
| 707 | (*entities)->entity_container_id = |
| 708 | le16toh(entity_association_pdr->container.entity_container_id); |
| 709 | pldm_entity *curr_entity = entity_association_pdr->children; |
| 710 | size_t i = 1; |
| 711 | while (i < *num_entities) { |
| 712 | (*entities + i)->entity_type = |
| 713 | le16toh(curr_entity->entity_type); |
| 714 | (*entities + i)->entity_instance_num = |
| 715 | le16toh(curr_entity->entity_instance_num); |
| 716 | (*entities + i)->entity_container_id = |
| 717 | le16toh(curr_entity->entity_container_id); |
| 718 | ++curr_entity; |
| 719 | ++i; |
| 720 | } |
| 721 | } |