2006-06-02 02:30:42 +08:00
|
|
|
/* vi: set sw=4 ts=4: */
|
2000-09-21 03:22:26 +08:00
|
|
|
/*
|
2001-02-23 07:37:30 +08:00
|
|
|
* dos2unix for BusyBox
|
|
|
|
*
|
2017-04-17 22:13:32 +08:00
|
|
|
* dos2unix '\n' converter 0.5.0
|
2006-03-15 05:49:18 +08:00
|
|
|
* based on Unix2Dos 0.9.0 by Peter Hanecak (made 19.2.1997)
|
2001-02-23 07:37:30 +08:00
|
|
|
* Copyright 1997,.. by Peter Hanecak <hanecak@megaloman.sk>.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* dos2unix filters reading input from stdin and writing output to stdout.
|
|
|
|
*
|
2010-08-17 02:14:46 +08:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2016-11-23 21:46:56 +08:00
|
|
|
*/
|
|
|
|
//config:config DOS2UNIX
|
2017-07-19 04:01:24 +08:00
|
|
|
//config: bool "dos2unix (5.1 kb)"
|
2016-11-23 21:46:56 +08:00
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 15:50:55 +08:00
|
|
|
//config: dos2unix is used to convert a text file from DOS format to
|
|
|
|
//config: UNIX format, and vice versa.
|
2016-11-23 21:46:56 +08:00
|
|
|
//config:
|
|
|
|
//config:config UNIX2DOS
|
2017-07-19 04:01:24 +08:00
|
|
|
//config: bool "unix2dos (5.1 kb)"
|
2016-11-23 21:46:56 +08:00
|
|
|
//config: default y
|
|
|
|
//config: help
|
2017-07-21 15:50:55 +08:00
|
|
|
//config: unix2dos is used to convert a text file from UNIX format to
|
|
|
|
//config: DOS format, and vice versa.
|
2016-11-23 21:46:56 +08:00
|
|
|
|
|
|
|
//applet:IF_DOS2UNIX(APPLET_NOEXEC(dos2unix, dos2unix, BB_DIR_USR_BIN, BB_SUID_DROP, dos2unix))
|
|
|
|
//applet:IF_UNIX2DOS(APPLET_NOEXEC(unix2dos, dos2unix, BB_DIR_USR_BIN, BB_SUID_DROP, unix2dos))
|
|
|
|
|
|
|
|
//kbuild:lib-$(CONFIG_DOS2UNIX) += dos2unix.o
|
|
|
|
//kbuild:lib-$(CONFIG_UNIX2DOS) += dos2unix.o
|
2000-09-21 03:22:26 +08:00
|
|
|
|
2011-03-31 20:43:25 +08:00
|
|
|
//usage:#define dos2unix_trivial_usage
|
|
|
|
//usage: "[-ud] [FILE]"
|
|
|
|
//usage:#define dos2unix_full_usage "\n\n"
|
|
|
|
//usage: "Convert FILE in-place from DOS to Unix format.\n"
|
|
|
|
//usage: "When no file is given, use stdin/stdout.\n"
|
|
|
|
//usage: "\n -u dos2unix"
|
|
|
|
//usage: "\n -d unix2dos"
|
|
|
|
//usage:
|
|
|
|
//usage:#define unix2dos_trivial_usage
|
|
|
|
//usage: "[-ud] [FILE]"
|
|
|
|
//usage:#define unix2dos_full_usage "\n\n"
|
|
|
|
//usage: "Convert FILE in-place from Unix to DOS format.\n"
|
|
|
|
//usage: "When no file is given, use stdin/stdout.\n"
|
|
|
|
//usage: "\n -u dos2unix"
|
|
|
|
//usage: "\n -d unix2dos"
|
|
|
|
|
2007-05-27 03:00:18 +08:00
|
|
|
#include "libbb.h"
|
2000-09-21 03:22:26 +08:00
|
|
|
|
2010-10-01 05:31:12 +08:00
|
|
|
/* This is a NOEXEC applet. Be very careful! */
|
|
|
|
|
2007-06-04 18:16:52 +08:00
|
|
|
enum {
|
2006-06-02 02:30:42 +08:00
|
|
|
CT_UNIX2DOS = 1,
|
|
|
|
CT_DOS2UNIX
|
2007-06-04 18:16:52 +08:00
|
|
|
};
|
2005-10-15 18:23:55 +08:00
|
|
|
|
2005-09-01 11:11:19 +08:00
|
|
|
/* if fn is NULL then input is stdin and output is stdout */
|
2008-02-17 22:31:50 +08:00
|
|
|
static void convert(char *fn, int conv_type)
|
2001-07-25 15:22:55 +08:00
|
|
|
{
|
2005-09-01 11:11:19 +08:00
|
|
|
FILE *in, *out;
|
2016-01-17 10:50:36 +08:00
|
|
|
int ch;
|
2008-06-14 12:28:41 +08:00
|
|
|
char *temp_fn = temp_fn; /* for compiler */
|
|
|
|
char *resolved_fn = resolved_fn;
|
2001-04-12 10:26:04 +08:00
|
|
|
|
2007-06-04 18:16:52 +08:00
|
|
|
in = stdin;
|
|
|
|
out = stdout;
|
2001-04-12 10:26:04 +08:00
|
|
|
if (fn != NULL) {
|
2008-06-14 12:28:41 +08:00
|
|
|
struct stat st;
|
2016-01-17 10:50:36 +08:00
|
|
|
int fd;
|
2008-06-14 12:28:41 +08:00
|
|
|
|
|
|
|
resolved_fn = xmalloc_follow_symlinks(fn);
|
|
|
|
if (resolved_fn == NULL)
|
|
|
|
bb_simple_perror_msg_and_die(fn);
|
2008-07-22 07:05:26 +08:00
|
|
|
in = xfopen_for_read(resolved_fn);
|
2016-01-17 10:50:36 +08:00
|
|
|
xfstat(fileno(in), &st, resolved_fn);
|
2008-06-14 12:28:41 +08:00
|
|
|
|
|
|
|
temp_fn = xasprintf("%sXXXXXX", resolved_fn);
|
2016-01-17 10:50:36 +08:00
|
|
|
fd = xmkstemp(temp_fn);
|
|
|
|
if (fchmod(fd, st.st_mode) == -1)
|
2008-06-14 12:28:41 +08:00
|
|
|
bb_simple_perror_msg_and_die(temp_fn);
|
2016-01-17 10:50:36 +08:00
|
|
|
fchown(fd, st.st_uid, st.st_gid);
|
2010-10-22 19:27:16 +08:00
|
|
|
|
2016-01-17 10:50:36 +08:00
|
|
|
out = xfdopen_for_write(fd);
|
2001-04-12 10:26:04 +08:00
|
|
|
}
|
|
|
|
|
2016-01-17 10:50:36 +08:00
|
|
|
while ((ch = fgetc(in)) != EOF) {
|
|
|
|
if (ch == '\r')
|
2005-09-01 11:11:19 +08:00
|
|
|
continue;
|
2016-01-17 10:50:36 +08:00
|
|
|
if (ch == '\n')
|
2007-07-21 21:27:44 +08:00
|
|
|
if (conv_type == CT_UNIX2DOS)
|
2005-09-01 11:11:19 +08:00
|
|
|
fputc('\r', out);
|
2016-01-17 10:50:36 +08:00
|
|
|
fputc(ch, out);
|
2001-04-12 10:26:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (fn != NULL) {
|
2006-03-15 05:49:18 +08:00
|
|
|
if (fclose(in) < 0 || fclose(out) < 0) {
|
2008-06-14 12:28:41 +08:00
|
|
|
unlink(temp_fn);
|
2008-02-17 22:31:50 +08:00
|
|
|
bb_perror_nomsg_and_die();
|
2006-06-02 02:30:42 +08:00
|
|
|
}
|
2008-06-14 12:28:41 +08:00
|
|
|
xrename(temp_fn, resolved_fn);
|
|
|
|
free(temp_fn);
|
|
|
|
free(resolved_fn);
|
2001-04-12 10:26:04 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-10-11 18:05:36 +08:00
|
|
|
int dos2unix_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2009-11-28 22:18:53 +08:00
|
|
|
int dos2unix_main(int argc UNUSED_PARAM, char **argv)
|
2001-07-25 15:22:55 +08:00
|
|
|
{
|
2007-07-21 21:27:44 +08:00
|
|
|
int o, conv_type;
|
2001-02-23 07:37:30 +08:00
|
|
|
|
2005-09-01 11:11:19 +08:00
|
|
|
/* See if we are supposed to be doing dos2unix or unix2dos */
|
2016-11-23 21:52:19 +08:00
|
|
|
if (ENABLE_DOS2UNIX
|
|
|
|
&& (!ENABLE_UNIX2DOS || applet_name[0] == 'd')
|
|
|
|
) {
|
2008-02-17 22:31:50 +08:00
|
|
|
conv_type = CT_DOS2UNIX;
|
2016-11-23 21:52:19 +08:00
|
|
|
} else {
|
|
|
|
conv_type = CT_UNIX2DOS;
|
2001-07-25 15:22:55 +08:00
|
|
|
}
|
2007-08-16 18:35:17 +08:00
|
|
|
|
2007-07-21 21:27:44 +08:00
|
|
|
/* -u convert to unix, -d convert to dos */
|
2017-08-09 03:55:02 +08:00
|
|
|
o = getopt32(argv, "^" "du" "\0" "u--d:d--u"); /* mutually exclusive */
|
2005-09-01 11:11:19 +08:00
|
|
|
|
|
|
|
/* Do the conversion requested by an argument else do the default
|
|
|
|
* conversion depending on our name. */
|
|
|
|
if (o)
|
2007-07-21 21:27:44 +08:00
|
|
|
conv_type = o;
|
2001-02-23 07:37:30 +08:00
|
|
|
|
2009-11-28 22:18:53 +08:00
|
|
|
argv += optind;
|
2007-06-04 18:16:52 +08:00
|
|
|
do {
|
|
|
|
/* might be convert(NULL) if there is no filename given */
|
2009-11-28 22:18:53 +08:00
|
|
|
convert(*argv, conv_type);
|
2010-07-18 04:43:42 +08:00
|
|
|
} while (*argv && *++argv);
|
2001-02-23 07:37:30 +08:00
|
|
|
|
2008-02-17 22:31:50 +08:00
|
|
|
return 0;
|
2001-02-23 07:37:30 +08:00
|
|
|
}
|