1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43#include "libbb.h"
44
45
46
47
48enum {
49 ifd = STDIN_FILENO,
50 ofd = STDOUT_FILENO,
51};
52
53static const struct suffix_mult dd_suffixes[] = {
54 { "c", 1 },
55 { "w", 2 },
56 { "b", 512 },
57 { "kD", 1000 },
58 { "k", 1024 },
59 { "K", 1024 },
60 { "MD", 1000000 },
61 { "M", 1048576 },
62 { "GD", 1000000000 },
63 { "G", 1073741824 },
64 { "", 0 }
65};
66
67struct globals {
68 off_t out_full, out_part, in_full, in_part;
69#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE
70 unsigned long long total_bytes;
71 unsigned long long begin_time_us;
72#endif
73} FIX_ALIASING;
74#define G (*(struct globals*)&bb_common_bufsiz1)
75#define INIT_G() do { \
76 \
77 memset(&G, 0, sizeof(G)); \
78} while (0)
79
80
81static void dd_output_status(int UNUSED_PARAM cur_signal)
82{
83#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE
84 double seconds;
85 unsigned long long bytes_sec;
86 unsigned long long now_us = monotonic_us();
87#endif
88
89
90 fprintf(stderr, "%"OFF_FMT"u+%"OFF_FMT"u records in\n"
91 "%"OFF_FMT"u+%"OFF_FMT"u records out\n",
92 G.in_full, G.in_part,
93 G.out_full, G.out_part);
94
95#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE
96 fprintf(stderr, "%llu bytes (%sB) copied, ",
97 G.total_bytes,
98
99 make_human_readable_str(G.total_bytes, 1, 0)
100 );
101
102
103
104
105
106
107 seconds = (now_us - G.begin_time_us) / 1000000.0;
108 bytes_sec = G.total_bytes / seconds;
109 fprintf(stderr, "%f seconds, %sB/s\n",
110 seconds,
111
112 make_human_readable_str(bytes_sec, 1, 0)
113 );
114#endif
115}
116
117static ssize_t full_write_or_warn(const void *buf, size_t len,
118 const char *const filename)
119{
120 ssize_t n = full_write(ofd, buf, len);
121 if (n < 0)
122 bb_perror_msg("writing '%s'", filename);
123 return n;
124}
125
126static bool write_and_stats(const void *buf, size_t len, size_t obs,
127 const char *filename)
128{
129 ssize_t n = full_write_or_warn(buf, len, filename);
130 if (n < 0)
131 return 1;
132 if ((size_t)n == obs)
133 G.out_full++;
134 else if (n)
135 G.out_part++;
136#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE
137 G.total_bytes += n;
138#endif
139 return 0;
140}
141
142#if ENABLE_LFS
143# define XATOU_SFX xatoull_sfx
144#else
145# define XATOU_SFX xatoul_sfx
146#endif
147
148int dd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
149int dd_main(int argc UNUSED_PARAM, char **argv)
150{
151 enum {
152
153
154 FLAG_NOTRUNC = 1 << 0,
155 FLAG_SYNC = 1 << 1,
156 FLAG_NOERROR = 1 << 2,
157 FLAG_FSYNC = 1 << 3,
158
159 FLAG_TWOBUFS = 1 << 4,
160 FLAG_COUNT = 1 << 5,
161 };
162 static const char keywords[] ALIGN1 =
163 "bs\0""count\0""seek\0""skip\0""if\0""of\0"
164#if ENABLE_FEATURE_DD_IBS_OBS
165 "ibs\0""obs\0""conv\0"
166#endif
167 ;
168#if ENABLE_FEATURE_DD_IBS_OBS
169 static const char conv_words[] ALIGN1 =
170 "notrunc\0""sync\0""noerror\0""fsync\0";
171#endif
172 enum {
173 OP_bs = 0,
174 OP_count,
175 OP_seek,
176 OP_skip,
177 OP_if,
178 OP_of,
179#if ENABLE_FEATURE_DD_IBS_OBS
180 OP_ibs,
181 OP_obs,
182 OP_conv,
183
184 OP_conv_notrunc = 0,
185 OP_conv_sync,
186 OP_conv_noerror,
187 OP_conv_fsync,
188
189
190
191
192
193
194
195
196
197
198
199
200#endif
201 };
202 int exitcode = EXIT_FAILURE;
203 size_t ibs = 512, obs = 512;
204 ssize_t n, w;
205 char *ibuf, *obuf;
206
207 struct {
208 int flags;
209 size_t oc;
210 off_t count;
211 off_t seek, skip;
212 const char *infile, *outfile;
213 } Z;
214#define flags (Z.flags )
215#define oc (Z.oc )
216#define count (Z.count )
217#define seek (Z.seek )
218#define skip (Z.skip )
219#define infile (Z.infile )
220#define outfile (Z.outfile)
221
222 memset(&Z, 0, sizeof(Z));
223 INIT_G();
224
225
226 for (n = 1; argv[n]; n++) {
227 int what;
228 char *val;
229 char *arg = argv[n];
230
231#if ENABLE_DESKTOP
232
233
234 if (arg[0] == '-' && arg[1] == '-' && arg[2] == '\0')
235 continue;
236#endif
237 val = strchr(arg, '=');
238 if (val == NULL)
239 bb_show_usage();
240 *val = '\0';
241 what = index_in_strings(keywords, arg);
242 if (what < 0)
243 bb_show_usage();
244
245 val++;
246#if ENABLE_FEATURE_DD_IBS_OBS
247 if (what == OP_ibs) {
248
249 ibs = xatoul_range_sfx(val, 1, ((size_t)-1L)/2, dd_suffixes);
250
251 }
252 if (what == OP_obs) {
253 obs = xatoul_range_sfx(val, 1, ((size_t)-1L)/2, dd_suffixes);
254
255 }
256 if (what == OP_conv) {
257 while (1) {
258
259
260
261
262 arg = strchr(val, ',');
263 if (arg)
264 *arg = '\0';
265 what = index_in_strings(conv_words, val);
266 if (what < 0)
267 bb_error_msg_and_die(bb_msg_invalid_arg, val, "conv");
268 flags |= (1 << what);
269 if (!arg)
270 break;
271
272 val = arg + 1;
273 }
274 continue;
275 }
276#endif
277 if (what == OP_bs) {
278 ibs = obs = xatoul_range_sfx(val, 1, ((size_t)-1L)/2, dd_suffixes);
279
280 }
281
282 if (what == OP_count) {
283 flags |= FLAG_COUNT;
284 count = XATOU_SFX(val, dd_suffixes);
285
286 }
287 if (what == OP_seek) {
288 seek = XATOU_SFX(val, dd_suffixes);
289
290 }
291 if (what == OP_skip) {
292 skip = XATOU_SFX(val, dd_suffixes);
293
294 }
295 if (what == OP_if) {
296 infile = val;
297
298 }
299 if (what == OP_of) {
300 outfile = val;
301
302 }
303 }
304
305
306 ibuf = obuf = xmalloc(ibs);
307 if (ibs != obs) {
308 flags |= FLAG_TWOBUFS;
309 obuf = xmalloc(obs);
310 }
311
312#if ENABLE_FEATURE_DD_SIGNAL_HANDLING
313 signal_SA_RESTART_empty_mask(SIGUSR1, dd_output_status);
314#endif
315#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE
316 G.begin_time_us = monotonic_us();
317#endif
318
319 if (infile != NULL)
320 xmove_fd(xopen(infile, O_RDONLY), ifd);
321 else {
322 infile = bb_msg_standard_input;
323 }
324 if (outfile != NULL) {
325 int oflag = O_WRONLY | O_CREAT;
326
327 if (!seek && !(flags & FLAG_NOTRUNC))
328 oflag |= O_TRUNC;
329
330 xmove_fd(xopen(outfile, oflag), ofd);
331
332 if (seek && !(flags & FLAG_NOTRUNC)) {
333 if (ftruncate(ofd, seek * obs) < 0) {
334 struct stat st;
335
336 if (fstat(ofd, &st) < 0
337 || S_ISREG(st.st_mode)
338 || S_ISDIR(st.st_mode)
339 ) {
340 goto die_outfile;
341 }
342 }
343 }
344 } else {
345 outfile = bb_msg_standard_output;
346 }
347 if (skip) {
348 if (lseek(ifd, skip * ibs, SEEK_CUR) < 0) {
349 while (skip-- > 0) {
350 n = safe_read(ifd, ibuf, ibs);
351 if (n < 0)
352 goto die_infile;
353 if (n == 0)
354 break;
355 }
356 }
357 }
358 if (seek) {
359 if (lseek(ofd, seek * obs, SEEK_CUR) < 0)
360 goto die_outfile;
361 }
362
363 while (!(flags & FLAG_COUNT) || (G.in_full + G.in_part != count)) {
364 n = safe_read(ifd, ibuf, ibs);
365 if (n == 0)
366 break;
367 if (n < 0) {
368
369 if (!(flags & FLAG_NOERROR))
370 goto die_infile;
371 bb_simple_perror_msg(infile);
372
373 xlseek(ifd, ibs, SEEK_CUR);
374
375
376 n = 0;
377 }
378 if ((size_t)n == ibs)
379 G.in_full++;
380 else {
381 G.in_part++;
382 if (flags & FLAG_SYNC) {
383 memset(ibuf + n, 0, ibs - n);
384 n = ibs;
385 }
386 }
387 if (flags & FLAG_TWOBUFS) {
388 char *tmp = ibuf;
389 while (n) {
390 size_t d = obs - oc;
391
392 if (d > (size_t)n)
393 d = n;
394 memcpy(obuf + oc, tmp, d);
395 n -= d;
396 tmp += d;
397 oc += d;
398 if (oc == obs) {
399 if (write_and_stats(obuf, obs, obs, outfile))
400 goto out_status;
401 oc = 0;
402 }
403 }
404 } else if (write_and_stats(ibuf, n, obs, outfile))
405 goto out_status;
406
407 if (flags & FLAG_FSYNC) {
408 if (fsync(ofd) < 0)
409 goto die_outfile;
410 }
411 }
412
413 if (ENABLE_FEATURE_DD_IBS_OBS && oc) {
414 w = full_write_or_warn(obuf, oc, outfile);
415 if (w < 0) goto out_status;
416 if (w > 0) G.out_part++;
417 }
418 if (close(ifd) < 0) {
419 die_infile:
420 bb_simple_perror_msg_and_die(infile);
421 }
422
423 if (close(ofd) < 0) {
424 die_outfile:
425 bb_simple_perror_msg_and_die(outfile);
426 }
427
428 exitcode = EXIT_SUCCESS;
429 out_status:
430 dd_output_status(0);
431
432 if (ENABLE_FEATURE_CLEAN_UP) {
433 free(obuf);
434 if (flags & FLAG_TWOBUFS)
435 free(ibuf);
436 }
437
438 return exitcode;
439}
440