mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2025-01-14 02:11:56 -06:00
5f898c3c61
Expose nss timeout parameter. Use sss_nss_getorigbyname_timeout instead of sss_nss_getorigbyname Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
283 lines
9.2 KiB
C
283 lines
9.2 KiB
C
/** BEGIN COPYRIGHT BLOCK
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* Additional permission under GPLv3 section 7:
|
|
*
|
|
* In the following paragraph, "GPL" means the GNU General Public
|
|
* License, version 3 or any later version, and "Non-GPL Code" means
|
|
* code that is governed neither by the GPL nor a license
|
|
* compatible with the GPL.
|
|
*
|
|
* You may link the code of this Program with Non-GPL Code and convey
|
|
* linked combinations including the two, provided that such Non-GPL
|
|
* Code only links to the code of this Program through those well
|
|
* defined interfaces identified in the file named EXCEPTION found in
|
|
* the source code files (the "Approved Interfaces"). The files of
|
|
* Non-GPL Code may instantiate templates or use macros or inline
|
|
* functions from the Approved Interfaces without causing the resulting
|
|
* work to be covered by the GPL. Only the copyright holders of this
|
|
* Program may make changes or additions to the list of Approved
|
|
* Interfaces.
|
|
*
|
|
* Copyright (C) 2013-2017 Red Hat, Inc.
|
|
* All rights reserved.
|
|
* END COPYRIGHT BLOCK **/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <time.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <pwd.h>
|
|
#include <grp.h>
|
|
#include "back_extdom.h"
|
|
|
|
/* SSSD only exposes *_timeout() variants if the following symbol is defined */
|
|
#define IPA_389DS_PLUGIN_HELPER_CALLS
|
|
#include <sss_nss_idmap.h>
|
|
|
|
struct nss_ops_ctx {
|
|
unsigned int timeout;
|
|
};
|
|
|
|
static enum nss_status __convert_sss_nss2nss_status(int errcode) {
|
|
switch(errcode) {
|
|
case 0:
|
|
return NSS_STATUS_SUCCESS;
|
|
case ENOENT:
|
|
return NSS_STATUS_NOTFOUND;
|
|
case ERANGE:
|
|
return NSS_STATUS_TRYAGAIN;
|
|
case ETIME:
|
|
/* fall-through */
|
|
case ETIMEDOUT:
|
|
/* fall-through */
|
|
default:
|
|
return NSS_STATUS_UNAVAIL;
|
|
}
|
|
return NSS_STATUS_UNAVAIL;
|
|
}
|
|
|
|
int back_extdom_init_context(struct nss_ops_ctx **nss_context)
|
|
{
|
|
struct nss_ops_ctx *ctx = NULL;
|
|
|
|
if (nss_context == NULL) {
|
|
return EINVAL;
|
|
}
|
|
|
|
ctx = calloc(1, sizeof(struct nss_ops_ctx));
|
|
|
|
if (ctx == NULL) {
|
|
return ENOMEM;
|
|
}
|
|
*nss_context = ctx;
|
|
return 0;
|
|
}
|
|
|
|
void back_extdom_free_context(struct nss_ops_ctx **nss_context)
|
|
{
|
|
if ((nss_context == NULL) || (*nss_context == NULL)) {
|
|
return;
|
|
}
|
|
|
|
free((*nss_context));
|
|
*nss_context = NULL;
|
|
}
|
|
|
|
|
|
void back_extdom_set_timeout(struct nss_ops_ctx *nss_context,
|
|
unsigned int timeout) {
|
|
if (nss_context == NULL) {
|
|
return;
|
|
}
|
|
|
|
nss_context->timeout = timeout;
|
|
}
|
|
|
|
unsigned int back_extdom_get_timeout(struct nss_ops_ctx *nss_context) {
|
|
if (nss_context == NULL) {
|
|
return DEFAULT_MAX_NSS_TIMEOUT;
|
|
}
|
|
|
|
return nss_context->timeout;
|
|
}
|
|
|
|
void back_extdom_evict_user(struct nss_ops_ctx *nss_context,
|
|
const char *name) {
|
|
if (nss_context == NULL) {
|
|
return;
|
|
}
|
|
|
|
(void) sss_nss_getpwnam_timeout(name, NULL,
|
|
NULL, 0,
|
|
NULL,
|
|
SSS_NSS_EX_FLAG_INVALIDATE_CACHE,
|
|
nss_context->timeout);
|
|
}
|
|
|
|
void back_extdom_evict_group(struct nss_ops_ctx *nss_context,
|
|
const char *name) {
|
|
if (nss_context == NULL) {
|
|
return;
|
|
}
|
|
|
|
(void) sss_nss_getgrnam_timeout(name, NULL,
|
|
NULL, 0,
|
|
NULL,
|
|
SSS_NSS_EX_FLAG_INVALIDATE_CACHE,
|
|
nss_context->timeout);
|
|
}
|
|
|
|
enum nss_status back_extdom_getpwnam(struct nss_ops_ctx *nss_context,
|
|
const char *name, struct passwd *pwd,
|
|
char *buffer, size_t buflen,
|
|
struct passwd **result,
|
|
int *lerrno) {
|
|
int ret = 0;
|
|
|
|
if (nss_context == NULL) {
|
|
return NSS_STATUS_UNAVAIL;
|
|
}
|
|
|
|
ret = sss_nss_getpwnam_timeout(name, pwd,
|
|
buffer, buflen,
|
|
result,
|
|
SSS_NSS_EX_FLAG_NO_FLAGS,
|
|
nss_context->timeout);
|
|
|
|
/* SSSD uses the same infrastructure to handle sss_nss_get* calls
|
|
* as nss_sss.so.2 module where 'int *errno' is passed to the helper
|
|
* but writes down errno into return code so we propagate it in case
|
|
* of error and translate the return code */
|
|
if (lerrno != NULL) {
|
|
*lerrno = ret;
|
|
}
|
|
return __convert_sss_nss2nss_status(ret);
|
|
}
|
|
|
|
enum nss_status back_extdom_getpwuid(struct nss_ops_ctx *nss_context,
|
|
uid_t uid, struct passwd *pwd,
|
|
char *buffer, size_t buflen,
|
|
struct passwd **result,
|
|
int *lerrno) {
|
|
|
|
int ret = 0;
|
|
|
|
if (nss_context == NULL) {
|
|
return NSS_STATUS_UNAVAIL;
|
|
}
|
|
|
|
ret = sss_nss_getpwuid_timeout(uid, pwd,
|
|
buffer, buflen,
|
|
result,
|
|
SSS_NSS_EX_FLAG_NO_FLAGS,
|
|
nss_context->timeout);
|
|
|
|
/* SSSD uses the same infrastructure to handle sss_nss_get* calls
|
|
* as nss_sss.so.2 module where 'int *errno' is passed to the helper
|
|
* but writes down errno into return code so we propagate it in case
|
|
* of error and translate the return code */
|
|
if (lerrno != NULL) {
|
|
*lerrno = ret;
|
|
}
|
|
return __convert_sss_nss2nss_status(ret);
|
|
}
|
|
|
|
enum nss_status back_extdom_getgrnam(struct nss_ops_ctx *nss_context,
|
|
const char *name, struct group *grp,
|
|
char *buffer, size_t buflen,
|
|
struct group **result,
|
|
int *lerrno) {
|
|
|
|
int ret = 0;
|
|
|
|
if (nss_context == NULL) {
|
|
return NSS_STATUS_UNAVAIL;
|
|
}
|
|
|
|
ret = sss_nss_getgrnam_timeout(name, grp,
|
|
buffer, buflen,
|
|
result,
|
|
SSS_NSS_EX_FLAG_NO_FLAGS,
|
|
nss_context->timeout);
|
|
|
|
/* SSSD uses the same infrastructure to handle sss_nss_get* calls
|
|
* as nss_sss.so.2 module where 'int *errno' is passed to the helper
|
|
* but writes down errno into return code so we propagate it in case
|
|
* of error and translate the return code */
|
|
if (lerrno != NULL) {
|
|
*lerrno = ret;
|
|
}
|
|
return __convert_sss_nss2nss_status(ret);
|
|
}
|
|
|
|
enum nss_status back_extdom_getgrgid(struct nss_ops_ctx *nss_context,
|
|
gid_t gid, struct group *grp,
|
|
char *buffer, size_t buflen,
|
|
struct group **result,
|
|
int *lerrno) {
|
|
|
|
int ret = 0;
|
|
|
|
if (nss_context == NULL) {
|
|
return NSS_STATUS_UNAVAIL;
|
|
}
|
|
|
|
ret = sss_nss_getgrgid_timeout(gid, grp,
|
|
buffer, buflen,
|
|
result,
|
|
SSS_NSS_EX_FLAG_NO_FLAGS,
|
|
nss_context->timeout);
|
|
|
|
/* SSSD uses the same infrastructure to handle sss_nss_get* calls
|
|
* as nss_sss.so.2 module where 'int *errno' is passed to the helper
|
|
* but writes down errno into return code so we propagate it in case
|
|
* of error and translate the return code */
|
|
if (lerrno != NULL) {
|
|
*lerrno = ret;
|
|
}
|
|
return __convert_sss_nss2nss_status(ret);
|
|
}
|
|
|
|
enum nss_status back_extdom_getgrouplist(struct nss_ops_ctx *nss_context,
|
|
const char *name, gid_t group,
|
|
gid_t *groups, int *ngroups,
|
|
int *lerrno) {
|
|
int ret = 0;
|
|
|
|
if (nss_context == NULL) {
|
|
return NSS_STATUS_UNAVAIL;
|
|
}
|
|
|
|
ret = sss_nss_getgrouplist_timeout(name, group,
|
|
groups, ngroups,
|
|
SSS_NSS_EX_FLAG_NO_FLAGS,
|
|
nss_context->timeout);
|
|
|
|
/* SSSD uses the same infrastructure to handle sss_nss_get* calls
|
|
* as nss_sss.so.2 module where 'int *errno' is passed to the helper
|
|
* but writes down errno into return code so we propagate it in case
|
|
* of error and translate the return code */
|
|
if (lerrno != NULL) {
|
|
*lerrno = ret;
|
|
}
|
|
return __convert_sss_nss2nss_status(ret);
|
|
}
|