Home
last modified time | relevance | path

Searched full:shadow (Results 1 – 25 of 394) sorted by relevance

12345678910>>...16

/illumos-gate/usr/src/man/man3c/
H A Dgetspnam.3c14 #include <shadow.h>
59 These functions are used to obtain shadow password entries. An entry may come
60 from any of the sources for \fBshadow\fR specified in the
64 The \fBgetspnam()\fR function searches for a shadow password entry with the
69 used to enumerate shadow password entries from the database.
73 of the set of shadow password entries. This function should be called before
83 to do no further shadow password retrieval operations; the system may then
84 close the shadow password file, deallocate resources it was using, and so
86 call more shadow password functions after calling \fBendspent()\fR.
91 \fIfp\fR, which is assumed to have the format of the \fBshadow\fR file (see
[all …]
H A Dlckpwdf.3c8 lckpwdf, ulckpwdf \- manipulate shadow password database lock file
12 #include <shadow.h>
28 modify the \fB/etc/passwd\fR or \fB/etc/shadow\fR password database. See
29 \fBpasswd\fR(5) and \fBshadow\fR(5). Upon completing modifications, a process
33 databases \fB/etc/passwd\fR and \fB/etc/shadow\fR.
62 \fB\fB/etc/shadow\fR\fR
65 shadow password database
H A Dputspent.3c9 putspent \- write shadow password file entry
13 #include <shadow.h>
24 stream \fIfp\fR that matches the format of \fB/etc/shadow\fR.
47 \(mi1, or if \fBsp_flag\fR is 0, the corresponding \fB/etc/shadow\fR field is
/illumos-gate/usr/src/man/man8/
H A Dpwconv.89 pwconv \- installs and updates /etc/shadow with information from /etc/passwd
19 The \fBpwconv\fR command creates and updates \fB/etc/shadow\fR with information
25 is already in \fB/etc/shadow\fR and should not be modified.
28 If the \fB/etc/shadow\fR file does not exist, this command will create
29 \fB/etc/shadow\fR with information from \fB/etc/passwd\fR. The command
30 populates \fB/etc/shadow\fR with the user's login name, password, and password
32 \fB/etc/passwd\fR for a given user, none will be added to \fB/etc/shadow\fR.
36 If the \fB/etc/shadow\fR file does exist, the following tasks will be
46 \fB/etc/shadow\fR file will be added to the \fB/etc/shadow\fR file.
56 Entries that are in the \fB/etc/shadow\fR file and not in the
[all …]
H A Drpc.yppasswdd.830 \fBshadow\fR, and \fBsecurity/passwd.adjunct\fR files. The \fBpasswd\fR and
31 \fBshadow\fR files provide the basis for the \fBpasswd.byname\fR and
34 the \fBpasswd\fR, \fBshadow\fR or \fBpasswd.adjunct\fR files are changed only
39 If the \fB-D\fR option is given, the \fBpasswd\fR, \fBshadow,\fR or
50 after any of the \fBpasswd\fR, \fBshadow\fR, or \fBpasswd.adjunct\fR files are
57 \fBpasswd.adjunct\fR file. If a shadow file is found in the same directory as
73 The server does not insist on the presence of a \fBshadow\fR file unless there
86 files are in use, the encrypted password is expected in the \fBshadow\fR file.
90 If you remove or add a \fBshadow\fR or \fBpasswd.adjunct\fR file after
112 source files, \fBpasswd\fR, \fBshadow\fR, and \fBpasswd.adjunct\fR, for
H A Dldapaddent.861 \fBnetmasks\fR, \fBnetworks\fR, \fBpasswd\fR, \fBshadow\fR, \fBprotocols\fR,
116 Although, there is a \fBshadow\fR database type, there is no corresponding
117 \fBshadow\fR container. Both the \fBshadow\fR and the \fBpasswd\fR data is
129 entries from the \fBshadow\fR database. The addition of a \fBshadow\fR entry
142 \fBpasswd\fR database followed by \fBshadow\fR database
364 valid, as the actual password appears in a \fBshadow\fR file.
409 \fBpasswd\fR, \fBshadow\fR, \fBprotocols\fR, \fBpublickey\fR, \fBrpc\fR, and
/illumos-gate/usr/src/tools/cw/
H A Dcw.1onbld39 .Op Fl -shadow Ar compiler ...
49 A mode called shadow compilation invokes multiple compilers so that warnings
52 .Sx SHADOW COMPILATION
60 .Fl -shadow
79 .It Fl -shadow Ar compiler
80 Specify a shadow compiler, which builds sources for the sake of checking code
94 Request from each configured primary and shadow compiler its version
118 .Fl -shadow
142 .Sh SHADOW COMPILATION
144 .Fl -shadow
[all …]
/illumos-gate/usr/src/uts/common/fs/nfs/
H A Dnfs4_shadow.c53 * Map a vnode back to the shadow which points to it. This is
54 * hard now that the vnode is not embedded in the shadow vnode.
64 /* Check to see if it's the master shadow vnode first. */ in vtosv()
85 * sv_activate - find and activate the shadow vnode for the given
112 * Call sv_find to find and/or initialize the shadow in sv_activate()
118 * Initialize the shadow vnode. in sv_activate()
133 * No shadow vnodes (i.e. hard links) in this branch. in sv_activate()
148 * previous shadow vnode reference. Don't in sv_activate()
151 * this shadow vnode. in sv_activate()
164 * sv_find - find the shadow vnode for the desired name and directory
[all …]
/illumos-gate/usr/src/cmd/pwconv/
H A Dpwconv.c32 /* password file to the shadow file. */
40 #include <shadow.h>
58 #define BADSHW 6 /* Bad entry in shadow file */
68 * getspnan routine that ONLY looks at the local shadow file
77 if ((shadf = fopen("/etc/shadow", "r")) == NULL) in local_getspnam()
175 /* default mode mask of the shadow file */ in main()
178 /* check the existence of shadow file */ in main()
179 /* if the shadow file exists, get mode mask and group id of the file */ in main()
183 if (access(SHADOW, F_OK) == 0) { in main()
184 if (stat(SHADOW, &buf) == 0) { in main()
[all …]
/illumos-gate/usr/src/lib/libc/port/gen/
H A Dgetspent_r.c31 #include <shadow.h>
166 * str2spwd() -- convert a string to a shadow passwd entry. The parser is
181 struct spwd *shadow = (struct spwd *)ent; in str2spwd() local
212 shadow->sp_namp = bufp = buffer; in str2spwd()
213 shadow->sp_pwdp = 0; in str2spwd()
214 shadow->sp_lstchg = -1; in str2spwd()
215 shadow->sp_min = -1; in str2spwd()
216 shadow->sp_max = -1; in str2spwd()
217 shadow->sp_warn = -1; in str2spwd()
218 shadow->sp_inact = -1; in str2spwd()
[all …]
/illumos-gate/usr/src/man/man5/
H A Dshadow.56 .TH SHADOW 5 "Feb 25, 2017"
8 shadow \- shadow password file
11 \fB/etc/shadow\fR is an access-restricted ASCII system file that stores users'
12 encrypted passwords and related information. The shadow file can be used in
13 conjunction with other shadow sources, including the \fBNIS\fR maps
20 \fB/etc/shadow\fR does not have general read permission.
23 Each entry in the shadow file has the form:
143 In order to make system administration manageable, \fB/etc/shadow\fR entries
154 \fB\fB/etc/shadow\fR\fR
157 shadow password file
H A Dd_passwd.5113 passwords for users and places the password in the \fBshadow\fR (see
114 \fBshadow\fR(5)) file. Passwords for the \fBd_passwd\fR file will need to be
117 password in the \fBshadow\fR file. Once the encrypted version of the password
132 password for \fBtempuser\fR and places it in the \fBshadow\fR file.
137 Find the entry for \fBtempuser\fR in the \fBshadow\fR file and copy the
179 \fB\fB/etc/shadow\fR\fR
182 shadow password file
H A Dpasswd.567 entry in the \fB/etc/shadow\fR file. \fBpwconv\fR(8) relies on a special value
70 that the password for the user is already in \fB/etc/shadow\fR and should not
137 in the \fBshadow\fR file, \fB/etc/passwd\fR has general read permission on all
179 corresponding entry in the \fB/etc/shadow\fR file.
267 The following is a sample \fBpasswd\fR file when \fBshadow\fR does not exist:
283 The following is a sample \fBpasswd\fR file when \fBshadow\fR does exist:
328 \fB\fB/etc/shadow\fR\fR
/illumos-gate/usr/src/uts/common/io/i40e/core/
H A Di40e_nvm.c45 * We are accessing FLASH always through the Shadow RAM.
175 * Polls the SRCTL Shadow RAM register done bit.
199 * i40e_read_nvm_word_srctl - Reads Shadow RAM via SRCTL register
201 * @offset: offset of the Shadow RAM word to read (0x000000 - 0x001FFF)
202 * @data: word read from the Shadow RAM
204 * Reads one 16 bit word from the Shadow RAM using the GLNVM_SRCTL register.
216 "NVM read error: Offset %d beyond Shadow RAM limit %d\n", in i40e_read_nvm_word_srctl()
241 "NVM read error: Couldn't access Shadow RAM address: 0x%x\n", in i40e_read_nvm_word_srctl()
249 * i40e_read_nvm_aq - Read Shadow RAM.
254 * @data: buffer with words to write to the Shadow RAM
[all …]
/illumos-gate/usr/src/lib/passwdutil/
H A Dswitch_utils.c40 #include <shadow.h>
504 * str2spwd() -- convert a string to a shadow passwd entry. The parser is
524 struct spwd *shadow = (struct spwd *)ent; local
546 shadow->sp_namp = bufp = buffer;
547 shadow->sp_pwdp = 0;
548 shadow->sp_lstchg = -1;
549 shadow->sp_min = -1;
550 shadow->sp_max = -1;
551 shadow->sp_warn = -1;
552 shadow->sp_inact = -1;
[all …]
H A Dfiles_attr.c34 #include <shadow.h>
91 * We should use sysconf, but there is no sysconf name for SHADOW
186 * fields that are undefined in /etc/shadow will be set to -1.
196 fp = fopen(SHADOW, "rF"); in private_getspnam_r()
235 * determine which password structure (/etc/passwd or /etc/shadow) in files_getpwnam()
821 * /etc/shadow), we keep the old value. in files_update()
901 * update the shadow password file SHADOW to contain the spwd structure
917 /* Mode of the shadow file should be 400 or 000 */ in files_update_shadow()
918 if (stat64(SHADOW, &stbuf) < 0) { in files_update_shadow()
923 /* copy mode from current shadow file (0400 or 0000) */ in files_update_shadow()
[all …]
/illumos-gate/usr/src/ucbcmd/vipw/
H A Dvipw.c59 char *shadow = "/etc/shadow"; variable
113 "Press 'e' to edit the shadow file for consistency,\n 'q' to quit: "); in main()
133 if (stat(shadow, &oshdbuf) < 0) { in main()
135 "vipw: can't stat shadow file.\n"); in main()
139 if (copyfile(shadow, stemp)) in main()
147 if (editfile(editor, stemp, shadow, &o_mtime)) in main()
171 if (rename(stemp, shadow) < 0) { in main()
177 (chown(shadow, oshdbuf.st_uid, oshdbuf.st_gid) < 0)) { in main()
265 if (!strcmp(orig, shadow)) in sanity_check()
324 /* root uid for passwd and sp_lstchg for shadow */ in sanity_check()
[all …]
/illumos-gate/usr/src/cmd/fs.d/ufs/fsck/
H A Dpass3b.c101 (void) printf("IGNORING SHADOW I=%d\n", in pass3b()
159 * Now scan all shadow inodes, checking that any inodes that previously in pass3b()
164 if ((statemap[sci->shadow] & STMASK) != SSTATE) { in pass3b()
186 scc->client[client], sci->shadow); in clear_shadow_client()
206 * the shadow inode # is a valid inode number. But in clear_shadow_client()
219 * We don't touch the shadow's on-disk link count, in clear_shadow_client()
225 TRACK_LNCNTP(sci->shadow, lncntp[sci->shadow]++); in clear_shadow_client()
276 * Scan a chunk of a shadow file. Return zero if no ACLs were found,
312 * check we have a non-zero length for this shadow inode in bufchk()
330 pwarn("Bad FSD entry size %lld in shadow inode %d", in bufchk()
[all …]
H A Dpass3.c241 * every shadow or attribute inode's lncntp[] by the number of in pass3a()
245 * lncntp[sci->shadow] -= sci->totalclients; in pass3a()
251 * fails, offer to clear the shadow or attribute. If we do in pass3a()
275 LINK_RANGE(flow, lncntp[sci->shadow], in pass3a()
281 dp = ginode(sci->shadow); in pass3a()
282 LINK_CLEAR(flow, sci->shadow, dp->di_mode, in pass3a()
284 if (statemap[sci->shadow] == USTATE) { in pass3a()
299 * If we did not clear the shadow, then we in pass3a()
305 TRACK_LNCNTP(sci->shadow, in pass3a()
306 lncntp[sci->shadow] -= sci->totalClients); in pass3a()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/disc/
H A Dsfdcseekable.c34 Sfio_t* shadow; /* to shadow data */ member
36 Sfoff_t extent; /* shadow extent */
69 sf = sk->shadow;
117 sf = sk->shadow;
181 sfclose(sk->shadow);
188 sfseek(sk->shadow,(Sfoff_t)0,SEEK_SET);
215 sk->shadow = sftmp(SF_BUFSIZE);
221 { sfclose(sk->shadow);
/illumos-gate/usr/src/cmd/ypcmd/yppasswd/
H A Dchangepasswd.c42 #include <shadow.h>
192 /* Lock, then open the passwd and shadow files */ in changepasswd()
231 * Open the new passwd and shadow tmp files, in changepasswd()
261 "yppasswdd: shadow file busy - try " in changepasswd()
311 * shadow files would seem to indicate that there is no guarantee in changepasswd()
319 * IF we have a shadow file, loop through it reading in lines and in changepasswd()
325 * Figure out what's changing, contruct the new passwd, shadow, in changepasswd()
361 /* While we find things in the shadow file */ in changepasswd()
365 * Is this the shadow entry that we want? in changepasswd()
366 * If not, write it out to the new shadow temp file in changepasswd()
[all …]
/illumos-gate/usr/src/lib/libnisdb/yptol/
H A Dshim_changepasswd.c64 #include <shadow.h>
649 struct spwd *shadow; in modify_ent() local
668 * Since there are no shadow maps this is done by accessing in modify_ent()
673 /* Try to get shadow information */ in modify_ent()
674 shadow = get_old_shadow(yppwd->newpw.pw_name, domain); in modify_ent()
676 /* If there is shadow information make password aging checks */ in modify_ent()
677 if (NULL != shadow) { in modify_ent()
680 if (shadow->sp_max != -1) { in modify_ent()
681 if (now < shadow->sp_lstchg + shadow->sp_min) { in modify_ent()
684 "the last change", shadow->sp_min); in modify_ent()
[all …]
/illumos-gate/usr/src/uts/common/io/e1000api/
H A De1000_i210.c226 * e1000_read_nvm_srrd_i210 - Reads Shadow Ram using EERD register
228 * @offset: offset of word in the Shadow Ram to read
230 * @data: word read from the Shadow Ram
232 * Reads a 16 bit word from the Shadow Ram using the EERD register.
265 * e1000_write_nvm_srwr_i210 - Write to Shadow RAM using EEWR
267 * @offset: offset within the Shadow RAM to be written to
269 * @data: 16 bit word(s) to be written to the Shadow RAM
271 * Writes data to Shadow RAM at offset using EEWR register.
274 * data will not be committed to FLASH and also Shadow RAM will most likely
277 * If error code is returned, data and Shadow RAM may be inconsistent - buffer
[all …]
/illumos-gate/usr/src/cmd/ypcmd/net_files/
H A DMakefile52 # If the passwd, shadow and/or adjunct files used by rpc.yppasswdd
95 passwd.time: $(PWDIR)/passwd $(PWDIR)/shadow
99 elif [ -f $(PWDIR)/shadow ]; then \
100 …S=":"; OFS=":"; while ( getline < "$(PWDIR)/shadow" > 0) shadow[$$1] = $$2; } /^[a-zA-Z0-9_]/ { $$…
101 …S=":"; OFS=":"; while ( getline < "$(PWDIR)/shadow" > 0) shadow[$$1] = $$2; } /^[a-zA-Z0-9_]/ { $$…
290 passwd.adjunct.time: $(PWDIR)/security/passwd.adjunct $(PWDIR)/shadow
291 -@if [ -f $(PWDIR)/shadow ]; then \
292 …'BEGIN { FS=":"; while (getline < "$(PWDIR)/shadow" > 0) shadow[$$1] = $$2; } /^[a-zA-Z0-9_]/ { $$…
444 ageing.time: $(PWDIR)/shadow
445 -@if [ -f $(PWDIR)/shadow ]; then \
[all …]
/illumos-gate/usr/src/uts/common/io/igc/core/
H A Digc_i225.c434 /* igc_read_nvm_srrd_i225 - Reads Shadow Ram using EERD register
436 * @offset: offset of word in the Shadow Ram to read
438 * @data: word read from the Shadow Ram
440 * Reads a 16 bit word from the Shadow Ram using the EERD register.
473 /* igc_write_nvm_srwr_i225 - Write to Shadow RAM using EEWR
475 * @offset: offset within the Shadow RAM to be written to
477 * @data: 16 bit word(s) to be written to the Shadow RAM
479 * Writes data to Shadow RAM at offset using EEWR register.
482 * data will not be committed to FLASH and also Shadow RAM will most likely
485 * If error code is returned, data and Shadow RAM may be inconsistent - buffer
[all …]

12345678910>>...16