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 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482
|
/*
* Copyright (C) 2008-2020 Sergio Talens-Oliag <sto@mixinet.net>
*
* Based on nginx's 'ngx_http_auth_basic_module.c' by Igor Sysoev and apache's
* 'mod_auth_pam.c' by Ingo Luetkebolhe.
*
* File: ngx_http_auth_pam_module.c
*/
#include <ngx_config.h>
#include <ngx_core.h>
#include <ngx_http.h>
#include <security/pam_appl.h>
#define NGX_PAM_SERVICE_NAME "nginx"
/* Module context data */
typedef struct {
ngx_str_t passwd;
} ngx_http_auth_pam_ctx_t;
/* PAM authinfo */
typedef struct {
ngx_str_t username;
ngx_str_t password;
ngx_log_t *log;
} ngx_pam_authinfo;
/* Module configuration struct */
typedef struct {
ngx_str_t realm; /* http basic auth realm */
ngx_str_t service_name; /* pam service name */
ngx_flag_t set_pam_env; /* flag that indicates if we should export
variables to PAM or NOT */
} ngx_http_auth_pam_loc_conf_t;
/* Module handler */
static ngx_int_t ngx_http_auth_pam_handler(ngx_http_request_t *r);
/* Function that authenticates the user -- is the only function that uses PAM */
static ngx_int_t ngx_http_auth_pam_authenticate(ngx_http_request_t *r,
ngx_http_auth_pam_ctx_t *ctx,
ngx_str_t *passwd, void *conf);
static ngx_int_t ngx_http_auth_pam_set_realm(ngx_http_request_t *r,
ngx_str_t *realm);
static void *ngx_http_auth_pam_create_loc_conf(ngx_conf_t *cf);
static char *ngx_http_auth_pam_merge_loc_conf(ngx_conf_t *cf,
void *parent, void *child);
static ngx_int_t ngx_http_auth_pam_init(ngx_conf_t *cf);
static char *ngx_http_auth_pam(ngx_conf_t *cf, void *post, void *data);
static ngx_conf_post_handler_pt ngx_http_auth_pam_p = ngx_http_auth_pam;
static int ngx_auth_pam_talker(int num_msg, const struct pam_message ** msg,
struct pam_response ** resp, void *appdata_ptr);
static ngx_command_t ngx_http_auth_pam_commands[] = {
{ ngx_string("auth_pam"),
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF
|NGX_CONF_TAKE1,
ngx_conf_set_str_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_auth_pam_loc_conf_t, realm),
&ngx_http_auth_pam_p },
{ ngx_string("auth_pam_service_name"),
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF
|NGX_CONF_TAKE1,
ngx_conf_set_str_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_auth_pam_loc_conf_t, service_name),
NULL },
{ ngx_string("auth_pam_set_pam_env"),
NGX_HTTP_MAIN_CONF|NGX_HTTP_SRV_CONF|NGX_HTTP_LOC_CONF|NGX_HTTP_LMT_CONF
|NGX_CONF_FLAG,
ngx_conf_set_flag_slot,
NGX_HTTP_LOC_CONF_OFFSET,
offsetof(ngx_http_auth_pam_loc_conf_t, set_pam_env),
NULL },
ngx_null_command
};
static ngx_http_module_t ngx_http_auth_pam_module_ctx = {
NULL, /* preconfiguration */
ngx_http_auth_pam_init, /* postconfiguration */
NULL, /* create main configuration */
NULL, /* init main configuration */
NULL, /* create server configuration */
NULL, /* merge server configuration */
ngx_http_auth_pam_create_loc_conf, /* create location configuration */
ngx_http_auth_pam_merge_loc_conf /* merge location configuration */
};
ngx_module_t ngx_http_auth_pam_module = {
NGX_MODULE_V1,
&ngx_http_auth_pam_module_ctx, /* module context */
ngx_http_auth_pam_commands, /* module directives */
NGX_HTTP_MODULE, /* module type */
NULL, /* init master */
NULL, /* init module */
NULL, /* init process */
NULL, /* init thread */
NULL, /* exit thread */
NULL, /* exit process */
NULL, /* exit master */
NGX_MODULE_V1_PADDING
};
/*
* Function to free PAM_CONV responses if an error is returned.
*/
static void
free_resp(int num_msg, struct pam_response *response)
{
int i;
if (response == NULL)
return;
for (i = 0; i < num_msg; i++) {
if (response[i].resp) {
/* clear before freeing -- may be a password */
bzero(response[i].resp, strlen(response[i].resp));
free(response[i].resp);
response[i].resp = NULL;
}
}
free(response);
}
/*
* ngx_auth_pam_talker: supply authentication information to PAM when asked
*
* Assumptions:
* A password is asked for by requesting input without echoing
* A username is asked for by requesting input _with_ echoing
*/
static int
ngx_auth_pam_talker(int num_msg, const struct pam_message ** msg,
struct pam_response ** resp, void *appdata_ptr)
{
int i;
ngx_pam_authinfo *ainfo;
struct pam_response *response;
ainfo = (ngx_pam_authinfo *) appdata_ptr;
response = NULL;
/* parameter sanity checking */
if (!resp || !msg || !ainfo)
return PAM_CONV_ERR;
/* allocate memory to store response */
response = malloc(num_msg * sizeof(struct pam_response));
if (!response)
return PAM_CONV_ERR;
/* copy values */
for (i = 0; i < num_msg; i++) {
/* initialize to safe values */
response[i].resp_retcode = 0;
response[i].resp = 0;
/* select response based on requested output style */
switch (msg[i]->msg_style) {
case PAM_PROMPT_ECHO_ON:
/* on memory allocation failure, auth fails */
response[i].resp = strdup((const char *)ainfo->username.data);
break;
case PAM_PROMPT_ECHO_OFF:
response[i].resp = strdup((const char *)ainfo->password.data);
break;
case PAM_ERROR_MSG:
ngx_log_error(NGX_LOG_ERR, ainfo->log, 0,
"PAM: \'%s\'.", msg[i]->msg);
break;
case PAM_TEXT_INFO:
ngx_log_error(NGX_LOG_INFO, ainfo->log, 0,
"PAM: \'%s\'.", msg[i]->msg);
break;
default:
free_resp(i, response);
return PAM_CONV_ERR;
}
}
/* everything okay, set PAM response values */
*resp = response;
return PAM_SUCCESS;
}
static ngx_int_t
ngx_http_auth_pam_handler(ngx_http_request_t *r)
{
ngx_int_t rc;
ngx_http_auth_pam_ctx_t *ctx;
ngx_http_auth_pam_loc_conf_t *alcf;
alcf = ngx_http_get_module_loc_conf(r, ngx_http_auth_pam_module);
if (alcf->realm.len == 0) {
return NGX_DECLINED;
}
ctx = ngx_http_get_module_ctx(r, ngx_http_auth_pam_module);
if (ctx) {
return ngx_http_auth_pam_authenticate(r, ctx, &ctx->passwd, alcf);
}
/* Decode http auth user and passwd, leaving values on the request */
rc = ngx_http_auth_basic_user(r);
if (rc == NGX_DECLINED) {
return ngx_http_auth_pam_set_realm(r, &alcf->realm);
}
if (rc == NGX_ERROR) {
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
/* Check user & password using PAM */
return ngx_http_auth_pam_authenticate(r, ctx, &ctx->passwd, alcf);
}
/**
* create a key value pair from the given key and value string
*/
static void set_to_pam_env(pam_handle_t *pamh, ngx_http_request_t *r,
char *key, char *value)
{
if (key != NULL && value != NULL) {
size_t size = strlen(key) + strlen(value) + 1 * sizeof(char);
char *key_value_pair = ngx_palloc(r->pool, size);
sprintf(key_value_pair, "%s=%s", key, value);
pam_putenv(pamh, key_value_pair);
}
}
/**
* creates a '\0' terminated string from the given ngx_str_t
*
* @param source nginx string structure with data and length
* @param pool pool of the request used for memory allocation
*/
static char* ngx_strncpy_s(ngx_str_t source, ngx_pool_t *pool)
{
// allocate memory in pool
char* destination = ngx_palloc(pool, source.len + 1);
strncpy(destination, (char *) source.data, source.len);
// add null terminator
destination[source.len] = '\0';
return destination;
}
/**
* enrich pam environment with request parameters
*/
static void add_request_info_to_pam_env(pam_handle_t *pamh,
ngx_http_request_t *r)
{
char *request_info = ngx_strncpy_s(r->request_line, r->pool);
char *host_info = ngx_strncpy_s(r->headers_in.host->value, r->pool);
set_to_pam_env(pamh, r, "REQUEST", request_info);
set_to_pam_env(pamh, r, "HOST", host_info);
}
static ngx_int_t
ngx_http_auth_pam_authenticate(ngx_http_request_t *r,
ngx_http_auth_pam_ctx_t *ctx, ngx_str_t *passwd,
void *conf)
{
ngx_int_t rc;
ngx_http_auth_pam_loc_conf_t *alcf;
ngx_pam_authinfo ainfo;
struct pam_conv conv_info; /* PAM struct */
pam_handle_t *pamh;
u_char *service_name;
alcf = conf;
size_t len;
u_char *uname_buf, *p;
/**
* Get username and password, note that r->headers_in.user contains the
* string 'user:pass', so we need to copy the username
**/
for (len = 0; len < r->headers_in.user.len; len++) {
if (r->headers_in.user.data[len] == ':') {
break;
}
}
uname_buf = ngx_palloc(r->pool, len+1);
if (uname_buf == NULL) {
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
p = ngx_cpymem(uname_buf, r->headers_in.user.data , len);
*p ='\0';
ainfo.username.data = uname_buf;
ainfo.username.len = len;
ainfo.password.data = r->headers_in.passwd.data;
ainfo.password.len = r->headers_in.passwd.len;
ainfo.log = r->connection->log;
conv_info.conv = &ngx_auth_pam_talker;
conv_info.appdata_ptr = (void *) &ainfo;
pamh = NULL;
/* Initialize PAM */
if (alcf->service_name.data == NULL) {
service_name = (u_char *) NGX_PAM_SERVICE_NAME;
} else {
service_name = alcf->service_name.data;
}
if ((rc = pam_start((const char *) service_name,
(const char *) ainfo.username.data,
&conv_info,
&pamh)) != PAM_SUCCESS) {
ngx_log_error(NGX_LOG_CRIT, r->connection->log, 0,
"PAM: Could not start pam service: %s",
pam_strerror(pamh, rc));
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
/* send client IP address to PAM */
char *client_ip_addr = ngx_strncpy_s(r->connection->addr_text, r->pool);
if ((rc = pam_set_item(pamh, PAM_RHOST, client_ip_addr)) != PAM_SUCCESS) {
ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
"PAM: Could not set item PAM_RHOST: %s",
pam_strerror(pamh, rc));
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
if (alcf->set_pam_env) {
add_request_info_to_pam_env(pamh, r);
}
/* try to authenticate user, log error on failure */
if ((rc = pam_authenticate(pamh,
PAM_DISALLOW_NULL_AUTHTOK)) != PAM_SUCCESS) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"PAM: user '%s' - not authenticated: %s",
ainfo.username.data, pam_strerror(pamh, rc));
pam_end(pamh, PAM_SUCCESS);
return ngx_http_auth_pam_set_realm(r, &alcf->realm);
} /* endif authenticate */
/* check that the account is healthy */
if ((rc = pam_acct_mgmt(pamh, PAM_DISALLOW_NULL_AUTHTOK)) != PAM_SUCCESS) {
ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
"PAM: user '%s' - invalid account: %s",
ainfo.username.data, pam_strerror(pamh, rc));
pam_end(pamh, PAM_SUCCESS);
return ngx_http_auth_pam_set_realm(r, &alcf->realm);
}
pam_end(pamh, PAM_SUCCESS);
return NGX_OK;
}
static ngx_int_t
ngx_http_auth_pam_set_realm(ngx_http_request_t *r, ngx_str_t *realm)
{
r->headers_out.www_authenticate = ngx_list_push(&r->headers_out.headers);
if (r->headers_out.www_authenticate == NULL) {
return NGX_HTTP_INTERNAL_SERVER_ERROR;
}
r->headers_out.www_authenticate->hash = 1;
r->headers_out.www_authenticate->key.len = sizeof("WWW-Authenticate") - 1;
r->headers_out.www_authenticate->key.data = (u_char *) "WWW-Authenticate";
r->headers_out.www_authenticate->value = *realm;
return NGX_HTTP_UNAUTHORIZED;
}
static void *
ngx_http_auth_pam_create_loc_conf(ngx_conf_t *cf)
{
ngx_http_auth_pam_loc_conf_t *conf;
conf = ngx_pcalloc(cf->pool, sizeof(ngx_http_auth_pam_loc_conf_t));
if (conf == NULL) {
return NGX_CONF_ERROR;
}
/* Strings are already NULL, but the flags have to be marked as unset */
conf->set_pam_env = NGX_CONF_UNSET;
return conf;
}
static char *
ngx_http_auth_pam_merge_loc_conf(ngx_conf_t *cf, void *parent, void *child)
{
ngx_http_auth_pam_loc_conf_t *prev = parent;
ngx_http_auth_pam_loc_conf_t *conf = child;
if (conf->realm.data == NULL) {
conf->realm = prev->realm;
}
if (conf->service_name.data == NULL) {
conf->service_name = prev->service_name;
}
/* By default set_pam_env is off */
ngx_conf_merge_value(conf->set_pam_env, prev->set_pam_env, 0);
return NGX_CONF_OK;
}
static ngx_int_t
ngx_http_auth_pam_init(ngx_conf_t *cf)
{
ngx_http_handler_pt *h;
ngx_http_core_main_conf_t *cmcf;
cmcf = ngx_http_conf_get_module_main_conf(cf, ngx_http_core_module);
h = ngx_array_push(&cmcf->phases[NGX_HTTP_ACCESS_PHASE].handlers);
if (h == NULL) {
return NGX_ERROR;
}
*h = ngx_http_auth_pam_handler;
return NGX_OK;
}
static char *
ngx_http_auth_pam(ngx_conf_t *cf, void *post, void *data)
{
ngx_str_t *realm = data;
size_t len;
u_char *basic, *p;
if (ngx_strcmp(realm->data, "off") == 0) {
realm->len = 0;
realm->data = (u_char *) "";
return NGX_CONF_OK;
}
len = sizeof("Basic realm=\"") - 1 + realm->len + 1;
basic = ngx_palloc(cf->pool, len);
if (basic == NULL) {
return NGX_CONF_ERROR;
}
p = ngx_cpymem(basic, "Basic realm=\"", sizeof("Basic realm=\"") - 1);
p = ngx_cpymem(p, realm->data, realm->len);
*p = '"';
realm->len = len;
realm->data = basic;
return NGX_CONF_OK;
}
/* File: ngx_http_auth_pam_module.c */
|