getspnam(3)


NAME

   getspnam,   getspnam_r,   getspent,   getspent_r,  setspent,  endspent,
   fgetspent,  fgetspent_r,  sgetspent,  sgetspent_r,  putspent,  lckpwdf,
   ulckpwdf - get shadow password file entry

SYNOPSIS

   /* General shadow password file API */
   #include <shadow.h>

   struct spwd *getspnam(const char *name);

   struct spwd *getspent(void);

   void setspent(void);

   void endspent(void);

   struct spwd *fgetspent(FILE *stream);

   struct spwd *sgetspent(const char *s);

   int putspent(const struct spwd *p, FILE *stream);

   int lckpwdf(void);

   int ulckpwdf(void);

   /* GNU extension */
   #include <shadow.h>

   int getspent_r(struct spwd *spbuf,
           char *buf, size_t buflen, struct spwd **spbufp);

   int getspnam_r(const char *name, struct spwd *spbuf,
           char *buf, size_t buflen, struct spwd **spbufp);

   int fgetspent_r(FILE *stream, struct spwd *spbuf,
           char *buf, size_t buflen, struct spwd **spbufp);

   int sgetspent_r(const char *s, struct spwd *spbuf,
           char *buf, size_t buflen, struct spwd **spbufp);

   Feature Test Macro Requirements for glibc (see feature_test_macros(7)):

   getspent_r(), getspnam_r(), fgetspent_r(), sgetspent_r():
       Since glibc 2.19:
           _DEFAULT_SOURCE
       Glibc 2.19 and earlier:
           _BSD_SOURCE || _SVID_SOURCE

DESCRIPTION

   Long  ago  it  was  considered  safe to have encrypted passwords openly
   visible in the password file.  When computers got faster and people got
   more  security-conscious,  this  was  no  longer  acceptable.  Julianne
   Frances Haugh implemented the shadow  password  suite  that  keeps  the
   encrypted  passwords  in  the shadow password database (e.g., the local
   shadow password file /etc/shadow, NIS,  and  LDAP),  readable  only  by
   root.

   The  functions  described  below  resemble  those  for  the traditional
   password database (e.g., see getpwnam(3) and getpwent(3)).

   The getspnam() function returns a pointer to a structure containing the
   broken-out  fields  of  the record in the shadow password database that
   matches the username name.

   The getspent() function returns a pointer to  the  next  entry  in  the
   shadow  password  database.   The  position  in  the  input  stream  is
   initialized by setspent().  When done reading,  the  program  may  call
   endspent() so that resources can be deallocated.

   The fgetspent() function is similar to getspent() but uses the supplied
   stream instead of the one implicitly opened by setspent().

   The sgetspent() function parses the supplied string  s  into  a  struct
   spwd.

   The putspent() function writes the contents of the supplied struct spwd
   *p as a text line in the shadow password file format to stream.  String
   entries with value NULL and numerical entries with value -1 are written
   as an empty string.

   The  lckpwdf()  function  is  intended  to  protect  against   multiple
   simultaneous  accesses  of  the  shadow password database.  It tries to
   acquire a lock, and returns 0 on success, or -1 on  failure  (lock  not
   obtained within 15 seconds).  The ulckpwdf() function releases the lock
   again.  Note that there is no protection against direct access  of  the
   shadow password file.  Only programs that use lckpwdf() will notice the
   lock.

   These were the functions that formed the original shadow API.  They are
   widely available.

   Reentrant versions
   Analogous  to  the reentrant functions for the password database, glibc
   also has reentrant functions for the  shadow  password  database.   The
   getspnam_r()  function  is  like  getspnam()  but  stores the retrieved
   shadow password structure in the  space  pointed  to  by  spbuf.   This
   shadow  password  structure  contains  pointers  to  strings, and these
   strings are stored in the buffer buf of size buflen.  A pointer to  the
   result  (in  case of success) or NULL (in case no entry was found or an
   error occurred) is stored in *spbufp.

   The  functions  getspent_r(),  fgetspent_r(),  and  sgetspent_r()   are
   similarly analogous to their nonreentrant counterparts.

   Some non-glibc systems also have functions with these names, often with
   different prototypes.

   Structure
   The shadow password structure is defined in <shadow.h> as follows:

       struct spwd {
           char *sp_namp;     /* Login name */
           char *sp_pwdp;     /* Encrypted password */
           long  sp_lstchg;   /* Date of last change
                                 (measured in days since
                                 1970-01-01 00:00:00 +0000 (UTC)) */
           long  sp_min;      /* Min # of days between changes */
           long  sp_max;      /* Max # of days between changes */
           long  sp_warn;     /* # of days before password expires
                                 to warn user to change it */
           long  sp_inact;    /* # of days after password expires
                                 until account is disabled */
           long  sp_expire;   /* Date when account expires
                                 (measured in days since
                                 1970-01-01 00:00:00 +0000 (UTC)) */
           unsigned long sp_flag;  /* Reserved */
       };

RETURN VALUE

   The functions that return a pointer return NULL if no more entries  are
   available or if an error occurs during processing.  The functions which
   have int as the return value return 0 for success and -1  for  failure,
   with errno set to indicate the cause of the error.

   For  the  nonreentrant  functions, the return value may point to static
   area, and may be overwritten by subsequent calls to these functions.

   The reentrant functions return zero on success.  In case of  error,  an
   error number is returned.

ERRORS

   EACCES The  caller  does  not  have  permission  to  access  the shadow
          password file.

   ERANGE Supplied buffer is too small.

