Tizen 2.1 base
[framework/security/security-server.git] / ace_install / include / ace_api_install.h
1 /*
2  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
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  * @file        ace_api_setup.h
18  * @author      Tomasz Swierczek (t.swierczek@samsung.com)
19  * @version     1.0
20  * @brief       This is C api for Access Control Engine (ACE), installer mode
21  *              (RW part).
22  *
23  */
24
25 #ifndef ACE_API_H
26 #define ACE_API_H
27
28 #include <ace_api_common.h>
29
30 #ifdef __cplusplus
31 extern "C" {
32 #endif
33
34 /*
35  * API defined in this header should be used only from one thread. If used
36  * otherwise, unexpected behaviour may occur, including segmentation faults and
37  * escalation of global warming. Be warned.
38  */
39
40 // --------------- Initialization and policy update ----------------------------
41
42 /*
43  * Initializes ACE - connects (RW) to the database. Must be called only once.
44  * Returns ACE_OK or error
45  */
46 ace_return_t ace_install_initialize(void);
47
48 /*
49  * Deinitializes ACE - deinitialize internal structures, detach DB, etc.
50  * Must be called only once.
51  * Returns ACE_OK or error
52  */
53 ace_return_t ace_install_shutdown(void);
54
55 /*
56  * Updates policy - parses XML files from known locations (reason for no arguments),
57  * also clears policy and prompt caches.
58  * Returns ACE_OK or error
59  */
60 ace_return_t ace_update_policy(void);
61
62 // --------------- Requested device capabilities API for installer -------------
63
64 typedef struct
65 {
66     ace_string_t   device_capability;
67     ace_bool_t     smack_granted;
68 } ace_requested_dev_cap_t;
69
70 typedef struct
71 {
72     ace_size_t              count;
73     ace_requested_dev_cap_t*  items;
74 } ace_requested_dev_cap_list_t;
75
76 /*
77  * Deletes data allocated by ace_get_requested_dev_caps - a helper function
78  */
79 ace_return_t ace_free_requested_dev_caps(ace_requested_dev_cap_list_t* caps);
80
81 /*
82  * Returns ACE_OK or error; 'caps' will hold device capabilities information.
83  * To free allcated resources in 'caps', use ace_free_requested_dev_caps
84  */
85 ace_return_t ace_get_requested_dev_caps(ace_widget_handle_t handle,
86                                         ace_requested_dev_cap_list_t* caps);
87
88 /*
89  * Returns error or ACE_OK
90  */
91 ace_return_t ace_set_requested_dev_caps(ace_widget_handle_t handle,
92                                         const ace_requested_dev_cap_list_t* caps);
93
94 // ---------------- Accepted Api featuresk API for installer ----------------
95
96
97 ace_return_t ace_set_accepted_feature(ace_widget_handle_t handle,
98                                       const ace_feature_list_t* flist);
99
100 ace_return_t ace_rem_accepted_feature(ace_widget_handle_t handle);
101
102 // --------------- Widget data setup for installation --------------------------
103
104 typedef enum
105 {
106     WAC20 = 0,
107     Tizen
108 } ace_widget_type_t;
109
110 struct widget_info {
111     ace_widget_type_t type;
112     ace_string_t id;
113     ace_string_t version;
114     ace_string_t author;
115     ace_string_t shareHerf;
116 };
117
118 typedef enum
119 {
120     AUTHOR,
121     DISTRIBUTOR,
122     UNKNOWN
123 } ace_cert_owner_t;
124
125 typedef enum
126 {
127     ROOT,
128     ENDENTITY
129 } ace_cert_type_t;
130
131 typedef struct certificate_data {
132     ace_cert_owner_t owner;
133     ace_cert_type_t type;
134     int chain_id;
135     ace_string_t md5_fp;
136     ace_string_t sha1_fp;
137     ace_string_t common_name;
138 } ace_certificate_data;
139
140 /*
141  * Register widget info into database.
142  * @param cert_data NULL terminated list of widget certificates
143  */
144
145 ace_return_t ace_register_widget(ace_widget_handle_t handle,
146                                  struct widget_info* info,
147                                  ace_certificate_data* cert_data[]);
148
149 ace_return_t ace_unregister_widget(ace_widget_handle_t handle);
150
151 ace_return_t ace_is_widget_installed(ace_widget_handle_t handle, bool *installed);
152
153 /*
154  * Gets widget type in 'type'. Use in installer to determine which policy will be used
155  * by ACE for this widget.
156  * Returns error or ACE_OK
157  */
158 ace_return_t ace_get_widget_type(ace_widget_handle_t handle,
159                                  ace_widget_type_t* type);
160
161 // --------------- Installation time policy check ------------------------------
162
163 typedef enum
164 {
165     ACE_PERMIT,
166     ACE_DENY,
167     ACE_PROMPT,
168     ACE_UNDEFINED
169 } ace_policy_result_t;
170
171 /*
172  * Gets current policy evaluation for given device capability and given widget.
173  * Returns error or ACE_OK
174  */
175 ace_return_t ace_get_policy_result(const ace_resource_t,
176                                    ace_widget_handle_t handle,
177                                    ace_policy_result_t* result);
178
179 #ifdef __cplusplus
180 }
181 #endif
182
183 #endif // ACE_API_H