2021-02-25 10:42:49 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
|
2021-02-26 10:16:03 +00:00
|
|
|
* Copyright (c) 2021, Leon Albrecht <leon2002.la@gmail.com>
|
2021-02-25 10:42:49 +00:00
|
|
|
*
|
2021-04-22 08:24:48 +00:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2021-02-25 10:42:49 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <AK/Vector.h>
|
2021-05-28 09:03:21 +00:00
|
|
|
#include <Kernel/VM/MemoryManager.h>
|
2021-02-25 10:42:49 +00:00
|
|
|
#include <Kernel/VM/Range.h>
|
2021-06-22 15:40:16 +00:00
|
|
|
#include <LibC/limits.h>
|
2021-02-25 10:42:49 +00:00
|
|
|
|
|
|
|
namespace Kernel {
|
|
|
|
|
|
|
|
Vector<Range, 2> Range::carve(const Range& taken) const
|
|
|
|
{
|
|
|
|
VERIFY((taken.size() % PAGE_SIZE) == 0);
|
|
|
|
|
|
|
|
Vector<Range, 2> parts;
|
|
|
|
if (taken == *this)
|
|
|
|
return {};
|
|
|
|
if (taken.base() > base())
|
|
|
|
parts.append({ base(), taken.base().get() - base().get() });
|
|
|
|
if (taken.end() < end())
|
|
|
|
parts.append({ taken.end(), end().get() - taken.end().get() });
|
|
|
|
return parts;
|
|
|
|
}
|
2021-02-26 10:16:03 +00:00
|
|
|
Range Range::intersect(const Range& other) const
|
|
|
|
{
|
|
|
|
if (*this == other) {
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
auto new_base = max(base(), other.base());
|
|
|
|
auto new_end = min(end(), other.end());
|
|
|
|
VERIFY(new_base < new_end);
|
|
|
|
return Range(new_base, (new_end - new_base).get());
|
|
|
|
}
|
2021-02-25 10:42:49 +00:00
|
|
|
|
2021-05-28 09:03:21 +00:00
|
|
|
KResultOr<Range> Range::expand_to_page_boundaries(FlatPtr address, size_t size)
|
|
|
|
{
|
|
|
|
if (page_round_up_would_wrap(size))
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if ((address + size) < address)
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
if (page_round_up_would_wrap(address + size))
|
|
|
|
return EINVAL;
|
|
|
|
|
|
|
|
auto base = VirtualAddress { address }.page_base();
|
|
|
|
auto end = page_round_up(address + size);
|
|
|
|
|
|
|
|
return Range { base, end - base.get() };
|
|
|
|
}
|
|
|
|
|
2021-02-25 10:42:49 +00:00
|
|
|
}
|