How does bytecode get verified in the JVM? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T22:31:54Zhttp://stackoverflow.com/feeds/question/755005http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/755005/how-does-bytecode-get-verified-in-the-jvm8How does bytecode get verified in the JVM?Thomman Yacob2009-04-16T06:42:37Z2009-11-17T13:57:46Z
<p>How does bytecode get verified in the JVM?</p>
http://stackoverflow.com/questions/755005/how-does-bytecode-get-verified-in-the-jvm/755009#7550097Answer by Jon Skeet for How does bytecode get verified in the JVM?Jon Skeet2009-04-16T06:44:28Z2009-04-16T06:44:28Z<p>The best source of information is probably <a href="http://java.sun.com/docs/books/jvms/second%5Fedition/html/ClassFile.doc.html#88597" rel="nofollow">the relevant section in the JVM specification</a>.</p>
http://stackoverflow.com/questions/755005/how-does-bytecode-get-verified-in-the-jvm/755012#7550128Answer by paxdiablo for How does bytecode get verified in the JVM?paxdiablo2009-04-16T06:45:43Z2009-11-17T13:57:46Z<p>Sun themselves have a little snippet page on how it works <a href="http://java.sun.com/docs/white/langenv/Security.doc3.html" rel="nofollow">here</a>.</p>
<p>Basically, the JRE doesn't trust the JDK. That's because it has no knowledge of which JDK compiler created the class file. It treats the class file as hostile until verified.</p>
<p>Expanding on that, the bytecode verification is a necessary step to protect from what Sun call a "hostile compiler". Sun's own Java compiler ensures that Java source code doesn't violate the safety rules but, when an application imports a code fragment, it doesn't actually <em>know</em> if the code fragment follows Java language rules for safety. In other words, the code may not have been produced by a trustworthy Java compiler.</p>
<p>In that case, the Java run time system on your machine has to assume the fragment is bad and subjects it to bytecode verification.</p>
<p>The Java virtual machine does not even <em>see</em> the bytecode until it's been through this verification process. Doing this as the bytecode is loaded also has the advantage that a whole lot of run time checks don't need to be performed every time the code is executed. Because it's been verified as correct, it can, once it starts running, run faster than would otherwise be possible.</p>
http://stackoverflow.com/questions/755005/how-does-bytecode-get-verified-in-the-jvm/755015#7550155Answer by Bhushan for How does bytecode get verified in the JVM?Bhushan2009-04-16T06:46:50Z2009-04-16T06:46:50Z<p>Simple explaination is available here <a href="http://cs.fit.edu/~ryan/java/language/bytecode.html" rel="nofollow">http://cs.fit.edu/~ryan/java/language/bytecode.html</a></p>