This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/mbfido/unpack.c

115 lines
2.7 KiB
C
Raw Normal View History

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
*
*****************************************************************************
2004-01-18 13:28:25 +00:00
* Copyright (C) 1997-2004
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
2003-08-15 20:05:34 +00:00
* Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
2001-08-17 05:46:24 +00:00
*****************************************************************************/
2002-06-30 12:48:44 +00:00
#include "../config.h"
2004-02-21 17:22:00 +00:00
#include "../lib/mbselib.h"
2001-08-17 05:46:24 +00:00
#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)
{
char newname[16];
char *cmd = NULL, *unarc;
int rc = 0, ld;
2001-08-17 05:46:24 +00:00
if (!do_quiet) {
mbse_colour(11, 0);
printf("Unpacking file %s\n", fn);
}
2001-08-17 05:46:24 +00:00
if ((unarc = unpacker(fn)) == NULL)
return 1;
2001-08-17 05:46:24 +00:00
if (!getarchiver(unarc))
return 1;
2001-08-17 05:46:24 +00:00
cmd = xstrcpy(archiver.munarc);
2001-08-17 05:46:24 +00:00
if ((cmd == NULL) || (cmd == ""))
return -1;
2001-08-17 05:46:24 +00:00
if ((ld = f_lock(fn)) == -1) {
free(cmd);
return 1;
}
2004-03-02 20:47:23 +00:00
if ((rc = execute_str(cmd,fn,(char *)NULL,(char*)"/dev/null",(char*)"/dev/null",(char*)"/dev/null")) == 0) {
unlink(fn);
} else {
sync();
sleep(1);
2004-01-18 13:28:25 +00:00
WriteError("Warning: unpack %s failed, trying again after sync()", fn);
2004-03-02 20:47:23 +00:00
if ((rc = execute_str(cmd,fn,(char *)NULL,(char*)"/dev/null",(char*)"/dev/null",(char*)"/dev/null")) == 0) {
unlink(fn);
} else {
strncpy(newname,fn,sizeof(newname)-1);
strcpy(newname+8,".bad");
rename(fn,newname);
2001-08-17 05:46:24 +00:00
}
}
2001-08-17 05:46:24 +00:00
free(cmd);
funlock(ld);
return rc;
2001-08-17 05:46:24 +00:00
}