• cmnybo@discuss.tchncs.de
    link
    fedilink
    English
    arrow-up
    23
    arrow-down
    2
    ·
    6 months ago

    Ubuntu is already immune to the 2038 bug. The Linux kernel even supports using a 64 bit time_t on 32 bit systems now. Of course some poorly written software could still be affected, but that’s not the fault of the kernel or operating system.

    The 2038 bug will certainly cause problems in some embedded systems that still use a 32 bit time_t if they are still running by then.

    • r00ty@kbin.life
      link
      fedilink
      arrow-up
      16
      ·
      6 months ago

      It’s not poorly written software if it’s is old. Likewise the y2k bug is often declared as bad programming, but at the time the software with the y2k bug was written memory was measured in kilobytes and a lot of accounting software and banking software was written in a time when 64k was the norm. Oh, and I’ll tell you now I know of at least some accounting software that is based on code written for the 8088 and has been wrapped and cross compiled so many times now it’s unrecognisable. But I know that 40 year old code is still there.

      So 2 digits for year was best practice at the time and at the time software vulnerable to the 2038 bug 32bit epoch dates was the best practice.

      Now, software written today doing the same, could of course be considered bad, but it’s not a good blanket statement.

      • ipkpjersi@lemmy.ml
        link
        fedilink
        arrow-up
        1
        ·
        6 months ago

        I mean, Ghost Recon Wildlands which came out in 2017 for example has save dates written as a 32-bit date so it’s prone to the 2038 bug, I set the date to 2040 and tested a bunch of software and while you can save the date overflows and shows as 1969. I bet there are still people using 32-bit dates even if unintentionally.

        • r00ty@kbin.life
          link
          fedilink
          arrow-up
          3
          ·
          6 months ago

          I mean, technically you could use unsigned 32bit if you don’t need to handle dates before 1970. But yes, the best course of action now is to use 64bits. The cost is pretty much nothing on modern systems.

          I’m just cautious of people judging software from a time with different constraints and expectations, with the current yardstick.

          I also wonder what the problem will be. People playing ghost recon in 2038 are going to be “retro” gaming it. There should be an expectation of such problems. Would it prevent you loading or saving the file is the question?

          • ipkpjersi@lemmy.ml
            link
            fedilink
            arrow-up
            1
            ·
            6 months ago

            Nope, saving and loading works on that game (and pretty much every other game I tested), it’s just you lose the date display in-game so you don’t know when you really last saved.

            • r00ty@kbin.life
              link
              fedilink
              arrow-up
              3
              ·
              6 months ago

              Yeah, that’s my point. It’ll be a retro game by 2038 and anyone playing it will know it’s “one of those quirks”

              The bigger problem is software where the date really matters.