Skip to content
Snippets Groups Projects
  1. Oct 27, 2023
    • Georgiy Lebedev's avatar
      merger: handle `MP_TUPLE` extension in merge buffer source `next` method · 561b5559
      Georgiy Lebedev authored
      In scope of tarantool/tarantool#8147, a new context-dependent extension for
      box tuples, `MP_TUPLE`, is introduced. The buffer source uses a buffer with
      raw MsgPack, which does not allow for passing the context required for
      decoding `MP_TUPLE`, so, in order to decode it, we need to manually skip
      the extension header and the tuple format identifier to get to the tuple
      data and create a tuple. We can ignore the tuple format identifier (and the
      tuple format that was originally sent for this tuple), since the format is
      provided by the merger itself.
      
      Needed for #8147
      
      NO_CHANGELOG=<internal change>
      NO_TEST=<tested by integration tests>
      NO_DOC=<internal change>
      561b5559
    • Georgiy Lebedev's avatar
      lua: add MsgPack encoding/decoding context to MsgPack objects · 9f023095
      Georgiy Lebedev authored
      Extend the MsgPack object creation interface to push a MsgPack context
      required for decoding tuples coming from IPROTO, the context ownership is
      acquired by the new object to avoid copying (thus, a virtual `move`
      function is added to the MsgPack context).
      
      When a MsgPack context is owned by a MsgPack object, the lifetime of the
      former is controlled by the latter, hence a virtual `destroy` function is
      added to the MsgPack context.
      
      Needed for #8147
      
      NO_CHANGELOG=refactoring
      NO_DOC=refactoring
      NO_TEST=refactoring
      9f023095
    • Georgiy Lebedev's avatar
      box: introduce `MP_TUPLE` extension · 11d5f1e9
      Georgiy Lebedev authored
      Add new MsgPack extension for tuples MP_TUPLE with the following structure:
      +------+-----------------+----------+
      |MP_EXT|      MP_UINT    | MP_ARRAY |
      +------+-----------------+----------+
              ^                 ^
              format identifier tuple data
      
      Needed for #8147
      
      NO_CHANGELOG=<internal change>
      NO_DOC=<internal change>
      11d5f1e9
    • Georgiy Lebedev's avatar
      core: extend `port_dump_lua` with 'Msgpack object' mode · 11dad290
      Georgiy Lebedev authored
      When data is coming from IPROTO and is passed to Lua, it is convenient to
      pass raw MsgPack data (see `box.schema.func::takes_raw_args` option).
      Currently, the port's MsgPack is retrieved directly via `port_get_msgpack`
      and then a MsgPack object is constructed via `luamp_push`. In the future,
      ports can have a MsgPack decoding context that will also be needed to be
      passed to the MsgPack object constructor, so we encapsulate the MsgPack
      object construction completely into a port method by introducing a new
      operation mode to `port_dump_lua`.
      
      This new operation mode is essentially a no-op for a MsgPack port (which is
      the case for data coming from IPROTO), and is completely inefficient for
      other types of ports (since an intermediate conversion to MsgPack occurs),
      but we do not expect users to be calling Lua stored procedures with the
      `takes_raw_args` locally. To handle the latter case we introduce a
      `port_dump_lua_mp_object_mode_slow` helper function which facilitates
      retrieving MsgPack data from ports via region allocation, creating a
      Msgpack object and freeing the MsgPack data.
      
      Needed for #8147
      
      NO_CHANGELOG=refactoring
      NO_DOC=refactoring
      NO_TEST=refactoring
      11dad290
    • Georgiy Lebedev's avatar
      core: refactor `port_dump_lua` operation modes · d1f1faa1
      Georgiy Lebedev authored
      Currently, `port_dump_lua` has 2 modes of operation: 'flat' and 'tabular',
      which are controlled via a boolean flag. We plan to extend it with another
      mode of operation, 'Msgpack object', so we need to replace the flag with a
      enumeration. Plus, this refactoring should improve readability.
      
      Needed for #8147
      
      NO_CHANGELOG=refactoring
      NO_DOC=refactoring
      NO_TEST=refactoring
      d1f1faa1
    • Georgiy Lebedev's avatar
      net.box: refactor netbox method encoders arguments · e3f2bea0
      Georgiy Lebedev authored
      In scope of #8633 call and eval encoding will require an additional
      argument (whether to encode tuples as extensions and send formats), and
      method encoders already have 3 arguments (MsgPack stream, IPROTO sync and
      IPROTO stream identifier): to simplify further extension of method encoders
      move arguments to a netbox_method_encode_ctx struct.
      
      Needed for #8633
      
      NO_CHANGELOG=refactoring
      NO_DOC=refactoring
      NO_TEST=refactoring
      e3f2bea0
    • Georgiy Lebedev's avatar
      lua: refactor MsgPack extension encoder · a1a13b55
      Georgiy Lebedev authored
      The MsgPack extension encoder has a strange interface: it returns the type
      it has encoded the value to which at the same time indicates whether it has
      succeeded in encoding the value — instead, let's return the type in an
      output parameter and return the encoding status as a boolean value.
      
      Needed for #8147
      
      NO_CHANGELOG=refactoring
      NO_DOC=refactoring
      NO_TEST=refactoring
      a1a13b55
    • Georgiy Lebedev's avatar
      core: introduce MsgPack encoding/decoding context structure · 9b05dbfc
      Georgiy Lebedev authored
      The MsgPack context structure is the essential data structure for
      collecting and retrieving various meta information during MsgPack
      encoding/decoding. This structure will be a base for a box-specific MsgPack
      context (and, possibly, others), so we make it extendable by adding a
      padding (to avoid dynamic allocations).
      
      Refactor existing MsgPack encoding interfaces to use the MsgPack context
      structure:
      1. extend the port dumping interface, so that we can collect meta
      information about dumped tuples' formats;
      2. extend the port MsgPack retrieval interface, so that we can also
      retrieve meta information about tuple formats for decoding tuples coming
      from IPROTO (needed when decoding is postponed to a MsgPack object), the
      context ownership is acquired by the caller to avoid copying;
      3. extend the MsgPack encoding/decoding interfaces to accept a MsgPack
      context to collect meta information during encoding or to use this meta
      information for decoding — the context is passed down up to the extension
      encoder/decoder, which is the point where future box tuple extension will
      be processed.
      
      Needed for #8147
      
      NO_CHANGELOG=refactoring
      NO_DOC=refactoring
      NO_TEST=refactoring
      9b05dbfc
    • Georgiy Lebedev's avatar
      box: introduce tuple format map · 2324fbcf
      Georgiy Lebedev authored
      
      The tuple format map is the essential data structure for collecting tuple
      formats during box tuple encoding and for looking up tuple formats during
      box tuple decoding.
      
      Needed for #8147
      
      NO_CHANGELOG=<internal data structure>
      NO_DOC=<internal data structure>
      
      Co-authored-by: default avatarAleksandr Lyapunov <alyapunov@tarantool.org>
      2324fbcf
    • Nikita Zheleztsov's avatar
      config: fix hanging alert about missing name · c2c82860
      Nikita Zheleztsov authored
      At the last itaration of review it was decided to throw an alerts,
      when no UUID was passed to config and name is not set in _cluster.
      
      This leads to alerts, thrown during replicaset bootstrap. However,
      _cluster:on_replace trigger wasn't updated for that change, it
      asssumed that when insert of a new replica is done, no alerts was
      thrown.
      
      Let's fix the behavior of on_replace trigger so that it deletes
      alerts as soon as replica joined with name.
      
      Follow-up #8978
      
      NO_DOC=bugfix
      NO_TEST=<already tested>
      NO_CHANGELOG=bugfix
      c2c82860
    • Nikolay Shirokovskiy's avatar
      small: bump version · f399cc7b
      Nikolay Shirokovskiy authored
      New commits:
      
      - test: fix test build for Debian 9 and alike
      - test: fix unused variable warning in matras test
      
      NO_TEST=submodule bump
      NO_CHANGELOG=submodule bump
      NO_DOC=submodule bump
      f399cc7b
    • Nikita Zheleztsov's avatar
      config: set names automatically on schema upgrade · 24d7c8f3
      Nikita Zheleztsov authored
      It's impossible to set names on Tarantool below 3.0.0, as all DDL
      is forbidden before schema upgrade.
      
      Let's make names NoOp on schema below Tarantool 3.0.0 and set names
      automatically only when schema upgrade is done.
      
      Follow-up #8978
      
      NO_DOC=tarantool/doc#3661
      24d7c8f3
    • Nikita Zheleztsov's avatar
      lua: move mkversion into a separate module · 29daaf3e
      Nikita Zheleztsov authored
      This commit moves all code, related to working with versions and which
      was used in box/lua/upgrade.lua, into a separate module and exports it
      to Lua API as 'internal.version'
      
      This is needed, as in the following commit we set names automatically
      only when schema version is more than 3.0.0. This module is used their
      in order to avoid code duplication.
      
      Follow-up #8978
      
      NO_DOC=internal
      NO_TEST=<already tested>
      NO_CHANGELOG=internal
      29daaf3e
    • Nikita Zheleztsov's avatar
      config: automatically set missing names · d3ce4b78
      Nikita Zheleztsov authored
      For now it's impossible to use config module in order to recover
      from snaps, which don't have names set in them. Calling box.cfg
      with names on recovery fails with MISMATCH error, which is caused
      by difficult implementation of setting names on first box.cfg,
      as names can be set only on rw instance.
      
      This commit doesn't call box.cfg with names, if these names are
      missing from the snapshot file. Instead it creates a fiber, which
      will set names, when it's possible to do so. Only master sets the
      names for the whole cluster.
      
      Closes #8978
      
      NO_DOC=tarantool/doc#3661
      NO_CHANGELOG=following commits
      d3ce4b78
    • Nikita Zheleztsov's avatar
      box: fix replica hang after applying already set name · 9988ac58
      Nikita Zheleztsov authored
      When the name is manually set on master by replace in _cluster space,
      calling box.cfg on replica with the same name causes its hang. The
      problem is the fact, that resubscribe is initiated and waiting for
      APPLIER_REGISTERED status is started. As applier knows, that no
      registration should be done, this never happens.
      
      Let's don't initiate registration, when instance name is already set.
      
      Needed for #8978
      
      NO_DOC=bugfix
      NO_CHANGELOG=not released yet
      9988ac58
    • Nikita Zheleztsov's avatar
      config: introduce droppable alerts · fa97cc0c
      Nikita Zheleztsov authored
      For now it's impossible to drop created alert in any way except
      manual searching for _alerts table. However, we need to drop alerts
      on missing names, when the names are set.
      
      Let's introduce simple key-value alerts in order to easily drop them
      by key.
      
      Needed for #8978
      
      NO_DOC=internal
      NO_TEST=following commit
      NO_CHANGELOG=internal
      fa97cc0c
    • Nikita Zheleztsov's avatar
      config: validate names and UUIDs before box.cfg · b04f9c5f
      Nikita Zheleztsov authored
      Currently only instance_uuid is validated before recovery process.
      All names and replicaset_uuid are checked only when recovery is done,
      which can take a long time. It can be frustrating to users, which
      have been waiting for several hours only to get name mismatch error.
      
      Let's read the small part of snapshot file before calling box.cfg
      in order to figure out, whether the names and uuids, passed to
      configuration match the ones, saved inside the snapshot.
      
      During config reload there's no sense in reading snapshot file, as
      data is already saved inside spaces, let's read them. We still check
      that names in config and names in spaces don't contradict during
      config reload.
      
      This commit also introduces methods, for getting names, which are
      not set in snap (or memory), this'll be used in consequent commits
      to set names automatically.
      
      Needed for #8978
      
      NO_DOC=tarantool/doc#3661
      b04f9c5f
    • Nikita Zheleztsov's avatar
      box: expose box.schema before box.cfg · e7ca37bf
      Nikita Zheleztsov authored
      box.schema has a number of constants, e.g. IDs of system spaces,
      which may be useful for the user. Let's allow to access box.schema
      before box.cfg is called.
      
      It is used in checking names, as we need to know, which snapshot spaces
      to scan.
      
      Needed for #8978
      
      NO_DOC=minor change
      e7ca37bf
    • Nikita Zheleztsov's avatar
      lua: introduce xlog.meta() method · 145af72b
      Nikita Zheleztsov authored
      This commit introduces the new method for xlog module: xlog.meta().
      It opens an xlog file, reads and returns the meta block of the file,
      which includes its filetype, instance_uuid and vclocks.
      
      It's needed in order to introduce checking of names inside the config
      module in the following commit.
      
      Needed for #8978
      
      @TarantoolBot document
      Title: xlog.meta(file-name) method
      
      Description: Open an xlog file, and return its meta block.
      Possible errors: Failed to open a file or it does not contain properly
      formatted meta block.
      
      Example:
      
      ```lua
      tarantool> xlog = require('xlog')
      ---
      ...
      
      tarantool> xlog.meta('00000000000000000000.snap')
      ---
      - filetype: SNAP
        prev_vclock: {}
        instance_uuid: 87b2e60f-275c-4efa-9b0e-e9562e309692
        vclock: {}
      ...
      ```
      145af72b
    • Nikita Zheleztsov's avatar
      config: move snapshot related code into utils · 21e9ef4b
      Nikita Zheleztsov authored
      Config's box.cfg applier scans snapshot_dir in order to find out,
      whether recovery is going to be done. It's needed in order to determine,
      whether the instance should be started into ro mode firstly.
      
      Let's move info about snapshot into separate file in utils. The commit
      also introduces snapshot_path, which will be used in the following
      commits in order to validate names.
      
      Needed for #8978
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      21e9ef4b
  2. Oct 26, 2023
    • Georgy Moshkin's avatar
      fiber: basic api exports · e72e57b9
      Georgy Moshkin authored
      Closes #9237
      
      Add exports for fiber_set_name_n, fiber_name, fiber_id, fiber_csw &
      fiber_find.
      
      Also make fiber_set_joinable, fiber_set_ctx & fiber_get_ctx interpret
      NULL as the current fiber.
      
      @TarantoolBot document
      Title: add basic fiber api to ffi exports.
      
      5 basic functions can now be used via ffi api, which were previously
      only accessible via lua api: fiber_set_name_n, fiber_name, fiber_id,
      fiber_csw & fiber_find.
      
      fiber_set_joinable now interprets NULL as current fiber.
      e72e57b9
    • Ilya Verbin's avatar
      box: improve error message raised on hash index replace failure · 0a8043d1
      Ilya Verbin authored
      Old: "Failed to allocate 2147483648 bytes in hash_table for key"
      New: "Failed to allocate 16384 bytes in hash_table for key"
      
      ERRINJ_INDEX_ALLOC cannot be used to test this error, because it fails
      earlier, so ERRINJ_HASH_INDEX_REPLACE is introduced.
      
      Follow-up #3594
      
      NO_DOC=minor
      NO_CHANGELOG=minor
      0a8043d1
    • Alexander Turenko's avatar
      config: validate instance/replicaset/group names · f120b7cc
      Alexander Turenko authored
      Recently added persistent instance/replicaset/cluster names have certain
      validation rules (see #5029 and #9148). An instance name and a
      replicaset name that are provided in a declarative configuration are
      stored in the database, so they should follow the same rules.
      
      This patch implements the validation for instance/replicaset/group
      names, for `--name` CLI option and `TT_INSTANCE_NAME` environment
      variable.
      
      Part of #8862
      Related to #9148
      
      NO_DOC=The user visible change is about a better error message if a
             wrong name is passed. The naming rules are documented in
             https://github.com/tarantool/doc/issues/3466,
             https://github.com/tarantool/doc/issues/3467,
             https://github.com/tarantool/doc/issues/3468.
      f120b7cc
    • Vladimir Davydov's avatar
      box: disallow granting execute privilege on space · 21063b4a
      Vladimir Davydov authored
      Closes #9277
      
      @TarantoolBot document
      Title: Document `box_space_execute_priv` compatibility option
      
      Historically, it was possible to grant the `execte` privilege on
      a space although this action had no effect. Since Tarantool 3.0
      it isn't allowed anymore. The new `compat` module option
      `box_space_execute_priv` was added to revert to the old behavior.
      
      Please create a documentation page for the new compatibility option at
      https://tarantool.io/compat/box_space_execute_priv
      
      Example:
      
      ```
      tarantool> box.cfg{log_level = 'error'}
      ---
      ...
      
      tarantool> box.schema.user.create('alice')
      ---
      ...
      
      tarantool> box.schema.user.grant('alice', 'execute', 'space')
      ---
      - error: Unsupported space privilege 'execute'
      ...
      
      tarantool> require('compat').box_space_execute_priv = 'old'
      ---
      ...
      
      tarantool> box.schema.user.grant('alice', 'execute', 'space')
      ---
      ...
      ```
      21063b4a
  3. Oct 24, 2023
    • Vladimir Davydov's avatar
      log: make log.cfg{modules=...} work as box.cfg{log_modules=...} · c13e59a5
      Vladimir Davydov authored
      Configuring log modules work differently with log.cfg and box.cfg:
      box.cfg{log_modules=...} overwrites the current config completely while
      log.cfg{modules=...} overwrites the currently config only for the
      specified modules. Let's fix this inconsistency by making log.cfg behave
      exactly as box.cfg.
      
      Closes #7962
      
      NO_DOC=bug fix
      c13e59a5
  4. Oct 23, 2023
    • Sergey Ostanevich's avatar
      replication: relax rules box.cfg.*_name · ddaa5a32
      Sergey Ostanevich authored
      We decided to allow underscore in names to provide easier support
      for many existent installations.
      
      Closes #9148
      
      NO_CHANGELOG=no updates to the feature description
      NO_DOC=update existent doc tickets 3466, 3467, 3468
      ddaa5a32
    • Nikolay Shirokovskiy's avatar
      iproto: clean accounting of processed messages in input buffers · 9e918278
      Nikolay Shirokovskiy authored
      Message body resides in one of rotating input buffers for the
      connection. When we don't need message body anymore we advance the
      reading end of the input buffer by the size of the message. But message
      processing order can differ from the order of messages in the wire.
      Thus this advancing a bit hacky. Let's instead mark the data in the
      input buffer as read when we process all the messages in the input
      buffer. We cannot reuse the buffer any earlier anyway.
      
      Follow-up #7327
      
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      NO_DOC=refactoring
      9e918278
    • Nikolay Shirokovskiy's avatar
      misc: use ibuf API to discard/allocate/consume · 73832668
      Nikolay Shirokovskiy authored
      The API functions additionally poison related data in ASAN build.
      
      Follow-up #7327
      
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      NO_DOC=refactoring
      73832668
    • Nikolay Shirokovskiy's avatar
      small: bump version · ebafd684
      Nikolay Shirokovskiy authored
      New commits:
      
      - ibuf: change ibuf_consume_before argument type to const void ptr
      - ibuf: introduce ibuf_consume/ibuf_consume_before API
      - matras: fix matras_view::block_count overflow
      - slab: fix uint32_t overflow in slab_capacity
      - debug: add assertions of ASAN version to non ASAN
      - ibuf: add ibuf_discard
      - slab: fix NULL ptr deref in assertion in slab_get
      
      NO_TEST=submodule bump
      NO_CHANGELOG=submodule bump
      NO_DOC=submodule bump
      ebafd684
  5. Oct 20, 2023
    • Sergey Ostanevich's avatar
      replication: improve name conflict error message · 1b88f30a
      Sergey Ostanevich authored
      The error message was not quite clear in case instance has any name
      defined and config provides a different one.
      
      Closes #8692
      
      NO_CHANGELOG=no previous release with this error message
      NO_DOC=not needed since no changes to the public API
      1b88f30a
    • Vladimir Davydov's avatar
      fiber: use alternative signal stack · cb8e903b
      Vladimir Davydov authored
      We install a signal handler that prints the stack trace on SIGSEGV,
      SIGBUS, SIGILL, SIGFPE. The signal handler uses the current stack.
      This works fine for most issues, but not for stack overflow, because
      the latter makes the current stack unusable, leading to a crash in
      the signal handler. Let's install an alternative signal stack in each
      thread so that we can print the stack trace on stack overflow.
      
      Note that we skip this for ASAN because it installs its own signal
      stack. (Installing a custom stack would result in a crash.)
      
      Closes #9222
      
      NO_DOC=bug fix
      cb8e903b
    • Magomed Kostoev's avatar
      util: introduce the ALWAYS_INLINE macro · d08f28df
      Magomed Kostoev authored
      The macro expands to inline keyword and always_inline attribute if
      it's supported. This attribute forces the compiler to inline the
      function if it's possible and raise a diagnostic if it's not.
      
      Needed for tarantool/tarantool-ee#580
      
      NO_DOC=internal
      NO_TEST=internal
      NO_CHANGELOG=internal
      d08f28df
  6. Oct 19, 2023
    • Gleb Kashkin's avatar
      config: unify logs and alerts inside creds applier · 26d508d1
      Gleb Kashkin authored
      With this patch the following log/alert structure is introduced:
      * all informational messages (e.g. some privs granted) use `log.verbose()`
      * all warnings about postponed apply use `config:_alert{type = 'warn'}`
      * all apply errors are reported with `config:_alert{type = 'error'}`
      
      Debug logs are removed.
      
      Part of #8967
      
      NO_DOC=logging and alerts
      NO_CHANGELOG=see NO_DOC
      NO_TEST=see NO_DOC
      26d508d1
    • Vladimir Davydov's avatar
      box: call tuple_free from box_free · 05751e6c
      Vladimir Davydov authored
      There are four problems we have to address to make this possible:
      
       1. memtx_engine_shutdown may delete the tuple referenced by
          box_tuple_last so that tuple_free, which is called later by
          box_free, will crash trying to free it. Fix this by clearing
          box_tuple_last in memtx_engine_shutdown.
      
       2. tuple_format_destroy and tuple_field_delete, called by it, expect
          all constraints to be detached. Let's destroy the constraints if
          this isn't the case. This effectively reverts commit 7a87b9a5
          ("box: do not call constraint[i].destroy() in
          tuple_field_delete()").
      
       3. tuple_field_delete, called by tuple_format_destroy, expects the
          default value function to be unpinned. Let's unpin it if this isn't
          the case. To avoid linking dependencies between the tuple and box
          libraries, we have to introduce a virtual destructor for
          field_default_func.
      
       4. The tuple_format unit test calls tuple_free after box_free. If
          box_free calls tuple_free by itself, this leads to a crash. Fix this
          by removing tuple_free and tuple_init calls from the test.
      
      Closes #9174
      
      NO_DOC=code health
      NO_CHANGELOG=code health
      NO_TEST=checked by existing tests
      05751e6c
  7. Oct 17, 2023
    • Nikolay Shirokovskiy's avatar
      app: start init script event loop explicitly · 1fcfb8c2
      Nikolay Shirokovskiy authored
      The motivation is to reduce time slip on Tarantool startup before
      running init scripts. Internal ev time is set in fiber_init/ev_default_loop
      and is not get updated until starting event loop. This causes
      timeouts slip up to 0.3 in debug ASAN build in init script (see #9261).
      
      Let's run event loop right at the beginning of the run_script_f before
      executing any script. This way besides updating internal ev time we make
      an explicit place of starting script event loop. Currently it is started
      lazily when config script yields.
      
      This will fix CI for PR https://github.com/tarantool/tarantool-ee/pull/572
      for debug ASAN workflow.
      
      We can also remove start_loop condition. It does not make sense now. It
      was added in the commit 3a851430 ("Fix tarantool -e "os.exit()"
      hang") but since then we start to stop event loop after handling
      os.exit().
      
      Also this fixes #9266. The issue is we don't have an event loop to run
      on shutdown triggers if -e command line expression add such a trigger
      and then call os.exit().
      
      Follow-up #7327
      Closes #9266
      
      NO_DOC=bugfix
      1fcfb8c2
  8. Oct 16, 2023
    • Vladimir Davydov's avatar
      console: forward original URI to net.box when connecting over IPROTO · 33e72567
      Vladimir Davydov authored
      Tarantool supports two console protocols: text and binary. The binary
      protocol is implemented with IPROTO EVAL request so the console module
      reuses the net.box module to establish and maintain a binary connection.
      Currently, instead of passing the original URI specified by the user to
      net.box.connect as is, the console module parses the URI and passes the
      host and port. As a result, extra information that may be specified in
      URI parameters is lost. This prevents the user from connecting to the
      binary console using the SSL transport because to use the SSL transport
      the user must specify transport=ssl URI parameter.
      
      Needed for tarantool/tarantool-ee#567
      
      NO_DOC=no visible changes in CE
      NO_TEST=no visible changes in CE
      NO_CHANGELOG=no visible changes in CE
      33e72567
  9. Oct 13, 2023
    • Gleb Kashkin's avatar
      config: update password hashes after auth_type change · 952d1582
      Gleb Kashkin authored
      User password is stored in a system space is a form of hash when
      'chap-sha1' auth type is set, and in a form of hash with salt when
      'pap-sha256' is set.
      
      Now, if a user is set inside config, and the current auth type is
      different from the type the users password is stored in, the password
      hash will be regenerated.
      
      Part of #8967
      
      NO_DOC=documentation request will be filed manually for the whole
             credentials
      952d1582
    • Gleb Kashkin's avatar
      config: add lua_eval, lua_call and sql support to creds · a21c0e6a
      Gleb Kashkin authored
      With #8906 the object types mentioned above were introduced. They control
      access to code execution over IPROTO.
      This patch adds such object types support to credentials applier. Now
      'execute' can be granted to a user or role for 'lua_eval', 'lua_call' and
      'sql'. Note that similar to 'universe', objects can't be specified in
      the config, only 'all' is allowed.
      
      Part of #8967
      
      NO_DOC=documentation request will be filed manually for the whole
             credentials
      a21c0e6a
    • Vladimir Davydov's avatar
      config: add audit_spaces and audit_extract_key parameters · 09565445
      Vladimir Davydov authored
      The new parameters will be implemented in Tarantool Enterprise Edition.
      This commit just adds configuration stubs.
      
      Needed for tarantool/tarantool-ee#502
      Needed for tarantool/tarantool-ee#503
      
      NO_DOC=stubs for enterprise edition
      NO_CHANGELOG=stubs for enterprise edition
      09565445
    • Vladimir Davydov's avatar
      audit: rework configuration function · 138a4bfa
      Vladimir Davydov authored
      Let's obtain box.cfg parameters from audit_log_init with cfg_get instead
      of passing them as arguments, like we do with the security module, for
      example. This simplifies addition of new audit log parameters.
      
      Needed for tarantool/tarantool-ee#502
      Needed for tarantool/tarantool-ee#503
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      138a4bfa
Loading