summaryrefslogtreecommitdiff
path: root/src/components/policy/src/policy/include/policy/policy_manager_impl.h
blob: efdd0e4a13509dbbb5871b681f00ce8b9a879047 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
/*
 Copyright (c) 2016, Ford Motor Company
 All rights reserved.

 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions are met:

 Redistributions of source code must retain the above copyright notice, this
 list of conditions and the following disclaimer.

 Redistributions in binary form must reproduce the above copyright notice,
 this list of conditions and the following
 disclaimer in the documentation and/or other materials provided with the
 distribution.

 Neither the name of the Ford Motor Company nor the names of its contributors
 may be used to endorse or promote products derived from this software
 without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 POSSIBILITY OF SUCH DAMAGE.
 */

#ifndef SRC_COMPONENTS_POLICY_INCLUDE_POLICY_POLICY_MANAGER_IMPL_H_
#define SRC_COMPONENTS_POLICY_INCLUDE_POLICY_POLICY_MANAGER_IMPL_H_

#include <string>
#include <list>
#include <cstdint>

#include "utils/shared_ptr.h"
#include "utils/lock.h"
#include "policy/policy_manager.h"
#include "policy/policy_table.h"
#include "policy/cache_manager_interface.h"
#include "policy/update_status_manager.h"
#include "functions.h"
#include "usage_statistics/statistics_manager.h"
#include "policy/policy_helper.h"
#include "utils/timer.h"

namespace policy_table = rpc::policy_table_interface_base;

namespace policy {
struct CheckAppPolicy;

class PolicyManagerImpl : public PolicyManager {
  public:
    PolicyManagerImpl();
    virtual void set_listener(PolicyListener* listener);
    PolicyListener* listener() const {
      return listener_;
    }
    virtual bool InitPT(const std::string& file_name);
    virtual bool LoadPT(const std::string& file, const BinaryMessage& pt_content);
    virtual bool ResetPT(const std::string& file_name);

    virtual void GetServiceUrls(const std::string& service_type,
                                EndpointUrls& end_points);

    virtual std::string GetLockScreenIconUrl() const;
    virtual bool RequestPTUpdate();
    virtual void CheckPermissions(const PTString& app_id,
        const PTString& hmi_level,
        const PTString& rpc,
        const RPCParams& rpc_params,
        CheckPermissionResult& result);
    virtual bool ResetUserConsent();
    virtual void KmsChanged(int kilometers);
    virtual void IncrementIgnitionCycles();
    virtual std::string ForcePTExchange();
    virtual std::string GetPolicyTableStatus() const;
    virtual void ResetRetrySequence();
    virtual uint32_t NextRetryTimeout();
    virtual int TimeoutExchange();
    virtual const std::vector<int> RetrySequenceDelaysSeconds();
    virtual void OnExceededTimeout();
    virtual void OnUpdateStarted();
    virtual void PTUpdatedAt(Counters counter, int value);

    /**
     * Refresh data about retry sequence from policy table
     */
    virtual void RefreshRetrySequence();
    virtual DeviceConsent GetUserConsentForDevice(const std::string& device_id);
    virtual void GetUserConsentForApp(
      const std::string& device_id, const std::string& policy_app_id,
      std::vector<FunctionalGroupPermission>& permissions);
    virtual void SetUserConsentForDevice(const std::string& device_id,
                                         bool is_allowed);
    virtual bool ReactOnUserDevConsentForApp(const std::string app_id,
        bool is_device_allowed);
    virtual bool GetInitialAppData(const std::string& application_id,
                                   StringArray* nicknames = NULL,
                                   StringArray* app_hmi_types = NULL);

    virtual void AddDevice(const std::string& device_id,
                           const std::string& connection_type);

    virtual void SetDeviceInfo(const std::string& device_id,
                               const DeviceInfo& device_info);

    virtual void SetUserConsentForApp(const PermissionConsent& permissions);

    virtual bool GetDefaultHmi(const std::string& policy_app_id,
                               std::string* default_hmi);

    virtual bool GetPriority(const std::string& policy_app_id,
                             std::string* priority);

    virtual std::vector<UserFriendlyMessage> GetUserFriendlyMessages(
      const std::vector<std::string>& message_code, const std::string& language);

    virtual bool IsApplicationRevoked(const std::string& app_id) const;

    virtual void GetPermissionsForApp(
      const std::string& device_id, const std::string& policy_app_id,
      std::vector<FunctionalGroupPermission>& permissions);

    virtual std::string& GetCurrentDeviceId(const std::string& policy_app_id);

    virtual void SetSystemLanguage(const std::string& language);

    virtual void SetSystemInfo(const std::string& ccpu_version,
                               const std::string& wers_country_code,
                               const std::string& language);
    virtual void OnSystemReady();

    virtual uint32_t GetNotificationsNumber(const std::string& priority);

    virtual void SetVINValue(const std::string& value);

    // Interface StatisticsManager (begin)
    virtual void Increment(usage_statistics::GlobalCounterId type);
    virtual void Increment(const std::string& app_id,
                           usage_statistics::AppCounterId type);
    virtual void Set(const std::string& app_id, usage_statistics::AppInfoId type,
                     const std::string& value);
    virtual void Add(const std::string& app_id,
                     usage_statistics::AppStopwatchId type,
                     int32_t timespan_seconds);
    // Interface StatisticsManager (end)

    AppPermissions GetAppPermissionsChanges(const std::string& policy_app_id);
    void RemovePendingPermissionChanges(const std::string& app_id);

    void SendNotificationOnPermissionsUpdated(const std::string& application_id);

