Open SCAP Library
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
cpe_dict.h
Go to the documentation of this file.
1 
13 /*
14  * Copyright 2009--2014 Red Hat Inc., Durham, North Carolina.
15  * All Rights Reserved.
16  *
17  * This library is free software; you can redistribute it and/or
18  * modify it under the terms of the GNU Lesser General Public
19  * License as published by the Free Software Foundation; either
20  * version 2.1 of the License, or (at your option) any later version.
21  *
22  * This library is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25  * Lesser General Public License for more details.
26  *
27  * You should have received a copy of the GNU Lesser General Public
28  * License along with this library; if not, write to the Free Software
29  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
30  *
31  * Authors:
32  * Maros Barabas <mbarabas@redhat.com>
33  * Lukas Kuklinek <lkuklinek@redhat.com>
34  * Šimon Lukašík
35  */
36 
37 #ifndef CPEDICT_H_
38 #define CPEDICT_H_
39 
40 #include "oscap.h"
41 #include "cpe_name.h"
42 #include "oscap_text.h"
43 #include "oscap_source.h"
44 
49 struct cpe_dict_model;
50 
55 struct cpe_item;
56 
61 struct cpe_vendor;
62 
67 struct cpe_generator;
68 
73 struct cpe_check;
74 
79 struct cpe_reference;
80 
85 struct cpe_item_metadata;
86 
91 struct cpe_product;
96 struct cpe_version;
101 struct cpe_update;
106 struct cpe_edition;
111 struct cpe_language;
112 
113 /************************************************************/
125 const char *cpe_item_metadata_get_modification_date(const struct cpe_item_metadata *item);
126 
131 const char *cpe_item_metadata_get_status(const struct cpe_item_metadata *item);
132 
137 const char *cpe_item_metadata_get_nvd_id(const struct cpe_item_metadata *item);
138 
143 const char *cpe_item_metadata_get_deprecated_by_nvd_id(const struct cpe_item_metadata *item);
144 
149 const char *cpe_check_get_system(const struct cpe_check *item);
150 
155 const char *cpe_check_get_href(const struct cpe_check *item);
156 
161 const char *cpe_check_get_identifier(const struct cpe_check *item);
162 
167 const char *cpe_reference_get_href(const struct cpe_reference *item);
168 
173 const char *cpe_reference_get_content(const struct cpe_reference *item);
174 
179 struct cpe_name *cpe_item_get_name(const struct cpe_item *item);
180 
185 struct cpe_name *cpe_item_get_deprecated_by(const struct cpe_item *item);
186 
194 OSCAP_DEPRECATED(struct cpe_name *cpe_item_get_deprecated(const struct cpe_item *item));
195 
200 const char *cpe_item_get_deprecation_date(const struct cpe_item *item);
201 
206 struct cpe_item_metadata *cpe_item_get_metadata(const struct cpe_item *item);
207 
212 struct cpe_reference_iterator *cpe_item_get_references(const struct cpe_item *item);
213 
218 struct cpe_check_iterator *cpe_item_get_checks(const struct cpe_item *item);
219 
224 struct oscap_text_iterator *cpe_item_get_titles(const struct cpe_item *item);
225 
233 
238 const char *cpe_generator_get_product_name(const struct cpe_generator *item);
239 
244 const char *cpe_generator_get_product_version(const struct cpe_generator *item);
245 
250 const char *cpe_generator_get_schema_version(const struct cpe_generator *item);
251 
256 const char *cpe_generator_get_timestamp(const struct cpe_generator *item);
257 
269 int cpe_dict_model_get_base_version(const struct cpe_dict_model *item);
270 
275 bool cpe_dict_model_set_base_version(struct cpe_dict_model *item, int base_version);
276 
282 struct cpe_generator *cpe_dict_model_get_generator(const struct cpe_dict_model *item);
283 
288 struct cpe_item_iterator *cpe_dict_model_get_items(const struct cpe_dict_model *item);
289 
295 
300 const char *cpe_vendor_get_value(const struct cpe_vendor *item);
301 
306 struct oscap_text_iterator *cpe_vendor_get_titles(const struct cpe_vendor *item);
307 
312 struct cpe_product_iterator *cpe_vendor_get_products(const struct cpe_vendor *item);
313 
318 const char *cpe_product_get_value(const struct cpe_product *item);
319 
324 cpe_part_t cpe_product_get_part(const struct cpe_product *item);
325 
331 struct cpe_version_iterator *cpe_product_get_versions(const struct cpe_product *item);
332 
337 const char *cpe_version_get_value(const struct cpe_version *item);
338 
344 struct cpe_update_iterator *cpe_version_get_updates(const struct cpe_version *item);
345 
350 const char *cpe_update_get_value(const struct cpe_update *item);
351 
357 struct cpe_edition_iterator *cpe_update_get_editions(const struct cpe_update *item);
358 
363 const char *cpe_edition_get_value(const struct cpe_edition *item);
364 
371 
376 const char *cpe_language_get_value(const struct cpe_language *item);
377 
378 /************************************************************/
381 void cpe_check_free(struct cpe_check *check);
384 void cpe_reference_free(struct cpe_reference *ref);
386 void cpe_vendor_free(struct cpe_vendor *vendor);
388 void cpe_product_free(struct cpe_product *product);
390 void cpe_version_free(struct cpe_version *version);
392 void cpe_update_free(struct cpe_update *update);
394 void cpe_edition_free(struct cpe_edition *edition);
396 void cpe_language_free(struct cpe_language *language);
398 void cpe_itemmetadata_free(struct cpe_item_metadata *meta);
400 void cpe_dict_model_free(struct cpe_dict_model *dict);
402 void cpe_generator_free(struct cpe_generator *generator);
404 void cpe_item_free(struct cpe_item *item);
405 
407 struct cpe_dict_model *cpe_dict_model_new(void);
409 struct cpe_generator *cpe_generator_new(void);
411 struct cpe_check *cpe_check_new(void);
413 struct cpe_reference *cpe_reference_new(void);
415 struct cpe_item *cpe_item_new(void);
417 struct cpe_vendor *cpe_vendor_new(void);
419 struct cpe_product *cpe_product_new(void);
421 struct cpe_version *cpe_version_new(void);
423 struct cpe_update *cpe_update_new(void);
425 struct cpe_edition *cpe_edition_new(void);
427 struct cpe_language *cpe_language_new(void);
430 
431 /************************************************************/
439 bool cpe_item_set_name(struct cpe_item *item, const struct cpe_name *new_name);
441 
443 bool cpe_item_set_deprecated_by(struct cpe_item *item, const struct cpe_name *new_deprecated_by);
444 
446 bool cpe_item_set_deprecation_date(struct cpe_item *item, const char *new_deprecation_date);
447 
450  const char *new_modification_date);
451 
453 bool cpe_item_metadata_set_status(struct cpe_item_metadata *item_metadata, const char *new_status);
454 
456 bool cpe_item_metadata_set_nvd_id(struct cpe_item_metadata *item_metadata, const char *new_nvd_id);
457 
460  const char *new_deprecated_by_nvd_id);
461 
463 bool cpe_check_set_system(struct cpe_check *check, const char *new_system);
464 
466 bool cpe_check_set_href(struct cpe_check *check, const char *new_href);
467 
469 bool cpe_check_set_identifier(struct cpe_check *check, const char *new_identifier);
470 
472 bool cpe_reference_set_href(struct cpe_reference *reference, const char *new_href);
473 
475 bool cpe_reference_set_content(struct cpe_reference *reference, const char *new_content);
476 
478 bool cpe_generator_set_product_name(struct cpe_generator *generator, const char *new_product_name);
479 
481 bool cpe_generator_set_product_version(struct cpe_generator *generator, const char *new_product_version);
482 
484 bool cpe_generator_set_schema_version(struct cpe_generator *generator, const char *new_schema_version);
485 
487 bool cpe_generator_set_timestamp(struct cpe_generator *generator, const char *new_timestamp);
488 
490 bool cpe_vendor_set_value(struct cpe_vendor *vendor, const char *new_value);
491 
493 bool cpe_product_set_value(struct cpe_product *product, const char *new_value);
494 
496 bool cpe_product_set_part(struct cpe_product *product, cpe_part_t new_part);
497 
499 bool cpe_version_set_value(struct cpe_version *version, const char *new_value);
500 
502 bool cpe_update_set_value(struct cpe_update *update, const char *new_value);
503 
505 bool cpe_edition_set_value(struct cpe_edition *edition, const char *new_value);
506 
508 bool cpe_language_set_value(struct cpe_language *language, const char *new_value);
509 
510 /*
511  * Add functions
512  */
513 
515 bool cpe_item_add_reference(struct cpe_item *item, struct cpe_reference *new_reference);
516 
518 bool cpe_item_add_check(struct cpe_item *item, struct cpe_check *new_check);
519 
521 bool cpe_item_add_title(struct cpe_item *item, struct oscap_text *new_title);
522 
528 OSCAP_DEPRECATED(bool cpe_item_add_note(struct cpe_item *item, struct oscap_text *new_title));
529 
531 bool cpe_dict_model_add_item(struct cpe_dict_model *dict, struct cpe_item *new_item);
532 
534 bool cpe_dict_model_add_vendor(struct cpe_dict_model *dict, struct cpe_vendor *new_vendor);
535 
537 bool cpe_vendor_add_title(struct cpe_vendor *vendor, struct oscap_text *new_title);
538 
540 bool cpe_vendor_add_product(struct cpe_vendor *vendor, struct cpe_product *new_product);
541 
543 bool cpe_product_add_version(struct cpe_product *product, struct cpe_version *new_version);
544 
546 bool cpe_version_add_update(struct cpe_version *version, struct cpe_update *new_update);
547 
549 bool cpe_update_add_edition(struct cpe_update *update, struct cpe_edition *new_edition);
550 
552 bool cpe_edition_add_language(struct cpe_edition *edition, struct cpe_language *new_language);
553 
554 
555 /************************************************************/
558 /************************************************************/
569 struct cpe_item_iterator;
570 
577 
584 
591 
596 
603 
610 
617 
624 
629 
635 struct cpe_check_iterator;
636 
643 
650 
657 
662 
668 struct cpe_vendor_iterator;
669 
676 
683 
690 
695 
701 struct cpe_product_iterator;
702 
709 
716 
723 
728 
734 struct cpe_version_iterator;
735 
742 
749 
756 
761 
767 struct cpe_update_iterator;
768 
775 
782 
789 
794 
800 struct cpe_edition_iterator;
801 
808 
815 
822 
827 
833 struct cpe_language_iterator;
834 
841 
848 
855 
860 
861 /************************************************************/
864 /************************************************************/
875 const char * cpe_dict_model_supported(void);
876 
884 OSCAP_DEPRECATED(char *cpe_dict_detect_version(const char* file));
885 
894 bool cpe_name_match_dict(struct cpe_name *cpe, struct cpe_dict_model *dict);
895 
904 bool cpe_name_match_dict_str(const char *cpe, struct cpe_dict_model *dict);
905 
915 bool cpe_name_applicable_dict(struct cpe_name *cpe, struct cpe_dict_model *dict, cpe_check_fn cb, void* usr);
916 
918 bool cpe_item_is_applicable(struct cpe_item* item, cpe_check_fn cb, void* usr);
919 
920 /************************************************************/
928 void cpe_dict_model_export(const struct cpe_dict_model *dict, const char *file);
929 
939 OSCAP_DEPRECATED(struct cpe_dict_model *cpe_dict_model_import(const char *file));
940 
948 
949 
955 bool cpe_dict_model_set_origin_file(struct cpe_dict_model* dict, const char* origin_file);
956 
964 const char* cpe_dict_model_get_origin_file(const struct cpe_dict_model* dict);
965 
970 #endif /* _CPEDICT_H_ */
struct cpe_version_iterator * cpe_product_get_versions(const struct cpe_product *item)
cpe_product functions to get versions of product
struct cpe_version * cpe_version_iterator_next(struct cpe_version_iterator *it)
Iterator over CPE version items.
Product of some vendor.
Definition: cpedict_priv.c:180
void cpe_version_free(struct cpe_version *version)
Definition: cpedict_priv.c:1402
const char * cpe_check_get_href(const struct cpe_check *item)
cpe_check functions to get href
struct cpe_vendor_iterator * cpe_dict_model_get_vendors(const struct cpe_dict_model *item)
cpe_dict_model functions to get vendors
void cpe_update_free(struct cpe_update *update)
Definition: cpedict_priv.c:1413
Structure representing single CPE check.
Definition: cpedict_priv.c:127
CPE dictionary item reference.
Definition: cpedict_priv.c:138
bool cpe_item_add_reference(struct cpe_item *item, struct cpe_reference *new_reference)
const char * cpe_check_get_identifier(const struct cpe_check *item)
cpe_check functions to get identifier
struct cpe_dict_model * cpe_dict_model_new(void)
Definition: cpedict_priv.c:300
void cpe_check_iterator_remove(struct cpe_check_iterator *it)
Structure with information about document.
Definition: cpedict_priv.c:147
void cpe_product_iterator_free(struct cpe_product_iterator *it)
Iterator over CPE product items.
General OpenScap functions and types.
bool cpe_name_match_dict_str(const char *cpe, struct cpe_dict_model *dict)
Verify if CPE given by string is known according to specified dictionary.
Definition: cpedict.c:134
bool cpe_item_metadata_set_modification_date(struct cpe_item_metadata *item_metadata, const char *new_modification_date)
struct cpe_name * cpe_item_get_deprecated(const struct cpe_item *item)
cpe_item functions to get variable member deprecated_by
Definition: cpedict_priv.c:98
Edition of product update.
Definition: cpedict_priv.c:212
Iterator over CPE dictionary item updates.
struct cpe_product * cpe_product_new(void)
Definition: cpedict_priv.c:431
bool cpe_dict_model_add_item(struct cpe_dict_model *dict, struct cpe_item *new_item)
bool cpe_edition_add_language(struct cpe_edition *edition, struct cpe_language *new_language)
const char * cpe_item_metadata_get_nvd_id(const struct cpe_item_metadata *item)
cpe_item_metadata function to get nvd ID
bool cpe_vendor_add_product(struct cpe_vendor *vendor, struct cpe_product *new_product)
struct cpe_product * cpe_product_iterator_next(struct cpe_product_iterator *it)
Iterator over CPE product items.
Structure with information about vendor.
Definition: cpe_dict.h:55
const char * cpe_vendor_get_value(const struct cpe_vendor *item)
cpe_vendor functions to get vendor value
bool cpe_check_set_system(struct cpe_check *check, const char *new_system)
const char * cpe_item_metadata_get_status(const struct cpe_item_metadata *item)
cpe_item_metadata function to get status
bool cpe_language_iterator_has_more(struct cpe_language_iterator *it)
Iterator over CPE language items.
void cpe_check_iterator_free(struct cpe_check_iterator *it)
Iterator over CPE item check items.
#define OSCAP_DEPRECATED(func)
This macro will warn, when a deprecated function is used.
Definition: oscap.h:50
bool cpe_generator_set_product_name(struct cpe_generator *generator, const char *new_product_name)
struct cpe_vendor * cpe_vendor_new(void)
Definition: cpedict_priv.c:414
bool cpe_check_set_identifier(struct cpe_check *check, const char *new_identifier)
void cpe_edition_iterator_remove(struct cpe_edition_iterator *it)
const char * cpe_check_get_system(const struct cpe_check *item)
cpe_check functions to get system
void cpe_version_iterator_remove(struct cpe_version_iterator *it)
void cpe_dict_model_free(struct cpe_dict_model *dict)
Definition: cpedict_priv.c:1305
const char * cpe_generator_get_timestamp(const struct cpe_generator *item)
cpe_generator functions to get timestamp from generator
Iterator over CPE dictionary item languages.
struct cpe_item_metadata * cpe_item_metadata_new(void)
Definition: cpedict_priv.c:320
bool cpe_item_set_deprecated_by(struct cpe_item *item, const struct cpe_name *new_deprecated_by)
Update of product version.
Definition: cpedict_priv.c:202
bool cpe_item_metadata_set_status(struct cpe_item_metadata *item_metadata, const char *new_status)
void cpe_version_iterator_free(struct cpe_version_iterator *it)
Iterator over CPE version items.
const char * cpe_product_get_value(const struct cpe_product *item)
cpe_product functions to get product value
const char * cpe_edition_get_value(const struct cpe_edition *item)
cpe_edition functions to get value of edition
void cpe_product_free(struct cpe_product *product)
Definition: cpedict_priv.c:1391
void cpe_item_iterator_remove(struct cpe_item_iterator *it)
struct cpe_name * cpe_item_get_name(const struct cpe_item *item)
cpe_item functions to get variable member name
void cpe_language_iterator_remove(struct cpe_language_iterator *it)
bool cpe_dict_model_add_vendor(struct cpe_dict_model *dict, struct cpe_vendor *new_vendor)
Iterator over CPE dictionary items.
void cpe_edition_iterator_free(struct cpe_edition_iterator *it)
Iterator over CPE edition items.
bool cpe_update_set_value(struct cpe_update *update, const char *new_value)
const char * cpe_language_get_value(const struct cpe_language *item)
cpe_language functions to get value of language
Interface to Common Platform Enumeration (CPE) URI.
struct cpe_dict_model * cpe_dict_model_import_source(struct oscap_source *source)
Load new CPE dictionary from an oscap_source.
Definition: cpedict.c:50
void cpe_update_iterator_free(struct cpe_update_iterator *it)
Iterator over CPE update items.
bool cpe_product_set_value(struct cpe_product *product, const char *new_value)
const char * cpe_generator_get_product_version(const struct cpe_generator *item)
cpe_generator functions to get product version
bool cpe_generator_set_schema_version(struct cpe_generator *generator, const char *new_schema_version)
struct cpe_language * cpe_language_iterator_next(struct cpe_language_iterator *it)
Iterator over CPE language items.
bool cpe_update_iterator_has_more(struct cpe_update_iterator *it)
Iterator over CPE update items.
void cpe_vendor_iterator_remove(struct cpe_vendor_iterator *it)
void cpe_generator_free(struct cpe_generator *generator)
Definition: cpedict_priv.c:1334
const char * cpe_generator_get_schema_version(const struct cpe_generator *item)
cpe_generator functions to get document schema version
void cpe_update_iterator_reset(struct cpe_update_iterator *it)
bool cpe_language_set_value(struct cpe_language *language, const char *new_value)
Internationalized string iterator.
struct cpe_edition * cpe_edition_new(void)
Definition: cpedict_priv.c:479
const char * cpe_dict_model_supported(void)
Get the newest supported version of CPE dictionary XML.
Definition: cpedict.c:207
bool cpe_item_add_check(struct cpe_item *item, struct cpe_check *new_check)
struct cpe_edition * cpe_edition_iterator_next(struct cpe_edition_iterator *it)
Iterator over CPE edition items.
bool *(* cpe_check_fn)(const char *, const char *, const char *, void *)
Shared callback definition used to evaluate checks to perform applicability tests.
Definition: cpe_name.h:362
struct cpe_generator * cpe_generator_new(void)
Definition: cpedict_priv.c:396
const char * cpe_item_get_deprecation_date(const struct cpe_item *item)
cpe_item functions to get variable member date
bool cpe_product_add_version(struct cpe_product *product, struct cpe_version *new_version)
void cpe_language_iterator_reset(struct cpe_language_iterator *it)
bool cpe_version_set_value(struct cpe_version *version, const char *new_value)
bool cpe_item_metadata_set_deprecated_by_nvd_id(struct cpe_item_metadata *item_metadata, const char *new_deprecated_by_nvd_id)
bool cpe_version_add_update(struct cpe_version *version, struct cpe_update *new_update)
void cpe_language_iterator_free(struct cpe_language_iterator *it)
Iterator over CPE language items.
bool cpe_dict_model_set_origin_file(struct cpe_dict_model *dict, const char *origin_file)
Sets the origin file hint.
Definition: cpedict.c:80
Iterator over CPE dictionary item vendors.
struct cpe_reference * cpe_reference_new(void)
Definition: cpedict_priv.c:373
const char * cpe_item_metadata_get_modification_date(const struct cpe_item_metadata *item)
cpe_item_metadata function to get date
Iterator over CPE dictionary item editions.
void cpe_language_free(struct cpe_language *language)
Definition: cpedict_priv.c:1435
struct oscap_text_iterator * cpe_vendor_get_titles(const struct cpe_vendor *item)
cpe_vendor functions to get vendor titles
bool cpe_product_iterator_has_more(struct cpe_product_iterator *it)
Iterator over CPE product items.
struct cpe_product_iterator * cpe_vendor_get_products(const struct cpe_vendor *item)
cpe_vendor functions to get vendor products
const char * cpe_item_metadata_get_deprecated_by_nvd_id(const struct cpe_item_metadata *item)
cpe_item_metadata function to get NVD ID of deprecated item
bool cpe_item_iterator_has_more(struct cpe_item_iterator *it)
Iterator over CPE dictionary items.
Version of product.
Definition: cpedict_priv.c:192
bool cpe_product_set_part(struct cpe_product *product, cpe_part_t new_part)
struct cpe_vendor * cpe_vendor_iterator_next(struct cpe_vendor_iterator *it)
Iterator over CPE vendor items.
struct cpe_reference_iterator * cpe_item_get_references(const struct cpe_item *item)
cpe_item functions to get CPE references
struct cpe_check * cpe_check_iterator_next(struct cpe_check_iterator *it)
Iterator over CPE item check items.
void cpe_product_iterator_remove(struct cpe_product_iterator *it)
void cpe_check_iterator_reset(struct cpe_check_iterator *it)
bool cpe_item_set_deprecation_date(struct cpe_item *item, const char *new_deprecation_date)
struct cpe_generator * cpe_dict_model_get_generator(const struct cpe_dict_model *item)
cpe_dict_model functions to get generator from CPE dictionary model
const char * cpe_dict_model_get_origin_file(const struct cpe_dict_model *dict)
Gets the file the CPE dict model was loaded from.
Definition: cpedict.c:88
bool cpe_generator_set_timestamp(struct cpe_generator *generator, const char *new_timestamp)
struct cpe_update_iterator * cpe_version_get_updates(const struct cpe_version *item)
cpe_version functions to get value of version
void cpe_reference_iterator_reset(struct cpe_reference_iterator *it)
bool cpe_reference_set_href(struct cpe_reference *reference, const char *new_href)
bool cpe_check_set_href(struct cpe_check *check, const char *new_href)
bool cpe_item_add_note(struct cpe_item *item, struct oscap_text *new_title)
struct cpe_item * cpe_item_new(void)
Definition: cpedict_priv.c:338
struct cpe_dict_model * cpe_dict_model_import(const char *file)
Load new CPE dictionary from file.
Definition: cpedict.c:70
Structure representing metadata of CPE item.
Definition: cpedict_priv.c:114
void cpe_reference_iterator_remove(struct cpe_reference_iterator *it)
const char * cpe_version_get_value(const struct cpe_version *item)
cpe_version functions to get vupdates of versions
bool cpe_version_iterator_has_more(struct cpe_version_iterator *it)
Iterator over CPE version items.
Structure representing a CPE dictionary.
Definition: cpedict_priv.h:126
void cpe_check_free(struct cpe_check *check)
Definition: cpedict_priv.c:1347
void cpe_vendor_iterator_reset(struct cpe_vendor_iterator *it)
Multilingual text processing interface.
struct cpe_check * cpe_check_new(void)
Definition: cpedict_priv.c:356
Definition: oscap_source.c:62
struct cpe_version * cpe_version_new(void)
Definition: cpedict_priv.c:447
Iterator over CPE dictionary item versions.
void cpe_version_iterator_reset(struct cpe_version_iterator *it)
bool cpe_dict_model_set_base_version(struct cpe_dict_model *item, int base_version)
cpe_dict_model functions to get the base version from CPE dictionary model
void cpe_product_iterator_reset(struct cpe_product_iterator *it)
const char * cpe_reference_get_content(const struct cpe_reference *item)
cpe_reference functions to get content of reference
struct cpe_item_iterator * cpe_dict_model_get_items(const struct cpe_dict_model *item)
cpe_dict_model functions to get CPE items
const char * cpe_reference_get_href(const struct cpe_reference *item)
cpe_reference functions to get href of reference
Structure representing single CPE dictionary item.
Definition: cpedict_priv.c:71
bool cpe_vendor_set_value(struct cpe_vendor *vendor, const char *new_value)
Structure holding Common Platform Enumeration URI data.
Definition: cpename.c:69
const char * cpe_update_get_value(const struct cpe_update *item)
cpe_update functions to get updates of version
Iterator over CPE dictionary item products.
bool cpe_edition_set_value(struct cpe_edition *edition, const char *new_value)
struct cpe_reference * cpe_reference_iterator_next(struct cpe_reference_iterator *it)
Iterator over CPE item reference items.
struct oscap_text_iterator * cpe_item_get_titles(const struct cpe_item *item)
cpe_item functions to get CPE titles
Representation of internationalizable character strings.
Definition: text_priv.h:47
Language of product edition.
Definition: cpedict_priv.c:222
struct cpe_item * cpe_item_iterator_next(struct cpe_item_iterator *it)
Iterator over CPE dictionary items.
bool cpe_edition_iterator_has_more(struct cpe_edition_iterator *it)
Iterator over CPE edition items.
bool cpe_check_iterator_has_more(struct cpe_check_iterator *it)
Iterator over CPE item check items.
struct cpe_check_iterator * cpe_item_get_checks(const struct cpe_item *item)
cpe_item functions to get CPE checks
bool cpe_vendor_add_title(struct cpe_vendor *vendor, struct oscap_text *new_title)
Iterator over CPE dictionary references.
struct cpe_update * cpe_update_new(void)
Definition: cpedict_priv.c:463
int cpe_dict_model_get_base_version(const struct cpe_dict_model *item)
cpe_dict_model functions to get the base version from CPE dictionary model
bool cpe_name_match_dict(struct cpe_name *cpe, struct cpe_dict_model *dict)
Verify wether given CPE is known according to specified dictionary.
Definition: cpedict.c:106
void cpe_edition_iterator_reset(struct cpe_edition_iterator *it)
char * cpe_dict_detect_version(const char *file)
Detects which version the given CPE file is.
Definition: cpedict.c:256
cpe_part_t cpe_product_get_part(const struct cpe_product *item)
cpe_product functions to get product part
bool cpe_update_add_edition(struct cpe_update *update, struct cpe_edition *new_edition)
bool cpe_item_set_name(struct cpe_item *item, const struct cpe_name *new_name)
bool cpe_reference_iterator_has_more(struct cpe_reference_iterator *it)
Iterator over CPE item reference items.
void cpe_reference_free(struct cpe_reference *ref)
Definition: cpedict_priv.c:1359
void cpe_item_iterator_reset(struct cpe_item_iterator *it)
struct cpe_update * cpe_update_iterator_next(struct cpe_update_iterator *it)
Iterator over CPE update items.
void cpe_item_iterator_free(struct cpe_item_iterator *it)
Iterator over CPE dictionary items.
Iterator over CPE dictionary checks.
struct cpe_name * cpe_item_get_deprecated_by(const struct cpe_item *item)
cpe_item functions to get variable member deprecated_by
bool cpe_item_is_applicable(struct cpe_item *item, cpe_check_fn cb, void *usr)
Definition: cpedict.c:190
void cpe_reference_iterator_free(struct cpe_reference_iterator *it)
Iterator over CPE item reference items.
bool cpe_item_add_title(struct cpe_item *item, struct oscap_text *new_title)
bool cpe_vendor_iterator_has_more(struct cpe_vendor_iterator *it)
Iterator over CPE vendor items.
bool cpe_item_metadata_set_nvd_id(struct cpe_item_metadata *item_metadata, const char *new_nvd_id)
const char * cpe_generator_get_product_name(const struct cpe_generator *item)
cpe_generator functions to get product name
bool cpe_name_applicable_dict(struct cpe_name *cpe, struct cpe_dict_model *dict, cpe_check_fn cb, void *usr)
Verify whether given CPE is applicable to current platform by evaluating checks associated with it...
Definition: cpedict.c:150
bool cpe_generator_set_product_version(struct cpe_generator *generator, const char *new_product_version)
void cpe_vendor_iterator_free(struct cpe_vendor_iterator *it)
Iterator over CPE vendor items.
struct cpe_item_metadata * cpe_item_get_metadata(const struct cpe_item *item)
cpe_item functions to get metadata of cpe_item
struct oscap_text_iterator * cpe_item_get_notes(const struct cpe_item *item)
cpe_item functions to get CPE notes
struct cpe_language * cpe_language_new(void)
Definition: cpedict_priv.c:495
void cpe_item_free(struct cpe_item *item)
Definition: cpedict_priv.c:1317
void cpe_update_iterator_remove(struct cpe_update_iterator *it)
void cpe_dict_model_export(const struct cpe_dict_model *dict, const char *file)
Write the dict_model to a file.
Definition: cpedict.c:93
void cpe_vendor_free(struct cpe_vendor *vendor)
Definition: cpedict_priv.c:1379
bool cpe_reference_set_content(struct cpe_reference *reference, const char *new_content)
struct cpe_edition_iterator * cpe_update_get_editions(const struct cpe_update *item)
cpe_update functions to get editions of update
void cpe_edition_free(struct cpe_edition *edition)
Definition: cpedict_priv.c:1424
struct cpe_language_iterator * cpe_edition_get_languages(const struct cpe_edition *item)
cpe_edition functions to get languages of edition
cpe_part_t
enumeration of possible CPE parts
Definition: cpe_name.h:45