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>
|
2019-08-07 19:06:17 +03:00
|
|
|
#include <Kernel/VM/MemoryManager.h>
|
2019-12-09 22:06:47 +03:00
|
|
|
#include <Kernel/VM/PurgeableVMObject.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 {
|
|
|
|
Reference(pid_t pid)
|
|
|
|
: pid(pid)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
pid_t 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:
|
|
|
|
SharedBuffer(int id, int size)
|
2020-02-28 13:45:19 +03:00
|
|
|
: m_shbuf_id(id)
|
2019-12-09 22:06:47 +03:00
|
|
|
, m_vmobject(PurgeableVMObject::create_with_size(size))
|
2019-07-16 16:03:39 +03:00
|
|
|
{
|
|
|
|
#ifdef SHARED_BUFFER_DEBUG
|
2020-02-28 13:45:19 +03:00
|
|
|
dbg() << "Created shared buffer " << m_shbuf_id << " of size " << 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);
|
2019-07-16 16:03:39 +03:00
|
|
|
bool is_shared_with(pid_t peer_pid);
|
2019-07-19 18:46:21 +03:00
|
|
|
void* ref_for_process_and_get_address(Process& process);
|
2019-07-16 16:03:39 +03:00
|
|
|
void share_with(pid_t 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);
|
2019-07-16 16:03:39 +03:00
|
|
|
void disown(pid_t pid);
|
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();
|
2019-12-09 22:06:47 +03:00
|
|
|
PurgeableVMObject& vmobject() { return m_vmobject; }
|
|
|
|
const PurgeableVMObject& 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-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 };
|
2019-12-09 22:06:47 +03:00
|
|
|
NonnullRefPtr<PurgeableVMObject> 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
|
|
|
|
|
|
|
}
|