Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Suyu
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
many-archive
Suyu
Commits
7ca9dedf
There was an error fetching the commit references. Please try again later.
Commit
7ca9dedf
authored
8 years ago
by
noah the goodra
Browse files
Options
Downloads
Patches
Plain Diff
error conversion fixes for soc_u
parent
a377fea9
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/hle/service/soc_u.cpp
+32
-39
32 additions, 39 deletions
src/core/hle/service/soc_u.cpp
with
32 additions
and
39 deletions
src/core/hle/service/soc_u.cpp
+
32
−
39
View file @
7ca9dedf
...
...
@@ -362,18 +362,18 @@ static void Socket(Interface* self) {
return
;
}
u32
socket_handle
=
static_cast
<
u32
>
(
::
socket
(
domain
,
type
,
protocol
));
u32
ret
=
static_cast
<
u32
>
(
::
socket
(
domain
,
type
,
protocol
));
if
((
s32
)
socket_handle
!=
SOCKET_ERROR_VALUE
)
open_sockets
[
socket_handle
]
=
{
socket_handle
,
true
};
if
((
s32
)
ret
!=
SOCKET_ERROR_VALUE
)
open_sockets
[
ret
]
=
{
ret
,
true
};
int
result
=
0
;
if
((
s32
)
socket_handle
==
SOCKET_ERROR_VALUE
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
if
((
s32
)
ret
==
SOCKET_ERROR_VALUE
)
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
0
]
=
IPC
::
MakeHeader
(
2
,
2
,
0
);
cmd_buffer
[
1
]
=
result
;
cmd_buffer
[
2
]
=
socket_handle
;
cmd_buffer
[
2
]
=
ret
;
}
static
void
Bind
(
Interface
*
self
)
{
...
...
@@ -393,15 +393,15 @@ static void Bind(Interface* self) {
sockaddr
sock_addr
=
CTRSockAddr
::
ToPlatform
(
ctr_sock_addr
);
int
re
s
=
::
bind
(
socket_handle
,
&
sock_addr
,
std
::
max
<
u32
>
(
sizeof
(
sock_addr
),
len
));
int
re
t
=
::
bind
(
socket_handle
,
&
sock_addr
,
std
::
max
<
u32
>
(
sizeof
(
sock_addr
),
len
));
int
result
=
0
;
if
(
re
s
!=
0
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
if
(
re
t
!=
0
)
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
0
]
=
IPC
::
MakeHeader
(
5
,
2
,
0
);
cmd_buffer
[
1
]
=
result
;
cmd_buffer
[
2
]
=
re
s
;
cmd_buffer
[
2
]
=
re
t
;
}
static
void
Fcntl
(
Interface
*
self
)
{
...
...
@@ -426,8 +426,7 @@ static void Fcntl(Interface* self) {
#else
int
ret
=
::
fcntl
(
socket_handle
,
F_GETFL
,
0
);
if
(
ret
==
SOCKET_ERROR_VALUE
)
{
result
=
TranslateError
(
GET_ERRNO
);
posix_ret
=
-
1
;
posix_ret
=
TranslateError
(
GET_ERRNO
);
return
;
}
posix_ret
=
0
;
...
...
@@ -439,8 +438,7 @@ static void Fcntl(Interface* self) {
unsigned
long
tmp
=
(
ctr_arg
&
4
/* O_NONBLOCK */
)
?
1
:
0
;
int
ret
=
ioctlsocket
(
socket_handle
,
FIONBIO
,
&
tmp
);
if
(
ret
==
SOCKET_ERROR_VALUE
)
{
result
=
TranslateError
(
GET_ERRNO
);
posix_ret
=
-
1
;
posix_ret
=
TranslateError
(
GET_ERRNO
);
return
;
}
auto
iter
=
open_sockets
.
find
(
socket_handle
);
...
...
@@ -449,8 +447,7 @@ static void Fcntl(Interface* self) {
#else
int
flags
=
::
fcntl
(
socket_handle
,
F_GETFL
,
0
);
if
(
flags
==
SOCKET_ERROR_VALUE
)
{
result
=
TranslateError
(
GET_ERRNO
);
posix_ret
=
-
1
;
posix_ret
=
TranslateError
(
GET_ERRNO
);
return
;
}
...
...
@@ -460,15 +457,13 @@ static void Fcntl(Interface* self) {
int
ret
=
::
fcntl
(
socket_handle
,
F_SETFL
,
flags
);
if
(
ret
==
SOCKET_ERROR_VALUE
)
{
result
=
TranslateError
(
GET_ERRNO
);
posix_ret
=
-
1
;
posix_ret
=
TranslateError
(
GET_ERRNO
);
return
;
}
#endif
}
else
{
LOG_ERROR
(
Service_SOC
,
"Unsupported command (%d) in fcntl call"
,
ctr_cmd
);
result
=
TranslateError
(
EINVAL
);
// TODO: Find the correct error
posix_ret
=
-
1
;
posix_ret
=
TranslateError
(
EINVAL
);
// TODO: Find the correct error
return
;
}
}
...
...
@@ -481,7 +476,7 @@ static void Listen(Interface* self) {
int
ret
=
::
listen
(
socket_handle
,
backlog
);
int
result
=
0
;
if
(
ret
!=
0
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
0
]
=
IPC
::
MakeHeader
(
3
,
2
,
0
);
cmd_buffer
[
1
]
=
result
;
...
...
@@ -504,7 +499,7 @@ static void Accept(Interface* self) {
int
result
=
0
;
if
((
s32
)
ret
==
SOCKET_ERROR_VALUE
)
{
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
}
else
{
CTRSockAddr
ctr_addr
=
CTRSockAddr
::
FromPlatform
(
addr
);
Memory
::
WriteBlock
(
cmd_buffer
[
0x104
>>
2
],
&
ctr_addr
,
sizeof
(
ctr_addr
));
...
...
@@ -545,7 +540,7 @@ static void Close(Interface* self) {
int
result
=
0
;
if
(
ret
!=
0
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
2
]
=
ret
;
cmd_buffer
[
1
]
=
result
;
...
...
@@ -589,7 +584,7 @@ static void SendTo(Interface* self) {
int
result
=
0
;
if
(
ret
==
SOCKET_ERROR_VALUE
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
2
]
=
ret
;
cmd_buffer
[
1
]
=
result
;
...
...
@@ -638,7 +633,7 @@ static void RecvFrom(Interface* self) {
int
result
=
0
;
int
total_received
=
ret
;
if
(
ret
==
SOCKET_ERROR_VALUE
)
{
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
total_received
=
0
;
}
else
{
// Write only the data we received to avoid overwriting parts of the buffer with zeros
...
...
@@ -673,7 +668,7 @@ static void Poll(Interface* self) {
std
::
vector
<
pollfd
>
platform_pollfd
(
nfds
);
std
::
transform
(
ctr_fds
.
begin
(),
ctr_fds
.
end
(),
platform_pollfd
.
begin
(),
CTRPollFD
::
ToPlatform
);
const
int
ret
=
::
poll
(
platform_pollfd
.
data
(),
nfds
,
timeout
);
int
ret
=
::
poll
(
platform_pollfd
.
data
(),
nfds
,
timeout
);
// Now update the output pollfd structure
std
::
transform
(
platform_pollfd
.
begin
(),
platform_pollfd
.
end
(),
ctr_fds
.
begin
(),
...
...
@@ -683,7 +678,7 @@ static void Poll(Interface* self) {
int
result
=
0
;
if
(
ret
==
SOCKET_ERROR_VALUE
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
1
]
=
result
;
cmd_buffer
[
2
]
=
ret
;
...
...
@@ -710,7 +705,7 @@ static void GetSockName(Interface* self) {
int
result
=
0
;
if
(
ret
!=
0
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
2
]
=
ret
;
cmd_buffer
[
1
]
=
result
;
...
...
@@ -724,7 +719,7 @@ static void Shutdown(Interface* self) {
int
ret
=
::
shutdown
(
socket_handle
,
how
);
int
result
=
0
;
if
(
ret
!=
0
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
2
]
=
ret
;
cmd_buffer
[
1
]
=
result
;
}
...
...
@@ -750,7 +745,7 @@ static void GetPeerName(Interface* self) {
int
result
=
0
;
if
(
ret
!=
0
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
2
]
=
ret
;
cmd_buffer
[
1
]
=
result
;
...
...
@@ -777,7 +772,7 @@ static void Connect(Interface* self) {
int
ret
=
::
connect
(
socket_handle
,
&
input_addr
,
sizeof
(
input_addr
));
int
result
=
0
;
if
(
ret
!=
0
)
re
sul
t
=
TranslateError
(
GET_ERRNO
);
ret
=
TranslateError
(
GET_ERRNO
);
cmd_buffer
[
0
]
=
IPC
::
MakeHeader
(
6
,
2
,
0
);
cmd_buffer
[
1
]
=
result
;
...
...
@@ -815,7 +810,7 @@ static void GetSockOpt(Interface* self) {
int
optname
=
TranslateSockOpt
(
cmd_buffer
[
3
]);
socklen_t
optlen
=
(
socklen_t
)
cmd_buffer
[
4
];
int
ret
=
-
1
;
int
ret
=
0
;
int
err
=
0
;
if
(
optname
<
0
)
{
...
...
@@ -830,9 +825,8 @@ static void GetSockOpt(Interface* self) {
// >> 2 = convert to u32 offset instead of byte offset (cmd_buffer = u32*)
char
*
optval
=
reinterpret_cast
<
char
*>
(
Memory
::
GetPointer
(
cmd_buffer
[
0x104
>>
2
]));
ret
=
::
getsockopt
(
socket_handle
,
level
,
optname
,
optval
,
&
optlen
);
err
=
0
;
if
(
ret
==
SOCKET_ERROR_VALUE
)
{
err
=
::
getsockopt
(
socket_handle
,
level
,
optname
,
optval
,
&
optlen
);
if
(
err
==
SOCKET_ERROR_VALUE
)
{
err
=
TranslateError
(
GET_ERRNO
);
}
}
...
...
@@ -849,7 +843,7 @@ static void SetSockOpt(Interface* self) {
u32
level
=
cmd_buffer
[
2
];
int
optname
=
TranslateSockOpt
(
cmd_buffer
[
3
]);
int
ret
=
-
1
;
int
ret
=
0
;
int
err
=
0
;
if
(
optname
<
0
)
{
...
...
@@ -862,9 +856,8 @@ static void SetSockOpt(Interface* self) {
socklen_t
optlen
=
static_cast
<
socklen_t
>
(
cmd_buffer
[
4
]);
const
char
*
optval
=
reinterpret_cast
<
const
char
*>
(
Memory
::
GetPointer
(
cmd_buffer
[
8
]));
ret
=
static_cast
<
u32
>
(
::
setsockopt
(
socket_handle
,
level
,
optname
,
optval
,
optlen
));
err
=
0
;
if
(
ret
==
SOCKET_ERROR_VALUE
)
{
err
=
static_cast
<
u32
>
(
::
setsockopt
(
socket_handle
,
level
,
optname
,
optval
,
optlen
));
if
(
err
==
SOCKET_ERROR_VALUE
)
{
err
=
TranslateError
(
GET_ERRNO
);
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment