-
Notifications
You must be signed in to change notification settings - Fork 135
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
2.10.3 #692
Comments
I ran into this comment, thought to share it here: #624 (comment) |
Take this one #593 too? |
@vassilit Just to align: were you planning to look into #687 or shall I have a stab at it? |
Yes
Go ahead :)
Which ones ?
|
Hmmmmm.... seems to be a rebase thing when I merged his branch on top of my local rmlint master. |
And more recent tests (mostly addressing regressions) which are not part of #603 are also still using nose. |
TODO for the release: fix *64 calls, use |
@sahib Hello, could you recap in two words what was wrong with libc fts ? What was the rational for importing musl/NetBSD ? |
Yeah... I have tried it but it doesn't work for me at this point. I thought I noticed something but that was a red herring. I have seen that cebtenzzre also tinkered with it. It may have introduced a problem with the generated bootstrap file. Not sure yet. |
The idea behind my question would be to simplify the codebase. E.G. using openssl and libc when possible and concentrate on rmlint own features. I don't think maintaining own hash implementations in rmlint makes sense, and we miss on many architectures optimisations. |
Doesn't look like that? It doesn't work on As a side note: it also doesn't work on macOS and by the looks of it the |
This bug has been fixed, I'm sure of it. It was due to a C-string written to disk including its NULL-termination byte.
That's another bug, but distribution-specific it seems, as the GUI runs fine on my system (it is installed in |
What are you using as distribution? |
(and yes, I agree with the null terminator fix) |
As rmlint is a swiss-army knife, I sometimes use it a bit everywhere, FreeBSD, Debian, Centos, macOS, Raspberry Pi OS, etc. |
I got GUI to work on my Ubuntu 24 when applying the full build stack for GI. I did run into a default configuration issue which results in rmlint not actually scanning but the Gui just implies it is done. Have to get the exact situation clear, though. I don't get it to work on macOS (15) and I tried several recommendations and it keeps its Either way: it is clear that the GUI part needs attention across the board. I am planning to test with a fresh OS (Ubuntu & Pi OS) to see how that behaves, at this stage it is a bit hard to tell which problem I see is related to my messy environment or a |
I noticed this warning in the builds:
I am not sure this is ignored on purpose or just not enforced by the current settings? |
This is accounted for. There used to be In the next lines, we check for truncation:
This is not ideal, but better than before and maybe enough for 2.10.3. What do you think ? |
In the future, we could see if strncpy() could be replaced by our own simpler function as: /* simpler strcpy implementation without the downsides of strncpy and strlcpy */
static bool rm_strcpy(char *dst, const char *src, size_t len) {
for (size_t i = 0; i < len; i++)
if ('\0' == (dst[i] = src[i]))
return true;
return false;
} |
Thanks for the clarification. |
We could add a _PRAGMA for the time being? But maybe that is too much effort for little gains. |
Not a lot, but we must check every case. 11/03 21:23 vt@luga ~/dev/contrib/rmlint% git grep strncpy
lib/cmdline.c: strncpy(size_spec_copy, size_spec, sizeof(size_spec_copy)-1);
lib/cmdline.c: strncpy(format_name, pair, sizeof(format_name)-1);
lib/cmdline.c: strncpy(format_name, extension, sizeof(format_name)-1);
lib/cmdline.c: strncpy(format_name, pair, MIN((long)sizeof(format_name), separator - pair));
lib/cmdline.c: strncpy(cfg->rank_criteria, criteria, sizeof(cfg->rank_criteria)-1);
lib/formats/progressbar.c: strncpy(self->last_eta, eta_info, sizeof(self->last_eta) - 1);
lib/pathtricia.c: strncpy(iter->path_buf, path, PATH_MAX);
lib/utilities.c: strncpy(diskname, entry->fsname, sizeof(diskname)-1);
lib/utilities.c: strncpy(diskname, entry->fsname, until_slash);
lib/utilities.c: strncpy(diskname, "unknown", sizeof(diskname));
lib/utilities.c: strncpy(diskname, entry->fsname, sizeof(diskname)-1); |
Ignoring the false-positive warning would give: #pragma GCC diagnostic push
#ifndef __clang__
#pragma GCC diagnostic ignored "-Wstringop-truncation"
#endif
strncpy(iter->path_buf, path, PATH_MAX);
#pragma GCC diagnostic pop Not very clear. |
You're already half-way changing the function itself 🤣 |
I have been tinkering with the badges on the readme.rst:
I also noticed the Any comments on the result? |
Could you test #710 and tell me if it works for you ? |
I think the GUI uninstall needs verifying. For reference: #710 (comment) |
Installing GUI should be seamless for a user. For reference: #710 (comment) |
Discussions about what should go to the next (yet unnamed) bugfix release.
The text was updated successfully, but these errors were encountered: