vote up 0 vote down star

Is there any chance for the the violation of java security policy through java native interface. Which are the main areas we have to use JNI

flag

78% accept rate

2 Answers

vote up 1 vote down

Yes, once you invoke native code through JNI it can do pretty much anything the current user is allowed to do - e.g. delete all their files. The Java system cannot police anything that native code does.

You don't have to use JNI for anything - it's typically used for e.g. low-level access (e.g. critical error handling for a removable drive) or to access a C API which doesn't have a pure-Java equivalent.

link|flag
vote up 2 vote down

Java's Security policies simply do not apply to native code called via JNI, so obviously the native code can violate them at will.

As for what JNI us used for, these days it's mainly to call OS-specific APIs or interface with existing non-Java code. Improving performance used to be a frequently-cited reason, but considering the state of VMs and JIT compilers today, that almost never makes sense.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.