package org.apache.cassandra.auth; /* * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * */ import java.io.FileInputStream; import java.io.IOException; import java.nio.ByteBuffer; import java.util.EnumSet; import java.util.List; import java.util.Properties; import org.apache.cassandra.config.ConfigurationException; import org.apache.cassandra.thrift.CassandraServer; import org.apache.cassandra.thrift.ColumnPath; import org.apache.cassandra.thrift.ConsistencyLevel; public class SimpleAuthority implements IAuthority { private static final String ISO_8859_1 = "ISO-8859-1"; public final static String ACCESS_FILENAME_PROPERTY = "access.properties"; // magical property for WRITE permissions to the keyspaces list public final static String KEYSPACES_WRITE_PROPERTY = "<modify-keyspaces>"; private Properties accessProperties = null; public EnumSet<Permission> authorize(AuthenticatedUser user, List<Object> resource) { if (resource.size() < 2 || !Resources.ROOT.equals(resource.get(0)) || !Resources.KEYSPACES.equals(resource.get(1))) return Permission.NONE; String keyspace, columnFamily = null, column = null; EnumSet<Permission> authorized = Permission.NONE; // /cassandra/keyspaces if (resource.size() == 2) { keyspace = KEYSPACES_WRITE_PROPERTY; authorized = EnumSet.of(Permission.READ); } // /cassandra/keyspaces/<keyspace name> else if (resource.size() == 3) { keyspace = (String) resource.get(2); } // /cassandra/keyspaces/<keyspace name>/<cf name> else if (resource.size() == 4) { keyspace = (String) resource.get(2); columnFamily = (String) resource.get(3); } else if (resource.size() == 5) { keyspace = (String) resource.get(2); columnFamily = (String) resource.get(3); column = (String) resource.get(4); } else { // We don't currently descend any lower in the hierarchy. throw new UnsupportedOperationException(); } readPolicyFile(); // Special case access to the keyspace list if (keyspace == KEYSPACES_WRITE_PROPERTY) { String kspAdmins = accessProperties .getProperty(KEYSPACES_WRITE_PROPERTY); for (String admin : kspAdmins.split(",")) if (admin.equals(user.username)) return Permission.ALL; } boolean canRead = false, canWrite = false; String readers = null, writers = null; if (column != null) { readers = accessProperties.getProperty(keyspace + "." + columnFamily + "." + column + ".<ro>"); writers = accessProperties.getProperty(keyspace + "." + columnFamily + "." + column + ".<rw>"); } else if (columnFamily != null) { readers = accessProperties.getProperty(keyspace + "." + columnFamily + ".<ro>"); writers = accessProperties.getProperty(keyspace + "." + columnFamily + ".<rw>"); } else { readers = accessProperties.getProperty(keyspace + ".<ro>"); writers = accessProperties.getProperty(keyspace + ".<rw>"); } // if (columnFamily == null) // { // readers = accessProperties.getProperty(keyspace + ".<ro>"); // writers = accessProperties.getProperty(keyspace + ".<rw>"); // } // else // { // readers = accessProperties.getProperty(keyspace + "." + columnFamily // + ".<ro>"); // writers = accessProperties.getProperty(keyspace + "." + columnFamily // + ".<rw>"); // } if (readers != null) { for (String reader : readers.split(",")) { if (reader.equals(user.username)) { canRead = true; break; } } } if (writers != null) { for (String writer : writers.split(",")) { if (writer.equals(user.username)) { canWrite = true; break; } } } if (canWrite) authorized = Permission.ALL; else if (canRead) authorized = EnumSet.of(Permission.READ); return authorized; } public void validateConfiguration() throws ConfigurationException { String afilename = System.getProperty(ACCESS_FILENAME_PROPERTY); if (afilename == null) { throw new ConfigurationException(String.format( "When using %s, '%s' property must be defined.", this .getClass().getCanonicalName(), ACCESS_FILENAME_PROPERTY)); } } @Override public EnumSet<Permission> authorize(ByteBuffer inputKey, AuthenticatedUser user, List<Object> resources, CassandraServer server) { EnumSet<Permission> authorized = Permission.NONE; readPolicyFile(); ConsistencyLevel consistency_level = ConsistencyLevel.findByValue(1); try { // 1. Read patient's name ByteBuffer key1 = ByteBuffer.allocate(1024); key1.put("name".getBytes(ISO_8859_1)); ColumnPath column_path1 = new ColumnPath(); column_path1.setColumn_family("Patient"); column_path1.setColumn("username".getBytes(ISO_8859_1)); server.get(key1, column_path1, consistency_level); ByteBuffer key = ByteBuffer.allocate(1024); key.put("curr_patients".getBytes(ISO_8859_1)); ColumnPath column_path = new ColumnPath(); column_path.setColumn_family("Doctor"); column_path.setColumn("username".getBytes(ISO_8859_1)); server.get(key, column_path, consistency_level); } catch (Exception exp) { exp.printStackTrace(); } return authorized; } private void readPolicyFile() { String accessFilename = System.getProperty(ACCESS_FILENAME_PROPERTY); try { // TODO: auto-reload when the file has been updated if (accessProperties == null) // Don't hit the disk on every // invocation { FileInputStream in = new FileInputStream(accessFilename); accessProperties = new Properties(); accessProperties.load(in); in.close(); } } catch (IOException e) { throw new RuntimeException(String.format( "Authorization table file '%s' could not be opened: %s", accessFilename, e.getMessage())); } } }