Add HTTP_C::AddPostDataAscii
This commit is contained in:
parent
8d92278cc1
commit
4c198591d5
|
@ -299,6 +299,81 @@ void HTTP_C::AddRequestHeader(Kernel::HLERequestContext& ctx) {
|
||||||
context_handle);
|
context_handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void HTTP_C::AddPostDataAscii(Kernel::HLERequestContext& ctx) {
|
||||||
|
IPC::RequestParser rp(ctx, 0x12, 3, 4);
|
||||||
|
const u32 context_handle = rp.Pop<u32>();
|
||||||
|
const u32 name_size = rp.Pop<u32>();
|
||||||
|
const u32 value_size = rp.Pop<u32>();
|
||||||
|
const std::vector<u8> name_buffer = rp.PopStaticBuffer();
|
||||||
|
Kernel::MappedBuffer& value_buffer = rp.PopMappedBuffer();
|
||||||
|
|
||||||
|
// Copy the name_buffer into a string without the \0 at the end
|
||||||
|
const std::string name(name_buffer.begin(), name_buffer.end() - 1);
|
||||||
|
|
||||||
|
// Copy the value_buffer into a string without the \0 at the end
|
||||||
|
std::string value(value_size - 1, '\0');
|
||||||
|
value_buffer.Read(&value[0], 0, value_size - 1);
|
||||||
|
|
||||||
|
auto* session_data = GetSessionData(ctx.Session());
|
||||||
|
ASSERT(session_data);
|
||||||
|
|
||||||
|
if (!session_data->initialized) {
|
||||||
|
LOG_ERROR(Service_HTTP, "Tried to add post data on an uninitialized session");
|
||||||
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2);
|
||||||
|
rb.Push(ERROR_STATE_ERROR);
|
||||||
|
rb.PushMappedBuffer(value_buffer);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// This command can only be called with a bound context
|
||||||
|
if (!session_data->current_http_context) {
|
||||||
|
LOG_ERROR(Service_HTTP, "Command called without a bound context");
|
||||||
|
|
||||||
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2);
|
||||||
|
rb.Push(ResultCode(ErrorDescription::NotImplemented, ErrorModule::HTTP,
|
||||||
|
ErrorSummary::Internal, ErrorLevel::Permanent));
|
||||||
|
rb.PushMappedBuffer(value_buffer);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (session_data->current_http_context != context_handle) {
|
||||||
|
LOG_ERROR(Service_HTTP,
|
||||||
|
"Tried to add post data on a mismatched session input context={} session "
|
||||||
|
"context={}",
|
||||||
|
context_handle, *session_data->current_http_context);
|
||||||
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2);
|
||||||
|
rb.Push(ERROR_STATE_ERROR);
|
||||||
|
rb.PushMappedBuffer(value_buffer);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
auto itr = contexts.find(context_handle);
|
||||||
|
ASSERT(itr != contexts.end());
|
||||||
|
|
||||||
|
if (itr->second.state != RequestState::NotStarted) {
|
||||||
|
LOG_ERROR(Service_HTTP,
|
||||||
|
"Tried to add post data on a context that has already been started.");
|
||||||
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2);
|
||||||
|
rb.Push(ResultCode(ErrCodes::InvalidRequestState, ErrorModule::HTTP,
|
||||||
|
ErrorSummary::InvalidState, ErrorLevel::Permanent));
|
||||||
|
rb.PushMappedBuffer(value_buffer);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ASSERT(std::find_if(itr->second.post_data.begin(), itr->second.post_data.end(),
|
||||||
|
[&name](const Context::PostData& m) -> bool { return m.name == name; }) ==
|
||||||
|
itr->second.post_data.end());
|
||||||
|
|
||||||
|
itr->second.post_data.emplace_back(name, value);
|
||||||
|
|
||||||
|
IPC::RequestBuilder rb = rp.MakeBuilder(1, 2);
|
||||||
|
rb.Push(RESULT_SUCCESS);
|
||||||
|
rb.PushMappedBuffer(value_buffer);
|
||||||
|
|
||||||
|
LOG_DEBUG(Service_HTTP, "called, name={}, value={}, context_handle={}", name, value,
|
||||||
|
context_handle);
|
||||||
|
}
|
||||||
|
|
||||||
void HTTP_C::OpenClientCertContext(Kernel::HLERequestContext& ctx) {
|
void HTTP_C::OpenClientCertContext(Kernel::HLERequestContext& ctx) {
|
||||||
IPC::RequestParser rp(ctx, 0x32, 2, 4);
|
IPC::RequestParser rp(ctx, 0x32, 2, 4);
|
||||||
u32 cert_size = rp.Pop<u32>();
|
u32 cert_size = rp.Pop<u32>();
|
||||||
|
|
|
@ -101,6 +101,7 @@ public:
|
||||||
|
|
||||||
struct PostData {
|
struct PostData {
|
||||||
// TODO(Subv): Support Binary and Raw POST elements.
|
// TODO(Subv): Support Binary and Raw POST elements.
|
||||||
|
PostData(std::string name, std::string value) : name(name), value(value){};
|
||||||
std::string name;
|
std::string name;
|
||||||
std::string value;
|
std::string value;
|
||||||
};
|
};
|
||||||
|
@ -207,6 +208,21 @@ private:
|
||||||
*/
|
*/
|
||||||
void AddRequestHeader(Kernel::HLERequestContext& ctx);
|
void AddRequestHeader(Kernel::HLERequestContext& ctx);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* HTTP_C::AddPostDataAscii service function
|
||||||
|
* Inputs:
|
||||||
|
* 1 : Context handle
|
||||||
|
* 2 : Form name buffer size, including null-terminator.
|
||||||
|
* 3 : Form value buffer size, including null-terminator.
|
||||||
|
* 4 : (FormNameSize<<14) | 0xC02
|
||||||
|
* 5 : Form name data pointer
|
||||||
|
* 6 : (FormValueSize<<4) | 10
|
||||||
|
* 7 : Form value data pointer
|
||||||
|
* Outputs:
|
||||||
|
* 1 : Result of function, 0 on success, otherwise error code
|
||||||
|
*/
|
||||||
|
void AddPostDataAscii(Kernel::HLERequestContext& ctx);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* HTTP_C::OpenClientCertContext service function
|
* HTTP_C::OpenClientCertContext service function
|
||||||
* Inputs:
|
* Inputs:
|
||||||
|
|
Reference in New Issue