Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
278 views

C# - inserting bytes in the middle of binary file

I want to add some string in the middle of image metadata block. Under some specific marker. I have to do it on bytes level since .NET has no support for custom metadata fields. The block is built ...
7
votes
2answers
285 views

What bytecode library when controlling line numbers?

I need to generate new classes (via generation of java byte code) from existing classes. I will analyse the body (expressions) of the methods of a class. The expressions will determine what code I ...
7
votes
3answers
2k views

erlang BEAM bytecode

well I hope Im not breaking some spamming rule here with this. I just asked a question about how the erlang compiler implements pattern matching, and I got some great responses, one of which is the ...
6
votes
3answers
2k views

Is there a java classfile / bytecode editor to edit instructions?

Is there a utility (or eclipse plugin) for editing java class files? I'd like to manipulate the bytecode of a java class file without recompiling it nor having a complete buildpath. E.g. to rename ...
5
votes
5answers
669 views

Bytecode manipulation patterns

What legitimate uses are there for bytecode manipulation and how people implement those bytecode manipulation based solutions in practice? Update: I should have made it more clear that this question ...
5
votes
3answers
625 views

Java Bytecode Manipulation Library Suggestions

I'm looking for a well-maintained Java bytecode manipulation library with an intuitive API. There seem to be quite a lot of them out there. Any suggestions on which ones to try?
5
votes
3answers
459 views

Does JAXB use bytecode instrumentation?

Someone where i work noticed (in stacktrace) that when running the jvm with -javaagent:spring-instrumentation.jar my JAXB annotated classes have strange new methods in them which we didn't write: e.g. ...
4
votes
3answers
357 views

Optimizing boolean logic tree evaluation

I've got a lot of true/false results saved as bits in long[] arrays. I do have a huge number of these (millions and millions of longs). For example, say I have only five results, I'd have: +----- ...
4
votes
1answer
149 views

Is it possible to modify the bytecode and save it with javassist?

All the references I've found on the web says the bytecode can be modified at runtime, but I don't seem to find if that modified bytecode could replece the original. This way the original bytecode ...
4
votes
2answers
223 views

Is it safe to use bytecode enhancement techniques on classes that might be serialized and why?

I haven't tried this yet, but it seems risky. The case I'm thinking of is instrumenting simple VO classes with JiBX. These VOs are going to be serialized over AMF and possibly other schemes. Can ...
4
votes
5answers
825 views

Is it possible to view bytecode of Class file?

In Java,source code is compiled into bytecode which is actually Class file. Is it possible that we can view bytecode of Class file? If it possible, Can we edit it? Is there any eclipse plugin ...
4
votes
2answers
145 views

Stand-alone Bytecode Verifier

