net_core.rs 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. use alloc::{boxed::Box, collections::BTreeMap, sync::Arc};
  2. use log::{debug, info, warn};
  3. use smoltcp::{socket::dhcpv4, wire};
  4. use system_error::SystemError;
  5. use crate::{
  6. driver::net::{Iface, Operstate},
  7. libs::rwlock::RwLockReadGuard,
  8. net::NET_DEVICES,
  9. time::timer::{next_n_ms_timer_jiffies, Timer, TimerFunction},
  10. };
  11. /// The network poll function, which will be called by timer.
  12. ///
  13. /// The main purpose of this function is to poll all network interfaces.
  14. #[derive(Debug)]
  15. #[allow(dead_code)]
  16. struct NetWorkPollFunc;
  17. impl TimerFunction for NetWorkPollFunc {
  18. fn run(&mut self) -> Result<(), SystemError> {
  19. poll_ifaces();
  20. let next_time = next_n_ms_timer_jiffies(10);
  21. let timer = Timer::new(Box::new(NetWorkPollFunc), next_time);
  22. timer.activate();
  23. return Ok(());
  24. }
  25. }
  26. pub fn net_init() -> Result<(), SystemError> {
  27. dhcp_query()?;
  28. // Init poll timer function
  29. // let next_time = next_n_ms_timer_jiffies(5);
  30. // let timer = Timer::new(Box::new(NetWorkPollFunc), next_time);
  31. // timer.activate();
  32. return Ok(());
  33. }
  34. fn dhcp_query() -> Result<(), SystemError> {
  35. let binding = NET_DEVICES.write_irqsave();
  36. log::debug!("binding: {:?}", *binding);
  37. //由于现在os未实现在用户态为网卡动态分配内存,而lo网卡的id最先分配且ip固定不能被分配
  38. //所以特判取用id为1的网卡(也就是virtio_net)
  39. let net_face = binding.get(&1).ok_or(SystemError::ENODEV)?.clone();
  40. drop(binding);
  41. // Create sockets
  42. let mut dhcp_socket = dhcpv4::Socket::new();
  43. // Set a ridiculously short max lease time to show DHCP renews work properly.
  44. // This will cause the DHCP client to start renewing after 5 seconds, and give up the
  45. // lease after 10 seconds if renew hasn't succeeded.
  46. // IMPORTANT: This should be removed in production.
  47. dhcp_socket.set_max_lease_duration(Some(smoltcp::time::Duration::from_secs(10)));
  48. let sockets = || net_face.sockets().lock_irqsave();
  49. // let dhcp_handle = SOCKET_SET.lock_irqsave().add(dhcp_socket);
  50. let dhcp_handle = sockets().add(dhcp_socket);
  51. const DHCP_TRY_ROUND: u8 = 10;
  52. for i in 0..DHCP_TRY_ROUND {
  53. log::debug!("DHCP try round: {}", i);
  54. net_face.poll();
  55. let mut binding = sockets();
  56. let event = binding.get_mut::<dhcpv4::Socket>(dhcp_handle).poll();
  57. match event {
  58. None => {}
  59. Some(dhcpv4::Event::Configured(config)) => {
  60. // debug!("Find Config!! {config:?}");
  61. // debug!("Find ip address: {}", config.address);
  62. // debug!("iface.ip_addrs={:?}", net_face.inner_iface.ip_addrs());
  63. net_face
  64. .update_ip_addrs(&[wire::IpCidr::Ipv4(config.address)])
  65. .ok();
  66. if let Some(router) = config.router {
  67. let mut smol_iface = net_face.smol_iface().lock();
  68. smol_iface.routes_mut().update(|table| {
  69. let _ = table.push(smoltcp::iface::Route {
  70. cidr: smoltcp::wire::IpCidr::Ipv4(smoltcp::wire::Ipv4Cidr::new(
  71. smoltcp::wire::Ipv4Address::new(127, 0, 0, 0),
  72. 8,
  73. )),
  74. via_router: smoltcp::wire::IpAddress::v4(127, 0, 0, 1),
  75. preferred_until: None,
  76. expires_at: None,
  77. });
  78. });
  79. if smol_iface
  80. .routes_mut()
  81. .add_default_ipv4_route(router)
  82. .is_err()
  83. {
  84. log::warn!("Route table full");
  85. }
  86. let cidr = smol_iface.ip_addrs().first().cloned();
  87. if let Some(cidr) = cidr {
  88. // 这里先在这里将网卡设置为up,后面等netlink实现了再修改
  89. net_face.set_operstate(Operstate::IF_OPER_UP);
  90. info!("Successfully allocated ip by Dhcpv4! Ip:{}", cidr);
  91. return Ok(());
  92. }
  93. } else {
  94. net_face
  95. .smol_iface()
  96. .lock()
  97. .routes_mut()
  98. .remove_default_ipv4_route();
  99. }
  100. }
  101. Some(dhcpv4::Event::Deconfigured) => {
  102. debug!("Dhcp v4 deconfigured");
  103. net_face
  104. .update_ip_addrs(&[smoltcp::wire::IpCidr::Ipv4(wire::Ipv4Cidr::new(
  105. wire::Ipv4Address::UNSPECIFIED,
  106. 0,
  107. ))])
  108. .ok();
  109. net_face
  110. .smol_iface()
  111. .lock()
  112. .routes_mut()
  113. .remove_default_ipv4_route();
  114. }
  115. }
  116. }
  117. return Err(SystemError::ETIMEDOUT);
  118. }
  119. pub fn poll_ifaces() {
  120. // log::debug!("poll_ifaces");
  121. let guard: RwLockReadGuard<BTreeMap<usize, Arc<dyn Iface>>> = NET_DEVICES.read_irqsave();
  122. if guard.len() == 0 {
  123. warn!("poll_ifaces: No net driver found!");
  124. return;
  125. }
  126. for (_, iface) in guard.iter() {
  127. iface.poll();
  128. }
  129. }