Skip to content

Commit b66cb30

Browse files
themilchenkooleg-jukovec
authored andcommitted
drivers: add grant method for all driver spaces
There was a bug that grant for a user didn't work for spaces with `_ready_buffer` suffix. After the patch the `grant` method was added for each driver that accounts the `grant` for all spaces. Closes #237
1 parent 3bfd1e2 commit b66cb30

File tree

7 files changed

+92
-2
lines changed

7 files changed

+92
-2
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1313

1414
### Fixed
1515

16+
- Grant method was added for `*_ready_buffer` spaces (#237).
17+
1618
## [1.4.2] - 2024-08-10
1719

1820
The release re-publish packages.

queue/abstract.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ function tube.grant(self, user, args)
346346
tube_grant_space(user, '_queue', 'read')
347347
tube_grant_space(user, '_queue_consumers')
348348
tube_grant_space(user, '_queue_taken_2')
349-
tube_grant_space(user, self.name)
349+
self.raw:grant(user, {if_not_exists = true})
350350
session.grant(user)
351351

352352
if args.call then

queue/abstract/driver/fifo.lua

+5
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ function tube.new(space, on_task_change)
6161
return self
6262
end
6363

64+
-- method.grant grants provided user to all spaces of driver.
65+
function method.grant(self, user, opts)
66+
box.schema.user.grant(user, 'read,write', 'space', self.space.name, opts)
67+
end
68+
6469
-- normalize task: cleanup all internal fields
6570
function method.normalize_task(self, task)
6671
return task

queue/abstract/driver/fifottl.lua

+5
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,11 @@ function tube.new(space, on_task_change, opts)
202202
return self
203203
end
204204

205+
-- method.grant grants provided user to all spaces of driver.
206+
function method.grant(self, user, opts)
207+
box.schema.user.grant(user, 'read,write', 'space', self.space.name, opts)
208+
end
209+
205210
-- cleanup internal fields in task
206211
function method.normalize_task(self, task)
207212
return task and task:transform(3, 5)

queue/abstract/driver/utube.lua

+8
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,14 @@ function tube.new(space, on_task_change, opts)
126126
return self
127127
end
128128

129+
-- method.grant grants provided user to all spaces of driver.
130+
function method.grant(self, user, opts)
131+
box.schema.user.grant(user, 'read,write', 'space', self.space.name, opts)
132+
if self.space_ready_buffer ~= nil then
133+
box.schema.user.grant(user, 'read,write', 'space', self.space_ready_buffer.name, opts)
134+
end
135+
end
136+
129137
-- normalize task: cleanup all internal fields
130138
function method.normalize_task(self, task)
131139
return task and task:transform(3, 1)

queue/abstract/driver/utubettl.lua

+8
Original file line numberDiff line numberDiff line change
@@ -386,6 +386,14 @@ function tube.new(space, on_task_change, opts)
386386
return self
387387
end
388388

389+
-- method.grant grants provided user to all spaces of driver.
390+
function method.grant(self, user, opts)
391+
box.schema.user.grant(user, 'read,write', 'space', self.space.name, opts)
392+
if self.space_ready_buffer ~= nil then
393+
box.schema.user.grant(user, 'read,write', 'space', self.space_ready_buffer.name, opts)
394+
end
395+
end
396+
389397
-- cleanup internal fields in task
390398
function method.normalize_task(self, task)
391399
return task and task:transform(i_next_event, i_data - i_next_event)

t/090-grant-check.t

+63-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env tarantool
22
local test = require('tap').test()
3-
test:plan(3)
3+
test:plan(9)
44

55
local test_user = 'test'
66
local test_pass = '1234'
@@ -21,6 +21,68 @@ local engine = os.getenv('ENGINE') or 'memtx'
2121

2222
local qc = require('queue.compat')
2323

24+
local test_drivers_grant_cases = {
25+
{
26+
name = 'fifo',
27+
queue_type = 'fifo',
28+
},
29+
{
30+
name = 'fifottl',
31+
queue_type = 'fifottl',
32+
},
33+
{
34+
name = 'utube_default',
35+
queue_type = 'utube',
36+
storage_mode = 'default',
37+
},
38+
{
39+
name = 'utube_ready_buffer',
40+
queue_type = 'utube',
41+
storage_mode = 'ready_buffer',
42+
},
43+
{
44+
name = 'utubettl_default',
45+
queue_type = 'utubettl',
46+
storage_mode = 'default',
47+
},
48+
{
49+
name = 'utubettl_ready_buffer',
50+
queue_type = 'utubettl',
51+
storage_mode = 'ready_buffer',
52+
},
53+
}
54+
55+
for _, tc in pairs(test_drivers_grant_cases) do
56+
test:test('test dirvers grant ' .. tc.name, function(test)
57+
local queue = require('queue')
58+
box.schema.user.create(test_user, { password = test_pass })
59+
60+
test:plan(2)
61+
62+
local tube_opts = { engine = engine }
63+
if tc.storage_mode ~= nil and tc.storage_mode ~= 'default' then
64+
tube_opts.storage_mode = tc.storage_mode
65+
tube_opts.engine = 'memtx'
66+
end
67+
local tube = queue.create_tube('test', tc.queue_type, tube_opts)
68+
tube:put('help')
69+
70+
tube:grant(test_user)
71+
72+
box.session.su(test_user)
73+
local a = tube:take()
74+
test:is(a[1], 0, 'we aren\'t getting any error')
75+
76+
local c = tube:ack(a[1])
77+
test:is(c[1], 0, 'we aren\'t getting any error')
78+
79+
box.session.su('admin')
80+
81+
box.schema.user.drop(test_user)
82+
tube:drop()
83+
end)
84+
end
85+
2486
test:test('check for space grants', function(test)
2587
-- prepare for tests
2688
local queue = require('queue')

0 commit comments

Comments
 (0)