[ 
https://issues.apache.org/jira/browse/HADOOP-17686?focusedWorklogId=594591&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-594591
 ]

ASF GitHub Bot logged work on HADOOP-17686:
-------------------------------------------

                Author: ASF GitHub Bot
            Created on: 11/May/21 15:47
            Start Date: 11/May/21 15:47
    Worklog Time Spent: 10m 
      Work Description: virajjasani commented on a change in pull request #2990:
URL: https://github.com/apache/hadoop/pull/2990#discussion_r630302485



##########
File path: 
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/Path.java
##########
@@ -420,22 +421,37 @@ public String getName() {
   }
 
   /**
-   * Returns the parent of a path or null if at root.
+   * Returns the parent of a path or null if at root. Better alternative is
+   * {@link #getParentPath()} to handle nullable value for root path.
+   *
    * @return the parent of a path or null if at root
    */
   public Path getParent() {
+    return getParentUtil();
+  }
+
+  /**
+   * Returns the parent of a path as Optional or empty() if at root.
+   *
+   * @return Parent of path wrappen in Optional. empty() if at root.

Review comment:
       I think this is nice, perhaps I can directly give link to Optional and 
Optional#empty() as well.

##########
File path: 
hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/Path.java
##########
@@ -420,22 +421,37 @@ public String getName() {
   }
 
   /**
-   * Returns the parent of a path or null if at root.
+   * Returns the parent of a path or null if at root. Better alternative is
+   * {@link #getParentPath()} to handle nullable value for root path.
+   *
    * @return the parent of a path or null if at root
    */
   public Path getParent() {
+    return getParentUtil();
+  }
+
+  /**
+   * Returns the parent of a path as Optional or empty() if at root.
+   *
+   * @return Parent of path wrappen in Optional. empty() if at root.
+   */
+  public Optional<Path> getParentPath() {

Review comment:
       Sounds good. Let me update.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 594591)
    Time Spent: 1h 20m  (was: 1h 10m)

> Potential NPE in org.apache.hadoop.fs.obs
> -----------------------------------------
>
>                 Key: HADOOP-17686
>                 URL: https://issues.apache.org/jira/browse/HADOOP-17686
>             Project: Hadoop Common
>          Issue Type: Bug
>          Components: fs
>            Reporter: Error Reporter
>            Assignee: Viraj Jasani
>            Priority: Major
>              Labels: pull-request-available
>          Time Spent: 1h 20m
>  Remaining Estimate: 0h
>
> Hello,
> Our code analyses found a following potential NPE:
>  
> {code:java}
> public Path getParent() {
>     String path = uri.getPath();
>     int lastSlash = path.lastIndexOf('/');
>     int start = startPositionWithoutWindowsDrive(path);
>     if ((path.length() == start) ||               // empty path
>         (lastSlash == start && path.length() == start+1)) { // at root
>       return null; <--- Null returned
>     }
> {code}
>  
> {code:java}
> private static void getDirectories(final String key, final String sourceKey,
>       final Set<String> directories) {
>     Path p = new Path(key);
>     Path sourcePath = new Path(sourceKey);
>     // directory must add first
>     if (key.endsWith("/") && p.compareTo(sourcePath) > 0) {
>       directories.add(p.toString());
>     }
>     while (p.compareTo(sourcePath) > 0) {
>       p = p.getParent(); <--- NPE
>       if (p.isRoot() || p.compareTo(sourcePath) == 0) {
>         break;
>       }
> {code}
> Given a root path, it will lead to NPE at method getDirectories
>  
> Full trace:
>  
> 1. Return null to caller
> [https://github.com/apache/hadoop/blob/f40e3eb0590f85bb42d2471992bf5d524628fdd6/hadoop-common-project/hadoop-common/src/main/java/org/apache/hadoop/fs/Path.java#L432]
> 2. Function getParent executes and returns
> [https://github.com/apache/hadoop/blob/f40e3eb0590f85bb42d2471992bf5d524628fdd6/hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSObjectBucketUtils.java#L875]
> 3. The return value of function getParent is passed as the this pointer to 
> function isRoot (the return value of function getParent can be null)
> [https://github.com/apache/hadoop/blob/f40e3eb0590f85bb42d2471992bf5d524628fdd6/hadoop-cloud-storage-project/hadoop-huaweicloud/src/main/java/org/apache/hadoop/fs/obs/OBSObjectBucketUtils.java#L876]
> Commit: f40e3eb0590f85bb42d2471992bf5d524628fdd6



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: common-issues-unsubscr...@hadoop.apache.org
For additional commands, e-mail: common-issues-h...@hadoop.apache.org

Reply via email to