#ifndef _IDMAPD_H
#define _IDMAPD_H
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <rpc/rpc.h>
#include <synch.h>
#include <thread.h>
#include <libintl.h>
#include <strings.h>
#include <sqlite-sys/sqlite.h>
#include <syslog.h>
#include <inttypes.h>
#include <rpcsvc/idmap_prot.h>
#include "adutils.h"
#include "idmap_priv.h"
#include "idmap_config.h"
#include "libadutils.h"
#ifdef __cplusplus
extern "C" {
#endif
#define CHECK_NULL(s) (s != NULL ? s : "null")
extern mutex_t _svcstate_lock;
typedef enum idmap_namemap_mode {
IDMAP_NM_NONE = 0,
IDMAP_NM_AD,
IDMAP_NM_NLDAP,
IDMAP_NM_MIXED
} idmap_namemap_mode_t;
enum idmapd_debug {
IDMAPD_DEBUG_ALL = 0,
IDMAPD_DEBUG_CONFIG = 1,
IDMAPD_DEBUG_MAPPING = 2,
IDMAPD_DEBUG_DISC = 3,
IDMAPD_DEBUG_DNS = 4,
IDMAPD_DEBUG_LDAP = 5,
IDMAPD_DEBUG_MAX = 5
};
#define DBG(type, lev) \
(_idmapdstate.debug[IDMAPD_DEBUG_##type] >= (lev) || \
_idmapdstate.debug[IDMAPD_DEBUG_ALL] >= (lev))
typedef struct idmapd_state {
rwlock_t rwlk_cfg;
idmap_cfg_t *cfg;
bool_t daemon_mode;
char hostname[MAX_NAME_LEN];
pthread_mutex_t id_lock;
uid_t next_uid;
gid_t next_gid;
uid_t limit_uid;
gid_t limit_gid;
int new_eph_db;
int num_gcs;
adutils_ad_t **gcs;
int num_dcs;
adutils_ad_t **dcs;
mutex_t addisc_lk;
cond_t addisc_cv;
int addisc_st;
int debug[IDMAPD_DEBUG_MAX+1];
} idmapd_state_t;
extern idmapd_state_t _idmapdstate;
#define ADDISC_ST_REQUESTED 1
#define ADDISC_ST_RUNNING 2
#define RDLOCK_CONFIG() \
(void) rw_rdlock(&_idmapdstate.rwlk_cfg);
#define WRLOCK_CONFIG() \
(void) rw_wrlock(&_idmapdstate.rwlk_cfg);
#define UNLOCK_CONFIG() \
(void) rw_unlock(&_idmapdstate.rwlk_cfg);
typedef struct hashentry {
uint_t key;
uint_t next;
} hashentry_t;
typedef struct lookup_state {
bool_t sid2pid_done;
bool_t pid2sid_done;
int ad_nqueries;
int nldap_nqueries;
bool_t eph_map_unres_sids;
int directory_based_mapping;
uint_t id_cache_timeout;
uint_t name_cache_timeout;
uint_t curpos;
hashentry_t *sid_history;
uint_t sid_history_size;
idmap_mapping_batch *batch;
idmap_ids_res *result;
idmap_namemap_mode_t nm_siduid;
idmap_namemap_mode_t nm_sidgid;
char *ad_unixuser_attr;
char *ad_unixgroup_attr;
char *nldap_winname_attr;
char *defdom;
sqlite *cache;
sqlite *db;
} lookup_state_t;
#define NLDAP_OR_MIXED(nm) \
((nm) == IDMAP_NM_NLDAP || (nm) == IDMAP_NM_MIXED)
#define AD_OR_MIXED(nm) \
((nm) == IDMAP_NM_AD || (nm) == IDMAP_NM_MIXED)
#define PID_UID_OR_UNKNOWN(pidtype) \
((pidtype) == IDMAP_UID || (pidtype) == IDMAP_POSIXID)
#define PID_GID_OR_UNKNOWN(pidtype) \
((pidtype) == IDMAP_GID || (pidtype) == IDMAP_POSIXID)
#define NLDAP_OR_MIXED_MODE(pidtype, ls) \
(NLDAP_MODE(pidtype, ls) || MIXED_MODE(pidtype, ls))
#define AD_OR_MIXED_MODE(pidtype, ls)\
(AD_MODE(pidtype, ls) || MIXED_MODE(pidtype, ls))
#define NLDAP_MODE(pidtype, ls) \
((PID_UID_OR_UNKNOWN(pidtype) && (ls)->nm_siduid == IDMAP_NM_NLDAP) || \
(PID_GID_OR_UNKNOWN(pidtype) && (ls)->nm_sidgid == IDMAP_NM_NLDAP))
#define AD_MODE(pidtype, ls) \
((PID_UID_OR_UNKNOWN(pidtype) && (ls)->nm_siduid == IDMAP_NM_AD) || \
(PID_GID_OR_UNKNOWN(pidtype) && (ls)->nm_sidgid == IDMAP_NM_AD))
#define MIXED_MODE(pidtype, ls) \
((PID_UID_OR_UNKNOWN(pidtype) && (ls)->nm_siduid == IDMAP_NM_MIXED) || \
(PID_GID_OR_UNKNOWN(pidtype) && (ls)->nm_sidgid == IDMAP_NM_MIXED))
typedef struct list_cb_data {
void *result;
uint64_t next;
uint64_t len;
uint64_t limit;
int flag;
} list_cb_data_t;
typedef struct msg_table {
idmap_retcode retcode;
const char *msg;
} msg_table_t;
typedef struct wksids_table {
const char *sidprefix;
uint32_t rid;
const char *domain;
const char *winname;
int is_wuser;
posix_id_t pid;
int is_user;
int direction;
} wksids_table_t;
#define IDMAPD_SEARCH_TIMEOUT 3
#define IDMAPD_LDAP_OPEN_TIMEOUT 1
#define _IDMAP_F_DONE 0x00000000
#define _IDMAP_F_NOTDONE 0x00000001
#define _IDMAP_F_DONT_UPDATE_NAMECACHE 0x00000002
#define _IDMAP_F_LOOKUP_AD 0x00000004
#define _IDMAP_F_LOOKUP_NLDAP 0x00000008
#define _IDMAP_F_EXP_EPH_UID 0x00000010
#define _IDMAP_F_EXP_EPH_GID 0x00000020
#define _IDMAP_F_LOOKUP_OTHER_AD 0x00000040
#define ARE_WE_DONE(f) ((f & _IDMAP_F_NOTDONE) == 0)
#define SIZE_INCR 5
#define MAX_TRIES 5
#define IDMAP_DBDIR "/var/idmap"
#define IDMAP_CACHEDIR "/var/run/idmap"
#define IDMAP_DBNAME IDMAP_DBDIR "/idmap.db"
#define IDMAP_CACHENAME IDMAP_CACHEDIR "/cache.db"
#define IS_ID_NONE(id) \
((id).idtype == IDMAP_NONE)
#define IS_ID_SID(id) \
((id).idtype == IDMAP_SID || \
(id).idtype == IDMAP_USID || \
(id).idtype == IDMAP_GSID) \
#define IS_ID_UID(id) \
((id).idtype == IDMAP_UID)
#define IS_ID_GID(id) \
((id).idtype == IDMAP_GID)
#define IS_ID_POSIX(id) \
((id).idtype == IDMAP_UID || \
(id).idtype == IDMAP_GID || \
(id).idtype == IDMAP_POSIXID) \
#define LOCALRID_UID_MIN 1000U
#define LOCALRID_UID_MAX ((uint32_t)INT32_MAX)
#define LOCALRID_GID_MIN (((uint32_t)INT32_MAX) + 1)
#define LOCALRID_GID_MAX UINT32_MAX
#define TRACING(req) \
(DBG(MAPPING, 1) || \
((req)->flag & IDMAP_REQ_FLG_TRACE) != 0)
#define TRACE(req, res, ...) \
((void)(TRACING(req) && trace(req, res, __VA_ARGS__)))
extern int trace(idmap_mapping *req, idmap_id_res *res, char *fmt, ...);
typedef idmap_retcode (*update_list_res_cb)(void *, const char **, uint64_t);
typedef int (*list_svc_cb)(void *, int, char **, char **);
extern void idmap_prog_1(struct svc_req *, register SVCXPRT *);
extern void idmapdlog(int, const char *, ...);
extern int init_mapping_system(void);
extern void fini_mapping_system(void);
extern void print_idmapdstate(void);
extern int create_directory(const char *, uid_t, gid_t);
extern int load_config(void);
extern void reload_gcs(void);
extern void reload_dcs(void);
extern void idmap_init_tsd_key(void);
extern void degrade_svc(int, const char *);
extern void restore_svc(void);
extern void notify_dc_changed(void);
extern int init_dbs(void);
extern void fini_dbs(void);
extern idmap_retcode get_db_handle(sqlite **);
extern idmap_retcode get_cache_handle(sqlite **);
extern void kill_db_handle(sqlite *);
extern void kill_cache_handle(sqlite *);
extern idmap_retcode sql_exec_no_cb(sqlite *, const char *, char *);
extern idmap_retcode add_namerule(sqlite *, idmap_namerule *);
extern idmap_retcode rm_namerule(sqlite *, idmap_namerule *);
extern idmap_retcode flush_namerules(sqlite *);
extern char *tolower_u8(const char *);
extern idmap_retcode gen_sql_expr_from_rule(idmap_namerule *, char **);
extern idmap_retcode validate_list_cb_data(list_cb_data_t *, int,
char **, int, uchar_t **, size_t);
extern idmap_retcode process_list_svc_sql(sqlite *, const char *, char *,
uint64_t, int, list_svc_cb, void *);
extern idmap_retcode sid2pid_first_pass(lookup_state_t *,
idmap_mapping *, idmap_id_res *);
extern idmap_retcode sid2pid_second_pass(lookup_state_t *,
idmap_mapping *, idmap_id_res *);
extern idmap_retcode pid2sid_first_pass(lookup_state_t *,
idmap_mapping *, idmap_id_res *, int);
extern idmap_retcode pid2sid_second_pass(lookup_state_t *,
idmap_mapping *, idmap_id_res *, int);
extern idmap_retcode update_cache_sid2pid(lookup_state_t *,
idmap_mapping *, idmap_id_res *);
extern idmap_retcode update_cache_pid2sid(lookup_state_t *,
idmap_mapping *, idmap_id_res *);
extern idmap_retcode get_u2w_mapping(sqlite *, sqlite *, idmap_mapping *,
idmap_mapping *, int);
extern idmap_retcode get_w2u_mapping(sqlite *, sqlite *, idmap_mapping *,
idmap_mapping *);
extern idmap_retcode load_cfg_in_state(lookup_state_t *);
extern void cleanup_lookup_state(lookup_state_t *);
extern idmap_retcode ad_lookup_batch(lookup_state_t *,
idmap_mapping_batch *, idmap_ids_res *);
extern idmap_retcode lookup_name2sid(sqlite *, const char *, const char *,
int, char **, char **, char **,
idmap_rid_t *, idmap_id_type *,
idmap_mapping *, int);
extern idmap_retcode lookup_wksids_name2sid(const char *, const char *,
char **, char **, char **, idmap_rid_t *,
idmap_id_type *);
extern idmap_retcode idmap_cache_flush(idmap_flush_op);
extern const wksids_table_t *find_wksid_by_pid(posix_id_t pid, int is_user);
extern const wksids_table_t *find_wksid_by_sid(const char *sid, int rid,
idmap_id_type type);
extern const wksids_table_t *find_wksid_by_name(const char *name,
const char *domain, idmap_id_type type);
extern const wksids_table_t *find_wk_by_sid(char *sid);
#ifdef __cplusplus
}
#endif
#endif