Skip to content
Snippets Groups Projects
  1. Dec 12, 2022
    • Vladislav Shpilevoy's avatar
      fiber: introduce cord_cancel_and_join() · 9a71e8ee
      Vladislav Shpilevoy authored
      It is a wrapper around pthread cancel and join. It was repeated
      many times and was dangerous, because left cord.id set. An
      accidental attempt to cord_join/cojoin() such cord would lead to
      UB then.
      
      The patch introduces a function which encapsulates the blocking
      cancellation. It is going to be used in a next patch to count the
      number of cords in the process. Which in turn is needed for a new
      test.
      
      The counter is atomic in case some cords would be created not by
      the main cord.
      
      There are now also more sanity checks against accidental attempts
      to join the same cord twice.
      
      Needed for #7743
      
      NO_DOC=internal
      NO_CHANGELOG=internal
      9a71e8ee
  2. Dec 09, 2022
    • Gleb Kashkin's avatar
      lua-yaml: improve multiline string output · 49316120
      Gleb Kashkin authored
      Added tarantool.compat option that allows yaml.encode() to encodes all
      strings containing a newline in a more convenient block scalar style.
      This is a breaking change, programs that rely on precise lyaml encoding
      may fail if the new behavior is selected.
      
      Closes #3012
      Requires #7060
      Requires #8007
      
      @TarantoolBot document
      Title: YAML formatter improvement
      
      Now yaml.encode() can encode strings with a newline in block scalar style,
      see https://yaml.org/spec/1.2-old/spec.html#style/block/literal and
      https://github.com/tarantool/tarantool/wiki/compat%3Ayaml_pretty_multiline
      
      old:
      ```
      tarantool> compat.yaml_pretty_multiline = 'old'
      ---
      ...
      
      tarantool> return "Title: xxx\n- Item 1\n- Item 2\n"
      ---
      - 'Title: xxx
      
        - Item 1
      
        - Item 2
      
        '
      ...
      
      ```
      
      new:
      ```
      tarantool> compat.yaml_pretty_multiline = 'new'
      ---
      ...
      
      tarantool> return "Title: xxx\n- Item 1\n- Item 2\n"
      ---
      - |
        Title: xxx
        - Item 1
        - Item 2
      ...
      
      ```
      49316120
    • Gleb Kashkin's avatar
      lua_cjson: add json-esc-slash option to compat · 1436601c
      Gleb Kashkin authored
      For unknown reason in upstream lua_cjson '/' was escaped
      while according to the standard [rfc4627] it is unnecessary and is
      questionably compatible with other implementations.
      
      It was decided that the change will be introduced using
      tarantool.compat (gh-7000). The patch adds json_escape_forward_slash
      option to compat and its logic in lua_cjson and msgpuck.
      
      Requires #7060
      Requires #8007
      Fixes #6200
      See also #7000
      
      @TarantoolBot document
      Title: new compat option json_escape_forward_slash
      
      In the new behavior forward slash is not escaped in `json.encode()`
      and msgpack:
      
      ```
      tarantool> compat.json_escape_forward_slash = 'new'
      ---
      ...
      
      tarantool> json.encode('/')
      ---
      - '"/"'
      ...
      
      tarantool> compat.json_escape_forward_slash = 'old'
      ---
      ...
      
      tarantool> json.encode('/')
      ---
      - '"\/"'
      ...
      ```
      1436601c
    • Sergey Ostanevich's avatar
      test: tarantoolctl.test flakiness fixup · 8f3fc2ef
      Sergey Ostanevich authored
      The `recursive_rmdir` can start execution while tarantool instance
      started by the tarantoolctl is in the process of shutdown. As a result
      the instance pid file can be available at the name collection, but by
      the time of its removal the instance deletes it by itself.
      
      NO_DOC=test
      NO_CHANGELOG=test
      8f3fc2ef
    • Ilya Verbin's avatar
      log: add changelog and docbot request for per-module log level · 1622097f
      Ilya Verbin authored
      Closes #3211
      
      NO_TEST=Documentation
      
      @TarantoolBot document
      Title: Per-module log level
      Root document: https://www.tarantool.io/en/doc/latest/reference/configuration/#logging
      
      Since version 2.11 it is possible to specify the log level for each
      module separately, e.g.:
      
      box.cfg {
          log_level = 5,
          log_modules = {
              ['foo.bar'] = 1,
              expirationd = 'debug'
          }
      }
      
      The name of a module is determined automatically during the execution
      of `require('log')` in the module's source code. The name is derived
      from its filename, including a part of the path. Also it is possible
      to create a logger with a custom name by using `log.new()`.
      
      ---
      
      Root document: https://www.tarantool.io/en/doc/latest/reference/reference_lua/log/
      New function: log.new(name)
      Creates a new logger with a custom name.
      
      Parameter `name`:
      Type: string
      Optional: false
      
      Example:
      box.cfg{log_level='error', log_modules={my_module='info'}}
      log = require('log')
      my_log = log.new('my_module')
      my_log.info('Info')
      1622097f
    • Ilya Verbin's avatar
      log: implement automatic module name deduction · f5373342
      Ilya Verbin authored
      
      Now the name of a module, from which the logging function was called,
      is determined automatically during the execution of `require('log')`
      in the module's source code. This is implemented by overriding the
      built-in `require` function.
      
      Part of #3211
      
      NO_DOC=See next commit
      NO_CHANGELOG=See next commit
      
      Co-authored-by: default avatarAnastasMIPT <beliaev.ab@tarantool.org>
      f5373342
    • Ilya Verbin's avatar
      log: add per-module log level setting via log.cfg() or box.cfg() · adf9d347
      Ilya Verbin authored
      
      Now it is possible to specify the log level for each module separately,
      e.g.:
      
      box.cfg {
          log_level = 5,
          log_modules = {
              ['foo.bar'] = 1,
              expirationd = 'debug'
          }
      }
      
      Part of #3211
      
      NO_DOC=See next commit
      NO_CHANGELOG=See next commit
      
      Co-authored-by: default avatarAnastasMIPT <beliaev.ab@tarantool.org>
      adf9d347
    • Ilya Verbin's avatar
      log: add log.new() function that creates a new logger · 24323448
      Ilya Verbin authored
      
      It allows to create a new instance of a log module, with a custom name:
      local my_log = require('log').new('my_module')
      
      The name is added to the log message after fiber name:
      YYYY-MM-DD hh:mm:ss.ms [PID]: CORD/FID/FIBERNAME/MODULENAME LEVEL> MSG
      
      Part of #3211
      
      NO_DOC=See next commit
      NO_CHANGELOG=See next commit
      
      Co-authored-by: default avatarAnastasMIPT <beliaev.ab@tarantool.org>
      24323448
    • Vladimir Davydov's avatar
      box: make auth subsystem pluggable · b5754d3f
      Vladimir Davydov authored
      This commit introduces an abstraction for the authentication code so
      that one can easily add new methods. To add a new method, one just needs
      to define a set of authentication callbacks in a struct auth_method and
      register it with auth_method_register.
      
      The IPROTO_AUTH and _user.auth formats were initially designed with
      extensibility in mind: both take the authentication method name
      (currently, only 'chap-sha1' is supported) so no changes to the schema
      are required.
      
      Note that although 'chap-sha1' is now implemented in its own file
      src/box/auth_chap_sha1.c, we don't merge src/scramble.c into it.
      This will be done later, in the scope of #7987.
      
      Since we call authentication plug-ins "methods" (not "mechanisms"),
      let's rename BOX_USER_FIELD_AUTH_MECH_LIST to BOX_USER_FIELD_AUTH while
      we are at it. Anyway, the corresponding field of the _user system space
      is called 'auth' (not 'auth_mech_list').
      
      Closes #7986
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      b5754d3f
    • Vladimir Davydov's avatar
      box: add user_def_new and user_def_delete helpers · e3f170d3
      Vladimir Davydov authored
      We will need to store some extra data in the user_def struct to support
      different authentication mechanisms. Let's introduce convenient helpers
      for allocating and freeing this struct so that we don't have to patch
      all the places in the code where it's allocated or freed when we extend
      the struct.
      
      While we are at it, switch to grp_alloc, shorted the license text, and
      replace include guards with pragma.
      
      Needed for #7986
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      e3f170d3
    • Vladimir Davydov's avatar
      box: convert authentication.cc to C · f1879a15
      Vladimir Davydov authored
      C++ features aren't really needed there. Let's drop exceptions and
      convert to C to simplify further development.
      
      While we are at it, shorten the License text, replace ifdef guards
      with pragma, and clean up the include list.
      
      Needed for #7986
      
      NO_DOC=refactoring
      NO_TEST=refactoring
      NO_CHANGELOG=refactoring
      f1879a15
    • Ilya Verbin's avatar
      cmake: add -fasynchronous-unwind-tables compiler flag · 952c8335
      Ilya Verbin authored
      This option enables emission of the DWARF CFI (Call Frame Information)
      directives to the assembler. It is enabled by default on most compilers,
      but on GCC 7 for AArch64 and older it wasn't [1], so turn it on explicitly.
      When enabled, the compiler emits .cfi_* directives that are required for
      the stack unwinding, and defines __GCC_HAVE_DWARF2_CFI_ASM.
      
      Part of #7960
      
      [1] https://gcc.gnu.org/pipermail/gcc-patches/2018-March/495549.html
      
      NO_DOC=internal
      NO_CHANGELOG=internal
      NO_TEST=Tested by test/app-luatest/fiber_parent_backtrace_test.lua
      952c8335
    • Ilya Verbin's avatar
      cmake: enable leak backtraces on AArch64 · c1b0fa92
      Ilya Verbin authored
      This feature was disabled due to a crash in libunwind. After commit
      5b08d71a ("libunwind: use latest release v1.6.2 as a base") the
      crash is gone.
      
      Closes #7960
      
      NO_DOC=internal
      NO_CHANGELOG=internal
      NO_TEST=<Leak backtraces are tested by test/unit/fiber.cc; the crash in
      libunwind is observable on test/box-luatest/gh_6310_grant_rw_access_on_
      _session_settings_space_to_public_role_test.lua>
      c1b0fa92
    • Vladimir Davydov's avatar
      xrow: use xregion_alloc in encoders · 05002edf
      Vladimir Davydov authored
      An encoder function may only fail if it fails to allocate memory from
      fiber->gc. The amount of memory it allocates is fairly small. It's used
      as an extra stack to return the encoded data. This should never fail,
      because there's no hard limit for runtime memory (and we're not planning
      to ever add one). Let's make all encoder functions return void and drop
      the untested checks for OOM.
      
      To avoid confusion, let's make xrow_header_encode, xrow_encode_dml, and
      xrow_to_iovec return the number of io vectors in a new out argument,
      because a return value of type int is usually used to indicate an error.
      
      See also #3534
      
      NO_DOC=code cleanup
      NO_TEST=code cleanup
      NO_CHANGELOG=code cleanup
      05002edf
  3. Dec 08, 2022
  4. Dec 07, 2022
    • Georgiy Lebedev's avatar
      box: export current session's identifier to C API · 9b0a767d
      Georgiy Lebedev authored
      In order to send IPROTO packets using `box_iproto_send` (#7897) we need to
      have some session identifier source in the C API: for now, export an analog
      of `box.session.id`.
      
      Closes #7895
      
      @TarantoolBot document
      Title: Document export of current session's identifier to C API
      For the API description and usage examples, see:
      * [design document](https://www.notion.so/tarantool/box-iproto-override-44935a6ac7e04fb5a2c81ca713ed1bce#0900ff9cb6b148378ce0b185d3f628b9);
      * tarantool/tarantool#7895.
      9b0a767d
    • Vladimir Davydov's avatar
      box: don't stop parsing authentication request if user doesn't exist · 42badb87
      Vladimir Davydov authored
      Currently, we stop without checking the authentication request body if
      the specified user doesn't exist. As a result, one can check if a user
      exists by sending a malformed authentication request: for an existing
      user, the server will reply with ER_INVALID_MSGPACK error while if the
      user doesn't exist, the error will be set to ER_CREDS_MISMATCH. To fix
      this, let's parse the authentication request body even if the user
      doesn't exist.
      
      Closes https://github.com/tarantool/security/issues/21
      
      NO_DOC=bug fix
      42badb87
    • Vladimir Davydov's avatar
      box: run box.session.on_auth triggers if the user doesn't exist · 8a2f1653
      Vladimir Davydov authored
      The triggers are supposed to run on any authentication attempt,
      successful or not. Without it, the admin may not notice a malefactor
      enumerating user names.
      
      Closes #8017
      
      NO_DOC=bug fix
      8a2f1653
    • Vladimir Davydov's avatar
      box: drop redundant guest password checks from authenticate · 26f69561
      Vladimir Davydov authored
      The guest can't have a non-empty password - it's explicitly prevented by
      the _user trigger callback:
      
      https://github.com/tarantool/tarantool/blob/2ed06651c317f2d46631b0d55e4b88f2c8a6c0a0/src/box/alter.cc#L2930-L2936
      
      So there's no need to check the guest user password in authenticate.
      
      NO_DOC=code cleanup
      NO_TEST=code cleanup
      NO_CHANGELOG=code cleanup
      26f69561
    • Ilya Verbin's avatar
      log: improve logging of tables · 85ef1118
      Ilya Verbin authored
      1. Fixed modification of a variable passed to the logging function
         (both log formats)
      
         tarantool> a = {foo = 'bar', file = 'c://autorun.bat'}
         tarantool> log.info(a)
         [...]
         tarantool> a
         (before) - foo: bar
          (after) - foo: bar
                    file: c://autorun.bat
      
      2. Fixed the drop of fields with reserved internal names (plain log format)
      
         tarantool> log.info({foo = 'bar', pid = 666})
         (before) {"foo":"bar"}
          (after) {"foo":"bar","pid":666}
      
      3. Now if 'message' field is absent, it is set to the first field of the
         table (JSON log format)
      
         tarantool> log.info({'Hello, world', key = 'value'})
         (before) {[...], "1":"Hello, world", "key":"value", [...]}
          (after) {[...], "message":"Hello, world", "key":"value", [...]}
      
      4. Fixed assertion on a table without string keys (JSON log format)
      
         If a Lua table, passed to say(), contains only integer indexes,
         json.encode() will encode it as an array rather than a map, thereafter
         say_format_json() will produce improperly formatted JSON string, or get
         assertion failure. Fix it by encoding all kinds of tables as maps.
      
      Closes #3853
      Closes #7955
      
      NO_DOC=Mostly bug fixes, the format of the JSON log is not documented.
      85ef1118
    • Ilya Verbin's avatar
      test: fix flaky gh_6539_log_user_space_empty_or_nil_select_test · 84306671
      Ilya Verbin authored
      Turn LuaJIT off for this test on AArch64 in the scope of the issue [1].
      
      Also increase grep_log_bytes. Currently the message is 235 byte long,
      which is pretty close to 256. If one more item is added to the traceback,
      the test will fail.
      
      ```
      C> Potentially long select from space 'test_memtx' (512)
       stack traceback:
              builtin/box/schema.lua:2528: in function 'check_select_safety'
              builtin/box/schema.lua:2545: in function 'select'
              eval:1: in main chunk
              [C]: at 0x556e8ffd5c
      ```
      
      [1] Related to #8011
      Closes tarantool/tarantool-qa#264
      
      NO_DOC=test fix
      NO_CHANGELOG=test fix
      84306671
    • Igor Munkin's avatar
      cmake: enable LUAJIT_ENABLE_CHECKHOOK option · 7a82d74c
      Igor Munkin authored
      
      In the scope of this commit check for instruction/line hooks for
      compiled code is turned on. As a result a special pad is emitted to the
      trace validating whether any debug hook is fired while this trace is
      being executed.
      
      Closes #7762
      
      NO_DOC=internal
      
      Reviewed-by: default avatarSergey Kaplun <skaplun@tarantool.org>
      Reviewed-by: default avatarMaxim Kokryashkin <m.kokryashkin@tarantool.org>
      Signed-off-by: default avatarIgor Munkin <imun@tarantool.org>
      7a82d74c
    • Igor Munkin's avatar
      luajit: bump new version · 91ffae2a
      Igor Munkin authored
      * Fix narrowing of unary minus.
      * Don't compile math.modf() anymore.
      * OSX/ARM64: Fix external unwinding.
      * Fix build with busybox grep.
      * BSD: Fix build with BSD grep.
      * OSX/ARM64: Disable unwind info.
      * ARM64: Reorder interpreter stack frame and fix unwinding.
      * OSX/ARM64: Disable external unwinding for now.
      * OSX: Fix build by hardcoding external frame unwinding.
      * Cleanup and enable external unwinding for more platforms.
      * test: remove TAP side effects in getmetrics tests
      * test: relax JIT setup in misc.getmetrics test
      * test: relax JIT setup in lj-430-maxirconst test
      * GC64: enable sysprof support
      
      Closes #6096
      Closes #6976
      Closes #7919
      Relates to #781
      Relates to #7762
      Part of #7230
      
      NO_DOC=LuaJIT submodule bump
      NO_TEST=LuaJIT submodule bump
      91ffae2a
  5. Dec 06, 2022
  6. Dec 05, 2022
    • Yaroslav Lobankov's avatar
      test: use luatest modules instead of internal ones · 21fc0770
      Yaroslav Lobankov authored
      Some internal modules have been recently copied to luatest repo [1,2]
      and now they can be safely removed, and the corresponding functionality
      from luatest can be used instead.
      
      Affected modules:
      
      - test/luatest_helpers/server.lua
      
      [1] tarantool/luatest#258
      [2] tarantool/luatest#266
      
      Closes tarantool/luatest#239
      
      NO_DOC=testing stuff
      NO_TEST=testing stuff
      NO_CHANGELOG=testing stuff
      21fc0770
    • Yaroslav Lobankov's avatar
      test: bump test-run to version w/ updated luatest · 9687656f
      Yaroslav Lobankov authored
      Bump test-run to new version with the following improvements:
      
      - Bump luatest to 0.5.7-17-g1387aa8 [1]
      
      [1] tarantool/test-run#360
      
      Part of tarantool/luatest#239
      
      NO_DOC=testing stuff
      NO_TEST=testing stuff
      NO_CHANGELOG=testing stuff
      9687656f
    • Nikolay Shirokovskiy's avatar
      libunwind: use latest release v1.6.2 as a base · 5b08d71a
      Nikolay Shirokovskiy authored
      Now we base on some unreleased state of libunwind. This is by itself not
      a good practice. Yet the main motivation is that in the current version of
      libunwind fast path for backtrace detection on x86_64 does not work.
      I guess this is because of libunwind/libunwind@400b3f819ad4 (" x86_64: Stop
      aliasing RSP and CFA"). See libunwind/libunwind#440. Fortunately this
      commit is not present it the latest release.
      
      Using fast or slow path has a great impact on performance of debug build
      where collecting fiber gc allocation backtrace is turned on by default.
      It surely depends on frequency and pattern of allocation. Test
      sql/delete3 depends on backtrace performance most dramatically. On some
      installations collecting backtraces slowed down the test up to 10 times.
      
      If fast path is available then collecting backtrace does not affect
      performance in a noticeable way.
      
      I propose not to keep autotools products in the libunwind fork repo as
      it is done previously. LOG_CONFIGURE is removed because it somehow
      incompatible with using && in CONFIGURE_COMMAND command and not critical
      to the build.
      
      Also add autotools build dependencies for packpack package specs.
      Currently not all packpack images have autotools preinstalled so this is
      required for build to success. Anyway we'b better have precise build
      requirements in build specs.
      
      Follow-up #5665
      
      NO_DOC=internal
      NO_TEST=internal
      NO_CHANGELOG=internal
      5b08d71a
    • Ilya Verbin's avatar
      cmake: fix wrong CPU architecture reported on M1/M2 Macs · d76be7ef
      Ilya Verbin authored
      This patch removes an old CMake kludge, which sets CMAKE_SYSTEM_PROCESSOR
      to "x86_64" on all 64-bit architectures, even on ARM (on Darwin).
      
      Closes #7495
      
      NO_DOC=bugfix
      d76be7ef
  7. Dec 02, 2022
    • Ilya Verbin's avatar
      backtrace: update sp before saving registers to a stack frame · 9adc4aa7
      Ilya Verbin authored
      backtrace_collect() is suffering from the same issue as coro_transfer(),
      see commit 215630e6 ("coro: update sp before saving registers to a
      stack frame").
      
      It stores x19-x30 and d8-d15 registers to the stack, but only after that
      it updates the stack pointer. If a SIGALRM signal is delivered during
      the execution of backtrace_collect, the signal handler will use the
      stack starting from current sp, thus corrupting the saved registers.
      
      Fix this by updating the stack pointer at the beginning of
      backtrace_collect. The constraint of the input operand `bt` is changed
      from "m" to "r" to force `bt` always be passed to the inline assembly
      via the register. Passing on stack will not work after this fix.
      
      Closes #7985
      
      NO_DOC=bugfix
      NO_TEST=Hard to create a stable reproducer
      9adc4aa7
  8. Nov 30, 2022
    • Georgiy Lebedev's avatar
      memtx: fix logic of read tracker rebinding during rollback · 559b27db
      Georgiy Lebedev authored
      During rollback read trackers are rebound to newer or older story, if
      present. The problem with the current logic is that read trackers are
      basically rebound in the first available index: all information about key
      parts read from other indexes gets lost — rebind read trackers in all
      indexes.
      
      Closes #7828
      
      NO_DOC=bugfix
      559b27db
    • Georgiy Lebedev's avatar
      memtx: fix use-after-free of successor in `tree_iterator_start` · 651535bc
      Georgiy Lebedev authored
      We assumed that the successor tuple's story could not get garbage collected
      on clarify of result tuple in `tree_iterator_start`, since they coincide in
      case of regular iterators. But this is not the case for reverse iterators:
      the result tuple is of-by-one from the successor, which means the
      successor's story can get garbage collected along with the tuple itself
      getting deleted, leading to use-after-free of successor: remove garbage
      collection from `memtx_tx_tuple_clarify` and call it manually.
      
      The crash in #7756 revealed that the `put` in transaction manager's story
      hash table was performed incorrectly: fix it and add an assertion that
      nothing was replaced.
      
      Closes #7755
      Closes #7756
      
      NO_DOC=bugfix
      651535bc
  9. Nov 29, 2022
    • Mergen Imeev's avatar
      sql: convert SQL constraints to core constraints · 93067481
      Mergen Imeev authored
      This patch converts existing SQL foreign key constraints and check
      constraints into core foreign key constraints and check constraints.
      
      Closes #6986
      
      @TarantoolBot document
      Title: SQL constraints
      
      SQL constraints will now use the tuple constraint mechanism instead of
      the original SQL mechanism. This allows to set constraints that are
      independent of the language used for creation. However, this disables
      some SQL constraint features that are not supported by tuple
      constraints.
      93067481
Loading