2005-01-10 08:39:26 +00:00
|
|
|
/*-
|
2017-11-20 19:49:47 +00:00
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
*
|
1994-05-26 06:18:55 +00:00
|
|
|
* Copyright (c) 1989, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Michael Fischbein.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2017-02-28 23:42:47 +00:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1994-05-26 06:18:55 +00:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1997-08-07 22:28:25 +00:00
|
|
|
#if 0
|
2002-02-03 20:55:54 +00:00
|
|
|
#ifndef lint
|
1997-08-07 22:28:25 +00:00
|
|
|
static char sccsid[] = "@(#)util.c 8.3 (Berkeley) 4/2/94";
|
1994-05-26 06:18:55 +00:00
|
|
|
#endif /* not lint */
|
2002-02-03 20:55:54 +00:00
|
|
|
#endif
|
2003-05-03 16:39:34 +00:00
|
|
|
#include <sys/cdefs.h>
|
2002-06-30 05:13:54 +00:00
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
1998-04-21 22:02:01 +00:00
|
|
|
#include <err.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <fts.h>
|
2004-05-02 11:25:37 +00:00
|
|
|
#include <limits.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2004-05-02 11:25:37 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
#include <wctype.h>
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
#include "ls.h"
|
|
|
|
#include "extern.h"
|
|
|
|
|
2004-05-02 11:25:37 +00:00
|
|
|
int
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
prn_normal(const char *s)
|
2004-05-02 11:25:37 +00:00
|
|
|
{
|
|
|
|
mbstate_t mbs;
|
|
|
|
wchar_t wc;
|
|
|
|
int i, n;
|
|
|
|
size_t clen;
|
|
|
|
|
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
n = 0;
|
|
|
|
while ((clen = mbrtowc(&wc, s, MB_LEN_MAX, &mbs)) != 0) {
|
|
|
|
if (clen == (size_t)-2) {
|
|
|
|
n += printf("%s", s);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (clen == (size_t)-1) {
|
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
putchar((unsigned char)*s);
|
|
|
|
s++;
|
|
|
|
n++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (i = 0; i < (int)clen; i++)
|
|
|
|
putchar((unsigned char)s[i]);
|
|
|
|
s += clen;
|
2004-05-03 11:48:55 +00:00
|
|
|
if (iswprint(wc))
|
|
|
|
n += wcwidth(wc);
|
2004-05-02 11:25:37 +00:00
|
|
|
}
|
|
|
|
return (n);
|
|
|
|
}
|
|
|
|
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
int
|
|
|
|
prn_printable(const char *s)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
2004-05-02 11:25:37 +00:00
|
|
|
mbstate_t mbs;
|
|
|
|
wchar_t wc;
|
|
|
|
int i, n;
|
|
|
|
size_t clen;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2004-05-02 11:25:37 +00:00
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
n = 0;
|
|
|
|
while ((clen = mbrtowc(&wc, s, MB_LEN_MAX, &mbs)) != 0) {
|
|
|
|
if (clen == (size_t)-1) {
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
putchar('?');
|
2004-05-02 11:25:37 +00:00
|
|
|
s++;
|
|
|
|
n++;
|
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (clen == (size_t)-2) {
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
putchar('?');
|
2004-05-02 11:25:37 +00:00
|
|
|
n++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!iswprint(wc)) {
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
putchar('?');
|
2004-05-02 11:25:37 +00:00
|
|
|
s += clen;
|
|
|
|
n++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
for (i = 0; i < (int)clen; i++)
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
putchar((unsigned char)s[i]);
|
2004-05-02 11:25:37 +00:00
|
|
|
s += clen;
|
|
|
|
n += wcwidth(wc);
|
|
|
|
}
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
return (n);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
1998-04-21 22:02:01 +00:00
|
|
|
/*
|
|
|
|
* The fts system makes it difficult to replace fts_name with a different-
|
|
|
|
* sized string, so we just calculate the real length here and do the
|
|
|
|
* conversion in prn_octal()
|
1998-04-24 07:49:51 +00:00
|
|
|
*
|
|
|
|
* XXX when using f_octal_escape (-b) rather than f_octal (-B), the
|
|
|
|
* length computed by len_octal may be too big. I just can't be buggered
|
|
|
|
* to fix this as an efficient fix would involve a lookup table. Same goes
|
|
|
|
* for the rather inelegant code in prn_octal.
|
|
|
|
*
|
2012-11-08 23:45:19 +00:00
|
|
|
* DES 1998/04/23
|
1998-04-21 22:02:01 +00:00
|
|
|
*/
|
1998-04-24 07:49:51 +00:00
|
|
|
|
2002-02-03 19:11:32 +00:00
|
|
|
size_t
|
2002-02-02 06:48:10 +00:00
|
|
|
len_octal(const char *s, int len)
|
1998-04-21 22:02:01 +00:00
|
|
|
{
|
2004-05-02 11:25:37 +00:00
|
|
|
mbstate_t mbs;
|
|
|
|
wchar_t wc;
|
|
|
|
size_t clen, r;
|
1998-04-21 22:02:01 +00:00
|
|
|
|
2004-05-02 11:25:37 +00:00
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
r = 0;
|
|
|
|
while (len != 0 && (clen = mbrtowc(&wc, s, len, &mbs)) != 0) {
|
|
|
|
if (clen == (size_t)-1) {
|
|
|
|
r += 4;
|
|
|
|
s++;
|
|
|
|
len--;
|
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (clen == (size_t)-2) {
|
|
|
|
r += 4 * len;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (iswprint(wc))
|
|
|
|
r++;
|
|
|
|
else
|
|
|
|
r += 4 * clen;
|
|
|
|
s += clen;
|
|
|
|
}
|
|
|
|
return (r);
|
1998-04-21 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
int
|
|
|
|
prn_octal(const char *s)
|
1998-04-21 22:02:01 +00:00
|
|
|
{
|
2004-05-02 11:25:37 +00:00
|
|
|
static const char esc[] = "\\\\\"\"\aa\bb\ff\nn\rr\tt\vv";
|
|
|
|
const char *p;
|
|
|
|
mbstate_t mbs;
|
|
|
|
wchar_t wc;
|
|
|
|
size_t clen;
|
|
|
|
unsigned char ch;
|
|
|
|
int goodchar, i, len, prtlen;
|
2012-11-08 00:24:26 +00:00
|
|
|
|
2004-05-02 11:25:37 +00:00
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
len = 0;
|
|
|
|
while ((clen = mbrtowc(&wc, s, MB_LEN_MAX, &mbs)) != 0) {
|
|
|
|
goodchar = clen != (size_t)-1 && clen != (size_t)-2;
|
|
|
|
if (goodchar && iswprint(wc) && wc != L'\"' && wc != L'\\') {
|
|
|
|
for (i = 0; i < (int)clen; i++)
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
putchar((unsigned char)s[i]);
|
2004-05-02 11:25:37 +00:00
|
|
|
len += wcwidth(wc);
|
2013-01-06 02:50:38 +00:00
|
|
|
} else if (goodchar && f_octal_escape &&
|
|
|
|
#if WCHAR_MIN < 0
|
|
|
|
wc >= 0 &&
|
|
|
|
#endif
|
2004-05-02 11:25:37 +00:00
|
|
|
wc <= (wchar_t)UCHAR_MAX &&
|
|
|
|
(p = strchr(esc, (char)wc)) != NULL) {
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
putchar('\\');
|
|
|
|
putchar(p[1]);
|
2004-05-02 11:25:37 +00:00
|
|
|
len += 2;
|
|
|
|
} else {
|
|
|
|
if (goodchar)
|
|
|
|
prtlen = clen;
|
|
|
|
else if (clen == (size_t)-1)
|
|
|
|
prtlen = 1;
|
|
|
|
else
|
|
|
|
prtlen = strlen(s);
|
|
|
|
for (i = 0; i < prtlen; i++) {
|
|
|
|
ch = (unsigned char)s[i];
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
putchar('\\');
|
|
|
|
putchar('0' + (ch >> 6));
|
|
|
|
putchar('0' + ((ch >> 3) & 7));
|
|
|
|
putchar('0' + (ch & 7));
|
2004-05-02 11:25:37 +00:00
|
|
|
len += 4;
|
|
|
|
}
|
1998-04-24 07:49:51 +00:00
|
|
|
}
|
2004-05-02 11:25:37 +00:00
|
|
|
if (clen == (size_t)-2)
|
|
|
|
break;
|
|
|
|
if (clen == (size_t)-1) {
|
|
|
|
memset(&mbs, 0, sizeof(mbs));
|
|
|
|
s++;
|
|
|
|
} else
|
|
|
|
s += clen;
|
1998-04-21 22:02:01 +00:00
|
|
|
}
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
return (len);
|
1998-04-21 22:02:01 +00:00
|
|
|
}
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
void
|
2002-02-02 06:48:10 +00:00
|
|
|
usage(void)
|
1994-05-26 06:18:55 +00:00
|
|
|
{
|
Convert ls(1) to not use libxo(3)
libxo imposes a large burden on system utilities. In the case of ls, that
burden is difficult to justify -- any language that can interact with json
output can use readdir(3) and stat(2).
Logically, this reverts r291607, r285857, r285803, r285734, r285425,
r284494, r284489, r284252, and r284198.
Kyua tests continue to pass (libxo integration was entirely untested).
Reported by: many
Reviewed by: imp
Discussed with: manu, bdrewery
Sponsored by: Dell EMC Isilon
Differential Revision: https://reviews.freebsd.org/D13959
2018-01-17 22:47:34 +00:00
|
|
|
(void)fprintf(stderr,
|
2000-06-06 07:29:43 +00:00
|
|
|
#ifdef COLORLS
|
2022-10-23 07:46:27 +00:00
|
|
|
"usage: ls [-ABCFGHILPRSTUWZabcdfghiklmnopqrstuvwxy1,] [--color=when] [-D format]"
|
2000-06-06 07:29:43 +00:00
|
|
|
#else
|
2022-10-23 07:46:27 +00:00
|
|
|
"usage: ls [-ABCFHILPRSTUWZabcdfghiklmnopqrstuvwxy1,] [-D format]"
|
2000-06-06 07:29:43 +00:00
|
|
|
#endif
|
1998-04-24 12:43:26 +00:00
|
|
|
" [file ...]\n");
|
1994-05-26 06:18:55 +00:00
|
|
|
exit(1);
|
|
|
|
}
|