Module java.base
Package java.io

Interface ObjectInputFilter

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterfacepublic interfaceObjectInputFilter
Filter classes, array lengths, and graph metrics during deserialization.

Warning: Deserialization of untrusted data is inherently dangerous and should be avoided. Untrusted data should be carefully validated according to the "Serialization and Deserialization" section of theSecure Coding Guidelines for Java SE.Serialization Filtering describes best practices for defensive use of serial filters.

If set on anObjectInputStream, thecheckInput(FilterInfo) method is called to validate classes, the length of each array, the number of objects being read from the stream, the depth of the graph, and the total number of bytes read from the stream.

A filter can be set viasetObjectInputFilter for an individual ObjectInputStream. A filter can be set viaConfig.setSerialFilter to affect everyObjectInputStream that does not otherwise set a filter.

A filter determines whether the arguments areALLOWED orREJECTED and should return the appropriate status. If the filter cannot determine the status it should returnUNDECIDED. Filters should be designed for the specific use case and expected types. A filter designed for a particular use may be passed a class that is outside of the scope of the filter. If the purpose of the filter is to black-list classes then it can reject a candidate class that matches and report UNDECIDED for others. A filter may be called with class equalsnull,arrayLength equal -1, the depth, number of references, and stream size and return a status that reflects only one or only some of the values. This allows a filter to specific about the choice it is reporting and to use other filters without forcing either allowed or rejected status.

Typically, a custom filter should check if a system-wide filter is configured and defer to it if so. For example,

 ObjectInputFilter.Status checkInput(FilterInfo info) {     ObjectInputFilter serialFilter = ObjectInputFilter.Config.getSerialFilter();     if (serialFilter != null) {         ObjectInputFilter.Status status = serialFilter.checkInput(info);         if (status != ObjectInputFilter.Status.UNDECIDED) {             // The system-wide filter overrides this filter             return status;         }     }     if (info.serialClass() != null &&         Remote.class.isAssignableFrom(info.serialClass())) {         return Status.REJECTED;      // Do not allow Remote objects     }     return Status.UNDECIDED; }

Unless otherwise noted, passing anull argument to a method in this interface and its nested classes will cause aNullPointerException to be thrown.

Since:
9
See Also:
ObjectInputStream.setObjectInputFilter(ObjectInputFilter)
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Interface
    Description
    static class 
    A utility class to set and get the system-wide filter or create a filter from a pattern string.
    static interface 
    FilterInfo provides access to information about the current object being deserialized and the status of theObjectInputStream.
    static class 
    The status of a check on the class, array length, number of references, depth, and stream size.
  • Method Summary

    Modifier and Type
    Method
    Description
    Check the class, array length, number of object references, depth, stream size, and other available filtering information.