2007-11-11 05:16:11 +05:30
|
|
|
/* $Id$ */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:40 +05:30
|
|
|
#ifdef WITH_SELINUX
|
|
|
|
#include <selinux/selinux.h>
|
|
|
|
#endif
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* Linked list entry.
|
|
|
|
*/
|
|
|
|
struct commonio_entry {
|
|
|
|
char *line;
|
2007-10-07 17:16:07 +05:30
|
|
|
void *eptr; /* struct passwd, struct spwd, ... */
|
2007-10-07 17:14:02 +05:30
|
|
|
struct commonio_entry *prev, *next;
|
2008-01-01 01:42:48 +05:30
|
|
|
unsigned int 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.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
void *(*dup) (const void *);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* free() the object including any strings pointed by it.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
void (*free) (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).
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
char *(*fgets) (char *, int, FILE *);
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
int (*open_hook) (void);
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
FILE *fp;
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
struct commonio_entry *head, *tail, *cursor;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Various flags.
|
|
|
|
*/
|
2008-01-01 01:42:48 +05:30
|
|
|
unsigned int changed:1;
|
|
|
|
unsigned int isopen:1;
|
|
|
|
unsigned int locked:1;
|
|
|
|
unsigned int 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 *);
|
|
|
|
extern int commonio_present (const struct commonio_db *);
|
|
|
|
extern int commonio_lock (struct commonio_db *);
|
|
|
|
extern int commonio_lock_nowait (struct commonio_db *);
|
|
|
|
extern int commonio_open (struct commonio_db *, int);
|
|
|
|
extern const void *commonio_locate (struct commonio_db *, const char *);
|
|
|
|
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 *);
|
|
|
|
extern const void *commonio_next (struct commonio_db *);
|
|
|
|
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 *));
|