2008-04-27 06:10:09 +05:30
|
|
|
/*
|
|
|
|
* Copyright (c) 1990 - 1994, Julianne Frances Haugh
|
|
|
|
* Copyright (c) 1996 - 2000, Marek Michałkiewicz
|
|
|
|
* Copyright (c) 2001 - 2005, Tomasz Kłoczko
|
|
|
|
* Copyright (c) 2007 - 2008, Nicolas François
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. The name of the copyright holders or contributors may not be used to
|
|
|
|
* endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
|
|
|
|
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
/* $Id$ */
|
* 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
|
|
|
#ifndef _COMMONIO_H
|
|
|
|
#define _COMMONIO_H
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:40 +05:30
|
|
|
#ifdef WITH_SELINUX
|
|
|
|
#include <selinux/selinux.h>
|
|
|
|
#endif
|
2008-05-26 06:16:25 +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, ... */
|
|
|
|
/*@null@*/struct commonio_entry *prev, *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.
|
|
|
|
*/
|
|
|
|
struct commonio_ops *ops;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Currently open file stream.
|
|
|
|
*/
|
* 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@*/FILE *fp;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:40 +05:30
|
|
|
#ifdef WITH_SELINUX
|
2007-10-07 17:16:07 +05:30
|
|
|
security_context_t scontext;
|
2007-10-07 17:15:40 +05:30
|
|
|
#endif
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* Head, tail, current position in linked list.
|
|
|
|
*/
|
* 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@*/struct commonio_entry *head, *tail, *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;
|
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 *);
|
|
|
|
extern int commonio_lock_nowait (struct commonio_db *);
|
|
|
|
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 *);
|
|
|
|
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 *,
|
|
|
|
const struct commonio_entry *);
|
|
|
|
extern int commonio_sort_wrt (struct commonio_db *shadow,
|
|
|
|
struct commonio_db *passwd);
|
|
|
|
extern int commonio_sort (struct commonio_db *db,
|
|
|
|
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
|