2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#include "defines.h"
|
|
|
|
#include <sys/stat.h>
|
2007-10-07 17:17:33 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <limits.h>
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <utime.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <signal.h>
|
2008-01-05 22:03:43 +05:30
|
|
|
#include "nscd.h"
|
2007-10-07 17:15:40 +05:30
|
|
|
#ifdef WITH_SELINUX
|
|
|
|
#include <selinux/selinux.h>
|
2007-10-07 17:16:07 +05:30
|
|
|
static security_context_t old_context = NULL;
|
2007-10-07 17:15:40 +05:30
|
|
|
#endif
|
2007-10-07 17:14:02 +05:30
|
|
|
#include "commonio.h"
|
|
|
|
|
|
|
|
/* local function prototypes */
|
2007-10-07 17:17:33 +05:30
|
|
|
static int lrename (const char *, const char *);
|
2007-10-07 17:16:07 +05:30
|
|
|
static int check_link_count (const char *);
|
|
|
|
static int do_lock_file (const char *, const char *);
|
|
|
|
static FILE *fopen_set_perms (const char *, const char *, const struct stat *);
|
|
|
|
static int create_backup (const char *, FILE *);
|
|
|
|
static void free_linked_list (struct commonio_db *);
|
|
|
|
static void add_one_entry (struct commonio_db *, struct commonio_entry *);
|
|
|
|
static int name_is_nis (const char *);
|
|
|
|
static int write_all (const struct commonio_db *);
|
|
|
|
static struct commonio_entry *find_entry_by_name (struct commonio_db *,
|
|
|
|
const char *);
|
2007-11-17 04:29:14 +05:30
|
|
|
static struct commonio_entry *next_entry_by_name (struct commonio_db *,
|
|
|
|
struct commonio_entry *pos,
|
|
|
|
const char *);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
static int lock_count = 0;
|
2007-10-07 17:14:32 +05:30
|
|
|
static int nscd_need_reload = 0;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:17:33 +05:30
|
|
|
/*
|
|
|
|
* Simple rename(P) alternative that attempts to rename to symlink
|
|
|
|
* target.
|
|
|
|
*/
|
|
|
|
int lrename (const char *old, const char *new)
|
|
|
|
{
|
|
|
|
|
|
|
|
char resolved_path[PATH_MAX];
|
|
|
|
int res;
|
|
|
|
|
|
|
|
#if defined(S_ISLNK)
|
2007-11-20 01:55:36 +05:30
|
|
|
struct stat sb;
|
2007-10-07 17:17:33 +05:30
|
|
|
if (lstat (new, &sb) == 0 && S_ISLNK (sb.st_mode)) {
|
|
|
|
if (realpath (new, resolved_path) == NULL) {
|
|
|
|
perror ("realpath in lrename()");
|
|
|
|
} else {
|
|
|
|
new = resolved_path;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
res = rename (old, new);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
static int check_link_count (const char *file)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (stat (file, &sb) != 0)
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (sb.st_nlink != 2)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
static int do_lock_file (const char *file, const char *lock)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
int pid;
|
|
|
|
int len;
|
|
|
|
int retval;
|
|
|
|
char buf[32];
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if ((fd = open (file, O_CREAT | O_EXCL | O_WRONLY, 0600)) == -1)
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
pid = getpid ();
|
|
|
|
snprintf (buf, sizeof buf, "%d", pid);
|
|
|
|
len = strlen (buf) + 1;
|
|
|
|
if (write (fd, buf, len) != len) {
|
|
|
|
close (fd);
|
|
|
|
unlink (file);
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
close (fd);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (link (file, lock) == 0) {
|
|
|
|
retval = check_link_count (file);
|
|
|
|
unlink (file);
|
2007-10-07 17:14:02 +05:30
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if ((fd = open (lock, O_RDWR)) == -1) {
|
|
|
|
unlink (file);
|
2007-10-07 17:14:02 +05:30
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
len = read (fd, buf, sizeof (buf) - 1);
|
|
|
|
close (fd);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (len <= 0) {
|
2007-10-07 17:16:07 +05:30
|
|
|
unlink (file);
|
2007-10-07 17:14:02 +05:30
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
buf[len] = '\0';
|
2007-10-07 17:16:07 +05:30
|
|
|
if ((pid = strtol (buf, (char **) 0, 10)) == 0) {
|
|
|
|
unlink (file);
|
2007-10-07 17:14:02 +05:30
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
if (kill (pid, 0) == 0) {
|
|
|
|
unlink (file);
|
2007-10-07 17:14:02 +05:30
|
|
|
errno = EEXIST;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
if (unlink (lock) != 0) {
|
|
|
|
unlink (file);
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
retval = 0;
|
2007-10-07 17:16:07 +05:30
|
|
|
if (link (file, lock) == 0 && check_link_count (file))
|
2007-10-07 17:14:02 +05:30
|
|
|
retval = 1;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
unlink (file);
|
2007-10-07 17:14:02 +05:30
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
static FILE *fopen_set_perms (const char *name, const char *mode,
|
|
|
|
const struct stat *sb)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
mode_t mask;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
mask = umask (0777);
|
|
|
|
fp = fopen (name, mode);
|
|
|
|
umask (mask);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (!fp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
#ifdef HAVE_FCHOWN
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fchown (fileno (fp), sb->st_uid, sb->st_gid))
|
2007-10-07 17:14:02 +05:30
|
|
|
goto fail;
|
|
|
|
#else
|
2007-10-07 17:16:07 +05:30
|
|
|
if (chown (name, sb->st_mode))
|
2007-10-07 17:14:02 +05:30
|
|
|
goto fail;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_FCHMOD
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fchmod (fileno (fp), sb->st_mode & 0664))
|
2007-10-07 17:14:02 +05:30
|
|
|
goto fail;
|
|
|
|
#else
|
2007-10-07 17:16:07 +05:30
|
|
|
if (chmod (name, sb->st_mode & 0664))
|
2007-10-07 17:14:02 +05:30
|
|
|
goto fail;
|
|
|
|
#endif
|
|
|
|
return fp;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
fail:
|
|
|
|
fclose (fp);
|
|
|
|
unlink (name);
|
2007-10-07 17:14:02 +05:30
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
static int create_backup (const char *backup, FILE * fp)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
struct stat sb;
|
|
|
|
struct utimbuf ub;
|
|
|
|
FILE *bkfp;
|
|
|
|
int c;
|
|
|
|
mode_t mask;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fstat (fileno (fp), &sb))
|
2007-10-07 17:14:02 +05:30
|
|
|
return -1;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
mask = umask (077);
|
|
|
|
bkfp = fopen (backup, "w");
|
|
|
|
umask (mask);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (!bkfp)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
/* TODO: faster copy, not one-char-at-a-time. --marekm */
|
2007-10-07 17:15:40 +05:30
|
|
|
c = 0;
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fseek (fp, 0, SEEK_SET) == 0)
|
|
|
|
while ((c = getc (fp)) != EOF) {
|
|
|
|
if (putc (c, bkfp) == EOF)
|
2007-10-07 17:15:40 +05:30
|
|
|
break;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
if (c != EOF || ferror (fp) || fflush (bkfp)) {
|
|
|
|
fclose (bkfp);
|
2007-10-07 17:14:02 +05:30
|
|
|
return -1;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fclose (bkfp))
|
2007-10-07 17:14:02 +05:30
|
|
|
return -1;
|
|
|
|
|
|
|
|
ub.actime = sb.st_atime;
|
|
|
|
ub.modtime = sb.st_mtime;
|
2007-10-07 17:16:07 +05:30
|
|
|
utime (backup, &ub);
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
static void free_linked_list (struct commonio_db *db)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
struct commonio_entry *p;
|
|
|
|
|
|
|
|
while (db->head) {
|
|
|
|
p = db->head;
|
|
|
|
db->head = p->next;
|
|
|
|
|
|
|
|
if (p->line)
|
2007-10-07 17:16:07 +05:30
|
|
|
free (p->line);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:14:14 +05:30
|
|
|
if (p->eptr)
|
2007-10-07 17:16:07 +05:30
|
|
|
db->ops->free (p->eptr);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
free (p);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
db->tail = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_setname (struct commonio_db *db, const char *name)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:16:07 +05:30
|
|
|
snprintf (db->filename, sizeof (db->filename), "%s", name);
|
2007-10-07 17:14:02 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_present (const struct commonio_db *db)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:16:07 +05:30
|
|
|
return (access (db->filename, F_OK) == 0);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_lock_nowait (struct commonio_db *db)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
char file[1024];
|
|
|
|
char lock[1024];
|
|
|
|
|
|
|
|
if (db->locked)
|
|
|
|
return 1;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
snprintf (file, sizeof file, "%s.%ld", db->filename, (long) getpid ());
|
|
|
|
snprintf (lock, sizeof lock, "%s.lock", db->filename);
|
|
|
|
if (do_lock_file (file, lock)) {
|
2007-10-07 17:14:02 +05:30
|
|
|
db->locked = 1;
|
2007-10-07 17:14:32 +05:30
|
|
|
lock_count++;
|
2007-10-07 17:14:02 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_lock (struct commonio_db *db)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
#ifdef HAVE_LCKPWDF
|
|
|
|
/*
|
|
|
|
* only if the system libc has a real lckpwdf() - the one from
|
|
|
|
* lockpw.c calls us and would cause infinite recursion!
|
|
|
|
*/
|
2007-10-07 17:14:32 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Call lckpwdf() on the first lock.
|
|
|
|
* If it succeeds, call *_lock() only once
|
|
|
|
* (no retries, it should always succeed).
|
|
|
|
*/
|
|
|
|
if (lock_count == 0) {
|
2007-10-07 17:16:07 +05:30
|
|
|
if (lckpwdf () == -1)
|
|
|
|
return 0; /* failure */
|
2007-10-07 17:14:26 +05:30
|
|
|
}
|
2007-10-07 17:14:32 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (commonio_lock_nowait (db))
|
|
|
|
return 1; /* success */
|
2007-10-07 17:14:32 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
ulckpwdf ();
|
|
|
|
return 0; /* failure */
|
2007-10-07 17:14:32 +05:30
|
|
|
#else
|
|
|
|
int i;
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* lckpwdf() not used - do it the old way.
|
|
|
|
*/
|
|
|
|
#ifndef LOCK_TRIES
|
|
|
|
#define LOCK_TRIES 15
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef LOCK_SLEEP
|
|
|
|
#define LOCK_SLEEP 1
|
|
|
|
#endif
|
|
|
|
for (i = 0; i < LOCK_TRIES; i++) {
|
|
|
|
if (i > 0)
|
2007-10-07 17:16:07 +05:30
|
|
|
sleep (LOCK_SLEEP); /* delay between retries */
|
|
|
|
if (commonio_lock_nowait (db))
|
|
|
|
return 1; /* success */
|
2007-10-07 17:14:02 +05:30
|
|
|
/* no unnecessary retries on "permission denied" errors */
|
2007-10-07 17:16:07 +05:30
|
|
|
if (geteuid () != 0)
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
return 0; /* failure */
|
2007-10-07 17:14:32 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
static void dec_lock_count (void)
|
2007-10-07 17:14:32 +05:30
|
|
|
{
|
|
|
|
if (lock_count > 0) {
|
|
|
|
lock_count--;
|
|
|
|
if (lock_count == 0) {
|
|
|
|
/* Tell nscd when lock count goes to zero,
|
|
|
|
if any of the files were changed. */
|
|
|
|
if (nscd_need_reload) {
|
2007-10-07 17:16:07 +05:30
|
|
|
nscd_flush_cache ("passwd");
|
|
|
|
nscd_flush_cache ("group");
|
2007-10-07 17:14:32 +05:30
|
|
|
nscd_need_reload = 0;
|
|
|
|
}
|
|
|
|
#ifdef HAVE_LCKPWDF
|
2007-10-07 17:16:07 +05:30
|
|
|
ulckpwdf ();
|
2007-10-07 17:14:32 +05:30
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_unlock (struct commonio_db *db)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
char lock[1024];
|
|
|
|
|
|
|
|
if (db->isopen) {
|
|
|
|
db->readonly = 1;
|
2007-10-07 17:16:07 +05:30
|
|
|
if (!commonio_close (db)) {
|
2007-10-07 17:14:32 +05:30
|
|
|
if (db->locked)
|
2007-10-07 17:16:07 +05:30
|
|
|
dec_lock_count ();
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
2007-10-07 17:14:32 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
if (db->locked) {
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* Unlock in reverse order: remove the lock file,
|
|
|
|
* then call ulckpwdf() (if used) on last unlock.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
db->locked = 0;
|
|
|
|
snprintf (lock, sizeof lock, "%s.lock", db->filename);
|
|
|
|
unlink (lock);
|
|
|
|
dec_lock_count ();
|
2007-10-07 17:14:02 +05:30
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
static void add_one_entry (struct commonio_db *db, struct commonio_entry *p)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
p->next = NULL;
|
|
|
|
p->prev = db->tail;
|
|
|
|
if (!db->head)
|
|
|
|
db->head = p;
|
|
|
|
if (db->tail)
|
|
|
|
db->tail->next = p;
|
|
|
|
db->tail = p;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
static int name_is_nis (const char *n)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
return (n[0] == '+' || n[0] == '-');
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* New entries are inserted before the first NIS entry. Order is preserved
|
|
|
|
* when db is written out.
|
|
|
|
*/
|
|
|
|
#ifndef KEEP_NIS_AT_END
|
|
|
|
#define KEEP_NIS_AT_END 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if KEEP_NIS_AT_END
|
2007-10-07 17:16:07 +05:30
|
|
|
static void add_one_entry_nis (struct commonio_db *, struct commonio_entry *);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-01-02 02:04:47 +05:30
|
|
|
/*
|
|
|
|
* Insert an entry between the regular entries, and the NIS entries.
|
|
|
|
*/
|
2007-10-07 17:14:02 +05:30
|
|
|
static void
|
2007-10-07 17:16:07 +05:30
|
|
|
add_one_entry_nis (struct commonio_db *db, struct commonio_entry *newp)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
struct commonio_entry *p;
|
|
|
|
|
|
|
|
for (p = db->head; p; p = p->next) {
|
2007-10-07 17:16:07 +05:30
|
|
|
if (name_is_nis
|
|
|
|
(p->eptr ? db->ops->getname (p->eptr) : p->line)) {
|
2007-10-07 17:14:14 +05:30
|
|
|
newp->next = p;
|
|
|
|
newp->prev = p->prev;
|
2007-10-07 17:14:02 +05:30
|
|
|
if (p->prev)
|
2007-10-07 17:14:14 +05:30
|
|
|
p->prev->next = newp;
|
2007-10-07 17:14:02 +05:30
|
|
|
else
|
2007-10-07 17:14:14 +05:30
|
|
|
db->head = newp;
|
|
|
|
p->prev = newp;
|
2007-10-07 17:14:02 +05:30
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
add_one_entry (db, newp);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
#endif /* KEEP_NIS_AT_END */
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:14:32 +05:30
|
|
|
/* Initial buffer size, as well as increment if not sufficient
|
|
|
|
(for reading very long lines in group files). */
|
|
|
|
#define BUFLEN 4096
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_open (struct commonio_db *db, int mode)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:14:32 +05:30
|
|
|
char *buf;
|
|
|
|
char *cp;
|
2007-10-07 17:14:02 +05:30
|
|
|
char *line;
|
|
|
|
struct commonio_entry *p;
|
2007-10-07 17:14:14 +05:30
|
|
|
void *eptr;
|
2007-10-07 17:14:02 +05:30
|
|
|
int flags = mode;
|
2007-10-07 17:14:32 +05:30
|
|
|
int buflen;
|
2007-10-07 17:15:40 +05:30
|
|
|
int saved_errno;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
mode &= ~O_CREAT;
|
|
|
|
|
|
|
|
if (db->isopen || (mode != O_RDONLY && mode != O_RDWR)) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
db->readonly = (mode == O_RDONLY);
|
|
|
|
if (!db->readonly && !db->locked) {
|
|
|
|
errno = EACCES;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
db->head = db->tail = db->cursor = NULL;
|
|
|
|
db->changed = 0;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
db->fp = fopen (db->filename, db->readonly ? "r" : "r+");
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* If O_CREAT was specified and the file didn't exist, it will be
|
|
|
|
* created by commonio_close(). We have no entries to read yet. --marekm
|
|
|
|
*/
|
|
|
|
if (!db->fp) {
|
|
|
|
if ((flags & O_CREAT) && errno == ENOENT) {
|
|
|
|
db->isopen = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2007-11-17 19:34:05 +05:30
|
|
|
|
|
|
|
/* Do not inherit fd in spawned processes (e.g. nscd) */
|
|
|
|
fcntl(fileno(db->fp), F_SETFD, FD_CLOEXEC);
|
|
|
|
|
2007-10-07 17:15:40 +05:30
|
|
|
#ifdef WITH_SELINUX
|
2007-10-07 17:16:07 +05:30
|
|
|
db->scontext = NULL;
|
2007-10-07 17:17:01 +05:30
|
|
|
if ((is_selinux_enabled () > 0) && (!db->readonly)) {
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fgetfilecon (fileno (db->fp), &db->scontext) < 0) {
|
|
|
|
goto cleanup_errno;
|
|
|
|
}
|
2007-10-07 17:15:40 +05:30
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2007-10-07 17:14:32 +05:30
|
|
|
buflen = BUFLEN;
|
2007-10-07 17:16:07 +05:30
|
|
|
buf = (char *) malloc (buflen);
|
2007-10-07 17:14:32 +05:30
|
|
|
if (!buf)
|
2007-10-07 17:15:40 +05:30
|
|
|
goto cleanup_ENOMEM;
|
2007-10-07 17:14:32 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
while (db->ops->fgets (buf, buflen, db->fp)) {
|
|
|
|
while (!(cp = strrchr (buf, '\n')) && !feof (db->fp)) {
|
2007-10-07 17:14:51 +05:30
|
|
|
int len;
|
|
|
|
|
2007-10-07 17:14:32 +05:30
|
|
|
buflen += BUFLEN;
|
2007-10-07 17:16:07 +05:30
|
|
|
cp = (char *) realloc (buf, buflen);
|
2007-10-07 17:14:32 +05:30
|
|
|
if (!cp)
|
|
|
|
goto cleanup_buf;
|
|
|
|
buf = cp;
|
2007-10-07 17:16:07 +05:30
|
|
|
len = strlen (buf);
|
|
|
|
db->ops->fgets (buf + len, buflen - len, db->fp);
|
2007-10-07 17:14:32 +05:30
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
if ((cp = strrchr (buf, '\n')))
|
2007-10-07 17:14:02 +05:30
|
|
|
*cp = '\0';
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (!(line = strdup (buf)))
|
2007-10-07 17:14:32 +05:30
|
|
|
goto cleanup_buf;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (name_is_nis (line)) {
|
2007-10-07 17:14:14 +05:30
|
|
|
eptr = NULL;
|
2007-10-07 17:16:07 +05:30
|
|
|
} else if ((eptr = db->ops->parse (line))) {
|
|
|
|
eptr = db->ops->dup (eptr);
|
2007-10-07 17:14:14 +05:30
|
|
|
if (!eptr)
|
2007-10-07 17:14:02 +05:30
|
|
|
goto cleanup_line;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
p = (struct commonio_entry *) malloc (sizeof *p);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (!p)
|
|
|
|
goto cleanup_entry;
|
|
|
|
|
2007-10-07 17:14:14 +05:30
|
|
|
p->eptr = eptr;
|
2007-10-07 17:14:02 +05:30
|
|
|
p->line = line;
|
|
|
|
p->changed = 0;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
add_one_entry (db, p);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
free (buf);
|
2007-10-07 17:15:40 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (ferror (db->fp))
|
2007-10-07 17:15:40 +05:30
|
|
|
goto cleanup_errno;
|
|
|
|
|
2007-11-23 05:37:59 +05:30
|
|
|
if (db->ops->open_hook && !db->ops->open_hook ())
|
|
|
|
goto cleanup_errno;
|
|
|
|
|
2007-10-07 17:15:40 +05:30
|
|
|
db->isopen = 1;
|
2007-10-07 17:14:02 +05:30
|
|
|
return 1;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
cleanup_entry:
|
2007-10-07 17:14:14 +05:30
|
|
|
if (eptr)
|
2007-10-07 17:16:07 +05:30
|
|
|
db->ops->free (eptr);
|
|
|
|
cleanup_line:
|
|
|
|
free (line);
|
|
|
|
cleanup_buf:
|
|
|
|
free (buf);
|
|
|
|
cleanup_ENOMEM:
|
2007-10-07 17:15:40 +05:30
|
|
|
errno = ENOMEM;
|
2007-10-07 17:16:07 +05:30
|
|
|
cleanup_errno:
|
2007-10-07 17:15:40 +05:30
|
|
|
saved_errno = errno;
|
2007-10-07 17:16:07 +05:30
|
|
|
free_linked_list (db);
|
2007-10-07 17:15:40 +05:30
|
|
|
#ifdef WITH_SELINUX
|
2007-10-07 17:16:07 +05:30
|
|
|
if (db->scontext != NULL) {
|
|
|
|
freecon (db->scontext);
|
|
|
|
db->scontext = NULL;
|
2007-10-07 17:15:40 +05:30
|
|
|
}
|
|
|
|
#endif
|
2007-10-07 17:16:07 +05:30
|
|
|
fclose (db->fp);
|
2007-10-07 17:14:02 +05:30
|
|
|
db->fp = NULL;
|
2007-10-07 17:15:40 +05:30
|
|
|
errno = saved_errno;
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:14:51 +05:30
|
|
|
/*
|
|
|
|
* Sort given db according to cmp function (usually compares uids)
|
|
|
|
*/
|
|
|
|
int
|
2007-10-07 17:16:07 +05:30
|
|
|
commonio_sort (struct commonio_db *db, int (*cmp) (const void *, const void *))
|
2007-10-07 17:14:51 +05:30
|
|
|
{
|
|
|
|
struct commonio_entry **entries, *ptr;
|
|
|
|
int n = 0, i;
|
|
|
|
|
|
|
|
for (ptr = db->head; ptr; ptr = ptr->next)
|
|
|
|
n++;
|
|
|
|
|
|
|
|
if (n <= 1)
|
|
|
|
return 0;
|
2007-10-07 17:16:07 +05:30
|
|
|
|
|
|
|
entries = malloc (n * sizeof (struct commonio_entry *));
|
2007-10-07 17:14:51 +05:30
|
|
|
if (entries == NULL)
|
|
|
|
return -1;
|
2007-10-07 17:16:07 +05:30
|
|
|
|
2007-10-07 17:14:51 +05:30
|
|
|
n = 0;
|
|
|
|
for (ptr = db->head; ptr; ptr = ptr->next)
|
|
|
|
entries[n++] = ptr;
|
2007-10-07 17:16:07 +05:30
|
|
|
qsort (entries, n, sizeof (struct commonio_entry *), cmp);
|
|
|
|
|
2007-10-07 17:14:51 +05:30
|
|
|
db->head = entries[0];
|
|
|
|
db->tail = entries[--n];
|
|
|
|
db->head->prev = NULL;
|
|
|
|
db->head->next = entries[1];
|
2007-10-07 17:16:07 +05:30
|
|
|
db->tail->prev = entries[n - 1];
|
2007-10-07 17:14:51 +05:30
|
|
|
db->tail->next = NULL;
|
|
|
|
|
|
|
|
for (i = 1; i < n; i++) {
|
2007-10-07 17:16:07 +05:30
|
|
|
entries[i]->prev = entries[i - 1];
|
|
|
|
entries[i]->next = entries[i + 1];
|
2007-10-07 17:14:51 +05:30
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
free (entries);
|
2007-10-07 17:14:51 +05:30
|
|
|
db->changed = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Sort entries in db according to order in another.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_sort_wrt (struct commonio_db *shadow, struct commonio_db *passwd)
|
2007-10-07 17:14:51 +05:30
|
|
|
{
|
|
|
|
struct commonio_entry *head = NULL, *pw_ptr, *spw_ptr;
|
|
|
|
const char *name;
|
|
|
|
|
2007-10-07 17:17:33 +05:30
|
|
|
if (!shadow || !shadow->head)
|
2007-10-07 17:17:11 +05:30
|
|
|
return 0;
|
|
|
|
|
2007-10-07 17:14:51 +05:30
|
|
|
for (pw_ptr = passwd->head; pw_ptr; pw_ptr = pw_ptr->next) {
|
2007-10-07 17:14:59 +05:30
|
|
|
if (pw_ptr->eptr == NULL)
|
|
|
|
continue;
|
2007-10-07 17:16:07 +05:30
|
|
|
name = passwd->ops->getname (pw_ptr->eptr);
|
2007-10-07 17:14:51 +05:30
|
|
|
for (spw_ptr = shadow->head; spw_ptr; spw_ptr = spw_ptr->next)
|
2007-10-07 17:16:07 +05:30
|
|
|
if (strcmp (name, shadow->ops->getname (spw_ptr->eptr))
|
|
|
|
== 0)
|
2007-10-07 17:14:51 +05:30
|
|
|
break;
|
2007-10-07 17:16:07 +05:30
|
|
|
if (spw_ptr == NULL)
|
2007-10-07 17:14:51 +05:30
|
|
|
continue;
|
2007-10-07 17:16:07 +05:30
|
|
|
commonio_del_entry (shadow, spw_ptr);
|
2007-10-07 17:14:51 +05:30
|
|
|
spw_ptr->next = head;
|
|
|
|
head = spw_ptr;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
|
2007-10-07 17:14:51 +05:30
|
|
|
for (spw_ptr = head; spw_ptr; spw_ptr = head) {
|
|
|
|
head = head->next;
|
2007-10-07 17:16:07 +05:30
|
|
|
|
2007-10-07 17:14:51 +05:30
|
|
|
if (shadow->head)
|
|
|
|
shadow->head->prev = spw_ptr;
|
|
|
|
spw_ptr->next = shadow->head;
|
|
|
|
shadow->head = spw_ptr;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
|
2007-10-07 17:14:51 +05:30
|
|
|
shadow->head->prev = NULL;
|
|
|
|
shadow->changed = 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-01-02 02:04:47 +05:30
|
|
|
/*
|
|
|
|
* write_all - Write the database to its file.
|
|
|
|
*
|
|
|
|
* It returns 0 if all the entries could be writen correctly.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
static int write_all (const struct commonio_db *db)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
const struct commonio_entry *p;
|
2007-10-07 17:14:14 +05:30
|
|
|
void *eptr;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
for (p = db->head; p; p = p->next) {
|
|
|
|
if (p->changed) {
|
2007-10-07 17:14:14 +05:30
|
|
|
eptr = p->eptr;
|
2007-10-07 17:16:07 +05:30
|
|
|
if (db->ops->put (eptr, db->fp))
|
2007-10-07 17:14:02 +05:30
|
|
|
return -1;
|
|
|
|
} else if (p->line) {
|
2007-10-07 17:16:07 +05:30
|
|
|
if (db->ops->fputs (p->line, db->fp) == EOF)
|
2007-10-07 17:14:02 +05:30
|
|
|
return -1;
|
2007-10-07 17:16:07 +05:30
|
|
|
if (putc ('\n', db->fp) == EOF)
|
2007-10-07 17:14:02 +05:30
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_close (struct commonio_db *db)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
int errors = 0;
|
|
|
|
struct stat sb;
|
|
|
|
|
|
|
|
if (!db->isopen) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
db->isopen = 0;
|
|
|
|
|
|
|
|
if (!db->changed || db->readonly) {
|
2007-10-07 17:16:07 +05:30
|
|
|
fclose (db->fp);
|
2007-10-07 17:14:02 +05:30
|
|
|
db->fp = NULL;
|
|
|
|
goto success;
|
|
|
|
}
|
|
|
|
|
2007-11-23 05:37:59 +05:30
|
|
|
if (db->ops->close_hook && !db->ops->close_hook ())
|
|
|
|
goto fail;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
memzero (&sb, sizeof sb);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (db->fp) {
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fstat (fileno (db->fp), &sb)) {
|
|
|
|
fclose (db->fp);
|
2007-10-07 17:14:02 +05:30
|
|
|
db->fp = NULL;
|
|
|
|
goto fail;
|
|
|
|
}
|
2007-10-07 17:15:40 +05:30
|
|
|
#ifdef WITH_SELINUX
|
|
|
|
if (db->scontext != NULL) {
|
2008-01-05 19:31:34 +05:30
|
|
|
if (getfscreatecon (&old_context) < 0) {
|
2007-10-07 17:16:07 +05:30
|
|
|
errors++;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
if (setfscreatecon (db->scontext) < 0) {
|
|
|
|
errors++;
|
|
|
|
goto fail;
|
|
|
|
}
|
2007-10-07 17:15:40 +05:30
|
|
|
}
|
|
|
|
#endif
|
2007-10-07 17:14:02 +05:30
|
|
|
/*
|
|
|
|
* Create backup file.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
snprintf (buf, sizeof buf, "%s-", db->filename);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (create_backup (buf, db->fp))
|
2007-10-07 17:14:02 +05:30
|
|
|
errors++;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fclose (db->fp))
|
2007-10-07 17:14:02 +05:30
|
|
|
errors++;
|
|
|
|
|
|
|
|
if (errors) {
|
|
|
|
db->fp = NULL;
|
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Default permissions for new [g]shadow files.
|
|
|
|
* (passwd and group always exist...)
|
|
|
|
*/
|
|
|
|
sb.st_mode = 0400;
|
|
|
|
sb.st_uid = 0;
|
|
|
|
sb.st_gid = 0;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
snprintf (buf, sizeof buf, "%s+", db->filename);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
db->fp = fopen_set_perms (buf, "w", &sb);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (!db->fp)
|
|
|
|
goto fail;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (write_all (db))
|
2007-10-07 17:14:02 +05:30
|
|
|
errors++;
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fflush (db->fp))
|
2007-10-07 17:14:02 +05:30
|
|
|
errors++;
|
|
|
|
#ifdef HAVE_FSYNC
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fsync (fileno (db->fp)))
|
2007-10-07 17:14:02 +05:30
|
|
|
errors++;
|
|
|
|
#else
|
2007-10-07 17:16:07 +05:30
|
|
|
sync ();
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
2007-10-07 17:16:07 +05:30
|
|
|
if (fclose (db->fp))
|
2007-10-07 17:14:02 +05:30
|
|
|
errors++;
|
|
|
|
|
|
|
|
db->fp = NULL;
|
|
|
|
|
|
|
|
if (errors) {
|
2007-10-07 17:16:07 +05:30
|
|
|
unlink (buf);
|
2007-10-07 17:14:02 +05:30
|
|
|
goto fail;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:17:33 +05:30
|
|
|
if (lrename (buf, db->filename))
|
2007-10-07 17:14:02 +05:30
|
|
|
goto fail;
|
|
|
|
|
2007-10-07 17:14:32 +05:30
|
|
|
nscd_need_reload = 1;
|
2007-10-07 17:15:40 +05:30
|
|
|
goto success;
|
2007-10-07 17:16:07 +05:30
|
|
|
fail:
|
2007-10-07 17:15:40 +05:30
|
|
|
errors++;
|
2007-10-07 17:16:07 +05:30
|
|
|
success:
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:15:40 +05:30
|
|
|
#ifdef WITH_SELINUX
|
|
|
|
if (db->scontext != NULL) {
|
2007-10-07 17:16:07 +05:30
|
|
|
if (setfscreatecon (old_context) < 0) {
|
|
|
|
errors++;
|
|
|
|
}
|
|
|
|
if (old_context != NULL) {
|
|
|
|
freecon (old_context);
|
|
|
|
old_context = NULL;
|
|
|
|
}
|
|
|
|
freecon (db->scontext);
|
|
|
|
db->scontext = NULL;
|
2007-10-07 17:15:40 +05:30
|
|
|
}
|
|
|
|
#endif
|
2007-10-07 17:16:07 +05:30
|
|
|
free_linked_list (db);
|
|
|
|
return errors == 0;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
2007-11-17 04:29:14 +05:30
|
|
|
static struct commonio_entry *next_entry_by_name (struct commonio_db *db,
|
|
|
|
struct commonio_entry *pos,
|
|
|
|
const char *name)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
struct commonio_entry *p;
|
|
|
|
void *ep;
|
|
|
|
|
2007-11-17 04:29:14 +05:30
|
|
|
if (NULL == pos)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (p = pos; p; p = p->next) {
|
2007-10-07 17:14:14 +05:30
|
|
|
ep = p->eptr;
|
2007-10-07 17:16:07 +05:30
|
|
|
if (ep && strcmp (db->ops->getname (ep), name) == 0)
|
2007-10-07 17:14:02 +05:30
|
|
|
break;
|
|
|
|
}
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2007-11-17 04:29:14 +05:30
|
|
|
static struct commonio_entry *find_entry_by_name (struct commonio_db *db,
|
|
|
|
const char *name)
|
|
|
|
{
|
|
|
|
return next_entry_by_name(db, db->head, name);
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_update (struct commonio_db *db, const void *eptr)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
struct commonio_entry *p;
|
|
|
|
void *nentry;
|
|
|
|
|
|
|
|
if (!db->isopen || db->readonly) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
if (!(nentry = db->ops->dup (eptr))) {
|
2007-10-07 17:14:02 +05:30
|
|
|
errno = ENOMEM;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
p = find_entry_by_name (db, db->ops->getname (eptr));
|
2007-10-07 17:14:02 +05:30
|
|
|
if (p) {
|
2007-11-17 04:29:14 +05:30
|
|
|
if (next_entry_by_name (db, p->next, db->ops->getname (eptr)))
|
|
|
|
{
|
|
|
|
fprintf (stderr, _("Multiple entries named '%s' in %s. Please fix this with pwck or grpck.\n"), db->ops->getname (eptr), db->filename);
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
db->ops->free (p->eptr);
|
2007-10-07 17:14:14 +05:30
|
|
|
p->eptr = nentry;
|
2007-10-07 17:14:02 +05:30
|
|
|
p->changed = 1;
|
|
|
|
db->cursor = p;
|
|
|
|
|
|
|
|
db->changed = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
/* not found, new entry */
|
2007-10-07 17:16:07 +05:30
|
|
|
p = (struct commonio_entry *) malloc (sizeof *p);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (!p) {
|
2007-10-07 17:16:07 +05:30
|
|
|
db->ops->free (nentry);
|
2007-10-07 17:14:02 +05:30
|
|
|
errno = ENOMEM;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:14:14 +05:30
|
|
|
p->eptr = nentry;
|
2007-10-07 17:14:02 +05:30
|
|
|
p->line = NULL;
|
|
|
|
p->changed = 1;
|
|
|
|
|
|
|
|
#if KEEP_NIS_AT_END
|
2007-10-07 17:16:07 +05:30
|
|
|
add_one_entry_nis (db, p);
|
2007-10-07 17:14:02 +05:30
|
|
|
#else
|
2007-10-07 17:16:07 +05:30
|
|
|
add_one_entry (db, p);
|
2007-10-07 17:14:02 +05:30
|
|
|
#endif
|
|
|
|
|
|
|
|
db->changed = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
void commonio_del_entry (struct commonio_db *db, const struct commonio_entry *p)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
if (p == db->cursor)
|
|
|
|
db->cursor = p->next;
|
|
|
|
|
|
|
|
if (p->prev)
|
|
|
|
p->prev->next = p->next;
|
|
|
|
else
|
|
|
|
db->head = p->next;
|
|
|
|
|
|
|
|
if (p->next)
|
|
|
|
p->next->prev = p->prev;
|
|
|
|
else
|
|
|
|
db->tail = p->prev;
|
|
|
|
|
|
|
|
db->changed = 1;
|
|
|
|
}
|
|
|
|
|
2008-01-02 02:04:47 +05:30
|
|
|
/*
|
|
|
|
* commonio_remove - Remove the entry of the given name from the database.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_remove (struct commonio_db *db, const char *name)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
struct commonio_entry *p;
|
|
|
|
|
|
|
|
if (!db->isopen || db->readonly) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
p = find_entry_by_name (db, name);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (!p) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2007-10-07 17:16:07 +05:30
|
|
|
commonio_del_entry (db, p);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
if (p->line)
|
2007-10-07 17:16:07 +05:30
|
|
|
free (p->line);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2007-10-07 17:14:14 +05:30
|
|
|
if (p->eptr)
|
2007-10-07 17:16:07 +05:30
|
|
|
db->ops->free (p->eptr);
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-01-02 02:04:47 +05:30
|
|
|
/*
|
|
|
|
* commonio_locate - Find the first entry with the specified name in
|
|
|
|
* the database.
|
|
|
|
*
|
|
|
|
* If found, it returns the entry and set the cursor of the database to
|
|
|
|
* that entry.
|
|
|
|
*
|
|
|
|
* Otherwise, it returns NULL.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
const void *commonio_locate (struct commonio_db *db, const char *name)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
struct commonio_entry *p;
|
|
|
|
|
|
|
|
if (!db->isopen) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return NULL;
|
|
|
|
}
|
2007-10-07 17:16:07 +05:30
|
|
|
p = find_entry_by_name (db, name);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (!p) {
|
|
|
|
errno = ENOENT;
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
db->cursor = p;
|
2007-10-07 17:14:14 +05:30
|
|
|
return p->eptr;
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
2008-01-02 02:04:47 +05:30
|
|
|
/*
|
|
|
|
* commonio_rewind - Restore the database cursor to the first entry.
|
|
|
|
*
|
|
|
|
* It returns 0 on error, 1 on success.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
int commonio_rewind (struct commonio_db *db)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
if (!db->isopen) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
db->cursor = NULL;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-01-02 02:04:47 +05:30
|
|
|
/*
|
|
|
|
* commonio_next - Return the next entry of the specified database
|
|
|
|
*
|
|
|
|
* It returns the next entry, or NULL if no other entries could be found.
|
|
|
|
*/
|
2007-10-07 17:16:07 +05:30
|
|
|
const void *commonio_next (struct commonio_db *db)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:14:14 +05:30
|
|
|
void *eptr;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
if (!db->isopen) {
|
|
|
|
errno = EINVAL;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (db->cursor == NULL)
|
|
|
|
db->cursor = db->head;
|
|
|
|
else
|
|
|
|
db->cursor = db->cursor->next;
|
|
|
|
|
|
|
|
while (db->cursor) {
|
2007-10-07 17:14:14 +05:30
|
|
|
eptr = db->cursor->eptr;
|
|
|
|
if (eptr)
|
|
|
|
return eptr;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
db->cursor = db->cursor->next;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|