• End of Line

    J.C. Nelson06/28/2020 at 21:08 1 comment

    Everything is merged. Marlin auto-builds for the Tronxy (chitu) boards. And this log concludes this project. Happy hacking, everyone.

  • Full Marlin Support

    J.C. Nelson06/11/2020 at 23:21 1 comment

    A flurry of activity over the last few days has brought us to the end of the road with this project. Marlin 2.0 now has support for the chitu boards in bugfix-2.0.x, and I opened a PR that will enable disk based updates that should be done soon. THe disk based updates required a bit more reverse engineering, because the bootloader leaves hardware in a half-initialized state. Since DMA drops receive buffers straight at the beginning of RAM, I had to write some custom initialization code to turn off interrupts, clear devices and reset the system. Soon, building Marlin will be as simple as "pio run -e chitu_f103" and copying over the update.cbd to an SD card.

    It's been fun...

  • A few updates coming

    J.C. Nelson06/03/2020 at 04:04 2 comments

    I discovered problems in my chitucypt script, and figured out why encrypted firmware didn't load more than once. It turns out, the firmware stores the file key in the I2C EEPROM, which is why if you attempt to flash the same data over and over, it won't. I've also found some truly odd behavior that I can work around by padding the EEPROM, but I can't explain. My suspicion is that the file key is not entirely random - it indicates something about the size of the file or the blocks. The problem with this theory is that i can roundtrip a Chitu firmware, flashing it with a truly random key, and it works.

    I simply don't know, yet. I can't debug the board, but I binary patched the bootloader to replace error messages with some values, and I suspect something is going wrong with the CRC...I just don't know what yet.

    Also, someone has successfully ported Marlin, using LCD and touch screen - 

    https://github.com/MrPoke21/Marlin-Chitu-board-support

    This is not my code, but I built it and flashed it using he STM32Cube programmer to 0x8000000 and it works. It's not the new Canvas based LCD code there's a PR out for, but it's Marlin, and it works.

  • Project nearing completion...

    J.C. Nelson10/13/2019 at 01:31 1 comment

    I don't actually own an X5S or any variant thereof - I just have a disembodied mainboard and screen I've been using to do my projects. With the last bit of code from my previous log, I was able to build a script to allow generation of encrypted binaries for Chitu firmware while building in platformio.

    I've now submitted a pull request to Marlin to enable this. After it's done, it will add an environment. It is *not* a complete Marlin build, but if you read the linked items in that PR, there are people who claim to to have working builds with all but the touch screen, so the key here is to get my bit in and let other people do theres. We'll need some pin updates by someone who has the printer.

    With that there's really only a few more things left to do.

    I would like to get a dump of the default firmware and rip the bootloader off - then I'll re-encrypt it so people can restore their printers.

    And that will be the last of it.

  • Marlin 2.0 on a Tronxy X5S/Chitu Mainboard - Video

    J.C. Nelson09/26/2019 at 18:42 1 comment

    Here we have proof that the custom code does in fact work. Marlin with no SD/LCD boots just fine, and at least the Y pins are correct.

    What does this mean? This project is near to completion, I think. I'll try to verify the other pins, find the LEDs, fans, and runout sensors, but the goal here was to break the encryption and let us load whatever we want. I don't own an X5S, so it's not like I can do the iterative testing that is needed to develop a configuration.h for the printer. So...we near the end. Just a few pins to run down and so on.

  • Victory! Custom code on a Chitu board

    J.C. Nelson09/24/2019 at 19:45 1 comment

    The picture is not all that awesome. It's the obligatory "hello" program.

    What's cool is that it's running on a Tronxy/Chitu main board with a stock bootloader, meaning that you don't need ST-links, the STM32CubeProgrammer, or anything else to flash it. And if you don't like it, you can always go back.

  • Decryption, Encryption, and CRC validation

    J.C. Nelson09/23/2019 at 23:19 0 comments

    Since my last update, I successfully added support for encrypting data such that round-trip produces identical files. Once I did this, I proceeded to make a minimal build of Marlin, figuring I could jump straight into working.

    No dice. I can get the existing bootloader to flash data on. It turns out that it's storing data in the I2C eeprom regarding what's flashed, and won't re-flash the exact same firmware. You have to swap revisions to flash from one to the next, and I think the file key is what is used to figure out if it's the same thing. Since I use a known good file key right now, that doesn't work.

    The resulting Marlin build flashes but never starts, and that lead me to notice a few details I hadn't seen before.

    1. The Marlin build using STM32DUINO produces an NVIC with no reserved entries. I do not know why.

    2. A super short firmware does NOT flash correctly. I don't know how many blocks are required, but an arduino sketch compiled for a generic F103 (which according to ST is bit-compatible) will not flash - it hits the error handler almost immediately.

    3. There's a debug flag stored in ram at 0x2000000. If it's true, the bootloader traces operations. I have no way to enable it. I know the bootloader goes looking for a file that ends in .GCX but I don't know what it actually does.

    4. Timer8 appears to be used to drive the speaker/buzzer.

    The ST Arduino core doesn't have a variant for 103Z, so I have nothing to compare it to, yet, but I do see there's a feature request for a 103Z variant that's waiting.

    So...right now, I need to do some round-trip tests I didn't think of before. I'll decrypt a known good firmware and re-encrypt it with a different file key. If this flashes on and boots up correctly, my encryption script is doing the right thing.

    Now...if that's the case, what do we think is happening?

    Well, with the M200 and Lerdge, I learned that the bootloader often interferes with the process of overwriting *everything* and re-initializing. I'll have to test a custom version which disables all interrupts (not needed in any normal boot up) and re-initializes, then turns on something like the onboard LED.

  • Decryption Success

    J.C. Nelson09/22/2019 at 04:11 0 comments

    After quite a bit of creating and re-creating python functions to XOR the data together, I finally switched disassemblers and got a mildly different output - different enough that it showed me r12 being used in a way that I hadn't grasped before.  With some work, I was able to decrypt Chitu/Tronxy firmware of several flavors, at least enough that Binary Ninja shows me complete functions, literal pools line up, and so on.

    I'll add the script to the files section of this project. Next up will be to encrypt the same way and do a few end-to-end conversions and diff the resulting files. When those come back identical, it's time to try some custom firmware, probably starting with the classic "Make an LED blink."

    Tonight, I'm just happy to be able to decrypt the firmware and confirm I understand how the bootloader works with it.

  • Chitu CRC, Explained, and some details on the XOR encryption

    J.C. Nelson09/21/2019 at 03:52 0 comments

    With some work, I've figured out how the Firmware CRC works.

    The first 3 DWORDS of the file are, in order:

    A signature - must be 

    0x443D2D3F

    The XOR CRC of all DWORDS after the header

    An encryption seed

    To calcuate the CRC, begin with a seed of  0xef3d4323. XOR each subsequent byte with this.

    In production, it's highly likely that the way this works is that they write the header first, calculate the XOR value of the firmware, and the final XOR is with the seed, resulting in what's written to the header.

    Now, moving on to the XOR encryption. 

    Here's the code that does it, taken from Binary Ninja

    Here's the call:

    The operation pretty much only operates in blocks of 0x800. 

    The first two parameters appear to be the data from the  encrypted file and a working buffer which is where the data is written to.

    The third parameter is the block counter, which goes up as blocks are decrypted.

    The file size is fixed, and I believe the last parameter is the encryption seed.

    The problem is, my python implementation of this never seems to actually use different values, so I'm missing something obvious.  

  • Don't Be Like Me: (The easy way to decrypt the firmware)

    J.C. Nelson09/19/2019 at 04:57 0 comments

    So, I may have noted that the Chitu board exposes Boot0. It's also a much later variant of the STM32F103, with FSMC support. I posted in one of the Tronxy facebook groups looking for dead boards to desolder so I could trace down SWD and see if there was an easier way to get at the flash.

    But....

    It turns out, there's no need to do this. As someone pointed out, all you have to do is pull the BOOT jumper, restart the board, and it comes up in DFU mode.

    And read protection is NOT set.

    Suffice it to say I extracted the Chitu bootloader. The encryption is complex (it is some sort of rolling encryption), but the firmware loads at 0x800880 (at least, that's where the bootloader tries to start it). There's a couple of things about this:

    1. I've heard there's no firmware image from the Tronxy. There could be relatively easily.

    2. We can get Marlin up and running just using DFU. I would still like to reverse engineer the bootloader to allow people to update without using the STM32CUBE programmer, but in essence, any DFU update will work.

    So...I sort of spent a lot of time looking at hex dumps for nothing.

    I mean, looking at hex dumps is always amusing, but I could have taken the fast train to getting the bootloader to disassemble. Sigh.