2008-04-27 06:10:09 +05:30
|
|
|
/*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-FileCopyrightText: 1990 - 1994, Julianne Frances Haugh
|
|
|
|
* SPDX-FileCopyrightText: 1996 - 2000, Marek Michałkiewicz
|
|
|
|
* SPDX-FileCopyrightText: 2001 - 2005, Tomasz Kłoczko
|
|
|
|
* SPDX-FileCopyrightText: 2007 - 2010, Nicolas François
|
2008-04-27 06:10:09 +05:30
|
|
|
*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2008-04-27 06:10:09 +05:30
|
|
|
*/
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
/* $Id$ */
|
2016-12-22 00:14:59 +05:30
|
|
|
#ifndef COMMONIO_H
|
|
|
|
#define COMMONIO_H
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-05-26 14:22:34 +05:30
|
|
|
#include "defines.h" /* bool */
|
2008-05-26 06:16:25 +05:30
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* Linked list entry.
|
|
|
|
*/
|
|
|
|
struct commonio_entry {
|
* libmisc/utmp.c, libmisc/age.c, libmisc/shell.c, lib/groupio.c,
lib/groupio.h, lib/sgroupio.c, lib/sgroupio.h, lib/shadowio.c,
lib/pwio.c, lib/commonio.c, lib/shadowio.h, lib/pwio.h,
lib/commonio.h, lib/prototypes.h: Added splint annotations.
2009-04-23 02:51:14 +05:30
|
|
|
/*@null@*/char *line;
|
|
|
|
/*@null@*/void *eptr; /* struct passwd, struct spwd, ... */
|
2009-04-25 18:43:50 +05:30
|
|
|
/*@dependent@*/ /*@null@*/struct commonio_entry *prev;
|
|
|
|
/*@owned@*/ /*@null@*/struct commonio_entry *next;
|
2008-05-26 06:16:25 +05:30
|
|
|
bool changed:1;
|
2007-10-07 17:14:02 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Operations depending on database type: passwd, group, shadow etc.
|
|
|
|
*/
|
|
|
|
struct commonio_ops {
|
|
|
|
/*
|
|
|
|
* Make a copy of the object (for example, struct passwd)
|
|
|
|
* and all strings pointed by it, in malloced memory.
|
|
|
|
*/
|
2009-04-23 17:23:55 +05:30
|
|
|
/*@null@*/ /*@only@*/void *(*dup) (const void *);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* free() the object including any strings pointed by it.
|
|
|
|
*/
|
* libmisc/utmp.c, libmisc/age.c, libmisc/shell.c, lib/groupio.c,
lib/groupio.h, lib/sgroupio.c, lib/sgroupio.h, lib/shadowio.c,
lib/pwio.c, lib/commonio.c, lib/shadowio.h, lib/pwio.h,
lib/commonio.h, lib/prototypes.h: Added splint annotations.
2009-04-23 02:51:14 +05:30
|
|
|
void (*free) (/*@out@*/ /*@only@*/void *);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Return the name of the object (for example, pw_name
|
|
|
|
* for struct passwd).
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
const char *(*getname) (const void *);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse a string, return object (in static area -
|
|
|
|
* should be copied using the dup operation above).
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
void *(*parse) (const char *);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the object to the file (this calls putpwent()
|
|
|
|
* for struct passwd, for example).
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
int (*put) (const void *, FILE *);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* fgets and fputs (can be replaced by versions that
|
|
|
|
* understand line continuation conventions).
|
|
|
|
*/
|
2009-04-23 17:23:55 +05:30
|
|
|
/*@null@*/char *(*fgets) (/*@returned@*/ /*@out@*/char *s, int n, FILE *stream);
|
2007-10-07 17:16:07 +05:30
|
|
|
int (*fputs) (const char *, FILE *);
|
2007-11-23 05:37:59 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* open_hook and close_hook.
|
|
|
|
* If non NULL, these functions will be called after the database
|
|
|
|
* is open or before it is closed.
|
|
|
|
* They return 0 on failure and 1 on success.
|
|
|
|
*/
|
* libmisc/utmp.c, libmisc/age.c, libmisc/shell.c, lib/groupio.c,
lib/groupio.h, lib/sgroupio.c, lib/sgroupio.h, lib/shadowio.c,
lib/pwio.c, lib/commonio.c, lib/shadowio.h, lib/pwio.h,
lib/commonio.h, lib/prototypes.h: Added splint annotations.
2009-04-23 02:51:14 +05:30
|
|
|
/*@null@*/int (*open_hook) (void);
|
|
|
|
/*@null@*/int (*close_hook) (void);
|
2007-10-07 17:14:02 +05:30
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Database structure.
|
|
|
|
*/
|
|
|
|
struct commonio_db {
|
|
|
|
/*
|
|
|
|
* Name of the data file.
|
|
|
|
*/
|
|
|
|
char filename[1024];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Operations from above.
|
|
|
|
*/
|
2009-04-25 05:03:47 +05:30
|
|
|
/*@observer@*/const struct commonio_ops *ops;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Currently open file stream.
|
|
|
|
*/
|
2009-04-25 18:13:27 +05:30
|
|
|
/*@dependent@*/ /*@null@*/FILE *fp;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:40 +05:30
|
|
|
#ifdef WITH_SELINUX
|
2021-04-09 21:50:41 +05:30
|
|
|
/*@null@*/char *scontext;
|
2007-10-07 17:15:40 +05:30
|
|
|
#endif
|
2015-02-27 21:56:57 +05:30
|
|
|
/*
|
|
|
|
* Default permissions and owner for newly created data file.
|
|
|
|
*/
|
|
|
|
mode_t st_mode;
|
|
|
|
uid_t st_uid;
|
|
|
|
gid_t st_gid;
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* Head, tail, current position in linked list.
|
|
|
|
*/
|
2011-11-20 03:21:52 +05:30
|
|
|
/*@owned@*/ /*@null@*/struct commonio_entry *head;
|
|
|
|
/*@dependent@*/ /*@null@*/struct commonio_entry *tail;
|
2009-04-25 19:46:22 +05:30
|
|
|
/*@dependent@*/ /*@null@*/struct commonio_entry *cursor;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Various flags.
|
|
|
|
*/
|
2008-05-26 06:16:25 +05:30
|
|
|
bool changed:1;
|
|
|
|
bool isopen:1;
|
|
|
|
bool locked:1;
|
|
|
|
bool readonly:1;
|
2019-05-02 18:03:06 +05:30
|
|
|
bool setname:1;
|
2007-10-07 17:14:02 +05:30
|
|
|
};
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
extern int commonio_setname (struct commonio_db *, const char *);
|
2008-05-26 06:16:25 +05:30
|
|
|
extern bool commonio_present (const struct commonio_db *db);
|
2007-10-07 17:16:07 +05:30
|
|
|
extern int commonio_lock (struct commonio_db *);
|
2011-07-14 19:28:17 +05:30
|
|
|
extern int commonio_lock_nowait (struct commonio_db *, bool log);
|
2022-12-07 00:51:55 +05:30
|
|
|
extern int do_fcntl_lock (const char *file, bool log, short type);
|
2007-10-07 17:16:07 +05:30
|
|
|
extern int commonio_open (struct commonio_db *, int);
|
2009-04-24 02:49:02 +05:30
|
|
|
extern /*@observer@*/ /*@null@*/const void *commonio_locate (struct commonio_db *, const char *);
|
2007-10-07 17:16:07 +05:30
|
|
|
extern int commonio_update (struct commonio_db *, const void *);
|
Allow disabling of subordinate IDs.
* configure.in: Add configure options --enable-subordinate-ids /
--disable-subordinate-ids. Enabled by default.
* lib/prototypes.h: Include <config.h> before using its macros.
* lib/commonio.h, lib/commonio.c: Define commonio_append only when
ENABLE_SUBIDS is defined.
* lib/prototypes.h, libmisc/find_new_sub_gids.c,
libmisc/find_new_sub_uids.c: Likewise.
* lib/subordinateio.h, lib/subordinateio.c: Likewise.
* libmisc/user_busy.c: Only check if subordinate IDs are in use if
ENABLE_SUBIDS is defined.
* src/Makefile.am: Create newgidmap and newuidmap only if
ENABLE_SUBIDS is defined.
* src/newusers.c: Check for ENABLE_SUBIDS to enable support for
subordinate IDs.
* src/useradd.c: Likewise.
* src/userdel.c: Likewise.
* src/usermod.c: Likewise.
* man/Makefile.am: Install man1/newgidmap.1, man1/newuidmap.1,
man5/subgid.5, and man5/subuid.5 only if ENABLE_SUBIDS is defined.
* man/fr/Makefile.am: Install man1/newgidmap.1, man1/newuidmap.1,
man5/subgid.5, and man5/subuid.5 (not translated yet).
* man/generate_mans.mak: Add xsltproc conditionals
subids/no_subids.
* man/login.defs.d/SUB_GID_COUNT.xml: Add dependency on subids
condition.
* man/login.defs.d/SUB_UID_COUNT.xml: Likewise.
* man/usermod.8.xml: Document options for subordinate IDs and
reference subgid(5) / subuid(5) depending on the subids condition.
2013-08-11 18:24:22 +05:30
|
|
|
#ifdef ENABLE_SUBIDS
|
2013-01-22 14:43:26 +05:30
|
|
|
extern int commonio_append (struct commonio_db *, const void *);
|
Allow disabling of subordinate IDs.
* configure.in: Add configure options --enable-subordinate-ids /
--disable-subordinate-ids. Enabled by default.
* lib/prototypes.h: Include <config.h> before using its macros.
* lib/commonio.h, lib/commonio.c: Define commonio_append only when
ENABLE_SUBIDS is defined.
* lib/prototypes.h, libmisc/find_new_sub_gids.c,
libmisc/find_new_sub_uids.c: Likewise.
* lib/subordinateio.h, lib/subordinateio.c: Likewise.
* libmisc/user_busy.c: Only check if subordinate IDs are in use if
ENABLE_SUBIDS is defined.
* src/Makefile.am: Create newgidmap and newuidmap only if
ENABLE_SUBIDS is defined.
* src/newusers.c: Check for ENABLE_SUBIDS to enable support for
subordinate IDs.
* src/useradd.c: Likewise.
* src/userdel.c: Likewise.
* src/usermod.c: Likewise.
* man/Makefile.am: Install man1/newgidmap.1, man1/newuidmap.1,
man5/subgid.5, and man5/subuid.5 only if ENABLE_SUBIDS is defined.
* man/fr/Makefile.am: Install man1/newgidmap.1, man1/newuidmap.1,
man5/subgid.5, and man5/subuid.5 (not translated yet).
* man/generate_mans.mak: Add xsltproc conditionals
subids/no_subids.
* man/login.defs.d/SUB_GID_COUNT.xml: Add dependency on subids
condition.
* man/login.defs.d/SUB_UID_COUNT.xml: Likewise.
* man/usermod.8.xml: Document options for subordinate IDs and
reference subgid(5) / subuid(5) depending on the subids condition.
2013-08-11 18:24:22 +05:30
|
|
|
#endif /* ENABLE_SUBIDS */
|
2007-10-07 17:16:07 +05:30
|
|
|
extern int commonio_remove (struct commonio_db *, const char *);
|
|
|
|
extern int commonio_rewind (struct commonio_db *);
|
2009-04-24 02:49:02 +05:30
|
|
|
extern /*@observer@*/ /*@null@*/const void *commonio_next (struct commonio_db *);
|
2007-10-07 17:16:07 +05:30
|
|
|
extern int commonio_close (struct commonio_db *);
|
|
|
|
extern int commonio_unlock (struct commonio_db *);
|
|
|
|
extern void commonio_del_entry (struct commonio_db *,
|
* libmisc/console.c, libmisc/motd.c, libmisc/setupenv.c,
libmisc/sulog.c, libmisc/hushed.c, libmisc/failure.c,
libmisc/loginprompt.c, libmisc/ttytype.c,
libmisc/pam_pass_non_interractive.c, src/userdel.c, src/login.c,
lib/commonio.c, lib/commonio.h: Fix some const issues.
* libmisc/motd.c: Avoid multi-statements lines.
* libmisc/motd.c: Support long MOTD_FILE.
* libmisc/list.c, lib/prototypes.h: Revert previous change.
dup_list and is_on_list are used with members as defined for the
group structure, and thus even if the list is not modified, the
list elements cannot be constant strings.
* libmisc/system.c: Avoid C++ comments.
* src/vipw.c: WITH_TCB cannot be tested inside a gettextized
string. Split the Usage string.
* lib/commonio.h: Re-indent.
2010-08-21 21:02:53 +05:30
|
|
|
const struct commonio_entry *);
|
2007-10-07 17:16:07 +05:30
|
|
|
extern int commonio_sort_wrt (struct commonio_db *shadow,
|
* libmisc/console.c, libmisc/motd.c, libmisc/setupenv.c,
libmisc/sulog.c, libmisc/hushed.c, libmisc/failure.c,
libmisc/loginprompt.c, libmisc/ttytype.c,
libmisc/pam_pass_non_interractive.c, src/userdel.c, src/login.c,
lib/commonio.c, lib/commonio.h: Fix some const issues.
* libmisc/motd.c: Avoid multi-statements lines.
* libmisc/motd.c: Support long MOTD_FILE.
* libmisc/list.c, lib/prototypes.h: Revert previous change.
dup_list and is_on_list are used with members as defined for the
group structure, and thus even if the list is not modified, the
list elements cannot be constant strings.
* libmisc/system.c: Avoid C++ comments.
* src/vipw.c: WITH_TCB cannot be tested inside a gettextized
string. Split the Usage string.
* lib/commonio.h: Re-indent.
2010-08-21 21:02:53 +05:30
|
|
|
const struct commonio_db *passwd);
|
2007-10-07 17:16:07 +05:30
|
|
|
extern int commonio_sort (struct commonio_db *db,
|
* libmisc/console.c, libmisc/motd.c, libmisc/setupenv.c,
libmisc/sulog.c, libmisc/hushed.c, libmisc/failure.c,
libmisc/loginprompt.c, libmisc/ttytype.c,
libmisc/pam_pass_non_interractive.c, src/userdel.c, src/login.c,
lib/commonio.c, lib/commonio.h: Fix some const issues.
* libmisc/motd.c: Avoid multi-statements lines.
* libmisc/motd.c: Support long MOTD_FILE.
* libmisc/list.c, lib/prototypes.h: Revert previous change.
dup_list and is_on_list are used with members as defined for the
group structure, and thus even if the list is not modified, the
list elements cannot be constant strings.
* libmisc/system.c: Avoid C++ comments.
* src/vipw.c: WITH_TCB cannot be tested inside a gettextized
string. Split the Usage string.
* lib/commonio.h: Re-indent.
2010-08-21 21:02:53 +05:30
|
|
|
int (*cmp) (const void *, const void *));
|
* libmisc/console.c, libmisc/ulimit.c, lib/sgetgrent.c,
lib/sgetpwent.c: Include "prototypes.h" to make
sure the exported prototypes are the ones used for the definition
of functions.
* lib/prototypes.h: Added prototypes for __gr_del_entry(),
__gr_get_db(), __gr_get_head(), __gr_set_changed(), __gr_dup(),
__pw_del_entry(), __pw_get_db(), __pw_get_head(), __pw_dup(),
sgetgrent(), sgetpwent(), __sgr_del_entry(), __sgr_dup(),
__sgr_get_head(), __sgr_set_changed(), __spw_get_head(),
__spw_del_entry(), __spw_dup().
* lib/prototypes.h: Removed prototype for is_listed().
* lib/prototypes.h: Added name of the check_su_auth()'s parameters.
* lib/groupio.h: Removed prototypes for __gr_dup() and
__gr_set_changed().
* lib/sgroupio.c: Removed prototypes for putsgent(), sgetsgent(),
and __gr_get_db().
* lib/sgroupio.h: Removed prototypes for __sgr_dup() and
__sgr_set_changed().
* lib/shadowio.c: Removed prototype for __pw_get_db().
* lib/pwio.c: Removed prototype for sgetpwent() and putpwent().
* lib/shadowio.h: Removed prototypes for __spw_dup() and
__spw_set_changed().
* lib/pwio.h: Removed prototypes for __pw_dup() and
__pw_set_changed().
* lib/commonio.h: Add protection against multiple inclusions.
* lib/prototypes.h: Include commonio.h (needed for the
__xx_del_entry() functions).
2008-01-06 17:29:01 +05:30
|
|
|
|
|
|
|
#endif
|