-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
make_ext4fs: init at unstable-2017-05-21 #67744
Conversation
Thank you for your contributions.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm really not a C expert, but this mostly seems fine to me, except for some style notes and possible changes. Have you asked upstream what they think of this?
+{ | ||
+ /* Index in uuid */ | ||
+ int u = 0; | ||
+ for (int i = 0; i < UUID_STR_LEN-1; i++) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The rest of this codebase seems to declare int i
before the loop. Apparently doing it the way you do here is a C99 feature, which they might be trying to avoid.
+ if (i == 8 || i == 13 || i == 18 || i == 23) { | ||
+ strcpy(result+i, "-"); | ||
+ } | ||
+ else { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
They seem to be using } else {
instead of putting it on a separate line.
+ } | ||
+ for (int i = 0; i < UUID_STR_LEN - 1; i++) { | ||
+ if (i == 8 || i == 13 || i == 18 || i == 23) { | ||
+ /* Skip hyphens */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead of this "empty if -> else", you could just be doing an if !(). Not sure what's better style, though.
printf(" Inode size: %d\n", info.inode_size); | ||
printf(" Label: %s\n", info.label); | ||
+ if (info.with_uuid) { | ||
+ char uuid[UUID_STR_LEN] = ""; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You could use char uuid[UUID_STR_LEN] = { 0 };
to initialize char arrays.
+ strcpy(result+i, "-"); | ||
+ } | ||
+ else { | ||
+ /* This writes \0 at the end of every invocation */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It also writes the actual value there? Why this comment?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this was me being confused at needing to use 3 as the length of the write.
Oh, forgot about this. At the moment I tried getting it touch with upstream on their recommended and got literally no response. Well partly false, I didn't post on the wrong mailing list, but maybe I should have to be told where to post instead. It's a project under the OpenWRT organization, but it is unclear how to contribute. |
19a57c4
to
b9f161c
Compare
Thanks for the review! I have addressed all comments I believe. See mobile-nixos/mobile-nixos#156 for a more understandable diff of the patches, since the force push updated quite a bunch since I rebased on top of current unstable. |
This seems to suggest it appeared in AOSP before being imported into OpenWRT. Did you get some way to contact the current developers? If there's no mailing list, maybe just send them an email ;-) |
Yes, it was made for AOSP before being made a part of LEDE, and now OpenWRT. (I still don't like mailing lists, so I've been masterfully procrastinating.) |
I marked this as stale due to inactivity. → More info |
I still don't think we should ship these patches in-tree, but send them upstream and @samueldr can you push them upstream and then update the expression, so this can be merged? |
I marked this as stale due to inactivity. → More info |
Can I do something to help this PR getting merged, it would be nice to have increased reproducibility for |
OpenWRT went through a weird phase in the past few years with LEDE forking off, and then merging back. Then, as far as making things more reproducible, that is another goal: we probably want to invest in better expressions to make disk images, rather than just update the multiple messy ones we have. Though that is another goal for another time. |
This is part of #203641 effort (unifying |
Don't bother, there is no upstream anyway. |
Motivation for this change
The upstream tools for ext4 does not create reproducible images.
make_ext4fs
, from the OpenWRT project (initially from the now merged LEDE project) is recommended by Reproducible Builds for the purpose of reproducibly producing ext4fs filesystems.This is needed if we want
sd_image
to be reproducible. This is also work needed towards mobile-nixos.Things to do
I have written a patch adding support to specify an UUID. I do not think I should be trusted with bare C. I want both stylistic review (though desire it to be good for use upstream) and a security review. Though, I figure the security issues are likely of extremely low severity, if any. I may have done a off-by-one or two in the code, though from testing if there are they are benign.
This is the only reason this PR is a draft. The quality of the patches are still unknown. Once the patches have been reviewed I will do the process with upstream to get them upstreamed.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nix-review --run "nix-review wip"
./result/bin/
)nix path-info -S
before and after)Of note: I have a test harness in the image-builder work for mobile-nixos which tests software. It will continue testing it while I expand the scope of the image building. Additionally, that image-builder infra is intended to be upstreamed in NixOS proper.