Class CsvRulesManager
java.lang.Object
org.kawanfw.sql.api.server.firewall.CsvRulesManager
- All Implemented Interfaces:
SqlFirewallManager
- Direct Known Subclasses:
CsvRulesManagerNoReload
public class CsvRulesManager extends Object implements SqlFirewallManager
Firewall manager that checks each SQL request against the content of a CSV
File. The CSV file is loaded in memory at AceQL server startup.
The name of the CSV file that will be used by a database is:
The file must be located in the same directory as the
The CSV file contains the rules for accessing the tables, with semicolon for separator:
Note that:
Note that updating the CSV file will reload the rules. If you prefer to disallow dynamic reloading, use a
See an example of CSV file: sampledb_rules_manager.csv
The name of the CSV file that will be used by a database is:
<database>_rules_manager.csv
, where database
is
the name of the database declared in the aceql-server.properties
files.The file must be located in the same directory as the
aceql-server.properties
file used when starting the AceQL server.The CSV file contains the rules for accessing the tables, with semicolon for separator:
- First line contains the element names:
username;table;delete;insert;select;update;optional comments
- Subsequent lines contain the rules, with the values for each element:
username
: AceQL username of the connected client.table
: the table name to access. Name must not include dots and prefixes.delete
:true
if the username has the right to delete rows of the table, elsefalse
.insert
:true
if the username has the right to insert rows in the table, elsefalse
.select
:true
if the username has the right to select rows of the table, elsefalse
.update
:true
if the username has the right to update rows of the table, elsefalse
.- Optional comments for the rule.
Note that:
public
value may be used for theusername
column and means any username. At execution time: if a rule withpublic
returns true for a CSV column, the rule supersedes other declared rules declared for specific users for the same CSV column.all
value is allowed fortable
column and means any table. At execution time: If a rule withall
returns true for a CSV column, the rule supersedes other specific rules declared for specific tables for the same CSV column.
Note that updating the CSV file will reload the rules. If you prefer to disallow dynamic reloading, use a
CsvRulesManagerNoReload
implementation. See an example of CSV file: sampledb_rules_manager.csv
- Since:
- 4.1
- Author:
- Nicolas de Pomereu
-
Constructor Summary
Constructors Constructor Description CsvRulesManager()
-
Method Summary
Modifier and Type Method Description boolean
allowMetadataQuery(String username, String database, Connection connection)
Says if the username is allowed call the Metadata Query API for the passed database.boolean
allowSqlRunAfterAnalysis(SqlEvent sqlEvent, Connection connection)
Allows the execution of the statement if an allowing rules exists in the:<database>_rules_manager.csv
file.boolean
allowStatementClass(String username, String database, Connection connection)
Allows to define if the passed username is allowed to create and use aStatement
instance that is not aPreparedStatement
.
-
Constructor Details
-
CsvRulesManager
public CsvRulesManager()
-
-
Method Details
-
allowSqlRunAfterAnalysis
public boolean allowSqlRunAfterAnalysis(SqlEvent sqlEvent, Connection connection) throws IOException, SQLExceptionAllows the execution of the statement if an allowing rules exists in the:<database>_rules_manager.csv
file.- Specified by:
allowSqlRunAfterAnalysis
in interfaceSqlFirewallManager
- Parameters:
sqlEvent
- the SQL event asked by the client side. Contains all info about the SQL call (client username, database name, IP Address of the client, and SQL statement details)connection
- The current SQL/JDBCConnection
- Returns:
true
if the analyzed statement or prepared statement is validated and authorized to run, elsefalse
- Throws:
IOException
- if an IOException occursSQLException
- if a SQLException occurs
-
allowStatementClass
public boolean allowStatementClass(String username, String database, Connection connection) throws IOException, SQLExceptionDescription copied from interface:SqlFirewallManager
Allows to define if the passed username is allowed to create and use aStatement
instance that is not aPreparedStatement
.- Specified by:
allowStatementClass
in interfaceSqlFirewallManager
- Parameters:
username
- the client username to check the rule fordatabase
- the database name as defined in the JDBC URL fieldconnection
- The current SQL/JDBCConnection
- Returns:
true
. (Client programs will be allowed to create rawStatement
, i.e. call statements without parameters.)- Throws:
IOException
- if an IOException occursSQLException
- if a SQLException occurs
-
allowMetadataQuery
public boolean allowMetadataQuery(String username, String database, Connection connection) throws IOException, SQLExceptionDescription copied from interface:SqlFirewallManager
Says if the username is allowed call the Metadata Query API for the passed database.- Specified by:
allowMetadataQuery
in interfaceSqlFirewallManager
- Parameters:
username
- the client username to check the rule fordatabase
- the database name as defined in the JDBC URL fieldconnection
- The current SQL/JDBCConnection
- Returns:
true
. (Client programs will be allowed to call the Metadata Query API).- Throws:
IOException
- if an IOException occursSQLException
- if a SQLException occurs
-