OmniSciDB  a5dc49c757
 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 6155 of file ParserNode.cpp.

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

6155  {
6156  CHECK(payload.HasMember("type"));
6157  type_ = std::make_unique<std::string>(json_str(payload["type"]));
6158 
6159  CHECK(payload.HasMember("target"));
6160  target_ = std::make_unique<std::string>(json_str(payload["target"]));
6161 
6162  if (payload.HasMember("privileges")) {
6163  CHECK(payload["privileges"].IsArray());
6164  for (auto& privilege : payload["privileges"].GetArray()) {
6165  auto r = json_str(privilege);
6166  // privilege was a StringLiteral
6167  // and is wrapped with quotes which need to get removed
6168  boost::algorithm::trim_if(r, boost::is_any_of(" \"'`"));
6169  privileges_.emplace_back(r);
6170  }
6171  }
6172  if (payload.HasMember("grantees")) {
6173  CHECK(payload["grantees"].IsArray());
6174  for (auto& grantee : payload["grantees"].GetArray()) {
6175  std::string g = json_str(grantee);
6176  grantees_.emplace_back(g);
6177  }
6178  }
6179 }
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 6181 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_, lockmgr::instance(), Parser::parseStringPrivs(), ServerDBObjectType, and Parser::verifyObject().

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

6182  {
6183  if (read_only_mode) {
6184  throw std::runtime_error("GRANT invalid in read only mode.");
6185  }
6186  auto& catalog = session.getCatalog();
6187  const auto& currentUser = session.get_currentUser();
6188  const auto parserObjectType = boost::to_upper_copy<std::string>(get_object_type());
6189  const auto objectName =
6190  extractObjectNameFromHierName(get_object(), parserObjectType, catalog);
6191  auto objectType = DBObjectTypeFromString(parserObjectType);
6192  if (objectType == ServerDBObjectType && !g_enable_fsi) {
6193  throw std::runtime_error("GRANT failed. SERVER object unrecognized.");
6194  }
6195  /* verify object exists and is of proper type *before* trying to execute */
6196  verifyObject(catalog, objectName, objectType, "GRANT");
6197 
6198  DBObject dbObject = createObject(objectName, objectType);
6199  /* verify object ownership if not suser */
6200  if (!currentUser.isSuper) {
6201  if (!SysCatalog::instance().verifyDBObjectOwnership(currentUser, dbObject, catalog)) {
6202  throw std::runtime_error(
6203  "GRANT failed. It can only be executed by super user or owner of the "
6204  "object.");
6205  }
6206  }
6207  /* set proper values of privileges & grant them to the object */
6208  std::vector<DBObject> objects(get_privs().size(), dbObject);
6209  for (size_t i = 0; i < get_privs().size(); ++i) {
6210  std::pair<AccessPrivileges, DBObjectType> priv = parseStringPrivs(
6211  boost::to_upper_copy<std::string>(get_privs()[i]), objectType, get_object());
6212  objects[i].setPrivileges(priv.first);
6213  objects[i].setPermissionType(priv.second);
6214  if (priv.second == ServerDBObjectType && !g_enable_fsi) {
6215  throw std::runtime_error("GRANT failed. SERVER object unrecognized.");
6216  }
6217  }
6218  SysCatalog::instance().grantDBObjectPrivilegesBatch(grantees_, objects, catalog);
6219 }
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
T & instance()
Definition: LockMgr.cpp:101
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: