Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Get tcp_info structure #2615

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Conversation

b-parikh
Copy link

@b-parikh b-parikh commented Mar 19, 2025

Implement TCP_INFO option for getsockopt.

What does this PR do

Checklist:

  • I have read CONTRIBUTING.md
  • I have written necessary tests and rustdoc comments
  • A change log has been added if this PR modifies nix's API

@b-parikh
Copy link
Author

Hello, it looks like the CI is failing for two reasons:

  1. A unit test is using the deprecated libc::SOCK_PACKET type.
  2. The tcp_info struct doesn't exist in the libc implementation of uClibc-ng.

The former is out of this PR's scope, so I won't address that here. However, I'd like advice on how to resolve the latter. Thank you!

@b-parikh b-parikh marked this pull request as ready for review March 19, 2025 05:40
@@ -1268,6 +1268,17 @@ sockopt_impl!(
libc::SO_EXCLBIND,
bool
);
#[cfg(target_os = "linux")]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi there

However, I'd like advice on how to resolve the latter.

If uClibc has that symbol, you can add it to the libc crate. Otherwise, we need to filter it out:

Suggested change
#[cfg(target_os = "linux")]
#[cfg(all(target_os = "linux", not(target_env = "uclibc")))]

Copy link
Author

@b-parikh b-parikh Mar 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Added tcp_info to the uClibc symbols in libc: rust-lang/libc@4a34937. It looks like the CI still isn't happy though, do you know if that's because the libc change isn't published to crates.io yet?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That PR rust-lang/libc#4347 added it to the main branch, Nix uses the libc-0.2 branch, so you need to ask the maintainer to backport it to this branch.

Once the backport PR gets merged, update the Cargo.toml file to use it from git:

nix/Cargo.toml

Line 31 in ea012be

libc = { version = "0.2.171", features = ["extra_traits"] }

- libc = { version = "0.2.171", features = ["extra_traits"] } 
+ libc = { git = "https://github.com/rust-lang/libc", rev = "the commit includes your libc PR", features = ... }

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Got it, thanks! I'll update this PR when the change is backported.

@SteveLauC
Copy link
Member

A unit test is using the deprecated libc::SOCK_PACKET type.

Will be addressed in #2610

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants