gem5  v21.0.0.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
fiber.cc
Go to the documentation of this file.
1 /*
2  * Copyright 2018 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 #include "base/fiber.hh"
29 
30 #if HAVE_VALGRIND
31 #include <valgrind/valgrind.h>
32 #endif
33 
34 // Mac OS requires _DARWIN_C_SOURCE if _POSIX_C_SOURCE is defined,
35 // otherwise it will mask the definition of MAP_ANONYMOUS.
36 // _POSIX_C_SOURCE is already defined by including <ucontext.h> in
37 // base/fiber.hh
38 #if defined(__APPLE__) && defined(__MACH__)
39 #define _DARWIN_C_SOURCE
40 #endif
41 
42 #include <sys/mman.h>
43 #include <unistd.h>
44 
45 #include <cerrno>
46 #include <cstdio>
47 #include <cstring>
48 
49 #include "base/logging.hh"
50 
51 namespace
52 {
53 
54 /*
55  * The PrimaryFiber class is a special case that attaches to the currently
56  * executing context. That makes handling the "primary" fiber, aka the one
57  * which most of gem5 is running under, no different than other Fibers.
58  */
59 class PrimaryFiber : public Fiber
60 {
61  public:
62  PrimaryFiber() : Fiber(nullptr, 0) { setStarted(); }
63  void main() { panic("PrimaryFiber main executed.\n"); }
64 };
65 
66 PrimaryFiber _primaryFiber;
67 
68 // A pointer to whatever the currently executing Fiber is.
69 Fiber *_currentFiber = &_primaryFiber;
70 
71 // A pointer to the Fiber which is currently being started/initialized.
72 Fiber *startingFiber = nullptr;
73 
74 } // anonymous namespace
75 
76 void
78 {
79  startingFiber->start();
80 }
81 
82 Fiber::Fiber(size_t stack_size) : Fiber(primaryFiber(), stack_size)
83 {}
84 
85 Fiber::Fiber(Fiber *link, size_t stack_size) :
86  link(link), stack(nullptr), stackSize(stack_size), guardPage(nullptr),
87  guardPageSize(sysconf(_SC_PAGE_SIZE)), _started(false), _finished(false)
88 {
89  if (stack_size) {
90  guardPage = mmap(nullptr, guardPageSize + stack_size,
91  PROT_READ | PROT_WRITE,
92  MAP_ANONYMOUS | MAP_PRIVATE, -1, 0);
93  if (guardPage == (void *)MAP_FAILED) {
94  perror("mmap");
95  fatal("Could not mmap %d byte fiber stack.\n", stack_size);
96  }
97  stack = (void *)((uint8_t *)guardPage + guardPageSize);
98  if (mprotect(guardPage, guardPageSize, PROT_NONE)) {
99  perror("mprotect");
100  fatal("Could not forbid access to fiber stack guard page.");
101  }
102  }
103 #if HAVE_VALGRIND
104  valgrindStackId = VALGRIND_STACK_REGISTER(
105  stack, (uint8_t *)stack + stack_size);
106 #endif
107 }
108 
110 {
111  panic_if(stack && _currentFiber == this, "Fiber stack is in use.");
112 #if HAVE_VALGRIND
113  VALGRIND_STACK_DEREGISTER(valgrindStackId);
114 #endif
115  if (guardPage)
116  munmap(guardPage, guardPageSize + stackSize);
117 }
118 
119 void
121 {
122  // Set up a context for the new fiber, starting it in the trampoline.
123  getcontext(&ctx);
124  ctx.uc_stack.ss_sp = stack;
125  ctx.uc_stack.ss_size = stackSize;
126  ctx.uc_link = nullptr;
127  makecontext(&ctx, &entryTrampoline, 0);
128 
129  // Swap to the new context so it can enter its start() function. It
130  // will then swap itself back out and return here.
131  startingFiber = this;
132  panic_if(!_currentFiber, "No active Fiber object.");
133  swapcontext(&_currentFiber->ctx, &ctx);
134 
135  // The new context is now ready and about to call main().
136 }
137 
138 void
140 {
141  // Avoid a dangling pointer.
142  startingFiber = nullptr;
143 
144  setStarted();
145 
146  if (_setjmp(jmp) == 0) {
147  // Swap back to the parent context which is still considered "current",
148  // now that we're ready to go.
149  int ret = swapcontext(&ctx, &_currentFiber->ctx);
150  panic_if(ret == -1, strerror(errno));
151  }
152 
153  // Call main() when we're been reactivated for the first time.
154  main();
155 
156  // main has returned, so this Fiber has finished. Switch to the "link"
157  // Fiber.
158  _finished = true;
159  link->run();
160 }
161 
162 void
164 {
165  panic_if(_finished, "Fiber has already run to completion.");
166 
167  // If we're already running this fiber, we're done.
168  if (_currentFiber == this)
169  return;
170 
171  if (!_started)
172  createContext();
173 
174  // Switch out of the current Fiber's context and this one's in.
175  Fiber *prev = _currentFiber;
176  Fiber *next = this;
177  _currentFiber = next;
178  if (_setjmp(prev->jmp) == 0)
179  _longjmp(next->jmp, 1);
180 }
181 
182 Fiber *Fiber::currentFiber() { return _currentFiber; }
183 Fiber *Fiber::primaryFiber() { return &_primaryFiber; }
fatal
#define fatal(...)
This implements a cprintf based fatal() function.
Definition: logging.hh:183
Fiber::Fiber
Fiber(size_t stack_size=DefaultStackSize)
Definition: fiber.cc:82
Fiber::start
void start()
Definition: fiber.cc:139
Fiber::stack
void * stack
Definition: fiber.hh:153
Fiber::ctx
ucontext_t ctx
Definition: fiber.hh:145
Fiber::createContext
void createContext()
Definition: fiber.cc:120
X86ISA::stack
Bitfield< 17, 16 > stack
Definition: misc.hh:587
Fiber::primaryFiber
static Fiber * primaryFiber()
Get a pointer to the primary Fiber.
Definition: fiber.cc:183
Fiber::entryTrampoline
static void entryTrampoline()
Definition: fiber.cc:77
Fiber
This class represents a fiber, which is a light weight sort of thread which is cooperatively schedule...
Definition: fiber.hh:68
Fiber::currentFiber
static Fiber * currentFiber()
Get a pointer to the current running Fiber.
Definition: fiber.cc:182
Fiber::_started
bool _started
Definition: fiber.hh:161
Fiber::run
void run()
Start executing the fiber represented by this object.
Definition: fiber.cc:163
Fiber::guardPageSize
size_t guardPageSize
Definition: fiber.hh:156
Fiber::~Fiber
virtual ~Fiber()
Definition: fiber.cc:109
panic_if
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Definition: logging.hh:197
Fiber::stackSize
size_t stackSize
Definition: fiber.hh:154
logging.hh
Fiber::jmp
jmp_buf jmp
Definition: fiber.hh:148
Fiber::main
virtual void main()=0
This method is called when this fiber is first run.
Fiber::_finished
bool _finished
Definition: fiber.hh:162
Fiber::guardPage
void * guardPage
Definition: fiber.hh:155
Fiber::link
Fiber * link
Definition: fiber.hh:150
Fiber::setStarted
void setStarted()
Definition: fiber.hh:139
fiber.hh
panic
#define panic(...)
This implements a cprintf based panic() function.
Definition: logging.hh:171

Generated on Tue Mar 23 2021 19:41:23 for gem5 by doxygen 1.8.17