]>
git.saurik.com Git - apple/system_cmds.git/blob - mkfile.tproj/mkfile.c
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * "Portions Copyright (c) 1999 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 1.0 (the 'License'). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
14 * The Original Code and all software distributed under the License are
15 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
22 * @APPLE_LICENSE_HEADER_END@
25 * Copyright (c) 1997 Apple Computer, Inc. All Rights Reserved
28 * 29-Aug-97 Daniel Wade (danielw) at Apple
35 #include <sys/types.h>
45 #define BF_SZ 512 /* Size of write chunks */
47 extern void usage(char *, char *);
48 extern void create_file(char *, quad_t
, int, int);
49 extern void err_rm(char *, char *);
56 char *b_num
, *prog_name
;
59 quad_t multiplier
= 1;
65 prog_name
= argv
[0]; /* Get program name */
67 usage(prog_name
, options
);
72 while ((c
=getopt(argc
, argv
, options
)) != EOF
)
74 case 'v': /* Turn on verbose setting */
77 case 'n': /* Create an empty file */
81 usage(prog_name
, options
);
85 /* Stop getting options
88 if (*argv
== NULL
) /* Is there a size given? */
89 usage(prog_name
, options
);
91 b_num
= *argv
++; /* Size of file and byte multiplier */
92 len
= strlen(b_num
) - 1;
94 if (!isdigit(b_num
[len
])) {
95 switch(b_num
[len
]) { /* Figure out multiplier */
106 multiplier
= 1024 * 1024;
110 multiplier
= 1024 * 1024 * 1024;
113 usage(prog_name
, options
);
117 if (*argv
== NULL
) /* Was a file name given? */
118 usage(prog_name
, options
);
120 if ((file_size
= strtoq(b_num
, NULL
, 10)) == 0 )
121 err(1, "Bad file size!");
123 while ( *argv
!= NULL
) { /* Create file for each file_name */
124 create_file(*argv
, file_size
*multiplier
, empty
, verbose
);
133 /* Create a file and make it empty (lseek) or zero'd */
136 create_file(file_name
, size
, empty
, verbose
)
143 int fd
, bytes_written
= BF_SZ
;
147 if ((fd
= open(file_name
, O_RDWR
| O_CREAT
| O_TRUNC
)) == -1)
151 if (empty
) { /* Create an empty file */
152 lseek(fd
, (off_t
)size
-1, SEEK_SET
);
153 if ( 1 != write(fd
, "\0", 1))
154 err_rm(file_name
, "Write Error");
160 * First loop: write BF_SZ chunks until you have
161 * less then BF_SZ bytes to write.
162 * Second loop: write the remaining bytes.
163 * ERRORS in the write process will cause the
164 * file to be removed before the error is
167 for (i
= size
; i
> BF_SZ
; i
-= bytes_written
) {
168 bytes_written
= write (fd
, buff
, BF_SZ
);
169 if ( bytes_written
== -1 )
170 err_rm (file_name
, "Write Error");
172 for (; i
> 0; i
-= bytes_written
) {
173 bytes_written
= write (fd
, buff
, i
);
174 if ( bytes_written
== -1 )
175 err_rm (file_name
, "Write Error");
180 mode
= S_IRUSR
| S_IWUSR
;
181 /* If superuser, then set sticky bit */
185 if (fchmod(fd
, mode
)) /* Change permissions */
186 err_rm(file_name
, NULL
);
188 if ((close(fd
)) == -1)
189 err_rm(file_name
, NULL
);
192 (void)fprintf(stderr
, "%s %qd bytes\n", file_name
, size
);
196 /* On error remove the file */
199 err_rm(filename
, msg
)
204 err(1, "(%s removed) %s", filename
, msg
);
208 /* Print usage string */
210 usage (prog_name
, options
)
214 (void)fprintf(stderr
,
215 "usage: %s [-%s] size[b|k|m|g] filename ...\n", prog_name
, options
);