Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×
AMD Hardware Hacking Build Hardware

Hidden Debug Mode Found In AMD Processors 154

An anonymous reader writes "A hidden (and hardware password protected, by means of required special values in processor registers) debug mode has been found in AMD processors, and documented by a reverse engineer called Czernobyl on the RCE Forums community today. It enables powerful hardware debugging features long longed for by reverse engineers, such as hardware data-aware conditional breakpoints, and direct hardware 'page guard'-style breakpoints. And the best part is, it's sitting right there in your processor already, just read the details and off you go with the debugging ninja powers!"
This discussion has been archived. No new comments can be posted.

Hidden Debug Mode Found In AMD Processors

Comments Filter:
  • Why... (Score:1, Interesting)

    by Anonymous Coward
    don't they reveal this to the users?
    • Security? (Score:5, Interesting)

      by JSBiff ( 87824 ) on Friday November 12, 2010 @09:16AM (#34205796) Journal

      I wondered the same thing - if these debug features are useful to developers debugging their own software, why not market this as a feature? The only thing that occurred to me, is that, maybe there is some sort of security problem with this debug functionality? Does anyone know - could these debug features be used to do something like break Operating System security models, leading to privilege escalation issues, or for other nefarious purposes?

      • Re:Security? (Score:4, Interesting)

        by Anonymous Coward on Friday November 12, 2010 @09:25AM (#34205854)

        It is possible that the debug features are for their internal use and they don't quite work as intended. They may be useful as such, but if there are implementation bugs that require cumbersome work-arounds on the software side, it may be that they are waiting for a non-buggy implementation before publically documenting the features.

        It is also possible that they don't want to put the resources to documenting and supporting the debug features. After all, AMD is a small company compared to Intel and not that profitable. They even had some layoffs during the worst recession - what if they had to lay off the guys responsible for the debug mode?

        • Re:Security? (Score:4, Insightful)

          by TrisexualPuppy ( 976893 ) on Friday November 12, 2010 @09:33AM (#34205916)
          It's probably that AMD doesn't want to claim that they ever marketed the feature as such. If they did, it would put Intel up to create and release a debugging interface for their silicon. Then both would be forced into competing to produce a better debugging interface. This drives production costs up for a component that may be used by less than 1/100 of a percent of the users when they should have been putting their efforts elsewhere.
          • Re:Security? (Score:5, Insightful)

            by camperdave ( 969942 ) on Friday November 12, 2010 @09:48AM (#34206014) Journal

            it would put Intel up to create and release a debugging interface for their silicon.

            Maybe Intel already has a debugging interface on their silicon. This AMD interface has remained hidden for who knows how many years, why couldn't the same thing happen with Intel? After all, it's not as if just anyone can reverse engineer a CPU.

          • Re:Security? (Score:5, Informative)

            by TheRaven64 ( 641858 ) on Friday November 12, 2010 @10:09AM (#34206134) Journal
            Intel has provided debug registers for ages. You can have up to four hardware watchpoints in pretty much any Intel - and AMD - chip. TFA is Slashdotted at the moment, but 'hardware data-aware conditional breakpoints, and direct hardware 'page guard'-style breakpoints' can both be implemented on any chip since the 386.
            • Re:Security? (Score:5, Informative)

              by TheRaven64 ( 641858 ) on Friday November 12, 2010 @10:20AM (#34206216) Journal

              Okay, the site's still down but I found a cache:

              In fact, this is a fairly small incremental improvement over the existing hardware debugging support in x86 chips. It provides some extra control codes allowing the address in DR0 (one of the four registers i386 provides for hardware watchpoints) to do some slightly more clever things. For example, a watchpoint can be triggered on a partial match, rather than an exact match, to the address - this is really nice because it lets you put a watchpoint on the whole of any data structure that fits within a page. With the i386 watchpoints, you can only watch a single word with each register (4 words in total), while this means you can watch anything smaller than a page (and you can watch things bigger than a page by marking the page as no access, trapping the access, then unprotecting, single-stepping through the load / store, and continuing the process, which is how you implement watchpoints when you run out of debug registers).

              • Re:Security? (Score:5, Informative)

                by dch24 ( 904899 ) on Friday November 12, 2010 @12:40PM (#34207758) Journal
                Here's the site's text, since it's still down.

                Listed in categories X86 Internals Articles
                Most recent version 0.1
                Most recent release date November 11, 2010
                Description Super-secret debug capabilities of Atlon XP and better AMD processors

                Here unveiled by Czernobyl aka Czerno - Mail This

                PAGE IN CONSTRUCTION
                You can help Yes, YOU - Please DO correct grammar and other English language mistakes - Please add formatting, bold, italics... as needed for better accessibility - Please contact me over any errors inaccuracies complement to the technical contents - If you own a 64-bit AMD processor, please DO check and report any differences. Contents are intended to be released at a later time under liberal copyright copyleft options. Please do NOT make the contents available elsewhere BEFORE it is READY to be unleashed I retain the 'moral' ownership rights.

                TODO mucho...

                Summary AMD processors Athlon XP and better have included firmware-based debugging features that expand greatly over standard, architecturally defined capabilities of X86. For some reason though, AMD has been tightly secretive about these features hint of their existence was gained by glancing at CBID's page URL below . Herein will be uncovered what was found through direct experimentation, in the hope it may be useful to software developers, possibly included in future debuggers or debugger plug-ins. I'll use the term expanded for the capabilities covered here, since the term debug extensions was already taken. The item is WORK IN PROGRESS, but USABLE hence released AS IS Author can be contacted email, or PM, or public thread on the reversing board Note All addresses values are hexadecimal unless noted otherwise.

                The following four new machine specific registers MSR are involved in the expanded debug facilities. All those MSRs are password protected against casual access read write access RDMSR WRMSR to the registers is granted only if EDI holds the correct password value, viz. EDI 9C5A203A. Otherwise, a GPF exception occurs.

                All these registers default reset values are zero.

                • Control C001_1024 width 8 bits Data_Match
                • C001_1025 width 32 AMD64 64 Data_Mask
                • C001_1026 - ditto - Address_Mask
                • C001_1027 width 12 bits

                Let's start by looking at the Control MSR DbgCtrlMSR2, C001_1024 since it is the key to the new features. The low 8 bits can be set reset - only bit 0 and bit 1 will be examined here. The other bits had no effect in my preliminary, limited experimentation and will be left at zero. Readers are invited to further investigate report A - When Control 0 default , the AMD processor's debug firmware operates as defined by X86 architectural specs. In order to switch on the expanded debug capabilities, we must set Control MSR's bit 1. IOW, set Control 2 or 3, more on this later .

                B - When Control 2 binary 10 , the operation of any breakpoint defined in DR0 is modified as will be described. DR1 to DR3 breakpoints aren't affected at all . DR0-based breakpoint is now controlled by the new registers Addres_Mask, Data_Match and Data_Mask, in addition to DR7. General notions about the Mask MSRs both in Data_Mask and Address_Mask, a 1 bit means don't care .

                Formally, when a comparison of two values addresses needs to occur under mask, the Mask is ANDed to both and then the compare is done. A match occurs if the masked values are equal. A mask value of zero thus is equivalent to no mask. A mask of all ones makes match occur on just one value considering compare length . Note for Address_Masks, those only make sense that are binary zeroes followed by zero or more binary ones. Not sure if that is enforced by the AMD firmware Now let's examine expanded DR0-breakpoint operation Instruction breakpoints DR7 type 0 break occurs at any address which matches the BP address in DR0 under Address_Mask. Recall Address_Mask is significant to 12 bits only. Thus the widest possibl

                • I have no mod points ATM, and even if I did, well, you're already modded up as high as possible. So, I'll simply say, thank you.
        • Re: (Score:3, Interesting)

          by anotheryak ( 1823894 )

          Exactly, it's probably a bit of a kludge, and making it into a stable, documented, supported feature is going to be expensive with a lot of support and a small user base.

          I have modes like this in some of my own products, and sometimes I'm leery of even having some other people on my own team have access to the debug modes, because of the potential for disaster and a WHOLE lot of handholding from me.

          It's not worth the time it would take for me to set it up for broader use, and if I did, they would break thi

        • Re:Security? (Score:4, Insightful)

          by LordNimon ( 85072 ) on Friday November 12, 2010 @12:00PM (#34207228)

          It is possible that the debug features are for their internal use and they don't quite work as intended.

          Ding ding ding ding ... we have a winner!

          I work for a processor design company. If this feature is kept secret, it's because the company does not want to put in the resources to make sure it works completely on every chip. It probably uses lots of hacks and violates the architecture in some obscure way. AMD does not want customers depending on this feature and then insisting that it works for future design wins.

      • Re:Security? (Score:4, Insightful)

        by slashqwerty ( 1099091 ) on Friday November 12, 2010 @09:28AM (#34205882)

        Does anyone know - could these debug features be used to do something like break Operating System security models, leading to privilege escalation issues, or for other nefarious purposes?

        If there is some way to enable privileged instructions without using a privileged instruction it would completely circumvent operating system security.

        Perhaps the slashdotted site answers this but I have to wonder why not just have a separate opcode to turn the debugging on?

        • Re:Security? (Score:4, Informative)

          by makomk ( 752139 ) on Friday November 12, 2010 @10:23AM (#34206236) Journal

          Perhaps the slashdotted site answers this but I have to wonder why not just have a separate opcode to turn the debugging on?

          Because there's already a whole bunch of privileged MSRs that normal user code mustn't have access to - many of which are undocumented and processor-specific - so adding a few more is no big deal. Adding new opcodes, on the other hand, requires more work and risks them clashing with Intel's opcode choices at a later date.

          • Adding new opcodes, on the other hand, requires more work and risks them clashing with Intel's opcode choices at a later date.

            You mean like when they invented the 64 bit instruction set that intel is using today?

      • Re:Security? (Score:5, Insightful)

        by fuzzyfuzzyfungus ( 1223518 ) on Friday November 12, 2010 @09:28AM (#34205886) Journal
        Any CPU debug mode worthy of the name should be able to violate OS security six ways from Sunday, and silently at that, without any difficulty. By the same token, though, any CPU debug mode worthy of shipping in commercial silicon really ough to be possible for the firmware and/or kernel to lock for the duration of operation. If userspace can kick it off, a brave and exciting new world of AMD-specific malware is about to begin...
        • by Joe U ( 443617 )

          Wasn't this the whole reason for microcode updates? To turn off or fix broken features.

          Also, if it's triggered in userspace, the OS can block it.

          • Re: (Score:2, Insightful)

            by Anonymous Coward

            Also, if it's triggered in userspace, the OS can block it.

            Not if your OS is rooted. Or root-kitted. Or both.

            • Re: (Score:3, Insightful)

              by Joe U ( 443617 )

              Also, if it's triggered in userspace, the OS can block it.

              Not if your OS is rooted. Or root-kitted. Or both.

              That's already game over. If you own the OS, why would flipping the processor into a new mode help?
                You already own the security system.

              • Re:Security? (Score:5, Interesting)

                by TheLink ( 130905 ) on Friday November 12, 2010 @10:46AM (#34206454) Journal
                Say you own the OS but it is in a virtual machine.

                If flipping the processor into a new mode allows you to get out of the virtual machine and pwn the Host too, then yes it makes a difference.
                • Re: (Score:2, Interesting)

                  by Anonymous Coward

                  If an OS running on real hardware can block this call coming from user-mode then a hypervisor can block it coming from a VM. And if it can't be blocked you're p0wned either way. A virtual machine makes no difference.

                  • by TheLink ( 130905 )
                    The scenario I'm talking about is that you've managed to get "root" privileges in the virtual machine (presumably via some other exploit), and the only thing between you and pwning the Host is:

                    a) A VM config issue ( can talk to the host)
                    b) A bug in the VM software
                    c) A bug in the CPU or other hardware.

                    Whether this "Debug Mode" is equivalent to c) is what I'm talking about.
                • by Joe U ( 443617 )

                  Say you own the OS but it is in a virtual machine.

                  If flipping the processor into a new mode allows you to get out of the virtual machine and pwn the Host too, then yes it makes a difference.

                  Again, the VM host or hypervisor can easily block this exploit.

          • Re: (Score:2, Informative)

            by Anonymous Coward

            if it's triggered in userspace, the OS can block it.

            Not necessarily. Memory access can be blocked because the MMU controls what and where an application can write, transferring control to known code (the OS) on violations. Interrupts can be blocked because invoking them gives control to the OS. Priviliged instructions can be blocked because non-ring0 execution gives control to the OS.

            The OS can't choose to block for example the "xor" instructions in any reasonable way. It's possible by basically single-step

          • Re: (Score:3, Informative)

            by jimicus ( 737525 )

            IIRC, microcode updates are typically packaged as part of BIOS updates.

            Tell me, how many PCs - as a percentage of those sold - get their BIOS regularly updated?

            • Re: (Score:3, Informative)

              by tibit ( 1762298 )

              AFAIK they are packaged with every major linux distro out there, and I can't but presume that Windows ships with microcode patches as well.

              • Re:Security? (Score:4, Insightful)

                by wbo ( 1172247 ) on Friday November 12, 2010 @11:43AM (#34207022)

                AFAIK they are packaged with every major linux distro out there, and I can't but presume that Windows ships with microcode patches as well.

                Microcode updates for Windows machines are distributed through Microsoft Update and are downloaded and installed automatically if automatic updates is enabled (and it is enabled by default). No BIOS update required.

                An example of such an update can be found by looking at Microsoft KB936357 [microsoft.com]

        • Any CPU debug mode worthy of the name should be able to violate OS security six ways from Sunday...

          Any security model worthy of the name would be agnostic to whether the CPU was in user mode or debug mode. While there is always the risk of a bug or a security hole, I can assure you that anything that goes into the chip goes in under the scrutiny of the security model. I know of many instances where some debug or test feature was not implemented because there was some potential threat to the security model.

      • Re: (Score:1, Interesting)

        by Anonymous Coward
        Yeah, security of DRM or TPM is probably easier to compromise (instead of taking several months to break a new DRM system it would take days since reverse engineering can be done much faster)... Which also is an obvious reason they would want to hide this feature to avoid pressure from certain groups.
      • by Jurily ( 900488 )

        Does anyone know - could these debug features be used to do something like break Operating System security models, leading to privilege escalation issues, or for other nefarious purposes?

        Exactly my thoughts as well. Perhaps if these features were documented, and compilers and kernels were written with these features in mind, they would be insanely helpful. This way, however, it's just a back door wide open.

      • by xtal ( 49134 )


        Does anyone know - could these debug features be used to do something like break Operating System security models, leading to privilege escalation issues, or for other nefarious purposes?

        Depending on how it is implemented, yes. Usually these operating modes require specific timing or hardware ports that are wired in silicon.

        If they've got software overrides, possible timing chase conditions to trick timing, then yes, oh snap indeed.

      • by Shark ( 78448 )

        I guess this [slashdot.org] research is going to come in handy for some people if you're right. I'm hoping you're wrong though, the number of ways such an exploit could go wrong makes my head spin.

      • Re: (Score:2, Informative)

        by Anonymous Coward

        I used to work for a processor emulator tools company called Applied Microsystems Corp, Redmond WA. now defunct.
        Up thru processors type 68040 emulations tools could be mounted external to the processor chip and performed the functions mentioned ( hardware breakpoints, memory maps, all register shadowing, soft and hard breakpoints, etc, all the things that you need to perform basic computer system development. As the complexity of the systems increased beyong those early 8/16/32 bit cpu, all those hardware f

      • NSA key? Generally speaking, if a company spends money on something it expects a return. Putting those "debug" features into silicon costs money so why don't they advertise them? I only see three likely reasons: security (can't be secured), doesn't work (oops!), government backdoor.
        • I only see three likely reasons: security (can't be secured), doesn't work (oops!), government backdoor.

          I see at least one more: intended for internal testing, not guaranteed to work the same on all processors, AMD's not interested in guaranteeing that it works the same on all processors, and AMD's not interested in dealing with users whining that it doesn't work the same on all processors.

      • Such debug features circumvent any lower-level security completely.
        Even if the debug features can only be enabled from hardware (avoiding the obvious malware risk), then existence of such features is fundamentally incompatible with existence of such issues as secure drivers (like HDMI encryption or copy checks on DVD's, securom style), DRM even by use of hardware dongles, etc.

      • by dvdme ( 1458155 )
        That is a very interesting point. I recall that when I did some work programming directly to a processor in Assembly, while using the debug mode I was able to break the execution and change any register to another value and then resume it. I know that this was just a school project and the processor I used isn't as complex as an AMD processor is but if the same principle applies, then your comment makes a very good point.
      • by mikael ( 484 )

        Anything to do with paging and interrupts could be a security vulnerability - some kernel processing has to go on in order to update process states. Being able to interrupt the process at the point just after getting kernel ring permission and before interrupts are disabled would be a dream, but probably just a theoretical one. Usually, it would be an atomic process, you couldn't do one without the other, but with these instructions, who knows...

        Our OS theory courses covered early OS's which had a messed-up

    • Re: (Score:1, Redundant)

      by Waffle Iron ( 339739 )

      don't they reveal this to the users?

      Probably because then they'd have to fully document the features and test them thoroughly on each new chip, which would likely cost them quite a bit more than developing the features in the first place.

      They would also be saddled with supporting backwards compatibility in future chips, since it becomes hard to remove publicly-accessible features in a CPU once they've been added.

  • can you harden the processors from the Slashdot effect?
  • by TrisexualPuppy ( 976893 ) on Friday November 12, 2010 @09:11AM (#34205754)
    One of my pals at NVIDIA was talking about this in a generic sense. Evidently, all of the big design houses have reverse engineering departments where they scrape down to the silicon and get things running. They never make any public info, but it's crazy what kind of logic blocks they find on silicon.

    These exist on "all processors" as ways to test the processors and increase yield cheaply. The moment that the engineering samples go out, competitors get their hands on them, and it's only days or weeks before they figure out what's really going on. Kind of cat-and-mouse.
    • by TrisexualPuppy ( 976893 ) on Friday November 12, 2010 @09:19AM (#34205826)
      By the way, here's a guy who does this in his spare time [bunniestudios.com]. He may not have the $10+ million budget that the big boys have, but it should give you a little context as to what really happens in industry.

      (As the original article was instantly slashdotted, I can only guess that the AMD exploit was found through software avenues.)
    • by mikael ( 484 )

      The Silicon Zoo [fsu.edu] website which shows what kind of artwork the layout engineers like to add to any unused area of silicon die..

    • Re: (Score:3, Insightful)

      by GWBasic ( 900357 )

      They never make any public info, but it's crazy what kind of logic blocks they find on silicon.

      Sometimes scraping can tell simpler things, like an accurate estimate about how much profit a company is making on a chip, and thus how much money the company will have to invest in its next generation of chips.

  • by ThreeGigs ( 239452 ) on Friday November 12, 2010 @09:11AM (#34205756)

    Apparently the debugging process doesn't help to combat the effects of a thorough slashdotting.

    • Re: (Score:3, Interesting)

      by Danathar ( 267989 )

      yea, why stories continue to be posted with direct links instead of using things like coral cache is beyond me. If you KNOW the site you are going to link to can't handle a slashdot load then DON'T LINK DIRECTLY TO IT.

      Of course this does not include sadistic evil people who enjoy watching websites crash and burn (probably a sizable but not large percentage portion of the slashdot community)

      • by fiendy ( 931228 )
        Ah yes, I've seen this before...the typical way this is done is to hide the article behind at least three blog posts, thereby decreasing the chance that anyone will actually RTFA.
        I believe that's how it usually goes right?
    • No kidding? Running debug mode doesn't speed things up?

      I'm so patenting this secret to making Java speedy... then I'll own Oracle!

  • http://www.woodmann.com.nyud.net/collaborative/knowledge/index.php/Super-secret_debug_capabilities_of_AMD_processors_ [nyud.net]!

    may not work until SOMEBODY uses the coral cache and is able to see the site (and thus cache it for the first time)

  • by pyalot ( 1197273 ) on Friday November 12, 2010 @09:17AM (#34205808)
    Since TFA is down by now, and I can't get the exact details... does this mean that any program running and setting the right bits in the right registers can get "processor root" access to everything the processor does, irrespective of any security constraint the OS may place on that process? Oh dear
    • Haha, that would have been hillarious. All that security and someone compromising it with a simple 6letter pass :D

    • by Eil ( 82413 ) on Friday November 12, 2010 @09:57AM (#34206054) Homepage Journal

      Not a security hole. This debug mode is not some kind of eleet hax0r backdoor. It's for debugging the processor and microcode.

      It's the OS responsibility to ensure that normal applications can't simply do whatever they like directly to the hardware, including the CPU.

      • by Jurily ( 900488 )

        It's the OS responsibility to ensure that normal applications can't simply do whatever they like directly to the hardware, including the CPU.

        Unless of course the CPU is in a mode the OS doesn't know about.

      • Re: (Score:2, Insightful)

        Ultimately it's the CPU which implements the security at the instruction and memory level. The OS only tells the CPU what code should run under which security context.

      • it still meets the open sesame requirements of the NSA.
      • It's the OS responsibility to ensure that normal applications can't simply do whatever they like directly to the hardware, including the CPU.

        Even though it's the OS's responsibility to ensure normal applications can't simply do whatever they want, the CPU needs to provide the necessary functionality. If the CPU allows writing to some register and provides no method of protecting that write, and that write causes anything that normally would not be allowed, then the OS can do bugger all about it.

        • by Eil ( 82413 )

          That's true, but irrelevant. The debug mode doesn't do an end-run around the machine's entire hardware and software security stack as so many posters were implying. By the time you have a chunk of executable code on your machine trying to set specific registers to specific values, all of the security measures in place up to that point have failed. Malicious code is malicious code and it does not need special access to some obscure CPU feature in order to do damage.

    • Re: (Score:3, Insightful)

      by Smallpond ( 221300 )

      Since TFA is down by now, and I can't get the exact details... does this mean that any program running and setting the right bits in the right registers can get "processor root" access to everything the processor does, irrespective of any security constraint the OS may place on that process?

      Oh dear

      Any program that can read and write to any processor register already has complete access to everything on your computer. The reason this is secret is not to protect your data, its to protect AMD's secrets.

    • Re: (Score:2, Interesting)

      by pyalot ( 1197273 )
      Just hypothethically, given the information we have from the summary, what's the worst case scenario?

      - The debugmode is worthy of its name, i.e. can bypass any ring and OS restriction
      - It cannot be turned on or off in the bios or with a pin, since it is undocumented
      - It is on by default
      - The bit combination to set resides in usual working registers and can be triggered by usual computation by native code or in any bytecode interpreter (javascript, java etc.) of your choice when carefully targeting the
    • No, TFA said (before it went down) that some registers have to be filled with defined values through hardware means to enter debug mode. In short, you won't stumble into it. And neither will any harmful software.

  • To state the obvious: Chernobyl, or Czernobyl as is referred to in the polish language, is a very well known nuclear disaster site. Those crafty Polish are starting to make a name for themselves in the computer industry.

  • by digitaldc ( 879047 ) * on Friday November 12, 2010 @09:18AM (#34205818)
    Hidden for a reason? Do they not want Nvidia to see this?
  • by leptechie ( 1937384 ) on Friday November 12, 2010 @09:18AM (#34205822) Homepage
    I'm actually surprised to find out that everyone's surprised. I've been hacking routers and now work for a telco surrounded by disassembled set-top boxes, and both have serial and JTAG interfaces abundant. Many require soldering, so in that respect it's "hidden" from customers. Maybe: - It's often more expensive to engineer these things out of the test systems to ready for production - and just maybe it's still actually useful especially as you peer deeper into the GHz to get more performance from an existing design.
    • I'm just guessing, as the site is still inaccessible, but it sounds like this is a set of debug functionality beyond what you'd get with the normal debug registers or with a JTAG interface. AFAIK modern desktop/server processors still have JTAG interfaces (not just SoC, embedded type processors). Sure JTAG interfaces are often 'hidden' as you say... maybe there's a footprint there but you have to solder on some flying leads or a connector.. but without knowing about these new registers you still wouldn't be

      • I'm not suggesting this is a JTAG interface, perhaps my title is misleading. I'm suggesting it's "hidden" in the same way these hardware debug interfaces (both standardised like JTAG or other more obscure interfaces) appear "hidden" to people who don't do hardware/firmware mods. As I mentioned in the first line, I'm surprised everyone's surprised, these are immensely complex parts that sometimes need a root-of-roots, this sounds like just the thing AMD or any other manufacturer would have designed in.
        • I'd say password protected and undocumented is far more hidden than a unpopulated footprint marked 'jtag' (I know I know, not all hardware debug i/faces are always that obvious either :-)
          But yeah, no one should be particularly surprised... these are ridiculously complex chips and would be impossible to develop and debug (the chip that is, not software for it) without extra hidden circuitry.

    • Re: (Score:1, Interesting)

      by Anonymous Coward

      It's not the same thing. Virtually every microcontroller has JTAG support and nobody would be surprised to find a JTAG interface in an embedded device. It would be very well documented in the datasheets. It's no big deal to find an unpopulated serial or JTAG header in a production device. These aren't manufacturer secrets -- they are well-known debugging interfaces provided for the benefit of the device developer.

      AMD's proprietary debugging features are a different story -- features not intended for the

  • by Anonymous Coward

    http://webcache.googleusercontent.com/search?q=cache:EzsEFcoAZDAJ:www.woodmann.com/forum/archive/index.php/t-13891.html+amd+hardware+debugging+features&cd=5&hl=en&ct=clnk&gl=uk

  • So this could be enabled in the kernel and/or gcc/gdb in the near future? That would be convenient for debugging. Unfortunately the link is still blocked, so the details on enabling this is still hidden.
  • I bet (Score:1, Redundant)

    Someone will find something similar in Intel chips as well.
  • by Menacer ( 222952 ) on Friday November 12, 2010 @10:13AM (#34206176)

    Based solely on the Google cache of the forum post describing this (linked above), there's no need to go into hysterics. For hardware and systems geeks, this is very cool. It's an extension of the existing x86 debug registers (DR0-7) that allows you to set a debug watchpoint that only fires when specific data is loaded in.

    There are a lot of researchers and tool builders that would love to have this because it would allow them to take a watchpoint fault whenever they only when they have a specific value from a specific location. For instance, let's say that every so often you get a null pointer exception at a specific address. However, if you current go into gdb and set 'watch 0x{address}', you're going to take a breakpoint every single time that pointer is accessed.. Wouldn't it be great to do something like 'watch 0x{address} NULL' and only stop your debugger whenever 0 gets written into that address?

    That's what the forum posts imply, at least. "Guys, I've reversed this in part... breakpoints defined in DR0 can be made to fire only on data match (under optional mask), plus masking of any or all of 12 low address bits ! Works also for I/O break points, provided CR4_DE is set, of course !"

    I would wager that this is not a large security concern. Access to DR7 is restricted to ring 0, and therefore enabling debug breakpoints must be done by the operating system. While extremely interesting (I wish I could read more!), Czernobyl appears to be describing a modification to debug breakpoints that are already enabled.

    • Surely a good debugger can already do that...ie. When it hits a breakpoint it checks what value is being written and continues if it's not right.

      The fact that this is 'hardware' doesn't seem like much of a win to me.

      • by Menacer ( 222952 ) on Friday November 12, 2010 @10:41AM (#34206406)

        Sure, but it's much faster to do it in hardware. This is the whole reason data watchpoints exist (See, for instance, the paper "Some Requirements for Architectural Support of Software Debugging" by Mark Scoctt Johnson from ASPLOS-I), as you could technically have your debugger put address & data checks around every memory access, but that leads to completely unacceptable overheads. It's faster to let the hardware check the addresses in parallel with regular execution and take a fault only if you touch the watchpoint.

        Similarly, if the hardware will check the value before taking a debug interrupt to the kernel and subsequently signaling/scheduling of the debugger, it will be much, much faster than performing all that and then have the debugger check the address & throw this particular interrupt away before continuing execution. That constant interrupt cycle can cause 10,000x or more slowdowns if you're constantly accessing a value & taking bad watchpoints on it.

      • by deKernel ( 65640 ) on Friday November 12, 2010 @11:02AM (#34206604)

        If you are an application developers, I would agree with you. Any decent debugger should allow you to set a conditional breakpoint, but I am not sure if you can say that for kernel debuggers which are very different animals typically.

        • by jamesh ( 87723 )

          One of the best things about the windows operating systems is the kernel debugger! It can do all of that and more.

    • by Menacer ( 222952 ) on Friday November 12, 2010 @10:34AM (#34206336)

      Oh, and the summary's description, "hardware data-aware conditional breakpoints, and direct hardware 'page guard'-style breakpoints", matches up with the line I copied & pasted from the forum post. I previously described the "hardware data-aware conditional breakpoints"where you can make hardware take a fault if an address of a memory operation is matched && the value of the memory operation matches. Looking through my notes, embedded Power ISA (Book III-E) processors also let you set value-dependent watchpoints using the Data Address Compare (DAC) Registers. I'm not sure about other ISAs.

      The second party of the summary's statement refers to to 'page guard'-style breakpoints. This is referenced by Czernobyl's "masking of any or all of 12 low address bits". Again, this is a very interesting extension of the x86 debug registesr, which only allow debug watchpoints of size 1, 2, 4, or 8 bytes (and the latter only in certain microarchitectures & modes) However, by masking out the low 1--12 bits of the address into don't-cares, it's possible to set watchpoints anywhere from 1-4096 bytes, limited to powers-of-two and size-alignment. This is cool from an x86 standpoint, but ARM, MIPS, and Itanium (off the top of my head) already do this.

      Suffice it to say, the stuff that Czernobyl found is very cool in relation to x86, especially if these facilities were officially released to the public at any point in the future. However, it's very unlikely to cause any kind of AMD-only viruses or other scary security concerns. These features exist on other ISAs without any kind of world-shattering problems. :)

    • However, if you current go into gdb and set 'watch 0x{address}', you're going to take a breakpoint every single time that pointer is accessed.. Wouldn't it be great to do something like 'watch 0x{address} NULL' and only stop your debugger whenever 0 gets written into that address?

      If you can set a hardware breakpoint, then you can do the conditional in software, only slower. So this sounds like hardware acceleration, which is very useful, as it can make something go from way too slow to no speed hit at all.

  • Turns out they implemented an entire flight simulator in hardware :P
  • Methinks this could be very useful in defeating many types of DRM. I'm thinking in particular DRM implementations similar to CSS, AACS, BD+, etc. Could this spell the end of DRM for once and for all? One can hope! Any experts care to elaborate (I'm no software developer nor a CPU engineer)?

  • Remember Robert Collins and how he reverse engineered the ICE mode of old Intel processors?

BLISS is ignorance.

Working...