2 * Copyright (C) 2012 Andreas Steffen
3 * HSR Hochschule fuer Technik Rapperswil
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
18 * @defgroup imv_os_state_t imv_os_state
19 * @{ @ingroup imv_os_state
22 #ifndef IMV_OS_STATE_H_
23 #define IMV_OS_STATE_H_
25 #include "os_info/os_info.h"
26 #include <imv/imv_state.h>
29 typedef struct imv_os_state_t imv_os_state_t
;
30 typedef enum os_settings_t os_settings_t
;
33 OS_SETTINGS_FWD_ENABLED
= 1,
34 OS_SETTINGS_DEFAULT_PWD_ENABLED
= 2,
35 OS_SETTINGS_NON_MARKET_APPS
= 4
39 * Internal state of an imv_os_t connection instance
41 struct imv_os_state_t
{
44 * imv_state_t interface
46 imv_state_t interface
;
49 * Set OS Product Information
51 * @param type OS type (enumerated)
52 * @param name OS name (string)
53 * @param version OS version
55 void (*set_info
)(imv_os_state_t
*this, os_type_t os_type
,
56 chunk_t name
, chunk_t version
);
59 * Get OS Product Information
61 * @param type OS type (enumerated)
62 * @param name OS name (string)
63 * @param version OS version
64 * @return OS name & version as a concatenated string
66 char* (*get_info
)(imv_os_state_t
*this, os_type_t
*os_type
,
67 chunk_t
*name
, chunk_t
*version
);
70 * Set [or with multiple attributes increment] package counters
72 * @param count Number of processed packages
73 * @param count_update Number of not updated packages
74 * @param count_blacklist Number of blacklisted packages
75 * @param count_ok Number of whitelisted packages
77 void (*set_count
)(imv_os_state_t
*this, int count
, int count_update
,
78 int count_blacklist
, int count_ok
);
81 * Set [or with multiple attributes increment] package counters
83 * @param count Number of processed packages
84 * @param count_update Number of not updated packages
85 * @param count_blacklist Number of blacklisted packages
86 * @param count_ok Number of whitelisted packages
88 void (*get_count
)(imv_os_state_t
*this, int *count
, int *count_update
,
89 int *count_blacklist
, int *count_ok
);
92 * Set/reset attribute request status
94 * @param set TRUE to set, FALSE to clear
96 void (*set_attribute_request
)(imv_os_state_t
*this, bool set
);
99 * Get attribute request status
101 * @return TRUE if set, FALSE if unset
103 bool (*get_attribute_request
)(imv_os_state_t
*this);
106 * Set/reset OS Installed Packages request status
108 * @param set TRUE to set, FALSE to clear
110 void (*set_package_request
)(imv_os_state_t
*this, bool set
);
113 * Get OS Installed Packages request status
115 * @return TRUE if set, FALSE if unset
117 bool (*get_package_request
)(imv_os_state_t
*this);
122 * @param device_id Device ID primary database key
124 void (*set_device_id
)(imv_os_state_t
*this, int id
);
129 * @return Device ID primary database key
131 int (*get_device_id
)(imv_os_state_t
*this);
136 * @param settings OS settings
138 void (*set_os_settings
)(imv_os_state_t
*this, u_int settings
);
143 * @return OS settings
145 u_int (*get_os_settings
)(imv_os_state_t
*this);
148 * Increase/Decrease the ITA Angel count
150 * @param start TRUE increases and FALSE decreases count by one
152 void (*set_angel_count
)(imv_os_state_t
*this, bool start
);
155 * Get the ITA Angel count
157 * @return ITA Angel count
159 int (*get_angel_count
)(imv_os_state_t
*this);
162 * Store a bad package that has to be updated or removed
164 * @param package Name of software package
165 * @param package_state Security state of software package
167 void (*add_bad_package
)(imv_os_state_t
*this, char *package
,
168 os_package_state_t package_state
);
173 * Create an imv_os_state_t instance
175 * @param id connection ID
177 imv_state_t
* imv_os_state_create(TNC_ConnectionID id
);
179 #endif /** IMV_OS_STATE_H_ @}*/