This is kind of a rant, but mostly a plea.

There are times when BusyBox is the only tool you can use. You’ve got some embedded device with 32k RAM or something; I get it. It’s the right tool. But please, please, In begging you: don’t use it just because you’re lazy.

I find BusyBox used in places where it’s not necessary. There’s enough RAM, there’s more than enough storage, and yet, it’s got BusyBox.

BusyBox tooling is absolutely aenemic. Simple things, common things, like - oh, - capturing a regexp group from a simple match are practically impossible. But you can do this in bash; heck, it’s built in! But BusyBox uses ash, which is barely a shell and certainly doesn’t support regexp matching with group capture. Maybe awk? Well, gawk lets you, with -oP, but of course BusyBox doesn’t use GNU awk, and so you can’t get at the capture groups because it doesn’t support perl REs. It’d be shocking if BusyBox provided any truly capable tools like ripgrep, in which this would be trivial. I haven’t tried BB’s sed yet, because sed’s RE escaping is and has always been a bizarre nightmarish Frankenstein syntax, but I’ve got a dime riding on some restriction in BB’s sed that prevents getting at capture groups there, too.

BusyBox serves a purpose; it is intentionally barely functional; size constraining trumps all other considerations. It achieves this well. My issue isn’t with BusyBox, it’s with people using it everywhere when they don’t need to, making life hell for anyone who’s trying to actually get any work done in it.

So please. For the sanity of your users: don’t reach for BusyBox just because it’s easy, or because you’re tickled that you’re going to save a megabyte or two; please spare a thought for your users on which you are inflicting these constraints. Use it when you have to, because otherwise it doesn’t fit. Otherwise, chose a real shell, at least bash, and include some tools capable of more than less than the bare minimum.

  • @pastermil
    link
    English
    23 days ago

    I got OpenWRT on my home router and I’ve never had this issue. I guess I just never have that advanced of a use case for its command line.

    You’re also free to install bash (or other sh) if space allows.

    • Yeah, I need to figure that part out. I’m getting familiar with uci at the moment, but I need to dig into what package management is available. There’s enough space to install bash -plenty if ash wasn’t there - but probably not enough to compile bash on the device.

      Anyway, my original post wasn’t about OpenWRT. I’ll get what I need to do done, one way it another. It’s just that I keep (rarely, but mor than once) encountering these ultra-pared down BusyBoxen in places where it’s not necessary to have ultra-minimalism.

      Several people have responded already as if I’m complaining about OpenWRT; one even suggested I “learn Lua, dummy,” because Lua is available in OpenWRT.

      I’m not complaining about OpenWRT. I’m asking developers to think twice about micro-BB builds in their products. Does it really need to be that small?

      • @pastermil
        link
        English
        3
        edit-2
        2 days ago

        Yeah I hear you. While I personally never fell like it’s that severe of functional limitations, I am aware on how stripped down busybox is. I’m also aware that some systems lives off 4MiB of flash and 32MiB of memory, so if you ask that question, you might get the answer “yes, it is necessary”.

        Meanwhile, if you have the luxury to install bash (or other full-featured shell), then that’s one option to consider. You seem lime you’re familiar with UNIX shell, and Lua is a whole new language. The Lua interpreter that comes by default might be stripped down as well anyway.

        • I agree, there are places where a totally stripped down BB makes sense; I’m not arguing that. I’m arguing against stripped down BB when it isn’t necessary.

          Also: Lua is 1.536MB on my system. Bash is 1.1MB. I don’t know how big ash is, because I didn’t easily find the sources for it, but even if it were half the size of bash, replacing ash with bash would make the cost of adding bash only 0.6MB - a third of including Lua. If you think you have enough space for Lua, you probably have enough space for bash instead of ash.

          And you be able to do normal scripting with proper regexp support and not forcing your users to learn another language just to hack together a small solution.

          I want to thank you for a calm, reasoned, sympathetic discussion about something that’s currently, actively irritating me and making my responses more… acidic… than they should be.

          • @pastermil
            link
            English
            12 days ago

            I do get where they’re coming from with Lua. With luci (the web interface), Lua must be installed as it’s a requirement. However, it might be the stripped down version as well (AFAIK). Also, if you know bash & coreutils already, it might be counterproductive to have to learn something new.

            I’m just glad that I could help. It’s not fun to get stuck in such technical roadblock.

            • Yup!

              On the OpenWRT issue, I ended up hacking a solution up in Lua, which won’t help the next time I encounter an issue with a limited BB in something that isn’t OpenWRT. And, in a month I won’t remember the tiny bit of Lua I learned, because this is the first and probably last time I’ll be forced to use it.

              Nothing against Lua, per se; I’d just prefer to keep working with ubiquitous standards for simple stuff, and use strongly typed compiled languages for anything nontrivial.