Java Code Examples for org.apache.ranger.plugin.audit.RangerDefaultAuditHandler#logAuthzAudit()
The following examples show how to use
org.apache.ranger.plugin.audit.RangerDefaultAuditHandler#logAuthzAudit() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RangerAuthorizationCoprocessor.java From ranger with Apache License 2.0 | 6 votes |
void requirePermission(final ObserverContext<?> ctx, final String operation, final Action action, final RegionCoprocessorEnvironment regionServerEnv, final Map<byte[], ? extends Collection<?>> familyMap) throws AccessDeniedException { RangerPerfTracer perf = null; try { if (RangerPerfTracer.isPerfTraceEnabled(PERF_HBASEAUTH_REQUEST_LOG)) { perf = RangerPerfTracer.getPerfTracer(PERF_HBASEAUTH_REQUEST_LOG, "RangerAuthorizationCoprocessor.requirePermission(request=Operation[" + operation + "]"); } ColumnFamilyAccessResult accessResult = evaluateAccess(ctx, operation, action, regionServerEnv, familyMap); RangerDefaultAuditHandler auditHandler = new RangerDefaultAuditHandler(hbasePlugin.getConfig()); if (accessResult._everythingIsAccessible) { auditHandler.logAuthzAudits(accessResult._accessAllowedEvents); auditHandler.logAuthzAudits(accessResult._familyLevelAccessEvents); LOG.debug("requirePermission: exiting: all access was allowed"); return; } else { auditHandler.logAuthzAudit(accessResult._accessDeniedEvent); LOG.debug("requirePermission: exiting: throwing exception as everything wasn't accessible"); throw new AccessDeniedException(accessResult._denialReason); } } finally { RangerPerfTracer.log(perf); } }
Example 2
Source File: RangerAuthorizationCoprocessor.java From ranger with Apache License 2.0 | 5 votes |
Filter authorizeAccess(ObserverContext<?> ctx, String operation, Action action, final RegionCoprocessorEnvironment env, final Map<byte[], NavigableSet<byte[]>> familyMap) throws AccessDeniedException { if (LOG.isDebugEnabled()) { LOG.debug("==> authorizeAccess"); } RangerPerfTracer perf = null; try { perf = RangerPerfTracer.getPerfTracer(PERF_HBASEAUTH_REQUEST_LOG, "RangerAuthorizationCoprocessor.authorizeAccess(request=Operation[" + operation + "]"); ColumnFamilyAccessResult accessResult = evaluateAccess(ctx, operation, action, env, familyMap); RangerDefaultAuditHandler auditHandler = new RangerDefaultAuditHandler(hbasePlugin.getConfig()); if (accessResult._everythingIsAccessible) { auditHandler.logAuthzAudits(accessResult._accessAllowedEvents); auditHandler.logAuthzAudits(accessResult._familyLevelAccessEvents); LOG.debug("authorizeAccess: exiting: No filter returned since all access was allowed"); return null; // no filter needed since we are good to go. } else if (accessResult._somethingIsAccessible) { // NOTE: audit logging is split beween logging here (in scope of preOp/preGet) and logging in the filter component for those that couldn't be determined auditHandler.logAuthzAudits(accessResult._accessAllowedEvents); LOG.debug("authorizeAccess: exiting: Filter returned since some access was allowed"); return accessResult._filter; } else { // If we are here then it means nothing was accessible! So let's log one denial (in our case, the last denial) and throw an exception auditHandler.logAuthzAudit(accessResult._accessDeniedEvent); LOG.debug("authorizeAccess: exiting: Throwing exception since nothing was accessible"); throw new AccessDeniedException(accessResult._denialReason); } } finally { RangerPerfTracer.log(perf); if (LOG.isDebugEnabled()) { LOG.debug("<== authorizeAccess"); } } }