blob: c93bb46c7d35b1b994bb4823bebf185a9c270496 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2014 The Android Open Source Project
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//
Alex Deymoc705cc82014-02-19 11:15:00 -080016
Gilad Arnold48415f12014-06-27 07:10:58 -070017#ifndef UPDATE_ENGINE_UPDATE_MANAGER_DEFAULT_POLICY_H_
18#define UPDATE_ENGINE_UPDATE_MANAGER_DEFAULT_POLICY_H_
19
Ben Chan02f7c1d2014-10-18 15:18:02 -070020#include <memory>
Gilad Arnold48415f12014-06-27 07:10:58 -070021#include <string>
Alex Deymoc705cc82014-02-19 11:15:00 -080022
Gilad Arnoldf62a4b82014-05-01 07:41:07 -070023#include <base/time/time.h>
24
Alex Deymo63784a52014-05-28 10:46:14 -070025#include "update_engine/update_manager/policy.h"
Alex Deymoc705cc82014-02-19 11:15:00 -080026
Alex Deymo63784a52014-05-28 10:46:14 -070027namespace chromeos_update_manager {
Alex Deymoc705cc82014-02-19 11:15:00 -080028
Gilad Arnolda23e4082014-07-17 11:40:43 -070029// Auxiliary state class for DefaultPolicy evaluations.
30//
31// IMPORTANT: The use of a state object in policies is generally forbidden, as
32// it was a design decision to keep policy calls side-effect free. We make an
33// exception here to ensure that DefaultPolicy indeed serves as a safe (and
34// secure) fallback option. This practice should be avoided when imlpementing
35// other policies.
36class DefaultPolicyState {
37 public:
38 DefaultPolicyState() {}
39
40 bool IsLastCheckAllowedTimeSet() const {
41 return last_check_allowed_time_ != base::Time::Max();
42 }
43
44 // Sets/returns the point time on the monotonic time scale when the latest
45 // check allowed was recorded.
46 void set_last_check_allowed_time(base::Time timestamp) {
47 last_check_allowed_time_ = timestamp;
48 }
49 base::Time last_check_allowed_time() const {
50 return last_check_allowed_time_;
51 }
52
53 private:
54 base::Time last_check_allowed_time_ = base::Time::Max();
55};
56
Alex Deymoc705cc82014-02-19 11:15:00 -080057// The DefaultPolicy is a safe Policy implementation that doesn't fail. The
58// values returned by this policy are safe default in case of failure of the
Alex Deymo63784a52014-05-28 10:46:14 -070059// actual policy being used by the UpdateManager.
Alex Deymoc705cc82014-02-19 11:15:00 -080060class DefaultPolicy : public Policy {
61 public:
Amin Hassani0468a762020-11-17 23:53:48 -080062 DefaultPolicy() : aux_state_(new DefaultPolicyState()) {}
63 ~DefaultPolicy() override = default;
Alex Deymoc705cc82014-02-19 11:15:00 -080064
65 // Policy overrides.
Amin Hassani4b717432019-01-14 16:24:20 -080066 EvalStatus UpdateCheckAllowed(EvaluationContext* ec,
67 State* state,
68 std::string* error,
69 UpdateCheckParams* result) const override;
Gilad Arnoldaf2f6ae2014-04-28 14:14:52 -070070
Aaron Wood23bd3392017-10-06 14:48:25 -070071 EvalStatus UpdateCanBeApplied(
72 EvaluationContext* ec,
73 State* state,
74 std::string* error,
75 chromeos_update_engine::ErrorCode* result,
76 chromeos_update_engine::InstallPlan* install_plan) const override;
77
Amin Hassani4b717432019-01-14 16:24:20 -080078 EvalStatus UpdateCanStart(EvaluationContext* ec,
79 State* state,
80 std::string* error,
81 UpdateDownloadParams* result,
82 UpdateState update_state) const override;
Alex Deymoc705cc82014-02-19 11:15:00 -080083
Amin Hassani4b717432019-01-14 16:24:20 -080084 EvalStatus P2PEnabled(EvaluationContext* ec,
85 State* state,
86 std::string* error,
87 bool* result) const override;
Gilad Arnold78ecbfc2014-10-22 14:38:25 -070088
Amin Hassani4b717432019-01-14 16:24:20 -080089 EvalStatus P2PEnabledChanged(EvaluationContext* ec,
90 State* state,
91 std::string* error,
92 bool* result,
93 bool prev_result) const override;
Gilad Arnold78ecbfc2014-10-22 14:38:25 -070094
Gilad Arnoldb3b05442014-05-30 14:25:05 -070095 protected:
96 // Policy override.
Alex Vakulenko157fe302014-08-11 15:59:58 -070097 std::string PolicyName() const override { return "DefaultPolicy"; }
Gilad Arnoldb3b05442014-05-30 14:25:05 -070098
Alex Deymoc705cc82014-02-19 11:15:00 -080099 private:
Gilad Arnolda23e4082014-07-17 11:40:43 -0700100 // An auxiliary state object.
Ben Chan02f7c1d2014-10-18 15:18:02 -0700101 std::unique_ptr<DefaultPolicyState> aux_state_;
Gilad Arnolda23e4082014-07-17 11:40:43 -0700102
Alex Deymoc705cc82014-02-19 11:15:00 -0800103 DISALLOW_COPY_AND_ASSIGN(DefaultPolicy);
104};
105
Alex Deymo63784a52014-05-28 10:46:14 -0700106} // namespace chromeos_update_manager
Alex Deymoc705cc82014-02-19 11:15:00 -0800107
Gilad Arnold48415f12014-06-27 07:10:58 -0700108#endif // UPDATE_ENGINE_UPDATE_MANAGER_DEFAULT_POLICY_H_