Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id B5C75200CDD for ; Mon, 24 Jul 2017 06:53:10 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id AD92016449D; Mon, 24 Jul 2017 04:53:10 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id F3AB016448A for ; Mon, 24 Jul 2017 06:53:09 +0200 (CEST) Received: (qmail 4237 invoked by uid 500); 24 Jul 2017 04:53:09 -0000 Mailing-List: contact issues-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Delivered-To: mailing list issues@hbase.apache.org Received: (qmail 4217 invoked by uid 99); 24 Jul 2017 04:53:08 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd2-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Jul 2017 04:53:08 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd2-us-west.apache.org (ASF Mail Server at spamd2-us-west.apache.org) with ESMTP id DE2EF1A0670 for ; Mon, 24 Jul 2017 04:53:07 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd2-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -99.202 X-Spam-Level: X-Spam-Status: No, score=-99.202 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd2-us-west.apache.org [10.40.0.9]) (amavisd-new, port 10024) with ESMTP id Ln49Xzr-E_kj for ; Mon, 24 Jul 2017 04:53:06 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTP id 0A9135FDEE for ; Mon, 24 Jul 2017 04:53:06 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 32FF2E0D28 for ; Mon, 24 Jul 2017 04:53:04 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id 37D6021EE5 for ; Mon, 24 Jul 2017 04:53:02 +0000 (UTC) Date: Mon, 24 Jul 2017 04:53:02 +0000 (UTC) From: "Anoop Sam John (JIRA)" To: issues@hbase.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Commented] (HBASE-18437) Revoke access permissions of a user from a table does not work as expected MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Mon, 24 Jul 2017 04:53:10 -0000 [ https://issues.apache.org/jira/browse/HBASE-18437?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16097942#comment-16097942 ] Anoop Sam John commented on HBASE-18437: ---------------------------------------- Seems like the Actions passed in the revoke API is not at all considered in server side. Its been PBed to server. There just creating a Delete and that will end up deleting the table's user permission cells. Here as passing only one action, it is supposed to upsert a new cell (RK : TableName, CF : fixedCF, Qualifier :User) with remaining permission(s) > Revoke access permissions of a user from a table does not work as expected > -------------------------------------------------------------------------- > > Key: HBASE-18437 > URL: https://issues.apache.org/jira/browse/HBASE-18437 > Project: HBase > Issue Type: Bug > Components: security > Affects Versions: 1.1.12 > Reporter: Ashish Singhi > Assignee: Ashish Singhi > > A table for which a user was granted 'RW' permission. Now when we want to revoke its 'W' permission only, code removes the user itself from that table permissions. > Below is the test code which reproduces the issue. > {noformat} > @Test(timeout = 180000) > public void testRevokeOnlySomePerms() throws Throwable { > TableName name = TableName.valueOf("testAgain"); > HTableDescriptor htd = new HTableDescriptor(name); > HColumnDescriptor hcd = new HColumnDescriptor("cf"); > htd.addFamily(hcd); > createTable(TEST_UTIL, htd); > TEST_UTIL.waitUntilAllRegionsAssigned(name); > try (Connection conn = ConnectionFactory.createConnection(conf)) { > AccessControlClient.grant(conn, name, USER_RO.getShortName(), null, null, Action.READ, Action.WRITE); > ListMultimap tablePermissions = AccessControlLists.getTablePermissions(conf, name); > // hbase user and USER_RO has permis > assertEquals(2, tablePermissions.size()); > AccessControlClient.revoke(conn, name, USER_RO.getShortName(), null, null, Action.WRITE); > tablePermissions = AccessControlLists.getTablePermissions(conf, name); > List userPerm = tablePermissions.get(USER_RO.getShortName()); > assertEquals(1, userPerm.size()); > } finally { > deleteTable(TEST_UTIL, name); > } > } > {noformat} -- This message was sent by Atlassian JIRA (v6.4.14#64029)