OmniSciDB  c1a53651b2
 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 1568 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 1570 of file ParserNode.h.

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

1574  : type_(t), target_(o) {
1577  }
std::vector< std::string > privileges_
Definition: ParserNode.h:1588
std::unique_ptr< std::string > target_
Definition: ParserNode.h:1590
void parser_slistval_to_vector(std::list< std::string * > *l, std::vector< std::string > &v)
Definition: ParserNode.h:1554
std::vector< std::string > grantees_
Definition: ParserNode.h:1591
std::unique_ptr< std::string > type_
Definition: ParserNode.h:1589

+ Here is the call graph for this function:

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

Definition at line 5832 of file ParserNode.cpp.

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

5832  {
5833  CHECK(payload.HasMember("type"));
5834  type_ = std::make_unique<std::string>(json_str(payload["type"]));
5835 
5836  CHECK(payload.HasMember("target"));
5837  target_ = std::make_unique<std::string>(json_str(payload["target"]));
5838 
5839  if (payload.HasMember("privileges")) {
5840  CHECK(payload["privileges"].IsArray());
5841  for (auto& privilege : payload["privileges"].GetArray()) {
5842  auto r = json_str(privilege);
5843  // privilege was a StringLiteral
5844  // and is wrapped with quotes which need to get removed
5845  boost::algorithm::trim_if(r, boost::is_any_of(" \"'`"));
5846  privileges_.emplace_back(r);
5847  }
5848  }
5849  if (payload.HasMember("grantees")) {
5850  CHECK(payload["grantees"].IsArray());
5851  for (auto& grantee : payload["grantees"].GetArray()) {
5852  std::string g = json_str(grantee);
5853  grantees_.emplace_back(g);
5854  }
5855  }
5856 }
std::vector< std::string > privileges_
Definition: ParserNode.h:1588
std::unique_ptr< std::string > target_
Definition: ParserNode.h:1590
const std::string json_str(const rapidjson::Value &obj) noexcept
Definition: JsonAccessors.h:44
std::vector< std::string > grantees_
Definition: ParserNode.h:1591
std::unique_ptr< std::string > type_
Definition: ParserNode.h:1589
#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 5858 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().

5859  {
5860  if (read_only_mode) {
5861  throw std::runtime_error("GRANT invalid in read only mode.");
5862  }
5863  auto& catalog = session.getCatalog();
5864  const auto& currentUser = session.get_currentUser();
5865  const auto parserObjectType = boost::to_upper_copy<std::string>(get_object_type());
5866  const auto objectName =
5867  extractObjectNameFromHierName(get_object(), parserObjectType, catalog);
5868  auto objectType = DBObjectTypeFromString(parserObjectType);
5869  if (objectType == ServerDBObjectType && !g_enable_fsi) {
5870  throw std::runtime_error("GRANT failed. SERVER object unrecognized.");
5871  }
5872  /* verify object exists and is of proper type *before* trying to execute */
5873  verifyObject(catalog, objectName, objectType, "GRANT");
5874 
5875  DBObject dbObject = createObject(objectName, objectType);
5876  /* verify object ownership if not suser */
5877  if (!currentUser.isSuper) {
5878  if (!SysCatalog::instance().verifyDBObjectOwnership(currentUser, dbObject, catalog)) {
5879  throw std::runtime_error(
5880  "GRANT failed. It can only be executed by super user or owner of the "
5881  "object.");
5882  }
5883  }
5884  /* set proper values of privileges & grant them to the object */
5885  std::vector<DBObject> objects(get_privs().size(), dbObject);
5886  for (size_t i = 0; i < get_privs().size(); ++i) {
5887  std::pair<AccessPrivileges, DBObjectType> priv = parseStringPrivs(
5888  boost::to_upper_copy<std::string>(get_privs()[i]), objectType, get_object());
5889  objects[i].setPrivileges(priv.first);
5890  objects[i].setPermissionType(priv.second);
5891  if (priv.second == ServerDBObjectType && !g_enable_fsi) {
5892  throw std::runtime_error("GRANT failed. SERVER object unrecognized.");
5893  }
5894  }
5895  SysCatalog::instance().grantDBObjectPrivilegesBatch(grantees_, objects, catalog);
5896 }
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:1581
DBObjectType DBObjectTypeFromString(const std::string &type)
Definition: DBObject.cpp:110
std::vector< std::string > grantees_
Definition: ParserNode.h:1591
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:1580
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:1582

+ 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 1583 of file ParserNode.h.

References grantees_.

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

Definition at line 1582 of file ParserNode.h.

References target_.

Referenced by execute().

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

+ Here is the caller graph for this function:

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

Definition at line 1581 of file ParserNode.h.

References type_.

Referenced by execute().

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

+ Here is the caller graph for this function:

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

Definition at line 1580 of file ParserNode.h.

References privileges_.

Referenced by execute().

1580 { return privileges_; }
std::vector< std::string > privileges_
Definition: ParserNode.h:1588

+ Here is the caller graph for this function:

Member Data Documentation

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

Definition at line 1591 of file ParserNode.h.

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

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

Definition at line 1588 of file ParserNode.h.

Referenced by get_privs(), and GrantPrivilegesStmt().

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

Definition at line 1590 of file ParserNode.h.

Referenced by get_object(), and GrantPrivilegesStmt().

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

Definition at line 1589 of file ParserNode.h.

Referenced by get_object_type(), and GrantPrivilegesStmt().


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