OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Parser::GrantPrivilegesStmt Class Reference

#include <ParserNode.h>

+ Inheritance diagram for Parser::GrantPrivilegesStmt:
+ Collaboration diagram for Parser::GrantPrivilegesStmt:

Public Member Functions

 GrantPrivilegesStmt (std::list< std::string * > *p, std::string *t, std::string *o, std::list< std::string * > *g)
 
 GrantPrivilegesStmt (const rapidjson::Value &payload)
 
const std::vector< std::string > & get_privs () const
 
const std::string & get_object_type () const
 
const std::string & get_object () const
 
const std::vector< std::string > & get_grantees () const
 
void execute (const Catalog_Namespace::SessionInfo &session, bool read_only_mode) override
 
- Public Member Functions inherited from Parser::DDLStmt
void setColumnDescriptor (ColumnDescriptor &cd, const ColumnDef *coldef)
 
- Public Member Functions inherited from Parser::Node
virtual ~Node ()
 

Private Attributes

std::vector< std::string > privileges_
 
std::unique_ptr< std::string > type_
 
std::unique_ptr< std::string > target_
 
std::vector< std::string > grantees_
 

Detailed Description

Definition at line 1555 of file ParserNode.h.

Constructor & Destructor Documentation

Parser::GrantPrivilegesStmt::GrantPrivilegesStmt ( std::list< std::string * > *  p,
std::string *  t,
std::string *  o,
std::list< std::string * > *  g 
)
inline

Definition at line 1557 of file ParserNode.h.

References grantees_, Parser::parser_slistval_to_vector(), and privileges_.

1561  : type_(t), target_(o) {
1564  }
std::vector< std::string > privileges_
Definition: ParserNode.h:1575
std::unique_ptr< std::string > target_
Definition: ParserNode.h:1577
void parser_slistval_to_vector(std::list< std::string * > *l, std::vector< std::string > &v)
Definition: ParserNode.h:1541
std::vector< std::string > grantees_
Definition: ParserNode.h:1578
std::unique_ptr< std::string > type_
Definition: ParserNode.h:1576

+ Here is the call graph for this function:

Parser::GrantPrivilegesStmt::GrantPrivilegesStmt ( const rapidjson::Value &  payload)

Definition at line 6134 of file ParserNode.cpp.

References CHECK, grantees_, json_str(), privileges_, target_, and type_.

6134  {
6135  CHECK(payload.HasMember("type"));
6136  type_ = std::make_unique<std::string>(json_str(payload["type"]));
6137 
6138  CHECK(payload.HasMember("target"));
6139  target_ = std::make_unique<std::string>(json_str(payload["target"]));
6140 
6141  if (payload.HasMember("privileges")) {
6142  CHECK(payload["privileges"].IsArray());
6143  for (auto& privilege : payload["privileges"].GetArray()) {
6144  auto r = json_str(privilege);
6145  // privilege was a StringLiteral
6146  // and is wrapped with quotes which need to get removed
6147  boost::algorithm::trim_if(r, boost::is_any_of(" \"'`"));
6148  privileges_.emplace_back(r);
6149  }
6150  }
6151  if (payload.HasMember("grantees")) {
6152  CHECK(payload["grantees"].IsArray());
6153  for (auto& grantee : payload["grantees"].GetArray()) {
6154  std::string g = json_str(grantee);
6155  grantees_.emplace_back(g);
6156  }
6157  }
6158 }
std::vector< std::string > privileges_
Definition: ParserNode.h:1575
std::unique_ptr< std::string > target_
Definition: ParserNode.h:1577
const std::string json_str(const rapidjson::Value &obj) noexcept
Definition: JsonAccessors.h:46
std::vector< std::string > grantees_
Definition: ParserNode.h:1578
std::unique_ptr< std::string > type_
Definition: ParserNode.h:1576
#define CHECK(condition)
Definition: Logger.h:291

+ Here is the call graph for this function:

Member Function Documentation

void Parser::GrantPrivilegesStmt::execute ( const Catalog_Namespace::SessionInfo session,
bool  read_only_mode 
)
overridevirtual

Implements Parser::DDLStmt.

Definition at line 6160 of file ParserNode.cpp.

References Parser::createObject(), DBObjectTypeFromString(), Parser::extractObjectNameFromHierName(), g_enable_fsi, Catalog_Namespace::SessionInfo::get_currentUser(), get_object(), get_object_type(), get_privs(), Catalog_Namespace::SessionInfo::getCatalog(), grantees_, Parser::parseStringPrivs(), ServerDBObjectType, and Parser::verifyObject().

Referenced by heavydb.cursor.Cursor::executemany().

