Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×
It's funny.  Laugh. IT Technology

Mysterious Glitch Has Mazda Drivers Stuck on Public Radio (geekwire.com) 139

Drivers of certain vehicles in Seattle and other parts of Western Washington are shouting at their car radios this week. Not because of any particular song or news item that's being broadcast, but because an apparent technical glitch has caused the radios to be stuck on public radio station KUOW. From a report: The impacted drivers appear to all be owners of Mazda vehicles from between 2014 and 2017. In some cases the in-car infotainment systems have stopped working altogether, derailing the ability to listen to the radio at all or use Bluetooth phone connections, GPS, the rear camera and more. According to Mazda drivers who spoke with GeekWire, and others in a Reddit thread discussing the dilemma, everyone who has had an issue was listening to KUOW 94.9 in recent weeks when the car systems went haywire. KUOW sounded unsure of a possible cause; at least one dealership service department blamed 5G; and Mazda told GeekWire in an official statement that it identified the problem and a fix is planned.
This discussion has been archived. No new comments can be posted.

Mysterious Glitch Has Mazda Drivers Stuck on Public Radio

Comments Filter:
  • by Joe_Dragon ( 2206452 ) on Wednesday February 09, 2022 @03:27PM (#62253441)

    some kind of EBS / EAS auto tune that failed?

    • by TWX ( 665546 ) on Wednesday February 09, 2022 @03:32PM (#62253465)

      Last I heard it was literally a Bobby Tables [xkcd.com] incident. Something part of the radio broadcast data for that station is being taken as control-plane data by the infotainment system and b0rking it up.

      • That is hilarious and frightening at the same time. Wonder if the circuit has write access to the CAN bus?

        • by thegarbz ( 1787294 ) on Wednesday February 09, 2022 @04:37PM (#62253797)

          Everything connected to a CAN bus has write access to a CAN bus, just like everything connected to an ethernet network has write access to that ethernet network. The question is if any other device on the bus acknowledge what was written to it and what protocol was used.

          • by AmiMoJo ( 196126 )

            The infotainment is usually firewalled from the control can buses. It might get read only access to some of them if it needs to display days.

            • by TWX ( 665546 )

              There are vehicles where the driver's ability to change features in the body control module is done through the infotainment system. So it's not going to be as read-only as one might want.

              And I don't trust the developers creating either the infotainment system or the BCM to understand and properly implement security on that communications link.

          • You might think about the "shared bus" Ethernet from back when.

            Nowadays Ethernet devices are connected mostly point-to-point and it is possible to make a link rx- or tx-only (unidirectional). Such mode can be used for network analyzers/IPS etc.

      • Text buffer overflow? Corrupted text data broadcast by the station?

      • Mazda just sucks at cleaning their inputs. This podcast [99percentinvisible.org] deals about the problem their entertainment units have with Bluetooth streaming a podcast with a % sign in its name.
    • Probably an embedded text converter didn't protect against a buffer overrun or invalid data. From the article it sounds like a reboot loop.
    • by hey! ( 33014 )

      Most major public radio stations these days simulcast in HD-Radio, a digital format that uses the adjacent spectrum to their analog bandwidth to simulcast higher fidelity programming, alternative content and accessibility content like text for the hearing impaired.

      It is conceivable that some kind of code injection vulnerability exists in the Mazda entertainment system, since the only thing all the problem systems have in common is listening to this particular digital-enhanced station.

      • by omnichad ( 1198475 ) on Wednesday February 09, 2022 @03:51PM (#62253571) Homepage

        Even without HD Radio, there is encoded text that is sent on the analog signal that encodes the track name, artist, and even album art.
        https://en.wikipedia.org/wiki/... [wikipedia.org]

        • RDS has been used in europe since the 80s. You,d hope a decoder would be a solved problem unless some idiot decided he,d reinvent the wheel and got it badly wrong.

          • Wheels are constantly being reinvented in devices. Open Source? Can't use it because of legal issues. Commercial? Too expensive, or doesn't come with source code, or it's for an RTOS you don't have, etc. Even if you do get a third party library it will have bugs and you will need to adapt it to your platform, which means code changes. And the engineers fixing the problems are rarely the ones who chose the libraries - it's usually a pointy haired manager, or a noob who did a google search 10 years befor

            • Re: (Score:2, Informative)

              by tlhIngan ( 30335 )

              Commercial? Too expensive, or doesn't come with source code, or it's for an RTOS you don't have,

              Actually, in vehicles, there is only RTOS in use if you want to get anywhere. It's QNX. Everything runs on top of it, including infotainment. (Sure, the infotainment might use say, Android, but it's running as a guest VM under QNX host). Things like Android Auto or Apple CarPlay often use third party libraries built on QNX because it's standard.

              It wouldn't surprise me if it was an HD Radio issue - HD Radio is so

              • Android app: Yeah, very likely the radio control app runs entirely on Android in QNX's VM, and it's likely some half assed piece of shit that isn't broken enough for the user to notice under normal conditions.

                  Cobble it, looks good enough, ship it.

              • by Viol8 ( 599362 )

                Don't knock HD Radio until you've tried the Failfest that is DAB. Low bitrates, a lot of stations in mono (in the 21st century!) to save money on the huge multiplex fees, a recent(ish) codec change that doesn't work with any DAB radio made up until about 2010, slow retune so flicking between channels is pointless and lots of other issues.

              • Andriod auto and carplay arent even vm wafe they are a remote desktop /touchscreen bluetooth input/output from your device.

                That is why it is so popular. Google and apple can make updates and stuff and dont have the hadsle of updating every single infotainment system

          • Industrial automation programming patterns are very different from the ones that assume the full attack surface of being open to the Internet. Not that you trust the data, but certainly more assumptions are probably made. With all these broadcast systems being handled by supposed pros, bad data would hopefully be rare.

          • It wouldn't surprise me if this is exactly what happened.

              Maybe someone at the station also thought "eMoJiEz wOuLd lOoK sO kEwL!" on RDS displays, and the radio which likely does not sanitize data input freaked out upon recieving the non standard characters.

            • Forget Unicode. They don't even support ASCII despite using 8 bits per character. Although it could be that the encoder was fed bad data in ASCII or Unicode and still ended up broadcasting non-standard characters. Fixed code pages assigned to the radio at the factory. If you drive into a country that uses a different code page, it will be displayed in your own code page with totally different characters.

              I gave up trying to read further. The documentation almost seemed like a game for how needlessly com

          • RDS has been used in europe since the 80s. You,d hope a decoder would be a solved problem unless some idiot decided he,d reinvent the wheel and got it badly wrong.

            SQL was created in the 80s as well, that doesn't mean we don't have an endless string of injection vulnerabilities being exploited on the daily. But to you "reinvent the wheel" example, unless your code is at some point executing a call to a Fortran interpreter to run a function, you're almost certainly using something that has at some point been reinvented. As new languages come and go even old standards need to have interpreters and communications systems reinvented.

      • by sjames ( 1099 )

        It's even worse. Since I doubt the radio station was transmitting malicious digital content, the radios crashed over legitimate data transmitted.

        • by hey! ( 33014 )

          Yes, it would be very interesting to look at the packet and payload format. It could be the transmitter transmitting something out-of-spec that most receivers ignore, like "please allocate memory for the following _unreasonable_length_ byte message." Or it could be invoking a seldom used feature that most receivers ignore and that cruft never being taken out of the transmitter. Even if you look at the relatively simple standard like HTTP, it's chock-full of seldom used features.

        • by nasch ( 598556 )

          It doesn't have to be malicious to be malformed in some way.

          • by sjames ( 1099 )

            It could possibly be malformed, but it's still shameful for firmware to crash on merely malformed input that comes from a 3rd party. It shouldn't crash even if the input is malicious, of course.

            • by nasch ( 598556 )

              Oh certainly, that doesn't excuse Mazda by any means, but we can't be sure that the radio station didn't also do something it isn't supposed to.

  • by BobC ( 101861 ) on Wednesday February 09, 2022 @03:28PM (#62253443)

    One can hope there is a silver lining in this cloud.

    • by jfdavis668 ( 1414919 ) on Wednesday February 09, 2022 @03:51PM (#62253567)
      All things considered, it's not a bad idea.
    • I know you are making a joke... but KUOW has developed a bad reputation over the last decade or two. One somewhat recent episode - a few years ago they tried to pull a sneaky buy out of another local NPR station (KPLU, which is now KNKX) for what appeared to be underhanded reasons. So if any NPR station *were* to do something weird like bribe a car company to lock in their radios to a station, it'd probably be KUOW (no, I'm definitely not claiming that's what happened).

      • by fermion ( 181285 )
        There must have been some media consultant at the top of public radio that through the this was a good idea. My station also bought another a while back trying to split off and double contributions. In the end it was a huge waste of money, and also seemed to be an back door of getting rid of programming. Another example of losing by forgetting your core product b
      • And when the word gets out quick about what they have done, heads will roll.

          It's a stupid idea anyway, because nobody is going to put up with a radio is stuck on one station and they would try to get it fixed. And there is the possible criminal charges which first and foremost will get their FCC license revoked.

          There is no real payout for this, but the repercussions are dire.

  • Now if only (Score:5, Funny)

    by TWX ( 665546 ) on Wednesday February 09, 2022 @03:31PM (#62253455)

    Now if only this would happen to everyone with a lifted pickup truck...

    • Re: (Score:2, Funny)

      I would counter with, "If only this would happen to everyone with a Prius."

      But...

    • Imagine if someone modded a "Mr. Microphone" to haxxor those radios by sending bogus RDS data to change the station.

        Gangsta rap turns to country (or visa versa).

    • Lifted pickups are usually quite silly. But I want it to happen to the guys who can't shut their speakers off at the automated car wash. You're vacuuming your car; can't you live for five minutes without music? Especially if I have to listen to it?
  • by SomePoorSchmuck ( 183775 ) on Wednesday February 09, 2022 @03:32PM (#62253463) Homepage

    Event affects people living in Seattle...
    Discussion among affected people occurs on Reddit...

    I mean come on - is anyone actually surprised these particular radios were all tuned to NPR at the time?

    • The problem seems to have also occured while scanning through channels too. If there were regular public radio listeners then they wouldn't be complaining to loudly about it.

  • Hah, I wouldn't even have noticed if I drove one of these vehicles. I usually joke that my car could get stuck on Public Radio, and it would take me months to notice. I guess it finally happened!

    • by Calydor ( 739835 )

      Same here. My car's radio is tuned to a station playing mostly 80s-90s music with a few short news and traffic reports every half hour. Haven't changed the channel in years because why would I?

      • by Sique ( 173459 )
        I definitely would, because I am mostly driving long distance, so there is no warranty that any station will broadcast over the whole distance.

        Aside that, I never listen to stations playing a certain type of music all the time. I prefer stations with less music (none would be ideal).

        You see?

  • at least one dealership service department blamed 5G

    Fucking 5G!

    LOL

    • This proves that dealership technicians not only don't know how to fix cars, they don't understand terrestrial radio....
      • by TWX ( 665546 )

        Or they are so far up their own posteriors that they cannot differentiate reality from their own ideological echo-chamber.

      • It proves that dealers will make up any BS necessary to make the customer go away.

        I hope they eventually succeed at that goal.

      • I mean, I've literally had Mazda tell me that it's not their technician's job to troubleshoot and fix things. Go figure it was for the radio on a 2017 model that I'm STILL fighting with them over it freezing.

    • by Entrope ( 68843 ) on Wednesday February 09, 2022 @04:13PM (#62253681) Homepage

      Let's hope that nobody tells people that if their car stereo is stuck on public radio, it's because of a 5G vaccine microchip bug, and their car is trying to give them Covid autism.

      But 4chan probably already has.

    • My car radio is working fine but that's probably because I haven't had the covid vaccine.
    • 5G is the Swiss army knife of conspiracy theories.

        Voices in your head? Positive Covid test? Car breaks down? House burns down? Damn, it's gotta be 5G!

  • As you cruise around Lake Wobegon.
    • by TWX ( 665546 )

      Wait, Wait, Don't Tell Me that it's been a long time since you listened to Public Radio, but Whad'Ya Know?

  • by ve3oat ( 884827 ) on Wednesday February 09, 2022 @04:03PM (#62253625) Homepage
    This "mysterious glitch" is familiar to me. We have an HDTV set (Sony model KDL-26M4000) that will lock-up and refuse to turn on after we have watched the over-the-air Ottawa relay of a certain TV station in Toronto. The lock-up does not happen every time we watch Toronto's TVO station, but every time it has happened has been after we have watched TVO. Something "strange" in TVO's digital signal that causes some sort of reset/unset in the Sony circuitry?? Who knows ...

    The "cure" has been to leave the TV receiver turned off for several days and then to turn it on and quickly try to change the channel (away from TVO) during the TV's boot-up procedure. Sometimes it works, sometimes not. If not, wait and repeat.

    Most annoying! We have talked with others who have experienced the same problem, so it is not just our TV. We took the set to a local Ottawa repair shop and they tried to fix it but were unsuccessful. Shame on Sony.
  • by mmell ( 832646 ) on Wednesday February 09, 2022 @04:04PM (#62253631)
    Launch all Miata. For Greater Glory!
  • ...stuck on Fox "News"

  • Just like "The first duty of a prisoner of war is to escape", the first thing that goes in a new car is the A/V system.

    I had a really nice Mazda 6 with I couldn't get without a damn Bose and it was awful. The black magic they used to exercise that so I could get a decent deck was truly arcane.

    Not surprised that ANY OE stereo has issues like this once in a while - anyone get bit with the "I updated my Samsung blu-ray player and they pushed a bad file" bug?
    • by nasch ( 598556 )

      Is it even possible to replace a modern A/V system? They're so hooked into everything.

      • Is it even possible to replace a modern A/V system? They're so hooked into everything.

        It was ACTUALLY a double-din changeout with a facia remove. There were just components everywhere so you couldn't just "buy clips" and swap stuff out.

        My 2018 Impreza took a double-din as well; there's a very good pro audio shop where I live that did that setup for me - not cheap but so worth it. Their wiring looks like Ethernet porn . . . . straighter and cleaner than factory looms.

        • by nasch ( 598556 )

          What else is controlled by that besides audio? Backup camera? Any other vehicle functions?

  • Could be worse (Score:5, Insightful)

    by aerogems ( 339274 ) on Wednesday February 09, 2022 @05:31PM (#62253969)

    There are FAR worse radio stations you could have your radio stuck on than public radio. Their weekend programs can be quite entertaining and getting some fairly middle of the road news and commentary would benefit some people.

  • So... just radio then?

  • Back in the early 90s I had a 13 inch RCA color TV. It was a contemporary set.

    If I switched the set into one of the cable modes, and switched it to channel 96 while having an OTA antenna hooked up, the set would lock up for a long time on that channel, with all of the controls being unresponsive.

    I don't know what was being broadcast on 96, whose frequencies IIRC fell into the old high UHF TV broadcast band which was reallocated for cell phone and other radio services some years prior, but th

  • Have you shutdown and restarted your car?

There are two ways to write error-free programs; only the third one works.

Working...