/illumos-gate/usr/src/lib/passwdutil/ |
H A D | passwdutil.h | 97 } pwu_repository_t; typedef 99 #define PWU_DEFAULT_REP (pwu_repository_t *)NULL 126 int (*checkhistory)(const char *, const char *, pwu_repository_t *); 127 int (*getattr)(const char *, attrlist *, pwu_repository_t *); 128 int (*getpwnam)(const char *, attrlist *, pwu_repository_t *, void **); 129 int (*update)(attrlist *, pwu_repository_t *, void *); 130 int (*putpwnam)(const char *, const char *, pwu_repository_t *, void *); 131 int (*user_to_authenticate)(const char *, pwu_repository_t *, char **, 159 int get_ns(pwu_repository_t *, int); 160 struct passwd *getpwnam_from(const char *, pwu_repository_t *, int); [all …]
|
H A D | nis_attr.c | 45 int nis_getattr(const char *name, attrlist *item, pwu_repository_t *rep); 46 int nis_getpwnam(const char *name, attrlist *items, pwu_repository_t *rep, 48 int nis_update(attrlist *items, pwu_repository_t *rep, void *buf); 49 int nis_putpwnam(const char *name, const char *oldpw, pwu_repository_t *rep, 51 int nis_user_to_authenticate(const char *user, pwu_repository_t *rep, 127 nis_user_to_authenticate(const char *user, pwu_repository_t *rep, in nis_user_to_authenticate() 193 nis_getattr(const char *name, attrlist *items, pwu_repository_t *rep) in nis_getattr() 286 nis_getpwnam(const char *name, attrlist *items, pwu_repository_t *rep, in nis_getpwnam() 389 nis_update(attrlist *items, pwu_repository_t *rep, void *buf) in nis_update() 465 nis_putpwnam(const char *name, const char *oldpw, pwu_repository_t *rep, in nis_putpwnam()
|
H A D | files_attr.c | 50 pwu_repository_t *rep); 51 int files_getattr(const char *name, attrlist *item, pwu_repository_t *rep); 52 int files_getpwnam(const char *name, attrlist *items, pwu_repository_t *rep, 54 int files_update(attrlist *items, pwu_repository_t *rep, void *buf); 55 int files_putpwnam(const char *name, const char *oldpw, pwu_repository_t *rep, 57 int files_user_to_authenticate(const char *name, pwu_repository_t *rep, 222 files_getpwnam(const char *name, attrlist *items, pwu_repository_t *rep, in files_getpwnam() 336 files_user_to_authenticate(const char *user, pwu_repository_t *rep, in files_user_to_authenticate() 410 files_checkhistory(const char *user, const char *passwd, pwu_repository_t *rep) in files_checkhistory() 477 files_getattr(const char *name, attrlist *items, pwu_repository_t *rep) in files_getattr() [all …]
|
H A D | nss_attr.c | 43 int nss_getattr(const char *name, attrlist *item, pwu_repository_t *rep); 44 int nss_getpwnam(const char *name, attrlist *items, pwu_repository_t *rep, 88 nss_getpwnam(const char *name, attrlist *items, pwu_repository_t *rep, in nss_getpwnam() 221 nss_getattr(const char *name, attrlist *items, pwu_repository_t *rep) in nss_getattr()
|
H A D | ldap_attr.c | 75 int ldap_getattr(const char *name, attrlist *item, pwu_repository_t *rep); 76 int ldap_getpwnam(const char *name, attrlist *items, pwu_repository_t *rep, 78 int ldap_update(attrlist *items, pwu_repository_t *rep, void *buf); 79 int ldap_putpwnam(const char *name, const char *oldpw, pwu_repository_t *rep, 81 int ldap_user_to_authenticate(const char *name, pwu_repository_t *rep, 195 ldap_user_to_authenticate(const char *user, pwu_repository_t *rep, in ldap_user_to_authenticate() 291 ldap_getattr(const char *name, attrlist *items, pwu_repository_t *rep) in ldap_getattr() 408 ldap_getpwnam(const char *name, attrlist *items, pwu_repository_t *rep, in ldap_getpwnam() 550 ldap_update(attrlist *items, pwu_repository_t *rep, void *buf) in ldap_update() 1141 ldap_putpwnam(const char *name, const char *oldpw, pwu_repository_t *rep, in ldap_putpwnam()
|
H A D | switch_utils.c | 121 get_ns(pwu_repository_t *rep, int accesstype) in get_ns() 614 getpwnam_from(const char *name, pwu_repository_t *rep, int reptype) in getpwnam_from() 645 getpwuid_from(uid_t uid, pwu_repository_t *rep, int reptype) in getpwuid_from() 691 getspnam_from(const char *name, pwu_repository_t *rep, int reptype) in getspnam_from()
|
H A D | __get_authtoken_attr.c | 39 __get_authtoken_attr(const char *name, pwu_repository_t *rep, attrlist *item) in __get_authtoken_attr()
|
H A D | __user_to_authenticate.c | 31 __user_to_authenticate(const char *name, pwu_repository_t *rep, in __user_to_authenticate()
|
H A D | __check_history.c | 50 __check_history(const char *user, const char *passwd, pwu_repository_t *rep) in __check_history()
|
H A D | __set_authtoken_attr.c | 39 __set_authtoken_attr(const char *name, const char *oldpw, pwu_repository_t *rep, in __set_authtoken_attr()
|
/illumos-gate/usr/src/cmd/passwd/ |
H A D | passwd.c | 190 static pwu_repository_t repository; 191 static pwu_repository_t __REPFILES = { "files", NULL, 0 }; 206 static int get_namelist(pwu_repository_t, char ***, int *); 209 static int get_attr(char *, pwu_repository_t *, attrlist **); 214 static char *userinput(char *, pwu_repository_t *, attrtype); 538 userinput(char *name, pwu_repository_t *rep, attrtype type) in userinput() 1211 get_attr(char *username, pwu_repository_t *repository, attrlist **attributes) in get_attr() 1484 get_namelist(pwu_repository_t repository, char ***namelist, int *num_user) in get_namelist()
|
/illumos-gate/usr/src/lib/pam_modules/smb/ |
H A D | smb_passwd.c | 82 pwu_repository_t files_rep; in pam_sm_chauthtok()
|
/illumos-gate/usr/src/lib/pam_modules/unix_account/ |
H A D | unix_acct.c | 291 pwu_repository_t *pwu_rep = PWU_DEFAULT_REP; in pam_sm_acct_mgmt() 292 const pwu_repository_t *auth_rep = NULL; in pam_sm_acct_mgmt()
|
/illumos-gate/usr/src/lib/pam_modules/passwd_auth/ |
H A D | passwd_auth.c | 90 pwu_repository_t *pwu_rep = NULL; in pam_sm_authenticate()
|
/illumos-gate/usr/src/lib/pam_modules/unix_auth/ |
H A D | unix_auth.c | 153 pwu_repository_t *pwu_rep; in pam_sm_authenticate()
|
/illumos-gate/usr/src/lib/pam_modules/authtok_store/ |
H A D | authtok_store.c | 99 pwu_repository_t *pwu_rep;
|
/illumos-gate/usr/src/lib/pam_modules/authtok_get/ |
H A D | authtok_get.c | 233 pwu_repository_t *pwu_rep = NULL; in pam_sm_authenticate()
|
/illumos-gate/usr/src/lib/pam_modules/authtok_check/ |
H A D | authtok_check.c | 153 pwu_repository_t *pwu_rep; in get_passwd_defaults() 720 pwu_repository_t *pwu_rep = PWU_DEFAULT_REP; in pam_sm_chauthtok()
|
/illumos-gate/usr/src/lib/pam_modules/dhkeys/ |
H A D | dhkeys.c | 407 pwu_repository_t *pwu_rep; in remove_key()
|