mod.rs 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. use alloc::sync::Arc;
  2. use smoltcp;
  3. use system_error::SystemError::{self, *};
  4. // pub mod raw;
  5. // pub mod icmp;
  6. pub mod common;
  7. pub mod datagram;
  8. pub mod stream;
  9. pub mod syscall;
  10. pub use common::BoundInner;
  11. pub use common::Types;
  12. // pub use raw::RawSocket;
  13. pub use datagram::UdpSocket;
  14. pub use stream::TcpSocket;
  15. pub use syscall::Inet;
  16. use crate::filesystem::vfs::IndexNode;
  17. use super::Socket;
  18. use smoltcp::wire::*;
  19. /// A local endpoint, which indicates that the local endpoint is unspecified.
  20. ///
  21. /// According to the Linux man pages and the Linux implementation, `getsockname()` will _not_ fail
  22. /// even if the socket is unbound. Instead, it will return an unspecified socket address. This
  23. /// unspecified endpoint helps with that.
  24. const UNSPECIFIED_LOCAL_ENDPOINT: IpEndpoint =
  25. IpEndpoint::new(IpAddress::Ipv4(Ipv4Address::UNSPECIFIED), 0);
  26. pub trait InetSocket: Socket {
  27. /// `on_iface_events`
  28. /// 通知socket发生的事件
  29. fn on_iface_events(&self);
  30. }
  31. // #[derive(Debug)]
  32. // pub enum InetSocket {
  33. // // Raw(RawSocket),
  34. // Udp(UdpSocket),
  35. // Tcp(TcpSocket),
  36. // }
  37. // impl InetSocket {
  38. // /// # `on_iface_events`
  39. // /// 通知socket发生了事件
  40. // pub fn on_iface_events(&self) {
  41. // todo!()
  42. // }
  43. // }
  44. // impl IndexNode for InetSocket {
  45. // }
  46. // impl Socket for InetSocket {
  47. // fn epoll_items(&self) -> &super::common::poll_unit::EPollItems {
  48. // match self {
  49. // InetSocket::Udp(udp) => udp.epoll_items(),
  50. // InetSocket::Tcp(tcp) => tcp.epoll_items(),
  51. // }
  52. // }
  53. // fn bind(&self, endpoint: crate::net::Endpoint) -> Result<(), SystemError> {
  54. // if let crate::net::Endpoint::Ip(ip) = endpoint {
  55. // match self {
  56. // InetSocket::Udp(udp) => {
  57. // udp.do_bind(ip)?;
  58. // },
  59. // InetSocket::Tcp(tcp) => {
  60. // tcp.do_bind(ip)?;
  61. // },
  62. // }
  63. // return Ok(());
  64. // }
  65. // return Err(EINVAL);
  66. // }
  67. // fn wait_queue(&self) -> &super::common::poll_unit::WaitQueue {
  68. // todo!()
  69. // }
  70. // fn on_iface_events(&self) {
  71. // todo!()
  72. // }
  73. // }
  74. // pub trait Socket: FileLike + Send + Sync {
  75. // /// Assign the address specified by socket_addr to the socket
  76. // fn bind(&self, _socket_addr: SocketAddr) -> Result<()> {
  77. // return_errno_with_message!(Errno::EOPNOTSUPP, "bind() is not supported");
  78. // }
  79. // /// Build connection for a given address
  80. // fn connect(&self, _socket_addr: SocketAddr) -> Result<()> {
  81. // return_errno_with_message!(Errno::EOPNOTSUPP, "connect() is not supported");
  82. // }
  83. // /// Listen for connections on a socket
  84. // fn listen(&self, _backlog: usize) -> Result<()> {
  85. // return_errno_with_message!(Errno::EOPNOTSUPP, "listen() is not supported");
  86. // }
  87. // /// Accept a connection on a socket
  88. // fn accept(&self) -> Result<(Arc<dyn FileLike>, SocketAddr)> {
  89. // return_errno_with_message!(Errno::EOPNOTSUPP, "accept() is not supported");
  90. // }
  91. // /// Shut down part of a full-duplex connection
  92. // fn shutdown(&self, _cmd: SockShutdownCmd) -> Result<()> {
  93. // return_errno_with_message!(Errno::EOPNOTSUPP, "shutdown() is not supported");
  94. // }
  95. // /// Get address of this socket.
  96. // fn addr(&self) -> Result<SocketAddr> {
  97. // return_errno_with_message!(Errno::EOPNOTSUPP, "getsockname() is not supported");
  98. // }
  99. // /// Get address of peer socket
  100. // fn peer_addr(&self) -> Result<SocketAddr> {
  101. // return_errno_with_message!(Errno::EOPNOTSUPP, "getpeername() is not supported");
  102. // }
  103. // /// Get options on the socket. The resulted option will put in the `option` parameter, if
  104. // /// this method returns success.
  105. // fn get_option(&self, _option: &mut dyn SocketOption) -> Result<()> {
  106. // return_errno_with_message!(Errno::EOPNOTSUPP, "getsockopt() is not supported");
  107. // }
  108. // /// Set options on the socket.
  109. // fn set_option(&self, _option: &dyn SocketOption) -> Result<()> {
  110. // return_errno_with_message!(Errno::EOPNOTSUPP, "setsockopt() is not supported");
  111. // }
  112. // /// Sends a message on a socket.
  113. // fn sendmsg(
  114. // &self,
  115. // io_vecs: &[IoVec],
  116. // message_header: MessageHeader,
  117. // flags: SendRecvFlags,
  118. // ) -> Result<usize>;
  119. // /// Receives a message from a socket.
  120. // ///
  121. // /// If successful, the `io_vecs` buffer will be filled with the received content.
  122. // /// This method returns the length of the received message,
  123. // /// and the message header.
  124. // fn recvmsg(&self, io_vecs: &[IoVec], flags: SendRecvFlags) -> Result<(usize, MessageHeader)>;
  125. // }