File: [Development] / xfs-cmds / xfsprogs / mkfile / Attic / xfs_mkfile.c (download)
Revision 1.17, Fri Nov 11 14:27:22 2005 UTC (11 years, 11 months ago) by nathans.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.16: +12 -26
lines
Update copyright/license notices to match SGI legal prefered boilerplate.
Merge of master-melb:xfs-cmds:24374a by kenmcd.
|
/*
* Copyright (c) 2000-2003,2005 Silicon Graphics, Inc.
* All Rights Reserved.
*
* This program 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.
*
* This program is distributed in the hope that it would 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 this program; if not, write the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* Make file utility for xfs.
*/
#include <xfs/libxfs.h>
#include <ctype.h>
#define MAXBUFFERSIZE (256 * 1024)
char *progname;
static void
usage(void)
{
fprintf(stderr, _("%s: [-npv] <size> <name1> [<name2>] ...\n"),
progname);
exit(2);
}
static int
openfd(char *name, int oflags)
{
int fd;
fd = open(name, oflags, 0600);
if (fd < 0) {
perror(name);
return -1;
}
if (!platform_test_xfs_fd(fd)) {
fprintf(stderr, _("%s: "
"file [\"%s\"] is not on an XFS filesystem\n"),
progname, name);
return -1;
}
return fd;
}
int
main(int argc, char **argv)
{
int fd;
char *fname;
loff_t result;
loff_t size = 0;
loff_t mult = 0;
int bytes = 0;
loff_t wrote = 0;
int len = 0;
int c;
int errflg = 0;
int errs = 0;
int nobytes = 0;
int prealloc = 0;
int verbose = 0;
struct dioattr da;
void *buf = NULL;
int buflen = 0, nbuflen;
int bufalign = 0, nbufalign, bufmin;
int oflags;
xfs_flock64_t flck;
progname = basename(argv[0]);
setlocale(LC_ALL, "");
bindtextdomain(PACKAGE, LOCALEDIR);
textdomain(PACKAGE);
while ((c = getopt(argc, argv, "npvV")) != EOF) {
switch(c) {
case 'n':
nobytes++;
break;
case 'p':
prealloc++;
break;
case 'v':
verbose++;
break;
case 'V':
printf(_("%s version %s\n"), progname, VERSION);
exit(0);
default:
errflg++;
break;
}
}
if (argc < optind + 2 || errflg)
usage();
mult = 1;
len = strlen(argv[optind]);
if (isalpha((int)argv[optind][len-1])) {
switch ((int)argv[optind][len-1]) {
case 'k':
case 'K':
mult = 1024;
break;
case 'b':
case 'B':
mult = 512;
break;
case 'm':
case 'M':
mult = 1024;
mult *= 1024;
break;
case 'g':
case 'G':
mult = 1024;
mult *= 1024;
mult *= 1024;
break;
default:
fprintf(stderr, _("unknown size %s\n"), argv[optind]);
usage();
}
argv[optind][len-1] = '\0';
}
size = strtoll(argv[optind], NULL, 10) * mult;
optind++;
while (optind < argc) {
if (verbose)
fprintf(stdout, _("%s %lld bytes %s\n"),
argv[optind], (long long)size,
prealloc
? _("(pre-allocated)")
: "");
oflags = O_CREAT|O_TRUNC|O_WRONLY|(nobytes ? 0 : O_DIRECT);
fname = argv[optind];
if ((fd = openfd(fname, oflags)) == -1) {
optind++;
errs++;
continue;
}
if ( (oflags & O_DIRECT)
&& ( (fd < 0 && errno == EINVAL)
|| xfsctl(fname, fd, XFS_IOC_DIOINFO, &da) < 0)) {
close(fd);
oflags &= ~O_DIRECT;
if ((fd = openfd(argv[optind], oflags)) == -1) {
optind++;
errs++;
continue;
}
}
if (size == 0) {
close(fd);
optind++;
continue;
}
if ((result = lseek64(fd, size - 1, SEEK_SET)) < 0LL) {
fprintf(stderr, _("lseek64 error, result = %lld\n"),
(long long)result);
if (errno)
perror(argv[optind]);
errs++;
} else if (nobytes) {
if (write(fd, "", 1) < 0) {
perror(argv[optind]);
errs++;
}
} else {
flck.l_whence = SEEK_SET;
flck.l_start = 0LL;
flck.l_len = size;
if (prealloc)
xfsctl(fname, fd, XFS_IOC_RESVSP64, &flck);
if (oflags & O_DIRECT) {
nbufalign = da.d_mem;
if ( da.d_miniosz <= MAXBUFFERSIZE
&& MAXBUFFERSIZE <= da.d_maxiosz)
nbuflen = MAXBUFFERSIZE;
else if (da.d_maxiosz < MAXBUFFERSIZE)
nbuflen = da.d_maxiosz;
else
nbuflen = da.d_miniosz;
bufmin = da.d_miniosz;
} else {
nbuflen = MAXBUFFERSIZE;
nbufalign = sizeof(long);
bufmin = 0;
}
if (nbuflen > buflen || nbufalign > bufalign) {
if (buf)
free(buf);
buf = memalign(nbufalign, nbuflen);
buflen = nbuflen;
bzero(buf, nbuflen);
nbufalign = bufalign;
}
wrote = 0;
lseek64(fd, 0LL, SEEK_SET);
while (wrote < size) {
if (size - wrote >= buflen)
bytes = buflen;
else if (bufmin)
bytes = roundup(size - wrote, bufmin);
else
bytes = size - wrote;
len = write(fd, buf, bytes);
if (len < 0) {
perror(argv[optind]);
unlink(argv[optind]);
errs++;
break;
}
wrote += len;
}
if (wrote > size && ftruncate64(fd, size) < 0) {
perror(argv[optind]);
unlink(argv[optind]);
errs++;
}
}
if ( close(fd) < 0 ) {
perror(argv[optind]);
unlink(argv[optind]);
errs++;
}
optind++;
}
return errs != 0;
}