mirror of
https://github.com/asterinas/asterinas.git
synced 2025-06-23 09:23:25 +00:00
52 lines
2.0 KiB
Rust
52 lines
2.0 KiB
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
use super::SyscallReturn;
|
|
use crate::{
|
|
fs::{file_handle::FileLike, file_table::FdFlags},
|
|
net::socket::{
|
|
ip::{DatagramSocket, StreamSocket},
|
|
unix::UnixStreamSocket,
|
|
},
|
|
prelude::*,
|
|
util::net::{CSocketAddrFamily, Protocol, SockFlags, SockType, SOCK_TYPE_MASK},
|
|
};
|
|
|
|
pub fn sys_socket(domain: i32, type_: i32, protocol: i32) -> Result<SyscallReturn> {
|
|
let domain = CSocketAddrFamily::try_from(domain)?;
|
|
let sock_type = SockType::try_from(type_ & SOCK_TYPE_MASK)?;
|
|
let sock_flags = SockFlags::from_bits_truncate(type_ & !SOCK_TYPE_MASK);
|
|
let protocol = Protocol::try_from(protocol)?;
|
|
debug!(
|
|
"domain = {:?}, sock_type = {:?}, sock_flags = {:?}, protocol = {:?}",
|
|
domain, sock_type, sock_flags, protocol
|
|
);
|
|
let nonblocking = sock_flags.contains(SockFlags::SOCK_NONBLOCK);
|
|
let file_like = match (domain, sock_type, protocol) {
|
|
(CSocketAddrFamily::AF_UNIX, SockType::SOCK_STREAM, _) => Arc::new(UnixStreamSocket::new(
|
|
sock_flags.contains(SockFlags::SOCK_NONBLOCK),
|
|
)) as Arc<dyn FileLike>,
|
|
(
|
|
CSocketAddrFamily::AF_INET,
|
|
SockType::SOCK_STREAM,
|
|
Protocol::IPPROTO_IP | Protocol::IPPROTO_TCP,
|
|
) => StreamSocket::new(nonblocking) as Arc<dyn FileLike>,
|
|
(
|
|
CSocketAddrFamily::AF_INET,
|
|
SockType::SOCK_DGRAM,
|
|
Protocol::IPPROTO_IP | Protocol::IPPROTO_UDP,
|
|
) => DatagramSocket::new(nonblocking) as Arc<dyn FileLike>,
|
|
_ => return_errno_with_message!(Errno::EAFNOSUPPORT, "unsupported domain"),
|
|
};
|
|
let fd = {
|
|
let current = current!();
|
|
let mut file_table = current.file_table().lock();
|
|
let fd_flags = if sock_flags.contains(SockFlags::SOCK_CLOEXEC) {
|
|
FdFlags::CLOEXEC
|
|
} else {
|
|
FdFlags::empty()
|
|
};
|
|
file_table.insert(file_like, fd_flags)
|
|
};
|
|
Ok(SyscallReturn::Return(fd as _))
|
|
}
|