Files
Arquivotheca.Solaris-2.5/lib/libbc/libc/sys/sys5/write.c
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

132 lines
2.9 KiB
C
Executable File

/*
* Copyright (c) 1995, by Sun Microsystems, Inc.
* All rights reserved.
*/
#pragma ident "@(#)write.c 1.4 95/08/29 SMI"
#include "../common/compat.h"
#include <stdio.h>
#include <sys/types.h>
#include <unistd.h>
/*
* If writing to a utmp-like file, map the utmp structure to
* new format on the fly.
*/
extern int conv2utmp(char *, char *, int);
extern int conv2utmpx(char *, char *, int);
int
write(int fd, char *buf, int size)
{
return (bc_write(fd, buf, size));
}
int
bc_write(int fd, char *buf, int size)
{
int fds, ret, off;
int nsize;
char *nbuf;
if ((fds = fd_get(fd)) != -1) {
nsize = getmodsize(size, sizeof (struct utmp),
sizeof (struct utmpx));
if ((nbuf = (void *)malloc(nsize)) == NULL) {
(void) fprintf(stderr, "write: malloc failed\n");
exit(-1);
}
(void) memset(nbuf, 0, nsize);
ret = conv2utmpx(nbuf, buf, size);
if ((ret = _write(fds, nbuf, ret)) == -1) {
free(nbuf);
return (-1);
}
(void) memset(nbuf, 0, nsize);
ret = conv2utmp(nbuf, buf, size);
if ((ret = _write(fd, nbuf, ret)) == -1) {
free(nbuf);
return (-1);
}
free(nbuf);
ret = getmodsize(ret, sizeof (struct compat_utmp),
sizeof (struct utmp));
return (ret);
}
return (_write(fd, buf, size));
}
/* From SunOS/SVR4 utmp.h */
#define USER_PROCESS 7
#define DEAD_PROCESS 8
extern int
conv2utmp(char *nbuf, char *buf, int len)
{
struct utmp *ut;
struct compat_utmp *cut;
cut = (struct compat_utmp *) nbuf;
ut = (struct utmp *) buf;
while ((char *)ut < (buf + len)) {
(void) strcpy(cut->ut_user, ut->ut_name);
(void) memset(cut->ut_id, 0, sizeof (cut->ut_id));
(void) strcpy(cut->ut_line, ut->ut_line);
cut->ut_pid = 0;
if (strcmp(cut->ut_user, "") == 0)
cut->ut_type = DEAD_PROCESS;
else
cut->ut_type = USER_PROCESS;
cut->ut_exit.e_termination = 0;
cut->ut_exit.e_exit = 0;
cut->ut_time = ut->ut_time;
ut++;
cut++;
}
return ((char *) cut - nbuf);
}
extern int
conv2utmpx(char *nbuf, char *buf, int len)
{
struct utmp *ut;
struct utmpx *utx;
utx = (struct utmpx *) nbuf;
ut = (struct utmp *) buf;
while ((char *)ut < (buf + len)) {
(void) strcpy(utx->ut_user, ut->ut_name);
(void) memset(utx->ut_id, 0, sizeof (utx->ut_id));
(void) strcpy(utx->ut_line, ut->ut_line);
utx->ut_pid = 0;
if ((strcmp(utx->ut_user, "") == 0) &&
(strcmp(utx->ut_host, "") == 0))
utx->ut_type = DEAD_PROCESS;
else
utx->ut_type = USER_PROCESS;
utx->ut_exit.e_termination = 0;
utx->ut_exit.e_exit = 0;
utx->ut_tv.tv_sec = ut->ut_time;
utx->ut_tv.tv_usec = 0;
utx->ut_session = 0;
utx->ut_syslen = sizeof (ut->ut_name) + 1;
(void) strcpy(utx->ut_host, ut->ut_host);
ut++;
utx++;
}
return ((char *) utx - nbuf);
}