]>
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 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
26 * Copyright (c) 1997 Apple Computer, Inc. All Rights Reserved
29 * 29-Aug-97 Daniel Wade (danielw) at Apple
36 #include <sys/types.h>
46 #define BF_SZ 512 /* Size of write chunks */
48 extern void usage(char *, char *);
49 extern void create_file(char *, quad_t
, int, int);
50 extern void err_rm(char *, char *);
57 char *b_num
, *prog_name
;
60 quad_t multiplier
= 1;
66 prog_name
= argv
[0]; /* Get program name */
68 usage(prog_name
, options
);
73 while ((c
=getopt(argc
, argv
, options
)) != EOF
)
75 case 'v': /* Turn on verbose setting */
78 case 'n': /* Create an empty file */
82 usage(prog_name
, options
);
86 /* Stop getting options
89 if (*argv
== NULL
) /* Is there a size given? */
90 usage(prog_name
, options
);
92 b_num
= *argv
++; /* Size of file and byte multiplier */
93 len
= strlen(b_num
) - 1;
95 if (!isdigit(b_num
[len
])) {
96 switch(b_num
[len
]) { /* Figure out multiplier */
107 multiplier
= 1024 * 1024;
111 multiplier
= 1024 * 1024 * 1024;
114 usage(prog_name
, options
);
118 if (*argv
== NULL
) /* Was a file name given? */
119 usage(prog_name
, options
);
121 if ((file_size
= strtoq(b_num
, NULL
, 10)) == 0 )
122 err(1, "Bad file size!");
124 while ( *argv
!= NULL
) { /* Create file for each file_name */
125 create_file(*argv
, file_size
*multiplier
, empty
, verbose
);
134 /* Create a file and make it empty (lseek) or zero'd */
137 create_file(file_name
, size
, empty
, verbose
)
144 int fd
, bytes_written
= BF_SZ
;
148 if ((fd
= open(file_name
, O_RDWR
| O_CREAT
| O_TRUNC
)) == -1)
152 if (empty
) { /* Create an empty file */
153 lseek(fd
, (off_t
)size
-1, SEEK_SET
);
154 if ( 1 != write(fd
, "\0", 1))
155 err_rm(file_name
, "Write Error");
161 * First loop: write BF_SZ chunks until you have
162 * less then BF_SZ bytes to write.
163 * Second loop: write the remaining bytes.
164 * ERRORS in the write process will cause the
165 * file to be removed before the error is
168 for (i
= size
; i
> BF_SZ
; i
-= bytes_written
) {
169 bytes_written
= write (fd
, buff
, BF_SZ
);
170 if ( bytes_written
== -1 )
171 err_rm (file_name
, "Write Error");
173 for (; i
> 0; i
-= bytes_written
) {
174 bytes_written
= write (fd
, buff
, i
);
175 if ( bytes_written
== -1 )
176 err_rm (file_name
, "Write Error");
181 mode
= S_IRUSR
| S_IWUSR
;
182 /* If superuser, then set sticky bit */
186 if (fchmod(fd
, mode
)) /* Change permissions */
187 err_rm(file_name
, NULL
);
189 if ((close(fd
)) == -1)
190 err_rm(file_name
, NULL
);
193 (void)fprintf(stderr
, "%s %qd bytes\n", file_name
, size
);
197 /* On error remove the file */
200 err_rm(filename
, msg
)
205 err(1, "(%s removed) %s", filename
, msg
);
209 /* Print usage string */
211 usage (prog_name
, options
)
215 (void)fprintf(stderr
,
216 "usage: %s [-%s] size[b|k|m|g] filename ...\n", prog_name
, options
);