2007-10-07 17:15:40 +05:30
|
|
|
/* $Id: commonio.h,v 1.8 2004/10/11 04:40:29 kloczek Exp $ */
|
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:14:14 +05:30
|
|
|
void *eptr; /* struct passwd, struct spwd, ... */
|
2007-10-07 17:14:02 +05:30
|
|
|
struct commonio_entry *prev, *next;
|
|
|
|
int changed:1;
|
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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:14:14 +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:14:14 +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:14:14 +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:14:14 +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:14:14 +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:14:14 +05:30
|
|
|
char *(*fgets)(char *, int, FILE *);
|
|
|
|
int (*fputs)(const char *, FILE *);
|
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
|
|
|
|
security_context_t scontext;
|
|
|
|
#endif
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* Head, tail, current position in linked list.
|
|
|
|
*/
|
|
|
|
struct commonio_entry *head, *tail, *cursor;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Various flags.
|
|
|
|
*/
|
|
|
|
int changed:1;
|
|
|
|
int isopen:1;
|
|
|
|
int locked:1;
|
|
|
|
int readonly:1;
|
|
|
|
};
|
|
|
|
|
2007-10-07 17:14:14 +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 *);
|
2007-10-07 17:14:51 +05:30
|
|
|
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 *));
|
2007-10-07 17:14:02 +05:30
|
|
|
|