2013-06-30 10:46:29 +02:00
|
|
|
#include "stdafx.h"
|
2014-06-02 19:27:24 +02:00
|
|
|
#include "Emu/Memory/Memory.h"
|
|
|
|
|
#include "Emu/System.h"
|
2013-06-30 10:46:29 +02:00
|
|
|
#include "Emu/SysCalls/SysCalls.h"
|
2014-12-22 01:56:04 +01:00
|
|
|
#include "Emu/Memory/atomic_type.h"
|
2014-08-23 16:51:51 +02:00
|
|
|
|
2014-08-26 01:55:37 +02:00
|
|
|
#include "Emu/CPU/CPUThreadManager.h"
|
2014-07-11 13:59:13 +02:00
|
|
|
#include "Emu/Cell/PPUThread.h"
|
2014-12-22 01:56:04 +01:00
|
|
|
#include "sys_lwmutex.h"
|
2014-07-06 01:30:28 +02:00
|
|
|
#include "sys_time.h"
|
2014-09-19 02:19:22 +02:00
|
|
|
#include "sys_semaphore.h"
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-08-23 16:51:51 +02:00
|
|
|
SysCallBase sys_semaphore("sys_semaphore");
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-09-19 02:19:22 +02:00
|
|
|
u32 semaphore_create(s32 initial_count, s32 max_count, u32 protocol, u64 name_u64)
|
|
|
|
|
{
|
|
|
|
|
LV2_LOCK(0);
|
|
|
|
|
|
|
|
|
|
const std::string name((const char*)&name_u64, 8);
|
|
|
|
|
const u32 id = sys_semaphore.GetNewId(new Semaphore(initial_count, max_count, protocol, name_u64), TYPE_SEMAPHORE);
|
|
|
|
|
sys_semaphore.Notice("*** semaphore created [%s] (protocol=0x%x): id = %d", name.c_str(), protocol, id);
|
|
|
|
|
Emu.GetSyncPrimManager().AddSemaphoreData(id, name, initial_count, max_count);
|
|
|
|
|
return id;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-11 19:20:01 +02:00
|
|
|
s32 sys_semaphore_create(vm::ptr<u32> sem, vm::ptr<sys_semaphore_attribute> attr, s32 initial_count, s32 max_count)
|
2013-06-30 10:46:29 +02:00
|
|
|
{
|
2014-08-23 16:51:51 +02:00
|
|
|
sys_semaphore.Warning("sys_semaphore_create(sem_addr=0x%x, attr_addr=0x%x, initial_count=%d, max_count=%d)",
|
2014-09-02 03:05:13 +02:00
|
|
|
sem.addr(), attr.addr(), initial_count, max_count);
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-11-12 23:25:27 +01:00
|
|
|
if (sem.addr() == NULL) {
|
|
|
|
|
sys_semaphore.Error("sys_semaphore_create(): invalid memory access (sem_addr=0x%x)", sem.addr());
|
|
|
|
|
return CELL_EFAULT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (attr.addr() == NULL) {
|
|
|
|
|
sys_semaphore.Error("sys_semaphore_create(): An invalid argument value is specified (attr_addr=0x%x)", attr.addr());
|
2014-11-16 14:43:58 +01:00
|
|
|
return CELL_EFAULT;
|
2014-11-12 23:25:27 +01:00
|
|
|
}
|
|
|
|
|
|
2014-06-22 12:59:28 +02:00
|
|
|
if (max_count <= 0 || initial_count > max_count || initial_count < 0)
|
2014-06-21 16:24:27 +02:00
|
|
|
{
|
2014-08-23 16:51:51 +02:00
|
|
|
sys_semaphore.Error("sys_semaphore_create(): invalid parameters (initial_count=%d, max_count=%d)", initial_count, max_count);
|
2014-06-21 16:24:27 +02:00
|
|
|
return CELL_EINVAL;
|
|
|
|
|
}
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
if (attr->pshared.ToBE() != se32(0x200))
|
|
|
|
|
{
|
2014-08-23 16:51:51 +02:00
|
|
|
sys_semaphore.Error("sys_semaphore_create(): invalid pshared value(0x%x)", (u32)attr->pshared);
|
2014-06-21 16:24:27 +02:00
|
|
|
return CELL_EINVAL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (attr->protocol.ToBE())
|
|
|
|
|
{
|
|
|
|
|
case se32(SYS_SYNC_FIFO): break;
|
|
|
|
|
case se32(SYS_SYNC_PRIORITY): break;
|
2014-08-23 16:51:51 +02:00
|
|
|
case se32(SYS_SYNC_PRIORITY_INHERIT): sys_semaphore.Todo("SYS_SYNC_PRIORITY_INHERIT"); break;
|
|
|
|
|
case se32(SYS_SYNC_RETRY): sys_semaphore.Error("SYS_SYNC_RETRY"); return CELL_EINVAL;
|
|
|
|
|
default: sys_semaphore.Error("Unknown protocol attribute(0x%x)", (u32)attr->protocol); return CELL_EINVAL;
|
2014-06-21 16:24:27 +02:00
|
|
|
}
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-09-19 02:19:22 +02:00
|
|
|
*sem = semaphore_create(initial_count, max_count, attr->protocol, attr->name_u64);
|
2013-06-30 10:46:29 +02:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_semaphore_destroy(u32 sem_id)
|
2013-06-30 10:46:29 +02:00
|
|
|
{
|
2014-08-23 16:51:51 +02:00
|
|
|
sys_semaphore.Warning("sys_semaphore_destroy(sem_id=%d)", sem_id);
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-09-20 02:08:12 +02:00
|
|
|
LV2_LOCK(0);
|
|
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
Semaphore* sem;
|
|
|
|
|
if (!Emu.GetIdManager().GetIDData(sem_id, sem))
|
|
|
|
|
{
|
|
|
|
|
return CELL_ESRCH;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!sem->m_queue.finalize())
|
|
|
|
|
{
|
|
|
|
|
return CELL_EBUSY;
|
|
|
|
|
}
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
Emu.GetIdManager().RemoveID(sem_id);
|
2014-09-13 22:40:12 +02:00
|
|
|
Emu.GetSyncPrimManager().EraseSemaphoreData(sem_id);
|
2013-06-30 10:46:29 +02:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_semaphore_wait(u32 sem_id, u64 timeout)
|
2013-06-30 10:46:29 +02:00
|
|
|
{
|
2014-08-23 16:51:51 +02:00
|
|
|
sys_semaphore.Log("sys_semaphore_wait(sem_id=%d, timeout=%lld)", sem_id, timeout);
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
Semaphore* sem;
|
|
|
|
|
if (!Emu.GetIdManager().GetIDData(sem_id, sem))
|
|
|
|
|
{
|
|
|
|
|
return CELL_ESRCH;
|
|
|
|
|
}
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
const u32 tid = GetCurrentPPUThread().GetId();
|
|
|
|
|
const u64 start_time = get_system_time();
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
{
|
|
|
|
|
std::lock_guard<std::mutex> lock(sem->m_mutex);
|
|
|
|
|
if (sem->m_value > 0)
|
|
|
|
|
{
|
|
|
|
|
sem->m_value--;
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
sem->m_queue.push(tid);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
if (Emu.IsStopped())
|
|
|
|
|
{
|
2014-08-23 16:51:51 +02:00
|
|
|
sys_semaphore.Warning("sys_semaphore_wait(%d) aborted", sem_id);
|
2014-06-21 16:24:27 +02:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (timeout && get_system_time() - start_time > timeout)
|
|
|
|
|
{
|
2014-06-22 12:59:28 +02:00
|
|
|
sem->m_queue.invalidate(tid);
|
2014-06-21 16:24:27 +02:00
|
|
|
return CELL_ETIMEDOUT;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (tid == sem->signal)
|
|
|
|
|
{
|
|
|
|
|
std::lock_guard<std::mutex> lock(sem->m_mutex);
|
|
|
|
|
|
2014-06-22 12:59:28 +02:00
|
|
|
if (tid != sem->signal)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2014-06-21 16:24:27 +02:00
|
|
|
sem->signal = 0;
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-16 18:29:41 +02:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
2014-06-21 16:24:27 +02:00
|
|
|
}
|
2013-06-30 10:46:29 +02:00
|
|
|
}
|
|
|
|
|
|
2014-06-25 00:38:34 +02:00
|
|
|
s32 sys_semaphore_trywait(u32 sem_id)
|
2013-06-30 10:46:29 +02:00
|
|
|
{
|
2014-08-23 16:51:51 +02:00
|
|
|
sys_semaphore.Log("sys_semaphore_trywait(sem_id=%d)", sem_id);
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
Semaphore* sem;
|
|
|
|
|
if (!Emu.GetIdManager().GetIDData(sem_id, sem))
|
|
|
|
|
{
|
|
|
|
|
return CELL_ESRCH;
|
|
|
|
|
}
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
std::lock_guard<std::mutex> lock(sem->m_mutex);
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
if (sem->m_value > 0)
|
|
|
|
|
{
|
|
|
|
|
sem->m_value--;
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return CELL_EBUSY;
|
|
|
|
|
}
|
2013-06-30 10:46:29 +02:00
|
|
|
}
|
|
|
|
|
|
2014-09-19 02:19:22 +02:00
|
|
|
s32 sys_semaphore_post(u32 sem_id, s32 count)
|
2013-06-30 10:46:29 +02:00
|
|
|
{
|
2014-08-23 16:51:51 +02:00
|
|
|
sys_semaphore.Log("sys_semaphore_post(sem_id=%d, count=%d)", sem_id, count);
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
Semaphore* sem;
|
|
|
|
|
if (!Emu.GetIdManager().GetIDData(sem_id, sem))
|
|
|
|
|
{
|
|
|
|
|
return CELL_ESRCH;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (count < 0)
|
|
|
|
|
{
|
|
|
|
|
return CELL_EINVAL;
|
|
|
|
|
}
|
2013-06-30 10:46:29 +02:00
|
|
|
|
2014-09-19 02:19:22 +02:00
|
|
|
if (count + sem->m_value - (s32)sem->m_queue.count() > sem->max)
|
2013-11-26 01:23:25 +01:00
|
|
|
{
|
2014-06-22 12:59:28 +02:00
|
|
|
return CELL_EBUSY;
|
2014-06-21 16:24:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while (count > 0)
|
|
|
|
|
{
|
|
|
|
|
if (Emu.IsStopped())
|
|
|
|
|
{
|
2014-08-23 16:51:51 +02:00
|
|
|
sys_semaphore.Warning("sys_semaphore_post(%d) aborted", sem_id);
|
2014-06-21 16:24:27 +02:00
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::lock_guard<std::mutex> lock(sem->m_mutex);
|
|
|
|
|
|
|
|
|
|
if (sem->signal && sem->m_queue.count())
|
|
|
|
|
{
|
2014-10-16 18:29:41 +02:00
|
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(1));
|
2014-06-21 16:24:27 +02:00
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (u32 target = (sem->protocol == SYS_SYNC_FIFO) ? sem->m_queue.pop() : sem->m_queue.pop_prio())
|
|
|
|
|
{
|
|
|
|
|
count--;
|
|
|
|
|
sem->signal = target;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
sem->m_value += count;
|
|
|
|
|
count = 0;
|
|
|
|
|
}
|
2013-11-26 01:23:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-11 19:20:01 +02:00
|
|
|
s32 sys_semaphore_get_value(u32 sem_id, vm::ptr<s32> count)
|
2013-11-26 01:23:25 +01:00
|
|
|
{
|
2014-09-01 02:51:48 +02:00
|
|
|
sys_semaphore.Log("sys_semaphore_get_value(sem_id=%d, count_addr=0x%x)", sem_id, count.addr());
|
2013-11-26 01:23:25 +01:00
|
|
|
|
2014-11-12 23:25:27 +01:00
|
|
|
if (count.addr() == NULL) {
|
|
|
|
|
sys_semaphore.Error("sys_semaphore_get_value(): invalid memory access (count=0x%x)", count.addr());
|
|
|
|
|
return CELL_EFAULT;
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
Semaphore* sem;
|
|
|
|
|
if (!Emu.GetIdManager().GetIDData(sem_id, sem))
|
|
|
|
|
{
|
|
|
|
|
return CELL_ESRCH;
|
|
|
|
|
}
|
2013-11-26 01:23:25 +01:00
|
|
|
|
2014-06-21 16:24:27 +02:00
|
|
|
std::lock_guard<std::mutex> lock(sem->m_mutex);
|
|
|
|
|
|
2014-09-01 02:51:48 +02:00
|
|
|
*count = sem->m_value;
|
2013-06-30 10:46:29 +02:00
|
|
|
|
|
|
|
|
return CELL_OK;
|
|
|
|
|
}
|