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.
|
|
|
|
*/
|
|
|
|
|
2019-07-16 16:03:39 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <AK/OwnPtr.h>
|
2020-02-24 15:24:30 +03:00
|
|
|
#include <AK/WeakPtr.h>
|
2020-09-06 00:52:14 +03:00
|
|
|
#include <Kernel/VM/AnonymousVMObject.h>
|
2019-08-07 19:06:17 +03:00
|
|
|
#include <Kernel/VM/MemoryManager.h>
|
2019-07-16 16:03:39 +03:00
|
|
|
|
2020-02-16 03:27:42 +03:00
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
class SharedBuffer {
|
2019-07-16 16:03:39 +03:00
|
|
|
private:
|
|
|
|
struct Reference {
|
2020-11-24 20:26:32 +03:00
|
|
|
Reference(ProcessID pid, unsigned count = 0)
|
2019-07-16 16:03:39 +03:00
|
|
|
: pid(pid)
|
2020-11-24 20:26:32 +03:00
|
|
|
, count(count)
|
2019-07-16 16:03:39 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-08-08 18:32:34 +03:00
|
|
|
ProcessID pid;
|
2019-07-19 18:46:21 +03:00
|
|
|
unsigned count { 0 };
|
2020-02-24 15:24:30 +03:00
|
|
|
WeakPtr<Region> region;
|
2019-07-16 16:03:39 +03:00
|
|
|
};
|
2019-08-07 19:06:17 +03:00
|
|
|
|
2019-07-16 16:03:39 +03:00
|
|
|
public:
|
2020-09-06 00:52:14 +03:00
|
|
|
SharedBuffer(int id, NonnullRefPtr<AnonymousVMObject>&& vmobject)
|
2020-02-28 13:45:19 +03:00
|
|
|
: m_shbuf_id(id)
|
2020-09-05 06:12:25 +03:00
|
|
|
, m_vmobject(move(vmobject))
|
2019-07-16 16:03:39 +03:00
|
|
|
{
|
|
|
|
#ifdef SHARED_BUFFER_DEBUG
|
2020-09-05 06:12:25 +03:00
|
|
|
dbg() << "Created shared buffer " << m_shbuf_id << " of size " << m_vmobject->size();
|
2019-07-16 16:03:39 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
~SharedBuffer()
|
|
|
|
{
|
|
|
|
#ifdef SHARED_BUFFER_DEBUG
|
2020-02-28 13:45:19 +03:00
|
|
|
dbg() << "Destroyed shared buffer " << m_shbuf_id << " of size " << size();
|
2019-07-16 16:03:39 +03:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2019-07-20 00:14:56 +03:00
|
|
|
void sanity_check(const char* what);
|
2020-08-08 18:32:34 +03:00
|
|
|
bool is_shared_with(ProcessID peer_pid) const;
|
2019-07-19 18:46:21 +03:00
|
|
|
void* ref_for_process_and_get_address(Process& process);
|
2020-08-08 18:32:34 +03:00
|
|
|
void share_with(ProcessID peer_pid);
|
2019-07-29 08:26:01 +03:00
|
|
|
void share_globally() { m_global = true; }
|
2019-07-19 18:46:21 +03:00
|
|
|
void deref_for_process(Process& process);
|
2020-11-24 20:26:32 +03:00
|
|
|
bool disown(ProcessID pid);
|
2020-11-23 01:25:48 +03:00
|
|
|
static void share_all_shared_buffers(Process& from_process, Process& with_process);
|
2019-09-04 12:27:14 +03:00
|
|
|
size_t size() const { return m_vmobject->size(); }
|
2019-07-16 16:03:39 +03:00
|
|
|
void destroy_if_unused();
|
|
|
|
void seal();
|
2020-09-03 07:57:09 +03:00
|
|
|
enum class SetVolatileError {
|
|
|
|
Success = 0,
|
|
|
|
NotPurgeable,
|
|
|
|
OutOfMemory,
|
|
|
|
NotMapped
|
|
|
|
};
|
|
|
|
SetVolatileError set_volatile_all(bool is_volatile, bool& was_purged);
|
2020-09-06 00:52:14 +03:00
|
|
|
AnonymousVMObject& vmobject() { return m_vmobject; }
|
|
|
|
const AnonymousVMObject& vmobject() const { return m_vmobject; }
|
2020-02-28 13:45:19 +03:00
|
|
|
int id() const { return m_shbuf_id; }
|
2019-07-16 16:03:39 +03:00
|
|
|
|
2020-05-16 04:01:34 +03:00
|
|
|
private:
|
2020-02-28 13:45:19 +03:00
|
|
|
int m_shbuf_id { -1 };
|
2019-07-16 16:03:39 +03:00
|
|
|
bool m_writable { true };
|
2019-07-29 08:26:01 +03:00
|
|
|
bool m_global { false };
|
2020-09-06 00:52:14 +03:00
|
|
|
NonnullRefPtr<AnonymousVMObject> m_vmobject;
|
2019-07-16 16:03:39 +03:00
|
|
|
Vector<Reference, 2> m_refs;
|
2019-07-19 18:46:21 +03:00
|
|
|
unsigned m_total_refs { 0 };
|
2019-07-16 16:03:39 +03:00
|
|
|
};
|
|
|
|
|
2019-07-24 09:42:55 +03:00
|
|
|
Lockable<HashMap<int, NonnullOwnPtr<SharedBuffer>>>& shared_buffers();
|
2020-02-16 03:27:42 +03:00
|
|
|
|
|
|
|
}
|