#include "stdafx.h" #include "Emu/system_config.h" #include "np_handler.h" #include "Emu/Cell/PPUModule.h" #include "Emu/Cell/Modules/sceNp.h" #include "Emu/Cell/Modules/sceNp2.h" #include "Emu/Cell/Modules/cellNetCtl.h" #include "Utilities/StrUtil.h" #include "Emu/Cell/Modules/cellSysutil.h" #include "Emu/IdManager.h" #include "np_structs_extra.h" #include "Emu/System.h" #include "Emu/NP/rpcn_config.h" #include "Emu/NP/np_contexts.h" #ifdef _WIN32 #include #include #include #else #include #include #include #include #include #include #endif #if defined(__FreeBSD__) || defined(__APPLE__) #include #include #endif #include "util/asm.hpp" LOG_CHANNEL(sys_net); LOG_CHANNEL(sceNp2); LOG_CHANNEL(sceNp); LOG_CHANNEL(rpcn_log, "rpcn"); LOG_CHANNEL(nph_log, "NPHandler"); np_handler::np_handler() { g_fxo->need>(); std::lock_guard lock(mutex_rpcn); rpcn = rpcn::rpcn_client::get_instance(); is_connected = (g_cfg.net.net_active == np_internet_status::enabled); is_psn_active = (g_cfg.net.psn_status >= np_psn_status::psn_fake); if (get_net_status() == CELL_NET_CTL_STATE_IPObtained) { discover_ip_address(); if (!discover_ether_address()) { nph_log.error("Failed to discover ethernet address!"); is_connected = false; is_psn_active = false; } // Convert dns address // TODO: recover actual user dns through OS specific API in_addr conv{}; if (!inet_pton(AF_INET, g_cfg.net.dns.to_string().c_str(), &conv)) { // Do not set to disconnected on invalid IP just error and continue using default(google's 8.8.8.8) nph_log.error("Provided IP(%s) address for DNS is invalid!", g_cfg.net.dns.to_string()); } else { dns_ip = conv.s_addr; } // Init switch map for dns auto swaps = fmt::split(g_cfg.net.swap_list.to_string(), {"&&"}); for (usz i = 0; i < swaps.size(); i++) { auto host_and_ip = fmt::split(swaps[i], {"="}); if (host_and_ip.size() != 2) { nph_log.error("Pattern <%s> contains more than one '='", swaps[i]); continue; } in_addr conv; if (!inet_pton(AF_INET, host_and_ip[1].c_str(), &conv)) { nph_log.error("IP(%s) provided for %s in the switch list is invalid!", host_and_ip[1], host_and_ip[0]); } else { switch_map[host_and_ip[0]] = conv.s_addr; } } } } void np_handler::discover_ip_address() { hostname.clear(); hostname.resize(1024); const auto use_default_ip_addr = [this](const std::string_view error_msg) { nph_log.error("discover_ip_address: %s", error_msg); nph_log.error("discover_ip_address: Defaulting to 127.0.0.1!"); local_ip_addr = 0x0100007f; public_ip_addr = local_ip_addr; }; if (gethostname(hostname.data(), hostname.size()) == -1) { use_default_ip_addr("gethostname failed!"); return; } nph_log.notice("discover_ip_address: Hostname was determined to be %s", hostname.c_str()); hostent* host = gethostbyname(hostname.data()); if (!host) { use_default_ip_addr("gethostbyname failed!"); return; } if (host->h_addrtype != AF_INET) { use_default_ip_addr("Could only find IPv6 addresses for current host!"); return; } // First address is used for now, (TODO combobox with possible local addresses to use?) local_ip_addr = *reinterpret_cast(host->h_addr_list[0]); // Set public address to local discovered address for now, may be updated later; public_ip_addr = local_ip_addr; nph_log.notice("discover_ip_address: IP was determined to be %s", ip_to_string(local_ip_addr)); } bool np_handler::discover_ether_address() { #if defined(__FreeBSD__) || defined(__APPLE__) ifaddrs* ifap; if (getifaddrs(&ifap) == 0) { ifaddrs* p; for (p = ifap; p; p = p->ifa_next) { if (p->ifa_addr->sa_family == AF_LINK) { sockaddr_dl* sdp = reinterpret_cast(p->ifa_addr); memcpy(ether_address.data(), sdp->sdl_data + sdp->sdl_nlen, 6); freeifaddrs(ifap); nph_log.notice("Determined Ethernet address to be %s", ether_to_string(ether_address)); return true; } } freeifaddrs(ifap); } #elif defined(_WIN32) std::vector adapter_infos(sizeof(IP_ADAPTER_INFO)); ULONG size_infos = sizeof(IP_ADAPTER_INFO); if (GetAdaptersInfo(reinterpret_cast(adapter_infos.data()), &size_infos) == ERROR_BUFFER_OVERFLOW) adapter_infos.resize(size_infos); if (GetAdaptersInfo(reinterpret_cast(adapter_infos.data()), &size_infos) == NO_ERROR && size_infos) { PIP_ADAPTER_INFO info = reinterpret_cast(adapter_infos.data()); memcpy(ether_address.data(), info[0].Address, 6); nph_log.notice("Determined Ethernet address to be %s", ether_to_string(ether_address)); return true; } #else ifreq ifr; ifconf ifc; char buf[1024]; int success = 0; int sock = socket(AF_INET, SOCK_DGRAM, IPPROTO_IP); if (sock == -1) return false; ifc.ifc_len = sizeof(buf); ifc.ifc_buf = buf; if (ioctl(sock, SIOCGIFCONF, &ifc) == -1) return false; ifreq* it = ifc.ifc_req; const ifreq* const end = it + (ifc.ifc_len / sizeof(ifreq)); for (; it != end; ++it) { strcpy(ifr.ifr_name, it->ifr_name); if (ioctl(sock, SIOCGIFFLAGS, &ifr) == 0) { if (!(ifr.ifr_flags & IFF_LOOPBACK)) { if (ioctl(sock, SIOCGIFHWADDR, &ifr) == 0) { success = 1; break; } } } } if (success) { memcpy(ether_address.data(), ifr.ifr_hwaddr.sa_data, 6); nph_log.notice("Determined Ethernet address to be %s", ether_to_string(ether_address)); return true; } #endif return false; } const std::array& np_handler::get_ether_addr() const { return ether_address; } const std::string& np_handler::get_hostname() const { return hostname; } u32 np_handler::get_local_ip_addr() const { return local_ip_addr; } u32 np_handler::get_public_ip_addr() const { return public_ip_addr; } u32 np_handler::get_dns_ip() const { return dns_ip; } s32 np_handler::get_net_status() const { return is_connected ? CELL_NET_CTL_STATE_IPObtained : CELL_NET_CTL_STATE_Disconnected; } s32 np_handler::get_psn_status() const { return is_psn_active ? SCE_NP_MANAGER_STATUS_ONLINE : SCE_NP_MANAGER_STATUS_OFFLINE; } const SceNpId& np_handler::get_npid() const { return npid; } const SceNpOnlineId& np_handler::get_online_id() const { return npid.handle; } const SceNpOnlineName& np_handler::get_online_name() const { return online_name; } const SceNpAvatarUrl& np_handler::get_avatar_url() const { return avatar_url; } std::string np_handler::ip_to_string(u32 ip_addr) { char ip_str[16]; inet_ntop(AF_INET, &ip_addr, ip_str, sizeof(ip_str)); return std::string(ip_str); } std::string np_handler::ether_to_string(std::array& ether) { return fmt::format("%02X:%02X:%02X:%02X:%02X:%02X", ether[0], ether[1], ether[2], ether[3], ether[4], ether[5]); } void np_handler::string_to_npid(const std::string& str, SceNpId* npid) { memset(npid, 0, sizeof(SceNpId)); strcpy_trunc(npid->handle.data, str); // npid->reserved[0] = 1; } void np_handler::string_to_online_name(const std::string& str, SceNpOnlineName* online_name) { strcpy_trunc(online_name->data, str); } void np_handler::string_to_avatar_url(const std::string& str, SceNpAvatarUrl* avatar_url) { strcpy_trunc(avatar_url->data, str); } void np_handler::string_to_communication_id(const std::string& str, SceNpCommunicationId* comm_id) { strcpy_trunc(comm_id->data, str); } void np_handler::init_NP(u32 poolsize, vm::ptr poolptr) { // Init memory pool mpool = poolptr; mpool_size = poolsize; mpool_avail = poolsize; mpool_allocs.clear(); memset(&npid, 0, sizeof(npid)); memset(&online_name, 0, sizeof(online_name)); memset(&avatar_url, 0, sizeof(avatar_url)); if (g_cfg.net.psn_status >= np_psn_status::psn_fake) { std::string s_npid = g_cfg_rpcn.get_npid(); ensure(!s_npid.empty()); // It should have been generated before this np_handler::string_to_npid(s_npid, &npid); auto& sigh = g_fxo->get>(); sigh.set_self_sig_info(npid); } switch (g_cfg.net.psn_status) { case np_psn_status::disabled: break; case np_psn_status::psn_fake: { np_handler::string_to_online_name("RPCS3's user", &online_name); np_handler::string_to_avatar_url("https://rpcs3.net/cdn/netplay/DefaultAvatar.png", &avatar_url); break; } case np_psn_status::psn_rpcn: { if (!is_psn_active) break; std::lock_guard lock(mutex_rpcn); rpcn = rpcn::rpcn_client::get_instance(); // Make sure we're connected if (auto state = rpcn->wait_for_connection(); state != rpcn::rpcn_state::failure_no_failure) { rpcn_log.error("Connection to RPCN Failed!"); is_psn_active = false; return; } if (auto state = rpcn->wait_for_authentified(); state != rpcn::rpcn_state::failure_no_failure) { rpcn_log.error("RPCN login attempt failed!"); is_psn_active = false; return; } np_handler::string_to_online_name(rpcn->get_online_name(), &online_name); np_handler::string_to_avatar_url(rpcn->get_avatar_url(), &avatar_url); public_ip_addr = rpcn->get_addr_sig(); break; } default: break; } } void np_handler::terminate_NP() { // TODO: proper cleanup of everything here // Unregister basic handler basic_handler.registered = false; // Reset memory pool mpool.set(0); mpool_size = 0; mpool_avail = 0; mpool_allocs.clear(); if (g_cfg.net.psn_status == np_psn_status::psn_rpcn) { rpcn_log.notice("Disconnecting from RPCN!"); std::lock_guard lock(mutex_rpcn); rpcn.reset(); } } vm::addr_t np_handler::allocate(u32 size) { if (!size) return vm::cast(static_cast(0)); // Align allocs const u32 alloc_size = utils::align(size, 4); if (alloc_size > mpool_avail) { sceNp.error("Not enough memory available in NP pool!"); return vm::cast(0); } u32 last_free = 0; bool found_space = false; for (auto& a : mpool_allocs) { if ((a.first - last_free) >= alloc_size) { found_space = true; break; } last_free = a.first + a.second; } if (!found_space) { if ((mpool_size - last_free) < alloc_size) { sceNp.error("Not enough memory available in NP pool(continuous block)!"); return vm::cast(0); } } mpool_allocs.emplace(last_free, alloc_size); mpool_avail -= alloc_size; memset((static_cast(mpool.get_ptr())) + last_free, 0, alloc_size); sceNp.trace("Allocation off:%d size:%d psize:%d, pavail:%d", last_free, alloc_size, mpool_size, mpool_avail); return vm::cast(mpool.addr() + last_free); } std::vector np_handler::get_match2_server_list(SceNpMatching2ContextId ctx_id) { std::vector server_list{}; if (g_cfg.net.psn_status != np_psn_status::psn_rpcn) { return server_list; } if (!rpcn->get_server_list(get_req_id(0), get_match2_context(ctx_id)->communicationId, server_list)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return server_list; } u32 np_handler::get_server_status(SceNpMatching2ContextId ctx_id, vm::cptr optParam, u16 server_id) { // TODO: actually implement interaction with server for this? u32 req_id = generate_callback_info(ctx_id, optParam); u32 event_key = get_event_key(); SceNpMatching2GetServerInfoResponse* serv_info = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2GetServerInfoResponse))); serv_info->server.serverId = server_id; serv_info->server.status = SCE_NP_MATCHING2_SERVER_STATUS_AVAILABLE; const auto cb_info = take_pending_request(req_id); sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_GetServerInfo, event_key, 0, sizeof(SceNpMatching2GetServerInfoResponse), cb_info.cb_arg); return 0; }); return req_id; } u32 np_handler::create_server_context(SceNpMatching2ContextId ctx_id, vm::cptr optParam, u16 /*server_id*/) { u32 req_id = generate_callback_info(ctx_id, optParam); u32 event_key = get_event_key(); const auto cb_info = take_pending_request(req_id); sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_CreateServerContext, event_key, 0, 0, cb_info.cb_arg); return 0; }); return req_id; } u32 np_handler::get_world_list(SceNpMatching2ContextId ctx_id, vm::cptr optParam, u16 server_id) { u32 req_id = generate_callback_info(ctx_id, optParam); if (!rpcn->get_world_list(req_id, get_match2_context(ctx_id)->communicationId, server_id)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::create_join_room(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2CreateJoinRoomRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); if (!rpcn->createjoin_room(req_id, get_match2_context(ctx_id)->communicationId, req)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::join_room(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2JoinRoomRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); if (!rpcn->join_room(req_id, get_match2_context(ctx_id)->communicationId, req)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::leave_room(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2LeaveRoomRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); if (!rpcn->leave_room(req_id, get_match2_context(ctx_id)->communicationId, req)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::search_room(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2SearchRoomRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); if (!rpcn->search_room(req_id, get_match2_context(ctx_id)->communicationId, req)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::get_roomdata_external_list(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2GetRoomDataExternalListRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); if (!rpcn->get_roomdata_external_list(req_id, get_match2_context(ctx_id)->communicationId, req)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::set_roomdata_external(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2SetRoomDataExternalRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); extra_nps::print_set_roomdata_ext_req(req); if (!rpcn->set_roomdata_external(req_id, get_match2_context(ctx_id)->communicationId, req)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::get_roomdata_internal(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2GetRoomDataInternalRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); if (!rpcn->get_roomdata_internal(req_id, get_match2_context(ctx_id)->communicationId, req)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::set_roomdata_internal(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2SetRoomDataInternalRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); extra_nps::print_set_roomdata_int_req(req); if (!rpcn->set_roomdata_internal(req_id, get_match2_context(ctx_id)->communicationId, req)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::get_ping_info(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2SignalingGetPingInfoRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); if (!rpcn->ping_room_owner(req_id, get_match2_context(ctx_id)->communicationId, req->roomId)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } u32 np_handler::send_room_message(SceNpMatching2ContextId ctx_id, vm::cptr optParam, const SceNpMatching2SendRoomMessageRequest* req) { u32 req_id = generate_callback_info(ctx_id, optParam); if (!rpcn->send_room_message(req_id, get_match2_context(ctx_id)->communicationId, req)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return req_id; } void np_handler::req_sign_infos(const std::string& npid, u32 conn_id) { u32 req_id = get_req_id(0x3333); { std::lock_guard lock(mutex_pending_sign_infos_requests); pending_sign_infos_requests[req_id] = conn_id; } if (!rpcn->req_sign_infos(req_id, npid)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return; } void np_handler::req_ticket(u32 /*version*/, const SceNpId* /*npid*/, const char* service_id, const u8* /*cookie*/, u32 /*cookie_size*/, const char* /*entitlement_id*/, u32 /*consumed_count*/) { u32 req_id = get_req_id(0x3333); std::string service_id_str(service_id); if (!rpcn->req_ticket(req_id, service_id_str)) { rpcn_log.error("Disconnecting from RPCN!"); is_psn_active = false; } return; } u32 np_handler::get_match2_event(SceNpMatching2EventKey event_key, u8* dest, u32 size) { std::lock_guard lock(mutex_req_results); if (!match2_req_results.count(event_key)) return 0; u32 size_copied = std::min(size, static_cast(match2_req_results.at(event_key).size())); memcpy(dest, match2_req_results.at(event_key).data(), size_copied); return size_copied; } bool np_handler::send_basic_event(s32 event, s32 retCode, u32 reqId) { if (basic_handler.registered) { sysutil_register_cb([handler_func = this->basic_handler.handler_func, handler_arg = this->basic_handler.handler_arg, event, retCode, reqId](ppu_thread& cb_ppu) -> s32 { handler_func(cb_ppu, event, retCode, reqId, handler_arg); return 0; }); return true; } return false; } void np_handler::queue_basic_event(basic_event to_queue) { std::lock_guard lock(mutex_queue_basic_events); queue_basic_events.push(std::move(to_queue)); } error_code np_handler::get_basic_event(vm::ptr event, vm::ptr from, vm::ptr data, vm::ptr size) { basic_event cur_event; { std::lock_guard lock(mutex_queue_basic_events); if (queue_basic_events.empty()) { return not_an_error(SCE_NP_BASIC_ERROR_NO_EVENT); } cur_event = std::move(queue_basic_events.front()); queue_basic_events.pop(); } const u32 size_avail = *size; u32 res_size = std::min(static_cast(cur_event.data.size()), size_avail); *event = cur_event.event; memcpy(from.get_ptr(), &cur_event.from, sizeof(cur_event.from)); memcpy(data.get_ptr(), cur_event.data.data(), res_size); *size = res_size; if (res_size < cur_event.data.size()) { return SCE_NP_BASIC_ERROR_DATA_LOST; } return CELL_OK; } std::optional>> np_handler::get_message(u64 id) { return rpcn->get_message(id); } void np_handler::operator()() { if (g_cfg.net.psn_status != np_psn_status::psn_rpcn) return; while (thread_ctrl::state() != thread_state::aborting && !Emu.IsStopped()) { bool sleep = true; if (rpcn) { std::lock_guard lock(mutex_rpcn); if (!rpcn) { continue; } auto replies = rpcn->get_replies(); for (auto& reply : replies) { const u16 command = reply.second.first; const u32 req_id = reply.first; std::vector& data = reply.second.second; switch (command) { case rpcn::CommandType::GetWorldList: reply_get_world_list(req_id, data); break; case rpcn::CommandType::CreateRoom: reply_create_join_room(req_id, data); break; case rpcn::CommandType::JoinRoom: reply_join_room(req_id, data); break; case rpcn::CommandType::LeaveRoom: reply_leave_room(req_id, data); break; case rpcn::CommandType::SearchRoom: reply_search_room(req_id, data); break; case rpcn::CommandType::GetRoomDataExternalList: reply_get_roomdata_external_list(req_id, data); break; case rpcn::CommandType::SetRoomDataExternal: reply_set_roomdata_external(req_id, data); break; case rpcn::CommandType::GetRoomDataInternal: reply_get_roomdata_internal(req_id, data); break; case rpcn::CommandType::SetRoomDataInternal: reply_set_roomdata_internal(req_id, data); break; case rpcn::CommandType::PingRoomOwner: reply_get_ping_info(req_id, data); break; case rpcn::CommandType::SendRoomMessage: reply_send_room_message(req_id, data); break; case rpcn::CommandType::RequestSignalingInfos: reply_req_sign_infos(req_id, data); break; case rpcn::CommandType::RequestTicket: reply_req_ticket(req_id, data); break; default: rpcn_log.error("Unknown reply(%d) received!", command); break; } } auto notifications = rpcn->get_notifications(); for (auto& notif : notifications) { switch (notif.first) { case rpcn::NotificationType::UserJoinedRoom: notif_user_joined_room(notif.second); break; case rpcn::NotificationType::UserLeftRoom: notif_user_left_room(notif.second); break; case rpcn::NotificationType::RoomDestroyed: notif_room_destroyed(notif.second); break; case rpcn::NotificationType::SignalP2PConnect: notif_p2p_connect(notif.second); break; case rpcn::NotificationType::RoomMessageReceived: notif_room_message_received(notif.second); break; default: rpcn_log.error("Unknown notification(%d) received!", notif.first); break; } } auto messages = rpcn->get_new_messages(); if (basic_handler.registered) { for (const auto msg_id : messages) { const auto opt_msg = rpcn->get_message(msg_id); if (!opt_msg) { continue; } const auto& msg = opt_msg.value(); if (strncmp(msg->second.commId.data, basic_handler.context.data, sizeof(basic_handler.context.data) - 1) == 0) { u32 event; switch (msg->second.mainType) { case SCE_NP_BASIC_MESSAGE_MAIN_TYPE_DATA_ATTACHMENT: event = SCE_NP_BASIC_EVENT_INCOMING_ATTACHMENT; break; case SCE_NP_BASIC_MESSAGE_MAIN_TYPE_INVITE: event = (msg->second.msgFeatures & SCE_NP_BASIC_MESSAGE_FEATURES_BOOTABLE) ? SCE_NP_BASIC_EVENT_INCOMING_BOOTABLE_INVITATION : SCE_NP_BASIC_EVENT_INCOMING_INVITATION; break; case SCE_NP_BASIC_MESSAGE_MAIN_TYPE_CUSTOM_DATA: event = (msg->second.msgFeatures & SCE_NP_BASIC_MESSAGE_FEATURES_BOOTABLE) ? SCE_NP_BASIC_EVENT_INCOMING_BOOTABLE_CUSTOM_DATA_MESSAGE : SCE_NP_BASIC_EVENT_INCOMING_CUSTOM_DATA_MESSAGE; break; case SCE_NP_BASIC_MESSAGE_MAIN_TYPE_GENERAL: case SCE_NP_BASIC_MESSAGE_MAIN_TYPE_ADD_FRIEND: case SCE_NP_BASIC_MESSAGE_MAIN_TYPE_URL_ATTACHMENT: event = SCE_NP_BASIC_EVENT_MESSAGE; default: continue; } basic_event to_add{}; to_add.event = event; strcpy_trunc(to_add.from.userId.handle.data, msg->first); strcpy_trunc(to_add.from.name.data, msg->first); queue_basic_event(std::move(to_add)); send_basic_event(event, 0, 0); } } } if (!replies.empty() || !notifications.empty()) { sleep = false; } } // TODO: replace with an appropriate semaphore if (sleep) { thread_ctrl::wait_for(200'000); continue; } } } bool np_handler::reply_get_world_list(u32 req_id, std::vector& reply_data) { const auto cb_info = take_pending_request(req_id); vec_stream reply(reply_data, 1); std::vector world_list; u32 num_worlds = reply.get(); for (u32 i = 0; i < num_worlds; i++) { world_list.push_back(reply.get()); } if (reply.is_error()) { world_list.clear(); return error_and_disconnect("Malformed reply to GetWorldList command"); } u32 event_key = get_event_key(); SceNpMatching2GetWorldInfoListResponse* world_info = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2GetWorldInfoListResponse))); world_info->worldNum = world_list.size(); if (!world_list.empty()) { world_info->world.set(allocate(sizeof(SceNpMatching2World) * world_list.size())); for (usz i = 0; i < world_list.size(); i++) { world_info->world[i].worldId = world_list[i]; world_info->world[i].numOfLobby = 1; // TODO world_info->world[i].maxNumOfTotalLobbyMember = 10000; world_info->world[i].curNumOfTotalLobbyMember = 1; world_info->world[i].curNumOfRoom = 1; world_info->world[i].curNumOfTotalRoomMember = 1; } } sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_GetWorldInfoList, event_key, 0, sizeof(SceNpMatching2GetWorldInfoListResponse), cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_create_join_room(u32 req_id, std::vector& reply_data) { const auto cb_info = take_pending_request(req_id); vec_stream reply(reply_data, 1); auto create_room_resp = reply.get_rawdata(); if (reply.is_error()) return error_and_disconnect("Malformed reply to CreateRoom command"); u32 event_key = get_event_key(); auto resp = flatbuffers::GetRoot(create_room_resp.data()); SceNpMatching2CreateJoinRoomResponse* room_resp = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2CreateJoinRoomResponse))); vm::ptr room_info(allocate(sizeof(SceNpMatching2RoomDataInternal))); room_resp->roomDataInternal = room_info; RoomDataInternal_to_SceNpMatching2RoomDataInternal(resp, room_info.get_ptr(), npid); // Establish Matching2 self signaling info auto& sigh = g_fxo->get>(); sigh.set_self_sig2_info(room_info->roomId, 1); sigh.set_sig2_infos(room_info->roomId, 1, SCE_NP_SIGNALING_CONN_STATUS_ACTIVE, rpcn->get_addr_sig(), rpcn->get_port_sig(), true); // TODO? Should this send a message to Signaling CB? Is this even necessary? extra_nps::print_create_room_resp(room_resp); sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_CreateJoinRoom, event_key, 0, sizeof(SceNpMatching2CreateJoinRoomResponse), cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_join_room(u32 req_id, std::vector& reply_data) { const auto cb_info = take_pending_request(req_id); vec_stream reply(reply_data, 1); auto join_room_resp = reply.get_rawdata(); if (reply.is_error()) return error_and_disconnect("Malformed reply to JoinRoom command"); u32 event_key = get_event_key(); auto resp = flatbuffers::GetRoot(join_room_resp.data()); SceNpMatching2JoinRoomResponse* room_resp = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2JoinRoomResponse))); vm::ptr room_info(allocate(sizeof(SceNpMatching2RoomDataInternal))); room_resp->roomDataInternal = room_info; u16 member_id = RoomDataInternal_to_SceNpMatching2RoomDataInternal(resp, room_info.get_ptr(), npid); extra_nps::print_room_data_internal(room_resp->roomDataInternal.get_ptr()); // Establish Matching2 self signaling info auto& sigh = g_fxo->get>(); sigh.set_self_sig2_info(room_info->roomId, member_id); sigh.set_sig2_infos(room_info->roomId, member_id, SCE_NP_SIGNALING_CONN_STATUS_ACTIVE, rpcn->get_addr_sig(), rpcn->get_port_sig(), true); // TODO? Should this send a message to Signaling CB? Is this even necessary? sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_JoinRoom, event_key, 0, sizeof(SceNpMatching2JoinRoomResponse), cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_leave_room(u32 req_id, std::vector& reply_data) { const auto cb_info = take_pending_request(req_id); vec_stream reply(reply_data, 1); u64 room_id = reply.get(); if (reply.is_error()) return error_and_disconnect("Malformed reply to LeaveRoom command"); u32 event_key = get_event_key(); // Unsure if necessary if there is no data // Disconnect all users from that room auto& sigh = g_fxo->get>(); sigh.disconnect_sig2_users(room_id); sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_LeaveRoom, event_key, 0, 0, cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_search_room(u32 req_id, std::vector& reply_data) { const auto cb_info = take_pending_request(req_id); vec_stream reply(reply_data, 1); auto search_room_resp = reply.get_rawdata(); if (reply.is_error()) return error_and_disconnect("Malformed reply to SearchRoom command"); u32 event_key = get_event_key(); auto resp = flatbuffers::GetRoot(search_room_resp.data()); SceNpMatching2SearchRoomResponse* search_resp = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2SearchRoomResponse))); SearchRoomResponse_to_SceNpMatching2SearchRoomResponse(resp, search_resp); sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_SearchRoom, event_key, 0, sizeof(SceNpMatching2SearchRoomResponse), cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_get_roomdata_external_list(u32 req_id, std::vector& reply_data) { const auto cb_info = take_pending_request(req_id); vec_stream reply(reply_data, 1); auto get_room_ext_resp = reply.get_rawdata(); if (reply.is_error()) return error_and_disconnect("Malformed reply to GetRoomDataExternalList command"); u32 event_key = get_event_key(); auto resp = flatbuffers::GetRoot(get_room_ext_resp.data()); SceNpMatching2GetRoomDataExternalListResponse* np_get_room_ext_resp = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2GetRoomDataExternalListResponse))); GetRoomDataExternalListResponse_to_SceNpMatching2GetRoomDataExternalListResponse(resp, np_get_room_ext_resp); sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_SearchRoom, event_key, 0, sizeof(SceNpMatching2SearchRoomResponse), cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_set_roomdata_external(u32 req_id, std::vector& /*reply_data*/) { const auto cb_info = take_pending_request(req_id); u32 event_key = get_event_key(); // Unsure if necessary if there is no data sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_SetRoomDataExternal, event_key, 0, 0, cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_get_roomdata_internal(u32 req_id, std::vector& reply_data) { const auto cb_info = take_pending_request(req_id); vec_stream reply(reply_data, 1); auto internal_data = reply.get_rawdata(); if (reply.is_error()) return error_and_disconnect("Malformed reply to GetRoomDataInternal command"); u32 event_key = get_event_key(); auto resp = flatbuffers::GetRoot(internal_data.data()); SceNpMatching2GetRoomDataInternalResponse* room_resp = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2GetRoomDataInternalResponse))); vm::ptr room_info(allocate(sizeof(SceNpMatching2RoomDataInternal))); room_resp->roomDataInternal = room_info; RoomDataInternal_to_SceNpMatching2RoomDataInternal(resp, room_info.get_ptr(), npid); extra_nps::print_room_data_internal(room_resp->roomDataInternal.get_ptr()); sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_GetRoomDataInternal, event_key, 0, sizeof(SceNpMatching2GetRoomDataInternalResponse), cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_set_roomdata_internal(u32 req_id, std::vector& /*reply_data*/) { const auto cb_info = take_pending_request(req_id); u32 event_key = get_event_key(); // Unsure if necessary if there is no data sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_SetRoomDataInternal, event_key, 0, 0, cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_get_ping_info(u32 req_id, std::vector& reply_data) { const auto cb_info = take_pending_request(req_id); vec_stream reply(reply_data, 1); auto ping_resp = reply.get_rawdata(); if (reply.is_error()) return error_and_disconnect("Malformed reply to PingRoomOwner command"); u32 event_key = get_event_key(); auto resp = flatbuffers::GetRoot(ping_resp.data()); SceNpMatching2SignalingGetPingInfoResponse* final_ping_resp = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2SignalingGetPingInfoResponse))); GetPingInfoResponse_to_SceNpMatching2SignalingGetPingInfoResponse(resp, final_ping_resp); sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_SignalingGetPingInfo, event_key, 0, sizeof(SceNpMatching2SignalingGetPingInfoResponse), cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_send_room_message(u32 req_id, std::vector& /*reply_data*/) { const auto cb_info = take_pending_request(req_id); sysutil_register_cb([=](ppu_thread& cb_ppu) -> s32 { cb_info.cb(cb_ppu, cb_info.ctx_id, req_id, SCE_NP_MATCHING2_REQUEST_EVENT_SendRoomMessage, 0, 0, 0, cb_info.cb_arg); return 0; }); return true; } bool np_handler::reply_req_sign_infos(u32 req_id, std::vector& reply_data) { u32 conn_id; { std::lock_guard lock(mutex_pending_sign_infos_requests); conn_id = pending_sign_infos_requests.at(req_id); pending_sign_infos_requests.erase(req_id); } vec_stream reply(reply_data, 1); u32 addr = reply.get(); u16 port = reply.get(); if (reply.is_error()) return error_and_disconnect("Malformed reply to RequestSignalingInfos command"); auto& sigh = g_fxo->get>(); sigh.start_sig(conn_id, addr, port); return true; } bool np_handler::reply_req_ticket(u32 /*req_id*/, std::vector& reply_data) { vec_stream reply(reply_data, 1); auto ticket_raw = reply.get_rawdata(); if (reply.is_error()) return error_and_disconnect("Malformed reply to RequestTicket command"); current_ticket = std::move(ticket_raw); auto ticket_size = static_cast(current_ticket.size()); if (manager_cb) { sysutil_register_cb([manager_cb = this->manager_cb, ticket_size, manager_cb_arg = this->manager_cb_arg](ppu_thread& cb_ppu) -> s32 { manager_cb(cb_ppu, SCE_NP_MANAGER_EVENT_GOT_TICKET, ticket_size, manager_cb_arg); return 0; }); } return true; } void np_handler::notif_user_joined_room(std::vector& data) { vec_stream noti(data); u64 room_id = noti.get(); auto update_info_raw = noti.get_rawdata(); if (noti.is_error()) { rpcn_log.error("Received faulty UserJoinedRoom notification"); return; } u32 event_key = get_event_key(); auto update_info = flatbuffers::GetRoot(update_info_raw.data()); SceNpMatching2RoomMemberUpdateInfo* notif_data = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2RoomMemberUpdateInfo))); RoomMemberUpdateInfo_to_SceNpMatching2RoomMemberUpdateInfo(update_info, notif_data); rpcn_log.notice("Received notification that user %s(%d) joined the room(%d)", notif_data->roomMemberDataInternal->userInfo.npId.handle.data, notif_data->roomMemberDataInternal->memberId, room_id); extra_nps::print_room_member_data_internal(notif_data->roomMemberDataInternal.get_ptr()); sysutil_register_cb([room_event_cb = this->room_event_cb, room_id, event_key, room_event_cb_ctx = this->room_event_cb_ctx, room_event_cb_arg = this->room_event_cb_arg](ppu_thread& cb_ppu) -> s32 { room_event_cb(cb_ppu, room_event_cb_ctx, room_id, SCE_NP_MATCHING2_ROOM_EVENT_MemberJoined, event_key, 0, sizeof(SceNpMatching2RoomMemberUpdateInfo), room_event_cb_arg); return 0; }); } void np_handler::notif_user_left_room(std::vector& data) { vec_stream noti(data); u64 room_id = noti.get(); auto update_info_raw = noti.get_rawdata(); if (noti.is_error()) { rpcn_log.error("Received faulty UserLeftRoom notification"); return; } u32 event_key = get_event_key(); auto update_info = flatbuffers::GetRoot(update_info_raw.data()); SceNpMatching2RoomMemberUpdateInfo* notif_data = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2RoomMemberUpdateInfo))); RoomMemberUpdateInfo_to_SceNpMatching2RoomMemberUpdateInfo(update_info, notif_data); rpcn_log.notice("Received notification that user %s(%d) left the room(%d)", notif_data->roomMemberDataInternal->userInfo.npId.handle.data, notif_data->roomMemberDataInternal->memberId, room_id); extra_nps::print_room_member_data_internal(notif_data->roomMemberDataInternal.get_ptr()); sysutil_register_cb([room_event_cb = this->room_event_cb, room_event_cb_ctx = this->room_event_cb_ctx, room_id, event_key, room_event_cb_arg = this->room_event_cb_arg](ppu_thread& cb_ppu) -> s32 { room_event_cb(cb_ppu, room_event_cb_ctx, room_id, SCE_NP_MATCHING2_ROOM_EVENT_MemberLeft, event_key, 0, sizeof(SceNpMatching2RoomMemberUpdateInfo), room_event_cb_arg); return 0; }); } void np_handler::notif_room_destroyed(std::vector& data) { vec_stream noti(data); u64 room_id = noti.get(); auto update_info_raw = noti.get_rawdata(); if (noti.is_error()) { rpcn_log.error("Received faulty RoomDestroyed notification"); return; } u32 event_key = get_event_key(); auto update_info = flatbuffers::GetRoot(update_info_raw.data()); SceNpMatching2RoomUpdateInfo* notif_data = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2RoomUpdateInfo))); RoomUpdateInfo_to_SceNpMatching2RoomUpdateInfo(update_info, notif_data); rpcn_log.notice("Received notification that room(%d) was destroyed", room_id); auto& sigh = g_fxo->get>(); sigh.disconnect_sig2_users(room_id); sysutil_register_cb([room_event_cb = this->room_event_cb, room_event_cb_ctx = this->room_event_cb_ctx, room_id, event_key, room_event_cb_arg = this->room_event_cb_arg](ppu_thread& cb_ppu) -> s32 { room_event_cb(cb_ppu, room_event_cb_ctx, room_id, SCE_NP_MATCHING2_ROOM_EVENT_RoomDestroyed, event_key, 0, sizeof(SceNpMatching2RoomUpdateInfo), room_event_cb_arg); return 0; }); } void np_handler::notif_p2p_connect(std::vector& data) { if (data.size() != 16) { rpcn_log.error("Notification data for SignalP2PConnect != 14"); return; } const u64 room_id = reinterpret_cast&>(data[0]); const u16 member_id = reinterpret_cast&>(data[8]); const u16 port_p2p = reinterpret_cast&>(data[10]); const u32 addr_p2p = reinterpret_cast&>(data[12]); rpcn_log.notice("Received notification to connect to member(%d) of room(%d): %s:%d", member_id, room_id, ip_to_string(addr_p2p), port_p2p); // Attempt Signaling auto& sigh = g_fxo->get>(); sigh.set_sig2_infos(room_id, member_id, SCE_NP_SIGNALING_CONN_STATUS_PENDING, addr_p2p, port_p2p); sigh.start_sig2(room_id, member_id); } void np_handler::notif_room_message_received(std::vector& data) { vec_stream noti(data); u64 room_id = noti.get(); u16 member_id = noti.get(); auto message_info_raw = noti.get_rawdata(); if (noti.is_error()) { rpcn_log.error("Received faulty RoomMessageReceived notification"); return; } u32 event_key = get_event_key(); auto message_info = flatbuffers::GetRoot(message_info_raw.data()); SceNpMatching2RoomMessageInfo* notif_data = reinterpret_cast(allocate_req_result(event_key, sizeof(SceNpMatching2RoomMessageInfo))); RoomMessageInfo_to_SceNpMatching2RoomMessageInfo(message_info, notif_data); rpcn_log.notice("Received notification of a room message from member(%d) in room(%d)", member_id, room_id); if (room_msg_cb) { sysutil_register_cb([room_msg_cb = this->room_msg_cb, room_msg_cb_ctx = this->room_msg_cb_ctx, room_id, member_id, event_key, room_msg_cb_arg = this->room_msg_cb_arg](ppu_thread& cb_ppu) -> s32 { room_msg_cb(cb_ppu, room_msg_cb_ctx, room_id, member_id, SCE_NP_MATCHING2_ROOM_MSG_EVENT_Message, event_key, 0, sizeof(SceNpMatching2RoomUpdateInfo), room_msg_cb_arg); return 0; }); } } void np_handler::add_dns_spy(u32 sock) { dns_spylist.emplace(std::make_pair(sock, std::queue>())); } void np_handler::remove_dns_spy(u32 sock) { dns_spylist.erase(sock); } bool np_handler::is_dns(u32 sock) const { return dns_spylist.count(sock) != 0; } bool np_handler::is_dns_queue(u32 sock) const { return !dns_spylist.at(sock).empty(); } std::vector np_handler::get_dns_packet(u32 sock) { auto ret_vec = std::move(dns_spylist.at(sock).front()); dns_spylist.at(sock).pop(); return ret_vec; } s32 np_handler::analyze_dns_packet(s32 s, const u8* buf, u32 len) { if (sys_net.enabled == logs::level::trace) { std::string datrace; const char hex[16] = {'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F'}; for (u32 index = 0; index < len; index++) { if ((index % 16) == 0) datrace += '\n'; datrace += hex[(buf[index] >> 4) & 15]; datrace += hex[(buf[index]) & 15]; datrace += ' '; } sys_net.trace("DNS REQUEST: %s", datrace); } struct dns_header { u16 id; // identification number u8 rd : 1; // recursion desired u8 tc : 1; // truncated message u8 aa : 1; // authoritive answer u8 opcode : 4; // purpose of message u8 qr : 1; // query/response flag u8 rcode : 4; // response code u8 cd : 1; // checking disabled u8 ad : 1; // authenticated data u8 z : 1; // its z! reserved u8 ra : 1; // recursion available be_t q_count; // number of question entries be_t ans_count; // number of answer entries be_t auth_count; // number of authority entries be_t add_count; // number of resource entries }; if (len < sizeof(dns_header)) return -1; const dns_header* dhead = reinterpret_cast(buf); // We are only looking for queries not truncated(todo?), only handle one dns query at a time(todo?) if (dhead->qr != 0 || dhead->tc != 0 || dhead->q_count != 1 || dhead->ans_count != 0 || dhead->auth_count != 0 || dhead->add_count != 0) return -1; // Get the actual address u8 count = 0; std::string host{}; for (u32 i = sizeof(dns_header); (i < len) && buf[i] != 0; i++) { if (count == 0) { count = buf[i]; if (i != sizeof(dns_header)) { host += '.'; } } else { host += static_cast(buf[i]); count--; } } sys_net.warning("DNS query for %s", host); if (switch_map.count(host)) { // design fake packet std::vector fake(len); memcpy(fake.data(), buf, len); dns_header* fake_header = reinterpret_cast(fake.data()); fake_header->qr = 1; fake_header->ra = 1; fake_header->ans_count = 1; fake.insert(fake.end(), {0xC0, 0x0C}); // Ref to name in header fake.insert(fake.end(), {0x00, 0x01}); // IPv4 fake.insert(fake.end(), {0x00, 0x01}); // Class? fake.insert(fake.end(), {0x00, 0x00, 0x00, 0x3B}); // TTL fake.insert(fake.end(), {0x00, 0x04}); // Size of data u32 ip = switch_map[host]; u8* ptr_ip = reinterpret_cast(&ip); fake.insert(fake.end(), ptr_ip, ptr_ip + 4); // IP sys_net.warning("Solving %s to %d.%d.%d.%d", host, ptr_ip[0], ptr_ip[1], ptr_ip[2], ptr_ip[3]); dns_spylist[s].push(std::move(fake)); return len; } return -1; } bool np_handler::error_and_disconnect(const std::string& error_msg) { rpcn_log.error("%s", error_msg); rpcn.reset(); return false; } u32 np_handler::generate_callback_info(SceNpMatching2ContextId ctx_id, vm::cptr optParam) { callback_info ret; const auto ctx = get_match2_context(ctx_id); ensure(ctx); const u32 req_id = get_req_id(optParam ? optParam->appReqId : ctx->default_match2_optparam.appReqId); ret.ctx_id = ctx_id; ret.cb = optParam ? optParam->cbFunc : ctx->default_match2_optparam.cbFunc; ret.cb_arg = optParam ? optParam->cbFuncArg : ctx->default_match2_optparam.cbFuncArg; nph_log.warning("Callback used is 0x%x", ret.cb); { std::lock_guard lock(mutex_pending_requests); pending_requests[req_id] = std::move(ret); } return req_id; } np_handler::callback_info np_handler::take_pending_request(u32 req_id) { std::lock_guard lock(mutex_pending_requests); const auto cb_info = std::move(pending_requests.at(req_id)); pending_requests.erase(req_id); return cb_info; } u8* np_handler::allocate_req_result(u32 event_key, usz size) { std::lock_guard lock(mutex_req_results); match2_req_results[event_key] = std::vector(size, 0); return match2_req_results[event_key].data(); } u32 np_handler::add_players_to_history(vm::cptr /*npids*/, u32 /*count*/) { const u32 req_id = get_req_id(0); // if (basic_handler) // { // sysutil_register_cb([basic_handler = this->basic_handler, req_id, basic_handler_arg = this->basic_handler_arg](ppu_thread& cb_ppu) -> s32 // { // basic_handler(cb_ppu, SCE_NP_BASIC_EVENT_ADD_PLAYERS_HISTORY_RESULT, 0, req_id, basic_handler_arg); // return 0; // }); // } return req_id; } u32 np_handler::get_num_friends() { return rpcn->get_num_friends(); } u32 np_handler::get_num_blocks() { return rpcn->get_num_blocks(); }