In my bytecode instrumentation project, I stumble frequently on VerifyErrors. However, the default java Verifier gives little information on which instruction resulted in the error (it only gives the ...
4
votes
1answer
309 views

Reassembling Python bytecode to the original code?

This might be a silly question, but, given the output of, say.. >>> from dis import dis >>> def myfunc(x): ... print x ** 2 ... >>> dis(myfunc) 2 0 ...
3
votes
5answers
193 views

What programming languages will let me manipulate the sequence of instructions in a method?

I have an upcoming project in which a core requirement will be to mutate the way a method works at runtime. Note that I'm not talking about a higher level OO concept like "shadow one method with ...
3
votes
2answers
193 views

Common Java technologies that actually modify .class files and their drawbacks?

At first I was a bit shocked when reading this part from the JiBX doc: Once you have a binding definition, you need to compile the bindings into your class files with the JiBX binding ...
3
votes
5answers
80 views

Statically checking a Java app for link errors

I have a scenario where I have code written against version 1 of a library but I want to ship version 2 of the library instead. The code has shipped and is therefore not changeable. I'm concerned that ...
3
votes
2answers
350 views

Is it possible to do bytecode manipulation when using OSGi?

I'm making an application server and in it I need to use some bytecode manipulation (e.g. inserting custom equals and hashCode methods to classes annotated with @Entity). Now I give the JVM a Java ...
2
votes
4answers
90 views

Executing a piece of bytecode

Think about this sample code: ... try { stm1 stm2 stm3 } catch(){ ... } ... Suppose to run the code and within the try block an exception is raised. Execution flow goes into the ...
2
votes
2answers
193 views

Asm bytecode queries

Hey all, I am trying to use the ASM bytecode Tree Api to do static analysis for a class. I guess I have a pretty basic question. In a method say foobar(), I have a list of instructions within foobar ...
2
votes
1answer
230 views

problem with classes not found during PlayPlugin.enhance

I'm experimenting with a basic bytecode enhancement in a Play plugin, but when it tries to operate on the ApplicationClasses.ApplicationClass that it's given, the class can't be found. public void ...
2
votes
1answer
131 views

Few questions on generator expressions and speed efficient alternatives

Consider the following code, integral to my questions below: import functools N = 3 class Struct: """Create an instance with argument=value slots. This is for making a lightweight object ...
2
votes
2answers
120 views

Bytecode enhancement for fields in a class

Is it possible to add "hooks" to a class via bytecode enhancement that execute code whenever a class field is read or written? For example, I'd like to automatically set a "dirty" flag whenever a new ...
2
votes
4answers
301 views

java disassemble reassemble

Say I want to take a java class file, disassemble it, tweak the java bytecode output, and then reassemble it again. I need to rename a symbol in the constant pool table. I also don't have access to ...
2
votes
3answers
186 views

How can I get the syntax tree from a coderef in Perl?

I'd like to inspect and manipulate code of arbitrary Perl procedures (got by coderefs) in Perl. Is there a tool/module/library for that? Something similar to B::Concise, except that B::Concise prints ...
2
votes
1answer
127 views

How to use importlib for rewriting bytecode?

I'm looking for a way to use importlib in Python 2.x to rewrite bytecode of imported modules on-the-fly. In other words, I need to hook my own function between the compilation and execution step ...
2
votes
3answers
166 views

How to check that bytecode operation PUTFIELD is reassigning a field belonging to 'this' object using ObjectWeb ASM?

I am using the ASM bytecode manipulation framework to perform static analysis on Java code. I wish to detect when fields of an object are reassigned, i.e. when this kind of code occurs: class ...
2
votes
0answers
168 views

How make Eclipse instrument classes at build time?

Sometimes I have to perform some custom bytecode transformation. I have used mainly asm and javaassit. Inside eclipse usually I run my code with the -javaagent jvm parameter. Outside eclipse I use ...
2
votes
2answers
879 views

unboxing using the ASM Java library

I'm using the ASM Java library to replace some reflection. I generate the body of this method: void set(Object object, int fieldIndex, Object value); With this generated method, I can set fields on ...
2
votes
2answers
2k views

How do I convert between big-endian and little-endian values in C++?

How do I convert between big-endian and little-endian values in C++? I'm using VC++ 6.0.when I used _byteswap_ulong() function it requires the header file intrin.h. When I include the header it ...
1
vote
2answers
65 views

Trouble understanding method renaming with ASM Bytecode in Java

I am currently trying to understand how the ASM library works. I've decided to try to rename all the methods of a given class, so I wrote a mini MethodRenamer visitor: class MethodRenamer extends ...
1
vote
1answer
188 views

Java Byte code Manipulation with ASM

I’m using ASM 3.3.1. I am trying to intercept a class and change one of it’s methods. I am using the org.objectweb.asm.util.ASMifierClassVisitor to get ASM code to make the new method. Everything ...
1
vote
2answers
156 views

How does Emma work?

For using Emma we'll first instrument the jar using Emma. During that time em metadata files will get generated and when you run the JUnit test cases over the instrumented jars ec files will get ...
1
vote
1answer
280 views

JPEG file size markers, inserting bytes, IPTC metadata

JPEG file has several size markers. I'm interested in adding image metadata (IPTC, not XMP). App13 segment starts with FF ED XX XX .. 8BIM IPTC metadata segment starts with 38 42 49 4D 04 04 00 00 ...
1
vote
7answers
126 views

Best way to change an integer field in a compiled 1.6 Java class with no source

A class file that was compiled with java 1.6 settings has two fields which I need to set to higher values. private Integer days = 7; private Integer running = 30; unfortunately, I don't have access ...
1
vote
1answer
66 views

Difference between build time instrumentation and load time instrumentation

Nowadays I have been studying simple bytecode instrumentation mechanism for the sake of my knowledge and hope to use them in future projects in my company. I have gone through several article ...
1
vote
2answers
157 views

Retro-actively add Java annotations to methods?

Is there a way to modify .class files in order to add Java annotations to certain methods? Basically I want to traverse methods of each class file in a jar file and annotate certain ones. Note that ...
1
vote
1answer
140 views

auto completion on generated java code in eclipse

I would like to make auto generated code available to eclipse editor for auto completion Following cases: 1) Xml document describing a data model and java processor is creating java source code. ...
1
vote
2answers
315 views

Bytecode manipulation to intercept setting the value of a field

Using a library like ASM or cglib, is there a way to add bytecode instructions to a class to execute code whenever the value of a class field is set? For example, let’s say I have this class: ...
1
vote
2answers
169 views

What are the dangers of bytecode manipulation (if any)?

Bytecode enhancement seems like a very interesting Java technique, but it has the feel of a bit of "black magic" about it. Are there any disadvantages to using it (other than the fact that ...
1
vote
7answers
490 views

How to detect Java agents, JVMTI, etc

How does one secure the Java environment when running on a machine you don't control? What is to stop someone from creating a java agent or native JVMTI agent and dumping bytecode or re-writing ...
1
vote
0answers
334 views

Bytecode: LOOKUPSWITCH and TABLESWITCH

I am currently instrumenting bytecode using BCEL. In the BCEL API, the two instructions types LOOKUPSWITCH and TABLESWITCH (package org.apache.bcel.generic) are implementing interface StackProducer. I ...
1
vote
1answer
262 views

Can i insert Bytecode inside my source code?

Can i write bytecode inside a method of a class so that the compiler bypasses that part since it is already compiled. Something similar to writing assembly programs in C language using "asm"...
1
vote
1answer
102 views

How to generate code objects from modules in Python?

I have a .pyc file with no corresponding Python source code. I want to see the disassembly of the module using dis. I can import my module just fine with import dis import foo But to call dis.dis ...
1
vote
6answers
1k views

Rewriting method calls within compiled Java classes

I want to replace calls to a given class with calls to anther class within a method body whilst parsing compiled class files... or put another way, is there a method of detecting usages of a given ...
1
vote
1answer
404 views

What are GeneratedMethodAccessor1,2,etc and why might they not be found?

I'm getting stack traces like this: java.lang.NoClassDefFoundError: sun/reflect/GeneratedMethodAccessor1 at sun.reflect.GeneratedMethodAccessor1.<clinit>(Unknown Source) at ...
0
votes
0answers
3 views

Creating new type with Javassist

ClassPool classPool = ClassPool.getDefault(); CtClass person = classPool.get("main.Person"); CtClass pperson = classPool.makeClass("PPerson", classPool.get("main.Person")); //is ...
0
votes
2answers
79 views

native java bytecode instrumentation

for bytecode instrumentation in java, there is the asm framework and the bcel and javaassist libraries. However I need to do instrumentation in native code, since some java classes are already loaded ...
0
votes
1answer
155 views

Byte code instrumentation - implement native or java agent?

If I want to realize a profiler using byte code instrumentation, should I write a native agent using JVMTI or should I write a java agent using the java.lang.instrument package? If I want to use ...
0
votes
4answers
190 views

Modify byte code to make a method return true

I have class file has a method like this: public boolean validate(String str) {} There're lots of codes inside this validate method, but I only want to make it always return true or false. Can ...
0
votes
2answers
121 views

Is it possible to integrate the JVM's assembly language into standard high level Java code?

I am trying to merge the Java assembly code (using Jasmin (an assembler interface in java)) with standard Java code.Like this public class SomeClass{ public void testPrinting(){ ...

1 2