-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathservice_auth.cpp
154 lines (122 loc) · 4.85 KB
/
service_auth.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#include "service_auth.h"
#include "auth_provider.h"
#include "context.h"
#include "service.h"
#include <cloud/storage/core/libs/common/error.h>
#include <cloud/blockstore/config/server.pb.h>
namespace NCloud::NBlockStore {
using namespace NThreading;
namespace {
////////////////////////////////////////////////////////////////////////////////
class TAuthService final
: public IBlockStore
{
private:
const IBlockStorePtr Service;
const IAuthProviderPtr AuthProvider;
public:
TAuthService(
IBlockStorePtr service,
IAuthProviderPtr authProvider)
: Service(std::move(service))
, AuthProvider(std::move(authProvider))
{}
void Start() override
{
Service->Start();
}
void Stop() override
{
Service->Stop();
}
TStorageBuffer AllocateBuffer(size_t bytesCount) override
{
return Service->AllocateBuffer(bytesCount);
}
#define BLOCKSTORE_IMPLEMENT_METHOD(name, ...) \
TFuture<NProto::T##name##Response> name( \
TCallContextPtr ctx, \
std::shared_ptr<NProto::T##name##Request> request) override \
{ \
using TRequest = NProto::T##name##Request; \
using TResponse = NProto::T##name##Response; \
return ExecuteRequest<TRequest, TResponse>( \
std::move(ctx), \
std::move(request)); \
} \
// BLOCKSTORE_IMPLEMENT_METHOD
BLOCKSTORE_SERVICE(BLOCKSTORE_IMPLEMENT_METHOD)
#undef BLOCKSTORE_IMPLEMENT_METHOD
private:
template <typename TRequest, typename TResponse>
TFuture<TResponse> ExecuteRequest(
TCallContextPtr ctx,
std::shared_ptr<TRequest> request)
{
const auto& headers = request->GetHeaders();
const auto& internal = headers.GetInternal();
auto permissions = GetRequestPermissions(*request);
bool needAuth = AuthProvider->NeedAuth(
internal.GetRequestSource(),
permissions);
if (!needAuth) {
return ExecuteServiceRequest(std::move(ctx), std::move(request));
}
auto authResponse = AuthProvider->CheckRequest(
ctx,
std::move(permissions),
internal.GetAuthToken(),
GetBlockStoreRequest<TRequest>(),
TDuration::MilliSeconds(headers.GetRequestTimeout()),
GetDiskId(*request));
return HandleAuthResponse<TRequest, TResponse>(
std::move(authResponse),
std::move(ctx),
std::move(request));
}
template <typename TRequest, typename TResponse>
TFuture<TResponse> HandleAuthResponse(
TFuture<NProto::TError> authResponse,
TCallContextPtr ctx,
std::shared_ptr<TRequest> request)
{
auto promise = NewPromise<TResponse>();
authResponse.Subscribe(
[=, request = std::move(request), ctx = std::move(ctx)] (const auto& future) mutable {
const auto& error = future.GetValue();
if (HasError(error)) {
promise.SetValue(TErrorResponse(error));
return;
}
ExecuteServiceRequest(
std::move(ctx),
std::move(request)
).Subscribe(
[=] (const auto& future) mutable {
promise.SetValue(future.GetValue());
});
});
return promise.GetFuture();
}
#define BLOCKSTORE_IMPLEMENT_METHOD(name, ...) \
TFuture<NProto::T##name##Response> ExecuteServiceRequest( \
TCallContextPtr ctx, \
std::shared_ptr<NProto::T##name##Request> request) \
{ \
return Service->name(std::move(ctx), std::move(request)); \
} \
// BLOCKSTORE_IMPLEMENT_METHOD
BLOCKSTORE_SERVICE(BLOCKSTORE_IMPLEMENT_METHOD)
#undef BLOCKSTORE_IMPLEMENT_METHOD
};
} // namespace
////////////////////////////////////////////////////////////////////////////////
IBlockStorePtr CreateAuthService(
IBlockStorePtr service,
IAuthProviderPtr authProvider)
{
return std::make_shared<TAuthService>(
std::move(service),
std::move(authProvider));
}
} // namespace NCloud::NBlockStore