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

Add SNP Protocol #306

Closed
wants to merge 4 commits into from
Closed

Add SNP Protocol #306

wants to merge 4 commits into from

Conversation

cilki
Copy link

@cilki cilki commented Nov 4, 2021

First of all, thanks for this outstanding project. I have SNP networking partially implemented now, so here's a draft PR in case anyone tries to work on it before I'm done.

There's still a fair amount left (wrapper methods, documentation, test cases, final cleanup), but feedback is always welcome!

use crate::proto::Protocol;
use crate::{unsafe_guid, Result, Status};

/// The Snp protocol.
Copy link
Collaborator

Choose a reason for hiding this comment

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

Could you mention the full name of the protocol in the doc comment? A brief description line would also be nice, if possible

#[repr(C)]
#[unsafe_guid("a19832b9-ac25-11d3-9a2d-0090273fc14d")]
#[derive(Protocol)]
pub struct Snp {
Copy link
Collaborator

Choose a reason for hiding this comment

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

Some other protocols in the crate with "simple" in their name ended up with the noun part of the protocol name (e.g. SimpleTextOutput became just Output, GraphicsOutputProtocol became GraphicsOutput). What do you say about renaming this to something like Network?

Copy link
Author

Choose a reason for hiding this comment

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

What if someone wants to add the chapter 25 Managed Network Protocol (MNP) later on? Maybe it would be called ManagedNetwork?

That's fine with me. I'll re-spin this PR pretty soon with the new name and a bunch of other improvements.

Copy link
Collaborator

Choose a reason for hiding this comment

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

Hmm, I understand. So maybe SimpleNetwork (in comparison with ManagedNetwork) and just that? Again, since the Protocol part is kinda implied.

Copy link
Author

Choose a reason for hiding this comment

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

Yeah, that sounds good.

///
/// # Errors
/// * `uefi::Status::ALREADY_STARTED` The network interface is already in the started state.
/// * `uefi::Status::INVALID_PARAMETER` This parameter was NULL or did not point to a valid EFI_SIMPLE_NETWORK_PROTOCOL structure
Copy link
Collaborator

Choose a reason for hiding this comment

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

Since we're assuming this method is called from safe Rust with a valid protocol object, is this error case possible?

///
/// # Errors
/// * `uefi::Status::NOT_STARTED` The network interface has not been started.
/// * `uefi::Status::INVALID_PARAMETER` This parameter was NULL or did not point to a valid EFI_SIMPLE_NETWORK_PROTOCOL structure
Copy link
Collaborator

Choose a reason for hiding this comment

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

Same as above

Comment on lines 50 to 51
&mut *src_addr,
&mut *dest_addr,
Copy link
Collaborator

Choose a reason for hiding this comment

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

Trying to test the PR locally leads to some compiler errors here 🤔

@GabrielMajeri
Copy link
Collaborator

GabrielMajeri commented Dec 11, 2021

Thanks for the contribution @cilki! I've taken a quick look over your PR and left some comments/ideas based on what I've observed. Let us know when you think the feature is ready for a final review.

@cilki
Copy link
Author

cilki commented Dec 11, 2021

@GabrielMajeri Thanks for the early feedback!

I'm currently blocked on the test code. For some reason Transmit works fine, but Receive never actually gets a packet. I've messed with the receive filters and tried on physical hardware to no avail. I can't imagine it being a driver bug, so there must be something I'm missing.

Anyway, once I can figure that one out, I'll be able to finish the rest of this. Any debugging tips? Like maybe there's a way to run the driver under a debugger or get debug log output? Thanks!

@GabrielMajeri
Copy link
Collaborator

Any debugging tips? Like maybe there's a way to run the driver under a debugger or get debug log output? Thanks!

There's been some discussion towards how uefi-rs apps can be debugged on #289
There are some issues currently, but maybe the ideas in that thread can be of help 😅

@GabrielMajeri
Copy link
Collaborator

@cilki I've noticed you're making some changes to this PR. When you're finished, please remove the Draft label and feel free to ping me for a final review 😁

@cilki
Copy link
Author

cilki commented May 8, 2022

My use case for this fell through, so I'm not finding time to finish the testing. Hopefully someone can pick it back up someday.

@GabrielMajeri
Copy link
Collaborator

GabrielMajeri commented May 16, 2022

@cilki Understood. I'm closing this PR for now and opening #431 to track the future implementation of the SNP.

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