2020-01-18 11:38:21 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright notice, this
|
|
|
|
* list of conditions and the following disclaimer.
|
|
|
|
*
|
|
|
|
* 2. 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.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2018-10-24 00:32:53 +03:00
|
|
|
#pragma once
|
|
|
|
|
2019-03-16 15:18:22 +03:00
|
|
|
#include <AK/Assertions.h>
|
2019-10-12 20:17:34 +03:00
|
|
|
#include <AK/Atomic.h>
|
2019-12-01 13:57:20 +03:00
|
|
|
#include <AK/Types.h>
|
2019-06-07 21:02:01 +03:00
|
|
|
#include <Kernel/Arch/i386/CPU.h>
|
2020-02-16 03:50:16 +03:00
|
|
|
#include <Kernel/Forward.h>
|
2019-12-01 13:57:20 +03:00
|
|
|
#include <Kernel/WaitQueue.h>
|
2019-01-16 18:03:50 +03:00
|
|
|
|
2020-02-16 03:27:42 +03:00
|
|
|
namespace Kernel {
|
|
|
|
|
2019-01-17 18:25:02 +03:00
|
|
|
class Lock {
|
2018-10-24 00:32:53 +03:00
|
|
|
public:
|
2019-05-28 12:53:16 +03:00
|
|
|
Lock(const char* name = nullptr)
|
|
|
|
: m_name(name)
|
|
|
|
{
|
|
|
|
}
|
2020-04-18 12:21:00 +03:00
|
|
|
~Lock() { }
|
2018-10-24 00:32:53 +03:00
|
|
|
|
2020-04-18 12:21:00 +03:00
|
|
|
enum class Mode {
|
|
|
|
Unlocked,
|
|
|
|
Shared,
|
|
|
|
Exclusive
|
|
|
|
};
|
|
|
|
|
|
|
|
void lock(Mode = Mode::Exclusive);
|
2019-01-16 18:03:50 +03:00
|
|
|
void unlock();
|
2020-01-13 00:53:20 +03:00
|
|
|
bool force_unlock_if_locked();
|
2019-12-26 13:43:23 +03:00
|
|
|
bool is_locked() const { return m_holder; }
|
Kernel: Allow process with multiple threads to call exec and exit
This allows a process wich has more than 1 thread to call exec, even
from a thread. This kills all the other threads, but it won't wait for
them to finish, just makes sure that they are not in a running/runable
state.
In the case where a thread does exec, the new program PID will be the
thread TID, to keep the PID == TID in the new process.
This introduces a new function inside the Process class,
kill_threads_except_self which is called on exit() too (exit with
multiple threads wasn't properly working either).
Inside the Lock class, there is the need for a new function,
clear_waiters, which removes all the waiters from the
Process::big_lock. This is needed since after a exit/exec, there should
be no other threads waiting for this lock, the threads should be simply
killed. Only queued threads should wait for this lock at this point,
since blocked threads are handled in set_should_die.
2020-02-18 15:28:28 +03:00
|
|
|
void clear_waiters();
|
2018-10-24 00:32:53 +03:00
|
|
|
|
2019-02-07 13:12:23 +03:00
|
|
|
const char* name() const { return m_name; }
|
|
|
|
|
2018-10-24 00:32:53 +03:00
|
|
|
private:
|
2019-10-12 20:17:34 +03:00
|
|
|
Atomic<bool> m_lock { false };
|
2019-02-07 13:12:23 +03:00
|
|
|
const char* m_name { nullptr };
|
2019-12-01 13:57:20 +03:00
|
|
|
WaitQueue m_queue;
|
2020-04-18 12:21:00 +03:00
|
|
|
Mode m_mode { Mode::Unlocked };
|
|
|
|
|
|
|
|
// When locked exclusively, only the thread already holding the lock can
|
|
|
|
// lock it again. When locked in shared mode, any thread can do that.
|
|
|
|
u32 m_times_locked { 0 };
|
|
|
|
|
|
|
|
// One of the threads that hold this lock, or nullptr. When locked in shared
|
|
|
|
// mode, this is stored on best effort basis: nullptr value does *not* mean
|
|
|
|
// the lock is unlocked, it just means we don't know which threads hold it.
|
|
|
|
// When locked exclusively, this is always the one thread that holds the
|
|
|
|
// lock.
|
|
|
|
Thread* m_holder { nullptr };
|
2018-10-24 00:32:53 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
class Locker {
|
|
|
|
public:
|
2020-04-30 12:43:25 +03:00
|
|
|
ALWAYS_INLINE explicit Locker(Lock& l, Lock::Mode mode = Lock::Mode::Exclusive)
|
2019-05-28 12:53:16 +03:00
|
|
|
: m_lock(l)
|
|
|
|
{
|
2020-04-18 12:21:00 +03:00
|
|
|
m_lock.lock(mode);
|
2019-05-28 12:53:16 +03:00
|
|
|
}
|
2020-04-30 12:43:25 +03:00
|
|
|
ALWAYS_INLINE ~Locker() { unlock(); }
|
|
|
|
ALWAYS_INLINE void unlock() { m_lock.unlock(); }
|
|
|
|
ALWAYS_INLINE void lock(Lock::Mode mode = Lock::Mode::Exclusive) { m_lock.lock(mode); }
|
2018-10-24 00:32:53 +03:00
|
|
|
|
|
|
|
private:
|
2019-01-17 18:25:02 +03:00
|
|
|
Lock& m_lock;
|
2018-10-24 00:32:53 +03:00
|
|
|
};
|
|
|
|
|
2020-04-18 12:21:00 +03:00
|
|
|
#define LOCKER(...) Locker locker(__VA_ARGS__)
|
2018-10-29 23:54:11 +03:00
|
|
|
|
2019-02-08 11:46:13 +03:00
|
|
|
template<typename T>
|
|
|
|
class Lockable {
|
|
|
|
public:
|
2020-04-18 12:21:00 +03:00
|
|
|
Lockable() { }
|
2019-05-28 12:53:16 +03:00
|
|
|
Lockable(T&& resource)
|
|
|
|
: m_resource(move(resource))
|
|
|
|
{
|
|
|
|
}
|
2019-02-08 11:46:13 +03:00
|
|
|
Lock& lock() { return m_lock; }
|
|
|
|
T& resource() { return m_resource; }
|
|
|
|
|
2019-02-08 18:18:24 +03:00
|
|
|
T lock_and_copy()
|
|
|
|
{
|
|
|
|
LOCKER(m_lock);
|
|
|
|
return m_resource;
|
|
|
|
}
|
|
|
|
|
2019-02-08 11:46:13 +03:00
|
|
|
private:
|
|
|
|
T m_resource;
|
|
|
|
Lock m_lock;
|
|
|
|
};
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
}
|