Could you please be more precise what you mean by ‘inserting’? Do you mean that when open a terminal and start typing a single command you are limited to 1030 characters (per command)?
Please add some ‘how to reproduce’ steps to your report.
Yup, same there (with Terminal and ToeTerm) - it’s BusyBox indeed. I can pass echo a string of 1024 characters, quotes included, any more characters simply isn’t allowed to be entered.
Using fish I was able to pass echo a string of 2808 characters no problem, quotes included, so that confirms it further.
It’s quite rare to hit this limit, but Whisperfish registration workaround constantly hits this issue (but it shouldn’t be needed anymore for vast majority).
This seems like a violation of POSIX ARG_MAX, which is at least 4096 characters, as well as a mismatch with the value returned by getconf ARG_MAX, which for me returns 524288.
Sounds like two bugs to me?
Applications should be able to blindly use commandline of upto 4k characters, and
Correctly implemented applications should be able to use commandline of upto 500k characters.
Ah, but process(kernel) ARG_MAX != shell input line length != terminal input line length.
No violation of POSIX (the kernel and SailfishOS are fine), terminal emulation is also fine - this is just a compile-time setting of the busybox shell.
Thanks for highlighting this @pherjung. From the discussion, it looks like it could be quite a straightforward thing to change. I’ve logged it internally and tagged it here as “tracked”.