6161  {
6162  if (read_only_mode) {
6163  throw std::runtime_error("GRANT invalid in read only mode.");
6164  }
6165  auto& catalog = session.getCatalog();
6166  const auto& currentUser = session.get_currentUser();
6167  const auto parserObjectType = boost::to_upper_copy<std::string>(get_object_type());
6168  const auto objectName =
6169  extractObjectNameFromHierName(get_object(), parserObjectType, catalog);
6170  auto objectType = DBObjectTypeFromString(parserObjectType);
6171  if (objectType == ServerDBObjectType && !g_enable_fsi) {
6172  throw std::runtime_error("GRANT failed. SERVER object unrecognized.");
6173  }
6174  /* verify object exists and is of proper type *before* trying to execute */
6175  verifyObject(catalog, objectName, objectType, "GRANT");
6176 
6177  DBObject dbObject = createObject(objectName, objectType);
6178  /* verify object ownership if not suser */
6179  if (!currentUser.isSuper) {
6180  if (!SysCatalog::instance().verifyDBObjectOwnership(currentUser, dbObject, catalog)) {
6181  throw std::runtime_error(
6182  "GRANT failed. It can only be executed by super user or owner of the "
6183  "object.");
6184  }
6185  }
6186  /* set proper values of privileges & grant them to the object */
6187  std::vector<DBObject> objects(get_privs().size(), dbObject);
6188  for (size_t i = 0; i < get_privs().size(); ++i) {
6189  std::pair<AccessPrivileges, DBObjectType> priv = parseStringPrivs(
6190  boost::to_upper_copy<std::string>(get_privs()[i]), objectType, get_object());
6191  objects[i].setPrivileges(priv.first);
6192  objects[i].setPermissionType(priv.second);
6193  if (priv.second == ServerDBObjectType && !g_enable_fsi) {
6194  throw std::runtime_error("GRANT failed. SERVER object unrecognized.");
6195  }
6196  }
6197  SysCatalog::instance().grantDBObjectPrivilegesBatch(grantees_, objects, catalog);
6198 }
std::string extractObjectNameFromHierName(const std::string &objectHierName, const std::string &objectType, const Catalog_Namespace::Catalog &cat)
const std::string & get_object_type() const
Definition: ParserNode.h:1568
DBObjectType DBObjectTypeFromString(const std::string &type)
Definition: DBObject.cpp:110
std::vector< std::string > grantees_
Definition: ParserNode.h:1578
Catalog & getCatalog() const
Definition: SessionInfo.h:75
static std::pair< AccessPrivileges, DBObjectType > parseStringPrivs(const std::string &privs, const DBObjectType &objectType, const std::string &object_name)
static void verifyObject(Catalog_Namespace::Catalog &sessionCatalog, const std::string &objectName, DBObjectType objectType, const std::string &command)
const std::vector< std::string > & get_privs() const
Definition: ParserNode.h:1567
static DBObject createObject(const std::string &objectName, DBObjectType objectType)
bool g_enable_fsi
Definition: Catalog.cpp:96
const UserMetadata & get_currentUser() const
Definition: SessionInfo.h:88
const std::string & get_object() const
Definition: ParserNode.h:1569

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

const std::vector<std::string>& Parser::GrantPrivilegesStmt::get_grantees ( ) const
inline

Definition at line 1570 of file ParserNode.h.

References grantees_.

1570 { return grantees_; }
std::vector< std::string > grantees_
Definition: ParserNode.h:1578
const std::string& Parser::GrantPrivilegesStmt::get_object ( ) const
inline

Definition at line 1569 of file ParserNode.h.

References target_.

Referenced by execute().

1569 { return *target_; }
std::unique_ptr< std::string > target_
Definition: ParserNode.h:1577

+ Here is the caller graph for this function:

const std::string& Parser::GrantPrivilegesStmt::get_object_type ( ) const
inline

Definition at line 1568 of file ParserNode.h.

References type_.

Referenced by execute().

1568 { return *type_; }
std::unique_ptr< std::string > type_
Definition: ParserNode.h:1576

+ Here is the caller graph for this function:

const std::vector<std::string>& Parser::GrantPrivilegesStmt::get_privs ( ) const
inline

Definition at line 1567 of file ParserNode.h.

References privileges_.

Referenced by execute().

1567 { return privileges_; }
std::vector< std::string > privileges_
Definition: ParserNode.h:1575

+ Here is the caller graph for this function:

Member Data Documentation

std::vector<std::string> Parser::GrantPrivilegesStmt::grantees_
private

Definition at line 1578 of file ParserNode.h.

Referenced by execute(), get_grantees(), and GrantPrivilegesStmt().

std::vector<std::string> Parser::GrantPrivilegesStmt::privileges_
private

Definition at line 1575 of file ParserNode.h.

Referenced by get_privs(), and GrantPrivilegesStmt().

std::unique_ptr<std::string> Parser::GrantPrivilegesStmt::target_
private

Definition at line 1577 of file ParserNode.h.

Referenced by get_object(), and GrantPrivilegesStmt().

std::unique_ptr<std::string> Parser::GrantPrivilegesStmt::type_
private

Definition at line 1576 of file ParserNode.h.

Referenced by get_object_type(), and GrantPrivilegesStmt().


The documentation for this class was generated from the following files: