mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
Replaces `std::shared_pointer` with `stx::atomic_ptr` and `stx::shared_ptr`. Notes to programmers: * This pr kills the use of `dynamic_cast`, `std::dynamic_pointer_cast` and `std::weak_ptr` on IDM objects, possible replacement is to save the object ID on the base object, then use idm::check/get_unlocked to the destination type via the saved ID which may be null. Null pointer check is how you can tell type mismatch (as dynamic cast) or object destruction (as weak_ptr locking). * Double-inheritance on IDM objects should be used with care, `stx::shared_ptr` does not support constant-evaluated pointer offsetting to parent/child type. * `idm::check/get_unlocked` can now be used anywhere. Misc fixes: * Fixes some segfaults with RPCN with interaction with IDM. * Fix deadlocks in access violation handler due locking recursion. * Fixes race condition in process exit-spawn on memory containers read. * Fix bug that theoretically can prevent RPCS3 from booting - fix `id_manager::typeinfo` comparison to compare members instead of `memcmp` which can fail spuriously on padding bytes. * Ensure all IDM inherited types of base, either has `id_base` or `id_type` defined locally, this allows to make getters such as `idm::get_unlocked<lv2_socket, lv2_socket_raw>()` which were broken before. (requires save-states invalidation) * Removes broken operator[] overload of `stx::shared_ptr` and `stx::single_ptr` for non-array types.
367 lines
6.4 KiB
C++
367 lines
6.4 KiB
C++
#include "stdafx.h"
|
|
#include "sys_semaphore.h"
|
|
|
|
#include "Emu/IdManager.h"
|
|
#include "Emu/IPC.h"
|
|
|
|
#include "Emu/Cell/ErrorCodes.h"
|
|
#include "Emu/Cell/PPUThread.h"
|
|
|
|
#include "util/asm.hpp"
|
|
|
|
LOG_CHANNEL(sys_semaphore);
|
|
|
|
lv2_sema::lv2_sema(utils::serial& ar)
|
|
: protocol(ar)
|
|
, key(ar)
|
|
, name(ar)
|
|
, max(ar)
|
|
{
|
|
ar(val);
|
|
}
|
|
|
|
std::function<void(void*)> lv2_sema::load(utils::serial& ar)
|
|
{
|
|
return load_func(make_shared<lv2_sema>(stx::exact_t<utils::serial&>(ar)));
|
|
}
|
|
|
|
void lv2_sema::save(utils::serial& ar)
|
|
{
|
|
USING_SERIALIZATION_VERSION(lv2_sync);
|
|
ar(protocol, key, name, max, std::max<s32>(+val, 0));
|
|
}
|
|
|
|
error_code sys_semaphore_create(ppu_thread& ppu, vm::ptr<u32> sem_id, vm::ptr<sys_semaphore_attribute_t> attr, s32 initial_val, s32 max_val)
|
|
{
|
|
ppu.state += cpu_flag::wait;
|
|
|
|
sys_semaphore.trace("sys_semaphore_create(sem_id=*0x%x, attr=*0x%x, initial_val=%d, max_val=%d)", sem_id, attr, initial_val, max_val);
|
|
|
|
if (!sem_id || !attr)
|
|
{
|
|
return CELL_EFAULT;
|
|
}
|
|
|
|
if (max_val <= 0 || initial_val > max_val || initial_val < 0)
|
|
{
|
|
sys_semaphore.error("sys_semaphore_create(): invalid parameters (initial_val=%d, max_val=%d)", initial_val, max_val);
|
|
return CELL_EINVAL;
|
|
}
|
|
|
|
const auto _attr = *attr;
|
|
|
|
const u32 protocol = _attr.protocol;
|
|
|
|
if (protocol != SYS_SYNC_FIFO && protocol != SYS_SYNC_PRIORITY)
|
|
{
|
|
sys_semaphore.error("sys_semaphore_create(): unknown protocol (0x%x)", protocol);
|
|
return CELL_EINVAL;
|
|
}
|
|
|
|
const u64 ipc_key = lv2_obj::get_key(_attr);
|
|
|
|
if (ipc_key)
|
|
{
|
|
sys_semaphore.warning("sys_semaphore_create(sem_id=*0x%x, attr=*0x%x, initial_val=%d, max_val=%d): IPC=0x%016x", sem_id, attr, initial_val, max_val, ipc_key);
|
|
}
|
|
|
|
if (auto error = lv2_obj::create<lv2_sema>(_attr.pshared, ipc_key, _attr.flags, [&]
|
|
{
|
|
return make_shared<lv2_sema>(protocol, ipc_key, _attr.name_u64, max_val, initial_val);
|
|
}))
|
|
{
|
|
return error;
|
|
}
|
|
|
|
static_cast<void>(ppu.test_stopped());
|
|
|
|
*sem_id = idm::last_id();
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code sys_semaphore_destroy(ppu_thread& ppu, u32 sem_id)
|
|
{
|
|
ppu.state += cpu_flag::wait;
|
|
|
|
sys_semaphore.trace("sys_semaphore_destroy(sem_id=0x%x)", sem_id);
|
|
|
|
const auto sem = idm::withdraw<lv2_obj, lv2_sema>(sem_id, [](lv2_sema& sema) -> CellError
|
|
{
|
|
if (sema.val < 0)
|
|
{
|
|
return CELL_EBUSY;
|
|
}
|
|
|
|
lv2_obj::on_id_destroy(sema, sema.key);
|
|
return {};
|
|
});
|
|
|
|
if (!sem)
|
|
{
|
|
return CELL_ESRCH;
|
|
}
|
|
|
|
if (sem->key)
|
|
{
|
|
sys_semaphore.warning("sys_semaphore_destroy(sem_id=0x%x): IPC=0x%016x", sem_id, sem->key);
|
|
}
|
|
|
|
if (sem.ret)
|
|
{
|
|
return sem.ret;
|
|
}
|
|
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code sys_semaphore_wait(ppu_thread& ppu, u32 sem_id, u64 timeout)
|
|
{
|
|
ppu.state += cpu_flag::wait;
|
|
|
|
sys_semaphore.trace("sys_semaphore_wait(sem_id=0x%x, timeout=0x%llx)", sem_id, timeout);
|
|
|
|
const auto sem = idm::get<lv2_obj, lv2_sema>(sem_id, [&, notify = lv2_obj::notify_all_t()](lv2_sema& sema)
|
|
{
|
|
const s32 val = sema.val;
|
|
|
|
if (val > 0)
|
|
{
|
|
if (sema.val.compare_and_swap_test(val, val - 1))
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
lv2_obj::prepare_for_sleep(ppu);
|
|
|
|
std::lock_guard lock(sema.mutex);
|
|
|
|
if (sema.val-- <= 0)
|
|
{
|
|
sema.sleep(ppu, timeout);
|
|
lv2_obj::emplace(sema.sq, &ppu);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
});
|
|
|
|
if (!sem)
|
|
{
|
|
return CELL_ESRCH;
|
|
}
|
|
|
|
if (sem.ret)
|
|
{
|
|
return CELL_OK;
|
|
}
|
|
|
|
ppu.gpr[3] = CELL_OK;
|
|
|
|
while (auto state = +ppu.state)
|
|
{
|
|
if (state & cpu_flag::signal && ppu.state.test_and_reset(cpu_flag::signal))
|
|
{
|
|
break;
|
|
}
|
|
|
|
if (is_stopped(state))
|
|
{
|
|
std::lock_guard lock(sem->mutex);
|
|
|
|
for (auto cpu = +sem->sq; cpu; cpu = cpu->next_cpu)
|
|
{
|
|
if (cpu == &ppu)
|
|
{
|
|
ppu.state += cpu_flag::again;
|
|
return {};
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
for (usz i = 0; cpu_flag::signal - ppu.state && i < 50; i++)
|
|
{
|
|
busy_wait(500);
|
|
}
|
|
|
|
if (ppu.state & cpu_flag::signal)
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (timeout)
|
|
{
|
|
if (lv2_obj::wait_timeout(timeout, &ppu))
|
|
{
|
|
// Wait for rescheduling
|
|
if (ppu.check_state())
|
|
{
|
|
continue;
|
|
}
|
|
|
|
ppu.state += cpu_flag::wait;
|
|
|
|
std::lock_guard lock(sem->mutex);
|
|
|
|
if (!sem->unqueue(sem->sq, &ppu))
|
|
{
|
|
break;
|
|
}
|
|
|
|
ensure(0 > sem->val.fetch_op([](s32& val)
|
|
{
|
|
if (val < 0)
|
|
{
|
|
val++;
|
|
}
|
|
}));
|
|
|
|
ppu.gpr[3] = CELL_ETIMEDOUT;
|
|
break;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
ppu.state.wait(state);
|
|
}
|
|
}
|
|
|
|
return not_an_error(ppu.gpr[3]);
|
|
}
|
|
|
|
error_code sys_semaphore_trywait(ppu_thread& ppu, u32 sem_id)
|
|
{
|
|
ppu.state += cpu_flag::wait;
|
|
|
|
sys_semaphore.trace("sys_semaphore_trywait(sem_id=0x%x)", sem_id);
|
|
|
|
const auto sem = idm::check<lv2_obj, lv2_sema>(sem_id, [&](lv2_sema& sema)
|
|
{
|
|
return sema.val.try_dec(0);
|
|
});
|
|
|
|
if (!sem)
|
|
{
|
|
return CELL_ESRCH;
|
|
}
|
|
|
|
if (!sem.ret)
|
|
{
|
|
return not_an_error(CELL_EBUSY);
|
|
}
|
|
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code sys_semaphore_post(ppu_thread& ppu, u32 sem_id, s32 count)
|
|
{
|
|
ppu.state += cpu_flag::wait;
|
|
|
|
sys_semaphore.trace("sys_semaphore_post(sem_id=0x%x, count=%d)", sem_id, count);
|
|
|
|
const auto sem = idm::get<lv2_obj, lv2_sema>(sem_id, [&](lv2_sema& sema)
|
|
{
|
|
const s32 val = sema.val;
|
|
|
|
if (val >= 0 && count > 0 && count <= sema.max - val)
|
|
{
|
|
if (sema.val.compare_and_swap_test(val, val + count))
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
});
|
|
|
|
if (!sem)
|
|
{
|
|
return CELL_ESRCH;
|
|
}
|
|
|
|
if (count <= 0)
|
|
{
|
|
return CELL_EINVAL;
|
|
}
|
|
|
|
lv2_obj::notify_all_t notify;
|
|
|
|
if (sem.ret)
|
|
{
|
|
return CELL_OK;
|
|
}
|
|
else
|
|
{
|
|
std::lock_guard lock(sem->mutex);
|
|
|
|
for (auto cpu = +sem->sq; cpu; cpu = cpu->next_cpu)
|
|
{
|
|
if (static_cast<ppu_thread*>(cpu)->state & cpu_flag::again)
|
|
{
|
|
ppu.state += cpu_flag::again;
|
|
return {};
|
|
}
|
|
}
|
|
|
|
const auto [val, ok] = sem->val.fetch_op([&](s32& val)
|
|
{
|
|
if (count + 0u <= sem->max + 0u - val)
|
|
{
|
|
val += count;
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
});
|
|
|
|
if (!ok)
|
|
{
|
|
return not_an_error(CELL_EBUSY);
|
|
}
|
|
|
|
// Wake threads
|
|
const s32 to_awake = std::min<s32>(-std::min<s32>(val, 0), count);
|
|
|
|
for (s32 i = 0; i < to_awake; i++)
|
|
{
|
|
sem->append((ensure(sem->schedule<ppu_thread>(sem->sq, sem->protocol))));
|
|
}
|
|
|
|
if (to_awake > 0)
|
|
{
|
|
lv2_obj::awake_all();
|
|
}
|
|
}
|
|
|
|
return CELL_OK;
|
|
}
|
|
|
|
error_code sys_semaphore_get_value(ppu_thread& ppu, u32 sem_id, vm::ptr<s32> count)
|
|
{
|
|
ppu.state += cpu_flag::wait;
|
|
|
|
sys_semaphore.trace("sys_semaphore_get_value(sem_id=0x%x, count=*0x%x)", sem_id, count);
|
|
|
|
const auto sema = idm::check<lv2_obj, lv2_sema>(sem_id, [](lv2_sema& sema)
|
|
{
|
|
return std::max<s32>(0, sema.val);
|
|
});
|
|
|
|
if (!sema)
|
|
{
|
|
return CELL_ESRCH;
|
|
}
|
|
|
|
if (!count)
|
|
{
|
|
return CELL_EFAULT;
|
|
}
|
|
|
|
static_cast<void>(ppu.test_stopped());
|
|
|
|
*count = sema.ret;
|
|
return CELL_OK;
|
|
}
|