Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-06-29 | mkfifo -Z | Rob Landley | |
2015-06-23 | Don't segfault if none of the file arguments to ls exists. | Rob Landley | |
2015-06-23 | Don't depend on malloc(0) to return non-null. | Rob Landley | |
2015-06-23 | Fix ls so spacing is right for ls -l, -o, -g, -og, -ogZ, -lZ, -gZ, and -oZ. | Rob Landley | |
2015-06-06 | Last grep commit broke non -r use of grep. Oops. | Rob Landley | |
2015-06-02 | Make "printf --" and "printf ---" work. | Rob Landley | |
2015-05-31 | Move the magic list of commands needing cleanup from toys/pending/README | Rob Landley | |
to greppable TODO annotations in the individual files. (grep -riw TODO) | |||
2015-05-28 | Attempt to fix the mkdir LSM race. | Rob Landley | |
Doing a world writeable mkdir and _then_ adding a label seems like a race window, so set the global "create stuff with these labels" context, then do the creates. | |||
2015-05-21 | ls -lZ wasn't putting a space before the xattr output. | Rob Landley | |
2015-05-21 | mkdir: Fix argument of option -Z | José Bollo | |
2015-05-20 | Make "grep -r regex" work on implicit "." if no files specified. | Rob Landley | |
2015-05-19 | Add -Z support to mkdir, based on a patch from Jose Bollo. | Rob Landley | |
I have no idea why -Z isn't showing up in mkdir --help when enabled, I need to look at that... | |||
2015-05-19 | Adapted patch from José Bollo to do the "tonight we're gonna api like | Rob Landley | |
it's 1999 and every path ever is from cwd or root" api versions for sockets and as a fallback of the open fails. There are still some holes (symlink to socket with -L will give you info about the symlink, not the socket, and symlink to a file you can't open will give you info about the symlink, not the file) but the correct fix is to make O_PATH work in the kernel for the LSM functions. (If we can read this data by path, we should be able to read it by O_PATH. We should not need two codepaths for this.) | |||
2015-05-18 | Switch id over to new infrastructure, switch id to use FORCE_FLAGS, and | Rob Landley | |
make lib/lsm.h auto-include from toys.h. | |||
2015-05-18 | Fix "ls -Z . toys" segfaulting, because preprocessing skipped. | Rob Landley | |
strwidth() got called on ->extra which was NULL. Had some other bad effects ala "ls -sk file1 file2 file3" ignored the -k. This should fix that too. | |||
2015-05-18 | Recent commit broke ls -R (test reversed), and "ls -R singledir" should | Rob Landley | |
show label: at the start (yes, even "ls -R" in an empty dir). | |||
2015-05-18 | More ls -Z upgrading. Move TOYBOX_SELINUX and TOYBOX_SMACK support from | Rob Landley | |
portability.h to new lib/lsm.h. Update ls.c to use it. Fix "ls . toys" (two directories when one is . or ..), which was filtering out the . as something we shouldn't recurse into even though it was explicitly listed on the command line. For some reason "ls -Z . toys" is still segfaulting though (but "ls -Z ." isn't), need to figure out why... | |||
2015-05-13 | Fix bug (len[7] wasn't zeroed if -Z off, thus -C overestimated entry lengths), | Rob Landley | |
and some cleanups while I was there. | |||
2015-05-10 | Cleanups of dirtree_start() calls. (Don't need to feed in flag values, just | Rob Landley | |
symfollow true/false.) | |||
2015-05-09 | Add DIRTREE_SHUTUP to disable dirtree warnings if file vanishes out from | Rob Landley | |
under traversal. Pass through full flag set in dirtree_add_node(), add dirtree_start() wrapper to provide symlink-only behavior (avoiding a lot of DIRTREE_SYMFOLLOW*!!(logic) repeated in callers). | |||
2015-05-06 | Re-enable catv command now that flag infrastructure is updated. | Rob Landley | |
2015-05-04 | Implement SELinux ls -Z support. | Elliott Hughes | |
This patch uses lgetfilecon rather than fgetfilecon because dirtree_parentfd always seems to return -1 in this function. If/when the SMACK code is fixed to work with dirtree_parentfd, I'll send a matching patch for SELinux. In the meantime, this works, and although ls -h is still on my to-do list, I think this patch is sufficient to let us replace toolbox ls with toybox ls. | |||
2015-04-30 | More ls cleanups from squinting at Jose's most recent smack patch. | Rob Landley | |
Behavior change in flags: allow -long to work together, and -l1 work like -l not -1. I didn't make ls -gCl remember the g, though. (Because -Cg and -gC take the last one: I'll preserve explicit state but not implicit state. And if -1Cl and -lC1 aren't going to behave the same, it wasn't consistent anyway.) | |||
2015-04-30 | Wild guess at cleaning up smack support. Don't have a test environment yet. | Rob Landley | |
2015-04-29 | ls: Add -Z (Smack) option | Jan Cybulski | |
Option triggers printing security context, for smack that is file's access smack label. Change-Id: I9054d9bcfe4d149e8fbfa0831b6ab50165d2bd91 Signed-off-by: Jan Cybulski <j.cybulski@samsung.com> Signed-off-by: José Bollo <jose.bollo@open.eurogiciel.org> | |||
2015-04-27 | Fix ls -s and -i indentation in -C and -x modes. (Spotted by Jan Cybulski.) | Rob Landley | |
2015-04-04 | To ensure that toybox can be installed alongside busybox without | Paul Barker | |
confusing update-alternatives, the paths of the links installed by toybox should match those installed by busybox. This is accomplished by changing the flags of a few tools within toybox. | |||
2015-03-29 | Fix head bug pointed out by felix janda (recent -123 code broke first file ↵ | Rob Landley | |
argument of -n). | |||
2015-03-28 | Fix sed bug David Halls hit trying to compile libiconv. | Rob Landley | |
2015-03-28 | Fix printf bug (%.s should be %.0s not %s) reported by Isabella Parakiss. | Rob Landley | |
2015-03-27 | tail: add old -123 support and comment out #-f until it's actually implemented. | Rob Landley | |
2015-03-21 | Another bug from David Halls: find -exec wasn't consuming its argument when ↵ | Rob Landley | |
it didn't activate. test: find . -name README -exec echo one '{}' ';' -or -exec echo two '{}' ';' | |||
2015-03-21 | install -D bugfix from David Halls. | Rob Landley | |
(I tweaked some comment text while I was there.) | |||
2015-03-19 | Add -123 support to head (suggested by Elliott Hughes). | Rob Landley | |
2015-03-13 | Clean up sort help text. | Rob Landley | |
Use tabs for option indent and don't have -g show up in menu (TOYBOX_FLOAT is the decision). | |||
2015-03-12 | Remove cat -v help text debris. | Rob Landley | |
2015-03-12 | The time command depends on floating point support. | Rob Landley | |
2015-03-12 | Make find accept numeric uid/gid, and simplify makedevs using the new ↵ | Rob Landley | |
infrastructure. | |||
2015-03-12 | Make install support numeric uid/gids (reported by Kylie McClain). | Rob Landley | |
2015-03-12 | Factor out xgetgrnamid() and xgetpwnamid() into xwrap.c. | Rob Landley | |
2015-03-10 | Use xsignal() instead of signal(). | Rob Landley | |
2015-03-06 | sed depends on -r to be rightmost flag to simplify the REG_EXTENDED test. | Rob Landley | |
(If a flag is 1, you can multiply it by the value you want and get that value else zero without a branch or conditional assignment.) So move -E one to the left so FLAG_r is 1 again, and add a [+Er] suffix instead of testing FLAG_r | FLAG_E in the users. | |||
2015-03-02 | On 64 bit, subtracting two pointers produces a long result. On 32 bit, it's ↵ | Rob Landley | |
an int. Even though long _is_ 32 bits on a 32 bit systems, gcc warns about it because reasons. Also, the warning being that "expects int, but type is wchar_t"... no, type is not wchar_t. Type is probably long. Specify the ACTUAL TYPE, not the random typedef alias for it. If the translated type _did_ match, there wouldn't be a warning! (This is why c89 promoted all arguments to int, precisely so this wasn't a problem.) | |||
2015-03-01 | Fix several printf_format warnings. | Rob Landley | |
2015-03-01 | Patches from Elliott Hughes to fix various printf() format strings. | Rob Landley | |
(Don't specify the space flag when it's the default behavior. The ifconfig stuff was actual bugs.) | |||
2015-03-01 | Patches from Elliott Hughes to add missing arguments to error_exit() calls. | Rob Landley | |
2015-03-01 | remove accidental space in format string | Elliott Hughes | |
the ' ' flag makes no sense for %c. | |||
2015-02-28 | BSD sed uses -E instead of -r to enable ERE. | Isabella Bosia | |
GNU sed silently supports -E as an alias for -r too. | |||
2015-02-15 | Add --remove-destination longopt for -F because the host version doesn't ↵ | Rob Landley | |
have a shortopt for it. | |||
2015-02-14 | Make egrep and fgrep build standalone. | Rob Landley | |