Skip to content
Snippets Groups Projects
  1. Jan 10, 2018
    • Ilya's avatar
      msgpack: Fix segfault in ibuf_decode · d1c53754
      Ilya authored
      Fix segfault in case when ibuf.rpos is null
      Now error is raised in the case
      
      Closes #3005
      d1c53754
    • Vladimir Davydov's avatar
      vinyl: fix page_size and range_size defaults · f40ab7f1
      Vladimir Davydov authored
      If the value of range_size is absent in the _index system space, it will
      be initialized to 0 in struct index_def. This will lead to insane range
      splitting in vinyl and, as a result, file descriptor exhaustion. We ran
      into this problem after restoring memtx spaces as vinyl using tarantool
      dump utility (the latter simply replaces 'memtx' with 'vinyl' in the
      _space system space on restore). To avoid a debacle like this in future,
      let's use hardcoded defaults if vinyl options were omitted in the _index
      system space on insertion. The default values are the same we use for
      the corresponding box.cfg options. We already do it for run_size_ratio,
      run_count_per_level, and bloom_fpr so let's do it for range_size and
      page_size too.
      
      Closes #3019
      f40ab7f1
  2. Jan 09, 2018
  3. Dec 30, 2017
    • Konstantin Osipov's avatar
      security: add automatic upgrade provisioning a fix for gh-945 · 9a7c918f
      Konstantin Osipov authored
      Currently we requrie read and write on system spaces to be able to
      create objects, and only object definer can drop an object.
      
      Release 1.7.7 adds 'create' and 'drop' acls, which can
      be used to explicitly pass around create/drop privileges.
      
      Automatically grant 'create' privilege to all users created
      pre-1.7.7 who have global read and write privileges on universe
      during 1.7.7 automatic upgrade.
      9a7c918f
  4. Dec 29, 2017
    • Konstantin Osipov's avatar
      security: add 'super' role · d645f58d
      Konstantin Osipov authored
      Add a role which contains all ACLs.
      
      Fixes gh-3022.
      
      Useful for any quick start:
      
      box.schema.user.grant('guest', 'super')
      d645f58d
    • Konstantin Osipov's avatar
      test: update test-run · 05096303
      Konstantin Osipov authored
      * --gdbserver
      * --gdb was broken and is fixed (again)
      05096303
    • Konstantin Osipov's avatar
      security: implement box.session.effective_user() · 4403fe39
      Konstantin Osipov authored
      box.session:
      
      * change .user() to return the authenticated user
      * implement .effective.user()
      
      Extends gh-2994.
      4403fe39
    • Ilya's avatar
      box: introduce system privileges · 74ab44ae
      Ilya authored
      Add system privileges 'session' and 'usage'
      
      * 'session' privilege lets user connect to database server
      * 'usage' privilege lets user use his/her rights on database objects
      * Both privileges are assigned to all users by default.
      
      Implementation details:
      * system privileges are special grant rights to 'universe'.
      Therefore, they can be granted only by admin. Because of this fact,
      during creation or deletion of user, we have to switch to 'admin' to
      grant or revoke these rights.
      
      Important changes:
      * changed bootstrap.snap due to need to start admin with new privileges
      * added auto upgrade script for 1.7.7
      
      Fixes gh-2898.
      
      With contributions by @kostja.
      74ab44ae
    • Konstantin Osipov's avatar
      gh-2994 (effective user) · 2f5749cb
      Konstantin Osipov authored
      The original patch returned authenticated user for effective and vice
      versa.
      
      Reverse the meaning and update the patch.
      2f5749cb
  5. Dec 28, 2017
    • Konstantin Osipov's avatar
      security: add a test case fog gh-3023 · 56438fa6
      Konstantin Osipov authored
      box.session.su() changes both user and effective user right now.
      Changing only the session user seems to be rather difficult:
      we need to keep the object allocated somewhere, and keeping
      in mind request multiplexor in iproto, with which many requests
      can share the same session, it can only be Lua stack.
      
      While at it, change current_user() to effective_user() to
      make it less ambiguous.
      56438fa6
    • Ilya's avatar
      session: Resolve user and effective user · 2b163e20
      Ilya authored
      * Fix box.session.uid returning user id
      * Add function box.session.euid returning
      effective user id
      Closes #2994
      2b163e20
    • Konstantin Osipov's avatar
      security: introduce all ANSI SQL ACL, as well as session and usage · 6090846e
      Konstantin Osipov authored
      Introduce all the necessary ACL for ANSI SQL, as well as SESSION
      and USAGE.
      
      Change access storage type from uint8_t to a typedef.
      
      Necessary for gh-2898.
      6090846e
    • Ilya's avatar
      Error on wrong user on space creation · bfd31f8b
      Ilya authored
      Add error if user given in box.schema.space.create option
      was not found
      
      Closes #2068
      bfd31f8b
  6. Dec 26, 2017
    • Vladimir Davydov's avatar
      Add box.info.memory() to report aggregated memory statistics · 4240860f
      Vladimir Davydov authored
      This patch adds a new function, box.info.memory(). The functions returns
      a table with the following fields:
      
       - data - size of memory in bytes used for storing user data (i.e.
         tuples) in memtx and in vinyl level 0, without taking into account
         memory fragmentation.
      
       - index - size of memory in bytes used for indexing user data. This
         includes memtx and vinyl memory tree extents, vinyl page index, vinyl
         bloom filters.
      
       - cache - size of memory in bytes used for caching user data. Memtx
         doesn't have cache so basically this is the size of the vinyl tuple
         cache.
      
       - tx - size of memory in bytes used up by active transactions. For
         vinyl it is the total size of all allocated struct txv, struct vy_tx,
         struct vy_read_interval, plus tuples pinned by those objects. For
         memtx it is going to be 0 for now as memtx transaction manager
         shouldn't consume much memory. We may want to account struct txn and
         struct txn_stmt there too in future.
      
       - net - size of memory in bytes used up by network input and output
         buffers.
      
       - lua - size of memory used by the Lua runtime.
      
      It is supposed to be used by the admin to get a general knowledge about
      what's going on with a particular tarantool instance. For more info, per
      subsystem statistics are supposed to be used (e.g. box.info.vinyl()).
      
      Closes #934
      4240860f
    • Vladimir Davydov's avatar
      iproto: account memory used by network buffers · 8516cbc3
      Vladimir Davydov authored
      Add function iproto_mem_used() that returns the total amount of memory
      allocated for storing input and output buffers. It will be used by
      box.info.memory() implementation to show aggregated network statistics.
      
      Note, to account memory used by output buffers, we have to introduce a
      separate slab cache (currently, the cache of the tx cord is used).
      
      Needed for #934
      8516cbc3
    • Vladimir Davydov's avatar
      vinyl: account memory used by statements in read and write sets · 49b3f748
      Vladimir Davydov authored
      To be reported by box.info.memory().tx
      
      Needed for #934
      49b3f748
    • Vladimir Davydov's avatar
      vinyl: account total size of page index and bloom · 4fc2fbdf
      Vladimir Davydov authored
      To be reported by box.info.memory().index
      
      Needed for #934
      4fc2fbdf
    • Vladimir Davydov's avatar
      vinyl: account memory occupied by tree extents · 28a24984
      Vladimir Davydov authored
      To be reported by box.info.memory().index
      
      Needed for #934
      28a24984
    • Ilya's avatar
      Fix access checks on CALL · 62ec6c1b
      Ilya authored
      CALL should check only EXECUTE access on universe instead of
      READ, WRITE, EXECUTE.
      
      Closes #3017
      62ec6c1b
  7. Dec 22, 2017
    • Konstantin Osipov's avatar
      say: workaround gh-3014 · 3359b88b
      Konstantin Osipov authored
      At least print an error message when we try to set json log format
      for syslog log type.
      Do not iterate over all loggers on each SIGHUP.
      Style fixes.
      3359b88b
  8. Dec 21, 2017
    • Konstantin Osipov's avatar
      say: a few review fixes · 9737269d
      Konstantin Osipov authored
      * fix a bug in opening syslog file descriptor on Mac (Darwin)
      * add comments
      9737269d
    • Vladislav Shpilevoy's avatar
      schema: inherit default index parts from space format · 4bbd8d1b
      Vladislav Shpilevoy authored
      If index parts are not specied, default part types ignore space format.
      Lets use in default index parts types from a space format.
      
      Closes #2893
      4bbd8d1b
    • Ilya's avatar
      say: fix format functions · 3c61cd03
      Ilya authored
      * Add check on NULL filename in format functions
      * The need of this fix was inspired by possible need of custom loggers
      which want to reuse our format functions
      3c61cd03
    • Ilya's avatar
      say: Add several loggers support · 6d7437da
      Ilya authored
      * Add struct log
      * Add possibility to add logger configuration to global scope
      * Refactor functions in say to use them with specified config,
       not only global variable
      
       This patch was inspired by need of additional logger in audit log
       Relates #2912
      6d7437da
    • Ilya's avatar
      say: Refactor system error processing · f59ac234
      Ilya authored
      * Pull error processing from functions say_XXX_init(file, pipe, sys)
      to say_log_init
      * Remove error processing with passing point error
      message as an argument
      * Add new exception IllegalParameters
      f59ac234
  9. Dec 20, 2017
  10. Dec 19, 2017
    • Vladislav Shpilevoy's avatar
      alter: swap key_def memory on index alter · 56f970e1
      Vladislav Shpilevoy authored
      If an index is modified, in index_def_swap it does not swap key_defs.
      But index alter can change part types and comparators. Lets swap
      key_defs too. Note, that we can not swap key_defs by pointers - they
      are stored in memtx trees.
      
      Closes #3000
      56f970e1
    • Konstantin Osipov's avatar
    • Vladimir Davydov's avatar
      vinyl: force read view in iterator in autocommit mode · a31c2c10
      Vladimir Davydov authored
      Every iteration over a secondary index tracks a point in the transaction
      manager (due to lookup in the primary index). As a result, if the user
      calls 'select' or 'pairs' over a huge data set, it will consume a lot of
      memory due to this tracked points, even if the user doesn't uses
      transactions.
      
      To mitigate this, let's send all read only transactions to read view
      immediately so that tracking is disabled completely during iteration.
      Note, with this patch select() called outside a transaction doesn't
      populate the cache any more, but it seems to be OK as caching large
      select() requests results in cache thrashing.
      
      Closes #2534
      a31c2c10
    • Konstantin Osipov's avatar
      schema.cc: remove unused includes · c45f4e37
      Konstantin Osipov authored
      c45f4e37
    • Vladimir Davydov's avatar
      vinyl: pass read view to vy_index_get explicitly · 3c2a6d30
      Vladimir Davydov authored
      Currently, if tx is not NULL, tx->read_view is used, otherwise the
      global read view is used. For the sake of #2534 (read view for read only
      autocommit statements), we will need to pass an arbitrary read view to
      this function. So let's add the corresponding argument. This also allows
      us to drop env from the argument list.
      
      While we are at it, let's also inline vy_index_full_by_stmt() as it is a
      trivial wrapper around vy_index_get().
      
      Needed for #2534
      3c2a6d30
    • Vladimir Davydov's avatar
      vinyl: fix latency accounting for point lookups · 2084b8df
      Vladimir Davydov authored
      We don't account latency of point lookups, neither we emit a warning if
      a point lookup took > too_long_threshold. To fix this, let's move the
      too_long_threshold configuration parameter from vy_env to vy_index_env
      and check it in both vy_read_iterator_next() and vy_point_lookup().
      This will also allow us not to pass too_long_threshold (or vy_env for
      that matter) all the way down to read iterator initialization.
      2084b8df
    • Konstantin Osipov's avatar
      vinyl: properly initialize vy_index_env::index_count · 8db04112
      Konstantin Osipov authored
      The variable is only used for asserts, which
      started to fail sporadically because of a missing initialization
      since the last patch.
      8db04112
    • Vladimir Davydov's avatar
      vinyl: turn point iterator into a function · a59f93b7
      Vladimir Davydov authored
      The point iterator is not actually an iterator: it doesn't have an
      internal state and it acts as a function. Wrapping it into the iterator
      protocol only complicates its usage. Let's turn it into a function.
      a59f93b7
    • Vladimir Davydov's avatar
      vinyl: do not extract key for lookup in primary index · 0808cddc
      Vladimir Davydov authored
      This is not necessary, because if the index is primary, its key_def and
      cmp_def are the same and so the read iterator will not compare extra
      tuple parts as it is the case for secondary indexes.
      0808cddc
    • Vladimir Davydov's avatar
      vinyl: truncate region after extracting key from tuple · 939c2f9a
      Vladimir Davydov authored
      tuple_extract_key() uses region to store the result. If the region is
      not truncated, as it is currently the case, the memory consumption can
      rocket sky high during a transaction execution. This is especially
      critical in case of select() or pairs() over a secondary index.
      
      To fix that, let's introduce vy_stmt_extract_key() wrapper, which would
      store the result on malloc, and use it throughout the code. Note, this
      doesn't add malloc() invocations, because malloc() has to be invoked by
      vy_index_get() anyway - we just move it up.
      939c2f9a
    • Konstantin Osipov's avatar
  11. Dec 18, 2017
  12. Dec 17, 2017
    • Vladimir Davydov's avatar
      vinyl: cleanup usage of tuple comparison functions · ad7dc787
      Vladimir Davydov authored
       - Use vy_tuple_compare() instead of vy_stmt_compare() in places where
         we know that both arguments are tuples (type != SELECT).
      
       - Use vy_tuple_compare() instead of tuple_compare() in the write
         iterator to assure that none of its arguments happens to be a key.
      
       - Use vy_stmt_compare() instead of vy_tuple_compare_with_key() in the
         read iterator when comparing the resulting statement to the search
         key, because the search key may be a tuple.
      ad7dc787
Loading