    bool CleanupUnpairedDevices();

    bool CanAppKeepContext(const std::string& app_id);
    bool CanAppStealFocus(const std::string& app_id);
    void MarkUnpairedDevice(const std::string& device_id);

    void AddApplication(const std::string& application_id);

    virtual void RemoveAppConsentForGroup(const std::string& app_id,
                                          const std::string& group_name);

    virtual uint32_t HeartBeatTimeout(const std::string& app_id) const;

    virtual void SaveUpdateStatusRequired(bool is_update_needed);

    virtual bool IsPredataPolicy(const std::string& policy_app_id);
    void set_cache_manager(CacheManagerInterface* cache_manager);

    virtual void OnAppsSearchStarted();

    virtual void OnAppsSearchCompleted();

#ifdef BUILD_TESTS
    inline CacheManagerInterfaceSPtr GetCache() { return cache_; }
#endif  // BUILD_TESTS
    virtual const std::vector<std::string> GetAppRequestTypes(
      const std::string policy_app_id) const;

    virtual const VehicleInfo GetVehicleInfo() const;

    virtual void OnAppRegisteredOnMobile(const std::string& application_id) OVERRIDE;

    virtual std::string RetrieveCertificate() const OVERRIDE;

  protected:
    #ifdef USE_HMI_PTU_DECRYPTION
    virtual utils::SharedPtr<policy_table::Table> Parse(
        const BinaryMessage& pt_content);
    #else
    virtual utils::SharedPtr<policy_table::Table> ParseArray(
        const BinaryMessage& pt_content);
    #endif

  private:
    void CheckTriggers();
    /*
     * @brief Checks policy table update along with current data for any changes
     * in assigned functional group list of application
     *
     * @param Policy table update struct
     */
    void CheckPermissionsChanges(
      const utils::SharedPtr<policy_table::Table> update,
      const utils::SharedPtr<policy_table::Table> snapshot);

    /**
     * @brief Fill structure to be sent with OnPermissionsChanged notification
     *
     * @param Policy table struct, which contains rpc functional groups data
     * @param List of rpc functional group names, which should be checked
     * @param group_permission User permissions for functional groups
     * @param Notification struct to be filled and sent
     */
    void PrepareNotificationData(
      const policy_table::FunctionalGroupings& groups,
      const policy_table::Strings& group_names,
      const std::vector<FunctionalGroupPermission>& group_permission,
      Permissions& notification_data);

    /**
     * @brief Validate PermissionConsent structure according to currently
     * assigned groups
     * @param permissions PermissionConsent structure that should be validated.
     * @return PermissonConsent struct, which contains no foreign groups
     */
    PermissionConsent EnsureCorrectPermissionConsent(
        const PermissionConsent& permissions_to_check);

    /**
     * @brief Allows to process case when added application is not present in
     * policy db.
     * @param policy application id.
     * @param cuuren consent for application's device.
     */
    void AddNewApplication(const std::string& application_id,
                           DeviceConsent device_consent);

    /**
     * @brief Allows to process case when added application is already
     * in policy db.
     * @param policy application id.
     * @param cuuren consent for application's device.
     */
    void PromoteExistedApplication(const std::string& application_id,
                               DeviceConsent device_consent);

    /**
     * @brief Check if certain application already in policy db.
     * @param policy application id.
     * @return true if application presents false otherwise.
     */
    bool IsNewApplication(const std::string& application_id) const;

    /**
     * Checks existing and permissions of AppStorageFolder
     * @return true if AppStorageFolder exists and has permissions read/write
     */
    bool CheckAppStorageFolder() const;

    /**
     * @brief Checks whether need ask the permission of users
     * @return true if user consent is needed
     */
    virtual bool IsConsentNeeded(const std::string& app_id);

    /**
     * @brief Changes isConsentNeeded for app pending permissions, in case
     * user set permissions before app activation.
     * @param Unique app id
     * @param Current permissions for app
     */
    void CheckPendingPermissionsChanges(
                const std::string& policy_app_id,
                const std::vector<FunctionalGroupPermission>& current_permissions);

    virtual void StartPTExchange();
    virtual bool ExceededDays();
    virtual bool ExceededIgnitionCycles();
    bool IsPTValid(utils::SharedPtr<policy_table::Table> policy_table,
                   policy_table::PolicyTableType type) const;

    void RetrySequence();

private:
    PolicyListener* listener_;

    UpdateStatusManager update_status_manager_;
    CacheManagerInterfaceSPtr cache_;
    sync_primitives::Lock apps_registration_lock_;
    sync_primitives::Lock app_permissions_diff_lock_;
    std::map<std::string, AppPermissions> app_permissions_diff_;

    /**
     * Timeout to wait response with UpdatePT
     */
    uint32_t retry_sequence_timeout_;

    /**
     * Seconds between retries to update PT
     */
    std::vector<int> retry_sequence_seconds_;

    /**
     * Current index trying of retry sequence
     */
    uint32_t retry_sequence_index_;

    /**
     * Lock for guarding retry sequence
     */
    sync_primitives::Lock retry_sequence_lock_;

    /**
      * Timer to retry UpdatePT
      */
    timer::Timer timer_retry_sequence_;

    /**
     * @brief Device id, which is used during PTU handling for specific
     * application
     */
    std::string last_device_id_;

    bool ignition_check;

    friend struct CheckAppPolicy;
};

}  // namespace policy

#endif  // SRC_COMPONENTS_POLICY_INCLUDE_POLICY_POLICY_MANAGER_IMPL_H_