Menu

Ranger Hive Plugin Install

module.exports = header: 'Ranger Hive Plugin', handler: ({options}) ->
  version = null
  #https://mail-archives.apache.org/mod_mbox/incubator-ranger-user/201605.mbox/%3C363AE5BD-D796-425B-89C9-D481F6E74BAF@apache.org%3E

Register

  @registry.register 'hconfigure', 'ryba/lib/hconfigure'
  @registry.register 'hdfs_mkdir', 'ryba/lib/hdfs_mkdir'
  @registry.register 'ranger_user', 'ryba/ranger/actions/ranger_user'
  @registry.register 'ranger_policy', 'ryba/ranger/actions/ranger_policy'
  @registry.register 'ranger_service', 'ryba/ranger/actions/ranger_service'

Wait

  @call 'ryba/ranger/admin/wait', once: true, options.wait_ranger_admin

Packages

  @call header: 'Packages', ->
    @system.execute
      header: 'Setup Execution Version'
      shy: true
      cmd: "hdp-select versions | tail -1"
    , (err, data) ->
      return  err if err or not data.status
      version = data.stdout.trim() if data.status
    @service
      name: "ranger-hive-plugin"

Audit Layout

  @call
    if: options.install['XAAUDIT.HDFS.IS_ENABLED'] is 'true'
    header: 'HDFS Audit'
  , ->
    @ranger_policy
      header: 'HDFS Audit'
      username: options.ranger_admin.username
      password: options.ranger_admin.password
      url: options.install['POLICY_MGR_URL']
      policy: options.policy_hdfs_audit
    @system.mkdir
      header: 'HDFS Spool Dir'
      if: options.install['XAAUDIT.HDFS.IS_ENABLED'] is 'true'
      target: options.install['XAAUDIT.HDFS.FILE_SPOOL_DIR']
      uid: options.hive_user.name
      gid: options.hive_group.name
      mode: 0o0750
    @call ->
      for target in options.policy_hdfs_audit.resources.path.values
        @hdfs_mkdir
          target: target
          mode: 0o0750
          parent:
            mode: 0o0711
            user: options.user.name
            group: options.group.name
            uid: options.hive_user.name
            gid: options.hive_group.name
          krb5_user: options.hdfs_krb5_user
  @system.mkdir
    header: 'Solr Spool Dir'
    if: options.install['XAAUDIT.SOLR.IS_ENABLED'] is 'true'
    target: options.install['XAAUDIT.SOLR.FILE_SPOOL_DIR']
    uid: options.hive_user.name
    gid: options.hive_group.name
    mode: 0o0750

Service Repository creation

Matchs step 1 in hive plugin configuration. Instead of using the web ui we execute this task using the rest api.

  @ranger_service
    header: 'Ranger Repository'
    username: options.ranger_admin.username
    password: options.ranger_admin.password
    url: options.install['POLICY_MGR_URL']
    service: options.service_repo

Note, by default, we're are using the same Ranger principal for every plugin and the principal is created by the Ranger Admin service. Chances are that a customer user will need specific ACLs but this hasn't been tested.

  @krb5.addprinc options.krb5.admin,
    header: 'Plugin Principal'
    principal: "#{options.service_repo.configs.username}"
    password: options.service_repo.configs.password

Properties

  @call -> @file
    header: 'Properties'
    if: -> version?
    source: "#{__dirname}/../../resources/plugin-install.properties"
    target: "/usr/hdp/#{version}/ranger-hive-plugin/install.properties"
    local: true
    eof: true
    backup: true
    write: for k, v of options.install
      match: RegExp "^#{quote k}=.*$", 'mg'
      replace: "#{k}=#{v}"
      append: true

Plugin Scripts

  @call ->
    {conf_dir, ssh} = options
    @file
      header: 'Script Fix'
      target: "/usr/hdp/#{version}/ranger-hive-plugin/enable-hive-plugin.sh"
      write: [
          match: RegExp "^HCOMPONENT_CONF_DIR=.*$", 'mg'
          replace: "HCOMPONENT_CONF_DIR=#{options.conf_dir}"
        ,
          match: RegExp "^HCOMPONENT_INSTALL_DIR_NAME=.*$", 'mg'
          replace: "HCOMPONENT_INSTALL_DIR_NAME=/usr/hdp/current/hive-server2"
        ,
          match: RegExp "^HCOMPONENT_LIB_DIR=.*$", 'mg'
          replace: "HCOMPONENT_LIB_DIR=/usr/hdp/current/hive-server2/lib"
      ]
      backup: true
      mode: 0o750
    @call
      header: 'Enable'
    , (_, callback) ->
      files = ['ranger-hive-audit.xml','ranger-hive-security.xml','ranger-policymgr-ssl.xml']
      sources_props = {}
      current_props = {}
      files_exists = {}
      @system.execute
        cmd: """
        echo '' \
        | keytool -list \
          -storetype jceks \
          -keystore /etc/ranger/#{options.install['REPOSITORY_NAME']}/cred.jceks \
        | egrep '.*ssltruststore|auditdbcred|sslkeystore'
        """
        code_skipped: 1
      @call
        if: -> @status -1 # Optional if cred.jceks file not provisioned
      , ->
        @each files, ({options}, cb) ->
          file = options.key
          target = "#{conf_dir}/#{file}"
          ssh = @ssh ssh
          fs.exists ssh, target, (err, exists) ->
            return cb err if err
            return cb() unless exists
            files_exists["#{file}"] = exists
            properties.read ssh, target , (err, props) ->
              return cb err if err
              sources_props["#{file}"] = props
              cb()
      @system.execute
        header: 'Script Execution'
        cmd: """
        if /usr/hdp/#{version}/ranger-hive-plugin/enable-hive-plugin.sh ;
        then exit 0 ;
        else exit 1 ;
        fi;
        """
      @hconfigure
        header: 'Fix ranger-hive-security conf'
        target: "#{options.conf_dir}/ranger-hive-security.xml"
        merge: true
        properties:
          'ranger.plugin.hive.policy.rest.ssl.config.file': "#{options.conf_dir}/ranger-policymgr-ssl.xml"
      @system.remove
        header: 'Remove useless file'
        target: "#{options.conf_dir}/hiveserver2-site.xml"
        shy: true
      @hconfigure
        header: 'JAAS Properties for solr'
        target: "#{options.conf_dir}/ranger-hive-audit.xml"
        merge: true
        properties: options.audit
      @each files, ({options}, cb) ->
        file = options.key
        target = "#{conf_dir}/#{file}"
        ssh = @ssh ssh
        fs.exists ssh, target, (err, exists) ->
          return callback err if err
          properties.read ssh, target , (err, props) ->
            return cb err if err
            current_props["#{file}"] = props
            cb()
      @call
        header: 'Compare Current Config Files'
        shy: true
      , ->
        for file in files
          # Stop if file does not exist
          return callback null, true unless sources_props["#{file}"]?
          for prop, value of current_props["#{file}"]
            return callback null, true unless value is sources_props["#{file}"][prop]
          for prop, value of sources_props["#{file}"]
            return callback null, true unless value is current_props["#{file}"][prop]
          return callback null, false

Dependencies

quote = require 'regexp-quote'
path = require 'path'
mkcmd = require '../../../lib/mkcmd'
properties = require '../../../lib/properties'
fs = require 'ssh2-fs'