Home
last modified time | relevance | path

Searched refs:pwu_repository_t (Results 1 – 19 of 19) sorted by relevance

/illumos-gate/usr/src/lib/passwdutil/
H A Dpasswdutil.h97 } 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 Dnis_attr.c45 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 Dfiles_attr.c50 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 Dnss_attr.c43 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 Dldap_attr.c75 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 Dswitch_utils.c121 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.c39 __get_authtoken_attr(const char *name, pwu_repository_t *rep, attrlist *item) in __get_authtoken_attr()
H A D__user_to_authenticate.c31 __user_to_authenticate(const char *name, pwu_repository_t *rep, in __user_to_authenticate()
H A D__check_history.c50 __check_history(const char *user, const char *passwd, pwu_repository_t *rep) in __check_history()
H A D__set_authtoken_attr.c39 __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 Dpasswd.c190 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 Dsmb_passwd.c82 pwu_repository_t files_rep; in pam_sm_chauthtok()
/illumos-gate/usr/src/lib/pam_modules/unix_account/
H A Dunix_acct.c291 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 Dpasswd_auth.c90 pwu_repository_t *pwu_rep = NULL; in pam_sm_authenticate()
/illumos-gate/usr/src/lib/pam_modules/unix_auth/
H A Dunix_auth.c153 pwu_repository_t *pwu_rep; in pam_sm_authenticate()
/illumos-gate/usr/src/lib/pam_modules/authtok_store/
H A Dauthtok_store.c99 pwu_repository_t *pwu_rep;
/illumos-gate/usr/src/lib/pam_modules/authtok_get/
H A Dauthtok_get.c233 pwu_repository_t *pwu_rep = NULL; in pam_sm_authenticate()
/illumos-gate/usr/src/lib/pam_modules/authtok_check/
H A Dauthtok_check.c153 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 Ddhkeys.c407 pwu_repository_t *pwu_rep; in remove_key()