2001-08-17 05:46:24 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
*
|
2002-01-07 19:16:03 +00:00
|
|
|
* $Id$
|
2002-08-05 13:30:44 +00:00
|
|
|
* Purpose ...............: Unpacker
|
2001-08-17 05:46:24 +00:00
|
|
|
*
|
|
|
|
*****************************************************************************
|
2002-01-07 19:16:03 +00:00
|
|
|
* Copyright (C) 1997-2002
|
2001-08-17 05:46:24 +00:00
|
|
|
*
|
2002-01-07 19:16:03 +00:00
|
|
|
* Michiel Broek FIDO: 2:280/2802
|
|
|
|
* Beekmansbos 10
|
2001-08-17 05:46:24 +00:00
|
|
|
* 1971 BV IJmuiden
|
|
|
|
* the Netherlands
|
|
|
|
*
|
|
|
|
* This file is part of MBSE BBS.
|
|
|
|
*
|
|
|
|
* This BBS is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2, or (at your option) any
|
|
|
|
* later version.
|
|
|
|
*
|
|
|
|
* MBSE BBS is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with MBSE BBS; see the file COPYING. If not, write to the Free
|
|
|
|
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../config.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "../lib/libs.h"
|
2002-06-30 12:48:44 +00:00
|
|
|
#include "../lib/memwatch.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "../lib/structs.h"
|
2002-01-07 19:16:03 +00:00
|
|
|
#include "../lib/users.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
#include "../lib/records.h"
|
|
|
|
#include "../lib/common.h"
|
|
|
|
#include "../lib/clcomm.h"
|
|
|
|
#include "flock.h"
|
2002-08-05 13:30:44 +00:00
|
|
|
#include "unpack.h"
|
2001-08-17 05:46:24 +00:00
|
|
|
|
|
|
|
#define UNPACK_FACTOR 300
|
|
|
|
#define TOSS_FACTOR 120
|
|
|
|
|
|
|
|
|
2002-08-05 13:30:44 +00:00
|
|
|
extern int do_quiet;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
int checkspace(char *dir, char *fn, int factor)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
struct statfs sfs;
|
|
|
|
|
|
|
|
if ((stat(fn,&st) != 0) || (statfs(dir,&sfs) != 0)) {
|
|
|
|
WriteError("Cannot stat \"%s\" or statfs \"%s\", assume enough space", fn, dir);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((((st.st_size / sfs.f_bsize +1) * factor) / 100L) > sfs.f_bfree) {
|
|
|
|
Syslog('!', "Only %lu %lu-byte blocks left on device where %s is located",
|
|
|
|
sfs.f_bfree,sfs.f_bsize,dir);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Unpack archive
|
|
|
|
*/
|
|
|
|
int unpack(char *fn)
|
|
|
|
{
|
2002-02-15 19:29:33 +00:00
|
|
|
char newname[16];
|
|
|
|
char *cmd = NULL, *unarc;
|
|
|
|
int rc = 0, ld;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-02-15 19:29:33 +00:00
|
|
|
if (!do_quiet) {
|
|
|
|
colour(11, 0);
|
|
|
|
printf("Unpacking file %s\n", fn);
|
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-02-15 19:29:33 +00:00
|
|
|
if ((unarc = unpacker(fn)) == NULL)
|
|
|
|
return 1;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-02-15 19:29:33 +00:00
|
|
|
if (!getarchiver(unarc))
|
|
|
|
return 1;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-02-15 19:29:33 +00:00
|
|
|
cmd = xstrcpy(archiver.munarc);
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-02-15 19:29:33 +00:00
|
|
|
if ((cmd == NULL) || (cmd == ""))
|
|
|
|
return -1;
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-02-15 19:29:33 +00:00
|
|
|
if ((ld = f_lock(fn)) == -1) {
|
|
|
|
free(cmd);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((rc = execute(cmd,fn,(char *)NULL,(char*)"/dev/null",(char*)"/dev/null",(char*)"/dev/null")) == 0) {
|
2002-03-27 20:35:19 +00:00
|
|
|
sync();
|
2002-02-15 19:29:33 +00:00
|
|
|
unlink(fn);
|
|
|
|
} else {
|
|
|
|
sync();
|
|
|
|
sleep(1);
|
2002-02-19 20:51:05 +00:00
|
|
|
Syslog('!', "Warning: unpack %s failed, trying again after sync()", fn);
|
2002-02-15 19:29:33 +00:00
|
|
|
if ((rc = execute(cmd,fn,(char *)NULL,(char*)"/dev/null",(char*)"/dev/null",(char*)"/dev/null")) == 0) {
|
2002-03-27 20:35:19 +00:00
|
|
|
sync();
|
2002-02-15 19:29:33 +00:00
|
|
|
unlink(fn);
|
|
|
|
} else {
|
2002-03-27 20:35:19 +00:00
|
|
|
sync();
|
2002-02-15 19:29:33 +00:00
|
|
|
strncpy(newname,fn,sizeof(newname)-1);
|
|
|
|
strcpy(newname+8,".bad");
|
|
|
|
rename(fn,newname);
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
2002-02-15 19:29:33 +00:00
|
|
|
}
|
2001-08-17 05:46:24 +00:00
|
|
|
|
2002-02-15 19:29:33 +00:00
|
|
|
free(cmd);
|
|
|
|
funlock(ld);
|
|
|
|
return rc;
|
2001-08-17 05:46:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|