gem5  v20.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
backdoor.hh
Go to the documentation of this file.
1 /*
2  * Copyright 2019 Google, Inc.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met: redistributions of source code must retain the above copyright
7  * notice, this list of conditions and the following disclaimer;
8  * redistributions in binary form must reproduce the above copyright
9  * notice, this list of conditions and the following disclaimer in the
10  * documentation and/or other materials provided with the distribution;
11  * neither the name of the copyright holders nor the names of its
12  * contributors may be used to endorse or promote products derived from
13  * this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27 
28 #ifndef __MEM_BACKDOOR_HH__
29 #define __MEM_BACKDOOR_HH__
30 
31 #include <cstdint>
32 #include <functional>
33 #include <memory>
34 
35 #include "base/addr_range.hh"
36 #include "base/callback.hh"
37 
39 {
40  public:
41  // Callbacks from this back door are set up using a callable which accepts
42  // a const reference to this back door as their only parameter.
43  typedef std::function<void(const MemBackdoor &backdoor)> CbFunction;
44 
45  private:
46  // This wrapper class holds the callables described above so that they
47  // can be stored in a generic CallbackQueue.
48  class Callback : public ::Callback
49  {
50  public:
51  Callback(MemBackdoor &bd, CbFunction cb) :
52  _backdoor(bd), cbFunction(cb)
53  {}
54 
55  void process() override { cbFunction(_backdoor); }
56  // It looks like this is only called when the CallbackQueue is
57  // destroyed and this Callback is currently in the queue.
58  void autoDestruct() override { delete this; }
59 
61 
62  private:
64  CbFunction cbFunction;
65  };
66 
67  public:
68  enum Flags{
69  // How data is allowed to be accessed through this backdoor.
70  NoAccess = 0x0,
71  Readable = 0x1,
72  Writeable = 0x2
73  };
74 
75  // The range in the guest address space covered by this back door.
76  const AddrRange &range() const { return _range; }
77  void range(const AddrRange &r) { _range = r; }
78 
79  // A pointer to the data accessible through this back door.
80  uint8_t *ptr() const { return _ptr; }
81  void ptr(uint8_t *p) { _ptr = p; }
82 
83  /*
84  * Helper functions to make it easier to set/check particular flags.
85  */
86 
87  bool readable() const { return _flags & Readable; }
88  void
89  readable(bool r)
90  {
91  if (r)
92  _flags = (Flags)(_flags | Readable);
93  else
94  _flags = (Flags)(_flags & ~Readable);
95  }
96 
97  bool writeable() const { return _flags & Writeable; }
98  void
99  writeable(bool w)
100  {
101  if (w)
102  _flags = (Flags)(_flags | Writeable);
103  else
104  _flags = (Flags)(_flags & ~Writeable);
105  }
106 
107  Flags flags() const { return _flags; }
108  void flags(Flags f) { _flags = f; }
109 
112  _range(r), _ptr(p), _flags(flags)
113  {}
114 
116  {}
117 
118  // Set up a callable to be called when this back door is invalidated. This
119  // lets holders update their bookkeeping to remove any references to it,
120  // and/or to propogate that invalidation to other interested parties.
121  void
122  addInvalidationCallback(CbFunction func)
123  {
124  auto *cb = new MemBackdoor::Callback(*this, func);
125  assert(cb);
126  invalidationCallbacks->add(cb);
127  }
128 
129  // Notify and clear invalidation callbacks when the data in the backdoor
130  // structure is no longer valid/current. The backdoor might then be
131  // updated or even deleted without having to worry about stale data being
132  // used.
133  void
135  {
136  invalidationCallbacks->process();
137  // Delete and recreate the callback queue to ensure the callback
138  // objects are deleted.
140  }
141 
142  private:
143  std::unique_ptr<CallbackQueue> invalidationCallbacks;
144 
146  uint8_t *_ptr;
148 };
149 
151 
152 #endif //__MEM_BACKDOOR_HH__
Flags _flags
Definition: backdoor.hh:147
CbFunction cbFunction
Definition: backdoor.hh:64
bool writeable() const
Definition: backdoor.hh:97
Flags flags() const
Definition: backdoor.hh:107
Callback(MemBackdoor &bd, CbFunction cb)
Definition: backdoor.hh:51
void process() override
virtual process function that is invoked when the callback queue is executed.
Definition: backdoor.hh:55
void addInvalidationCallback(CbFunction func)
Definition: backdoor.hh:122
void readable(bool r)
Definition: backdoor.hh:89
Bitfield< 6 > f
The AddrRange class encapsulates an address range, and supports a number of tests to check if two ran...
Definition: addr_range.hh:68
MemBackdoor & backdoor()
Definition: backdoor.hh:60
void autoDestruct() override
Definition: backdoor.hh:58
AddrRange _range
Definition: backdoor.hh:145
MemBackdoor * MemBackdoorPtr
Definition: backdoor.hh:150
Definition: flags.hh:33
std::unique_ptr< CallbackQueue > invalidationCallbacks
Definition: backdoor.hh:143
const AddrRange & range() const
Definition: backdoor.hh:76
void range(const AddrRange &r)
Definition: backdoor.hh:77
void ptr(uint8_t *p)
Definition: backdoor.hh:81
Bitfield< 0 > w
friend class CallbackQueue
Definition: callback.hh:42
Bitfield< 15, 2 > bd
Definition: types.hh:61
bool readable() const
Definition: backdoor.hh:87
uint8_t * ptr() const
Definition: backdoor.hh:80
void invalidate()
Definition: backdoor.hh:134
std::function< void(const MemBackdoor &backdoor)> CbFunction
Definition: backdoor.hh:43
MemBackdoor(AddrRange r, uint8_t *p, Flags flags)
Definition: backdoor.hh:110
uint8_t * _ptr
Definition: backdoor.hh:146
Bitfield< 0 > p
MemBackdoor & _backdoor
Definition: backdoor.hh:63
void writeable(bool w)
Definition: backdoor.hh:99
void flags(Flags f)
Definition: backdoor.hh:108

Generated on Thu May 28 2020 16:21:33 for gem5 by doxygen 1.8.13