1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef SANDBOX_SRC_POLICY_ENGINE_PARAMS_H__
6 #define SANDBOX_SRC_POLICY_ENGINE_PARAMS_H__
8 #include "base/basictypes.h"
9 #include "sandbox/win/src/internal_types.h"
10 #include "sandbox/win/src/nt_internals.h"
11 #include "sandbox/win/src/sandbox_nt_util.h"
13 // This header defines the classes that allow the low level policy to select
14 // the input parameters. In order to better make sense of this header is
15 // recommended that you check policy_engine_opcodes.h first.
19 // Models the set of interesting parameters of an intercepted system call
20 // normally you don't create objects of this class directly, instead you
21 // use the POLPARAMS_XXX macros.
22 // For example, if an intercepted function has the following signature:
24 // NTSTATUS NtOpenFileFunction (PHANDLE FileHandle,
25 // ACCESS_MASK DesiredAccess,
26 // POBJECT_ATTRIBUTES ObjectAttributes,
27 // PIO_STATUS_BLOCK IoStatusBlock,
29 // ULONG OpenOptions);
31 // You could say that the following parameters are of interest to policy:
33 // POLPARAMS_BEGIN(open_params)
34 // POLPARAM(DESIRED_ACCESS)
35 // POLPARAM(OBJECT_NAME)
36 // POLPARAM(SECURITY_DESCRIPTOR)
37 // POLPARAM(IO_STATUS)
38 // POLPARAM(OPEN_OPTIONS)
41 // and the actual code will use this for defining the parameters:
43 // CountedParameterSet<open_params> p;
44 // p[open_params::DESIRED_ACCESS] = ParamPickerMake(DesiredAccess);
45 // p[open_params::OBJECT_NAME] =
46 // ParamPickerMake(ObjectAttributes->ObjectName);
47 // p[open_params::SECURITY_DESCRIPTOR] =
48 // ParamPickerMake(ObjectAttributes->SecurityDescriptor);
49 // p[open_params::IO_STATUS] = ParamPickerMake(IoStatusBlock);
50 // p[open_params::OPEN_OPTIONS] = ParamPickerMake(OpenOptions);
52 // These will create an stack-allocated array of ParameterSet objects which
53 // have each 1) the address of the parameter 2) a numeric id that encodes the
54 // original C++ type. This allows the policy to treat any set of supported
55 // argument types uniformily and with some type safety.
57 // TODO(cpu): support not fully implemented yet for unicode string and will
58 // probably add other types as well.
61 ParameterSet() : real_type_(INVALID_TYPE
), address_(NULL
) {}
63 // Retrieve the stored parameter. If the type does not match ulong fail.
64 bool Get(uint32
* destination
) const {
65 if (real_type_
!= UINT32_TYPE
) {
68 *destination
= Void2TypePointerCopy
<uint32
>();
72 // Retrieve the stored parameter. If the type does not match void* fail.
73 bool Get(const void** destination
) const {
74 if (real_type_
!= VOIDPTR_TYPE
) {
77 *destination
= Void2TypePointerCopy
<void*>();
81 // Retrieve the stored parameter. If the type does not match wchar_t* fail.
82 bool Get(const wchar_t** destination
) const {
83 if (real_type_
!= WCHAR_TYPE
) {
86 *destination
= Void2TypePointerCopy
<const wchar_t*>();
90 // False if the parameter is not properly initialized.
91 bool IsValid() const {
92 return real_type_
!= INVALID_TYPE
;
96 // The constructor can only be called by derived types, which should
97 // safely provide the real_type and the address of the argument.
98 ParameterSet(ArgType real_type
, const void* address
)
99 : real_type_(real_type
), address_(address
) {
103 // This template provides the same functionality as bits_cast but
104 // it works with pointer while the former works only with references.
105 template <typename T
>
106 T
Void2TypePointerCopy() const {
107 return *(reinterpret_cast<const T
*>(address_
));
111 const void* address_
;
114 // To safely infer the type, we use a set of template specializations
115 // in ParameterSetEx with a template function ParamPickerMake to do the
116 // parameter type deduction.
118 // Base template class. Not implemented so using unsupported types should
120 template <typename T
>
121 class ParameterSetEx
: public ParameterSet
{
123 ParameterSetEx(const void* address
);
127 class ParameterSetEx
<void const*> : public ParameterSet
{
129 ParameterSetEx(const void* address
)
130 : ParameterSet(VOIDPTR_TYPE
, address
) {}
134 class ParameterSetEx
<void*> : public ParameterSet
{
136 ParameterSetEx(const void* address
)
137 : ParameterSet(VOIDPTR_TYPE
, address
) {}
142 class ParameterSetEx
<wchar_t*> : public ParameterSet
{
144 ParameterSetEx(const void* address
)
145 : ParameterSet(WCHAR_TYPE
, address
) {}
149 class ParameterSetEx
<wchar_t const*> : public ParameterSet
{
151 ParameterSetEx(const void* address
)
152 : ParameterSet(WCHAR_TYPE
, address
) {}
157 class ParameterSetEx
<uint32
> : public ParameterSet
{
159 ParameterSetEx(const void* address
)
160 : ParameterSet(UINT32_TYPE
, address
) {}
164 class ParameterSetEx
<UNICODE_STRING
> : public ParameterSet
{
166 ParameterSetEx(const void* address
)
167 : ParameterSet(UNISTR_TYPE
, address
) {}
170 template <typename T
>
171 ParameterSet
ParamPickerMake(T
& parameter
) {
172 return ParameterSetEx
<T
>(¶meter
);
175 struct CountedParameterSetBase
{
177 ParameterSet parameters
[1];
180 // This template defines the actual list of policy parameters for a given
182 // Warning: This template stores the address to the actual variables, in
183 // other words, the values are not copied.
184 template <typename T
>
185 struct CountedParameterSet
{
186 CountedParameterSet() : count(T::PolParamLast
) {}
188 ParameterSet
& operator[](typename
T::Args n
) {
189 return parameters
[n
];
192 CountedParameterSetBase
* GetBase() {
193 return reinterpret_cast<CountedParameterSetBase
*>(this);
197 ParameterSet parameters
[T::PolParamLast
];
200 } // namespace sandbox
202 #endif // SANDBOX_SRC_POLICY_ENGINE_PARAMS_H__