Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: lite edit

Wiki Markup
            Native methods are defined in Java and written in traditional languages such as C and C++ \[[JNI 2006|AA. Bibliography#JNI 06]\]. The added extensibility comes at the cost of flexibility and portability as the code no longer conforms to the policies enforced by Java. In the past, native methods were used for performing platform specific operations, interfacing with legacy library code and improving program performance \[[Bloch 2008|AA. Bibliography#Bloch 08]\]. Although this is no longer completely true --- because of poor portability, safetysecurity, and (quite ironically) performance issues --- native code is still used to interface with legacy code.

Defining a wrapper method facilitates installing appropriate security manager checks, performing input validation before passing the arguments to the native code or when obtaining return values, defensively copying mutable inputs and sanitizing user input. As a result every native method must be private, and must be invoked only by a wrapper method.

...

In this noncompliant code example, the nativeOperation is both native and public; for that reason, untrusted callers may invoke it. Native method invocations bypass security manager checks.

The example does include a wrapper; This example includes the doOperation() wrapper method which invokes the nativeOperation() native method but fails to provide input validation or security checks.

...

This compliant solution declares the native method private. Furthermore, the The doOperation() wrapper method performs routine permission checking to determine whether the succeeding operations are permitted to continue. This is followed by the creation of The method also creates a defensive copy of the mutable input array data as well as by performs range checking of the parametersarguments. The nativeOperation() method is consequently called with safe inputs. Note that the validation checks must produce outputs that conform to the input requirements of the native implementations/librariesmethods.

Code Block
bgColor#ccccff
public final class NativeMethodWrapper {

  // private native method
  private native void nativeOperation(byte[] data, int offset, int len);

  // wrapper method performs SecurityManager and input validation checks
  public void doOperation(byte[] data, int offset, int len) {
    // permission needed to invoke native method
    securityManagerCheck();

    if (data == null) {
      throw new NullPointerException();
    }

    // copy mutable input
    data = data.clone();

    // validate input
    if ((offset < 0) || (len < 0) || (offset > (data.length - len))) {
      throw new IllegalArgumentException();
    }

    nativeOperation(data, offset, len);
  }

  static {
    // load native library in static initializer of class
    System.loadLibrary("NativeMethodLib"); 
  }
}

...

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="ac45b2ca375a1607-bee85b8e-47d74778-a6da941c-a7de861d47b6fa18de08174a"><ac:plain-text-body><![CDATA[

[[Fairbanks 2007

AA. Bibliography#Fairbanks 07]]

 

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="d4e89057b2b6ca15-168a6a26-41df4bac-90c89672-2e60e39fd9306a4c40d00c73"><ac:plain-text-body><![CDATA[

[[JNI 2006

AA. Bibliography#JNI 06]]

 

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="4071fc9aecfc84b0-bd846822-45174eab-8541ac2e-7dff4d25233811c9d1b8e122"><ac:plain-text-body><![CDATA[

[[Liang 1997

AA. Bibliography#Liang 97]]

 

]]></ac:plain-text-body></ac:structured-macro>

<ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="157508442fdfc96f-3d1b89eb-45b54223-abb8bf99-b40b83b8416cf7a38752b007"><ac:plain-text-body><![CDATA[

[[Macgregor 1998

AA. Bibliography#Macgregor 98]]

Section 2.2.3, Interfaces and Architectures

]]></ac:plain-text-body></ac:structured-macro>

...