1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
|
/* utent.c <ndf@linux.mit.edu> */
/* Let it be known that this is very possibly the worst standard ever. HP-UX
does one thing, someone else does another, linux another... If anyone
actually has the standard, please send it to me.
Note that because of the way this stupid stupid standard works, you
have to call endutent() to close the file even if you've not called
setutent -- getutid and family use the same file descriptor. */
#include <unistd.h>
#include <fcntl.h>
#include <paths.h>
#include <errno.h>
#include <string.h>
#include <utmp.h>
static const char * ut_name=_PATH_UTMP;
static int ut_fd=-1;
struct utmp *
getutent(void)
{
static struct utmp utmp;
if (ut_fd==-1) setutent();
if (ut_fd==-1) return NULL;
if (read(ut_fd, (char *) &utmp, sizeof(struct utmp))!=sizeof(struct utmp))
return NULL;
return &utmp;
}
void
setutent(void)
{
int xerrno = errno;
if (ut_fd!=-1)
close(ut_fd); /* ... Should this be an Lseek ? */
if ((ut_fd=open(ut_name, O_RDWR))<0)
{
if (errno!=EACCES || (ut_fd=open(ut_name, O_RDONLY))<0)
{
/* No, this is a library function, it should not do this! */
/* perror("setutent: Can't open utmp file"); */
ut_fd=-1;
}
}
if (ut_fd!= -1) errno=xerrno;
}
void
endutent(void)
{
if (ut_fd!=-1)
close(ut_fd);
ut_fd=-1;
}
struct utmp *
getutid(const struct utmp * utmp_entry)
{
struct utmp * utmp;
while ((utmp=getutent())!=NULL)
{
if ((utmp_entry->ut_type==RUN_LVL ||
utmp_entry->ut_type==BOOT_TIME ||
utmp_entry->ut_type==NEW_TIME ||
utmp_entry->ut_type==OLD_TIME) &&
utmp->ut_type==utmp_entry->ut_type)
return utmp;
if ((utmp_entry->ut_type==INIT_PROCESS ||
utmp_entry->ut_type==DEAD_PROCESS ||
utmp_entry->ut_type==LOGIN_PROCESS ||
utmp_entry->ut_type==USER_PROCESS) &&
!strncmp(utmp->ut_id, utmp_entry->ut_id,sizeof(utmp->ut_id)))
return utmp;
}
return NULL;
}
struct utmp *
getutline(const struct utmp * utmp_entry)
{
struct utmp * utmp;
#if 0 /* This is driving me nuts. It's not an implementation problem -
it's a matter of how things _SHOULD_ behave. Groan. */
if (ut_fd!=-1)
lseek(ut_fd, (off_t) -sizeof(struct utmp), SEEK_CUR);
#endif
while ((utmp=getutent())!=NULL)
{
if ((utmp->ut_type==USER_PROCESS ||
utmp->ut_type==LOGIN_PROCESS) &&
!strcmp(utmp->ut_line, utmp_entry->ut_line))
return utmp;
}
return NULL;
}
struct utmp *
pututline(const struct utmp * utmp_entry)
{
struct utmp * ut;
int xerrno=errno;
#if 0
/* Ignore the return value. That way, if they've already positioned
the file pointer where they want it, everything will work out. */
if (ut_fd!=-1)
(void) lseek(ut_fd, (off_t) -sizeof(struct utmp), SEEK_CUR);
#endif
if ((ut=getutid(utmp_entry))!=NULL)
lseek(ut_fd, (off_t) -sizeof(struct utmp), SEEK_CUR);
else if( ut_fd==-1 )
return NULL;
else
lseek(ut_fd, (off_t) 0, SEEK_END);
/*
* At this point I could make sure the offset we're at is an exact multiple
* of the sizeof struct utmp. Should I? Up or down? --RdB
*/
if (write(ut_fd, (char *) utmp_entry, sizeof(struct utmp))
!= sizeof(struct utmp))
return NULL;
/* I think this final lseek gets the result Nat was after ... RdB */
lseek(ut_fd, (off_t) -sizeof(struct utmp), SEEK_CUR);
/* Ignoring untrapped errors */
errno=xerrno;
return utmp_entry;
}
void
utmpname(const char * new_ut_name)
{
endutent();
if (new_ut_name!=NULL)
ut_name=new_ut_name;
}
|