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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
|
/* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* This module adds support for https://tools.ietf.org/html/rfc6750 Bearer
* tokens, both as a generator of bearer tokens, and as an acceptor of
* Bearer tokens for authentication.
*/
#include "apr_strings.h"
#include "apr_hash.h"
#include "apr_lib.h" /* for apr_isspace */
#define APR_WANT_STRFUNC /* for strcasecmp */
#include "apr_want.h"
#include "ap_config.h"
#include "httpd.h"
#include "http_config.h"
#include "http_core.h"
#include "http_log.h"
#include "http_protocol.h"
#include "http_request.h"
#include "ap_provider.h"
#include "ap_expr.h"
#include "mod_auth.h"
module AP_MODULE_DECLARE_DATA auth_bearer_module;
typedef struct {
autht_provider_list *providers;
int authoritative;
ap_expr_info_t *proxy;
int authoritative_set:1;
int proxy_set:1;
} auth_bearer_config_rec;
static void *create_auth_bearer_dir_config(apr_pool_t *p, char *d)
{
auth_bearer_config_rec *conf = apr_pcalloc(p, sizeof(*conf));
/* Any failures are fatal. */
conf->authoritative = 1;
return conf;
}
static void *merge_auth_bearer_dir_config(apr_pool_t *p, void *basev, void *overridesv)
{
auth_bearer_config_rec *newconf = apr_pcalloc(p, sizeof(*newconf));
auth_bearer_config_rec *base = basev;
auth_bearer_config_rec *overrides = overridesv;
newconf->authoritative =
overrides->authoritative_set ? overrides->authoritative :
base->authoritative;
newconf->authoritative_set = overrides->authoritative_set
|| base->authoritative_set;
newconf->providers = overrides->providers ? overrides->providers : base->providers;
newconf->proxy =
overrides->proxy_set ? overrides->proxy : base->proxy;
newconf->proxy_set = overrides->proxy_set || base->proxy_set;
return newconf;
}
static const char *add_autht_provider(cmd_parms *cmd, void *config,
const char *arg)
{
auth_bearer_config_rec *conf = (auth_bearer_config_rec*)config;
autht_provider_list *newp;
newp = apr_pcalloc(cmd->pool, sizeof(autht_provider_list));
newp->provider_name = arg;
/* lookup and cache the actual provider now */
newp->provider = ap_lookup_provider(AUTHT_PROVIDER_GROUP,
newp->provider_name,
AUTHT_PROVIDER_VERSION);
if (newp->provider == NULL) {
/* by the time they use it, the provider should be loaded and
registered with us. */
return apr_psprintf(cmd->pool,
"Unknown Autht provider: %s",
newp->provider_name);
}
if (!newp->provider->check_token) {
/* if it doesn't provide the appropriate function, reject it */
return apr_psprintf(cmd->pool,
"The '%s' Autht provider doesn't support "
"Bearer Authentication", newp->provider_name);
}
/* Add it to the list now. */
if (!conf->providers) {
conf->providers = newp;
}
else {
autht_provider_list *last = conf->providers;
while (last->next) {
last = last->next;
}
last->next = newp;
}
return NULL;
}
static const char *set_authoritative(cmd_parms * cmd, void *config, int flag)
{
auth_bearer_config_rec *conf = (auth_bearer_config_rec *) config;
conf->authoritative = flag;
conf->authoritative_set = 1;
return NULL;
}
static const char *set_bearer_proxy(cmd_parms * cmd, void *config,
const char *user)
{
auth_bearer_config_rec *conf = (auth_bearer_config_rec *) config;
const char *err;
if (!strcasecmp(user, "off")) {
conf->proxy = NULL;
conf->proxy_set = 1;
}
else {
conf->proxy =
ap_expr_parse_cmd(cmd, user, AP_EXPR_FLAG_STRING_RESULT,
&err, NULL);
if (err) {
return apr_psprintf(cmd->pool,
"Could not parse proxy expression '%s': %s", user,
err);
}
conf->proxy_set = 1;
}
return NULL;
}
static const command_rec auth_bearer_cmds[] =
{
AP_INIT_ITERATE("AuthBearerProvider", add_autht_provider, NULL, OR_AUTHCFG,
"specify the auth providers for a directory or location"),
AP_INIT_FLAG("AuthBearerAuthoritative", set_authoritative, NULL, OR_AUTHCFG,
"Set to 'Off' to allow access control to be passed along to "
"lower modules if the token is not known to this module"),
AP_INIT_TAKE1("AuthBearerProxy", set_bearer_proxy, NULL, OR_AUTHCFG,
"Pass a bearer authentication token over a proxy connection "
"generated using the given expression, 'off' to disable."),
{NULL}
};
/* These functions return 0 if client is OK, and proper error status
* if not... either HTTP_UNAUTHORIZED, if we made a check, and it failed, or
* HTTP_INTERNAL_SERVER_ERROR, if things are so totally confused that we
* couldn't figure out how to tell if the client is authorized or not.
*
* If they return DECLINED, and all other modules also decline, that's
* treated by the server core as a configuration error, logged and
* reported as such.
*/
static void note_bearer_auth_failure(request_rec *r)
{
apr_table_setn(r->err_headers_out,
(PROXYREQ_PROXY == r->proxyreq) ? "Proxy-Authenticate"
: "WWW-Authenticate",
apr_pstrcat(r->pool, "Bearer realm=\"", ap_auth_name(r),
"\"", NULL));
}
static int hook_note_bearer_auth_failure(request_rec *r, const char *auth_type)
{
if (strcasecmp(auth_type, "Bearer"))
return DECLINED;
note_bearer_auth_failure(r);
return OK;
}
static int get_bearer_auth(request_rec *r, const char **token)
{
const char *auth_line;
/* Get the appropriate header */
auth_line = apr_table_get(r->headers_in, (PROXYREQ_PROXY == r->proxyreq)
? "Proxy-Authorization"
: "Authorization");
if (!auth_line) {
note_bearer_auth_failure(r);
return HTTP_UNAUTHORIZED;
}
if (strcasecmp(ap_getword(r->pool, &auth_line, ' '), "Bearer")) {
/* Client tried to authenticate using wrong auth scheme */
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01614)
"client used wrong authentication scheme: %s", r->uri);
note_bearer_auth_failure(r);
return HTTP_UNAUTHORIZED;
}
/* Skip leading spaces. */
while (apr_isspace(*auth_line)) {
auth_line++;
}
*token = auth_line;
return OK;
}
/* Determine the token, and check if we can process the token, for HTTP
* bearer authentication...
*/
static int authenticate_bearer_token(request_rec *r)
{
auth_bearer_config_rec *conf = ap_get_module_config(r->per_dir_config,
&auth_bearer_module);
const char *sent_token, *current_auth;
int res;
autht_status auth_result;
autht_provider_list *current_provider;
/* Are we configured to be Bearer auth? */
current_auth = ap_auth_type(r);
if (!current_auth || strcasecmp(current_auth, "Bearer")) {
return DECLINED;
}
/* We need an authentication realm. */
if (!ap_auth_name(r)) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01615)
"need AuthName: %s", r->uri);
return HTTP_INTERNAL_SERVER_ERROR;
}
r->ap_auth_type = (char*)current_auth;
res = get_bearer_auth(r, &sent_token);
if (res) {
return res;
}
current_provider = conf->providers;
do {
const autht_provider *provider;
/* For now, if a provider isn't set, we'll be nice and use the jwt
* provider.
*/
if (!current_provider) {
provider = ap_lookup_provider(AUTHT_PROVIDER_GROUP,
AUTHT_DEFAULT_PROVIDER,
AUTHT_PROVIDER_VERSION);
if (!provider || !provider->check_token) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01616)
"No Autht provider configured");
auth_result = AUTHT_GENERAL_ERROR;
break;
}
apr_table_setn(r->notes, AUTHT_PROVIDER_NAME_NOTE, AUTHT_DEFAULT_PROVIDER);
}
else {
provider = current_provider->provider;
apr_table_setn(r->notes, AUTHT_PROVIDER_NAME_NOTE, current_provider->provider_name);
}
auth_result = provider->check_token(r, "bearer", sent_token);
apr_table_unset(r->notes, AUTHT_PROVIDER_NAME_NOTE);
/* Something occurred. Stop checking. */
if (auth_result != AUTHT_MISMATCH) {
break;
}
/* If we're not really configured for providers, stop now. */
if (!conf->providers) {
break;
}
current_provider = current_provider->next;
} while (current_provider);
if (auth_result != AUTHT_GRANTED) {
int return_code;
/* If we're not authoritative, then any error is ignored. */
if (!(conf->authoritative) && auth_result != AUTHT_DENIED) {
return DECLINED;
}
switch (auth_result) {
case AUTHT_DENIED:
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO()
"bearer token %s: authentication failure for \"%s\": "
"Token Rejected",
sent_token, r->uri);
return_code = HTTP_UNAUTHORIZED;
break;
case AUTHT_EXPIRED:
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO()
"bearer token %s: authentication failure for \"%s\": "
"Token has expired",
sent_token, r->uri);
return_code = HTTP_UNAUTHORIZED;
break;
case AUTHT_INVALID:
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO()
"bearer token %s: authentication failure for \"%s\": "
"Token is not yet valid",
sent_token, r->uri);
return_code = HTTP_UNAUTHORIZED;
break;
case AUTHT_MISMATCH:
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO()
"bearer token %s: did not match '%s': %s", sent_token,
ap_auth_name(r), r->uri);
return_code = HTTP_UNAUTHORIZED;
break;
case AUTH_GENERAL_ERROR:
default:
/* We'll assume that the module has already said what its error
* was in the logs.
*/
return_code = HTTP_INTERNAL_SERVER_ERROR;
break;
}
/* If we're returning 401, tell them to try again. */
if (return_code == HTTP_UNAUTHORIZED) {
note_bearer_auth_failure(r);
}
return return_code;
}
return OK;
}
/* If we have set claims to be made, create a bearer authentication header
* for the benefit of a proxy or application running behind this server.
*/
static int authenticate_bearer_fixup(request_rec *r)
{
const char *auth_line, *token, *err;
auth_bearer_config_rec *conf = ap_get_module_config(r->per_dir_config,
&auth_bearer_module);
if (!conf->proxy) {
return DECLINED;
}
token = ap_expr_str_exec(r, conf->proxy, &err);
if (err) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(02455)
"AuthBearerProxy: could not evaluate token expression for URI '%s': %s", r->uri, err);
return HTTP_INTERNAL_SERVER_ERROR;
}
if (!token || !*token) {
ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(02458)
"AuthBearerProxy: empty token expression for URI '%s', ignoring", r->uri);
apr_table_unset(r->headers_in, "Authorization");
return DECLINED;
}
auth_line = apr_pstrcat(r->pool, "Bearer ", token,
NULL);
apr_table_setn(r->headers_in, "Authorization", auth_line);
ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(02457)
"AuthBearerProxy: \"Authorization: %s\"",
auth_line);
return OK;
}
static void register_hooks(apr_pool_t *p)
{
ap_hook_check_autht(authenticate_bearer_token, NULL, NULL, APR_HOOK_MIDDLE,
AP_AUTH_INTERNAL_PER_CONF);
ap_hook_fixups(authenticate_bearer_fixup, NULL, NULL, APR_HOOK_LAST);
ap_hook_note_auth_failure(hook_note_bearer_auth_failure, NULL, NULL,
APR_HOOK_MIDDLE);
}
AP_DECLARE_MODULE(auth_bearer) =
{
STANDARD20_MODULE_STUFF,
create_auth_bearer_dir_config, /* dir config creater */
merge_auth_bearer_dir_config, /* dir merger --- default is to override */
NULL, /* server config */
NULL, /* merge server config */
auth_bearer_cmds, /* command apr_table_t */
register_hooks /* register hooks */
};
|