/titanic_44/usr/src/lib/passwdutil/ |
H A D | passwdutil.h | 96 } pwu_repository_t; typedef 98 #define PWU_DEFAULT_REP (pwu_repository_t *)NULL 125 int (*checkhistory)(char *, char *, pwu_repository_t *); 126 int (*getattr)(char *, attrlist *, pwu_repository_t *); 127 int (*getpwnam)(char *, attrlist *, pwu_repository_t *, void **); 128 int (*update)(attrlist *, pwu_repository_t *, void *); 129 int (*putpwnam)(char *, char *, pwu_repository_t *, void *); 130 int (*user_to_authenticate)(char *, pwu_repository_t *, char **, int *); 157 int get_ns(pwu_repository_t *, int); 158 struct passwd *getpwnam_from(const char *, pwu_repository_t *, int); [all …]
|
H A D | nis_attr.c | 44 int nis_getattr(char *name, attrlist *item, pwu_repository_t *rep); 45 int nis_getpwnam(char *name, attrlist *items, pwu_repository_t *rep, 47 int nis_update(attrlist *items, pwu_repository_t *rep, void *buf); 48 int nis_putpwnam(char *name, char *oldpw, pwu_repository_t *rep, void *buf); 49 int nis_user_to_authenticate(char *user, pwu_repository_t *rep, 125 nis_user_to_authenticate(char *user, pwu_repository_t *rep, in nis_user_to_authenticate() 191 nis_getattr(char *name, attrlist *items, pwu_repository_t *rep) in nis_getattr() 284 nis_getpwnam(char *name, attrlist *items, pwu_repository_t *rep, in nis_getpwnam() 380 nis_update(attrlist *items, pwu_repository_t *rep, void *buf) in nis_update() 456 nis_putpwnam(char *name, char *oldpw, pwu_repository_t *rep, in nis_putpwnam()
|
H A D | files_attr.c | 47 int files_checkhistory(char *user, char *passwd, pwu_repository_t *rep); 48 int files_getattr(char *name, attrlist *item, pwu_repository_t *rep); 49 int files_getpwnam(char *name, attrlist *items, pwu_repository_t *rep, 51 int files_update(attrlist *items, pwu_repository_t *rep, void *buf); 52 int files_putpwnam(char *name, char *oldpw, pwu_repository_t *rep, void *buf); 53 int files_user_to_authenticate(char *name, pwu_repository_t *rep, 218 files_getpwnam(char *name, attrlist *items, pwu_repository_t *rep, void **buf) in files_getpwnam() 331 files_user_to_authenticate(char *user, pwu_repository_t *rep, in files_user_to_authenticate() 405 files_checkhistory(char *user, char *passwd, pwu_repository_t *rep) in files_checkhistory() 472 files_getattr(char *name, attrlist *items, pwu_repository_t *rep) in files_getattr() [all …]
|
H A D | nss_attr.c | 42 int nss_getattr(char *name, attrlist *item, pwu_repository_t *rep); 43 int nss_getpwnam(char *name, attrlist *items, pwu_repository_t *rep, 87 nss_getpwnam(char *name, attrlist *items, pwu_repository_t *rep, void **buf) in nss_getpwnam() 219 nss_getattr(char *name, attrlist *items, pwu_repository_t *rep) in nss_getattr()
|
H A D | ldap_attr.c | 73 int ldap_getattr(char *name, attrlist *item, pwu_repository_t *rep); 74 int ldap_getpwnam(char *name, attrlist *items, pwu_repository_t *rep, 76 int ldap_update(attrlist *items, pwu_repository_t *rep, void *buf); 77 int ldap_putpwnam(char *name, char *oldpw, pwu_repository_t *rep, void *buf); 78 int ldap_user_to_authenticate(char *name, pwu_repository_t *rep, 192 ldap_user_to_authenticate(char *user, pwu_repository_t *rep, in ldap_user_to_authenticate() 288 ldap_getattr(char *name, attrlist *items, pwu_repository_t *rep) in ldap_getattr() 405 ldap_getpwnam(char *name, attrlist *items, pwu_repository_t *rep, in ldap_getpwnam() 547 ldap_update(attrlist *items, pwu_repository_t *rep, void *buf) in ldap_update() 1138 ldap_putpwnam(char *name, char *oldpw, pwu_repository_t *rep, void *buf) 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 | 41 __get_authtoken_attr(char *name, pwu_repository_t *rep, attrlist *item) in __get_authtoken_attr()
|
H A D | __user_to_authenticate.c | 32 __user_to_authenticate(char *name, pwu_repository_t *rep, char **auth_user, in __user_to_authenticate()
|
H A D | __check_history.c | 51 __check_history(char *user, char *passwd, pwu_repository_t *rep) in __check_history()
|
H A D | __set_authtoken_attr.c | 38 __set_authtoken_attr(char *name, char *oldpw, pwu_repository_t *rep, in __set_authtoken_attr()
|
/titanic_44/usr/src/cmd/passwd/ |
H A D | passwd.c | 188 static pwu_repository_t repository; 189 static pwu_repository_t __REPFILES = { "files", NULL, 0 }; 204 static int get_namelist(pwu_repository_t, char ***, int *); 207 static int get_attr(char *, pwu_repository_t *, attrlist **); 212 static char *userinput(char *, pwu_repository_t *, attrtype); 536 userinput(char *name, pwu_repository_t *rep, attrtype type) in userinput() 1209 get_attr(char *username, pwu_repository_t *repository, attrlist **attributes) in get_attr() 1482 get_namelist(pwu_repository_t repository, char ***namelist, int *num_user) in get_namelist()
|
/titanic_44/usr/src/lib/pam_modules/smb/ |
H A D | smb_passwd.c | 82 pwu_repository_t files_rep; in pam_sm_chauthtok()
|
/titanic_44/usr/src/lib/pam_modules/unix_account/ |
H A D | unix_acct.c | 289 pwu_repository_t *pwu_rep = PWU_DEFAULT_REP; in pam_sm_acct_mgmt() 290 pwu_repository_t *auth_rep = NULL; in pam_sm_acct_mgmt()
|
/titanic_44/usr/src/lib/pam_modules/authtok_store/ |
H A D | authtok_store.c | 97 pwu_repository_t *pwu_rep;
|
/titanic_44/usr/src/lib/pam_modules/passwd_auth/ |
H A D | passwd_auth.c | 88 pwu_repository_t *pwu_rep = NULL; in pam_sm_authenticate()
|
/titanic_44/usr/src/lib/pam_modules/unix_auth/ |
H A D | unix_auth.c | 151 pwu_repository_t *pwu_rep; in pam_sm_authenticate()
|
/titanic_44/usr/src/lib/pam_modules/authtok_get/ |
H A D | authtok_get.c | 232 pwu_repository_t *pwu_rep = NULL; in pam_sm_authenticate()
|
/titanic_44/usr/src/lib/pam_modules/authtok_check/ |
H A D | authtok_check.c | 151 pwu_repository_t *pwu_rep; in get_passwd_defaults() 711 pwu_repository_t *pwu_rep = PWU_DEFAULT_REP; in pam_sm_chauthtok()
|
/titanic_44/usr/src/lib/pam_modules/dhkeys/ |
H A D | dhkeys.c | 404 pwu_repository_t *pwu_rep; in remove_key()
|