2009-08-17 03:53:27 +00:00
|
|
|
<!--
|
|
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
|
|
this work for additional information regarding copyright ownership.
|
|
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
(the "License"); you may not use this file except in compliance with
|
|
|
|
the License. You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
2009-05-19 04:56:52 +00:00
|
|
|
<FindBugsFilter>
|
|
|
|
<Match>
|
|
|
|
<Package name="org.apache.hadoop.record.compiler.generated" />
|
|
|
|
</Match>
|
2013-07-17 00:06:48 +00:00
|
|
|
<Match>
|
|
|
|
<Package name="org.apache.hadoop.security.proto" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Package name="org.apache.hadoop.tools.proto" />
|
|
|
|
</Match>
|
2009-05-19 04:56:52 +00:00
|
|
|
<Match>
|
|
|
|
<Bug pattern="EI_EXPOSE_REP" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Bug pattern="EI_EXPOSE_REP2" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Bug pattern="SE_COMPARATOR_SHOULD_BE_SERIALIZABLE" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Class name="~.*_jsp" />
|
|
|
|
<Bug pattern="DLS_DEAD_LOCAL_STORE" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Field name="_jspx_dependants" />
|
|
|
|
<Bug pattern="UWF_UNWRITTEN_FIELD" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
Inconsistent synchronization for Client.Connection.out is
|
|
|
|
is intentional to make a connection to be closed instantly.
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.ipc.Client$Connection" />
|
|
|
|
<Field name="out" />
|
|
|
|
<Bug pattern="IS2_INCONSISTENT_SYNC" />
|
|
|
|
</Match>
|
2010-02-22 22:28:29 +00:00
|
|
|
<!--
|
|
|
|
Further SaslException should be ignored during cleanup and
|
|
|
|
original exception should be re-thrown.
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.security.SaslRpcClient" />
|
|
|
|
<Bug pattern="DE_MIGHT_IGNORE" />
|
|
|
|
</Match>
|
2009-05-19 04:56:52 +00:00
|
|
|
<!--
|
|
|
|
Ignore Cross Scripting Vulnerabilities
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Package name="~org.apache.hadoop.mapred.*" />
|
|
|
|
<Bug code="XSS" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.taskdetails_jsp" />
|
|
|
|
<Bug code="HRS" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
Ignore warnings where child class has the same name as
|
|
|
|
super class. Classes based on Old API shadow names from
|
|
|
|
new API. Should go off after HADOOP-1.0
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="~org.apache.hadoop.mapred.*" />
|
|
|
|
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
Ignore warnings for usage of System.exit. This is
|
|
|
|
required and have been well thought out
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.Child$2" />
|
|
|
|
<Method name="run" />
|
|
|
|
<Bug pattern="DM_EXIT" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.JobTracker" />
|
|
|
|
<Method name="addHostToNodeMapping" />
|
|
|
|
<Bug pattern="DM_EXIT" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.Task" />
|
|
|
|
<Or>
|
|
|
|
<Method name="done" />
|
|
|
|
<Method name="commit" />
|
|
|
|
<Method name="statusUpdate" />
|
|
|
|
</Or>
|
|
|
|
<Bug pattern="DM_EXIT" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.Task$TaskReporter" />
|
|
|
|
<Method name="run" />
|
|
|
|
<Bug pattern="DM_EXIT" />
|
|
|
|
</Match>
|
2013-05-22 06:36:24 +00:00
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.util.ProgramDriver" />
|
|
|
|
<Method name="driver" />
|
|
|
|
<Bug pattern="DM_EXIT" />
|
|
|
|
</Match>
|
2009-05-19 04:56:52 +00:00
|
|
|
<!--
|
|
|
|
We need to cast objects between old and new api objects
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.OutputCommitter" />
|
|
|
|
<Bug pattern="BC_UNCONFIRMED_CAST" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
We intentionally do the get name from the inner class
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.TaskTracker$MapEventsFetcherThread" />
|
|
|
|
<Method name="run" />
|
|
|
|
<Bug pattern="IA_AMBIGUOUS_INVOCATION_OF_INHERITED_OR_OUTER_METHOD" />
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.FileOutputCommitter" />
|
|
|
|
<Bug pattern="NM_WRONG_PACKAGE_INTENTIONAL" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
Ignoring this warning as resolving this would need a non-trivial change in code
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.lib.aggregate.ValueAggregatorBaseDescriptor" />
|
|
|
|
<Method name="configure" />
|
|
|
|
<Field name="maxNumItems" />
|
|
|
|
<Bug pattern="ST_WRITE_TO_STATIC_FROM_INSTANCE_METHOD" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
Comes from org.apache.jasper.runtime.ResourceInjector. Cannot do much.
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.jobqueue_005fdetails_jsp" />
|
|
|
|
<Field name="_jspx_resourceInjector" />
|
|
|
|
<Bug pattern="SE_BAD_FIELD" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
Storing textInputFormat and then passing it as a parameter. Safe to ignore.
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.lib.aggregate.ValueAggregatorJob" />
|
|
|
|
<Method name="createValueAggregatorJob" />
|
|
|
|
<Bug pattern="DLS_DEAD_STORE_OF_CLASS_LITERAL" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
Can remove this after the upgrade to findbugs1.3.8
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.lib.db.DBInputFormat" />
|
|
|
|
<Method name="getSplits" />
|
|
|
|
<Bug pattern="DLS_DEAD_LOCAL_STORE" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
This is a spurious warning. Just ignore
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.mapred.MapTask$MapOutputBuffer" />
|
|
|
|
<Field name="kvindex" />
|
|
|
|
<Bug pattern="IS2_INCONSISTENT_SYNC" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
core changes
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="~org.apache.hadoop.*" />
|
|
|
|
<Bug code="MS" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.fs.FileSystem" />
|
|
|
|
<Method name="checkPath" />
|
|
|
|
<Bug pattern="ES_COMPARING_STRINGS_WITH_EQ" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.io.Closeable" />
|
|
|
|
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_INTERFACE" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.security.AccessControlException" />
|
|
|
|
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.record.meta.Utils" />
|
|
|
|
<Method name="skip" />
|
|
|
|
<Bug pattern="BC_UNCONFIRMED_CAST" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
The compareTo method is actually a dummy method that just
|
|
|
|
throws excpetions. So, no need to override equals. Ignore
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.record.meta.RecordTypeInfo" />
|
|
|
|
<Bug pattern="EQ_COMPARETO_USE_OBJECT_EQUALS" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.util.ProcfsBasedProcessTree" />
|
|
|
|
<Bug pattern="DMI_HARDCODED_ABSOLUTE_FILENAME" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
Streaming, Examples
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.streaming.StreamUtil$TaskId" />
|
|
|
|
<Bug pattern="URF_UNREAD_FIELD" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.examples.DBCountPageView" />
|
|
|
|
<Method name="verify" />
|
|
|
|
<Bug pattern="OBL_UNSATISFIED_OBLIGATION" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.examples.ContextFactory" />
|
|
|
|
<Method name="setAttributes" />
|
|
|
|
<Bug pattern="OBL_UNSATISFIED_OBLIGATION" />
|
|
|
|
</Match>
|
|
|
|
|
2009-06-24 05:48:25 +00:00
|
|
|
<!--
|
|
|
|
TFile
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.io.file.tfile.Chunk$ChunkDecoder" />
|
|
|
|
<Method name="close" />
|
|
|
|
<Bug pattern="SR_NOT_CHECKED" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
The purpose of skip() is to drain remaining bytes of the chunk-encoded
|
|
|
|
stream (one chunk at a time). The termination condition is checked by
|
|
|
|
checkEOF().
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.io.file.tfile.Utils" />
|
|
|
|
<Method name="writeVLong" />
|
|
|
|
<Bug pattern="SF_SWITCH_FALLTHROUGH" />
|
|
|
|
</Match>
|
|
|
|
<!--
|
|
|
|
The switch condition fall through is intentional and for performance
|
|
|
|
purposes.
|
|
|
|
-->
|
2011-05-10 23:56:54 +00:00
|
|
|
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.log.EventCounter"/>
|
|
|
|
<!-- backward compatibility -->
|
|
|
|
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.metrics.jvm.EventCounter"/>
|
|
|
|
<!-- backward compatibility -->
|
|
|
|
<Bug pattern="NM_SAME_SIMPLE_NAME_AS_SUPERCLASS"/>
|
|
|
|
</Match>
|
2011-10-28 21:55:05 +00:00
|
|
|
<Match>
|
|
|
|
<!-- protobuf generated code -->
|
2012-12-17 22:16:57 +00:00
|
|
|
<Class name="~org\.apache\.hadoop\.ipc\.protobuf\.ProtobufRpcEngineProtos.*"/>
|
2011-10-28 21:55:05 +00:00
|
|
|
</Match>
|
2012-01-26 23:23:03 +00:00
|
|
|
<Match>
|
|
|
|
<!-- protobuf generated code -->
|
|
|
|
<Class name="~org\.apache\.hadoop\.ipc\.protobuf\.ProtocolInfoProtos.*"/>
|
2012-02-29 20:43:21 +00:00
|
|
|
</Match>
|
2012-03-02 01:32:49 +00:00
|
|
|
<Match>
|
2012-02-29 20:43:21 +00:00
|
|
|
<!-- protobuf generated code -->
|
|
|
|
<Class name="~org\.apache\.hadoop\.ipc\.protobuf\.IpcConnectionContextProtos.*"/>
|
2012-04-23 16:34:21 +00:00
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<!-- protobuf generated code -->
|
2012-12-17 22:16:57 +00:00
|
|
|
<Class name="~org\.apache\.hadoop\.ipc\.protobuf\.RpcHeaderProtos.*"/>
|
2012-01-26 23:23:03 +00:00
|
|
|
</Match>
|
2012-03-02 01:32:49 +00:00
|
|
|
<Match>
|
|
|
|
<!-- protobuf generated code -->
|
|
|
|
<Class name="~org\.apache\.hadoop\.ha\.proto\.HAServiceProtocolProtos.*"/>
|
|
|
|
</Match>
|
2012-05-15 18:16:49 +00:00
|
|
|
<Match>
|
|
|
|
<!-- protobuf generated code -->
|
|
|
|
<Class name="~org\.apache\.hadoop\.ha\.proto\.ZKFCProtocolProtos.*"/>
|
|
|
|
</Match>
|
2013-01-04 16:46:28 +00:00
|
|
|
<Match>
|
|
|
|
<!-- protobuf generated code -->
|
|
|
|
<Class name="~org\.apache\.hadoop\.security\.proto\.SecurityProtos.*"/>
|
|
|
|
</Match>
|
2013-02-13 22:13:44 +00:00
|
|
|
<Match>
|
|
|
|
<!-- protobuf generated code -->
|
|
|
|
<Class name="~org\.apache\.hadoop\.ipc\.protobuf\.TestProtos.*"/>
|
|
|
|
</Match>
|
2012-04-23 16:34:21 +00:00
|
|
|
|
2012-07-12 01:31:40 +00:00
|
|
|
<!--
|
|
|
|
Manually checked, misses child thread manually syncing on parent's intrinsic lock.
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.metrics2.lib.MutableQuantiles" />
|
|
|
|
<Field name="previousSnapshot" />
|
|
|
|
<Bug pattern="IS2_INCONSISTENT_SYNC" />
|
|
|
|
</Match>
|
2012-11-27 19:23:05 +00:00
|
|
|
<!--
|
|
|
|
The method uses a generic type T that extends two other types
|
|
|
|
T1 and T2. Findbugs complains of a cast from T1 to T2.
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.fs.DelegationTokenRenewer" />
|
|
|
|
<Method name="removeRenewAction" />
|
|
|
|
<Bug pattern="BC_UNCONFIRMED_CAST" />
|
|
|
|
</Match>
|
2013-03-08 21:47:57 +00:00
|
|
|
|
|
|
|
<!-- Inconsistent synchronization flagged by findbugs is not valid. -->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.ipc.Client$Connection" />
|
|
|
|
<Field name="in" />
|
|
|
|
<Bug pattern="IS2_INCONSISTENT_SYNC" />
|
|
|
|
</Match>
|
2013-06-21 20:09:31 +00:00
|
|
|
<!--
|
|
|
|
The switch condition for INITIATE is expected to fallthru to RESPONSE
|
|
|
|
to process initial sasl response token included in the INITIATE
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.ipc.Server$Connection" />
|
|
|
|
<Method name="processSaslMessage" />
|
|
|
|
<Bug pattern="SF_SWITCH_FALLTHROUGH" />
|
|
|
|
</Match>
|
2013-06-17 06:39:33 +00:00
|
|
|
|
|
|
|
<!-- Synchronization performed on util.concurrent instance. -->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.service.AbstractService" />
|
|
|
|
<Method name="stop" />
|
|
|
|
<Bug code="JLM" />
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.service.AbstractService" />
|
|
|
|
<Method name="waitForServiceToStop" />
|
|
|
|
<Bug code="JLM" />
|
|
|
|
</Match>
|
2013-09-27 11:32:53 +00:00
|
|
|
|
|
|
|
<!--
|
|
|
|
OpenStack Swift FS module -closes streams in a different method
|
|
|
|
from where they are opened.
|
|
|
|
-->
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.fs.swift.snative.SwiftNativeOutputStream"/>
|
|
|
|
<Method name="uploadFileAttempt"/>
|
|
|
|
<Bug pattern="OBL_UNSATISFIED_OBLIGATION"/>
|
|
|
|
</Match>
|
|
|
|
<Match>
|
|
|
|
<Class name="org.apache.hadoop.fs.swift.snative.SwiftNativeOutputStream"/>
|
|
|
|
<Method name="uploadFilePartAttempt"/>
|
|
|
|
<Bug pattern="OBL_UNSATISFIED_OBLIGATION"/>
|
|
|
|
</Match>
|
|
|
|
|
|
|
|
</FindBugsFilter>
|