[ 
https://issues.apache.org/jira/browse/HDDS-15244?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=18086510#comment-18086510
 ] 

Andrey Yarovoy commented on HDDS-15244:
---------------------------------------

 
{code:java}
kinit om/om -kt /etc/security/keytabs/om.keytab
bash-5.1$ curl --negotiate -u : http://om:9874/logLevel
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/>
<title>Error 403 GSSException: Failure unspecified at GSS-API level (Mechanism 
level: Request is a replay (34))</title>
</head>
<body><h2>HTTP ERROR 403 GSSException: Failure unspecified at GSS-API level 
(Mechanism level: Request is a replay (34))</h2>
<table>
<tr><th>URI:</th><td>/logLevel</td></tr>
<tr><th>STATUS:</th><td>403</td></tr>
<tr><th>MESSAGE:</th><td>GSSException: Failure unspecified at GSS-API level 
(Mechanism level: Request is a replay (34))</td></tr>
<tr><th>SERVLET:</th><td>logLevel</td></tr>
</table>
</body>
</html>
{code}
 

> LogLevel HTTP endpoint is inaccessible in secure clusters
> ---------------------------------------------------------
>
>                 Key: HDDS-15244
>                 URL: https://issues.apache.org/jira/browse/HDDS-15244
>             Project: Apache Ozone
>          Issue Type: Bug
>          Components: Security
>            Reporter: Wei-Chiu Chuang
>            Assignee: Andrey Yarovoy
>            Priority: Major
>              Labels: pull-request-available
>
> The /logLevel HTTP endpoint, which allows users to view and modify log levels 
> at runtime, has a bug that makes it operationaly
> broken in secure environments.
> Technical Root Cause:
> 1. Missing Authentication: In HttpServer2.java, the logLevel servlet is 
> registered via addDefaultServlets() using addServlet. This internal call sets
> requireAuth = false. Consequently, the internal SpnegoFilter is never applied 
> to the /logLevel path, even when Kerberos/SPNEGO is enabled for the
> cluster.
> 2. Authorization Failure: The LogLevel.Servlet implementation calls 
> HttpServer2.hasAdministratorAccess(). In a secure cluster, this method 
> requires a
> non-null request.getRemoteUser(). Because the authentication filter was 
> skipped, the remote user is always null, leading to a permanent 403 Forbidden
> response for all users, including administrators.
> Impact:
>  * Operational: Administrators cannot use the ozone insight tool or the web 
> UI to troubleshoot production issues in secure clusters by increasing log
> verbosity.
> Steps to Reproduce (Secure Cluster):
> 1. Start a secure Ozone cluster with Kerberos enabled.
> 2. Attempt to access http://<om-host>:9874/logLevel via a browser or curl 
> --negotiate.
> 3. The server will return 403 Forbidden with the message: "Unauthenticated 
> users are not authorized to access this page."
> Proposed Fix:
>  * Modify HttpServer2.addDefaultApps() (or addDefaultServlets) to ensure the 
> logLevel servlet (and potentially others like stacks and conf) are registered
> with requireAuth = true.
>  * Add a specific integration test in TestHttpServer2 or a new TestLogLevel 
> to verify that authentication is correctly challenged and authorization is
> respected in both secure and non-secure modes.
> Additional Context:
> This issue is acknowledged in the documentation (Observability.md), which 
> states that the /logLevel endpoint is "not yet supported in secure 
> environment."
> This bug report aims to formalize the requirement to fix this inconsistency.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to