Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
en:reverse-engineering:jtag:start [2013/02/04 01:49]
alex [Links]
en:reverse-engineering:jtag:start [2013/02/18 22:40] (current)
alex [Links]
Line 1: Line 1:
 ====== JTAG Reverse Engineering ====== ====== JTAG Reverse Engineering ======
  
 +===== Introduction =====
  
 +JTAG is a rather ubiquitous technology for debugging and testing circuit boards, integrated circuits, and embeded software. ​ JTAG stands for Joint Test Action Group and the standard was initially developed to enable testing of assembled circuit boards. ​ With the invention of surface mount components and the continual increase in complexity and desnity of circuit boards, the JTAG interface allowed for non-intrusive testing of all of a board'​s connections at a cost of 4 pins per chip and a single JTAG header on the board.  ​
 +
 +This application of JTAG is called '​boundary scan' and it allows the JTAG TAP (test access port) on the chip to take control of all of its IO pins.  When multiple chips with JTAG TAPs are installed on a board, their JTAG interfaces can be daisy-chained into a JTAG scan chain. ​ This enables a single test connector on the board to access all of the JTAG controllable I/O pins at he same time, allowing boundary scan software to check all of the connections in the board'​s netlist for any faults.  ​
 +
 +Later on, JTAG was extended to also access the interior of the chip as well.  JTAG can be used on many chips for loading firmware and configuration information as well as debugging embedded software. ​ This makes JTAG a very powerful tool for not only manufacture but also development of complex circuitry. ​ With JTAG, a board can be tested and programmed in a sigle step during manufacture. ​ The same JTAG port can also be used for development and debugging of device firmware.  ​
 +
 +The capabilities of the JTAG TAP also make it a very good tool for reverse-engineering PCBs.  The ability to control the I/O pins of chips on a JTAG scan chain can be used not only to check a netlist, but also to reconstruct one.  The JTAG TAP can also be used to download firmware and configuration information for disassembly and further reverse-engineering.  ​
 +
 +===== Netlist Extraction =====
 +
 +Once a JTAG access port is located on a board, extracting a netlist is relatively straightforward. ​ Well, with the right tools, anyway. ​ The utility of having the netlist depends on the purpose of the board. ​ For some boards, the netlist is of little use.  However, some very good deals on boards with very large FPGAs on them pop up from time to time on eBay and other surplus and auction sites. ​ These boards can be used as very powerful FPGA development boards, but without information about the interconnections between the FPGAs, they are quite difficult to use.  When each FPGA is a BGA package with over 1000 pins and the board has 4 or more layers, the process becomes prohibitively tedious to perform manually. ​ The folks over at [[http://​nsa.unaligned.org/​|NSA@home]] used repurposed HD video transform boards loaded with FPGAs to build an MD5 hash cracking machine, and they developed a JTAG reverse-engineering tool called [[http://​nsa.unaligned.org/​jrev.php|jrev]] to expedite the prcess of extracting the netlist.  ​
 +
 +The process of netlist extraction is very simple. ​ Turn all the I/O pins to inputs, turn one on, look at all the pins, turn it off, look at all the pins again, and see what changed. ​ Repeat this for every JTAG accessible pin on the board. ​ The jrev tool does this for a parallel port JTAG cable, and the ftjrev tool does this for FTDI based USB jtag cables. ​ However, these tools can only find connections between JTAG enabled pins.  ​
 +
 +As the JTAG boundary scan functionality allows for access to the IO pins of the chips, it is possible to probe pins with external signal sources and sinks as well as other JTAG enabled pins.  I created a [[http://​github.com/​alexforencich/​ftjrev|github repository for ftjrev]] to store the modified code as well as the required device definition files.  ​
 +
 +===== ftjrev =====
 +
 +[[..:​..:​projects:​ftjrev:​|ftjrev]] is a powerful JTAG reverse-engineering tool.  When coupled with an FTDI based JTAG cable and connected to a target board, ftjrev can be used to extract a netlist of interconnections between JTAG enabled components. ​ Successful use of ftjrev also requires some general reverse-engineering;​ it cannot always be used in isolation to determine netlists without some extra work.  ​
 +
 +ftjrev performs four main functions: scanning for clocks, scanning for JTAG accessible connections,​ probing inputs, and probing outputs.  ​
 +
 +Please see the [[..:​..:​projects:​ftjrev:​|ftjrev]] page for instructions on installing and using ftjrev.  ​
  
 ===== Links ===== ===== Links =====
  
 +  * [[..:​..:​projects:​ftjrev:​|ftjrev]]
   * [[https://​github.com/​alexforencich/​ftjrev|ftjrev on github]]   * [[https://​github.com/​alexforencich/​ftjrev|ftjrev on github]]
   * [[http://​nsa.unaligned.org/​jrev.php|NSA@home jrev tool]]   * [[http://​nsa.unaligned.org/​jrev.php|NSA@home jrev tool]]
   * [[http://​www.ledz.co.kr/​arm/​USB_JTAG_A1/​main_USB_JTAG_A1_en.htm|LedZ.co.kr USB JTAG A1 cable]]   * [[http://​www.ledz.co.kr/​arm/​USB_JTAG_A1/​main_USB_JTAG_A1_en.htm|LedZ.co.kr USB JTAG A1 cable]]
   * [[http://​www.ledz.co.kr/​avr/​main_jtagisp_en.htm|LedZ.co.kr JTAG cables]]   * [[http://​www.ledz.co.kr/​avr/​main_jtagisp_en.htm|LedZ.co.kr JTAG cables]]
 +  * [[http://​dangerousprototypes.com/​docs/​Bus_Blaster|Bus Blaster JTAG cable]]