2 * Copyright (c) 2000 Sheldon Hearn <sheldonh@FreeBSD.org>.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/usr.bin/truncate/truncate.c,v 1.6.2.1 2000/08/04 08:05:52 sheldonh Exp $
39 static off_t
parselength(char *, off_t
*);
40 static void usage(void);
43 static int do_relative
;
48 main(int argc
, char **argv
)
52 off_t oflow
, rsize
, sz
, tsize
;
53 int ch
, error
, fd
, oflags
;
56 rsize
= tsize
= sz
= 0;
59 while ((ch
= getopt(argc
, argv
, "cr:s:")) != -1)
69 if (parselength(optarg
, &sz
) == -1)
71 "invalid size argument `%s'", optarg
);
72 if (*optarg
== '+' || *optarg
== '-')
85 * Exactly one of do_refer or got_size must be specified. Since
86 * do_relative implies got_size, do_relative and do_refer are
87 * also mutually exclusive. See usage() for allowed invocations.
89 if (do_refer
+ got_size
!= 1 || argc
< 1)
92 if (stat(rname
, &sb
) == -1)
93 err(EXIT_FAILURE
, "%s", rname
);
95 } else if (do_relative
)
103 oflags
= O_WRONLY
| O_CREAT
;
104 omode
= S_IRUSR
| S_IWUSR
| S_IRGRP
| S_IROTH
;
106 while ((fname
= *argv
++) != NULL
) {
107 if ((fd
= open(fname
, oflags
, omode
)) == -1) {
108 if (errno
!= ENOENT
) {
115 if (fstat(fd
, &sb
) == -1) {
120 oflow
= sb
.st_size
+ rsize
;
121 if (oflow
< (sb
.st_size
+ rsize
)) {
132 if (ftruncate(fd
, tsize
) == -1) {
141 return error
? EXIT_FAILURE
: EXIT_SUCCESS
;
145 * Return the numeric value of a string given in the form [+-][0-9]+[GMK]
146 * or -1 on format error or overflow.
149 parselength(char *ls
, off_t
*sz
)
165 #define ASSIGN_CHK_OFLOW(x, y) if (x < y) return -1; y = x
167 * Calculate the value of the decimal digit string, failing
170 while (isdigit(*ls
)) {
171 oflow
= length
* 10 + *ls
++ - '0';
172 ASSIGN_CHK_OFLOW(oflow
, length
);
177 oflow
= length
* 1024;
178 ASSIGN_CHK_OFLOW(oflow
, length
);
181 oflow
= length
* 1024;
182 ASSIGN_CHK_OFLOW(oflow
, length
);
185 oflow
= length
* 1024;
186 ASSIGN_CHK_OFLOW(oflow
, length
);
191 oflow
= length
* 1024;
192 ASSIGN_CHK_OFLOW(oflow
, length
);
199 *sz
= length
* lsign
;
206 fprintf(stderr
, "%s\n%s\n",
207 "usage: truncate [-c] -s [+|-]size[K|M|G|T] file ...",
208 " truncate [-c] -r rfile file ...");