YARN-8249. Few REST api's in RMWebServices are missing static user check. Contributed by Sunil G.

This commit is contained in:
Sunil G 2018-05-16 12:18:25 +05:30
parent 3d48a895a6
commit 19cf706711
5 changed files with 145 additions and 193 deletions

View File

@ -109,7 +109,7 @@ public class AHSWebServices extends WebServices {
public TimelineAbout about( public TimelineAbout about(
@Context HttpServletRequest req, @Context HttpServletRequest req,
@Context HttpServletResponse res) { @Context HttpServletResponse res) {
init(res); initForReadableEndpoints(res);
return TimelineUtils.createTimelineAbout("Generic History Service API"); return TimelineUtils.createTimelineAbout("Generic History Service API");
} }
@ -137,7 +137,7 @@ public class AHSWebServices extends WebServices {
@QueryParam("finishedTimeBegin") String finishBegin, @QueryParam("finishedTimeBegin") String finishBegin,
@QueryParam("finishedTimeEnd") String finishEnd, @QueryParam("finishedTimeEnd") String finishEnd,
@QueryParam("applicationTypes") Set<String> applicationTypes) { @QueryParam("applicationTypes") Set<String> applicationTypes) {
init(res); initForReadableEndpoints(res);
validateStates(stateQuery, statesQuery); validateStates(stateQuery, statesQuery);
return super.getApps(req, res, stateQuery, statesQuery, finalStatusQuery, return super.getApps(req, res, stateQuery, statesQuery, finalStatusQuery,
userQuery, queueQuery, count, startedBegin, startedEnd, finishBegin, userQuery, queueQuery, count, startedBegin, startedEnd, finishBegin,
@ -150,7 +150,7 @@ public class AHSWebServices extends WebServices {
@Override @Override
public AppInfo getApp(@Context HttpServletRequest req, public AppInfo getApp(@Context HttpServletRequest req,
@Context HttpServletResponse res, @PathParam("appid") String appId) { @Context HttpServletResponse res, @PathParam("appid") String appId) {
init(res); initForReadableEndpoints(res);
return super.getApp(req, res, appId); return super.getApp(req, res, appId);
} }
@ -160,7 +160,7 @@ public class AHSWebServices extends WebServices {
@Override @Override
public AppAttemptsInfo getAppAttempts(@Context HttpServletRequest req, public AppAttemptsInfo getAppAttempts(@Context HttpServletRequest req,
@Context HttpServletResponse res, @PathParam("appid") String appId) { @Context HttpServletResponse res, @PathParam("appid") String appId) {
init(res); initForReadableEndpoints(res);
return super.getAppAttempts(req, res, appId); return super.getAppAttempts(req, res, appId);
} }
@ -171,7 +171,7 @@ public class AHSWebServices extends WebServices {
public AppAttemptInfo getAppAttempt(@Context HttpServletRequest req, public AppAttemptInfo getAppAttempt(@Context HttpServletRequest req,
@Context HttpServletResponse res, @PathParam("appid") String appId, @Context HttpServletResponse res, @PathParam("appid") String appId,
@PathParam("appattemptid") String appAttemptId) { @PathParam("appattemptid") String appAttemptId) {
init(res); initForReadableEndpoints(res);
return super.getAppAttempt(req, res, appId, appAttemptId); return super.getAppAttempt(req, res, appId, appAttemptId);
} }
@ -182,7 +182,7 @@ public class AHSWebServices extends WebServices {
public ContainersInfo getContainers(@Context HttpServletRequest req, public ContainersInfo getContainers(@Context HttpServletRequest req,
@Context HttpServletResponse res, @PathParam("appid") String appId, @Context HttpServletResponse res, @PathParam("appid") String appId,
@PathParam("appattemptid") String appAttemptId) { @PathParam("appattemptid") String appAttemptId) {
init(res); initForReadableEndpoints(res);
return super.getContainers(req, res, appId, appAttemptId); return super.getContainers(req, res, appId, appAttemptId);
} }
@ -194,7 +194,7 @@ public class AHSWebServices extends WebServices {
@Context HttpServletResponse res, @PathParam("appid") String appId, @Context HttpServletResponse res, @PathParam("appid") String appId,
@PathParam("appattemptid") String appAttemptId, @PathParam("appattemptid") String appAttemptId,
@PathParam("containerid") String containerId) { @PathParam("containerid") String containerId) {
init(res); initForReadableEndpoints(res);
return super.getContainer(req, res, appId, appAttemptId, containerId); return super.getContainer(req, res, appId, appAttemptId, containerId);
} }
@ -248,7 +248,7 @@ public class AHSWebServices extends WebServices {
@QueryParam(YarnWebServiceParams.REDIRECTED_FROM_NODE) @QueryParam(YarnWebServiceParams.REDIRECTED_FROM_NODE)
@DefaultValue("false") boolean redirected_from_node) { @DefaultValue("false") boolean redirected_from_node) {
ContainerId containerId = null; ContainerId containerId = null;
init(res); initForReadableEndpoints(res);
try { try {
containerId = ContainerId.fromString(containerIdStr); containerId = ContainerId.fromString(containerIdStr);
} catch (IllegalArgumentException e) { } catch (IllegalArgumentException e) {
@ -383,7 +383,7 @@ public class AHSWebServices extends WebServices {
@QueryParam(YarnWebServiceParams.NM_ID) String nmId, @QueryParam(YarnWebServiceParams.NM_ID) String nmId,
@QueryParam(YarnWebServiceParams.REDIRECTED_FROM_NODE) @QueryParam(YarnWebServiceParams.REDIRECTED_FROM_NODE)
@DefaultValue("false") boolean redirected_from_node) { @DefaultValue("false") boolean redirected_from_node) {
init(res); initForReadableEndpoints(res);
ContainerId containerId; ContainerId containerId;
try { try {
containerId = ContainerId.fromString(containerIdStr); containerId = ContainerId.fromString(containerIdStr);

View File

@ -385,7 +385,7 @@ public class WebServices {
return new ContainerInfo(container); return new ContainerInfo(container);
} }
protected void init(HttpServletResponse response) { protected void initForReadableEndpoints(HttpServletResponse response) {
// clear content type // clear content type
response.setContentType(null); response.setContentType(null);
} }

View File

@ -272,11 +272,47 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
return true; return true;
} }
private void init() { /**
* initForReadableEndpoints does the init for all readable REST end points.
*/
private void initForReadableEndpoints() {
// clear content type // clear content type
response.setContentType(null); response.setContentType(null);
} }
/**
* initForWritableEndpoints does the init and acls verification for all
* writable REST end points.
* @param callerUGI remote caller who initiated the request
* @param doAdminACLsCheck boolean flag to indicate whether ACLs check is needed
* @throws AuthorizationException in case of no access to perfom this op.
*/
private void initForWritableEndpoints(UserGroupInformation callerUGI,
boolean doAdminACLsCheck) throws AuthorizationException {
// clear content type
response.setContentType(null);
if (callerUGI == null) {
String msg = "Unable to obtain user name, user not authenticated";
throw new AuthorizationException(msg);
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
String msg = "The default static user cannot carry out this operation.";
throw new ForbiddenException(msg);
}
if (doAdminACLsCheck) {
ApplicationACLsManager aclsManager = rm.getApplicationACLsManager();
if (aclsManager.areACLsEnabled()) {
if (!aclsManager.isAdmin(callerUGI)) {
String msg = "Only admins can carry out this operation.";
throw new ForbiddenException(msg);
}
}
}
}
@GET @GET
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML }) @Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Override @Override
@ -289,7 +325,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML }) @Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Override @Override
public ClusterInfo getClusterInfo() { public ClusterInfo getClusterInfo() {
init(); initForReadableEndpoints();
return new ClusterInfo(this.rm); return new ClusterInfo(this.rm);
} }
@ -298,7 +334,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML }) @Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Override @Override
public ClusterMetricsInfo getClusterMetricsInfo() { public ClusterMetricsInfo getClusterMetricsInfo() {
init(); initForReadableEndpoints();
return new ClusterMetricsInfo(this.rm); return new ClusterMetricsInfo(this.rm);
} }
@ -307,7 +343,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML }) @Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Override @Override
public SchedulerTypeInfo getSchedulerInfo() { public SchedulerTypeInfo getSchedulerInfo() {
init(); initForReadableEndpoints();
ResourceScheduler rs = rm.getResourceScheduler(); ResourceScheduler rs = rm.getResourceScheduler();
SchedulerInfo sinfo; SchedulerInfo sinfo;
if (rs instanceof CapacityScheduler) { if (rs instanceof CapacityScheduler) {
@ -331,15 +367,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public String dumpSchedulerLogs(@FormParam(RMWSConsts.TIME) String time, public String dumpSchedulerLogs(@FormParam(RMWSConsts.TIME) String time,
@Context HttpServletRequest hsr) throws IOException { @Context HttpServletRequest hsr) throws IOException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
ApplicationACLsManager aclsManager = rm.getApplicationACLsManager(); initForWritableEndpoints(callerUGI, true);
if (aclsManager.areACLsEnabled()) {
if (callerUGI == null || !aclsManager.isAdmin(callerUGI)) {
String msg = "Only admins can carry out this operation.";
throw new ForbiddenException(msg);
}
}
ResourceScheduler rs = rm.getResourceScheduler(); ResourceScheduler rs = rm.getResourceScheduler();
int period = Integer.parseInt(time); int period = Integer.parseInt(time);
if (period <= 0) { if (period <= 0) {
@ -364,7 +394,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML }) @Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Override @Override
public NodesInfo getNodes(@QueryParam(RMWSConsts.STATES) String states) { public NodesInfo getNodes(@QueryParam(RMWSConsts.STATES) String states) {
init(); initForReadableEndpoints();
ResourceScheduler sched = this.rm.getResourceScheduler(); ResourceScheduler sched = this.rm.getResourceScheduler();
if (sched == null) { if (sched == null) {
throw new NotFoundException("Null ResourceScheduler instance"); throw new NotFoundException("Null ResourceScheduler instance");
@ -402,7 +433,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML }) @Produces({ MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML })
@Override @Override
public NodeInfo getNode(@PathParam(RMWSConsts.NODEID) String nodeId) { public NodeInfo getNode(@PathParam(RMWSConsts.NODEID) String nodeId) {
init(); initForReadableEndpoints();
if (nodeId == null || nodeId.isEmpty()) { if (nodeId == null || nodeId.isEmpty()) {
throw new NotFoundException("nodeId, " + nodeId + ", is empty or null"); throw new NotFoundException("nodeId, " + nodeId + ", is empty or null");
} }
@ -445,6 +477,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@QueryParam(RMWSConsts.APPLICATION_TYPES) Set<String> applicationTypes, @QueryParam(RMWSConsts.APPLICATION_TYPES) Set<String> applicationTypes,
@QueryParam(RMWSConsts.APPLICATION_TAGS) Set<String> applicationTags, @QueryParam(RMWSConsts.APPLICATION_TAGS) Set<String> applicationTags,
@QueryParam(RMWSConsts.DESELECTS) Set<String> unselectedFields) { @QueryParam(RMWSConsts.DESELECTS) Set<String> unselectedFields) {
initForReadableEndpoints();
boolean checkCount = false; boolean checkCount = false;
boolean checkStart = false; boolean checkStart = false;
boolean checkEnd = false; boolean checkEnd = false;
@ -459,7 +494,6 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
long fBegin = 0; long fBegin = 0;
long fEnd = Long.MAX_VALUE; long fEnd = Long.MAX_VALUE;
init();
if (count != null && !count.isEmpty()) { if (count != null && !count.isEmpty()) {
checkCount = true; checkCount = true;
countNum = Long.parseLong(count); countNum = Long.parseLong(count);
@ -624,8 +658,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public ActivitiesInfo getActivities(@Context HttpServletRequest hsr, public ActivitiesInfo getActivities(@Context HttpServletRequest hsr,
@QueryParam(RMWSConsts.NODEID) String nodeId) { @QueryParam(RMWSConsts.NODEID) String nodeId) {
YarnScheduler scheduler = rm.getRMContext().getScheduler(); initForReadableEndpoints();
YarnScheduler scheduler = rm.getRMContext().getScheduler();
if (scheduler instanceof AbstractYarnScheduler) { if (scheduler instanceof AbstractYarnScheduler) {
String errMessage = ""; String errMessage = "";
@ -696,8 +731,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
public AppActivitiesInfo getAppActivities(@Context HttpServletRequest hsr, public AppActivitiesInfo getAppActivities(@Context HttpServletRequest hsr,
@QueryParam(RMWSConsts.APP_ID) String appId, @QueryParam(RMWSConsts.APP_ID) String appId,
@QueryParam(RMWSConsts.MAX_TIME) String time) { @QueryParam(RMWSConsts.MAX_TIME) String time) {
YarnScheduler scheduler = rm.getRMContext().getScheduler(); initForReadableEndpoints();
YarnScheduler scheduler = rm.getRMContext().getScheduler();
if (scheduler instanceof AbstractYarnScheduler) { if (scheduler instanceof AbstractYarnScheduler) {
AbstractYarnScheduler abstractYarnScheduler = AbstractYarnScheduler abstractYarnScheduler =
(AbstractYarnScheduler) scheduler; (AbstractYarnScheduler) scheduler;
@ -749,7 +785,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest hsr, @Context HttpServletRequest hsr,
@QueryParam(RMWSConsts.STATES) Set<String> stateQueries, @QueryParam(RMWSConsts.STATES) Set<String> stateQueries,
@QueryParam(RMWSConsts.APPLICATION_TYPES) Set<String> typeQueries) { @QueryParam(RMWSConsts.APPLICATION_TYPES) Set<String> typeQueries) {
init(); initForReadableEndpoints();
// parse the params and build the scoreboard // parse the params and build the scoreboard
// converting state/type name to lowercase // converting state/type name to lowercase
@ -835,7 +871,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
public AppInfo getApp(@Context HttpServletRequest hsr, public AppInfo getApp(@Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId, @PathParam(RMWSConsts.APPID) String appId,
@QueryParam(RMWSConsts.DESELECTS) Set<String> unselectedFields) { @QueryParam(RMWSConsts.DESELECTS) Set<String> unselectedFields) {
init(); initForReadableEndpoints();
ApplicationId id = WebAppUtils.parseApplicationId(recordFactory, appId); ApplicationId id = WebAppUtils.parseApplicationId(recordFactory, appId);
RMApp app = rm.getRMContext().getRMApps().get(id); RMApp app = rm.getRMContext().getRMApps().get(id);
if (app == null) { if (app == null) {
@ -855,8 +892,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public AppAttemptsInfo getAppAttempts(@Context HttpServletRequest hsr, public AppAttemptsInfo getAppAttempts(@Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId) { @PathParam(RMWSConsts.APPID) String appId) {
initForReadableEndpoints();
init();
ApplicationId id = WebAppUtils.parseApplicationId(recordFactory, appId); ApplicationId id = WebAppUtils.parseApplicationId(recordFactory, appId);
RMApp app = rm.getRMContext().getRMApps().get(id); RMApp app = rm.getRMContext().getRMApps().get(id);
if (app == null) { if (app == null) {
@ -881,7 +918,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest req, @Context HttpServletResponse res, @Context HttpServletRequest req, @Context HttpServletResponse res,
@PathParam(RMWSConsts.APPID) String appId, @PathParam(RMWSConsts.APPID) String appId,
@PathParam(RMWSConsts.APPATTEMPTID) String appAttemptId) { @PathParam(RMWSConsts.APPATTEMPTID) String appAttemptId) {
init(res); initForReadableEndpoints(res);
return super.getAppAttempt(req, res, appId, appAttemptId); return super.getAppAttempt(req, res, appId, appAttemptId);
} }
@ -893,7 +930,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletResponse res, @Context HttpServletResponse res,
@PathParam(RMWSConsts.APPID) String appId, @PathParam(RMWSConsts.APPID) String appId,
@PathParam(RMWSConsts.APPATTEMPTID) String appAttemptId) { @PathParam(RMWSConsts.APPATTEMPTID) String appAttemptId) {
init(res); initForReadableEndpoints(res);
return super.getContainers(req, res, appId, appAttemptId); return super.getContainers(req, res, appId, appAttemptId);
} }
@ -906,7 +943,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@PathParam(RMWSConsts.APPID) String appId, @PathParam(RMWSConsts.APPID) String appId,
@PathParam(RMWSConsts.APPATTEMPTID) String appAttemptId, @PathParam(RMWSConsts.APPATTEMPTID) String appAttemptId,
@PathParam("containerid") String containerId) { @PathParam("containerid") String containerId) {
init(res); initForReadableEndpoints(res);
return super.getContainer(req, res, appId, appAttemptId, containerId); return super.getContainer(req, res, appId, appAttemptId, containerId);
} }
@ -916,7 +953,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public AppState getAppState(@Context HttpServletRequest hsr, public AppState getAppState(@Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException { @PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException {
init(); initForReadableEndpoints();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
String userName = ""; String userName = "";
if (callerUGI != null) { if (callerUGI != null) {
@ -951,18 +989,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest hsr, @Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException, @PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException,
YarnException, InterruptedException, IOException { YarnException, InterruptedException, IOException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
String msg = "Unable to obtain user name, user not authenticated";
throw new AuthorizationException(msg);
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
String msg = "The default static user cannot carry out this operation.";
return Response.status(Status.FORBIDDEN).entity(msg).build();
}
String userName = callerUGI.getUserName(); String userName = callerUGI.getUserName();
RMApp app = null; RMApp app = null;
@ -1000,7 +1028,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public NodeToLabelsInfo getNodeToLabels(@Context HttpServletRequest hsr) public NodeToLabelsInfo getNodeToLabels(@Context HttpServletRequest hsr)
throws IOException { throws IOException {
init(); initForReadableEndpoints();
NodeToLabelsInfo ntl = new NodeToLabelsInfo(); NodeToLabelsInfo ntl = new NodeToLabelsInfo();
HashMap<String, NodeLabelsInfo> ntlMap = ntl.getNodeToLabels(); HashMap<String, NodeLabelsInfo> ntlMap = ntl.getNodeToLabels();
@ -1021,7 +1049,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public LabelsToNodesInfo getLabelsToNodes( public LabelsToNodesInfo getLabelsToNodes(
@QueryParam(RMWSConsts.LABELS) Set<String> labels) throws IOException { @QueryParam(RMWSConsts.LABELS) Set<String> labels) throws IOException {
init(); initForReadableEndpoints();
LabelsToNodesInfo lts = new LabelsToNodesInfo(); LabelsToNodesInfo lts = new LabelsToNodesInfo();
Map<NodeLabelInfo, NodeIDsInfo> ltsMap = lts.getLabelsToNodes(); Map<NodeLabelInfo, NodeIDsInfo> ltsMap = lts.getLabelsToNodes();
@ -1052,6 +1080,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
public Response replaceLabelsOnNodes( public Response replaceLabelsOnNodes(
final NodeToLabelsEntryList newNodeToLabels, final NodeToLabelsEntryList newNodeToLabels,
@Context HttpServletRequest hsr) throws IOException { @Context HttpServletRequest hsr) throws IOException {
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
initForWritableEndpoints(callerUGI, false);
Map<NodeId, Set<String>> nodeIdToLabels = Map<NodeId, Set<String>> nodeIdToLabels =
new HashMap<NodeId, Set<String>>(); new HashMap<NodeId, Set<String>>();
@ -1072,6 +1103,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@QueryParam("labels") Set<String> newNodeLabelsName, @QueryParam("labels") Set<String> newNodeLabelsName,
@Context HttpServletRequest hsr, @PathParam("nodeId") String nodeId) @Context HttpServletRequest hsr, @PathParam("nodeId") String nodeId)
throws Exception { throws Exception {
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
initForWritableEndpoints(callerUGI, false);
NodeId nid = ConverterUtils.toNodeIdWithDefaultPort(nodeId); NodeId nid = ConverterUtils.toNodeIdWithDefaultPort(nodeId);
Map<NodeId, Set<String>> newLabelsForNode = Map<NodeId, Set<String>> newLabelsForNode =
new HashMap<NodeId, Set<String>>(); new HashMap<NodeId, Set<String>>();
@ -1084,7 +1118,6 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
private Response replaceLabelsOnNode( private Response replaceLabelsOnNode(
Map<NodeId, Set<String>> newLabelsForNode, HttpServletRequest hsr, Map<NodeId, Set<String>> newLabelsForNode, HttpServletRequest hsr,
String operation) throws IOException { String operation) throws IOException {
init();
NodeLabelsUtils.verifyCentralizedNodeLabelConfEnabled("replaceLabelsOnNode", NodeLabelsUtils.verifyCentralizedNodeLabelConfEnabled("replaceLabelsOnNode",
isCentralizedNodeLabelConfiguration); isCentralizedNodeLabelConfiguration);
@ -1117,7 +1150,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public NodeLabelsInfo getClusterNodeLabels(@Context HttpServletRequest hsr) public NodeLabelsInfo getClusterNodeLabels(@Context HttpServletRequest hsr)
throws IOException { throws IOException {
init(); initForReadableEndpoints();
List<NodeLabel> nodeLabels = List<NodeLabel> nodeLabels =
rm.getRMContext().getNodeLabelManager().getClusterNodeLabels(); rm.getRMContext().getNodeLabelManager().getClusterNodeLabels();
@ -1132,14 +1165,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public Response addToClusterNodeLabels(final NodeLabelsInfo newNodeLabels, public Response addToClusterNodeLabels(final NodeLabelsInfo newNodeLabels,
@Context HttpServletRequest hsr) throws Exception { @Context HttpServletRequest hsr) throws Exception {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
String msg = "Unable to obtain user name, user not authenticated for"
+ " post to .../add-node-labels";
throw new AuthorizationException(msg);
}
if (!rm.getRMContext().getNodeLabelManager().checkAccess(callerUGI)) { if (!rm.getRMContext().getNodeLabelManager().checkAccess(callerUGI)) {
String msg = "User " + callerUGI.getShortUserName() + " not authorized" String msg = "User " + callerUGI.getShortUserName() + " not authorized"
+ " for post to .../add-node-labels "; + " for post to .../add-node-labels ";
@ -1164,14 +1192,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
public Response removeFromCluserNodeLabels( public Response removeFromCluserNodeLabels(
@QueryParam(RMWSConsts.LABELS) Set<String> oldNodeLabels, @QueryParam(RMWSConsts.LABELS) Set<String> oldNodeLabels,
@Context HttpServletRequest hsr) throws Exception { @Context HttpServletRequest hsr) throws Exception {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
String msg = "Unable to obtain user name, user not authenticated for"
+ " post to .../remove-node-labels";
throw new AuthorizationException(msg);
}
if (!rm.getRMContext().getNodeLabelManager().checkAccess(callerUGI)) { if (!rm.getRMContext().getNodeLabelManager().checkAccess(callerUGI)) {
String msg = "User " + callerUGI.getShortUserName() + " not authorized" String msg = "User " + callerUGI.getShortUserName() + " not authorized"
+ " for post to .../remove-node-labels "; + " for post to .../remove-node-labels ";
@ -1194,7 +1217,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public NodeLabelsInfo getLabelsOnNode(@Context HttpServletRequest hsr, public NodeLabelsInfo getLabelsOnNode(@Context HttpServletRequest hsr,
@PathParam(RMWSConsts.NODEID) String nodeId) throws IOException { @PathParam(RMWSConsts.NODEID) String nodeId) throws IOException {
init(); initForReadableEndpoints();
NodeId nid = ConverterUtils.toNodeIdWithDefaultPort(nodeId); NodeId nid = ConverterUtils.toNodeIdWithDefaultPort(nodeId);
List<NodeLabel> labels = new ArrayList<NodeLabel>( List<NodeLabel> labels = new ArrayList<NodeLabel>(
@ -1263,7 +1286,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public AppPriority getAppPriority(@Context HttpServletRequest hsr, public AppPriority getAppPriority(@Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException { @PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException {
init(); initForReadableEndpoints();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
String userName = "UNKNOWN-USER"; String userName = "UNKNOWN-USER";
if (callerUGI != null) { if (callerUGI != null) {
@ -1294,23 +1318,13 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest hsr, @Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException, @PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException,
YarnException, InterruptedException, IOException { YarnException, InterruptedException, IOException {
init(); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
initForWritableEndpoints(callerUGI, false);
if (targetPriority == null) { if (targetPriority == null) {
throw new YarnException("Target Priority cannot be null"); throw new YarnException("Target Priority cannot be null");
} }
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) {
throw new AuthorizationException(
"Unable to obtain user name, user not authenticated");
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
return Response.status(Status.FORBIDDEN)
.entity("The default static user cannot carry out this operation.")
.build();
}
String userName = callerUGI.getUserName(); String userName = callerUGI.getUserName();
RMApp app = null; RMApp app = null;
try { try {
@ -1378,7 +1392,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public AppQueue getAppQueue(@Context HttpServletRequest hsr, public AppQueue getAppQueue(@Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException { @PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException {
init(); initForReadableEndpoints();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
String userName = "UNKNOWN-USER"; String userName = "UNKNOWN-USER";
if (callerUGI != null) { if (callerUGI != null) {
@ -1410,17 +1425,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException, @PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException,
YarnException, InterruptedException, IOException { YarnException, InterruptedException, IOException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
String msg = "Unable to obtain user name, user not authenticated";
throw new AuthorizationException(msg);
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
String msg = "The default static user cannot carry out this operation.";
return Response.status(Status.FORBIDDEN).entity(msg).build();
}
String userName = callerUGI.getUserName(); String userName = callerUGI.getUserName();
RMApp app = null; RMApp app = null;
@ -1530,16 +1536,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public Response createNewApplication(@Context HttpServletRequest hsr) public Response createNewApplication(@Context HttpServletRequest hsr)
throws AuthorizationException, IOException, InterruptedException { throws AuthorizationException, IOException, InterruptedException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
throw new AuthorizationException(
"Unable to obtain user name, " + "user not authenticated");
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
String msg = "The default static user cannot carry out this operation.";
return Response.status(Status.FORBIDDEN).entity(msg).build();
}
NewApplication appId = createNewApplication(); NewApplication appId = createNewApplication();
return Response.status(Status.OK).entity(appId).build(); return Response.status(Status.OK).entity(appId).build();
@ -1558,17 +1556,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest hsr) @Context HttpServletRequest hsr)
throws AuthorizationException, IOException, InterruptedException { throws AuthorizationException, IOException, InterruptedException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
throw new AuthorizationException(
"Unable to obtain user name, " + "user not authenticated");
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
String msg = "The default static user cannot carry out this operation.";
return Response.status(Status.FORBIDDEN).entity(msg).build();
}
ApplicationSubmissionContext appContext = ApplicationSubmissionContext appContext =
RMWebAppUtil.createAppSubmissionContext(newApp, conf); RMWebAppUtil.createAppSubmissionContext(newApp, conf);
@ -1622,14 +1611,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
return appId; return appId;
} }
private UserGroupInformation createKerberosUserGroupInformation( private void createKerberosUserGroupInformation(HttpServletRequest hsr,
HttpServletRequest hsr) throws AuthorizationException, YarnException { UserGroupInformation callerUGI)
throws AuthorizationException, YarnException {
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) {
String msg = "Unable to obtain user name, user not authenticated";
throw new AuthorizationException(msg);
}
String authType = hsr.getAuthType(); String authType = hsr.getAuthType();
if (!KerberosAuthenticationHandler.TYPE.equalsIgnoreCase(authType)) { if (!KerberosAuthenticationHandler.TYPE.equalsIgnoreCase(authType)) {
@ -1640,14 +1624,10 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
} }
if (hsr.getAttribute( if (hsr.getAttribute(
DelegationTokenAuthenticationHandler.DELEGATION_TOKEN_UGI_ATTRIBUTE) != null) { DelegationTokenAuthenticationHandler.DELEGATION_TOKEN_UGI_ATTRIBUTE) != null) {
String msg = String msg = "Delegation token operations cannot be carried out using "
"Delegation token operations cannot be carried out using delegation" + "delegation token authentication.";
+ " token authentication.";
throw new YarnException(msg); throw new YarnException(msg);
} }
callerUGI.setAuthenticationMethod(AuthenticationMethod.KERBEROS);
return callerUGI;
} }
@POST @POST
@ -1659,10 +1639,12 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest hsr) throws AuthorizationException, @Context HttpServletRequest hsr) throws AuthorizationException,
IOException, InterruptedException, Exception { IOException, InterruptedException, Exception {
init(); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
UserGroupInformation callerUGI; initForWritableEndpoints(callerUGI, false);
try { try {
callerUGI = createKerberosUserGroupInformation(hsr); createKerberosUserGroupInformation(hsr, callerUGI);
callerUGI.setAuthenticationMethod(AuthenticationMethod.KERBEROS);
} catch (YarnException ye) { } catch (YarnException ye) {
return Response.status(Status.FORBIDDEN).entity(ye.getMessage()).build(); return Response.status(Status.FORBIDDEN).entity(ye.getMessage()).build();
} }
@ -1678,10 +1660,12 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
throws AuthorizationException, IOException, InterruptedException, throws AuthorizationException, IOException, InterruptedException,
Exception { Exception {
init(); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
UserGroupInformation callerUGI; initForWritableEndpoints(callerUGI, false);
try { try {
callerUGI = createKerberosUserGroupInformation(hsr); createKerberosUserGroupInformation(hsr, callerUGI);
callerUGI.setAuthenticationMethod(AuthenticationMethod.KERBEROS);
} catch (YarnException ye) { } catch (YarnException ye) {
return Response.status(Status.FORBIDDEN).entity(ye.getMessage()).build(); return Response.status(Status.FORBIDDEN).entity(ye.getMessage()).build();
} }
@ -1792,10 +1776,12 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
throws AuthorizationException, IOException, InterruptedException, throws AuthorizationException, IOException, InterruptedException,
Exception { Exception {
init(); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
UserGroupInformation callerUGI; initForWritableEndpoints(callerUGI, false);
try { try {
callerUGI = createKerberosUserGroupInformation(hsr); createKerberosUserGroupInformation(hsr, callerUGI);
callerUGI.setAuthenticationMethod(AuthenticationMethod.KERBEROS);
} catch (YarnException ye) { } catch (YarnException ye) {
return Response.status(Status.FORBIDDEN).entity(ye.getMessage()).build(); return Response.status(Status.FORBIDDEN).entity(ye.getMessage()).build();
} }
@ -1868,16 +1854,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public Response createNewReservation(@Context HttpServletRequest hsr) public Response createNewReservation(@Context HttpServletRequest hsr)
throws AuthorizationException, IOException, InterruptedException { throws AuthorizationException, IOException, InterruptedException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
throw new AuthorizationException(
"Unable to obtain user name, " + "user not authenticated");
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
String msg = "The default static user cannot carry out this operation.";
return Response.status(Status.FORBIDDEN).entity(msg).build();
}
NewReservation reservationId = createNewReservation(); NewReservation reservationId = createNewReservation();
return Response.status(Status.OK).entity(reservationId).build(); return Response.status(Status.OK).entity(reservationId).build();
@ -1916,16 +1894,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest hsr) @Context HttpServletRequest hsr)
throws AuthorizationException, IOException, InterruptedException { throws AuthorizationException, IOException, InterruptedException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
throw new AuthorizationException(
"Unable to obtain user name, " + "user not authenticated");
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
String msg = "The default static user cannot carry out this operation.";
return Response.status(Status.FORBIDDEN).entity(msg).build();
}
final ReservationSubmissionRequest reservation = final ReservationSubmissionRequest reservation =
createReservationSubmissionRequest(resContext); createReservationSubmissionRequest(resContext);
@ -2013,16 +1983,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest hsr) @Context HttpServletRequest hsr)
throws AuthorizationException, IOException, InterruptedException { throws AuthorizationException, IOException, InterruptedException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
throw new AuthorizationException(
"Unable to obtain user name, " + "user not authenticated");
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
String msg = "The default static user cannot carry out this operation.";
return Response.status(Status.FORBIDDEN).entity(msg).build();
}
final ReservationUpdateRequest reservation = final ReservationUpdateRequest reservation =
createReservationUpdateRequest(resContext); createReservationUpdateRequest(resContext);
@ -2111,16 +2073,8 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest hsr) @Context HttpServletRequest hsr)
throws AuthorizationException, IOException, InterruptedException { throws AuthorizationException, IOException, InterruptedException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
throw new AuthorizationException(
"Unable to obtain user name, " + "user not authenticated");
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
String msg = "The default static user cannot carry out this operation.";
return Response.status(Status.FORBIDDEN).entity(msg).build();
}
final ReservationDeleteRequest reservation = final ReservationDeleteRequest reservation =
createReservationDeleteRequest(resContext); createReservationDeleteRequest(resContext);
@ -2167,7 +2121,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@QueryParam(RMWSConsts.END_TIME) @DefaultValue(DEFAULT_END_TIME) long endTime, @QueryParam(RMWSConsts.END_TIME) @DefaultValue(DEFAULT_END_TIME) long endTime,
@QueryParam(RMWSConsts.INCLUDE_RESOURCE) @DefaultValue(DEFAULT_INCLUDE_RESOURCE) boolean includeResourceAllocations, @QueryParam(RMWSConsts.INCLUDE_RESOURCE) @DefaultValue(DEFAULT_INCLUDE_RESOURCE) boolean includeResourceAllocations,
@Context HttpServletRequest hsr) throws Exception { @Context HttpServletRequest hsr) throws Exception {
init(); initForReadableEndpoints();
final ReservationListRequest request = ReservationListRequest.newInstance( final ReservationListRequest request = ReservationListRequest.newInstance(
queue, reservationId, startTime, endTime, includeResourceAllocations); queue, reservationId, startTime, endTime, includeResourceAllocations);
@ -2212,7 +2166,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
public AppTimeoutInfo getAppTimeout(@Context HttpServletRequest hsr, public AppTimeoutInfo getAppTimeout(@Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId, @PathParam(RMWSConsts.APPID) String appId,
@PathParam(RMWSConsts.TYPE) String type) throws AuthorizationException { @PathParam(RMWSConsts.TYPE) String type) throws AuthorizationException {
init(); initForReadableEndpoints();
RMApp app = validateAppTimeoutRequest(hsr, appId); RMApp app = validateAppTimeoutRequest(hsr, appId);
ApplicationTimeoutType appTimeoutType = parseTimeoutType(type); ApplicationTimeoutType appTimeoutType = parseTimeoutType(type);
@ -2255,7 +2209,7 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Override @Override
public AppTimeoutsInfo getAppTimeouts(@Context HttpServletRequest hsr, public AppTimeoutsInfo getAppTimeouts(@Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException { @PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException {
init(); initForReadableEndpoints();
RMApp app = validateAppTimeoutRequest(hsr, appId); RMApp app = validateAppTimeoutRequest(hsr, appId);
@ -2312,19 +2266,9 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
@Context HttpServletRequest hsr, @Context HttpServletRequest hsr,
@PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException, @PathParam(RMWSConsts.APPID) String appId) throws AuthorizationException,
YarnException, InterruptedException, IOException { YarnException, InterruptedException, IOException {
init();
UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true); UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, true);
if (callerUGI == null) { initForWritableEndpoints(callerUGI, false);
throw new AuthorizationException(
"Unable to obtain user name, user not authenticated");
}
if (UserGroupInformation.isSecurityEnabled() && isStaticUser(callerUGI)) {
return Response.status(Status.FORBIDDEN)
.entity("The default static user cannot carry out this operation.")
.build();
}
String userName = callerUGI.getUserName(); String userName = callerUGI.getUserName();
RMApp app = null; RMApp app = null;
@ -2436,17 +2380,10 @@ public class RMWebServices extends WebServices implements RMWebServiceProtocol {
public synchronized Response updateSchedulerConfiguration( public synchronized Response updateSchedulerConfiguration(
final SchedConfUpdateInfo mutationInfo, @Context HttpServletRequest hsr) final SchedConfUpdateInfo mutationInfo, @Context HttpServletRequest hsr)
throws AuthorizationException, InterruptedException { throws AuthorizationException, InterruptedException {
init();
final UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr, final UserGroupInformation callerUGI = getCallerUserGroupInformation(hsr,
true); true);
ApplicationACLsManager aclsManager = rm.getApplicationACLsManager(); initForWritableEndpoints(callerUGI, true);
if (aclsManager.areACLsEnabled()) {
if (callerUGI == null || !aclsManager.isAdmin(callerUGI)) {
String msg = "Only admins can carry out this operation.";
throw new ForbiddenException(msg);
}
}
final ResourceScheduler scheduler = rm.getResourceScheduler(); final ResourceScheduler scheduler = rm.getResourceScheduler();
if (scheduler instanceof MutableConfScheduler && ((MutableConfScheduler) if (scheduler instanceof MutableConfScheduler && ((MutableConfScheduler)

View File

@ -665,7 +665,7 @@ public class TestRMWebServices extends JerseyTestBase {
ResourceManager mockRM = mock(ResourceManager.class); ResourceManager mockRM = mock(ResourceManager.class);
Configuration conf = new YarnConfiguration(); Configuration conf = new YarnConfiguration();
HttpServletRequest mockHsr = mock(HttpServletRequest.class); HttpServletRequest mockHsr = mockHttpServletRequestByUserName("non-admin");
ApplicationACLsManager aclsManager = new ApplicationACLsManager(conf); ApplicationACLsManager aclsManager = new ApplicationACLsManager(conf);
when(mockRM.getApplicationACLsManager()).thenReturn(aclsManager); when(mockRM.getApplicationACLsManager()).thenReturn(aclsManager);
RMWebServices webSvc = RMWebServices webSvc =
@ -739,4 +739,13 @@ public class TestRMWebServices extends JerseyTestBase {
tickcount--; tickcount--;
} }
} }
private HttpServletRequest mockHttpServletRequestByUserName(String username) {
HttpServletRequest mockHsr = mock(HttpServletRequest.class);
when(mockHsr.getRemoteUser()).thenReturn(username);
Principal principal = mock(Principal.class);
when(principal.getName()).thenReturn(username);
when(mockHsr.getUserPrincipal()).thenReturn(principal);
return mockHsr;
}
} }

View File

@ -41,6 +41,7 @@ import org.apache.hadoop.yarn.server.resourcemanager.MockRM;
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.ResourceScheduler; import org.apache.hadoop.yarn.server.resourcemanager.scheduler.ResourceScheduler;
import org.apache.hadoop.yarn.server.resourcemanager.scheduler.fifo.FifoScheduler; import org.apache.hadoop.yarn.server.resourcemanager.scheduler.fifo.FifoScheduler;
import org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.ApplicationSubmissionContextInfo; import org.apache.hadoop.yarn.server.resourcemanager.webapp.dao.ApplicationSubmissionContextInfo;
import org.codehaus.jettison.json.JSONObject;
import org.junit.AfterClass; import org.junit.AfterClass;
import org.junit.BeforeClass; import org.junit.BeforeClass;
import org.junit.Test; import org.junit.Test;
@ -179,15 +180,20 @@ public class TestRMWebServicesHttpStaticUserPermissions {
assertEquals(Status.FORBIDDEN.getStatusCode(), conn.getResponseCode()); assertEquals(Status.FORBIDDEN.getStatusCode(), conn.getResponseCode());
InputStream errorStream = conn.getErrorStream(); InputStream errorStream = conn.getErrorStream();
String error = ""; String error = "";
BufferedReader reader = BufferedReader reader = new BufferedReader(
new BufferedReader(new InputStreamReader(errorStream, "UTF8")); new InputStreamReader(errorStream, "UTF8"));
for (String line; (line = reader.readLine()) != null;) { for (String line; (line = reader.readLine()) != null;) {
error += line; error += line;
} }
reader.close(); reader.close();
errorStream.close(); errorStream.close();
JSONObject errResponse = new JSONObject(error);
JSONObject remoteException = errResponse
.getJSONObject("RemoteException");
assertEquals( assertEquals(
"The default static user cannot carry out this operation.", error); "java.lang.Exception: The default static user cannot carry out "
+ "this operation.",
remoteException.getString("message"));
} }
conn.disconnect(); conn.disconnect();
} }