FILES

   /etc/shadow
          local shadow password database file

   /etc/.pwd.lock
          lock file

   The include file <paths.h> defines the  constant  _PATH_SHADOW  to  the
   pathname of the shadow password file.

ATTRIBUTES

   For   an   explanation   of   the  terms  used  in  this  section,  see
   attributes(7).

   ┌──────────────┬───────────────┬────────────────────────────────┐
   │InterfaceAttributeValue                          │
   ├──────────────┼───────────────┼────────────────────────────────┤
   │getspnam()    │ Thread safety │ MT-Unsafe race:getspnam locale │
   ├──────────────┼───────────────┼────────────────────────────────┤
   │getspent()    │ Thread safety │ MT-Unsafe race:getspent        │
   │              │               │ race:spentbuf locale           │
   ├──────────────┼───────────────┼────────────────────────────────┤
   │setspent(),   │ Thread safety │ MT-Unsafe race:getspent locale │
   │endspent(),   │               │                                │
   │getspent_r()  │               │                                │
   ├──────────────┼───────────────┼────────────────────────────────┤
   │fgetspent()   │ Thread safety │ MT-Unsafe race:fgetspent       │
   ├──────────────┼───────────────┼────────────────────────────────┤
   │sgetspent()   │ Thread safety │ MT-Unsafe race:sgetspent       │
   ├──────────────┼───────────────┼────────────────────────────────┤
   │putspent(),   │ Thread safety │ MT-Safe locale                 │
   │getspnam_r(), │               │                                │
   │sgetspent_r() │               │                                │
   ├──────────────┼───────────────┼────────────────────────────────┤
   │lckpwdf(),    │ Thread safety │ MT-Safe                        │
   │ulckpwdf(),   │               │                                │
   │fgetspent_r() │               │                                │
   └──────────────┴───────────────┴────────────────────────────────┘
   In the above table, getspent in race:getspent signifies that if any  of
   the  functions  setspent(3), getspent(3), getspent_r(3), or endspent(3)
   are used in parallel in different threads of a program, then data races
   could occur.

CONFORMING TO

   The  shadow  password database and its associated API are not specified
   in POSIX.1.  However, many other systems provide a similar API.

SEE ALSO

   getgrnam(3), getpwnam(3), getpwnam_r(3), shadow(5)

COLOPHON

   This page is part of release 4.09 of the Linux  man-pages  project.   A
   description  of  the project, information about reporting bugs, and the
   latest    version    of    this    page,    can     be     found     at
   https://www.kernel.org/doc/man-pages/.


More Linux Commands

manpages/cyr_dbtool.8.html
cyr_dbtool(8) - manage Cyrus databases - Linux manual page
cyr_dbtool is used to manage a cyrusdb file. The usable actions are: show [&lt;prefix&gt;] get &lt;key&gt; set &lt;key&gt; &lt;value&gt; delete &lt;key&gt; consistency You may omit key or ke

manpages/gluNewNurbsRenderer.3gl.html
gluNewNurbsRenderer(3gl) - create a NURBS object (Man Page)
gluNewNurbsRenderer creates and returns a pointer to a new NURBS object. This object must be referred to when calling NURBS rendering and control functions. A r

manpages/XkbSetAutoRepeatRate.3.html
XkbSetAutoRepeatRate(3) - Sets the attributes of the RepeatK
XkbSetAutoRepeatRate.3 - The core protocol allows only control over whether or not the entire keyboard or individual keys should auto-repeat when held down. Rep

manpages/Tie::Hash::NamedCapture.3pm.html
Tie::Hash::NamedCapture(3pm) - Named regexp capture buffers
This module is used to implement the special hashes %+ and %-, but it can be used to tie other variables as you choose. When the all parameter is provided, then

manpages/Tk_GetImage.3.html
Tk_GetImage(3) - use an image in a widget - Linux man page
These procedures are invoked by widgets that wish to display images. Tk_GetImage is invoked by a widget when it first decides to display an image. name gives th

manpages/unzipsfx.1.html
unzipsfx(1) - self-extracting stub for prepending to ZIP arc
unzipsfx is a modified version of unzip(1L) designed to be prepended to existing ZIP archives in order to form self-extracting archives. Instead of taking its f

manpages/XStringToKeysym.3.html
XStringToKeysym(3) - convert keysyms - Linux manual page....
Standard KeySym names are obtained from &lt;X11/keysymdef.h&gt; by removing the XK_ prefix from each name. KeySyms that are not part of the Xlib standard also may be

manpages/gnutls_pkcs12_export.3.html
gnutls_pkcs12_export(3) - API function - Linux manual page
This function will export the pkcs12 structure to DER or PEM format. If the buffer provided is not long enough to hold the output, then *output_data_size will b

manpages/mysqld.8.html
mysqld(8) - the MySQL server (Admin - Linux man page).......
mysqld, also known as MySQL Server, is the main program that does most of the work in a MySQL installation. MySQL Server manages access to the MySQL data direct

manpages/sane-lexmark.5.html
sane-lexmark(5) - SANE backend for Lexmark X1100/X1200 Serie
The sane-lexmark library implements a SANE (Scanner Access Now Easy) backend that provides access to the scanner part of Lexmark X1100/X1200 AIOs. This backend

manpages/endusershell.3.html
endusershell(3) - get permitted user shells - Linux man page
endusershell.3 - The getusershell() function returns the next line from the file /etc/shells, opening the file if necessary. The line should contain the pathnam

manpages/iftop.8.html
iftop(8) - display bandwidth usage on an interface by host
iftop listens to network traffic on a named interface, or on the first interface it can find which looks like an external interface if none is specified, and di





We can't live, work or learn in freedom unless the software we use is free.