#include <stdio.h>
#include <errno.h>
#include <string.h>
#include <limits.h>
#include <stdlib.h>
#include <unistd.h>
#include <sys/types.h>
#include <pkgstrct.h>
#include <locale.h>
#include <libintl.h>
#include <pkglib.h>
#include "install.h"
#include "libinst.h"
#include "libadm.h"
extern struct cfextra **extlist;
extern struct cfent **eptlist;
extern char *pkginst;
#define ERR_WRITE "write of intermediate contents file failed"
static char *check_db_entry(VFP_T *, struct cfextra *, int, char *, int *);
int
dofinal(PKGserver server, VFP_T *vfpo, int rmflag, char *myclass, char *prog)
{
struct cfextra entry;
int n, indx, dbchg;
char *save_path = NULL;
entry.cf_ent.pinfo = NULL;
entry.fsys_value = BADFSYS;
entry.fsys_base = BADFSYS;
indx = 0;
while (extlist && extlist[indx] && (extlist[indx]->cf_ent.ftype == 'i'))
indx++;
dbchg = 0;
if (pkgopenfilter(server, pkginst) != 0)
quit(99);
while (n = srchcfile(&(entry.cf_ent), "*", server)) {
if (n < 0) {
char *errstr = getErrstr();
progerr(gettext("bad entry read in contents file"));
logerr(gettext("pathname=%s"),
(entry.cf_ent.path && *(entry.cf_ent.path)) ?
entry.cf_ent.path : "Unknown");
logerr(gettext("problem=%s"),
(errstr && *errstr) ? errstr : "Unknown");
quit(99);
}
save_path = check_db_entry(vfpo, &entry, rmflag, myclass,
&dbchg);
if (save_path != NULL) {
entry.cf_ent.path = save_path;
save_path = NULL;
}
}
pkgclosefilter(server);
return (dbchg);
}
static char *
check_db_entry(VFP_T *vfpo, struct cfextra *entry, int rmflag, char *myclass,
int *dbchg)
{
struct pinfo *pinfo;
int fs_entry;
char *save_path = NULL;
char *tp;
if (myclass && strcmp(myclass, entry->cf_ent.pkg_class)) {
return (NULL);
}
pinfo = entry->cf_ent.pinfo;
while (pinfo) {
if (strcmp(pkginst, pinfo->pkg) == 0)
break;
pinfo = pinfo->next;
}
if (pinfo == NULL)
return (NULL);
if (rmflag && (pinfo->status == RM_RDY)) {
*dbchg = 1;
(void) eptstat(&(entry->cf_ent), pkginst, '@');
if (entry->cf_ent.npkgs) {
if (putcvfpfile(&(entry->cf_ent), vfpo)) {
progerr(gettext(ERR_WRITE));
quit(99);
}
} else if (entry->cf_ent.path != NULL) {
(void) vfpSetModified(vfpo);
vfpPutc(vfpo, '-');
vfpPuts(vfpo, entry->cf_ent.path);
vfpPutc(vfpo, '\n');
}
return (NULL);
} else if (!rmflag && (pinfo->status == INST_RDY)) {
*dbchg = 1;
tp = fixpath(entry->cf_ent.path);
save_path = entry->cf_ent.path;
entry->cf_ent.path = tp;
fs_entry = fsys(entry->cf_ent.path);
if (is_remote_fs_n(fs_entry) && !is_fs_writeable_n(fs_entry)) {
pinfo->status = SERVED_FILE;
entry->cf_ent.path = save_path;
} else {
if (is_mounted_n(fs_entry)) {
int n;
n = finalck((&entry->cf_ent), 1, 1, B_FALSE);
pinfo->status = ENTRY_OK;
if (n != 0) {
pinfo->status = NOT_FND;
}
}
if (is_served_n(fs_entry))
pinfo->status = SERVED_FILE;
entry->cf_ent.path = save_path;
save_path = NULL;
}
}
if (putcvfpfile(&(entry->cf_ent), vfpo)) {
progerr(gettext(ERR_WRITE));
quit(99);
}
return (save_path);
}