From 4248bf4f5b164ece07192d457dc3f465c676e2aa Mon Sep 17 00:00:00 2001 From: justuser Date: Sat, 25 Jan 2025 11:24:37 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=D0=BB=D1=83=D1=87=D1=88=D0=B5=D0=BD?= =?UTF-8?q?=D0=B8=D1=8F=20=D1=81=D0=B1=D0=BE=D1=80=D0=BA=D0=B8,=20=D0=BD?= =?UTF-8?q?=D0=B5=D0=B1=D0=BE=D0=BB=D1=8C=D1=88=D0=B8=D0=B5=20=D0=B8=D0=B7?= =?UTF-8?q?=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8=D1=8F=20=D0=B2=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=B4=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- busybox-1_37_0/.gitignore | 63 + busybox-1_37_0/AUTHORS | 186 + busybox-1_37_0/INSTALL | 142 + busybox-1_37_0/LICENSE | 348 + busybox-1_37_0/Makefile | 1329 ++ busybox-1_37_0/Makefile.custom | 201 + busybox-1_37_0/Makefile.flags | 223 + busybox-1_37_0/Makefile.help | 44 + busybox-1_37_0/NOFORK_NOEXEC.lst | 437 + busybox-1_37_0/NOFORK_NOEXEC.sh | 34 + busybox-1_37_0/README | 204 + busybox-1_37_0/TODO | 256 + busybox-1_37_0/TODO_unicode | 45 + busybox-1_37_0/applets/.gitignore | 3 + busybox-1_37_0/applets/Kbuild.src | 57 + busybox-1_37_0/applets/applet_tables.c | 244 + busybox-1_37_0/applets/applets.c | 16 + busybox-1_37_0/applets/busybox.mkll | 24 + busybox-1_37_0/applets/busybox.mkscripts | 16 + busybox-1_37_0/applets/busybox.mksuid | 54 + busybox-1_37_0/applets/individual.c | 24 + busybox-1_37_0/applets/install.sh | 137 + busybox-1_37_0/applets/usage.c | 55 + busybox-1_37_0/applets/usage_compressed | 62 + busybox-1_37_0/applets/usage_pod.c | 113 + busybox-1_37_0/applets_sh/mim | 39 + busybox-1_37_0/applets_sh/nologin | 3 + busybox-1_37_0/arch/i386/Makefile | 21 + busybox-1_37_0/arch/sparc/Makefile | 11 + busybox-1_37_0/arch/sparc64/Makefile | 11 + busybox-1_37_0/arch/x86_64/Makefile | 11 + busybox-1_37_0/archival/Config.src | 38 + busybox-1_37_0/archival/Kbuild.src | 11 + busybox-1_37_0/archival/ar.c | 301 + busybox-1_37_0/archival/bbunzip.c | 603 + busybox-1_37_0/archival/bbunzip_test.sh | 61 + busybox-1_37_0/archival/bbunzip_test2.sh | 10 + busybox-1_37_0/archival/bbunzip_test3.sh | 23 + busybox-1_37_0/archival/bzip2.c | 247 + .../archival/chksum_and_xwrite_tar_header.c | 35 + busybox-1_37_0/archival/cpio.c | 581 + busybox-1_37_0/archival/dpkg.c | 1966 ++ busybox-1_37_0/archival/dpkg_deb.c | 134 + busybox-1_37_0/archival/gzip.c | 2258 +++ busybox-1_37_0/archival/libarchive/Kbuild.src | 98 + busybox-1_37_0/archival/libarchive/bz/LICENSE | 44 + busybox-1_37_0/archival/libarchive/bz/README | 90 + .../archival/libarchive/bz/blocksort.c | 1079 ++ busybox-1_37_0/archival/libarchive/bz/bzlib.c | 428 + busybox-1_37_0/archival/libarchive/bz/bzlib.h | 65 + .../archival/libarchive/bz/bzlib_private.h | 226 + .../archival/libarchive/bz/compress.c | 752 + .../archival/libarchive/bz/huffman.c | 229 + busybox-1_37_0/archival/libarchive/common.c | 8 + .../archival/libarchive/data_align.c | 14 + .../archival/libarchive/data_extract_all.c | 259 + .../libarchive/data_extract_to_command.c | 136 + .../libarchive/data_extract_to_stdout.c | 13 + .../archival/libarchive/data_skip.c | 11 + .../archival/libarchive/decompress_bunzip2.c | 900 + .../archival/libarchive/decompress_gunzip.c | 1299 ++ .../libarchive/decompress_uncompress.c | 312 + .../archival/libarchive/decompress_unlzma.c | 527 + .../archival/libarchive/decompress_unxz.c | 154 + .../archival/libarchive/filter_accept_all.c | 16 + .../archival/libarchive/filter_accept_list.c | 18 + .../libarchive/filter_accept_list_reassign.c | 60 + .../libarchive/filter_accept_reject_list.c | 37 + .../archival/libarchive/find_list_entry.c | 53 + .../archival/libarchive/get_header_ar.c | 146 + .../archival/libarchive/get_header_cpio.c | 192 + .../archival/libarchive/get_header_tar.c | 491 + .../archival/libarchive/get_header_tar_bz2.c | 20 + .../archival/libarchive/get_header_tar_gz.c | 20 + .../archival/libarchive/get_header_tar_lzma.c | 23 + .../archival/libarchive/get_header_tar_xz.c | 20 + .../archival/libarchive/header_list.c | 12 + .../archival/libarchive/header_skip.c | 10 + .../archival/libarchive/header_verbose_list.c | 69 + .../archival/libarchive/init_handle.c | 25 + busybox-1_37_0/archival/libarchive/liblzo.h | 95 + busybox-1_37_0/archival/libarchive/lzo1x_1.c | 35 + busybox-1_37_0/archival/libarchive/lzo1x_1o.c | 35 + busybox-1_37_0/archival/libarchive/lzo1x_9x.c | 919 + busybox-1_37_0/archival/libarchive/lzo1x_c.c | 296 + busybox-1_37_0/archival/libarchive/lzo1x_d.c | 422 + .../archival/libarchive/open_transformer.c | 386 + .../archival/libarchive/seek_by_jump.c | 18 + .../archival/libarchive/seek_by_read.c | 15 + .../archival/libarchive/unpack_ar_archive.c | 21 + .../archival/libarchive/unsafe_prefix.c | 35 + .../libarchive/unsafe_symlink_target.c | 42 + .../archival/libarchive/unxz/README | 135 + busybox-1_37_0/archival/libarchive/unxz/xz.h | 280 + .../archival/libarchive/unxz/xz_config.h | 123 + .../archival/libarchive/unxz/xz_dec_bcj.c | 580 + .../archival/libarchive/unxz/xz_dec_lzma2.c | 1171 ++ .../archival/libarchive/unxz/xz_dec_stream.c | 820 + .../archival/libarchive/unxz/xz_lzma2.h | 204 + .../archival/libarchive/unxz/xz_private.h | 159 + .../archival/libarchive/unxz/xz_stream.h | 62 + busybox-1_37_0/archival/lzop.c | 1145 ++ busybox-1_37_0/archival/rpm.c | 561 + busybox-1_37_0/archival/rpm.h | 38 + busybox-1_37_0/archival/tar.c | 1286 ++ busybox-1_37_0/archival/tar_symlink_attack | 16 + busybox-1_37_0/archival/unzip.c | 1088 ++ busybox-1_37_0/boot-files/initramfs/bin/arch | 1 + busybox-1_37_0/boot-files/initramfs/bin/ash | 1 + .../boot-files/initramfs/bin/base32 | 1 + .../boot-files/initramfs/bin/base64 | 1 + .../boot-files/initramfs/bin/busybox | Bin 0 -> 2310232 bytes busybox-1_37_0/boot-files/initramfs/bin/cat | 1 + .../boot-files/initramfs/bin/chattr | 1 + busybox-1_37_0/boot-files/initramfs/bin/chgrp | 1 + busybox-1_37_0/boot-files/initramfs/bin/chmod | 1 + busybox-1_37_0/boot-files/initramfs/bin/chown | 1 + .../boot-files/initramfs/bin/conspy | 1 + busybox-1_37_0/boot-files/initramfs/bin/cp | 1 + busybox-1_37_0/boot-files/initramfs/bin/cpio | 1 + .../boot-files/initramfs/bin/cttyhack | 1 + busybox-1_37_0/boot-files/initramfs/bin/date | 1 + busybox-1_37_0/boot-files/initramfs/bin/dd | 1 + busybox-1_37_0/boot-files/initramfs/bin/df | 1 + busybox-1_37_0/boot-files/initramfs/bin/dmesg | 1 + .../boot-files/initramfs/bin/dnsdomainname | 1 + .../boot-files/initramfs/bin/dumpkmap | 1 + busybox-1_37_0/boot-files/initramfs/bin/echo | 1 + busybox-1_37_0/boot-files/initramfs/bin/ed | 1 + busybox-1_37_0/boot-files/initramfs/bin/egrep | 1 + busybox-1_37_0/boot-files/initramfs/bin/false | 1 + .../boot-files/initramfs/bin/fatattr | 1 + .../boot-files/initramfs/bin/fdflush | 1 + busybox-1_37_0/boot-files/initramfs/bin/fgrep | 1 + busybox-1_37_0/boot-files/initramfs/bin/fsync | 1 + .../boot-files/initramfs/bin/getopt | 1 + busybox-1_37_0/boot-files/initramfs/bin/grep | 1 + .../boot-files/initramfs/bin/gunzip | 1 + busybox-1_37_0/boot-files/initramfs/bin/gzip | 1 + .../boot-files/initramfs/bin/hostname | 1 + busybox-1_37_0/boot-files/initramfs/bin/hush | 1 + .../boot-files/initramfs/bin/ionice | 1 + .../boot-files/initramfs/bin/iostat | 1 + .../boot-files/initramfs/bin/ipcalc | 1 + .../boot-files/initramfs/bin/kbd_mode | 1 + busybox-1_37_0/boot-files/initramfs/bin/kill | 1 + busybox-1_37_0/boot-files/initramfs/bin/link | 1 + .../boot-files/initramfs/bin/linux32 | 1 + .../boot-files/initramfs/bin/linux64 | 1 + busybox-1_37_0/boot-files/initramfs/bin/ln | 1 + busybox-1_37_0/boot-files/initramfs/bin/login | 1 + busybox-1_37_0/boot-files/initramfs/bin/ls | 1 + .../boot-files/initramfs/bin/lsattr | 1 + busybox-1_37_0/boot-files/initramfs/bin/lzop | 1 + .../boot-files/initramfs/bin/makemime | 1 + busybox-1_37_0/boot-files/initramfs/bin/mkdir | 1 + busybox-1_37_0/boot-files/initramfs/bin/mknod | 1 + .../boot-files/initramfs/bin/mktemp | 1 + busybox-1_37_0/boot-files/initramfs/bin/more | 1 + busybox-1_37_0/boot-files/initramfs/bin/mount | 1 + .../boot-files/initramfs/bin/mountpoint | 1 + .../boot-files/initramfs/bin/mpstat | 1 + busybox-1_37_0/boot-files/initramfs/bin/mt | 1 + busybox-1_37_0/boot-files/initramfs/bin/mv | 1 + .../boot-files/initramfs/bin/netstat | 1 + busybox-1_37_0/boot-files/initramfs/bin/nice | 1 + busybox-1_37_0/boot-files/initramfs/bin/pidof | 1 + busybox-1_37_0/boot-files/initramfs/bin/ping | 1 + busybox-1_37_0/boot-files/initramfs/bin/ping6 | 1 + .../boot-files/initramfs/bin/pipe_progress | 1 + .../boot-files/initramfs/bin/printenv | 1 + busybox-1_37_0/boot-files/initramfs/bin/ps | 1 + busybox-1_37_0/boot-files/initramfs/bin/pwd | 1 + .../boot-files/initramfs/bin/reformime | 1 + .../boot-files/initramfs/bin/resume | 1 + busybox-1_37_0/boot-files/initramfs/bin/rev | 1 + busybox-1_37_0/boot-files/initramfs/bin/rm | 1 + busybox-1_37_0/boot-files/initramfs/bin/rmdir | 1 + busybox-1_37_0/boot-files/initramfs/bin/rpm | 1 + .../boot-files/initramfs/bin/run-parts | 1 + .../boot-files/initramfs/bin/scriptreplay | 1 + busybox-1_37_0/boot-files/initramfs/bin/sed | 1 + .../boot-files/initramfs/bin/setarch | 1 + .../boot-files/initramfs/bin/setpriv | 1 + .../boot-files/initramfs/bin/setserial | 1 + busybox-1_37_0/boot-files/initramfs/bin/sh | 1 + busybox-1_37_0/boot-files/initramfs/bin/sleep | 1 + busybox-1_37_0/boot-files/initramfs/bin/stat | 1 + busybox-1_37_0/boot-files/initramfs/bin/stty | 1 + busybox-1_37_0/boot-files/initramfs/bin/su | 1 + busybox-1_37_0/boot-files/initramfs/bin/sync | 1 + busybox-1_37_0/boot-files/initramfs/bin/tar | 1 + busybox-1_37_0/boot-files/initramfs/bin/touch | 1 + busybox-1_37_0/boot-files/initramfs/bin/true | 1 + .../boot-files/initramfs/bin/umount | 1 + busybox-1_37_0/boot-files/initramfs/bin/uname | 1 + .../boot-files/initramfs/bin/usleep | 1 + busybox-1_37_0/boot-files/initramfs/bin/vi | 1 + busybox-1_37_0/boot-files/initramfs/bin/watch | 1 + busybox-1_37_0/boot-files/initramfs/bin/zcat | 1 + busybox-1_37_0/boot-files/initramfs/linuxrc | 1 + .../boot-files/initramfs/sbin/acpid | 1 + .../boot-files/initramfs/sbin/adjtimex | 1 + busybox-1_37_0/boot-files/initramfs/sbin/arp | 1 + .../boot-files/initramfs/sbin/blkid | 1 + .../boot-files/initramfs/sbin/blockdev | 1 + .../boot-files/initramfs/sbin/bootchartd | 1 + .../boot-files/initramfs/sbin/depmod | 1 + .../boot-files/initramfs/sbin/devmem | 1 + .../boot-files/initramfs/sbin/fbsplash | 1 + .../boot-files/initramfs/sbin/fdisk | 1 + .../boot-files/initramfs/sbin/findfs | 1 + .../boot-files/initramfs/sbin/freeramdisk | 1 + busybox-1_37_0/boot-files/initramfs/sbin/fsck | 1 + .../boot-files/initramfs/sbin/fsck.minix | 1 + .../boot-files/initramfs/sbin/fstrim | 1 + .../boot-files/initramfs/sbin/getty | 1 + busybox-1_37_0/boot-files/initramfs/sbin/halt | 1 + .../boot-files/initramfs/sbin/hdparm | 1 + .../boot-files/initramfs/sbin/hwclock | 1 + .../boot-files/initramfs/sbin/ifconfig | 1 + .../boot-files/initramfs/sbin/ifdown | 1 + .../boot-files/initramfs/sbin/ifenslave | 1 + busybox-1_37_0/boot-files/initramfs/sbin/ifup | 1 + busybox-1_37_0/boot-files/initramfs/sbin/init | 1 + .../boot-files/initramfs/sbin/insmod | 1 + busybox-1_37_0/boot-files/initramfs/sbin/ip | 1 + .../boot-files/initramfs/sbin/ipaddr | 1 + .../boot-files/initramfs/sbin/iplink | 1 + .../boot-files/initramfs/sbin/ipneigh | 1 + .../boot-files/initramfs/sbin/iproute | 1 + .../boot-files/initramfs/sbin/iprule | 1 + .../boot-files/initramfs/sbin/iptunnel | 1 + .../boot-files/initramfs/sbin/klogd | 1 + .../boot-files/initramfs/sbin/loadkmap | 1 + .../boot-files/initramfs/sbin/logread | 1 + .../boot-files/initramfs/sbin/losetup | 1 + .../boot-files/initramfs/sbin/lsmod | 1 + .../boot-files/initramfs/sbin/makedevs | 1 + busybox-1_37_0/boot-files/initramfs/sbin/mdev | 1 + .../boot-files/initramfs/sbin/mkdosfs | 1 + .../boot-files/initramfs/sbin/mke2fs | 1 + .../boot-files/initramfs/sbin/mkfs.ext2 | 1 + .../boot-files/initramfs/sbin/mkfs.minix | 1 + .../boot-files/initramfs/sbin/mkfs.vfat | 1 + .../boot-files/initramfs/sbin/mkswap | 1 + .../boot-files/initramfs/sbin/modinfo | 1 + .../boot-files/initramfs/sbin/modprobe | 1 + .../boot-files/initramfs/sbin/nameif | 1 + .../boot-files/initramfs/sbin/pivot_root | 1 + .../boot-files/initramfs/sbin/poweroff | 1 + .../boot-files/initramfs/sbin/raidautorun | 1 + .../boot-files/initramfs/sbin/reboot | 1 + .../boot-files/initramfs/sbin/rmmod | 1 + .../boot-files/initramfs/sbin/route | 1 + .../boot-files/initramfs/sbin/run-init | 1 + .../boot-files/initramfs/sbin/runlevel | 1 + .../boot-files/initramfs/sbin/setconsole | 1 + .../boot-files/initramfs/sbin/slattach | 1 + .../initramfs/sbin/start-stop-daemon | 1 + .../boot-files/initramfs/sbin/sulogin | 1 + .../boot-files/initramfs/sbin/swapoff | 1 + .../boot-files/initramfs/sbin/swapon | 1 + .../boot-files/initramfs/sbin/switch_root | 1 + .../boot-files/initramfs/sbin/sysctl | 1 + .../boot-files/initramfs/sbin/syslogd | 1 + busybox-1_37_0/boot-files/initramfs/sbin/tc | 1 + .../boot-files/initramfs/sbin/tunctl | 1 + .../boot-files/initramfs/sbin/udhcpc | 1 + .../boot-files/initramfs/sbin/uevent | 1 + .../boot-files/initramfs/sbin/vconfig | 1 + .../boot-files/initramfs/sbin/watchdog | 1 + busybox-1_37_0/boot-files/initramfs/sbin/zcip | 1 + busybox-1_37_0/boot-files/initramfs/usr/bin/[ | 1 + .../boot-files/initramfs/usr/bin/[[ | 1 + .../boot-files/initramfs/usr/bin/ascii | 1 + .../boot-files/initramfs/usr/bin/awk | 1 + .../boot-files/initramfs/usr/bin/basename | 1 + .../boot-files/initramfs/usr/bin/bc | 1 + .../boot-files/initramfs/usr/bin/beep | 1 + .../boot-files/initramfs/usr/bin/blkdiscard | 1 + .../boot-files/initramfs/usr/bin/bunzip2 | 1 + .../boot-files/initramfs/usr/bin/bzcat | 1 + .../boot-files/initramfs/usr/bin/bzip2 | 1 + .../boot-files/initramfs/usr/bin/cal | 1 + .../boot-files/initramfs/usr/bin/chpst | 1 + .../boot-files/initramfs/usr/bin/chrt | 1 + .../boot-files/initramfs/usr/bin/chvt | 1 + .../boot-files/initramfs/usr/bin/cksum | 1 + .../boot-files/initramfs/usr/bin/clear | 1 + .../boot-files/initramfs/usr/bin/cmp | 1 + .../boot-files/initramfs/usr/bin/comm | 1 + .../boot-files/initramfs/usr/bin/crc32 | 1 + .../boot-files/initramfs/usr/bin/crontab | 1 + .../boot-files/initramfs/usr/bin/cryptpw | 1 + .../boot-files/initramfs/usr/bin/cut | 1 + .../boot-files/initramfs/usr/bin/dc | 1 + .../boot-files/initramfs/usr/bin/deallocvt | 1 + .../boot-files/initramfs/usr/bin/diff | 1 + .../boot-files/initramfs/usr/bin/dirname | 1 + .../boot-files/initramfs/usr/bin/dos2unix | 1 + .../boot-files/initramfs/usr/bin/dpkg | 1 + .../boot-files/initramfs/usr/bin/dpkg-deb | 1 + .../boot-files/initramfs/usr/bin/du | 1 + .../boot-files/initramfs/usr/bin/dumpleases | 1 + .../boot-files/initramfs/usr/bin/eject | 1 + .../boot-files/initramfs/usr/bin/env | 1 + .../boot-files/initramfs/usr/bin/envdir | 1 + .../boot-files/initramfs/usr/bin/envuidgid | 1 + .../boot-files/initramfs/usr/bin/expand | 1 + .../boot-files/initramfs/usr/bin/expr | 1 + .../boot-files/initramfs/usr/bin/factor | 1 + .../boot-files/initramfs/usr/bin/fallocate | 1 + .../boot-files/initramfs/usr/bin/fgconsole | 1 + .../boot-files/initramfs/usr/bin/find | 1 + .../boot-files/initramfs/usr/bin/flock | 1 + .../boot-files/initramfs/usr/bin/fold | 1 + .../boot-files/initramfs/usr/bin/free | 1 + .../boot-files/initramfs/usr/bin/ftpget | 1 + .../boot-files/initramfs/usr/bin/ftpput | 1 + .../boot-files/initramfs/usr/bin/fuser | 1 + .../boot-files/initramfs/usr/bin/getfattr | 1 + .../boot-files/initramfs/usr/bin/groups | 1 + .../boot-files/initramfs/usr/bin/hd | 1 + .../boot-files/initramfs/usr/bin/head | 1 + .../boot-files/initramfs/usr/bin/hexdump | 1 + .../boot-files/initramfs/usr/bin/hexedit | 1 + .../boot-files/initramfs/usr/bin/hostid | 1 + .../boot-files/initramfs/usr/bin/id | 1 + .../boot-files/initramfs/usr/bin/install | 1 + .../boot-files/initramfs/usr/bin/ipcrm | 1 + .../boot-files/initramfs/usr/bin/ipcs | 1 + .../boot-files/initramfs/usr/bin/killall | 1 + .../boot-files/initramfs/usr/bin/last | 1 + .../boot-files/initramfs/usr/bin/less | 1 + .../boot-files/initramfs/usr/bin/logger | 1 + .../boot-files/initramfs/usr/bin/logname | 1 + .../boot-files/initramfs/usr/bin/lpq | 1 + .../boot-files/initramfs/usr/bin/lpr | 1 + .../boot-files/initramfs/usr/bin/lsof | 1 + .../boot-files/initramfs/usr/bin/lspci | 1 + .../boot-files/initramfs/usr/bin/lsscsi | 1 + .../boot-files/initramfs/usr/bin/lsusb | 1 + .../boot-files/initramfs/usr/bin/lzcat | 1 + .../boot-files/initramfs/usr/bin/lzma | 1 + .../boot-files/initramfs/usr/bin/man | 1 + .../boot-files/initramfs/usr/bin/md5sum | 1 + .../boot-files/initramfs/usr/bin/mesg | 1 + .../boot-files/initramfs/usr/bin/microcom | 1 + .../boot-files/initramfs/usr/bin/mkfifo | 1 + .../boot-files/initramfs/usr/bin/mkpasswd | 1 + .../boot-files/initramfs/usr/bin/nc | 1 + .../boot-files/initramfs/usr/bin/nl | 1 + .../boot-files/initramfs/usr/bin/nmeter | 1 + .../boot-files/initramfs/usr/bin/nohup | 1 + .../boot-files/initramfs/usr/bin/nproc | 1 + .../boot-files/initramfs/usr/bin/nsenter | 1 + .../boot-files/initramfs/usr/bin/nslookup | 1 + .../boot-files/initramfs/usr/bin/od | 1 + .../boot-files/initramfs/usr/bin/openvt | 1 + .../boot-files/initramfs/usr/bin/passwd | 1 + .../boot-files/initramfs/usr/bin/paste | 1 + .../boot-files/initramfs/usr/bin/patch | 1 + .../boot-files/initramfs/usr/bin/pgrep | 1 + .../boot-files/initramfs/usr/bin/pkill | 1 + .../boot-files/initramfs/usr/bin/pmap | 1 + .../boot-files/initramfs/usr/bin/printf | 1 + .../boot-files/initramfs/usr/bin/pscan | 1 + .../boot-files/initramfs/usr/bin/pstree | 1 + .../boot-files/initramfs/usr/bin/pwdx | 1 + .../boot-files/initramfs/usr/bin/readlink | 1 + .../boot-files/initramfs/usr/bin/realpath | 1 + .../boot-files/initramfs/usr/bin/renice | 1 + .../boot-files/initramfs/usr/bin/reset | 1 + .../boot-files/initramfs/usr/bin/resize | 1 + .../boot-files/initramfs/usr/bin/rpm2cpio | 1 + .../boot-files/initramfs/usr/bin/runsv | 1 + .../boot-files/initramfs/usr/bin/runsvdir | 1 + .../boot-files/initramfs/usr/bin/rx | 1 + .../boot-files/initramfs/usr/bin/script | 1 + .../boot-files/initramfs/usr/bin/seq | 1 + .../boot-files/initramfs/usr/bin/setfattr | 1 + .../boot-files/initramfs/usr/bin/setkeycodes | 1 + .../boot-files/initramfs/usr/bin/setsid | 1 + .../boot-files/initramfs/usr/bin/setuidgid | 1 + .../boot-files/initramfs/usr/bin/sha1sum | 1 + .../boot-files/initramfs/usr/bin/sha256sum | 1 + .../boot-files/initramfs/usr/bin/sha3sum | 1 + .../boot-files/initramfs/usr/bin/sha512sum | 1 + .../boot-files/initramfs/usr/bin/showkey | 1 + .../boot-files/initramfs/usr/bin/shred | 1 + .../boot-files/initramfs/usr/bin/shuf | 1 + .../boot-files/initramfs/usr/bin/smemcap | 1 + .../boot-files/initramfs/usr/bin/softlimit | 1 + .../boot-files/initramfs/usr/bin/sort | 1 + .../boot-files/initramfs/usr/bin/split | 1 + .../boot-files/initramfs/usr/bin/ssl_client | 1 + .../boot-files/initramfs/usr/bin/strings | 1 + .../boot-files/initramfs/usr/bin/sum | 1 + .../boot-files/initramfs/usr/bin/sv | 1 + .../boot-files/initramfs/usr/bin/svc | 1 + .../boot-files/initramfs/usr/bin/svok | 1 + .../boot-files/initramfs/usr/bin/tac | 1 + .../boot-files/initramfs/usr/bin/tail | 1 + .../boot-files/initramfs/usr/bin/taskset | 1 + .../boot-files/initramfs/usr/bin/tcpsvd | 1 + .../boot-files/initramfs/usr/bin/tee | 1 + .../boot-files/initramfs/usr/bin/telnet | 1 + .../boot-files/initramfs/usr/bin/test | 1 + .../boot-files/initramfs/usr/bin/tftp | 1 + .../boot-files/initramfs/usr/bin/time | 1 + .../boot-files/initramfs/usr/bin/timeout | 1 + .../boot-files/initramfs/usr/bin/top | 1 + .../boot-files/initramfs/usr/bin/tr | 1 + .../boot-files/initramfs/usr/bin/traceroute | 1 + .../boot-files/initramfs/usr/bin/traceroute6 | 1 + .../boot-files/initramfs/usr/bin/tree | 1 + .../boot-files/initramfs/usr/bin/truncate | 1 + .../boot-files/initramfs/usr/bin/ts | 1 + .../boot-files/initramfs/usr/bin/tsort | 1 + .../boot-files/initramfs/usr/bin/tty | 1 + .../boot-files/initramfs/usr/bin/ttysize | 1 + .../boot-files/initramfs/usr/bin/udhcpc6 | 1 + .../boot-files/initramfs/usr/bin/udpsvd | 1 + .../boot-files/initramfs/usr/bin/unexpand | 1 + .../boot-files/initramfs/usr/bin/uniq | 1 + .../boot-files/initramfs/usr/bin/unix2dos | 1 + .../boot-files/initramfs/usr/bin/unlink | 1 + .../boot-files/initramfs/usr/bin/unlzma | 1 + .../boot-files/initramfs/usr/bin/unshare | 1 + .../boot-files/initramfs/usr/bin/unxz | 1 + .../boot-files/initramfs/usr/bin/unzip | 1 + .../boot-files/initramfs/usr/bin/uptime | 1 + .../boot-files/initramfs/usr/bin/users | 1 + .../boot-files/initramfs/usr/bin/uudecode | 1 + .../boot-files/initramfs/usr/bin/uuencode | 1 + .../boot-files/initramfs/usr/bin/vlock | 1 + .../boot-files/initramfs/usr/bin/volname | 1 + busybox-1_37_0/boot-files/initramfs/usr/bin/w | 1 + .../boot-files/initramfs/usr/bin/wall | 1 + .../boot-files/initramfs/usr/bin/wc | 1 + .../boot-files/initramfs/usr/bin/wget | 1 + .../boot-files/initramfs/usr/bin/which | 1 + .../boot-files/initramfs/usr/bin/who | 1 + .../boot-files/initramfs/usr/bin/whoami | 1 + .../boot-files/initramfs/usr/bin/whois | 1 + .../boot-files/initramfs/usr/bin/xargs | 1 + .../boot-files/initramfs/usr/bin/xxd | 1 + .../boot-files/initramfs/usr/bin/xz | 1 + .../boot-files/initramfs/usr/bin/xzcat | 1 + .../boot-files/initramfs/usr/bin/yes | 1 + .../boot-files/initramfs/usr/sbin/add-shell | 1 + .../boot-files/initramfs/usr/sbin/addgroup | 1 + .../boot-files/initramfs/usr/sbin/adduser | 1 + .../boot-files/initramfs/usr/sbin/arping | 1 + .../boot-files/initramfs/usr/sbin/brctl | 1 + .../boot-files/initramfs/usr/sbin/chat | 1 + .../boot-files/initramfs/usr/sbin/chpasswd | 1 + .../boot-files/initramfs/usr/sbin/chroot | 1 + .../boot-files/initramfs/usr/sbin/crond | 1 + .../boot-files/initramfs/usr/sbin/delgroup | 1 + .../boot-files/initramfs/usr/sbin/deluser | 1 + .../boot-files/initramfs/usr/sbin/dhcprelay | 1 + .../boot-files/initramfs/usr/sbin/dnsd | 1 + .../boot-files/initramfs/usr/sbin/ether-wake | 1 + .../boot-files/initramfs/usr/sbin/fakeidentd | 1 + .../boot-files/initramfs/usr/sbin/fbset | 1 + .../boot-files/initramfs/usr/sbin/fdformat | 1 + .../boot-files/initramfs/usr/sbin/fsfreeze | 1 + .../boot-files/initramfs/usr/sbin/ftpd | 1 + .../boot-files/initramfs/usr/sbin/httpd | 1 + .../boot-files/initramfs/usr/sbin/i2cdetect | 1 + .../boot-files/initramfs/usr/sbin/i2cdump | 1 + .../boot-files/initramfs/usr/sbin/i2cget | 1 + .../boot-files/initramfs/usr/sbin/i2cset | 1 + .../boot-files/initramfs/usr/sbin/i2ctransfer | 1 + .../boot-files/initramfs/usr/sbin/ifplugd | 1 + .../boot-files/initramfs/usr/sbin/inetd | 1 + .../boot-files/initramfs/usr/sbin/killall5 | 1 + .../boot-files/initramfs/usr/sbin/loadfont | 1 + .../boot-files/initramfs/usr/sbin/lpd | 1 + .../boot-files/initramfs/usr/sbin/mim | 1 + .../boot-files/initramfs/usr/sbin/nanddump | 1 + .../boot-files/initramfs/usr/sbin/nandwrite | 1 + .../boot-files/initramfs/usr/sbin/nbd-client | 1 + .../boot-files/initramfs/usr/sbin/nologin | 1 + .../boot-files/initramfs/usr/sbin/ntpd | 1 + .../boot-files/initramfs/usr/sbin/partprobe | 1 + .../boot-files/initramfs/usr/sbin/popmaildir | 1 + .../boot-files/initramfs/usr/sbin/powertop | 1 + .../boot-files/initramfs/usr/sbin/rdate | 1 + .../boot-files/initramfs/usr/sbin/rdev | 1 + .../boot-files/initramfs/usr/sbin/readahead | 1 + .../boot-files/initramfs/usr/sbin/readprofile | 1 + .../initramfs/usr/sbin/remove-shell | 1 + .../boot-files/initramfs/usr/sbin/rtcwake | 1 + .../boot-files/initramfs/usr/sbin/seedrng | 1 + .../boot-files/initramfs/usr/sbin/sendmail | 1 + .../boot-files/initramfs/usr/sbin/setfont | 1 + .../boot-files/initramfs/usr/sbin/setlogcons | 1 + .../boot-files/initramfs/usr/sbin/svlogd | 1 + .../boot-files/initramfs/usr/sbin/telnetd | 1 + .../boot-files/initramfs/usr/sbin/tftpd | 1 + .../boot-files/initramfs/usr/sbin/ubiattach | 1 + .../boot-files/initramfs/usr/sbin/ubidetach | 1 + .../boot-files/initramfs/usr/sbin/ubimkvol | 1 + .../boot-files/initramfs/usr/sbin/ubirename | 1 + .../boot-files/initramfs/usr/sbin/ubirmvol | 1 + .../boot-files/initramfs/usr/sbin/ubirsvol | 1 + .../initramfs/usr/sbin/ubiupdatevol | 1 + .../boot-files/initramfs/usr/sbin/udhcpd | 1 + busybox-1_37_0/busybox_ldscript.README.txt | 47 + busybox-1_37_0/configs/TEST_nommu_defconfig | 913 + .../configs/TEST_noprintf_defconfig | 920 + busybox-1_37_0/configs/TEST_rh9_defconfig | 927 + busybox-1_37_0/configs/android2_defconfig | 981 + busybox-1_37_0/configs/android_502_defconfig | 1126 ++ busybox-1_37_0/configs/android_defconfig | 1013 ++ busybox-1_37_0/configs/android_ndk_defconfig | 1042 ++ busybox-1_37_0/configs/cygwin_defconfig | 1222 ++ busybox-1_37_0/configs/freebsd_defconfig | 958 + busybox-1_37_0/console-tools/Config.src | 10 + busybox-1_37_0/console-tools/Kbuild.src | 9 + busybox-1_37_0/console-tools/chvt.c | 33 + busybox-1_37_0/console-tools/clear.c | 33 + busybox-1_37_0/console-tools/deallocvt.c | 45 + busybox-1_37_0/console-tools/dumpkmap.c | 88 + busybox-1_37_0/console-tools/fgconsole.c | 44 + busybox-1_37_0/console-tools/kbd_mode.c | 94 + busybox-1_37_0/console-tools/loadfont.c | 533 + busybox-1_37_0/console-tools/loadkmap.c | 102 + busybox-1_37_0/console-tools/openvt.c | 198 + busybox-1_37_0/console-tools/reset.c | 65 + busybox-1_37_0/console-tools/resize.c | 115 + busybox-1_37_0/console-tools/setconsole.c | 64 + busybox-1_37_0/console-tools/setkeycodes.c | 70 + busybox-1_37_0/console-tools/setlogcons.c | 65 + busybox-1_37_0/console-tools/showkey.c | 158 + busybox-1_37_0/coreutils/Config.src | 51 + busybox-1_37_0/coreutils/Kbuild.src | 18 + busybox-1_37_0/coreutils/basename.c | 92 + busybox-1_37_0/coreutils/cat.c | 217 + busybox-1_37_0/coreutils/chgrp.c | 66 + busybox-1_37_0/coreutils/chmod.c | 194 + busybox-1_37_0/coreutils/chown.c | 235 + busybox-1_37_0/coreutils/chroot.c | 55 + busybox-1_37_0/coreutils/cksum.c | 106 + busybox-1_37_0/coreutils/comm.c | 117 + busybox-1_37_0/coreutils/cp.c | 285 + busybox-1_37_0/coreutils/cut.c | 333 + busybox-1_37_0/coreutils/date.c | 387 + busybox-1_37_0/coreutils/dd.c | 689 + busybox-1_37_0/coreutils/df.c | 351 + busybox-1_37_0/coreutils/dirname.c | 43 + busybox-1_37_0/coreutils/dos2unix.c | 137 + busybox-1_37_0/coreutils/du.c | 311 + busybox-1_37_0/coreutils/echo.c | 351 + busybox-1_37_0/coreutils/env.c | 137 + busybox-1_37_0/coreutils/expand.c | 253 + busybox-1_37_0/coreutils/expr.c | 559 + busybox-1_37_0/coreutils/factor.c | 273 + busybox-1_37_0/coreutils/false.c | 38 + busybox-1_37_0/coreutils/fold.c | 186 + busybox-1_37_0/coreutils/head.c | 272 + busybox-1_37_0/coreutils/hostid.c | 42 + busybox-1_37_0/coreutils/id.c | 269 + busybox-1_37_0/coreutils/id_test.sh | 244 + busybox-1_37_0/coreutils/install.c | 272 + .../coreutils/libcoreutils/Kbuild.src | 14 + .../coreutils/libcoreutils/coreutils.h | 19 + .../coreutils/libcoreutils/cp_mv_stat.c | 48 + .../libcoreutils/getopt_mk_fifo_nod.c | 48 + busybox-1_37_0/coreutils/link.c | 39 + busybox-1_37_0/coreutils/ln.c | 165 + busybox-1_37_0/coreutils/logname.c | 60 + busybox-1_37_0/coreutils/ls.c | 1272 ++ busybox-1_37_0/coreutils/md5_sha1_sum.c | 361 + busybox-1_37_0/coreutils/mkdir.c | 103 + busybox-1_37_0/coreutils/mkfifo.c | 58 + busybox-1_37_0/coreutils/mknod.c | 88 + busybox-1_37_0/coreutils/mktemp.c | 133 + busybox-1_37_0/coreutils/mv.c | 191 + busybox-1_37_0/coreutils/nice.c | 68 + busybox-1_37_0/coreutils/nl.c | 83 + busybox-1_37_0/coreutils/nohup.c | 98 + busybox-1_37_0/coreutils/nproc.c | 72 + busybox-1_37_0/coreutils/od.c | 262 + busybox-1_37_0/coreutils/od_bloaty.c | 1413 ++ busybox-1_37_0/coreutils/paste.c | 140 + busybox-1_37_0/coreutils/printenv.c | 59 + busybox-1_37_0/coreutils/printf.c | 456 + busybox-1_37_0/coreutils/pwd.c | 93 + busybox-1_37_0/coreutils/readlink.c | 94 + busybox-1_37_0/coreutils/realpath.c | 52 + busybox-1_37_0/coreutils/rm.c | 76 + busybox-1_37_0/coreutils/rmdir.c | 95 + busybox-1_37_0/coreutils/seq.c | 142 + busybox-1_37_0/coreutils/shred.c | 111 + busybox-1_37_0/coreutils/shuf.c | 221 + busybox-1_37_0/coreutils/sleep.c | 103 + busybox-1_37_0/coreutils/sort.c | 684 + busybox-1_37_0/coreutils/split.c | 179 + busybox-1_37_0/coreutils/stat.c | 793 + busybox-1_37_0/coreutils/stty.c | 1560 ++ busybox-1_37_0/coreutils/sum.c | 118 + busybox-1_37_0/coreutils/sync.c | 140 + busybox-1_37_0/coreutils/tac.c | 117 + busybox-1_37_0/coreutils/tail.c | 421 + busybox-1_37_0/coreutils/tee.c | 153 + busybox-1_37_0/coreutils/test.c | 1028 ++ busybox-1_37_0/coreutils/test_ptr_hack.c | 23 + busybox-1_37_0/coreutils/timeout.c | 158 + busybox-1_37_0/coreutils/touch.c | 193 + busybox-1_37_0/coreutils/tr.c | 360 + busybox-1_37_0/coreutils/true.c | 38 + busybox-1_37_0/coreutils/truncate.c | 86 + busybox-1_37_0/coreutils/tsort.c | 202 + busybox-1_37_0/coreutils/tty.c | 66 + busybox-1_37_0/coreutils/uname.c | 213 + busybox-1_37_0/coreutils/uniq.c | 143 + busybox-1_37_0/coreutils/unlink.c | 33 + busybox-1_37_0/coreutils/usleep.c | 51 + busybox-1_37_0/coreutils/uudecode.c | 390 + busybox-1_37_0/coreutils/uuencode.c | 82 + busybox-1_37_0/coreutils/wc.c | 257 + busybox-1_37_0/coreutils/who.c | 170 + busybox-1_37_0/coreutils/whoami.c | 39 + busybox-1_37_0/coreutils/yes.c | 54 + busybox-1_37_0/debianutils/Config.src | 10 + busybox-1_37_0/debianutils/Kbuild.src | 9 + busybox-1_37_0/debianutils/pipe_progress.c | 48 + busybox-1_37_0/debianutils/run_parts.c | 246 + .../debianutils/start_stop_daemon.c | 634 + busybox-1_37_0/debianutils/which.c | 74 + busybox-1_37_0/docs/.gitignore | 5 + busybox-1_37_0/docs/Kconfig-language.txt | 255 + .../docs/Serial-Programming-HOWTO.txt | 424 + busybox-1_37_0/docs/busybox_footer.pod | 284 + busybox-1_37_0/docs/busybox_header.pod | 82 + busybox-1_37_0/docs/cgi/cl.html | 46 + busybox-1_37_0/docs/cgi/env.html | 149 + busybox-1_37_0/docs/cgi/in.html | 33 + busybox-1_37_0/docs/cgi/interface.html | 29 + busybox-1_37_0/docs/cgi/out.html | 126 + busybox-1_37_0/docs/contributing.txt | 439 + busybox-1_37_0/docs/ctty.htm | 479 + .../docs/draft-coar-cgi-v11-03-clean.html | 2674 +++ busybox-1_37_0/docs/embedded-scripts.txt | 111 + busybox-1_37_0/docs/ifupdown_design.txt | 44 + busybox-1_37_0/docs/keep_data_small.txt | 265 + .../docs/logging_and_backgrounding.txt | 98 + busybox-1_37_0/docs/mdev.txt | 151 + busybox-1_37_0/docs/new-applet-HOWTO.txt | 207 + busybox-1_37_0/docs/nofork_noexec.txt | 143 + busybox-1_37_0/docs/posix_conformance.txt | 751 + busybox-1_37_0/docs/sigint.htm | 627 + busybox-1_37_0/docs/smallint.txt | 39 + busybox-1_37_0/docs/style-guide.txt | 713 + busybox-1_37_0/docs/syslog.conf.txt | 28 + busybox-1_37_0/docs/tar_pax.txt | 239 + busybox-1_37_0/docs/tcp.txt | 93 + busybox-1_37_0/docs/unicode.txt | 71 + busybox-1_37_0/docs/unicode_UTF-8-test.txt | Bin 0 -> 20334 bytes busybox-1_37_0/docs/unicode_full-bmp.txt | 2079 +++ busybox-1_37_0/docs/unit-tests.txt | 50 + busybox-1_37_0/e2fsprogs/Config.src | 43 + busybox-1_37_0/e2fsprogs/Kbuild.src | 9 + busybox-1_37_0/e2fsprogs/README | 12 + busybox-1_37_0/e2fsprogs/chattr.c | 260 + busybox-1_37_0/e2fsprogs/e2fs_lib.c | 111 + busybox-1_37_0/e2fsprogs/e2fs_lib.h | 31 + busybox-1_37_0/e2fsprogs/fsck.c | 1115 ++ busybox-1_37_0/e2fsprogs/lsattr.c | 153 + busybox-1_37_0/e2fsprogs/tune2fs.c | 102 + busybox-1_37_0/editors/Config.src | 18 + busybox-1_37_0/editors/Kbuild.src | 9 + busybox-1_37_0/editors/awk.c | 3893 ++++ busybox-1_37_0/editors/cmp.c | 166 + busybox-1_37_0/editors/diff.c | 1058 ++ busybox-1_37_0/editors/ed.c | 1028 ++ busybox-1_37_0/editors/patch.c | 616 + busybox-1_37_0/editors/patch_bbox.c | 305 + busybox-1_37_0/editors/patch_toybox.c | 590 + busybox-1_37_0/editors/sed.c | 1685 ++ busybox-1_37_0/editors/sed1line.txt | 425 + busybox-1_37_0/editors/sed_summary.htm | 223 + busybox-1_37_0/editors/vi.c | 5053 ++++++ busybox-1_37_0/examples/android-build | 34 + .../examples/bootfloppy/bootfloppy.txt | 180 + .../examples/bootfloppy/display.txt | 3 + busybox-1_37_0/examples/bootfloppy/etc/fstab | 1 + .../examples/bootfloppy/etc/init.d/rcS | 3 + .../examples/bootfloppy/etc/inittab | 4 + .../examples/bootfloppy/etc/profile | 7 + busybox-1_37_0/examples/bootfloppy/mkdevs.sh | 62 + .../examples/bootfloppy/mkrootfs.sh | 104 + .../examples/bootfloppy/mksyslinux.sh | 48 + .../examples/bootfloppy/quickstart.txt | 15 + .../examples/bootfloppy/syslinux.cfg | 7 + busybox-1_37_0/examples/busybox.spec | 120 + busybox-1_37_0/examples/depmod | 57 + busybox-1_37_0/examples/depmod.pl | 353 + busybox-1_37_0/examples/devfsd.conf | 133 + busybox-1_37_0/examples/dnsd.conf | 1 + busybox-1_37_0/examples/inetd.conf | 73 + busybox-1_37_0/examples/inittab | 96 + .../examples/linux-2.6.30_proc_self_exe.patch | 34 + busybox-1_37_0/examples/mdev.conf | 38 + .../examples/mdev.conf.change_blockdev.sh | 29 + busybox-1_37_0/examples/mdev_fat.conf | 150 + busybox-1_37_0/examples/mk2knr.pl | 84 + busybox-1_37_0/examples/shutdown-1.0/README | 30 + .../examples/shutdown-1.0/script/do_shutdown | 54 + .../shutdown-1.0/script/hardshutdown.c | 168 + .../shutdown-1.0/script/hardshutdown.make.sh | 8 + .../examples/shutdown-1.0/script/shutdown | 64 + .../examples/shutdown-1.0/script/stop_storage | 81 + .../examples/shutdown-1.0/script/stop_tasks | 70 + busybox-1_37_0/examples/udhcp/sample.bound | 42 + busybox-1_37_0/examples/udhcp/sample.deconfig | 4 + busybox-1_37_0/examples/udhcp/sample.nak | 4 + busybox-1_37_0/examples/udhcp/sample.renew | 42 + busybox-1_37_0/examples/udhcp/sample.script | 7 + busybox-1_37_0/examples/udhcp/simple.script | 75 + busybox-1_37_0/examples/udhcp/udhcpd.conf | 130 + busybox-1_37_0/examples/undeb | 59 + busybox-1_37_0/examples/unrpm | 53 + busybox-1_37_0/examples/var_service/README | 238 + .../var_service/README_distro_proposal.txt | 299 + .../var_service/dhcp_if/convert2ipconf | 73 + .../var_service/dhcp_if/convert2ntpconf | 34 + .../examples/var_service/dhcp_if/dhcp_handler | 82 + .../examples/var_service/dhcp_if/finish | 17 + .../examples/var_service/dhcp_if/log/run | 2 + .../examples/var_service/dhcp_if/run | 23 + .../examples/var_service/dhcp_if_pinger/run | 47 + .../examples/var_service/dhcpd_if/log/run | 2 + .../examples/var_service/dhcpd_if/run | 23 + .../examples/var_service/dhcpd_if/udhcpd.conf | 28 + .../var_service/dhcpd_if/w_dumpleases | 3 + .../dhcpd_if/w_dumpleases_countdown | 3 + .../examples/var_service/dnsmasq/README | 10 + .../examples/var_service/dnsmasq/dnsmasq.conf | 76 + .../examples/var_service/dnsmasq/log/run | 2 + .../examples/var_service/dnsmasq/run | 12 + .../examples/var_service/ftpd/log/run | 2 + busybox-1_37_0/examples/var_service/ftpd/run | 17 + .../var_service/fw/conf/11.22.33.44.ipconf-- | 10 + .../var_service/fw/conf/192.168.0.1.ipconf | 11 + .../examples/var_service/fw/conf/lo.ipconf | 10 + .../var_service/fw/etc/dnsmasq_servers.conf | 38 + .../examples/var_service/fw/etc/hosts | 21 + .../examples/var_service/fw/etc/resolv.conf | 31 + busybox-1_37_0/examples/var_service/fw/run | 239 + busybox-1_37_0/examples/var_service/fw/stat | 12 + .../getty_tty1/alt08x16+unimap.fnt | Bin 0 -> 5124 bytes .../examples/var_service/getty_tty1/cfg | 26 + .../var_service/getty_tty1/koi8r_to_uni.trans | 256 + .../examples/var_service/getty_tty1/login.sh | 13 + .../examples/var_service/getty_tty1/run | 24 + .../getty_tty1/unicode_cyrillic.keymap | 200 + busybox-1_37_0/examples/var_service/gpm/run | 15 + .../examples/var_service/httpd/log/run | 2 + busybox-1_37_0/examples/var_service/httpd/run | 18 + .../var_service/ifplugd_if/ifplugd_handler | 20 + .../examples/var_service/ifplugd_if/log/run | 2 + .../examples/var_service/ifplugd_if/run | 50 + .../examples/var_service/inetd/inetd.conf | 18 + .../examples/var_service/inetd/log/run | 2 + busybox-1_37_0/examples/var_service/inetd/run | 17 + .../examples/var_service/nmeter/run | 20 + .../examples/var_service/ntpd/log/run | 2 + .../examples/var_service/ntpd/ntp.script | 56 + .../examples/var_service/ntpd/p_log_important | 4 + busybox-1_37_0/examples/var_service/ntpd/run | 65 + .../examples/var_service/std_service_logger | 32 + .../var_service/supplicant_if/log/run | 2 + .../examples/var_service/supplicant_if/run | 22 + .../supplicant_if/wpa_supplicant.conf | 28 + busybox-1_37_0/examples/var_service/sview | 19 + busybox-1_37_0/examples/var_service/svpage | 19 + .../examples/var_service/tftpd/log/run | 2 + busybox-1_37_0/examples/var_service/tftpd/run | 15 + .../var_service/zcip_if/convert2ipconf | 24 + .../examples/var_service/zcip_if/finish | 13 + .../examples/var_service/zcip_if/log/run | 2 + .../examples/var_service/zcip_if/run | 20 + .../examples/var_service/zcip_if/zcip_handler | 47 + busybox-1_37_0/examples/zcip.script | 38 + busybox-1_37_0/findutils/Config.src | 10 + busybox-1_37_0/findutils/Kbuild.src | 9 + busybox-1_37_0/findutils/find.c | 1752 ++ busybox-1_37_0/findutils/grep.c | 881 + busybox-1_37_0/findutils/xargs.c | 810 + busybox-1_37_0/include/.gitignore | 12 + busybox-1_37_0/include/applet_metadata.h | 30 + busybox-1_37_0/include/applets.h.sh | 23 + busybox-1_37_0/include/applets.src.h | 101 + busybox-1_37_0/include/ar_.h | 26 + busybox-1_37_0/include/bb_archive.h | 297 + busybox-1_37_0/include/bb_e2fs_defs.h | 615 + busybox-1_37_0/include/busybox.h | 58 + busybox-1_37_0/include/dump.h | 50 + busybox-1_37_0/include/fix_u32.h | 55 + busybox-1_37_0/include/grp_.h | 66 + busybox-1_37_0/include/inet_common.h | 32 + busybox-1_37_0/include/libbb.h | 2664 +++ busybox-1_37_0/include/liblzo_interface.h | 69 + busybox-1_37_0/include/platform.h | 638 + busybox-1_37_0/include/pwd_.h | 67 + busybox-1_37_0/include/rtc_.h | 100 + busybox-1_37_0/include/shadow_.h | 106 + busybox-1_37_0/include/unicode.h | 129 + busybox-1_37_0/include/usage.src.h | 42 + busybox-1_37_0/include/volume_id.h | 31 + busybox-1_37_0/include/xatonum.h | 185 + busybox-1_37_0/include/xregex.h | 23 + busybox-1_37_0/init/Config.src | 10 + busybox-1_37_0/init/Kbuild.src | 9 + busybox-1_37_0/init/bootchartd.c | 468 + busybox-1_37_0/init/halt.c | 249 + busybox-1_37_0/init/init.c | 1359 ++ busybox-1_37_0/init/reboot.h | 30 + busybox-1_37_0/klibc-utils/Config.src | 10 + busybox-1_37_0/klibc-utils/Kbuild.src | 9 + busybox-1_37_0/klibc-utils/ipconfig.c.txt | 316 + busybox-1_37_0/klibc-utils/minips.c | 12 + busybox-1_37_0/klibc-utils/nuke.c | 46 + busybox-1_37_0/klibc-utils/resume.c | 122 + busybox-1_37_0/klibc-utils/run-init.c | 26 + busybox-1_37_0/libbb/Config.src | 393 + busybox-1_37_0/libbb/Kbuild.src | 210 + busybox-1_37_0/libbb/README | 10 + busybox-1_37_0/libbb/alloc_affinity.c | 29 + busybox-1_37_0/libbb/appletlib.c | 1131 ++ busybox-1_37_0/libbb/ask_confirmation.c | 32 + busybox-1_37_0/libbb/auto_string.c | 23 + busybox-1_37_0/libbb/bb_askpass.c | 99 + busybox-1_37_0/libbb/bb_bswap_64.c | 16 + busybox-1_37_0/libbb/bb_cat.c | 33 + busybox-1_37_0/libbb/bb_do_delay.c | 67 + busybox-1_37_0/libbb/bb_getgroups.c | 47 + busybox-1_37_0/libbb/bb_getsockname.c | 19 + busybox-1_37_0/libbb/bb_pwd.c | 112 + busybox-1_37_0/libbb/bb_qsort.c | 19 + busybox-1_37_0/libbb/bb_strtod.c | 87 + busybox-1_37_0/libbb/bb_strtonum.c | 159 + busybox-1_37_0/libbb/bbunit.c | 65 + busybox-1_37_0/libbb/capability.c | 127 + busybox-1_37_0/libbb/change_identity.c | 59 + busybox-1_37_0/libbb/chomp.c | 18 + busybox-1_37_0/libbb/common_bufsiz.c | 84 + busybox-1_37_0/libbb/compare_string_array.c | 179 + busybox-1_37_0/libbb/concat_path_file.c | 28 + busybox-1_37_0/libbb/concat_subpath_file.c | 22 + busybox-1_37_0/libbb/const_hack.c | 16 + busybox-1_37_0/libbb/copy_file.c | 449 + busybox-1_37_0/libbb/copyfd.c | 162 + busybox-1_37_0/libbb/correct_password.c | 123 + busybox-1_37_0/libbb/crc32.c | 75 + busybox-1_37_0/libbb/default_error_retval.c | 16 + busybox-1_37_0/libbb/device_open.c | 31 + busybox-1_37_0/libbb/die_if_bad_username.c | 65 + busybox-1_37_0/libbb/dump.c | 904 + busybox-1_37_0/libbb/duration.c | 93 + busybox-1_37_0/libbb/endofname.c | 26 + busybox-1_37_0/libbb/executable.c | 93 + busybox-1_37_0/libbb/fclose_nonstdin.c | 24 + busybox-1_37_0/libbb/fflush_stdout_and_exit.c | 27 + busybox-1_37_0/libbb/fgets_str.c | 78 + busybox-1_37_0/libbb/find_mount_point.c | 79 + busybox-1_37_0/libbb/find_pid_by_name.c | 123 + busybox-1_37_0/libbb/find_root_device.c | 74 + busybox-1_37_0/libbb/full_write.c | 42 + busybox-1_37_0/libbb/get_console.c | 78 + busybox-1_37_0/libbb/get_cpu_count.c | 47 + .../libbb/get_last_path_component.c | 50 + busybox-1_37_0/libbb/get_line_from_file.c | 182 + busybox-1_37_0/libbb/get_shell_name.c | 25 + busybox-1_37_0/libbb/get_volsize.c | 48 + busybox-1_37_0/libbb/getopt32.c | 622 + busybox-1_37_0/libbb/getopt_allopts.c | 27 + busybox-1_37_0/libbb/getpty.c | 65 + busybox-1_37_0/libbb/hash_md5_sha.c | 1929 ++ busybox-1_37_0/libbb/hash_md5prime.c | 461 + .../libbb/hash_sha1_hwaccel_x86-32.S | 234 + .../libbb/hash_sha1_hwaccel_x86-64.S | 232 + busybox-1_37_0/libbb/hash_sha1_x86-64.S | 1489 ++ busybox-1_37_0/libbb/hash_sha1_x86-64.S.sh | 478 + .../libbb/hash_sha256_hwaccel_x86-32.S | 284 + .../libbb/hash_sha256_hwaccel_x86-64.S | 290 + busybox-1_37_0/libbb/herror_msg.c | 38 + busybox-1_37_0/libbb/human_readable.c | 186 + busybox-1_37_0/libbb/in_ether.c | 57 + busybox-1_37_0/libbb/inet_cksum.c | 38 + busybox-1_37_0/libbb/inet_common.c | 196 + busybox-1_37_0/libbb/inode_hash.c | 102 + busybox-1_37_0/libbb/isdirectory.c | 29 + busybox-1_37_0/libbb/isqrt.c | 60 + busybox-1_37_0/libbb/iterate_on_dir.c | 28 + busybox-1_37_0/libbb/kernel_version.c | 35 + busybox-1_37_0/libbb/last_char_is.c | 19 + busybox-1_37_0/libbb/lineedit.c | 3080 ++++ busybox-1_37_0/libbb/lineedit_ptr_hack.c | 23 + busybox-1_37_0/libbb/llist.c | 97 + busybox-1_37_0/libbb/logenv.c | 24 + busybox-1_37_0/libbb/login.c | 170 + busybox-1_37_0/libbb/loop.c | 284 + busybox-1_37_0/libbb/make_directory.c | 151 + busybox-1_37_0/libbb/makedev.c | 31 + busybox-1_37_0/libbb/match_fstype.c | 40 + busybox-1_37_0/libbb/messages.c | 52 + busybox-1_37_0/libbb/missing_syscalls.c | 40 + busybox-1_37_0/libbb/mode_string.c | 110 + busybox-1_37_0/libbb/mtab.c | 54 + busybox-1_37_0/libbb/nuke_str.c | 20 + busybox-1_37_0/libbb/obscure.c | 222 + busybox-1_37_0/libbb/parse_config.c | 252 + busybox-1_37_0/libbb/parse_mode.c | 148 + busybox-1_37_0/libbb/percent_decode.c | 68 + busybox-1_37_0/libbb/perror_msg.c | 40 + busybox-1_37_0/libbb/perror_nomsg.c | 14 + busybox-1_37_0/libbb/perror_nomsg_and_die.c | 14 + busybox-1_37_0/libbb/pidfile.c | 58 + busybox-1_37_0/libbb/platform.c | 227 + busybox-1_37_0/libbb/popcnt.c | 46 + busybox-1_37_0/libbb/print_flags.c | 32 + busybox-1_37_0/libbb/print_numbered_lines.c | 37 + busybox-1_37_0/libbb/printable.c | 57 + busybox-1_37_0/libbb/printable_string.c | 62 + .../libbb/process_escape_sequence.c | 117 + busybox-1_37_0/libbb/procps.c | 657 + busybox-1_37_0/libbb/progress.c | 215 + busybox-1_37_0/libbb/ptr_to_globals.c | 34 + busybox-1_37_0/libbb/pw_encrypt.c | 168 + busybox-1_37_0/libbb/pw_encrypt_des.c | 815 + busybox-1_37_0/libbb/pw_encrypt_md5.c | 161 + busybox-1_37_0/libbb/pw_encrypt_sha.c | 286 + busybox-1_37_0/libbb/read.c | 80 + busybox-1_37_0/libbb/read_key.c | 307 + busybox-1_37_0/libbb/read_printf.c | 238 + busybox-1_37_0/libbb/recursive_action.c | 181 + busybox-1_37_0/libbb/remove_file.c | 106 + busybox-1_37_0/libbb/replace.c | 48 + busybox-1_37_0/libbb/rtc.c | 109 + busybox-1_37_0/libbb/run_shell.c | 102 + busybox-1_37_0/libbb/safe_gethostname.c | 50 + busybox-1_37_0/libbb/safe_poll.c | 33 + busybox-1_37_0/libbb/safe_strncpy.c | 31 + busybox-1_37_0/libbb/safe_write.c | 28 + busybox-1_37_0/libbb/securetty.c | 26 + busybox-1_37_0/libbb/selinux_common.c | 55 + busybox-1_37_0/libbb/setup_environment.c | 73 + busybox-1_37_0/libbb/signals.c | 130 + busybox-1_37_0/libbb/simplify_path.c | 59 + busybox-1_37_0/libbb/single_argv.c | 25 + busybox-1_37_0/libbb/skip_whitespace.c | 37 + busybox-1_37_0/libbb/speed_table.c | 182 + busybox-1_37_0/libbb/str_tolower.c | 14 + busybox-1_37_0/libbb/strrstr.c | 65 + busybox-1_37_0/libbb/sysconf.c | 30 + busybox-1_37_0/libbb/time.c | 361 + busybox-1_37_0/libbb/trim.c | 37 + busybox-1_37_0/libbb/u_signal_names.c | 269 + busybox-1_37_0/libbb/ubi.c | 44 + busybox-1_37_0/libbb/udp_io.c | 189 + busybox-1_37_0/libbb/unicode.c | 1188 ++ busybox-1_37_0/libbb/update_passwd.c | 340 + busybox-1_37_0/libbb/utmp.c | 146 + busybox-1_37_0/libbb/uuencode.c | 276 + busybox-1_37_0/libbb/verror_msg.c | 209 + busybox-1_37_0/libbb/vfork_daemon_rexec.c | 342 + busybox-1_37_0/libbb/warn_ignoring_args.c | 18 + busybox-1_37_0/libbb/wfopen.c | 55 + busybox-1_37_0/libbb/wfopen_input.c | 55 + busybox-1_37_0/libbb/write.c | 18 + busybox-1_37_0/libbb/xatonum.c | 116 + busybox-1_37_0/libbb/xatonum_template.c | 195 + busybox-1_37_0/libbb/xconnect.c | 541 + busybox-1_37_0/libbb/xfunc_die.c | 21 + busybox-1_37_0/libbb/xfuncs.c | 445 + busybox-1_37_0/libbb/xfuncs_printf.c | 742 + busybox-1_37_0/libbb/xgetcwd.c | 42 + busybox-1_37_0/libbb/xgethostbyname.c | 17 + busybox-1_37_0/libbb/xreadlink.c | 198 + busybox-1_37_0/libbb/xrealloc_vector.c | 45 + busybox-1_37_0/libbb/xregcomp.c | 31 + busybox-1_37_0/libpwdgrp/Kbuild.src | 9 + busybox-1_37_0/libpwdgrp/pwd_grp.c | 572 + busybox-1_37_0/libpwdgrp/uidgid_get.c | 129 + busybox-1_37_0/loginutils/Config.src | 96 + busybox-1_37_0/loginutils/Kbuild.src | 9 + busybox-1_37_0/loginutils/README | 70 + busybox-1_37_0/loginutils/add-remove-shell.c | 134 + busybox-1_37_0/loginutils/addgroup.c | 203 + busybox-1_37_0/loginutils/adduser.c | 314 + busybox-1_37_0/loginutils/chpasswd.c | 115 + busybox-1_37_0/loginutils/cryptpw.c | 139 + busybox-1_37_0/loginutils/deluser.c | 168 + busybox-1_37_0/loginutils/getty.c | 737 + busybox-1_37_0/loginutils/login.c | 622 + busybox-1_37_0/loginutils/passwd.c | 243 + busybox-1_37_0/loginutils/su.c | 209 + busybox-1_37_0/loginutils/sulogin.c | 128 + busybox-1_37_0/loginutils/vlock.c | 132 + busybox-1_37_0/mailutils/Config.src | 12 + busybox-1_37_0/mailutils/Kbuild.src | 9 + busybox-1_37_0/mailutils/mail.c | 201 + busybox-1_37_0/mailutils/mail.h | 36 + busybox-1_37_0/mailutils/makemime.c | 246 + busybox-1_37_0/mailutils/popmaildir.c | 291 + busybox-1_37_0/mailutils/reformime.c | 294 + busybox-1_37_0/mailutils/sendmail.c | 542 + busybox-1_37_0/make_single_applets.sh | 97 + busybox-1_37_0/miscutils/Config.src | 10 + busybox-1_37_0/miscutils/Kbuild.src | 9 + busybox-1_37_0/miscutils/adjtimex.c | 176 + busybox-1_37_0/miscutils/ascii.c | 51 + busybox-1_37_0/miscutils/bbconfig.c | 55 + busybox-1_37_0/miscutils/bc.c | 7594 ++++++++ busybox-1_37_0/miscutils/beep.c | 151 + busybox-1_37_0/miscutils/chat.c | 530 + busybox-1_37_0/miscutils/conspy.c | 573 + busybox-1_37_0/miscutils/crond.c | 1133 ++ busybox-1_37_0/miscutils/crontab.c | 214 + busybox-1_37_0/miscutils/dc.c | 306 + busybox-1_37_0/miscutils/devfsd.c | 1871 ++ busybox-1_37_0/miscutils/devmem.c | 173 + busybox-1_37_0/miscutils/fbsplash.c | 569 + busybox-1_37_0/miscutils/fbsplash.cfg | 9 + busybox-1_37_0/miscutils/flash_eraseall.c | 218 + busybox-1_37_0/miscutils/flash_lock_unlock.c | 103 + busybox-1_37_0/miscutils/flashcp.c | 170 + busybox-1_37_0/miscutils/getfattr.c | 136 + busybox-1_37_0/miscutils/hdparm.c | 2199 +++ busybox-1_37_0/miscutils/hexedit.c | 460 + busybox-1_37_0/miscutils/i2c_tools.c | 1543 ++ busybox-1_37_0/miscutils/inotifyd.c | 224 + busybox-1_37_0/miscutils/less.c | 2163 +++ busybox-1_37_0/miscutils/lsscsi.c | 123 + busybox-1_37_0/miscutils/makedevs.c | 311 + busybox-1_37_0/miscutils/man.c | 395 + busybox-1_37_0/miscutils/microcom.c | 192 + busybox-1_37_0/miscutils/mim.c | 15 + busybox-1_37_0/miscutils/mt.c | 163 + busybox-1_37_0/miscutils/nandwrite.c | 284 + busybox-1_37_0/miscutils/partprobe.c | 55 + busybox-1_37_0/miscutils/raidautorun.c | 38 + busybox-1_37_0/miscutils/readahead.c | 67 + busybox-1_37_0/miscutils/rfkill.c | 148 + busybox-1_37_0/miscutils/runlevel.c | 67 + busybox-1_37_0/miscutils/rx.c | 281 + busybox-1_37_0/miscutils/seedrng.c | 262 + busybox-1_37_0/miscutils/setfattr.c | 68 + busybox-1_37_0/miscutils/setserial.c | 761 + busybox-1_37_0/miscutils/strings.c | 117 + busybox-1_37_0/miscutils/time.c | 490 + busybox-1_37_0/miscutils/tree.c | 131 + busybox-1_37_0/miscutils/ts.c | 87 + busybox-1_37_0/miscutils/ttysize.c | 65 + busybox-1_37_0/miscutils/ubi_tools.c | 363 + busybox-1_37_0/miscutils/ubirename.c | 97 + busybox-1_37_0/miscutils/volname.c | 69 + busybox-1_37_0/miscutils/watchdog.c | 165 + busybox-1_37_0/modutils/Config.src | 186 + busybox-1_37_0/modutils/Kbuild.src | 9 + busybox-1_37_0/modutils/depmod.c | 266 + busybox-1_37_0/modutils/depmod_process.sh | 20 + busybox-1_37_0/modutils/insmod.c | 75 + busybox-1_37_0/modutils/lsmod.c | 133 + busybox-1_37_0/modutils/modinfo.c | 185 + busybox-1_37_0/modutils/modprobe-small.c | 1069 ++ busybox-1_37_0/modutils/modprobe.c | 725 + busybox-1_37_0/modutils/modutils-24.c | 3950 ++++ busybox-1_37_0/modutils/modutils.c | 289 + busybox-1_37_0/modutils/modutils.h | 108 + busybox-1_37_0/modutils/rmmod.c | 78 + busybox-1_37_0/networking/Config.src | 99 + busybox-1_37_0/networking/Kbuild.src | 9 + busybox-1_37_0/networking/arp.c | 540 + busybox-1_37_0/networking/arping.c | 437 + busybox-1_37_0/networking/brctl.c | 687 + busybox-1_37_0/networking/dnsd.c | 575 + busybox-1_37_0/networking/ether-wake.c | 292 + busybox-1_37_0/networking/ftpd.c | 1476 ++ busybox-1_37_0/networking/ftpgetput.c | 338 + busybox-1_37_0/networking/hostname.c | 197 + busybox-1_37_0/networking/httpd.c | 2901 +++ busybox-1_37_0/networking/httpd_helpers.sh | 24 + busybox-1_37_0/networking/httpd_indexcgi.c | 344 + .../networking/httpd_post_upload.cgi | 59 + busybox-1_37_0/networking/httpd_ssi.c | 170 + busybox-1_37_0/networking/ifconfig.c | 555 + busybox-1_37_0/networking/ifenslave.c | 623 + busybox-1_37_0/networking/ifplugd.c | 768 + busybox-1_37_0/networking/ifupdown.c | 1540 ++ busybox-1_37_0/networking/inetd.c | 1753 ++ busybox-1_37_0/networking/interface.c | 1121 ++ busybox-1_37_0/networking/ip.c | 477 + busybox-1_37_0/networking/ipcalc.c | 211 + busybox-1_37_0/networking/isrv.c | 336 + busybox-1_37_0/networking/isrv.h | 61 + busybox-1_37_0/networking/isrv_identd.c | 169 + .../networking/libiproute/Kbuild.src | 83 + .../networking/libiproute/ip_common.h | 40 + .../libiproute/ip_parse_common_args.c | 157 + .../networking/libiproute/ipaddress.c | 851 + busybox-1_37_0/networking/libiproute/iplink.c | 1033 ++ .../networking/libiproute/ipneigh.c | 359 + .../networking/libiproute/iproute.c | 1170 ++ busybox-1_37_0/networking/libiproute/iprule.c | 370 + .../networking/libiproute/iptunnel.c | 572 + .../networking/libiproute/libnetlink.c | 439 + .../networking/libiproute/libnetlink.h | 64 + .../networking/libiproute/ll_addr.c | 76 + busybox-1_37_0/networking/libiproute/ll_map.c | 178 + busybox-1_37_0/networking/libiproute/ll_map.h | 17 + .../networking/libiproute/ll_proto.c | 183 + .../networking/libiproute/ll_types.c | 204 + .../networking/libiproute/rt_names.c | 257 + .../networking/libiproute/rt_names.h | 29 + .../networking/libiproute/rtm_map.c | 125 + .../networking/libiproute/rtm_map.h | 14 + busybox-1_37_0/networking/libiproute/utils.c | 318 + busybox-1_37_0/networking/libiproute/utils.h | 92 + busybox-1_37_0/networking/nameif.c | 329 + busybox-1_37_0/networking/nbd-client.c | 302 + busybox-1_37_0/networking/nc.c | 292 + busybox-1_37_0/networking/nc_bloaty.c | 922 + busybox-1_37_0/networking/netstat.c | 774 + busybox-1_37_0/networking/nslookup.c | 1433 ++ busybox-1_37_0/networking/ntpd.c | 2861 +++ busybox-1_37_0/networking/ntpd.diff | 24 + busybox-1_37_0/networking/parse_pasv_epsv.c | 68 + busybox-1_37_0/networking/ping.c | 1065 ++ busybox-1_37_0/networking/pscan.c | 177 + busybox-1_37_0/networking/route.c | 722 + busybox-1_37_0/networking/slattach.c | 231 + busybox-1_37_0/networking/ssl_client.c | 57 + .../ssl_helper-wolfssl/00cfg-wolfssl-3.6.8 | 22 + .../ssl_helper-wolfssl/00cfg-wolfssl-3.9.8 | 39 + .../networking/ssl_helper-wolfssl/README | 24 + .../ssl_helper-wolfssl/ssl_helper.c | 480 + .../ssl_helper-wolfssl/ssl_helper.sh | 12 + busybox-1_37_0/networking/ssl_helper/README | 16 + .../networking/ssl_helper/ssl_helper.c | 406 + .../networking/ssl_helper/ssl_helper.sh | 11 + busybox-1_37_0/networking/tc.c | 628 + busybox-1_37_0/networking/tcpudp.c | 710 + busybox-1_37_0/networking/tcpudp_perhost.c | 61 + busybox-1_37_0/networking/tcpudp_perhost.h | 33 + busybox-1_37_0/networking/telnet.c | 702 + busybox-1_37_0/networking/telnetd.IAC_test.sh | 87 + busybox-1_37_0/networking/telnetd.c | 924 + .../networking/telnetd.ctrlSQ.patch | 175 + busybox-1_37_0/networking/tftp.c | 1015 ++ busybox-1_37_0/networking/tls.c | 2483 +++ busybox-1_37_0/networking/tls.h | 122 + busybox-1_37_0/networking/tls_aes.c | 461 + busybox-1_37_0/networking/tls_aes.h | 14 + busybox-1_37_0/networking/tls_aesgcm.c | 202 + busybox-1_37_0/networking/tls_aesgcm.h | 11 + busybox-1_37_0/networking/tls_fe.c | 628 + busybox-1_37_0/networking/tls_pstm.c | 2308 +++ busybox-1_37_0/networking/tls_pstm.h | 285 + .../networking/tls_pstm_montgomery_reduce.c | 451 + .../networking/tls_pstm_mul_comba.c | 782 + .../networking/tls_pstm_sqr_comba.c | 1113 ++ busybox-1_37_0/networking/tls_rsa.c | 213 + busybox-1_37_0/networking/tls_rsa.h | 32 + busybox-1_37_0/networking/tls_sp_c32.c | 1531 ++ busybox-1_37_0/networking/traceroute.c | 1298 ++ busybox-1_37_0/networking/tunctl.c | 179 + busybox-1_37_0/networking/udhcp/Config.src | 185 + busybox-1_37_0/networking/udhcp/Kbuild.src | 21 + busybox-1_37_0/networking/udhcp/arpping.c | 140 + busybox-1_37_0/networking/udhcp/common.c | 743 + busybox-1_37_0/networking/udhcp/common.h | 399 + busybox-1_37_0/networking/udhcp/d6_common.h | 200 + busybox-1_37_0/networking/udhcp/d6_dhcpc.c | 1879 ++ busybox-1_37_0/networking/udhcp/d6_packet.c | 185 + busybox-1_37_0/networking/udhcp/d6_socket.c | 136 + busybox-1_37_0/networking/udhcp/dhcpc.c | 1841 ++ busybox-1_37_0/networking/udhcp/dhcpc.h | 44 + busybox-1_37_0/networking/udhcp/dhcpd.c | 1299 ++ busybox-1_37_0/networking/udhcp/dhcpd.h | 91 + busybox-1_37_0/networking/udhcp/dhcprelay.c | 397 + .../networking/udhcp/domain_codec.c | 258 + busybox-1_37_0/networking/udhcp/dumpleases.c | 121 + busybox-1_37_0/networking/udhcp/packet.c | 259 + busybox-1_37_0/networking/udhcp/signalpipe.c | 94 + busybox-1_37_0/networking/udhcp/socket.c | 110 + busybox-1_37_0/networking/vconfig.c | 162 + busybox-1_37_0/networking/wget.c | 1656 ++ busybox-1_37_0/networking/whois.c | 186 + busybox-1_37_0/networking/zcip.c | 548 + busybox-1_37_0/printutils/Config.src | 10 + busybox-1_37_0/printutils/Kbuild.src | 7 + busybox-1_37_0/printutils/lpd.c | 302 + busybox-1_37_0/printutils/lpr.c | 293 + busybox-1_37_0/procps/Config.src | 25 + busybox-1_37_0/procps/Kbuild.src | 9 + busybox-1_37_0/procps/free.c | 191 + busybox-1_37_0/procps/fuser.c | 333 + busybox-1_37_0/procps/iostat.c | 528 + busybox-1_37_0/procps/kill.c | 344 + busybox-1_37_0/procps/lsof.c | 78 + busybox-1_37_0/procps/mpstat.c | 967 + busybox-1_37_0/procps/nmeter.c | 1035 ++ busybox-1_37_0/procps/pgrep.c | 253 + busybox-1_37_0/procps/pidof.c | 143 + busybox-1_37_0/procps/pmap.c | 111 + busybox-1_37_0/procps/powertop.c | 848 + busybox-1_37_0/procps/ps.c | 807 + busybox-1_37_0/procps/ps.posix | 175 + busybox-1_37_0/procps/pstree.c | 416 + busybox-1_37_0/procps/pwdx.c | 59 + busybox-1_37_0/procps/smemcap.c | 121 + busybox-1_37_0/procps/sysctl.c | 350 + busybox-1_37_0/procps/top.c | 1347 ++ busybox-1_37_0/procps/uptime.c | 118 + busybox-1_37_0/procps/watch.c | 119 + busybox-1_37_0/qemu_multiarch_testing/README | 63 + .../extract_od_binary.sh | 6 + .../extract_uuencoded_binary.sh | 17 + .../qemu_multiarch_testing/hdc.dir/build | 51 + .../qemu_multiarch_testing/hdc.dir/init | 9 + .../qemu_multiarch_testing/make-hdc-img.sh | 30 + .../parallel-build-hdc-img.sh | 40 + busybox-1_37_0/runit/Config.src | 10 + busybox-1_37_0/runit/Kbuild.src | 9 + busybox-1_37_0/runit/chpst.c | 488 + busybox-1_37_0/runit/runit_lib.h | 46 + busybox-1_37_0/runit/runsv.c | 715 + busybox-1_37_0/runit/runsvdir.c | 426 + busybox-1_37_0/runit/sv.c | 793 + busybox-1_37_0/runit/svlogd.c | 1261 ++ busybox-1_37_0/scripts/Kbuild.include | 155 + busybox-1_37_0/scripts/Kbuild.src | 7 + busybox-1_37_0/scripts/Makefile.IMA | 210 + busybox-1_37_0/scripts/Makefile.build | 344 + busybox-1_37_0/scripts/Makefile.clean | 102 + busybox-1_37_0/scripts/Makefile.host | 155 + busybox-1_37_0/scripts/Makefile.lib | 171 + busybox-1_37_0/scripts/basic/.gitignore | 4 + busybox-1_37_0/scripts/basic/Makefile | 18 + busybox-1_37_0/scripts/basic/docproc.c | 401 + busybox-1_37_0/scripts/basic/fixdep.c | 419 + busybox-1_37_0/scripts/basic/split-include.c | 228 + busybox-1_37_0/scripts/bb_release | 23 + busybox-1_37_0/scripts/bloat-o-meter | 140 + busybox-1_37_0/scripts/checkhelp.awk | 40 + busybox-1_37_0/scripts/checkstack.pl | 185 + busybox-1_37_0/scripts/cleanup_printf2puts | 9 + busybox-1_37_0/scripts/echo.c | 238 + busybox-1_37_0/scripts/embedded_scripts | 131 + busybox-1_37_0/scripts/find_bad_common_bufsiz | 13 + busybox-1_37_0/scripts/find_stray_common_vars | 10 + busybox-1_37_0/scripts/find_stray_empty_lines | 19 + busybox-1_37_0/scripts/fix_ws.sh | 71 + busybox-1_37_0/scripts/gcc-version.sh | 12 + busybox-1_37_0/scripts/gen_build_files.sh | 125 + busybox-1_37_0/scripts/generate_BUFSIZ.sh | 137 + busybox-1_37_0/scripts/kconfig/.gitignore | 19 + busybox-1_37_0/scripts/kconfig/Makefile | 271 + busybox-1_37_0/scripts/kconfig/POTFILES.in | 5 + busybox-1_37_0/scripts/kconfig/check.sh | 13 + busybox-1_37_0/scripts/kconfig/conf.c | 661 + busybox-1_37_0/scripts/kconfig/confdata.c | 602 + busybox-1_37_0/scripts/kconfig/expr.c | 1099 ++ busybox-1_37_0/scripts/kconfig/expr.h | 194 + busybox-1_37_0/scripts/kconfig/gconf.c | 1644 ++ busybox-1_37_0/scripts/kconfig/gconf.glade | 648 + busybox-1_37_0/scripts/kconfig/images.c | 326 + busybox-1_37_0/scripts/kconfig/kconfig_load.c | 35 + busybox-1_37_0/scripts/kconfig/kxgettext.c | 227 + .../scripts/kconfig/lex.zconf.c_shipped | 2325 +++ busybox-1_37_0/scripts/kconfig/lkc.h | 147 + busybox-1_37_0/scripts/kconfig/lkc_proto.h | 41 + .../scripts/kconfig/lxdialog/.gitignore | 4 + .../scripts/kconfig/lxdialog/BIG.FAT.WARNING | 4 + .../scripts/kconfig/lxdialog/Makefile | 21 + .../kconfig/lxdialog/check-lxdialog.sh | 91 + .../scripts/kconfig/lxdialog/checklist.c | 333 + .../scripts/kconfig/lxdialog/colors.h | 154 + .../scripts/kconfig/lxdialog/dialog.h | 177 + .../scripts/kconfig/lxdialog/inputbox.c | 224 + .../scripts/kconfig/lxdialog/lxdialog.c | 204 + .../scripts/kconfig/lxdialog/menubox.c | 426 + .../scripts/kconfig/lxdialog/msgbox.c | 71 + .../scripts/kconfig/lxdialog/textbox.c | 531 + .../scripts/kconfig/lxdialog/util.c | 362 + .../scripts/kconfig/lxdialog/yesno.c | 102 + busybox-1_37_0/scripts/kconfig/mconf.c | 1116 ++ busybox-1_37_0/scripts/kconfig/menu.c | 396 + busybox-1_37_0/scripts/kconfig/qconf.cc | 1425 ++ busybox-1_37_0/scripts/kconfig/qconf.h | 263 + busybox-1_37_0/scripts/kconfig/symbol.c | 882 + busybox-1_37_0/scripts/kconfig/util.c | 113 + busybox-1_37_0/scripts/kconfig/zconf.gperf | 43 + .../scripts/kconfig/zconf.hash.c_shipped | 220 + busybox-1_37_0/scripts/kconfig/zconf.l | 355 + .../scripts/kconfig/zconf.tab.c_shipped | 2171 +++ busybox-1_37_0/scripts/kconfig/zconf.y | 683 + busybox-1_37_0/scripts/memusage | 16 + busybox-1_37_0/scripts/mkconfigs | 87 + busybox-1_37_0/scripts/mkdiff_obj | 46 + busybox-1_37_0/scripts/mkdiff_obj_bloat | 33 + busybox-1_37_0/scripts/mkmakefile | 39 + busybox-1_37_0/scripts/objsizes | 19 + busybox-1_37_0/scripts/randomtest | 160 + busybox-1_37_0/scripts/randomtest.loop | 77 + busybox-1_37_0/scripts/sample_pmap | 11 + busybox-1_37_0/scripts/showasm | 20 + busybox-1_37_0/scripts/test_make_O | 11 + busybox-1_37_0/scripts/test_make_clean | 14 + busybox-1_37_0/scripts/test_setenv_leak.c | 18 + busybox-1_37_0/scripts/trylink | 340 + busybox-1_37_0/selinux/Config.src | 11 + busybox-1_37_0/selinux/Kbuild.src | 10 + busybox-1_37_0/selinux/chcon.c | 212 + busybox-1_37_0/selinux/getenforce.c | 48 + busybox-1_37_0/selinux/getsebool.c | 82 + busybox-1_37_0/selinux/load_policy.c | 38 + busybox-1_37_0/selinux/matchpathcon.c | 112 + busybox-1_37_0/selinux/runcon.c | 161 + busybox-1_37_0/selinux/selinuxenabled.c | 30 + busybox-1_37_0/selinux/sestatus.c | 220 + busybox-1_37_0/selinux/setenforce.c | 57 + busybox-1_37_0/selinux/setfiles.c | 721 + busybox-1_37_0/selinux/setsebool.c | 52 + busybox-1_37_0/shell/Config.src | 189 + busybox-1_37_0/shell/Kbuild.src | 11 + busybox-1_37_0/shell/README | 82 + busybox-1_37_0/shell/README.job | 304 + busybox-1_37_0/shell/ash.c | 14871 ++++++++++++++++ busybox-1_37_0/shell/ash_doc.txt | 122 + busybox-1_37_0/shell/ash_ptr_hack.c | 29 + ...ecessary_code_in_backquote_expansion.patch | 135 + busybox-1_37_0/shell/ash_test/.gitignore | 7 + .../shell/ash_test/ash-alias/alias.right | 4 + .../shell/ash_test/ash-alias/alias.tests | 37 + .../ash_test/ash-alias/alias_brace.right | 1 + .../ash_test/ash-alias/alias_brace.tests | 16 + .../shell/ash_test/ash-alias/alias_case.right | 1 + .../shell/ash_test/ash-alias/alias_case.tests | 8 + .../shell/ash_test/ash-arith/README.ash | 1 + .../ash-arith/arith-assign-in-varexp.right | 3 + .../ash-arith/arith-assign-in-varexp.tests | 8 + .../ash-arith/arith-assign-in-varexp1.right | 2 + .../ash-arith/arith-assign-in-varexp1.tests | 9 + .../ash_test/ash-arith/arith-bash1.right | 2 + .../ash_test/ash-arith/arith-bash1.tests | 5 + .../ash_test/ash-arith/arith-bignum1.right | 13 + .../ash_test/ash-arith/arith-bignum1.tests | 17 + .../ash_test/ash-arith/arith-comma1.right | 3 + .../ash_test/ash-arith/arith-comma1.tests | 6 + .../shell/ash_test/ash-arith/arith-for.right | 74 + .../shell/ash_test/ash-arith/arith-for.testsx | 94 + .../ash_test/ash-arith/arith-postinc.right | 8 + .../ash_test/ash-arith/arith-postinc.tests | 9 + .../ash-arith/arith-precedence1.right | 4 + .../ash-arith/arith-precedence1.tests | 15 + .../ash-arith/arith-ternary-assign.right | 1 + .../ash-arith/arith-ternary-assign.tests | 3 + .../ash-arith/arith-ternary-comma.right | 1 + .../ash-arith/arith-ternary-comma.tests | 3 + .../ash-arith/arith-ternary-preincr.right | 1 + .../ash-arith/arith-ternary-preincr.tests | 3 + .../ash_test/ash-arith/arith-ternary1.right | 2 + .../ash_test/ash-arith/arith-ternary1.tests | 5 + .../ash_test/ash-arith/arith-ternary2.right | 3 + .../ash_test/ash-arith/arith-ternary2.tests | 7 + .../ash_test/ash-arith/arith-ternary3.right | 1 + .../ash_test/ash-arith/arith-ternary3.tests | 4 + .../ash-arith/arith-ternary_nested.right | 1 + .../ash-arith/arith-ternary_nested.tests | 2 + .../ash-arith/arith-ternary_nested1.right | 1 + .../ash-arith/arith-ternary_nested1.tests | 2 + .../ash-arith/arith-ternary_nested2.right | 1 + .../ash-arith/arith-ternary_nested2.tests | 2 + .../ash-arith/arith-ternary_nested3.right | 2 + .../ash-arith/arith-ternary_nested3.tests | 6 + .../shell/ash_test/ash-arith/arith.right | 173 + .../shell/ash_test/ash-arith/arith.tests | 301 + .../shell/ash_test/ash-arith/arith1.sub | 40 + .../shell/ash_test/ash-arith/arith2.sub | 53 + .../ash_test/ash-arith/arith_nested1.right | 1 + .../ash_test/ash-arith/arith_nested1.tests | 1 + .../shell/ash_test/ash-comm/comm.right | 6 + .../shell/ash_test/ash-comm/comm.tests | 20 + .../ash_test/ash-getopts/getopt_nested.right | 14 + .../ash_test/ash-getopts/getopt_nested.tests | 21 + .../ash_test/ash-getopts/getopt_optarg.right | 18 + .../ash_test/ash-getopts/getopt_optarg.tests | 18 + .../ash-getopts/getopt_positional.right | 6 + .../ash-getopts/getopt_positional.tests | 8 + .../ash_test/ash-getopts/getopt_silent.right | 6 + .../ash_test/ash-getopts/getopt_silent.tests | 23 + .../ash_test/ash-getopts/getopt_simple.right | 34 + .../ash_test/ash-getopts/getopt_simple.tests | 75 + .../ash-getopts/getopt_test_libc_bug.right | 26 + .../ash-getopts/getopt_test_libc_bug.tests | 38 + .../shell/ash_test/ash-glob/glob1.right | 2 + .../shell/ash_test/ash-glob/glob1.tests | 2 + .../shell/ash_test/ash-glob/glob2.right | 18 + .../shell/ash_test/ash-glob/glob2.tests | 27 + .../shell/ash_test/ash-glob/glob3.right | 2 + .../shell/ash_test/ash-glob/glob3.tests | 2 + .../ash_test/ash-glob/glob_altvalue1.right | 7 + .../ash_test/ash-glob/glob_altvalue1.tests | 13 + .../ash_test/ash-glob/glob_and_assign.right | 6 + .../ash_test/ash-glob/glob_and_assign.tests | 10 + .../ash-glob/glob_bkslash_in_var.right | 4 + .../ash-glob/glob_bkslash_in_var.tests | 10 + .../shell/ash_test/ash-glob/glob_dir.right | 19 + .../shell/ash_test/ash-glob/glob_dir.tests | 25 + .../shell/ash_test/ash-glob/glob_redir.right | 2 + .../shell/ash_test/ash-glob/glob_redir.tests | 9 + .../shell/ash_test/ash-heredoc/heredoc.right | 21 + .../shell/ash_test/ash-heredoc/heredoc.tests | 94 + .../shell/ash_test/ash-heredoc/heredoc1.right | 5 + .../shell/ash_test/ash-heredoc/heredoc1.tests | 9 + .../shell/ash_test/ash-heredoc/heredoc2.right | 2 + .../shell/ash_test/ash-heredoc/heredoc2.tests | 7 + .../shell/ash_test/ash-heredoc/heredoc3.right | 9 + .../shell/ash_test/ash-heredoc/heredoc3.tests | 12 + .../shell/ash_test/ash-heredoc/heredoc4.right | 1 + .../shell/ash_test/ash-heredoc/heredoc4.tests | 3 + .../shell/ash_test/ash-heredoc/heredoc5.right | 9 + .../shell/ash_test/ash-heredoc/heredoc5.tests | 12 + .../shell/ash_test/ash-heredoc/heredoc6.right | 2 + .../shell/ash_test/ash-heredoc/heredoc6.tests | 4 + .../shell/ash_test/ash-heredoc/heredoc7.right | 1 + .../shell/ash_test/ash-heredoc/heredoc7.tests | 3 + .../shell/ash_test/ash-heredoc/heredoc8.right | 1 + .../shell/ash_test/ash-heredoc/heredoc8.tests | 3 + .../shell/ash_test/ash-heredoc/heredoc9.right | 1 + .../shell/ash_test/ash-heredoc/heredoc9.tests | 9 + .../shell/ash_test/ash-heredoc/heredocA.right | 1 + .../shell/ash_test/ash-heredoc/heredocA.tests | 4 + .../shell/ash_test/ash-heredoc/heredocB.right | 3 + .../shell/ash_test/ash-heredoc/heredocB.tests | 12 + .../ash-heredoc/heredoc_after_compound1.right | 2 + .../ash-heredoc/heredoc_after_compound1.tests | 3 + .../ash-heredoc/heredoc_and_cmd.right | 2 + .../ash-heredoc/heredoc_and_cmd.tests | 8 + .../ash-heredoc/heredoc_backquote1.right | 5 + .../ash-heredoc/heredoc_backquote1.tests | 10 + .../ash-heredoc/heredoc_backslash1.right | 43 + .../ash-heredoc/heredoc_backslash1.tests | 70 + .../heredoc_bkslash_newline1.right | 8 + .../heredoc_bkslash_newline1.tests | 25 + .../heredoc_bkslash_newline2.right | 1 + .../heredoc_bkslash_newline2.tests | 4 + .../ash_test/ash-heredoc/heredoc_empty.right | 3 + .../ash_test/ash-heredoc/heredoc_empty.tests | 8 + .../ash_test/ash-heredoc/heredoc_empty2.right | 4 + .../ash_test/ash-heredoc/heredoc_empty2.tests | 14 + .../ash_test/ash-heredoc/heredoc_empty3.right | 2 + .../ash_test/ash-heredoc/heredoc_empty3.tests | 4 + .../ash_test/ash-heredoc/heredoc_huge.right | 3 + .../ash_test/ash-heredoc/heredoc_huge.tests | 9 + .../ash-heredoc/heredoc_side_effects.right | 1 + .../ash-heredoc/heredoc_side_effects.tests | 5 + .../ash-heredoc/heredoc_var_expand1.right | 4 + .../ash-heredoc/heredoc_var_expand1.tests | 11 + .../shell/ash_test/ash-invert/invert.right | 10 + .../shell/ash_test/ash-invert/invert.tests | 19 + .../shell/ash_test/ash-misc/and-or.right | 18 + .../shell/ash_test/ash-misc/and-or.tests | 34 + .../shell/ash_test/ash-misc/assignment1.right | 9 + .../shell/ash_test/ash-misc/assignment1.tests | 42 + .../shell/ash_test/ash-misc/assignment2.right | 2 + .../shell/ash_test/ash-misc/assignment2.tests | 3 + .../shell/ash_test/ash-misc/assignment3.right | 2 + .../shell/ash_test/ash-misc/assignment3.tests | 5 + .../shell/ash_test/ash-misc/assignment4.right | 1 + .../shell/ash_test/ash-misc/assignment4.tests | 3 + .../shell/ash_test/ash-misc/assignment5.right | 5 + .../shell/ash_test/ash-misc/assignment5.tests | 9 + .../shell/ash_test/ash-misc/break1.right | 2 + .../shell/ash_test/ash-misc/break1.tests | 2 + .../shell/ash_test/ash-misc/break2.right | 3 + .../shell/ash_test/ash-misc/break2.tests | 6 + .../shell/ash_test/ash-misc/break3.right | 2 + .../shell/ash_test/ash-misc/break3.tests | 2 + .../shell/ash_test/ash-misc/break4.right | 6 + .../shell/ash_test/ash-misc/break4.tests | 12 + .../shell/ash_test/ash-misc/break5.right | 13 + .../shell/ash_test/ash-misc/break5.tests | 4 + .../shell/ash_test/ash-misc/builtin1.right | 2 + .../shell/ash_test/ash-misc/builtin1.tests | 6 + .../shell/ash_test/ash-misc/case1.right | 22 + .../shell/ash_test/ash-misc/case1.tests | 40 + .../shell/ash_test/ash-misc/colon.right | 2 + .../shell/ash_test/ash-misc/colon.tests | 5 + .../shell/ash_test/ash-misc/command.right | 1 + .../shell/ash_test/ash-misc/command.tests | 1 + .../shell/ash_test/ash-misc/command2.right | 2 + .../shell/ash_test/ash-misc/command2.tests | 6 + .../shell/ash_test/ash-misc/compound.right | 14 + .../shell/ash_test/ash-misc/compound.tests | 21 + .../shell/ash_test/ash-misc/continue1.right | 8 + .../shell/ash_test/ash-misc/continue1.tests | 4 + .../shell/ash_test/ash-misc/continue2.right | 1 + .../shell/ash_test/ash-misc/continue2.tests | 3 + .../shell/ash_test/ash-misc/continue3.right | 2 + .../shell/ash_test/ash-misc/continue3.tests | 3 + .../ash_test/ash-misc/control_char1.right | 3 + .../ash_test/ash-misc/control_char1.tests | 3 + .../ash_test/ash-misc/control_char2.right | 2 + .../ash_test/ash-misc/control_char2.tests | 3 + .../ash_test/ash-misc/control_char3.right | 1 + .../ash_test/ash-misc/control_char3.tests | 2 + .../ash_test/ash-misc/control_char4.right | 1 + .../ash_test/ash-misc/control_char4.tests | 2 + .../ash_test/ash-misc/echo_write_error.right | 2 + .../ash_test/ash-misc/echo_write_error.tests | 7 + .../shell/ash_test/ash-misc/elif1.right | 4 + .../shell/ash_test/ash-misc/elif1.tests | 6 + .../shell/ash_test/ash-misc/elif2.right | 2 + .../shell/ash_test/ash-misc/elif2.tests | 8 + .../shell/ash_test/ash-misc/empty_args.right | 6 + .../shell/ash_test/ash-misc/empty_args.tests | 9 + .../shell/ash_test/ash-misc/empty_for.right | 1 + .../shell/ash_test/ash-misc/empty_for.tests | 3 + .../shell/ash_test/ash-misc/empty_for1.right | 1 + .../shell/ash_test/ash-misc/empty_for1.tests | 5 + .../shell/ash_test/ash-misc/empty_for2.right | 4 + .../shell/ash_test/ash-misc/empty_for2.tests | 6 + .../ash_test/ash-misc/env_and_func.right | 2 + .../ash_test/ash-misc/env_and_func.tests | 8 + .../shell/ash_test/ash-misc/errexit1.right | 1 + .../shell/ash_test/ash-misc/errexit1.tests | 5 + .../shell/ash_test/ash-misc/eval1.right | 1 + .../shell/ash_test/ash-misc/eval1.tests | 4 + .../shell/ash_test/ash-misc/eval2.right | 3 + .../shell/ash_test/ash-misc/eval2.tests | 4 + .../shell/ash_test/ash-misc/exec.right | 2 + .../shell/ash_test/ash-misc/exec.tests | 3 + .../shell/ash_test/ash-misc/exit1.right | 1 + .../shell/ash_test/ash-misc/exit1.tests | 4 + .../shell/ash_test/ash-misc/exitcode1.right | 2 + .../shell/ash_test/ash-misc/exitcode1.tests | 2 + .../shell/ash_test/ash-misc/exitcode2.right | 4 + .../shell/ash_test/ash-misc/exitcode2.tests | 12 + .../ash_test/ash-misc/exitcode_EACCES.right | 2 + .../ash_test/ash-misc/exitcode_EACCES.tests | 2 + .../ash_test/ash-misc/exitcode_ENOENT.right | 2 + .../ash_test/ash-misc/exitcode_ENOENT.tests | 2 + .../ash_test/ash-misc/exitcode_trap1.right | 2 + .../ash_test/ash-misc/exitcode_trap1.tests | 6 + .../ash_test/ash-misc/exitcode_trap2.right | 1 + .../ash_test/ash-misc/exitcode_trap2.tests | 8 + .../ash_test/ash-misc/exitcode_trap3.right | 2 + .../ash_test/ash-misc/exitcode_trap3.tests | 9 + .../ash_test/ash-misc/exitcode_trap4.right | 2 + .../ash_test/ash-misc/exitcode_trap4.tests | 8 + .../ash_test/ash-misc/exitcode_trap5.right | 3 + .../ash_test/ash-misc/exitcode_trap5.tests | 10 + .../ash_test/ash-misc/exitcode_trap6.right | 2 + .../ash_test/ash-misc/exitcode_trap6.tests | 10 + .../ash_test/ash-misc/exitcode_trap7.right | 2 + .../ash_test/ash-misc/exitcode_trap7.tests | 7 + .../shell/ash_test/ash-misc/export1.right | 1 + .../shell/ash_test/ash-misc/export1.tests | 2 + .../shell/ash_test/ash-misc/for.right | 1 + .../shell/ash_test/ash-misc/for.tests | 5 + .../ash_test/ash-misc/for_with_bslashes.right | 9 + .../ash_test/ash-misc/for_with_bslashes.tests | 6 + .../ash_test/ash-misc/for_with_keywords.right | 4 + .../ash_test/ash-misc/for_with_keywords.tests | 2 + .../shell/ash_test/ash-misc/func1.right | 6 + .../shell/ash_test/ash-misc/func1.tests | 16 + .../shell/ash_test/ash-misc/func2.right | 5 + .../shell/ash_test/ash-misc/func2.tests | 9 + .../shell/ash_test/ash-misc/func3.right | 4 + .../shell/ash_test/ash-misc/func3.tests | 8 + .../shell/ash_test/ash-misc/func4.right | 2 + .../shell/ash_test/ash-misc/func4.tests | 7 + .../shell/ash_test/ash-misc/func5.right | 3 + .../shell/ash_test/ash-misc/func5.tests | 8 + .../shell/ash_test/ash-misc/func_args1.right | 5 + .../shell/ash_test/ash-misc/func_args1.tests | 8 + .../shell/ash_test/ash-misc/func_bash1.right | 12 + .../shell/ash_test/ash-misc/func_bash1.tests | 28 + .../ash_test/ash-misc/func_compound1.right | 3 + .../ash_test/ash-misc/func_compound1.tests | 4 + .../shell/ash_test/ash-misc/func_local1.right | 3 + .../shell/ash_test/ash-misc/func_local1.tests | 5 + .../shell/ash_test/ash-misc/func_local2.right | 14 + .../shell/ash_test/ash-misc/func_local2.tests | 7 + .../ash-misc/func_prio_over_builtins.right | 5 + .../ash-misc/func_prio_over_builtins.tests | 5 + .../ash_test/ash-misc/func_return1.right | 2 + .../ash_test/ash-misc/func_return1.tests | 11 + .../ash_test/ash-misc/func_return2.right | 2 + .../ash_test/ash-misc/func_return2.tests | 6 + .../ash_test/ash-misc/group_in_braces.right | 5 + .../ash_test/ash-misc/group_in_braces.tests | 11 + .../ash_test/ash-misc/if_false_exitcode.right | 1 + .../ash_test/ash-misc/if_false_exitcode.tests | 2 + .../shell/ash_test/ash-misc/last_amp.right | 2 + .../shell/ash_test/ash-misc/last_amp.tests | 8 + .../shell/ash_test/ash-misc/local1.right | 4 + .../shell/ash_test/ash-misc/local1.tests | 11 + .../shell/ash_test/ash-misc/local2.right | 1 + .../shell/ash_test/ash-misc/local2.tests | 1 + .../shell/ash_test/ash-misc/nommu1.right | 7 + .../shell/ash_test/ash-misc/nommu1.tests | 12 + .../shell/ash_test/ash-misc/nommu2.right | 5 + .../shell/ash_test/ash-misc/nommu2.tests | 5 + .../shell/ash_test/ash-misc/nommu3.right | 2 + .../shell/ash_test/ash-misc/nommu3.tests | 15 + .../shell/ash_test/ash-misc/nulltick1.right | 3 + .../shell/ash_test/ash-misc/nulltick1.tests | 3 + .../shell/ash_test/ash-misc/opts1.right | 2 + .../shell/ash_test/ash-misc/opts1.tests | 5 + .../shell/ash_test/ash-misc/pid.right | 1 + .../shell/ash_test/ash-misc/pid.tests | 1 + .../shell/ash_test/ash-misc/piped_input.right | 2 + .../shell/ash_test/ash-misc/piped_input.tests | 3 + .../shell/ash_test/ash-misc/pipefail.right | 40 + .../shell/ash_test/ash-misc/pipefail.tests | 45 + .../shell/ash_test/ash-misc/read.right | 4 + .../shell/ash_test/ash-misc/read.tests | 4 + .../shell/ash_test/ash-misc/return1.right | 1 + .../shell/ash_test/ash-misc/return1.tests | 4 + .../shell/ash_test/ash-misc/set-n1.right | 3 + .../shell/ash_test/ash-misc/set-n1.tests | 2 + .../shell/ash_test/ash-misc/shift.right | 6 + .../shell/ash_test/ash-misc/shift.tests | 14 + .../shell/ash_test/ash-misc/shift1.right | 9 + .../shell/ash_test/ash-misc/shift1.tests | 10 + .../shell/ash_test/ash-misc/source1.right | 2 + .../shell/ash_test/ash-misc/source1.tests | 5 + .../shell/ash_test/ash-misc/source2.right | 1 + .../shell/ash_test/ash-misc/source2.tests | 3 + .../shell/ash_test/ash-misc/source3.right | 2 + .../shell/ash_test/ash-misc/source3.tests | 6 + .../shell/ash_test/ash-misc/source5.right | 4 + .../shell/ash_test/ash-misc/source5.tests | 8 + .../ash-misc/source_argv_and_shift.right | 4 + .../ash-misc/source_argv_and_shift.tests | 12 + .../shell/ash_test/ash-misc/tickquote1.right | 1 + .../shell/ash_test/ash-misc/tickquote1.tests | 1 + .../shell/ash_test/ash-misc/unicode1.right | 3 + .../shell/ash_test/ash-misc/unicode1.tests | 13 + .../shell/ash_test/ash-misc/until1.right | 3 + .../shell/ash_test/ash-misc/until1.tests | 11 + .../shell/ash_test/ash-misc/wait4.right | 1 + .../shell/ash_test/ash-misc/wait4.tests | 2 + .../shell/ash_test/ash-misc/wait5.right | 2 + .../shell/ash_test/ash-misc/wait5.tests | 5 + .../shell/ash_test/ash-misc/wait6.right | 2 + .../shell/ash_test/ash-misc/wait6.tests | 6 + .../shell/ash_test/ash-misc/wait7.right | 2 + .../shell/ash_test/ash-misc/wait7.tests | 7 + .../shell/ash_test/ash-misc/while1.right | 1 + .../shell/ash_test/ash-misc/while1.tests | 2 + .../shell/ash_test/ash-misc/while2.right | 2 + .../shell/ash_test/ash-misc/while2.tests | 2 + .../shell/ash_test/ash-misc/while4.right | 1 + .../shell/ash_test/ash-misc/while4.tests | 6 + .../ash_test/ash-misc/while_in_subshell.right | 1 + .../ash_test/ash-misc/while_in_subshell.tests | 2 + .../and_or_and_backgrounding.right | 4 + .../and_or_and_backgrounding.tests | 30 + .../shell/ash_test/ash-parsing/argv0.right | 1 + .../shell/ash_test/ash-parsing/argv0.tests | 4 + .../ash_test/ash-parsing/bkslash_eof1.right | 1 + .../ash_test/ash-parsing/bkslash_eof1.tests | 1 + .../ash-parsing/bkslash_newline1.right | 4 + .../ash-parsing/bkslash_newline1.tests | 8 + .../ash-parsing/bkslash_newline2.right | 4 + .../ash-parsing/bkslash_newline2.tests | 4 + .../ash-parsing/bkslash_newline3.right | 1 + .../ash-parsing/bkslash_newline3.tests | 4 + .../ash-parsing/bkslash_newline4.right | 4 + .../ash-parsing/bkslash_newline4.tests | 14 + .../shell/ash_test/ash-parsing/brace1.right | 7 + .../shell/ash_test/ash-parsing/brace1.tests | 7 + .../shell/ash_test/ash-parsing/brace2.right | 3 + .../shell/ash_test/ash-parsing/brace2.tests | 5 + .../shell/ash_test/ash-parsing/comment1.right | 2 + .../shell/ash_test/ash-parsing/comment1.tests | 2 + .../shell/ash_test/ash-parsing/comment2.right | 4 + .../shell/ash_test/ash-parsing/comment2.tests | 13 + .../shell/ash_test/ash-parsing/eol1.right | 1 + .../shell/ash_test/ash-parsing/eol1.tests | 18 + .../shell/ash_test/ash-parsing/escape1.right | 4 + .../shell/ash_test/ash-parsing/escape1.tests | 6 + .../shell/ash_test/ash-parsing/escape2.right | 4 + .../shell/ash_test/ash-parsing/escape2.tests | 4 + .../shell/ash_test/ash-parsing/escape3.right | 23 + .../shell/ash_test/ash-parsing/escape3.tests | 10 + .../shell/ash_test/ash-parsing/escape4.right | 2 + .../shell/ash_test/ash-parsing/escape4.tests | 6 + .../shell/ash_test/ash-parsing/escape5.right | 9 + .../shell/ash_test/ash-parsing/escape5.tests | 7 + .../shell/ash_test/ash-parsing/group1.right | 1 + .../shell/ash_test/ash-parsing/group1.tests | 1 + .../shell/ash_test/ash-parsing/group2.right | 2 + .../shell/ash_test/ash-parsing/group2.tests | 3 + .../ash-parsing/groups_and_keywords1.right | 11 + .../ash-parsing/groups_and_keywords1.tests | 10 + .../ash-parsing/groups_and_keywords2.right | 3 + .../ash-parsing/groups_and_keywords2.tests | 9 + .../shell/ash_test/ash-parsing/negate.right | 36 + .../shell/ash_test/ash-parsing/negate.tests | 19 + .../shell/ash_test/ash-parsing/nodone1.right | 1 + .../shell/ash_test/ash-parsing/nodone1.tests | 1 + .../shell/ash_test/ash-parsing/nodone2.right | 1 + .../shell/ash_test/ash-parsing/nodone2.tests | 3 + .../shell/ash_test/ash-parsing/noeol.right | 1 + .../shell/ash_test/ash-parsing/noeol.tests | 2 + .../shell/ash_test/ash-parsing/noeol2.right | 1 + .../shell/ash_test/ash-parsing/noeol2.tests | 7 + .../shell/ash_test/ash-parsing/noeol3.right | 1 + .../shell/ash_test/ash-parsing/noeol3.tests | 2 + .../ash_test/ash-parsing/process_subst.right | 3 + .../ash_test/ash-parsing/process_subst.tests | 3 + .../shell/ash_test/ash-parsing/quote1.right | 1 + .../shell/ash_test/ash-parsing/quote1.tests | 2 + .../shell/ash_test/ash-parsing/quote2.right | 1 + .../shell/ash_test/ash-parsing/quote2.tests | 2 + .../shell/ash_test/ash-parsing/quote3.right | 12 + .../shell/ash_test/ash-parsing/quote3.tests | 21 + .../shell/ash_test/ash-parsing/quote4.right | 1 + .../shell/ash_test/ash-parsing/quote4.tests | 2 + .../ash_test/ash-parsing/starquoted.right | 8 + .../ash_test/ash-parsing/starquoted.tests | 8 + .../ash_test/ash-parsing/starquoted2.right | 8 + .../ash_test/ash-parsing/starquoted2.tests | 19 + .../ash_test/ash-parsing/starquoted3.right | 2 + .../ash_test/ash-parsing/starquoted3.tests | 1 + .../ash_test/ash-psubst/bash_procsub.right | 9 + .../ash_test/ash-psubst/bash_procsub.tests | 33 + .../shell/ash_test/ash-psubst/emptytick.right | 17 + .../shell/ash_test/ash-psubst/emptytick.tests | 16 + .../shell/ash_test/ash-psubst/falsetick.right | 24 + .../shell/ash_test/ash-psubst/falsetick.tests | 19 + .../ash_test/ash-psubst/falsetick2.right | 1 + .../ash_test/ash-psubst/falsetick2.tests | 3 + .../shell/ash_test/ash-psubst/tick.right | 2 + .../shell/ash_test/ash-psubst/tick.tests | 4 + .../shell/ash_test/ash-psubst/tick2.right | 1 + .../shell/ash_test/ash-psubst/tick2.tests | 5 + .../shell/ash_test/ash-psubst/tick3.right | 6 + .../shell/ash_test/ash-psubst/tick3.tests | 14 + .../shell/ash_test/ash-psubst/tick4.right | 7 + .../shell/ash_test/ash-psubst/tick4.tests | 7 + .../shell/ash_test/ash-psubst/tick_huge.right | 3 + .../shell/ash_test/ash-psubst/tick_huge.tests | 7 + .../ash_test/ash-psubst/tick_in_heredoc.right | 5 + .../ash_test/ash-psubst/tick_in_heredoc.tests | 7 + .../ash_test/ash-quoting/bkslash_case1.right | 10 + .../ash_test/ash-quoting/bkslash_case1.tests | 38 + .../ash_test/ash-quoting/bkslash_case2.right | 3 + .../ash_test/ash-quoting/bkslash_case2.tests | 13 + .../ash-quoting/bkslash_in_varexp.right | 5 + .../ash-quoting/bkslash_in_varexp.tests | 16 + .../ash-quoting/bkslash_in_varexp1.right | 5 + .../ash-quoting/bkslash_in_varexp1.tests | 6 + .../ash_test/ash-quoting/case_glob1.right | 1 + .../ash_test/ash-quoting/case_glob1.tests | 8 + .../ash-quoting/dollar_altvalue1.right | 16 + .../ash-quoting/dollar_altvalue1.tests | 16 + .../ash-quoting/dollar_altvalue2.right | 69 + .../ash-quoting/dollar_altvalue2.tests | 33 + .../ash-quoting/dollar_altvalue9.right | 26 + .../ash-quoting/dollar_altvalue9.tests | 17 + .../ash-quoting/dollar_repl_bash1.right | 14 + .../ash-quoting/dollar_repl_bash1.tests | 12 + .../ash-quoting/dollar_repl_bash2.right | 4 + .../ash-quoting/dollar_repl_bash2.tests | 8 + .../ash-quoting/dollar_repl_slash_bash1.right | 10 + .../ash-quoting/dollar_repl_slash_bash1.tests | 21 + .../ash-quoting/dollar_repl_slash_bash2.right | 1 + .../ash-quoting/dollar_repl_slash_bash2.tests | 2 + .../ash-quoting/dollar_squote_bash1.right | 10 + .../ash-quoting/dollar_squote_bash1.tests | 8 + .../ash-quoting/dollar_squote_bash2.right | 6 + .../ash-quoting/dollar_squote_bash2.tests | 10 + .../shell/ash_test/ash-quoting/mode_x.right | 10 + .../shell/ash_test/ash-quoting/mode_x.tests | 14 + .../ash_test/ash-quoting/negative_arith.right | 2 + .../ash_test/ash-quoting/negative_arith.tests | 8 + .../ash-quoting/quote_in_varexp1.right | 2 + .../ash-quoting/quote_in_varexp1.tests | 2 + .../ash_test/ash-quoting/quoted_punct.right | 35 + .../ash_test/ash-quoting/quoted_punct.tests | 41 + .../ash-quoting/space_in_varexp1.right | 2 + .../ash-quoting/space_in_varexp1.tests | 6 + .../ash-quoting/squote_in_varexp.right | 9 + .../ash-quoting/squote_in_varexp.tests | 10 + .../ash-quoting/squote_in_varexp1.right | 3 + .../ash-quoting/squote_in_varexp1.tests | 4 + .../ash-quoting/squote_in_varexp2.right | 5 + .../ash-quoting/squote_in_varexp2.tests | 6 + .../ash-quoting/squote_in_varexp3.right | 1 + .../ash-quoting/squote_in_varexp3.tests | 1 + .../ash-quoting/unicode_8x_chars.right | 6 + .../ash-quoting/unicode_8x_chars.tests | 28 + .../shell/ash_test/ash-read/read_REPLY.right | 5 + .../shell/ash_test/ash-read/read_REPLY.tests | 5 + .../ash_test/ash-read/read_SIGCHLD.right | 2 + .../ash_test/ash-read/read_SIGCHLD.tests | 4 + .../shell/ash_test/ash-read/read_d0.right | 1 + .../shell/ash_test/ash-read/read_d0.tests | 1 + .../shell/ash_test/ash-read/read_ifs.right | 10 + .../shell/ash_test/ash-read/read_ifs.tests | 10 + .../shell/ash_test/ash-read/read_n.right | 3 + .../shell/ash_test/ash-read/read_n.tests | 3 + .../shell/ash_test/ash-read/read_r.right | 2 + .../shell/ash_test/ash-read/read_r.tests | 4 + .../shell/ash_test/ash-read/read_t.right | 4 + .../shell/ash_test/ash-read/read_t.tests | 10 + .../shell/ash_test/ash-read/read_t0.right | 3 + .../shell/ash_test/ash-read/read_t0.tests | 14 + .../shell/ash_test/ash-redir/redir.right | 2 + .../shell/ash_test/ash-redir/redir.tests | 6 + .../shell/ash_test/ash-redir/redir1.right | 12 + .../shell/ash_test/ash-redir/redir1.tests | 40 + .../shell/ash_test/ash-redir/redir2.right | 1 + .../shell/ash_test/ash-redir/redir2.tests | 5 + .../shell/ash_test/ash-redir/redir3.right | 3 + .../shell/ash_test/ash-redir/redir3.tests | 5 + .../shell/ash_test/ash-redir/redir4.right | 1 + .../shell/ash_test/ash-redir/redir4.tests | 72 + .../shell/ash_test/ash-redir/redir5.right | 4 + .../shell/ash_test/ash-redir/redir5.tests | 13 + .../shell/ash_test/ash-redir/redir6.right | 2 + .../shell/ash_test/ash-redir/redir6.tests | 3 + .../shell/ash_test/ash-redir/redir7.right | 3 + .../shell/ash_test/ash-redir/redir7.tests | 12 + .../shell/ash_test/ash-redir/redir8.right | 3 + .../shell/ash_test/ash-redir/redir8.tests | 15 + .../shell/ash_test/ash-redir/redir9.right | 2 + .../shell/ash_test/ash-redir/redir9.tests | 4 + .../shell/ash_test/ash-redir/redirA.right | 2 + .../shell/ash_test/ash-redir/redirA.tests | 11 + ...r_children_should_not_see_saved_fd_1.right | 5 + ...r_children_should_not_see_saved_fd_1.tests | 6 + ...r_children_should_not_see_saved_fd_2.right | 5 + ...r_children_should_not_see_saved_fd_2.tests | 6 + ...r_children_should_not_see_saved_fd_3.right | 5 + ...r_children_should_not_see_saved_fd_3.tests | 6 + .../ash_test/ash-redir/redir_escapednum.right | 1 + .../ash_test/ash-redir/redir_escapednum.tests | 2 + .../ash_test/ash-redir/redir_exec1.right | 1 + .../ash_test/ash-redir/redir_exec1.tests | 2 + .../ash_test/ash-redir/redir_exec2.right | 4 + .../ash_test/ash-redir/redir_exec2.tests | 10 + .../ash_test/ash-redir/redir_expand.right | 18 + .../ash_test/ash-redir/redir_expand.tests | 85 + .../shell/ash_test/ash-redir/redir_leak.right | 6 + .../shell/ash_test/ash-redir/redir_leak.tests | 10 + .../ash_test/ash-redir/redir_multi.right | 4 + .../ash_test/ash-redir/redir_multi.tests | 5 + .../ash_test/ash-redir/redir_script.right | 1 + .../ash_test/ash-redir/redir_script.tests | 38 + .../ash_test/ash-redir/redir_space.right | 3 + .../ash_test/ash-redir/redir_space.tests | 6 + .../ash_test/ash-redir/redir_stdin1.right | 3 + .../ash_test/ash-redir/redir_stdin1.tests | 7 + .../ash_test/ash-redir/redir_to_bad_fd.right | 2 + .../ash_test/ash-redir/redir_to_bad_fd.tests | 3 + .../ash-redir/redir_to_bad_fd255.right | 2 + .../ash-redir/redir_to_bad_fd255.tests | 3 + .../ash_test/ash-redir/redir_to_bad_fd3.right | 2 + .../ash_test/ash-redir/redir_to_bad_fd3.tests | 3 + .../shell/ash_test/ash-signals/catch.right | 5 + .../shell/ash_test/ash-signals/catch.tests | 20 + .../ash-signals/continue_and_trap1.right | 1 + .../ash-signals/continue_and_trap1.tests | 7 + .../shell/ash_test/ash-signals/reap1.right | 1 + .../shell/ash_test/ash-signals/reap1.tests | 14 + .../ash-signals/return_in_trap1.right | 4 + .../ash-signals/return_in_trap1.tests | 18 + .../shell/ash_test/ash-signals/save-ret.right | 2 + .../shell/ash_test/ash-signals/save-ret.tests | 4 + .../shell/ash_test/ash-signals/savetrap.right | 8 + .../shell/ash_test/ash-signals/savetrap.tests | 9 + .../shell/ash_test/ash-signals/sigint1.right | 1 + .../shell/ash_test/ash-signals/sigint1.tests | 41 + .../shell/ash_test/ash-signals/signal1.right | 20 + .../shell/ash_test/ash-signals/signal1.tests | 28 + .../shell/ash_test/ash-signals/signal2.right | 3 + .../shell/ash_test/ash-signals/signal2.tests | 18 + .../shell/ash_test/ash-signals/signal3.right | 4 + .../shell/ash_test/ash-signals/signal3.tests | 17 + .../shell/ash_test/ash-signals/signal4.right | 4 + .../shell/ash_test/ash-signals/signal4.tests | 5 + .../shell/ash_test/ash-signals/signal5.right | 12 + .../shell/ash_test/ash-signals/signal5.tests | 14 + .../shell/ash_test/ash-signals/signal6.right | 2 + .../shell/ash_test/ash-signals/signal6.tests | 2 + .../shell/ash_test/ash-signals/signal7.right | 1 + .../shell/ash_test/ash-signals/signal7.tests | 18 + .../shell/ash_test/ash-signals/signal8.right | 3 + .../shell/ash_test/ash-signals/signal8.tests | 18 + .../shell/ash_test/ash-signals/signal9.right | 3 + .../shell/ash_test/ash-signals/signal9.tests | 21 + .../ash_test/ash-signals/signal_read2.right | 2 + .../ash_test/ash-signals/signal_read2.tests | 7 + .../ash_test/ash-signals/sigquit_exec.right | 2 + .../ash_test/ash-signals/sigquit_exec.tests | 4 + .../shell/ash_test/ash-signals/subshell.right | 21 + .../shell/ash_test/ash-signals/subshell.tests | 19 + .../shell/ash_test/ash-signals/usage.right | 26 + .../shell/ash_test/ash-signals/usage.tests | 35 + .../ash-standalone/noexec_gets_no_env.right | 4 + .../ash-standalone/noexec_gets_no_env.tests | 5 + .../ash_test/ash-standalone/nofork_env.right | 9 + .../ash_test/ash-standalone/nofork_env.tests | 15 + .../nofork_trashes_getopt.right | 1 + .../nofork_trashes_getopt.tests | 6 + .../ash-standalone/var_standalone1.right | 1 + .../ash-standalone/var_standalone1.tests | 2 + .../shell/ash_test/ash-vars/empty.right | 3 + .../shell/ash_test/ash-vars/empty.tests | 5 + .../ash_test/ash-vars/glob_and_vars.right | 1 + .../ash_test/ash-vars/glob_and_vars.tests | 2 + .../ash_test/ash-vars/param_expand_alt.right | 9 + .../ash_test/ash-vars/param_expand_alt.tests | 33 + .../ash_test/ash-vars/param_expand_alt2.right | 4 + .../ash_test/ash-vars/param_expand_alt2.tests | 7 + .../ash-vars/param_expand_assign.right | 27 + .../ash-vars/param_expand_assign.tests | 39 + .../param_expand_bash_substring.right | 65 + .../param_expand_bash_substring.tests | 84 + .../ash-vars/param_expand_default.right | 9 + .../ash-vars/param_expand_default.tests | 27 + .../param_expand_indicate_error.right | 43 + .../param_expand_indicate_error.tests | 61 + .../ash_test/ash-vars/param_expand_len.right | 12 + .../ash_test/ash-vars/param_expand_len.tests | 24 + .../ash_test/ash-vars/param_expand_len1.right | 11 + .../ash_test/ash-vars/param_expand_len1.tests | 31 + .../shell/ash_test/ash-vars/param_glob.right | 4 + .../shell/ash_test/ash-vars/param_glob.tests | 9 + .../ash_test/ash-vars/param_subshell.right | 7 + .../ash_test/ash-vars/param_subshell.tests | 15 + .../shell/ash_test/ash-vars/readonly0.right | 13 + .../shell/ash_test/ash-vars/readonly0.tests | 45 + .../shell/ash_test/ash-vars/readonly1.right | 2 + .../shell/ash_test/ash-vars/readonly1.tests | 7 + .../shell/ash_test/ash-vars/star.right | 6 + .../shell/ash_test/ash-vars/star.tests | 8 + .../shell/ash_test/ash-vars/unset.right | 17 + .../shell/ash_test/ash-vars/unset.tests | 40 + ...e-arithmetic-expansion-at-parse-time.right | 2 + ...e-arithmetic-expansion-at-parse-time.tests | 3 + ...lde-in-parameter-expansion-in-quotes.right | 1 + ...lde-in-parameter-expansion-in-quotes.tests | 2 + ...-parameter-expansions-outside-quotes.right | 1 + ...-parameter-expansions-outside-quotes.tests | 3 + ...-expand-tilde-in-parameter-expansion.right | 1 + ...-expand-tilde-in-parameter-expansion.tests | 2 + ...replacement-in-parameter-expansion-1.right | 1 + ...replacement-in-parameter-expansion-1.tests | 2 + ...replacement-in-parameter-expansion-2.right | 1 + ...replacement-in-parameter-expansion-2.tests | 2 + ...replacement-in-parameter-expansion-3.right | 1 + ...replacement-in-parameter-expansion-3.tests | 2 + ...replacement-in-parameter-expansion-4.right | 1 + ...replacement-in-parameter-expansion-4.tests | 2 + ...replacement-in-parameter-expansion-5.right | 1 + ...replacement-in-parameter-expansion-5.tests | 2 + .../var-runtime-quote-detection.right | 1 + .../var-runtime-quote-detection.tests | 1 + .../ash_test/ash-vars/var-utf8-length.right | 1 + .../ash_test/ash-vars/var-utf8-length.tests | 4 + .../shell/ash_test/ash-vars/var1.right | 4 + .../shell/ash_test/ash-vars/var1.tests | 9 + .../shell/ash_test/ash-vars/var2.right | 2 + .../shell/ash_test/ash-vars/var2.tests | 4 + .../shell/ash_test/ash-vars/var3.right | 5 + .../shell/ash_test/ash-vars/var3.tests | 1 + .../shell/ash_test/ash-vars/var4.right | 1 + .../shell/ash_test/ash-vars/var4.tests | 1 + .../shell/ash_test/ash-vars/var5.right | 6 + .../shell/ash_test/ash-vars/var5.tests | 14 + .../shell/ash_test/ash-vars/var6.right | 2 + .../shell/ash_test/ash-vars/var6.tests | 5 + .../shell/ash_test/ash-vars/var_10.right | 3 + .../shell/ash_test/ash-vars/var_10.tests | 4 + .../shell/ash_test/ash-vars/var_LINENO1.right | 8 + .../shell/ash_test/ash-vars/var_LINENO1.tests | 6 + .../shell/ash_test/ash-vars/var_LINENO2.right | 3 + .../shell/ash_test/ash-vars/var_LINENO2.tests | 8 + .../shell/ash_test/ash-vars/var_LINENO3.right | 2 + .../shell/ash_test/ash-vars/var_LINENO3.tests | 2 + .../shell/ash_test/ash-vars/var_bash1.right | 14 + .../shell/ash_test/ash-vars/var_bash1.tests | 18 + .../shell/ash_test/ash-vars/var_bash1a.right | 6 + .../shell/ash_test/ash-vars/var_bash1a.tests | 11 + .../shell/ash_test/ash-vars/var_bash1b.right | 23 + .../shell/ash_test/ash-vars/var_bash1b.tests | 24 + .../shell/ash_test/ash-vars/var_bash2.right | 10 + .../shell/ash_test/ash-vars/var_bash2.tests | 24 + .../shell/ash_test/ash-vars/var_bash3.right | 20 + .../shell/ash_test/ash-vars/var_bash3.tests | 41 + .../shell/ash_test/ash-vars/var_bash4.right | 40 + .../shell/ash_test/ash-vars/var_bash4.tests | 81 + .../shell/ash_test/ash-vars/var_bash5.right | 11 + .../shell/ash_test/ash-vars/var_bash5.tests | 29 + .../shell/ash_test/ash-vars/var_bash6.right | 5 + .../shell/ash_test/ash-vars/var_bash6.tests | 9 + .../shell/ash_test/ash-vars/var_bash7.right | 1 + .../shell/ash_test/ash-vars/var_bash7.tests | 1 + ...var_bash_pattern_starting_with_slash.right | 2 + ...var_bash_pattern_starting_with_slash.tests | 3 + .../var_bash_repl_empty_pattern.right | 2 + .../var_bash_repl_empty_pattern.tests | 3 + .../ash-vars/var_bash_repl_empty_var.right | 3 + .../ash-vars/var_bash_repl_empty_var.tests | 5 + .../ash-vars/var_bash_repl_unterminated.right | 1 + .../ash-vars/var_bash_repl_unterminated.tests | 2 + .../ash-vars/var_expand_in_assign.right | 5 + .../ash-vars/var_expand_in_assign.tests | 15 + .../ash-vars/var_expand_in_redir.right | 3 + .../ash-vars/var_expand_in_redir.tests | 13 + .../ash_test/ash-vars/var_expand_on_ifs.right | 9 + .../ash_test/ash-vars/var_expand_on_ifs.tests | 11 + .../ash_test/ash-vars/var_in_pipes.right | 6 + .../ash_test/ash-vars/var_in_pipes.tests | 7 + .../shell/ash_test/ash-vars/var_leak.right | 4 + .../shell/ash_test/ash-vars/var_leak.tests | 21 + .../shell/ash_test/ash-vars/var_leaks.right | 1 + .../shell/ash_test/ash-vars/var_leaks.tests | 14 + .../shell/ash_test/ash-vars/var_nested1.right | 3 + .../shell/ash_test/ash-vars/var_nested1.tests | 16 + .../shell/ash_test/ash-vars/var_nested2.right | 1 + .../shell/ash_test/ash-vars/var_nested2.tests | 2 + .../shell/ash_test/ash-vars/var_posix1.right | 41 + .../shell/ash_test/ash-vars/var_posix1.tests | 52 + .../shell/ash_test/ash-vars/var_serial.right | 5 + .../shell/ash_test/ash-vars/var_serial.tests | 22 + .../ash_test/ash-vars/var_subst_in_for.right | 40 + .../ash_test/ash-vars/var_subst_in_for.tests | 40 + .../ash_test/ash-vars/var_unbackslash.right | 11 + .../ash_test/ash-vars/var_unbackslash.tests | 23 + .../ash_test/ash-vars/var_unbackslash1.right | 7 + .../ash_test/ash-vars/var_unbackslash1.tests | 35 + .../ash-vars/var_wordsplit_ifs1.right | 41 + .../ash-vars/var_wordsplit_ifs1.tests | 42 + .../ash-vars/var_wordsplit_ifs2.right | 3 + .../ash-vars/var_wordsplit_ifs2.tests | 13 + .../ash-vars/var_wordsplit_ifs3.right | 12 + .../ash-vars/var_wordsplit_ifs3.tests | 5 + .../ash-vars/var_wordsplit_ifs4.right | 5 + .../ash-vars/var_wordsplit_ifs4.tests | 4 + .../ash-vars/var_wordsplit_ifs5.right | 1 + .../ash-vars/var_wordsplit_ifs5.tests | 4 + .../shell/ash_test/ash-z_slow/many_ifs.right | 1 + .../shell/ash_test/ash-z_slow/many_ifs.tests | 257 + busybox-1_37_0/shell/ash_test/printenv.c | 68 + busybox-1_37_0/shell/ash_test/recho.c | 58 + busybox-1_37_0/shell/ash_test/run-all | 119 + busybox-1_37_0/shell/ash_test/zecho.c | 36 + busybox-1_37_0/shell/brace.txt | 50 + busybox-1_37_0/shell/cttyhack.c | 188 + busybox-1_37_0/shell/hush.c | 12365 +++++++++++++ busybox-1_37_0/shell/hush_doc.txt | 143 + busybox-1_37_0/shell/hush_leaktool.sh | 25 + busybox-1_37_0/shell/hush_test/.gitignore | 4 + .../hush-arith/arith-assign-in-varexp.right | 3 + .../hush-arith/arith-assign-in-varexp.tests | 8 + .../hush-arith/arith-assign-in-varexp1.right | 2 + .../hush-arith/arith-assign-in-varexp1.tests | 9 + .../hush_test/hush-arith/arith-bignum1.right | 13 + .../hush_test/hush-arith/arith-bignum1.tests | 17 + .../hush_test/hush-arith/arith-comma1.right | 3 + .../hush_test/hush-arith/arith-comma1.tests | 6 + .../hush_test/hush-arith/arith-postinc.right | 8 + .../hush_test/hush-arith/arith-postinc.tests | 9 + .../hush-arith/arith-precedence1.right | 4 + .../hush-arith/arith-precedence1.tests | 15 + .../hush-arith/arith-ternary-assign.right | 1 + .../hush-arith/arith-ternary-assign.tests | 3 + .../hush-arith/arith-ternary-comma.right | 1 + .../hush-arith/arith-ternary-comma.tests | 3 + .../hush-arith/arith-ternary-preincr.right | 1 + .../hush-arith/arith-ternary-preincr.tests | 3 + .../hush_test/hush-arith/arith-ternary1.right | 2 + .../hush_test/hush-arith/arith-ternary1.tests | 5 + .../hush_test/hush-arith/arith-ternary2.right | 3 + .../hush_test/hush-arith/arith-ternary2.tests | 7 + .../hush_test/hush-arith/arith-ternary3.right | 1 + .../hush_test/hush-arith/arith-ternary3.tests | 4 + .../hush-arith/arith-ternary_nested.right | 1 + .../hush-arith/arith-ternary_nested.tests | 2 + .../hush-arith/arith-ternary_nested1.right | 1 + .../hush-arith/arith-ternary_nested1.tests | 2 + .../hush-arith/arith-ternary_nested2.right | 1 + .../hush-arith/arith-ternary_nested2.tests | 2 + .../hush-arith/arith-ternary_nested3.right | 2 + .../hush-arith/arith-ternary_nested3.tests | 6 + .../shell/hush_test/hush-arith/arith.right | 175 + .../shell/hush_test/hush-arith/arith.tests | 305 + .../shell/hush_test/hush-arith/arith1.sub | 40 + .../shell/hush_test/hush-arith/arith2.sub | 53 + .../hush_test/hush-arith/arith_nested1.right | 1 + .../hush_test/hush-arith/arith_nested1.tests | 1 + .../hush_test/hush-bugs/export_exp.right | 7 + .../hush-bugs/export_exp.tests.disabled | 22 + .../hush_test/hush-bugs/strops5_bug.right | 2 + .../hush_test/hush-bugs/strops5_bug.tests | 10 + .../shell/hush_test/hush-comm/comm.right | 6 + .../shell/hush_test/hush-comm/comm.tests | 20 + .../hush-getopts/getopt_nested.right | 14 + .../hush-getopts/getopt_nested.tests | 21 + .../hush-getopts/getopt_optarg.right | 18 + .../hush-getopts/getopt_optarg.tests | 24 + .../hush-getopts/getopt_positional.right | 6 + .../hush-getopts/getopt_positional.tests | 13 + .../hush-getopts/getopt_silent.right | 6 + .../hush-getopts/getopt_silent.tests | 29 + .../hush-getopts/getopt_simple.right | 34 + .../hush-getopts/getopt_simple.tests | 81 + .../hush-getopts/getopt_test_libc_bug.right | 26 + .../hush-getopts/getopt_test_libc_bug.tests | 44 + .../hush_test/hush-glob/bash_brace1.right | 4 + .../hush_test/hush-glob/bash_brace1.tests | 10 + .../shell/hush_test/hush-glob/glob1.right | 2 + .../shell/hush_test/hush-glob/glob1.tests | 2 + .../shell/hush_test/hush-glob/glob2.right | 18 + .../shell/hush_test/hush-glob/glob2.tests | 27 + .../shell/hush_test/hush-glob/glob3.right | 2 + .../shell/hush_test/hush-glob/glob3.tests | 2 + .../hush_test/hush-glob/glob_altvalue1.right | 7 + .../hush_test/hush-glob/glob_altvalue1.tests | 13 + .../hush_test/hush-glob/glob_and_assign.right | 6 + .../hush_test/hush-glob/glob_and_assign.tests | 10 + .../hush-glob/glob_bkslash_in_var.right | 4 + .../hush-glob/glob_bkslash_in_var.tests | 10 + .../shell/hush_test/hush-glob/glob_dir.right | 19 + .../shell/hush_test/hush-glob/glob_dir.tests | 25 + .../hush_test/hush-glob/glob_redir.right | 2 + .../hush_test/hush-glob/glob_redir.tests | 9 + .../hush_test/hush-heredoc/heredoc.right | 20 + .../hush_test/hush-heredoc/heredoc.tests | 97 + .../hush_test/hush-heredoc/heredoc1.right | 5 + .../hush_test/hush-heredoc/heredoc1.tests | 9 + .../hush_test/hush-heredoc/heredoc2.right | 2 + .../hush_test/hush-heredoc/heredoc2.tests | 7 + .../hush_test/hush-heredoc/heredoc3.right | 9 + .../hush_test/hush-heredoc/heredoc3.tests | 12 + .../hush_test/hush-heredoc/heredoc4.right | 1 + .../hush_test/hush-heredoc/heredoc4.tests | 3 + .../hush_test/hush-heredoc/heredoc5.right | 9 + .../hush_test/hush-heredoc/heredoc5.tests | 12 + .../hush_test/hush-heredoc/heredoc6.right | 2 + .../hush_test/hush-heredoc/heredoc6.tests | 4 + .../hush_test/hush-heredoc/heredoc7.right | 1 + .../hush_test/hush-heredoc/heredoc7.tests | 3 + .../hush_test/hush-heredoc/heredoc8.right | 1 + .../hush_test/hush-heredoc/heredoc8.tests | 3 + .../hush_test/hush-heredoc/heredoc9.right | 1 + .../hush_test/hush-heredoc/heredoc9.tests | 9 + .../hush_test/hush-heredoc/heredocA.right | 1 + .../hush_test/hush-heredoc/heredocA.tests | 4 + .../hush_test/hush-heredoc/heredocB.right | 3 + .../hush_test/hush-heredoc/heredocB.tests | 12 + .../heredoc_after_compound1.right | 2 + .../heredoc_after_compound1.tests | 3 + .../hush-heredoc/heredoc_and_cmd.right | 2 + .../hush-heredoc/heredoc_and_cmd.tests | 8 + .../hush-heredoc/heredoc_backslash1.right | 43 + .../hush-heredoc/heredoc_backslash1.tests | 70 + .../heredoc_bkslash_newline1.right | 8 + .../heredoc_bkslash_newline1.tests | 25 + .../heredoc_bkslash_newline2.right | 1 + .../heredoc_bkslash_newline2.tests | 4 + .../hush-heredoc/heredoc_empty2.right | 4 + .../hush-heredoc/heredoc_empty2.tests | 14 + .../hush-heredoc/heredoc_empty3.right | 2 + .../hush-heredoc/heredoc_empty3.tests | 4 + .../hush_test/hush-heredoc/heredoc_huge.right | 3 + .../hush_test/hush-heredoc/heredoc_huge.tests | 9 + .../hush-heredoc/heredoc_var_expand1.right | 4 + .../hush-heredoc/heredoc_var_expand1.tests | 11 + .../shell/hush_test/hush-invert/invert.right | 10 + .../shell/hush_test/hush-invert/invert.tests | 19 + .../hush_test/hush-leak/leak_argv1.right | 2 + .../hush_test/hush-leak/leak_argv1.tests | 80 + .../shell/hush_test/hush-misc/and-or.right | 18 + .../shell/hush_test/hush-misc/and-or.tests | 34 + .../hush_test/hush-misc/assignment1.right | 9 + .../hush_test/hush-misc/assignment1.tests | 42 + .../hush_test/hush-misc/assignment2.right | 2 + .../hush_test/hush-misc/assignment2.tests | 3 + .../hush_test/hush-misc/assignment3.right | 2 + .../hush_test/hush-misc/assignment3.tests | 5 + .../hush_test/hush-misc/assignment4.right | 1 + .../hush_test/hush-misc/assignment4.tests | 3 + .../hush_test/hush-misc/assignment5.right | 5 + .../hush_test/hush-misc/assignment5.tests | 9 + .../shell/hush_test/hush-misc/break1.right | 2 + .../shell/hush_test/hush-misc/break1.tests | 2 + .../shell/hush_test/hush-misc/break2.right | 3 + .../shell/hush_test/hush-misc/break2.tests | 6 + .../shell/hush_test/hush-misc/break3.right | 2 + .../shell/hush_test/hush-misc/break3.tests | 2 + .../shell/hush_test/hush-misc/break4.right | 6 + .../shell/hush_test/hush-misc/break4.tests | 12 + .../shell/hush_test/hush-misc/break5.right | 13 + .../shell/hush_test/hush-misc/break5.tests | 4 + .../shell/hush_test/hush-misc/builtin1.right | 2 + .../shell/hush_test/hush-misc/builtin1.tests | 6 + .../shell/hush_test/hush-misc/case1.right | 22 + .../shell/hush_test/hush-misc/case1.tests | 40 + .../shell/hush_test/hush-misc/colon.right | 2 + .../shell/hush_test/hush-misc/colon.tests | 5 + .../shell/hush_test/hush-misc/command2.right | 2 + .../shell/hush_test/hush-misc/command2.tests | 6 + .../shell/hush_test/hush-misc/compound.right | 14 + .../shell/hush_test/hush-misc/compound.tests | 21 + .../shell/hush_test/hush-misc/continue1.right | 8 + .../shell/hush_test/hush-misc/continue1.tests | 4 + .../shell/hush_test/hush-misc/continue2.right | 1 + .../shell/hush_test/hush-misc/continue2.tests | 3 + .../shell/hush_test/hush-misc/continue3.right | 2 + .../shell/hush_test/hush-misc/continue3.tests | 3 + .../hush_test/hush-misc/control_char1.right | 3 + .../hush_test/hush-misc/control_char1.tests | 3 + .../hush_test/hush-misc/control_char2.right | 2 + .../hush_test/hush-misc/control_char2.tests | 3 + .../hush_test/hush-misc/control_char3.right | 1 + .../hush_test/hush-misc/control_char3.tests | 2 + .../hush_test/hush-misc/control_char4.right | 1 + .../hush_test/hush-misc/control_char4.tests | 2 + .../hush-misc/echo_write_error.right | 2 + .../hush-misc/echo_write_error.tests | 7 + .../shell/hush_test/hush-misc/elif1.right | 4 + .../shell/hush_test/hush-misc/elif1.tests | 6 + .../shell/hush_test/hush-misc/elif2.right | 2 + .../shell/hush_test/hush-misc/elif2.tests | 8 + .../hush_test/hush-misc/empty_args.right | 6 + .../hush_test/hush-misc/empty_args.tests | 9 + .../shell/hush_test/hush-misc/empty_for.right | 1 + .../shell/hush_test/hush-misc/empty_for.tests | 3 + .../hush_test/hush-misc/empty_for1.right | 1 + .../hush_test/hush-misc/empty_for1.tests | 5 + .../hush_test/hush-misc/empty_for2.right | 4 + .../hush_test/hush-misc/empty_for2.tests | 6 + .../hush_test/hush-misc/env_and_func.right | 2 + .../hush_test/hush-misc/env_and_func.tests | 8 + .../shell/hush_test/hush-misc/errexit1.right | 1 + .../shell/hush_test/hush-misc/errexit1.tests | 5 + .../shell/hush_test/hush-misc/eval1.right | 1 + .../shell/hush_test/hush-misc/eval1.tests | 4 + .../shell/hush_test/hush-misc/eval2.right | 3 + .../shell/hush_test/hush-misc/eval2.tests | 4 + .../shell/hush_test/hush-misc/exec.right | 6 + .../shell/hush_test/hush-misc/exec.tests | 30 + .../shell/hush_test/hush-misc/exit1.right | 1 + .../shell/hush_test/hush-misc/exit1.tests | 4 + .../shell/hush_test/hush-misc/exitcode1.right | 2 + .../shell/hush_test/hush-misc/exitcode1.tests | 2 + .../shell/hush_test/hush-misc/exitcode2.right | 4 + .../shell/hush_test/hush-misc/exitcode2.tests | 12 + .../hush_test/hush-misc/exitcode_EACCES.right | 2 + .../hush_test/hush-misc/exitcode_EACCES.tests | 2 + .../hush_test/hush-misc/exitcode_ENOENT.right | 2 + .../hush_test/hush-misc/exitcode_ENOENT.tests | 2 + .../hush_test/hush-misc/exitcode_trap2.right | 1 + .../hush_test/hush-misc/exitcode_trap2.tests | 8 + .../hush_test/hush-misc/exitcode_trap3.right | 2 + .../hush_test/hush-misc/exitcode_trap3.tests | 9 + .../hush_test/hush-misc/exitcode_trap4.right | 2 + .../hush_test/hush-misc/exitcode_trap4.tests | 8 + .../hush_test/hush-misc/exitcode_trap5.right | 3 + .../hush_test/hush-misc/exitcode_trap5.tests | 10 + .../hush_test/hush-misc/exitcode_trap6.right | 2 + .../hush_test/hush-misc/exitcode_trap6.tests | 10 + .../hush_test/hush-misc/exitcode_trap7.right | 2 + .../hush_test/hush-misc/exitcode_trap7.tests | 7 + .../shell/hush_test/hush-misc/export-n.right | 10 + .../shell/hush_test/hush-misc/export-n.tests | 37 + .../shell/hush_test/hush-misc/export.right | 6 + .../shell/hush_test/hush-misc/export.tests | 7 + .../shell/hush_test/hush-misc/export1.right | 1 + .../shell/hush_test/hush-misc/export1.tests | 2 + .../shell/hush_test/hush-misc/for.right | 1 + .../shell/hush_test/hush-misc/for.tests | 5 + .../hush-misc/for_with_bslashes.right | 9 + .../hush-misc/for_with_bslashes.tests | 6 + .../hush-misc/for_with_keywords.right | 4 + .../hush-misc/for_with_keywords.tests | 2 + .../shell/hush_test/hush-misc/func1.right | 6 + .../shell/hush_test/hush-misc/func1.tests | 16 + .../shell/hush_test/hush-misc/func2.right | 5 + .../shell/hush_test/hush-misc/func2.tests | 9 + .../shell/hush_test/hush-misc/func3.right | 4 + .../shell/hush_test/hush-misc/func3.tests | 8 + .../shell/hush_test/hush-misc/func4.right | 2 + .../shell/hush_test/hush-misc/func4.tests | 7 + .../shell/hush_test/hush-misc/func5.right | 3 + .../shell/hush_test/hush-misc/func5.tests | 8 + .../hush_test/hush-misc/func_args1.right | 5 + .../hush_test/hush-misc/func_args1.tests | 8 + .../hush_test/hush-misc/func_local1.right | 3 + .../hush_test/hush-misc/func_local1.tests | 5 + .../hush_test/hush-misc/func_local2.right | 14 + .../hush_test/hush-misc/func_local2.tests | 7 + .../hush-misc/func_prio_over_builtins.right | 5 + .../hush-misc/func_prio_over_builtins.tests | 5 + .../hush_test/hush-misc/func_return1.right | 2 + .../hush_test/hush-misc/func_return1.tests | 11 + .../hush_test/hush-misc/func_return2.right | 2 + .../hush_test/hush-misc/func_return2.tests | 6 + .../hush_test/hush-misc/group_in_braces.right | 5 + .../hush_test/hush-misc/group_in_braces.tests | 11 + .../hush-misc/if_false_exitcode.right | 1 + .../hush-misc/if_false_exitcode.tests | 2 + .../shell/hush_test/hush-misc/last_amp.right | 2 + .../shell/hush_test/hush-misc/last_amp.tests | 8 + .../shell/hush_test/hush-misc/local1.right | 4 + .../shell/hush_test/hush-misc/local1.tests | 11 + .../shell/hush_test/hush-misc/nommu1.right | 7 + .../shell/hush_test/hush-misc/nommu1.tests | 12 + .../shell/hush_test/hush-misc/nommu2.right | 5 + .../shell/hush_test/hush-misc/nommu2.tests | 5 + .../shell/hush_test/hush-misc/nommu3.right | 2 + .../shell/hush_test/hush-misc/nommu3.tests | 15 + .../shell/hush_test/hush-misc/nulltick1.right | 3 + .../shell/hush_test/hush-misc/nulltick1.tests | 3 + .../shell/hush_test/hush-misc/opts1.right | 2 + .../shell/hush_test/hush-misc/opts1.tests | 5 + .../shell/hush_test/hush-misc/pid.right | 1 + .../shell/hush_test/hush-misc/pid.tests | 1 + .../hush_test/hush-misc/piped_input.right | 2 + .../hush_test/hush-misc/piped_input.tests | 3 + .../shell/hush_test/hush-misc/pipefail.right | 40 + .../shell/hush_test/hush-misc/pipefail.tests | 45 + .../shell/hush_test/hush-misc/read.right | 4 + .../shell/hush_test/hush-misc/read.tests | 4 + .../shell/hush_test/hush-misc/return1.right | 1 + .../shell/hush_test/hush-misc/return1.tests | 4 + .../shell/hush_test/hush-misc/set-n1.right | 3 + .../shell/hush_test/hush-misc/set-n1.tests | 2 + .../shell/hush_test/hush-misc/shift.right | 6 + .../shell/hush_test/hush-misc/shift.tests | 14 + .../shell/hush_test/hush-misc/shift1.right | 10 + .../shell/hush_test/hush-misc/shift1.tests | 10 + .../hush_test/hush-misc/sig_exitcode.right | 5 + .../hush_test/hush-misc/sig_exitcode.tests | 9 + .../shell/hush_test/hush-misc/source1.right | 2 + .../shell/hush_test/hush-misc/source1.tests | 5 + .../shell/hush_test/hush-misc/source2.right | 1 + .../shell/hush_test/hush-misc/source2.tests | 3 + .../shell/hush_test/hush-misc/source3.right | 2 + .../shell/hush_test/hush-misc/source3.tests | 6 + .../shell/hush_test/hush-misc/source4.right | 5 + .../shell/hush_test/hush-misc/source4.tests | 10 + .../shell/hush_test/hush-misc/source5.right | 4 + .../shell/hush_test/hush-misc/source5.tests | 8 + .../hush-misc/source_argv_and_shift.right | 4 + .../hush-misc/source_argv_and_shift.tests | 12 + .../hush_test/hush-misc/syntax_err.right | 4 + .../hush_test/hush-misc/syntax_err.tests | 3 + .../hush-misc/syntax_err_negate.right | 2 + .../hush-misc/syntax_err_negate.tests | 2 + .../hush_test/hush-misc/tickquote1.right | 1 + .../hush_test/hush-misc/tickquote1.tests | 2 + .../shell/hush_test/hush-misc/unicode1.right | 3 + .../shell/hush_test/hush-misc/unicode1.tests | 13 + .../shell/hush_test/hush-misc/until1.right | 3 + .../shell/hush_test/hush-misc/until1.tests | 11 + .../shell/hush_test/hush-misc/wait1.right | 2 + .../shell/hush_test/hush-misc/wait1.tests | 3 + .../shell/hush_test/hush-misc/wait2.right | 2 + .../shell/hush_test/hush-misc/wait2.tests | 4 + .../shell/hush_test/hush-misc/wait3.right | 2 + .../shell/hush_test/hush-misc/wait3.tests | 3 + .../shell/hush_test/hush-misc/wait4.right | 1 + .../shell/hush_test/hush-misc/wait4.tests | 2 + .../shell/hush_test/hush-misc/wait5.right | 2 + .../shell/hush_test/hush-misc/wait5.tests | 5 + .../shell/hush_test/hush-misc/wait6.right | 2 + .../shell/hush_test/hush-misc/wait6.tests | 6 + .../shell/hush_test/hush-misc/wait7.right | 2 + .../shell/hush_test/hush-misc/wait7.tests | 7 + .../shell/hush_test/hush-misc/while1.right | 1 + .../shell/hush_test/hush-misc/while1.tests | 2 + .../shell/hush_test/hush-misc/while2.right | 2 + .../shell/hush_test/hush-misc/while2.tests | 2 + .../shell/hush_test/hush-misc/while3.right | 1 + .../shell/hush_test/hush-misc/while3.tests | 4 + .../shell/hush_test/hush-misc/while4.right | 1 + .../shell/hush_test/hush-misc/while4.tests | 6 + .../hush-misc/while_in_subshell.right | 1 + .../hush-misc/while_in_subshell.tests | 2 + .../and_or_and_backgrounding.right | 4 + .../and_or_and_backgrounding.tests | 30 + .../shell/hush_test/hush-parsing/argv0.right | 1 + .../shell/hush_test/hush-parsing/argv0.tests | 4 + .../hush_test/hush-parsing/bkslash_eof1.right | 1 + .../hush_test/hush-parsing/bkslash_eof1.tests | 1 + .../hush_test/hush-parsing/bkslash_eof2.right | 2 + .../hush_test/hush-parsing/bkslash_eof2.tests | 4 + .../hush-parsing/bkslash_newline1.right | 4 + .../hush-parsing/bkslash_newline1.tests | 8 + .../hush-parsing/bkslash_newline2.right | 4 + .../hush-parsing/bkslash_newline2.tests | 4 + .../hush-parsing/bkslash_newline3.right | 1 + .../hush-parsing/bkslash_newline3.tests | 4 + .../hush-parsing/bkslash_newline4.right | 4 + .../hush-parsing/bkslash_newline4.tests | 14 + .../shell/hush_test/hush-parsing/brace1.right | 7 + .../shell/hush_test/hush-parsing/brace1.tests | 7 + .../shell/hush_test/hush-parsing/brace2.right | 3 + .../shell/hush_test/hush-parsing/brace2.tests | 5 + .../hush_test/hush-parsing/comment1.right | 2 + .../hush_test/hush-parsing/comment1.tests | 2 + .../hush_test/hush-parsing/comment2.right | 4 + .../hush_test/hush-parsing/comment2.tests | 13 + .../shell/hush_test/hush-parsing/eol1.right | 1 + .../shell/hush_test/hush-parsing/eol1.tests | 18 + .../hush_test/hush-parsing/escape1.right | 4 + .../hush_test/hush-parsing/escape1.tests | 6 + .../hush_test/hush-parsing/escape2.right | 4 + .../hush_test/hush-parsing/escape2.tests | 4 + .../hush_test/hush-parsing/escape3.right | 23 + .../hush_test/hush-parsing/escape3.tests | 10 + .../hush_test/hush-parsing/escape4.right | 2 + .../hush_test/hush-parsing/escape4.tests | 6 + .../hush_test/hush-parsing/escape5.right | 9 + .../hush_test/hush-parsing/escape5.tests | 7 + .../shell/hush_test/hush-parsing/group1.right | 1 + .../shell/hush_test/hush-parsing/group1.tests | 1 + .../shell/hush_test/hush-parsing/group2.right | 2 + .../shell/hush_test/hush-parsing/group2.tests | 3 + .../hush-parsing/groups_and_keywords1.right | 11 + .../hush-parsing/groups_and_keywords1.tests | 10 + .../hush-parsing/groups_and_keywords2.right | 3 + .../hush-parsing/groups_and_keywords2.tests | 9 + .../shell/hush_test/hush-parsing/negate.right | 36 + .../shell/hush_test/hush-parsing/negate.tests | 19 + .../hush_test/hush-parsing/nodone1.right | 1 + .../hush_test/hush-parsing/nodone1.tests | 1 + .../hush_test/hush-parsing/nodone2.right | 1 + .../hush_test/hush-parsing/nodone2.tests | 3 + .../shell/hush_test/hush-parsing/noeol.right | 1 + .../shell/hush_test/hush-parsing/noeol.tests | 2 + .../shell/hush_test/hush-parsing/noeol2.right | 1 + .../shell/hush_test/hush-parsing/noeol2.tests | 7 + .../shell/hush_test/hush-parsing/noeol3.right | 1 + .../shell/hush_test/hush-parsing/noeol3.tests | 2 + .../hush-parsing/process_subst.right | 3 + .../hush-parsing/process_subst.tests | 3 + .../shell/hush_test/hush-parsing/quote1.right | 1 + .../shell/hush_test/hush-parsing/quote1.tests | 2 + .../shell/hush_test/hush-parsing/quote2.right | 1 + .../shell/hush_test/hush-parsing/quote2.tests | 2 + .../shell/hush_test/hush-parsing/quote3.right | 12 + .../shell/hush_test/hush-parsing/quote3.tests | 21 + .../shell/hush_test/hush-parsing/quote4.right | 1 + .../shell/hush_test/hush-parsing/quote4.tests | 2 + .../hush_test/hush-parsing/starquoted.right | 8 + .../hush_test/hush-parsing/starquoted.tests | 8 + .../hush_test/hush-parsing/starquoted2.right | 8 + .../hush_test/hush-parsing/starquoted2.tests | 19 + .../hush_test/hush-parsing/starquoted3.right | 2 + .../hush_test/hush-parsing/starquoted3.tests | 1 + .../hush_test/hush-psubst/emptytick.right | 17 + .../hush_test/hush-psubst/emptytick.tests | 16 + .../hush_test/hush-psubst/falsetick.right | 24 + .../hush_test/hush-psubst/falsetick.tests | 19 + .../hush_test/hush-psubst/falsetick2.right | 1 + .../hush_test/hush-psubst/falsetick2.tests | 3 + .../hush_test/hush-psubst/falsetick3.right | 3 + .../hush_test/hush-psubst/falsetick3.tests | 3 + .../shell/hush_test/hush-psubst/tick.right | 2 + .../shell/hush_test/hush-psubst/tick.tests | 4 + .../shell/hush_test/hush-psubst/tick2.right | 1 + .../shell/hush_test/hush-psubst/tick2.tests | 5 + .../shell/hush_test/hush-psubst/tick3.right | 6 + .../shell/hush_test/hush-psubst/tick3.tests | 14 + .../shell/hush_test/hush-psubst/tick4.right | 7 + .../shell/hush_test/hush-psubst/tick4.tests | 7 + .../shell/hush_test/hush-psubst/tick5.right | 1 + .../shell/hush_test/hush-psubst/tick5.tests | 1 + .../shell/hush_test/hush-psubst/tick6.right | 1 + .../shell/hush_test/hush-psubst/tick6.tests | 1 + .../hush_test/hush-psubst/tick_huge.right | 3 + .../hush_test/hush-psubst/tick_huge.tests | 7 + .../hush-psubst/tick_in_heredoc.right | 5 + .../hush-psubst/tick_in_heredoc.tests | 7 + .../hush-quoting/bkslash_case1.right | 10 + .../hush-quoting/bkslash_case1.tests | 38 + .../hush-quoting/bkslash_case2.right | 3 + .../hush-quoting/bkslash_case2.tests | 13 + .../hush-quoting/bkslash_in_varexp.right | 5 + .../hush-quoting/bkslash_in_varexp.tests | 16 + .../hush-quoting/bkslash_in_varexp1.right | 5 + .../hush-quoting/bkslash_in_varexp1.tests | 6 + .../hush_test/hush-quoting/case_glob1.right | 1 + .../hush_test/hush-quoting/case_glob1.tests | 8 + .../hush-quoting/dollar_altvalue1.right | 16 + .../hush-quoting/dollar_altvalue1.tests | 16 + .../hush-quoting/dollar_altvalue2.right | 69 + .../hush-quoting/dollar_altvalue2.tests | 33 + .../hush-quoting/dollar_altvalue9.right | 26 + .../hush-quoting/dollar_altvalue9.tests | 17 + .../hush-quoting/dollar_repl_bash1.right | 14 + .../hush-quoting/dollar_repl_bash1.tests | 12 + .../hush-quoting/dollar_repl_bash2.right | 4 + .../hush-quoting/dollar_repl_bash2.tests | 8 + .../dollar_repl_slash_bash1.right | 10 + .../dollar_repl_slash_bash1.tests | 21 + .../dollar_repl_slash_bash2.right | 1 + .../dollar_repl_slash_bash2.tests | 2 + .../hush-quoting/dollar_squote_bash1.right | 10 + .../hush-quoting/dollar_squote_bash1.tests | 8 + .../hush-quoting/dollar_squote_bash2.right | 6 + .../hush-quoting/dollar_squote_bash2.tests | 10 + .../hush-quoting/negative_arith.right | 2 + .../hush-quoting/negative_arith.tests | 8 + .../hush-quoting/quote_in_varexp1.right | 2 + .../hush-quoting/quote_in_varexp1.tests | 2 + .../hush_test/hush-quoting/quoted_punct.right | 35 + .../hush_test/hush-quoting/quoted_punct.tests | 41 + .../hush-quoting/space_in_varexp1.right | 2 + .../hush-quoting/space_in_varexp1.tests | 6 + .../hush-quoting/squote_in_varexp.right | 9 + .../hush-quoting/squote_in_varexp.tests | 10 + .../hush-quoting/squote_in_varexp1.right | 3 + .../hush-quoting/squote_in_varexp1.tests | 4 + .../hush-quoting/squote_in_varexp2.right | 5 + .../hush-quoting/squote_in_varexp2.tests | 6 + .../hush-quoting/squote_in_varexp3.right | 1 + .../hush-quoting/squote_in_varexp3.tests | 1 + .../hush-quoting/unicode_8x_chars.right | 6 + .../hush-quoting/unicode_8x_chars.tests | 28 + .../hush_test/hush-read/read_REPLY.right | 5 + .../hush_test/hush-read/read_REPLY.tests | 5 + .../hush_test/hush-read/read_SIGCHLD.right | 2 + .../hush_test/hush-read/read_SIGCHLD.tests | 4 + .../shell/hush_test/hush-read/read_d0.right | 1 + .../shell/hush_test/hush-read/read_d0.tests | 1 + .../shell/hush_test/hush-read/read_ifs.right | 10 + .../shell/hush_test/hush-read/read_ifs.tests | 10 + .../shell/hush_test/hush-read/read_ifs2.right | 9 + .../shell/hush_test/hush-read/read_ifs2.tests | 9 + .../shell/hush_test/hush-read/read_n.right | 3 + .../shell/hush_test/hush-read/read_n.tests | 3 + .../shell/hush_test/hush-read/read_r.right | 2 + .../shell/hush_test/hush-read/read_r.tests | 4 + .../shell/hush_test/hush-read/read_t.right | 4 + .../shell/hush_test/hush-read/read_t.tests | 10 + .../shell/hush_test/hush-read/read_t0.right | 3 + .../shell/hush_test/hush-read/read_t0.tests | 14 + .../shell/hush_test/hush-redir/redir.right | 2 + .../shell/hush_test/hush-redir/redir.tests | 6 + .../shell/hush_test/hush-redir/redir1.right | 12 + .../shell/hush_test/hush-redir/redir1.tests | 40 + .../shell/hush_test/hush-redir/redir2.right | 1 + .../shell/hush_test/hush-redir/redir2.tests | 5 + .../shell/hush_test/hush-redir/redir3.right | 3 + .../shell/hush_test/hush-redir/redir3.tests | 5 + .../shell/hush_test/hush-redir/redir4.right | 1 + .../shell/hush_test/hush-redir/redir4.tests | 72 + .../shell/hush_test/hush-redir/redir5.right | 4 + .../shell/hush_test/hush-redir/redir5.tests | 13 + .../shell/hush_test/hush-redir/redir6.right | 2 + .../shell/hush_test/hush-redir/redir6.tests | 3 + .../shell/hush_test/hush-redir/redir7.right | 3 + .../shell/hush_test/hush-redir/redir7.tests | 12 + .../shell/hush_test/hush-redir/redir8.right | 3 + .../shell/hush_test/hush-redir/redir8.tests | 15 + .../shell/hush_test/hush-redir/redir9.right | 2 + .../shell/hush_test/hush-redir/redir9.tests | 4 + .../shell/hush_test/hush-redir/redirA.right | 2 + .../shell/hush_test/hush-redir/redirA.tests | 11 + .../hush-redir/redir_backquote1.right | 11 + .../hush-redir/redir_backquote1.tests | 19 + ...r_children_should_not_see_saved_fd_1.right | 5 + ...r_children_should_not_see_saved_fd_1.tests | 6 + ...r_children_should_not_see_saved_fd_2.right | 5 + ...r_children_should_not_see_saved_fd_2.tests | 6 + ...r_children_should_not_see_saved_fd_3.right | 5 + ...r_children_should_not_see_saved_fd_3.tests | 6 + .../hush_test/hush-redir/redir_errors.right | 14 + .../hush_test/hush-redir/redir_errors.tests | 9 + .../hush-redir/redir_escapednum.right | 1 + .../hush-redir/redir_escapednum.tests | 2 + .../hush_test/hush-redir/redir_exec1.right | 3 + .../hush_test/hush-redir/redir_exec1.tests | 2 + .../hush_test/hush-redir/redir_exec2.right | 4 + .../hush_test/hush-redir/redir_exec2.tests | 10 + .../hush_test/hush-redir/redir_expand.right | 18 + .../hush_test/hush-redir/redir_expand.tests | 85 + .../hush_test/hush-redir/redir_leak.right | 6 + .../hush_test/hush-redir/redir_leak.tests | 10 + .../hush_test/hush-redir/redir_multi.right | 4 + .../hush_test/hush-redir/redir_multi.tests | 5 + .../hush_test/hush-redir/redir_script.right | 1 + .../hush_test/hush-redir/redir_script.tests | 38 + .../hush_test/hush-redir/redir_space.right | 3 + .../hush_test/hush-redir/redir_space.tests | 6 + .../hush_test/hush-redir/redir_stdin1.right | 3 + .../hush_test/hush-redir/redir_stdin1.tests | 7 + .../hush-redir/redir_to_bad_fd.right | 2 + .../hush-redir/redir_to_bad_fd.tests | 3 + .../hush-redir/redir_to_bad_fd255.right | 2 + .../hush-redir/redir_to_bad_fd255.tests | 3 + .../hush-redir/redir_to_bad_fd3.right | 2 + .../hush-redir/redir_to_bad_fd3.tests | 3 + .../shell/hush_test/hush-signals/catch.right | 5 + .../shell/hush_test/hush-signals/catch.tests | 20 + .../hush-signals/continue_and_trap1.right | 1 + .../hush-signals/continue_and_trap1.tests | 7 + .../shell/hush_test/hush-signals/exit.right | 12 + .../shell/hush_test/hush-signals/exit.tests | 34 + .../shell/hush_test/hush-signals/reap1.right | 1 + .../shell/hush_test/hush-signals/reap1.tests | 14 + .../hush-signals/return_in_trap1.right | 4 + .../hush-signals/return_in_trap1.tests | 18 + .../hush_test/hush-signals/save-ret.right | 2 + .../hush_test/hush-signals/save-ret.tests | 4 + .../hush_test/hush-signals/savetrap.right | 8 + .../hush_test/hush-signals/savetrap.tests | 9 + .../hush_test/hush-signals/sigint1.right | 1 + .../hush_test/hush-signals/sigint1.tests | 41 + .../hush_test/hush-signals/signal1.right | 20 + .../hush_test/hush-signals/signal1.tests | 28 + .../hush_test/hush-signals/signal2.right | 3 + .../hush_test/hush-signals/signal2.tests | 18 + .../hush_test/hush-signals/signal3.right | 4 + .../hush_test/hush-signals/signal3.tests | 17 + .../hush_test/hush-signals/signal4.right | 4 + .../hush_test/hush-signals/signal4.tests | 5 + .../hush_test/hush-signals/signal5.right | 12 + .../hush_test/hush-signals/signal5.tests | 14 + .../hush_test/hush-signals/signal6.right | 2 + .../hush_test/hush-signals/signal6.tests | 2 + .../hush_test/hush-signals/signal7.right | 1 + .../hush_test/hush-signals/signal7.tests | 18 + .../hush_test/hush-signals/signal8.right | 3 + .../hush_test/hush-signals/signal8.tests | 18 + .../hush_test/hush-signals/signal9.right | 3 + .../hush_test/hush-signals/signal9.tests | 21 + .../hush_test/hush-signals/signal_read1.right | 1 + .../hush_test/hush-signals/signal_read1.tests | 5 + .../hush_test/hush-signals/signal_read2.right | 2 + .../hush_test/hush-signals/signal_read2.tests | 7 + .../hush_test/hush-signals/sigquit_exec.right | 2 + .../hush_test/hush-signals/sigquit_exec.tests | 4 + .../hush_test/hush-signals/subshell.right | 21 + .../hush_test/hush-signals/subshell.tests | 19 + .../shell/hush_test/hush-signals/usage.right | 14 + .../shell/hush_test/hush-signals/usage.tests | 23 + .../hush-standalone/noexec_gets_no_env.right | 4 + .../hush-standalone/noexec_gets_no_env.tests | 5 + .../hush-standalone/nofork_env.right | 9 + .../hush-standalone/nofork_env.tests | 15 + .../nofork_trashes_getopt.right | 1 + .../nofork_trashes_getopt.tests | 6 + .../hush-standalone/var_standalone1.right | 1 + .../hush-standalone/var_standalone1.tests | 2 + .../shell/hush_test/hush-test2/andor1.right | 6 + .../shell/hush_test/hush-test2/andor1.tests | 7 + .../shell/hush_test/hush-test2/noglob1.right | 2 + .../shell/hush_test/hush-test2/noglob1.tests | 3 + .../shell/hush_test/hush-test2/strops1.right | 8 + .../shell/hush_test/hush-test2/strops1.tests | 15 + .../shell/hush_test/hush-test2/strops2.right | 6 + .../shell/hush_test/hush-test2/strops2.tests | 12 + .../shell/hush_test/hush-test2/strops3.right | 7 + .../shell/hush_test/hush-test2/strops3.tests | 13 + .../shell/hush_test/hush-test2/strops4.right | 2 + .../shell/hush_test/hush-test2/strops4.tests | 3 + .../shell/hush_test/hush-test2/strops5.right | 3 + .../shell/hush_test/hush-test2/strops5.tests | 13 + .../shell/hush_test/hush-vars/empty.right | 3 + .../shell/hush_test/hush-vars/empty.tests | 5 + .../hush_test/hush-vars/glob_and_vars.right | 1 + .../hush_test/hush-vars/glob_and_vars.tests | 2 + .../hush-vars/param_expand_alt.right | 9 + .../hush-vars/param_expand_alt.tests | 33 + .../hush-vars/param_expand_alt2.right | 4 + .../hush-vars/param_expand_alt2.tests | 7 + .../hush-vars/param_expand_assign.right | 27 + .../hush-vars/param_expand_assign.tests | 39 + .../param_expand_bash_substring.right | 65 + .../param_expand_bash_substring.tests | 84 + .../hush-vars/param_expand_default.right | 9 + .../hush-vars/param_expand_default.tests | 27 + .../param_expand_indicate_error.right | 43 + .../param_expand_indicate_error.tests | 60 + .../hush-vars/param_expand_len.right | 12 + .../hush-vars/param_expand_len.tests | 24 + .../hush-vars/param_expand_len1.right | 11 + .../hush-vars/param_expand_len1.tests | 31 + .../hush_test/hush-vars/param_glob.right | 4 + .../hush_test/hush-vars/param_glob.tests | 9 + .../hush_test/hush-vars/param_subshell.right | 7 + .../hush_test/hush-vars/param_subshell.tests | 15 + .../shell/hush_test/hush-vars/readonly0.right | 20 + .../shell/hush_test/hush-vars/readonly0.tests | 42 + .../shell/hush_test/hush-vars/readonly2.right | 5 + .../shell/hush_test/hush-vars/readonly2.tests | 7 + .../shell/hush_test/hush-vars/readonly3.right | 4 + .../shell/hush_test/hush-vars/readonly3.tests | 4 + .../shell/hush_test/hush-vars/star.right | 6 + .../shell/hush_test/hush-vars/star.tests | 8 + .../shell/hush_test/hush-vars/unset.right | 18 + .../shell/hush_test/hush-vars/unset.tests | 45 + ...e-arithmetic-expansion-at-parse-time.right | 2 + ...e-arithmetic-expansion-at-parse-time.tests | 3 + ...lde-in-parameter-expansion-in-quotes.right | 1 + ...lde-in-parameter-expansion-in-quotes.tests | 2 + ...-parameter-expansions-outside-quotes.right | 1 + ...-parameter-expansions-outside-quotes.tests | 3 + ...replacement-in-parameter-expansion-1.right | 1 + ...replacement-in-parameter-expansion-1.tests | 2 + ...replacement-in-parameter-expansion-2.right | 1 + ...replacement-in-parameter-expansion-2.tests | 2 + ...replacement-in-parameter-expansion-3.right | 1 + ...replacement-in-parameter-expansion-3.tests | 2 + ...replacement-in-parameter-expansion-4.right | 1 + ...replacement-in-parameter-expansion-4.tests | 2 + ...replacement-in-parameter-expansion-5.right | 1 + ...replacement-in-parameter-expansion-5.tests | 2 + .../var-runtime-quote-detection.right | 1 + .../var-runtime-quote-detection.tests | 1 + .../hush_test/hush-vars/var-utf8-length.right | 1 + .../hush_test/hush-vars/var-utf8-length.tests | 4 + .../shell/hush_test/hush-vars/var1.right | 4 + .../shell/hush_test/hush-vars/var1.tests | 9 + .../shell/hush_test/hush-vars/var2.right | 2 + .../shell/hush_test/hush-vars/var2.tests | 4 + .../shell/hush_test/hush-vars/var3.right | 5 + .../shell/hush_test/hush-vars/var3.tests | 1 + .../shell/hush_test/hush-vars/var4.right | 1 + .../shell/hush_test/hush-vars/var4.tests | 1 + .../shell/hush_test/hush-vars/var5.right | 6 + .../shell/hush_test/hush-vars/var5.tests | 14 + .../shell/hush_test/hush-vars/var6.right | 2 + .../shell/hush_test/hush-vars/var6.tests | 5 + .../shell/hush_test/hush-vars/var_10.right | 3 + .../shell/hush_test/hush-vars/var_10.tests | 4 + .../hush_test/hush-vars/var_LINENO1.right | 8 + .../hush_test/hush-vars/var_LINENO1.tests | 6 + .../hush_test/hush-vars/var_LINENO2.right | 3 + .../hush_test/hush-vars/var_LINENO2.tests | 8 + .../hush_test/hush-vars/var_LINENO3.right | 2 + .../hush_test/hush-vars/var_LINENO3.tests | 2 + .../shell/hush_test/hush-vars/var_bash1.right | 14 + .../shell/hush_test/hush-vars/var_bash1.tests | 18 + .../hush_test/hush-vars/var_bash1a.right | 6 + .../hush_test/hush-vars/var_bash1a.tests | 11 + .../hush_test/hush-vars/var_bash1b.right | 23 + .../hush_test/hush-vars/var_bash1b.tests | 24 + .../shell/hush_test/hush-vars/var_bash2.right | 10 + .../shell/hush_test/hush-vars/var_bash2.tests | 24 + .../shell/hush_test/hush-vars/var_bash3.right | 20 + .../shell/hush_test/hush-vars/var_bash3.tests | 41 + .../shell/hush_test/hush-vars/var_bash4.right | 40 + .../shell/hush_test/hush-vars/var_bash4.tests | 81 + .../shell/hush_test/hush-vars/var_bash5.right | 11 + .../shell/hush_test/hush-vars/var_bash5.tests | 29 + .../shell/hush_test/hush-vars/var_bash6.right | 5 + .../shell/hush_test/hush-vars/var_bash6.tests | 9 + .../shell/hush_test/hush-vars/var_bash7.right | 1 + .../shell/hush_test/hush-vars/var_bash7.tests | 1 + ...var_bash_pattern_starting_with_slash.right | 2 + ...var_bash_pattern_starting_with_slash.tests | 3 + .../var_bash_repl_empty_pattern.right | 2 + .../var_bash_repl_empty_pattern.tests | 3 + .../hush-vars/var_bash_repl_empty_var.right | 3 + .../hush-vars/var_bash_repl_empty_var.tests | 5 + .../var_bash_repl_unterminated.right | 1 + .../var_bash_repl_unterminated.tests | 2 + .../hush-vars/var_expand_in_assign.right | 5 + .../hush-vars/var_expand_in_assign.tests | 15 + .../hush-vars/var_expand_in_redir.right | 3 + .../hush-vars/var_expand_in_redir.tests | 13 + .../hush-vars/var_expand_on_ifs.right | 9 + .../hush-vars/var_expand_on_ifs.tests | 11 + .../hush_test/hush-vars/var_in_pipes.right | 6 + .../hush_test/hush-vars/var_in_pipes.tests | 7 + .../shell/hush_test/hush-vars/var_leaks.right | 1 + .../shell/hush_test/hush-vars/var_leaks.tests | 14 + .../hush_test/hush-vars/var_nested1.right | 3 + .../hush_test/hush-vars/var_nested1.tests | 16 + .../hush_test/hush-vars/var_nested2.right | 1 + .../hush_test/hush-vars/var_nested2.tests | 2 + .../hush_test/hush-vars/var_posix1.right | 41 + .../hush_test/hush-vars/var_posix1.tests | 52 + .../hush_test/hush-vars/var_preserved.right | 4 + .../hush_test/hush-vars/var_preserved.tests | 16 + .../hush_test/hush-vars/var_serial.right | 5 + .../hush_test/hush-vars/var_serial.tests | 22 + .../hush-vars/var_subst_in_for.right | 40 + .../hush-vars/var_subst_in_for.tests | 40 + .../hush_test/hush-vars/var_unbackslash.right | 11 + .../hush_test/hush-vars/var_unbackslash.tests | 23 + .../hush-vars/var_unbackslash1.right | 7 + .../hush-vars/var_unbackslash1.tests | 35 + .../hush-vars/var_wordsplit_ifs1.right | 41 + .../hush-vars/var_wordsplit_ifs1.tests | 42 + .../hush-vars/var_wordsplit_ifs2.right | 3 + .../hush-vars/var_wordsplit_ifs2.tests | 13 + .../hush-vars/var_wordsplit_ifs3.right | 12 + .../hush-vars/var_wordsplit_ifs3.tests | 5 + .../hush-vars/var_wordsplit_ifs4.right | 5 + .../hush-vars/var_wordsplit_ifs4.tests | 4 + .../hush-vars/var_wordsplit_ifs5.right | 1 + .../hush-vars/var_wordsplit_ifs5.tests | 4 + .../hush_test/hush-z_slow/leak_all1.right | 3 + .../hush_test/hush-z_slow/leak_all1.tests | 148 + .../hush_test/hush-z_slow/leak_all2.right | 3 + .../hush_test/hush-z_slow/leak_all2.tests | 93 + .../hush-z_slow/leak_empty_tick.right | 3 + .../hush-z_slow/leak_empty_tick.tests | 28 + .../hush_test/hush-z_slow/leak_heredoc1.right | 3 + .../hush_test/hush-z_slow/leak_heredoc1.tests | 34 + .../hush_test/hush-z_slow/leak_var.right | 2 + .../hush_test/hush-z_slow/leak_var.tests | 47 + .../hush_test/hush-z_slow/leak_var2.right | 3 + .../hush_test/hush-z_slow/leak_var2.tests | 43 + .../hush_test/hush-z_slow/leak_var3.right | 3 + .../hush_test/hush-z_slow/leak_var3.tests | 41 + .../hush_test/hush-z_slow/many_ifs.right | 1 + .../hush_test/hush-z_slow/many_ifs.tests | 257 + busybox-1_37_0/shell/hush_test/run-all | 115 + busybox-1_37_0/shell/match.c | 149 + busybox-1_37_0/shell/match.h | 34 + busybox-1_37_0/shell/math.c | 1045 ++ busybox-1_37_0/shell/math.h | 71 + busybox-1_37_0/shell/random.c | 160 + busybox-1_37_0/shell/random.h | 41 + busybox-1_37_0/shell/shell_common.c | 709 + busybox-1_37_0/shell/shell_common.h | 61 + busybox-1_37_0/size_single_applets.sh | 84 + busybox-1_37_0/sysklogd/Config.src | 10 + busybox-1_37_0/sysklogd/Kbuild.src | 9 + busybox-1_37_0/sysklogd/klogd.c | 301 + busybox-1_37_0/sysklogd/logger.c | 181 + busybox-1_37_0/sysklogd/logread.c | 230 + busybox-1_37_0/sysklogd/syslogd.c | 1206 ++ busybox-1_37_0/sysklogd/syslogd_and_logger.c | 63 + busybox-1_37_0/testsuite/README | 52 + busybox-1_37_0/testsuite/TODO | 26 + busybox-1_37_0/testsuite/all_sourcecode.tests | 92 + busybox-1_37_0/testsuite/ar.tests | 27 + busybox-1_37_0/testsuite/ash.tests | 83 + busybox-1_37_0/testsuite/awk.tests | 620 + busybox-1_37_0/testsuite/awk_t1.tar.bz2 | Bin 0 -> 15955 bytes ...sename-does-not-remove-identical-extension | 1 + .../testsuite/basename/basename-works | 1 + busybox-1_37_0/testsuite/bc.tests | 324 + busybox-1_37_0/testsuite/bc_add.bc | 26 + busybox-1_37_0/testsuite/bc_add_results.txt | 38 + busybox-1_37_0/testsuite/bc_arctangent.bc | 26 + .../testsuite/bc_arctangent_results.txt | 25 + busybox-1_37_0/testsuite/bc_array.bc | 35 + busybox-1_37_0/testsuite/bc_array_results.txt | 426 + busybox-1_37_0/testsuite/bc_arrays.bc | 10 + .../testsuite/bc_arrays_results.txt | 3 + busybox-1_37_0/testsuite/bc_bessel.bc | 844 + .../testsuite/bc_bessel_results.txt | 843 + busybox-1_37_0/testsuite/bc_boolean.bc | 181 + .../testsuite/bc_boolean_results.txt | 181 + busybox-1_37_0/testsuite/bc_cosine.bc | 44 + .../testsuite/bc_cosine_results.txt | 41 + busybox-1_37_0/testsuite/bc_decimal.bc | 36 + .../testsuite/bc_decimal_results.txt | 51 + busybox-1_37_0/testsuite/bc_divide.bc | 31 + .../testsuite/bc_divide_results.txt | 31 + busybox-1_37_0/testsuite/bc_exponent.bc | 22 + .../testsuite/bc_exponent_results.txt | 25 + busybox-1_37_0/testsuite/bc_log.bc | 22 + busybox-1_37_0/testsuite/bc_log_results.txt | 22 + busybox-1_37_0/testsuite/bc_misc.bc | 13 + busybox-1_37_0/testsuite/bc_misc1.bc | 74 + busybox-1_37_0/testsuite/bc_misc1_results.txt | 57 + busybox-1_37_0/testsuite/bc_misc2.bc | 44 + busybox-1_37_0/testsuite/bc_misc2_results.txt | 20 + busybox-1_37_0/testsuite/bc_misc_results.txt | 4 + busybox-1_37_0/testsuite/bc_modulus.bc | 70 + .../testsuite/bc_modulus_results.txt | 69 + busybox-1_37_0/testsuite/bc_multiply.bc | 42 + .../testsuite/bc_multiply_results.txt | 43 + busybox-1_37_0/testsuite/bc_numbers1.bc | 23 + .../testsuite/bc_numbers1_results.txt | 17 + busybox-1_37_0/testsuite/bc_numbers2.bc | 18 + .../testsuite/bc_numbers2_results.txt | 50 + busybox-1_37_0/testsuite/bc_pi.bc | 4 + busybox-1_37_0/testsuite/bc_pi_results.txt | 135 + busybox-1_37_0/testsuite/bc_power.bc | 44 + busybox-1_37_0/testsuite/bc_power_results.txt | 73 + busybox-1_37_0/testsuite/bc_references.bc | 106 + .../testsuite/bc_references_results.txt | 212 + busybox-1_37_0/testsuite/bc_sine.bc | 207 + busybox-1_37_0/testsuite/bc_sine_results.txt | 204 + busybox-1_37_0/testsuite/bc_sqrt.bc | 18 + busybox-1_37_0/testsuite/bc_sqrt_results.txt | 16 + busybox-1_37_0/testsuite/bc_strings.bc | 12 + .../testsuite/bc_strings_results.txt | 5 + busybox-1_37_0/testsuite/bc_subtract.bc | 32 + .../testsuite/bc_subtract_results.txt | 36 + busybox-1_37_0/testsuite/bc_vars.bc | 7 + busybox-1_37_0/testsuite/bc_vars_results.txt | 12 + busybox-1_37_0/testsuite/bunzip2.tests | 573 + .../bunzip2/bunzip2-reads-from-standard-input | 2 + .../bunzip2/bunzip2-removes-compressed-file | 3 + busybox-1_37_0/testsuite/busybox.tests | 47 + busybox-1_37_0/testsuite/bz2_issue_11.bz2 | Bin 0 -> 12000 bytes busybox-1_37_0/testsuite/bz2_issue_12.bz2 | Bin 0 -> 11000 bytes busybox-1_37_0/testsuite/bzcat.tests | 123 + .../bzcat-does-not-remove-compressed-file | 3 + busybox-1_37_0/testsuite/cal.tests | 38 + busybox-1_37_0/testsuite/cat.tests | 49 + .../testsuite/cat/cat-prints-a-file | 3 + .../cat/cat-prints-a-file-and-standard-input | 7 + .../testsuite/cmp/cmp-detects-difference | 9 + busybox-1_37_0/testsuite/comm.tests | 19 + busybox-1_37_0/testsuite/cp.tests | 206 + .../cp/cp-RHL-does_not_preserve-links | 6 + busybox-1_37_0/testsuite/cp/cp-a-files-to-dir | 15 + .../testsuite/cp/cp-a-preserves-links | 5 + .../testsuite/cp/cp-copies-empty-file | 3 + .../testsuite/cp/cp-copies-large-file | 3 + .../testsuite/cp/cp-copies-small-file | 3 + busybox-1_37_0/testsuite/cp/cp-d-files-to-dir | 11 + busybox-1_37_0/testsuite/cp/cp-dev-file | 2 + busybox-1_37_0/testsuite/cp/cp-dir-create-dir | 4 + .../testsuite/cp/cp-dir-existing-dir | 5 + .../cp/cp-does-not-copy-unreadable-file | 11 + busybox-1_37_0/testsuite/cp/cp-files-to-dir | 11 + busybox-1_37_0/testsuite/cp/cp-follows-links | 4 + busybox-1_37_0/testsuite/cp/cp-parents | 6 + .../testsuite/cp/cp-preserves-hard-links | 6 + .../testsuite/cp/cp-preserves-links | 5 + .../testsuite/cp/cp-preserves-source-file | 3 + busybox-1_37_0/testsuite/cpio.tests | 160 + busybox-1_37_0/testsuite/cryptpw.tests | 42 + busybox-1_37_0/testsuite/cut.tests | 84 + .../testsuite/cut/cut-cuts-a-character | 1 + .../testsuite/cut/cut-cuts-a-closed-range | 1 + busybox-1_37_0/testsuite/cut/cut-cuts-a-field | 1 + .../testsuite/cut/cut-cuts-an-open-range | 1 + .../testsuite/cut/cut-cuts-an-unclosed-range | 1 + busybox-1_37_0/testsuite/date/date-@-works | 13 + busybox-1_37_0/testsuite/date/date-R-works | 13 + .../testsuite/date/date-format-works | 4 + busybox-1_37_0/testsuite/date/date-timezone | 32 + busybox-1_37_0/testsuite/date/date-u-works | 1 + busybox-1_37_0/testsuite/date/date-works | 46 + busybox-1_37_0/testsuite/date/date-works-1 | 134 + busybox-1_37_0/testsuite/dc.tests | 142 + busybox-1_37_0/testsuite/dc_add.dc | 33 + busybox-1_37_0/testsuite/dc_add_results.txt | 45 + busybox-1_37_0/testsuite/dc_boolean.dc | 27 + .../testsuite/dc_boolean_results.txt | 27 + busybox-1_37_0/testsuite/dc_decimal.dc | 36 + .../testsuite/dc_decimal_results.txt | 49 + busybox-1_37_0/testsuite/dc_divide.dc | 33 + .../testsuite/dc_divide_results.txt | 32 + busybox-1_37_0/testsuite/dc_divmod.dc | 64 + .../testsuite/dc_divmod_results.txt | 126 + busybox-1_37_0/testsuite/dc_misc.dc | 1 + busybox-1_37_0/testsuite/dc_misc_results.txt | 20 + busybox-1_37_0/testsuite/dc_modexp.dc | 103 + .../testsuite/dc_modexp_results.txt | 103 + busybox-1_37_0/testsuite/dc_modulus.dc | 70 + .../testsuite/dc_modulus_results.txt | 68 + busybox-1_37_0/testsuite/dc_multiply.dc | 42 + .../testsuite/dc_multiply_results.txt | 43 + busybox-1_37_0/testsuite/dc_power.dc | 45 + busybox-1_37_0/testsuite/dc_power_results.txt | 73 + busybox-1_37_0/testsuite/dc_sqrt.dc | 14 + busybox-1_37_0/testsuite/dc_sqrt_results.txt | 13 + busybox-1_37_0/testsuite/dc_strings.dc | 37 + .../testsuite/dc_strings_results.txt | 36 + busybox-1_37_0/testsuite/dc_subtract.dc | 33 + .../testsuite/dc_subtract_results.txt | 37 + busybox-1_37_0/testsuite/dcx_vars.dc | 2 + busybox-1_37_0/testsuite/dcx_vars_results.txt | 6 + busybox-1_37_0/testsuite/dd/dd-accepts-if | 2 + busybox-1_37_0/testsuite/dd/dd-accepts-of | 2 + ...ies-from-standard-input-to-standard-output | 1 + busybox-1_37_0/testsuite/dd/dd-count-bytes | 3 + .../dd/dd-prints-count-to-standard-error | 2 + .../testsuite/dd/dd-reports-write-errors | 2 + busybox-1_37_0/testsuite/diff.tests | 240 + .../dirname/dirname-handles-absolute-path | 1 + .../dirname/dirname-handles-empty-path | 1 + .../dirname/dirname-handles-multiple-slashes | 1 + .../dirname/dirname-handles-relative-path | 1 + .../testsuite/dirname/dirname-handles-root | 1 + .../dirname/dirname-handles-single-component | 1 + .../testsuite/dirname/dirname-works | 1 + busybox-1_37_0/testsuite/du/du-h-works | 4 + busybox-1_37_0/testsuite/du/du-k-works | 13 + busybox-1_37_0/testsuite/du/du-l-works | 12 + busybox-1_37_0/testsuite/du/du-m-works | 4 + busybox-1_37_0/testsuite/du/du-s-works | 8 + busybox-1_37_0/testsuite/du/du-works | 8 + .../echo/echo-does-not-print-newline | 3 + .../testsuite/echo/echo-prints-argument | 1 + .../testsuite/echo/echo-prints-arguments | 1 + .../testsuite/echo/echo-prints-dash | 2 + .../testsuite/echo/echo-prints-newline | 1 + .../testsuite/echo/echo-prints-non-opts | 2 + .../testsuite/echo/echo-prints-slash-zero | 3 + .../testsuite/echo/echo-prints-slash_00041 | 3 + .../testsuite/echo/echo-prints-slash_0041 | 3 + .../testsuite/echo/echo-prints-slash_041 | 3 + .../testsuite/echo/echo-prints-slash_41 | 3 + busybox-1_37_0/testsuite/expand.tests | 24 + busybox-1_37_0/testsuite/expr/expr-big | 16 + busybox-1_37_0/testsuite/expr/expr-works | 58 + busybox-1_37_0/testsuite/factor.tests | 71 + .../testsuite/false/false-is-silent | 1 + .../testsuite/false/false-returns-failure | 1 + busybox-1_37_0/testsuite/find.tests | 82 + .../testsuite/find/find-supports-minus-xdev | 3 + busybox-1_37_0/testsuite/fold.tests | 62 + busybox-1_37_0/testsuite/grep.tests | 237 + busybox-1_37_0/testsuite/gunzip.tests | 3 + .../gunzip/gunzip-reads-from-standard-input | 2 + .../gzip/gzip-accepts-multiple-files | 3 + .../testsuite/gzip/gzip-accepts-single-minus | 1 + .../testsuite/gzip/gzip-compression-levels | 5 + .../testsuite/gzip/gzip-removes-original-file | 3 + busybox-1_37_0/testsuite/head.tests | 43 + busybox-1_37_0/testsuite/hexdump.tests | 85 + busybox-1_37_0/testsuite/hostid/hostid-works | 6 + .../testsuite/hostname/hostname-d-works | 3 + .../testsuite/hostname/hostname-i-works | 9 + .../testsuite/hostname/hostname-s-works | 1 + .../testsuite/hostname/hostname-works | 1 + busybox-1_37_0/testsuite/id/id-g-works | 1 + busybox-1_37_0/testsuite/id/id-u-works | 1 + busybox-1_37_0/testsuite/id/id-un-works | 1 + busybox-1_37_0/testsuite/id/id-ur-works | 1 + .../testsuite/ln/ln-creates-hard-links | 4 + .../testsuite/ln/ln-creates-soft-links | 4 + .../testsuite/ln/ln-force-creates-hard-links | 5 + .../testsuite/ln/ln-force-creates-soft-links | 5 + .../testsuite/ln/ln-preserves-hard-links | 8 + .../testsuite/ln/ln-preserves-soft-links | 8 + busybox-1_37_0/testsuite/ls.mk_uni_tests | 111 + busybox-1_37_0/testsuite/ls.tests | 268 + busybox-1_37_0/testsuite/ls/ls-1-works | 6 + busybox-1_37_0/testsuite/ls/ls-h-works | 6 + busybox-1_37_0/testsuite/ls/ls-l-works | 8 + busybox-1_37_0/testsuite/ls/ls-s-works | 8 + .../testsuite/makedevs.device_table.txt | 172 + busybox-1_37_0/testsuite/makedevs.tests | 150 + busybox-1_37_0/testsuite/md5sum.tests | 55 + .../md5sum/md5sum-verifies-non-binary-file | 5 + busybox-1_37_0/testsuite/mdev.tests | 246 + .../testsuite/mkdir/mkdir-makes-a-directory | 2 + .../mkdir/mkdir-makes-parent-directories | 2 + busybox-1_37_0/testsuite/mkfs.minix.tests | 30 + busybox-1_37_0/testsuite/mount.testroot | 183 + busybox-1_37_0/testsuite/mount.tests | 127 + busybox-1_37_0/testsuite/mv/mv-files-to-dir | 16 + busybox-1_37_0/testsuite/mv/mv-files-to-dir-2 | 16 + busybox-1_37_0/testsuite/mv/mv-follows-links | 4 + .../testsuite/mv/mv-moves-empty-file | 4 + busybox-1_37_0/testsuite/mv/mv-moves-file | 3 + .../testsuite/mv/mv-moves-hardlinks | 4 + .../testsuite/mv/mv-moves-large-file | 4 + .../testsuite/mv/mv-moves-small-file | 4 + busybox-1_37_0/testsuite/mv/mv-moves-symlinks | 6 + .../testsuite/mv/mv-moves-unreadable-files | 5 + .../testsuite/mv/mv-preserves-hard-links | 6 + .../testsuite/mv/mv-preserves-links | 5 + .../testsuite/mv/mv-refuses-mv-dir-to-subdir | 23 + .../testsuite/mv/mv-removes-source-file | 4 + busybox-1_37_0/testsuite/nl.tests | 39 + busybox-1_37_0/testsuite/od.tests | 279 + busybox-1_37_0/testsuite/parse.tests | 140 + busybox-1_37_0/testsuite/paste/paste | 20 + .../testsuite/paste/paste-back-cuted-lines | 9 + .../testsuite/paste/paste-multi-stdin | 16 + busybox-1_37_0/testsuite/paste/paste-pairs | 16 + busybox-1_37_0/testsuite/paste/paste-separate | 19 + busybox-1_37_0/testsuite/patch.tests | 292 + busybox-1_37_0/testsuite/pidof.tests | 40 + busybox-1_37_0/testsuite/printf.tests | 156 + .../pwd/pwd-prints-working-directory | 4 + busybox-1_37_0/testsuite/readlink.tests | 38 + busybox-1_37_0/testsuite/realpath.tests | 45 + busybox-1_37_0/testsuite/rev.tests | 46 + busybox-1_37_0/testsuite/rm/rm-removes-file | 3 + .../rmdir/rmdir-removes-parent-directories | 3 + busybox-1_37_0/testsuite/runtest | 171 + busybox-1_37_0/testsuite/rx.tests | 27 + busybox-1_37_0/testsuite/sed.tests | 434 + busybox-1_37_0/testsuite/seq.tests | 50 + busybox-1_37_0/testsuite/sha1sum.tests | 15 + busybox-1_37_0/testsuite/sha256sum.tests | 3 + busybox-1_37_0/testsuite/sha3sum.tests | 3 + busybox-1_37_0/testsuite/sha512sum.tests | 3 + busybox-1_37_0/testsuite/sort.tests | 243 + .../testsuite/start-stop-daemon.tests | 56 + .../testsuite/strings/strings-works-like-GNU | 9 + busybox-1_37_0/testsuite/sum.tests | 24 + busybox-1_37_0/testsuite/tail.tests | 25 + busybox-1_37_0/testsuite/tail/tail-n-works | 4 + busybox-1_37_0/testsuite/tail/tail-works | 6 + busybox-1_37_0/testsuite/tar.tests | 389 + busybox-1_37_0/testsuite/tar.utf8.tar.bz2 | Bin 0 -> 519 bytes .../testsuite/tar/tar-archives-multiple-files | 6 + .../tar/tar-complains-about-missing-file | 3 + .../tar/tar-demands-at-least-one-ctx | 1 + .../testsuite/tar/tar-demands-at-most-one-ctx | 1 + .../testsuite/tar/tar-extracts-all-subdirs | 12 + .../testsuite/tar/tar-extracts-file | 5 + .../tar/tar-extracts-from-standard-input | 5 + .../testsuite/tar/tar-extracts-multiple-files | 6 + .../tar/tar-extracts-to-standard-output | 3 + .../testsuite/tar/tar-handles-cz-options | 5 + ...s-empty-include-and-non-empty-exclude-list | 6 + .../tar/tar-handles-exclude-and-extract-lists | 8 + .../tar/tar-handles-multiple-X-options | 10 + .../testsuite/tar/tar-handles-nested-exclude | 9 + .../testsuite/tar/tar_with_link_with_size | 31 + .../testsuite/tar/tar_with_prefix_fields | 264 + busybox-1_37_0/testsuite/taskset.tests | 16 + .../testsuite/tee/tee-appends-input | 5 + busybox-1_37_0/testsuite/tee/tee-tees-input | 3 + busybox-1_37_0/testsuite/test.tests | 99 + busybox-1_37_0/testsuite/testing.sh | 180 + busybox-1_37_0/testsuite/time.tests | 37 + .../testsuite/touch/touch-creates-file | 2 + .../touch/touch-does-not-create-file | 2 + ...ouch-touches-files-after-non-existent-file | 3 + busybox-1_37_0/testsuite/tr.tests | 37 + busybox-1_37_0/testsuite/tr/tr-d-alnum-works | 6 + busybox-1_37_0/testsuite/tr/tr-d-works | 4 + busybox-1_37_0/testsuite/tr/tr-non-gnu | 1 + .../testsuite/tr/tr-rejects-wrong-class | 21 + busybox-1_37_0/testsuite/tr/tr-works | 28 + busybox-1_37_0/testsuite/tree.tests | 102 + busybox-1_37_0/testsuite/true/true-is-silent | 1 + .../testsuite/true/true-returns-success | 1 + busybox-1_37_0/testsuite/tsort.tests | 110 + busybox-1_37_0/testsuite/umlwrapper.sh | 20 + busybox-1_37_0/testsuite/uncompress.tests | 20 + busybox-1_37_0/testsuite/unexpand.tests | 72 + busybox-1_37_0/testsuite/uniq.tests | 87 + busybox-1_37_0/testsuite/unlzma.tests | 30 + busybox-1_37_0/testsuite/unlzma_issue_1.lzma | Bin 0 -> 171 bytes busybox-1_37_0/testsuite/unlzma_issue_2.lzma | Bin 0 -> 261 bytes busybox-1_37_0/testsuite/unlzma_issue_3.lzma | Bin 0 -> 27 bytes busybox-1_37_0/testsuite/unzip.tests | 86 + busybox-1_37_0/testsuite/unzip_bad_lzma_1.zip | Bin 0 -> 229 bytes busybox-1_37_0/testsuite/unzip_bad_lzma_2.zip | Bin 0 -> 96 bytes busybox-1_37_0/testsuite/uptime/uptime-works | 1 + busybox-1_37_0/testsuite/uuencode.tests | 122 + busybox-1_37_0/testsuite/wc/wc-counts-all | 2 + .../testsuite/wc/wc-counts-characters | 1 + busybox-1_37_0/testsuite/wc/wc-counts-lines | 1 + busybox-1_37_0/testsuite/wc/wc-counts-words | 1 + .../wc/wc-prints-longest-line-length | 1 + .../testsuite/wget/wget--O-overrides--P | 5 + .../testsuite/wget/wget-handles-empty-path | 3 + .../wget/wget-retrieves-google-index | 4 + .../testsuite/wget/wget-supports--P | 5 + .../testsuite/which/which-uses-default-path | 4 + busybox-1_37_0/testsuite/xargs.tests | 72 + busybox-1_37_0/testsuite/xargs/xargs-works | 6 + busybox-1_37_0/testsuite/xxd.tests | 63 + busybox-1_37_0/util-linux/Config.src | 68 + busybox-1_37_0/util-linux/Kbuild.src | 9 + busybox-1_37_0/util-linux/acpid.c | 387 + busybox-1_37_0/util-linux/blkdiscard.c | 91 + busybox-1_37_0/util-linux/blkid.c | 48 + busybox-1_37_0/util-linux/blockdev.c | 210 + busybox-1_37_0/util-linux/cal.c | 403 + busybox-1_37_0/util-linux/chrt.c | 208 + busybox-1_37_0/util-linux/dmesg.c | 123 + busybox-1_37_0/util-linux/eject.c | 152 + busybox-1_37_0/util-linux/fallocate.c | 102 + busybox-1_37_0/util-linux/fatattr.c | 104 + busybox-1_37_0/util-linux/fbset.c | 573 + busybox-1_37_0/util-linux/fdformat.c | 146 + busybox-1_37_0/util-linux/fdisk.c | 3240 ++++ busybox-1_37_0/util-linux/fdisk_aix.c | 74 + busybox-1_37_0/util-linux/fdisk_gpt.c | 219 + busybox-1_37_0/util-linux/fdisk_osf.c | 1052 ++ busybox-1_37_0/util-linux/fdisk_sgi.c | 889 + busybox-1_37_0/util-linux/fdisk_sun.c | 733 + busybox-1_37_0/util-linux/findfs.c | 58 + busybox-1_37_0/util-linux/flock.c | 119 + busybox-1_37_0/util-linux/freeramdisk.c | 78 + busybox-1_37_0/util-linux/fsck_minix.c | 1327 ++ busybox-1_37_0/util-linux/fsfreeze.c | 52 + busybox-1_37_0/util-linux/fstrim.c | 98 + busybox-1_37_0/util-linux/getopt.c | 417 + busybox-1_37_0/util-linux/hexdump.c | 153 + busybox-1_37_0/util-linux/hexdump_xxd.c | 342 + busybox-1_37_0/util-linux/hwclock.c | 499 + busybox-1_37_0/util-linux/ionice.c | 118 + busybox-1_37_0/util-linux/ipcrm.c | 230 + busybox-1_37_0/util-linux/ipcs.c | 637 + busybox-1_37_0/util-linux/last.c | 166 + busybox-1_37_0/util-linux/last_fancy.c | 300 + busybox-1_37_0/util-linux/losetup.c | 186 + busybox-1_37_0/util-linux/lspci.c | 121 + busybox-1_37_0/util-linux/lsusb.c | 111 + busybox-1_37_0/util-linux/mdev.c | 1312 ++ busybox-1_37_0/util-linux/mesg.c | 80 + busybox-1_37_0/util-linux/minix.h | 103 + busybox-1_37_0/util-linux/mkfs_ext2.c | 697 + busybox-1_37_0/util-linux/mkfs_ext2.txt | 77 + busybox-1_37_0/util-linux/mkfs_ext2_test.sh | 104 + busybox-1_37_0/util-linux/mkfs_minix.c | 714 + busybox-1_37_0/util-linux/mkfs_reiser.c | 368 + busybox-1_37_0/util-linux/mkfs_vfat.c | 646 + busybox-1_37_0/util-linux/mkswap.c | 176 + busybox-1_37_0/util-linux/more.c | 224 + busybox-1_37_0/util-linux/mount.c | 2551 +++ busybox-1_37_0/util-linux/mountpoint.c | 105 + busybox-1_37_0/util-linux/nologin.c | 27 + busybox-1_37_0/util-linux/nsenter.c | 267 + busybox-1_37_0/util-linux/pivot_root.c | 51 + busybox-1_37_0/util-linux/rdate.c | 110 + busybox-1_37_0/util-linux/rdev.c | 41 + busybox-1_37_0/util-linux/readprofile.c | 273 + busybox-1_37_0/util-linux/renice.c | 140 + busybox-1_37_0/util-linux/rev.c | 121 + busybox-1_37_0/util-linux/rtcwake.c | 233 + busybox-1_37_0/util-linux/script.c | 240 + busybox-1_37_0/util-linux/scriptreplay.c | 56 + busybox-1_37_0/util-linux/setarch.c | 102 + busybox-1_37_0/util-linux/setpriv.c | 335 + busybox-1_37_0/util-linux/setsid.c | 82 + busybox-1_37_0/util-linux/swaponoff.c | 336 + busybox-1_37_0/util-linux/switch_root.c | 376 + busybox-1_37_0/util-linux/taskset.c | 345 + busybox-1_37_0/util-linux/uevent.c | 123 + busybox-1_37_0/util-linux/umount.c | 245 + busybox-1_37_0/util-linux/unshare.c | 377 + .../util-linux/volume_id/Config.src | 15 + .../util-linux/volume_id/Kbuild.src | 9 + busybox-1_37_0/util-linux/volume_id/bcache.c | 105 + busybox-1_37_0/util-linux/volume_id/btrfs.c | 114 + busybox-1_37_0/util-linux/volume_id/cramfs.c | 65 + busybox-1_37_0/util-linux/volume_id/erofs.c | 67 + busybox-1_37_0/util-linux/volume_id/exfat.c | 140 + busybox-1_37_0/util-linux/volume_id/ext.c | 66 + busybox-1_37_0/util-linux/volume_id/f2fs.c | 92 + busybox-1_37_0/util-linux/volume_id/fat.c | 344 + .../util-linux/volume_id/get_devname.c | 321 + busybox-1_37_0/util-linux/volume_id/hfs.c | 319 + busybox-1_37_0/util-linux/volume_id/iso9660.c | 126 + busybox-1_37_0/util-linux/volume_id/jfs.c | 66 + busybox-1_37_0/util-linux/volume_id/lfs.c | 62 + .../util-linux/volume_id/linux_raid.c | 87 + .../util-linux/volume_id/linux_swap.c | 84 + busybox-1_37_0/util-linux/volume_id/luks.c | 106 + busybox-1_37_0/util-linux/volume_id/minix.c | 91 + busybox-1_37_0/util-linux/volume_id/nilfs.c | 113 + busybox-1_37_0/util-linux/volume_id/ntfs.c | 200 + busybox-1_37_0/util-linux/volume_id/ocfs2.c | 112 + .../util-linux/volume_id/reiserfs.c | 119 + busybox-1_37_0/util-linux/volume_id/romfs.c | 61 + .../util-linux/volume_id/squashfs.c | 58 + busybox-1_37_0/util-linux/volume_id/sysv.c | 131 + busybox-1_37_0/util-linux/volume_id/ubifs.c | 122 + busybox-1_37_0/util-linux/volume_id/udf.c | 178 + .../util-linux/volume_id/unused_highpoint.c | 92 + .../util-linux/volume_id/unused_hpfs.c | 54 + .../util-linux/volume_id/unused_isw_raid.c | 64 + .../util-linux/volume_id/unused_lsi_raid.c | 58 + .../util-linux/volume_id/unused_lvm.c | 93 + .../util-linux/volume_id/unused_mac.c | 129 + .../util-linux/volume_id/unused_msdos.c | 201 + .../util-linux/volume_id/unused_nvidia_raid.c | 62 + .../volume_id/unused_promise_raid.c | 69 + .../volume_id/unused_silicon_raid.c | 75 + .../util-linux/volume_id/unused_ufs.c | 212 + .../util-linux/volume_id/unused_via_raid.c | 74 + busybox-1_37_0/util-linux/volume_id/util.c | 265 + .../util-linux/volume_id/volume_id.c | 271 + .../util-linux/volume_id/volume_id_internal.h | 230 + busybox-1_37_0/util-linux/volume_id/xfs.c | 66 + busybox-1_37_0/util-linux/wall.c | 62 + comp_run_iso.sh | 3 +- progs/files | 3 - progs/init.cpio | Bin 2292224 -> 4584448 bytes progs/src/shell/shell.c | 46 +- progs/src/shell/shell.o | Bin 2008 -> 1064 bytes .../shell/test/lib/x86_64-linux-gnu/libc.so.6 | Bin 0 -> 1922136 bytes .../test/lib/x86_64-linux-gnu/libdl.so.2} | Bin 16256 -> 14480 bytes .../test/lib/x86_64-linux-gnu/libpthread.so.0 | Bin 0 -> 14480 bytes .../lib/x86_64-linux-gnu/libgtk3-nocsd.so.0 | Bin 0 -> 30712 bytes 3300 files changed, 364904 insertions(+), 27 deletions(-) create mode 100644 busybox-1_37_0/.gitignore create mode 100644 busybox-1_37_0/AUTHORS create mode 100644 busybox-1_37_0/INSTALL create mode 100644 busybox-1_37_0/LICENSE create mode 100644 busybox-1_37_0/Makefile create mode 100644 busybox-1_37_0/Makefile.custom create mode 100644 busybox-1_37_0/Makefile.flags create mode 100644 busybox-1_37_0/Makefile.help create mode 100644 busybox-1_37_0/NOFORK_NOEXEC.lst create mode 100755 busybox-1_37_0/NOFORK_NOEXEC.sh create mode 100644 busybox-1_37_0/README create mode 100644 busybox-1_37_0/TODO create mode 100644 busybox-1_37_0/TODO_unicode create mode 100644 busybox-1_37_0/applets/.gitignore create mode 100644 busybox-1_37_0/applets/Kbuild.src create mode 100644 busybox-1_37_0/applets/applet_tables.c create mode 100644 busybox-1_37_0/applets/applets.c create mode 100755 busybox-1_37_0/applets/busybox.mkll create mode 100755 busybox-1_37_0/applets/busybox.mkscripts create mode 100755 busybox-1_37_0/applets/busybox.mksuid create mode 100644 busybox-1_37_0/applets/individual.c create mode 100755 busybox-1_37_0/applets/install.sh create mode 100644 busybox-1_37_0/applets/usage.c create mode 100755 busybox-1_37_0/applets/usage_compressed create mode 100644 busybox-1_37_0/applets/usage_pod.c create mode 100755 busybox-1_37_0/applets_sh/mim create mode 100755 busybox-1_37_0/applets_sh/nologin create mode 100644 busybox-1_37_0/arch/i386/Makefile create mode 100644 busybox-1_37_0/arch/sparc/Makefile create mode 100644 busybox-1_37_0/arch/sparc64/Makefile create mode 100644 busybox-1_37_0/arch/x86_64/Makefile create mode 100644 busybox-1_37_0/archival/Config.src create mode 100644 busybox-1_37_0/archival/Kbuild.src create mode 100644 busybox-1_37_0/archival/ar.c create mode 100644 busybox-1_37_0/archival/bbunzip.c create mode 100644 busybox-1_37_0/archival/bbunzip_test.sh create mode 100644 busybox-1_37_0/archival/bbunzip_test2.sh create mode 100644 busybox-1_37_0/archival/bbunzip_test3.sh create mode 100644 busybox-1_37_0/archival/bzip2.c create mode 100644 busybox-1_37_0/archival/chksum_and_xwrite_tar_header.c create mode 100644 busybox-1_37_0/archival/cpio.c create mode 100644 busybox-1_37_0/archival/dpkg.c create mode 100644 busybox-1_37_0/archival/dpkg_deb.c create mode 100644 busybox-1_37_0/archival/gzip.c create mode 100644 busybox-1_37_0/archival/libarchive/Kbuild.src create mode 100644 busybox-1_37_0/archival/libarchive/bz/LICENSE create mode 100644 busybox-1_37_0/archival/libarchive/bz/README create mode 100644 busybox-1_37_0/archival/libarchive/bz/blocksort.c create mode 100644 busybox-1_37_0/archival/libarchive/bz/bzlib.c create mode 100644 busybox-1_37_0/archival/libarchive/bz/bzlib.h create mode 100644 busybox-1_37_0/archival/libarchive/bz/bzlib_private.h create mode 100644 busybox-1_37_0/archival/libarchive/bz/compress.c create mode 100644 busybox-1_37_0/archival/libarchive/bz/huffman.c create mode 100644 busybox-1_37_0/archival/libarchive/common.c create mode 100644 busybox-1_37_0/archival/libarchive/data_align.c create mode 100644 busybox-1_37_0/archival/libarchive/data_extract_all.c create mode 100644 busybox-1_37_0/archival/libarchive/data_extract_to_command.c create mode 100644 busybox-1_37_0/archival/libarchive/data_extract_to_stdout.c create mode 100644 busybox-1_37_0/archival/libarchive/data_skip.c create mode 100644 busybox-1_37_0/archival/libarchive/decompress_bunzip2.c create mode 100644 busybox-1_37_0/archival/libarchive/decompress_gunzip.c create mode 100644 busybox-1_37_0/archival/libarchive/decompress_uncompress.c create mode 100644 busybox-1_37_0/archival/libarchive/decompress_unlzma.c create mode 100644 busybox-1_37_0/archival/libarchive/decompress_unxz.c create mode 100644 busybox-1_37_0/archival/libarchive/filter_accept_all.c create mode 100644 busybox-1_37_0/archival/libarchive/filter_accept_list.c create mode 100644 busybox-1_37_0/archival/libarchive/filter_accept_list_reassign.c create mode 100644 busybox-1_37_0/archival/libarchive/filter_accept_reject_list.c create mode 100644 busybox-1_37_0/archival/libarchive/find_list_entry.c create mode 100644 busybox-1_37_0/archival/libarchive/get_header_ar.c create mode 100644 busybox-1_37_0/archival/libarchive/get_header_cpio.c create mode 100644 busybox-1_37_0/archival/libarchive/get_header_tar.c create mode 100644 busybox-1_37_0/archival/libarchive/get_header_tar_bz2.c create mode 100644 busybox-1_37_0/archival/libarchive/get_header_tar_gz.c create mode 100644 busybox-1_37_0/archival/libarchive/get_header_tar_lzma.c create mode 100644 busybox-1_37_0/archival/libarchive/get_header_tar_xz.c create mode 100644 busybox-1_37_0/archival/libarchive/header_list.c create mode 100644 busybox-1_37_0/archival/libarchive/header_skip.c create mode 100644 busybox-1_37_0/archival/libarchive/header_verbose_list.c create mode 100644 busybox-1_37_0/archival/libarchive/init_handle.c create mode 100644 busybox-1_37_0/archival/libarchive/liblzo.h create mode 100644 busybox-1_37_0/archival/libarchive/lzo1x_1.c create mode 100644 busybox-1_37_0/archival/libarchive/lzo1x_1o.c create mode 100644 busybox-1_37_0/archival/libarchive/lzo1x_9x.c create mode 100644 busybox-1_37_0/archival/libarchive/lzo1x_c.c create mode 100644 busybox-1_37_0/archival/libarchive/lzo1x_d.c create mode 100644 busybox-1_37_0/archival/libarchive/open_transformer.c create mode 100644 busybox-1_37_0/archival/libarchive/seek_by_jump.c create mode 100644 busybox-1_37_0/archival/libarchive/seek_by_read.c create mode 100644 busybox-1_37_0/archival/libarchive/unpack_ar_archive.c create mode 100644 busybox-1_37_0/archival/libarchive/unsafe_prefix.c create mode 100644 busybox-1_37_0/archival/libarchive/unsafe_symlink_target.c create mode 100644 busybox-1_37_0/archival/libarchive/unxz/README create mode 100644 busybox-1_37_0/archival/libarchive/unxz/xz.h create mode 100644 busybox-1_37_0/archival/libarchive/unxz/xz_config.h create mode 100644 busybox-1_37_0/archival/libarchive/unxz/xz_dec_bcj.c create mode 100644 busybox-1_37_0/archival/libarchive/unxz/xz_dec_lzma2.c create mode 100644 busybox-1_37_0/archival/libarchive/unxz/xz_dec_stream.c create mode 100644 busybox-1_37_0/archival/libarchive/unxz/xz_lzma2.h create mode 100644 busybox-1_37_0/archival/libarchive/unxz/xz_private.h create mode 100644 busybox-1_37_0/archival/libarchive/unxz/xz_stream.h create mode 100644 busybox-1_37_0/archival/lzop.c create mode 100644 busybox-1_37_0/archival/rpm.c create mode 100644 busybox-1_37_0/archival/rpm.h create mode 100644 busybox-1_37_0/archival/tar.c create mode 100755 busybox-1_37_0/archival/tar_symlink_attack create mode 100644 busybox-1_37_0/archival/unzip.c create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/arch create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/ash create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/base32 create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/base64 create mode 100755 busybox-1_37_0/boot-files/initramfs/bin/busybox create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/cat create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/chattr create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/chgrp create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/chmod create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/chown create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/conspy create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/cp create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/cpio create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/cttyhack create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/date create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/dd create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/df create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/dmesg create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/dnsdomainname create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/dumpkmap create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/echo create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/ed create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/egrep create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/false create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/fatattr create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/fdflush create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/fgrep create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/fsync create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/getopt create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/grep create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/gunzip create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/gzip create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/hostname create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/hush create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/ionice create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/iostat create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/ipcalc create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/kbd_mode create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/kill create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/link create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/linux32 create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/linux64 create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/ln create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/login create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/ls create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/lsattr create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/lzop create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/makemime create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/mkdir create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/mknod create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/mktemp create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/more create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/mount create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/mountpoint create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/mpstat create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/mt create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/mv create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/netstat create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/nice create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/pidof create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/ping create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/ping6 create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/pipe_progress create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/printenv create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/ps create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/pwd create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/reformime create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/resume create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/rev create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/rm create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/rmdir create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/rpm create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/run-parts create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/scriptreplay create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/sed create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/setarch create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/setpriv create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/setserial create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/sh create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/sleep create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/stat create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/stty create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/su create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/sync create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/tar create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/touch create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/true create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/umount create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/uname create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/usleep create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/vi create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/watch create mode 120000 busybox-1_37_0/boot-files/initramfs/bin/zcat create mode 120000 busybox-1_37_0/boot-files/initramfs/linuxrc create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/acpid create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/adjtimex create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/arp create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/blkid create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/blockdev create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/bootchartd create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/depmod create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/devmem create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/fbsplash create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/fdisk create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/findfs create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/freeramdisk create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/fsck create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/fsck.minix create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/fstrim create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/getty create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/halt create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/hdparm create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/hwclock create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/ifconfig create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/ifdown create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/ifenslave create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/ifup create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/init create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/insmod create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/ip create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/ipaddr create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/iplink create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/ipneigh create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/iproute create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/iprule create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/iptunnel create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/klogd create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/loadkmap create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/logread create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/losetup create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/lsmod create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/makedevs create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/mdev create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/mkdosfs create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/mke2fs create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/mkfs.ext2 create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/mkfs.minix create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/mkfs.vfat create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/mkswap create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/modinfo create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/modprobe create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/nameif create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/pivot_root create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/poweroff create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/raidautorun create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/reboot create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/rmmod create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/route create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/run-init create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/runlevel create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/setconsole create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/slattach create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/start-stop-daemon create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/sulogin create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/swapoff create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/swapon create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/switch_root create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/sysctl create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/syslogd create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/tc create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/tunctl create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/udhcpc create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/uevent create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/vconfig create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/watchdog create mode 120000 busybox-1_37_0/boot-files/initramfs/sbin/zcip create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/[ create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/[[ create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/ascii create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/awk create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/basename create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/bc create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/beep create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/blkdiscard create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/bunzip2 create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/bzcat create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/bzip2 create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/cal create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/chpst create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/chrt create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/chvt create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/cksum create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/clear create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/cmp create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/comm create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/crc32 create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/crontab create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/cryptpw create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/cut create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/dc create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/deallocvt create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/diff create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/dirname create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/dos2unix create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/dpkg create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/dpkg-deb create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/du create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/dumpleases create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/eject create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/env create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/envdir create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/envuidgid create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/expand create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/expr create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/factor create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/fallocate create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/fgconsole create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/find create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/flock create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/fold create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/free create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/ftpget create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/ftpput create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/fuser create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/getfattr create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/groups create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/hd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/head create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/hexdump create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/hexedit create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/hostid create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/id create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/install create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/ipcrm create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/ipcs create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/killall create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/last create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/less create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/logger create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/logname create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/lpq create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/lpr create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/lsof create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/lspci create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/lsscsi create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/lsusb create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/lzcat create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/lzma create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/man create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/md5sum create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/mesg create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/microcom create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/mkfifo create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/mkpasswd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/nc create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/nl create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/nmeter create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/nohup create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/nproc create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/nsenter create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/nslookup create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/od create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/openvt create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/passwd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/paste create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/patch create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/pgrep create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/pkill create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/pmap create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/printf create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/pscan create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/pstree create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/pwdx create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/readlink create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/realpath create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/renice create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/reset create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/resize create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/rpm2cpio create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/runsv create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/runsvdir create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/rx create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/script create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/seq create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/setfattr create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/setkeycodes create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/setsid create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/setuidgid create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/sha1sum create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/sha256sum create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/sha3sum create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/sha512sum create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/showkey create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/shred create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/shuf create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/smemcap create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/softlimit create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/sort create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/split create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/ssl_client create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/strings create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/sum create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/sv create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/svc create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/svok create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/tac create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/tail create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/taskset create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/tcpsvd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/tee create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/telnet create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/test create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/tftp create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/time create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/timeout create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/top create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/tr create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/traceroute create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/traceroute6 create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/tree create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/truncate create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/ts create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/tsort create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/tty create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/ttysize create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/udhcpc6 create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/udpsvd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/unexpand create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/uniq create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/unix2dos create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/unlink create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/unlzma create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/unshare create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/unxz create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/unzip create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/uptime create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/users create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/uudecode create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/uuencode create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/vlock create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/volname create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/w create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/wall create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/wc create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/wget create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/which create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/who create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/whoami create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/whois create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/xargs create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/xxd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/xz create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/xzcat create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/bin/yes create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/add-shell create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/addgroup create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/adduser create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/arping create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/brctl create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/chat create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/chpasswd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/chroot create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/crond create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/delgroup create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/deluser create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/dhcprelay create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/dnsd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ether-wake create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/fakeidentd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/fbset create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/fdformat create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/fsfreeze create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ftpd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/httpd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cdetect create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cdump create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cget create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cset create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/i2ctransfer create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ifplugd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/inetd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/killall5 create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/loadfont create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/lpd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/mim create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/nanddump create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/nandwrite create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/nbd-client create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/nologin create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ntpd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/partprobe create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/popmaildir create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/powertop create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/rdate create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/rdev create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/readahead create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/readprofile create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/remove-shell create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/rtcwake create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/seedrng create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/sendmail create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/setfont create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/setlogcons create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/svlogd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/telnetd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/tftpd create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ubiattach create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ubidetach create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ubimkvol create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirename create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirmvol create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirsvol create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/ubiupdatevol create mode 120000 busybox-1_37_0/boot-files/initramfs/usr/sbin/udhcpd create mode 100644 busybox-1_37_0/busybox_ldscript.README.txt create mode 100644 busybox-1_37_0/configs/TEST_nommu_defconfig create mode 100644 busybox-1_37_0/configs/TEST_noprintf_defconfig create mode 100644 busybox-1_37_0/configs/TEST_rh9_defconfig create mode 100644 busybox-1_37_0/configs/android2_defconfig create mode 100644 busybox-1_37_0/configs/android_502_defconfig create mode 100644 busybox-1_37_0/configs/android_defconfig create mode 100644 busybox-1_37_0/configs/android_ndk_defconfig create mode 100644 busybox-1_37_0/configs/cygwin_defconfig create mode 100644 busybox-1_37_0/configs/freebsd_defconfig create mode 100644 busybox-1_37_0/console-tools/Config.src create mode 100644 busybox-1_37_0/console-tools/Kbuild.src create mode 100644 busybox-1_37_0/console-tools/chvt.c create mode 100644 busybox-1_37_0/console-tools/clear.c create mode 100644 busybox-1_37_0/console-tools/deallocvt.c create mode 100644 busybox-1_37_0/console-tools/dumpkmap.c create mode 100644 busybox-1_37_0/console-tools/fgconsole.c create mode 100644 busybox-1_37_0/console-tools/kbd_mode.c create mode 100644 busybox-1_37_0/console-tools/loadfont.c create mode 100644 busybox-1_37_0/console-tools/loadkmap.c create mode 100644 busybox-1_37_0/console-tools/openvt.c create mode 100644 busybox-1_37_0/console-tools/reset.c create mode 100644 busybox-1_37_0/console-tools/resize.c create mode 100644 busybox-1_37_0/console-tools/setconsole.c create mode 100644 busybox-1_37_0/console-tools/setkeycodes.c create mode 100644 busybox-1_37_0/console-tools/setlogcons.c create mode 100644 busybox-1_37_0/console-tools/showkey.c create mode 100644 busybox-1_37_0/coreutils/Config.src create mode 100644 busybox-1_37_0/coreutils/Kbuild.src create mode 100644 busybox-1_37_0/coreutils/basename.c create mode 100644 busybox-1_37_0/coreutils/cat.c create mode 100644 busybox-1_37_0/coreutils/chgrp.c create mode 100644 busybox-1_37_0/coreutils/chmod.c create mode 100644 busybox-1_37_0/coreutils/chown.c create mode 100644 busybox-1_37_0/coreutils/chroot.c create mode 100644 busybox-1_37_0/coreutils/cksum.c create mode 100644 busybox-1_37_0/coreutils/comm.c create mode 100644 busybox-1_37_0/coreutils/cp.c create mode 100644 busybox-1_37_0/coreutils/cut.c create mode 100644 busybox-1_37_0/coreutils/date.c create mode 100644 busybox-1_37_0/coreutils/dd.c create mode 100644 busybox-1_37_0/coreutils/df.c create mode 100644 busybox-1_37_0/coreutils/dirname.c create mode 100644 busybox-1_37_0/coreutils/dos2unix.c create mode 100644 busybox-1_37_0/coreutils/du.c create mode 100644 busybox-1_37_0/coreutils/echo.c create mode 100644 busybox-1_37_0/coreutils/env.c create mode 100644 busybox-1_37_0/coreutils/expand.c create mode 100644 busybox-1_37_0/coreutils/expr.c create mode 100644 busybox-1_37_0/coreutils/factor.c create mode 100644 busybox-1_37_0/coreutils/false.c create mode 100644 busybox-1_37_0/coreutils/fold.c create mode 100644 busybox-1_37_0/coreutils/head.c create mode 100644 busybox-1_37_0/coreutils/hostid.c create mode 100644 busybox-1_37_0/coreutils/id.c create mode 100755 busybox-1_37_0/coreutils/id_test.sh create mode 100644 busybox-1_37_0/coreutils/install.c create mode 100644 busybox-1_37_0/coreutils/libcoreutils/Kbuild.src create mode 100644 busybox-1_37_0/coreutils/libcoreutils/coreutils.h create mode 100644 busybox-1_37_0/coreutils/libcoreutils/cp_mv_stat.c create mode 100644 busybox-1_37_0/coreutils/libcoreutils/getopt_mk_fifo_nod.c create mode 100644 busybox-1_37_0/coreutils/link.c create mode 100644 busybox-1_37_0/coreutils/ln.c create mode 100644 busybox-1_37_0/coreutils/logname.c create mode 100644 busybox-1_37_0/coreutils/ls.c create mode 100644 busybox-1_37_0/coreutils/md5_sha1_sum.c create mode 100644 busybox-1_37_0/coreutils/mkdir.c create mode 100644 busybox-1_37_0/coreutils/mkfifo.c create mode 100644 busybox-1_37_0/coreutils/mknod.c create mode 100644 busybox-1_37_0/coreutils/mktemp.c create mode 100644 busybox-1_37_0/coreutils/mv.c create mode 100644 busybox-1_37_0/coreutils/nice.c create mode 100644 busybox-1_37_0/coreutils/nl.c create mode 100644 busybox-1_37_0/coreutils/nohup.c create mode 100644 busybox-1_37_0/coreutils/nproc.c create mode 100644 busybox-1_37_0/coreutils/od.c create mode 100644 busybox-1_37_0/coreutils/od_bloaty.c create mode 100644 busybox-1_37_0/coreutils/paste.c create mode 100644 busybox-1_37_0/coreutils/printenv.c create mode 100644 busybox-1_37_0/coreutils/printf.c create mode 100644 busybox-1_37_0/coreutils/pwd.c create mode 100644 busybox-1_37_0/coreutils/readlink.c create mode 100644 busybox-1_37_0/coreutils/realpath.c create mode 100644 busybox-1_37_0/coreutils/rm.c create mode 100644 busybox-1_37_0/coreutils/rmdir.c create mode 100644 busybox-1_37_0/coreutils/seq.c create mode 100644 busybox-1_37_0/coreutils/shred.c create mode 100644 busybox-1_37_0/coreutils/shuf.c create mode 100644 busybox-1_37_0/coreutils/sleep.c create mode 100644 busybox-1_37_0/coreutils/sort.c create mode 100644 busybox-1_37_0/coreutils/split.c create mode 100644 busybox-1_37_0/coreutils/stat.c create mode 100644 busybox-1_37_0/coreutils/stty.c create mode 100644 busybox-1_37_0/coreutils/sum.c create mode 100644 busybox-1_37_0/coreutils/sync.c create mode 100644 busybox-1_37_0/coreutils/tac.c create mode 100644 busybox-1_37_0/coreutils/tail.c create mode 100644 busybox-1_37_0/coreutils/tee.c create mode 100644 busybox-1_37_0/coreutils/test.c create mode 100644 busybox-1_37_0/coreutils/test_ptr_hack.c create mode 100644 busybox-1_37_0/coreutils/timeout.c create mode 100644 busybox-1_37_0/coreutils/touch.c create mode 100644 busybox-1_37_0/coreutils/tr.c create mode 100644 busybox-1_37_0/coreutils/true.c create mode 100644 busybox-1_37_0/coreutils/truncate.c create mode 100644 busybox-1_37_0/coreutils/tsort.c create mode 100644 busybox-1_37_0/coreutils/tty.c create mode 100644 busybox-1_37_0/coreutils/uname.c create mode 100644 busybox-1_37_0/coreutils/uniq.c create mode 100644 busybox-1_37_0/coreutils/unlink.c create mode 100644 busybox-1_37_0/coreutils/usleep.c create mode 100644 busybox-1_37_0/coreutils/uudecode.c create mode 100644 busybox-1_37_0/coreutils/uuencode.c create mode 100644 busybox-1_37_0/coreutils/wc.c create mode 100644 busybox-1_37_0/coreutils/who.c create mode 100644 busybox-1_37_0/coreutils/whoami.c create mode 100644 busybox-1_37_0/coreutils/yes.c create mode 100644 busybox-1_37_0/debianutils/Config.src create mode 100644 busybox-1_37_0/debianutils/Kbuild.src create mode 100644 busybox-1_37_0/debianutils/pipe_progress.c create mode 100644 busybox-1_37_0/debianutils/run_parts.c create mode 100644 busybox-1_37_0/debianutils/start_stop_daemon.c create mode 100644 busybox-1_37_0/debianutils/which.c create mode 100644 busybox-1_37_0/docs/.gitignore create mode 100644 busybox-1_37_0/docs/Kconfig-language.txt create mode 100644 busybox-1_37_0/docs/Serial-Programming-HOWTO.txt create mode 100644 busybox-1_37_0/docs/busybox_footer.pod create mode 100644 busybox-1_37_0/docs/busybox_header.pod create mode 100644 busybox-1_37_0/docs/cgi/cl.html create mode 100644 busybox-1_37_0/docs/cgi/env.html create mode 100644 busybox-1_37_0/docs/cgi/in.html create mode 100644 busybox-1_37_0/docs/cgi/interface.html create mode 100644 busybox-1_37_0/docs/cgi/out.html create mode 100644 busybox-1_37_0/docs/contributing.txt create mode 100644 busybox-1_37_0/docs/ctty.htm create mode 100644 busybox-1_37_0/docs/draft-coar-cgi-v11-03-clean.html create mode 100644 busybox-1_37_0/docs/embedded-scripts.txt create mode 100644 busybox-1_37_0/docs/ifupdown_design.txt create mode 100644 busybox-1_37_0/docs/keep_data_small.txt create mode 100644 busybox-1_37_0/docs/logging_and_backgrounding.txt create mode 100644 busybox-1_37_0/docs/mdev.txt create mode 100644 busybox-1_37_0/docs/new-applet-HOWTO.txt create mode 100644 busybox-1_37_0/docs/nofork_noexec.txt create mode 100644 busybox-1_37_0/docs/posix_conformance.txt create mode 100644 busybox-1_37_0/docs/sigint.htm create mode 100644 busybox-1_37_0/docs/smallint.txt create mode 100644 busybox-1_37_0/docs/style-guide.txt create mode 100644 busybox-1_37_0/docs/syslog.conf.txt create mode 100644 busybox-1_37_0/docs/tar_pax.txt create mode 100644 busybox-1_37_0/docs/tcp.txt create mode 100644 busybox-1_37_0/docs/unicode.txt create mode 100644 busybox-1_37_0/docs/unicode_UTF-8-test.txt create mode 100644 busybox-1_37_0/docs/unicode_full-bmp.txt create mode 100644 busybox-1_37_0/docs/unit-tests.txt create mode 100644 busybox-1_37_0/e2fsprogs/Config.src create mode 100644 busybox-1_37_0/e2fsprogs/Kbuild.src create mode 100644 busybox-1_37_0/e2fsprogs/README create mode 100644 busybox-1_37_0/e2fsprogs/chattr.c create mode 100644 busybox-1_37_0/e2fsprogs/e2fs_lib.c create mode 100644 busybox-1_37_0/e2fsprogs/e2fs_lib.h create mode 100644 busybox-1_37_0/e2fsprogs/fsck.c create mode 100644 busybox-1_37_0/e2fsprogs/lsattr.c create mode 100644 busybox-1_37_0/e2fsprogs/tune2fs.c create mode 100644 busybox-1_37_0/editors/Config.src create mode 100644 busybox-1_37_0/editors/Kbuild.src create mode 100644 busybox-1_37_0/editors/awk.c create mode 100644 busybox-1_37_0/editors/cmp.c create mode 100644 busybox-1_37_0/editors/diff.c create mode 100644 busybox-1_37_0/editors/ed.c create mode 100644 busybox-1_37_0/editors/patch.c create mode 100644 busybox-1_37_0/editors/patch_bbox.c create mode 100644 busybox-1_37_0/editors/patch_toybox.c create mode 100644 busybox-1_37_0/editors/sed.c create mode 100644 busybox-1_37_0/editors/sed1line.txt create mode 100644 busybox-1_37_0/editors/sed_summary.htm create mode 100644 busybox-1_37_0/editors/vi.c create mode 100755 busybox-1_37_0/examples/android-build create mode 100644 busybox-1_37_0/examples/bootfloppy/bootfloppy.txt create mode 100644 busybox-1_37_0/examples/bootfloppy/display.txt create mode 100644 busybox-1_37_0/examples/bootfloppy/etc/fstab create mode 100755 busybox-1_37_0/examples/bootfloppy/etc/init.d/rcS create mode 100644 busybox-1_37_0/examples/bootfloppy/etc/inittab create mode 100644 busybox-1_37_0/examples/bootfloppy/etc/profile create mode 100755 busybox-1_37_0/examples/bootfloppy/mkdevs.sh create mode 100755 busybox-1_37_0/examples/bootfloppy/mkrootfs.sh create mode 100755 busybox-1_37_0/examples/bootfloppy/mksyslinux.sh create mode 100644 busybox-1_37_0/examples/bootfloppy/quickstart.txt create mode 100644 busybox-1_37_0/examples/bootfloppy/syslinux.cfg create mode 100644 busybox-1_37_0/examples/busybox.spec create mode 100755 busybox-1_37_0/examples/depmod create mode 100755 busybox-1_37_0/examples/depmod.pl create mode 100644 busybox-1_37_0/examples/devfsd.conf create mode 100644 busybox-1_37_0/examples/dnsd.conf create mode 100644 busybox-1_37_0/examples/inetd.conf create mode 100644 busybox-1_37_0/examples/inittab create mode 100644 busybox-1_37_0/examples/linux-2.6.30_proc_self_exe.patch create mode 100644 busybox-1_37_0/examples/mdev.conf create mode 100755 busybox-1_37_0/examples/mdev.conf.change_blockdev.sh create mode 100644 busybox-1_37_0/examples/mdev_fat.conf create mode 100755 busybox-1_37_0/examples/mk2knr.pl create mode 100644 busybox-1_37_0/examples/shutdown-1.0/README create mode 100755 busybox-1_37_0/examples/shutdown-1.0/script/do_shutdown create mode 100644 busybox-1_37_0/examples/shutdown-1.0/script/hardshutdown.c create mode 100755 busybox-1_37_0/examples/shutdown-1.0/script/hardshutdown.make.sh create mode 100755 busybox-1_37_0/examples/shutdown-1.0/script/shutdown create mode 100755 busybox-1_37_0/examples/shutdown-1.0/script/stop_storage create mode 100755 busybox-1_37_0/examples/shutdown-1.0/script/stop_tasks create mode 100755 busybox-1_37_0/examples/udhcp/sample.bound create mode 100755 busybox-1_37_0/examples/udhcp/sample.deconfig create mode 100755 busybox-1_37_0/examples/udhcp/sample.nak create mode 100755 busybox-1_37_0/examples/udhcp/sample.renew create mode 100755 busybox-1_37_0/examples/udhcp/sample.script create mode 100755 busybox-1_37_0/examples/udhcp/simple.script create mode 100644 busybox-1_37_0/examples/udhcp/udhcpd.conf create mode 100755 busybox-1_37_0/examples/undeb create mode 100755 busybox-1_37_0/examples/unrpm create mode 100644 busybox-1_37_0/examples/var_service/README create mode 100644 busybox-1_37_0/examples/var_service/README_distro_proposal.txt create mode 100755 busybox-1_37_0/examples/var_service/dhcp_if/convert2ipconf create mode 100755 busybox-1_37_0/examples/var_service/dhcp_if/convert2ntpconf create mode 100755 busybox-1_37_0/examples/var_service/dhcp_if/dhcp_handler create mode 100755 busybox-1_37_0/examples/var_service/dhcp_if/finish create mode 100755 busybox-1_37_0/examples/var_service/dhcp_if/log/run create mode 100755 busybox-1_37_0/examples/var_service/dhcp_if/run create mode 100755 busybox-1_37_0/examples/var_service/dhcp_if_pinger/run create mode 100755 busybox-1_37_0/examples/var_service/dhcpd_if/log/run create mode 100755 busybox-1_37_0/examples/var_service/dhcpd_if/run create mode 100644 busybox-1_37_0/examples/var_service/dhcpd_if/udhcpd.conf create mode 100755 busybox-1_37_0/examples/var_service/dhcpd_if/w_dumpleases create mode 100755 busybox-1_37_0/examples/var_service/dhcpd_if/w_dumpleases_countdown create mode 100644 busybox-1_37_0/examples/var_service/dnsmasq/README create mode 100644 busybox-1_37_0/examples/var_service/dnsmasq/dnsmasq.conf create mode 100755 busybox-1_37_0/examples/var_service/dnsmasq/log/run create mode 100755 busybox-1_37_0/examples/var_service/dnsmasq/run create mode 100755 busybox-1_37_0/examples/var_service/ftpd/log/run create mode 100755 busybox-1_37_0/examples/var_service/ftpd/run create mode 100644 busybox-1_37_0/examples/var_service/fw/conf/11.22.33.44.ipconf-- create mode 100644 busybox-1_37_0/examples/var_service/fw/conf/192.168.0.1.ipconf create mode 100644 busybox-1_37_0/examples/var_service/fw/conf/lo.ipconf create mode 100644 busybox-1_37_0/examples/var_service/fw/etc/dnsmasq_servers.conf create mode 100644 busybox-1_37_0/examples/var_service/fw/etc/hosts create mode 100644 busybox-1_37_0/examples/var_service/fw/etc/resolv.conf create mode 100755 busybox-1_37_0/examples/var_service/fw/run create mode 100755 busybox-1_37_0/examples/var_service/fw/stat create mode 100644 busybox-1_37_0/examples/var_service/getty_tty1/alt08x16+unimap.fnt create mode 100755 busybox-1_37_0/examples/var_service/getty_tty1/cfg create mode 100644 busybox-1_37_0/examples/var_service/getty_tty1/koi8r_to_uni.trans create mode 100755 busybox-1_37_0/examples/var_service/getty_tty1/login.sh create mode 100755 busybox-1_37_0/examples/var_service/getty_tty1/run create mode 100644 busybox-1_37_0/examples/var_service/getty_tty1/unicode_cyrillic.keymap create mode 100755 busybox-1_37_0/examples/var_service/gpm/run create mode 100755 busybox-1_37_0/examples/var_service/httpd/log/run create mode 100755 busybox-1_37_0/examples/var_service/httpd/run create mode 100755 busybox-1_37_0/examples/var_service/ifplugd_if/ifplugd_handler create mode 100755 busybox-1_37_0/examples/var_service/ifplugd_if/log/run create mode 100755 busybox-1_37_0/examples/var_service/ifplugd_if/run create mode 100644 busybox-1_37_0/examples/var_service/inetd/inetd.conf create mode 100755 busybox-1_37_0/examples/var_service/inetd/log/run create mode 100755 busybox-1_37_0/examples/var_service/inetd/run create mode 100755 busybox-1_37_0/examples/var_service/nmeter/run create mode 100755 busybox-1_37_0/examples/var_service/ntpd/log/run create mode 100755 busybox-1_37_0/examples/var_service/ntpd/ntp.script create mode 100755 busybox-1_37_0/examples/var_service/ntpd/p_log_important create mode 100755 busybox-1_37_0/examples/var_service/ntpd/run create mode 100755 busybox-1_37_0/examples/var_service/std_service_logger create mode 100755 busybox-1_37_0/examples/var_service/supplicant_if/log/run create mode 100755 busybox-1_37_0/examples/var_service/supplicant_if/run create mode 100644 busybox-1_37_0/examples/var_service/supplicant_if/wpa_supplicant.conf create mode 100755 busybox-1_37_0/examples/var_service/sview create mode 100755 busybox-1_37_0/examples/var_service/svpage create mode 100755 busybox-1_37_0/examples/var_service/tftpd/log/run create mode 100755 busybox-1_37_0/examples/var_service/tftpd/run create mode 100755 busybox-1_37_0/examples/var_service/zcip_if/convert2ipconf create mode 100755 busybox-1_37_0/examples/var_service/zcip_if/finish create mode 100755 busybox-1_37_0/examples/var_service/zcip_if/log/run create mode 100755 busybox-1_37_0/examples/var_service/zcip_if/run create mode 100755 busybox-1_37_0/examples/var_service/zcip_if/zcip_handler create mode 100755 busybox-1_37_0/examples/zcip.script create mode 100644 busybox-1_37_0/findutils/Config.src create mode 100644 busybox-1_37_0/findutils/Kbuild.src create mode 100644 busybox-1_37_0/findutils/find.c create mode 100644 busybox-1_37_0/findutils/grep.c create mode 100644 busybox-1_37_0/findutils/xargs.c create mode 100644 busybox-1_37_0/include/.gitignore create mode 100644 busybox-1_37_0/include/applet_metadata.h create mode 100755 busybox-1_37_0/include/applets.h.sh create mode 100644 busybox-1_37_0/include/applets.src.h create mode 100644 busybox-1_37_0/include/ar_.h create mode 100644 busybox-1_37_0/include/bb_archive.h create mode 100644 busybox-1_37_0/include/bb_e2fs_defs.h create mode 100644 busybox-1_37_0/include/busybox.h create mode 100644 busybox-1_37_0/include/dump.h create mode 100644 busybox-1_37_0/include/fix_u32.h create mode 100644 busybox-1_37_0/include/grp_.h create mode 100644 busybox-1_37_0/include/inet_common.h create mode 100644 busybox-1_37_0/include/libbb.h create mode 100644 busybox-1_37_0/include/liblzo_interface.h create mode 100644 busybox-1_37_0/include/platform.h create mode 100644 busybox-1_37_0/include/pwd_.h create mode 100644 busybox-1_37_0/include/rtc_.h create mode 100644 busybox-1_37_0/include/shadow_.h create mode 100644 busybox-1_37_0/include/unicode.h create mode 100644 busybox-1_37_0/include/usage.src.h create mode 100644 busybox-1_37_0/include/volume_id.h create mode 100644 busybox-1_37_0/include/xatonum.h create mode 100644 busybox-1_37_0/include/xregex.h create mode 100644 busybox-1_37_0/init/Config.src create mode 100644 busybox-1_37_0/init/Kbuild.src create mode 100644 busybox-1_37_0/init/bootchartd.c create mode 100644 busybox-1_37_0/init/halt.c create mode 100644 busybox-1_37_0/init/init.c create mode 100644 busybox-1_37_0/init/reboot.h create mode 100644 busybox-1_37_0/klibc-utils/Config.src create mode 100644 busybox-1_37_0/klibc-utils/Kbuild.src create mode 100644 busybox-1_37_0/klibc-utils/ipconfig.c.txt create mode 100644 busybox-1_37_0/klibc-utils/minips.c create mode 100644 busybox-1_37_0/klibc-utils/nuke.c create mode 100644 busybox-1_37_0/klibc-utils/resume.c create mode 100644 busybox-1_37_0/klibc-utils/run-init.c create mode 100644 busybox-1_37_0/libbb/Config.src create mode 100644 busybox-1_37_0/libbb/Kbuild.src create mode 100644 busybox-1_37_0/libbb/README create mode 100644 busybox-1_37_0/libbb/alloc_affinity.c create mode 100644 busybox-1_37_0/libbb/appletlib.c create mode 100644 busybox-1_37_0/libbb/ask_confirmation.c create mode 100644 busybox-1_37_0/libbb/auto_string.c create mode 100644 busybox-1_37_0/libbb/bb_askpass.c create mode 100644 busybox-1_37_0/libbb/bb_bswap_64.c create mode 100644 busybox-1_37_0/libbb/bb_cat.c create mode 100644 busybox-1_37_0/libbb/bb_do_delay.c create mode 100644 busybox-1_37_0/libbb/bb_getgroups.c create mode 100644 busybox-1_37_0/libbb/bb_getsockname.c create mode 100644 busybox-1_37_0/libbb/bb_pwd.c create mode 100644 busybox-1_37_0/libbb/bb_qsort.c create mode 100644 busybox-1_37_0/libbb/bb_strtod.c create mode 100644 busybox-1_37_0/libbb/bb_strtonum.c create mode 100644 busybox-1_37_0/libbb/bbunit.c create mode 100644 busybox-1_37_0/libbb/capability.c create mode 100644 busybox-1_37_0/libbb/change_identity.c create mode 100644 busybox-1_37_0/libbb/chomp.c create mode 100644 busybox-1_37_0/libbb/common_bufsiz.c create mode 100644 busybox-1_37_0/libbb/compare_string_array.c create mode 100644 busybox-1_37_0/libbb/concat_path_file.c create mode 100644 busybox-1_37_0/libbb/concat_subpath_file.c create mode 100644 busybox-1_37_0/libbb/const_hack.c create mode 100644 busybox-1_37_0/libbb/copy_file.c create mode 100644 busybox-1_37_0/libbb/copyfd.c create mode 100644 busybox-1_37_0/libbb/correct_password.c create mode 100644 busybox-1_37_0/libbb/crc32.c create mode 100644 busybox-1_37_0/libbb/default_error_retval.c create mode 100644 busybox-1_37_0/libbb/device_open.c create mode 100644 busybox-1_37_0/libbb/die_if_bad_username.c create mode 100644 busybox-1_37_0/libbb/dump.c create mode 100644 busybox-1_37_0/libbb/duration.c create mode 100644 busybox-1_37_0/libbb/endofname.c create mode 100644 busybox-1_37_0/libbb/executable.c create mode 100644 busybox-1_37_0/libbb/fclose_nonstdin.c create mode 100644 busybox-1_37_0/libbb/fflush_stdout_and_exit.c create mode 100644 busybox-1_37_0/libbb/fgets_str.c create mode 100644 busybox-1_37_0/libbb/find_mount_point.c create mode 100644 busybox-1_37_0/libbb/find_pid_by_name.c create mode 100644 busybox-1_37_0/libbb/find_root_device.c create mode 100644 busybox-1_37_0/libbb/full_write.c create mode 100644 busybox-1_37_0/libbb/get_console.c create mode 100644 busybox-1_37_0/libbb/get_cpu_count.c create mode 100644 busybox-1_37_0/libbb/get_last_path_component.c create mode 100644 busybox-1_37_0/libbb/get_line_from_file.c create mode 100644 busybox-1_37_0/libbb/get_shell_name.c create mode 100644 busybox-1_37_0/libbb/get_volsize.c create mode 100644 busybox-1_37_0/libbb/getopt32.c create mode 100644 busybox-1_37_0/libbb/getopt_allopts.c create mode 100644 busybox-1_37_0/libbb/getpty.c create mode 100644 busybox-1_37_0/libbb/hash_md5_sha.c create mode 100644 busybox-1_37_0/libbb/hash_md5prime.c create mode 100644 busybox-1_37_0/libbb/hash_sha1_hwaccel_x86-32.S create mode 100644 busybox-1_37_0/libbb/hash_sha1_hwaccel_x86-64.S create mode 100644 busybox-1_37_0/libbb/hash_sha1_x86-64.S create mode 100755 busybox-1_37_0/libbb/hash_sha1_x86-64.S.sh create mode 100644 busybox-1_37_0/libbb/hash_sha256_hwaccel_x86-32.S create mode 100644 busybox-1_37_0/libbb/hash_sha256_hwaccel_x86-64.S create mode 100644 busybox-1_37_0/libbb/herror_msg.c create mode 100644 busybox-1_37_0/libbb/human_readable.c create mode 100644 busybox-1_37_0/libbb/in_ether.c create mode 100644 busybox-1_37_0/libbb/inet_cksum.c create mode 100644 busybox-1_37_0/libbb/inet_common.c create mode 100644 busybox-1_37_0/libbb/inode_hash.c create mode 100644 busybox-1_37_0/libbb/isdirectory.c create mode 100644 busybox-1_37_0/libbb/isqrt.c create mode 100644 busybox-1_37_0/libbb/iterate_on_dir.c create mode 100644 busybox-1_37_0/libbb/kernel_version.c create mode 100644 busybox-1_37_0/libbb/last_char_is.c create mode 100644 busybox-1_37_0/libbb/lineedit.c create mode 100644 busybox-1_37_0/libbb/lineedit_ptr_hack.c create mode 100644 busybox-1_37_0/libbb/llist.c create mode 100644 busybox-1_37_0/libbb/logenv.c create mode 100644 busybox-1_37_0/libbb/login.c create mode 100644 busybox-1_37_0/libbb/loop.c create mode 100644 busybox-1_37_0/libbb/make_directory.c create mode 100644 busybox-1_37_0/libbb/makedev.c create mode 100644 busybox-1_37_0/libbb/match_fstype.c create mode 100644 busybox-1_37_0/libbb/messages.c create mode 100644 busybox-1_37_0/libbb/missing_syscalls.c create mode 100644 busybox-1_37_0/libbb/mode_string.c create mode 100644 busybox-1_37_0/libbb/mtab.c create mode 100644 busybox-1_37_0/libbb/nuke_str.c create mode 100644 busybox-1_37_0/libbb/obscure.c create mode 100644 busybox-1_37_0/libbb/parse_config.c create mode 100644 busybox-1_37_0/libbb/parse_mode.c create mode 100644 busybox-1_37_0/libbb/percent_decode.c create mode 100644 busybox-1_37_0/libbb/perror_msg.c create mode 100644 busybox-1_37_0/libbb/perror_nomsg.c create mode 100644 busybox-1_37_0/libbb/perror_nomsg_and_die.c create mode 100644 busybox-1_37_0/libbb/pidfile.c create mode 100644 busybox-1_37_0/libbb/platform.c create mode 100644 busybox-1_37_0/libbb/popcnt.c create mode 100644 busybox-1_37_0/libbb/print_flags.c create mode 100644 busybox-1_37_0/libbb/print_numbered_lines.c create mode 100644 busybox-1_37_0/libbb/printable.c create mode 100644 busybox-1_37_0/libbb/printable_string.c create mode 100644 busybox-1_37_0/libbb/process_escape_sequence.c create mode 100644 busybox-1_37_0/libbb/procps.c create mode 100644 busybox-1_37_0/libbb/progress.c create mode 100644 busybox-1_37_0/libbb/ptr_to_globals.c create mode 100644 busybox-1_37_0/libbb/pw_encrypt.c create mode 100644 busybox-1_37_0/libbb/pw_encrypt_des.c create mode 100644 busybox-1_37_0/libbb/pw_encrypt_md5.c create mode 100644 busybox-1_37_0/libbb/pw_encrypt_sha.c create mode 100644 busybox-1_37_0/libbb/read.c create mode 100644 busybox-1_37_0/libbb/read_key.c create mode 100644 busybox-1_37_0/libbb/read_printf.c create mode 100644 busybox-1_37_0/libbb/recursive_action.c create mode 100644 busybox-1_37_0/libbb/remove_file.c create mode 100644 busybox-1_37_0/libbb/replace.c create mode 100644 busybox-1_37_0/libbb/rtc.c create mode 100644 busybox-1_37_0/libbb/run_shell.c create mode 100644 busybox-1_37_0/libbb/safe_gethostname.c create mode 100644 busybox-1_37_0/libbb/safe_poll.c create mode 100644 busybox-1_37_0/libbb/safe_strncpy.c create mode 100644 busybox-1_37_0/libbb/safe_write.c create mode 100644 busybox-1_37_0/libbb/securetty.c create mode 100644 busybox-1_37_0/libbb/selinux_common.c create mode 100644 busybox-1_37_0/libbb/setup_environment.c create mode 100644 busybox-1_37_0/libbb/signals.c create mode 100644 busybox-1_37_0/libbb/simplify_path.c create mode 100644 busybox-1_37_0/libbb/single_argv.c create mode 100644 busybox-1_37_0/libbb/skip_whitespace.c create mode 100644 busybox-1_37_0/libbb/speed_table.c create mode 100644 busybox-1_37_0/libbb/str_tolower.c create mode 100644 busybox-1_37_0/libbb/strrstr.c create mode 100644 busybox-1_37_0/libbb/sysconf.c create mode 100644 busybox-1_37_0/libbb/time.c create mode 100644 busybox-1_37_0/libbb/trim.c create mode 100644 busybox-1_37_0/libbb/u_signal_names.c create mode 100644 busybox-1_37_0/libbb/ubi.c create mode 100644 busybox-1_37_0/libbb/udp_io.c create mode 100644 busybox-1_37_0/libbb/unicode.c create mode 100644 busybox-1_37_0/libbb/update_passwd.c create mode 100644 busybox-1_37_0/libbb/utmp.c create mode 100644 busybox-1_37_0/libbb/uuencode.c create mode 100644 busybox-1_37_0/libbb/verror_msg.c create mode 100644 busybox-1_37_0/libbb/vfork_daemon_rexec.c create mode 100644 busybox-1_37_0/libbb/warn_ignoring_args.c create mode 100644 busybox-1_37_0/libbb/wfopen.c create mode 100644 busybox-1_37_0/libbb/wfopen_input.c create mode 100644 busybox-1_37_0/libbb/write.c create mode 100644 busybox-1_37_0/libbb/xatonum.c create mode 100644 busybox-1_37_0/libbb/xatonum_template.c create mode 100644 busybox-1_37_0/libbb/xconnect.c create mode 100644 busybox-1_37_0/libbb/xfunc_die.c create mode 100644 busybox-1_37_0/libbb/xfuncs.c create mode 100644 busybox-1_37_0/libbb/xfuncs_printf.c create mode 100644 busybox-1_37_0/libbb/xgetcwd.c create mode 100644 busybox-1_37_0/libbb/xgethostbyname.c create mode 100644 busybox-1_37_0/libbb/xreadlink.c create mode 100644 busybox-1_37_0/libbb/xrealloc_vector.c create mode 100644 busybox-1_37_0/libbb/xregcomp.c create mode 100644 busybox-1_37_0/libpwdgrp/Kbuild.src create mode 100644 busybox-1_37_0/libpwdgrp/pwd_grp.c create mode 100644 busybox-1_37_0/libpwdgrp/uidgid_get.c create mode 100644 busybox-1_37_0/loginutils/Config.src create mode 100644 busybox-1_37_0/loginutils/Kbuild.src create mode 100644 busybox-1_37_0/loginutils/README create mode 100644 busybox-1_37_0/loginutils/add-remove-shell.c create mode 100644 busybox-1_37_0/loginutils/addgroup.c create mode 100644 busybox-1_37_0/loginutils/adduser.c create mode 100644 busybox-1_37_0/loginutils/chpasswd.c create mode 100644 busybox-1_37_0/loginutils/cryptpw.c create mode 100644 busybox-1_37_0/loginutils/deluser.c create mode 100644 busybox-1_37_0/loginutils/getty.c create mode 100644 busybox-1_37_0/loginutils/login.c create mode 100644 busybox-1_37_0/loginutils/passwd.c create mode 100644 busybox-1_37_0/loginutils/su.c create mode 100644 busybox-1_37_0/loginutils/sulogin.c create mode 100644 busybox-1_37_0/loginutils/vlock.c create mode 100644 busybox-1_37_0/mailutils/Config.src create mode 100644 busybox-1_37_0/mailutils/Kbuild.src create mode 100644 busybox-1_37_0/mailutils/mail.c create mode 100644 busybox-1_37_0/mailutils/mail.h create mode 100644 busybox-1_37_0/mailutils/makemime.c create mode 100644 busybox-1_37_0/mailutils/popmaildir.c create mode 100644 busybox-1_37_0/mailutils/reformime.c create mode 100644 busybox-1_37_0/mailutils/sendmail.c create mode 100755 busybox-1_37_0/make_single_applets.sh create mode 100644 busybox-1_37_0/miscutils/Config.src create mode 100644 busybox-1_37_0/miscutils/Kbuild.src create mode 100644 busybox-1_37_0/miscutils/adjtimex.c create mode 100644 busybox-1_37_0/miscutils/ascii.c create mode 100644 busybox-1_37_0/miscutils/bbconfig.c create mode 100644 busybox-1_37_0/miscutils/bc.c create mode 100644 busybox-1_37_0/miscutils/beep.c create mode 100644 busybox-1_37_0/miscutils/chat.c create mode 100644 busybox-1_37_0/miscutils/conspy.c create mode 100644 busybox-1_37_0/miscutils/crond.c create mode 100644 busybox-1_37_0/miscutils/crontab.c create mode 100644 busybox-1_37_0/miscutils/dc.c create mode 100644 busybox-1_37_0/miscutils/devfsd.c create mode 100644 busybox-1_37_0/miscutils/devmem.c create mode 100644 busybox-1_37_0/miscutils/fbsplash.c create mode 100644 busybox-1_37_0/miscutils/fbsplash.cfg create mode 100644 busybox-1_37_0/miscutils/flash_eraseall.c create mode 100644 busybox-1_37_0/miscutils/flash_lock_unlock.c create mode 100644 busybox-1_37_0/miscutils/flashcp.c create mode 100644 busybox-1_37_0/miscutils/getfattr.c create mode 100644 busybox-1_37_0/miscutils/hdparm.c create mode 100644 busybox-1_37_0/miscutils/hexedit.c create mode 100644 busybox-1_37_0/miscutils/i2c_tools.c create mode 100644 busybox-1_37_0/miscutils/inotifyd.c create mode 100644 busybox-1_37_0/miscutils/less.c create mode 100644 busybox-1_37_0/miscutils/lsscsi.c create mode 100644 busybox-1_37_0/miscutils/makedevs.c create mode 100644 busybox-1_37_0/miscutils/man.c create mode 100644 busybox-1_37_0/miscutils/microcom.c create mode 100644 busybox-1_37_0/miscutils/mim.c create mode 100644 busybox-1_37_0/miscutils/mt.c create mode 100644 busybox-1_37_0/miscutils/nandwrite.c create mode 100644 busybox-1_37_0/miscutils/partprobe.c create mode 100644 busybox-1_37_0/miscutils/raidautorun.c create mode 100644 busybox-1_37_0/miscutils/readahead.c create mode 100644 busybox-1_37_0/miscutils/rfkill.c create mode 100644 busybox-1_37_0/miscutils/runlevel.c create mode 100644 busybox-1_37_0/miscutils/rx.c create mode 100644 busybox-1_37_0/miscutils/seedrng.c create mode 100644 busybox-1_37_0/miscutils/setfattr.c create mode 100644 busybox-1_37_0/miscutils/setserial.c create mode 100644 busybox-1_37_0/miscutils/strings.c create mode 100644 busybox-1_37_0/miscutils/time.c create mode 100644 busybox-1_37_0/miscutils/tree.c create mode 100644 busybox-1_37_0/miscutils/ts.c create mode 100644 busybox-1_37_0/miscutils/ttysize.c create mode 100644 busybox-1_37_0/miscutils/ubi_tools.c create mode 100644 busybox-1_37_0/miscutils/ubirename.c create mode 100644 busybox-1_37_0/miscutils/volname.c create mode 100644 busybox-1_37_0/miscutils/watchdog.c create mode 100644 busybox-1_37_0/modutils/Config.src create mode 100644 busybox-1_37_0/modutils/Kbuild.src create mode 100644 busybox-1_37_0/modutils/depmod.c create mode 100755 busybox-1_37_0/modutils/depmod_process.sh create mode 100644 busybox-1_37_0/modutils/insmod.c create mode 100644 busybox-1_37_0/modutils/lsmod.c create mode 100644 busybox-1_37_0/modutils/modinfo.c create mode 100644 busybox-1_37_0/modutils/modprobe-small.c create mode 100644 busybox-1_37_0/modutils/modprobe.c create mode 100644 busybox-1_37_0/modutils/modutils-24.c create mode 100644 busybox-1_37_0/modutils/modutils.c create mode 100644 busybox-1_37_0/modutils/modutils.h create mode 100644 busybox-1_37_0/modutils/rmmod.c create mode 100644 busybox-1_37_0/networking/Config.src create mode 100644 busybox-1_37_0/networking/Kbuild.src create mode 100644 busybox-1_37_0/networking/arp.c create mode 100644 busybox-1_37_0/networking/arping.c create mode 100644 busybox-1_37_0/networking/brctl.c create mode 100644 busybox-1_37_0/networking/dnsd.c create mode 100644 busybox-1_37_0/networking/ether-wake.c create mode 100644 busybox-1_37_0/networking/ftpd.c create mode 100644 busybox-1_37_0/networking/ftpgetput.c create mode 100644 busybox-1_37_0/networking/hostname.c create mode 100644 busybox-1_37_0/networking/httpd.c create mode 100755 busybox-1_37_0/networking/httpd_helpers.sh create mode 100644 busybox-1_37_0/networking/httpd_indexcgi.c create mode 100755 busybox-1_37_0/networking/httpd_post_upload.cgi create mode 100644 busybox-1_37_0/networking/httpd_ssi.c create mode 100644 busybox-1_37_0/networking/ifconfig.c create mode 100644 busybox-1_37_0/networking/ifenslave.c create mode 100644 busybox-1_37_0/networking/ifplugd.c create mode 100644 busybox-1_37_0/networking/ifupdown.c create mode 100644 busybox-1_37_0/networking/inetd.c create mode 100644 busybox-1_37_0/networking/interface.c create mode 100644 busybox-1_37_0/networking/ip.c create mode 100644 busybox-1_37_0/networking/ipcalc.c create mode 100644 busybox-1_37_0/networking/isrv.c create mode 100644 busybox-1_37_0/networking/isrv.h create mode 100644 busybox-1_37_0/networking/isrv_identd.c create mode 100644 busybox-1_37_0/networking/libiproute/Kbuild.src create mode 100644 busybox-1_37_0/networking/libiproute/ip_common.h create mode 100644 busybox-1_37_0/networking/libiproute/ip_parse_common_args.c create mode 100644 busybox-1_37_0/networking/libiproute/ipaddress.c create mode 100644 busybox-1_37_0/networking/libiproute/iplink.c create mode 100644 busybox-1_37_0/networking/libiproute/ipneigh.c create mode 100644 busybox-1_37_0/networking/libiproute/iproute.c create mode 100644 busybox-1_37_0/networking/libiproute/iprule.c create mode 100644 busybox-1_37_0/networking/libiproute/iptunnel.c create mode 100644 busybox-1_37_0/networking/libiproute/libnetlink.c create mode 100644 busybox-1_37_0/networking/libiproute/libnetlink.h create mode 100644 busybox-1_37_0/networking/libiproute/ll_addr.c create mode 100644 busybox-1_37_0/networking/libiproute/ll_map.c create mode 100644 busybox-1_37_0/networking/libiproute/ll_map.h create mode 100644 busybox-1_37_0/networking/libiproute/ll_proto.c create mode 100644 busybox-1_37_0/networking/libiproute/ll_types.c create mode 100644 busybox-1_37_0/networking/libiproute/rt_names.c create mode 100644 busybox-1_37_0/networking/libiproute/rt_names.h create mode 100644 busybox-1_37_0/networking/libiproute/rtm_map.c create mode 100644 busybox-1_37_0/networking/libiproute/rtm_map.h create mode 100644 busybox-1_37_0/networking/libiproute/utils.c create mode 100644 busybox-1_37_0/networking/libiproute/utils.h create mode 100644 busybox-1_37_0/networking/nameif.c create mode 100644 busybox-1_37_0/networking/nbd-client.c create mode 100644 busybox-1_37_0/networking/nc.c create mode 100644 busybox-1_37_0/networking/nc_bloaty.c create mode 100644 busybox-1_37_0/networking/netstat.c create mode 100644 busybox-1_37_0/networking/nslookup.c create mode 100644 busybox-1_37_0/networking/ntpd.c create mode 100644 busybox-1_37_0/networking/ntpd.diff create mode 100644 busybox-1_37_0/networking/parse_pasv_epsv.c create mode 100644 busybox-1_37_0/networking/ping.c create mode 100644 busybox-1_37_0/networking/pscan.c create mode 100644 busybox-1_37_0/networking/route.c create mode 100644 busybox-1_37_0/networking/slattach.c create mode 100644 busybox-1_37_0/networking/ssl_client.c create mode 100755 busybox-1_37_0/networking/ssl_helper-wolfssl/00cfg-wolfssl-3.6.8 create mode 100755 busybox-1_37_0/networking/ssl_helper-wolfssl/00cfg-wolfssl-3.9.8 create mode 100644 busybox-1_37_0/networking/ssl_helper-wolfssl/README create mode 100644 busybox-1_37_0/networking/ssl_helper-wolfssl/ssl_helper.c create mode 100755 busybox-1_37_0/networking/ssl_helper-wolfssl/ssl_helper.sh create mode 100644 busybox-1_37_0/networking/ssl_helper/README create mode 100644 busybox-1_37_0/networking/ssl_helper/ssl_helper.c create mode 100755 busybox-1_37_0/networking/ssl_helper/ssl_helper.sh create mode 100644 busybox-1_37_0/networking/tc.c create mode 100644 busybox-1_37_0/networking/tcpudp.c create mode 100644 busybox-1_37_0/networking/tcpudp_perhost.c create mode 100644 busybox-1_37_0/networking/tcpudp_perhost.h create mode 100644 busybox-1_37_0/networking/telnet.c create mode 100644 busybox-1_37_0/networking/telnetd.IAC_test.sh create mode 100644 busybox-1_37_0/networking/telnetd.c create mode 100644 busybox-1_37_0/networking/telnetd.ctrlSQ.patch create mode 100644 busybox-1_37_0/networking/tftp.c create mode 100644 busybox-1_37_0/networking/tls.c create mode 100644 busybox-1_37_0/networking/tls.h create mode 100644 busybox-1_37_0/networking/tls_aes.c create mode 100644 busybox-1_37_0/networking/tls_aes.h create mode 100644 busybox-1_37_0/networking/tls_aesgcm.c create mode 100644 busybox-1_37_0/networking/tls_aesgcm.h create mode 100644 busybox-1_37_0/networking/tls_fe.c create mode 100644 busybox-1_37_0/networking/tls_pstm.c create mode 100644 busybox-1_37_0/networking/tls_pstm.h create mode 100644 busybox-1_37_0/networking/tls_pstm_montgomery_reduce.c create mode 100644 busybox-1_37_0/networking/tls_pstm_mul_comba.c create mode 100644 busybox-1_37_0/networking/tls_pstm_sqr_comba.c create mode 100644 busybox-1_37_0/networking/tls_rsa.c create mode 100644 busybox-1_37_0/networking/tls_rsa.h create mode 100644 busybox-1_37_0/networking/tls_sp_c32.c create mode 100644 busybox-1_37_0/networking/traceroute.c create mode 100644 busybox-1_37_0/networking/tunctl.c create mode 100644 busybox-1_37_0/networking/udhcp/Config.src create mode 100644 busybox-1_37_0/networking/udhcp/Kbuild.src create mode 100644 busybox-1_37_0/networking/udhcp/arpping.c create mode 100644 busybox-1_37_0/networking/udhcp/common.c create mode 100644 busybox-1_37_0/networking/udhcp/common.h create mode 100644 busybox-1_37_0/networking/udhcp/d6_common.h create mode 100644 busybox-1_37_0/networking/udhcp/d6_dhcpc.c create mode 100644 busybox-1_37_0/networking/udhcp/d6_packet.c create mode 100644 busybox-1_37_0/networking/udhcp/d6_socket.c create mode 100644 busybox-1_37_0/networking/udhcp/dhcpc.c create mode 100644 busybox-1_37_0/networking/udhcp/dhcpc.h create mode 100644 busybox-1_37_0/networking/udhcp/dhcpd.c create mode 100644 busybox-1_37_0/networking/udhcp/dhcpd.h create mode 100644 busybox-1_37_0/networking/udhcp/dhcprelay.c create mode 100644 busybox-1_37_0/networking/udhcp/domain_codec.c create mode 100644 busybox-1_37_0/networking/udhcp/dumpleases.c create mode 100644 busybox-1_37_0/networking/udhcp/packet.c create mode 100644 busybox-1_37_0/networking/udhcp/signalpipe.c create mode 100644 busybox-1_37_0/networking/udhcp/socket.c create mode 100644 busybox-1_37_0/networking/vconfig.c create mode 100644 busybox-1_37_0/networking/wget.c create mode 100644 busybox-1_37_0/networking/whois.c create mode 100644 busybox-1_37_0/networking/zcip.c create mode 100644 busybox-1_37_0/printutils/Config.src create mode 100644 busybox-1_37_0/printutils/Kbuild.src create mode 100644 busybox-1_37_0/printutils/lpd.c create mode 100644 busybox-1_37_0/printutils/lpr.c create mode 100644 busybox-1_37_0/procps/Config.src create mode 100644 busybox-1_37_0/procps/Kbuild.src create mode 100644 busybox-1_37_0/procps/free.c create mode 100644 busybox-1_37_0/procps/fuser.c create mode 100644 busybox-1_37_0/procps/iostat.c create mode 100644 busybox-1_37_0/procps/kill.c create mode 100644 busybox-1_37_0/procps/lsof.c create mode 100644 busybox-1_37_0/procps/mpstat.c create mode 100644 busybox-1_37_0/procps/nmeter.c create mode 100644 busybox-1_37_0/procps/pgrep.c create mode 100644 busybox-1_37_0/procps/pidof.c create mode 100644 busybox-1_37_0/procps/pmap.c create mode 100644 busybox-1_37_0/procps/powertop.c create mode 100644 busybox-1_37_0/procps/ps.c create mode 100644 busybox-1_37_0/procps/ps.posix create mode 100644 busybox-1_37_0/procps/pstree.c create mode 100644 busybox-1_37_0/procps/pwdx.c create mode 100644 busybox-1_37_0/procps/smemcap.c create mode 100644 busybox-1_37_0/procps/sysctl.c create mode 100644 busybox-1_37_0/procps/top.c create mode 100644 busybox-1_37_0/procps/uptime.c create mode 100644 busybox-1_37_0/procps/watch.c create mode 100644 busybox-1_37_0/qemu_multiarch_testing/README create mode 100755 busybox-1_37_0/qemu_multiarch_testing/extract_od_binary.sh create mode 100755 busybox-1_37_0/qemu_multiarch_testing/extract_uuencoded_binary.sh create mode 100755 busybox-1_37_0/qemu_multiarch_testing/hdc.dir/build create mode 100755 busybox-1_37_0/qemu_multiarch_testing/hdc.dir/init create mode 100755 busybox-1_37_0/qemu_multiarch_testing/make-hdc-img.sh create mode 100755 busybox-1_37_0/qemu_multiarch_testing/parallel-build-hdc-img.sh create mode 100644 busybox-1_37_0/runit/Config.src create mode 100644 busybox-1_37_0/runit/Kbuild.src create mode 100644 busybox-1_37_0/runit/chpst.c create mode 100644 busybox-1_37_0/runit/runit_lib.h create mode 100644 busybox-1_37_0/runit/runsv.c create mode 100644 busybox-1_37_0/runit/runsvdir.c create mode 100644 busybox-1_37_0/runit/sv.c create mode 100644 busybox-1_37_0/runit/svlogd.c create mode 100644 busybox-1_37_0/scripts/Kbuild.include create mode 100644 busybox-1_37_0/scripts/Kbuild.src create mode 100644 busybox-1_37_0/scripts/Makefile.IMA create mode 100644 busybox-1_37_0/scripts/Makefile.build create mode 100644 busybox-1_37_0/scripts/Makefile.clean create mode 100644 busybox-1_37_0/scripts/Makefile.host create mode 100644 busybox-1_37_0/scripts/Makefile.lib create mode 100644 busybox-1_37_0/scripts/basic/.gitignore create mode 100644 busybox-1_37_0/scripts/basic/Makefile create mode 100644 busybox-1_37_0/scripts/basic/docproc.c create mode 100644 busybox-1_37_0/scripts/basic/fixdep.c create mode 100644 busybox-1_37_0/scripts/basic/split-include.c create mode 100755 busybox-1_37_0/scripts/bb_release create mode 100755 busybox-1_37_0/scripts/bloat-o-meter create mode 100755 busybox-1_37_0/scripts/checkhelp.awk create mode 100755 busybox-1_37_0/scripts/checkstack.pl create mode 100755 busybox-1_37_0/scripts/cleanup_printf2puts create mode 100644 busybox-1_37_0/scripts/echo.c create mode 100755 busybox-1_37_0/scripts/embedded_scripts create mode 100755 busybox-1_37_0/scripts/find_bad_common_bufsiz create mode 100755 busybox-1_37_0/scripts/find_stray_common_vars create mode 100755 busybox-1_37_0/scripts/find_stray_empty_lines create mode 100755 busybox-1_37_0/scripts/fix_ws.sh create mode 100755 busybox-1_37_0/scripts/gcc-version.sh create mode 100755 busybox-1_37_0/scripts/gen_build_files.sh create mode 100755 busybox-1_37_0/scripts/generate_BUFSIZ.sh create mode 100644 busybox-1_37_0/scripts/kconfig/.gitignore create mode 100644 busybox-1_37_0/scripts/kconfig/Makefile create mode 100644 busybox-1_37_0/scripts/kconfig/POTFILES.in create mode 100755 busybox-1_37_0/scripts/kconfig/check.sh create mode 100644 busybox-1_37_0/scripts/kconfig/conf.c create mode 100644 busybox-1_37_0/scripts/kconfig/confdata.c create mode 100644 busybox-1_37_0/scripts/kconfig/expr.c create mode 100644 busybox-1_37_0/scripts/kconfig/expr.h create mode 100644 busybox-1_37_0/scripts/kconfig/gconf.c create mode 100644 busybox-1_37_0/scripts/kconfig/gconf.glade create mode 100644 busybox-1_37_0/scripts/kconfig/images.c create mode 100644 busybox-1_37_0/scripts/kconfig/kconfig_load.c create mode 100644 busybox-1_37_0/scripts/kconfig/kxgettext.c create mode 100644 busybox-1_37_0/scripts/kconfig/lex.zconf.c_shipped create mode 100644 busybox-1_37_0/scripts/kconfig/lkc.h create mode 100644 busybox-1_37_0/scripts/kconfig/lkc_proto.h create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/.gitignore create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/BIG.FAT.WARNING create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/Makefile create mode 100755 busybox-1_37_0/scripts/kconfig/lxdialog/check-lxdialog.sh create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/checklist.c create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/colors.h create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/dialog.h create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/inputbox.c create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/lxdialog.c create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/menubox.c create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/msgbox.c create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/textbox.c create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/util.c create mode 100644 busybox-1_37_0/scripts/kconfig/lxdialog/yesno.c create mode 100644 busybox-1_37_0/scripts/kconfig/mconf.c create mode 100644 busybox-1_37_0/scripts/kconfig/menu.c create mode 100644 busybox-1_37_0/scripts/kconfig/qconf.cc create mode 100644 busybox-1_37_0/scripts/kconfig/qconf.h create mode 100644 busybox-1_37_0/scripts/kconfig/symbol.c create mode 100644 busybox-1_37_0/scripts/kconfig/util.c create mode 100644 busybox-1_37_0/scripts/kconfig/zconf.gperf create mode 100644 busybox-1_37_0/scripts/kconfig/zconf.hash.c_shipped create mode 100644 busybox-1_37_0/scripts/kconfig/zconf.l create mode 100644 busybox-1_37_0/scripts/kconfig/zconf.tab.c_shipped create mode 100644 busybox-1_37_0/scripts/kconfig/zconf.y create mode 100755 busybox-1_37_0/scripts/memusage create mode 100755 busybox-1_37_0/scripts/mkconfigs create mode 100755 busybox-1_37_0/scripts/mkdiff_obj create mode 100755 busybox-1_37_0/scripts/mkdiff_obj_bloat create mode 100755 busybox-1_37_0/scripts/mkmakefile create mode 100755 busybox-1_37_0/scripts/objsizes create mode 100755 busybox-1_37_0/scripts/randomtest create mode 100755 busybox-1_37_0/scripts/randomtest.loop create mode 100755 busybox-1_37_0/scripts/sample_pmap create mode 100755 busybox-1_37_0/scripts/showasm create mode 100755 busybox-1_37_0/scripts/test_make_O create mode 100755 busybox-1_37_0/scripts/test_make_clean create mode 100644 busybox-1_37_0/scripts/test_setenv_leak.c create mode 100755 busybox-1_37_0/scripts/trylink create mode 100644 busybox-1_37_0/selinux/Config.src create mode 100644 busybox-1_37_0/selinux/Kbuild.src create mode 100644 busybox-1_37_0/selinux/chcon.c create mode 100644 busybox-1_37_0/selinux/getenforce.c create mode 100644 busybox-1_37_0/selinux/getsebool.c create mode 100644 busybox-1_37_0/selinux/load_policy.c create mode 100644 busybox-1_37_0/selinux/matchpathcon.c create mode 100644 busybox-1_37_0/selinux/runcon.c create mode 100644 busybox-1_37_0/selinux/selinuxenabled.c create mode 100644 busybox-1_37_0/selinux/sestatus.c create mode 100644 busybox-1_37_0/selinux/setenforce.c create mode 100644 busybox-1_37_0/selinux/setfiles.c create mode 100644 busybox-1_37_0/selinux/setsebool.c create mode 100644 busybox-1_37_0/shell/Config.src create mode 100644 busybox-1_37_0/shell/Kbuild.src create mode 100644 busybox-1_37_0/shell/README create mode 100644 busybox-1_37_0/shell/README.job create mode 100644 busybox-1_37_0/shell/ash.c create mode 100644 busybox-1_37_0/shell/ash_doc.txt create mode 100644 busybox-1_37_0/shell/ash_ptr_hack.c create mode 100644 busybox-1_37_0/shell/ash_remove_unnecessary_code_in_backquote_expansion.patch create mode 100644 busybox-1_37_0/shell/ash_test/.gitignore create mode 100644 busybox-1_37_0/shell/ash_test/ash-alias/alias.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-alias/alias.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-alias/alias_brace.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-alias/alias_brace.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-alias/alias_case.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-alias/alias_case.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/README.ash create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-assign-in-varexp.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-assign-in-varexp.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-assign-in-varexp1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-assign-in-varexp1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-bash1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-bash1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-bignum1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-bignum1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-comma1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-comma1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-for.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-for.testsx create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-postinc.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-postinc.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-precedence1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-precedence1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary-assign.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary-assign.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary-comma.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary-comma.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary-preincr.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary-preincr.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary_nested.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary_nested.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary_nested1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary_nested1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary_nested2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary_nested2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary_nested3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith-ternary_nested3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith.tests create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith1.sub create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith2.sub create mode 100644 busybox-1_37_0/shell/ash_test/ash-arith/arith_nested1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-arith/arith_nested1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-comm/comm.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-comm/comm.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_nested.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_nested.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_optarg.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_optarg.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_positional.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_positional.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_silent.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_silent.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_simple.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_simple.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_test_libc_bug.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-getopts/getopt_test_libc_bug.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-glob/glob1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-glob/glob1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-glob/glob2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-glob/glob2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-glob/glob3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-glob/glob3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-glob/glob_altvalue1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-glob/glob_altvalue1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-glob/glob_and_assign.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-glob/glob_and_assign.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-glob/glob_bkslash_in_var.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-glob/glob_bkslash_in_var.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-glob/glob_dir.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-glob/glob_dir.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-glob/glob_redir.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-glob/glob_redir.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc6.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc6.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc7.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc7.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc8.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc8.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc9.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc9.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredocA.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredocA.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredocB.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredocB.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_after_compound1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_after_compound1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_and_cmd.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_and_cmd.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_backquote1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_backquote1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_backslash1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_backslash1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_bkslash_newline1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_bkslash_newline1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_bkslash_newline2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_bkslash_newline2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_empty.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_empty.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_empty2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_empty2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_empty3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_empty3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_huge.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_huge.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_side_effects.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_side_effects.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_var_expand1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-heredoc/heredoc_var_expand1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-invert/invert.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-invert/invert.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/and-or.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/and-or.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/assignment1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/assignment1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/assignment2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/assignment2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/assignment3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/assignment3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/assignment4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/assignment4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/assignment5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/assignment5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/break1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/break1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/break2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/break2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/break3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/break3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/break4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/break4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/break5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/break5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/builtin1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/builtin1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/case1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/case1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/colon.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/colon.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/command.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/command.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/command2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/command2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/compound.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/compound.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/continue1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/continue1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/continue2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/continue2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/continue3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/continue3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/control_char1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/control_char1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/control_char2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/control_char2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/control_char3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/control_char3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/control_char4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/control_char4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/echo_write_error.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/echo_write_error.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/elif1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/elif1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/elif2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/elif2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/empty_args.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/empty_args.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/empty_for.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/empty_for.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/empty_for1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/empty_for1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/empty_for2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/empty_for2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/env_and_func.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/env_and_func.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/errexit1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/errexit1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/eval1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/eval1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/eval2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/eval2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exec.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exec.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exit1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exit1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_EACCES.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_EACCES.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_ENOENT.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_ENOENT.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap6.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap6.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap7.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/exitcode_trap7.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/export1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/export1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/for.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/for.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/for_with_bslashes.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/for_with_bslashes.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/for_with_keywords.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/for_with_keywords.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func_args1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func_args1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func_bash1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func_bash1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func_compound1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func_compound1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func_local1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func_local1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func_local2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func_local2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func_prio_over_builtins.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func_prio_over_builtins.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func_return1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func_return1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/func_return2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/func_return2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/group_in_braces.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/group_in_braces.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/if_false_exitcode.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/if_false_exitcode.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/last_amp.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/last_amp.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/local1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/local1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/local2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/local2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/nommu1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/nommu1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/nommu2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/nommu2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/nommu3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/nommu3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/nulltick1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/nulltick1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/opts1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/opts1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/pid.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/pid.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/piped_input.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/piped_input.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/pipefail.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/pipefail.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/read.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/read.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/return1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/return1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/set-n1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/set-n1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/shift.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/shift.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/shift1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/shift1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/source1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/source1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/source2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/source2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/source3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/source3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/source5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/source5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/source_argv_and_shift.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/source_argv_and_shift.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/tickquote1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/tickquote1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/unicode1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/unicode1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/until1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/until1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/wait4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/wait4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/wait5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/wait5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/wait6.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/wait6.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/wait7.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/wait7.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/while1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/while1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/while2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/while2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/while4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/while4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-misc/while_in_subshell.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-misc/while_in_subshell.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/and_or_and_backgrounding.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/and_or_and_backgrounding.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/argv0.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/argv0.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_eof1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_eof1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_newline1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_newline1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_newline2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_newline2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_newline3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_newline3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_newline4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/bkslash_newline4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/brace1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/brace1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/brace2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/brace2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/comment1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/comment1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/comment2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/comment2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/eol1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/eol1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/escape1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/escape1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/escape2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/escape2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/escape3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/escape3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/escape4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/escape4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/escape5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/escape5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/group1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/group1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/group2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/group2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/groups_and_keywords1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/groups_and_keywords1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/groups_and_keywords2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/groups_and_keywords2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/negate.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/negate.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/nodone1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/nodone1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/nodone2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/nodone2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/noeol.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/noeol.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/noeol2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/noeol2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/noeol3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/noeol3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/process_subst.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/process_subst.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/quote1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/quote1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/quote2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/quote2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/quote3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/quote3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/quote4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/quote4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/starquoted.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/starquoted.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/starquoted2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/starquoted2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-parsing/starquoted3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-parsing/starquoted3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/bash_procsub.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/bash_procsub.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/emptytick.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/emptytick.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/falsetick.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/falsetick.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/falsetick2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/falsetick2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/tick.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/tick.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/tick2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/tick2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/tick3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/tick3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/tick4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/tick4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/tick_huge.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/tick_huge.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-psubst/tick_in_heredoc.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-psubst/tick_in_heredoc.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/bkslash_case1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/bkslash_case1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/bkslash_case2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/bkslash_case2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/bkslash_in_varexp.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/bkslash_in_varexp.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/bkslash_in_varexp1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/bkslash_in_varexp1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/case_glob1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/case_glob1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_altvalue1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_altvalue1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_altvalue2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_altvalue2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_altvalue9.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_altvalue9.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_repl_bash1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_repl_bash1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_repl_bash2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_repl_bash2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_repl_slash_bash1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_repl_slash_bash1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_repl_slash_bash2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_repl_slash_bash2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_squote_bash1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_squote_bash1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_squote_bash2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/dollar_squote_bash2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/mode_x.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/mode_x.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/negative_arith.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/negative_arith.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/quote_in_varexp1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/quote_in_varexp1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/quoted_punct.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/quoted_punct.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/space_in_varexp1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/space_in_varexp1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/squote_in_varexp.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/squote_in_varexp.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/squote_in_varexp1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/squote_in_varexp1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/squote_in_varexp2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/squote_in_varexp2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/squote_in_varexp3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/squote_in_varexp3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-quoting/unicode_8x_chars.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-quoting/unicode_8x_chars.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-read/read_REPLY.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-read/read_REPLY.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-read/read_SIGCHLD.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-read/read_SIGCHLD.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-read/read_d0.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-read/read_d0.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-read/read_ifs.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-read/read_ifs.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-read/read_n.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-read/read_n.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-read/read_r.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-read/read_r.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-read/read_t.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-read/read_t.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-read/read_t0.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-read/read_t0.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir6.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir6.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir7.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir7.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir8.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir8.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir9.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir9.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redirA.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redirA.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_children_should_not_see_saved_fd_1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_children_should_not_see_saved_fd_1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_children_should_not_see_saved_fd_2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_children_should_not_see_saved_fd_2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_children_should_not_see_saved_fd_3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_children_should_not_see_saved_fd_3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_escapednum.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_escapednum.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_exec1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_exec1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_exec2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_exec2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_expand.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_expand.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_leak.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_leak.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_multi.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_multi.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_script.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_script.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_space.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_space.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_stdin1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_stdin1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_to_bad_fd.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_to_bad_fd.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_to_bad_fd255.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_to_bad_fd255.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-redir/redir_to_bad_fd3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-redir/redir_to_bad_fd3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/catch.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/catch.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/continue_and_trap1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/continue_and_trap1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/reap1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/reap1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/return_in_trap1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/return_in_trap1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/save-ret.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/save-ret.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/savetrap.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/savetrap.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/sigint1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/sigint1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal6.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal6.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal7.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal7.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal8.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal8.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal9.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal9.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/signal_read2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/signal_read2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/sigquit_exec.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/sigquit_exec.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/subshell.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/subshell.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-signals/usage.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-signals/usage.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-standalone/noexec_gets_no_env.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-standalone/noexec_gets_no_env.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-standalone/nofork_env.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-standalone/nofork_env.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-standalone/nofork_trashes_getopt.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-standalone/nofork_trashes_getopt.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-standalone/var_standalone1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-standalone/var_standalone1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/empty.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/empty.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/glob_and_vars.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/glob_and_vars.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_alt.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_alt.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_alt2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_alt2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_assign.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_assign.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_bash_substring.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_bash_substring.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_default.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_default.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_indicate_error.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_indicate_error.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_len.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_len.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_len1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_expand_len1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_glob.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_glob.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/param_subshell.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/param_subshell.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/readonly0.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/readonly0.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/readonly1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/readonly1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/star.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/star.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/unset.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/unset.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-do-not-collapse-arithmetic-expansion-at-parse-time.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-do-not-collapse-arithmetic-expansion-at-parse-time.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-do-not-expand-tilde-in-parameter-expansion-in-quotes.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-do-not-expand-tilde-in-parameter-expansion-in-quotes.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-expand-tilde-in-parameter-expansion.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-expand-tilde-in-parameter-expansion.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-pattern-replacement-in-parameter-expansion-5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-runtime-quote-detection.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-runtime-quote-detection.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var-utf8-length.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var-utf8-length.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var6.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var6.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_10.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_10.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_LINENO1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_LINENO1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_LINENO2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_LINENO2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_LINENO3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_LINENO3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash1a.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash1a.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash1b.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash1b.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash6.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash6.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash7.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash7.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash_pattern_starting_with_slash.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash_pattern_starting_with_slash.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash_repl_empty_pattern.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash_repl_empty_pattern.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash_repl_empty_var.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash_repl_empty_var.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_bash_repl_unterminated.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_bash_repl_unterminated.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_expand_in_assign.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_expand_in_assign.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_expand_in_redir.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_expand_in_redir.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_expand_on_ifs.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_expand_on_ifs.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_in_pipes.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_in_pipes.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_leak.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_leak.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_leaks.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_leaks.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_nested1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_nested1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_nested2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_nested2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_posix1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_posix1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_serial.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_serial.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_subst_in_for.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_subst_in_for.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_unbackslash.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_unbackslash.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_unbackslash1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_unbackslash1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs1.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs1.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs2.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs2.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs3.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs3.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs4.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs4.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs5.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-vars/var_wordsplit_ifs5.tests create mode 100644 busybox-1_37_0/shell/ash_test/ash-z_slow/many_ifs.right create mode 100755 busybox-1_37_0/shell/ash_test/ash-z_slow/many_ifs.tests create mode 100644 busybox-1_37_0/shell/ash_test/printenv.c create mode 100644 busybox-1_37_0/shell/ash_test/recho.c create mode 100755 busybox-1_37_0/shell/ash_test/run-all create mode 100644 busybox-1_37_0/shell/ash_test/zecho.c create mode 100644 busybox-1_37_0/shell/brace.txt create mode 100644 busybox-1_37_0/shell/cttyhack.c create mode 100644 busybox-1_37_0/shell/hush.c create mode 100644 busybox-1_37_0/shell/hush_doc.txt create mode 100755 busybox-1_37_0/shell/hush_leaktool.sh create mode 100644 busybox-1_37_0/shell/hush_test/.gitignore create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-assign-in-varexp.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-assign-in-varexp.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-assign-in-varexp1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-assign-in-varexp1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-bignum1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-bignum1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-comma1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-comma1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-postinc.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-postinc.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-precedence1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-precedence1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary-assign.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary-assign.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary-comma.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary-comma.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary-preincr.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary-preincr.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary_nested.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary_nested.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary_nested1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary_nested1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary_nested2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary_nested2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary_nested3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith-ternary_nested3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith.tests create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith1.sub create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith2.sub create mode 100644 busybox-1_37_0/shell/hush_test/hush-arith/arith_nested1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-arith/arith_nested1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-bugs/export_exp.right create mode 100644 busybox-1_37_0/shell/hush_test/hush-bugs/export_exp.tests.disabled create mode 100644 busybox-1_37_0/shell/hush_test/hush-bugs/strops5_bug.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-bugs/strops5_bug.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-comm/comm.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-comm/comm.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_nested.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_nested.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_optarg.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_optarg.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_positional.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_positional.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_silent.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_silent.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_simple.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_simple.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_test_libc_bug.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-getopts/getopt_test_libc_bug.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-glob/bash_brace1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-glob/bash_brace1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-glob/glob1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-glob/glob1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-glob/glob2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-glob/glob2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-glob/glob3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-glob/glob3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-glob/glob_altvalue1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-glob/glob_altvalue1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-glob/glob_and_assign.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-glob/glob_and_assign.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-glob/glob_bkslash_in_var.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-glob/glob_bkslash_in_var.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-glob/glob_dir.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-glob/glob_dir.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-glob/glob_redir.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-glob/glob_redir.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc6.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc6.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc7.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc7.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc8.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc8.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc9.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc9.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredocA.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredocA.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredocB.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredocB.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_after_compound1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_after_compound1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_and_cmd.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_and_cmd.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_backslash1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_backslash1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_bkslash_newline1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_bkslash_newline1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_bkslash_newline2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_bkslash_newline2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_empty2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_empty2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_empty3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_empty3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_huge.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_huge.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_var_expand1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-heredoc/heredoc_var_expand1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-invert/invert.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-invert/invert.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-leak/leak_argv1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-leak/leak_argv1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/and-or.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/and-or.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/assignment1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/assignment1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/assignment2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/assignment2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/assignment3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/assignment3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/assignment4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/assignment4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/assignment5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/assignment5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/break1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/break1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/break2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/break2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/break3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/break3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/break4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/break4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/break5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/break5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/builtin1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/builtin1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/case1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/case1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/colon.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/colon.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/command2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/command2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/compound.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/compound.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/continue1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/continue1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/continue2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/continue2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/continue3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/continue3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/control_char1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/control_char1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/control_char2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/control_char2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/control_char3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/control_char3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/control_char4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/control_char4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/echo_write_error.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/echo_write_error.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/elif1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/elif1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/elif2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/elif2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/empty_args.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/empty_args.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/empty_for.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/empty_for.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/empty_for1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/empty_for1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/empty_for2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/empty_for2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/env_and_func.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/env_and_func.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/errexit1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/errexit1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/eval1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/eval1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/eval2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/eval2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exec.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exec.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exit1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exit1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_EACCES.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_EACCES.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_ENOENT.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_ENOENT.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap6.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap6.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap7.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/exitcode_trap7.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/export-n.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/export-n.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/export.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/export.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/export1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/export1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/for.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/for.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/for_with_bslashes.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/for_with_bslashes.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/for_with_keywords.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/for_with_keywords.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func_args1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func_args1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func_local1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func_local1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func_local2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func_local2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func_prio_over_builtins.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func_prio_over_builtins.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func_return1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func_return1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/func_return2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/func_return2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/group_in_braces.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/group_in_braces.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/if_false_exitcode.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/if_false_exitcode.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/last_amp.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/last_amp.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/local1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/local1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/nommu1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/nommu1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/nommu2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/nommu2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/nommu3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/nommu3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/nulltick1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/nulltick1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/opts1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/opts1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/pid.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/pid.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/piped_input.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/piped_input.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/pipefail.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/pipefail.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/read.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/read.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/return1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/return1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/set-n1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/set-n1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/shift.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/shift.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/shift1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/shift1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/sig_exitcode.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/sig_exitcode.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/source1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/source1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/source2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/source2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/source3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/source3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/source4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/source4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/source5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/source5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/source_argv_and_shift.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/source_argv_and_shift.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/syntax_err.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/syntax_err.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/syntax_err_negate.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/syntax_err_negate.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/tickquote1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/tickquote1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/unicode1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/unicode1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/until1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/until1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/wait1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/wait1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/wait2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/wait2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/wait3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/wait3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/wait4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/wait4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/wait5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/wait5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/wait6.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/wait6.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/wait7.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/wait7.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/while1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/while1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/while2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/while2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/while3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/while3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/while4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/while4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-misc/while_in_subshell.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-misc/while_in_subshell.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/and_or_and_backgrounding.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/and_or_and_backgrounding.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/argv0.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/argv0.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_eof1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_eof1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_eof2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_eof2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_newline1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_newline1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_newline2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_newline2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_newline3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_newline3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_newline4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/bkslash_newline4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/brace1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/brace1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/brace2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/brace2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/comment1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/comment1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/comment2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/comment2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/eol1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/eol1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/escape1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/escape1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/escape2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/escape2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/escape3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/escape3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/escape4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/escape4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/escape5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/escape5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/group1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/group1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/group2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/group2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/groups_and_keywords1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/groups_and_keywords1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/groups_and_keywords2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/groups_and_keywords2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/negate.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/negate.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/nodone1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/nodone1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/nodone2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/nodone2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/noeol.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/noeol.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/noeol2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/noeol2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/noeol3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/noeol3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/process_subst.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/process_subst.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/quote1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/quote1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/quote2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/quote2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/quote3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/quote3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/quote4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/quote4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/starquoted.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/starquoted.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/starquoted2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/starquoted2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-parsing/starquoted3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-parsing/starquoted3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/emptytick.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/emptytick.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/falsetick.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/falsetick.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/falsetick2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/falsetick2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/falsetick3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/falsetick3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/tick.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/tick.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/tick2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/tick2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/tick3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/tick3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/tick4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/tick4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/tick5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/tick5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/tick6.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/tick6.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/tick_huge.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/tick_huge.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-psubst/tick_in_heredoc.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-psubst/tick_in_heredoc.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/bkslash_case1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/bkslash_case1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/bkslash_case2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/bkslash_case2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/bkslash_in_varexp.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/bkslash_in_varexp.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/bkslash_in_varexp1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/bkslash_in_varexp1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/case_glob1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/case_glob1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_altvalue1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_altvalue1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_altvalue2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_altvalue2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_altvalue9.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_altvalue9.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_repl_bash1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_repl_bash1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_repl_bash2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_repl_bash2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_repl_slash_bash1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_repl_slash_bash1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_repl_slash_bash2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_repl_slash_bash2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_squote_bash1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_squote_bash1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_squote_bash2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/dollar_squote_bash2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/negative_arith.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/negative_arith.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/quote_in_varexp1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/quote_in_varexp1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/quoted_punct.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/quoted_punct.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/space_in_varexp1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/space_in_varexp1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/squote_in_varexp.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/squote_in_varexp.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/squote_in_varexp1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/squote_in_varexp1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/squote_in_varexp2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/squote_in_varexp2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/squote_in_varexp3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/squote_in_varexp3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-quoting/unicode_8x_chars.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-quoting/unicode_8x_chars.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-read/read_REPLY.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-read/read_REPLY.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-read/read_SIGCHLD.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-read/read_SIGCHLD.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-read/read_d0.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-read/read_d0.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-read/read_ifs.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-read/read_ifs.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-read/read_ifs2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-read/read_ifs2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-read/read_n.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-read/read_n.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-read/read_r.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-read/read_r.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-read/read_t.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-read/read_t.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-read/read_t0.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-read/read_t0.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir6.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir6.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir7.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir7.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir8.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir8.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir9.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir9.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redirA.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redirA.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_backquote1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_backquote1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_children_should_not_see_saved_fd_1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_children_should_not_see_saved_fd_1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_children_should_not_see_saved_fd_2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_children_should_not_see_saved_fd_2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_children_should_not_see_saved_fd_3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_children_should_not_see_saved_fd_3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_errors.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_errors.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_escapednum.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_escapednum.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_exec1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_exec1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_exec2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_exec2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_expand.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_expand.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_leak.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_leak.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_multi.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_multi.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_script.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_script.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_space.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_space.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_stdin1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_stdin1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_to_bad_fd.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_to_bad_fd.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_to_bad_fd255.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_to_bad_fd255.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-redir/redir_to_bad_fd3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-redir/redir_to_bad_fd3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/catch.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/catch.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/continue_and_trap1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/continue_and_trap1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/exit.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/exit.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/reap1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/reap1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/return_in_trap1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/return_in_trap1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/save-ret.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/save-ret.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/savetrap.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/savetrap.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/sigint1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/sigint1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal6.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal6.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal7.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal7.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal8.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal8.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal9.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal9.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal_read1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal_read1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/signal_read2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/signal_read2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/sigquit_exec.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/sigquit_exec.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/subshell.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/subshell.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-signals/usage.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-signals/usage.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-standalone/noexec_gets_no_env.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-standalone/noexec_gets_no_env.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-standalone/nofork_env.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-standalone/nofork_env.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-standalone/nofork_trashes_getopt.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-standalone/nofork_trashes_getopt.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-standalone/var_standalone1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-standalone/var_standalone1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-test2/andor1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-test2/andor1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-test2/noglob1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-test2/noglob1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-test2/strops1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-test2/strops1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-test2/strops2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-test2/strops2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-test2/strops3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-test2/strops3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-test2/strops4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-test2/strops4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-test2/strops5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-test2/strops5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/empty.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/empty.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/glob_and_vars.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/glob_and_vars.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_alt.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_alt.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_alt2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_alt2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_assign.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_assign.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_bash_substring.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_bash_substring.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_default.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_default.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_indicate_error.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_indicate_error.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_len.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_len.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_len1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_expand_len1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_glob.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_glob.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/param_subshell.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/param_subshell.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/readonly0.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/readonly0.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/readonly2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/readonly2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/readonly3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/readonly3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/star.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/star.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/unset.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/unset.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-do-not-collapse-arithmetic-expansion-at-parse-time.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-do-not-collapse-arithmetic-expansion-at-parse-time.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-do-not-expand-tilde-in-parameter-expansion-in-quotes.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-do-not-expand-tilde-in-parameter-expansion-in-quotes.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-pattern-replacement-in-parameter-expansion-5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-runtime-quote-detection.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-runtime-quote-detection.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var-utf8-length.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var-utf8-length.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var6.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var6.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_10.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_10.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_LINENO1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_LINENO1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_LINENO2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_LINENO2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_LINENO3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_LINENO3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash1a.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash1a.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash1b.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash1b.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash6.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash6.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash7.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash7.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash_pattern_starting_with_slash.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash_pattern_starting_with_slash.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash_repl_empty_pattern.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash_repl_empty_pattern.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash_repl_empty_var.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash_repl_empty_var.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_bash_repl_unterminated.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_bash_repl_unterminated.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_expand_in_assign.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_expand_in_assign.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_expand_in_redir.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_expand_in_redir.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_expand_on_ifs.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_expand_on_ifs.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_in_pipes.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_in_pipes.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_leaks.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_leaks.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_nested1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_nested1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_nested2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_nested2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_posix1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_posix1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_preserved.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_preserved.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_serial.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_serial.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_subst_in_for.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_subst_in_for.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_unbackslash.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_unbackslash.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_unbackslash1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_unbackslash1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs4.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs4.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs5.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-vars/var_wordsplit_ifs5.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_all1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_all1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_all2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_all2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_empty_tick.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_empty_tick.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_heredoc1.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_heredoc1.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_var.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_var.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_var2.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_var2.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_var3.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-z_slow/leak_var3.tests create mode 100644 busybox-1_37_0/shell/hush_test/hush-z_slow/many_ifs.right create mode 100755 busybox-1_37_0/shell/hush_test/hush-z_slow/many_ifs.tests create mode 100755 busybox-1_37_0/shell/hush_test/run-all create mode 100644 busybox-1_37_0/shell/match.c create mode 100644 busybox-1_37_0/shell/match.h create mode 100644 busybox-1_37_0/shell/math.c create mode 100644 busybox-1_37_0/shell/math.h create mode 100644 busybox-1_37_0/shell/random.c create mode 100644 busybox-1_37_0/shell/random.h create mode 100644 busybox-1_37_0/shell/shell_common.c create mode 100644 busybox-1_37_0/shell/shell_common.h create mode 100755 busybox-1_37_0/size_single_applets.sh create mode 100644 busybox-1_37_0/sysklogd/Config.src create mode 100644 busybox-1_37_0/sysklogd/Kbuild.src create mode 100644 busybox-1_37_0/sysklogd/klogd.c create mode 100644 busybox-1_37_0/sysklogd/logger.c create mode 100644 busybox-1_37_0/sysklogd/logread.c create mode 100644 busybox-1_37_0/sysklogd/syslogd.c create mode 100644 busybox-1_37_0/sysklogd/syslogd_and_logger.c create mode 100644 busybox-1_37_0/testsuite/README create mode 100644 busybox-1_37_0/testsuite/TODO create mode 100755 busybox-1_37_0/testsuite/all_sourcecode.tests create mode 100755 busybox-1_37_0/testsuite/ar.tests create mode 100755 busybox-1_37_0/testsuite/ash.tests create mode 100755 busybox-1_37_0/testsuite/awk.tests create mode 100644 busybox-1_37_0/testsuite/awk_t1.tar.bz2 create mode 100644 busybox-1_37_0/testsuite/basename/basename-does-not-remove-identical-extension create mode 100644 busybox-1_37_0/testsuite/basename/basename-works create mode 100755 busybox-1_37_0/testsuite/bc.tests create mode 100644 busybox-1_37_0/testsuite/bc_add.bc create mode 100644 busybox-1_37_0/testsuite/bc_add_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_arctangent.bc create mode 100644 busybox-1_37_0/testsuite/bc_arctangent_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_array.bc create mode 100644 busybox-1_37_0/testsuite/bc_array_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_arrays.bc create mode 100644 busybox-1_37_0/testsuite/bc_arrays_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_bessel.bc create mode 100644 busybox-1_37_0/testsuite/bc_bessel_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_boolean.bc create mode 100644 busybox-1_37_0/testsuite/bc_boolean_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_cosine.bc create mode 100644 busybox-1_37_0/testsuite/bc_cosine_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_decimal.bc create mode 100644 busybox-1_37_0/testsuite/bc_decimal_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_divide.bc create mode 100644 busybox-1_37_0/testsuite/bc_divide_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_exponent.bc create mode 100644 busybox-1_37_0/testsuite/bc_exponent_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_log.bc create mode 100644 busybox-1_37_0/testsuite/bc_log_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_misc.bc create mode 100644 busybox-1_37_0/testsuite/bc_misc1.bc create mode 100644 busybox-1_37_0/testsuite/bc_misc1_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_misc2.bc create mode 100644 busybox-1_37_0/testsuite/bc_misc2_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_misc_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_modulus.bc create mode 100644 busybox-1_37_0/testsuite/bc_modulus_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_multiply.bc create mode 100644 busybox-1_37_0/testsuite/bc_multiply_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_numbers1.bc create mode 100644 busybox-1_37_0/testsuite/bc_numbers1_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_numbers2.bc create mode 100644 busybox-1_37_0/testsuite/bc_numbers2_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_pi.bc create mode 100644 busybox-1_37_0/testsuite/bc_pi_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_power.bc create mode 100644 busybox-1_37_0/testsuite/bc_power_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_references.bc create mode 100644 busybox-1_37_0/testsuite/bc_references_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_sine.bc create mode 100644 busybox-1_37_0/testsuite/bc_sine_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_sqrt.bc create mode 100644 busybox-1_37_0/testsuite/bc_sqrt_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_strings.bc create mode 100644 busybox-1_37_0/testsuite/bc_strings_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_subtract.bc create mode 100644 busybox-1_37_0/testsuite/bc_subtract_results.txt create mode 100644 busybox-1_37_0/testsuite/bc_vars.bc create mode 100644 busybox-1_37_0/testsuite/bc_vars_results.txt create mode 100755 busybox-1_37_0/testsuite/bunzip2.tests create mode 100644 busybox-1_37_0/testsuite/bunzip2/bunzip2-reads-from-standard-input create mode 100644 busybox-1_37_0/testsuite/bunzip2/bunzip2-removes-compressed-file create mode 100755 busybox-1_37_0/testsuite/busybox.tests create mode 100644 busybox-1_37_0/testsuite/bz2_issue_11.bz2 create mode 100644 busybox-1_37_0/testsuite/bz2_issue_12.bz2 create mode 100755 busybox-1_37_0/testsuite/bzcat.tests create mode 100644 busybox-1_37_0/testsuite/bzcat/bzcat-does-not-remove-compressed-file create mode 100755 busybox-1_37_0/testsuite/cal.tests create mode 100755 busybox-1_37_0/testsuite/cat.tests create mode 100644 busybox-1_37_0/testsuite/cat/cat-prints-a-file create mode 100644 busybox-1_37_0/testsuite/cat/cat-prints-a-file-and-standard-input create mode 100644 busybox-1_37_0/testsuite/cmp/cmp-detects-difference create mode 100755 busybox-1_37_0/testsuite/comm.tests create mode 100755 busybox-1_37_0/testsuite/cp.tests create mode 100644 busybox-1_37_0/testsuite/cp/cp-RHL-does_not_preserve-links create mode 100644 busybox-1_37_0/testsuite/cp/cp-a-files-to-dir create mode 100644 busybox-1_37_0/testsuite/cp/cp-a-preserves-links create mode 100644 busybox-1_37_0/testsuite/cp/cp-copies-empty-file create mode 100644 busybox-1_37_0/testsuite/cp/cp-copies-large-file create mode 100644 busybox-1_37_0/testsuite/cp/cp-copies-small-file create mode 100644 busybox-1_37_0/testsuite/cp/cp-d-files-to-dir create mode 100644 busybox-1_37_0/testsuite/cp/cp-dev-file create mode 100644 busybox-1_37_0/testsuite/cp/cp-dir-create-dir create mode 100644 busybox-1_37_0/testsuite/cp/cp-dir-existing-dir create mode 100644 busybox-1_37_0/testsuite/cp/cp-does-not-copy-unreadable-file create mode 100644 busybox-1_37_0/testsuite/cp/cp-files-to-dir create mode 100644 busybox-1_37_0/testsuite/cp/cp-follows-links create mode 100644 busybox-1_37_0/testsuite/cp/cp-parents create mode 100644 busybox-1_37_0/testsuite/cp/cp-preserves-hard-links create mode 100644 busybox-1_37_0/testsuite/cp/cp-preserves-links create mode 100644 busybox-1_37_0/testsuite/cp/cp-preserves-source-file create mode 100755 busybox-1_37_0/testsuite/cpio.tests create mode 100755 busybox-1_37_0/testsuite/cryptpw.tests create mode 100755 busybox-1_37_0/testsuite/cut.tests create mode 100644 busybox-1_37_0/testsuite/cut/cut-cuts-a-character create mode 100644 busybox-1_37_0/testsuite/cut/cut-cuts-a-closed-range create mode 100644 busybox-1_37_0/testsuite/cut/cut-cuts-a-field create mode 100644 busybox-1_37_0/testsuite/cut/cut-cuts-an-open-range create mode 100644 busybox-1_37_0/testsuite/cut/cut-cuts-an-unclosed-range create mode 100644 busybox-1_37_0/testsuite/date/date-@-works create mode 100644 busybox-1_37_0/testsuite/date/date-R-works create mode 100644 busybox-1_37_0/testsuite/date/date-format-works create mode 100644 busybox-1_37_0/testsuite/date/date-timezone create mode 100644 busybox-1_37_0/testsuite/date/date-u-works create mode 100644 busybox-1_37_0/testsuite/date/date-works create mode 100644 busybox-1_37_0/testsuite/date/date-works-1 create mode 100755 busybox-1_37_0/testsuite/dc.tests create mode 100644 busybox-1_37_0/testsuite/dc_add.dc create mode 100644 busybox-1_37_0/testsuite/dc_add_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_boolean.dc create mode 100644 busybox-1_37_0/testsuite/dc_boolean_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_decimal.dc create mode 100644 busybox-1_37_0/testsuite/dc_decimal_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_divide.dc create mode 100644 busybox-1_37_0/testsuite/dc_divide_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_divmod.dc create mode 100644 busybox-1_37_0/testsuite/dc_divmod_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_misc.dc create mode 100644 busybox-1_37_0/testsuite/dc_misc_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_modexp.dc create mode 100644 busybox-1_37_0/testsuite/dc_modexp_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_modulus.dc create mode 100644 busybox-1_37_0/testsuite/dc_modulus_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_multiply.dc create mode 100644 busybox-1_37_0/testsuite/dc_multiply_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_power.dc create mode 100644 busybox-1_37_0/testsuite/dc_power_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_sqrt.dc create mode 100644 busybox-1_37_0/testsuite/dc_sqrt_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_strings.dc create mode 100644 busybox-1_37_0/testsuite/dc_strings_results.txt create mode 100644 busybox-1_37_0/testsuite/dc_subtract.dc create mode 100644 busybox-1_37_0/testsuite/dc_subtract_results.txt create mode 100644 busybox-1_37_0/testsuite/dcx_vars.dc create mode 100644 busybox-1_37_0/testsuite/dcx_vars_results.txt create mode 100644 busybox-1_37_0/testsuite/dd/dd-accepts-if create mode 100644 busybox-1_37_0/testsuite/dd/dd-accepts-of create mode 100644 busybox-1_37_0/testsuite/dd/dd-copies-from-standard-input-to-standard-output create mode 100644 busybox-1_37_0/testsuite/dd/dd-count-bytes create mode 100644 busybox-1_37_0/testsuite/dd/dd-prints-count-to-standard-error create mode 100644 busybox-1_37_0/testsuite/dd/dd-reports-write-errors create mode 100755 busybox-1_37_0/testsuite/diff.tests create mode 100644 busybox-1_37_0/testsuite/dirname/dirname-handles-absolute-path create mode 100644 busybox-1_37_0/testsuite/dirname/dirname-handles-empty-path create mode 100644 busybox-1_37_0/testsuite/dirname/dirname-handles-multiple-slashes create mode 100644 busybox-1_37_0/testsuite/dirname/dirname-handles-relative-path create mode 100644 busybox-1_37_0/testsuite/dirname/dirname-handles-root create mode 100644 busybox-1_37_0/testsuite/dirname/dirname-handles-single-component create mode 100644 busybox-1_37_0/testsuite/dirname/dirname-works create mode 100644 busybox-1_37_0/testsuite/du/du-h-works create mode 100644 busybox-1_37_0/testsuite/du/du-k-works create mode 100644 busybox-1_37_0/testsuite/du/du-l-works create mode 100644 busybox-1_37_0/testsuite/du/du-m-works create mode 100644 busybox-1_37_0/testsuite/du/du-s-works create mode 100644 busybox-1_37_0/testsuite/du/du-works create mode 100644 busybox-1_37_0/testsuite/echo/echo-does-not-print-newline create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-argument create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-arguments create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-dash create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-newline create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-non-opts create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-slash-zero create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-slash_00041 create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-slash_0041 create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-slash_041 create mode 100644 busybox-1_37_0/testsuite/echo/echo-prints-slash_41 create mode 100755 busybox-1_37_0/testsuite/expand.tests create mode 100644 busybox-1_37_0/testsuite/expr/expr-big create mode 100644 busybox-1_37_0/testsuite/expr/expr-works create mode 100755 busybox-1_37_0/testsuite/factor.tests create mode 100644 busybox-1_37_0/testsuite/false/false-is-silent create mode 100644 busybox-1_37_0/testsuite/false/false-returns-failure create mode 100755 busybox-1_37_0/testsuite/find.tests create mode 100644 busybox-1_37_0/testsuite/find/find-supports-minus-xdev create mode 100755 busybox-1_37_0/testsuite/fold.tests create mode 100755 busybox-1_37_0/testsuite/grep.tests create mode 100755 busybox-1_37_0/testsuite/gunzip.tests create mode 100644 busybox-1_37_0/testsuite/gunzip/gunzip-reads-from-standard-input create mode 100644 busybox-1_37_0/testsuite/gzip/gzip-accepts-multiple-files create mode 100644 busybox-1_37_0/testsuite/gzip/gzip-accepts-single-minus create mode 100644 busybox-1_37_0/testsuite/gzip/gzip-compression-levels create mode 100644 busybox-1_37_0/testsuite/gzip/gzip-removes-original-file create mode 100755 busybox-1_37_0/testsuite/head.tests create mode 100755 busybox-1_37_0/testsuite/hexdump.tests create mode 100644 busybox-1_37_0/testsuite/hostid/hostid-works create mode 100644 busybox-1_37_0/testsuite/hostname/hostname-d-works create mode 100644 busybox-1_37_0/testsuite/hostname/hostname-i-works create mode 100644 busybox-1_37_0/testsuite/hostname/hostname-s-works create mode 100644 busybox-1_37_0/testsuite/hostname/hostname-works create mode 100644 busybox-1_37_0/testsuite/id/id-g-works create mode 100644 busybox-1_37_0/testsuite/id/id-u-works create mode 100644 busybox-1_37_0/testsuite/id/id-un-works create mode 100644 busybox-1_37_0/testsuite/id/id-ur-works create mode 100644 busybox-1_37_0/testsuite/ln/ln-creates-hard-links create mode 100644 busybox-1_37_0/testsuite/ln/ln-creates-soft-links create mode 100644 busybox-1_37_0/testsuite/ln/ln-force-creates-hard-links create mode 100644 busybox-1_37_0/testsuite/ln/ln-force-creates-soft-links create mode 100644 busybox-1_37_0/testsuite/ln/ln-preserves-hard-links create mode 100644 busybox-1_37_0/testsuite/ln/ln-preserves-soft-links create mode 100644 busybox-1_37_0/testsuite/ls.mk_uni_tests create mode 100755 busybox-1_37_0/testsuite/ls.tests create mode 100644 busybox-1_37_0/testsuite/ls/ls-1-works create mode 100644 busybox-1_37_0/testsuite/ls/ls-h-works create mode 100644 busybox-1_37_0/testsuite/ls/ls-l-works create mode 100644 busybox-1_37_0/testsuite/ls/ls-s-works create mode 100644 busybox-1_37_0/testsuite/makedevs.device_table.txt create mode 100755 busybox-1_37_0/testsuite/makedevs.tests create mode 100755 busybox-1_37_0/testsuite/md5sum.tests create mode 100644 busybox-1_37_0/testsuite/md5sum/md5sum-verifies-non-binary-file create mode 100755 busybox-1_37_0/testsuite/mdev.tests create mode 100644 busybox-1_37_0/testsuite/mkdir/mkdir-makes-a-directory create mode 100644 busybox-1_37_0/testsuite/mkdir/mkdir-makes-parent-directories create mode 100755 busybox-1_37_0/testsuite/mkfs.minix.tests create mode 100755 busybox-1_37_0/testsuite/mount.testroot create mode 100755 busybox-1_37_0/testsuite/mount.tests create mode 100644 busybox-1_37_0/testsuite/mv/mv-files-to-dir create mode 100644 busybox-1_37_0/testsuite/mv/mv-files-to-dir-2 create mode 100644 busybox-1_37_0/testsuite/mv/mv-follows-links create mode 100644 busybox-1_37_0/testsuite/mv/mv-moves-empty-file create mode 100644 busybox-1_37_0/testsuite/mv/mv-moves-file create mode 100644 busybox-1_37_0/testsuite/mv/mv-moves-hardlinks create mode 100644 busybox-1_37_0/testsuite/mv/mv-moves-large-file create mode 100644 busybox-1_37_0/testsuite/mv/mv-moves-small-file create mode 100644 busybox-1_37_0/testsuite/mv/mv-moves-symlinks create mode 100644 busybox-1_37_0/testsuite/mv/mv-moves-unreadable-files create mode 100644 busybox-1_37_0/testsuite/mv/mv-preserves-hard-links create mode 100644 busybox-1_37_0/testsuite/mv/mv-preserves-links create mode 100644 busybox-1_37_0/testsuite/mv/mv-refuses-mv-dir-to-subdir create mode 100644 busybox-1_37_0/testsuite/mv/mv-removes-source-file create mode 100755 busybox-1_37_0/testsuite/nl.tests create mode 100755 busybox-1_37_0/testsuite/od.tests create mode 100755 busybox-1_37_0/testsuite/parse.tests create mode 100644 busybox-1_37_0/testsuite/paste/paste create mode 100644 busybox-1_37_0/testsuite/paste/paste-back-cuted-lines create mode 100644 busybox-1_37_0/testsuite/paste/paste-multi-stdin create mode 100644 busybox-1_37_0/testsuite/paste/paste-pairs create mode 100644 busybox-1_37_0/testsuite/paste/paste-separate create mode 100755 busybox-1_37_0/testsuite/patch.tests create mode 100755 busybox-1_37_0/testsuite/pidof.tests create mode 100755 busybox-1_37_0/testsuite/printf.tests create mode 100644 busybox-1_37_0/testsuite/pwd/pwd-prints-working-directory create mode 100755 busybox-1_37_0/testsuite/readlink.tests create mode 100755 busybox-1_37_0/testsuite/realpath.tests create mode 100755 busybox-1_37_0/testsuite/rev.tests create mode 100644 busybox-1_37_0/testsuite/rm/rm-removes-file create mode 100644 busybox-1_37_0/testsuite/rmdir/rmdir-removes-parent-directories create mode 100755 busybox-1_37_0/testsuite/runtest create mode 100755 busybox-1_37_0/testsuite/rx.tests create mode 100755 busybox-1_37_0/testsuite/sed.tests create mode 100755 busybox-1_37_0/testsuite/seq.tests create mode 100755 busybox-1_37_0/testsuite/sha1sum.tests create mode 100755 busybox-1_37_0/testsuite/sha256sum.tests create mode 100755 busybox-1_37_0/testsuite/sha3sum.tests create mode 100755 busybox-1_37_0/testsuite/sha512sum.tests create mode 100755 busybox-1_37_0/testsuite/sort.tests create mode 100755 busybox-1_37_0/testsuite/start-stop-daemon.tests create mode 100644 busybox-1_37_0/testsuite/strings/strings-works-like-GNU create mode 100755 busybox-1_37_0/testsuite/sum.tests create mode 100755 busybox-1_37_0/testsuite/tail.tests create mode 100644 busybox-1_37_0/testsuite/tail/tail-n-works create mode 100644 busybox-1_37_0/testsuite/tail/tail-works create mode 100755 busybox-1_37_0/testsuite/tar.tests create mode 100644 busybox-1_37_0/testsuite/tar.utf8.tar.bz2 create mode 100644 busybox-1_37_0/testsuite/tar/tar-archives-multiple-files create mode 100644 busybox-1_37_0/testsuite/tar/tar-complains-about-missing-file create mode 100644 busybox-1_37_0/testsuite/tar/tar-demands-at-least-one-ctx create mode 100644 busybox-1_37_0/testsuite/tar/tar-demands-at-most-one-ctx create mode 100644 busybox-1_37_0/testsuite/tar/tar-extracts-all-subdirs create mode 100644 busybox-1_37_0/testsuite/tar/tar-extracts-file create mode 100644 busybox-1_37_0/testsuite/tar/tar-extracts-from-standard-input create mode 100644 busybox-1_37_0/testsuite/tar/tar-extracts-multiple-files create mode 100644 busybox-1_37_0/testsuite/tar/tar-extracts-to-standard-output create mode 100644 busybox-1_37_0/testsuite/tar/tar-handles-cz-options create mode 100644 busybox-1_37_0/testsuite/tar/tar-handles-empty-include-and-non-empty-exclude-list create mode 100644 busybox-1_37_0/testsuite/tar/tar-handles-exclude-and-extract-lists create mode 100644 busybox-1_37_0/testsuite/tar/tar-handles-multiple-X-options create mode 100644 busybox-1_37_0/testsuite/tar/tar-handles-nested-exclude create mode 100644 busybox-1_37_0/testsuite/tar/tar_with_link_with_size create mode 100644 busybox-1_37_0/testsuite/tar/tar_with_prefix_fields create mode 100755 busybox-1_37_0/testsuite/taskset.tests create mode 100644 busybox-1_37_0/testsuite/tee/tee-appends-input create mode 100644 busybox-1_37_0/testsuite/tee/tee-tees-input create mode 100755 busybox-1_37_0/testsuite/test.tests create mode 100644 busybox-1_37_0/testsuite/testing.sh create mode 100755 busybox-1_37_0/testsuite/time.tests create mode 100644 busybox-1_37_0/testsuite/touch/touch-creates-file create mode 100644 busybox-1_37_0/testsuite/touch/touch-does-not-create-file create mode 100644 busybox-1_37_0/testsuite/touch/touch-touches-files-after-non-existent-file create mode 100755 busybox-1_37_0/testsuite/tr.tests create mode 100644 busybox-1_37_0/testsuite/tr/tr-d-alnum-works create mode 100644 busybox-1_37_0/testsuite/tr/tr-d-works create mode 100644 busybox-1_37_0/testsuite/tr/tr-non-gnu create mode 100644 busybox-1_37_0/testsuite/tr/tr-rejects-wrong-class create mode 100644 busybox-1_37_0/testsuite/tr/tr-works create mode 100755 busybox-1_37_0/testsuite/tree.tests create mode 100644 busybox-1_37_0/testsuite/true/true-is-silent create mode 100644 busybox-1_37_0/testsuite/true/true-returns-success create mode 100755 busybox-1_37_0/testsuite/tsort.tests create mode 100755 busybox-1_37_0/testsuite/umlwrapper.sh create mode 100755 busybox-1_37_0/testsuite/uncompress.tests create mode 100755 busybox-1_37_0/testsuite/unexpand.tests create mode 100755 busybox-1_37_0/testsuite/uniq.tests create mode 100755 busybox-1_37_0/testsuite/unlzma.tests create mode 100644 busybox-1_37_0/testsuite/unlzma_issue_1.lzma create mode 100644 busybox-1_37_0/testsuite/unlzma_issue_2.lzma create mode 100644 busybox-1_37_0/testsuite/unlzma_issue_3.lzma create mode 100755 busybox-1_37_0/testsuite/unzip.tests create mode 100644 busybox-1_37_0/testsuite/unzip_bad_lzma_1.zip create mode 100644 busybox-1_37_0/testsuite/unzip_bad_lzma_2.zip create mode 100644 busybox-1_37_0/testsuite/uptime/uptime-works create mode 100755 busybox-1_37_0/testsuite/uuencode.tests create mode 100644 busybox-1_37_0/testsuite/wc/wc-counts-all create mode 100644 busybox-1_37_0/testsuite/wc/wc-counts-characters create mode 100644 busybox-1_37_0/testsuite/wc/wc-counts-lines create mode 100644 busybox-1_37_0/testsuite/wc/wc-counts-words create mode 100644 busybox-1_37_0/testsuite/wc/wc-prints-longest-line-length create mode 100644 busybox-1_37_0/testsuite/wget/wget--O-overrides--P create mode 100644 busybox-1_37_0/testsuite/wget/wget-handles-empty-path create mode 100644 busybox-1_37_0/testsuite/wget/wget-retrieves-google-index create mode 100644 busybox-1_37_0/testsuite/wget/wget-supports--P create mode 100644 busybox-1_37_0/testsuite/which/which-uses-default-path create mode 100755 busybox-1_37_0/testsuite/xargs.tests create mode 100644 busybox-1_37_0/testsuite/xargs/xargs-works create mode 100755 busybox-1_37_0/testsuite/xxd.tests create mode 100644 busybox-1_37_0/util-linux/Config.src create mode 100644 busybox-1_37_0/util-linux/Kbuild.src create mode 100644 busybox-1_37_0/util-linux/acpid.c create mode 100644 busybox-1_37_0/util-linux/blkdiscard.c create mode 100644 busybox-1_37_0/util-linux/blkid.c create mode 100644 busybox-1_37_0/util-linux/blockdev.c create mode 100644 busybox-1_37_0/util-linux/cal.c create mode 100644 busybox-1_37_0/util-linux/chrt.c create mode 100644 busybox-1_37_0/util-linux/dmesg.c create mode 100644 busybox-1_37_0/util-linux/eject.c create mode 100644 busybox-1_37_0/util-linux/fallocate.c create mode 100644 busybox-1_37_0/util-linux/fatattr.c create mode 100644 busybox-1_37_0/util-linux/fbset.c create mode 100644 busybox-1_37_0/util-linux/fdformat.c create mode 100644 busybox-1_37_0/util-linux/fdisk.c create mode 100644 busybox-1_37_0/util-linux/fdisk_aix.c create mode 100644 busybox-1_37_0/util-linux/fdisk_gpt.c create mode 100644 busybox-1_37_0/util-linux/fdisk_osf.c create mode 100644 busybox-1_37_0/util-linux/fdisk_sgi.c create mode 100644 busybox-1_37_0/util-linux/fdisk_sun.c create mode 100644 busybox-1_37_0/util-linux/findfs.c create mode 100644 busybox-1_37_0/util-linux/flock.c create mode 100644 busybox-1_37_0/util-linux/freeramdisk.c create mode 100644 busybox-1_37_0/util-linux/fsck_minix.c create mode 100644 busybox-1_37_0/util-linux/fsfreeze.c create mode 100644 busybox-1_37_0/util-linux/fstrim.c create mode 100644 busybox-1_37_0/util-linux/getopt.c create mode 100644 busybox-1_37_0/util-linux/hexdump.c create mode 100644 busybox-1_37_0/util-linux/hexdump_xxd.c create mode 100644 busybox-1_37_0/util-linux/hwclock.c create mode 100644 busybox-1_37_0/util-linux/ionice.c create mode 100644 busybox-1_37_0/util-linux/ipcrm.c create mode 100644 busybox-1_37_0/util-linux/ipcs.c create mode 100644 busybox-1_37_0/util-linux/last.c create mode 100644 busybox-1_37_0/util-linux/last_fancy.c create mode 100644 busybox-1_37_0/util-linux/losetup.c create mode 100644 busybox-1_37_0/util-linux/lspci.c create mode 100644 busybox-1_37_0/util-linux/lsusb.c create mode 100644 busybox-1_37_0/util-linux/mdev.c create mode 100644 busybox-1_37_0/util-linux/mesg.c create mode 100644 busybox-1_37_0/util-linux/minix.h create mode 100644 busybox-1_37_0/util-linux/mkfs_ext2.c create mode 100644 busybox-1_37_0/util-linux/mkfs_ext2.txt create mode 100755 busybox-1_37_0/util-linux/mkfs_ext2_test.sh create mode 100644 busybox-1_37_0/util-linux/mkfs_minix.c create mode 100644 busybox-1_37_0/util-linux/mkfs_reiser.c create mode 100644 busybox-1_37_0/util-linux/mkfs_vfat.c create mode 100644 busybox-1_37_0/util-linux/mkswap.c create mode 100644 busybox-1_37_0/util-linux/more.c create mode 100644 busybox-1_37_0/util-linux/mount.c create mode 100644 busybox-1_37_0/util-linux/mountpoint.c create mode 100644 busybox-1_37_0/util-linux/nologin.c create mode 100644 busybox-1_37_0/util-linux/nsenter.c create mode 100644 busybox-1_37_0/util-linux/pivot_root.c create mode 100644 busybox-1_37_0/util-linux/rdate.c create mode 100644 busybox-1_37_0/util-linux/rdev.c create mode 100644 busybox-1_37_0/util-linux/readprofile.c create mode 100644 busybox-1_37_0/util-linux/renice.c create mode 100644 busybox-1_37_0/util-linux/rev.c create mode 100644 busybox-1_37_0/util-linux/rtcwake.c create mode 100644 busybox-1_37_0/util-linux/script.c create mode 100644 busybox-1_37_0/util-linux/scriptreplay.c create mode 100644 busybox-1_37_0/util-linux/setarch.c create mode 100644 busybox-1_37_0/util-linux/setpriv.c create mode 100644 busybox-1_37_0/util-linux/setsid.c create mode 100644 busybox-1_37_0/util-linux/swaponoff.c create mode 100644 busybox-1_37_0/util-linux/switch_root.c create mode 100644 busybox-1_37_0/util-linux/taskset.c create mode 100644 busybox-1_37_0/util-linux/uevent.c create mode 100644 busybox-1_37_0/util-linux/umount.c create mode 100644 busybox-1_37_0/util-linux/unshare.c create mode 100644 busybox-1_37_0/util-linux/volume_id/Config.src create mode 100644 busybox-1_37_0/util-linux/volume_id/Kbuild.src create mode 100644 busybox-1_37_0/util-linux/volume_id/bcache.c create mode 100644 busybox-1_37_0/util-linux/volume_id/btrfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/cramfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/erofs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/exfat.c create mode 100644 busybox-1_37_0/util-linux/volume_id/ext.c create mode 100644 busybox-1_37_0/util-linux/volume_id/f2fs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/fat.c create mode 100644 busybox-1_37_0/util-linux/volume_id/get_devname.c create mode 100644 busybox-1_37_0/util-linux/volume_id/hfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/iso9660.c create mode 100644 busybox-1_37_0/util-linux/volume_id/jfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/lfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/linux_raid.c create mode 100644 busybox-1_37_0/util-linux/volume_id/linux_swap.c create mode 100644 busybox-1_37_0/util-linux/volume_id/luks.c create mode 100644 busybox-1_37_0/util-linux/volume_id/minix.c create mode 100644 busybox-1_37_0/util-linux/volume_id/nilfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/ntfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/ocfs2.c create mode 100644 busybox-1_37_0/util-linux/volume_id/reiserfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/romfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/squashfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/sysv.c create mode 100644 busybox-1_37_0/util-linux/volume_id/ubifs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/udf.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_highpoint.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_hpfs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_isw_raid.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_lsi_raid.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_lvm.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_mac.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_msdos.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_nvidia_raid.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_promise_raid.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_silicon_raid.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_ufs.c create mode 100644 busybox-1_37_0/util-linux/volume_id/unused_via_raid.c create mode 100644 busybox-1_37_0/util-linux/volume_id/util.c create mode 100644 busybox-1_37_0/util-linux/volume_id/volume_id.c create mode 100644 busybox-1_37_0/util-linux/volume_id/volume_id_internal.h create mode 100644 busybox-1_37_0/util-linux/volume_id/xfs.c create mode 100644 busybox-1_37_0/util-linux/wall.c delete mode 100644 progs/files create mode 100755 progs/src/shell/test/lib/x86_64-linux-gnu/libc.so.6 rename progs/{shell => src/shell/test/lib/x86_64-linux-gnu/libdl.so.2} (54%) mode change 100755 => 100644 create mode 100644 progs/src/shell/test/lib/x86_64-linux-gnu/libpthread.so.0 create mode 100644 progs/src/shell/test/usr/lib/x86_64-linux-gnu/libgtk3-nocsd.so.0 diff --git a/busybox-1_37_0/.gitignore b/busybox-1_37_0/.gitignore new file mode 100644 index 000000000..becd9bf6d --- /dev/null +++ b/busybox-1_37_0/.gitignore @@ -0,0 +1,63 @@ +# +# Kbuild ignores +# +.* +*.o +*.o.* +*.a +*.s +Kbuild +Config.in + +# +# Never ignore these +# +!.gitignore + +# +# Normal output +# +/busybox +/busybox_old +/busybox_unstripped* + +# +# Backups / patches +# +*~ +*.orig +*.rej +/*.patch + +# +# debugging stuff +# +core +.gdb_history +.gdbinit + +# +# testing output +# +/busybox.links +/runtest-tempdir-links +/testsuite/echo-ne + +# +# cscope output +# +cscope.files +cscope.in.out +cscope.out +cscope.po.out + +# +# ctags output +# +tags +TAGS + +# +# user-supplied scripts +# +/embed diff --git a/busybox-1_37_0/AUTHORS b/busybox-1_37_0/AUTHORS new file mode 100644 index 000000000..9ec0e2ee4 --- /dev/null +++ b/busybox-1_37_0/AUTHORS @@ -0,0 +1,186 @@ +List of the authors of code contained in BusyBox. + +If you have code in BusyBox, you should be listed here. If you should be +listed, or the description of what you have done needs more detail, or is +incorrect, _please_ let me know. + + -Erik + +----------- + +Peter Willis + eject + +Emanuele Aina + run-parts + +Erik Andersen + Tons of new stuff, major rewrite of most of the + core apps, tons of new apps as noted in header files. + Lots of tedious effort writing these boring docs that + nobody is going to actually read. + +Laurence Anderson + rpm2cpio, unzip, get_header_cpio, read_gz interface, rpm + +Jeff Angielski + ftpput, ftpget + +Enrik Berkhan + setconsole + +Jim Bauer + modprobe shell dependency + +Edward Betts + expr, hostid, logname, whoami + +John Beppu + du, nslookup, sort + +David Brownell + zcip + +Brian Candler + tiny-ls(ls) + +Randolph Chung + fbset, ping, hostname + +Dave Cinege + more(v2), makedevs, dutmp, modularization, auto links file, + various fixes, Linux Router Project maintenance + +Jordan Crouse + ipcalc + +Magnus Damm + tftp client + insmod powerpc support + +Larry Doolittle + pristine source directory compilation, lots of patches and fixes. + +Glenn Engel + httpd + +Gennady Feldman + Sysklogd (single threaded syslogd, IPC Circular buffer support, + logread), various fixes. + +Robert Griebl + modprobe, hwclock, suid/sgid handling, tinylogin integration + many bugfixes and enhancements + +Karl M. Hegbloom + cp_mv.c, the test suite, various fixes to utility.c, &c. + +Daniel Jacobowitz + mktemp.c + +Matt Kraai + documentation, bugfixes, test suite + +Rob Landley + Became busybox maintainer in 2006. + + sed (major rewrite in 2003, and I now maintain the thing) + bunzip2 (complete from-scratch rewrite, then mjn3 optimized the result) + sort (more or less from scratch rewrite in 2004, I now maintain it) + mount (rewrite in 2005, I maintain the new one) + +Stephan Linz + ipcalc, Red Hat equivalence + +John Lombardo + tr + +Glenn McGrath + Common unarchiving code and unarchiving applets, ifupdown, ftpgetput, + nameif, sed, patch, fold, install, uudecode. + Various bugfixes, review and apply numerous patches. + +Manuel Novoa III + cat, head, mkfifo, mknod, rmdir, sleep, tee, tty, uniq, usleep, wc, yes, + mesg, vconfig, nice, renice, + make_directory, parse_mode, dirname, mode_string, + get_last_path_component, simplify_path, and a number trivial libbb routines + + also bug fixes, partial rewrites, and size optimizations in + ash, basename, cal, cmp, cp, df, du, echo, env, ln, logname, md5sum, mkdir, + mv, realpath, rm, sort, tail, touch, uname, watch, arith, human_readable, + interface, dutmp, ifconfig, route + +Vladimir Oleynik + cmdedit; bb_mkdep, xargs(current), httpd(current); + ports: ash, crond, fdisk (initial, unmaintained now), inetd, stty, traceroute, + top; + locale, various fixes + and irreconcilable critic of everything not perfect. + +Bruce Perens + Original author of BusyBox in 1995, 1996. Some of his code can + still be found hiding here and there... + +Rodney Radford + ipcs, ipcrm + +Tim Riker + bug fixes, member of fan club + +Kent Robotti + reset, tons and tons of bug reports and patches. + +Chip Rosenthal , + wget - Contributed by permission of Covad Communications + +Pavel Roskin + Lots of bugs fixes and patches. + +Gyepi Sam + Remote logging feature for syslogd + +Rob Sullivan + comm + +Linus Torvalds + mkswap, fsck.minix, mkfs.minix + +Linus Walleij + fbset and fbsplash config RGBA parsing + rewrite of mdev helper to create devices from /sys/dev + +Mark Whitley + grep, sed, cut, xargs(previous), + style-guide, new-applet-HOWTO, bug fixes, etc. + +Charles P. Wright + gzip, mini-netcat(nc) + +Enrique Zanardi + tarcat (since removed), loadkmap, various fixes, Debian maintenance + +Tito Ragusa + devfsd and size optimizations in strings, openvt, chvt, deallocvt, hdparm, + fdformat, lsattr, chattr, id and eject. + +Paul Fox + vi editing mode for ash, various other patches/fixes + +Roberto A. Foglietta + port: dnsd + +Bernhard Reutner-Fischer + misc + +Mike Frysinger + initial e2fsprogs, printenv, setarch, sum, misc + +Jie Zhang + fixed two bugs in msh and hush (exitcode of killed processes) + +Maxime Coste + paste implementation + +Roger Knecht + tree diff --git a/busybox-1_37_0/INSTALL b/busybox-1_37_0/INSTALL new file mode 100644 index 000000000..750cfc45b --- /dev/null +++ b/busybox-1_37_0/INSTALL @@ -0,0 +1,142 @@ +Building: +========= + +The BusyBox build process is similar to the Linux kernel build: + + make menuconfig # This creates a file called ".config" + make # This creates the "busybox" executable + make install # or make CONFIG_PREFIX=/path/from/root install + +The full list of configuration and install options is available by typing: + + make help + +Quick Start: +============ + +The easy way to try out BusyBox for the first time, without having to install +it, is to enable all features and then use "standalone shell" mode with a +blank command $PATH. + +To enable all features, use "make defconfig", which produces the largest +general-purpose configuration. It's allyesconfig minus debugging options, +optional packaging choices, and a few special-purpose features requiring +extra configuration to use. Then enable "standalone shell" feature: + + make defconfig + make menuconfig + # select Busybox Settings + # then General Configuration + # then exec prefers applets + # exit back to top level menu + # select Shells + # then Standalone shell + # exit back to top level menu + # exit and save new configuration + # OR + # use these commands to modify .config directly: + sed -e 's/.*FEATURE_PREFER_APPLETS.*/CONFIG_FEATURE_PREFER_APPLETS=y/' -i .config + sed -e 's/.*FEATURE_SH_STANDALONE.*/CONFIG_FEATURE_SH_STANDALONE=y/' -i .config + make + PATH= ./busybox ash + +Standalone shell mode causes busybox's built-in command shell to run +any built-in busybox applets directly, without looking for external +programs by that name. Supplying an empty command path (as above) means +the only commands busybox can find are the built-in ones. + +Note that the standalone shell requires CONFIG_BUSYBOX_EXEC_PATH +to be set appropriately, depending on whether or not /proc/self/exe is +available. If you do not have /proc, then point that config option +to the location of your busybox binary, usually /bin/busybox. +Another solution is to patch the kernel (see +examples/linux-*_proc_self_exe.patch) to make exec("/proc/self/exe") +always work. + +Configuring Busybox: +==================== + +Busybox is optimized for size, but enabling the full set of functionality +still results in a fairly large executable -- more than 1 megabyte when +statically linked. To save space, busybox can be configured with only the +set of applets needed for each environment. The minimal configuration, with +all applets disabled, produces a 4k executable. (It's useless, but very small.) + +The manual configurator "make menuconfig" modifies the existing configuration. +(For systems without ncurses, try "make config" instead.) The two most +interesting starting configurations are "make allnoconfig" (to start with +everything disabled and add just what you need), and "make defconfig" (to +start with everything enabled and remove what you don't need). If menuconfig +is run without an existing configuration, make defconfig will run first to +create a known starting point. + +Other starting configurations (mostly used for testing purposes) include +"make allbareconfig" (enables all applets but disables all optional features), +"make allyesconfig" (enables absolutely everything including debug features), +and "make randconfig" (produce a random configuration). The configs/ directory +contains a number of additional configuration files ending in _defconfig which +are useful in specific cases. "make help" will list them. + +Configuring BusyBox produces a file ".config", which can be saved for future +use. Run "make oldconfig" to bring a .config file from an older version of +busybox up to date. + +Installing Busybox: +=================== + +Busybox is a single executable that can behave like many different commands, +and BusyBox uses the name it was invoked under to determine the desired +behavior. (Try "mv busybox ls" and then "./ls -l".) + +Installing busybox consists of creating symlinks (or hardlinks) to the busybox +binary for each applet enabled in busybox, and making sure these symlinks are +in the shell's command $PATH. Running "make install" creates these symlinks, +or "make install-hardlinks" creates hardlinks instead (useful on systems with +a limited number of inodes). This install process uses the file +"busybox.links" (created by make), which contains the list of enabled applets +and the path at which to install them. + +Installing links to busybox is not always necessary. The special applet name +"busybox" (or with any optional suffix, such as "busybox-static") uses the +first argument to determine which applet to behave as, for example +"./busybox cat LICENSE". (Running the busybox applet with no arguments gives +a list of all enabled applets.) The standalone shell can also call busybox +applets without links to busybox under other names in the filesystem. You can +also configure a standalone install capability into the busybox base applet, +and then install such links at runtime with one of "busybox --install" (for +hardlinks) or "busybox --install -s" (for symlinks). + +If you enabled the busybox shared library feature (libbusybox.so) and want +to run tests without installing, set your LD_LIBRARY_PATH accordingly when +running the executable: + + LD_LIBRARY_PATH=`pwd` ./busybox + +Building out-of-tree: +===================== + +By default, the BusyBox build puts its temporary files in the source tree. +Building from a read-only source tree, or building multiple configurations from +the same source directory, requires the ability to put the temporary files +somewhere else. + +To build out of tree, cd to an empty directory and configure busybox from there: + + make KBUILD_SRC=/path/to/source -f /path/to/source/Makefile defconfig + make + make install + +Alternately, use the O=$BUILDPATH option (with an absolute path) during the +configuration step, as in: + + make O=/some/empty/directory allyesconfig + cd /some/empty/directory + make + make CONFIG_PREFIX=. install + +More Information: +================= + +Se also the busybox FAQ, under the questions "How can I get started using +BusyBox" and "How do I build a BusyBox-based system?" The BusyBox FAQ is +available from http://www.busybox.net/FAQ.html diff --git a/busybox-1_37_0/LICENSE b/busybox-1_37_0/LICENSE new file mode 100644 index 000000000..6f50a7164 --- /dev/null +++ b/busybox-1_37_0/LICENSE @@ -0,0 +1,348 @@ +--- A note on GPL versions + +BusyBox is distributed under version 2 of the General Public License (included +in its entirety, below). Version 2 is the only version of this license which +this version of BusyBox (or modified versions derived from this one) may be +distributed under. + +------------------------------------------------------------------------ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc. + 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Library General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + , 1 April 1989 + Ty Coon, President of Vice + +This General Public License does not permit incorporating your program into +proprietary programs. If your program is a subroutine library, you may +consider it more useful to permit linking proprietary applications with the +library. If this is what you want to do, use the GNU Library General +Public License instead of this License. diff --git a/busybox-1_37_0/Makefile b/busybox-1_37_0/Makefile new file mode 100644 index 000000000..1ec8ac3fd --- /dev/null +++ b/busybox-1_37_0/Makefile @@ -0,0 +1,1329 @@ +VERSION = 1 +PATCHLEVEL = 37 +SUBLEVEL = 0 +EXTRAVERSION = +NAME = Unnamed + +# *DOCUMENTATION* +# To see a list of typical targets execute "make help" +# More info can be located in ./README +# Comments in this file are targeted only to the developer, do not +# expect to learn how to build the kernel reading this file. + +# Do not print "Entering directory ..." +MAKEFLAGS += --no-print-directory + +# We are using a recursive build, so we need to do a little thinking +# to get the ordering right. +# +# Most importantly: sub-Makefiles should only ever modify files in +# their own directory. If in some directory we have a dependency on +# a file in another dir (which doesn't happen often, but it's often +# unavoidable when linking the built-in.o targets which finally +# turn into busybox), we will call a sub make in that other dir, and +# after that we are sure that everything which is in that other dir +# is now up to date. +# +# The only cases where we need to modify files which have global +# effects are thus separated out and done before the recursive +# descending is started. They are now explicitly listed as the +# prepare rule. + +# To put more focus on warnings, be less verbose as default +# Use 'make V=1' to see the full commands + +ifdef V + ifeq ("$(origin V)", "command line") + KBUILD_VERBOSE = $(V) + endif +endif +ifndef KBUILD_VERBOSE + KBUILD_VERBOSE = 0 +endif + +# Call sparse as part of compilation of C files +# Use 'make C=1' to enable sparse checking + +ifdef C + ifeq ("$(origin C)", "command line") + KBUILD_CHECKSRC = $(C) + endif +endif +ifndef KBUILD_CHECKSRC + KBUILD_CHECKSRC = 0 +endif + +# Use make M=dir to specify directory of external module to build +# Old syntax make ... SUBDIRS=$PWD is still supported +# Setting the environment variable KBUILD_EXTMOD take precedence +ifdef SUBDIRS + KBUILD_EXTMOD ?= $(SUBDIRS) +endif +ifdef M + ifeq ("$(origin M)", "command line") + KBUILD_EXTMOD := $(M) + endif +endif + + +# kbuild supports saving output files in a separate directory. +# To locate output files in a separate directory two syntaxes are supported. +# In both cases the working directory must be the root of the kernel src. +# 1) O= +# Use "make O=dir/to/store/output/files/" +# +# 2) Set KBUILD_OUTPUT +# Set the environment variable KBUILD_OUTPUT to point to the directory +# where the output files shall be placed. +# export KBUILD_OUTPUT=dir/to/store/output/files/ +# make +# +# The O= assignment takes precedence over the KBUILD_OUTPUT environment +# variable. + + +# KBUILD_SRC is set on invocation of make in OBJ directory +# KBUILD_SRC is not intended to be used by the regular user (for now) +ifeq ($(KBUILD_SRC),) + +# OK, Make called in directory where kernel src resides +# Do we want to locate output files in a separate directory? +ifdef O + ifeq ("$(origin O)", "command line") + KBUILD_OUTPUT := $(O) + endif +endif + +# That's our default target when none is given on the command line +PHONY := _all +_all: + +ifneq ($(KBUILD_OUTPUT),) +# Invoke a second make in the output directory, passing relevant variables +# check that the output directory actually exists +saved-output := $(KBUILD_OUTPUT) +KBUILD_OUTPUT := $(shell cd $(KBUILD_OUTPUT) && /bin/pwd) +$(if $(KBUILD_OUTPUT),, \ + $(error output directory "$(saved-output)" does not exist)) + +PHONY += $(MAKECMDGOALS) + +$(filter-out _all,$(MAKECMDGOALS)) _all: + $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \ + KBUILD_SRC=$(CURDIR) \ + KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile $@ + +# Leave processing to above invocation of make +skip-makefile := 1 +endif # ifneq ($(KBUILD_OUTPUT),) +endif # ifeq ($(KBUILD_SRC),) + +# We process the rest of the Makefile if this is the final invocation of make +ifeq ($(skip-makefile),) + +# If building an external module we do not care about the all: rule +# but instead _all depend on modules +PHONY += all +ifeq ($(KBUILD_EXTMOD),) +_all: all +else +_all: modules +endif + +srctree := $(if $(KBUILD_SRC),$(KBUILD_SRC),$(CURDIR)) +TOPDIR := $(srctree) +# FIXME - TOPDIR is obsolete, use srctree/objtree +objtree := $(CURDIR) +src := $(srctree) +obj := $(objtree) + +VPATH := $(srctree)$(if $(KBUILD_EXTMOD),:$(KBUILD_EXTMOD)) + +export srctree objtree VPATH TOPDIR + + +# Cross compiling and selecting different set of gcc/bin-utils +# --------------------------------------------------------------------------- +# +# When performing cross compilation for other architectures ARCH shall be set +# to the target architecture. (See arch/* for the possibilities). +# ARCH can be set during invocation of make: +# make ARCH=ia64 +# Another way is to have ARCH set in the environment. +# The default ARCH is the host where make is executed. + +# CROSS_COMPILE specify the prefix used for all executables used +# during compilation. Only gcc and related bin-utils executables +# are prefixed with $(CROSS_COMPILE). +# CROSS_COMPILE can be set on the command line +# make CROSS_COMPILE=ia64-linux- +# Alternatively CROSS_COMPILE can be set in the environment. +# Default value for CROSS_COMPILE is not to prefix executables +# Note: Some architectures assign CROSS_COMPILE in their arch/*/Makefile + +CROSS_COMPILE ?= +# bbox: we may have CONFIG_CROSS_COMPILER_PREFIX in .config, +# and it has not been included yet... thus using an awkward syntax. +ifeq ($(CROSS_COMPILE),) +CROSS_COMPILE := $(shell grep ^CONFIG_CROSS_COMPILER_PREFIX .config 2>/dev/null) +CROSS_COMPILE := $(subst CONFIG_CROSS_COMPILER_PREFIX=,,$(CROSS_COMPILE)) +CROSS_COMPILE := $(subst ",,$(CROSS_COMPILE)) +#") +endif + +# SUBARCH tells the usermode build what the underlying arch is. That is set +# first, and if a usermode build is happening, the "ARCH=um" on the command +# line overrides the setting of ARCH below. If a native build is happening, +# then ARCH is assigned, getting whatever value it gets normally, and +# SUBARCH is subsequently ignored. + +ifneq ($(CROSS_COMPILE),) +SUBARCH := $(shell echo $(CROSS_COMPILE) | cut -d- -f1 | sed 's:^.*/::g') +else +SUBARCH := $(shell uname -m) +endif +SUBARCH := $(shell echo $(SUBARCH) | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \ + -e s/arm.*/arm/ -e s/sa110/arm/ \ + -e s/s390x/s390/ -e s/parisc64/parisc/ \ + -e s/ppc.*/powerpc/ -e s/mips.*/mips/ ) + +ARCH ?= $(SUBARCH) + +# Architecture as present in compile.h +UTS_MACHINE := $(ARCH) + +# SHELL used by kbuild +CONFIG_SHELL := $(shell if [ -x "$$BASH" ]; then echo $$BASH; \ + else if [ -x /bin/bash ]; then echo /bin/bash; \ + else echo sh; fi ; fi) + +# Decide whether to build built-in, modular, or both. +# Normally, just do built-in. + +KBUILD_MODULES := +KBUILD_BUILTIN := 1 + +# If we have only "make modules", don't compile built-in objects. +# When we're building modules with modversions, we need to consider +# the built-in objects during the descend as well, in order to +# make sure the checksums are uptodate before we record them. + +ifeq ($(MAKECMDGOALS),modules) + KBUILD_BUILTIN := $(if $(CONFIG_MODVERSIONS),1) +endif + +# If we have "make modules", compile modules +# in addition to whatever we do anyway. +# Just "make" or "make all" shall build modules as well + +ifneq ($(filter all _all modules,$(MAKECMDGOALS)),) + KBUILD_MODULES := 1 +endif + +ifeq ($(MAKECMDGOALS),) + KBUILD_MODULES := 1 +endif + +export KBUILD_MODULES KBUILD_BUILTIN +export KBUILD_CHECKSRC KBUILD_SRC KBUILD_EXTMOD + +# Beautify output +# --------------------------------------------------------------------------- +# +# Normally, we echo the whole command before executing it. By making +# that echo $($(quiet)$(cmd)), we now have the possibility to set +# $(quiet) to choose other forms of output instead, e.g. +# +# quiet_cmd_cc_o_c = Compiling $(RELDIR)/$@ +# cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< +# +# If $(quiet) is empty, the whole command will be printed. +# If it is set to "quiet_", only the short version will be printed. +# If it is set to "silent_", nothing wil be printed at all, since +# the variable $(silent_cmd_cc_o_c) doesn't exist. +# +# A simple variant is to prefix commands with $(Q) - that's useful +# for commands that shall be hidden in non-verbose mode. +# +# $(Q)ln $@ :< +# +# If KBUILD_VERBOSE equals 0 then the above command will be hidden. +# If KBUILD_VERBOSE equals 1 then the above command is displayed. + +ifeq ($(KBUILD_VERBOSE),1) + quiet = + Q = +else + quiet=quiet_ + Q = @ +endif + +# If the user is running make -s (silent mode), suppress echoing of +# commands + +ifneq ($(findstring s,$(MAKEFLAGS)),) + quiet=silent_ +endif + +export quiet Q KBUILD_VERBOSE + + +# Look for make include files relative to root of kernel src +MAKEFLAGS += --include-dir=$(srctree) + +HOSTCC = gcc +HOSTCXX = g++ +HOSTCFLAGS := +HOSTCXXFLAGS := +# We need some generic definitions +include $(srctree)/scripts/Kbuild.include + +HOSTCFLAGS += $(call hostcc-option,-Wall -Wstrict-prototypes -O2 -fomit-frame-pointer,) +HOSTCXXFLAGS += -O2 + +# For maximum performance (+ possibly random breakage, uncomment +# the following) + +MAKEFLAGS += -rR + +# Make variables (CC, etc...) + +AS = $(CROSS_COMPILE)as +CC = $(CROSS_COMPILE)gcc +LD = $(CC) -nostdlib +CPP = $(CC) -E +AR = $(CROSS_COMPILE)ar +NM = $(CROSS_COMPILE)nm +STRIP = $(CROSS_COMPILE)strip +OBJCOPY = $(CROSS_COMPILE)objcopy +OBJDUMP = $(CROSS_COMPILE)objdump +PKG_CONFIG ?= $(CROSS_COMPILE)pkg-config +AWK = awk +GENKSYMS = scripts/genksyms/genksyms +DEPMOD = /sbin/depmod +KALLSYMS = scripts/kallsyms +PERL = perl +CHECK = sparse + +CHECKFLAGS := -D__linux__ -Dlinux -D__STDC__ -Dunix -D__unix__ -Wbitwise $(CF) +MODFLAGS = -DMODULE +CFLAGS_MODULE = $(MODFLAGS) +AFLAGS_MODULE = $(MODFLAGS) +LDFLAGS_MODULE = -r +CFLAGS_KERNEL = +AFLAGS_KERNEL = + + +# Use LINUXINCLUDE when you must reference the include/ directory. +# Needed to be compatible with the O= option +CFLAGS := $(CFLAGS) +# Added only to final link stage of busybox binary +CFLAGS_busybox := $(CFLAGS_busybox) +CPPFLAGS := $(CPPFLAGS) +AFLAGS := $(AFLAGS) +LDFLAGS := $(LDFLAGS) +LDLIBS := + +# Read KERNELRELEASE from .kernelrelease (if it exists) +KERNELRELEASE = $(shell cat .kernelrelease 2> /dev/null) +KERNELVERSION = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) + +export VERSION PATCHLEVEL SUBLEVEL KERNELRELEASE KERNELVERSION \ + ARCH CONFIG_SHELL HOSTCC HOSTCFLAGS CROSS_COMPILE AS LD CC \ + CPP AR NM STRIP OBJCOPY OBJDUMP MAKE AWK GENKSYMS PERL UTS_MACHINE \ + HOSTCXX HOSTCXXFLAGS LDFLAGS_MODULE CHECK CHECKFLAGS + +export CPPFLAGS NOSTDINC_FLAGS LINUXINCLUDE OBJCOPYFLAGS LDFLAGS +export CFLAGS CFLAGS_KERNEL CFLAGS_MODULE +export AFLAGS AFLAGS_KERNEL AFLAGS_MODULE +export FLTFLAGS + +# When compiling out-of-tree modules, put MODVERDIR in the module +# tree rather than in the kernel tree. The kernel tree might +# even be read-only. +export MODVERDIR := $(if $(KBUILD_EXTMOD),$(firstword $(KBUILD_EXTMOD))/).tmp_versions + +# Files to ignore in find ... statements + +RCS_FIND_IGNORE := \( -name SCCS -o -name BitKeeper -o -name .svn -o -name CVS -o -name .pc -o -name .hg -o -name .git \) -prune -o +export RCS_TAR_IGNORE := --exclude SCCS --exclude BitKeeper --exclude .svn --exclude CVS --exclude .pc --exclude .hg --exclude .git + +# =========================================================================== +# Rules shared between *config targets and build targets + +# Basic helpers built in scripts/ +PHONY += scripts_basic +scripts_basic: + $(Q)$(MAKE) $(build)=scripts/basic + +# To avoid any implicit rule to kick in, define an empty command. +scripts/basic/%: scripts_basic ; + +# This target generates Kbuild's and Config.in's from *.c files +PHONY += gen_build_files +gen_build_files: $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c) $(wildcard $(srctree)/embed/*) + $(Q)$(srctree)/scripts/gen_build_files.sh $(srctree) $(objtree) + +# bbox: we have helpers in applets/ +# we depend on scripts_basic, since scripts/basic/fixdep +# must be built before any other host prog +PHONY += applets_dir +applets_dir: scripts_basic gen_build_files include/config/MARKER + $(Q)$(MAKE) $(build)=applets + +applets/%: applets_dir ; + +PHONY += outputmakefile +# outputmakefile generates a Makefile in the output directory, if using a +# separate output directory. This allows convenient use of make in the +# output directory. +outputmakefile: +ifneq ($(KBUILD_SRC),) + $(Q)$(CONFIG_SHELL) $(srctree)/scripts/mkmakefile \ + $(srctree) $(objtree) $(VERSION) $(PATCHLEVEL) +endif + +# To make sure we do not include .config for any of the *config targets +# catch them early, and hand them over to scripts/kconfig/Makefile +# It is allowed to specify more targets when calling make, including +# mixing *config targets and build targets. +# For example 'make oldconfig all'. +# Detect when mixed targets is specified, and make a second invocation +# of make so .config is not included in this case either (for *config). + +no-dot-config-targets := clean mrproper distclean \ + cscope TAGS tags help %docs +#bbox# check% is removed from above + +config-targets := 0 +mixed-targets := 0 +dot-config := 1 + +ifneq ($(filter $(no-dot-config-targets), $(MAKECMDGOALS)),) + ifeq ($(filter-out $(no-dot-config-targets), $(MAKECMDGOALS)),) + dot-config := 0 + endif +endif + +ifeq ($(KBUILD_EXTMOD),) + ifneq ($(filter config %config,$(MAKECMDGOALS)),) + config-targets := 1 + ifneq ($(filter-out config %config,$(MAKECMDGOALS)),) + mixed-targets := 1 + endif + endif +endif + +ifeq ($(mixed-targets),1) +# =========================================================================== +# We're called with mixed targets (*config and build targets). +# Handle them one by one. + +%:: FORCE + $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= $@ + +else +ifeq ($(config-targets),1) +# =========================================================================== +# *config targets only - make sure prerequisites are updated, and descend +# in scripts/kconfig to make the *config target + +# Read arch specific Makefile to set KBUILD_DEFCONFIG as needed. +# KBUILD_DEFCONFIG may point out an alternative default configuration +# used for 'make defconfig' +-include $(srctree)/arch/$(ARCH)/Makefile +export KBUILD_DEFCONFIG + +config: scripts_basic outputmakefile gen_build_files FORCE + $(Q)mkdir -p include + $(Q)$(MAKE) $(build)=scripts/kconfig $@ + $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= .kernelrelease + +%config: scripts_basic outputmakefile gen_build_files FORCE + $(Q)mkdir -p include + $(Q)$(MAKE) $(build)=scripts/kconfig $@ + $(Q)$(MAKE) -C $(srctree) KBUILD_SRC= .kernelrelease + +else +# =========================================================================== +# Build targets only - this includes busybox, arch specific targets, clean +# targets and others. In general all targets except *config targets. + +ifeq ($(KBUILD_EXTMOD),) +# Additional helpers built in scripts/ +# Carefully list dependencies so we do not try to build scripts twice +# in parallel +PHONY += scripts +scripts: gen_build_files scripts_basic include/config/MARKER + $(Q)$(MAKE) $(build)=$(@) + +scripts_basic: include/autoconf.h + +# Objects we will link into busybox / subdirs we need to visit +core-y := \ + applets/ \ + +libs-y := \ + archival/ \ + archival/libarchive/ \ + console-tools/ \ + coreutils/ \ + coreutils/libcoreutils/ \ + debianutils/ \ + klibc-utils/ \ + e2fsprogs/ \ + editors/ \ + findutils/ \ + init/ \ + libbb/ \ + libpwdgrp/ \ + loginutils/ \ + mailutils/ \ + miscutils/ \ + modutils/ \ + networking/ \ + networking/libiproute/ \ + networking/udhcp/ \ + printutils/ \ + procps/ \ + runit/ \ + selinux/ \ + shell/ \ + sysklogd/ \ + util-linux/ \ + util-linux/volume_id/ \ + +endif # KBUILD_EXTMOD + +ifeq ($(dot-config),1) +# In this section, we need .config + +# Read in dependencies to all Kconfig* files, make sure to run +# oldconfig if changes are detected. +-include .kconfig.d + +-include .config + +# If .config needs to be updated, it will be done via the dependency +# that autoconf has on .config. +# To avoid any implicit rule to kick in, define an empty command +.config .kconfig.d: ; + +-include $(srctree)/arch/$(ARCH)/Makefile + +# Now we can define CFLAGS etc according to .config +include $(srctree)/Makefile.flags + +# If .config is newer than include/autoconf.h, someone tinkered +# with it and forgot to run make oldconfig. +# If kconfig.d is missing then we are probarly in a cleaned tree so +# we execute the config step to be sure to catch updated Kconfig files +include/autoconf.h: .kconfig.d .config $(wildcard $(srctree)/*/*.c) $(wildcard $(srctree)/*/*/*.c) | gen_build_files + $(Q)$(MAKE) -f $(srctree)/Makefile silentoldconfig + +include/usage.h: gen_build_files + +else +# Dummy target needed, because used as prerequisite +include/autoconf.h: ; +endif + +# The all: target is the default when no target is given on the +# command line. +# This allow a user to issue only 'make' to build a kernel including modules +# Defaults busybox but it is usually overridden in the arch makefile +all: busybox doc + +# arch Makefile may override CC so keep this after arch Makefile is included +#bbox# NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) +CHECKFLAGS += $(NOSTDINC_FLAGS) + +# Default kernel image to build when no specific target is given. +# KBUILD_IMAGE may be overruled on the commandline or +# set in the environment +# Also any assignments in arch/$(ARCH)/Makefile take precedence over +# this default value +export KBUILD_IMAGE ?= busybox + +# +# INSTALL_PATH specifies where to place the updated kernel and system map +# images. Default is /boot, but you can set it to other values +export INSTALL_PATH ?= /boot + +# +# INSTALL_MOD_PATH specifies a prefix to MODLIB for module directory +# relocations required by build roots. This is not defined in the +# makefile but the argument can be passed to make if needed. +# + +MODLIB = $(INSTALL_MOD_PATH)/lib/modules/$(KERNELRELEASE) +export MODLIB + + +ifeq ($(KBUILD_EXTMOD),) +busybox-dirs := $(patsubst %/,%,$(filter %/, $(core-y) $(core-m) $(libs-y) $(libs-m))) + +busybox-alldirs := $(sort $(busybox-dirs) $(patsubst %/,%,$(filter %/, \ + $(core-n) $(core-) $(libs-n) $(libs-) \ + ))) + +core-y := $(patsubst %/, %/built-in.o, $(core-y)) +libs-y1 := $(patsubst %/, %/lib.a, $(libs-y)) +libs-y2 := $(patsubst %/, %/built-in.o, $(libs-y)) +libs-y := $(libs-y1) $(libs-y2) + +# Build busybox +# --------------------------------------------------------------------------- +# busybox is build from the objects selected by $(busybox-init) and +# $(busybox-main). Most are built-in.o files from top-level directories +# in the kernel tree, others are specified in arch/$(ARCH)Makefile. +# Ordering when linking is important, and $(busybox-init) must be first. +# +# busybox +# ^ +# | +# +-< $(busybox-init) +# | +--< init/version.o + more +# | +# +--< $(busybox-main) +# | +--< driver/built-in.o mm/built-in.o + more +# | +# +-< kallsyms.o (see description in CONFIG_KALLSYMS section) +# +# busybox version (uname -v) cannot be updated during normal +# descending-into-subdirs phase since we do not yet know if we need to +# update busybox. +# Therefore this step is delayed until just before final link of busybox - +# except in the kallsyms case where it is done just before adding the +# symbols to the kernel. +# +# System.map is generated to document addresses of all kernel symbols + +busybox-all := $(core-y) $(libs-y) + +# Rule to link busybox - also used during CONFIG_KALLSYMS +# May be overridden by arch/$(ARCH)/Makefile +quiet_cmd_busybox__ ?= LINK $@ + cmd_busybox__ ?= $(srctree)/scripts/trylink \ + "$@" \ + "$(CC)" \ + "$(CFLAGS) $(CFLAGS_busybox)" \ + "$(LDFLAGS) $(EXTRA_LDFLAGS)" \ + "$(core-y)" \ + "$(libs-y)" \ + "$(LDLIBS)" \ + "$(CONFIG_EXTRA_LDLIBS)" \ + && $(srctree)/scripts/generate_BUFSIZ.sh --post include/common_bufsiz.h + +# Generate System.map +quiet_cmd_sysmap = SYSMAP + cmd_sysmap = $(CONFIG_SHELL) $(srctree)/scripts/mksysmap + +# Link of busybox +# If CONFIG_KALLSYMS is set .version is already updated +# Generate System.map and verify that the content is consistent +# Use + in front of the busybox_version rule to silent warning with make -j2 +# First command is ':' to allow us to use + in front of the rule +define rule_busybox__ + : + $(call cmd,busybox__) + $(Q)echo 'cmd_$@ := $(cmd_busybox__)' > $(@D)/.$(@F).cmd +endef + + +ifdef CONFIG_KALLSYMS +# Generate section listing all symbols and add it into busybox $(kallsyms.o) +# It's a three stage process: +# o .tmp_busybox1 has all symbols and sections, but __kallsyms is +# empty +# Running kallsyms on that gives us .tmp_kallsyms1.o with +# the right size - busybox version (uname -v) is updated during this step +# o .tmp_busybox2 now has a __kallsyms section of the right size, +# but due to the added section, some addresses have shifted. +# From here, we generate a correct .tmp_kallsyms2.o +# o The correct .tmp_kallsyms2.o is linked into the final busybox. +# o Verify that the System.map from busybox matches the map from +# .tmp_busybox2, just in case we did not generate kallsyms correctly. +# o If CONFIG_KALLSYMS_EXTRA_PASS is set, do an extra pass using +# .tmp_busybox3 and .tmp_kallsyms3.o. This is only meant as a +# temporary bypass to allow the kernel to be built while the +# maintainers work out what went wrong with kallsyms. + +ifdef CONFIG_KALLSYMS_EXTRA_PASS +last_kallsyms := 3 +else +last_kallsyms := 2 +endif + +kallsyms.o := .tmp_kallsyms$(last_kallsyms).o + +define verify_kallsyms + $(Q)$(if $($(quiet)cmd_sysmap), \ + echo ' $($(quiet)cmd_sysmap) .tmp_System.map' &&) \ + $(cmd_sysmap) .tmp_busybox$(last_kallsyms) .tmp_System.map + $(Q)cmp -s System.map .tmp_System.map || \ + (echo Inconsistent kallsyms data; \ + echo Try setting CONFIG_KALLSYMS_EXTRA_PASS; \ + rm .tmp_kallsyms* ; /bin/false ) +endef + +# Update busybox version before link +# Use + in front of this rule to silent warning about make -j1 +# First command is ':' to allow us to use + in front of this rule +cmd_ksym_ld = $(cmd_busybox__) +define rule_ksym_ld + : + +$(call cmd,busybox_version) + $(call cmd,busybox__) + $(Q)echo 'cmd_$@ := $(cmd_busybox__)' > $(@D)/.$(@F).cmd +endef + +# Generate .S file with all kernel symbols +quiet_cmd_kallsyms = KSYM $@ + cmd_kallsyms = $(NM) -n $< | $(KALLSYMS) \ + $(if $(CONFIG_KALLSYMS_ALL),--all-symbols) > $@ + +.tmp_kallsyms1.o .tmp_kallsyms2.o .tmp_kallsyms3.o: %.o: %.S scripts FORCE + $(call if_changed_dep,as_o_S) + +.tmp_kallsyms%.S: .tmp_busybox% $(KALLSYMS) + $(call cmd,kallsyms) + +# .tmp_busybox1 must be complete except kallsyms, so update busybox version +.tmp_busybox1: $(busybox-lds) $(busybox-all) FORCE + $(call if_changed_rule,ksym_ld) + +.tmp_busybox2: $(busybox-lds) $(busybox-all) .tmp_kallsyms1.o FORCE + $(call if_changed,busybox__) + +.tmp_busybox3: $(busybox-lds) $(busybox-all) .tmp_kallsyms2.o FORCE + $(call if_changed,busybox__) + +# Needs to visit scripts/ before $(KALLSYMS) can be used. +$(KALLSYMS): scripts ; + +# Generate some data for debugging strange kallsyms problems +debug_kallsyms: .tmp_map$(last_kallsyms) + +.tmp_map%: .tmp_busybox% FORCE + ($(OBJDUMP) -h $< | $(AWK) '/^ +[0-9]/{print $$4 " 0 " $$2}'; $(NM) $<) | sort > $@ + +.tmp_map3: .tmp_map2 + +.tmp_map2: .tmp_map1 + +endif # ifdef CONFIG_KALLSYMS + +# busybox image - including updated kernel symbols +busybox_unstripped: $(busybox-all) FORCE + $(call if_changed_rule,busybox__) + $(Q)rm -f .old_version + +busybox: busybox_unstripped +ifeq ($(SKIP_STRIP),y) + $(Q)cp $< $@ +else + $(Q)$(STRIP) -s --remove-section=.note --remove-section=.comment \ + busybox_unstripped -o $@ +# strip is confused by PIE executable and does not set exec bits + $(Q)chmod a+x $@ +endif + +# The actual objects are generated when descending, +# make sure no implicit rule kicks in +$(sort $(busybox-all)): $(busybox-dirs) ; + +# Handle descending into subdirectories listed in $(busybox-dirs) +# Preset locale variables to speed up the build process. Limit locale +# tweaks to this spot to avoid wrong language settings when running +# make menuconfig etc. +# Error messages still appears in the original language + +PHONY += $(busybox-dirs) +$(busybox-dirs): prepare scripts + $(Q)$(MAKE) $(build)=$@ + +# Build the kernel release string +# The KERNELRELEASE is stored in a file named .kernelrelease +# to be used when executing for example make install or make modules_install +# +# Take the contents of any files called localversion* and the config +# variable CONFIG_LOCALVERSION and append them to KERNELRELEASE. +# LOCALVERSION from the command line override all of this + +nullstring := +space := $(nullstring) # end of line + +___localver = $(objtree)/localversion* $(srctree)/localversion* +__localver = $(sort $(wildcard $(___localver))) +# skip backup files (containing '~') +_localver = $(foreach f, $(__localver), $(if $(findstring ~, $(f)),,$(f))) + +localver = $(subst $(space),, \ + $(shell cat /dev/null $(_localver)) \ + $(patsubst "%",%,$(CONFIG_LOCALVERSION))) + +# If CONFIG_LOCALVERSION_AUTO is set scripts/setlocalversion is called +# and if the SCM is know a tag from the SCM is appended. +# The appended tag is determinded by the SCM used. +# +# Currently, only git is supported. +# Other SCMs can edit scripts/setlocalversion and add the appropriate +# checks as needed. +ifdef _BB_DISABLED_CONFIG_LOCALVERSION_AUTO + _localver-auto = $(shell $(CONFIG_SHELL) \ + $(srctree)/scripts/setlocalversion $(srctree)) + localver-auto = $(LOCALVERSION)$(_localver-auto) +endif + +localver-full = $(localver)$(localver-auto) + +# Store (new) KERNELRELASE string in .kernelrelease +kernelrelease = $(KERNELVERSION)$(localver-full) +.kernelrelease: FORCE + $(Q)rm -f $@ + $(Q)echo $(kernelrelease) > $@ + + +# Things we need to do before we recursively start building the kernel +# or the modules are listed in "prepare". +# A multi level approach is used. prepareN is processed before prepareN-1. +# archprepare is used in arch Makefiles and when processed asm symlink, +# version.h and scripts_basic is processed / created. + +# Listed in dependency order +PHONY += prepare archprepare prepare0 prepare1 prepare2 prepare3 + +# prepare-all is deprecated, use prepare as valid replacement +PHONY += prepare-all + +# prepare3 is used to check if we are building in a separate output directory, +# and if so do: +# 1) Check that make has not been executed in the kernel src $(srctree) +# 2) Create the include2 directory, used for the second asm symlink +prepare3: .kernelrelease +ifneq ($(KBUILD_SRC),) + @echo ' Using $(srctree) as source for busybox' + $(Q)if [ -f $(srctree)/.config ]; then \ + echo " $(srctree) is not clean, please run 'make mrproper'";\ + echo " in the '$(srctree)' directory.";\ + /bin/false; \ + fi; + $(Q)if [ ! -d include2 ]; then mkdir -p include2; fi; + $(Q)ln -fsn $(srctree)/include/asm-$(ARCH) include2/asm +endif + +# prepare2 creates a makefile if using a separate output directory +prepare2: prepare3 outputmakefile + +prepare1: prepare2 include/config/MARKER +ifneq ($(KBUILD_MODULES),) + $(Q)mkdir -p $(MODVERDIR) + $(Q)rm -f $(MODVERDIR)/* +endif + +archprepare: prepare1 scripts_basic applets_dir + +prepare0: archprepare FORCE + $(Q)$(MAKE) $(build)=. + +# All the preparing.. +prepare prepare-all: prepare0 + +# Leave this as default for preprocessing busybox.lds.S, which is now +# done in arch/$(ARCH)/kernel/Makefile + +export CPPFLAGS_busybox.lds += -P -C -U$(ARCH) + +# FIXME: The asm symlink changes when $(ARCH) changes. That's +# hard to detect, but I suppose "make mrproper" is a good idea +# before switching between archs anyway. + +#bbox# include/asm: +#bbox# @echo ' SYMLINK $@ -> include/asm-$(ARCH)' +#bbox# $(Q)if [ ! -d include ]; then mkdir -p include; fi; +#bbox# @ln -fsn asm-$(ARCH) $@ + +# Split autoconf.h into include/linux/config/* +quiet_cmd_gen_bbconfigopts = GEN include/bbconfigopts.h + cmd_gen_bbconfigopts = $(srctree)/scripts/mkconfigs include/bbconfigopts.h include/bbconfigopts_bz2.h +quiet_cmd_gen_common_bufsiz = GEN include/common_bufsiz.h + cmd_gen_common_bufsiz = $(srctree)/scripts/generate_BUFSIZ.sh include/common_bufsiz.h +quiet_cmd_split_autoconf = SPLIT include/autoconf.h -> include/config/* + cmd_split_autoconf = scripts/basic/split-include include/autoconf.h include/config +quiet_cmd_gen_embedded_scripts = GEN include/embedded_scripts.h + cmd_gen_embedded_scripts = $(srctree)/scripts/embedded_scripts include/embedded_scripts.h $(srctree)/embed $(srctree)/applets_sh +#bbox# piggybacked generation of few .h files +include/config/MARKER: scripts/basic/split-include include/autoconf.h $(wildcard $(srctree)/embed/*) $(wildcard $(srctree)/applets_sh/*) $(srctree)/scripts/embedded_scripts + $(call cmd,split_autoconf) + $(call cmd,gen_bbconfigopts) + $(call cmd,gen_common_bufsiz) + $(call cmd,gen_embedded_scripts) + @touch $@ + +# Generate some files +# --------------------------------------------------------------------------- + +# KERNELRELEASE can change from a few different places, meaning version.h +# needs to be updated, so this check is forced on all builds + +uts_len := 64 + +define filechk_version.h + if [ `echo -n "$(KERNELRELEASE)" | wc -c ` -gt $(uts_len) ]; then \ + echo '"$(KERNELRELEASE)" exceeds $(uts_len) characters' >&2; \ + exit 1; \ + fi; \ + (echo \#define UTS_RELEASE \"$(KERNELRELEASE)\"; \ + echo \#define LINUX_VERSION_CODE `expr $(VERSION) \\* 65536 + $(PATCHLEVEL) \\* 256 + $(SUBLEVEL)`; \ + echo '#define KERNEL_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))'; \ + ) +endef + +# --------------------------------------------------------------------------- + +PHONY += depend dep +depend dep: + @echo '*** Warning: make $@ is unnecessary now.' + +# --------------------------------------------------------------------------- +# Modules + +ifdef _BB_DISABLED_CONFIG_MODULES + +# By default, build modules as well + +all: modules + +# Build modules + +PHONY += modules +modules: $(busybox-dirs) $(if $(KBUILD_BUILTIN),busybox) + @echo ' Building modules, stage 2.'; + $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost + + +# Target to prepare building external modules +PHONY += modules_prepare +modules_prepare: prepare scripts + +# Target to install modules +PHONY += modules_install +modules_install: _modinst_ _modinst_post + +PHONY += _modinst_ +_modinst_: + @if [ -z "`$(DEPMOD) -V 2>/dev/null | grep module-init-tools`" ]; then \ + echo "Warning: you may need to install module-init-tools"; \ + echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\ + sleep 1; \ + fi + @rm -rf $(MODLIB)/kernel + @rm -f $(MODLIB)/source + @mkdir -p $(MODLIB)/kernel + @ln -s $(srctree) $(MODLIB)/source + @if [ ! $(objtree) -ef $(MODLIB)/build ]; then \ + rm -f $(MODLIB)/build ; \ + ln -s $(objtree) $(MODLIB)/build ; \ + fi + $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst + +# If System.map exists, run depmod. This deliberately does not have a +# dependency on System.map since that would run the dependency tree on +# busybox. This depmod is only for convenience to give the initial +# boot a modules.dep even before / is mounted read-write. However the +# boot script depmod is the master version. +ifeq "$(strip $(INSTALL_MOD_PATH))" "" +depmod_opts := +else +depmod_opts := -b $(INSTALL_MOD_PATH) -r +endif +PHONY += _modinst_post +_modinst_post: _modinst_ + if [ -r System.map -a -x $(DEPMOD) ]; then $(DEPMOD) -ae -F System.map $(depmod_opts) $(KERNELRELEASE); fi + +else # CONFIG_MODULES + +# Modules not configured +# --------------------------------------------------------------------------- + +modules modules_install: FORCE + @echo + @echo "The present busybox configuration has modules disabled." + @echo "Type 'make config' and enable loadable module support." + @echo "Then build a kernel with module support enabled." + @echo + @exit 1 + +endif # CONFIG_MODULES + +### +# Cleaning is done on three levels. +# make clean Delete most generated files +# Leave enough to build external modules +# make mrproper Delete the current configuration, and all generated files +# make distclean Remove editor backup files, patch leftover files and the like + +# Directories & files removed with 'make clean' +CLEAN_DIRS += $(MODVERDIR) _install 0_lib +CLEAN_FILES += busybox busybox_unstripped* busybox.links \ + busybox*.suid busybox*.nosuid \ + System.map .kernelrelease \ + .tmp_kallsyms* .tmp_version .tmp_busybox* .tmp_System.map + +# Directories & files removed with 'make mrproper' +MRPROPER_DIRS += include/config include2 +MRPROPER_FILES += .config .config.old include/asm .version .old_version \ + include/NUM_APPLETS.h \ + include/common_bufsiz.h \ + include/autoconf.h \ + include/bbconfigopts.h \ + include/bbconfigopts_bz2.h \ + include/embedded_scripts.h \ + include/usage_compressed.h \ + include/applet_tables.h \ + include/applets.h \ + include/usage.h \ + applets/usage \ + .kernelrelease Module.symvers tags TAGS cscope* \ + busybox_old + +# clean - Delete most, but leave enough to build external modules +# +clean: rm-dirs := $(CLEAN_DIRS) +clean: rm-files := $(CLEAN_FILES) +clean-dirs := $(addprefix _clean_,$(srctree) $(busybox-alldirs)) + +PHONY += $(clean-dirs) clean archclean +$(clean-dirs): + $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) + +clean: archclean $(clean-dirs) + $(call cmd,rmdirs) + $(call cmd,rmfiles) + @find . $(RCS_FIND_IGNORE) \ + \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ + -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \ + -type f -print | xargs rm -f + +PHONY += doc-clean +doc-clean: rm-files := docs/busybox.pod \ + docs/BusyBox.html docs/busybox.1 docs/BusyBox.txt +doc-clean: + $(call cmd,rmfiles) + +# mrproper - Delete all generated files, including .config +# +mrproper: rm-dirs := $(wildcard $(MRPROPER_DIRS)) +mrproper: rm-files := $(wildcard $(MRPROPER_FILES)) +mrproper-dirs := $(addprefix _mrproper_,scripts) + +PHONY += $(mrproper-dirs) mrproper archmrproper +$(mrproper-dirs): + $(Q)$(MAKE) $(clean)=$(patsubst _mrproper_%,%,$@) + +mrproper: clean archmrproper $(mrproper-dirs) + $(call cmd,rmdirs) + $(call cmd,rmfiles) + @find . -name Config.src | sed 's/.src$$/.in/' | xargs -r rm -f + @find . -name Kbuild.src | sed 's/.src$$//' | xargs -r rm -f + +# distclean +# +PHONY += distclean + +distclean: mrproper + @find $(srctree) $(RCS_FIND_IGNORE) \ + \( -name '*.orig' -o -name '*.rej' -o -name '*~' \ + -o -name '*.bak' -o -name '#*#' -o -name '.*.orig' \ + -o -name '.*.rej' -o -name '*.tmp' -o -size 0 \ + -o -name '*%' -o -name '.*.cmd' -o -name 'core' \) \ + -type f -print | xargs rm -f + + +# Packaging of the kernel to various formats +# --------------------------------------------------------------------------- +# rpm target kept for backward compatibility +package-dir := $(srctree)/scripts/package + +%pkg: FORCE + $(Q)$(MAKE) $(build)=$(package-dir) $@ +rpm: FORCE + $(Q)$(MAKE) $(build)=$(package-dir) $@ + + +# Brief documentation of the typical targets used +# --------------------------------------------------------------------------- + +boards := $(wildcard $(srctree)/configs/*_defconfig) +boards := $(notdir $(boards)) + +-include $(srctree)/Makefile.help + +# Documentation targets +# --------------------------------------------------------------------------- +%docs: scripts_basic FORCE + $(Q)$(MAKE) $(build)=Documentation/DocBook $@ + +else # KBUILD_EXTMOD + +### +# External module support. +# When building external modules the kernel used as basis is considered +# read-only, and no consistency checks are made and the make +# system is not used on the basis kernel. If updates are required +# in the basis kernel ordinary make commands (without M=...) must +# be used. +# +# The following are the only valid targets when building external +# modules. +# make M=dir clean Delete all automatically generated files +# make M=dir modules Make all modules in specified dir +# make M=dir Same as 'make M=dir modules' +# make M=dir modules_install +# Install the modules build in the module directory +# Assumes install directory is already created + +# We are always building modules +KBUILD_MODULES := 1 +PHONY += crmodverdir +crmodverdir: + $(Q)mkdir -p $(MODVERDIR) + $(Q)rm -f $(MODVERDIR)/* + +PHONY += $(objtree)/Module.symvers +$(objtree)/Module.symvers: + @test -e $(objtree)/Module.symvers || ( \ + echo; \ + echo " WARNING: Symbol version dump $(objtree)/Module.symvers"; \ + echo " is missing; modules will have no dependencies and modversions."; \ + echo ) + +module-dirs := $(addprefix _module_,$(KBUILD_EXTMOD)) +PHONY += $(module-dirs) modules +$(module-dirs): crmodverdir $(objtree)/Module.symvers + $(Q)$(MAKE) $(build)=$(patsubst _module_%,%,$@) + +modules: $(module-dirs) + @echo ' Building modules, stage 2.'; + $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost + +PHONY += modules_install +modules_install: _emodinst_ _emodinst_post + +install-dir := $(if $(INSTALL_MOD_DIR),$(INSTALL_MOD_DIR),extra) +PHONY += _emodinst_ +_emodinst_: + $(Q)mkdir -p $(MODLIB)/$(install-dir) + $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modinst + +# Run depmod only is we have System.map and depmod is executable +quiet_cmd_depmod = DEPMOD $(KERNELRELEASE) + cmd_depmod = if [ -r System.map -a -x $(DEPMOD) ]; then \ + $(DEPMOD) -ae -F System.map \ + $(if $(strip $(INSTALL_MOD_PATH)), \ + -b $(INSTALL_MOD_PATH) -r) \ + $(KERNELRELEASE); \ + fi + +PHONY += _emodinst_post +_emodinst_post: _emodinst_ + $(call cmd,depmod) + +clean-dirs := $(addprefix _clean_,$(KBUILD_EXTMOD)) + +PHONY += $(clean-dirs) clean +$(clean-dirs): + $(Q)$(MAKE) $(clean)=$(patsubst _clean_%,%,$@) + +clean: rm-dirs := $(MODVERDIR) +clean: $(clean-dirs) + $(call cmd,rmdirs) + @find $(KBUILD_EXTMOD) $(RCS_FIND_IGNORE) \ + \( -name '*.[oas]' -o -name '*.ko' -o -name '.*.cmd' \ + -o -name '.*.d' -o -name '.*.tmp' -o -name '*.mod.c' \) \ + -type f -print | xargs rm -f + +# Dummies... +PHONY += prepare scripts +prepare: ; +scripts: ; +endif # KBUILD_EXTMOD + +# Generate tags for editors +# --------------------------------------------------------------------------- + +#We want __srctree to totally vanish out when KBUILD_OUTPUT is not set +#(which is the most common case IMHO) to avoid unneeded clutter in the big tags file. +#Adding $(srctree) adds about 20M on i386 to the size of the output file! + +ifeq ($(src),$(obj)) +__srctree = +else +__srctree = $(srctree)/ +endif + +ifeq ($(ALLSOURCE_ARCHS),) +ifeq ($(ARCH),um) +ALLINCLUDE_ARCHS := $(ARCH) $(SUBARCH) +else +ALLINCLUDE_ARCHS := $(ARCH) +endif +else +#Allow user to specify only ALLSOURCE_PATHS on the command line, keeping existing behaviour. +ALLINCLUDE_ARCHS := $(ALLSOURCE_ARCHS) +endif + +ALLSOURCE_ARCHS := $(ARCH) + +define all-sources + ( find -regex '.*\.[ch]$$' ) +endef + +quiet_cmd_cscope-file = FILELST cscope.files + cmd_cscope-file = (echo \-k; echo \-q; $(all-sources)) > cscope.files + +quiet_cmd_cscope = MAKE cscope.out + cmd_cscope = cscope -b + +cscope: FORCE + $(call cmd,cscope-file) + $(call cmd,cscope) + +quiet_cmd_TAGS = MAKE $@ +define cmd_TAGS + rm -f $@; \ + ETAGSF=`etags --version | grep -i exuberant >/dev/null && \ + echo "-I __initdata,__exitdata,__acquires,__releases \ + -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \ + --extra=+f --c-kinds=+px"`; \ + $(all-sources) | xargs etags $$ETAGSF -a +endef + +TAGS: FORCE + $(call cmd,TAGS) + + +quiet_cmd_tags = MAKE $@ +define cmd_tags + rm -f $@; \ + CTAGSF=`ctags --version | grep -i exuberant >/dev/null && \ + echo "-I __initdata,__exitdata,__acquires,__releases \ + -I EXPORT_SYMBOL,EXPORT_SYMBOL_GPL \ + --extra=+f --c-kinds=+px"`; \ + $(all-sources) | xargs ctags $$CTAGSF -a +endef + +tags: FORCE + $(call cmd,tags) + + +# Scripts to check various things for consistency +# --------------------------------------------------------------------------- + +includecheck: + find * $(RCS_FIND_IGNORE) \ + -name '*.[hcS]' -type f -print | sort \ + | xargs $(PERL) -w scripts/checkincludes.pl + +versioncheck: + find * $(RCS_FIND_IGNORE) \ + -name '*.[hcS]' -type f -print | sort \ + | xargs $(PERL) -w scripts/checkversion.pl + +namespacecheck: + $(PERL) $(srctree)/scripts/namespace.pl + +endif #ifeq ($(config-targets),1) +endif #ifeq ($(mixed-targets),1) + +PHONY += checkstack +checkstack: + $(OBJDUMP) -d busybox $$(find . -name '*.ko') | \ + $(PERL) $(src)/scripts/checkstack.pl $(ARCH) + +kernelrelease: + $(if $(wildcard .kernelrelease), $(Q)echo $(KERNELRELEASE), \ + $(error kernelrelease not valid - run 'make *config' to update it)) +kernelversion: + @echo $(KERNELVERSION) + +# Single targets +# --------------------------------------------------------------------------- +# Single targets are compatible with: +# - build whith mixed source and output +# - build with separate output dir 'make O=...' +# - external modules +# +# target-dir => where to store outputfile +# build-dir => directory in kernel source tree to use + +ifeq ($(KBUILD_EXTMOD),) + build-dir = $(patsubst %/,%,$(dir $@)) + target-dir = $(dir $@) +else + zap-slash=$(filter-out .,$(patsubst %/,%,$(dir $@))) + build-dir = $(KBUILD_EXTMOD)$(if $(zap-slash),/$(zap-slash)) + target-dir = $(if $(KBUILD_EXTMOD),$(dir $<),$(dir $@)) +endif + +%.s: %.c prepare scripts FORCE + $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) +%.i: %.c prepare scripts FORCE + $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) +%.o: %.c prepare scripts FORCE + $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) +%.lst: %.c prepare scripts FORCE + $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) +%.s: %.S prepare scripts FORCE + $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) +%.o: %.S prepare scripts FORCE + $(Q)$(MAKE) $(build)=$(build-dir) $(target-dir)$(notdir $@) + +# Modules +%/: prepare scripts FORCE + $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ + $(build)=$(build-dir) +/: prepare scripts FORCE + $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ + $(build)=$(build-dir) + +%.ko: prepare scripts FORCE + $(Q)$(MAKE) KBUILD_MODULES=$(if $(CONFIG_MODULES),1) \ + $(build)=$(build-dir) $(@:.ko=.o) + $(Q)$(MAKE) -rR -f $(srctree)/scripts/Makefile.modpost + +# FIXME Should go into a make.lib or something +# =========================================================================== + +quiet_cmd_rmdirs = $(if $(wildcard $(rm-dirs)),CLEAN $(wildcard $(rm-dirs))) + cmd_rmdirs = rm -rf $(rm-dirs) + +quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files))) + cmd_rmfiles = rm -f $(rm-files) + +# read all saved command lines + +targets := $(wildcard $(sort $(targets))) +cmd_files := $(wildcard .*.cmd $(foreach f,$(targets),$(dir $(f)).$(notdir $(f)).cmd)) + +ifneq ($(cmd_files),) + $(cmd_files): ; # Do not try to update included dependency files + include $(cmd_files) +endif + +# Shorthand for $(Q)$(MAKE) -f scripts/Makefile.clean obj=dir +# Usage: +# $(Q)$(MAKE) $(clean)=dir +clean := -f $(if $(KBUILD_SRC),$(srctree)/)scripts/Makefile.clean obj + +endif # skip-makefile + +PHONY += FORCE +FORCE: + +-include $(srctree)/Makefile.custom + +# Declare the contents of the .PHONY variable as phony. We keep that +# information in a variable se we can use it in if_changed and friends. +.PHONY: $(PHONY) diff --git a/busybox-1_37_0/Makefile.custom b/busybox-1_37_0/Makefile.custom new file mode 100644 index 000000000..6f679c4e1 --- /dev/null +++ b/busybox-1_37_0/Makefile.custom @@ -0,0 +1,201 @@ +# ========================================================================== +# Build system +# ========================================================================== + +busybox.links: $(srctree)/applets/busybox.mkll $(objtree)/include/autoconf.h include/applets.h + $(Q)-$(SHELL) $^ > $@ + +busybox.cfg.suid: $(srctree)/applets/busybox.mksuid $(objtree)/include/autoconf.h include/applets.h + $(Q)-SUID="yes" $(SHELL) $^ > $@ +busybox.cfg.nosuid: $(srctree)/applets/busybox.mksuid $(objtree)/include/autoconf.h include/applets.h + $(Q)-SUID="DROP" $(SHELL) $^ > $@ + +.PHONY: install +ifeq ($(CONFIG_INSTALL_APPLET_DONT),y) +INSTALL_OPTS:= --none +endif +ifeq ($(CONFIG_INSTALL_APPLET_SYMLINKS),y) +INSTALL_OPTS:= --symlinks +endif +ifeq ($(CONFIG_INSTALL_APPLET_HARDLINKS),y) +INSTALL_OPTS:= --hardlinks +endif +ifeq ($(CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS),y) +ifeq ($(CONFIG_INSTALL_SH_APPLET_SYMLINK),y) +INSTALL_OPTS:= --sw-sh-sym +endif +ifeq ($(CONFIG_INSTALL_SH_APPLET_HARDLINK),y) +INSTALL_OPTS:= --sw-sh-hard +endif +ifeq ($(CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER),y) +INSTALL_OPTS:= --scriptwrapper +endif +endif +ifeq ($(CONFIG_FEATURE_INDIVIDUAL),y) +INSTALL_OPTS:= --binaries +LIBBUSYBOX_SONAME:= 0_lib/libbusybox.so.$(BB_VER) +endif +install: $(srctree)/applets/install.sh busybox busybox.links + $(Q)DO_INSTALL_LIBS="$(strip $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS))" \ + $(SHELL) $< $(CONFIG_PREFIX) $(INSTALL_OPTS) +ifeq ($(strip $(CONFIG_FEATURE_SUID)),y) + @echo + @echo + @echo -------------------------------------------------- + @echo You will probably need to make your busybox binary + @echo setuid root to ensure all configured applets will + @echo work properly. + @echo -------------------------------------------------- + @echo +endif + +install-noclobber: INSTALL_OPTS+=--noclobber +install-noclobber: install + +uninstall: busybox.links + rm -f $(CONFIG_PREFIX)/bin/busybox + for i in `cat busybox.links` ; do rm -f $(CONFIG_PREFIX)$$i; done +ifneq ($(strip $(DO_INSTALL_LIBS)),n) + for i in $(LIBBUSYBOX_SONAME) $(DO_INSTALL_LIBS); do \ + rm -f $(CONFIG_PREFIX)$$i; \ + done +endif + +# Not very elegant: copies testsuite to objdir... +# (cp -pPR is POSIX-compliant (cp -dpR or cp -a would not be)) +.PHONY: check +.PHONY: test +ifeq ($(CONFIG_UNIT_TEST),y) +UNIT_CMD = ./busybox unit +endif +check test: busybox busybox.links + $(UNIT_CMD) + test -d $(objtree)/testsuite || cp -pPR $(srctree)/testsuite $(objtree) + bindir=$(objtree) srcdir=$(srctree)/testsuite \ + $(SHELL) -c "cd $(objtree)/testsuite && $(srctree)/testsuite/runtest $(if $(KBUILD_VERBOSE:0=),-v)" + +.PHONY: release +release: distclean + cd ..; \ + rm -r -f busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION); \ + cp -pPR busybox busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) && { \ + find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type d \ + -name .svn \ + -print \ + -exec rm -r -f {} \; ; \ + find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type d \ + -name .git \ + -print \ + -exec rm -r -f {} \; ; \ + find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type f \ + -name .gitignore \ + -print \ + -exec rm -f {} \; ; \ + find busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ -type f \ + -name .\#* \ + -print \ + -exec rm -f {} \; ; \ + tar -czf busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION).tar.gz \ + busybox-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)/ ; } + +.PHONY: checkhelp +checkhelp: + $(Q)$(srctree)/scripts/checkhelp.awk \ + $(patsubst %,$(srctree)/%,$(wildcard $(patsubst %,%/Config.in,$(busybox-dirs) ./))) + +.PHONY: sizes +sizes: busybox_unstripped + $(NM) --size-sort $(<) + +.PHONY: bloatcheck +bloatcheck: busybox_old busybox_unstripped + @$(srctree)/scripts/bloat-o-meter busybox_old busybox_unstripped + @$(CROSS_COMPILE)size busybox_old busybox_unstripped + +.PHONY: baseline +baseline: busybox_unstripped + @mv busybox_unstripped busybox_old + +.PHONY: objsizes +objsizes: busybox_unstripped + $(srctree)/scripts/objsizes + +.PHONY: stksizes +stksizes: busybox_unstripped + $(CROSS_COMPILE)objdump -d busybox_unstripped | $(srctree)/scripts/checkstack.pl $(ARCH) | uniq + +.PHONY: bigdata +bigdata: busybox_unstripped + $(CROSS_COMPILE)nm --size-sort busybox_unstripped | grep -vi ' [trw] ' + +# Documentation Targets +.PHONY: doc +doc: docs/busybox.pod docs/BusyBox.txt docs/busybox.1 docs/BusyBox.html + +# FIXME: Doesn't belong here + cmd_doc = + quiet_cmd_doc = $(Q)echo " DOC $(@F)" +silent_cmd_doc = +disp_doc = $($(quiet)cmd_doc) + +# sed adds newlines after "Options:" etc, +# this is needed in order to get good BusyBox.{1,txt,html} +docs/busybox.pod: $(srctree)/docs/busybox_header.pod \ + include/usage.h \ + $(srctree)/docs/busybox_footer.pod \ + applets/usage_pod + $(disp_doc) + $(Q)-mkdir -p docs + $(Q)-( \ + cat $(srctree)/docs/busybox_header.pod; \ + echo; \ + applets/usage_pod | sed 's/^[A-Za-z][A-Za-z ]*[a-z]:$$/&\n/'; \ + cat $(srctree)/docs/busybox_footer.pod; \ + ) > docs/busybox.pod + +docs/BusyBox.txt: docs/busybox.pod + $(disp_doc) + $(Q)-mkdir -p docs + $(Q)-pod2text $< > $@ + +docs/busybox.1: docs/busybox.pod + $(disp_doc) + $(Q)-mkdir -p docs + $(Q)-pod2man --center=busybox --release="version $(KERNELVERSION)" $< > $@ + +docs/BusyBox.html: docs/busybox.net/BusyBox.html + $(disp_doc) + $(Q)-mkdir -p docs + $(Q)-rm -f docs/BusyBox.html + $(Q)-cp docs/busybox.net/BusyBox.html docs/BusyBox.html + +docs/busybox.net/BusyBox.html: docs/busybox.pod + $(Q)-mkdir -p docs/busybox.net + $(Q)-pod2html --noindex $< > $@ + $(Q)-rm -f pod2htm* + +# documentation, cross-reference +# Modern distributions already ship synopsis packages (e.g. debian) +# If you have an old distribution go to http://synopsis.fresco.org/ +syn_tgt = $(wildcard $(patsubst %,%/*.c,$(busybox-alldirs))) +syn = $(patsubst %.c, %.syn, $(syn_tgt)) + +comma:= , +brace_open:= ( +brace_close:= ) + +SYN_CPPFLAGS := $(strip $(CPPFLAGS) $(EXTRA_CPPFLAGS)) +SYN_CPPFLAGS := $(subst $(brace_open),\$(brace_open),$(SYN_CPPFLAGS)) +SYN_CPPFLAGS := $(subst $(brace_close),\$(brace_close),$(SYN_CPPFLAGS)) +#SYN_CPPFLAGS := $(subst ",\",$(SYN_CPPFLAGS)) +#") +#SYN_CPPFLAGS := [$(patsubst %,'%'$(comma),$(SYN_CPPFLAGS))''] + +%.syn: %.c + synopsis -p C -l Comments.SSDFilter,Comments.Previous -Wp,preprocess=True,cppflags="'$(SYN_CPPFLAGS)'" -o $@ $< + +.PHONY: html +html: $(syn) + synopsis -f HTML -Wf,title="'BusyBox Documentation'" -o $@ $^ + +-include $(srctree)/Makefile.local diff --git a/busybox-1_37_0/Makefile.flags b/busybox-1_37_0/Makefile.flags new file mode 100644 index 000000000..97cb4dca2 --- /dev/null +++ b/busybox-1_37_0/Makefile.flags @@ -0,0 +1,223 @@ +# ========================================================================== +# Build system +# ========================================================================== + +BB_VER = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION) +export BB_VER +SKIP_STRIP ?= n + +# -std=gnu99 needed for [U]LLONG_MAX on some systems +CPPFLAGS += $(call cc-option,-std=gnu99,) + +CPPFLAGS += \ + -Iinclude -Ilibbb \ + $(if $(KBUILD_SRC),-Iinclude2 -I$(srctree)/include -I$(srctree)/libbb) \ + -include include/autoconf.h \ + -D_GNU_SOURCE -DNDEBUG \ + $(if $(CONFIG_LFS),-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64) \ + $(if $(CONFIG_TIME64),-D_TIME_BITS=64) \ + -DBB_VER=$(squote)$(quote)$(BB_VER)$(quote)$(squote) + +CFLAGS += $(call cc-option,-Wall,) +CFLAGS += $(call cc-option,-Wshadow,) +CFLAGS += $(call cc-option,-Wwrite-strings,) +CFLAGS += $(call cc-option,-Wundef,) +CFLAGS += $(call cc-option,-Wstrict-prototypes,) +CFLAGS += $(call cc-option,-Wunused -Wunused-parameter,) +CFLAGS += $(call cc-option,-Wunused-function -Wunused-value,) +CFLAGS += $(call cc-option,-Wmissing-prototypes -Wmissing-declarations,) +CFLAGS += $(call cc-option,-Wno-format-security,) +# warn about C99 declaration after statement +CFLAGS += $(call cc-option,-Wdeclaration-after-statement,) +# If you want to add more -Wsomething above, make sure that it is +# still possible to build bbox without warnings. + +ifeq ($(CONFIG_WERROR),y) +CFLAGS += $(call cc-option,-Werror,) +## TODO: +## gcc version 4.4.0 20090506 (Red Hat 4.4.0-4) (GCC) is a PITA: +## const char *ptr; ... off_t v = *(off_t*)ptr; -> BOOM +## and no easy way to convince it to shut the hell up. +## We have a lot of such things all over the place. +## Classic *(off_t*)(void*)ptr does not work, +## and I am unwilling to do crazy gcc specific ({ void *ppp = ...; }) +## stuff in macros. This would obfuscate the code too much. +## Maybe try __attribute__((__may_alias__))? +#CFLAGS += $(call cc-ifversion, -eq, 0404, -fno-strict-aliasing) +endif +# gcc 3.x emits bogus "old style proto" warning on find.c:alloc_action() +CFLAGS += $(call cc-ifversion, -ge, 0400, -Wold-style-definition) + +ifneq ($(lastword $(subst -, ,$(CC))),clang) +# "clang-9: warning: optimization flag '-finline-limit=0' is not supported +CFLAGS += $(call cc-option,-finline-limit=0,) +endif + +CFLAGS += $(call cc-option,-fno-builtin-strlen -fomit-frame-pointer -ffunction-sections -fdata-sections,) +# -fno-guess-branch-probability: prohibit pseudo-random guessing +# of branch probabilities (hopefully makes bloatcheck more stable): +CFLAGS += $(call cc-option,-fno-guess-branch-probability,) +CFLAGS += $(call cc-option,-funsigned-char,) + +ifeq ($(CONFIG_STATIC_LIBGCC),y) +# Disable it, for example, if you get +# "clang-9: warning: argument unused during compilation: '-static-libgcc'" +CFLAGS += $(call cc-option,-static-libgcc,) +endif + +CFLAGS += $(call cc-option,-falign-functions=1,) +ifneq ($(lastword $(subst -, ,$(CC))),clang) +# "clang-9: warning: optimization flag '-falign-jumps=1' is not supported" (and same for other two) +CFLAGS += $(call cc-option,-falign-jumps=1 -falign-labels=1 -falign-loops=1,) +endif + +# Defeat .eh_frame bloat (gcc 4.6.3 x86-32 defconfig: 20% smaller busybox binary): +CFLAGS += $(call cc-option,-fno-unwind-tables,) +CFLAGS += $(call cc-option,-fno-asynchronous-unwind-tables,) +# No automatic printf->puts,putchar conversions +# (try disabling this and comparing assembly, it's instructive) +CFLAGS += $(call cc-option,-fno-builtin-printf,) + +# clang-9 does not like "str" + N and "if (CONFIG_ITEM && cond)" constructs +ifeq ($(lastword $(subst -, ,$(CC))),clang) +CFLAGS += $(call cc-option,-Wno-string-plus-int -Wno-constant-logical-operand) +endif + +# FIXME: These warnings are at least partially to be concerned about and should +# be fixed.. +#CFLAGS += $(call cc-option,-Wconversion,) + +ifneq ($(CONFIG_DEBUG),y) +CFLAGS += $(call cc-option,-Oz,$(call cc-option,-Os,$(call cc-option,-O2,))) +else +CFLAGS += $(call cc-option,-g,) +#CFLAGS += "-D_FORTIFY_SOURCE=2" +ifeq ($(CONFIG_DEBUG_PESSIMIZE),y) +CFLAGS += $(call cc-option,-O0,) +else +CFLAGS += $(call cc-option,-Oz,$(call cc-option,-Os,$(call cc-option,-O2,))) +endif +endif +ifeq ($(CONFIG_DEBUG_SANITIZE),y) +CFLAGS += $(call cc-option,-fsanitize=address,) +CFLAGS += $(call cc-option,-fsanitize=leak,) +CFLAGS += $(call cc-option,-fsanitize=undefined,) +endif + +# If arch/$(ARCH)/Makefile did not override it (with, say, -fPIC)... +ARCH_FPIC ?= -fpic +ARCH_FPIE ?= -fpie +ARCH_PIE ?= -pie + +# Usage: $(eval $(call pkg_check_modules,VARIABLE-PREFIX,MODULES)) +define pkg_check_modules +$(1)_CFLAGS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --cflags $(2)) +$(1)_LIBS := $(shell $(PKG_CONFIG) $(PKG_CONFIG_FLAGS) --libs $(2)) +endef + +ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y) +# on i386: 14% smaller libbusybox.so +# (code itself is 9% bigger, we save on relocs/PLT/GOT) +CFLAGS += $(ARCH_FPIC) +# and another 4% reduction of libbusybox.so: +# (external entry points must be marked EXTERNALLY_VISIBLE) +CFLAGS += $(call cc-option,-fvisibility=hidden) +endif + +ifeq ($(CONFIG_STATIC),y) +CFLAGS_busybox += -static +PKG_CONFIG_FLAGS += --static +endif + +ifeq ($(CONFIG_PIE),y) +CFLAGS_busybox += $(ARCH_PIE) +CFLAGS += $(ARCH_FPIE) +endif + +ifneq ($(CONFIG_EXTRA_CFLAGS),) +CFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_CFLAGS))) +#")) +endif + +# Note: both "" (string consisting of two quote chars) and empty string +# are possible, and should be skipped below. +ifneq ($(subst "",,$(CONFIG_SYSROOT)),) +CFLAGS += --sysroot=$(CONFIG_SYSROOT) +export SYSROOT=$(CONFIG_SYSROOT) +endif + +# libm may be needed for dc, awk, ntpd +LDLIBS += m +# Android has no separate crypt library +# gcc-4.2.1 fails if we try to feed C source on stdin: +# echo 'int main(void){return 0;}' | $(CC) $(CFLAGS) -lcrypt -o /dev/null -xc - +# fall back to using a temp file: +CRYPT_AVAILABLE := $(shell echo 'int main(void){return 0;}' >bb_libtest.c; $(CC) $(CFLAGS) $(CFLAGS_busybox) -lcrypt -o /dev/null bb_libtest.c >/dev/null 2>&1 && echo "y"; rm bb_libtest.c) +RT_AVAILABLE := $(shell echo 'int main(void){return 0;}' >bb_libtest.c; $(CC) $(CFLAGS) $(CFLAGS_busybox) -lrt -o /dev/null bb_libtest.c >/dev/null 2>&1 && echo "y"; rm bb_libtest.c) +ifeq ($(CRYPT_AVAILABLE),y) +LDLIBS += crypt +endif +# librt may be needed for clock_gettime() +ifeq ($(RT_AVAILABLE),y) +LDLIBS += rt +endif + +# libpam may use libpthread, libdl and/or libaudit. +# On some platforms that requires an explicit -lpthread, -ldl, -laudit. +# However, on *other platforms* it fails when some of those flags +# given needlessly. On some systems, crypt needs pthread. +# +# I even had a system where a runtime test for pthread +# (similar to CRYPT_AVAILABLE test above) was not reliable. +# +# Do not propagate this mess by adding libraries to CONFIG_PAM/CRYPT_AVAILABLE blocks. +# Add libraries you need to CONFIG_EXTRA_LDLIBS instead. + +ifeq ($(CONFIG_PAM),y) +LDLIBS += pam pam_misc +endif + +ifeq ($(CONFIG_SELINUX),y) +SELINUX_PC_MODULES = libselinux libsepol +$(eval $(call pkg_check_modules,SELINUX,$(SELINUX_PC_MODULES))) +CPPFLAGS += $(SELINUX_CFLAGS) +LDLIBS += $(if $(SELINUX_LIBS),$(SELINUX_LIBS:-l%=%),$(SELINUX_PC_MODULES:lib%=%)) +endif + +ifeq ($(CONFIG_FEATURE_NSLOOKUP_BIG),y) +ifneq (,$(findstring linux,$(shell $(CC) $(CFLAGS) -dumpmachine))) +LDLIBS += resolv +endif +ifneq (,$(findstring gnu,$(shell $(CC) $(CFLAGS) -dumpmachine))) +LDLIBS += resolv +endif +endif + +ifeq ($(CONFIG_EFENCE),y) +LDLIBS += efence +endif + +ifeq ($(CONFIG_DMALLOC),y) +LDLIBS += dmalloc +endif + +# If a flat binary should be built, CFLAGS_busybox="-elf2flt" +# env var should be set for make invocation. +# Here we check whether CFLAGS_busybox indeed contains that flag. +# (For historical reasons, we also check LDFLAGS, which doesn't +# seem to be entirely correct variable to put "-elf2flt" into). +W_ELF2FLT = -elf2flt +ifneq (,$(findstring $(W_ELF2FLT),$(LDFLAGS) $(CFLAGS_busybox))) +SKIP_STRIP = y +endif + +ifneq ($(CONFIG_EXTRA_LDFLAGS),) +LDFLAGS += $(strip $(subst ",,$(CONFIG_EXTRA_LDFLAGS))) +#")) +endif + +# Busybox is a stack-fatty so make sure we increase default size +# TODO: use "make stksizes" to find & fix big stack users +# (we stole scripts/checkstack.pl from the kernel... thanks guys!) +# Reduced from 20k to 16k in 1.9.0. +FLTFLAGS += -s 16000 diff --git a/busybox-1_37_0/Makefile.help b/busybox-1_37_0/Makefile.help new file mode 100644 index 000000000..6a23e2a80 --- /dev/null +++ b/busybox-1_37_0/Makefile.help @@ -0,0 +1,44 @@ +# ========================================================================== +# Build system +# ========================================================================== + +help: + @echo 'Cleaning:' + @echo ' clean - delete temporary files created by build' + @echo ' distclean - delete all non-source files (including .config)' + @echo ' doc-clean - delete all generated documentation' + @echo + @echo 'Build:' + @echo ' all - Executable and documentation' + @echo ' busybox - the swiss-army executable' + @echo ' doc - docs/BusyBox.{txt,html,1}' + @echo ' html - create html-based cross-reference' + @echo + @echo 'Configuration:' + @echo ' allnoconfig - disable all symbols in .config' + @echo ' allyesconfig - enable all symbols in .config (see defconfig)' + @echo ' config - text based configurator (of last resort)' + @echo ' defconfig - set .config to largest generic configuration' + @echo ' menuconfig - interactive curses-based configurator' + @echo ' oldconfig - resolve any unresolved symbols in .config' + @$(if $(boards), \ + $(foreach b, $(boards), \ + printf " %-21s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \ + echo '') + @echo + @echo 'Installation:' + @echo ' install - install busybox into CONFIG_PREFIX' + @echo ' uninstall' + @echo + @echo 'Development:' + @echo ' baseline - create busybox_old for bloatcheck.' + @echo ' bloatcheck - show size difference between old and new versions' + @echo ' check - run the test suite for all applets' + @echo ' checkhelp - check for missing help-entries in Config.in' + @echo ' randconfig - generate a random configuration' + @echo ' release - create a distribution tarball' + @echo ' sizes - show size of all enabled busybox symbols' + @echo ' objsizes - show size of each .o object built' + @echo ' bigdata - show data objects, biggest first' + @echo ' stksizes - show stack users, biggest first' + @echo diff --git a/busybox-1_37_0/NOFORK_NOEXEC.lst b/busybox-1_37_0/NOFORK_NOEXEC.lst new file mode 100644 index 000000000..055f9fb24 --- /dev/null +++ b/busybox-1_37_0/NOFORK_NOEXEC.lst @@ -0,0 +1,437 @@ +Why an applet can't be NOFORK or NOEXEC? + +Why can't be NOFORK: +interactive: may wait for user input, ^C has to work +spawner: "tool PROG ARGS" which changes program state and execs - must fork +changes state: e.g. environment, signal handlers +leaks: does not free allocated memory or opened fds + alloc+xfunc: xmalloc, then xfunc - leaks memory if xfunc dies + open+xfunc: opens fd, then calls xfunc - fd is leaked if xfunc dies +talks to network/serial/etc: it's not known how long the delay can be, + it's reasonable to expect it might be many seconds + (even if usually it is not), so ^C has to work +runner: sometimes may run for long(ish) time, and/or works with network: + ^C has to work (cat BIGFILE, chmod -R, ftpget, nc) + +"runners" can become eligible after shell is taught ^C to interrupt NOFORKs, +need to be inspected that they do not fall into alloc+xfunc, open+xfunc, +leak categories. + +Why can't be NOEXEC: +suid: runs under different uid - must fork+exec +if it's important that /proc/PID/cmdline and comm are correct. + ("pkill sh" killing itself before it kills real "sh" is no fun) + +Why shouldn't be NOFORK/NOEXEC: +rare: not started often enough to bother optimizing (example: poweroff) +daemon: runs indefinitely; these are also always fit "rare" category +longterm: often runs for a long time (many seconds), execing makes + memory footprint smaller +complex: no immediately obvious reason why NOFORK wouldn't work, + but does some non-obvoius operations (example: fuser, lsof, losetup); + detailed audit often turns out that it's a leaker +hardware: performs unusual hardware ops which may take long, + or even hang due to hardware or firmware bugs + +Interesting example of "interactive" applet which is nevertheless can be +(and is) NOEXEC is "rm". Yes, "rm -i" is interactive - but it's not that typical +for users to keep it waiting for many minutes, whereas running "rm" in shell +is very typical, and speeding up this common use via NOEXEC is useful. +IOW: rm is "interactive", but not "longterm". + +Interesting example of an applet which can be NOFORK but if not, +then should not be NOEXEC, is "usleep". As NOFORK, it amount to simply +nanosleep()ing in the calling program (usually shell). No memory wasted. +But if ran as NOEXEC, it would create a potentially long-term process, +which would be taking more memory because it did not exec +and did not free much of the copied memory of the parent +(COW helps with this only as long as parent doesn't modify its memory). + + +[ - NOFORK +[[ - NOFORK +acpid - daemon +add-shell - noexec. leaks: open+xfunc +addgroup - noexec. leaks +adduser - noexec. leaks +adjtimex - NOFORK +ar - runner +arch - NOFORK +arp - talks to network: arp -n queries DNS +arping - longterm +ash - interactive, longterm +awk - noexec. runner +base64 - runner +basename - NOFORK +beep - longterm: beep -r 999999999 +blkdiscard - noexec. leaks: open+xioctl +blkid - noexec +blockdev - noexec. leaks fd +bootchartd - daemon +brctl - noexec +bunzip2 - runner +bzcat - runner +bzip2 - runner +cal - noexec. can be runner: cal -n9999 +cat - runner: cat HUGEFILE +chat - longterm (when used as intended - talking to modem over stdin/out) +chattr - noexec. runner +chgrp - noexec. runner +chmod - noexec. runner +chown - noexec. runner +chpasswd - longterm? (list of "user:password"s from stdin) +chpst - noexec. spawner +chroot - noexec. spawner +chrt - noexec. spawner +chvt - noexec. leaks: get_console_fd_or_die() may open a new fd, or return one of stdio fds +cksum - noexec. runner +clear - NOFORK +cmp - runner +comm - runner +conspy - interactive, longterm +cp - noexec. sometimes runner +cpio - runner +crond - daemon +crontab - longterm (runs $EDITOR), leaks: open+xasprintf +cryptpw - noexec. changes state: with --password-fd=N, moves N to stdin +cttyhack - noexec. spawner +cut - noexec. runner +date - noexec. nofork candidate(needs to stop messing up env, free xasprintf result, not use xfuncs after xasprintf) +dc - longterm (eats stdin if no params) +dd - noexec. runner +deallocvt - noexec. leaks: get_console_fd_or_die() may open a new fd, or return one of stdio fds +delgroup - noexec. leaks +deluser - noexec. leaks +depmod - longterm(ish) +devmem - hardware (access to device memory may hang) +df - noexec. leaks: nested allocs +dhcprelay - daemon +diff - runner +dirname - NOFORK +dmesg - runner +dnsd - daemon +dnsdomainname - noexec. talks to network (may query DNS) +dos2unix - noexec. runner +dpkg - runner +du - runner +dumpkmap - noexec. leaks: get_console_fd_or_die() may open a new fd, or return one of stdio fds +dumpleases - noexec. leaks: open+xread +echo - NOFORK +ed - interactive, longterm +egrep - longterm runner ("CMD | egrep ..." may run indefinitely, better to exec to conserve memory) +eject - hardware, leaks: open+ioctl_or_perror_and_die, changes state (moves fds) +env - noexec. spawner, changes state (env) +envdir - noexec. spawner +envuidgid - noexec. spawner +expand - runner +expr - noexec. leaks: nested allocs +factor - longterm (eats stdin if no params) +fakeidentd - daemon +false - NOFORK +fatattr - noexec. leaks: open+xioctl, complex +fbset - hardware, leaks: open+xfunc +fbsplash - runner, longterm +fdflush - hardware, leaks: open+ioctl_or_perror_and_die +fdformat - hardware, longterm +fdisk - interactive, longterm +fgconsole - noexec. leaks: get_console_fd_or_die() may open a new fd, or return one of stdio fds +fgrep - longterm runner ("CMD | fgrep ..." may run indefinitely, better to exec to conserve memory) +find - noexec. runner +findfs - suid +flash_eraseall - hardware +flash_lock - hardware +flash_unlock - hardware +flashcp - hardware +flock - spawner, changes state (file locks), let's play safe and not be noexec +fold - noexec. runner +free - NOFORK +freeramdisk - noexec. leaks: open+ioctl_or_perror_and_die +fsck - interactive, longterm +fsck.minix - needs ^C +fsfreeze - noexec. leaks: open+xioctl +fstrim - noexec. leaks: open+xioctl, find_block_device -> readdir+xstrdup +fsync - NOFORK +ftpd - daemon +ftpget - runner +ftpput - runner +fuser - complex +getopt - noexec. leaks: many allocs +getty - interactive, longterm +grep - longterm runner ("CMD | grep ..." may run indefinitely, better to exec to conserve memory) +groups - noexec +gunzip - runner +gzip - runner +halt - rare +hd - noexec. runner +hdparm - hardware +head - noexec. runner +hexdump - noexec. runner +hexedit - interactive, longterm +hostid - NOFORK +hostname - noexec. talks to network (hostname -d may query DNS) +httpd - daemon +hush - interactive, longterm +hwclock - hardware (xioctl(RTC_RD_TIME)) +i2cdetect - hardware +i2cdump - hardware +i2cget - hardware +i2cset - hardware +id - noexec +ifconfig - hardware? (mem_start NN io_addr NN irq NN), leaks: xsocket+ioctl_or_perror_and_die +ifenslave - noexec. leaks: xsocket+bb_perror_msg_and_die +ifplugd - daemon +inetd - daemon +init - daemon +inotifyd - daemon +insmod - noexec +install - runner +ionice - noexec. spawner +iostat - longterm: "iostat 1" runs indefinitely +ip - noexec +ipaddr - noexec +ipcalc - noexec. ipcalc -h talks to network +ipcrm - noexec +ipcs - noexec +iplink - noexec +ipneigh - noexec +iproute - noexec +iprule - noexec +iptunnel - noexec +kbd_mode - noexec. leaks: xopen_nonblocking+xioctl +kill - NOFORK +killall - NOFORK +killall5 - NOFORK +klogd - daemon +last - runner (I've got 1300 lines of output when tried it) +less - interactive, longterm +link - NOFORK +linux32 - noexec. spawner +linux64 - noexec. spawner +linuxrc - daemon +ln - noexec +loadfont - noexec. leaks: config_open+bb_error_msg_and_die("map format") +loadkmap - noexec. leaks: get_console_fd_or_die() may open a new fd, or return one of stdio fds +logger - runner +login - suid, interactive, longterm +logname - NOFORK +losetup - noexec. complex +lpd - daemon +lpq - runner +lpr - runner +ls - noexec. runner +lsattr - noexec. runner +lsmod - noexec +lsof - complex +lspci - noexec. too rare to bother for nofork +lsscsi - noexec. too rare to bother for nofork +lsusb - noexec. too rare to bother for nofork +lzcat - runner +lzma - runner +lzop - runner +lzopcat - runner +makedevs - noexec +makemime - runner +man - spawner, interactive, longterm +md5sum - noexec. runner +mdev - daemon +mesg - NOFORK +microcom - interactive, longterm +minips - noexec +mkdir - NOFORK +mkdosfs - needs ^C +mke2fs - needs ^C +mkfifo - noexec +mkfs.ext2 - needs ^C +mkfs.minix - needs ^C +mkfs.vfat - needs ^C +mknod - noexec +mkpasswd - noexec. changes state: with --password-fd=N, moves N to stdin +mkswap - needs ^C +mktemp - noexec. leaks: xstrdup+concat_path_file +modinfo - noexec +modprobe - noexec +more - interactive, longterm +mount - suid +mountpoint - noexec. leaks: option -n "print dev name": find_block_device -> readdir+xstrdup +mpstat - longterm: "mpstat 1" runs indefinitely +mt - hardware +mv - noexec. sometimes runner +nameif - noexec. openlog(), leaks: config_open2+ioctl_or_perror_and_die +nbd-client - noexec +nc - runner +netstat - longterm with -c (continuous listing) +nice - noexec. spawner +nl - runner +nmeter - longterm +nohup - noexec. spawner +nproc - NOFORK +ntpd - daemon +nuke - noexec +od - runner +openvt - longterm: spawns a child and waits for it +partprobe - noexec. leaks: open+ioctl_or_perror_and_die(BLKRRPART) +passwd - suid +paste - noexec. runner +patch - needs ^C +pgrep - must fork+exec to get correct /proc/PID/cmdline and comm field +pidof - must fork+exec to get correct /proc/PID/cmdline and comm field +ping - suid, longterm +ping6 - suid, longterm +pipe_progress - longterm +pivot_root - NOFORK +pkill - must fork+exec to get correct /proc/PID/cmdline and comm field +pmap - noexec candidate, leaks: open+xstrdup +popmaildir - runner +poweroff - rare +powertop - interactive, longterm +printenv - NOFORK +printf - NOFORK +ps - noexec +pscan - talks to network +pstree - noexec +pwd - NOFORK +pwdx - NOFORK +raidautorun - noexec. very simple. leaks: open+xioctl +rdate - talks to network +rdev - noexec. leaks: find_block_device -> readdir+xstrdup +readlink - NOFORK +readprofile - reads /boot/System.map and /proc/profile, better to free more memory by execing? +realpath - NOFORK +reboot - rare +reformime - runner +remove-shell - noexec. leaks: open+xfunc +renice - noexec. nofork candidate(uses getpwnam, is that ok?) +reset - noexec. spawner (execs "stty") +resize - noexec. changes state (signal handlers) +resume - noexec +rev - runner +rm - noexec. rm -i interactive +rmdir - NOFORK +rmmod - noexec +route - talks to network (may query DNS to convert IPs to names) +rpm - runner +rpm2cpio - runner +rtcwake - longterm: puts system to sleep, optimizing this for speed is pointless +run-init - spawner, rare, changes state (oh yes), execing may be important to free binary's inode +run-parts - longterm +runlevel - noexec. can be nofork if "endutxent()" is called unconditionally, but too rare to bother? +runsv - daemon +runsvdir - daemon +rx - runner +script - longterm: pumps script output from slave pty +scriptreplay - longterm: plays back "script" saved output, sleeping as necessary. +sed - runner +sendmail - runner +seq - noexec. runner +setarch - noexec. spawner +setconsole - noexec +setfattr - noexec +setfont - noexec. leaks a lot of stuff +setkeycodes - noexec +setlogcons - noexec +setpriv - spawner, changes state, let's play safe and not be noexec +setserial - noexec +setsid - spawner, uses fork_or_rexec() [not audited to work in noexec], let's play safe and not be noexec +setuidgid - noexec. spawner +sha1sum - noexec. runner +sha256sum - noexec. runner +sha3sum - noexec. runner +sha512sum - noexec. runner +showkey - interactive, longterm +shred - runner +shuf - noexec. runner +slattach - longterm (may sleep forever), uses bb_common_bufsiz1 +sleep - longterm. Could be nofork, if not the problem of "killall sleep" not killing it. +smemcap - runner +softlimit - noexec. spawner +sort - noexec. runner +split - runner +ssl_client - longterm +start-stop-daemon - not noexec: uses bb_common_bufsiz1 +stat - noexec. nofork candidate(needs fewer allocs) +strings - runner +stty - noexec. nofork candidate: has no allocs or opens except xmove_fd(xopen("-F DEVICE"),STDIN). tcsetattr(STDIN) is not a problem: it would work the same across processes sharing this fd +su - suid, spawner +sulogin - noexec. spawner +sum - runner +sv - noexec. needs ^C (uses usleep(420000)) +svc - noexec. needs ^C (uses usleep(420000)) +svlogd - daemon +swapoff - longterm: may cause memory pressure, execing is beneficial +swapon - rare +switch_root - spawner, rare, changes state (oh yes), execing may be important to free binary's inode +sync - NOFORK +sysctl - noexec. leaks: xstrdup+xmalloc_read +syslogd - daemon +tac - noexec. runner +tail - runner +tar - runner +taskset - noexec. spawner +tcpsvd - daemon +tee - runner +telnet - interactive, longterm +telnetd - daemon +test - NOFORK +tftp - runner +tftpd - daemon +time - spawner, longterm, changes state (signals) +timeout - spawner, longterm, changes state (signals) +top - interactive, longterm +touch - NOFORK +tr - runner +traceroute - suid, longterm +traceroute6 - suid, longterm +true - NOFORK +truncate - NOFORK +tty - NOFORK +ttysize - NOFORK +tunctl - noexec +tune2fs - noexec. leaks: open+xfunc +ubiattach - hardware +ubidetach - hardware +ubimkvol - hardware +ubirename - hardware +ubirmvol - hardware +ubirsvol - hardware +ubiupdatevol - hardware +udhcpc - daemon +udhcpd - daemon +udpsvd - daemon +uevent - daemon +umount - noexec. leaks: nested xmalloc +uname - NOFORK +uncompress - runner +unexpand - runner +uniq - runner +unix2dos - noexec. runner +unlink - NOFORK +unlzma - runner +unlzop - runner +unxz - runner +unzip - runner +uptime - noexec. nofork candidate(is getutxent ok?) +users - noexec. nofork candidate(is getutxent ok?) +usleep - NOFORK. But what about "killall usleep"? +uudecode - runner +uuencode - runner +vconfig - noexec. leaks: xsocket+ioctl_or_perror_and_die +vi - interactive, longterm +vlock - suid +volname - hardware (reads CDROM, this can take long-ish if need to spin up) +w - noexec. nofork candidate(is getutxent ok?) +wall - suid +watch - longterm +watchdog - daemon +wc - runner +wget - longterm +which - NOFORK +who - noexec. nofork candidate(is getutxent ok?) +whoami - NOFORK +whois - talks to network +xargs - noexec. spawner +xxd - noexec. runner +xz - runner +xzcat - runner +yes - noexec. runner +zcat - runner +zcip - daemon diff --git a/busybox-1_37_0/NOFORK_NOEXEC.sh b/busybox-1_37_0/NOFORK_NOEXEC.sh new file mode 100755 index 000000000..f4eeeef87 --- /dev/null +++ b/busybox-1_37_0/NOFORK_NOEXEC.sh @@ -0,0 +1,34 @@ +#!/bin/sh + +exec >NOFORK_NOEXEC.lst1 + +false && grep -Fv 'NOFORK' NOFORK_NOEXEC.lst \ +| grep -v 'noexec.' | grep -v 'noexec$' \ +| grep -v ' suid' \ +| grep -v ' daemon' \ +| grep -v ' longterm' \ +| grep rare + +echo === nofork candidate +grep -F 'nofork candidate' NOFORK_NOEXEC.lst \ + +echo === noexec candidate +grep -F 'noexec candidate' NOFORK_NOEXEC.lst \ + +echo === ^C +grep -F '^C' NOFORK_NOEXEC.lst \ +| grep -F ' - ' \ + +echo === talks +grep -F 'talks' NOFORK_NOEXEC.lst \ +| grep -F ' - ' \ + +echo === +grep -Fv 'NOFORK' NOFORK_NOEXEC.lst \ +| grep '^[^ ][^ ]* - ' \ +| grep -v 'noexec.' | grep -v ' - noexec$' \ +| grep -v ' suid' \ +| grep -v ' daemon' \ +| grep -v 'longterm' \ +| grep -v 'interactive' \ +| grep -v 'hardware' \ diff --git a/busybox-1_37_0/README b/busybox-1_37_0/README new file mode 100644 index 000000000..ada5935b9 --- /dev/null +++ b/busybox-1_37_0/README @@ -0,0 +1,204 @@ +Please see the LICENSE file for details on copying and usage. +Please refer to the INSTALL file for instructions on how to build. + +What is busybox: + + BusyBox combines tiny versions of many common UNIX utilities into a single + small executable. It provides minimalist replacements for most of the + utilities you usually find in bzip2, coreutils, dhcp, diffutils, e2fsprogs, + file, findutils, gawk, grep, inetutils, less, modutils, net-tools, procps, + sed, shadow, sysklogd, sysvinit, tar, util-linux, and vim. The utilities + in BusyBox often have fewer options than their full-featured cousins; + however, the options that are included provide the expected functionality + and behave very much like their larger counterparts. + + BusyBox has been written with size-optimization and limited resources in + mind, both to produce small binaries and to reduce run-time memory usage. + Busybox is also extremely modular so you can easily include or exclude + commands (or features) at compile time. This makes it easy to customize + embedded systems; to create a working system, just add /dev, /etc, and a + Linux kernel. Busybox (usually together with uClibc) has also been used as + a component of "thin client" desktop systems, live-CD distributions, rescue + disks, installers, and so on. + + BusyBox provides a fairly complete POSIX environment for any small system, + both embedded environments and more full featured systems concerned about + space. Busybox is slowly working towards implementing the full Single Unix + Specification V3 (http://www.opengroup.org/onlinepubs/009695399/), but isn't + there yet (and for size reasons will probably support at most UTF-8 for + internationalization). We are also interested in passing the Linux Test + Project (http://ltp.sourceforge.net). + +---------------- + +Using busybox: + + BusyBox is extremely configurable. This allows you to include only the + components and options you need, thereby reducing binary size. Run 'make + config' or 'make menuconfig' to select the functionality that you wish to + enable. (See 'make help' for more commands.) + + The behavior of busybox is determined by the name it's called under: as + "cp" it behaves like cp, as "sed" it behaves like sed, and so on. Called + as "busybox" it takes the second argument as the name of the applet to + run (I.E. "./busybox ls -l /proc"). + + The "standalone shell" mode is an easy way to try out busybox; this is a + command shell that calls the built-in applets without needing them to be + installed in the path. (Note that this requires /proc to be mounted, if + testing from a boot floppy or in a chroot environment.) + + The build automatically generates a file "busybox.links", which is used by + 'make install' to create symlinks to the BusyBox binary for all compiled in + commands. This uses the CONFIG_PREFIX environment variable to specify + where to install, and installs hardlinks or symlinks depending + on the configuration preferences. (You can also manually run + the install script at "applets/install.sh"). + +---------------- + +Downloading the current source code: + + Source for the latest released version, as well as daily snapshots, can always + be downloaded from + + http://busybox.net/downloads/ + + You can browse the up to the minute source code and change history online. + + http://git.busybox.net/busybox/ + + Anonymous GIT access is available. For instructions, check out: + + http://www.busybox.net/source.html + + For those that are actively contributing and would like to check files in, + see: + + http://busybox.net/developer.html + + The developers also have a bug and patch tracking system + (https://bugs.busybox.net) although posting a bug/patch to the mailing list + is generally a faster way of getting it fixed, and the complete archive of + what happened is the git changelog. + + Note: if you want to compile busybox in a busybox environment you must + select CONFIG_DESKTOP. + +---------------- + +Getting help: + + when you find you need help, you can check out the busybox mailing list + archives at http://busybox.net/lists/busybox/ or even join + the mailing list if you are interested. + +---------------- + +Bugs: + + if you find bugs, please submit a detailed bug report to the busybox mailing + list at busybox@busybox.net. a well-written bug report should include a + transcript of a shell session that demonstrates the bad behavior and enables + anyone else to duplicate the bug on their own machine. the following is such + an example: + + to: busybox@busybox.net + from: diligent@testing.linux.org + subject: /bin/date doesn't work + + package: busybox + version: 1.00 + + when i execute busybox 'date' it produces unexpected results. + with gnu date i get the following output: + + $ date + fri oct 8 14:19:41 mdt 2004 + + but when i use busybox date i get this instead: + + $ date + illegal instruction + + i am using debian unstable, kernel version 2.4.25-vrs2 on a netwinder, + and the latest uclibc from cvs. + + -diligent + + note the careful description and use of examples showing not only what + busybox does, but also a counter example showing what an equivalent app + does (or pointing to the text of a relevant standard). Bug reports lacking + such detail may never be fixed... Thanks for understanding. + +---------------- + +Portability: + + Busybox is developed and tested on Linux 2.4 and 2.6 kernels, compiled + with gcc (the unit-at-a-time optimizations in version 3.4 and later are + worth upgrading to get, but older versions should work), and linked against + uClibc (0.9.27 or greater) or glibc (2.2 or greater). In such an + environment, the full set of busybox features should work, and if + anything doesn't we want to know about it so we can fix it. + + There are many other environments out there, in which busybox may build + and run just fine. We just don't test them. Since busybox consists of a + large number of more or less independent applets, portability is a question + of which features work where. Some busybox applets (such as cat and rm) are + highly portable and likely to work just about anywhere, while others (such as + insmod and losetup) require recent Linux kernels with recent C libraries. + + Earlier versions of Linux and glibc may or may not work, for any given + configuration. Linux 2.2 or earlier should mostly work (there's still + some support code in things like mount.c) but this is no longer regularly + tested, and inherently won't support certain features (such as long files + and --bind mounts). The same is true for glibc 2.0 and 2.1: expect a higher + testing and debugging burden using such old infrastructure. (The busybox + developers are not very interested in supporting these older versions, but + will probably accept small self-contained patches to fix simple problems.) + + Some environments are not recommended. Early versions of uClibc were buggy + and missing many features: upgrade. Linking against libc5 or dietlibc is + not supported and not interesting to the busybox developers. (The first is + obsolete and has no known size or feature advantages over uClibc, the second + has known bugs that its developers have actively refused to fix.) Ancient + Linux kernels (2.0.x and earlier) are similarly uninteresting. + + In theory it's possible to use Busybox under other operating systems (such as + MacOS X, Solaris, Cygwin, or the BSD Fork Du Jour). This generally involves + a different kernel and a different C library at the same time. While it + should be possible to port the majority of the code to work in one of + these environments, don't be surprised if it doesn't work out of the box. If + you're into that sort of thing, start small (selecting just a few applets) + and work your way up. + + In 2005 Shaun Jackman has ported busybox to a combination of newlib + and libgloss, and some of his patches have been integrated. + +Supported hardware: + + BusyBox in general will build on any architecture supported by gcc. We + support both 32 and 64 bit platforms, and both big and little endian + systems. + + Under 2.4 Linux kernels, kernel module loading was implemented in a + platform-specific manner. Busybox's insmod utility has been reported to + work under ARM, CRIS, H8/300, x86, ia64, x86_64, m68k, MIPS, PowerPC, S390, + SH3/4/5, Sparc, and v850e. Anything else probably won't work. + + The module loading mechanism for the 2.6 kernel is much more generic, and + we believe 2.6.x kernel module loading support should work on all + architectures supported by the kernel. + +---------------- + +Please feed suggestions, bug reports, insults, and bribes back to the busybox +mailing list: + + busybox@busybox.net + +and/or maintainer: + + Denys Vlasenko + diff --git a/busybox-1_37_0/TODO b/busybox-1_37_0/TODO new file mode 100644 index 000000000..6c7415a81 --- /dev/null +++ b/busybox-1_37_0/TODO @@ -0,0 +1,256 @@ +Busybox TODO + +Harvest patches from +http://git.openembedded.org/cgit.cgi/openembedded/tree/recipes/busybox/ +https://dev.openwrt.org/browser/trunk/package/busybox/patches/ + + +Stuff that needs to be done. This is organized by who plans to get around to +doing it eventually, but that doesn't mean they "own" the item. If you want to +do one of these bounce an email off the person it's listed under to see if they +have any suggestions how they plan to go about it, and to minimize conflicts +between your work and theirs. But otherwise, all of these are fair game. + +Rob Landley suggested this: + Implement bb_realpath() that can handle NULL on non-glibc. + + sh + The command shell situation is a mess. We have two different + shells that don't really share any code, and the "standalone shell" doesn't + work all that well (especially not in a chroot environment), due to apps not + being reentrant. + + Do a SUSv3 audit + Look at the full Single Unix Specification version 3 (available online at + "http://www.opengroup.org/onlinepubs/009695399/nfindex.html") and + figure out which of our apps are compliant, and what we're missing that + we might actually care about. + + Even better would be some kind of automated compliance test harness that + exercises each command line option and the various corner cases. + + Internationalization + How much internationalization should we do? + + The low hanging fruit is UTF-8 character set support. We should do this. + See TODO_unicode file. + + We also have lots of hardwired english text messages. Consolidating this + into some kind of message table not only makes translation easier, but + also allows us to consolidate redundant (or close) strings. + + We probably don't want to be bloated with locale support. (Not unless we + can cleanly export it from our underlying C library without having to + concern ourselves with it directly. Perhaps a few specific things like a + config option for "date" are low hanging fruit here?) + + What level should things happen at? How much do we care about + internationalizing the text console when X11 and xterms are so much better + at it? (There's some infrastructure here we don't implement: The + "unicode_start" and "unicode_stop" shell scripts need "vt-is-UTF8" and a + --unicode option to loadkeys. That implies a real loadkeys/dumpkeys + implementation to replace loadkmap/dumpkmap. Plus messing with console font + loading. Is it worth it, or do we just say "use X"?) + + Individual compilation of applets. + It would be nice if busybox had the option to compile to individual applets, + for people who want an alternate implementation less bloated than the gnu + utils (or simply with less political baggage), but without it being one big + executable. + + Turning libbb into a real dll is another possibility, especially if libbb + could export some of the other library interfaces we've already more or less + got the code for (like zlib). + + buildroot - Make a "dogfood" option + Busybox 1.1 will be capable of replacing most gnu packages for real world + use, such as developing software or in a live CD. It needs wider testing. + + Busybox should now be able to replace bzip2, coreutils, e2fsprogs, file, + findutils, gawk, grep, inetutils, less, modutils, net-tools, patch, procps, + sed, shadow, sysklogd, sysvinit, tar, util-linux, and vim. The resulting + system should be self-hosting (I.E. able to rebuild itself from source + code). This means it would need (at least) binutils, gcc, and make, or + equivalents. + + It would be a good "eating our own dogfood" test if buildroot had the option + of using a "make allyesconfig" busybox instead of the all of the above + packages. Anything that's wrong with the resulting system, we can fix. (It + would be nice to be able to upgrade busybox to be able to replace bash and + diffutils as well, but we're not there yet.) + + One example of an existing system that does this already is Firmware Linux: + http://www.landley.net/code/firmware + + initramfs + Busybox should have a sample initramfs build script. This depends on + shell, mdev, and switch_root. + + mkdep + Write a mkdep that doesn't segfault if there's a directory it doesn't + have permission to read, isn't based on manually editing the output of + lexx and yacc, doesn't make such a mess under include/config, etc. + + Group globals into unions of structures. + Go through and turn all the global and static variables into structures, + and have all those structures be in a big union shared between processes, + so busybox uses less bss. (This is a big win on nommu machines.) See + sed.c and mdev.c for examples. + + Go through bugs.busybox.net and close out all of that somehow. + This one's open to everybody, but I'll wind up doing it... + +Bernhard Reutner-Fischer suggests to look at these: + New debug options: + -Wlarger-than-127 + Cleanup any big users + Collate BUFSIZ IOBUF_SIZE MY_BUF_SIZE PIPE_PROGRESS_SIZE BUFSIZE PIPESIZE + make bb_common_bufsiz1 configurable, size wise. + make pipesize configurable, size wise. + Use bb_common_bufsiz1 throughout applets! + +As yet unclaimed: + +---- +diff + Make sure we handle empty files properly: + From the patch man page: + + you can remove a file by sending out a context diff that compares + the file to be deleted with an empty file dated the Epoch. The + file will be removed unless patch is conforming to POSIX and the + -E or --remove-empty-files option is not given. +--- +patch + Should have simple fuzz factor support to apply patches at an offset which + shouldn't take up too much space. + + And while we're at it, a new patch filename quoting format is apparently + coming soon: http://marc.theaimsgroup.com/?l=git&m=112927316408690&w=2 + +Architectural issues: + +bb_close() with fsync() + We should have a bb_close() in place of normal close, with a CONFIG_ option + to not just check the return value of close() for an error, but fsync(). + Close can't reliably report anything useful because if write() accepted the + data then it either went out to the network or it's in cache or a pipe + buffer. Either way, there's no guarantee it'll make it to its final + destination before close() gets called, so there's no guarantee that any + error will be reported. + + You need to call fsync() if you care about errors that occur after write(), + but that can have a big performance impact. So make it a config option. +--- +Unify archivers + Lots of archivers have the same general infrastructure. The directory + traversal code should be factored out, and the guts of each archiver could + be some setup code and a series of callbacks for "add this file", + "add this directory", "add this symlink" and so on. + + This could clean up tar and zip, and make it cheaper to add cpio and ar + write support, and possibly even cheaply add things like mkisofs or + mksquashfs someday, if they become relevant. +--- +Text buffer support. + Several existing applets (sort, vi, less...) read + a whole file into memory and act on it. Use open_read_close(). +--- +Memory Allocation + We have a CONFIG_BUFFER mechanism that lets us select whether to do memory + allocation on the stack or the heap. Unfortunately, we're not using it much. + We need to audit our memory allocations and turn a lot of malloc/free calls + into RESERVE_CONFIG_BUFFER/RELEASE_CONFIG_BUFFER. + For a start, see e.g. make EXTRA_CFLAGS=-Wlarger-than-64 + + And while we're at it, many of the CONFIG_FEATURE_CLEAN_UP #ifdefs will be + optimized out by the compiler in the stack allocation case (since there's no + free for an alloca()), and this means that various cleanup loops that just + call free might also be optimized out by the compiler if written right, so + we can yank those #ifdefs too, and generally clean up the code. +--- +FEATURE_CLEAN_UP + This is more an unresolved issue than a to-do item. More thought is needed. + + Normally we rely on exit() to free memory, close files and unmap segments + for us. This makes most calls to free(), close(), and unmap() optional in + busybox applets that don't intend to run for very long, and optional stuff + can be omitted to save size. + + The idea was raised that we could simulate fork/exit with setjmp/longjmp + for _really_ brainless embedded systems, or speed up the standalone shell + by not forking. Doing so would require a reliable FEATURE_CLEAN_UP. + Unfortunately, this isn't as easy as it sounds. + + The problem is, lots of things exit(), sometimes unexpectedly (xmalloc()) + and sometimes reliably (bb_perror_msg_and_die() or show_usage()). This + jumps out of the normal flow control and bypasses any cleanup code we + put at the end of our applets. + + It's possible to add hooks to libbb functions like xmalloc() and xopen() + to add their entries to a linked list, which could be traversed and + freed/closed automatically. (This would need to be able to free just the + entries after a checkpoint to be usable for a forkless standalone shell. + You don't want to free the shell's own resources.) + + Right now, FEATURE_CLEAN_UP is more or less a debugging aid, to make things + like valgrind happy. It's also documentation of _what_ we're trusting + exit() to clean up for us. But new infrastructure to auto-free stuff would + render the existing FEATURE_CLEAN_UP code redundant. + + For right now, exit() handles it just fine. + + +Minor stuff: + watchdog.c could autodetect the timer duration via: + if(!ioctl (fd, WDIOC_GETTIMEOUT, &tmo)) timer_duration = 1 + (tmo / 2); + Unfortunately, that needs linux/watchdog.h and that contains unfiltered + kernel types on some distros, which breaks the build. +--- + use bb_error_msg where appropriate: See + egrep "(printf.*\([[:space:]]*(stderr|2)|[^_]write.*\([[:space:]]*(stderr|2))" +--- + use bb_perror_msg where appropriate: See + egrep "[^_]perror" +--- + possible code duplication ingroup() and is_a_group_member() +--- + Move __get_hz() to a better place and (re)use it in route.c, ash.c +--- + See grep -r strtod + Alot of duplication that wants cleanup. +--- + unify progress_meter. wget, flash_eraseall, pipe_progress, fbsplash, setfiles. +--- + +(TODO list after discussion 11.05.2009) + +* shrink tc/brctl/ip + tc/brctl seem like fairly large things to try and tackle in your timeframe, + and i think people have posted attempts in the past. Adding additional + options to ip though seems reasonable. + +* add tests for some applets + +* implement POSIX utilities and audit them for POSIX conformance. then + audit them for GNU conformance. then document all your findings in a new + doc/conformance.txt file while perhaps implementing some of the missing + features. + you can find the latest POSIX documentation (1003.1-2008) here: + http://www.opengroup.org/onlinepubs/9699919799/ + and the complete list of all utilities that POSIX covers: + http://www.opengroup.org/onlinepubs/9699919799/idx/utilities.html + The first step would to generate a file/matrix what is already archived + (also IPV6) + +* implement 'at' + +* rpcbind (former portmap) or equivalent + so that we don't have to use -o nolock on nfs mounts + +* check IPV6 compliance + +* generate a mini example using kernel+busybox only (+libc) for example + +* more support for advanced linux 2.6.x features, see: iotop + most likely there is more diff --git a/busybox-1_37_0/TODO_unicode b/busybox-1_37_0/TODO_unicode new file mode 100644 index 000000000..b310e8d4d --- /dev/null +++ b/busybox-1_37_0/TODO_unicode @@ -0,0 +1,45 @@ +Already fixed applets: +cal +lsmod +df +dumpleases + +Applets which may need unicode handling (more extensive than sanitizing +of filenames in error messages): + +ls - work in progress +expand, unexpand - uses unicode_strlen, not scrlen +ash, hush through lineedit - uses unicode_strlen, not scrlen +top - need to sanitize process args +ps - need to sanitize process args +less +more +vi +ed +cut +awk +sed +tr +grep egrep fgrep +fold +sort +head, tail +catv - "display nonprinting chars" - what this could mean for unicode? +wc +chat +dumpkmap +last - just line up columns +man +microcom +strings +watch + +Unsure, may need fixing: + +hostname - do we really want to protect against bad chars in it? +patch +addgroup, adduser, delgroup, deluser +telnet +telnetd +od +printf diff --git a/busybox-1_37_0/applets/.gitignore b/busybox-1_37_0/applets/.gitignore new file mode 100644 index 000000000..459938d67 --- /dev/null +++ b/busybox-1_37_0/applets/.gitignore @@ -0,0 +1,3 @@ +/applet_tables +/usage +/usage_pod diff --git a/busybox-1_37_0/applets/Kbuild.src b/busybox-1_37_0/applets/Kbuild.src new file mode 100644 index 000000000..3aedbbffe --- /dev/null +++ b/busybox-1_37_0/applets/Kbuild.src @@ -0,0 +1,57 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2005 by Erik Andersen +# +# Licensed under GPLv2, see file LICENSE in this source tree. + +obj-y := +obj-y += applets.o + +hostprogs-y:= +hostprogs-y += usage usage_pod applet_tables + +always:= $(hostprogs-y) + +# Generated files need additional love + +# This trick decreases amount of rebuilds +# if tree is merely renamed/copied +ifeq ($(srctree),$(objtree)) +srctree_slash = +else +srctree_slash = $(srctree)/ +endif + +HOSTCFLAGS_usage.o = -I$(srctree_slash)include -Iinclude +HOSTCFLAGS_usage_pod.o = -I$(srctree_slash)include -Iinclude + +applets/applets.o: include/usage_compressed.h include/applet_tables.h + +applets/applet_tables: .config include/applets.h +applets/usage: .config include/applets.h +applets/usage_pod: .config include/applets.h include/applet_tables.h + +quiet_cmd_gen_usage_compressed = GEN include/usage_compressed.h + cmd_gen_usage_compressed = $(srctree_slash)applets/usage_compressed include/usage_compressed.h applets + +include/usage_compressed.h: applets/usage $(srctree_slash)applets/usage_compressed + $(call cmd,gen_usage_compressed) + +quiet_cmd_gen_applet_tables = GEN include/applet_tables.h include/NUM_APPLETS.h + cmd_gen_applet_tables = applets/applet_tables include/applet_tables.h include/NUM_APPLETS.h + +include/NUM_APPLETS.h: applets/applet_tables + $(call cmd,gen_applet_tables) + +# In fact, include/applet_tables.h depends only on applets/applet_tables, +# and is generated by it. But specifying only it can run +# applets/applet_tables twice, possibly in parallel. +# We say that it also needs NUM_APPLETS.h +# +# Unfortunately, we need to list the same command, +# and it can be executed twice (sequentially). +# The alternative is to not list any command, +# and then if include/applet_tables.h is deleted, it won't be rebuilt. +# +include/applet_tables.h: include/NUM_APPLETS.h applets/applet_tables + $(call cmd,gen_applet_tables) diff --git a/busybox-1_37_0/applets/applet_tables.c b/busybox-1_37_0/applets/applet_tables.c new file mode 100644 index 000000000..66ef7e4ac --- /dev/null +++ b/busybox-1_37_0/applets/applet_tables.c @@ -0,0 +1,244 @@ +/* vi: set sw=4 ts=4: */ +/* + * Applet table generator. + * Runs on host and produces include/applet_tables.h + * + * Copyright (C) 2007 Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#undef ARRAY_SIZE +#define ARRAY_SIZE(x) ((unsigned)(sizeof(x) / sizeof((x)[0]))) + +#ifndef PATH_MAX +#define PATH_MAX 1024 +#endif + +#include "../include/autoconf.h" +#include "../include/applet_metadata.h" + +struct bb_applet { + const char *name; + const char *main; + enum bb_install_loc_t install_loc; + enum bb_suid_t need_suid; + /* true if instead of fork(); exec("applet"); waitpid(); + * one can do fork(); exit(applet_main(argc,argv)); waitpid(); */ + unsigned char noexec; + /* Even nicer */ + /* true if instead of fork(); exec("applet"); waitpid(); + * one can simply call applet_main(argc,argv); */ + unsigned char nofork; +}; + +/* Define struct bb_applet applets[] */ +#include "../include/applets.h" + +enum { NUM_APPLETS = ARRAY_SIZE(applets) }; + +static int cmp_name(const void *a, const void *b) +{ + const struct bb_applet *aa = a; + const struct bb_applet *bb = b; + return strcmp(aa->name, bb->name); +} + +static int str_isalnum_(const char *s) +{ + while (*s) { + if (!isalnum((unsigned char)*s) && *s != '_') + return 0; + s++; + } + return 1; +} + +int main(int argc, char **argv) +{ + int i, j; + char tmp1[PATH_MAX], tmp2[PATH_MAX]; + + // In find_applet_by_name(), before linear search, narrow it down + // by looking at N "equidistant" names. With ~350 applets: + // KNOWN_APPNAME_OFFSETS cycles + // 0 9057 + // 2 4604 + ~100 bytes of code + // 4 2407 + 4 bytes + // 8 1342 + 8 bytes + // 16 908 + 16 bytes + // 32 884 + 32 bytes + // With 8, int16_t applet_nameofs[] table has 7 elements. + int KNOWN_APPNAME_OFFSETS = 8; + // With 128 applets we do two linear searches, with 1..7 strcmp's in the first one + // and 1..16 strcmp's in the second. With 256 apps, second search does 1..32 strcmp's. + if (NUM_APPLETS < 128) + KNOWN_APPNAME_OFFSETS = 4; + if (NUM_APPLETS < 32) + KNOWN_APPNAME_OFFSETS = 0; + + qsort(applets, NUM_APPLETS, sizeof(applets[0]), cmp_name); + + for (i = j = 0; i < NUM_APPLETS-1; ++i) { + if (cmp_name(applets+i, applets+i+1) == 0) { + fprintf(stderr, "%s: duplicate applet name '%s'\n", argv[0], + applets[i].name); + j = 1; + } + } + + if (j != 0 || !argv[1]) + return 1; + snprintf(tmp1, PATH_MAX, "%s.%u.new", argv[1], (int) getpid()); + i = open(tmp1, O_WRONLY | O_TRUNC | O_CREAT, 0666); + if (i < 0) + return 1; + dup2(i, 1); + + /* Keep in sync with include/busybox.h! */ + + printf("/* This is a generated file, don't edit */\n\n"); + + printf("#define NUM_APPLETS %u\n", NUM_APPLETS); + if (NUM_APPLETS == 1) { + printf("#define SINGLE_APPLET_STR \"%s\"\n", applets[0].name); + printf("#define SINGLE_APPLET_MAIN %s_main\n", applets[0].main); + } + + printf("#define KNOWN_APPNAME_OFFSETS %u\n\n", KNOWN_APPNAME_OFFSETS); + if (KNOWN_APPNAME_OFFSETS > 0) { + int ofs, offset[KNOWN_APPNAME_OFFSETS], index[KNOWN_APPNAME_OFFSETS]; + for (i = 0; i < KNOWN_APPNAME_OFFSETS; i++) + index[i] = i * NUM_APPLETS / KNOWN_APPNAME_OFFSETS; + ofs = 0; + for (i = 0; i < NUM_APPLETS; i++) { + for (j = 0; j < KNOWN_APPNAME_OFFSETS; j++) + if (i == index[j]) + offset[j] = ofs; + ofs += strlen(applets[i].name) + 1; + } + /* If the list of names is too long refuse to proceed */ + if (ofs > 0xffff) + return 1; + printf("const uint16_t applet_nameofs[] ALIGN2 = {\n"); + for (i = 1; i < KNOWN_APPNAME_OFFSETS; i++) + printf("%d,\n", offset[i]); + printf("};\n\n"); + } + + //printf("#ifndef SKIP_definitions\n"); + printf("const char applet_names[] ALIGN1 = \"\"\n"); + for (i = 0; i < NUM_APPLETS; i++) { + printf("\"%s\" \"\\0\"\n", applets[i].name); +// if (MAX_APPLET_NAME_LEN < strlen(applets[i].name)) +// MAX_APPLET_NAME_LEN = strlen(applets[i].name); + } + printf(";\n\n"); + + for (i = 0; i < NUM_APPLETS; i++) { + if (str_isalnum_(applets[i].name)) + printf("#define APPLET_NO_%s %d\n", applets[i].name, i); + } + printf("\n"); + + printf("#ifndef SKIP_applet_main\n"); + printf("int (*const applet_main[])(int argc, char **argv) = {\n"); + for (i = 0; i < NUM_APPLETS; i++) { + printf("%s_main,\n", applets[i].main); + } + printf("};\n"); + printf("#endif\n\n"); + +#if ENABLE_FEATURE_PREFER_APPLETS \ + || ENABLE_FEATURE_SH_STANDALONE \ + || ENABLE_FEATURE_SH_NOFORK + printf("const uint8_t applet_flags[] ALIGN1 = {\n"); + i = 0; + while (i < NUM_APPLETS) { + int v = applets[i].nofork + (applets[i].noexec << 1); + if (++i < NUM_APPLETS) + v |= (applets[i].nofork + (applets[i].noexec << 1)) << 2; + if (++i < NUM_APPLETS) + v |= (applets[i].nofork + (applets[i].noexec << 1)) << 4; + if (++i < NUM_APPLETS) + v |= (applets[i].nofork + (applets[i].noexec << 1)) << 6; + printf("0x%02x,\n", v); + i++; + } + printf("};\n\n"); +#endif + +#if ENABLE_FEATURE_SUID + printf("const uint8_t applet_suid[] ALIGN1 = {\n"); + i = 0; + while (i < NUM_APPLETS) { + int v = applets[i].need_suid; /* 2 bits */ + if (++i < NUM_APPLETS) + v |= applets[i].need_suid << 2; + if (++i < NUM_APPLETS) + v |= applets[i].need_suid << 4; + if (++i < NUM_APPLETS) + v |= applets[i].need_suid << 6; + printf("0x%02x,\n", v); + i++; + } + printf("};\n\n"); +#endif + +#if ENABLE_FEATURE_INSTALLER + printf("const uint8_t applet_install_loc[] ALIGN1 = {\n"); + i = 0; + while (i < NUM_APPLETS) { + int v = applets[i].install_loc; /* 3 bits */ + if (++i < NUM_APPLETS) + v |= applets[i].install_loc << 4; /* 3 bits */ + printf("0x%02x,\n", v); + i++; + } + printf("};\n"); +#endif + //printf("#endif /* SKIP_definitions */\n"); + +// printf("\n"); +// printf("#define MAX_APPLET_NAME_LEN %u\n", MAX_APPLET_NAME_LEN); + + if (argv[2]) { + FILE *fp; + char line_new[80]; +// char line_old[80]; + + sprintf(line_new, "#define NUM_APPLETS %u\n", NUM_APPLETS); +// line_old[0] = 0; +// fp = fopen(argv[2], "r"); +// if (fp) { +// fgets(line_old, sizeof(line_old), fp); +// fclose(fp); +// } +// if (strcmp(line_old, line_new) != 0) { + snprintf(tmp2, PATH_MAX, "%s.%u.new", argv[2], (int) getpid()); + fp = fopen(tmp2, "w"); + if (!fp) + return 1; + fputs(line_new, fp); + if (fclose(fp)) + return 1; +// } + } + + if (fclose(stdout)) + return 1; + if (rename(tmp1, argv[1])) + return 1; + if (rename(tmp2, argv[2])) + return 1; + return 0; +} diff --git a/busybox-1_37_0/applets/applets.c b/busybox-1_37_0/applets/applets.c new file mode 100644 index 000000000..98c2b44f5 --- /dev/null +++ b/busybox-1_37_0/applets/applets.c @@ -0,0 +1,16 @@ +/* vi: set sw=4 ts=4: */ +/* + * Stub for linking busybox binary against libbusybox. + * + * Copyright (C) 2007 Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +#include "busybox.h" + +#if ENABLE_BUILD_LIBBUSYBOX +int main(int argc UNUSED_PARAM, char **argv) +{ + return lbb_main(argv); +} +#endif diff --git a/busybox-1_37_0/applets/busybox.mkll b/busybox-1_37_0/applets/busybox.mkll new file mode 100755 index 000000000..68dbf2162 --- /dev/null +++ b/busybox-1_37_0/applets/busybox.mkll @@ -0,0 +1,24 @@ +#!/bin/sh +# Make busybox links list file. + +# input $1: full path to Config.h +# input $2: full path to applets.h +# output (stdout): list of pathnames that should be linked to busybox + +# Maintainer: Larry Doolittle + +export LC_ALL=POSIX +export LC_CTYPE=POSIX + +CONFIG_H=${1:-include/autoconf.h} +APPLETS_H=${2:-include/applets.h} +$HOSTCC -E -DMAKE_LINKS -include $CONFIG_H $APPLETS_H | + awk '/^[ \t]*LINK/{ + dir=substr($2,7) + gsub("_","/",dir) + if(dir=="/ROOT") dir="" + file=$3 + gsub("\"","",file) + if (file=="busybox") next + print tolower(dir) "/" file + }' diff --git a/busybox-1_37_0/applets/busybox.mkscripts b/busybox-1_37_0/applets/busybox.mkscripts new file mode 100755 index 000000000..935685cba --- /dev/null +++ b/busybox-1_37_0/applets/busybox.mkscripts @@ -0,0 +1,16 @@ +#!/bin/sh +# Make busybox scripted applet list file. + +# input $1: full path to Config.h +# input $2: full path to applets.h +# output (stdout): list of pathnames that should be linked to busybox + +export LC_ALL=POSIX +export LC_CTYPE=POSIX + +CONFIG_H=${1:-include/autoconf.h} +APPLETS_H=${2:-include/applets.h} +$HOSTCC -E -DMAKE_SCRIPTS -include $CONFIG_H $APPLETS_H | + awk '/^[ \t]*SCRIPT/{ + print $2 + }' diff --git a/busybox-1_37_0/applets/busybox.mksuid b/busybox-1_37_0/applets/busybox.mksuid new file mode 100755 index 000000000..6492c079a --- /dev/null +++ b/busybox-1_37_0/applets/busybox.mksuid @@ -0,0 +1,54 @@ +#!/bin/sh +# Make list of configuration variables regarding suid handling + +# input $1: full path to autoconf.h +# input $2: full path to applets.h +# input $3: full path to .config +# output (stdout): list of CONFIG_ that do or may require suid + +# If the environment variable SUID is not set or set to DROP, +# lists all config options that do not require suid permissions. +# Otherwise, lists all config options for applets that DO or MAY require +# suid permissions. + +# Maintainer: Bernhard Reutner-Fischer + +export LC_ALL=POSIX +export LC_CTYPE=POSIX + +CONFIG_H=${1:-include/autoconf.h} +APPLETS_H=${2:-include/applets.h} +DOT_CONFIG=${3:-.config} + +case ${SUID:-DROP} in +[dD][rR][oO][pP]) USE="DROP" ;; +*) USE="suid" ;; +esac + +$HOSTCC -E -DMAKE_SUID -include $CONFIG_H $APPLETS_H | + awk -v USE=${USE} ' + /^SUID[ \t]/{ + if (USE == "DROP") { + if ($2 != "BB_SUID_DROP") next + } else { + if ($2 == "BB_SUID_DROP") next + } + cfg = $NF + gsub("\"", "", cfg) + cfg = substr(cfg, 8) + s[i++] = "CONFIG_" cfg + s[i++] = "CONFIG_FEATURE_" cfg "_.*" + } + END{ + while (getline < ARGV[2]) { + for (j in s) { + if ($0 ~ "^" s[j] "=y$") { + sub(/=.*/, "") + print + if (s[j] !~ /\*$/) delete s[j] # can drop this applet now + } + } + } + } +' - $DOT_CONFIG + diff --git a/busybox-1_37_0/applets/individual.c b/busybox-1_37_0/applets/individual.c new file mode 100644 index 000000000..2f743d906 --- /dev/null +++ b/busybox-1_37_0/applets/individual.c @@ -0,0 +1,24 @@ +/* Minimal wrapper to build an individual busybox applet. + * + * Copyright 2005 Rob Landley +#include +#include "usage.h" + +int main(int argc, char **argv) +{ + applet_name = argv[0]; + return APPLET_main(argc, argv); +} + +void bb_show_usage(void) +{ + fputs_stdout(APPLET_full_usage "\n"); + exit_FAILURE(); +} diff --git a/busybox-1_37_0/applets/install.sh b/busybox-1_37_0/applets/install.sh new file mode 100755 index 000000000..415896893 --- /dev/null +++ b/busybox-1_37_0/applets/install.sh @@ -0,0 +1,137 @@ +#!/bin/sh + +export LC_ALL=POSIX +export LC_CTYPE=POSIX + +prefix=$1 +if [ -z "$prefix" ]; then + echo "usage: applets/install.sh DESTINATION TYPE [OPTS ...]" + echo " TYPE is one of: --symlinks --hardlinks --binaries --scriptwrapper --none" + echo " OPTS is one or more of: --cleanup --noclobber" + exit 1 +fi +shift # Keep only remaining options + +# Source the configuration +. ./.config + +h=`sort busybox.links | uniq` + +sharedlib_dir="0_lib" + +linkopts="" +scriptwrapper="n" +binaries="n" +cleanup="0" +noclobber="0" +while [ ${#} -gt 0 ]; do + case "$1" in + --hardlinks) linkopts="-f";; + --symlinks) linkopts="-fs";; + --binaries) binaries="y";; + --scriptwrapper) scriptwrapper="y"; swrapall="y";; + --sw-sh-hard) scriptwrapper="y"; linkopts="-f";; + --sw-sh-sym) scriptwrapper="y"; linkopts="-fs";; + --cleanup) cleanup="1";; + --noclobber) noclobber="1";; + --none) h="";; + *) echo "Unknown install option: $1"; exit 1;; + esac + shift +done + +if [ -n "$DO_INSTALL_LIBS" ] && [ x"$DO_INSTALL_LIBS" != x"n" ]; then + # get the target dir for the libs + # assume it starts with lib + libdir=$($CC -print-file-name=libc.so | \ + sed -n 's%^.*\(/lib[^\/]*\)/libc.so%\1%p') + if test -z "$libdir"; then + libdir=/lib + fi + + mkdir -p "$prefix/$libdir" || exit 1 + for i in $DO_INSTALL_LIBS; do + rm -f "$prefix/$libdir/$i" || exit 1 + if [ -f "$i" ]; then + echo " Installing $i to the target at $prefix/$libdir/" + cp -pPR "$i" "$prefix/$libdir/" || exit 1 + chmod 0644 "$prefix/$libdir/`basename $i`" || exit 1 + fi + done +fi + +if [ x"$cleanup" = x"1" ] && [ -e "$prefix/bin/busybox" ]; then + inode=`ls -i "$prefix/bin/busybox" | awk '{print $1}'` + sub_shell_it=` + cd "$prefix" + for d in usr/sbin usr/bin sbin bin; do + pd=$PWD + if [ -d "$d" ]; then + cd "$d" + ls -iL . | grep "^ *$inode" | awk '{print $2}' | env -i xargs rm -f + fi + cd "$pd" + done + ` + exit 0 +fi + +rm -f "$prefix/bin/busybox" || exit 1 +mkdir -p "$prefix/bin" || exit 1 +install -m 755 busybox "$prefix/bin/busybox" || exit 1 + +for i in $h; do + appdir=`dirname "$i"` + app=`basename "$i"` + if [ x"$noclobber" = x"1" ] && ([ -e "$prefix/$i" ] || [ -h "$prefix/$i" ]); then + echo " $prefix/$i already exists" + continue + fi + mkdir -p "$prefix/$appdir" || exit 1 + if [ x"$scriptwrapper" = x"y" ]; then + if [ x"$swrapall" != x"y" ] && [ x"$i" = x"/bin/sh" ]; then + ln $linkopts busybox "$prefix/$i" || exit 1 + else + rm -f "$prefix/$i" + echo "#!/bin/busybox" >"$prefix/$i" + chmod +x "$prefix/$i" + fi + echo " $prefix/$i" + elif [ x"$binaries" = x"y" ]; then + # Copy the binary over rather + if [ -e "$sharedlib_dir/$app" ]; then + echo " Copying $sharedlib_dir/$app to $prefix/$i" + cp -pPR "$sharedlib_dir/$app" "$prefix/$i" || exit 1 + else + echo "Error: Could not find $sharedlib_dir/$app" + exit 1 + fi + else + if [ x"$linkopts" = x"-f" ]; then + bb_path="$prefix/bin/busybox" + else + case "$appdir" in + /) + bb_path="bin/busybox" + ;; + /bin) + bb_path="busybox" + ;; + /sbin) + bb_path="../bin/busybox" + ;; + /usr/bin | /usr/sbin) + bb_path="../../bin/busybox" + ;; + *) + echo "Unknown installation directory: $appdir" + exit 1 + ;; + esac + fi + echo " $prefix/$i -> $bb_path" + ln $linkopts "$bb_path" "$prefix/$i" || exit 1 + fi +done + +exit 0 diff --git a/busybox-1_37_0/applets/usage.c b/busybox-1_37_0/applets/usage.c new file mode 100644 index 000000000..94520ff66 --- /dev/null +++ b/busybox-1_37_0/applets/usage.c @@ -0,0 +1,55 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2008 Denys Vlasenko. + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +#include +#include +#include + +#include "autoconf.h" + +/* Since we can't use platform.h, have to do this again by hand: */ +#if ENABLE_NOMMU +# define BB_MMU 0 +# define USE_FOR_NOMMU(...) __VA_ARGS__ +# define USE_FOR_MMU(...) +#else +# define BB_MMU 1 +# define USE_FOR_NOMMU(...) +# define USE_FOR_MMU(...) __VA_ARGS__ +#endif + +#include "usage.h" +#define MAKE_USAGE(aname, usage) { aname, usage }, +static struct usage_data { + const char *aname; + const char *usage; +} usage_array[] = { +#include "applets.h" +}; + +static int compare_func(const void *a, const void *b) +{ + const struct usage_data *ua = a; + const struct usage_data *ub = b; + return strcmp(ua->aname, ub->aname); +} + +int main(void) +{ + int i; + int num_messages = sizeof(usage_array) / sizeof(usage_array[0]); + + if (num_messages == 0) + return 0; + + qsort(usage_array, + num_messages, sizeof(usage_array[0]), + compare_func); + for (i = 0; i < num_messages; i++) + write(STDOUT_FILENO, usage_array[i].usage, strlen(usage_array[i].usage) + 1); + + return 0; +} diff --git a/busybox-1_37_0/applets/usage_compressed b/busybox-1_37_0/applets/usage_compressed new file mode 100755 index 000000000..36fc2a007 --- /dev/null +++ b/busybox-1_37_0/applets/usage_compressed @@ -0,0 +1,62 @@ +#!/bin/sh + +target="$1" +loc="$2" + +test "$target" || exit 1 +test "$loc" || loc=. +test -x "$loc/usage" || exit 1 +test "$SED" || SED=sed +test "$DD" || DD=dd + +# Some people were bitten by their system lacking a (proper) od +od -v -b /dev/null +if test $? != 0; then + echo 'od tool is not installed or cannot accept "-v -b" options' + exit 1 +fi + +exec >"$target.$$" + +echo '#define UNPACKED_USAGE "" \' +"$loc/usage" | od -v -b \ +| grep -v '^ ' \ +| $SED -e 's/^[^ ]*//' \ + -e 's/ //g' \ + -e '/^$/d' \ + -e 's/\(...\)/\\\1/g' \ + -e 's/^/"/' \ + -e 's/$/" \\/' +echo '' +# "grep -v '^ '" is for toybox's od bug: od -b prints some extra lines: +#0000000 010 000 010 000 133 055 144 146 135 040 133 055 143 040 103 117 +# 000010 000010 026533 063144 020135 026533 020143 047503 +#0000020 116 106 104 111 122 135 040 133 055 154 040 114 117 107 106 111 +# 043116 044504 056522 055440 066055 046040 043517 044506 +#0000040 114 105 135 040 133 055 141 040 101 103 124 111 117 116 106 111 +# 042514 020135 026533 020141 041501 044524 047117 044506 + +echo "#define UNPACKED_USAGE_LENGTH `$loc/usage | wc -c`" +echo + +echo '#define PACKED_USAGE \' +## Breaks on big-endian systems! +## # Extra effort to avoid using "od -t x1": -t is not available +## # in non-CONFIG_DESKTOPed busybox od +## +## "$loc/usage" | bzip2 -1 | od -v -x \ +## | $SED -e 's/^[^ ]*//' \ +## -e 's/ //g' \ +## -e '/^$/d' \ +## -e 's/\(..\)\(..\)/0x\2,0x\1,/g' +## -e 's/$/ \\/' +"$loc/usage" | bzip2 -1 | $DD bs=2 skip=1 2>/dev/null | od -v -b \ +| grep -v '^ ' \ +| $SED -e 's/^[^ ]*//' \ + -e 's/ //g' \ + -e '/^$/d' \ + -e 's/\(...\)/0\1,/g' \ + -e 's/$/ \\/' +echo '' + +mv -- "$target.$$" "$target" diff --git a/busybox-1_37_0/applets/usage_pod.c b/busybox-1_37_0/applets/usage_pod.c new file mode 100644 index 000000000..9e6d3f0ee --- /dev/null +++ b/busybox-1_37_0/applets/usage_pod.c @@ -0,0 +1,113 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2009 Denys Vlasenko. + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +#include +#include +#include +#include +#include + +#include "autoconf.h" + +#define SKIP_applet_main +#define ALIGN1 /* nothing, just to placate applet_tables.h */ +#define ALIGN2 /* nothing, just to placate applet_tables.h */ +#include "applet_tables.h" + +/* Since we can't use platform.h, have to do this again by hand: */ +#if ENABLE_NOMMU +# define BB_MMU 0 +# define USE_FOR_NOMMU(...) __VA_ARGS__ +# define USE_FOR_MMU(...) +#else +# define BB_MMU 1 +# define USE_FOR_NOMMU(...) +# define USE_FOR_MMU(...) __VA_ARGS__ +#endif + +#include "usage.h" +#define MAKE_USAGE(aname, usage) { aname, usage }, +static struct usage_data { + const char *aname; + const char *usage; +} usage_array[] = { +#include "applets.h" +}; + +static int compare_func(const void *a, const void *b) +{ + const struct usage_data *ua = a; + const struct usage_data *ub = b; + return strcmp(ua->aname, ub->aname); +} + +int main(void) +{ + int col, len2; + + int i; + int num_messages = sizeof(usage_array) / sizeof(usage_array[0]); + + if (num_messages == 0) + return 0; + + qsort(usage_array, + num_messages, sizeof(usage_array[0]), + compare_func); + + col = 0; + for (i = 0; i < num_messages; i++) { + len2 = strlen(usage_array[i].aname) + 2; + if (col >= 76 - len2) { + printf(",\n"); + col = 0; + } + if (col == 0) { + col = 6; + printf("\t"); + } else { + printf(", "); + } + printf("%s", usage_array[i].aname); + col += len2; + } + printf("\n\n"); + + printf("=head1 COMMAND DESCRIPTIONS\n\n"); + printf("=over 4\n\n"); + + for (i = 0; i < num_messages; i++) { + if (usage_array[i].aname[0] >= 'a' && usage_array[i].aname[0] <= 'z' + && usage_array[i].usage[0] != NOUSAGE_STR[0] + ) { + printf("=item B<%s>\n\n", usage_array[i].aname); + if (usage_array[i].usage[0]) + printf("%s %s\n\n", usage_array[i].aname, usage_array[i].usage); + else + printf("%s\n\n", usage_array[i].aname); + } + } + printf("=back\n\n"); + + return 0; +} + +/* TODO: we used to make options bold with B<> and output an example too: + +=item B + +cat [B<-u>] [FILE]... + +Concatenate FILE(s) and print them to stdout + +Options: + -u Use unbuffered i/o (ignored) + +Example: + $ cat /proc/uptime + 110716.72 17.67 + +*/ diff --git a/busybox-1_37_0/applets_sh/mim b/busybox-1_37_0/applets_sh/mim new file mode 100755 index 000000000..2a65c35bb --- /dev/null +++ b/busybox-1_37_0/applets_sh/mim @@ -0,0 +1,39 @@ +#!/bin/sh +MIMFILE="Mimfile" +if [ $# -ge 2 ] && [ "$1" = "-f" ] +then + MIMFILE="$2" + shift 2 +fi +exec <"$MIMFILE" || exit 1 +{ + INCASE=false + while read -r REPLY + do + case $REPLY in + *:) + if ! $INCASE + then + printf '[ $# -eq 0 ] && set -- "%s" +TARGET="$1" +shift +case "$TARGET" in +' "${REPLY%:}" + else + printf ';;\n' + fi + printf '%s)\n' "${REPLY%:}" + INCASE=true + ;; + "") ;; + *) printf '%s\n' "${REPLY##[ ]}";; + esac + done + $INCASE && printf ';;\n' + printf '*) +echo "Unknown command $TARGET" +exit 1 +;; +esac +' +} | sh -s "$@" diff --git a/busybox-1_37_0/applets_sh/nologin b/busybox-1_37_0/applets_sh/nologin new file mode 100755 index 000000000..4ed5f6ca3 --- /dev/null +++ b/busybox-1_37_0/applets_sh/nologin @@ -0,0 +1,3 @@ +cat /etc/nologin.txt 2>/dev/null || echo This account is not available +sleep 5 +exit 1 diff --git a/busybox-1_37_0/arch/i386/Makefile b/busybox-1_37_0/arch/i386/Makefile new file mode 100644 index 000000000..2fa008fa7 --- /dev/null +++ b/busybox-1_37_0/arch/i386/Makefile @@ -0,0 +1,21 @@ +# ========================================================================== +# Build system +# ========================================================================== + +# Allow i486 insns (basically, bswap insn) +# Do not try to tune for 486+ (might add padding) +CFLAGS += $(call cc-option,-march=i486 -mtune=i386,) + +ifeq ($(CONFIG_STACK_OPTIMIZATION_386),y) +# -mpreferred-stack-boundary=2 is essential in preventing gcc 4.2.x +# from aligning stack to 16 bytes. (Which is gcc's way of supporting SSE). +CFLAGS += $(call cc-option,-mpreferred-stack-boundary=2,) +endif + +# "Control how GCC aligns variables. +# Supported values for type are compat uses increased alignment value +# compatible uses GCC 4.8 and earlier, abi uses alignment value as specified by the psABI, +# and cacheline uses increased alignment value to match the cache line size. +# compat is the default." +# "abi" seems to be somewhat successful in preventing oversealous data alignment. +CFLAGS += $(call cc-option,-malign-data=abi,) diff --git a/busybox-1_37_0/arch/sparc/Makefile b/busybox-1_37_0/arch/sparc/Makefile new file mode 100644 index 000000000..0b1c56cb5 --- /dev/null +++ b/busybox-1_37_0/arch/sparc/Makefile @@ -0,0 +1,11 @@ +# When building a library, even intra-library references, +# such as from find_applet_by_name() to applet_names[], +# don't work with -fpic on sparc, needs -fPIC. +# Don't know why it fails in this case but works when +# a binary is being built. +# +# (if is superfluous, ARCH_FPIC is only used by library build, but it +# demonstrates the point: non-pic binary does not need it) +ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y) +ARCH_FPIC = -fPIC +endif diff --git a/busybox-1_37_0/arch/sparc64/Makefile b/busybox-1_37_0/arch/sparc64/Makefile new file mode 100644 index 000000000..0b1c56cb5 --- /dev/null +++ b/busybox-1_37_0/arch/sparc64/Makefile @@ -0,0 +1,11 @@ +# When building a library, even intra-library references, +# such as from find_applet_by_name() to applet_names[], +# don't work with -fpic on sparc, needs -fPIC. +# Don't know why it fails in this case but works when +# a binary is being built. +# +# (if is superfluous, ARCH_FPIC is only used by library build, but it +# demonstrates the point: non-pic binary does not need it) +ifeq ($(CONFIG_BUILD_LIBBUSYBOX),y) +ARCH_FPIC = -fPIC +endif diff --git a/busybox-1_37_0/arch/x86_64/Makefile b/busybox-1_37_0/arch/x86_64/Makefile new file mode 100644 index 000000000..16576fb81 --- /dev/null +++ b/busybox-1_37_0/arch/x86_64/Makefile @@ -0,0 +1,11 @@ +# ========================================================================== +# Build system +# ========================================================================== + +# "Control how GCC aligns variables. +# Supported values for type are compat uses increased alignment value +# compatible uses GCC 4.8 and earlier, abi uses alignment value as specified by the psABI, +# and cacheline uses increased alignment value to match the cache line size. +# compat is the default." +# "abi" seems to be somewhat successful in preventing oversealous data alignment. +CFLAGS += $(call cc-option,-malign-data=abi,) diff --git a/busybox-1_37_0/archival/Config.src b/busybox-1_37_0/archival/Config.src new file mode 100644 index 000000000..6f4f30c43 --- /dev/null +++ b/busybox-1_37_0/archival/Config.src @@ -0,0 +1,38 @@ +# +# For a description of the syntax of this configuration file, +# see docs/Kconfig-language.txt. +# + +menu "Archival Utilities" + +config FEATURE_SEAMLESS_XZ + bool "Make tar, rpm, modprobe etc understand .xz data" + default y + +config FEATURE_SEAMLESS_LZMA + bool "Make tar, rpm, modprobe etc understand .lzma data" + default y + +config FEATURE_SEAMLESS_BZ2 + bool "Make tar, rpm, modprobe etc understand .bz2 data" + default y + +config FEATURE_SEAMLESS_GZ + bool "Make tar, rpm, modprobe etc understand .gz data" + default y + +config FEATURE_SEAMLESS_Z + bool "Make tar, rpm, modprobe etc understand .Z data" + default n # it is ancient + +INSERT + +config FEATURE_LZMA_FAST + bool "Optimize lzma for speed" + default n + depends on UNLZMA || LZCAT || LZMA || FEATURE_SEAMLESS_LZMA + help + This option reduces decompression time by about 25% at the cost of + a 1K bigger binary. + +endmenu diff --git a/busybox-1_37_0/archival/Kbuild.src b/busybox-1_37_0/archival/Kbuild.src new file mode 100644 index 000000000..b3a7d538f --- /dev/null +++ b/busybox-1_37_0/archival/Kbuild.src @@ -0,0 +1,11 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2005 by Erik Andersen +# +# Licensed under GPLv2, see file LICENSE in this source tree. + +libs-y += libarchive/ + +lib-y:= + +INSERT diff --git a/busybox-1_37_0/archival/ar.c b/busybox-1_37_0/archival/ar.c new file mode 100644 index 000000000..320cbae72 --- /dev/null +++ b/busybox-1_37_0/archival/ar.c @@ -0,0 +1,301 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini ar implementation for busybox + * + * Copyright (C) 2000 by Glenn McGrath + * + * Based in part on BusyBox tar, Debian dpkg-deb and GNU ar. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * Archive creation support: + * Copyright (C) 2010 Nokia Corporation. All rights reserved. + * Written by Alexander Shishkin. + * + * There is no single standard to adhere to so ar may not portable + * between different systems + * http://www.unix-systems.org/single_unix_specification_v2/xcu/ar.html + */ +//config:config AR +//config: bool "ar (9.5 kb)" +//config: default n # needs to be improved to be able to replace binutils ar +//config: help +//config: ar is an archival utility program used to create, modify, and +//config: extract contents from archives. In practice, it is used exclusively +//config: for object module archives used by compilers. +//config: +//config: Unless you have a specific application which requires ar, you should +//config: probably say N here: most compilers come with their own ar utility. +//config: +//config:config FEATURE_AR_LONG_FILENAMES +//config: bool "Support long filenames (not needed for debs)" +//config: default y +//config: depends on AR +//config: help +//config: By default the ar format can only store the first 15 characters +//config: of the filename, this option removes that limitation. +//config: It supports the GNU ar long filename method which moves multiple long +//config: filenames into a the data section of a new ar entry. +//config: +//config:config FEATURE_AR_CREATE +//config: bool "Support archive creation" +//config: default y +//config: depends on AR +//config: help +//config: This enables archive creation (-c and -r) with busybox ar. + +//applet:IF_AR(APPLET(ar, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_AR) += ar.o + +#include "libbb.h" +#include "bb_archive.h" +#include "ar_.h" + +#if ENABLE_FEATURE_AR_CREATE +/* filter out entries with same names as specified on the command line */ +static char FAST_FUNC filter_replaceable(archive_handle_t *handle) +{ + if (find_list_entry(handle->accept, handle->file_header->name)) + return EXIT_FAILURE; + + return EXIT_SUCCESS; +} + +static void output_ar_header(archive_handle_t *handle) +{ + /* GNU ar 2.19.51.0.14 creates malformed archives + * if input files are >10G. It also truncates files >4GB + * (uses "size mod 4G"). We abort in this case: + * We could add support for up to 10G files, but this is unlikely to be useful. + * Note that unpacking side limits all fields to "unsigned int" data type, + * and treats "all ones" as an error indicator. Thus max we allow here is UINT_MAX-1. + */ + enum { + /* for 2nd field: mtime */ + MAX11CHARS = UINT_MAX > 0xffffffff ? (unsigned)99999999999 : UINT_MAX-1, + /* for last field: filesize */ + MAX10CHARS = UINT_MAX > 0xffffffff ? (unsigned)9999999999 : UINT_MAX-1, + }; + + struct file_header_t *fh = handle->file_header; + + if (handle->offset & 1) { + xwrite(handle->src_fd, "\n", 1); + handle->offset++; + } + + /* Careful! The widths should be exact. Fields must be separated */ + if (sizeof(off_t) > 4 && fh->size > (off_t)MAX10CHARS) { + bb_error_msg_and_die("'%s' is bigger than ar can handle", fh->name); + } + fdprintf(handle->src_fd, "%-16.16s%-12lu%-6u%-6u%-8o%-10"OFF_FMT"u`\n", + fh->name, + (sizeof(time_t) > 4 && fh->mtime > MAX11CHARS) ? (long)0 : (long)fh->mtime, + fh->uid > 99999 ? 0 : (int)fh->uid, + fh->gid > 99999 ? 0 : (int)fh->gid, + (int)fh->mode & 07777777, + fh->size + ); + + handle->offset += AR_HEADER_LEN; +} + +/* + * when replacing files in an existing archive, copy from the + * original archive those files that are to be left intact + */ +static void FAST_FUNC copy_data(archive_handle_t *handle) +{ + archive_handle_t *out_handle = handle->ar__out; + struct file_header_t *fh = handle->file_header; + + out_handle->file_header = fh; + output_ar_header(out_handle); + + bb_copyfd_exact_size(handle->src_fd, out_handle->src_fd, fh->size); + out_handle->offset += fh->size; +} + +static int write_ar_header(archive_handle_t *handle) +{ + char *fn; + char fn_h[17]; /* 15 + "/" + NUL */ + struct stat st; + int fd; + + fn = llist_pop(&handle->accept); + if (!fn) + return -1; + + xstat(fn, &st); + + handle->file_header->mtime = st.st_mtime; + handle->file_header->uid = st.st_uid; + handle->file_header->gid = st.st_gid; + handle->file_header->mode = st.st_mode; + handle->file_header->size = st.st_size; + handle->file_header->name = fn_h; +//TODO: if ENABLE_FEATURE_AR_LONG_FILENAMES... + sprintf(fn_h, "%.15s/", bb_basename(fn)); + + output_ar_header(handle); + + fd = xopen(fn, O_RDONLY); + bb_copyfd_exact_size(fd, handle->src_fd, st.st_size); + close(fd); + handle->offset += st.st_size; + + return 0; +} + +static int write_ar_archive(archive_handle_t *handle) +{ + struct stat st; + archive_handle_t *out_handle; + + xfstat(handle->src_fd, &st, handle->ar__name); + + /* if archive exists, create a new handle for output. + * we create it in place of the old one. + */ + if (st.st_size != 0) { + out_handle = init_handle(); + xunlink(handle->ar__name); + out_handle->src_fd = xopen(handle->ar__name, O_WRONLY | O_CREAT | O_TRUNC); + out_handle->accept = handle->accept; + } else { + out_handle = handle; + } + + handle->ar__out = out_handle; + + xwrite(out_handle->src_fd, AR_MAGIC "\n", AR_MAGIC_LEN + 1); + out_handle->offset += AR_MAGIC_LEN + 1; + + /* skip to the end of the archive if we have to append stuff */ + if (st.st_size != 0) { + handle->filter = filter_replaceable; + handle->action_data = copy_data; + unpack_ar_archive(handle); + } + + while (write_ar_header(out_handle) == 0) + continue; + + /* optional, since we exit right after we return */ + if (ENABLE_FEATURE_CLEAN_UP) { + close(handle->src_fd); + if (out_handle->src_fd != handle->src_fd) + close(out_handle->src_fd); + } + + return EXIT_SUCCESS; +} +#endif /* FEATURE_AR_CREATE */ + +static void FAST_FUNC header_verbose_list_ar(const file_header_t *file_header) +{ + char mode[12]; + char *mtime; + + bb_mode_string(mode, file_header->mode); + mtime = ctime(&file_header->mtime); + mtime[16] = ' '; + memmove(&mtime[17], &mtime[20], 4); + mtime[21] = '\0'; + printf("%s %u/%u%7"OFF_FMT"u %s %s\n", &mode[1], + (int)file_header->uid, (int)file_header->gid, + file_header->size, + &mtime[4], file_header->name + ); +} + +//usage:#define ar_trivial_usage +//usage: "x|p|t"IF_FEATURE_AR_CREATE("|r")" [-ov] ARCHIVE [FILE]..." +//usage:#define ar_full_usage "\n\n" +//usage: "Extract or list FILEs from an ar archive"IF_FEATURE_AR_CREATE(", or create it")"\n" +//usage: "\n x Extract" +//usage: "\n p Extract to stdout" +//usage: "\n t List" +//usage: IF_FEATURE_AR_CREATE( +//usage: "\n r Create" +//usage: ) +//usage: "\n -o Restore mtime" +//usage: "\n -v Verbose" + +int ar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int ar_main(int argc UNUSED_PARAM, char **argv) +{ + archive_handle_t *archive_handle; + unsigned opt, t; + enum { + OPT_VERBOSE = (1 << 0), + OPT_PRESERVE_DATE = (1 << 1), + /* "ar r" implies create, but warns about it. c suppresses warning. + * bbox accepts but ignores it: */ + OPT_CREATE = (1 << 2), + CMD_PRINT = (1 << 3), + FIRST_CMD = CMD_PRINT, + CMD_LIST = (1 << 4), + CMD_EXTRACT = (1 << 5), + CMD_INSERT = ((1 << 6) * ENABLE_FEATURE_AR_CREATE), + }; + + archive_handle = init_handle(); + + /* prepend '-' to the first argument if required */ + if (argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') + argv[1] = xasprintf("-%s", argv[1]); + opt = getopt32(argv, "^" + "voc""ptx"IF_FEATURE_AR_CREATE("r") + "\0" + /* -1: at least one arg is reqd */ + /* one of p,t,x[,r] is required */ + "-1:p:t:x"IF_FEATURE_AR_CREATE(":r") + ); + argv += optind; + + t = opt / FIRST_CMD; + if (t & (t-1)) /* more than one of p,t,x[,r] are specified */ + bb_show_usage(); + + if (opt & CMD_PRINT) { + archive_handle->action_data = data_extract_to_stdout; + } + if (opt & CMD_LIST) { + archive_handle->action_header = header_list; + } + if (opt & CMD_EXTRACT) { + archive_handle->action_data = data_extract_all; + } + if (opt & OPT_PRESERVE_DATE) { + archive_handle->ah_flags |= ARCHIVE_RESTORE_DATE; + } + if (opt & OPT_VERBOSE) { + archive_handle->action_header = header_verbose_list_ar; + } +#if ENABLE_FEATURE_AR_CREATE + archive_handle->ar__name = *argv; +#endif + archive_handle->src_fd = xopen(*argv++, + (opt & CMD_INSERT) + ? O_RDWR | O_CREAT + : O_RDONLY + ); + + if (*argv) + archive_handle->filter = filter_accept_list; + while (*argv) { + llist_add_to_end(&archive_handle->accept, *argv++); + } + +#if ENABLE_FEATURE_AR_CREATE + if (opt & CMD_INSERT) + return write_ar_archive(archive_handle); +#endif + + unpack_ar_archive(archive_handle); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/archival/bbunzip.c b/busybox-1_37_0/archival/bbunzip.c new file mode 100644 index 000000000..b7944a62a --- /dev/null +++ b/busybox-1_37_0/archival/bbunzip.c @@ -0,0 +1,603 @@ +/* vi: set sw=4 ts=4: */ +/* + * Common code for gunzip-like applets + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//kbuild:lib-$(CONFIG_ZCAT) += bbunzip.o +//kbuild:lib-$(CONFIG_GUNZIP) += bbunzip.o +//kbuild:lib-$(CONFIG_BZCAT) += bbunzip.o +//kbuild:lib-$(CONFIG_BUNZIP2) += bbunzip.o + +/* lzop_main() uses bbunpack(), need this: */ +//kbuild:lib-$(CONFIG_LZOP) += bbunzip.o +//kbuild:lib-$(CONFIG_LZOPCAT) += bbunzip.o +//kbuild:lib-$(CONFIG_UNLZOP) += bbunzip.o +/* bzip2_main() too: */ +//kbuild:lib-$(CONFIG_BZIP2) += bbunzip.o +/* gzip_main() too: */ +//kbuild:lib-$(CONFIG_GZIP) += bbunzip.o + +#include "libbb.h" +#include "bb_archive.h" + +static +int open_to_or_warn(int to_fd, const char *filename, int flags, int mode) +{ + int fd = open3_or_warn(filename, flags, mode); + if (fd < 0) { + return 1; + } + xmove_fd(fd, to_fd); + return 0; +} + +char* FAST_FUNC append_ext(char *filename, const char *expected_ext) +{ + return xasprintf("%s.%s", filename, expected_ext); +} + +int FAST_FUNC bbunpack(char **argv, + IF_DESKTOP(long long) int FAST_FUNC (*unpacker)(transformer_state_t *xstate), + char* FAST_FUNC (*make_new_name)(char *filename, const char *expected_ext), + const char *expected_ext +) +{ + struct stat stat_buf; + IF_DESKTOP(long long) int status = 0; + char *filename, *new_name; + smallint exitcode = 0; + transformer_state_t xstate; + + do { + /* NB: new_name is *maybe* malloc'ed! */ + new_name = NULL; + filename = *argv; /* can be NULL - 'streaming' bunzip2 */ + + if (filename && LONE_DASH(filename)) + filename = NULL; + + /* Open src */ + if (filename) { + if (!(option_mask32 & BBUNPK_SEAMLESS_MAGIC)) { + if (stat(filename, &stat_buf) != 0) { + err_name: + bb_simple_perror_msg(filename); + err: + exitcode = 1; + goto free_name; + } + if (open_to_or_warn(STDIN_FILENO, filename, O_RDONLY, 0)) + goto err; + } else { + /* "clever zcat" with FILE */ + /* fail_if_not_compressed because zcat refuses uncompressed input */ + int fd = open_zipped(filename, /*fail_if_not_compressed:*/ 1); + if (fd < 0) + goto err_name; + xmove_fd(fd, STDIN_FILENO); + } + } else + if (option_mask32 & BBUNPK_SEAMLESS_MAGIC) { + /* "clever zcat" on stdin */ + if (setup_unzip_on_fd(STDIN_FILENO, /*fail_if_not_compressed*/ 1)) + goto err; + } + + /* Special cases: test, stdout */ + if (option_mask32 & (BBUNPK_OPT_STDOUT|BBUNPK_OPT_TEST)) { + if (option_mask32 & BBUNPK_OPT_TEST) + if (open_to_or_warn(STDOUT_FILENO, bb_dev_null, O_WRONLY, 0)) + xfunc_die(); + filename = NULL; + } + + /* Open dst if we are going to unpack to file */ + if (filename) { + new_name = make_new_name(filename, expected_ext); + if (!new_name) { + bb_error_msg("%s: unknown suffix - ignored", filename); + goto err; + } + + /* -f: overwrite existing output files */ + if (option_mask32 & BBUNPK_OPT_FORCE) { + unlink(new_name); + } + + /* O_EXCL: "real" bunzip2 doesn't overwrite files */ + /* GNU gunzip does not bail out, but goes to next file */ + if (open_to_or_warn(STDOUT_FILENO, new_name, O_WRONLY | O_CREAT | O_EXCL, + stat_buf.st_mode)) + goto err; + } + + /* Check that the input is sane */ + if (!(option_mask32 & BBUNPK_OPT_FORCE) && isatty(STDIN_FILENO)) { + bb_simple_error_msg_and_die("compressed data not read from terminal, " + "use -f to force it"); + } + + if (!(option_mask32 & BBUNPK_SEAMLESS_MAGIC)) { + init_transformer_state(&xstate); + /*xstate.signature_skipped = 0; - already is */ + /*xstate.src_fd = STDIN_FILENO; - already is */ + xstate.dst_fd = STDOUT_FILENO; + status = unpacker(&xstate); + if (status < 0) + exitcode = 1; + } else { + if (bb_copyfd_eof(STDIN_FILENO, STDOUT_FILENO) < 0) + /* Disk full, tty closed, etc. No point in continuing */ + xfunc_die(); + } + + if (!(option_mask32 & BBUNPK_OPT_STDOUT)) + xclose(STDOUT_FILENO); /* with error check! */ + + if (filename) { + char *del = new_name; + + if (status >= 0) { + unsigned new_name_len; + + /* TODO: restore other things? */ + if (xstate.mtime != 0) { + struct timeval times[2]; + + times[1].tv_sec = times[0].tv_sec = xstate.mtime; + times[1].tv_usec = times[0].tv_usec = 0; + /* Note: we closed it first. + * On some systems calling utimes + * then closing resets the mtime + * back to current time. */ + utimes(new_name, times); /* ignoring errors */ + } + + if (ENABLE_DESKTOP) + new_name_len = strlen(new_name); + /* Restore source filename (unless tgz -> tar case) */ + if (new_name == filename) { + new_name_len = strlen(filename); + filename[new_name_len] = '.'; + } + /* Extreme bloat for gunzip compat */ + /* Some users do want this info... */ + if (ENABLE_DESKTOP && (option_mask32 & BBUNPK_OPT_VERBOSE)) { + unsigned percent = status + ? ((uoff_t)stat_buf.st_size * 100u / (unsigned long long)status) + : 0; + fprintf(stderr, "%s: %u%% - replaced with %.*s\n", + filename, + 100u - percent, + new_name_len, new_name + ); + } + /* Delete _source_ file */ + del = filename; + if (option_mask32 & BBUNPK_OPT_KEEP) /* ... unless -k */ + del = NULL; + } + if (del) + xunlink(del); + free_name: + if (new_name != filename) + free(new_name); + } + } while (*argv && *++argv); + + if (option_mask32 & BBUNPK_OPT_STDOUT) + xclose(STDOUT_FILENO); /* with error check! */ + + return exitcode; +} + +#if ENABLE_UNCOMPRESS \ + || ENABLE_FEATURE_BZIP2_DECOMPRESS \ + || ENABLE_UNLZMA || ENABLE_LZCAT || ENABLE_LZMA \ + || ENABLE_UNXZ || ENABLE_XZCAT || ENABLE_XZ +static +char* FAST_FUNC make_new_name_generic(char *filename, const char *expected_ext) +{ + char *extension = strrchr(filename, '.'); + if (!extension || strcmp(extension + 1, expected_ext) != 0) { + /* Mimic GNU gunzip - "real" bunzip2 tries to */ + /* unpack file anyway, to file.out */ + return NULL; + } + *extension = '\0'; + return filename; +} +#endif + + +/* + * Uncompress applet for busybox (c) 2002 Glenn McGrath + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//usage:#define uncompress_trivial_usage +//usage: "[-cf] [FILE]..." +//usage:#define uncompress_full_usage "\n\n" +//usage: "Decompress FILEs (or stdin)\n" +//usage: "\n -c Write to stdout" +//usage: "\n -f Overwrite" + +//config:config UNCOMPRESS +//config: bool "uncompress (7.1 kb)" +//config: default n # ancient +//config: help +//config: uncompress is used to decompress archives created by compress. +//config: Not much used anymore, replaced by gzip/gunzip. + +//applet:IF_UNCOMPRESS(APPLET(uncompress, BB_DIR_BIN, BB_SUID_DROP)) +//kbuild:lib-$(CONFIG_UNCOMPRESS) += bbunzip.o +#if ENABLE_UNCOMPRESS +int uncompress_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int uncompress_main(int argc UNUSED_PARAM, char **argv) +{ +// (N)compress 4.2.4.4: +// -d If given, decompression is done instead +// -c Write output on stdout, don't remove original +// -b Parameter limits the max number of bits/code +// -f Forces output file to be generated +// -v Write compression statistics +// -V Output vesion and compile options +// -r Recursive. If a filename is a directory, descend into it and compress everything + getopt32(argv, "cf"); + + argv += optind; + + return bbunpack(argv, unpack_Z_stream, make_new_name_generic, "Z"); +} +#endif + + +/* + * Gzip implementation for busybox + * + * Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly. + * + * Originally adjusted for busybox by Sven Rudolph + * based on gzip sources + * + * Adjusted further by Erik Andersen to support files as + * well as stdin/stdout, and to generally behave itself wrt command line + * handling. + * + * General cleanup to better adhere to the style guide and make use of standard + * busybox functions by Glenn McGrath + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface + * Copyright (C) 1992-1993 Jean-loup Gailly + * The unzip code was written and put in the public domain by Mark Adler. + * Portions of the lzw code are derived from the public domain 'compress' + * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies, + * Ken Turkowski, Dave Mack and Peter Jannesen. + */ +//usage:#define gunzip_trivial_usage +//usage: "[-cfkt] [FILE]..." +//usage:#define gunzip_full_usage "\n\n" +//usage: "Decompress FILEs (or stdin)\n" +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -k Keep input files" +//usage: "\n -t Test integrity" +//usage: +//usage:#define gunzip_example_usage +//usage: "$ ls -la /tmp/BusyBox*\n" +//usage: "-rw-rw-r-- 1 andersen andersen 557009 Apr 11 10:55 /tmp/BusyBox-0.43.tar.gz\n" +//usage: "$ gunzip /tmp/BusyBox-0.43.tar.gz\n" +//usage: "$ ls -la /tmp/BusyBox*\n" +//usage: "-rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/BusyBox-0.43.tar\n" +//usage: +//usage:#define zcat_trivial_usage +//usage: "[FILE]..." +//usage:#define zcat_full_usage "\n\n" +//usage: "Decompress to stdout" + +//config:config GUNZIP +//config: bool "gunzip (11 kb)" +//config: default y +//config: select FEATURE_GZIP_DECOMPRESS +//config: help +//config: gunzip is used to decompress archives created by gzip. +//config: You can use the '-t' option to test the integrity of +//config: an archive, without decompressing it. +//config: +//config:config ZCAT +//config: bool "zcat (24 kb)" +//config: default y +//config: select FEATURE_GZIP_DECOMPRESS +//config: help +//config: Alias to "gunzip -c". +//config: +//config:config FEATURE_GUNZIP_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on (GUNZIP || ZCAT) && LONG_OPTS + +//applet:IF_GUNZIP(APPLET(gunzip, BB_DIR_BIN, BB_SUID_DROP)) +// APPLET_ODDNAME:name main location suid_type help +//applet:IF_ZCAT(APPLET_ODDNAME(zcat, gunzip, BB_DIR_BIN, BB_SUID_DROP, zcat)) +#if ENABLE_FEATURE_GZIP_DECOMPRESS +static +char* FAST_FUNC make_new_name_gunzip(char *filename, const char *expected_ext UNUSED_PARAM) +{ + char *extension = strrchr(filename, '.'); + + if (!extension) + return NULL; + + extension++; + if (strcmp(extension, "tgz" + 1) == 0 +#if ENABLE_FEATURE_SEAMLESS_Z + || (extension[0] == 'Z' && extension[1] == '\0') +#endif + ) { + extension[-1] = '\0'; + } else if (strcmp(extension, "tgz") == 0) { + filename = xstrdup(filename); + extension = strrchr(filename, '.'); + extension[2] = 'a'; + extension[3] = 'r'; + } else { + return NULL; + } + return filename; +} + +#if ENABLE_FEATURE_GUNZIP_LONG_OPTIONS +static const char gunzip_longopts[] ALIGN1 = + "stdout\0" No_argument "c" + "to-stdout\0" No_argument "c" + "force\0" No_argument "f" + "test\0" No_argument "t" + "no-name\0" No_argument "n" + ; +#endif + +/* + * Linux kernel build uses gzip -d -n. We accept and ignore it. + * Man page says: + * -n --no-name + * gzip: do not save the original file name and time stamp. + * (The original name is always saved if the name had to be truncated.) + * gunzip: do not restore the original file name/time even if present + * (remove only the gzip suffix from the compressed file name). + * This option is the default when decompressing. + * -N --name + * gzip: always save the original file name and time stamp (this is the default) + * gunzip: restore the original file name and time stamp if present. + */ +int gunzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int gunzip_main(int argc UNUSED_PARAM, char **argv) +{ +#if ENABLE_FEATURE_GUNZIP_LONG_OPTIONS + getopt32long(argv, BBUNPK_OPTSTR "dtn", gunzip_longopts); +#else + getopt32(argv, BBUNPK_OPTSTR "dtn"); +#endif + argv += optind; + + /* If called as zcat... + * Normally, "zcat" is just "gunzip -c". + * But if seamless magic is enabled, then we are much more clever. + */ + if (ENABLE_ZCAT && applet_name[1] == 'c') + option_mask32 |= BBUNPK_OPT_STDOUT | BBUNPK_SEAMLESS_MAGIC; + + return bbunpack(argv, unpack_gz_stream, make_new_name_gunzip, /*unused:*/ NULL); +} +#endif /* FEATURE_GZIP_DECOMPRESS */ + + +/* + * Modified for busybox by Glenn McGrath + * Added support output to stdout by Thomas Lundquist + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//usage:#define bunzip2_trivial_usage +//usage: "[-cfk] [FILE]..." +//usage:#define bunzip2_full_usage "\n\n" +//usage: "Decompress FILEs (or stdin)\n" +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -k Keep input files" +//usage: "\n -t Test integrity" +//usage: +//usage:#define bzcat_trivial_usage +//usage: "[FILE]..." +//usage:#define bzcat_full_usage "\n\n" +//usage: "Decompress to stdout" + +//config:config BUNZIP2 +//config: bool "bunzip2 (9.1 kb)" +//config: default y +//config: select FEATURE_BZIP2_DECOMPRESS +//config: help +//config: bunzip2 is a compression utility using the Burrows-Wheeler block +//config: sorting text compression algorithm, and Huffman coding. Compression +//config: is generally considerably better than that achieved by more +//config: conventional LZ77/LZ78-based compressors, and approaches the +//config: performance of the PPM family of statistical compressors. +//config: +//config: Unless you have a specific application which requires bunzip2, you +//config: should probably say N here. +//config: +//config:config BZCAT +//config: bool "bzcat (9 kb)" +//config: default y +//config: select FEATURE_BZIP2_DECOMPRESS +//config: help +//config: Alias to "bunzip2 -c". + +//applet:IF_BUNZIP2(APPLET(bunzip2, BB_DIR_USR_BIN, BB_SUID_DROP)) +// APPLET_ODDNAME:name main location suid_type help +//applet:IF_BZCAT(APPLET_ODDNAME(bzcat, bunzip2, BB_DIR_USR_BIN, BB_SUID_DROP, bzcat)) +#if ENABLE_FEATURE_BZIP2_DECOMPRESS || ENABLE_BUNZIP2 || ENABLE_BZCAT +int bunzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int bunzip2_main(int argc UNUSED_PARAM, char **argv) +{ + getopt32(argv, BBUNPK_OPTSTR "dt"); + argv += optind; + if (ENABLE_BZCAT && (!ENABLE_BUNZIP2 || applet_name[2] == 'c')) /* bzcat */ + option_mask32 |= BBUNPK_OPT_STDOUT; + + return bbunpack(argv, unpack_bz2_stream, make_new_name_generic, "bz2"); +} +#endif + + +/* + * Small lzma deflate implementation. + * Copyright (C) 2006 Aurelien Jacobs + * + * Based on bunzip.c from busybox + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//usage:#define unlzma_trivial_usage +//usage: "[-cfk] [FILE]..." +//usage:#define unlzma_full_usage "\n\n" +//usage: "Decompress FILEs (or stdin)\n" +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -k Keep input files" +//usage: "\n -t Test integrity" +//usage: +//usage:#define lzma_trivial_usage +//usage: "-d [-cfk] [FILE]..." +//usage:#define lzma_full_usage "\n\n" +//usage: "Decompress FILEs (or stdin)\n" +//usage: "\n -d Decompress" +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -k Keep input files" +//usage: "\n -t Test integrity" +//usage: +//usage:#define lzcat_trivial_usage +//usage: "[FILE]..." +//usage:#define lzcat_full_usage "\n\n" +//usage: "Decompress to stdout" + +//config:config UNLZMA +//config: bool "unlzma (7.8 kb)" +//config: default y +//config: help +//config: unlzma is a compression utility using the Lempel-Ziv-Markov chain +//config: compression algorithm, and range coding. Compression +//config: is generally considerably better than that achieved by the bzip2 +//config: compressors. +//config: +//config:config LZCAT +//config: bool "lzcat (7.8 kb)" +//config: default y +//config: help +//config: Alias to "unlzma -c". +//config: +//config:config LZMA +//config: bool "lzma -d" +//config: default y +//config: help +//config: Enable this option if you want commands like "lzma -d" to work. +//config: IOW: you'll get lzma applet, but it will always require -d option. + +//applet:IF_UNLZMA(APPLET(unlzma, BB_DIR_USR_BIN, BB_SUID_DROP)) +// APPLET_ODDNAME:name main location suid_type help +//applet:IF_LZCAT(APPLET_ODDNAME(lzcat, unlzma, BB_DIR_USR_BIN, BB_SUID_DROP, lzcat)) +//applet:IF_LZMA( APPLET_ODDNAME(lzma, unlzma, BB_DIR_USR_BIN, BB_SUID_DROP, lzma)) +//kbuild:lib-$(CONFIG_UNLZMA) += bbunzip.o +//kbuild:lib-$(CONFIG_LZCAT) += bbunzip.o +//kbuild:lib-$(CONFIG_LZMA) += bbunzip.o +#if ENABLE_UNLZMA || ENABLE_LZCAT || ENABLE_LZMA +int unlzma_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int unlzma_main(int argc UNUSED_PARAM, char **argv) +{ + IF_LZMA(int opts =) getopt32(argv, BBUNPK_OPTSTR "dt"); +# if ENABLE_LZMA + /* lzma without -d or -t? */ + if (applet_name[2] == 'm' && !(opts & (BBUNPK_OPT_DECOMPRESS|BBUNPK_OPT_TEST))) + bb_show_usage(); +# endif + /* lzcat? */ + if (ENABLE_LZCAT && applet_name[2] == 'c') + option_mask32 |= BBUNPK_OPT_STDOUT; + + argv += optind; + return bbunpack(argv, unpack_lzma_stream, make_new_name_generic, "lzma"); +} +#endif + + +//usage:#define unxz_trivial_usage +//usage: "[-cfk] [FILE]..." +//usage:#define unxz_full_usage "\n\n" +//usage: "Decompress FILEs (or stdin)\n" +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -k Keep input files" +//usage: "\n -t Test integrity" +//usage: +//usage:#define xz_trivial_usage +//usage: "-d [-cfk] [FILE]..." +//usage:#define xz_full_usage "\n\n" +//usage: "Decompress FILEs (or stdin)\n" +//usage: "\n -d Decompress" +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -k Keep input files" +//usage: "\n -t Test integrity" +//usage: +//usage:#define xzcat_trivial_usage +//usage: "[FILE]..." +//usage:#define xzcat_full_usage "\n\n" +//usage: "Decompress to stdout" + +//config:config UNXZ +//config: bool "unxz (13 kb)" +//config: default y +//config: help +//config: unxz is a unlzma successor. +//config: +//config:config XZCAT +//config: bool "xzcat (13 kb)" +//config: default y +//config: help +//config: Alias to "unxz -c". +//config: +//config:config XZ +//config: bool "xz -d" +//config: default y +//config: help +//config: Enable this option if you want commands like "xz -d" to work. +//config: IOW: you'll get xz applet, but it will always require -d option. + +//applet:IF_UNXZ(APPLET(unxz, BB_DIR_USR_BIN, BB_SUID_DROP)) +// APPLET_ODDNAME:name main location suid_type help +//applet:IF_XZCAT(APPLET_ODDNAME(xzcat, unxz, BB_DIR_USR_BIN, BB_SUID_DROP, xzcat)) +//applet:IF_XZ( APPLET_ODDNAME(xz, unxz, BB_DIR_USR_BIN, BB_SUID_DROP, xz)) +//kbuild:lib-$(CONFIG_UNXZ) += bbunzip.o +//kbuild:lib-$(CONFIG_XZCAT) += bbunzip.o +//kbuild:lib-$(CONFIG_XZ) += bbunzip.o +#if ENABLE_UNXZ || ENABLE_XZCAT || ENABLE_XZ +int unxz_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int unxz_main(int argc UNUSED_PARAM, char **argv) +{ + IF_XZ(int opts =) getopt32(argv, BBUNPK_OPTSTR "dt"); +# if ENABLE_XZ + /* xz without -d or -t? */ + if (applet_name[2] == '\0' && !(opts & (BBUNPK_OPT_DECOMPRESS|BBUNPK_OPT_TEST))) + bb_show_usage(); +# endif + /* xzcat? */ + if (ENABLE_XZCAT && applet_name[2] == 'c') + option_mask32 |= BBUNPK_OPT_STDOUT; + + argv += optind; + return bbunpack(argv, unpack_xz_stream, make_new_name_generic, "xz"); +} +#endif diff --git a/busybox-1_37_0/archival/bbunzip_test.sh b/busybox-1_37_0/archival/bbunzip_test.sh new file mode 100644 index 000000000..b8e31bf97 --- /dev/null +++ b/busybox-1_37_0/archival/bbunzip_test.sh @@ -0,0 +1,61 @@ +#!/bin/sh +# Test that concatenated gz files are unpacking correctly. +# It also tests that unpacking in general is working right. +# Since zip code has many corner cases, run it for a few hours +# to get a decent coverage (200000 tests or more). + +gzip="gzip" +gunzip="../busybox gunzip" +# Or the other way around: +#gzip="../busybox gzip" +#gunzip="gunzip" + +c=0 +i=$PID +while true; do + c=$((c+1)) + + # RANDOM is not very random on some shells. Spice it up. + # 100003 is prime + len1=$(( (((RANDOM*RANDOM)^i) & 0x7ffffff) % 100003 )) + i=$((i * 1664525 + 1013904223)) + len2=$(( (((RANDOM*RANDOM)^i) & 0x7ffffff) % 100003 )) + + # Just using urandom will make gzip use method 0 (store) - + # not good for test coverage! + cat /dev/urandom | while true; do read junk; echo "junk $c $i $junk"; done \ + | dd bs=$len1 count=1 >z1 2>/dev/null + cat /dev/urandom | while true; do read junk; echo "junk $c $i $junk"; done \ + | dd bs=$len2 count=1 >z2 2>/dev/null + + $gzip zz.gz + $gzip >zz.gz + $gunzip -c zz.gz >z9 || { + echo "Exitcode $?" + exit + } + sum=`cat z1 z2 | md5sum` + sum9=`md5sum /dev/null + $gzip z1 + $gzip z2 + cat z1.gz z2.gz z1.gz z2.gz >zz.gz + $gunzip -c zz.gz >z9 || { + echo "Exitcode $? (2)" + exit + } + sum9=`md5sum /dev/null diff --git a/busybox-1_37_0/archival/bbunzip_test3.sh b/busybox-1_37_0/archival/bbunzip_test3.sh new file mode 100644 index 000000000..2dc4afda1 --- /dev/null +++ b/busybox-1_37_0/archival/bbunzip_test3.sh @@ -0,0 +1,23 @@ +#!/bin/sh +# Leak test for gunzip. Watch top for growing process size. +# In this case we look for leaks in "concatenated .gz" code - +# we feed gunzip with a stream of .gz files. + +i=$PID +c=0 +while true; do + c=$((c + 1)) + echo "Block# $c" >&2 + # RANDOM is not very random on some shells. Spice it up. + i=$((i * 1664525 + 1013904223)) + # 100003 is prime + len=$(( (((RANDOM*RANDOM)^i) & 0x7ffffff) % 100003 )) + + # Just using urandom will make gzip use method 0 (store) - + # not good for test coverage! + cat /dev/urandom \ + | while true; do read junk; echo "junk $c $i $junk"; done \ + | dd bs=$len count=1 2>/dev/null \ + | gzip >xxx.gz + cat xxx.gz xxx.gz xxx.gz xxx.gz xxx.gz xxx.gz xxx.gz xxx.gz +done | ../busybox gunzip -c >/dev/null diff --git a/busybox-1_37_0/archival/bzip2.c b/busybox-1_37_0/archival/bzip2.c new file mode 100644 index 000000000..bce13cf93 --- /dev/null +++ b/busybox-1_37_0/archival/bzip2.c @@ -0,0 +1,247 @@ +/* + * Copyright (C) 2007 Denys Vlasenko + * + * This file uses bzip2 library code which is written + * by Julian Seward . + * See README and LICENSE files in bz/ directory for more information + * about bzip2 library code. + */ +//config:config BZIP2 +//config: bool "bzip2 (16 kb)" +//config: default y +//config: help +//config: bzip2 is a compression utility using the Burrows-Wheeler block +//config: sorting text compression algorithm, and Huffman coding. Compression +//config: is generally considerably better than that achieved by more +//config: conventional LZ77/LZ78-based compressors, and approaches the +//config: performance of the PPM family of statistical compressors. +//config: +//config: Unless you have a specific application which requires bzip2, you +//config: should probably say N here. +//config: +//config:config BZIP2_SMALL +//config: int "Trade bytes for speed (0:fast, 9:small)" +//config: default 8 # all "fast or small" options default to small +//config: range 0 9 +//config: depends on BZIP2 +//config: help +//config: Trade code size versus speed. +//config: Approximate values with gcc-6.3.0 "bzip -9" compressing +//config: linux-4.15.tar were: +//config: value time (sec) code size (386) +//config: 9 (smallest) 70.11 7687 +//config: 8 67.93 8091 +//config: 7 67.88 8405 +//config: 6 67.78 8624 +//config: 5 67.05 9427 +//config: 4-0 (fastest) 64.14 12083 +//config: +//config:config FEATURE_BZIP2_DECOMPRESS +//config: bool "Enable decompression" +//config: default y +//config: depends on BZIP2 || BUNZIP2 || BZCAT +//config: help +//config: Enable -d (--decompress) and -t (--test) options for bzip2. +//config: This will be automatically selected if bunzip2 or bzcat is +//config: enabled. + +//applet:IF_BZIP2(APPLET(bzip2, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_BZIP2) += bzip2.o + +//usage:#define bzip2_trivial_usage +//usage: "[-cfk" IF_FEATURE_BZIP2_DECOMPRESS("dt") "123456789] [FILE]..." +//usage:#define bzip2_full_usage "\n\n" +//usage: "Compress FILEs (or stdin) with bzip2 algorithm\n" +//usage: "\n -1..9 Compression level" +//usage: IF_FEATURE_BZIP2_DECOMPRESS( +//usage: "\n -d Decompress" +//usage: ) +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -k Keep input files" +//usage: IF_FEATURE_BZIP2_DECOMPRESS( +//usage: "\n -t Test integrity" +//usage: ) + +#include "libbb.h" +#include "bb_archive.h" + +#if CONFIG_BZIP2_SMALL >= 4 +#define BZIP2_SPEED (9 - CONFIG_BZIP2_SMALL) +#else +#define BZIP2_SPEED 5 +#endif + +/* Speed test: + * Compiled with gcc 4.2.1, run on Athlon 64 1800 MHz (512K L2 cache). + * Stock bzip2 is 26.4% slower than bbox bzip2 at SPEED 1 + * (time to compress gcc-4.2.1.tar is 126.4% compared to bbox). + * At SPEED 5 difference is 32.7%. + * + * Test run of all BZIP2_SPEED values on a 11Mb text file: + * Size Time (3 runs) + * 0: 10828 4.145 4.146 4.148 + * 1: 11097 3.845 3.860 3.861 + * 2: 11392 3.763 3.767 3.768 + * 3: 11892 3.722 3.724 3.727 + * 4: 12740 3.637 3.640 3.644 + * 5: 17273 3.497 3.509 3.509 + */ + + +#define BZ_DEBUG 0 +/* Takes ~300 bytes, detects corruption caused by bad RAM etc */ +#define BZ_LIGHT_DEBUG 0 + +#include "libarchive/bz/bzlib.h" + +#include "libarchive/bz/bzlib_private.h" + +#include "libarchive/bz/blocksort.c" +#include "libarchive/bz/bzlib.c" +#include "libarchive/bz/compress.c" +#include "libarchive/bz/huffman.c" + +/* No point in being shy and having very small buffer here. + * bzip2 internal buffers are much bigger anyway, hundreds of kbytes. + * If iobuf is several pages long, malloc() may use mmap, + * making iobuf page aligned and thus (maybe) have one memcpy less + * if kernel is clever enough. + */ +enum { + IOBUF_SIZE = 8 * 1024 +}; + +/* NB: compressStream() has to return -1 on errors, not die. + * bbunpack() will correctly clean up in this case + * (delete incomplete .bz2 file) + */ + +/* Returns: + * -1 on errors + * total written bytes so far otherwise + */ +static +IF_DESKTOP(long long) int bz_write(bz_stream *strm, void* rbuf, ssize_t rlen, void *wbuf) +{ + int n, n2, ret; + + strm->avail_in = rlen; + strm->next_in = rbuf; + while (1) { + strm->avail_out = IOBUF_SIZE; + strm->next_out = wbuf; + + ret = BZ2_bzCompress(strm, rlen ? BZ_RUN : BZ_FINISH); + if (ret != BZ_RUN_OK /* BZ_RUNning */ + && ret != BZ_FINISH_OK /* BZ_FINISHing, but not done yet */ + && ret != BZ_STREAM_END /* BZ_FINISHed */ + ) { + bb_error_msg_and_die("internal error %d", ret); + } + + n = IOBUF_SIZE - strm->avail_out; + if (n) { + n2 = full_write(STDOUT_FILENO, wbuf, n); + if (n2 != n) { + if (n2 >= 0) + errno = 0; /* prevent bogus error message */ + bb_simple_perror_msg(n2 >= 0 ? "short write" : bb_msg_write_error); + return -1; + } + } + + if (ret == BZ_STREAM_END) + break; + if (rlen && strm->avail_in == 0) + break; + } + return 0 IF_DESKTOP( + strm->total_out ); +} + +static +IF_DESKTOP(long long) int FAST_FUNC compressStream(transformer_state_t *xstate UNUSED_PARAM) +{ + IF_DESKTOP(long long) int total; + unsigned opt, level; + ssize_t count; + bz_stream bzs; /* it's small */ +#define strm (&bzs) + char *iobuf; +#define rbuf iobuf +#define wbuf (iobuf + IOBUF_SIZE) + + iobuf = xmalloc(2 * IOBUF_SIZE); + + opt = option_mask32 >> (BBUNPK_OPTSTRLEN IF_FEATURE_BZIP2_DECOMPRESS(+ 2) + 2); + /* skipped BBUNPK_OPTSTR, "dt" and "zs" bits */ + opt |= 0x100; /* if nothing else, assume -9 */ + level = 0; + for (;;) { + level++; + if (opt & 1) break; + opt >>= 1; + } + + BZ2_bzCompressInit(strm, level); + + while (1) { + count = full_read(STDIN_FILENO, rbuf, IOBUF_SIZE); + if (count < 0) { + bb_simple_perror_msg(bb_msg_read_error); + total = -1; + break; + } + /* if count == 0, bz_write finalizes compression */ + total = bz_write(strm, rbuf, count, wbuf); + if (count == 0 || total < 0) + break; + } + + /* Can't be conditional on ENABLE_FEATURE_CLEAN_UP - + * we are called repeatedly + */ + BZ2_bzCompressEnd(strm); + free(iobuf); + + return total; +} + +int bzip2_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int bzip2_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned opt; + + /* standard bzip2 flags + * -d --decompress force decompression + * -z --compress force compression + * -k --keep keep (don't delete) input files + * -f --force overwrite existing output files + * -t --test test compressed file integrity + * -c --stdout output to standard out + * -q --quiet suppress noncritical error messages + * -v --verbose be verbose (a 2nd -v gives more) + * -s --small use less memory (at most 2500k) + * -1 .. -9 set block size to 100k .. 900k + * --fast alias for -1 + * --best alias for -9 + */ + + opt = getopt32(argv, "^" + /* Must match BBUNPK_foo constants! */ + BBUNPK_OPTSTR IF_FEATURE_BZIP2_DECOMPRESS("dt") "zs123456789" + "\0" "s2" /* -s means -2 (compatibility) */ + ); +#if ENABLE_FEATURE_BZIP2_DECOMPRESS /* bunzip2_main may not be visible... */ + if (opt & (BBUNPK_OPT_DECOMPRESS|BBUNPK_OPT_TEST)) /* -d and/or -t */ + return bunzip2_main(argc, argv); +#else + /* clear "decompress" and "test" bits (or bbunpack() can get confused) */ + /* in !BZIP2_DECOMPRESS config, these bits are -zs and are unused */ + option_mask32 = opt & ~(BBUNPK_OPT_DECOMPRESS|BBUNPK_OPT_TEST); +#endif + + argv += optind; + return bbunpack(argv, compressStream, append_ext, "bz2"); +} diff --git a/busybox-1_37_0/archival/chksum_and_xwrite_tar_header.c b/busybox-1_37_0/archival/chksum_and_xwrite_tar_header.c new file mode 100644 index 000000000..f2d46b9ef --- /dev/null +++ b/busybox-1_37_0/archival/chksum_and_xwrite_tar_header.c @@ -0,0 +1,35 @@ +/* + * Copyright (C) 2021 Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//kbuild:lib-$(CONFIG_FEATURE_TAR_CREATE) += chksum_and_xwrite_tar_header.o +//kbuild:lib-$(CONFIG_SMEMCAP) += chksum_and_xwrite_tar_header.o + +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC chksum_and_xwrite_tar_header(int fd, struct tar_header_t *hp) +{ + /* POSIX says that checksum is done on unsigned bytes + * (Sun and HP-UX gets it wrong... more details in + * GNU tar source) */ + const unsigned char *cp; + unsigned int chksum, size; + + strcpy(hp->magic, "ustar "); + + /* Calculate and store the checksum (the sum of all of the bytes of + * the header). The checksum field must be filled with blanks for the + * calculation. The checksum field is formatted differently from the + * other fields: it has 6 digits, a NUL, then a space -- rather than + * digits, followed by a NUL like the other fields... */ + memset(hp->chksum, ' ', sizeof(hp->chksum)); + cp = (const unsigned char *) hp; + chksum = 0; + size = sizeof(*hp); + do { chksum += *cp++; } while (--size); + sprintf(hp->chksum, "%06o", chksum); + + xwrite(fd, hp, sizeof(*hp)); +} diff --git a/busybox-1_37_0/archival/cpio.c b/busybox-1_37_0/archival/cpio.c new file mode 100644 index 000000000..f0d990048 --- /dev/null +++ b/busybox-1_37_0/archival/cpio.c @@ -0,0 +1,581 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini cpio implementation for busybox + * + * Copyright (C) 2001 by Glenn McGrath + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * Limitations: + * Doesn't check CRC's + * Only supports new ASCII and CRC formats + */ +//config:config CPIO +//config: bool "cpio (15 kb)" +//config: default y +//config: help +//config: cpio is an archival utility program used to create, modify, and +//config: extract contents from archives. +//config: cpio has 110 bytes of overheads for every stored file. +//config: +//config: This implementation of cpio can extract cpio archives created in the +//config: "newc" or "crc" format. +//config: +//config: Unless you have a specific application which requires cpio, you +//config: should probably say N here. +//config: +//config:config FEATURE_CPIO_O +//config: bool "Support archive creation" +//config: default y +//config: depends on CPIO +//config: help +//config: This implementation of cpio can create cpio archives in the "newc" +//config: format only. +//config: +//config:config FEATURE_CPIO_P +//config: bool "Support passthrough mode" +//config: default y +//config: depends on FEATURE_CPIO_O +//config: help +//config: Passthrough mode. Rarely used. +//config: +//config:config FEATURE_CPIO_IGNORE_DEVNO +//config: bool "Support --ignore-devno like GNU cpio" +//config: default y +//config: depends on FEATURE_CPIO_O && LONG_OPTS +//config: help +//config: Optionally ignore device numbers when creating archives. +//config: +//config:config FEATURE_CPIO_RENUMBER_INODES +//config: bool "Support --renumber-inodes like GNU cpio" +//config: default y +//config: depends on FEATURE_CPIO_O && LONG_OPTS +//config: help +//config: Optionally renumber inodes when creating archives. + +//applet:IF_CPIO(APPLET(cpio, BB_DIR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_CPIO) += cpio.o + +//usage:#define cpio_trivial_usage +//usage: "[-dmvu] [-F FILE] [-R USER[:GRP]]" IF_FEATURE_CPIO_O(" [-H newc]") +//usage: " [-ti"IF_FEATURE_CPIO_O("o")"]" IF_FEATURE_CPIO_P(" [-p DIR]") +//usage: " [EXTR_FILE]..." +//usage:#define cpio_full_usage "\n\n" +//usage: "Extract (-i) or list (-t) files from a cpio archive on stdin" +//usage: IF_FEATURE_CPIO_O(", or" +//usage: "\ntake file list from stdin and create an archive (-o)" +//usage: IF_FEATURE_CPIO_P(" or copy files (-p)") +//usage: ) +//usage: "\n" +//usage: "\nMain operation mode:" +//usage: "\n -t List" +//usage: "\n -i Extract EXTR_FILEs (or all)" +//usage: IF_FEATURE_CPIO_O( +//usage: "\n -o Create (requires -H newc)" +//usage: ) +//usage: IF_FEATURE_CPIO_P( +//usage: "\n -p DIR Copy files to DIR" +//usage: ) +//usage: "\nOptions:" +//usage: IF_FEATURE_CPIO_O( +//usage: "\n -H newc Archive format" +//usage: ) +//usage: "\n -d Make leading directories" +//usage: "\n -m Restore mtime" +//usage: "\n -v Verbose" +//usage: "\n -u Overwrite" +//usage: "\n -F FILE Input (-t,-i,-p) or output (-o) file" +//usage: "\n -R USER[:GRP] Set owner of created files" +//usage: "\n -L Dereference symlinks" +//usage: "\n -0 NUL terminated input" +//usage: IF_FEATURE_CPIO_IGNORE_DEVNO( +//usage: "\n --ignore-devno" +//usage: ) +//usage: IF_FEATURE_CPIO_RENUMBER_INODES( +//usage: "\n --renumber-inodes" +//usage: ) + +/* GNU cpio 2.9 --help (abridged): + + Modes: + -t, --list List the archive + -i, --extract Extract files from an archive + -o, --create Create the archive + -p, --pass-through Copy-pass mode + + Options valid in any mode: + --block-size=SIZE I/O block size = SIZE * 512 bytes + -B I/O block size = 5120 bytes + -c Use the old portable (ASCII) archive format + -C, --io-size=NUMBER I/O block size in bytes + -f, --nonmatching Only copy files that do not match given pattern + -F, --file=FILE Use FILE instead of standard input or output + -H, --format=FORMAT Use given archive FORMAT + -M, --message=STRING Print STRING when the end of a volume of the + backup media is reached + -n, --numeric-uid-gid If -v, show numeric UID and GID + --quiet Do not print the number of blocks copied + --rsh-command=COMMAND Use remote COMMAND instead of rsh + -v, --verbose Verbosely list the files processed + -V, --dot Print a "." for each file processed + -W, --warning=FLAG Control warning display: 'none','truncate','all'; + multiple options accumulate + + Options valid only in --extract mode: + -b, --swap Swap both halfwords of words and bytes of + halfwords in the data (equivalent to -sS) + -r, --rename Interactively rename files + -s, --swap-bytes Swap the bytes of each halfword in the files + -S, --swap-halfwords Swap the halfwords of each word (4 bytes) + --to-stdout Extract files to standard output + -E, --pattern-file=FILE Read additional patterns specifying filenames to + extract or list from FILE + --only-verify-crc Verify CRC's, don't actually extract the files + + Options valid only in --create mode: + -A, --append Append to an existing archive + -O FILE File to use instead of standard output + + Options valid only in --pass-through mode: + -l, --link Link files instead of copying them, when possible + + Options valid in --extract and --create modes: + --absolute-filenames Do not strip file system prefix components from + the file names + --no-absolute-filenames Create all files relative to the current dir + + Options valid in --create and --pass-through modes: + -0, --null A list of filenames is terminated by a NUL + -a, --reset-access-time Reset the access times of files after reading them + -I FILE File to use instead of standard input + -L, --dereference Dereference symbolic links (copy the files + that they point to instead of copying the links) + -R, --owner=[USER][:.][GRP] Set owner of created files + + Options valid in --extract and --pass-through modes: + -d, --make-directories Create leading directories where needed + -m, --preserve-modification-time Retain mtime when creating files + --no-preserve-owner Do not change the ownership of the files + --sparse Write files with blocks of zeros as sparse files + -u, --unconditional Replace all files unconditionally + */ + +#include "libbb.h" +#include "common_bufsiz.h" +#include "bb_archive.h" + +enum { + OPT_EXTRACT = (1 << 0), + OPT_TEST = (1 << 1), + OPT_NUL_TERMINATED = (1 << 2), + OPT_UNCONDITIONAL = (1 << 3), + OPT_VERBOSE = (1 << 4), + OPT_CREATE_LEADING_DIR = (1 << 5), + OPT_PRESERVE_MTIME = (1 << 6), + OPT_DEREF = (1 << 7), + OPT_FILE = (1 << 8), + OPT_OWNER = (1 << 9), + OPTBIT_OWNER = 9, + IF_FEATURE_CPIO_O(OPTBIT_CREATE ,) + IF_FEATURE_CPIO_O(OPTBIT_FORMAT ,) + IF_FEATURE_CPIO_P(OPTBIT_PASSTHROUGH,) + IF_LONG_OPTS( OPTBIT_QUIET ,) + IF_LONG_OPTS( OPTBIT_2STDOUT ,) + IF_FEATURE_CPIO_IGNORE_DEVNO(OPTBIT_IGNORE_DEVNO,) + IF_FEATURE_CPIO_RENUMBER_INODES(OPTBIT_RENUMBER_INODES,) + OPT_CREATE = IF_FEATURE_CPIO_O((1 << OPTBIT_CREATE )) + 0, + OPT_FORMAT = IF_FEATURE_CPIO_O((1 << OPTBIT_FORMAT )) + 0, + OPT_PASSTHROUGH = IF_FEATURE_CPIO_P((1 << OPTBIT_PASSTHROUGH)) + 0, + OPT_QUIET = IF_LONG_OPTS( (1 << OPTBIT_QUIET )) + 0, + OPT_2STDOUT = IF_LONG_OPTS( (1 << OPTBIT_2STDOUT )) + 0, + OPT_IGNORE_DEVNO = IF_FEATURE_CPIO_IGNORE_DEVNO((1 << OPTBIT_IGNORE_DEVNO)) + 0, + OPT_RENUMBER_INODES = IF_FEATURE_CPIO_RENUMBER_INODES((1 << OPTBIT_RENUMBER_INODES)) + 0, +}; + +#define OPTION_STR "it0uvdmLF:R:" + +struct globals { + struct bb_uidgid_t owner_ugid; + ino_t next_inode; +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +void BUG_cpio_globals_too_big(void); +#define INIT_G() do { \ + setup_common_bufsiz(); \ + G.owner_ugid.uid = -1L; \ + G.owner_ugid.gid = -1L; \ +} while (0) + +#if ENABLE_FEATURE_CPIO_O +static off_t cpio_pad4(off_t size) +{ + int i; + + i = (- size) & 3; + size += i; + while (--i >= 0) + bb_putchar('\0'); + return size; +} + +/* Return value will become exit code. + * It's ok to exit instead of return. */ +static NOINLINE int cpio_o(void) +{ + struct name_s { + struct name_s *next; + char name[1]; + }; + struct inodes_s { + struct inodes_s *next; + struct name_s *names; + struct stat st; +#if ENABLE_FEATURE_CPIO_RENUMBER_INODES + ino_t mapped_inode; +#endif + }; + + struct inodes_s *links = NULL; + off_t bytes = 0; /* output bytes count */ + + while (1) { + const char *name; + char *line; + struct stat st; + + line = (option_mask32 & OPT_NUL_TERMINATED) + ? bb_get_chunk_from_file(stdin, NULL) + : xmalloc_fgetline(stdin); + + if (line) { + /* Strip leading "./[./]..." from the filename */ + name = line; + while (name[0] == '.' && name[1] == '/') { + while (*++name == '/') + continue; + } + if (!*name) { /* line is empty */ + free(line); + continue; + } + if ((option_mask32 & OPT_DEREF) + ? stat(name, &st) + : lstat(name, &st) + ) { + abort_cpio_o: + bb_simple_perror_msg_and_die(name); + } + + if (G.owner_ugid.uid != (uid_t)-1L) + st.st_uid = G.owner_ugid.uid; + if (G.owner_ugid.gid != (gid_t)-1L) + st.st_gid = G.owner_ugid.gid; + + if (!(S_ISLNK(st.st_mode) || S_ISREG(st.st_mode))) + st.st_size = 0; /* paranoia */ + + /* Store hardlinks for later processing, dont output them */ + if (!S_ISDIR(st.st_mode) && st.st_nlink > 1) { + struct name_s *n; + struct inodes_s *l; + + /* Do we have this hardlink remembered? */ + l = links; + while (1) { + if (l == NULL) { + /* Not found: add new item to "links" list */ + l = xzalloc(sizeof(*l)); + l->st = st; + l->next = links; +#if ENABLE_FEATURE_CPIO_RENUMBER_INODES + if (option_mask32 & OPT_RENUMBER_INODES) + l->mapped_inode = ++G.next_inode; +#endif + links = l; + break; + } + if (l->st.st_ino == st.st_ino) { + /* found */ + break; + } + l = l->next; + } + /* Add new name to "l->names" list */ + n = xmalloc(sizeof(*n) + strlen(name)); + strcpy(n->name, name); + n->next = l->names; + l->names = n; + + free(line); + continue; + } +#if ENABLE_FEATURE_CPIO_RENUMBER_INODES + else if (option_mask32 & OPT_RENUMBER_INODES) { + st.st_ino = ++G.next_inode; + } +#endif + } else { /* line == NULL: EOF */ + next_link: + if (links) { + /* Output hardlink's data */ + st = links->st; + name = links->names->name; + links->names = links->names->next; +#if ENABLE_FEATURE_CPIO_RENUMBER_INODES + if (links->mapped_inode) + st.st_ino = links->mapped_inode; +#endif + /* GNU cpio is reported to emit file data + * only for the last instance. Mimic that. */ + if (links->names == NULL) + links = links->next; + else + st.st_size = 0; + /* NB: we leak links->names and/or links, + * this is intended (we exit soon anyway) */ + } else { + /* If no (more) hardlinks to output, + * output "trailer" entry */ + name = cpio_TRAILER; + /* st.st_size == 0 is a must, but for uniformity + * in the output, we zero out everything */ + memset(&st, 0, sizeof(st)); + /* st.st_nlink = 1; - GNU cpio does this */ + } + } + +#if ENABLE_FEATURE_CPIO_IGNORE_DEVNO + if (option_mask32 & OPT_IGNORE_DEVNO) + st.st_dev = st.st_rdev = 0; +#endif + + bytes += printf("070701" + "%08X%08X%08X%08X%08X%08X%08X" + "%08X%08X%08X%08X" /* GNU cpio uses uppercase hex */ + /* strlen+1: */ "%08X" + /* chksum: */ "00000000" /* (only for "070702" files) */ + /* name,NUL: */ "%s%c", + (unsigned)(uint32_t) st.st_ino, + (unsigned)(uint32_t) st.st_mode, + (unsigned)(uint32_t) st.st_uid, + (unsigned)(uint32_t) st.st_gid, + (unsigned)(uint32_t) st.st_nlink, + (unsigned)(uint32_t) st.st_mtime, + (unsigned)(uint32_t) st.st_size, + (unsigned)(uint32_t) major(st.st_dev), + (unsigned)(uint32_t) minor(st.st_dev), + (unsigned)(uint32_t) major(st.st_rdev), + (unsigned)(uint32_t) minor(st.st_rdev), + (unsigned)(strlen(name) + 1), + name, '\0'); + bytes = cpio_pad4(bytes); + + if (st.st_size) { + if (S_ISLNK(st.st_mode)) { + char *lpath = xmalloc_readlink_or_warn(name); + if (!lpath) + goto abort_cpio_o; + bytes += printf("%s", lpath); + free(lpath); + } else { /* S_ISREG */ + int fd = xopen(name, O_RDONLY); + fflush_all(); + /* We must abort if file got shorter too! */ + bb_copyfd_exact_size(fd, STDOUT_FILENO, st.st_size); + bytes += st.st_size; + close(fd); + } + bytes = cpio_pad4(bytes); + } + + if (!line) { + if (name != cpio_TRAILER) + goto next_link; + /* TODO: GNU cpio pads trailer to 512 bytes, do we want that? */ + return EXIT_SUCCESS; + } + + free(line); + } /* end of "while (1)" */ +} +#endif + +int cpio_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int cpio_main(int argc UNUSED_PARAM, char **argv) +{ + archive_handle_t *archive_handle; + char *cpio_filename; + char *cpio_owner; + IF_FEATURE_CPIO_O(const char *cpio_fmt = "";) + unsigned opt; +#if ENABLE_LONG_OPTS + const char *long_opts = + "extract\0" No_argument "i" + "list\0" No_argument "t" +#if ENABLE_FEATURE_CPIO_O + "create\0" No_argument "o" + "format\0" Required_argument "H" +#if ENABLE_FEATURE_CPIO_P + "pass-through\0" No_argument "p" +#endif +#endif + "owner\0" Required_argument "R" + "verbose\0" No_argument "v" + "null\0" No_argument "0" + "quiet\0" No_argument "\xff" + "to-stdout\0" No_argument "\xfe" +#if ENABLE_FEATURE_CPIO_IGNORE_DEVNO + "ignore-devno\0" No_argument "\xfd" +#endif +#if ENABLE_FEATURE_CPIO_RENUMBER_INODES + "renumber-inodes\0" No_argument "\xfc" +#endif + ; +#endif + + INIT_G(); + archive_handle = init_handle(); + /* archive_handle->src_fd = STDIN_FILENO; - done by init_handle */ + archive_handle->ah_flags = ARCHIVE_EXTRACT_NEWER; + + /* As of now we do not enforce this: */ + /* -i,-t,-o,-p are mutually exclusive */ + /* -u,-d,-m make sense only with -i or -p */ + /* -L makes sense only with -o or -p */ + +#if !ENABLE_FEATURE_CPIO_O + opt = getopt32long(argv, OPTION_STR, long_opts, &cpio_filename, &cpio_owner); +#else + opt = getopt32long(argv, OPTION_STR "oH:" IF_FEATURE_CPIO_P("p"), long_opts, + &cpio_filename, &cpio_owner, &cpio_fmt); +#endif + argv += optind; + if (opt & OPT_OWNER) { /* -R */ + parse_chown_usergroup_or_die(&G.owner_ugid, cpio_owner); + archive_handle->cpio__owner = G.owner_ugid; + } +#if !ENABLE_FEATURE_CPIO_O + if (opt & OPT_FILE) { /* -F */ + xmove_fd(xopen(cpio_filename, O_RDONLY), STDIN_FILENO); + } +#else + if ((opt & (OPT_FILE|OPT_CREATE)) == OPT_FILE) { /* -F without -o */ + xmove_fd(xopen(cpio_filename, O_RDONLY), STDIN_FILENO); + } + if (opt & OPT_PASSTHROUGH) { + pid_t pid; + struct fd_pair pp; + + if (argv[0] == NULL) + bb_show_usage(); + if (opt & OPT_CREATE_LEADING_DIR) + /* GNU cpio 2.13: "cpio -d -p a/b/c" works */ + bb_make_directory(argv[0], -1, FILEUTILS_RECUR); + /* Crude existence check: + * close(xopen(argv[0], O_RDONLY | O_DIRECTORY)); + * We can also xopen, fstat, IS_DIR, later fchdir. + * This would check for existence earlier and cleaner. + * As it stands now, if we fail xchdir later, + * child dies on EPIPE, unless it caught + * a diffrerent problem earlier. + * This is good enough for now. + */ +//FIXME: GNU cpio -d -p DIR does not immediately create DIR - +//it just prepends "DIR/" to the names of files to be created. +//The first file (fails to) be copied, and then the -d logic +//triggers and creates all necessary directories. +//IOW: bare "cpio -d -p DIR" + ^C shouldn't create anything. +#if !BB_MMU + pp.rd = 3; + pp.wr = 4; + if (!re_execed) { + close(3); + close(4); + xpiped_pair(pp); + } +#else + xpiped_pair(pp); +#endif + pid = fork_or_rexec(argv - optind); + if (pid == 0) { /* child */ + close(pp.rd); + xmove_fd(pp.wr, STDOUT_FILENO); + goto dump; + } + /* parent */ + xchdir(*argv++); + close(pp.wr); + xmove_fd(pp.rd, STDIN_FILENO); + //opt &= ~OPT_PASSTHROUGH; + opt |= OPT_EXTRACT; + goto skip; + } + /* -o */ + if (opt & OPT_CREATE) { + if (cpio_fmt[0] != 'n') /* we _require_ "-H newc" */ + bb_show_usage(); + if (opt & OPT_FILE) { + xmove_fd(xopen(cpio_filename, O_WRONLY | O_CREAT | O_TRUNC), STDOUT_FILENO); + } + dump: + return cpio_o(); + } + skip: +#endif + + /* One of either extract or test options must be given */ + if ((opt & (OPT_TEST | OPT_EXTRACT)) == 0) { + bb_show_usage(); + } + + if (opt & OPT_TEST) { + /* if both extract and test options are given, ignore extract option */ + opt &= ~OPT_EXTRACT; + archive_handle->action_header = header_list; + } + if (opt & OPT_EXTRACT) { + archive_handle->action_data = data_extract_all; + if (opt & OPT_2STDOUT) + archive_handle->action_data = data_extract_to_stdout; + } + if (opt & OPT_UNCONDITIONAL) { + archive_handle->ah_flags |= ARCHIVE_UNLINK_OLD; + archive_handle->ah_flags &= ~ARCHIVE_EXTRACT_NEWER; + } + if (opt & OPT_VERBOSE) { + if (archive_handle->action_header == header_list) { + archive_handle->action_header = header_verbose_list; + } else { + archive_handle->action_header = header_list; + } + } + if (opt & OPT_CREATE_LEADING_DIR) { + archive_handle->ah_flags |= ARCHIVE_CREATE_LEADING_DIRS; + } + if (opt & OPT_PRESERVE_MTIME) { + archive_handle->ah_flags |= ARCHIVE_RESTORE_DATE; + } + + while (*argv) { + archive_handle->filter = filter_accept_list; + llist_add_to(&archive_handle->accept, *argv); + argv++; + } + + /* see get_header_cpio */ + archive_handle->cpio__blocks = (off_t)-1; + while (get_header_cpio(archive_handle) == EXIT_SUCCESS) + continue; + + create_links_from_list(archive_handle->link_placeholders); + + if (archive_handle->cpio__blocks != (off_t)-1 + && !(opt & OPT_QUIET) + ) { + fflush_all(); + fprintf(stderr, "%"OFF_FMT"u blocks\n", archive_handle->cpio__blocks); + } + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/archival/dpkg.c b/busybox-1_37_0/archival/dpkg.c new file mode 100644 index 000000000..8031956e9 --- /dev/null +++ b/busybox-1_37_0/archival/dpkg.c @@ -0,0 +1,1966 @@ +/* vi: set sw=4 ts=4: */ +/* + * mini dpkg implementation for busybox. + * this is not meant as a replacement for dpkg + * + * written by glenn mcgrath with the help of others + * copyright (c) 2001 by glenn mcgrath + * + * parts of the version comparison code is plucked from the real dpkg + * application which is licensed GPLv2 and + * copyright (c) 1995 Ian Jackson + * + * started life as a busybox implementation of udpkg + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* + * known difference between busybox dpkg and the official dpkg that i don't + * consider important, its worth keeping a note of differences anyway, just to + * make it easier to maintain. + * - the first value for the confflile: field isn't placed on a new line. + * - when installing a package the status: field is placed at the end of the + * section, rather than just after the package: field. + * + * bugs that need to be fixed + * - (unknown, please let me know when you find any) + */ +//config:config DPKG +//config: bool "dpkg (43 kb)" +//config: default y +//config: select FEATURE_SEAMLESS_GZ +//config: help +//config: dpkg is a medium-level tool to install, build, remove and manage +//config: Debian packages. +//config: +//config: This implementation of dpkg has a number of limitations, +//config: you should use the official dpkg if possible. + +//applet:IF_DPKG(APPLET(dpkg, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_DPKG) += dpkg.o + +//usage:#define dpkg_trivial_usage +//usage: "[-ilCPru] [-F OPT] PACKAGE" +//usage:#define dpkg_full_usage "\n\n" +//usage: "Install, remove and manage Debian packages\n" +//usage: IF_LONG_OPTS( +//usage: "\n -i,--install Install the package" +//usage: "\n -l,--list List of installed packages" +//usage: "\n --configure Configure an unpackaged package" +//usage: "\n -P,--purge Purge all files of a package" +//usage: "\n -r,--remove Remove all but the configuration files for a package" +//usage: "\n --unpack Unpack a package, but don't configure it" +//usage: "\n --force-depends Ignore dependency problems" +//usage: "\n --force-confnew Overwrite existing config files when installing" +//usage: "\n --force-confold Keep old config files when installing" +//usage: ) +//usage: IF_NOT_LONG_OPTS( +//usage: "\n -i Install the package" +//usage: "\n -l List of installed packages" +//usage: "\n -C Configure an unpackaged package" +//usage: "\n -P Purge all files of a package" +//usage: "\n -r Remove all but the configuration files for a package" +//usage: "\n -u Unpack a package, but don't configure it" +//usage: "\n -F depends Ignore dependency problems" +//usage: "\n -F confnew Overwrite existing config files when installing" +//usage: "\n -F confold Keep old config files when installing" +//usage: ) + +#include "libbb.h" +#include +#include "bb_archive.h" + +/* note: if you vary hash_prime sizes be aware, + * 1) tweaking these will have a big effect on how much memory this program uses. + * 2) for computational efficiency these hash tables should be at least 20% + * larger than the maximum number of elements stored in it. + * 3) all _hash_prime's must be a prime number or chaos is assured, if your looking + * for a prime, try http://www.utm.edu/research/primes/lists/small/10000.txt + * 4) if you go bigger than 15 bits you may get into trouble (untested) as its + * sometimes cast to an unsigned, if you go to 16 bit you will overlap + * int's and chaos is assured, 16381 is the max prime for 14 bit field + */ + +/* NAME_HASH_PRIME, Stores package names and versions, + * I estimate it should be at least 50% bigger than PACKAGE_HASH_PRIME, + * as there a lot of duplicate version numbers */ +#define NAME_HASH_PRIME 16381 + +/* PACKAGE_HASH_PRIME, Maximum number of unique packages, + * It must not be smaller than STATUS_HASH_PRIME, + * Currently only packages from status_hashtable are stored in here, but in + * future this may be used to store packages not only from a status file, + * but an available_hashtable, and even multiple packages files. + * Package can be stored more than once if they have different versions. + * e.g. The same package may have different versions in the status file + * and available file */ +#define PACKAGE_HASH_PRIME 10007 +typedef struct edge_s { + unsigned operator:4; /* was:3 */ + unsigned type:4; + unsigned name:16; /* was:14 */ + unsigned version:16; /* was:14 */ +} edge_t; + +typedef struct common_node_s { + unsigned name:16; /* was:14 */ + unsigned version:16; /* was:14 */ + unsigned num_of_edges:16; /* was:14 */ + edge_t **edge; +} common_node_t; + +/* Currently it doesn't store packages that have state-status of not-installed + * So it only really has to be the size of the maximum number of packages + * likely to be installed at any one time, so there is a bit of leeway here */ +#define STATUS_HASH_PRIME 8191 +typedef struct status_node_s { + unsigned package:16; /* was:14 */ /* has to fit PACKAGE_HASH_PRIME */ + unsigned status:16; /* was:14 */ /* has to fit STATUS_HASH_PRIME */ +} status_node_t; + + +/* Globals */ +struct globals { + char *name_hashtable[NAME_HASH_PRIME + 1]; + common_node_t *package_hashtable[PACKAGE_HASH_PRIME + 1]; + status_node_t *status_hashtable[STATUS_HASH_PRIME + 1]; +}; +#define G (*ptr_to_globals) +#define name_hashtable (G.name_hashtable ) +#define package_hashtable (G.package_hashtable) +#define status_hashtable (G.status_hashtable ) +#define INIT_G() do { \ + SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ +} while (0) + + +/* Even numbers are for 'extras', like ored dependencies or null */ +enum edge_type_e { + EDGE_NULL = 0, + EDGE_PRE_DEPENDS = 1, + EDGE_OR_PRE_DEPENDS = 2, + EDGE_DEPENDS = 3, + EDGE_OR_DEPENDS = 4, + EDGE_REPLACES = 5, + EDGE_PROVIDES = 7, + EDGE_CONFLICTS = 9, + EDGE_SUGGESTS = 11, + EDGE_RECOMMENDS = 13, + EDGE_ENHANCES = 15 +}; +enum operator_e { + VER_NULL = 0, + VER_EQUAL = 1, + VER_LESS = 2, + VER_LESS_EQUAL = 3, + VER_MORE = 4, + VER_MORE_EQUAL = 5, + VER_ANY = 6 +}; + +typedef struct deb_file_s { + char *control_file; + char *filename; + unsigned package:16; /* was:14 */ +} deb_file_t; + + +static void make_hash(const char *key, unsigned *start, unsigned *decrement, const int hash_prime) +{ + unsigned long hash_num = key[0]; + int len = strlen(key); + int i; + + /* Maybe i should have uses a "proper" hashing algorithm here instead + * of making one up myself, seems to be working ok though. */ + for (i = 1; i < len; i++) { + /* shifts the ascii based value and adds it to previous value + * shift amount is mod 24 because long int is 32 bit and data + * to be shifted is 8, don't want to shift data to where it has + * no effect */ + hash_num += (key[i] + key[i-1]) << ((key[i] * i) % 24); + } + *start = (unsigned) hash_num % hash_prime; + *decrement = (unsigned) 1 + (hash_num % (hash_prime - 1)); +} + +/* this adds the key to the hash table */ +static int search_name_hashtable(const char *key) +{ + unsigned probe_address; + unsigned probe_decrement; + + make_hash(key, &probe_address, &probe_decrement, NAME_HASH_PRIME); + while (name_hashtable[probe_address] != NULL) { + if (strcmp(name_hashtable[probe_address], key) == 0) { + return probe_address; + } + probe_address -= probe_decrement; + if ((int)probe_address < 0) { + probe_address += NAME_HASH_PRIME; + } + } + name_hashtable[probe_address] = xstrdup(key); + return probe_address; +} + +/* this DOESN'T add the key to the hashtable + * TODO make it consistent with search_name_hashtable + */ +static unsigned search_status_hashtable(const char *key) +{ + unsigned probe_address; + unsigned probe_decrement; + + make_hash(key, &probe_address, &probe_decrement, STATUS_HASH_PRIME); + while (status_hashtable[probe_address] != NULL) { + if (strcmp(key, name_hashtable[package_hashtable[status_hashtable[probe_address]->package]->name]) == 0) { + break; + } + probe_address -= probe_decrement; + if ((int)probe_address < 0) { + probe_address += STATUS_HASH_PRIME; + } + } + return probe_address; +} + +static int order(char x) +{ + return (x == '~' ? -1 + : x == '\0' ? 0 + : isdigit(x) ? 0 + : isalpha(x) ? x + : (unsigned char)x + 256 + ); +} + +/* This code is taken from dpkg and modified slightly to work with busybox */ +static int version_compare_part(const char *val, const char *ref) +{ + if (!val) val = ""; + if (!ref) ref = ""; + + while (*val || *ref) { + int first_diff; + + while ((*val && !isdigit(*val)) || (*ref && !isdigit(*ref))) { + int vc = order(*val); + int rc = order(*ref); + if (vc != rc) + return vc - rc; + val++; + ref++; + } + + while (*val == '0') + val++; + while (*ref == '0') + ref++; + + first_diff = 0; + while (isdigit(*val) && isdigit(*ref)) { + if (first_diff == 0) + first_diff = *val - *ref; + val++; + ref++; + } + if (isdigit(*val)) + return 1; + if (isdigit(*ref)) + return -1; + if (first_diff) + return first_diff; + } + return 0; +} + +/* if ver1 < ver2 return -1, + * if ver1 = ver2 return 0, + * if ver1 > ver2 return 1, + */ +static int version_compare(const unsigned ver1, const unsigned ver2) +{ + char *ch_ver1 = name_hashtable[ver1]; + char *ch_ver2 = name_hashtable[ver2]; + unsigned epoch1 = 0, epoch2 = 0; + char *colon; + char *deb_ver1, *deb_ver2; + char *upstream_ver1; + char *upstream_ver2; + int result; + + /* Compare epoch */ + colon = strchr(ch_ver1, ':'); + if (colon) { + epoch1 = atoi(ch_ver1); + ch_ver1 = colon + 1; + } + colon = strchr(ch_ver2, ':'); + if (colon) { + epoch2 = atoi(ch_ver2); + ch_ver2 = colon + 1; + } + if (epoch1 < epoch2) { + return -1; + } + if (epoch1 > epoch2) { + return 1; + } + + /* Compare upstream version */ + upstream_ver1 = xstrdup(ch_ver1); + upstream_ver2 = xstrdup(ch_ver2); + + /* Chop off debian version, and store for later use */ + deb_ver1 = strrchr(upstream_ver1, '-'); + deb_ver2 = strrchr(upstream_ver2, '-'); + if (deb_ver1) { + *deb_ver1++ = '\0'; + } + if (deb_ver2) { + *deb_ver2++ = '\0'; + } + result = version_compare_part(upstream_ver1, upstream_ver2); + if (result == 0) { + /* Compare debian versions */ + result = version_compare_part(deb_ver1, deb_ver2); + } + + free(upstream_ver1); + free(upstream_ver2); + return result; +} + +static int test_version(const unsigned version1, const unsigned version2, const unsigned operator) +{ + const int version_result = version_compare(version1, version2); + switch (operator) { + case VER_ANY: + return TRUE; + case VER_EQUAL: + return (version_result == 0); + case VER_LESS: + return (version_result < 0); + case VER_LESS_EQUAL: + return (version_result <= 0); + case VER_MORE: + return (version_result > 0); + case VER_MORE_EQUAL: + return (version_result >= 0); + } + return FALSE; +} + +static int search_package_hashtable(const unsigned name, const unsigned version, const unsigned operator) +{ + unsigned probe_address; + unsigned probe_decrement; + + make_hash(name_hashtable[name], &probe_address, &probe_decrement, PACKAGE_HASH_PRIME); + while (package_hashtable[probe_address] != NULL) { + if (package_hashtable[probe_address]->name == name) { + if (operator == VER_ANY) { + return probe_address; + } + if (test_version(package_hashtable[probe_address]->version, version, operator)) { + return probe_address; + } + } + probe_address -= probe_decrement; + if ((int)probe_address < 0) { + probe_address += PACKAGE_HASH_PRIME; + } + } + return probe_address; +} + +/* + * This function searches through the entire package_hashtable looking + * for a package which provides "needle". It returns the index into + * the package_hashtable for the providing package. + * + * needle is the index into name_hashtable of the package we are + * looking for. + * + * start_at is the index in the package_hashtable to start looking + * at. If start_at is -1 then start at the beginning. This is to allow + * for repeated searches since more than one package might provide + * needle. + * + * FIXME: I don't think this is very efficient, but I thought I'd keep + * it simple for now until it proves to be a problem. + */ +static int search_for_provides(int needle, int start_at) +{ + int i, j; + common_node_t *p; + for (i = start_at + 1; i < PACKAGE_HASH_PRIME; i++) { + p = package_hashtable[i]; + if (p == NULL) + continue; + for (j = 0; j < p->num_of_edges; j++) + if (p->edge[j]->type == EDGE_PROVIDES && p->edge[j]->name == needle) + return i; + } + return -1; +} + +/* + * Add an edge to a node + */ +static void add_edge_to_node(common_node_t *node, edge_t *edge) +{ + node->edge = xrealloc_vector(node->edge, 2, node->num_of_edges); + node->edge[node->num_of_edges++] = edge; +} + +/* + * Create one new node and one new edge for every dependency. + * + * Dependencies which contain multiple alternatives are represented as + * an EDGE_OR_PRE_DEPENDS or EDGE_OR_DEPENDS node, followed by a + * number of EDGE_PRE_DEPENDS or EDGE_DEPENDS nodes. The name field of + * the OR edge contains the full dependency string while the version + * field contains the number of EDGE nodes which follow as part of + * this alternative. + */ +static void add_split_dependencies(common_node_t *parent_node, const char *whole_line, unsigned edge_type) +{ + char *line = xstrdup(whole_line); + char *line2; + char *line_ptr1 = NULL; + char *line_ptr2 = NULL; + char *field; + char *field2; + char *version; + edge_t *edge; + edge_t *or_edge; + int offset_ch; + + field = strtok_r(line, ",", &line_ptr1); + do { + /* skip leading spaces */ + field += strspn(field, " "); + line2 = xstrdup(field); + field2 = strtok_r(line2, "|", &line_ptr2); + or_edge = NULL; + if ((edge_type == EDGE_DEPENDS || edge_type == EDGE_PRE_DEPENDS) + && (strcmp(field, field2) != 0) + ) { + or_edge = xzalloc(sizeof(edge_t)); + or_edge->type = edge_type + 1; + or_edge->name = search_name_hashtable(field); + //or_edge->version = 0; // tracks the number of alternatives + add_edge_to_node(parent_node, or_edge); + } + + do { + edge = xmalloc(sizeof(edge_t)); + edge->type = edge_type; + + /* Skip any extra leading spaces */ + field2 += strspn(field2, " "); + + /* Get dependency version info */ + version = strchr(field2, '('); + if (version == NULL) { + edge->operator = VER_ANY; + /* Get the versions hash number, adding it if the number isn't already in there */ + edge->version = search_name_hashtable("ANY"); + } else { + /* Skip leading ' ' or '(' */ + version += strspn(version, " ("); + /* Calculate length of any operator characters */ + offset_ch = strspn(version, "<=>"); + /* Determine operator */ + if (offset_ch > 0) { + if (strncmp(version, "=", offset_ch) == 0) { + edge->operator = VER_EQUAL; + } else if (strncmp(version, "<<", offset_ch) == 0) { + edge->operator = VER_LESS; + } else if (strncmp(version, "<=", offset_ch) == 0) { + edge->operator = VER_LESS_EQUAL; + } else if (strncmp(version, ">>", offset_ch) == 0) { + edge->operator = VER_MORE; + } else if (strncmp(version, ">=", offset_ch) == 0) { + edge->operator = VER_MORE_EQUAL; + } else { + bb_simple_error_msg_and_die("illegal operator"); + } + } + /* skip to start of version numbers */ + version += offset_ch; + version += strspn(version, " "); + + /* Truncate version at trailing ' ' or ')' */ + version[strcspn(version, " )")] = '\0'; + /* Get the versions hash number, adding it if the number isn't already in there */ + edge->version = search_name_hashtable(version); + } + + /* Get the dependency name */ + field2[strcspn(field2, " (")] = '\0'; + edge->name = search_name_hashtable(field2); + + if (or_edge) + or_edge->version++; + + add_edge_to_node(parent_node, edge); + field2 = strtok_r(NULL, "|", &line_ptr2); + } while (field2 != NULL); + + free(line2); + field = strtok_r(NULL, ",", &line_ptr1); + } while (field != NULL); + + free(line); +} + +static void free_package(common_node_t *node) +{ + unsigned i; + if (node) { + for (i = 0; i < node->num_of_edges; i++) { + free(node->edge[i]); + } + free(node->edge); + free(node); + } +} + +/* + * Gets the next package field from package_buffer, separated into the field name + * and field value, it returns the int offset to the first character of the next field + */ +static int read_package_field(const char *package_buffer, char **field_name, char **field_value) +{ + int offset_name_start = 0; + int offset_name_end = 0; + int offset_value_start = 0; + int offset_value_end = 0; + int offset = 0; + int next_offset; + int name_length; + int value_length; + int exit_flag = FALSE; + + if (package_buffer == NULL) { + *field_name = NULL; + *field_value = NULL; + return -1; + } + while (1) { + next_offset = offset + 1; + switch (package_buffer[offset]) { + case '\0': + exit_flag = TRUE; + break; + case ':': + if (offset_name_end == 0) { + offset_name_end = offset; + offset_value_start = next_offset; + } + /* TODO: Name might still have trailing spaces if ':' isn't + * immediately after name */ + break; + case '\n': + /* TODO: The char next_offset may be out of bounds */ + if (package_buffer[next_offset] != ' ') { + exit_flag = TRUE; + break; + } + case '\t': + case ' ': + /* increment the value start point if its a just filler */ + if (offset_name_start == offset) { + offset_name_start++; + } + if (offset_value_start == offset) { + offset_value_start++; + } + break; + } + if (exit_flag) { + /* Check that the names are valid */ + offset_value_end = offset; + name_length = offset_name_end - offset_name_start; + value_length = offset_value_end - offset_value_start; + if (name_length == 0) { + break; + } + if ((name_length > 0) && (value_length > 0)) { + break; + } + + /* If not valid, start fresh with next field */ + exit_flag = FALSE; + offset_name_start = offset + 1; + offset_name_end = 0; + offset_value_start = offset + 1; + offset_value_end = offset + 1; + offset++; + } + offset++; + } + *field_name = NULL; + if (name_length) { + *field_name = xstrndup(&package_buffer[offset_name_start], name_length); + } + *field_value = NULL; + if (value_length > 0) { + *field_value = xstrndup(&package_buffer[offset_value_start], value_length); + } + return next_offset; +} + +static unsigned fill_package_struct(char *control_buffer) +{ + static const char field_names[] ALIGN1 = + "Package\0""Version\0" + "Pre-Depends\0""Depends\0""Replaces\0""Provides\0" + "Conflicts\0""Suggests\0""Recommends\0""Enhances\0"; + + common_node_t *new_node = xzalloc(sizeof(common_node_t)); + char *field_name; + char *field_value; + int field_start = 0; + int num = -1; + int buffer_length = strlen(control_buffer); + + new_node->version = search_name_hashtable("unknown"); + while (field_start < buffer_length) { + unsigned field_num; + + field_start += read_package_field(&control_buffer[field_start], + &field_name, &field_value); + + if (field_name == NULL) { + goto fill_package_struct_cleanup; + } + + field_num = index_in_strings(field_names, field_name); + switch (field_num) { + case 0: /* Package */ + new_node->name = search_name_hashtable(field_value); + break; + case 1: /* Version */ + new_node->version = search_name_hashtable(field_value); + break; + case 2: /* Pre-Depends */ + add_split_dependencies(new_node, field_value, EDGE_PRE_DEPENDS); + break; + case 3: /* Depends */ + add_split_dependencies(new_node, field_value, EDGE_DEPENDS); + break; + case 4: /* Replaces */ + add_split_dependencies(new_node, field_value, EDGE_REPLACES); + break; + case 5: /* Provides */ + add_split_dependencies(new_node, field_value, EDGE_PROVIDES); + break; + case 6: /* Conflicts */ + add_split_dependencies(new_node, field_value, EDGE_CONFLICTS); + break; + case 7: /* Suggests */ + add_split_dependencies(new_node, field_value, EDGE_SUGGESTS); + break; + case 8: /* Recommends */ + add_split_dependencies(new_node, field_value, EDGE_RECOMMENDS); + break; + case 9: /* Enhances */ + add_split_dependencies(new_node, field_value, EDGE_ENHANCES); + break; + } + fill_package_struct_cleanup: + free(field_name); + free(field_value); + } + + if (new_node->version == search_name_hashtable("unknown")) { + free_package(new_node); + return -1; + } + num = search_package_hashtable(new_node->name, new_node->version, VER_EQUAL); + free_package(package_hashtable[num]); + package_hashtable[num] = new_node; + return num; +} + +/* if num = 1, it returns the want status, 2 returns flag, 3 returns status */ +static unsigned get_status(const unsigned status_node, const int num) +{ + char *status_string = name_hashtable[status_hashtable[status_node]->status]; + char *state_sub_string; + unsigned state_sub_num; + int len; + int i; + + /* set tmp_string to point to the start of the word number */ + for (i = 1; i < num; i++) { + /* skip past a word */ + status_string += strcspn(status_string, " "); + /* skip past the separating spaces */ + status_string += strspn(status_string, " "); + } + len = strcspn(status_string, " \n"); + state_sub_string = xstrndup(status_string, len); + state_sub_num = search_name_hashtable(state_sub_string); + free(state_sub_string); + return state_sub_num; +} + +static void set_status(const unsigned status_node_num, const char *new_value, const int position) +{ + const unsigned new_value_num = search_name_hashtable(new_value); + unsigned want = get_status(status_node_num, 1); + unsigned flag = get_status(status_node_num, 2); + unsigned status = get_status(status_node_num, 3); + char *new_status; + + switch (position) { + case 1: + want = new_value_num; + break; + case 2: + flag = new_value_num; + break; + case 3: + status = new_value_num; + break; + default: + bb_simple_error_msg_and_die("DEBUG ONLY: this shouldnt happen"); + } + + new_status = xasprintf("%s %s %s", name_hashtable[want], name_hashtable[flag], name_hashtable[status]); + status_hashtable[status_node_num]->status = search_name_hashtable(new_status); + free(new_status); +} + +static const char *describe_status(int status_num) +{ + int status_want, status_state; + if (status_hashtable[status_num] == NULL || status_hashtable[status_num]->status == 0) + return "is not installed or flagged to be installed"; + + status_want = get_status(status_num, 1); + status_state = get_status(status_num, 3); + + if (status_state == search_name_hashtable("installed")) { + if (status_want == search_name_hashtable("install")) + return "is installed"; + if (status_want == search_name_hashtable("deinstall")) + return "is marked to be removed"; + if (status_want == search_name_hashtable("purge")) + return "is marked to be purged"; + } + if (status_want == search_name_hashtable("unknown")) + return "is in an indeterminate state"; + if (status_want == search_name_hashtable("install")) + return "is marked to be installed"; + + return "is not installed or flagged to be installed"; +} + +static void index_status_file(const char *filename) +{ + FILE *status_file; + char *control_buffer; + char *status_line; + status_node_t *status_node = NULL; + unsigned status_num; + + status_file = xfopen_for_read(filename); + while ((control_buffer = xmalloc_fgetline_str(status_file, "\n\n")) != NULL) { + const unsigned package_num = fill_package_struct(control_buffer); + if (package_num != -1) { + status_node = xmalloc(sizeof(status_node_t)); + /* fill_package_struct doesn't handle the status field */ + status_line = strstr(control_buffer, "Status:"); + if (status_line != NULL) { + status_line += 7; + status_line += strspn(status_line, " \n\t"); + status_line = xstrndup(status_line, strcspn(status_line, "\n")); + status_node->status = search_name_hashtable(status_line); + free(status_line); + } + status_node->package = package_num; + status_num = search_status_hashtable(name_hashtable[package_hashtable[status_node->package]->name]); + status_hashtable[status_num] = status_node; + } + free(control_buffer); + } + fclose(status_file); +} + +static void write_buffer_no_status(FILE *new_status_file, const char *control_buffer) +{ + char *name; + char *value; + int start = 0; + while (1) { + start += read_package_field(&control_buffer[start], &name, &value); + if (name == NULL) { + break; + } + if (strcmp(name, "Status") != 0) { + fprintf(new_status_file, "%s: %s\n", name, value); + } + } +} + +/* This could do with a cleanup */ +static void write_status_file(deb_file_t **deb_file) +{ + FILE *old_status_file = xfopen_for_read("/var/lib/dpkg/status"); + FILE *new_status_file = xfopen_for_write("/var/lib/dpkg/status.udeb"); + char *package_name; + char *status_from_file; + char *control_buffer = NULL; + char *tmp_string; + int status_num; + int field_start = 0; + int write_flag; + int i = 0; + + /* Update previously known packages */ + while ((control_buffer = xmalloc_fgetline_str(old_status_file, "\n\n")) != NULL) { + tmp_string = strstr(control_buffer, "Package:"); + if (tmp_string == NULL) { + continue; + } + + tmp_string += 8; + tmp_string += strspn(tmp_string, " \n\t"); + package_name = xstrndup(tmp_string, strcspn(tmp_string, "\n")); + write_flag = FALSE; + tmp_string = strstr(control_buffer, "Status:"); + if (tmp_string != NULL) { + /* Separate the status value from the control buffer */ + tmp_string += 7; + tmp_string += strspn(tmp_string, " \n\t"); + status_from_file = xstrndup(tmp_string, strcspn(tmp_string, "\n")); + } else { + status_from_file = NULL; + } + + /* Find this package in the status hashtable */ + status_num = search_status_hashtable(package_name); + if (status_hashtable[status_num] != NULL) { + const char *status_from_hashtable = name_hashtable[status_hashtable[status_num]->status]; + if (strcmp(status_from_file, status_from_hashtable) != 0) { + /* New status isn't exactly the same as old status */ + const int state_status = get_status(status_num, 3); + if ((strcmp("installed", name_hashtable[state_status]) == 0) + || (strcmp("unpacked", name_hashtable[state_status]) == 0) + ) { + /* We need to add the control file from the package */ + i = 0; + while (deb_file[i] != NULL) { + if (strcmp(package_name, name_hashtable[package_hashtable[deb_file[i]->package]->name]) == 0) { + /* Write a status file entry with a modified status */ + /* remove trailing \n's */ + write_buffer_no_status(new_status_file, deb_file[i]->control_file); + set_status(status_num, "ok", 2); + fprintf(new_status_file, "Status: %s\n\n", + name_hashtable[status_hashtable[status_num]->status]); + write_flag = TRUE; + break; + } + i++; + } + /* This is temperary, debugging only */ + if (deb_file[i] == NULL) { + bb_error_msg_and_die("ALERT: cannot find a control file, " + "your status file may be broken, status may be " + "incorrect for %s", package_name); + } + } + else if (strcmp("not-installed", name_hashtable[state_status]) == 0) { + /* Only write the Package, Status, Priority and Section lines */ + fprintf(new_status_file, "Package: %s\n", package_name); + fprintf(new_status_file, "Status: %s\n", status_from_hashtable); + + while (1) { + char *field_name; + char *field_value; + field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value); + if (field_name == NULL) { + break; + } + if ((strcmp(field_name, "Priority") == 0) + || (strcmp(field_name, "Section") == 0) + ) { + fprintf(new_status_file, "%s: %s\n", field_name, field_value); + } + } + write_flag = TRUE; + fputs("\n", new_status_file); + } + else if (strcmp("config-files", name_hashtable[state_status]) == 0) { + /* only change the status line */ + while (1) { + char *field_name; + char *field_value; + field_start += read_package_field(&control_buffer[field_start], &field_name, &field_value); + if (field_name == NULL) { + break; + } + /* Setup start point for next field */ + if (strcmp(field_name, "Status") == 0) { + fprintf(new_status_file, "Status: %s\n", status_from_hashtable); + } else { + fprintf(new_status_file, "%s: %s\n", field_name, field_value); + } + } + write_flag = TRUE; + fputs("\n", new_status_file); + } + } + } + /* If the package from the status file wasn't handle above, do it now*/ + if (!write_flag) { + fprintf(new_status_file, "%s\n\n", control_buffer); + } + + free(status_from_file); + free(package_name); + free(control_buffer); + } + + /* Write any new packages */ + for (i = 0; deb_file[i] != NULL; i++) { + status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[i]->package]->name]); + if (strcmp("reinstreq", name_hashtable[get_status(status_num, 2)]) == 0) { + write_buffer_no_status(new_status_file, deb_file[i]->control_file); + set_status(status_num, "ok", 2); + fprintf(new_status_file, "Status: %s\n\n", name_hashtable[status_hashtable[status_num]->status]); + } + } + fclose(old_status_file); + fclose(new_status_file); + + /* Create a separate backfile to dpkg */ + if (rename("/var/lib/dpkg/status", "/var/lib/dpkg/status.udeb.bak") == -1) { + if (errno != ENOENT) + bb_simple_error_msg_and_die("can't create backup status file"); + /* Its ok if renaming the status file fails because status + * file doesn't exist, maybe we are starting from scratch */ + bb_simple_error_msg("no status file found, creating new one"); + } + + xrename("/var/lib/dpkg/status.udeb", "/var/lib/dpkg/status"); +} + +/* This function returns TRUE if the given package can satisfy a + * dependency of type depend_type. + * + * A pre-depends is satisfied only if a package is already installed, + * which a regular depends can be satisfied by a package which we want + * to install. + */ +static int package_satisfies_dependency(int package, int depend_type) +{ + int status_num = search_status_hashtable(name_hashtable[package_hashtable[package]->name]); + + /* status could be unknown if package is a pure virtual + * provides which cannot satisfy any dependency by itself. + */ + if (status_hashtable[status_num] == NULL) + return 0; + + switch (depend_type) { + case EDGE_PRE_DEPENDS: return get_status(status_num, 3) == search_name_hashtable("installed"); + case EDGE_DEPENDS: return get_status(status_num, 1) == search_name_hashtable("install"); + } + return 0; +} + +static int check_deps(deb_file_t **deb_file, int deb_start /*, int dep_max_count - ?? */) +{ + int *conflicts = NULL; + int conflicts_num = 0; + int i = deb_start; + int j; + + /* Check for conflicts + * TODO: TEST if conflicts with other packages to be installed + * + * Add install packages and the packages they provide + * to the list of files to check conflicts for + */ + + /* Create array of package numbers to check against + * installed package for conflicts*/ + while (deb_file[i] != NULL) { + const unsigned package_num = deb_file[i]->package; + conflicts = xrealloc_vector(conflicts, 2, conflicts_num); + conflicts[conflicts_num] = package_num; + conflicts_num++; + /* add provides to conflicts list */ + for (j = 0; j < package_hashtable[package_num]->num_of_edges; j++) { + if (package_hashtable[package_num]->edge[j]->type == EDGE_PROVIDES) { + const int conflicts_package_num = search_package_hashtable( + package_hashtable[package_num]->edge[j]->name, + package_hashtable[package_num]->edge[j]->version, + package_hashtable[package_num]->edge[j]->operator); + if (package_hashtable[conflicts_package_num] == NULL) { + /* create a new package */ + common_node_t *new_node = xzalloc(sizeof(common_node_t)); + new_node->name = package_hashtable[package_num]->edge[j]->name; + new_node->version = package_hashtable[package_num]->edge[j]->version; + package_hashtable[conflicts_package_num] = new_node; + } + conflicts = xrealloc_vector(conflicts, 2, conflicts_num); + conflicts[conflicts_num] = conflicts_package_num; + conflicts_num++; + } + } + i++; + } + + /* Check conflicts */ + i = 0; + while (deb_file[i] != NULL) { + const common_node_t *package_node = package_hashtable[deb_file[i]->package]; + int status_num = 0; + status_num = search_status_hashtable(name_hashtable[package_node->name]); + + if (get_status(status_num, 3) == search_name_hashtable("installed")) { + i++; + continue; + } + + for (j = 0; j < package_node->num_of_edges; j++) { + const edge_t *package_edge = package_node->edge[j]; + + if (package_edge->type == EDGE_CONFLICTS) { + const unsigned package_num = + search_package_hashtable(package_edge->name, + package_edge->version, + package_edge->operator); + int result = 0; + if (package_hashtable[package_num] != NULL) { + status_num = search_status_hashtable(name_hashtable[package_hashtable[package_num]->name]); + + if (get_status(status_num, 1) == search_name_hashtable("install")) { + result = test_version(package_hashtable[deb_file[i]->package]->version, + package_edge->version, package_edge->operator); + } + } + + if (result) { + bb_error_msg_and_die("package %s conflicts with %s", + name_hashtable[package_node->name], + name_hashtable[package_edge->name]); + } + } + } + i++; + } + + + /* Check dependentcies */ + for (i = 0; i < PACKAGE_HASH_PRIME; i++) { + int status_num = 0; + int number_of_alternatives = 0; + const edge_t * root_of_alternatives = NULL; + const common_node_t *package_node = package_hashtable[i]; + + /* If the package node does not exist then this + * package is a virtual one. In which case there are + * no dependencies to check. + */ + if (package_node == NULL) continue; + + status_num = search_status_hashtable(name_hashtable[package_node->name]); + + /* If there is no status then this package is a + * virtual one provided by something else. In which + * case there are no dependencies to check. + */ + if (status_hashtable[status_num] == NULL) continue; + + /* If we don't want this package installed then we may + * as well ignore it's dependencies. + */ + if (get_status(status_num, 1) != search_name_hashtable("install")) { + continue; + } + + /* This code is tested only for EDGE_DEPENDS, since I + * have no suitable pre-depends available. There is no + * reason that it shouldn't work though :-) + */ + for (j = 0; j < package_node->num_of_edges; j++) { + const edge_t *package_edge = package_node->edge[j]; + unsigned package_num; + + if (package_edge->type == EDGE_OR_PRE_DEPENDS + || package_edge->type == EDGE_OR_DEPENDS + ) { + /* start an EDGE_OR_ list */ + number_of_alternatives = package_edge->version; + root_of_alternatives = package_edge; + continue; + } + if (number_of_alternatives == 0) { /* not in the middle of an EDGE_OR_ list */ + number_of_alternatives = 1; + root_of_alternatives = NULL; + } + + package_num = search_package_hashtable(package_edge->name, package_edge->version, package_edge->operator); + + if (package_edge->type == EDGE_PRE_DEPENDS + || package_edge->type == EDGE_DEPENDS + ) { + int result = 1; + status_num = 0; + + /* If we are inside an alternative then check + * this edge is the right type. + * + * EDGE_DEPENDS == OR_DEPENDS -1 + * EDGE_PRE_DEPENDS == OR_PRE_DEPENDS -1 + */ + if (root_of_alternatives && package_edge->type != root_of_alternatives->type - 1) + bb_error_msg_and_die("fatal error, package dependencies corrupt: %d != %d - 1", + package_edge->type, root_of_alternatives->type); + + if (package_hashtable[package_num] != NULL) + result = !package_satisfies_dependency(package_num, package_edge->type); + + if (result) { /* check for other package which provide what we are looking for */ + int provider = -1; + + while ((provider = search_for_provides(package_edge->name, provider)) > -1) { + if (package_hashtable[provider] == NULL) { + puts("Have a provider but no package information for it"); + continue; + } + result = !package_satisfies_dependency(provider, package_edge->type); + + if (result == 0) + break; + } + } + + /* It must be already installed, or to be installed */ + number_of_alternatives--; + if (result && number_of_alternatives == 0) { + if (root_of_alternatives) + bb_error_msg_and_die( + "package %s %sdepends on %s, which %s", + name_hashtable[package_node->name], + package_edge->type == EDGE_PRE_DEPENDS ? "pre-" : "", + name_hashtable[root_of_alternatives->name], + "cannot be satisfied"); + bb_error_msg_and_die( + "package %s %sdepends on %s, which %s", + name_hashtable[package_node->name], + package_edge->type == EDGE_PRE_DEPENDS ? "pre-" : "", + name_hashtable[package_edge->name], + describe_status(status_num)); + } + if (result == 0 && number_of_alternatives) { + /* we've found a package which + * satisfies the dependency, + * so skip over the rest of + * the alternatives. + */ + j += number_of_alternatives; + number_of_alternatives = 0; + } + } + } + } + free(conflicts); + return TRUE; +} + +static char **create_list(const char *filename) +{ + FILE *list_stream; + char **file_list; + char *line; + int count; + + /* don't use [xw]fopen here, handle error ourself */ + list_stream = fopen_for_read(filename); + if (list_stream == NULL) { + return NULL; + } + + file_list = NULL; + count = 0; + while ((line = xmalloc_fgetline(list_stream)) != NULL) { + file_list = xrealloc_vector(file_list, 2, count); + file_list[count++] = line; + /*file_list[count] = NULL; - xrealloc_vector did it */ + } + fclose(list_stream); + + return file_list; +} + +/** This tests if the filename is an "important" directory, which might be symlinked. + * Debians dpkg test if directories are used by other packages, this + * implementation doesn't and would remove for ex. an lib -> usr/lib symlink. + */ +static int is_builtin_exclude(const char *name) +{ + if (*name++ != '/') + return 0; + if (index_in_strings(".\0" "etc\0" "opt\0" "srv\0" "var\0" "var/lib\0", + name) >= 0) + return 1; + if (is_prefixed_with(name, "usr/")) { + name += sizeof("usr/") - 1; + if (is_prefixed_with(name, "local/")) + name += sizeof("local/") - 1; + } + + return index_in_strings("bin\0" "lib\0" "lib32\0" "lib64\0" "sbin\0", + name) >= 0; +} + +/* maybe i should try and hook this into remove_file.c somehow */ +static int remove_file_array(char **remove_names, char **exclude_names) +{ + struct stat path_stat; + int remove_flag = 1; /* not removed anything yet */ + int i, j; + + if (remove_names == NULL) { + return 0; + } + for (i = 0; remove_names[i] != NULL; i++) { + if (is_builtin_exclude(remove_names[i])) + continue; + if (exclude_names != NULL) { + for (j = 0; exclude_names[j] != NULL; j++) { + if (strcmp(remove_names[i], exclude_names[j]) == 0) { + goto skip; + } + } + } + /* TODO: why we are checking lstat? we can just try rm/rmdir */ + if (lstat(remove_names[i], &path_stat) < 0) { + continue; + } + if (S_ISDIR(path_stat.st_mode)) { + remove_flag &= rmdir(remove_names[i]); /* 0 if no error */ + } else { + remove_flag &= unlink(remove_names[i]); /* 0 if no error */ + } + skip: + continue; + } + return (remove_flag == 0); +} + +static void run_package_script_or_die(const char *package_name, const char *script_type) +{ + char *script_path; + int result; + + script_path = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, script_type); + + /* If the file doesn't exist it isn't fatal */ + result = access(script_path, F_OK) ? EXIT_SUCCESS : system(script_path); + free(script_path); + if (result) + bb_error_msg_and_die("%s failed, exit code %d", script_type, result); +} + +/* +The policy manual defines what scripts get called when and with +what arguments. I realize that busybox does not support all of +these scenarios, but it does support some of them; it does not, +however, run them with any parameters in run_package_script_or_die(). +Here are the scripts: + +preinst install +preinst install +preinst upgrade +preinst abort_upgrade +postinst configure +postinst abort-upgade +postinst abort-remove +postinst abort-remove in-favour +postinst abort-deconfigure in-favor removing +prerm remove +prerm upgrade +prerm failed-upgrade +prerm remove in-favor +prerm deconfigure in-favour removing +postrm remove +postrm purge +postrm upgrade +postrm failed-upgrade +postrm abort-install +postrm abort-install +postrm abort-upgrade +postrm disappear +*/ +static const char *const all_control_files[] ALIGN_PTR = { + "preinst", "postinst", "prerm", "postrm", + "list", "md5sums", "shlibs", "conffiles", + "config", "templates" +}; + +static char **all_control_list(const char *package_name) +{ + unsigned i = 0; + char **remove_files; + + /* Create a list of all /var/lib/dpkg/info/ files */ + remove_files = xzalloc(sizeof(all_control_files) + sizeof(char*)); + while (i < ARRAY_SIZE(all_control_files)) { + remove_files[i] = xasprintf("/var/lib/dpkg/info/%s.%s", + package_name, all_control_files[i]); + i++; + } + + return remove_files; +} + +static void free_array(char **array) +{ + if (array) { + unsigned i = 0; + while (array[i]) { + free(array[i]); + i++; + } + free(array); + } +} + +/* This function lists information on the installed packages. It loops through + * the status_hashtable to retrieve the info. This results in smaller code than + * scanning the status file. The resulting list, however, is unsorted. + */ +static void list_packages(const char *pattern) +{ + int i; + + puts(" Name Version"); + puts("+++-==============-=============="); + + /* go through status hash, dereference package hash and finally strings */ + for (i = 0; i < STATUS_HASH_PRIME+1; i++) { + if (status_hashtable[i]) { + const char *stat_str; /* status string */ + const char *name_str; /* package name */ + const char *vers_str; /* version */ + char s1, s2; /* status abbreviations */ + int spccnt; /* space count */ + int j; + + stat_str = name_hashtable[status_hashtable[i]->status]; + name_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->name]; + vers_str = name_hashtable[package_hashtable[status_hashtable[i]->package]->version]; + + if (pattern && fnmatch(pattern, name_str, 0) != 0) + continue; + + /* get abbreviation for status field 1 */ + s1 = stat_str[0] == 'i' ? 'i' : 'r'; + + /* get abbreviation for status field 2 */ + for (j = 0, spccnt = 0; stat_str[j] && spccnt < 2; j++) { + if (stat_str[j] == ' ') spccnt++; + } + s2 = stat_str[j]; + + /* print out the line formatted like Debian dpkg */ + printf("%c%c %-14s %s\n", s1, s2, name_str, vers_str); + } + } +} + +static void remove_package(const unsigned package_num, int noisy) +{ + const char *package_name = name_hashtable[package_hashtable[package_num]->name]; + const char *package_version = name_hashtable[package_hashtable[package_num]->version]; + const unsigned status_num = search_status_hashtable(package_name); + const int package_name_length = strlen(package_name); + char **remove_files; + char **exclude_files; + char list_name[package_name_length + 25]; + char conffile_name[package_name_length + 30]; + + if (noisy) + printf("Removing %s (%s)...\n", package_name, package_version); + + /* Run prerm script */ + run_package_script_or_die(package_name, "prerm"); + + /* Create a list of files to remove, and a separate list of those to keep */ + sprintf(list_name, "/var/lib/dpkg/info/%s.%s", package_name, "list"); + remove_files = create_list(list_name); + + sprintf(conffile_name, "/var/lib/dpkg/info/%s.%s", package_name, "conffiles"); + exclude_files = create_list(conffile_name); + + /* Some directories can't be removed straight away, so do multiple passes */ + while (remove_file_array(remove_files, exclude_files)) + continue; + free_array(exclude_files); + free_array(remove_files); + + /* Create a list of files in /var/lib/dpkg/info/.* to keep */ + exclude_files = xzalloc(sizeof(exclude_files[0]) * 3); + exclude_files[0] = xstrdup(conffile_name); + exclude_files[1] = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "postrm"); + + /* Create a list of all /var/lib/dpkg/info/ files */ + remove_files = all_control_list(package_name); + + remove_file_array(remove_files, exclude_files); + free_array(remove_files); + free_array(exclude_files); + + /* rename .conffiles to .list + * The conffiles control file isn't required in Debian packages, so don't + * error out if it's missing. */ + rename(conffile_name, list_name); + + /* Change package status */ + set_status(status_num, "config-files", 3); +} + +static void purge_package(const unsigned package_num) +{ + const char *package_name = name_hashtable[package_hashtable[package_num]->name]; + const char *package_version = name_hashtable[package_hashtable[package_num]->version]; + const unsigned status_num = search_status_hashtable(package_name); + char **remove_files; + char **exclude_files; + char list_name[strlen(package_name) + 25]; + + printf("Purging %s (%s)...\n", package_name, package_version); + + /* Run prerm script */ + run_package_script_or_die(package_name, "prerm"); + + /* Create a list of files to remove */ + sprintf(list_name, "/var/lib/dpkg/info/%s.%s", package_name, "list"); + remove_files = create_list(list_name); + + /* Some directories cant be removed straight away, so do multiple passes */ + while (remove_file_array(remove_files, NULL)) + continue; + free_array(remove_files); + + /* Create a list of all /var/lib/dpkg/info/ files */ + remove_files = all_control_list(package_name); + + /* Delete all of them except the postrm script */ + exclude_files = xzalloc(sizeof(exclude_files[0]) * 2); + exclude_files[0] = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "postrm"); + remove_file_array(remove_files, exclude_files); + free_array(exclude_files); + + /* Run and remove postrm script */ + run_package_script_or_die(package_name, "postrm"); + remove_file_array(remove_files, NULL); + + free_array(remove_files); + + /* Change package status */ + set_status(status_num, "not-installed", 3); +} + +static archive_handle_t *init_archive_deb_ar(const char *filename) +{ + archive_handle_t *ar_handle; + + /* Setup an ar archive handle that refers to the gzip sub archive */ + ar_handle = init_handle(); + ar_handle->filter = filter_accept_list_reassign; + ar_handle->src_fd = xopen(filename, O_RDONLY); + + return ar_handle; +} + +static void init_archive_deb_control(archive_handle_t *ar_handle) +{ + archive_handle_t *tar_handle; + + /* Setup the tar archive handle */ + tar_handle = init_handle(); + tar_handle->src_fd = ar_handle->src_fd; + + /* We don't care about data.tar.* or debian-binary, just control.tar.* */ + llist_add_to(&(ar_handle->accept), (char*)"control.tar"); +#if ENABLE_FEATURE_SEAMLESS_GZ + llist_add_to(&(ar_handle->accept), (char*)"control.tar.gz"); +#endif +#if ENABLE_FEATURE_SEAMLESS_BZ2 + llist_add_to(&(ar_handle->accept), (char*)"control.tar.bz2"); +#endif +#if ENABLE_FEATURE_SEAMLESS_XZ + llist_add_to(&(ar_handle->accept), (char*)"control.tar.xz"); +#endif + + /* Assign the tar handle as a subarchive of the ar handle */ + ar_handle->dpkg__sub_archive = tar_handle; +} + +static void init_archive_deb_data(archive_handle_t *ar_handle) +{ + archive_handle_t *tar_handle; + + /* Setup the tar archive handle */ + tar_handle = init_handle(); + tar_handle->src_fd = ar_handle->src_fd; + + /* We don't care about control.tar.* or debian-binary, just data.tar.* */ + llist_add_to(&(ar_handle->accept), (char*)"data.tar"); +#if ENABLE_FEATURE_SEAMLESS_GZ + llist_add_to(&(ar_handle->accept), (char*)"data.tar.gz"); +#endif +#if ENABLE_FEATURE_SEAMLESS_BZ2 + llist_add_to(&(ar_handle->accept), (char*)"data.tar.bz2"); +#endif +#if ENABLE_FEATURE_SEAMLESS_LZMA + llist_add_to(&(ar_handle->accept), (char*)"data.tar.lzma"); +#endif +#if ENABLE_FEATURE_SEAMLESS_XZ + llist_add_to(&(ar_handle->accept), (char*)"data.tar.xz"); +#endif + + /* Assign the tar handle as a subarchive of the ar handle */ + ar_handle->dpkg__sub_archive = tar_handle; +} + +static void FAST_FUNC data_extract_to_buffer(archive_handle_t *archive_handle) +{ + unsigned size = archive_handle->file_header->size; + + archive_handle->dpkg__buffer = xzalloc(size + 1); + xread(archive_handle->src_fd, archive_handle->dpkg__buffer, size); +} + +static char *deb_extract_control_file_to_buffer(archive_handle_t *ar_handle, llist_t *myaccept) +{ + ar_handle->dpkg__sub_archive->action_data = data_extract_to_buffer; + ar_handle->dpkg__sub_archive->accept = myaccept; + ar_handle->dpkg__sub_archive->filter = filter_accept_list; + + unpack_ar_archive(ar_handle); + close(ar_handle->src_fd); + + return ar_handle->dpkg__sub_archive->dpkg__buffer; +} + +static void append_control_file_to_llist(const char *package_name, const char *control_name, llist_t **ll) +{ + FILE *fp; + char *filename, *line; + + filename = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, control_name); + fp = fopen_for_read(filename); + free(filename); + if (fp != NULL) { + while ((line = xmalloc_fgetline(fp)) != NULL) + llist_add_to(ll, line); + fclose(fp); + } +} + +static char FAST_FUNC filter_rename_config(archive_handle_t *archive_handle) +{ + int fd; + char *name_ptr = archive_handle->file_header->name + 1; + + /* Is this file marked as config file? */ + if (!find_list_entry(archive_handle->accept, name_ptr)) + return EXIT_SUCCESS; /* no */ + + fd = open(name_ptr, O_RDONLY); + if (fd >= 0) { + md5_ctx_t md5; + char *md5line, *buf; + int count; + + /* Calculate MD5 of existing file */ + buf = xmalloc(4096); + md5_begin(&md5); + while ((count = safe_read(fd, buf, 4096)) > 0) + md5_hash(&md5, buf, count); + md5_end(&md5, buf); /* using buf as result storage */ + close(fd); + + md5line = xmalloc(16 * 2 + 2 + strlen(name_ptr) + 1); + sprintf(bin2hex(md5line, buf, 16), " %s", name_ptr); + free(buf); + + /* Is it changed after install? */ + if (find_list_entry(archive_handle->accept, md5line) == NULL) { + printf("Warning: Creating %s as %s.dpkg-new\n", name_ptr, name_ptr); + archive_handle->file_header->name = xasprintf("%s.dpkg-new", archive_handle->file_header->name); + } + free(md5line); + } + return EXIT_SUCCESS; +} + +static void FAST_FUNC data_extract_all_prefix(archive_handle_t *archive_handle) +{ + char *name_ptr = archive_handle->file_header->name; + + /* Skip all leading "/" */ + while (*name_ptr == '/') + name_ptr++; + /* Skip all leading "./" and "../" */ + while (name_ptr[0] == '.') { + if (name_ptr[1] == '.') + name_ptr++; + if (name_ptr[1] != '/') + break; + name_ptr += 2; + } + + if (name_ptr[0] != '\0') { + archive_handle->file_header->name = xasprintf("%s%s", archive_handle->dpkg__buffer, name_ptr); + data_extract_all(archive_handle); + if (fnmatch("*.dpkg-new", archive_handle->file_header->name, 0) == 0) { + /* remove .dpkg-new suffix */ + archive_handle->file_header->name[strlen(archive_handle->file_header->name) - 9] = '\0'; + } + } +} + +enum { + /* Commands */ + OPT_configure = (1 << 0), + OPT_install = (1 << 1), + OPT_list_installed = (1 << 2), + OPT_purge = (1 << 3), + OPT_remove = (1 << 4), + OPT_unpack = (1 << 5), + OPTMASK_cmd = (1 << 6) - 1, + /* Options */ + OPT_force = (1 << 6), + OPT_force_ignore_depends = (1 << 7), + OPT_force_confnew = (1 << 8), + OPT_force_confold = (1 << 9), +}; + +static void unpack_package(deb_file_t *deb_file) +{ + const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name]; + const unsigned status_num = search_status_hashtable(package_name); + const unsigned status_package_num = status_hashtable[status_num]->package; + char *info_prefix; + char *list_filename; + archive_handle_t *archive_handle; + FILE *out_stream; + llist_t *accept_list; + llist_t *conffile_list; + int i; + + /* If existing version, remove it first */ + conffile_list = NULL; + if (strcmp(name_hashtable[get_status(status_num, 3)], "installed") == 0) { + /* Package is already installed, remove old version first */ + printf("Preparing to replace %s %s (using %s)...\n", package_name, + name_hashtable[package_hashtable[status_package_num]->version], + deb_file->filename); + + /* Read md5sums from old package */ + if (!(option_mask32 & OPT_force_confold)) + append_control_file_to_llist(package_name, "md5sums", &conffile_list); + + remove_package(status_package_num, 0); + } else { + printf("Unpacking %s (from %s)...\n", package_name, deb_file->filename); + } + + /* Extract control.tar.gz to /var/lib/dpkg/info/.filename */ + info_prefix = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, ""); + archive_handle = init_archive_deb_ar(deb_file->filename); + init_archive_deb_control(archive_handle); + + accept_list = NULL; + i = 0; + while (i < ARRAY_SIZE(all_control_files)) { + char *c = xasprintf("./%s", all_control_files[i]); + llist_add_to(&accept_list, c); + i++; + } + archive_handle->dpkg__sub_archive->accept = accept_list; + archive_handle->dpkg__sub_archive->filter = filter_accept_list; + archive_handle->dpkg__sub_archive->action_data = data_extract_all_prefix; + archive_handle->dpkg__sub_archive->dpkg__buffer = info_prefix; + archive_handle->dpkg__sub_archive->ah_flags |= ARCHIVE_UNLINK_OLD; + unpack_ar_archive(archive_handle); + + /* Run the preinst prior to extracting */ + run_package_script_or_die(package_name, "preinst"); + + /* Don't overwrite existing config files */ + if (!(option_mask32 & OPT_force_confnew)) + append_control_file_to_llist(package_name, "conffiles", &conffile_list); + + /* Extract data.tar.gz to the root directory */ + archive_handle = init_archive_deb_ar(deb_file->filename); + init_archive_deb_data(archive_handle); + archive_handle->dpkg__sub_archive->accept = conffile_list; + /* Why ARCHIVE_REMEMBER_NAMES? + * We want names collected in ->passed list even if conffile_list + * is NULL (otherwise get_header_tar may optimize name saving out): + */ + archive_handle->dpkg__sub_archive->ah_flags |= ARCHIVE_REMEMBER_NAMES | ARCHIVE_UNLINK_OLD; + archive_handle->dpkg__sub_archive->filter = filter_rename_config; + archive_handle->dpkg__sub_archive->action_data = data_extract_all_prefix; + archive_handle->dpkg__sub_archive->dpkg__buffer = (char*)"/"; /* huh? */ + unpack_ar_archive(archive_handle); + + /* Create the list file */ + list_filename = xasprintf("/var/lib/dpkg/info/%s.%s", package_name, "list"); + out_stream = xfopen_for_write(list_filename); + archive_handle->dpkg__sub_archive->passed = llist_rev(archive_handle->dpkg__sub_archive->passed); + while (archive_handle->dpkg__sub_archive->passed) { + char *filename = llist_pop(&archive_handle->dpkg__sub_archive->passed); + /* the leading . has been stripped by data_extract_all_prefix already */ + fprintf(out_stream, "%s\n", filename); + free(filename); + } + fclose(out_stream); + + /* change status */ + set_status(status_num, "install", 1); + set_status(status_num, "unpacked", 3); + + free(info_prefix); + free(list_filename); +} + +static void configure_package(deb_file_t *deb_file) +{ + const char *package_name = name_hashtable[package_hashtable[deb_file->package]->name]; + const char *package_version = name_hashtable[package_hashtable[deb_file->package]->version]; + const int status_num = search_status_hashtable(package_name); + + printf("Setting up %s (%s)...\n", package_name, package_version); + + /* Run the postinst script */ + /* TODO: handle failure gracefully */ + run_package_script_or_die(package_name, "postinst"); + + /* Change status to reflect success */ + set_status(status_num, "install", 1); + set_status(status_num, "installed", 3); +} + +int dpkg_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int dpkg_main(int argc UNUSED_PARAM, char **argv) +{ + deb_file_t **deb_file = NULL; + status_node_t *status_node; + char *str_f; + int opt; + int package_num; + int deb_count = 0; + int state_status; + int status_num; + int i; +#if ENABLE_LONG_OPTS + static const char dpkg_longopts[] ALIGN1 = +// FIXME: we use -C non-compatibly, should be: +// "-C|--audit Check for broken package(s)" + "configure\0" No_argument "C" + "force\0" Required_argument "F" + "install\0" No_argument "i" + "list\0" No_argument "l" + "purge\0" No_argument "P" + "remove\0" No_argument "r" + "unpack\0" No_argument "u" + "force-depends\0" No_argument "\xff" + "force-confnew\0" No_argument "\xfe" + "force-confold\0" No_argument "\xfd" + ; +#endif + + INIT_G(); + + opt = getopt32long(argv, "CilPruF:", dpkg_longopts, &str_f); + argv += optind; + //if (opt & OPT_configure) ... // -C + if (opt & OPT_force) { // -F (--force in official dpkg) + if (strcmp(str_f, "depends") == 0) + opt |= OPT_force_ignore_depends; + else if (strcmp(str_f, "confnew") == 0) + opt |= OPT_force_confnew; + else if (strcmp(str_f, "confold") == 0) + opt |= OPT_force_confold; + else + bb_show_usage(); + option_mask32 = opt; + } + //if (opt & OPT_install) ... // -i + //if (opt & OPT_list_installed) ... // -l + //if (opt & OPT_purge) ... // -P + //if (opt & OPT_remove) ... // -r + //if (opt & OPT_unpack) ... // -u (--unpack in official dpkg) + if (!(opt & OPTMASK_cmd) /* no cmd */ + || ((opt & OPTMASK_cmd) & ((opt & OPTMASK_cmd)-1)) /* more than one cmd */ + ) { + bb_show_usage(); + } + +/* puts("(Reading database ... xxxxx files and directories installed.)"); */ + index_status_file("/var/lib/dpkg/status"); + + /* if the list action was given print the installed packages and exit */ + if (opt & OPT_list_installed) { + list_packages(argv[0]); /* param can be NULL */ + return EXIT_SUCCESS; + } + + /* Read arguments and store relevant info in structs */ + while (*argv) { + /* deb_count = nb_elem - 1 and we need nb_elem + 1 to allocate terminal node [NULL pointer] */ + deb_file = xrealloc_vector(deb_file, 2, deb_count); + deb_file[deb_count] = xzalloc(sizeof(deb_file[0][0])); + if (opt & (OPT_install | OPT_unpack)) { + /* -i/-u: require filename */ + archive_handle_t *archive_handle; + llist_t *control_list = NULL; + + /* Extract the control file */ + llist_add_to(&control_list, (char*)"./control"); + archive_handle = init_archive_deb_ar(argv[0]); + init_archive_deb_control(archive_handle); + deb_file[deb_count]->control_file = deb_extract_control_file_to_buffer(archive_handle, control_list); + if (deb_file[deb_count]->control_file == NULL) { + bb_simple_error_msg_and_die("can't extract control file"); + } + deb_file[deb_count]->filename = xstrdup(argv[0]); + package_num = fill_package_struct(deb_file[deb_count]->control_file); + + if (package_num == -1) { + bb_error_msg("invalid control file in %s", argv[0]); + argv++; + continue; + } + deb_file[deb_count]->package = (unsigned) package_num; + + /* Add the package to the status hashtable */ + if (opt & (OPT_unpack | OPT_install)) { + /* Try and find a currently installed version of this package */ + status_num = search_status_hashtable(name_hashtable[package_hashtable[deb_file[deb_count]->package]->name]); + /* If no previous entry was found initialise a new entry */ + if (status_hashtable[status_num] == NULL + || status_hashtable[status_num]->status == 0 + ) { + status_node = xmalloc(sizeof(status_node_t)); + status_node->package = deb_file[deb_count]->package; + /* reinstreq isn't changed to "ok" until the package control info + * is written to the status file*/ + status_node->status = search_name_hashtable("install reinstreq not-installed"); + status_hashtable[status_num] = status_node; + } else { + set_status(status_num, "install", 1); + set_status(status_num, "reinstreq", 2); + } + } + } else if (opt & (OPT_configure | OPT_purge | OPT_remove)) { + /* -C/-p/-r: require package name */ + deb_file[deb_count]->package = search_package_hashtable( + search_name_hashtable(argv[0]), + search_name_hashtable("ANY"), VER_ANY); + if (package_hashtable[deb_file[deb_count]->package] == NULL) { + bb_error_msg_and_die("package %s is uninstalled or unknown", argv[0]); + } + package_num = deb_file[deb_count]->package; + status_num = search_status_hashtable(name_hashtable[package_hashtable[package_num]->name]); + state_status = get_status(status_num, 3); + + /* check package status is "installed" */ + if (opt & OPT_remove) { + if (strcmp(name_hashtable[state_status], "not-installed") == 0 + || strcmp(name_hashtable[state_status], "config-files") == 0 + ) { + bb_error_msg_and_die("%s is already removed", name_hashtable[package_hashtable[package_num]->name]); + } + set_status(status_num, "deinstall", 1); + } else if (opt & OPT_purge) { + /* if package status is "conf-files" then its ok */ + if (strcmp(name_hashtable[state_status], "not-installed") == 0) { + bb_error_msg_and_die("%s is already purged", name_hashtable[package_hashtable[package_num]->name]); + } + set_status(status_num, "purge", 1); + } + } + deb_count++; + argv++; + } + if (!deb_count) + bb_simple_error_msg_and_die("no package files specified"); + deb_file[deb_count] = NULL; + + /* Check that the deb file arguments are installable */ + if (!(opt & OPT_force_ignore_depends)) { + if (!check_deps(deb_file, 0 /*, deb_count*/)) { + bb_simple_error_msg_and_die("dependency check failed"); + } + } + + /* TODO: install or remove packages in the correct dependency order */ + for (i = 0; i < deb_count; i++) { + /* Remove or purge packages */ + if (opt & OPT_remove) { + remove_package(deb_file[i]->package, 1); + } + else if (opt & OPT_purge) { + purge_package(deb_file[i]->package); + } + else if (opt & OPT_unpack) { + unpack_package(deb_file[i]); + } + else if (opt & OPT_install) { + unpack_package(deb_file[i]); + /* package is configured in second pass below */ + } + else if (opt & OPT_configure) { + configure_package(deb_file[i]); + } + } + /* configure installed packages */ + if (opt & OPT_install) { + for (i = 0; i < deb_count; i++) + configure_package(deb_file[i]); + } + + write_status_file(deb_file); + + if (ENABLE_FEATURE_CLEAN_UP) { + for (i = 0; i < deb_count; i++) { + free(deb_file[i]->control_file); + free(deb_file[i]->filename); + free(deb_file[i]); + } + + free(deb_file); + + for (i = 0; i < NAME_HASH_PRIME; i++) { + free(name_hashtable[i]); + } + + for (i = 0; i < PACKAGE_HASH_PRIME; i++) { + free_package(package_hashtable[i]); + } + + for (i = 0; i < STATUS_HASH_PRIME; i++) { + free(status_hashtable[i]); + } + } + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/archival/dpkg_deb.c b/busybox-1_37_0/archival/dpkg_deb.c new file mode 100644 index 000000000..dda931169 --- /dev/null +++ b/busybox-1_37_0/archival/dpkg_deb.c @@ -0,0 +1,134 @@ +/* vi: set sw=4 ts=4: */ +/* + * dpkg-deb packs, unpacks and provides information about Debian archives. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config DPKG_DEB +//config: bool "dpkg-deb (29 kb)" +//config: default y +//config: select FEATURE_SEAMLESS_GZ +//config: help +//config: dpkg-deb unpacks and provides information about Debian archives. +//config: +//config: This implementation of dpkg-deb cannot pack archives. +//config: +//config: Unless you have a specific application which requires dpkg-deb, +//config: say N here. + +//applet:IF_DPKG_DEB(APPLET_ODDNAME(dpkg-deb, dpkg_deb, BB_DIR_USR_BIN, BB_SUID_DROP, dpkg_deb)) + +//kbuild:lib-$(CONFIG_DPKG_DEB) += dpkg_deb.o + +//usage:#define dpkg_deb_trivial_usage +//usage: "[-cefxX] FILE [DIR]" +//usage:#define dpkg_deb_full_usage "\n\n" +//usage: "Perform actions on Debian packages (.deb)\n" +//usage: "\n -c List files" +//usage: "\n -f Print control fields" +//usage: "\n -e Extract control files to DIR (default: ./DEBIAN)" +//usage: "\n -x Extract files to DIR (no default)" +//usage: "\n -X Verbose extract" +//usage: +//usage:#define dpkg_deb_example_usage +//usage: "$ dpkg-deb -X ./busybox_0.48-1_i386.deb /tmp\n" + +#include "libbb.h" +#include "bb_archive.h" + +#define DPKG_DEB_OPT_CONTENTS 1 +#define DPKG_DEB_OPT_CONTROL 2 +#define DPKG_DEB_OPT_FIELD 4 +#define DPKG_DEB_OPT_EXTRACT_VERBOSE 8 +#define DPKG_DEB_OPT_EXTRACT 16 + +int dpkg_deb_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int dpkg_deb_main(int argc UNUSED_PARAM, char **argv) +{ + archive_handle_t *ar_archive; + archive_handle_t *tar_archive; + llist_t *control_tar_llist = NULL; + unsigned opt; + const char *extract_dir; + + /* Setup the tar archive handle */ + tar_archive = init_handle(); + + /* Setup an ar archive handle that refers to the gzip sub archive */ + ar_archive = init_handle(); + ar_archive->dpkg__sub_archive = tar_archive; + ar_archive->filter = filter_accept_list_reassign; + + llist_add_to(&ar_archive->accept, (char*)"data.tar"); + llist_add_to(&control_tar_llist, (char*)"control.tar"); +#if ENABLE_FEATURE_SEAMLESS_GZ + llist_add_to(&ar_archive->accept, (char*)"data.tar.gz"); + llist_add_to(&control_tar_llist, (char*)"control.tar.gz"); +#endif +#if ENABLE_FEATURE_SEAMLESS_BZ2 + llist_add_to(&ar_archive->accept, (char*)"data.tar.bz2"); + llist_add_to(&control_tar_llist, (char*)"control.tar.bz2"); +#endif +#if ENABLE_FEATURE_SEAMLESS_LZMA + llist_add_to(&ar_archive->accept, (char*)"data.tar.lzma"); + llist_add_to(&control_tar_llist, (char*)"control.tar.lzma"); +#endif +#if ENABLE_FEATURE_SEAMLESS_XZ + llist_add_to(&ar_archive->accept, (char*)"data.tar.xz"); + llist_add_to(&control_tar_llist, (char*)"control.tar.xz"); +#endif + + /* Must have 1 or 2 args */ + opt = getopt32(argv, "^" "cefXx" + "\0" "-1:?2:c--efXx:e--cfXx:f--ceXx:X--cefx:x--cefX" + ); + argv += optind; + //argc -= optind; + + extract_dir = argv[1]; + if (opt & DPKG_DEB_OPT_CONTENTS) { // -c + tar_archive->action_header = header_verbose_list; + if (extract_dir) + bb_show_usage(); + } + if (opt & DPKG_DEB_OPT_FIELD) { // -f + /* Print the entire control file */ +//TODO: standard tool accepts an optional list of fields to print + ar_archive->accept = control_tar_llist; + llist_add_to(&(tar_archive->accept), (char*)"./control"); + tar_archive->filter = filter_accept_list; + tar_archive->action_data = data_extract_to_stdout; + if (extract_dir) + bb_show_usage(); + } + if (opt & DPKG_DEB_OPT_CONTROL) { // -e + ar_archive->accept = control_tar_llist; + tar_archive->action_data = data_extract_all; + if (!extract_dir) + extract_dir = "./DEBIAN"; + } + if (opt & (DPKG_DEB_OPT_EXTRACT_VERBOSE | DPKG_DEB_OPT_EXTRACT)) { // -Xx + if (opt & DPKG_DEB_OPT_EXTRACT_VERBOSE) + tar_archive->action_header = header_list; + tar_archive->action_data = data_extract_all; + if (!extract_dir) + bb_show_usage(); + } + + /* Standard tool supports "-" */ + tar_archive->src_fd = ar_archive->src_fd = xopen_stdin(argv[0]); + + if (extract_dir) { + mkdir(extract_dir, 0777); /* bb_make_directory(extract_dir, 0777, 0) */ + xchdir(extract_dir); + } + + /* Do it */ + unpack_ar_archive(ar_archive); + + /* Cleanup */ + if (ENABLE_FEATURE_CLEAN_UP) + close(ar_archive->src_fd); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/archival/gzip.c b/busybox-1_37_0/archival/gzip.c new file mode 100644 index 000000000..91bd4d09d --- /dev/null +++ b/busybox-1_37_0/archival/gzip.c @@ -0,0 +1,2258 @@ +/* vi: set sw=4 ts=4: */ +/* + * Gzip implementation for busybox + * + * Based on GNU gzip Copyright (C) 1992-1993 Jean-loup Gailly. + * + * Originally adjusted for busybox by Charles P. Wright + * "this is a stripped down version of gzip I put into busybox, it does + * only standard in to standard out with -9 compression. It also requires + * the zcat module for some important functions." + * + * Adjusted further by Erik Andersen to support + * files as well as stdin/stdout, and to generally behave itself wrt + * command line handling. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* TODO: full support for -v for DESKTOP + * "/usr/bin/gzip -v a bogus aa" should say: +a: 85.1% -- replaced with a.gz +gzip: bogus: No such file or directory +aa: 85.1% -- replaced with aa.gz +*/ +//config:config GZIP +//config: bool "gzip (17 kb)" +//config: default y +//config: help +//config: gzip is used to compress files. +//config: It's probably the most widely used UNIX compression program. +//config: +//config:config FEATURE_GZIP_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on GZIP && LONG_OPTS +//config: +//config:config GZIP_FAST +//config: int "Trade memory for speed (0:small,slow - 2:fast,big)" +//config: default 0 +//config: range 0 2 +//config: depends on GZIP +//config: help +//config: Enable big memory options for gzip. +//config: 0: small buffers, small hash-tables +//config: 1: larger buffers, larger hash-tables +//config: 2: larger buffers, largest hash-tables +//config: Larger models may give slightly better compression +//config: +//config:config FEATURE_GZIP_LEVELS +//config: bool "Enable compression levels" +//config: default n +//config: depends on GZIP +//config: help +//config: Enable support for compression levels 4-9. The default level +//config: is 6. If levels 1-3 are specified, 4 is used. +//config: If this option is not selected, -N options are ignored and -6 +//config: is used. +//config: +//config:config FEATURE_GZIP_DECOMPRESS +//config: bool "Enable decompression" +//config: default y +//config: depends on GZIP || GUNZIP || ZCAT +//config: help +//config: Enable -d (--decompress) and -t (--test) options for gzip. +//config: This will be automatically selected if gunzip or zcat is +//config: enabled. + +//applet:IF_GZIP(APPLET(gzip, BB_DIR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_GZIP) += gzip.o + +//usage:#define gzip_trivial_usage +//usage: "[-cfk" IF_FEATURE_GZIP_DECOMPRESS("dt") IF_FEATURE_GZIP_LEVELS("123456789") "] [FILE]..." +//usage:#define gzip_full_usage "\n\n" +//usage: "Compress FILEs (or stdin)\n" +//usage: IF_FEATURE_GZIP_LEVELS( +//usage: "\n -1..9 Compression level" +//usage: ) +//usage: IF_FEATURE_GZIP_DECOMPRESS( +//usage: "\n -d Decompress" +//usage: ) +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -k Keep input files" +//usage: IF_FEATURE_GZIP_DECOMPRESS( +//usage: "\n -t Test integrity" +//usage: ) +//usage: +//usage:#define gzip_example_usage +//usage: "$ ls -la /tmp/busybox*\n" +//usage: "-rw-rw-r-- 1 andersen andersen 1761280 Apr 14 17:47 /tmp/busybox.tar\n" +//usage: "$ gzip /tmp/busybox.tar\n" +//usage: "$ ls -la /tmp/busybox*\n" +//usage: "-rw-rw-r-- 1 andersen andersen 554058 Apr 14 17:49 /tmp/busybox.tar.gz\n" + +#include "libbb.h" +#include "bb_archive.h" + +/* =========================================================================== + */ +//#define DEBUG 1 +/* Diagnostic functions */ +#ifdef DEBUG +static int verbose; +# define Assert(cond,msg) { if (!(cond)) bb_simple_error_msg(msg); } +# define Trace(x) fprintf x +# define Tracev(x) {if (verbose) fprintf x; } +# define Tracevv(x) {if (verbose > 1) fprintf x; } +# define Tracec(c,x) {if (verbose && (c)) fprintf x; } +# define Tracecv(c,x) {if (verbose > 1 && (c)) fprintf x; } +#else +# define Assert(cond,msg) +# define Trace(x) +# define Tracev(x) +# define Tracevv(x) +# define Tracec(c,x) +# define Tracecv(c,x) +#endif + +/* =========================================================================== + */ +#if CONFIG_GZIP_FAST == 0 +# define SMALL_MEM +#elif CONFIG_GZIP_FAST == 1 +# define MEDIUM_MEM +#elif CONFIG_GZIP_FAST == 2 +# define BIG_MEM +#else +# error "Invalid CONFIG_GZIP_FAST value" +#endif + +#ifndef INBUFSIZ +# ifdef SMALL_MEM +# define INBUFSIZ 0x2000 /* input buffer size */ +# else +# define INBUFSIZ 0x8000 /* input buffer size */ +# endif +#endif + +#ifndef OUTBUFSIZ +# ifdef SMALL_MEM +# define OUTBUFSIZ 8192 /* output buffer size */ +# else +# define OUTBUFSIZ 16384 /* output buffer size */ +# endif +#endif + +#ifndef DIST_BUFSIZE +# ifdef SMALL_MEM +# define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */ +# else +# define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */ +# endif +#endif + +/* gzip flag byte */ +#define ASCII_FLAG 0x01 /* bit 0 set: file probably ascii text */ +#define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */ +#define EXTRA_FIELD 0x04 /* bit 2 set: extra field present */ +#define ORIG_NAME 0x08 /* bit 3 set: original file name present */ +#define COMMENT 0x10 /* bit 4 set: file comment present */ +#define RESERVED 0xC0 /* bit 6,7: reserved */ + +/* internal file attribute */ +#define UNKNOWN 0xffff +#define BINARY 0 +#define ASCII 1 + +#ifndef WSIZE +# define WSIZE 0x8000 /* window size--must be a power of two, and */ +#endif /* at least 32K for zip's deflate method */ + +#define MIN_MATCH 3 +#define MAX_MATCH 258 +/* The minimum and maximum match lengths */ + +#define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1) +/* Minimum amount of lookahead, except at the end of the input file. + * See deflate.c for comments about the MIN_MATCH+1. + */ + +#define MAX_DIST (WSIZE-MIN_LOOKAHEAD) +/* In order to simplify the code, particularly on 16 bit machines, match + * distances are limited to MAX_DIST instead of WSIZE. + */ + +#ifndef MAX_PATH_LEN +# define MAX_PATH_LEN 1024 /* max pathname length */ +#endif + +#define seekable() 0 /* force sequential output */ +#define translate_eol 0 /* no option -a yet */ + +#ifndef BITS +# define BITS 16 +#endif +#define INIT_BITS 9 /* Initial number of bits per code */ + +#define BIT_MASK 0x1f /* Mask for 'number of compression bits' */ +/* Mask 0x20 is reserved to mean a fourth header byte, and 0x40 is free. + * It's a pity that old uncompress does not check bit 0x20. That makes + * extension of the format actually undesirable because old compress + * would just crash on the new format instead of giving a meaningful + * error message. It does check the number of bits, but it's more + * helpful to say "unsupported format, get a new version" than + * "can only handle 16 bits". + */ + +#ifdef MAX_EXT_CHARS +# define MAX_SUFFIX MAX_EXT_CHARS +#else +# define MAX_SUFFIX 30 +#endif + +/* =========================================================================== + * Compile with MEDIUM_MEM to reduce the memory requirements or + * with SMALL_MEM to use as little memory as possible. Use BIG_MEM if the + * entire input file can be held in memory (not possible on 16 bit systems). + * Warning: defining these symbols affects HASH_BITS (see below) and thus + * affects the compression ratio. The compressed output + * is still correct, and might even be smaller in some cases. + */ +#ifdef SMALL_MEM +# define HASH_BITS 13 /* Number of bits used to hash strings */ +#endif +#ifdef MEDIUM_MEM +# define HASH_BITS 14 +#endif +#ifndef HASH_BITS +# define HASH_BITS 15 + /* For portability to 16 bit machines, do not use values above 15. */ +#endif + +#define HASH_SIZE (unsigned)(1<= 4. + */ + + max_insert_length = max_lazy_match, +/* Insert new strings in the hash table only if the match length + * is not greater than this length. This saves time but degrades compression. + * max_insert_length is used only for compression levels <= 3. + */ + + good_match = 8, +/* Use a faster search when the previous match is longer than this */ + +/* Values for max_lazy_match, good_match and max_chain_length, depending on + * the desired pack level (0..9). The values given below have been tuned to + * exclude worst case performance for pathological files. Better values may be + * found for specific files. + */ + + nice_match = 128, /* Stop searching when current match exceeds this */ +/* Note: the deflate() code requires max_lazy >= MIN_MATCH and max_chain >= 4 + * For deflate_fast() (levels <= 3) good is ignored and lazy has a different + * meaning. + */ +#endif /* ENABLE_FEATURE_GZIP_LEVELS */ +}; + +struct globals { +/* =========================================================================== */ +/* global buffers, allocated once */ + +#define DECLARE(type, array, size) \ + type * array +#define ALLOC(type, array, size) \ + array = xzalloc((size_t)(((size)+1L)/2) * 2*sizeof(type)) +#define FREE(array) \ + do { free(array); array = NULL; } while (0) + + /* buffer for literals or lengths */ + /* DECLARE(uch, l_buf, LIT_BUFSIZE); */ + DECLARE(uch, l_buf, INBUFSIZ); + + DECLARE(ush, d_buf, DIST_BUFSIZE); + DECLARE(uch, outbuf, OUTBUFSIZ); + +/* Sliding window. Input bytes are read into the second half of the window, + * and move to the first half later to keep a dictionary of at least WSIZE + * bytes. With this organization, matches are limited to a distance of + * WSIZE-MAX_MATCH bytes, but this ensures that IO is always + * performed with a length multiple of the block size. Also, it limits + * the window size to 64K, which is quite useful on MSDOS. + * To do: limit the window size to WSIZE+BSZ if SMALL_MEM (the code would + * be less efficient). + */ + DECLARE(uch, window, 2L * WSIZE); + +/* Link to older string with same hash index. To limit the size of this + * array to 64K, this link is maintained only for the last 32K strings. + * An index in this array is thus a window index modulo 32K. + */ + /* DECLARE(Pos, prev, WSIZE); */ + DECLARE(ush, prev, 1L << BITS); + +/* Heads of the hash chains or 0. */ + /* DECLARE(Pos, head, 1<= HASH_BITS + */ +#define H_SHIFT ((HASH_BITS+MIN_MATCH-1) / MIN_MATCH) + +/* Length of the best match at previous step. Matches not greater than this + * are discarded. This is used in the lazy match evaluation. + */ + unsigned prev_length; + + unsigned strstart; /* start of string to insert */ + unsigned match_start; /* start of matching string */ + unsigned lookahead; /* number of valid bytes ahead in window */ + +/* number of input bytes */ + ulg isize; /* only 32 bits stored in .gz file */ + +/* bbox always use stdin/stdout */ +#define ifd STDIN_FILENO /* input file descriptor */ +#define ofd STDOUT_FILENO /* output file descriptor */ + +#ifdef DEBUG + unsigned insize; /* valid bytes in l_buf */ +#endif + unsigned outcnt; /* bytes in output buffer */ + smallint eofile; /* flag set at end of input file */ + +/* =========================================================================== + * Local data used by the "bit string" routines. + */ + +/* Output buffer. bits are inserted starting at the bottom (least significant + * bits). + */ + unsigned bi_buf; /* was unsigned short */ + +#undef BUF_SIZE +#define BUF_SIZE (int)(8 * sizeof(G1.bi_buf)) + +/* Number of bits used within bi_buf. (bi_buf might be implemented on + * more than 16 bits on some systems.) + */ + unsigned bi_valid; + +#ifdef DEBUG + ulg bits_sent; /* bit length of the compressed data */ +# define DEBUG_bits_sent(v) (void)(G1.bits_sent v) +#else +# define DEBUG_bits_sent(v) ((void)0) +#endif +}; + +#define G1 (*(ptr_to_globals - 1)) + +/* =========================================================================== + * Write the output buffer outbuf[0..outcnt-1] and update bytes_out. + * (used for the compressed data only) + */ +static void flush_outbuf(void) +{ + if (G1.outcnt == 0) + return; + + xwrite(ofd, (char *) G1.outbuf, G1.outcnt); + G1.outcnt = 0; +} + +/* =========================================================================== + */ +/* put_8bit is used for the compressed output */ +#define put_8bit(c) \ +do { \ + G1.outbuf[G1.outcnt++] = (c); \ + if (G1.outcnt == OUTBUFSIZ) \ + flush_outbuf(); \ +} while (0) + +/* Output a 16 bit value, lsb first */ +static void put_16bit(ush w) +{ + /* GCC 4.2.1 won't optimize out redundant loads of G1.outcnt + * (probably because of fear of aliasing with G1.outbuf[] + * stores), do it explicitly: + */ + unsigned outcnt = G1.outcnt; + uch *dst = &G1.outbuf[outcnt]; + +#if BB_UNALIGNED_MEMACCESS_OK && BB_LITTLE_ENDIAN + if (outcnt < OUTBUFSIZ-2) { + /* Common case */ + ush *dst16 = (void*) dst; + *dst16 = w; /* unaligned LSB 16-bit store */ + G1.outcnt = outcnt + 2; + return; + } + *dst = (uch)w; + w >>= 8; + G1.outcnt = ++outcnt; +#else + *dst = (uch)w; + w >>= 8; + if (outcnt < OUTBUFSIZ-2) { + /* Common case */ + dst[1] = w; + G1.outcnt = outcnt + 2; + return; + } + G1.outcnt = ++outcnt; +#endif + + /* Slowpath: we will need to do flush_outbuf() */ + if (outcnt == OUTBUFSIZ) + flush_outbuf(); /* here */ + put_8bit(w); /* or here */ +} + +#define OPTIMIZED_PUT_32BIT (CONFIG_GZIP_FAST > 0 && BB_UNALIGNED_MEMACCESS_OK && BB_LITTLE_ENDIAN) +static void put_32bit(ulg n) +{ + if (OPTIMIZED_PUT_32BIT) { + unsigned outcnt = G1.outcnt; + if (outcnt < OUTBUFSIZ-4) { + /* Common case */ + ulg *dst32 = (void*) &G1.outbuf[outcnt]; + *dst32 = n; /* unaligned LSB 32-bit store */ + //bb_error_msg("%p", dst32); // store alignment debugging + G1.outcnt = outcnt + 4; + return; + } + } + put_16bit(n); + put_16bit(n >> 16); +} +static ALWAYS_INLINE void flush_outbuf_if_32bit_optimized(void) +{ + /* If put_32bit() performs 32bit stores && it is used in send_bits() */ + if (OPTIMIZED_PUT_32BIT && BUF_SIZE > 16) + flush_outbuf(); +} + +/* =========================================================================== + * Run a set of bytes through the crc shift register. If s is a NULL + * pointer, then initialize the crc shift register contents instead. + * Return the current crc in either case. + */ +static void updcrc(uch *s, unsigned n) +{ + G1.crc = crc32_block_endian0(G1.crc, s, n, global_crc32_table /*G1.crc_32_tab*/); +} + +/* =========================================================================== + * Read a new buffer from the current input file, perform end-of-line + * translation, and update the crc and input file size. + * IN assertion: size >= 2 (for end-of-line translation) + */ +static unsigned file_read(void *buf, unsigned size) +{ + unsigned len; + + Assert(G1.insize == 0, "l_buf not empty"); + + len = safe_read(ifd, buf, size); + if (len == (unsigned)(-1) || len == 0) + return len; + + updcrc(buf, len); + G1.isize += len; + return len; +} + +/* =========================================================================== + * Send a value on a given number of bits. + * IN assertion: length <= 16 and value fits in length bits. + */ +static void send_bits(unsigned value, unsigned length) +{ + unsigned new_buf; + +#ifdef DEBUG + Tracev((stderr, " l %2d v %4x ", length, value)); + Assert(length > 0 && length <= 15, "invalid length"); + DEBUG_bits_sent(+= length); +#endif + BUILD_BUG_ON(BUF_SIZE != 32 && BUF_SIZE != 16); + + new_buf = G1.bi_buf | (value << G1.bi_valid); + /* NB: the above may sometimes do "<< 32" shift (undefined) + * if check below is changed to "length > BUF_SIZE" instead of >= */ + length += G1.bi_valid; + + /* If bi_buf is full */ + if (length >= BUF_SIZE) { + /* ...use (valid) bits from bi_buf and + * (BUF_SIZE - bi_valid) bits from value, + * leaving (width - (BUF_SIZE-bi_valid)) unused bits in value. + */ + value >>= (BUF_SIZE - G1.bi_valid); + if (BUF_SIZE == 32) { + put_32bit(new_buf); + } else { /* 16 */ + put_16bit(new_buf); + } + new_buf = value; + length -= BUF_SIZE; + } + G1.bi_buf = new_buf; + G1.bi_valid = length; +} + +/* =========================================================================== + * Reverse the first len bits of a code, using straightforward code (a faster + * method would use a table) + * IN assertion: 1 <= len <= 15 + */ +static unsigned bi_reverse(unsigned code, int len) +{ + unsigned res = 0; + + while (1) { + res |= code & 1; + if (--len <= 0) return res; + code >>= 1; + res <<= 1; + } +} + +/* =========================================================================== + * Write out any remaining bits in an incomplete byte. + */ +static void bi_windup(void) +{ + unsigned bits = G1.bi_buf; + int cnt = G1.bi_valid; + + while (cnt > 0) { + put_8bit(bits); + bits >>= 8; + cnt -= 8; + } + G1.bi_buf = 0; + G1.bi_valid = 0; + DEBUG_bits_sent(= (G1.bits_sent + 7) & ~7); +} + +/* =========================================================================== + * Copy a stored block to the zip file, storing first the length and its + * one's complement if requested. + */ +static void copy_block(const char *buf, unsigned len, int header) +{ + bi_windup(); /* align on byte boundary */ + + if (header) { + unsigned v = ((uint16_t)len) | ((~len) << 16); + put_32bit(v); + DEBUG_bits_sent(+= 2 * 16); + } + DEBUG_bits_sent(+= (ulg) len << 3); + while (len--) { + put_8bit(*buf++); + } + /* The above can 32-bit misalign outbuf */ + if (G1.outcnt & 3) /* syscalls are expensive, is it really misaligned? */ + flush_outbuf_if_32bit_optimized(); +} + +/* =========================================================================== + * Fill the window when the lookahead becomes insufficient. + * Updates strstart and lookahead, and sets eofile if end of input file. + * IN assertion: lookahead < MIN_LOOKAHEAD && strstart + lookahead > 0 + * OUT assertions: at least one byte has been read, or eofile is set; + * file reads are performed for at least two bytes (required for the + * translate_eol option). + */ +static void fill_window(void) +{ + unsigned n, m; + unsigned more = WINDOW_SIZE - G1.lookahead - G1.strstart; + /* Amount of free space at the end of the window. */ + + /* If the window is almost full and there is insufficient lookahead, + * move the upper half to the lower one to make room in the upper half. + */ + if (more == (unsigned) -1) { + /* Very unlikely, but possible on 16 bit machine if strstart == 0 + * and lookahead == 1 (input done one byte at time) + */ + more--; + } else if (G1.strstart >= WSIZE + MAX_DIST) { + /* By the IN assertion, the window is not empty so we can't confuse + * more == 0 with more == 64K on a 16 bit machine. + */ + Assert(WINDOW_SIZE == 2 * WSIZE, "no sliding with BIG_MEM"); + + memcpy(G1.window, G1.window + WSIZE, WSIZE); + G1.match_start -= WSIZE; + G1.strstart -= WSIZE; /* we now have strstart >= MAX_DIST: */ + + G1.block_start -= WSIZE; + + for (n = 0; n < HASH_SIZE; n++) { + m = head[n]; + head[n] = (Pos) (m >= WSIZE ? m - WSIZE : 0); + } + for (n = 0; n < WSIZE; n++) { + m = G1.prev[n]; + G1.prev[n] = (Pos) (m >= WSIZE ? m - WSIZE : 0); + /* If n is not on any hash chain, prev[n] is garbage but + * its value will never be used. + */ + } + more += WSIZE; + } + /* At this point, more >= 2 */ + if (!G1.eofile) { + n = file_read(G1.window + G1.strstart + G1.lookahead, more); + if (n == 0 || n == (unsigned) -1) { + G1.eofile = 1; + } else { + G1.lookahead += n; + } + } +} +/* Both users fill window with the same loop: */ +static void fill_window_if_needed(void) +{ + while (G1.lookahead < MIN_LOOKAHEAD && !G1.eofile) + fill_window(); +} + +/* =========================================================================== + * Set match_start to the longest match starting at the given string and + * return its length. Matches shorter or equal to prev_length are discarded, + * in which case the result is equal to prev_length and match_start is + * garbage. + * IN assertions: cur_match is the head of the hash chain for the current + * string (strstart) and its distance is <= MAX_DIST, and prev_length >= 1 + */ + +/* For MSDOS, OS/2 and 386 Unix, an optimized version is in match.asm or + * match.s. The code is functionally equivalent, so you can use the C version + * if desired. + */ +static int longest_match(IPos cur_match) +{ + unsigned chain_length = max_chain_length; /* max hash chain length */ + uch *scan = G1.window + G1.strstart; /* current string */ + uch *match; /* matched string */ + int len; /* length of current match */ + int best_len = G1.prev_length; /* best match length so far */ + IPos limit = G1.strstart > (IPos) MAX_DIST ? G1.strstart - (IPos) MAX_DIST : 0; + /* Stop when cur_match becomes <= limit. To simplify the code, + * we prevent matches with the string of window index 0. + */ + +/* The code is optimized for HASH_BITS >= 8 and MAX_MATCH-2 multiple of 16. + * It is easy to get rid of this optimization if necessary. + */ +#if HASH_BITS < 8 || MAX_MATCH != 258 +# error Code too clever +#endif + uch *strend = G1.window + G1.strstart + MAX_MATCH; + uch scan_end1 = scan[best_len - 1]; + uch scan_end = scan[best_len]; + + /* Do not waste too much time if we already have a good match: */ + if (G1.prev_length >= good_match) { + chain_length >>= 2; + } + Assert(G1.strstart <= WINDOW_SIZE - MIN_LOOKAHEAD, "insufficient lookahead"); + + do { + Assert(cur_match < G1.strstart, "no future"); + match = G1.window + cur_match; + + /* Skip to next match if the match length cannot increase + * or if the match length is less than 2: + */ + if (match[best_len] != scan_end + || match[best_len - 1] != scan_end1 + || *match != *scan || *++match != scan[1] + ) { + continue; + } + + /* The check at best_len-1 can be removed because it will be made + * again later. (This heuristic is not always a win.) + * It is not necessary to compare scan[2] and match[2] since they + * are always equal when the other bytes match, given that + * the hash keys are equal and that HASH_BITS >= 8. + */ + scan += 2, match++; + + /* We check for insufficient lookahead only every 8th comparison; + * the 256th check will be made at strstart+258. + */ + do { + } while (*++scan == *++match && *++scan == *++match && + *++scan == *++match && *++scan == *++match && + *++scan == *++match && *++scan == *++match && + *++scan == *++match && *++scan == *++match && scan < strend); + + len = MAX_MATCH - (int) (strend - scan); + scan = strend - MAX_MATCH; + + if (len > best_len) { + G1.match_start = cur_match; + best_len = len; + if (len >= nice_match) + break; + scan_end1 = scan[best_len - 1]; + scan_end = scan[best_len]; + } + } while ((cur_match = G1.prev[cur_match & WMASK]) > limit + && --chain_length != 0); + + return best_len; +} + +#ifdef DEBUG +/* =========================================================================== + * Check that the match at match_start is indeed a match. + */ +static void check_match(IPos start, IPos match, int length) +{ + /* check that the match is indeed a match */ + if (memcmp(G1.window + match, G1.window + start, length) != 0) { + bb_error_msg(" start %d, match %d, length %d", start, match, length); + bb_simple_error_msg("invalid match"); + } + if (verbose > 1) { + bb_error_msg("\\[%d,%d]", start - match, length); + do { + bb_putchar_stderr(G1.window[start++]); + } while (--length != 0); + } +} +#else +# define check_match(start, match, length) ((void)0) +#endif + + +/* trees.c -- output deflated data using Huffman coding + * Copyright (C) 1992-1993 Jean-loup Gailly + * This is free software; you can redistribute it and/or modify it under the + * terms of the GNU General Public License, see the file COPYING. + */ + +/* PURPOSE + * Encode various sets of source values using variable-length + * binary code trees. + * + * DISCUSSION + * The PKZIP "deflation" process uses several Huffman trees. The more + * common source values are represented by shorter bit sequences. + * + * Each code tree is stored in the ZIP file in a compressed form + * which is itself a Huffman encoding of the lengths of + * all the code strings (in ascending order by source values). + * The actual code strings are reconstructed from the lengths in + * the UNZIP process, as described in the "application note" + * (APPNOTE.TXT) distributed as part of PKWARE's PKZIP program. + * + * REFERENCES + * Lynch, Thomas J. + * Data Compression: Techniques and Applications, pp. 53-55. + * Lifetime Learning Publications, 1985. ISBN 0-534-03418-7. + * + * Storer, James A. + * Data Compression: Methods and Theory, pp. 49-50. + * Computer Science Press, 1988. ISBN 0-7167-8156-5. + * + * Sedgewick, R. + * Algorithms, p290. + * Addison-Wesley, 1983. ISBN 0-201-06672-6. + * + * INTERFACE + * void ct_init() + * Allocate the match buffer, initialize the various tables [and save + * the location of the internal file attribute (ascii/binary) and + * method (DEFLATE/STORE) -- deleted in bbox] + * + * void ct_tally(int dist, int lc); + * Save the match info and tally the frequency counts. + * + * ulg flush_block(char *buf, ulg stored_len, int eof) + * Determine the best encoding for the current block: dynamic trees, + * static trees or store, and output the encoded block to the zip + * file. Returns the total compressed length for the file so far. + */ + +#define MAX_BITS 15 +/* All codes must not exceed MAX_BITS bits */ + +#define MAX_BL_BITS 7 +/* Bit length codes must not exceed MAX_BL_BITS bits */ + +#define LENGTH_CODES 29 +/* number of length codes, not counting the special END_BLOCK code */ + +#define LITERALS 256 +/* number of literal bytes 0..255 */ + +#define END_BLOCK 256 +/* end of block literal code */ + +#define L_CODES (LITERALS+1+LENGTH_CODES) +/* number of Literal or Length codes, including the END_BLOCK code */ + +#define D_CODES 30 +/* number of distance codes */ + +#define BL_CODES 19 +/* number of codes used to transfer the bit lengths */ + +/* extra bits for each length code */ +static const uint8_t extra_lbits[LENGTH_CODES] ALIGN1 = { + 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, + 4, 4, 5, 5, 5, 5, 0 +}; + +/* extra bits for each distance code */ +static const uint8_t extra_dbits[D_CODES] ALIGN1 = { + 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, + 10, 10, 11, 11, 12, 12, 13, 13 +}; + +/* extra bits for each bit length code */ +static const uint8_t extra_blbits[BL_CODES] ALIGN1 = { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 2, 3, 7 }; + +/* number of codes at each bit length for an optimal tree */ +static const uint8_t bl_order[BL_CODES] ALIGN1 = { + 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 }; + +#define STORED_BLOCK 0 +#define STATIC_TREES 1 +#define DYN_TREES 2 +/* The three kinds of block type */ + +#ifndef LIT_BUFSIZE +# ifdef SMALL_MEM +# define LIT_BUFSIZE 0x2000 +# else +# ifdef MEDIUM_MEM +# define LIT_BUFSIZE 0x4000 +# else +# define LIT_BUFSIZE 0x8000 +# endif +# endif +#endif +#ifndef DIST_BUFSIZE +# define DIST_BUFSIZE LIT_BUFSIZE +#endif +/* Sizes of match buffers for literals/lengths and distances. There are + * 4 reasons for limiting LIT_BUFSIZE to 64K: + * - frequencies can be kept in 16 bit counters + * - if compression is not successful for the first block, all input data is + * still in the window so we can still emit a stored block even when input + * comes from standard input. (This can also be done for all blocks if + * LIT_BUFSIZE is not greater than 32K.) + * - if compression is not successful for a file smaller than 64K, we can + * even emit a stored file instead of a stored block (saving 5 bytes). + * - creating new Huffman trees less frequently may not provide fast + * adaptation to changes in the input data statistics. (Take for + * example a binary file with poorly compressible code followed by + * a highly compressible string table.) Smaller buffer sizes give + * fast adaptation but have of course the overhead of transmitting trees + * more frequently. + * - I can't count above 4 + * The current code is general and allows DIST_BUFSIZE < LIT_BUFSIZE (to save + * memory at the expense of compression). Some optimizations would be possible + * if we rely on DIST_BUFSIZE == LIT_BUFSIZE. + */ +#define REP_3_6 16 +/* repeat previous bit length 3-6 times (2 bits of repeat count) */ +#define REPZ_3_10 17 +/* repeat a zero length 3-10 times (3 bits of repeat count) */ +#define REPZ_11_138 18 +/* repeat a zero length 11-138 times (7 bits of repeat count) */ + +/* =========================================================================== +*/ +/* Data structure describing a single value and its code string. */ +typedef struct ct_data { + union { + ush freq; /* frequency count */ + ush code; /* bit string */ + } fc; + union { + ush dad; /* father node in Huffman tree */ + ush len; /* length of bit string */ + } dl; +} ct_data; + +#define Freq fc.freq +#define Code fc.code +#define Dad dl.dad +#define Len dl.len + +#define HEAP_SIZE (2*L_CODES + 1) +/* maximum heap size */ + +typedef struct tree_desc { + ct_data *dyn_tree; /* the dynamic tree */ + ct_data *static_tree; /* corresponding static tree or NULL */ + const uint8_t *extra_bits; /* extra bits for each code or NULL */ + int extra_base; /* base index for extra_bits */ + int elems; /* max number of elements in the tree */ + int max_length; /* max bit length for the codes */ + int max_code; /* largest code with non zero frequency */ +} tree_desc; + +struct globals2 { + + ush heap[HEAP_SIZE]; /* heap used to build the Huffman trees */ + int heap_len; /* number of elements in the heap */ + int heap_max; /* element of largest frequency */ + +/* The sons of heap[n] are heap[2*n] and heap[2*n+1]. heap[0] is not used. + * The same heap array is used to build all trees. + */ + + ct_data dyn_ltree[HEAP_SIZE]; /* literal and length tree */ + ct_data dyn_dtree[2 * D_CODES + 1]; /* distance tree */ + + ct_data static_ltree[L_CODES + 2]; + +/* The static literal tree. Since the bit lengths are imposed, there is no + * need for the L_CODES extra codes used during heap construction. However + * The codes 286 and 287 are needed to build a canonical tree (see ct_init + * below). + */ + + ct_data static_dtree[D_CODES]; + +/* The static distance tree. (Actually a trivial tree since all codes use + * 5 bits.) + */ + + ct_data bl_tree[2 * BL_CODES + 1]; + +/* Huffman tree for the bit lengths */ + + tree_desc l_desc; + tree_desc d_desc; + tree_desc bl_desc; + + /* was "ush", but "unsigned" results in smaller code */ + unsigned bl_count[MAX_BITS + 1]; + +/* The lengths of the bit length codes are sent in order of decreasing + * probability, to avoid transmitting the lengths for unused bit length codes. + */ + + uch depth[2 * L_CODES + 1]; + +/* Depth of each subtree used as tie breaker for trees of equal frequency */ + + uch length_code[MAX_MATCH - MIN_MATCH + 1]; + +/* length code for each normalized match length (0 == MIN_MATCH) */ + + uch dist_code[512]; + +/* distance codes. The first 256 values correspond to the distances + * 3 .. 258, the last 256 values correspond to the top 8 bits of + * the 15 bit distances. + */ + + int base_length[LENGTH_CODES]; + +/* First normalized length for each code (0 = MIN_MATCH) */ + + int base_dist[D_CODES]; + +/* First normalized distance for each code (0 = distance of 1) */ + + uch flag_buf[LIT_BUFSIZE / 8]; + +/* flag_buf is a bit array distinguishing literals from lengths in + * l_buf, thus indicating the presence or absence of a distance. + */ + + unsigned last_lit; /* running index in l_buf */ + unsigned last_dist; /* running index in d_buf */ + unsigned last_flags; /* running index in flag_buf */ + uch flags; /* current flags not yet saved in flag_buf */ + uch flag_bit; /* current bit used in flags */ + +/* bits are filled in flags starting at bit 0 (least significant). + * Note: these flags are overkill in the current code since we don't + * take advantage of DIST_BUFSIZE == LIT_BUFSIZE. + */ + + ulg opt_len; /* bit length of current block with optimal trees */ + ulg static_len; /* bit length of current block with static trees */ + +// ulg compressed_len; /* total bit length of compressed file */ +}; + +#define G2ptr ((struct globals2*)(ptr_to_globals)) +#define G2 (*G2ptr) + +/* =========================================================================== + */ +#ifndef DEBUG +/* Send a code of the given tree. c and tree must not have side effects */ +# define SEND_CODE(c, tree) send_bits(tree[c].Code, tree[c].Len) +#else +# define SEND_CODE(c, tree) \ +{ \ + if (verbose > 1) bb_error_msg("\ncd %3d ", (c)); \ + send_bits(tree[c].Code, tree[c].Len); \ +} +#endif + +#define D_CODE(dist) \ + ((dist) < 256 ? G2.dist_code[dist] : G2.dist_code[256 + ((dist)>>7)]) +/* Mapping from a distance to a distance code. dist is the distance - 1 and + * must not have side effects. dist_code[256] and dist_code[257] are never + * used. + * The arguments must not have side effects. + */ + +/* =========================================================================== + * Initialize a new block. + */ +static void init_block(void) +{ + int n; /* iterates over tree elements */ + + /* Initialize the trees. */ + for (n = 0; n < L_CODES; n++) + G2.dyn_ltree[n].Freq = 0; + for (n = 0; n < D_CODES; n++) + G2.dyn_dtree[n].Freq = 0; + for (n = 0; n < BL_CODES; n++) + G2.bl_tree[n].Freq = 0; + + G2.dyn_ltree[END_BLOCK].Freq = 1; + G2.opt_len = G2.static_len = 0; + G2.last_lit = G2.last_dist = G2.last_flags = 0; + G2.flags = 0; + G2.flag_bit = 1; +} + +/* =========================================================================== + * Restore the heap property by moving down the tree starting at node k, + * exchanging a node with the smallest of its two sons if necessary, stopping + * when the heap property is re-established (each father smaller than its + * two sons). + */ + +/* Compares to subtrees, using the tree depth as tie breaker when + * the subtrees have equal frequency. This minimizes the worst case length. */ +#define SMALLER(tree, n, m) \ + (tree[n].Freq < tree[m].Freq \ + || (tree[n].Freq == tree[m].Freq && G2.depth[n] <= G2.depth[m])) + +static void pqdownheap(const ct_data *tree, int k) +{ + int v = G2.heap[k]; + int j = k << 1; /* left son of k */ + + while (j <= G2.heap_len) { + /* Set j to the smallest of the two sons: */ + if (j < G2.heap_len && SMALLER(tree, G2.heap[j + 1], G2.heap[j])) + j++; + + /* Exit if v is smaller than both sons */ + if (SMALLER(tree, v, G2.heap[j])) + break; + + /* Exchange v with the smallest son */ + G2.heap[k] = G2.heap[j]; + k = j; + + /* And continue down the tree, setting j to the left son of k */ + j <<= 1; + } + G2.heap[k] = v; +} + +/* =========================================================================== + * Compute the optimal bit lengths for a tree and update the total bit length + * for the current block. + * IN assertion: the fields freq and dad are set, heap[heap_max] and + * above are the tree nodes sorted by increasing frequency. + * OUT assertions: the field len is set to the optimal bit length, the + * array bl_count contains the frequencies for each bit length. + * The length opt_len is updated; static_len is also updated if stree is + * not null. + */ +static void gen_bitlen(const tree_desc *desc) +{ +#define tree desc->dyn_tree + int h; /* heap index */ + int n, m; /* iterate over the tree elements */ + int bits; /* bit length */ + int overflow; /* number of elements with bit length too large */ + + for (bits = 0; bits < ARRAY_SIZE(G2.bl_count); bits++) + G2.bl_count[bits] = 0; + + /* In a first pass, compute the optimal bit lengths (which may + * overflow in the case of the bit length tree). + */ + tree[G2.heap[G2.heap_max]].Len = 0; /* root of the heap */ + + overflow = 0; + for (h = G2.heap_max + 1; h < HEAP_SIZE; h++) { + ulg f; /* frequency */ + int xbits; /* extra bits */ + + n = G2.heap[h]; + bits = tree[tree[n].Dad].Len + 1; + if (bits > desc->max_length) { + bits = desc->max_length; + overflow++; + } + tree[n].Len = (ush) bits; + /* We overwrite tree[n].Dad which is no longer needed */ + + if (n > desc->max_code) + continue; /* not a leaf node */ + + G2.bl_count[bits]++; + xbits = 0; + if (n >= desc->extra_base) + xbits = desc->extra_bits[n - desc->extra_base]; + f = tree[n].Freq; + G2.opt_len += f * (bits + xbits); + + if (desc->static_tree) + G2.static_len += f * (desc->static_tree[n].Len + xbits); + } + if (overflow == 0) + return; + + Trace((stderr, "\nbit length overflow\n")); + /* This happens for example on obj2 and pic of the Calgary corpus */ + + /* Find the first bit length which could increase: */ + do { + bits = desc->max_length - 1; + while (G2.bl_count[bits] == 0) + bits--; + G2.bl_count[bits]--; /* move one leaf down the tree */ + G2.bl_count[bits + 1] += 2; /* move one overflow item as its brother */ + G2.bl_count[desc->max_length]--; + /* The brother of the overflow item also moves one step up, + * but this does not affect bl_count[desc->max_length] + */ + overflow -= 2; + } while (overflow > 0); + + /* Now recompute all bit lengths, scanning in increasing frequency. + * h is still equal to HEAP_SIZE. (It is simpler to reconstruct all + * lengths instead of fixing only the wrong ones. This idea is taken + * from 'ar' written by Haruhiko Okumura.) + */ + for (bits = desc->max_length; bits != 0; bits--) { + n = G2.bl_count[bits]; + while (n != 0) { + m = G2.heap[--h]; + if (m > desc->max_code) + continue; + if (tree[m].Len != (unsigned) bits) { + Trace((stderr, "code %d bits %d->%d\n", m, tree[m].Len, bits)); + G2.opt_len += ((int32_t) bits - tree[m].Len) * tree[m].Freq; + tree[m].Len = bits; + } + n--; + } + } +#undef tree +} + +/* =========================================================================== + * Generate the codes for a given tree and bit counts (which need not be + * optimal). + * IN assertion: the array bl_count contains the bit length statistics for + * the given tree and the field len is set for all tree elements. + * OUT assertion: the field code is set for all tree elements of non + * zero code length. + */ +static void gen_codes(ct_data *tree, int max_code) +{ + /* next_code[] and code used to be "ush", but "unsigned" results in smaller code */ + unsigned next_code[MAX_BITS + 1]; /* next code value for each bit length */ + unsigned code = 0; /* running code value */ + int bits; /* bit index */ + int n; /* code index */ + + /* The distribution counts are first used to generate the code values + * without bit reversal. + */ + for (bits = 1; bits <= MAX_BITS; bits++) { + next_code[bits] = code = (code + G2.bl_count[bits - 1]) << 1; + } + /* Check that the bit counts in bl_count are consistent. The last code + * must be all ones. + */ + Assert(code + G2.bl_count[MAX_BITS] - 1 == (1 << MAX_BITS) - 1, + "inconsistent bit counts"); + Tracev((stderr, "\ngen_codes: max_code %d ", max_code)); + + for (n = 0; n <= max_code; n++) { + int len = tree[n].Len; + + if (len == 0) + continue; + /* Now reverse the bits */ + tree[n].Code = bi_reverse(next_code[len]++, len); + + Tracec(tree != G2.static_ltree, + (stderr, "\nn %3d %c l %2d c %4x (%x) ", n, + (n > ' ' ? n : ' '), len, tree[n].Code, + next_code[len] - 1)); + } +} + +/* =========================================================================== + * Construct one Huffman tree and assigns the code bit strings and lengths. + * Update the total bit length for the current block. + * IN assertion: the field freq is set for all tree elements. + * OUT assertions: the fields len and code are set to the optimal bit length + * and corresponding code. The length opt_len is updated; static_len is + * also updated if stree is not null. The field max_code is set. + */ + +/* Remove the smallest element from the heap and recreate the heap with + * one less element. Updates heap and heap_len. */ + +#define SMALLEST 1 +/* Index within the heap array of least frequent node in the Huffman tree */ + +#define PQREMOVE(tree, top) \ +do { \ + top = G2.heap[SMALLEST]; \ + G2.heap[SMALLEST] = G2.heap[G2.heap_len--]; \ + pqdownheap(tree, SMALLEST); \ +} while (0) + +static void build_tree(tree_desc *desc) +{ + ct_data *tree = desc->dyn_tree; + ct_data *stree = desc->static_tree; + int elems = desc->elems; + int n, m; /* iterate over heap elements */ + int max_code = -1; /* largest code with non zero frequency */ + int node = elems; /* next internal node of the tree */ + + /* Construct the initial heap, with least frequent element in + * heap[SMALLEST]. The sons of heap[n] are heap[2*n] and heap[2*n+1]. + * heap[0] is not used. + */ + G2.heap_len = 0; + G2.heap_max = HEAP_SIZE; + + for (n = 0; n < elems; n++) { + if (tree[n].Freq != 0) { + G2.heap[++G2.heap_len] = max_code = n; + G2.depth[n] = 0; + } else { + tree[n].Len = 0; + } + } + + /* The pkzip format requires that at least one distance code exists, + * and that at least one bit should be sent even if there is only one + * possible code. So to avoid special checks later on we force at least + * two codes of non zero frequency. + */ + while (G2.heap_len < 2) { + int new = G2.heap[++G2.heap_len] = (max_code < 2 ? ++max_code : 0); + + tree[new].Freq = 1; + G2.depth[new] = 0; + G2.opt_len--; + if (stree) + G2.static_len -= stree[new].Len; + /* new is 0 or 1 so it does not have extra bits */ + } + desc->max_code = max_code; + + /* The elements heap[heap_len/2+1 .. heap_len] are leaves of the tree, + * establish sub-heaps of increasing lengths: + */ + for (n = G2.heap_len / 2; n >= 1; n--) + pqdownheap(tree, n); + + /* Construct the Huffman tree by repeatedly combining the least two + * frequent nodes. + */ + do { + PQREMOVE(tree, n); /* n = node of least frequency */ + m = G2.heap[SMALLEST]; /* m = node of next least frequency */ + + G2.heap[--G2.heap_max] = n; /* keep the nodes sorted by frequency */ + G2.heap[--G2.heap_max] = m; + + /* Create a new node father of n and m */ + tree[node].Freq = tree[n].Freq + tree[m].Freq; + G2.depth[node] = MAX(G2.depth[n], G2.depth[m]) + 1; + tree[n].Dad = tree[m].Dad = (ush) node; +#ifdef DUMP_BL_TREE + if (tree == G2.bl_tree) { + bb_error_msg("\nnode %d(%d), sons %d(%d) %d(%d)", + node, tree[node].Freq, n, tree[n].Freq, m, tree[m].Freq); + } +#endif + /* and insert the new node in the heap */ + G2.heap[SMALLEST] = node++; + pqdownheap(tree, SMALLEST); + } while (G2.heap_len >= 2); + + G2.heap[--G2.heap_max] = G2.heap[SMALLEST]; + + /* At this point, the fields freq and dad are set. We can now + * generate the bit lengths. + */ + gen_bitlen(desc); + + /* The field len is now set, we can generate the bit codes */ + gen_codes(tree, max_code); +} + +/* =========================================================================== + * Scan a literal or distance tree to determine the frequencies of the codes + * in the bit length tree. Updates opt_len to take into account the repeat + * counts. (The contribution of the bit length codes will be added later + * during the construction of bl_tree.) + */ +static void scan_tree(ct_data *tree, int max_code) +{ + int n; /* iterates over all tree elements */ + int prevlen = -1; /* last emitted length */ + int curlen; /* length of current code */ + int nextlen = tree[0].Len; /* length of next code */ + int count = 0; /* repeat count of the current code */ + int max_count = 7; /* max repeat count */ + int min_count = 4; /* min repeat count */ + + if (nextlen == 0) { + max_count = 138; + min_count = 3; + } + tree[max_code + 1].Len = 0xffff; /* guard */ + + for (n = 0; n <= max_code; n++) { + curlen = nextlen; + nextlen = tree[n + 1].Len; + if (++count < max_count && curlen == nextlen) + continue; + + if (count < min_count) { + G2.bl_tree[curlen].Freq += count; + } else if (curlen != 0) { + if (curlen != prevlen) + G2.bl_tree[curlen].Freq++; + G2.bl_tree[REP_3_6].Freq++; + } else if (count <= 10) { + G2.bl_tree[REPZ_3_10].Freq++; + } else { + G2.bl_tree[REPZ_11_138].Freq++; + } + count = 0; + prevlen = curlen; + + max_count = 7; + min_count = 4; + if (nextlen == 0) { + max_count = 138; + min_count = 3; + } else if (curlen == nextlen) { + max_count = 6; + min_count = 3; + } + } +} + +/* =========================================================================== + * Send a literal or distance tree in compressed form, using the codes in + * bl_tree. + */ +static void send_tree(const ct_data *tree, int max_code) +{ + int n; /* iterates over all tree elements */ + int prevlen = -1; /* last emitted length */ + int curlen; /* length of current code */ + int nextlen = tree[0].Len; /* length of next code */ + int count = 0; /* repeat count of the current code */ + int max_count = 7; /* max repeat count */ + int min_count = 4; /* min repeat count */ + +/* tree[max_code+1].Len = -1; *//* guard already set */ + if (nextlen == 0) + max_count = 138, min_count = 3; + + for (n = 0; n <= max_code; n++) { + curlen = nextlen; + nextlen = tree[n + 1].Len; + if (++count < max_count && curlen == nextlen) { + continue; + } else if (count < min_count) { + do { + SEND_CODE(curlen, G2.bl_tree); + } while (--count); + } else if (curlen != 0) { + if (curlen != prevlen) { + SEND_CODE(curlen, G2.bl_tree); + count--; + } + Assert(count >= 3 && count <= 6, " 3_6?"); + SEND_CODE(REP_3_6, G2.bl_tree); + send_bits(count - 3, 2); + } else if (count <= 10) { + SEND_CODE(REPZ_3_10, G2.bl_tree); + send_bits(count - 3, 3); + } else { + SEND_CODE(REPZ_11_138, G2.bl_tree); + send_bits(count - 11, 7); + } + count = 0; + prevlen = curlen; + if (nextlen == 0) { + max_count = 138; + min_count = 3; + } else if (curlen == nextlen) { + max_count = 6; + min_count = 3; + } else { + max_count = 7; + min_count = 4; + } + } +} + +/* =========================================================================== + * Construct the Huffman tree for the bit lengths and return the index in + * bl_order of the last bit length code to send. + */ +static int build_bl_tree(void) +{ + int max_blindex; /* index of last bit length code of non zero freq */ + + /* Determine the bit length frequencies for literal and distance trees */ + scan_tree(G2.dyn_ltree, G2.l_desc.max_code); + scan_tree(G2.dyn_dtree, G2.d_desc.max_code); + + /* Build the bit length tree: */ + build_tree(&G2.bl_desc); + /* opt_len now includes the length of the tree representations, except + * the lengths of the bit lengths codes and the 5+5+4 bits for the counts. + */ + + /* Determine the number of bit length codes to send. The pkzip format + * requires that at least 4 bit length codes be sent. (appnote.txt says + * 3 but the actual value used is 4.) + */ + for (max_blindex = BL_CODES - 1; max_blindex >= 3; max_blindex--) { + if (G2.bl_tree[bl_order[max_blindex]].Len != 0) + break; + } + /* Update opt_len to include the bit length tree and counts */ + G2.opt_len += 3 * (max_blindex + 1) + 5 + 5 + 4; + Tracev((stderr, "\ndyn trees: dyn %ld, stat %ld", (long)G2.opt_len, (long)G2.static_len)); + + return max_blindex; +} + +/* =========================================================================== + * Send the header for a block using dynamic Huffman trees: the counts, the + * lengths of the bit length codes, the literal tree and the distance tree. + * IN assertion: lcodes >= 257, dcodes >= 1, blcodes >= 4. + */ +static void send_all_trees(int lcodes, int dcodes, int blcodes) +{ + int rank; /* index in bl_order */ + + Assert(lcodes >= 257 && dcodes >= 1 && blcodes >= 4, "not enough codes"); + Assert(lcodes <= L_CODES && dcodes <= D_CODES + && blcodes <= BL_CODES, "too many codes"); + Tracev((stderr, "\nbl counts: ")); + send_bits(lcodes - 257, 5); /* not +255 as stated in appnote.txt */ + send_bits(dcodes - 1, 5); + send_bits(blcodes - 4, 4); /* not -3 as stated in appnote.txt */ + for (rank = 0; rank < blcodes; rank++) { + Tracev((stderr, "\nbl code %2d ", bl_order[rank])); + send_bits(G2.bl_tree[bl_order[rank]].Len, 3); + } + Tracev((stderr, "\nbl tree: sent %ld", (long)G1.bits_sent)); + + send_tree((ct_data *) G2.dyn_ltree, lcodes - 1); /* send the literal tree */ + Tracev((stderr, "\nlit tree: sent %ld", (long)G1.bits_sent)); + + send_tree((ct_data *) G2.dyn_dtree, dcodes - 1); /* send the distance tree */ + Tracev((stderr, "\ndist tree: sent %ld", (long)G1.bits_sent)); +} + +/* =========================================================================== + * Save the match info and tally the frequency counts. Return true if + * the current block must be flushed. + */ +static int ct_tally(int dist, int lc) +{ + G1.l_buf[G2.last_lit++] = lc; + if (dist == 0) { + /* lc is the unmatched char */ + G2.dyn_ltree[lc].Freq++; + } else { + /* Here, lc is the match length - MIN_MATCH */ + dist--; /* dist = match distance - 1 */ + Assert((ush) dist < (ush) MAX_DIST + && (ush) lc <= (ush) (MAX_MATCH - MIN_MATCH) + && (ush) D_CODE(dist) < (ush) D_CODES, "ct_tally: bad match" + ); + + G2.dyn_ltree[G2.length_code[lc] + LITERALS + 1].Freq++; + G2.dyn_dtree[D_CODE(dist)].Freq++; + + G1.d_buf[G2.last_dist++] = dist; + G2.flags |= G2.flag_bit; + } + G2.flag_bit <<= 1; + + /* Output the flags if they fill a byte: */ + if ((G2.last_lit & 7) == 0) { + G2.flag_buf[G2.last_flags++] = G2.flags; + G2.flags = 0; + G2.flag_bit = 1; + } + /* Try to guess if it is profitable to stop the current block here */ + if ((G2.last_lit & 0xfff) == 0) { + /* Compute an upper bound for the compressed length */ + ulg out_length = G2.last_lit * 8L; + ulg in_length = (ulg) G1.strstart - G1.block_start; + int dcode; + + for (dcode = 0; dcode < D_CODES; dcode++) { + out_length += G2.dyn_dtree[dcode].Freq * (5L + extra_dbits[dcode]); + } + out_length >>= 3; + Trace((stderr, + "\nlast_lit %u, last_dist %u, in %ld, out ~%ld(%ld%%) ", + G2.last_lit, G2.last_dist, + (long)in_length, (long)out_length, + 100L - out_length * 100L / in_length)); + if (G2.last_dist < G2.last_lit / 2 && out_length < in_length / 2) + return 1; + } + return (G2.last_lit == LIT_BUFSIZE - 1 || G2.last_dist == DIST_BUFSIZE); + /* We avoid equality with LIT_BUFSIZE because of wraparound at 64K + * on 16 bit machines and because stored blocks are restricted to + * 64K-1 bytes. + */ +} + +/* =========================================================================== + * Send the block data compressed using the given Huffman trees + */ +static void compress_block(const ct_data *ltree, const ct_data *dtree) +{ + unsigned dist; /* distance of matched string */ + int lc; /* match length or unmatched char (if dist == 0) */ + unsigned lx = 0; /* running index in l_buf */ + unsigned dx = 0; /* running index in d_buf */ + unsigned fx = 0; /* running index in flag_buf */ + uch flag = 0; /* current flags */ + unsigned code; /* the code to send */ + int extra; /* number of extra bits to send */ + + if (G2.last_lit != 0) do { + if ((lx & 7) == 0) + flag = G2.flag_buf[fx++]; + lc = G1.l_buf[lx++]; + if ((flag & 1) == 0) { + SEND_CODE(lc, ltree); /* send a literal byte */ + Tracecv(lc > ' ', (stderr, " '%c' ", lc)); + } else { + /* Here, lc is the match length - MIN_MATCH */ + code = G2.length_code[lc]; + SEND_CODE(code + LITERALS + 1, ltree); /* send the length code */ + extra = extra_lbits[code]; + if (extra != 0) { + lc -= G2.base_length[code]; + send_bits(lc, extra); /* send the extra length bits */ + } + dist = G1.d_buf[dx++]; + /* Here, dist is the match distance - 1 */ + code = D_CODE(dist); + Assert(code < D_CODES, "bad d_code"); + + SEND_CODE(code, dtree); /* send the distance code */ + extra = extra_dbits[code]; + if (extra != 0) { + dist -= G2.base_dist[code]; + send_bits(dist, extra); /* send the extra distance bits */ + } + } /* literal or match pair ? */ + flag >>= 1; + } while (lx < G2.last_lit); + + SEND_CODE(END_BLOCK, ltree); +} + +/* =========================================================================== + * Determine the best encoding for the current block: dynamic trees, static + * trees or store, and output the encoded block to the zip file. This function + * returns the total compressed length for the file so far. + */ +static void flush_block(const char *buf, ulg stored_len, int eof) +{ + ulg opt_lenb, static_lenb; /* opt_len and static_len in bytes */ + int max_blindex; /* index of last bit length code of non zero freq */ + + G2.flag_buf[G2.last_flags] = G2.flags; /* Save the flags for the last 8 items */ + + /* Construct the literal and distance trees */ + build_tree(&G2.l_desc); + Tracev((stderr, "\nlit data: dyn %ld, stat %ld", (long)G2.opt_len, (long)G2.static_len)); + + build_tree(&G2.d_desc); + Tracev((stderr, "\ndist data: dyn %ld, stat %ld", (long)G2.opt_len, (long)G2.static_len)); + /* At this point, opt_len and static_len are the total bit lengths of + * the compressed block data, excluding the tree representations. + */ + + /* Build the bit length tree for the above two trees, and get the index + * in bl_order of the last bit length code to send. + */ + max_blindex = build_bl_tree(); + + /* Determine the best encoding. Compute first the block length in bytes */ + opt_lenb = (G2.opt_len + 3 + 7) >> 3; + static_lenb = (G2.static_len + 3 + 7) >> 3; + + Trace((stderr, + "\nopt %lu(%lu) stat %lu(%lu) stored %lu lit %u dist %u ", + (unsigned long)opt_lenb, (unsigned long)G2.opt_len, + (unsigned long)static_lenb, (unsigned long)G2.static_len, + (unsigned long)stored_len, + G2.last_lit, G2.last_dist)); + + if (static_lenb <= opt_lenb) + opt_lenb = static_lenb; + + /* If compression failed and this is the first and last block, + * and if the zip file can be seeked (to rewrite the local header), + * the whole file is transformed into a stored file: + */ +// seekable() is constant FALSE in busybox, and G2.compressed_len is disabled +// (this was the only user) +// if (stored_len <= opt_lenb && eof && G2.compressed_len == 0L && seekable()) { +// /* Since LIT_BUFSIZE <= 2*WSIZE, the input data must be there: */ +// if (buf == NULL) +// bb_error_msg("block vanished"); +// +// G2.compressed_len = stored_len << 3; +// copy_block(buf, (unsigned) stored_len, 0); /* without header */ +// } else + if (stored_len + 4 <= opt_lenb && buf != NULL) { + /* 4: two words for the lengths */ + /* The test buf != NULL is only necessary if LIT_BUFSIZE > WSIZE. + * Otherwise we can't have processed more than WSIZE input bytes since + * the last block flush, because compression would have been + * successful. If LIT_BUFSIZE <= WSIZE, it is never too late to + * transform a block into a stored block. + */ + send_bits((STORED_BLOCK << 1) + eof, 3); /* send block type */ +// G2.compressed_len = ((G2.compressed_len + 3 + 7) & ~7L) +// + ((stored_len + 4) << 3); + copy_block(buf, (unsigned) stored_len, 1); /* with header */ + } else + if (static_lenb == opt_lenb) { + send_bits((STATIC_TREES << 1) + eof, 3); + compress_block((ct_data *) G2.static_ltree, (ct_data *) G2.static_dtree); +// G2.compressed_len += 3 + G2.static_len; + } else { + send_bits((DYN_TREES << 1) + eof, 3); + send_all_trees(G2.l_desc.max_code + 1, G2.d_desc.max_code + 1, + max_blindex + 1); + compress_block((ct_data *) G2.dyn_ltree, (ct_data *) G2.dyn_dtree); +// G2.compressed_len += 3 + G2.opt_len; + } +// Assert(G2.compressed_len == G1.bits_sent, "bad compressed size"); + init_block(); + + if (eof) { + bi_windup(); +// G2.compressed_len += 7; /* align on byte boundary */ + } +// Tracev((stderr, "\ncomprlen %lu(%lu) ", +// (unsigned long)G2.compressed_len >> 3, +// (unsigned long)G2.compressed_len - 7 * eof)); + + return; /* was "return G2.compressed_len >> 3;" */ +} + +/* =========================================================================== + * Update a hash value with the given input byte + * IN assertion: all calls to UPDATE_HASH are made with consecutive + * input characters, so that a running hash key can be computed from the + * previous key instead of complete recalculation each time. + */ +#define UPDATE_HASH(h, c) (h = (((h)<= 0L \ + ? (char*)&G1.window[(unsigned)G1.block_start] \ + : (char*)NULL, \ + (ulg)G1.strstart - G1.block_start, \ + (eof) \ + ) + +/* Insert string s in the dictionary and set match_head to the previous head + * of the hash chain (the most recent string with same hash key). Return + * the previous length of the hash chain. + * IN assertion: all calls to INSERT_STRING are made with consecutive + * input characters and the first MIN_MATCH bytes of s are valid + * (except for the last MIN_MATCH-1 bytes of the input file). */ +#define INSERT_STRING(s, match_head) \ +do { \ + UPDATE_HASH(G1.ins_h, G1.window[(s) + MIN_MATCH-1]); \ + G1.prev[(s) & WMASK] = match_head = head[G1.ins_h]; \ + head[G1.ins_h] = (s); \ +} while (0) + +static NOINLINE void deflate(void) +{ + IPos hash_head; /* head of hash chain */ + IPos prev_match; /* previous match */ + int flush; /* set if current block must be flushed */ + int match_available = 0; /* set if previous match exists */ + unsigned match_length = MIN_MATCH - 1; /* length of best match */ + + /* Process the input block. */ + while (G1.lookahead != 0) { + /* Insert the string window[strstart .. strstart+2] in the + * dictionary, and set hash_head to the head of the hash chain: + */ + INSERT_STRING(G1.strstart, hash_head); + + /* Find the longest match, discarding those <= prev_length. + */ + G1.prev_length = match_length; + prev_match = G1.match_start; + match_length = MIN_MATCH - 1; + + if (hash_head != 0 && G1.prev_length < max_lazy_match + && G1.strstart - hash_head <= MAX_DIST + ) { + /* To simplify the code, we prevent matches with the string + * of window index 0 (in particular we have to avoid a match + * of the string with itself at the start of the input file). + */ + match_length = longest_match(hash_head); + /* longest_match() sets match_start */ + if (match_length > G1.lookahead) + match_length = G1.lookahead; + + /* Ignore a length 3 match if it is too distant: */ + if (match_length == MIN_MATCH && G1.strstart - G1.match_start > TOO_FAR) { + /* If prev_match is also MIN_MATCH, G1.match_start is garbage + * but we will ignore the current match anyway. + */ + match_length--; + } + } + /* If there was a match at the previous step and the current + * match is not better, output the previous match: + */ + if (G1.prev_length >= MIN_MATCH && match_length <= G1.prev_length) { + check_match(G1.strstart - 1, prev_match, G1.prev_length); + flush = ct_tally(G1.strstart - 1 - prev_match, G1.prev_length - MIN_MATCH); + + /* Insert in hash table all strings up to the end of the match. + * strstart-1 and strstart are already inserted. + */ + G1.lookahead -= G1.prev_length - 1; + G1.prev_length -= 2; + do { + G1.strstart++; + INSERT_STRING(G1.strstart, hash_head); + /* strstart never exceeds WSIZE-MAX_MATCH, so there are + * always MIN_MATCH bytes ahead. If lookahead < MIN_MATCH + * these bytes are garbage, but it does not matter since the + * next lookahead bytes will always be emitted as literals. + */ + } while (--G1.prev_length != 0); + match_available = 0; + match_length = MIN_MATCH - 1; + G1.strstart++; + if (flush) { + FLUSH_BLOCK(0); + G1.block_start = G1.strstart; + } + } else if (match_available) { + /* If there was no match at the previous position, output a + * single literal. If there was a match but the current match + * is longer, truncate the previous match to a single literal. + */ + Tracevv((stderr, "%c", G1.window[G1.strstart - 1])); + if (ct_tally(0, G1.window[G1.strstart - 1])) { + FLUSH_BLOCK(0); + G1.block_start = G1.strstart; + } + G1.strstart++; + G1.lookahead--; + } else { + /* There is no previous match to compare with, wait for + * the next step to decide. + */ + match_available = 1; + G1.strstart++; + G1.lookahead--; + } + Assert(G1.strstart <= G1.isize && G1.lookahead <= G1.isize, "a bit too far"); + + /* Make sure that we always have enough lookahead, except + * at the end of the input file. We need MAX_MATCH bytes + * for the next match, plus MIN_MATCH bytes to insert the + * string following the next match. + */ + fill_window_if_needed(); + } + if (match_available) + ct_tally(0, G1.window[G1.strstart - 1]); + + FLUSH_BLOCK(1); /* eof */ +} + +/* =========================================================================== + * Initialize the bit string routines. + */ +static void bi_init(void) +{ + //G1.bi_buf = 0; // globals are zeroed in pack_gzip() + //G1.bi_valid = 0; // globals are zeroed in pack_gzip() + //DEBUG_bits_sent(= 0L); // globals are zeroed in pack_gzip() +} + +/* =========================================================================== + * Initialize the "longest match" routines for a new file + */ +static void lm_init(void) +{ + unsigned j; + + /* Initialize the hash table. */ + memset(head, 0, HASH_SIZE * sizeof(*head)); + /* prev will be initialized on the fly */ + + /* ??? reduce max_chain_length for binary files */ + + //G1.strstart = 0; // globals are zeroed in pack_gzip() + //G1.block_start = 0L; // globals are zeroed in pack_gzip() + + G1.lookahead = file_read(G1.window, + sizeof(int) <= 2 ? (unsigned) WSIZE : 2 * WSIZE); + + if (G1.lookahead == 0 || G1.lookahead == (unsigned) -1) { + G1.eofile = 1; + G1.lookahead = 0; + return; + } + //G1.eofile = 0; // globals are zeroed in pack_gzip() + + /* Make sure that we always have enough lookahead. This is important + * if input comes from a device such as a tty. + */ + fill_window_if_needed(); + + //G1.ins_h = 0; // globals are zeroed in pack_gzip() + for (j = 0; j < MIN_MATCH - 1; j++) + UPDATE_HASH(G1.ins_h, G1.window[j]); + /* If lookahead < MIN_MATCH, ins_h is garbage, but this is + * not important since only literal bytes will be emitted. + */ +} + +/* =========================================================================== + * Allocate the match buffer, initialize the various tables and save the + * location of the internal file attribute (ascii/binary) and method + * (DEFLATE/STORE). + * One callsite in zip() + */ +static void ct_init(void) +{ + int n; /* iterates over tree elements */ + int length; /* length value */ + int code; /* code value */ + int dist; /* distance index */ + +// //G2.compressed_len = 0L; // globals are zeroed in pack_gzip() + +#ifdef NOT_NEEDED + if (G2.static_dtree[0].Len != 0) + return; /* ct_init already called */ +#endif + + /* Initialize the mapping length (0..255) -> length code (0..28) */ + length = 0; + for (code = 0; code < LENGTH_CODES - 1; code++) { + G2.base_length[code] = length; + for (n = 0; n < (1 << extra_lbits[code]); n++) { + G2.length_code[length++] = code; + } + } + Assert(length == 256, "ct_init: length != 256"); + /* Note that the length 255 (match length 258) can be represented + * in two different ways: code 284 + 5 bits or code 285, so we + * overwrite length_code[255] to use the best encoding: + */ + G2.length_code[length - 1] = code; + + /* Initialize the mapping dist (0..32K) -> dist code (0..29) */ + dist = 0; + for (code = 0; code < 16; code++) { + G2.base_dist[code] = dist; + for (n = 0; n < (1 << extra_dbits[code]); n++) { + G2.dist_code[dist++] = code; + } + } + Assert(dist == 256, "ct_init: dist != 256"); + dist >>= 7; /* from now on, all distances are divided by 128 */ + for (; code < D_CODES; code++) { + G2.base_dist[code] = dist << 7; + for (n = 0; n < (1 << (extra_dbits[code] - 7)); n++) { + G2.dist_code[256 + dist++] = code; + } + } + Assert(dist == 256, "ct_init: 256+dist != 512"); + + /* Construct the codes of the static literal tree */ + //for (n = 0; n <= MAX_BITS; n++) // globals are zeroed in pack_gzip() + // G2.bl_count[n] = 0; + + n = 0; + while (n <= 143) { + G2.static_ltree[n++].Len = 8; + //G2.bl_count[8]++; + } + //G2.bl_count[8] = 143 + 1; + while (n <= 255) { + G2.static_ltree[n++].Len = 9; + //G2.bl_count[9]++; + } + //G2.bl_count[9] = 255 - 143; + while (n <= 279) { + G2.static_ltree[n++].Len = 7; + //G2.bl_count[7]++; + } + //G2.bl_count[7] = 279 - 255; + while (n <= 287) { + G2.static_ltree[n++].Len = 8; + //G2.bl_count[8]++; + } + //G2.bl_count[8] += 287 - 279; + G2.bl_count[7] = 279 - 255; + G2.bl_count[8] = (143 + 1) + (287 - 279); + G2.bl_count[9] = 255 - 143; + /* Codes 286 and 287 do not exist, but we must include them in the + * tree construction to get a canonical Huffman tree (longest code + * all ones) + */ + gen_codes((ct_data *) G2.static_ltree, L_CODES + 1); + + /* The static distance tree is trivial: */ + for (n = 0; n < D_CODES; n++) { + G2.static_dtree[n].Len = 5; + G2.static_dtree[n].Code = bi_reverse(n, 5); + } + + /* Initialize the first block of the first file: */ + init_block(); +} + +/* =========================================================================== + * Deflate in to out. + * IN assertions: the input and output buffers are cleared. + */ +static void zip(void) +{ + unsigned deflate_flags; + + //G1.outcnt = 0; // globals are zeroed in pack_gzip() + + /* Write the header to the gzip file. See algorithm.doc for the format */ + /* magic header for gzip files: 1F 8B */ + /* compression method: 8 (DEFLATED) */ + /* general flags: 0 */ + put_32bit(0x00088b1f); + put_32bit(0); /* Unix timestamp */ + + /* Write deflated file to zip file */ + G1.crc = ~0; + + bi_init(); + ct_init(); + lm_init(); + + deflate_flags = 0x300; /* extra flags. OS id = 3 (Unix) */ +#if ENABLE_FEATURE_GZIP_LEVELS + /* Note that comp_level < 4 do not exist in this version of gzip */ + if (comp_level_minus4 == 9 - 4) { + deflate_flags |= 0x02; /* SLOW flag */ + } +#endif + put_16bit(deflate_flags); + + /* The above 32-bit misaligns outbuf (10 bytes are stored), flush it */ + flush_outbuf_if_32bit_optimized(); + + deflate(); + + /* Write the crc and uncompressed size */ + put_32bit(~G1.crc); + put_32bit(G1.isize); + + flush_outbuf(); +} + +/* ======================================================================== */ +static +IF_DESKTOP(long long) int FAST_FUNC pack_gzip(transformer_state_t *xstate UNUSED_PARAM) +{ + /* Reinit G1.xxx except pointers to allocated buffers, and entire G2 */ + memset(&G1.crc, 0, (sizeof(G1) - offsetof(struct globals, crc)) + sizeof(G2)); + + /* Clear input and output buffers */ + //G1.outcnt = 0; +#ifdef DEBUG + //G1.insize = 0; +#endif + //G1.isize = 0; + + /* Reinit G2.xxx */ + G2.l_desc.dyn_tree = G2.dyn_ltree; + G2.l_desc.static_tree = G2.static_ltree; + G2.l_desc.extra_bits = extra_lbits; + G2.l_desc.extra_base = LITERALS + 1; + G2.l_desc.elems = L_CODES; + G2.l_desc.max_length = MAX_BITS; + //G2.l_desc.max_code = 0; + G2.d_desc.dyn_tree = G2.dyn_dtree; + G2.d_desc.static_tree = G2.static_dtree; + G2.d_desc.extra_bits = extra_dbits; + //G2.d_desc.extra_base = 0; + G2.d_desc.elems = D_CODES; + G2.d_desc.max_length = MAX_BITS; + //G2.d_desc.max_code = 0; + G2.bl_desc.dyn_tree = G2.bl_tree; + //G2.bl_desc.static_tree = NULL; + G2.bl_desc.extra_bits = extra_blbits, + //G2.bl_desc.extra_base = 0; + G2.bl_desc.elems = BL_CODES; + G2.bl_desc.max_length = MAX_BL_BITS; + //G2.bl_desc.max_code = 0; + +#if 0 + /* Saving of timestamp is disabled. Why? + * - it is not Y2038-safe. + * - some people want deterministic results + * (normally they'd use -n, but our -n is a nop). + * - it's bloat. + * Per RFC 1952, gzfile.time=0 is "no timestamp". + * If users will demand this to be reinstated, + * implement -n "don't save timestamp". + */ + struct stat s; + s.st_ctime = 0; + fstat(STDIN_FILENO, &s); + zip(s.st_ctime); +#else + zip(); +#endif + return 0; +} + +#if ENABLE_FEATURE_GZIP_LONG_OPTIONS +static const char gzip_longopts[] ALIGN1 = + "stdout\0" No_argument "c" + "to-stdout\0" No_argument "c" + "force\0" No_argument "f" + "verbose\0" No_argument "v" +#if ENABLE_FEATURE_GZIP_DECOMPRESS + "decompress\0" No_argument "d" + "uncompress\0" No_argument "d" + "test\0" No_argument "t" +#endif + "quiet\0" No_argument "q" + "fast\0" No_argument "1" + "best\0" No_argument "9" + "no-name\0" No_argument "n" + ; +#endif + +/* + * Linux kernel build uses gzip -d -n. We accept and ignore -n. + * Man page says: + * -n --no-name + * gzip: do not save the original file name and time stamp. + * (The original name is always saved if the name had to be truncated.) + * gunzip: do not restore the original file name/time even if present + * (remove only the gzip suffix from the compressed file name). + * This option is the default when decompressing. + * -N --name + * gzip: always save the original file name and time stamp (this is the default) + * gunzip: restore the original file name and time stamp if present. + */ + +int gzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +#if ENABLE_FEATURE_GZIP_DECOMPRESS +int gzip_main(int argc, char **argv) +#else +int gzip_main(int argc UNUSED_PARAM, char **argv) +#endif +{ + unsigned opt; +#if ENABLE_FEATURE_GZIP_LEVELS + static const struct { + uint8_t good; + uint8_t chain_shift; + uint8_t lazy2; + uint8_t nice2; + } gzip_level_config[6] = { + {4, 4, 4/2, 16/2}, /* Level 4 */ + {8, 5, 16/2, 32/2}, /* Level 5 */ + {8, 7, 16/2, 128/2}, /* Level 6 */ + {8, 8, 32/2, 128/2}, /* Level 7 */ + {32, 10, 128/2, 258/2}, /* Level 8 */ + {32, 12, 258/2, 258/2}, /* Level 9 */ + }; +#endif + + SET_PTR_TO_GLOBALS((char *)xzalloc(sizeof(struct globals)+sizeof(struct globals2)) + + sizeof(struct globals)); + + /* Must match bbunzip's constants OPT_STDOUT, OPT_FORCE! */ +#if ENABLE_FEATURE_GZIP_LONG_OPTIONS + opt = getopt32long(argv, BBUNPK_OPTSTR IF_FEATURE_GZIP_DECOMPRESS("dt") "n123456789", gzip_longopts); +#else + opt = getopt32(argv, BBUNPK_OPTSTR IF_FEATURE_GZIP_DECOMPRESS("dt") "n123456789"); +#endif +#if ENABLE_FEATURE_GZIP_DECOMPRESS /* gunzip_main may not be visible... */ + if (opt & (BBUNPK_OPT_DECOMPRESS|BBUNPK_OPT_TEST)) /* -d and/or -t */ + return gunzip_main(argc, argv); +#endif +#if ENABLE_FEATURE_GZIP_LEVELS + opt >>= (BBUNPK_OPTSTRLEN IF_FEATURE_GZIP_DECOMPRESS(+ 2) + 1); /* drop cfkvq[dt]n bits */ + if (opt == 0) + opt = 1 << 5; /* default: 6 */ + opt = ffs(opt >> 4); /* Maps -1..-4 to [0], -5 to [1] ... -9 to [5] */ + + comp_level_minus4 = opt; + + max_chain_length = 1 << gzip_level_config[opt].chain_shift; + good_match = gzip_level_config[opt].good; + max_lazy_match = gzip_level_config[opt].lazy2 * 2; + nice_match = gzip_level_config[opt].nice2 * 2; +#endif + option_mask32 &= BBUNPK_OPTSTRMASK; /* retain only -cfkvq */ + + /* Allocate all global buffers (for DYN_ALLOC option) */ + ALLOC(uch, G1.l_buf, INBUFSIZ); + ALLOC(uch, G1.outbuf, OUTBUFSIZ); + ALLOC(ush, G1.d_buf, DIST_BUFSIZE); + ALLOC(uch, G1.window, 2L * WSIZE); + ALLOC(ush, G1.prev, 1L << BITS); + + /* Initialize the CRC32 table */ + global_crc32_new_table_le(); + + argv += optind; + return bbunpack(argv, pack_gzip, append_ext, "gz"); +} diff --git a/busybox-1_37_0/archival/libarchive/Kbuild.src b/busybox-1_37_0/archival/libarchive/Kbuild.src new file mode 100644 index 000000000..d2f284b08 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/Kbuild.src @@ -0,0 +1,98 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2004 by Erik Andersen +# +# Licensed under GPLv2 or later, see file LICENSE in this source tree. + +lib-y:= common.o + +COMMON_FILES:= \ +\ + data_skip.o \ + data_extract_all.o \ + data_extract_to_stdout.o \ +\ + unsafe_symlink_target.o \ +\ + filter_accept_all.o \ + filter_accept_list.o \ + filter_accept_reject_list.o \ +\ + header_skip.o \ + header_list.o \ + header_verbose_list.o \ +\ + seek_by_read.o \ + seek_by_jump.o \ +\ + data_align.o \ + find_list_entry.o \ + init_handle.o + +DPKG_FILES:= \ + unpack_ar_archive.o \ + filter_accept_list_reassign.o \ + unsafe_prefix.o \ + get_header_ar.o \ + get_header_tar.o \ + get_header_tar_gz.o \ + get_header_tar_bz2.o \ + get_header_tar_lzma.o \ + get_header_tar_xz.o \ + +INSERT + +lib-$(CONFIG_DPKG) += $(DPKG_FILES) +lib-$(CONFIG_DPKG_DEB) += $(DPKG_FILES) + +lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o +lib-$(CONFIG_CPIO) += get_header_cpio.o +lib-$(CONFIG_TAR) += get_header_tar.o unsafe_prefix.o +lib-$(CONFIG_FEATURE_TAR_TO_COMMAND) += data_extract_to_command.o +lib-$(CONFIG_LZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o +lib-$(CONFIG_UNLZOP) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o +lib-$(CONFIG_LZOPCAT) += lzo1x_1.o lzo1x_1o.o lzo1x_d.o +lib-$(CONFIG_LZOP_COMPR_HIGH) += lzo1x_9x.o +# 'bzip2 -d', bunzip2 or bzcat selects FEATURE_BZIP2_DECOMPRESS +lib-$(CONFIG_FEATURE_BZIP2_DECOMPRESS) += open_transformer.o decompress_bunzip2.o +lib-$(CONFIG_FEATURE_UNZIP_BZIP2) += open_transformer.o decompress_bunzip2.o +lib-$(CONFIG_UNLZMA) += open_transformer.o decompress_unlzma.o +lib-$(CONFIG_LZCAT) += open_transformer.o decompress_unlzma.o +lib-$(CONFIG_LZMA) += open_transformer.o decompress_unlzma.o +lib-$(CONFIG_FEATURE_UNZIP_LZMA) += open_transformer.o decompress_unlzma.o +lib-$(CONFIG_UNXZ) += open_transformer.o decompress_unxz.o +lib-$(CONFIG_XZCAT) += open_transformer.o decompress_unxz.o +lib-$(CONFIG_XZ) += open_transformer.o decompress_unxz.o +lib-$(CONFIG_FEATURE_UNZIP_XZ) += open_transformer.o decompress_unxz.o +# 'gzip -d', gunzip or zcat selects FEATURE_GZIP_DECOMPRESS +lib-$(CONFIG_FEATURE_GZIP_DECOMPRESS) += open_transformer.o decompress_gunzip.o +lib-$(CONFIG_UNCOMPRESS) += open_transformer.o decompress_uncompress.o +lib-$(CONFIG_UNZIP) += open_transformer.o decompress_gunzip.o unsafe_prefix.o +lib-$(CONFIG_RPM2CPIO) += open_transformer.o decompress_gunzip.o get_header_cpio.o +lib-$(CONFIG_RPM) += open_transformer.o decompress_gunzip.o get_header_cpio.o +lib-$(CONFIG_GZIP) += open_transformer.o +lib-$(CONFIG_BZIP2) += open_transformer.o +lib-$(CONFIG_LZOP) += open_transformer.o +lib-$(CONFIG_MAN) += open_transformer.o +lib-$(CONFIG_SETFONT) += open_transformer.o +lib-$(CONFIG_FEATURE_2_4_MODULES) += open_transformer.o +lib-$(CONFIG_MODINFO) += open_transformer.o +lib-$(CONFIG_INSMOD) += open_transformer.o +lib-$(CONFIG_DEPMOD) += open_transformer.o +lib-$(CONFIG_RMMOD) += open_transformer.o +lib-$(CONFIG_LSMOD) += open_transformer.o +lib-$(CONFIG_MODPROBE) += open_transformer.o +lib-$(CONFIG_MODPROBE_SMALL) += open_transformer.o + +lib-$(CONFIG_FEATURE_SEAMLESS_Z) += open_transformer.o decompress_uncompress.o +lib-$(CONFIG_FEATURE_SEAMLESS_GZ) += open_transformer.o decompress_gunzip.o +lib-$(CONFIG_FEATURE_SEAMLESS_BZ2) += open_transformer.o decompress_bunzip2.o +lib-$(CONFIG_FEATURE_SEAMLESS_LZMA) += open_transformer.o decompress_unlzma.o +lib-$(CONFIG_FEATURE_SEAMLESS_XZ) += open_transformer.o decompress_unxz.o +lib-$(CONFIG_FEATURE_COMPRESS_USAGE) += open_transformer.o decompress_bunzip2.o +lib-$(CONFIG_FEATURE_COMPRESS_BBCONFIG) += open_transformer.o decompress_bunzip2.o +lib-$(CONFIG_FEATURE_SH_EMBEDDED_SCRIPTS) += open_transformer.o decompress_bunzip2.o + +ifneq ($(lib-y),) +lib-y += $(COMMON_FILES) +endif diff --git a/busybox-1_37_0/archival/libarchive/bz/LICENSE b/busybox-1_37_0/archival/libarchive/bz/LICENSE new file mode 100644 index 000000000..da4346520 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/bz/LICENSE @@ -0,0 +1,44 @@ +bzip2 applet in busybox is based on lightly-modified source +of bzip2 version 1.0.4. bzip2 source is distributed +under the following conditions (copied verbatim from LICENSE file) +=========================================================== + + +This program, "bzip2", the associated library "libbzip2", and all +documentation, are copyright (C) 1996-2006 Julian R Seward. All +rights reserved. + +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. The origin of this software must not be misrepresented; you must + not claim that you wrote the original software. If you use this + software in a product, an acknowledgment in the product + documentation would be appreciated but is not required. + +3. Altered source versions must be plainly marked as such, and must + not be misrepresented as being the original software. + +4. The name of the author may not be used to endorse or promote + products derived from this software without specific prior written + permission. + +THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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. + +Julian Seward, Cambridge, UK. +jseward@bzip.org +bzip2/libbzip2 version 1.0.4 of 20 December 2006 diff --git a/busybox-1_37_0/archival/libarchive/bz/README b/busybox-1_37_0/archival/libarchive/bz/README new file mode 100644 index 000000000..fffd47b8a --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/bz/README @@ -0,0 +1,90 @@ +This file is an abridged version of README from bzip2 1.0.4 +Build instructions (which are not relevant to busyboxed bzip2) +are removed. +=========================================================== + + +This is the README for bzip2/libzip2. +This version is fully compatible with the previous public releases. + +------------------------------------------------------------------ +This file is part of bzip2/libbzip2, a program and library for +lossless, block-sorting data compression. + +bzip2/libbzip2 version 1.0.4 of 20 December 2006 +Copyright (C) 1996-2006 Julian Seward + +Please read the WARNING, DISCLAIMER and PATENTS sections in this file. + +This program is released under the terms of the license contained +in the file LICENSE. +------------------------------------------------------------------ + +Please read and be aware of the following: + + +WARNING: + + This program and library (attempts to) compress data by + performing several non-trivial transformations on it. + Unless you are 100% familiar with *all* the algorithms + contained herein, and with the consequences of modifying them, + you should NOT meddle with the compression or decompression + machinery. Incorrect changes can and very likely *will* + lead to disastrous loss of data. + + +DISCLAIMER: + + I TAKE NO RESPONSIBILITY FOR ANY LOSS OF DATA ARISING FROM THE + USE OF THIS PROGRAM/LIBRARY, HOWSOEVER CAUSED. + + Every compression of a file implies an assumption that the + compressed file can be decompressed to reproduce the original. + Great efforts in design, coding and testing have been made to + ensure that this program works correctly. However, the complexity + of the algorithms, and, in particular, the presence of various + special cases in the code which occur with very low but non-zero + probability make it impossible to rule out the possibility of bugs + remaining in the program. DO NOT COMPRESS ANY DATA WITH THIS + PROGRAM UNLESS YOU ARE PREPARED TO ACCEPT THE POSSIBILITY, HOWEVER + SMALL, THAT THE DATA WILL NOT BE RECOVERABLE. + + That is not to say this program is inherently unreliable. + Indeed, I very much hope the opposite is true. bzip2/libbzip2 + has been carefully constructed and extensively tested. + + +PATENTS: + + To the best of my knowledge, bzip2/libbzip2 does not use any + patented algorithms. However, I do not have the resources + to carry out a patent search. Therefore I cannot give any + guarantee of the above statement. + + +I hope you find bzip2 useful. Feel free to contact me at + jseward@bzip.org +if you have any suggestions or queries. Many people mailed me with +comments, suggestions and patches after the releases of bzip-0.15, +bzip-0.21, and bzip2 versions 0.1pl2, 0.9.0, 0.9.5, 1.0.0, 1.0.1, +1.0.2 and 1.0.3, and the changes in bzip2 are largely a result of this +feedback. I thank you for your comments. + +bzip2's "home" is http://www.bzip.org/ + +Julian Seward +jseward@bzip.org +Cambridge, UK. + +18 July 1996 (version 0.15) +25 August 1996 (version 0.21) + 7 August 1997 (bzip2, version 0.1) +29 August 1997 (bzip2, version 0.1pl2) +23 August 1998 (bzip2, version 0.9.0) + 8 June 1999 (bzip2, version 0.9.5) + 4 Sept 1999 (bzip2, version 0.9.5d) + 5 May 2000 (bzip2, version 1.0pre8) +30 December 2001 (bzip2, version 1.0.2pre1) +15 February 2005 (bzip2, version 1.0.3) +20 December 2006 (bzip2, version 1.0.4) diff --git a/busybox-1_37_0/archival/libarchive/bz/blocksort.c b/busybox-1_37_0/archival/libarchive/bz/blocksort.c new file mode 100644 index 000000000..74f957544 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/bz/blocksort.c @@ -0,0 +1,1079 @@ +/* + * bzip2 is written by Julian Seward . + * Adapted for busybox by Denys Vlasenko . + * See README and LICENSE files in this directory for more information. + */ + +/*-------------------------------------------------------------*/ +/*--- Block sorting machinery ---*/ +/*--- blocksort.c ---*/ +/*-------------------------------------------------------------*/ + +/* ------------------------------------------------------------------ +This file is part of bzip2/libbzip2, a program and library for +lossless, block-sorting data compression. + +bzip2/libbzip2 version 1.0.4 of 20 December 2006 +Copyright (C) 1996-2006 Julian Seward + +Please read the WARNING, DISCLAIMER and PATENTS sections in the +README file. + +This program is released under the terms of the license contained +in the file LICENSE. +------------------------------------------------------------------ */ + +/* #include "bzlib_private.h" */ + +#define mswap(zz1, zz2) \ +{ \ + int32_t zztmp = zz1; \ + zz1 = zz2; \ + zz2 = zztmp; \ +} + +static +/* No measurable speed gain with inlining */ +/* ALWAYS_INLINE */ +void mvswap(uint32_t* ptr, int32_t zzp1, int32_t zzp2, int32_t zzn) +{ + while (zzn > 0) { + mswap(ptr[zzp1], ptr[zzp2]); + zzp1++; + zzp2++; + zzn--; + } +} + +static +ALWAYS_INLINE +int32_t mmin(int32_t a, int32_t b) +{ + return (a < b) ? a : b; +} + + +/*---------------------------------------------*/ +/*--- Fallback O(N log(N)^2) sorting ---*/ +/*--- algorithm, for repetitive blocks ---*/ +/*---------------------------------------------*/ + +/*---------------------------------------------*/ +static +inline +void fallbackSimpleSort(uint32_t* fmap, + uint32_t* eclass, + int32_t lo, + int32_t hi) +{ + int32_t i, j, tmp; + uint32_t ec_tmp; + + if (lo == hi) return; + + if (hi - lo > 3) { + for (i = hi-4; i >= lo; i--) { + tmp = fmap[i]; + ec_tmp = eclass[tmp]; + for (j = i+4; j <= hi && ec_tmp > eclass[fmap[j]]; j += 4) + fmap[j-4] = fmap[j]; + fmap[j-4] = tmp; + } + } + + for (i = hi-1; i >= lo; i--) { + tmp = fmap[i]; + ec_tmp = eclass[tmp]; + for (j = i+1; j <= hi && ec_tmp > eclass[fmap[j]]; j++) + fmap[j-1] = fmap[j]; + fmap[j-1] = tmp; + } +} + + +/*---------------------------------------------*/ +#define fpush(lz,hz) { \ + stackLo[sp] = lz; \ + stackHi[sp] = hz; \ + sp++; \ +} + +#define fpop(lz,hz) { \ + sp--; \ + lz = stackLo[sp]; \ + hz = stackHi[sp]; \ +} + +#define FALLBACK_QSORT_SMALL_THRESH 10 +#define FALLBACK_QSORT_STACK_SIZE 100 + +static NOINLINE +void fallbackQSort3(uint32_t* fmap, + uint32_t* eclass, + int32_t loSt, + int32_t hiSt) +{ + int32_t sp; + uint32_t r; + int32_t stackLo[FALLBACK_QSORT_STACK_SIZE]; + int32_t stackHi[FALLBACK_QSORT_STACK_SIZE]; + + r = 0; + + sp = 0; + fpush(loSt, hiSt); + + while (sp > 0) { + int32_t unLo, unHi, ltLo, gtHi, n, m; + int32_t lo, hi; + uint32_t med; + uint32_t r3; + + AssertH(sp < FALLBACK_QSORT_STACK_SIZE - 1, 1004); + + fpop(lo, hi); + if (hi - lo < FALLBACK_QSORT_SMALL_THRESH) { + fallbackSimpleSort(fmap, eclass, lo, hi); + continue; + } + + /* Random partitioning. Median of 3 sometimes fails to + * avoid bad cases. Median of 9 seems to help but + * looks rather expensive. This too seems to work but + * is cheaper. Guidance for the magic constants + * 7621 and 32768 is taken from Sedgewick's algorithms + * book, chapter 35. + */ + r = ((r * 7621) + 1) % 32768; + r3 = r % 3; + if (r3 == 0) + med = eclass[fmap[lo]]; + else if (r3 == 1) + med = eclass[fmap[(lo+hi)>>1]]; + else + med = eclass[fmap[hi]]; + + unLo = ltLo = lo; + unHi = gtHi = hi; + + while (1) { + while (1) { + if (unLo > unHi) break; + n = (int32_t)eclass[fmap[unLo]] - (int32_t)med; + if (n == 0) { + mswap(fmap[unLo], fmap[ltLo]); + ltLo++; + unLo++; + continue; + } + if (n > 0) break; + unLo++; + } + while (1) { + if (unLo > unHi) break; + n = (int32_t)eclass[fmap[unHi]] - (int32_t)med; + if (n == 0) { + mswap(fmap[unHi], fmap[gtHi]); + gtHi--; unHi--; + continue; + } + if (n < 0) break; + unHi--; + } + if (unLo > unHi) break; + mswap(fmap[unLo], fmap[unHi]); unLo++; unHi--; + } + + AssertD(unHi == unLo-1, "fallbackQSort3(2)"); + + if (gtHi < ltLo) continue; + + n = mmin(ltLo-lo, unLo-ltLo); mvswap(fmap, lo, unLo-n, n); + m = mmin(hi-gtHi, gtHi-unHi); mvswap(fmap, unLo, hi-m+1, m); + + n = lo + unLo - ltLo - 1; + m = hi - (gtHi - unHi) + 1; + + if (n - lo > hi - m) { + fpush(lo, n); + fpush(m, hi); + } else { + fpush(m, hi); + fpush(lo, n); + } + } +} + +#undef fpush +#undef fpop +#undef FALLBACK_QSORT_SMALL_THRESH +#undef FALLBACK_QSORT_STACK_SIZE + + +/*---------------------------------------------*/ +/* Pre: + * nblock > 0 + * eclass exists for [0 .. nblock-1] + * ((uint8_t*)eclass) [0 .. nblock-1] holds block + * ptr exists for [0 .. nblock-1] + * + * Post: + * ((uint8_t*)eclass) [0 .. nblock-1] holds block + * All other areas of eclass destroyed + * fmap [0 .. nblock-1] holds sorted order + * bhtab[0 .. 2+(nblock/32)] destroyed +*/ + +#define SET_BH(zz) bhtab[(zz) >> 5] |= (1 << ((zz) & 31)) +#define CLEAR_BH(zz) bhtab[(zz) >> 5] &= ~(1 << ((zz) & 31)) +#define ISSET_BH(zz) (bhtab[(zz) >> 5] & (1 << ((zz) & 31))) +#define WORD_BH(zz) bhtab[(zz) >> 5] +#define UNALIGNED_BH(zz) ((zz) & 0x01f) + +static +void fallbackSort(EState* state) +{ + int32_t ftab[257]; + int32_t ftabCopy[256]; + int32_t H, i, j, k, l, r, cc, cc1; + int32_t nNotDone; + int32_t nBhtab; + /* params */ + uint32_t *const fmap = state->arr1; + uint32_t *const eclass = state->arr2; +#define eclass8 ((uint8_t*)eclass) + uint32_t *const bhtab = state->ftab; + const int32_t nblock = state->nblock; + + /* + * Initial 1-char radix sort to generate + * initial fmap and initial BH bits. + */ + for (i = 0; i < 257; i++) ftab[i] = 0; + for (i = 0; i < nblock; i++) ftab[eclass8[i]]++; + for (i = 0; i < 256; i++) ftabCopy[i] = ftab[i]; + + j = ftab[0]; /* bbox: optimized */ + for (i = 1; i < 257; i++) { + j += ftab[i]; + ftab[i] = j; + } + + for (i = 0; i < nblock; i++) { + j = eclass8[i]; + k = ftab[j] - 1; + ftab[j] = k; + fmap[k] = i; + } + + nBhtab = 2 + ((uint32_t)nblock / 32); /* bbox: unsigned div is easier */ + for (i = 0; i < nBhtab; i++) bhtab[i] = 0; + for (i = 0; i < 256; i++) SET_BH(ftab[i]); + + /* + * Inductively refine the buckets. Kind-of an + * "exponential radix sort" (!), inspired by the + * Manber-Myers suffix array construction algorithm. + */ + + /*-- set sentinel bits for block-end detection --*/ + for (i = 0; i < 32; i++) { + SET_BH(nblock + 2*i); + CLEAR_BH(nblock + 2*i + 1); + } + + /*-- the log(N) loop --*/ + H = 1; + while (1) { + j = 0; + for (i = 0; i < nblock; i++) { + if (ISSET_BH(i)) + j = i; + k = fmap[i] - H; + if (k < 0) + k += nblock; + eclass[k] = j; + } + + nNotDone = 0; + r = -1; + while (1) { + + /*-- find the next non-singleton bucket --*/ + k = r + 1; + while (ISSET_BH(k) && UNALIGNED_BH(k)) + k++; + if (ISSET_BH(k)) { + while (WORD_BH(k) == 0xffffffff) k += 32; + while (ISSET_BH(k)) k++; + } + l = k - 1; + if (l >= nblock) + break; + while (!ISSET_BH(k) && UNALIGNED_BH(k)) + k++; + if (!ISSET_BH(k)) { + while (WORD_BH(k) == 0x00000000) k += 32; + while (!ISSET_BH(k)) k++; + } + r = k - 1; + if (r >= nblock) + break; + + /*-- now [l, r] bracket current bucket --*/ + if (r > l) { + nNotDone += (r - l + 1); + fallbackQSort3(fmap, eclass, l, r); + + /*-- scan bucket and generate header bits-- */ + cc = -1; + for (i = l; i <= r; i++) { + cc1 = eclass[fmap[i]]; + if (cc != cc1) { + SET_BH(i); + cc = cc1; + } + } + } + } + + H *= 2; + if (H > nblock || nNotDone == 0) + break; + } + + /* + * Reconstruct the original block in + * eclass8 [0 .. nblock-1], since the + * previous phase destroyed it. + */ + j = 0; + for (i = 0; i < nblock; i++) { + while (ftabCopy[j] == 0) + j++; + ftabCopy[j]--; + eclass8[fmap[i]] = (uint8_t)j; + } + AssertH(j < 256, 1005); +#undef eclass8 +} + +#undef SET_BH +#undef CLEAR_BH +#undef ISSET_BH +#undef WORD_BH +#undef UNALIGNED_BH + + +/*---------------------------------------------*/ +/*--- The main, O(N^2 log(N)) sorting ---*/ +/*--- algorithm. Faster for "normal" ---*/ +/*--- non-repetitive blocks. ---*/ +/*---------------------------------------------*/ + +/*---------------------------------------------*/ +static +NOINLINE +int mainGtU(EState* state, + uint32_t i1, + uint32_t i2) +{ + int32_t k; + uint8_t c1, c2; + uint16_t s1, s2; + + uint8_t *const block = state->block; + uint16_t *const quadrant = state->quadrant; + const int32_t nblock = state->nblock; + +/* Loop unrolling here is actually very useful + * (generated code is much simpler), + * code size increase is only 270 bytes (i386) + * but speeds up compression 10% overall + */ + +#if BZIP2_SPEED >= 1 + +#define TIMES_8(code) \ + code; code; code; code; \ + code; code; code; code; +#define TIMES_12(code) \ + code; code; code; code; \ + code; code; code; code; \ + code; code; code; code; + +#else + +#define TIMES_8(code) \ +{ \ + int nn = 8; \ + do { \ + code; \ + } while (--nn); \ +} +#define TIMES_12(code) \ +{ \ + int nn = 12; \ + do { \ + code; \ + } while (--nn); \ +} + +#endif + + AssertD(i1 != i2, "mainGtU"); + TIMES_12( + c1 = block[i1]; c2 = block[i2]; + if (c1 != c2) return (c1 > c2); + i1++; i2++; + ) + + k = nblock + 8; + + do { + TIMES_8( + c1 = block[i1]; c2 = block[i2]; + if (c1 != c2) return (c1 > c2); + s1 = quadrant[i1]; s2 = quadrant[i2]; + if (s1 != s2) return (s1 > s2); + i1++; i2++; + ) + + if (i1 >= nblock) i1 -= nblock; + if (i2 >= nblock) i2 -= nblock; + + state->budget--; + k -= 8; + } while (k >= 0); + + return False; +} +#undef TIMES_8 +#undef TIMES_12 + +/*---------------------------------------------*/ +/* + * Knuth's increments seem to work better + * than Incerpi-Sedgewick here. Possibly + * because the number of elems to sort is + * usually small, typically <= 20. + */ +static +const uint32_t incs[14] ALIGN4 = { + 1, 4, 13, 40, 121, 364, 1093, 3280, + 9841, 29524, 88573, 265720, + 797161, 2391484 +}; + +static +void mainSimpleSort(EState* state, + int32_t lo, + int32_t hi, + int32_t d) +{ + uint32_t *const ptr = state->ptr; + + /* At which increment to start? */ + int hp = 0; + { + int bigN = hi - lo; + if (bigN <= 0) + return; + while (incs[hp] <= bigN) + hp++; + hp--; + } + + for (; hp >= 0; hp--) { + int32_t i; + unsigned h; + + h = incs[hp]; + i = lo + h; + while (1) { + unsigned j; + unsigned v; + + if (i > hi) break; + v = ptr[i]; + j = i; + while (mainGtU(state, ptr[j-h]+d, v+d)) { + ptr[j] = ptr[j-h]; + j = j - h; + if (j <= (lo + h - 1)) break; + } + ptr[j] = v; + i++; + +/* 1.5% overall speedup, +290 bytes */ +#if BZIP2_SPEED >= 3 + /*-- copy 2 --*/ + if (i > hi) break; + v = ptr[i]; + j = i; + while (mainGtU(state, ptr[j-h]+d, v+d)) { + ptr[j] = ptr[j-h]; + j = j - h; + if (j <= (lo + h - 1)) break; + } + ptr[j] = v; + i++; + /*-- copy 3 --*/ + if (i > hi) break; + v = ptr[i]; + j = i; + while (mainGtU(state, ptr[j-h]+d, v+d)) { + ptr[j] = ptr[j-h]; + j = j - h; + if (j <= (lo + h - 1)) break; + } + ptr[j] = v; + i++; +#endif + if (state->budget < 0) return; + } + } +} + + +/*---------------------------------------------*/ +/* + * The following is an implementation of + * an elegant 3-way quicksort for strings, + * described in a paper "Fast Algorithms for + * Sorting and Searching Strings", by Robert + * Sedgewick and Jon L. Bentley. + */ + +static +ALWAYS_INLINE +uint8_t mmed3(uint8_t a, uint8_t b, uint8_t c) +{ + uint8_t t; + if (a > b) { + t = a; + a = b; + b = t; + } + /* here b >= a */ + if (b > c) { + b = c; + if (a > b) + b = a; + } + return b; +} + +#define mpush(lz,hz,dz) \ +{ \ + stackLo[sp] = lz; \ + stackHi[sp] = hz; \ + stackD [sp] = dz; \ + sp++; \ +} + +#define mpop(lz,hz,dz) \ +{ \ + sp--; \ + lz = stackLo[sp]; \ + hz = stackHi[sp]; \ + dz = stackD [sp]; \ +} + +#define mnextsize(az) (nextHi[az] - nextLo[az]) + +#define mnextswap(az,bz) \ +{ \ + int32_t tz; \ + tz = nextLo[az]; nextLo[az] = nextLo[bz]; nextLo[bz] = tz; \ + tz = nextHi[az]; nextHi[az] = nextHi[bz]; nextHi[bz] = tz; \ + tz = nextD [az]; nextD [az] = nextD [bz]; nextD [bz] = tz; \ +} + +#define MAIN_QSORT_SMALL_THRESH 20 +#define MAIN_QSORT_DEPTH_THRESH (BZ_N_RADIX + BZ_N_QSORT) +#define MAIN_QSORT_STACK_SIZE 100 + +static NOINLINE +void mainQSort3(EState* state, + int32_t loSt, + int32_t hiSt + /*int32_t dSt*/) +{ + enum { dSt = BZ_N_RADIX }; + int32_t unLo, unHi, ltLo, gtHi, n, m, med; + int32_t sp, lo, hi, d; + + int32_t stackLo[MAIN_QSORT_STACK_SIZE]; + int32_t stackHi[MAIN_QSORT_STACK_SIZE]; + int32_t stackD [MAIN_QSORT_STACK_SIZE]; + + int32_t nextLo[3]; + int32_t nextHi[3]; + int32_t nextD [3]; + + uint32_t *const ptr = state->ptr; + uint8_t *const block = state->block; + + sp = 0; + mpush(loSt, hiSt, dSt); + + while (sp > 0) { + AssertH(sp < MAIN_QSORT_STACK_SIZE - 2, 1001); + + mpop(lo, hi, d); + if (hi - lo < MAIN_QSORT_SMALL_THRESH + || d > MAIN_QSORT_DEPTH_THRESH + ) { + mainSimpleSort(state, lo, hi, d); + if (state->budget < 0) + return; + continue; + } + med = (int32_t) mmed3(block[ptr[lo ] + d], + block[ptr[hi ] + d], + block[ptr[(lo+hi) >> 1] + d]); + + unLo = ltLo = lo; + unHi = gtHi = hi; + + while (1) { + while (1) { + if (unLo > unHi) + break; + n = ((int32_t)block[ptr[unLo]+d]) - med; + if (n == 0) { + mswap(ptr[unLo], ptr[ltLo]); + ltLo++; + unLo++; + continue; + } + if (n > 0) break; + unLo++; + } + while (1) { + if (unLo > unHi) + break; + n = ((int32_t)block[ptr[unHi]+d]) - med; + if (n == 0) { + mswap(ptr[unHi], ptr[gtHi]); + gtHi--; + unHi--; + continue; + } + if (n < 0) break; + unHi--; + } + if (unLo > unHi) + break; + mswap(ptr[unLo], ptr[unHi]); + unLo++; + unHi--; + } + + AssertD(unHi == unLo-1, "mainQSort3(2)"); + + if (gtHi < ltLo) { + mpush(lo, hi, d + 1); + continue; + } + + n = mmin(ltLo-lo, unLo-ltLo); mvswap(ptr, lo, unLo-n, n); + m = mmin(hi-gtHi, gtHi-unHi); mvswap(ptr, unLo, hi-m+1, m); + + n = lo + unLo - ltLo - 1; + m = hi - (gtHi - unHi) + 1; + + nextLo[0] = lo; nextHi[0] = n; nextD[0] = d; + nextLo[1] = m; nextHi[1] = hi; nextD[1] = d; + nextLo[2] = n+1; nextHi[2] = m-1; nextD[2] = d+1; + + if (mnextsize(0) < mnextsize(1)) mnextswap(0, 1); + if (mnextsize(1) < mnextsize(2)) mnextswap(1, 2); + if (mnextsize(0) < mnextsize(1)) mnextswap(0, 1); + + AssertD (mnextsize(0) >= mnextsize(1), "mainQSort3(8)"); + AssertD (mnextsize(1) >= mnextsize(2), "mainQSort3(9)"); + + mpush(nextLo[0], nextHi[0], nextD[0]); + mpush(nextLo[1], nextHi[1], nextD[1]); + mpush(nextLo[2], nextHi[2], nextD[2]); + } +} + +#undef mpush +#undef mpop +#undef mnextsize +#undef mnextswap +#undef MAIN_QSORT_SMALL_THRESH +#undef MAIN_QSORT_DEPTH_THRESH +#undef MAIN_QSORT_STACK_SIZE + + +/*---------------------------------------------*/ +/* Pre: + * nblock > N_OVERSHOOT + * block32 exists for [0 .. nblock-1 +N_OVERSHOOT] + * ((uint8_t*)block32) [0 .. nblock-1] holds block + * ptr exists for [0 .. nblock-1] + * + * Post: + * ((uint8_t*)block32) [0 .. nblock-1] holds block + * All other areas of block32 destroyed + * ftab[0 .. 65536] destroyed + * ptr [0 .. nblock-1] holds sorted order + * if (*budget < 0), sorting was abandoned + */ + +#define BIGFREQ(b) (ftab[((b)+1) << 8] - ftab[(b) << 8]) +#define SETMASK (1 << 21) +#define CLEARMASK (~(SETMASK)) + +static NOINLINE +void mainSort(EState* state) +{ + int32_t i, j; + Bool bigDone[256]; + uint8_t runningOrder[256]; + /* bbox: moved to EState to save stack + int32_t copyStart[256]; + int32_t copyEnd [256]; + */ +#define copyStart (state->mainSort__copyStart) +#define copyEnd (state->mainSort__copyEnd) + + uint32_t *const ptr = state->ptr; + uint8_t *const block = state->block; + uint32_t *const ftab = state->ftab; + const int32_t nblock = state->nblock; + uint16_t *const quadrant = state->quadrant; + + /*-- set up the 2-byte frequency table --*/ + /* was: for (i = 65536; i >= 0; i--) ftab[i] = 0; */ + memset(ftab, 0, 65537 * sizeof(ftab[0])); + + j = block[0] << 8; + i = nblock - 1; +/* 3%, +300 bytes */ +#if BZIP2_SPEED >= 2 + for (; i >= 3; i -= 4) { + quadrant[i] = 0; + j = (j >> 8) | (((unsigned)block[i]) << 8); + ftab[j]++; + quadrant[i-1] = 0; + j = (j >> 8) | (((unsigned)block[i-1]) << 8); + ftab[j]++; + quadrant[i-2] = 0; + j = (j >> 8) | (((unsigned)block[i-2]) << 8); + ftab[j]++; + quadrant[i-3] = 0; + j = (j >> 8) | (((unsigned)block[i-3]) << 8); + ftab[j]++; + } +#endif + for (; i >= 0; i--) { + quadrant[i] = 0; + j = (j >> 8) | (((unsigned)block[i]) << 8); + ftab[j]++; + } + + /*-- (emphasises close relationship of block & quadrant) --*/ + for (i = 0; i < BZ_N_OVERSHOOT; i++) { + block [nblock+i] = block[i]; + quadrant[nblock+i] = 0; + } + + /*-- Complete the initial radix sort --*/ + j = ftab[0]; /* bbox: optimized */ + for (i = 1; i <= 65536; i++) { + j += ftab[i]; + ftab[i] = j; + } + + { + unsigned s; + s = block[0] << 8; + i = nblock - 1; +#if BZIP2_SPEED >= 2 + for (; i >= 3; i -= 4) { + s = (s >> 8) | (block[i] << 8); + j = ftab[s] - 1; + ftab[s] = j; + ptr[j] = i; + s = (s >> 8) | (block[i-1] << 8); + j = ftab[s] - 1; + ftab[s] = j; + ptr[j] = i-1; + s = (s >> 8) | (block[i-2] << 8); + j = ftab[s] - 1; + ftab[s] = j; + ptr[j] = i-2; + s = (s >> 8) | (block[i-3] << 8); + j = ftab[s] - 1; + ftab[s] = j; + ptr[j] = i-3; + } +#endif + for (; i >= 0; i--) { + s = (s >> 8) | (block[i] << 8); + j = ftab[s] - 1; + ftab[s] = j; + ptr[j] = i; + } + } + + /* + * Now ftab contains the first loc of every small bucket. + * Calculate the running order, from smallest to largest + * big bucket. + */ + for (i = 0; i <= 255; i++) { + bigDone [i] = False; + runningOrder[i] = i; + } + + { + /* bbox: was: int32_t h = 1; */ + /* do h = 3 * h + 1; while (h <= 256); */ + unsigned h = 364; + + do { + /*h = h / 3;*/ + h = (h * 171) >> 9; /* bbox: fast h/3 */ + for (i = h; i <= 255; i++) { + unsigned vv, jh; + vv = runningOrder[i]; /* uint8[] */ + j = i; + while (jh = j - h, BIGFREQ(runningOrder[jh]) > BIGFREQ(vv)) { + runningOrder[j] = runningOrder[jh]; + j = jh; + if (j < h) + break; + } + runningOrder[j] = vv; + } + } while (h != 1); + } + + /* + * The main sorting loop. + */ + + for (i = 0; /*i <= 255*/; i++) { + unsigned ss; + + /* + * Process big buckets, starting with the least full. + * Basically this is a 3-step process in which we call + * mainQSort3 to sort the small buckets [ss, j], but + * also make a big effort to avoid the calls if we can. + */ + ss = runningOrder[i]; + + /* + * Step 1: + * Complete the big bucket [ss] by quicksorting + * any unsorted small buckets [ss, j], for j != ss. + * Hopefully previous pointer-scanning phases have already + * completed many of the small buckets [ss, j], so + * we don't have to sort them at all. + */ + for (j = 0; j <= 255; j++) { + if (j != ss) { + unsigned sb; + sb = (ss << 8) + j; + if (!(ftab[sb] & SETMASK)) { + int32_t lo = ftab[sb] /*& CLEARMASK (redundant)*/; + int32_t hi = (ftab[sb+1] & CLEARMASK) - 1; + if (hi > lo) { + mainQSort3(state, lo, hi /*,BZ_N_RADIX*/); + if (state->budget < 0) return; + } + } + ftab[sb] |= SETMASK; + } + } + + AssertH(!bigDone[ss], 1006); + + /* + * Step 2: + * Now scan this big bucket [ss] so as to synthesise the + * sorted order for small buckets [t, ss] for all t, + * including, magically, the bucket [ss,ss] too. + * This will avoid doing Real Work in subsequent Step 1's. + */ + { + for (j = 0; j <= 255; j++) { + copyStart[j] = ftab[(j << 8) + ss] & CLEARMASK; + copyEnd [j] = (ftab[(j << 8) + ss + 1] & CLEARMASK) - 1; + } + for (j = ftab[ss << 8] & CLEARMASK; j < copyStart[ss]; j++) { + unsigned c1; + int32_t k; + k = ptr[j] - 1; + if (k < 0) + k += nblock; + c1 = block[k]; + if (!bigDone[c1]) + ptr[copyStart[c1]++] = k; + } + for (j = (ftab[(ss+1) << 8] & CLEARMASK) - 1; j > copyEnd[ss]; j--) { + unsigned c1; + int32_t k; + k = ptr[j]-1; + if (k < 0) + k += nblock; + c1 = block[k]; + if (!bigDone[c1]) + ptr[copyEnd[c1]--] = k; + } + } + + /* Extremely rare case missing in bzip2-1.0.0 and 1.0.1. + * Necessity for this case is demonstrated by compressing + * a sequence of approximately 48.5 million of character + * 251; 1.0.0/1.0.1 will then die here. */ + AssertH((copyStart[ss]-1 == copyEnd[ss]) \ + || (copyStart[ss] == 0 && copyEnd[ss] == nblock-1), 1007); + + for (j = 0; j <= 255; j++) + ftab[(j << 8) + ss] |= SETMASK; + + if (i == 255) + break; + + /* + * Step 3: + * The [ss] big bucket is now done. Record this fact, + * and update the quadrant descriptors. Remember to + * update quadrants in the overshoot area too, if + * necessary. The "if (i < 255)" test merely skips + * this updating for the last bucket processed, since + * updating for the last bucket is pointless. + * + * The quadrant array provides a way to incrementally + * cache sort orderings, as they appear, so as to + * make subsequent comparisons in fullGtU() complete + * faster. For repetitive blocks this makes a big + * difference (but not big enough to be able to avoid + * the fallback sorting mechanism, exponential radix sort). + * + * The precise meaning is: at all times: + * + * for 0 <= i < nblock and 0 <= j <= nblock + * + * if block[i] != block[j], + * + * then the relative values of quadrant[i] and + * quadrant[j] are meaningless. + * + * else { + * if quadrant[i] < quadrant[j] + * then the string starting at i lexicographically + * precedes the string starting at j + * + * else if quadrant[i] > quadrant[j] + * then the string starting at j lexicographically + * precedes the string starting at i + * + * else + * the relative ordering of the strings starting + * at i and j has not yet been determined. + * } + */ + bigDone[ss] = True; + + { + unsigned bbStart = ftab[ss << 8] & CLEARMASK; + unsigned bbSize = (ftab[(ss+1) << 8] & CLEARMASK) - bbStart; + unsigned shifts = 0; + + while ((bbSize >> shifts) > 65534) shifts++; + + for (j = bbSize-1; j >= 0; j--) { + unsigned a2update = ptr[bbStart + j]; /* uint32[] */ + uint16_t qVal = (uint16_t)(j >> shifts); + quadrant[a2update] = qVal; + if (a2update < BZ_N_OVERSHOOT) + quadrant[a2update + nblock] = qVal; + } + AssertH(((bbSize-1) >> shifts) <= 65535, 1002); + } + } +#undef runningOrder +#undef copyStart +#undef copyEnd +} + +#undef BIGFREQ +#undef SETMASK +#undef CLEARMASK + + +/*---------------------------------------------*/ +/* Pre: + * nblock > 0 + * arr2 exists for [0 .. nblock-1 +N_OVERSHOOT] + * ((uint8_t*)arr2)[0 .. nblock-1] holds block + * arr1 exists for [0 .. nblock-1] + * + * Post: + * ((uint8_t*)arr2) [0 .. nblock-1] holds block + * All other areas of block destroyed + * ftab[0 .. 65536] destroyed + * arr1[0 .. nblock-1] holds sorted order + */ +static NOINLINE +int32_t BZ2_blockSort(EState* state) +{ + /* In original bzip2 1.0.4, it's a parameter, but 30 + * (which was the default) should work ok. */ + enum { wfact = 30 }; + unsigned i; + int32_t origPtr = origPtr; + + if (state->nblock >= 10000) { + /* Calculate the location for quadrant, remembering to get + * the alignment right. Assumes that &(block[0]) is at least + * 2-byte aligned -- this should be ok since block is really + * the first section of arr2. + */ + i = state->nblock + BZ_N_OVERSHOOT; + if (i & 1) + i++; + state->quadrant = (uint16_t*) &(state->block[i]); + + /* (wfact-1) / 3 puts the default-factor-30 + * transition point at very roughly the same place as + * with v0.1 and v0.9.0. + * Not that it particularly matters any more, since the + * resulting compressed stream is now the same regardless + * of whether or not we use the main sort or fallback sort. + */ + state->budget = state->nblock * ((wfact-1) / 3); + mainSort(state); + if (state->budget >= 0) + goto good; + } + fallbackSort(state); + good: + +#if BZ_LIGHT_DEBUG + origPtr = -1; +#endif + for (i = 0; i < state->nblock; i++) { + if (state->ptr[i] == 0) { + origPtr = i; + break; + } + } + + AssertH(origPtr != -1, 1003); + return origPtr; +} + + +/*-------------------------------------------------------------*/ +/*--- end blocksort.c ---*/ +/*-------------------------------------------------------------*/ diff --git a/busybox-1_37_0/archival/libarchive/bz/bzlib.c b/busybox-1_37_0/archival/libarchive/bz/bzlib.c new file mode 100644 index 000000000..ef19ae165 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/bz/bzlib.c @@ -0,0 +1,428 @@ +/* + * bzip2 is written by Julian Seward . + * Adapted for busybox by Denys Vlasenko . + * See README and LICENSE files in this directory for more information. + */ + +/*-------------------------------------------------------------*/ +/*--- Library top-level functions. ---*/ +/*--- bzlib.c ---*/ +/*-------------------------------------------------------------*/ + +/* ------------------------------------------------------------------ +This file is part of bzip2/libbzip2, a program and library for +lossless, block-sorting data compression. + +bzip2/libbzip2 version 1.0.4 of 20 December 2006 +Copyright (C) 1996-2006 Julian Seward + +Please read the WARNING, DISCLAIMER and PATENTS sections in the +README file. + +This program is released under the terms of the license contained +in the file LICENSE. +------------------------------------------------------------------ */ + +/* CHANGES + * 0.9.0 -- original version. + * 0.9.0a/b -- no changes in this file. + * 0.9.0c -- made zero-length BZ_FLUSH work correctly in bzCompress(). + * fixed bzWrite/bzRead to ignore zero-length requests. + * fixed bzread to correctly handle read requests after EOF. + * wrong parameter order in call to bzDecompressInit in + * bzBuffToBuffDecompress. Fixed. + */ + +/* #include "bzlib_private.h" */ + +/*---------------------------------------------------*/ +/*--- Compression stuff ---*/ +/*---------------------------------------------------*/ + +/*---------------------------------------------------*/ +#if BZ_LIGHT_DEBUG +static +void bz_assert_fail(int errcode) +{ + /* if (errcode == 1007) bb_error_msg_and_die("probably bad RAM"); */ + bb_error_msg_and_die("internal error %d", errcode); +} +#endif + +/*---------------------------------------------------*/ +static +void prepare_new_block(EState* s) +{ + int i; + s->nblock = 0; + //indexes into s->zbits[], initialzation moved to init of s->zbits + //s->posZ = s->zbits; // was: s->numZ = 0; + //s->state_out_pos = s->zbits; + BZ_INITIALISE_CRC(s->blockCRC); + /* inlined memset would be nice to have here */ + for (i = 0; i < 256; i++) + s->inUse[i] = 0; + s->blockNo++; +} + + +/*---------------------------------------------------*/ +static +ALWAYS_INLINE +void init_RL(EState* s) +{ + s->state_in_ch = 256; + s->state_in_len = 0; +} + + +static +int isempty_RL(EState* s) +{ + return (s->state_in_ch >= 256 || s->state_in_len <= 0); +} + + +/*---------------------------------------------------*/ +static +void BZ2_bzCompressInit(bz_stream *strm, int blockSize100k) +{ + unsigned n; + EState* s; + + s = xzalloc(sizeof(EState)); + s->strm = strm; + + n = 100000 * blockSize100k; + s->arr1 = xmalloc(n * sizeof(uint32_t)); + s->mtfv = (uint16_t*)s->arr1; + s->ptr = (uint32_t*)s->arr1; + s->arr2 = xmalloc((n + BZ_N_OVERSHOOT) * sizeof(uint32_t)); + s->block = (uint8_t*)s->arr2; + + crc32_filltable(s->crc32table, 1); + + s->state = BZ_S_INPUT; + s->mode = BZ_M_RUNNING; + s->blockSize100k = blockSize100k; + s->nblockMAX = n - 19; + + strm->state = s; + /*strm->total_in = 0;*/ + strm->total_out = 0; + init_RL(s); + prepare_new_block(s); +} + + +/*---------------------------------------------------*/ +static +void add_pair_to_block(EState* s) +{ + int32_t i; + uint8_t ch = (uint8_t)(s->state_in_ch); + for (i = 0; i < s->state_in_len; i++) { + BZ_UPDATE_CRC(s, s->blockCRC, ch); + } + s->inUse[s->state_in_ch] = 1; + switch (s->state_in_len) { + case 3: + s->block[s->nblock] = (uint8_t)ch; s->nblock++; + /* fall through */ + case 2: + s->block[s->nblock] = (uint8_t)ch; s->nblock++; + /* fall through */ + case 1: + s->block[s->nblock] = (uint8_t)ch; s->nblock++; + break; + default: + s->inUse[s->state_in_len - 4] = 1; + s->block[s->nblock] = (uint8_t)ch; s->nblock++; + s->block[s->nblock] = (uint8_t)ch; s->nblock++; + s->block[s->nblock] = (uint8_t)ch; s->nblock++; + s->block[s->nblock] = (uint8_t)ch; s->nblock++; + s->block[s->nblock] = (uint8_t)(s->state_in_len - 4); + s->nblock++; + break; + } +} + + +/*---------------------------------------------------*/ +static +void flush_RL(EState* s) +{ + if (s->state_in_ch < 256) add_pair_to_block(s); + init_RL(s); +} + + +/*---------------------------------------------------*/ +#define ADD_CHAR_TO_BLOCK(zs, zchh0) \ +{ \ + uint32_t zchh = (uint32_t)(zchh0); \ + /*-- fast track the common case --*/ \ + if (zchh != zs->state_in_ch && zs->state_in_len == 1) { \ + uint8_t ch = (uint8_t)(zs->state_in_ch); \ + BZ_UPDATE_CRC(zs, zs->blockCRC, ch); \ + zs->inUse[zs->state_in_ch] = 1; \ + zs->block[zs->nblock] = (uint8_t)ch; \ + zs->nblock++; \ + zs->state_in_ch = zchh; \ + } \ + else \ + /*-- general, uncommon cases --*/ \ + if (zchh != zs->state_in_ch || zs->state_in_len == 255) { \ + if (zs->state_in_ch < 256) \ + add_pair_to_block(zs); \ + zs->state_in_ch = zchh; \ + zs->state_in_len = 1; \ + } else { \ + zs->state_in_len++; \ + } \ +} + + +/*---------------------------------------------------*/ +static +void /*Bool*/ copy_input_until_stop(EState* s) +{ + /*Bool progress_in = False;*/ + +#ifdef SAME_CODE_AS_BELOW + if (s->mode == BZ_M_RUNNING) { + /*-- fast track the common case --*/ + while (1) { + /*-- no input? --*/ + if (s->strm->avail_in == 0) break; + /*-- block full? --*/ + if (s->nblock >= s->nblockMAX) break; + /*progress_in = True;*/ + ADD_CHAR_TO_BLOCK(s, (uint32_t)(*(uint8_t*)(s->strm->next_in))); + s->strm->next_in++; + s->strm->avail_in--; + /*s->strm->total_in++;*/ + } + } else +#endif + { + /*-- general, uncommon case --*/ + while (1) { + /*-- no input? --*/ + if (s->strm->avail_in == 0) break; + /*-- block full? --*/ + if (s->nblock >= s->nblockMAX) break; + //# /*-- flush/finish end? --*/ + //# if (s->avail_in_expect == 0) break; + /*progress_in = True;*/ + ADD_CHAR_TO_BLOCK(s, *(uint8_t*)(s->strm->next_in)); + s->strm->next_in++; + s->strm->avail_in--; + /*s->strm->total_in++;*/ + //# s->avail_in_expect--; + } + } + /*return progress_in;*/ +} + + +/*---------------------------------------------------*/ +static +void /*Bool*/ copy_output_until_stop(EState* s) +{ + /*Bool progress_out = False;*/ + + while (1) { + /*-- no output space? --*/ + if (s->strm->avail_out == 0) break; + + /*-- block done? --*/ + if (s->state_out_pos >= s->posZ) break; + + /*progress_out = True;*/ + *(s->strm->next_out) = *s->state_out_pos++; + s->strm->avail_out--; + s->strm->next_out++; + s->strm->total_out++; + } + /*return progress_out;*/ +} + + +/*---------------------------------------------------*/ +static +void /*Bool*/ handle_compress(bz_stream *strm) +{ + /*Bool progress_in = False;*/ + /*Bool progress_out = False;*/ + EState* s = strm->state; + + while (1) { + if (s->state == BZ_S_OUTPUT) { + /*progress_out |=*/ copy_output_until_stop(s); + if (s->state_out_pos < s->posZ) break; + if (s->mode == BZ_M_FINISHING + //# && s->avail_in_expect == 0 + && s->strm->avail_in == 0 + && isempty_RL(s)) + break; + prepare_new_block(s); + s->state = BZ_S_INPUT; +#ifdef FLUSH_IS_UNUSED + if (s->mode == BZ_M_FLUSHING + && s->avail_in_expect == 0 + && isempty_RL(s)) + break; +#endif + } + + if (s->state == BZ_S_INPUT) { + /*progress_in |=*/ copy_input_until_stop(s); + //#if (s->mode != BZ_M_RUNNING && s->avail_in_expect == 0) { + if (s->mode != BZ_M_RUNNING && s->strm->avail_in == 0) { + flush_RL(s); + BZ2_compressBlock(s, (s->mode == BZ_M_FINISHING)); + s->state = BZ_S_OUTPUT; + } else + if (s->nblock >= s->nblockMAX) { + BZ2_compressBlock(s, 0); + s->state = BZ_S_OUTPUT; + } else + if (s->strm->avail_in == 0) { + break; + } + } + } + + /*return progress_in || progress_out;*/ +} + + +/*---------------------------------------------------*/ +static +int BZ2_bzCompress(bz_stream *strm, int action) +{ + /*Bool progress;*/ + EState* s; + + s = strm->state; + + switch (s->mode) { + case BZ_M_RUNNING: + if (action == BZ_RUN) { + /*progress =*/ handle_compress(strm); + /*return progress ? BZ_RUN_OK : BZ_PARAM_ERROR;*/ + return BZ_RUN_OK; + } +#ifdef FLUSH_IS_UNUSED + else + if (action == BZ_FLUSH) { + //#s->avail_in_expect = strm->avail_in; + s->mode = BZ_M_FLUSHING; + goto case_BZ_M_FLUSHING; + } +#endif + else + /*if (action == BZ_FINISH)*/ { + //#s->avail_in_expect = strm->avail_in; + s->mode = BZ_M_FINISHING; + goto case_BZ_M_FINISHING; + } + +#ifdef FLUSH_IS_UNUSED + case_BZ_M_FLUSHING: + case BZ_M_FLUSHING: + /*if (s->avail_in_expect != s->strm->avail_in) + return BZ_SEQUENCE_ERROR;*/ + /*progress =*/ handle_compress(strm); + if (s->avail_in_expect > 0 || !isempty_RL(s) || s->state_out_pos < s->posZ) + return BZ_FLUSH_OK; + s->mode = BZ_M_RUNNING; + return BZ_RUN_OK; +#endif + + case_BZ_M_FINISHING: + /*case BZ_M_FINISHING:*/ + default: + /*if (s->avail_in_expect != s->strm->avail_in) + return BZ_SEQUENCE_ERROR;*/ + /*progress =*/ handle_compress(strm); + /*if (!progress) return BZ_SEQUENCE_ERROR;*/ + //#if (s->avail_in_expect > 0 || !isempty_RL(s) || s->state_out_pos < s->posZ) + //# return BZ_FINISH_OK; + if (s->strm->avail_in > 0 || !isempty_RL(s) || s->state_out_pos < s->posZ) + return BZ_FINISH_OK; + /*s->mode = BZ_M_IDLE;*/ + return BZ_STREAM_END; + } + /* return BZ_OK; --not reached--*/ +} + + +/*---------------------------------------------------*/ +static +void BZ2_bzCompressEnd(bz_stream *strm) +{ + EState* s; + + s = strm->state; + free(s->arr1); + free(s->arr2); + //free(s->ftab); // made it array member of s + //free(s->crc32table); // ditto + free(s); +} + + +/*---------------------------------------------------*/ +/*--- Misc convenience stuff ---*/ +/*---------------------------------------------------*/ + +/*---------------------------------------------------*/ +#ifdef EXAMPLE_CODE_FOR_MEM_TO_MEM_COMPRESSION +static +int BZ2_bzBuffToBuffCompress(char* dest, + unsigned int* destLen, + char* source, + unsigned int sourceLen, + int blockSize100k) +{ + bz_stream strm; + int ret; + + if (dest == NULL || destLen == NULL + || source == NULL + || blockSize100k < 1 || blockSize100k > 9 + ) { + return BZ_PARAM_ERROR; + } + + BZ2_bzCompressInit(&strm, blockSize100k); + + strm.next_in = source; + strm.next_out = dest; + strm.avail_in = sourceLen; + strm.avail_out = *destLen; + + ret = BZ2_bzCompress(&strm, BZ_FINISH); + if (ret == BZ_FINISH_OK) goto output_overflow; + if (ret != BZ_STREAM_END) goto errhandler; + + /* normal termination */ + *destLen -= strm.avail_out; + BZ2_bzCompressEnd(&strm); + return BZ_OK; + + output_overflow: + BZ2_bzCompressEnd(&strm); + return BZ_OUTBUFF_FULL; + + errhandler: + BZ2_bzCompressEnd(&strm); + return ret; +} +#endif + +/*-------------------------------------------------------------*/ +/*--- end bzlib.c ---*/ +/*-------------------------------------------------------------*/ diff --git a/busybox-1_37_0/archival/libarchive/bz/bzlib.h b/busybox-1_37_0/archival/libarchive/bz/bzlib.h new file mode 100644 index 000000000..1bb811c4a --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/bz/bzlib.h @@ -0,0 +1,65 @@ +/* + * bzip2 is written by Julian Seward . + * Adapted for busybox by Denys Vlasenko . + * See README and LICENSE files in this directory for more information. + */ + +/*-------------------------------------------------------------*/ +/*--- Public header file for the library. ---*/ +/*--- bzlib.h ---*/ +/*-------------------------------------------------------------*/ + +/* ------------------------------------------------------------------ +This file is part of bzip2/libbzip2, a program and library for +lossless, block-sorting data compression. + +bzip2/libbzip2 version 1.0.4 of 20 December 2006 +Copyright (C) 1996-2006 Julian Seward + +Please read the WARNING, DISCLAIMER and PATENTS sections in the +README file. + +This program is released under the terms of the license contained +in the file LICENSE. +------------------------------------------------------------------ */ + +#define BZ_RUN 0 +#define BZ_FLUSH 1 +#define BZ_FINISH 2 + +#define BZ_OK 0 +#define BZ_RUN_OK 1 +#define BZ_FLUSH_OK 2 +#define BZ_FINISH_OK 3 +#define BZ_STREAM_END 4 +#define BZ_SEQUENCE_ERROR (-1) +#define BZ_PARAM_ERROR (-2) +#define BZ_MEM_ERROR (-3) +#define BZ_DATA_ERROR (-4) +#define BZ_DATA_ERROR_MAGIC (-5) +#define BZ_IO_ERROR (-6) +#define BZ_UNEXPECTED_EOF (-7) +#define BZ_OUTBUFF_FULL (-8) +#define BZ_CONFIG_ERROR (-9) + +typedef struct bz_stream { + void *state; + char *next_in; + char *next_out; + unsigned avail_in; + unsigned avail_out; + /*unsigned long long total_in;*/ + unsigned long long total_out; +} bz_stream; + +/*-- Core (low-level) library functions --*/ + +static void BZ2_bzCompressInit(bz_stream *strm, int blockSize100k); +static int BZ2_bzCompress(bz_stream *strm, int action); +#if ENABLE_FEATURE_CLEAN_UP +static void BZ2_bzCompressEnd(bz_stream *strm); +#endif + +/*-------------------------------------------------------------*/ +/*--- end bzlib.h ---*/ +/*-------------------------------------------------------------*/ diff --git a/busybox-1_37_0/archival/libarchive/bz/bzlib_private.h b/busybox-1_37_0/archival/libarchive/bz/bzlib_private.h new file mode 100644 index 000000000..650444a5c --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/bz/bzlib_private.h @@ -0,0 +1,226 @@ +/* + * bzip2 is written by Julian Seward . + * Adapted for busybox by Denys Vlasenko . + * See README and LICENSE files in this directory for more information. + */ + +/*-------------------------------------------------------------*/ +/*--- Private header file for the library. ---*/ +/*--- bzlib_private.h ---*/ +/*-------------------------------------------------------------*/ + +/* ------------------------------------------------------------------ +This file is part of bzip2/libbzip2, a program and library for +lossless, block-sorting data compression. + +bzip2/libbzip2 version 1.0.4 of 20 December 2006 +Copyright (C) 1996-2006 Julian Seward + +Please read the WARNING, DISCLAIMER and PATENTS sections in the +README file. + +This program is released under the terms of the license contained +in the file LICENSE. +------------------------------------------------------------------ */ + +/* #include "bzlib.h" */ + +/*-- General stuff. --*/ + +typedef unsigned char Bool; + +#define True ((Bool)1) +#define False ((Bool)0) + +#if BZ_LIGHT_DEBUG +static void bz_assert_fail(int errcode) NORETURN; +#define AssertH(cond, errcode) \ +do { \ + if (!(cond)) \ + bz_assert_fail(errcode); \ +} while (0) +#else +#define AssertH(cond, msg) do { } while (0) +#endif + +#if BZ_DEBUG +#define AssertD(cond, msg) \ +do { \ + if (!(cond)) \ + bb_error_msg_and_die("(debug build): internal error %s", msg); \ +} while (0) +#else +#define AssertD(cond, msg) do { } while (0) +#endif + + +/*-- Header bytes. --*/ + +#define BZ_HDR_B 0x42 /* 'B' */ +#define BZ_HDR_Z 0x5a /* 'Z' */ +#define BZ_HDR_h 0x68 /* 'h' */ +#define BZ_HDR_0 0x30 /* '0' */ + +#define BZ_HDR_BZh0 0x425a6830 + +/*-- Constants for the back end. --*/ + +#define BZ_MAX_ALPHA_SIZE 258 +#define BZ_MAX_CODE_LEN 23 + +#define BZ_RUNA 0 +#define BZ_RUNB 1 + +#define BZ_N_GROUPS 6 +#define BZ_G_SIZE 50 +#define BZ_N_ITERS 4 + +#define BZ_MAX_SELECTORS (2 + (900000 / BZ_G_SIZE)) + + +/*-- Stuff for doing CRCs. --*/ + +#define BZ_INITIALISE_CRC(crcVar) \ +{ \ + crcVar = 0xffffffffL; \ +} + +#define BZ_FINALISE_CRC(crcVar) \ +{ \ + crcVar = ~(crcVar); \ +} + +#define BZ_UPDATE_CRC(s, crcVar, cha) \ +{ \ + crcVar = (crcVar << 8) ^ s->crc32table[(crcVar >> 24) ^ ((uint8_t)cha)]; \ +} + + +/*-- States and modes for compression. --*/ + +#define BZ_M_IDLE 1 +#define BZ_M_RUNNING 2 +#define BZ_M_FLUSHING 3 +#define BZ_M_FINISHING 4 + +#define BZ_S_OUTPUT 1 +#define BZ_S_INPUT 2 + +#define BZ_N_RADIX 2 +#define BZ_N_QSORT 12 +#define BZ_N_SHELL 18 +#define BZ_N_OVERSHOOT (BZ_N_RADIX + BZ_N_QSORT + BZ_N_SHELL + 2) + + +/*-- Structure holding all the compression-side stuff. --*/ + +typedef struct EState { + /* pointer back to the struct bz_stream */ + bz_stream *strm; + + /* mode this stream is in, and whether inputting */ + /* or outputting data */ + uint8_t mode; + uint8_t state; + + /* misc administratium */ + uint8_t blockSize100k; + + /* remembers avail_in when flush/finish requested */ +/* bbox: not needed, strm->avail_in always has the same value */ +/* commented out with '//#' throughout the code */ + /* uint32_t avail_in_expect; */ + + /* for doing the block sorting */ + uint32_t *arr1; + uint32_t *arr2; + //uint32_t *ftab; //moved into this struct, see below + + uint16_t *quadrant; + int32_t budget; + + /* aliases for arr1 and arr2 */ + uint32_t *ptr; + uint8_t *block; + uint16_t *mtfv; + uint8_t *zbits; + + /* run-length-encoding of the input */ + uint32_t state_in_ch; + int32_t state_in_len; + + /* input and output limits and current posns */ + int32_t nblock; + int32_t nblockMAX; + //int32_t numZ; // index into s->zbits[], replaced by pointer: + uint8_t *posZ; + uint8_t *state_out_pos; + + /* the buffer for bit stream creation */ + uint32_t bsBuff; + int32_t bsLive; + + /* block and combined CRCs */ + uint32_t blockCRC; + uint32_t combinedCRC; + + /* misc administratium */ + int32_t blockNo; + + /* stuff for coding the MTF values */ + int32_t nMTF; + + /* map of bytes used in block */ + int32_t nInUse; + Bool inUse[256] ALIGNED(sizeof(long)); + uint8_t unseqToSeq[256]; + + /* stuff for coding the MTF values */ + int32_t mtfFreq [BZ_MAX_ALPHA_SIZE]; + uint8_t selector [BZ_MAX_SELECTORS]; + uint8_t selectorMtf[BZ_MAX_SELECTORS]; + + uint8_t len[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; + + /* guess what */ + uint32_t crc32table[256]; + + /* for doing the block sorting */ + uint32_t ftab[65537]; + + /* stack-saving measures: these can be local, but they are too big */ + int32_t sendMTFValues__code [BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; + int32_t sendMTFValues__rfreq[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; +#if BZIP2_SPEED >= 5 + /* second dimension: only 3 needed; 4 makes index calculations faster */ + uint32_t sendMTFValues__len_pack[BZ_MAX_ALPHA_SIZE][4]; +#endif + int32_t BZ2_hbMakeCodeLengths__heap [BZ_MAX_ALPHA_SIZE + 2]; + int32_t BZ2_hbMakeCodeLengths__weight[BZ_MAX_ALPHA_SIZE * 2]; + int32_t BZ2_hbMakeCodeLengths__parent[BZ_MAX_ALPHA_SIZE * 2]; + + int32_t mainSort__copyStart[256]; + int32_t mainSort__copyEnd[256]; +} EState; + + +/*-- compression. --*/ + +static int32_t +BZ2_blockSort(EState*); + +static void +BZ2_compressBlock(EState*, int); + +static void +BZ2_bsInitWrite(EState*); + +static void +BZ2_hbAssignCodes(int32_t*, uint8_t*, int32_t, int32_t, int32_t); + +static void +BZ2_hbMakeCodeLengths(EState*, uint8_t*, int32_t*, int32_t, int32_t); + +/*-------------------------------------------------------------*/ +/*--- end bzlib_private.h ---*/ +/*-------------------------------------------------------------*/ diff --git a/busybox-1_37_0/archival/libarchive/bz/compress.c b/busybox-1_37_0/archival/libarchive/bz/compress.c new file mode 100644 index 000000000..539ab927e --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/bz/compress.c @@ -0,0 +1,752 @@ +/* + * bzip2 is written by Julian Seward . + * Adapted for busybox by Denys Vlasenko . + * See README and LICENSE files in this directory for more information. + */ + +/*-------------------------------------------------------------*/ +/*--- Compression machinery (not incl block sorting) ---*/ +/*--- compress.c ---*/ +/*-------------------------------------------------------------*/ + +/* ------------------------------------------------------------------ +This file is part of bzip2/libbzip2, a program and library for +lossless, block-sorting data compression. + +bzip2/libbzip2 version 1.0.4 of 20 December 2006 +Copyright (C) 1996-2006 Julian Seward + +Please read the WARNING, DISCLAIMER and PATENTS sections in the +README file. + +This program is released under the terms of the license contained +in the file LICENSE. +------------------------------------------------------------------ */ + +/* CHANGES + * 0.9.0 -- original version. + * 0.9.0a/b -- no changes in this file. + * 0.9.0c -- changed setting of nGroups in sendMTFValues() + * so as to do a bit better on small files +*/ + +/* #include "bzlib_private.h" */ + +#if BZIP2_SPEED >= 5 +# define ALWAYS_INLINE_5 ALWAYS_INLINE +#else +# define ALWAYS_INLINE_5 /*nothing*/ +#endif + +/*---------------------------------------------------*/ +/*--- Bit stream I/O ---*/ +/*---------------------------------------------------*/ + +/*---------------------------------------------------*/ +static +void BZ2_bsInitWrite(EState* s) +{ + s->bsLive = 0; + s->bsBuff = 0; +} + + +/*---------------------------------------------------*/ +static NOINLINE +void bsFinishWrite(EState* s) +{ + while (s->bsLive > 0) { + *s->posZ++ = (uint8_t)(s->bsBuff >> 24); + s->bsBuff <<= 8; + s->bsLive -= 8; + } +} + + +/*---------------------------------------------------*/ +static +/* Helps only on level 5, on other levels hurts. ? */ +ALWAYS_INLINE_5 +void bsW(EState* s, int32_t n, uint32_t v) +{ + while (s->bsLive >= 8) { + *s->posZ++ = (uint8_t)(s->bsBuff >> 24); + s->bsBuff <<= 8; + s->bsLive -= 8; + } + s->bsBuff |= (v << (32 - s->bsLive - n)); + s->bsLive += n; +} +/* Same with n == 16: */ +static +ALWAYS_INLINE_5 +void bsW16(EState* s, uint32_t v) +{ + while (s->bsLive >= 8) { + *s->posZ++ = (uint8_t)(s->bsBuff >> 24); + s->bsBuff <<= 8; + s->bsLive -= 8; + } + s->bsBuff |= (v << (16 - s->bsLive)); + s->bsLive += 16; +} +/* Same with n == 1: */ +static +ALWAYS_INLINE /* one callsite */ +void bsW1_1(EState* s) +{ + /* need space for only 1 bit, no need for loop freeing > 8 bits */ + if (s->bsLive >= 8) { + *s->posZ++ = (uint8_t)(s->bsBuff >> 24); + s->bsBuff <<= 8; + s->bsLive -= 8; + } + s->bsBuff |= (1 << (31 - s->bsLive)); + s->bsLive += 1; +} +static +ALWAYS_INLINE_5 +void bsW1_0(EState* s) +{ + /* need space for only 1 bit, no need for loop freeing > 8 bits */ + if (s->bsLive >= 8) { + *s->posZ++ = (uint8_t)(s->bsBuff >> 24); + s->bsBuff <<= 8; + s->bsLive -= 8; + } + //s->bsBuff |= (0 << (31 - s->bsLive)); + s->bsLive += 1; +} + + +/*---------------------------------------------------*/ +static ALWAYS_INLINE +void bsPutU16(EState* s, unsigned u) +{ + bsW16(s, u); +} + + +/*---------------------------------------------------*/ +static +void bsPutU32(EState* s, unsigned u) +{ + //bsW(s, 32, u); // can't use: may try "uint32 << -n" + bsW16(s, (u >> 16) & 0xffff); + bsW16(s, u & 0xffff); +} + + +/*---------------------------------------------------*/ +/*--- The back end proper ---*/ +/*---------------------------------------------------*/ + +/*---------------------------------------------------*/ +static +void makeMaps_e(EState* s) +{ + int i; + unsigned cnt = 0; + for (i = 0; i < 256; i++) { + if (s->inUse[i]) { + s->unseqToSeq[i] = cnt; + cnt++; + } + } + s->nInUse = cnt; +} + + +/*---------------------------------------------------*/ +/* + * This bit of code is performance-critical. + * On 32bit x86, gcc-6.3.0 was observed to spill ryy_j to stack, + * resulting in abysmal performance (x3 slowdown). + * Forcing it into a separate function alleviates register pressure, + * and spillage no longer happens. + * Other versions of gcc do not exhibit this problem, but out-of-line code + * seems to be helping them too (code is both smaller and faster). + * Therefore NOINLINE is enabled for the entire 32bit x86 arch for now, + * without a check for gcc version. + */ +static +#if defined __i386__ +NOINLINE +#endif +int inner_loop(uint8_t *yy, uint8_t ll_i) +{ + register uint8_t rtmp; + register uint8_t* ryy_j; + rtmp = yy[1]; + yy[1] = yy[0]; + ryy_j = &(yy[1]); + while (ll_i != rtmp) { + register uint8_t rtmp2; + ryy_j++; + rtmp2 = rtmp; + rtmp = *ryy_j; + *ryy_j = rtmp2; + } + yy[0] = rtmp; + return ryy_j - &(yy[0]); +} +static NOINLINE +void generateMTFValues(EState* s) +{ + uint8_t yy[256]; + int i; + int zPend; + int32_t wr; + + /* + * After sorting (eg, here), + * s->arr1[0 .. s->nblock-1] holds sorted order, + * and + * ((uint8_t*)s->arr2)[0 .. s->nblock-1] + * holds the original block data. + * + * The first thing to do is generate the MTF values, + * and put them in ((uint16_t*)s->arr1)[0 .. s->nblock-1]. + * + * Because there are strictly fewer or equal MTF values + * than block values, ptr values in this area are overwritten + * with MTF values only when they are no longer needed. + * + * The final compressed bitstream is generated into the + * area starting at &((uint8_t*)s->arr2)[s->nblock] + * + * These storage aliases are set up in bzCompressInit(), + * except for the last one, which is arranged in + * compressBlock(). + */ + uint32_t* ptr = s->ptr; + + makeMaps_e(s); + + wr = 0; + zPend = 0; + for (i = 0; i <= s->nInUse+1; i++) + s->mtfFreq[i] = 0; + + for (i = 0; i < s->nInUse; i++) + yy[i] = (uint8_t) i; + + for (i = 0; i < s->nblock; i++) { + uint8_t ll_i = ll_i; /* gcc 4.3.1 thinks it may be used w/o init */ + int32_t j; + + AssertD(wr <= i, "generateMTFValues(1)"); + j = ptr[i] - 1; + if (j < 0) + j += s->nblock; + ll_i = s->unseqToSeq[s->block[j]]; + AssertD(ll_i < s->nInUse, "generateMTFValues(2a)"); + + if (yy[0] == ll_i) { + zPend++; + continue; + } + + if (zPend > 0) { + process_zPend: + zPend--; + while (1) { +#if 0 + if (zPend & 1) { + s->mtfv[wr] = BZ_RUNB; wr++; + s->mtfFreq[BZ_RUNB]++; + } else { + s->mtfv[wr] = BZ_RUNA; wr++; + s->mtfFreq[BZ_RUNA]++; + } +#else /* same as above, since BZ_RUNA is 0 and BZ_RUNB is 1 */ + unsigned run = zPend & 1; + s->mtfv[wr] = run; + wr++; + s->mtfFreq[run]++; +#endif + zPend -= 2; + if (zPend < 0) + break; + zPend = (unsigned)zPend / 2; + /* bbox: unsigned div is easier */ + } + if (i < 0) /* came via "goto process_zPend"? exit */ + goto end; + zPend = 0; + } + j = inner_loop(yy, ll_i); + s->mtfv[wr] = j+1; + wr++; + s->mtfFreq[j+1]++; + } + + i = -1; + if (zPend > 0) + goto process_zPend; /* "process it and come back here" */ + end: + s->mtfv[wr] = s->nInUse+1; + wr++; + s->mtfFreq[s->nInUse+1]++; + + s->nMTF = wr; +} + + +/*---------------------------------------------------*/ +#define BZ_LESSER_ICOST 0 +#define BZ_GREATER_ICOST 15 + +static NOINLINE +void sendMTFValues(EState* s) +{ + int32_t t, i; + unsigned iter; + unsigned gs; + int32_t alphaSize; + unsigned nSelectors, selCtr; + int32_t nGroups; + + /* + * uint8_t len[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; + * is a global since the decoder also needs it. + * + * int32_t code[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; + * int32_t rfreq[BZ_N_GROUPS][BZ_MAX_ALPHA_SIZE]; + * are also globals only used in this proc. + * Made global to keep stack frame size small. + */ +#define code sendMTFValues__code +#define rfreq sendMTFValues__rfreq +#define len_pack sendMTFValues__len_pack + + unsigned /*uint16_t*/ cost[BZ_N_GROUPS]; + + uint16_t* mtfv = s->mtfv; + + alphaSize = s->nInUse + 2; + for (t = 0; t < BZ_N_GROUPS; t++) { + unsigned v; + for (v = 0; v < alphaSize; v++) + s->len[t][v] = BZ_GREATER_ICOST; + } + + /*--- Decide how many coding tables to use ---*/ + AssertH(s->nMTF > 0, 3001); + // 1..199 = 2 + // 200..599 = 3 + // 600..1199 = 4 + // 1200..2399 = 5 + // 2400..99999 = 6 + nGroups = 2; + nGroups += (s->nMTF >= 200); + nGroups += (s->nMTF >= 600); + nGroups += (s->nMTF >= 1200); + nGroups += (s->nMTF >= 2400); + + /*--- Generate an initial set of coding tables ---*/ + { + unsigned nPart, remF; + + nPart = nGroups; + remF = s->nMTF; + gs = 0; + while (nPart > 0) { + unsigned v; + unsigned ge; + unsigned tFreq, aFreq; + + tFreq = remF / nPart; + ge = gs; + aFreq = 0; + while (aFreq < tFreq && ge < alphaSize) { + aFreq += s->mtfFreq[ge++]; + } + ge--; + + if (ge > gs + && nPart != nGroups && nPart != 1 + && ((nGroups - nPart) % 2 == 1) /* bbox: can this be replaced by x & 1? */ + ) { + aFreq -= s->mtfFreq[ge]; + ge--; + } + + for (v = 0; v < alphaSize; v++) + if (v >= gs && v <= ge) + s->len[nPart-1][v] = BZ_LESSER_ICOST; + else + s->len[nPart-1][v] = BZ_GREATER_ICOST; + + nPart--; + gs = ge + 1; + remF -= aFreq; + } + } + + /* + * Iterate up to BZ_N_ITERS times to improve the tables. + */ + for (iter = 0; iter < BZ_N_ITERS; iter++) { + for (t = 0; t < nGroups; t++) { + unsigned v; + for (v = 0; v < alphaSize; v++) + s->rfreq[t][v] = 0; + } + +#if BZIP2_SPEED >= 5 + /* + * Set up an auxiliary length table which is used to fast-track + * the common case (nGroups == 6). + */ + if (nGroups == 6) { + unsigned v; + for (v = 0; v < alphaSize; v++) { + s->len_pack[v][0] = (s->len[1][v] << 16) | s->len[0][v]; + s->len_pack[v][1] = (s->len[3][v] << 16) | s->len[2][v]; + s->len_pack[v][2] = (s->len[5][v] << 16) | s->len[4][v]; + } + } +#endif + nSelectors = 0; + gs = 0; + while (1) { + unsigned ge; + unsigned bt, bc; + + /*--- Set group start & end marks. --*/ + if (gs >= s->nMTF) + break; + ge = gs + BZ_G_SIZE - 1; + if (ge >= s->nMTF) + ge = s->nMTF-1; + + /* + * Calculate the cost of this group as coded + * by each of the coding tables. + */ + for (t = 0; t < nGroups; t++) + cost[t] = 0; +#if BZIP2_SPEED >= 5 + if (nGroups == 6 && 50 == ge-gs+1) { + /*--- fast track the common case ---*/ + register uint32_t cost01, cost23, cost45; + register uint16_t icv; + cost01 = cost23 = cost45 = 0; +#define BZ_ITER(nn) \ + icv = mtfv[gs+(nn)]; \ + cost01 += s->len_pack[icv][0]; \ + cost23 += s->len_pack[icv][1]; \ + cost45 += s->len_pack[icv][2]; + BZ_ITER(0); BZ_ITER(1); BZ_ITER(2); BZ_ITER(3); BZ_ITER(4); + BZ_ITER(5); BZ_ITER(6); BZ_ITER(7); BZ_ITER(8); BZ_ITER(9); + BZ_ITER(10); BZ_ITER(11); BZ_ITER(12); BZ_ITER(13); BZ_ITER(14); + BZ_ITER(15); BZ_ITER(16); BZ_ITER(17); BZ_ITER(18); BZ_ITER(19); + BZ_ITER(20); BZ_ITER(21); BZ_ITER(22); BZ_ITER(23); BZ_ITER(24); + BZ_ITER(25); BZ_ITER(26); BZ_ITER(27); BZ_ITER(28); BZ_ITER(29); + BZ_ITER(30); BZ_ITER(31); BZ_ITER(32); BZ_ITER(33); BZ_ITER(34); + BZ_ITER(35); BZ_ITER(36); BZ_ITER(37); BZ_ITER(38); BZ_ITER(39); + BZ_ITER(40); BZ_ITER(41); BZ_ITER(42); BZ_ITER(43); BZ_ITER(44); + BZ_ITER(45); BZ_ITER(46); BZ_ITER(47); BZ_ITER(48); BZ_ITER(49); +#undef BZ_ITER + cost[0] = cost01 & 0xffff; cost[1] = cost01 >> 16; + cost[2] = cost23 & 0xffff; cost[3] = cost23 >> 16; + cost[4] = cost45 & 0xffff; cost[5] = cost45 >> 16; + } else +#endif + { + /*--- slow version which correctly handles all situations ---*/ + for (i = gs; i <= ge; i++) { + unsigned /*uint16_t*/ icv = mtfv[i]; + for (t = 0; t < nGroups; t++) + cost[t] += s->len[t][icv]; + } + } + /* + * Find the coding table which is best for this group, + * and record its identity in the selector table. + */ + /*bc = 999999999;*/ + /*bt = -1;*/ + bc = cost[0]; + bt = 0; + for (t = 1 /*0*/; t < nGroups; t++) { + if (cost[t] < bc) { + bc = cost[t]; + bt = t; + } + } + s->selector[nSelectors] = bt; + nSelectors++; + + /* + * Increment the symbol frequencies for the selected table. + */ +/* 1% faster compress. +800 bytes */ +#if BZIP2_SPEED >= 4 + if (nGroups == 6 && 50 == ge-gs+1) { + /*--- fast track the common case ---*/ +#define BZ_ITUR(nn) s->rfreq[bt][mtfv[gs + (nn)]]++ + BZ_ITUR(0); BZ_ITUR(1); BZ_ITUR(2); BZ_ITUR(3); BZ_ITUR(4); + BZ_ITUR(5); BZ_ITUR(6); BZ_ITUR(7); BZ_ITUR(8); BZ_ITUR(9); + BZ_ITUR(10); BZ_ITUR(11); BZ_ITUR(12); BZ_ITUR(13); BZ_ITUR(14); + BZ_ITUR(15); BZ_ITUR(16); BZ_ITUR(17); BZ_ITUR(18); BZ_ITUR(19); + BZ_ITUR(20); BZ_ITUR(21); BZ_ITUR(22); BZ_ITUR(23); BZ_ITUR(24); + BZ_ITUR(25); BZ_ITUR(26); BZ_ITUR(27); BZ_ITUR(28); BZ_ITUR(29); + BZ_ITUR(30); BZ_ITUR(31); BZ_ITUR(32); BZ_ITUR(33); BZ_ITUR(34); + BZ_ITUR(35); BZ_ITUR(36); BZ_ITUR(37); BZ_ITUR(38); BZ_ITUR(39); + BZ_ITUR(40); BZ_ITUR(41); BZ_ITUR(42); BZ_ITUR(43); BZ_ITUR(44); + BZ_ITUR(45); BZ_ITUR(46); BZ_ITUR(47); BZ_ITUR(48); BZ_ITUR(49); +#undef BZ_ITUR + gs = ge + 1; + } else +#endif + { + /*--- slow version which correctly handles all situations ---*/ + while (gs <= ge) { + s->rfreq[bt][mtfv[gs]]++; + gs++; + } + /* already is: gs = ge + 1; */ + } + } + + /* + * Recompute the tables based on the accumulated frequencies. + */ + /* maxLen was changed from 20 to 17 in bzip2-1.0.3. See + * comment in huffman.c for details. */ + for (t = 0; t < nGroups; t++) + BZ2_hbMakeCodeLengths(s, &(s->len[t][0]), &(s->rfreq[t][0]), alphaSize, 17 /*20*/); + } + + AssertH(nGroups < 8, 3002); + AssertH(nSelectors < 32768 && nSelectors <= (2 + (900000 / BZ_G_SIZE)), 3003); + + /*--- Compute MTF values for the selectors. ---*/ + { + uint8_t pos[BZ_N_GROUPS], ll_i, tmp2, tmp; + + for (i = 0; i < nGroups; i++) + pos[i] = i; + for (i = 0; i < nSelectors; i++) { + unsigned j; + ll_i = s->selector[i]; + j = 0; + tmp = pos[j]; + while (ll_i != tmp) { + j++; + tmp2 = tmp; + tmp = pos[j]; + pos[j] = tmp2; + } + pos[0] = tmp; + s->selectorMtf[i] = j; + } + } + + /*--- Assign actual codes for the tables. --*/ + for (t = 0; t < nGroups; t++) { + unsigned minLen = 32; //todo: s->len[t][0]; + unsigned maxLen = 0; //todo: s->len[t][0]; + for (i = 0; i < alphaSize; i++) { + if (s->len[t][i] > maxLen) maxLen = s->len[t][i]; + if (s->len[t][i] < minLen) minLen = s->len[t][i]; + } + AssertH(!(maxLen > 17 /*20*/), 3004); + AssertH(!(minLen < 1), 3005); + BZ2_hbAssignCodes(&(s->code[t][0]), &(s->len[t][0]), minLen, maxLen, alphaSize); + } + + /*--- Transmit the mapping table. ---*/ + { + /* bbox: optimized a bit more than in bzip2 */ + int inUse16 = 0; + for (i = 0; i < 16; i++) { + if (sizeof(long) <= 4) { + inUse16 = inUse16*2 + + ((*(bb__aliased_uint32_t*)&(s->inUse[i * 16 + 0]) + | *(bb__aliased_uint32_t*)&(s->inUse[i * 16 + 4]) + | *(bb__aliased_uint32_t*)&(s->inUse[i * 16 + 8]) + | *(bb__aliased_uint32_t*)&(s->inUse[i * 16 + 12])) != 0); + } else { /* Our CPU can do better */ + inUse16 = inUse16*2 + + ((*(bb__aliased_uint64_t*)&(s->inUse[i * 16 + 0]) + | *(bb__aliased_uint64_t*)&(s->inUse[i * 16 + 8])) != 0); + } + } + + bsW16(s, inUse16); + + inUse16 <<= (sizeof(int)*8 - 16); /* move 15th bit into sign bit */ + for (i = 0; i < 16; i++) { + if (inUse16 < 0) { + unsigned v16 = 0; + unsigned j; + for (j = 0; j < 16; j++) + v16 = v16*2 + s->inUse[i * 16 + j]; + bsW16(s, v16); + } + inUse16 <<= 1; + } + } + + /*--- Now the selectors. ---*/ + bsW(s, 3, nGroups); + bsW(s, 15, nSelectors); + for (i = 0; i < nSelectors; i++) { + unsigned j; + for (j = 0; j < s->selectorMtf[i]; j++) + bsW1_1(s); + bsW1_0(s); + } + + /*--- Now the coding tables. ---*/ + for (t = 0; t < nGroups; t++) { + unsigned curr = s->len[t][0]; + bsW(s, 5, curr); + for (i = 0; i < alphaSize; i++) { + while (curr < s->len[t][i]) { bsW(s, 2, 2); curr++; /* 10 */ } + while (curr > s->len[t][i]) { bsW(s, 2, 3); curr--; /* 11 */ } + bsW1_0(s); + } + } + + /*--- And finally, the block data proper ---*/ + selCtr = 0; + gs = 0; + while (1) { + unsigned ge; + + if (gs >= s->nMTF) + break; + ge = gs + BZ_G_SIZE - 1; + if (ge >= s->nMTF) + ge = s->nMTF-1; + AssertH(s->selector[selCtr] < nGroups, 3006); + +/* Costs 1300 bytes and is _slower_ (on Intel Core 2) */ +#if 0 + if (nGroups == 6 && 50 == ge-gs+1) { + /*--- fast track the common case ---*/ + uint16_t mtfv_i; + uint8_t* s_len_sel_selCtr = &(s->len[s->selector[selCtr]][0]); + int32_t* s_code_sel_selCtr = &(s->code[s->selector[selCtr]][0]); +#define BZ_ITAH(nn) \ + mtfv_i = mtfv[gs+(nn)]; \ + bsW(s, s_len_sel_selCtr[mtfv_i], s_code_sel_selCtr[mtfv_i]) + BZ_ITAH(0); BZ_ITAH(1); BZ_ITAH(2); BZ_ITAH(3); BZ_ITAH(4); + BZ_ITAH(5); BZ_ITAH(6); BZ_ITAH(7); BZ_ITAH(8); BZ_ITAH(9); + BZ_ITAH(10); BZ_ITAH(11); BZ_ITAH(12); BZ_ITAH(13); BZ_ITAH(14); + BZ_ITAH(15); BZ_ITAH(16); BZ_ITAH(17); BZ_ITAH(18); BZ_ITAH(19); + BZ_ITAH(20); BZ_ITAH(21); BZ_ITAH(22); BZ_ITAH(23); BZ_ITAH(24); + BZ_ITAH(25); BZ_ITAH(26); BZ_ITAH(27); BZ_ITAH(28); BZ_ITAH(29); + BZ_ITAH(30); BZ_ITAH(31); BZ_ITAH(32); BZ_ITAH(33); BZ_ITAH(34); + BZ_ITAH(35); BZ_ITAH(36); BZ_ITAH(37); BZ_ITAH(38); BZ_ITAH(39); + BZ_ITAH(40); BZ_ITAH(41); BZ_ITAH(42); BZ_ITAH(43); BZ_ITAH(44); + BZ_ITAH(45); BZ_ITAH(46); BZ_ITAH(47); BZ_ITAH(48); BZ_ITAH(49); +#undef BZ_ITAH + gs = ge+1; + } else +#endif + { + /*--- slow version which correctly handles all situations ---*/ + /* code is bit bigger, but moves multiply out of the loop */ + uint8_t* s_len_sel_selCtr = &(s->len [s->selector[selCtr]][0]); + int32_t* s_code_sel_selCtr = &(s->code[s->selector[selCtr]][0]); + while (gs <= ge) { + bsW(s, + s_len_sel_selCtr[mtfv[gs]], + s_code_sel_selCtr[mtfv[gs]] + ); + gs++; + } + /* already is: gs = ge+1; */ + } + selCtr++; + } + AssertH(selCtr == nSelectors, 3007); +#undef code +#undef rfreq +#undef len_pack +} + + +/*---------------------------------------------------*/ +static +void BZ2_compressBlock(EState* s, int is_last_block) +{ + int32_t origPtr = origPtr; + + if (s->nblock > 0) { + BZ_FINALISE_CRC(s->blockCRC); + s->combinedCRC = (s->combinedCRC << 1) | (s->combinedCRC >> 31); + s->combinedCRC ^= s->blockCRC; + if (s->blockNo > 1) + s->posZ = s->zbits; // was: s->numZ = 0; + + origPtr = BZ2_blockSort(s); + } + + s->zbits = &((uint8_t*)s->arr2)[s->nblock]; + s->posZ = s->zbits; + s->state_out_pos = s->zbits; + + /*-- If this is the first block, create the stream header. --*/ + if (s->blockNo == 1) { + BZ2_bsInitWrite(s); + /*bsPutU8(s, BZ_HDR_B);*/ + /*bsPutU8(s, BZ_HDR_Z);*/ + /*bsPutU8(s, BZ_HDR_h);*/ + /*bsPutU8(s, BZ_HDR_0 + s->blockSize100k);*/ + bsPutU32(s, BZ_HDR_BZh0 + s->blockSize100k); + } + + if (s->nblock > 0) { + /*bsPutU8(s, 0x31);*/ + /*bsPutU8(s, 0x41);*/ + /*bsPutU8(s, 0x59);*/ + /*bsPutU8(s, 0x26);*/ + bsPutU32(s, 0x31415926); + /*bsPutU8(s, 0x53);*/ + /*bsPutU8(s, 0x59);*/ + bsPutU16(s, 0x5359); + + /*-- Now the block's CRC, so it is in a known place. --*/ + bsPutU32(s, s->blockCRC); + + /* + * Now a single bit indicating (non-)randomisation. + * As of version 0.9.5, we use a better sorting algorithm + * which makes randomisation unnecessary. So always set + * the randomised bit to 'no'. Of course, the decoder + * still needs to be able to handle randomised blocks + * so as to maintain backwards compatibility with + * older versions of bzip2. + */ + bsW1_0(s); + + bsW(s, 24, origPtr); + generateMTFValues(s); + sendMTFValues(s); + } + + /*-- If this is the last block, add the stream trailer. --*/ + if (is_last_block) { + /*bsPutU8(s, 0x17);*/ + /*bsPutU8(s, 0x72);*/ + /*bsPutU8(s, 0x45);*/ + /*bsPutU8(s, 0x38);*/ + bsPutU32(s, 0x17724538); + /*bsPutU8(s, 0x50);*/ + /*bsPutU8(s, 0x90);*/ + bsPutU16(s, 0x5090); + bsPutU32(s, s->combinedCRC); + bsFinishWrite(s); + } +} + + +/*-------------------------------------------------------------*/ +/*--- end compress.c ---*/ +/*-------------------------------------------------------------*/ diff --git a/busybox-1_37_0/archival/libarchive/bz/huffman.c b/busybox-1_37_0/archival/libarchive/bz/huffman.c new file mode 100644 index 000000000..dc851cd3f --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/bz/huffman.c @@ -0,0 +1,229 @@ +/* + * bzip2 is written by Julian Seward . + * Adapted for busybox by Denys Vlasenko . + * See README and LICENSE files in this directory for more information. + */ + +/*-------------------------------------------------------------*/ +/*--- Huffman coding low-level stuff ---*/ +/*--- huffman.c ---*/ +/*-------------------------------------------------------------*/ + +/* ------------------------------------------------------------------ +This file is part of bzip2/libbzip2, a program and library for +lossless, block-sorting data compression. + +bzip2/libbzip2 version 1.0.4 of 20 December 2006 +Copyright (C) 1996-2006 Julian Seward + +Please read the WARNING, DISCLAIMER and PATENTS sections in the +README file. + +This program is released under the terms of the license contained +in the file LICENSE. +------------------------------------------------------------------ */ + +/* #include "bzlib_private.h" */ + +/*---------------------------------------------------*/ +#define WEIGHTOF(zz0) ((zz0) & 0xffffff00) +#define DEPTHOF(zz1) ((zz1) & 0x000000ff) +#define MYMAX(zz2,zz3) ((zz2) > (zz3) ? (zz2) : (zz3)) + +#define ADDWEIGHTS(zw1,zw2) \ + (WEIGHTOF(zw1)+WEIGHTOF(zw2)) | \ + (1 + MYMAX(DEPTHOF(zw1),DEPTHOF(zw2))) + +#define UPHEAP(z) \ +{ \ + int32_t zz, tmp; \ + zz = z; \ + tmp = heap[zz]; \ + while (weight[tmp] < weight[heap[zz >> 1]]) { \ + heap[zz] = heap[zz >> 1]; \ + zz >>= 1; \ + } \ + heap[zz] = tmp; \ +} + + +/* 90 bytes, 0.3% of overall compress speed */ +#if BZIP2_SPEED >= 1 + +/* macro works better than inline (gcc 4.2.1) */ +#define DOWNHEAP1(heap, weight, Heap) \ +{ \ + int32_t zz, yy, tmp; \ + zz = 1; \ + tmp = heap[zz]; \ + while (1) { \ + yy = zz << 1; \ + if (yy > nHeap) \ + break; \ + if (yy < nHeap \ + && weight[heap[yy+1]] < weight[heap[yy]]) \ + yy++; \ + if (weight[tmp] < weight[heap[yy]]) \ + break; \ + heap[zz] = heap[yy]; \ + zz = yy; \ + } \ + heap[zz] = tmp; \ +} + +#else + +static +void DOWNHEAP1(int32_t *heap, int32_t *weight, int32_t nHeap) +{ + int32_t zz, yy, tmp; + zz = 1; + tmp = heap[zz]; + while (1) { + yy = zz << 1; + if (yy > nHeap) + break; + if (yy < nHeap + && weight[heap[yy + 1]] < weight[heap[yy]]) + yy++; + if (weight[tmp] < weight[heap[yy]]) + break; + heap[zz] = heap[yy]; + zz = yy; + } + heap[zz] = tmp; +} + +#endif + +/*---------------------------------------------------*/ +static +void BZ2_hbMakeCodeLengths(EState *s, + uint8_t *len, + int32_t *freq, + int32_t alphaSize, + int32_t maxLen) +{ + /* + * Nodes and heap entries run from 1. Entry 0 + * for both the heap and nodes is a sentinel. + */ + int32_t nNodes, nHeap, n1, n2, i, j, k; + Bool tooLong; + + /* bbox: moved to EState to save stack + int32_t heap [BZ_MAX_ALPHA_SIZE + 2]; + int32_t weight[BZ_MAX_ALPHA_SIZE * 2]; + int32_t parent[BZ_MAX_ALPHA_SIZE * 2]; + */ +#define heap (s->BZ2_hbMakeCodeLengths__heap) +#define weight (s->BZ2_hbMakeCodeLengths__weight) +#define parent (s->BZ2_hbMakeCodeLengths__parent) + + for (i = 0; i < alphaSize; i++) + weight[i+1] = (freq[i] == 0 ? 1 : freq[i]) << 8; + + while (1) { + nNodes = alphaSize; + nHeap = 0; + + heap[0] = 0; + weight[0] = 0; + parent[0] = -2; + + for (i = 1; i <= alphaSize; i++) { + parent[i] = -1; + nHeap++; + heap[nHeap] = i; + UPHEAP(nHeap); + } + + AssertH(nHeap < (BZ_MAX_ALPHA_SIZE+2), 2001); + + while (nHeap > 1) { + n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap); + n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; DOWNHEAP1(heap, weight, nHeap); + nNodes++; + parent[n1] = parent[n2] = nNodes; + weight[nNodes] = ADDWEIGHTS(weight[n1], weight[n2]); + parent[nNodes] = -1; + nHeap++; + heap[nHeap] = nNodes; + UPHEAP(nHeap); + } + + AssertH(nNodes < (BZ_MAX_ALPHA_SIZE * 2), 2002); + + tooLong = False; + for (i = 1; i <= alphaSize; i++) { + j = 0; + k = i; + while (parent[k] >= 0) { + k = parent[k]; + j++; + } + len[i-1] = j; + if (j > maxLen) + tooLong = True; + } + + if (!tooLong) + break; + + /* 17 Oct 04: keep-going condition for the following loop used + to be 'i < alphaSize', which missed the last element, + theoretically leading to the possibility of the compressor + looping. However, this count-scaling step is only needed if + one of the generated Huffman code words is longer than + maxLen, which up to and including version 1.0.2 was 20 bits, + which is extremely unlikely. In version 1.0.3 maxLen was + changed to 17 bits, which has minimal effect on compression + ratio, but does mean this scaling step is used from time to + time, enough to verify that it works. + + This means that bzip2-1.0.3 and later will only produce + Huffman codes with a maximum length of 17 bits. However, in + order to preserve backwards compatibility with bitstreams + produced by versions pre-1.0.3, the decompressor must still + handle lengths of up to 20. */ + + for (i = 1; i <= alphaSize; i++) { + j = weight[i] >> 8; + /* bbox: yes, it is a signed division. + * don't replace with shift! */ + j = 1 + (j / 2); + weight[i] = j << 8; + } + } +#undef heap +#undef weight +#undef parent +} + + +/*---------------------------------------------------*/ +static +void BZ2_hbAssignCodes(int32_t *code, + uint8_t *length, + int32_t minLen, + int32_t maxLen, + int32_t alphaSize) +{ + int32_t n, vec, i; + + vec = 0; + for (n = minLen; n <= maxLen; n++) { + for (i = 0; i < alphaSize; i++) { + if (length[i] == n) { + code[i] = vec; + vec++; + } + } + vec <<= 1; + } +} + + +/*-------------------------------------------------------------*/ +/*--- end huffman.c ---*/ +/*-------------------------------------------------------------*/ diff --git a/busybox-1_37_0/archival/libarchive/common.c b/busybox-1_37_0/archival/libarchive/common.c new file mode 100644 index 000000000..25c7bddad --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/common.c @@ -0,0 +1,8 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +const char cpio_TRAILER[] ALIGN1 = "TRAILER!!!"; diff --git a/busybox-1_37_0/archival/libarchive/data_align.c b/busybox-1_37_0/archival/libarchive/data_align.c new file mode 100644 index 000000000..f61fdd93f --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/data_align.c @@ -0,0 +1,14 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC data_align(archive_handle_t *archive_handle, unsigned boundary) +{ + unsigned skip_amount = (boundary - (archive_handle->offset % boundary)) % boundary; + + archive_handle->seek(archive_handle->src_fd, skip_amount); + archive_handle->offset += skip_amount; +} diff --git a/busybox-1_37_0/archival/libarchive/data_extract_all.c b/busybox-1_37_0/archival/libarchive/data_extract_all.c new file mode 100644 index 000000000..049c2c156 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/data_extract_all.c @@ -0,0 +1,259 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC data_extract_all(archive_handle_t *archive_handle) +{ + file_header_t *file_header = archive_handle->file_header; + int dst_fd; + int res; + char *hard_link; +#if ENABLE_FEATURE_TAR_LONG_OPTIONS + char *dst_name; +#else +# define dst_name (file_header->name) +#endif + +#if ENABLE_FEATURE_TAR_SELINUX + char *sctx = archive_handle->tar__sctx[PAX_NEXT_FILE]; + if (!sctx) + sctx = archive_handle->tar__sctx[PAX_GLOBAL]; + if (sctx) { /* setfscreatecon is 4 syscalls, avoid if possible */ + setfscreatecon(sctx); + free(archive_handle->tar__sctx[PAX_NEXT_FILE]); + archive_handle->tar__sctx[PAX_NEXT_FILE] = NULL; + } +#endif + + /* Hard links are encoded as regular files of size 0 + * with a nonempty link field */ + hard_link = NULL; + if (S_ISREG(file_header->mode) && file_header->size == 0) + hard_link = file_header->link_target; + +#if ENABLE_FEATURE_TAR_LONG_OPTIONS + dst_name = file_header->name; + if (archive_handle->tar__strip_components) { + unsigned n = archive_handle->tar__strip_components; + do { + dst_name = strchr(dst_name, '/'); + if (!dst_name || dst_name[1] == '\0') { + data_skip(archive_handle); + goto ret; + } + dst_name++; + /* + * Link target is shortened only for hardlinks: + * softlinks restored unchanged. + */ + if (hard_link) { +// GNU tar 1.26 does not check that we reached end of link name: +// if "dir/hardlink" is hardlinked to "file", +// tar xvf a.tar --strip-components=1 says: +// tar: hardlink: Cannot hard link to '': No such file or directory +// and continues processing. We silently skip such entries. + hard_link = strchr(hard_link, '/'); + if (!hard_link || hard_link[1] == '\0') { + data_skip(archive_handle); + goto ret; + } + hard_link++; + } + } while (--n != 0); + } +#endif + + if (archive_handle->ah_flags & ARCHIVE_CREATE_LEADING_DIRS) { + char *slash = strrchr(dst_name, '/'); + if (slash) { + *slash = '\0'; + bb_make_directory(dst_name, -1, FILEUTILS_RECUR); + *slash = '/'; + } + } + + if (archive_handle->ah_flags & ARCHIVE_UNLINK_OLD) { + /* Remove the entry if it exists */ + if (!S_ISDIR(file_header->mode)) { + if (hard_link) { + /* Ugly special case: + * tar cf t.tar hardlink1 hardlink2 hardlink1 + * results in this tarball structure: + * hardlink1 + * hardlink2 -> hardlink1 + * hardlink1 -> hardlink1 <== !!! + */ + if (strcmp(hard_link, dst_name) == 0) + goto ret; + } + /* Proceed with deleting */ + if (unlink(dst_name) == -1 + && errno != ENOENT + ) { + bb_perror_msg_and_die("can't remove old file %s", + dst_name); + } + } + } + else if (archive_handle->ah_flags & ARCHIVE_EXTRACT_NEWER) { + /* Remove the existing entry if its older than the extracted entry */ + struct stat existing_sb; + if (lstat(dst_name, &existing_sb) == -1) { + if (errno != ENOENT) { + bb_simple_perror_msg_and_die("can't stat old file"); + } + } + else if (existing_sb.st_mtime >= file_header->mtime) { + if (!S_ISDIR(file_header->mode)) { + bb_error_msg("%s not created: newer or " + "same age file exists", dst_name); + } + data_skip(archive_handle); + goto ret; + } + else if ((unlink(dst_name) == -1) && (errno != EISDIR)) { + bb_perror_msg_and_die("can't remove old file %s", + dst_name); + } + } + + /* Handle hard links separately */ + if (hard_link) { + create_or_remember_link(&archive_handle->link_placeholders, + hard_link, + dst_name, + 1); + /* Hardlinks have no separate mode/ownership, skip chown/chmod */ + goto ret; + } + + /* Create the filesystem entry */ + switch (file_header->mode & S_IFMT) { + case S_IFREG: { + /* Regular file */ + char *dst_nameN; + int flags = O_WRONLY | O_CREAT | O_EXCL; + if (archive_handle->ah_flags & ARCHIVE_O_TRUNC) + flags = O_WRONLY | O_CREAT | O_TRUNC; + dst_nameN = dst_name; +#ifdef ARCHIVE_REPLACE_VIA_RENAME + if (archive_handle->ah_flags & ARCHIVE_REPLACE_VIA_RENAME) + /* rpm-style temp file name */ + dst_nameN = xasprintf("%s;%x", dst_name, (int)getpid()); +#endif + dst_fd = xopen3(dst_nameN, + flags, + file_header->mode + ); + bb_copyfd_exact_size(archive_handle->src_fd, dst_fd, file_header->size); + close(dst_fd); +#ifdef ARCHIVE_REPLACE_VIA_RENAME + if (archive_handle->ah_flags & ARCHIVE_REPLACE_VIA_RENAME) { + xrename(dst_nameN, dst_name); + free(dst_nameN); + } +#endif + break; + } + case S_IFDIR: +//TODO: this causes problems if tarball contains a r-xr-xr-x directory: +// we create this directory, and then fail to create files inside it +// (if tar xf isn't run as root). +// GNU tar works around this by chmod-ing directories *after* all files are extracted. + res = mkdir(dst_name, file_header->mode); + if ((res != 0) + && (errno != EISDIR) /* btw, Linux doesn't return this */ + && (errno != EEXIST) + ) { + bb_perror_msg("can't make dir %s", dst_name); + } + break; + case S_IFLNK: + /* Symlink */ +//TODO: what if file_header->link_target == NULL (say, corrupted tarball?) + + /* To avoid a directory traversal attack via symlinks, + * do not restore symlinks with ".." components + * or symlinks starting with "/", unless a magic + * envvar is set. + * + * For example, consider a .tar created via: + * $ tar cvf bug.tar anything.txt + * $ ln -s /tmp symlink + * $ tar --append -f bug.tar symlink + * $ rm symlink + * $ mkdir symlink + * $ tar --append -f bug.tar symlink/evil.py + * + * This will result in an archive that contains: + * $ tar --list -f bug.tar + * anything.txt + * symlink [-> /tmp] + * symlink/evil.py + * + * Untarring bug.tar would otherwise place evil.py in '/tmp'. + */ + create_or_remember_link(&archive_handle->link_placeholders, + file_header->link_target, + dst_name, + 0); + break; + case S_IFSOCK: + case S_IFBLK: + case S_IFCHR: + case S_IFIFO: + res = mknod(dst_name, file_header->mode, file_header->device); + if (res != 0) { + bb_perror_msg("can't create node %s", dst_name); + } + break; + default: + bb_simple_error_msg_and_die("unrecognized file type"); + } + + if (!S_ISLNK(file_header->mode)) { + if (!(archive_handle->ah_flags & ARCHIVE_DONT_RESTORE_OWNER)) { + uid_t uid = file_header->uid; + gid_t gid = file_header->gid; +#if ENABLE_FEATURE_TAR_UNAME_GNAME + if (!(archive_handle->ah_flags & ARCHIVE_NUMERIC_OWNER)) { + if (file_header->tar__uname) { +//TODO: cache last name/id pair? + struct passwd *pwd = getpwnam(file_header->tar__uname); + if (pwd) uid = pwd->pw_uid; + } + if (file_header->tar__gname) { + struct group *grp = getgrnam(file_header->tar__gname); + if (grp) gid = grp->gr_gid; + } + } +#endif + /* GNU tar 1.15.1 uses chown, not lchown */ + chown(dst_name, uid, gid); + } + /* uclibc has no lchmod, glibc is even stranger - + * it has lchmod which seems to do nothing! + * so we use chmod... */ + if (!(archive_handle->ah_flags & ARCHIVE_DONT_RESTORE_PERM)) { + chmod(dst_name, file_header->mode); + } + if (archive_handle->ah_flags & ARCHIVE_RESTORE_DATE) { + struct timeval t[2]; + + t[1].tv_sec = t[0].tv_sec = file_header->mtime; + t[1].tv_usec = t[0].tv_usec = 0; + utimes(dst_name, t); + } + } + + ret: ; +#if ENABLE_FEATURE_TAR_SELINUX + if (sctx) { + /* reset the context after creating an entry */ + setfscreatecon(NULL); + } +#endif +} diff --git a/busybox-1_37_0/archival/libarchive/data_extract_to_command.c b/busybox-1_37_0/archival/libarchive/data_extract_to_command.c new file mode 100644 index 000000000..f8b2ff8d2 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/data_extract_to_command.c @@ -0,0 +1,136 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +enum { + //TAR_FILETYPE, + TAR_MODE, + TAR_FILENAME, + TAR_REALNAME, +#if ENABLE_FEATURE_TAR_UNAME_GNAME + TAR_UNAME, + TAR_GNAME, +#endif + TAR_SIZE, + TAR_UID, + TAR_GID, + TAR_MAX, +}; + +static const char *const tar_var[] ALIGN_PTR = { + // "FILETYPE", + "MODE", + "FILENAME", + "REALNAME", +#if ENABLE_FEATURE_TAR_UNAME_GNAME + "UNAME", + "GNAME", +#endif + "SIZE", + "UID", + "GID", +}; + +static void xputenv(char *str) +{ + if (putenv(str)) + bb_die_memory_exhausted(); +} + +static void str2env(char *env[], int idx, const char *str) +{ + env[idx] = xasprintf("TAR_%s=%s", tar_var[idx], str); + xputenv(env[idx]); +} + +static void dec2env(char *env[], int idx, unsigned long long val) +{ + env[idx] = xasprintf("TAR_%s=%llu", tar_var[idx], val); + xputenv(env[idx]); +} + +static void oct2env(char *env[], int idx, unsigned long val) +{ + env[idx] = xasprintf("TAR_%s=%lo", tar_var[idx], val); + xputenv(env[idx]); +} + +void FAST_FUNC data_extract_to_command(archive_handle_t *archive_handle) +{ + file_header_t *file_header = archive_handle->file_header; + +#if 0 /* do we need this? ENABLE_FEATURE_TAR_SELINUX */ + char *sctx = archive_handle->tar__sctx[PAX_NEXT_FILE]; + if (!sctx) + sctx = archive_handle->tar__sctx[PAX_GLOBAL]; + if (sctx) { /* setfscreatecon is 4 syscalls, avoid if possible */ + setfscreatecon(sctx); + free(archive_handle->tar__sctx[PAX_NEXT_FILE]); + archive_handle->tar__sctx[PAX_NEXT_FILE] = NULL; + } +#endif + + if ((file_header->mode & S_IFMT) == S_IFREG) { + pid_t pid; + int p[2], status; + char *tar_env[TAR_MAX]; + + memset(tar_env, 0, sizeof(tar_env)); + + xpipe(p); + pid = BB_MMU ? xfork() : xvfork(); + if (pid == 0) { + /* Child */ + /* str2env(tar_env, TAR_FILETYPE, "f"); - parent should do it once */ + oct2env(tar_env, TAR_MODE, file_header->mode); + str2env(tar_env, TAR_FILENAME, file_header->name); + str2env(tar_env, TAR_REALNAME, file_header->name); +#if ENABLE_FEATURE_TAR_UNAME_GNAME + str2env(tar_env, TAR_UNAME, file_header->tar__uname); + str2env(tar_env, TAR_GNAME, file_header->tar__gname); +#endif + dec2env(tar_env, TAR_SIZE, file_header->size); + dec2env(tar_env, TAR_UID, file_header->uid); + dec2env(tar_env, TAR_GID, file_header->gid); + close(p[1]); + xdup2(p[0], STDIN_FILENO); + signal(SIGPIPE, SIG_DFL); + execl(archive_handle->tar__to_command_shell, + archive_handle->tar__to_command_shell, + "-c", + archive_handle->tar__to_command, + (char *)0); + bb_perror_msg_and_die("can't execute '%s'", archive_handle->tar__to_command_shell); + } + close(p[0]); + /* Our caller is expected to do signal(SIGPIPE, SIG_IGN) + * so that we don't die if child don't read all the input: */ + bb_copyfd_exact_size(archive_handle->src_fd, p[1], -file_header->size); + close(p[1]); + + status = wait_for_exitstatus(pid); + if (WIFEXITED(status) && WEXITSTATUS(status)) + bb_error_msg_and_die("'%s' returned status %d", + archive_handle->tar__to_command, WEXITSTATUS(status)); + if (WIFSIGNALED(status)) + bb_error_msg_and_die("'%s' terminated by signal %d", + archive_handle->tar__to_command, WTERMSIG(status)); + + if (!BB_MMU) { + int i; + for (i = 0; i < TAR_MAX; i++) { + if (tar_env[i]) + bb_unsetenv_and_free(tar_env[i]); + } + } + } + +#if 0 /* ENABLE_FEATURE_TAR_SELINUX */ + if (sctx) + /* reset the context after creating an entry */ + setfscreatecon(NULL); +#endif +} diff --git a/busybox-1_37_0/archival/libarchive/data_extract_to_stdout.c b/busybox-1_37_0/archival/libarchive/data_extract_to_stdout.c new file mode 100644 index 000000000..520041329 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/data_extract_to_stdout.c @@ -0,0 +1,13 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC data_extract_to_stdout(archive_handle_t *archive_handle) +{ + bb_copyfd_exact_size(archive_handle->src_fd, + STDOUT_FILENO, + archive_handle->file_header->size); +} diff --git a/busybox-1_37_0/archival/libarchive/data_skip.c b/busybox-1_37_0/archival/libarchive/data_skip.c new file mode 100644 index 000000000..1a608227e --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/data_skip.c @@ -0,0 +1,11 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC data_skip(archive_handle_t *archive_handle) +{ + archive_handle->seek(archive_handle->src_fd, archive_handle->file_header->size); +} diff --git a/busybox-1_37_0/archival/libarchive/decompress_bunzip2.c b/busybox-1_37_0/archival/libarchive/decompress_bunzip2.c new file mode 100644 index 000000000..4a2b668aa --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/decompress_bunzip2.c @@ -0,0 +1,900 @@ +/* vi: set sw=4 ts=4: */ +/* + * Small bzip2 deflate implementation, by Rob Landley (rob@landley.net). + * + * Based on bzip2 decompression code by Julian R Seward (jseward@acm.org), + * which also acknowledges contributions by Mike Burrows, David Wheeler, + * Peter Fenwick, Alistair Moffat, Radford Neal, Ian H. Witten, + * Robert Sedgewick, and Jon L. Bentley. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* + Size and speed optimizations by Manuel Novoa III (mjn3@codepoet.org). + + More efficient reading of Huffman codes, a streamlined read_bunzip() + function, and various other tweaks. In (limited) tests, approximately + 20% faster than bzcat on x86 and about 10% faster on arm. + + Note that about 2/3 of the time is spent in read_bunzip() reversing + the Burrows-Wheeler transformation. Much of that time is delay + resulting from cache misses. + + (2010 update by vda: profiled "bzcat <84mbyte.bz2 >/dev/null" + on x86-64 CPU with L2 > 1M: get_next_block is hotter than read_bunzip: + %time seconds calls function + 71.01 12.69 444 get_next_block + 28.65 5.12 93065 read_bunzip + 00.22 0.04 7736490 get_bits + 00.11 0.02 47 dealloc_bunzip + 00.00 0.00 93018 full_write + ...) + + + I would ask that anyone benefiting from this work, especially those + using it in commercial products, consider making a donation to my local + non-profit hospice organization (www.hospiceacadiana.com) in the name of + the woman I loved, Toni W. Hagan, who passed away Feb. 12, 2003. + + Manuel + */ +#include "libbb.h" +#include "bb_archive.h" + +#if 0 +# define dbg(...) bb_error_msg(__VA_ARGS__) +#else +# define dbg(...) ((void)0) +#endif + +/* Constants for Huffman coding */ +#define MAX_GROUPS 6 +#define GROUP_SIZE 50 /* 64 would have been more efficient */ +#define MAX_HUFCODE_BITS 20 /* Longest Huffman code allowed */ +#define MAX_SYMBOLS 258 /* 256 literals + RUNA + RUNB */ +#define SYMBOL_RUNA 0 +#define SYMBOL_RUNB 1 + +/* Status return values */ +#define RETVAL_OK 0 +#define RETVAL_LAST_BLOCK (dbg("%d", __LINE__), -1) +#define RETVAL_NOT_BZIP_DATA (dbg("%d", __LINE__), -2) +#define RETVAL_UNEXPECTED_INPUT_EOF (dbg("%d", __LINE__), -3) +#define RETVAL_SHORT_WRITE (dbg("%d", __LINE__), -4) +#define RETVAL_DATA_ERROR (dbg("%d", __LINE__), -5) +#define RETVAL_OUT_OF_MEMORY (dbg("%d", __LINE__), -6) +#define RETVAL_OBSOLETE_INPUT (dbg("%d", __LINE__), -7) + +/* Other housekeeping constants */ +#define IOBUF_SIZE 4096 + +/* This is what we know about each Huffman coding group */ +struct group_data { + /* We have an extra slot at the end of limit[] for a sentinel value. */ + int limit[MAX_HUFCODE_BITS+1], base[MAX_HUFCODE_BITS], permute[MAX_SYMBOLS]; + int minLen, maxLen; +}; + +/* Structure holding all the housekeeping data, including IO buffers and + * memory that persists between calls to bunzip + * Found the most used member: + * cat this_file.c | sed -e 's/"/ /g' -e "s/'/ /g" | xargs -n1 \ + * | grep 'bd->' | sed 's/^.*bd->/bd->/' | sort | $PAGER + * and moved it (inbufBitCount) to offset 0. + */ +struct bunzip_data { + /* I/O tracking data (file handles, buffers, positions, etc.) */ + unsigned inbufBitCount, inbufBits; + int in_fd, out_fd, inbufCount, inbufPos /*, outbufPos*/; + uint8_t *inbuf /*,*outbuf*/; + + /* State for interrupting output loop */ + int writeCopies, writePos, writeRunCountdown, writeCount; + int writeCurrent; /* actually a uint8_t */ + + /* The CRC values stored in the block header and calculated from the data */ + uint32_t headerCRC, totalCRC, writeCRC; + + /* Intermediate buffer and its size (in bytes) */ + uint32_t *dbuf; + unsigned dbufSize; + + /* For I/O error handling */ + jmp_buf *jmpbuf; + + /* Big things go last (register-relative addressing can be larger for big offsets) */ + uint32_t crc32Table[256]; + uint8_t selectors[32768]; /* nSelectors=15 bits */ + struct group_data groups[MAX_GROUPS]; /* Huffman coding tables */ +}; +typedef struct bunzip_data bunzip_data; + + +/* Return the next nnn bits of input. All reads from the compressed input + are done through this function. All reads are big endian */ +static unsigned get_bits(bunzip_data *bd, int bits_wanted) +{ + unsigned bits = 0; + /* Cache bd->inbufBitCount in a CPU register (hopefully): */ + int bit_count = bd->inbufBitCount; + + /* If we need to get more data from the byte buffer, do so. (Loop getting + one byte at a time to enforce endianness and avoid unaligned access.) */ + while (bit_count < bits_wanted) { + + /* If we need to read more data from file into byte buffer, do so */ + if (bd->inbufPos == bd->inbufCount) { + /* if "no input fd" case: in_fd == -1, read fails, we jump */ + bd->inbufCount = read(bd->in_fd, bd->inbuf, IOBUF_SIZE); + if (bd->inbufCount <= 0) + longjmp(*bd->jmpbuf, RETVAL_UNEXPECTED_INPUT_EOF); + bd->inbufPos = 0; + } + + /* Avoid 32-bit overflow (dump bit buffer to top of output) */ + if (bit_count >= 24) { + bits = bd->inbufBits & ((1U << bit_count) - 1); + bits_wanted -= bit_count; + bits <<= bits_wanted; + bit_count = 0; + } + + /* Grab next 8 bits of input from buffer. */ + bd->inbufBits = (bd->inbufBits << 8) | bd->inbuf[bd->inbufPos++]; + bit_count += 8; + } + + /* Calculate result */ + bit_count -= bits_wanted; + bd->inbufBitCount = bit_count; + bits |= (bd->inbufBits >> bit_count) & ((1 << bits_wanted) - 1); + + return bits; +} +//#define get_bits(bd, n) (dbg("%d:get_bits()", __LINE__), get_bits(bd, n)) + +/* Unpacks the next block and sets up for the inverse Burrows-Wheeler step. */ +static int get_next_block(bunzip_data *bd) +{ + int groupCount, selector, + i, j, symCount, symTotal, nSelectors, byteCount[256]; + uint8_t uc, symToByte[256], mtfSymbol[256], *selectors; + uint32_t *dbuf; + unsigned origPtr, t; + unsigned dbufCount, runPos; + unsigned runCnt = runCnt; /* for compiler */ + + dbuf = bd->dbuf; + selectors = bd->selectors; + +/* In bbox, we are ok with aborting through setjmp which is set up in start_bunzip */ +#if 0 + /* Reset longjmp I/O error handling */ + i = setjmp(bd->jmpbuf); + if (i) return i; +#endif + + /* Read in header signature and CRC, then validate signature. + (last block signature means CRC is for whole file, return now) */ + i = get_bits(bd, 24); + j = get_bits(bd, 24); + bd->headerCRC = get_bits(bd, 32); + if ((i == 0x177245) && (j == 0x385090)) + return RETVAL_LAST_BLOCK; + if ((i != 0x314159) || (j != 0x265359)) + return RETVAL_NOT_BZIP_DATA; + + /* We can add support for blockRandomised if anybody complains. There was + some code for this in busybox 1.0.0-pre3, but nobody ever noticed that + it didn't actually work. */ + if (get_bits(bd, 1)) + return RETVAL_OBSOLETE_INPUT; + origPtr = get_bits(bd, 24); + if (origPtr > bd->dbufSize) + return RETVAL_DATA_ERROR; + + /* mapping table: if some byte values are never used (encoding things + like ascii text), the compression code removes the gaps to have fewer + symbols to deal with, and writes a sparse bitfield indicating which + values were present. We make a translation table to convert the symbols + back to the corresponding bytes. */ + symTotal = 0; + i = 0; + t = get_bits(bd, 16); + do { + if (t & (1 << 15)) { + unsigned inner_map = get_bits(bd, 16); + do { + if (inner_map & (1 << 15)) + symToByte[symTotal++] = i; + inner_map <<= 1; + i++; + } while (i & 15); + i -= 16; + } + t <<= 1; + i += 16; + } while (i < 256); + + /* How many different Huffman coding groups does this block use? */ + groupCount = get_bits(bd, 3); + if (groupCount < 2 || groupCount > MAX_GROUPS) + return RETVAL_DATA_ERROR; + + /* nSelectors: Every GROUP_SIZE many symbols we select a new Huffman coding + group. Read in the group selector list, which is stored as MTF encoded + bit runs. (MTF=Move To Front, as each value is used it's moved to the + start of the list.) */ + for (i = 0; i < groupCount; i++) + mtfSymbol[i] = i; + nSelectors = get_bits(bd, 15); + if (!nSelectors) + return RETVAL_DATA_ERROR; + for (i = 0; i < nSelectors; i++) { + uint8_t tmp_byte; + /* Get next value */ + int n = 0; + while (get_bits(bd, 1)) { + n++; + if (n >= groupCount) + return RETVAL_DATA_ERROR; + } + /* Decode MTF to get the next selector */ + tmp_byte = mtfSymbol[n]; + while (--n >= 0) + mtfSymbol[n + 1] = mtfSymbol[n]; +//We catch it later, in the second loop where we use selectors[i]. +//Maybe this is a better place, though? +// if (tmp_byte >= groupCount) { +// dbg("%d: selectors[%d]:%d groupCount:%d", +// __LINE__, i, tmp_byte, groupCount); +// return RETVAL_DATA_ERROR; +// } + mtfSymbol[0] = selectors[i] = tmp_byte; + } + + /* Read the Huffman coding tables for each group, which code for symTotal + literal symbols, plus two run symbols (RUNA, RUNB) */ + symCount = symTotal + 2; + for (j = 0; j < groupCount; j++) { + uint8_t length[MAX_SYMBOLS]; + /* 8 bits is ALMOST enough for temp[], see below */ + unsigned temp[MAX_HUFCODE_BITS+1]; + struct group_data *hufGroup; + int *base, *limit; + int minLen, maxLen, pp, len_m1; + + /* Read Huffman code lengths for each symbol. They're stored in + a way similar to mtf; record a starting value for the first symbol, + and an offset from the previous value for every symbol after that. + (Subtracting 1 before the loop and then adding it back at the end is + an optimization that makes the test inside the loop simpler: symbol + length 0 becomes negative, so an unsigned inequality catches it.) */ + len_m1 = get_bits(bd, 5) - 1; + for (i = 0; i < symCount; i++) { + for (;;) { + int two_bits; + if ((unsigned)len_m1 > (MAX_HUFCODE_BITS-1)) + return RETVAL_DATA_ERROR; + + /* If first bit is 0, stop. Else second bit indicates whether + to increment or decrement the value. Optimization: grab 2 + bits and unget the second if the first was 0. */ + two_bits = get_bits(bd, 2); + if (two_bits < 2) { + bd->inbufBitCount++; + break; + } + + /* Add one if second bit 1, else subtract 1. Avoids if/else */ + len_m1 += (((two_bits+1) & 2) - 1); + } + + /* Correct for the initial -1, to get the final symbol length */ + length[i] = len_m1 + 1; + } + + /* Find largest and smallest lengths in this group */ + minLen = maxLen = length[0]; + for (i = 1; i < symCount; i++) { + if (length[i] > maxLen) + maxLen = length[i]; + else if (length[i] < minLen) + minLen = length[i]; + } + + /* Calculate permute[], base[], and limit[] tables from length[]. + * + * permute[] is the lookup table for converting Huffman coded symbols + * into decoded symbols. base[] is the amount to subtract from the + * value of a Huffman symbol of a given length when using permute[]. + * + * limit[] indicates the largest numerical value a symbol with a given + * number of bits can have. This is how the Huffman codes can vary in + * length: each code with a value>limit[length] needs another bit. + */ + hufGroup = bd->groups + j; + hufGroup->minLen = minLen; + hufGroup->maxLen = maxLen; + + /* Note that minLen can't be smaller than 1, so we adjust the base + and limit array pointers so we're not always wasting the first + entry. We do this again when using them (during symbol decoding). */ + base = hufGroup->base - 1; + limit = hufGroup->limit - 1; + + /* Calculate permute[]. Concurrently, initialize temp[] and limit[]. */ + pp = 0; + for (i = minLen; i <= maxLen; i++) { + int k; + temp[i] = limit[i] = 0; + for (k = 0; k < symCount; k++) + if (length[k] == i) + hufGroup->permute[pp++] = k; + } + + /* Count symbols coded for at each bit length */ + /* NB: in pathological cases, temp[8] can end ip being 256. + * That's why uint8_t is too small for temp[]. */ + for (i = 0; i < symCount; i++) + temp[length[i]]++; + + /* Calculate limit[] (the largest symbol-coding value at each bit + * length, which is (previous limit<<1)+symbols at this level), and + * base[] (number of symbols to ignore at each bit length, which is + * limit minus the cumulative count of symbols coded for already). */ + pp = t = 0; + for (i = minLen; i < maxLen;) { + unsigned temp_i = temp[i]; + + pp += temp_i; + + /* We read the largest possible symbol size and then unget bits + after determining how many we need, and those extra bits could + be set to anything. (They're noise from future symbols.) At + each level we're really only interested in the first few bits, + so here we set all the trailing to-be-ignored bits to 1 so they + don't affect the value>limit[length] comparison. */ + limit[i] = (pp << (maxLen - i)) - 1; + pp <<= 1; + t += temp_i; + base[++i] = pp - t; + } + limit[maxLen] = pp + temp[maxLen] - 1; + limit[maxLen+1] = INT_MAX; /* Sentinel value for reading next sym. */ + base[minLen] = 0; + } + + /* We've finished reading and digesting the block header. Now read this + block's Huffman coded symbols from the file and undo the Huffman coding + and run length encoding, saving the result into dbuf[dbufCount++] = uc */ + + /* Initialize symbol occurrence counters and symbol Move To Front table */ + /*memset(byteCount, 0, sizeof(byteCount)); - smaller, but slower */ + for (i = 0; i < 256; i++) { + byteCount[i] = 0; + mtfSymbol[i] = (uint8_t)i; + } + + /* Loop through compressed symbols. */ + + runPos = dbufCount = selector = 0; + for (;;) { + struct group_data *hufGroup; + int *base, *limit; + int nextSym; + uint8_t ngrp; + + /* Fetch next Huffman coding group from list. */ + symCount = GROUP_SIZE - 1; + if (selector >= nSelectors) + return RETVAL_DATA_ERROR; + ngrp = selectors[selector++]; + if (ngrp >= groupCount) { + dbg("%d selectors[%d]:%d groupCount:%d", + __LINE__, selector-1, ngrp, groupCount); + return RETVAL_DATA_ERROR; + } + hufGroup = bd->groups + ngrp; + base = hufGroup->base - 1; + limit = hufGroup->limit - 1; + + continue_this_group: + /* Read next Huffman-coded symbol. */ + + /* Note: It is far cheaper to read maxLen bits and back up than it is + to read minLen bits and then add additional bit at a time, testing + as we go. Because there is a trailing last block (with file CRC), + there is no danger of the overread causing an unexpected EOF for a + valid compressed file. + */ + if (1) { + /* As a further optimization, we do the read inline + (falling back to a call to get_bits if the buffer runs dry). + */ + int new_cnt; + while ((new_cnt = bd->inbufBitCount - hufGroup->maxLen) < 0) { + /* bd->inbufBitCount < hufGroup->maxLen */ + if (bd->inbufPos == bd->inbufCount) { + nextSym = get_bits(bd, hufGroup->maxLen); + goto got_huff_bits; + } + bd->inbufBits = (bd->inbufBits << 8) | bd->inbuf[bd->inbufPos++]; + bd->inbufBitCount += 8; + }; + bd->inbufBitCount = new_cnt; /* "bd->inbufBitCount -= hufGroup->maxLen;" */ + nextSym = (bd->inbufBits >> new_cnt) & ((1 << hufGroup->maxLen) - 1); + got_huff_bits: ; + } else { /* unoptimized equivalent */ + nextSym = get_bits(bd, hufGroup->maxLen); + } + /* Figure how many bits are in next symbol and unget extras */ + i = hufGroup->minLen; + while (nextSym > limit[i]) + ++i; + j = hufGroup->maxLen - i; + if (j < 0) + return RETVAL_DATA_ERROR; + bd->inbufBitCount += j; + + /* Huffman decode value to get nextSym (with bounds checking) */ + nextSym = (nextSym >> j) - base[i]; + if ((unsigned)nextSym >= MAX_SYMBOLS) + return RETVAL_DATA_ERROR; + nextSym = hufGroup->permute[nextSym]; + + /* We have now decoded the symbol, which indicates either a new literal + byte, or a repeated run of the most recent literal byte. First, + check if nextSym indicates a repeated run, and if so loop collecting + how many times to repeat the last literal. */ + if ((unsigned)nextSym <= SYMBOL_RUNB) { /* RUNA or RUNB */ + + /* If this is the start of a new run, zero out counter */ + if (runPos == 0) { + runPos = 1; + runCnt = 0; + } + + /* Neat trick that saves 1 symbol: instead of or-ing 0 or 1 at + each bit position, add 1 or 2 instead. For example, + 1011 is 1<<0 + 1<<1 + 2<<2. 1010 is 2<<0 + 2<<1 + 1<<2. + You can make any bit pattern that way using 1 less symbol than + the basic or 0/1 method (except all bits 0, which would use no + symbols, but a run of length 0 doesn't mean anything in this + context). Thus space is saved. */ + runCnt += (runPos << nextSym); /* +runPos if RUNA; +2*runPos if RUNB */ +//The 32-bit overflow of runCnt wasn't yet seen, but probably can happen. +//This would be the fix (catches too large count way before it can overflow): +// if (runCnt > bd->dbufSize) { +// dbg("runCnt:%u > dbufSize:%u RETVAL_DATA_ERROR", +// runCnt, bd->dbufSize); +// return RETVAL_DATA_ERROR; +// } + if (runPos < bd->dbufSize) runPos <<= 1; + goto end_of_huffman_loop; + } + + /* When we hit the first non-run symbol after a run, we now know + how many times to repeat the last literal, so append that many + copies to our buffer of decoded symbols (dbuf) now. (The last + literal used is the one at the head of the mtfSymbol array.) */ + if (runPos != 0) { + uint8_t tmp_byte; + if (dbufCount + runCnt > bd->dbufSize) { + dbg("dbufCount:%u+runCnt:%u %u > dbufSize:%u RETVAL_DATA_ERROR", + dbufCount, runCnt, dbufCount + runCnt, bd->dbufSize); + return RETVAL_DATA_ERROR; + } + tmp_byte = symToByte[mtfSymbol[0]]; + byteCount[tmp_byte] += runCnt; + while ((int)--runCnt >= 0) + dbuf[dbufCount++] = (uint32_t)tmp_byte; + runPos = 0; + } + + /* Is this the terminating symbol? */ + if (nextSym > symTotal) break; + + /* At this point, nextSym indicates a new literal character. Subtract + one to get the position in the MTF array at which this literal is + currently to be found. (Note that the result can't be -1 or 0, + because 0 and 1 are RUNA and RUNB. But another instance of the + first symbol in the mtf array, position 0, would have been handled + as part of a run above. Therefore 1 unused mtf position minus + 2 non-literal nextSym values equals -1.) */ + if (dbufCount >= bd->dbufSize) return RETVAL_DATA_ERROR; + i = nextSym - 1; + uc = mtfSymbol[i]; + + /* Adjust the MTF array. Since we typically expect to move only a + * small number of symbols, and are bound by 256 in any case, using + * memmove here would typically be bigger and slower due to function + * call overhead and other assorted setup costs. */ + do { + mtfSymbol[i] = mtfSymbol[i-1]; + } while (--i); + mtfSymbol[0] = uc; + uc = symToByte[uc]; + + /* We have our literal byte. Save it into dbuf. */ + byteCount[uc]++; + dbuf[dbufCount++] = (uint32_t)uc; + + /* Skip group initialization if we're not done with this group. Done + * this way to avoid compiler warning. */ + end_of_huffman_loop: + if (--symCount >= 0) goto continue_this_group; + } + + /* At this point, we've read all the Huffman-coded symbols (and repeated + runs) for this block from the input stream, and decoded them into the + intermediate buffer. There are dbufCount many decoded bytes in dbuf[]. + Now undo the Burrows-Wheeler transform on dbuf. + See http://dogma.net/markn/articles/bwt/bwt.htm + */ + + /* Turn byteCount into cumulative occurrence counts of 0 to n-1. */ + j = 0; + for (i = 0; i < 256; i++) { + int tmp_count = j + byteCount[i]; + byteCount[i] = j; + j = tmp_count; + } + + /* Figure out what order dbuf would be in if we sorted it. */ + for (i = 0; i < dbufCount; i++) { + uint8_t tmp_byte = (uint8_t)dbuf[i]; + int tmp_count = byteCount[tmp_byte]; + dbuf[tmp_count] |= (i << 8); + byteCount[tmp_byte] = tmp_count + 1; + } + + /* Decode first byte by hand to initialize "previous" byte. Note that it + doesn't get output, and if the first three characters are identical + it doesn't qualify as a run (hence writeRunCountdown=5). */ + if (dbufCount) { + uint32_t tmp; + if ((int)origPtr >= dbufCount) return RETVAL_DATA_ERROR; + tmp = dbuf[origPtr]; + bd->writeCurrent = (uint8_t)tmp; + bd->writePos = (tmp >> 8); + bd->writeRunCountdown = 5; + } + bd->writeCount = dbufCount; + + return RETVAL_OK; +} + +/* Undo Burrows-Wheeler transform on intermediate buffer to produce output. + If start_bunzip was initialized with out_fd=-1, then up to len bytes of + data are written to outbuf. Return value is number of bytes written or + error (all errors are negative numbers). If out_fd!=-1, outbuf and len + are ignored, data is written to out_fd and return is RETVAL_OK or error. + + NB: read_bunzip returns < 0 on error, or the number of *unfilled* bytes + in outbuf. IOW: on EOF returns len ("all bytes are not filled"), not 0. + (Why? This allows to get rid of one local variable) +*/ +static int read_bunzip(bunzip_data *bd, char *outbuf, int len) +{ + const uint32_t *dbuf; + int pos, current, previous; + uint32_t CRC; + + /* If we already have error/end indicator, return it */ + if (bd->writeCount < 0) + return bd->writeCount; + + dbuf = bd->dbuf; + + /* Register-cached state (hopefully): */ + pos = bd->writePos; + current = bd->writeCurrent; + CRC = bd->writeCRC; /* small loss on x86-32 (not enough regs), win on x86-64 */ + + /* We will always have pending decoded data to write into the output + buffer unless this is the very first call (in which case we haven't + Huffman-decoded a block into the intermediate buffer yet). */ + if (bd->writeCopies) { + + dec_writeCopies: + /* Inside the loop, writeCopies means extra copies (beyond 1) */ + --bd->writeCopies; + + /* Loop outputting bytes */ + for (;;) { + + /* If the output buffer is full, save cached state and return */ + if (--len < 0) { + /* Unlikely branch. + * Use of "goto" instead of keeping code here + * helps compiler to realize this. */ + goto outbuf_full; + } + + /* Write next byte into output buffer, updating CRC */ + *outbuf++ = current; + CRC = (CRC << 8) ^ bd->crc32Table[(CRC >> 24) ^ current]; + + /* Loop now if we're outputting multiple copies of this byte */ + if (bd->writeCopies) { + /* Unlikely branch */ + /*--bd->writeCopies;*/ + /*continue;*/ + /* Same, but (ab)using other existing --writeCopies operation + * (and this if() compiles into just test+branch pair): */ + goto dec_writeCopies; + } + decode_next_byte: + if (--bd->writeCount < 0) + break; /* input block is fully consumed, need next one */ + + /* Follow sequence vector to undo Burrows-Wheeler transform */ + previous = current; + pos = dbuf[pos]; + current = (uint8_t)pos; + pos >>= 8; + + /* After 3 consecutive copies of the same byte, the 4th + * is a repeat count. We count down from 4 instead + * of counting up because testing for non-zero is faster */ + if (--bd->writeRunCountdown != 0) { + if (current != previous) + bd->writeRunCountdown = 4; + } else { + /* Unlikely branch */ + /* We have a repeated run, this byte indicates the count */ + bd->writeCopies = current; + current = previous; + bd->writeRunCountdown = 5; + + /* Sometimes there are just 3 bytes (run length 0) */ + if (!bd->writeCopies) goto decode_next_byte; + + /* Subtract the 1 copy we'd output anyway to get extras */ + --bd->writeCopies; + } + } /* for (;;) */ + + /* Decompression of this input block completed successfully */ + bd->writeCRC = CRC = ~CRC; + bd->totalCRC = ((bd->totalCRC << 1) | (bd->totalCRC >> 31)) ^ CRC; + + /* If this block had a CRC error, force file level CRC error */ + if (CRC != bd->headerCRC) { + bd->totalCRC = bd->headerCRC + 1; + return RETVAL_LAST_BLOCK; + } + } + + /* Refill the intermediate buffer by Huffman-decoding next block of input */ + { + int r = get_next_block(bd); + if (r) { /* error/end */ + bd->writeCount = r; + return (r != RETVAL_LAST_BLOCK) ? r : len; + } + } + + CRC = ~0; + pos = bd->writePos; + current = bd->writeCurrent; + goto decode_next_byte; + + outbuf_full: + /* Output buffer is full, save cached state and return */ + bd->writePos = pos; + bd->writeCurrent = current; + bd->writeCRC = CRC; + + bd->writeCopies++; + + return 0; +} + +/* Allocate the structure, read file header. If in_fd==-1, inbuf must contain + a complete bunzip file (len bytes long). If in_fd!=-1, inbuf and len are + ignored, and data is read from file handle into temporary buffer. */ + +/* Because bunzip2 is used for help text unpacking, and because bb_show_usage() + should work for NOFORK applets too, we must be extremely careful to not leak + any allocations! */ +static int FAST_FUNC start_bunzip( + void *jmpbuf, + bunzip_data **bdp, + int in_fd, + const void *inbuf, int len) +{ + bunzip_data *bd; + unsigned i; + enum { + BZh0 = ('B' << 24) + ('Z' << 16) + ('h' << 8) + '0', + h0 = ('h' << 8) + '0', + }; + + /* Figure out how much data to allocate */ + i = sizeof(bunzip_data); + if (in_fd != -1) + i += IOBUF_SIZE; + + /* Allocate bunzip_data. Most fields initialize to zero. */ + bd = *bdp = xzalloc(i); + + bd->jmpbuf = jmpbuf; + + /* Setup input buffer */ + bd->in_fd = in_fd; + if (-1 == in_fd) { + /* in this case, bd->inbuf is read-only */ + bd->inbuf = (void*)inbuf; /* cast away const-ness */ + } else { + bd->inbuf = (uint8_t*)(bd + 1); + memcpy(bd->inbuf, inbuf, len); + } + bd->inbufCount = len; + + /* Init the CRC32 table (big endian) */ + crc32_filltable(bd->crc32Table, 1); + + /* Ensure that file starts with "BZh['1'-'9']." */ + /* Update: now caller verifies 1st two bytes, makes .gz/.bz2 + * integration easier */ + /* was: */ + /* i = get_bits(bd, 32); */ + /* if ((unsigned)(i - BZh0 - 1) >= 9) return RETVAL_NOT_BZIP_DATA; */ + i = get_bits(bd, 16); + if ((unsigned)(i - h0 - 1) >= 9) return RETVAL_NOT_BZIP_DATA; + + /* Fourth byte (ascii '1'-'9') indicates block size in units of 100k of + uncompressed data. Allocate intermediate buffer for block. */ + /* bd->dbufSize = 100000 * (i - BZh0); */ + bd->dbufSize = 100000 * (i - h0); + + /* Cannot use xmalloc - may leak bd in NOFORK case! */ + bd->dbuf = malloc_or_warn(bd->dbufSize * sizeof(bd->dbuf[0])); + if (!bd->dbuf) { + free(bd); + xfunc_die(); + } + return RETVAL_OK; +} + +static void FAST_FUNC dealloc_bunzip(bunzip_data *bd) +{ + free(bd->dbuf); + free(bd); +} + + +/* Decompress src_fd to dst_fd. Stops at end of bzip data, not end of file. */ +IF_DESKTOP(long long) int FAST_FUNC +unpack_bz2_stream(transformer_state_t *xstate) +{ + IF_DESKTOP(long long total_written = 0;) + bunzip_data *bd; + char *outbuf; + int i; + unsigned len; + + if (check_signature16(xstate, BZIP2_MAGIC)) + return -1; + + outbuf = xmalloc(IOBUF_SIZE); + len = 0; + while (1) { /* "Process one BZ... stream" loop */ + jmp_buf jmpbuf; + + /* Setup for I/O error handling via longjmp */ + i = setjmp(jmpbuf); + if (i == 0) + i = start_bunzip(&jmpbuf, &bd, xstate->src_fd, outbuf + 2, len); + + if (i == 0) { + while (1) { /* "Produce some output bytes" loop */ + i = read_bunzip(bd, outbuf, IOBUF_SIZE); + if (i < 0) /* error? */ + break; + i = IOBUF_SIZE - i; /* number of bytes produced */ + if (i == 0) /* EOF? */ + break; + if (i != transformer_write(xstate, outbuf, i)) { + i = RETVAL_SHORT_WRITE; + goto release_mem; + } + IF_DESKTOP(total_written += i;) + } + } + + if (i != RETVAL_LAST_BLOCK + /* Observed case when i == RETVAL_OK: + * "bzcat z.bz2", where "z.bz2" is a bzipped zero-length file + * (to be exact, z.bz2 is exactly these 14 bytes: + * 42 5a 68 39 17 72 45 38 50 90 00 00 00 00). + */ + && i != RETVAL_OK + ) { + bb_error_msg("bunzip error %d", i); + break; + } + if (bd->headerCRC != bd->totalCRC) { + bb_simple_error_msg("CRC error"); + break; + } + + /* Successfully unpacked one BZ stream */ + i = RETVAL_OK; + + /* Do we have "BZ..." after last processed byte? + * pbzip2 (parallelized bzip2) produces such files. + */ + len = bd->inbufCount - bd->inbufPos; + memcpy(outbuf, &bd->inbuf[bd->inbufPos], len); + if (len < 2) { + if (safe_read(xstate->src_fd, outbuf + len, 2 - len) != 2 - len) + break; + len = 2; + } + if (*(uint16_t*)outbuf != BZIP2_MAGIC) /* "BZ"? */ + break; + dealloc_bunzip(bd); + len -= 2; + } + + release_mem: + dealloc_bunzip(bd); + free(outbuf); + + return i ? i : IF_DESKTOP(total_written) + 0; +} + +char* FAST_FUNC +unpack_bz2_data(const char *packed, int packed_len, int unpacked_len) +{ + char *outbuf = NULL; + bunzip_data *bd; + int i; + jmp_buf jmpbuf; + + /* Setup for I/O error handling via longjmp */ + i = setjmp(jmpbuf); + if (i == 0) { + i = start_bunzip(&jmpbuf, + &bd, + /* src_fd: */ -1, + /* inbuf: */ packed, + /* len: */ packed_len + ); + } + /* read_bunzip can longjmp and end up here with i != 0 + * on read data errors! Not trivial */ + if (i == 0) { + /* Cannot use xmalloc: will leak bd in NOFORK case! */ + outbuf = malloc_or_warn(unpacked_len); + if (outbuf) + read_bunzip(bd, outbuf, unpacked_len); + } + dealloc_bunzip(bd); + return outbuf; +} + +#ifdef TESTING + +static char *const bunzip_errors[] = { + NULL, "Bad file checksum", "Not bzip data", + "Unexpected input EOF", "Unexpected output EOF", "Data error", + "Out of memory", "Obsolete (pre 0.9.5) bzip format not supported" +}; + +/* Dumb little test thing, decompress stdin to stdout */ +int main(int argc, char **argv) +{ + char c; + + int i = unpack_bz2_stream(0, 1); + if (i < 0) + fprintf(stderr, "%s\n", bunzip_errors[-i]); + else if (read(STDIN_FILENO, &c, 1)) + fprintf(stderr, "Trailing garbage ignored\n"); + return -i; +} +#endif diff --git a/busybox-1_37_0/archival/libarchive/decompress_gunzip.c b/busybox-1_37_0/archival/libarchive/decompress_gunzip.c new file mode 100644 index 000000000..d051ecb81 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/decompress_gunzip.c @@ -0,0 +1,1299 @@ +/* vi: set sw=4 ts=4: */ +/* + * gunzip implementation for busybox + * + * Based on GNU gzip v1.2.4 Copyright (C) 1992-1993 Jean-loup Gailly. + * + * Originally adjusted for busybox by Sven Rudolph + * based on gzip sources + * + * Adjusted further by Erik Andersen to support + * files as well as stdin/stdout, and to generally behave itself wrt + * command line handling. + * + * General cleanup to better adhere to the style guide and make use of standard + * busybox functions by Glenn McGrath + * + * read_gz interface + associated hacking by Laurence Anderson + * + * Fixed huft_build() so decoding end-of-block code does not grab more bits + * than necessary (this is required by unzip applet), added inflate_cleanup() + * to free leaked bytebuffer memory (used in unzip.c), and some minor style + * guide cleanups by Ed Clark + * + * gzip (GNU zip) -- compress files with zip algorithm and 'compress' interface + * Copyright (C) 1992-1993 Jean-loup Gailly + * The unzip code was written and put in the public domain by Mark Adler. + * Portions of the lzw code are derived from the public domain 'compress' + * written by Spencer Thomas, Joe Orost, James Woods, Jim McKie, Steve Davies, + * Ken Turkowski, Dave Mack and Peter Jannesen. + * + * See the file algorithm.doc for the compression algorithms and file formats. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +typedef struct huft_t { + unsigned char e; /* number of extra bits or operation */ + unsigned char b; /* number of bits in this code or subcode */ + union { + unsigned n; /* literal, length base, or distance base */ + /* ^^^^^ was "unsigned short", but that results in larger code */ + struct huft_t *t; /* pointer to next level of table */ + } v; +} huft_t; + +enum { + /* gunzip_window size--must be a power of two, and + * at least 32K for zip's deflate method */ + GUNZIP_WSIZE = 0x8000, + /* If BMAX needs to be larger than 16, then h and x[] should be ulg. */ + BMAX = 16, /* maximum bit length of any code (16 for explode) */ + N_MAX = 288, /* maximum number of codes in any set */ +}; + + +/* This is somewhat complex-looking arrangement, but it allows + * to place decompressor state either in bss or in + * malloc'ed space simply by changing #defines below. + * Sizes on i386: + * text data bss dec hex + * 5256 0 108 5364 14f4 - bss + * 4915 0 0 4915 1333 - malloc + */ +#define STATE_IN_BSS 0 +#define STATE_IN_MALLOC 1 + + +typedef struct state_t { + off_t gunzip_bytes_out; /* number of output bytes */ + uint32_t gunzip_crc; + + int gunzip_src_fd; + unsigned gunzip_outbuf_count; /* bytes in output buffer */ + + unsigned char *gunzip_window; + + uint32_t *gunzip_crc_table; + + /* bitbuffer */ + unsigned gunzip_bb; /* bit buffer */ + unsigned char gunzip_bk; /* bits in bit buffer */ + + /* input (compressed) data */ + unsigned char *bytebuffer; /* buffer itself */ + off_t to_read; /* compressed bytes to read (unzip only, -1 for gunzip) */ +// unsigned bytebuffer_max; /* buffer size */ + unsigned bytebuffer_offset; /* buffer position */ + unsigned bytebuffer_size; /* how much data is there (size <= max) */ + + /* private data of inflate_codes() */ + unsigned inflate_codes_ml; /* masks for bl and bd bits */ + unsigned inflate_codes_md; /* masks for bl and bd bits */ + unsigned inflate_codes_bb; /* bit buffer */ + unsigned inflate_codes_k; /* number of bits in bit buffer */ + unsigned inflate_codes_w; /* current gunzip_window position */ + huft_t *inflate_codes_tl; + huft_t *inflate_codes_td; + unsigned inflate_codes_bl; + unsigned inflate_codes_bd; + unsigned inflate_codes_nn; /* length and index for copy */ + unsigned inflate_codes_dd; + + smallint resume_copy; + + /* private data of inflate_get_next_window() */ + smallint method; /* method == -1 for stored, -2 for codes */ + smallint need_another_block; + smallint end_reached; + + /* private data of inflate_stored() */ + unsigned inflate_stored_n; + unsigned inflate_stored_b; + unsigned inflate_stored_k; + unsigned inflate_stored_w; + + const char *error_msg; + jmp_buf error_jmp; +} state_t; +#define gunzip_bytes_out (S()gunzip_bytes_out ) +#define gunzip_crc (S()gunzip_crc ) +#define gunzip_src_fd (S()gunzip_src_fd ) +#define gunzip_outbuf_count (S()gunzip_outbuf_count) +#define gunzip_window (S()gunzip_window ) +#define gunzip_crc_table (S()gunzip_crc_table ) +#define gunzip_bb (S()gunzip_bb ) +#define gunzip_bk (S()gunzip_bk ) +#define to_read (S()to_read ) +// #define bytebuffer_max (S()bytebuffer_max ) +// Both gunzip and unzip can use constant buffer size now (16k): +#define bytebuffer_max 0x4000 +#define bytebuffer (S()bytebuffer ) +#define bytebuffer_offset (S()bytebuffer_offset ) +#define bytebuffer_size (S()bytebuffer_size ) +#define inflate_codes_ml (S()inflate_codes_ml ) +#define inflate_codes_md (S()inflate_codes_md ) +#define inflate_codes_bb (S()inflate_codes_bb ) +#define inflate_codes_k (S()inflate_codes_k ) +#define inflate_codes_w (S()inflate_codes_w ) +#define inflate_codes_tl (S()inflate_codes_tl ) +#define inflate_codes_td (S()inflate_codes_td ) +#define inflate_codes_bl (S()inflate_codes_bl ) +#define inflate_codes_bd (S()inflate_codes_bd ) +#define inflate_codes_nn (S()inflate_codes_nn ) +#define inflate_codes_dd (S()inflate_codes_dd ) +#define resume_copy (S()resume_copy ) +#define method (S()method ) +#define need_another_block (S()need_another_block ) +#define end_reached (S()end_reached ) +#define inflate_stored_n (S()inflate_stored_n ) +#define inflate_stored_b (S()inflate_stored_b ) +#define inflate_stored_k (S()inflate_stored_k ) +#define inflate_stored_w (S()inflate_stored_w ) +#define error_msg (S()error_msg ) +#define error_jmp (S()error_jmp ) + +/* This is a generic part */ +#if STATE_IN_BSS /* Use global data segment */ +#define DECLARE_STATE /*nothing*/ +#define ALLOC_STATE /*nothing*/ +#define DEALLOC_STATE ((void)0) +#define S() state. +#define PASS_STATE /*nothing*/ +#define PASS_STATE_ONLY /*nothing*/ +#define STATE_PARAM /*nothing*/ +#define STATE_PARAM_ONLY void +static state_t state; +#endif + +#if STATE_IN_MALLOC /* Use malloc space */ +#define DECLARE_STATE state_t *state +#define ALLOC_STATE (state = xzalloc(sizeof(*state))) +#define DEALLOC_STATE free(state) +#define S() state-> +#define PASS_STATE state, +#define PASS_STATE_ONLY state +#define STATE_PARAM state_t *state, +#define STATE_PARAM_ONLY state_t *state +#endif + + +static const uint16_t mask_bits[] ALIGN2 = { + 0x0000, 0x0001, 0x0003, 0x0007, 0x000f, 0x001f, 0x003f, 0x007f, 0x00ff, + 0x01ff, 0x03ff, 0x07ff, 0x0fff, 0x1fff, 0x3fff, 0x7fff, 0xffff +}; + +/* Put lengths/offsets and extra bits in a struct of arrays + * to make calls to huft_build() have one fewer parameter. + */ +struct cp_ext { + uint16_t cp[31]; + uint8_t ext[31]; +}; +/* Copy lengths and extra bits for literal codes 257..285 */ +/* note: see note #13 above about the 258 in this list. */ +static const struct cp_ext lit ALIGN2 = { + /*257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 */ + /*0 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 */ + { 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 15, 17, 19, 23, 27, 31, 35, 43, 51, 59, 67, 83, 99, 115, 131, 163, 195, 227, 258, 0, 0 }, + { 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3, 3, 4, 4, 4, 4, 5, 5, 5, 5, 0, 99, 99 } /* 99 == invalid */ +}; +/* Copy offsets and extra bits for distance codes 0..29 */ +static const struct cp_ext dist ALIGN2 = { + /*0 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 */ + { 1, 2, 3, 4, 5, 7, 9, 13, 17, 25, 33, 49, 65, 97, 129, 193, 257, 385, 513, 769, 1025, 1537, 2049, 3073, 4097, 6145, 8193, 12289, 16385, 24577 }, + { 0, 0, 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 12, 13, 13 } +}; + +/* Tables for deflate from PKZIP's appnote.txt. */ +/* Order of the bit length code lengths */ +static const uint8_t border[] ALIGN1 = { + 16, 17, 18, 0, 8, 7, 9, 6, 10, 5, 11, 4, 12, 3, 13, 2, 14, 1, 15 +}; + + +/* + * Free the malloc'ed tables built by huft_build(), which makes a linked + * list of the tables it made, with the links in a dummy first entry of + * each table. + * t: table to free + */ +#define BAD_HUFT(p) ((uintptr_t)(p) & 1) +#define ERR_RET ((huft_t*)(uintptr_t)1) +static void huft_free(huft_t *p) +{ + huft_t *q; + + /* + * If 'p' has the error bit set we have to clear it, otherwise we might run + * into a segmentation fault or an invalid pointer to free(p) + */ + //if (BAD_HUFT(p)) // commented out, since bit clearing has effect only if condition is true + p = (huft_t*)((uintptr_t)p & ~(uintptr_t)ERR_RET); + + /* Go through linked list, freeing from the malloced (t[-1]) address. */ + while (p) { + q = (--p)->v.t; + free(p); + p = q; + } +} + +static void huft_free_all(STATE_PARAM_ONLY) +{ + huft_free(inflate_codes_tl); + huft_free(inflate_codes_td); + inflate_codes_tl = NULL; + inflate_codes_td = NULL; +} + +static void abort_unzip(STATE_PARAM_ONLY) NORETURN; +static void abort_unzip(STATE_PARAM_ONLY) +{ + huft_free_all(PASS_STATE_ONLY); + longjmp(error_jmp, 1); +} + +static unsigned fill_bitbuffer(STATE_PARAM unsigned bitbuffer, unsigned *current, const unsigned required) +{ + while (*current < required) { + if (bytebuffer_offset >= bytebuffer_size) { + unsigned sz = bytebuffer_max - 4; + if (to_read >= 0 && to_read < sz) /* unzip only */ + sz = to_read; + /* Leave the first 4 bytes empty so we can always unwind the bitbuffer + * to the front of the bytebuffer */ + bytebuffer_size = safe_read(gunzip_src_fd, &bytebuffer[4], sz); + if ((int)bytebuffer_size < 1) { + error_msg = "unexpected end of file"; + abort_unzip(PASS_STATE_ONLY); + } + if (to_read >= 0) /* unzip only */ + to_read -= bytebuffer_size; + bytebuffer_size += 4; + bytebuffer_offset = 4; + } + bitbuffer |= ((unsigned) bytebuffer[bytebuffer_offset]) << *current; + bytebuffer_offset++; + *current += 8; + } + return bitbuffer; +} + + +/* Given a list of code lengths and a maximum table size, make a set of + * tables to decode that set of codes. + * + * b: code lengths in bits (all assumed <= BMAX) + * n: number of codes (assumed <= N_MAX) + * s: number of simple-valued codes (0..s-1) + * cp_ext->cp,ext: list of base values/extra bits for non-simple codes + * m: maximum lookup bits, returns actual + * result: starting table + * + * On error, returns a value with lowest-bit set on error. + * It can be just the value of 0x1, + * or a valid pointer to a Huffman table, ORed with 0x1 if incompete table + * is given: "fixed inflate" decoder feeds us such data. + */ +static huft_t* huft_build(const unsigned *b, const unsigned n, + const unsigned s, const struct cp_ext *cp_ext, + unsigned *m) +{ + unsigned a; /* counter for codes of length k */ + unsigned c[BMAX + 1]; /* bit length count table */ + unsigned eob_len; /* length of end-of-block code (value 256) */ + unsigned f; /* i repeats in table every f entries */ + int g; /* maximum code length */ + int htl; /* table level */ + unsigned i; /* counter, current code */ + unsigned j; /* counter */ + int k; /* number of bits in current code */ + const unsigned *p; /* pointer into c[], b[], or v[] */ + huft_t *q; /* points to current table */ + huft_t r; /* table entry for structure assignment */ + huft_t *u[BMAX]; /* table stack */ + unsigned v[N_MAX + 1]; /* values in order of bit length. last v[] is never used */ + int ws[BMAX + 1]; /* bits decoded stack */ + int w; /* bits decoded */ + unsigned x[BMAX + 1]; /* bit offsets, then code stack */ + unsigned *xp; /* pointer into x */ + int y; /* number of dummy codes added */ + unsigned z; /* number of entries in current table */ + huft_t *result; + huft_t **t; + + /* Length of EOB code, if any */ + eob_len = n > 256 ? b[256] : BMAX; + + /* Generate counts for each bit length */ + memset(c, 0, sizeof(c)); + p = b; + i = n; + do { + c[*p]++; /* assume all entries <= BMAX */ + p++; /* can't combine with above line (Solaris bug) */ + } while (--i); + if (c[0] == n) { /* null input - all zero length codes */ + q = xzalloc(3 * sizeof(*q)); + //q[0].v.t = NULL; + q[1].e = 99; /* invalid code marker */ + q[1].b = 1; + q[2].e = 99; /* invalid code marker */ + q[2].b = 1; + *m = 1; + return q + 1; + } + + /* Find minimum and maximum length, bound *m by those */ + for (j = 1; (j <= BMAX) && (c[j] == 0); j++) + continue; + k = j; /* minimum code length */ + for (i = BMAX; (c[i] == 0) && i; i--) + continue; + g = i; /* maximum code length */ + *m = (*m < j) ? j : ((*m > i) ? i : *m); + + /* Adjust last length count to fill out codes, if needed */ + for (y = 1 << j; j < i; j++, y <<= 1) { + y -= c[j]; + if (y < 0) + return ERR_RET; /* bad input: more codes than bits */ + } + y -= c[i]; + if (y < 0) + return ERR_RET; + c[i] += y; + + /* Generate starting offsets into the value table for each length */ + x[1] = j = 0; + p = c + 1; + xp = x + 2; + while (--i) { /* note that i == g from above */ + j += *p++; + *xp++ = j; + } + + /* Make a table of values in order of bit lengths. + * To detect bad input, unused v[i]'s are set to invalid value UINT_MAX. + * In particular, last v[i] is never filled and must not be accessed. + */ + memset(v, 0xff, sizeof(v)); + p = b; + i = 0; + do { + j = *p++; + if (j != 0) { + v[x[j]++] = i; + } + } while (++i < n); + + /* Generate the Huffman codes and for each, make the table entries */ + result = ERR_RET; + t = &result; + x[0] = i = 0; /* first Huffman code is zero */ + p = v; /* grab values in bit order */ + htl = -1; /* no tables yet--level -1 */ + w = ws[0] = 0; /* bits decoded */ + u[0] = NULL; /* just to keep compilers happy */ + q = NULL; /* ditto */ + z = 0; /* ditto */ + + /* go through the bit lengths (k already is bits in shortest code) */ + for (; k <= g; k++) { + a = c[k]; + while (a--) { + /* here i is the Huffman code of length k bits for value *p */ + /* make tables up to required level */ + while (k > ws[htl + 1]) { + w = ws[++htl]; + + /* compute minimum size table less than or equal to *m bits */ + z = g - w; + z = z > *m ? *m : z; /* upper limit on table size */ + j = k - w; + f = 1 << j; + if (f > a + 1) { /* try a k-w bit table */ + /* too few codes for k-w bit table */ + f -= a + 1; /* deduct codes from patterns left */ + xp = c + k; + while (++j < z) { /* try smaller tables up to z bits */ + f <<= 1; + if (f <= *++xp) { + break; /* enough codes to use up j bits */ + } + f -= *xp; /* else deduct codes from patterns */ + } + } + j = (w + j > eob_len && w < eob_len) ? eob_len - w : j; /* make EOB code end at table */ + z = 1 << j; /* table entries for j-bit table */ + ws[htl+1] = w + j; /* set bits decoded in stack */ + + /* allocate and link in new table */ + q = xzalloc((z + 1) * sizeof(huft_t)); + *t = q + 1; /* link to list for huft_free() */ + t = &(q->v.t); + u[htl] = ++q; /* table starts after link */ + + /* connect to last table, if there is one */ + if (htl) { + x[htl] = i; /* save pattern for backing up */ + r.b = (unsigned char) (w - ws[htl - 1]); /* bits to dump before this table */ + r.e = (unsigned char) (16 + j); /* bits in this table */ + r.v.t = q; /* pointer to this table */ + j = (i & ((1 << w) - 1)) >> ws[htl - 1]; + u[htl - 1][j] = r; /* connect to last table */ + } + } + + /* set up table entry in r */ + r.b = (unsigned char) (k - w); + if (/*p >= v + n || -- redundant, caught by the second check: */ + *p == UINT_MAX /* do we access uninited v[i]? (see memset(v))*/ + ) { + r.e = 99; /* out of values--invalid code */ + } else if (*p < s) { + r.e = (unsigned char) (*p < 256 ? 16 : 15); /* 256 is EOB code */ + r.v.n = (unsigned short) (*p++); /* simple code is just the value */ + } else { + r.e = (unsigned char) cp_ext->ext[*p - s]; /* non-simple--look up in lists */ + r.v.n = cp_ext->cp[*p++ - s]; + } + + /* fill code-like entries with r */ + f = 1 << (k - w); + for (j = i >> w; j < z; j += f) { + q[j] = r; + } + + /* backwards increment the k-bit code i */ + for (j = 1 << (k - 1); i & j; j >>= 1) { + i ^= j; + } + i ^= j; + + /* backup over finished tables */ + while ((i & ((1 << w) - 1)) != x[htl]) { + w = ws[--htl]; + } + } + } + + /* return actual size of base table */ + *m = ws[1]; + + if (y != 0 && g != 1) /* we were given an incomplete table */ + /* return "result" ORed with 1 */ + return (void*)((uintptr_t)result | 1); + + return result; +} + + +/* + * inflate (decompress) the codes in a deflated (compressed) block. + * Return an error code or zero if it all goes ok. + * + * tl, td: literal/length and distance decoder tables + * bl, bd: number of bits decoded by tl[] and td[] + */ +/* called once from inflate_block */ + +/* map formerly local static variables to globals */ +#define ml inflate_codes_ml +#define md inflate_codes_md +#define bb inflate_codes_bb +#define k inflate_codes_k +#define w inflate_codes_w +#define tl inflate_codes_tl +#define td inflate_codes_td +#define bl inflate_codes_bl +#define bd inflate_codes_bd +#define nn inflate_codes_nn +#define dd inflate_codes_dd +static void inflate_codes_setup(STATE_PARAM unsigned my_bl, unsigned my_bd) +{ + bl = my_bl; + bd = my_bd; + /* make local copies of globals */ + bb = gunzip_bb; /* initialize bit buffer */ + k = gunzip_bk; + w = gunzip_outbuf_count; /* initialize gunzip_window position */ + /* inflate the coded data */ + ml = mask_bits[bl]; /* precompute masks for speed */ + md = mask_bits[bd]; +} +/* called once from inflate_get_next_window */ +static NOINLINE int inflate_codes(STATE_PARAM_ONLY) +{ + unsigned e; /* table entry flag/number of extra bits */ + huft_t *t; /* pointer to table entry */ + + if (resume_copy) + goto do_copy; + + while (1) { /* do until end of block */ + bb = fill_bitbuffer(PASS_STATE bb, &k, bl); + t = tl + ((unsigned) bb & ml); + e = t->e; + if (e > 16) + do { + if (e == 99) { + abort_unzip(PASS_STATE_ONLY); + } + bb >>= t->b; + k -= t->b; + e -= 16; + bb = fill_bitbuffer(PASS_STATE bb, &k, e); + t = t->v.t + ((unsigned) bb & mask_bits[e]); + e = t->e; + } while (e > 16); + bb >>= t->b; + k -= t->b; + if (e == 16) { /* then it's a literal */ + gunzip_window[w++] = (unsigned char) t->v.n; + if (w == GUNZIP_WSIZE) { + gunzip_outbuf_count = w; + //flush_gunzip_window(); + w = 0; + return 1; // We have a block to read + } + } else { /* it's an EOB or a length */ + /* exit if end of block */ + if (e == 15) { + break; + } + + /* get length of block to copy */ + bb = fill_bitbuffer(PASS_STATE bb, &k, e); + nn = t->v.n + ((unsigned) bb & mask_bits[e]); + bb >>= e; + k -= e; + + /* decode distance of block to copy */ + bb = fill_bitbuffer(PASS_STATE bb, &k, bd); + t = td + ((unsigned) bb & md); + e = t->e; + if (e > 16) + do { + if (e == 99) { + abort_unzip(PASS_STATE_ONLY); + } + bb >>= t->b; + k -= t->b; + e -= 16; + bb = fill_bitbuffer(PASS_STATE bb, &k, e); + t = t->v.t + ((unsigned) bb & mask_bits[e]); + e = t->e; + } while (e > 16); + bb >>= t->b; + k -= t->b; + bb = fill_bitbuffer(PASS_STATE bb, &k, e); + dd = w - t->v.n - ((unsigned) bb & mask_bits[e]); + bb >>= e; + k -= e; + + /* do the copy */ + do_copy: + do { + /* Was: nn -= (e = (e = GUNZIP_WSIZE - ((dd &= GUNZIP_WSIZE - 1) > w ? dd : w)) > nn ? nn : e); */ + /* Who wrote THAT?? rewritten as: */ + unsigned delta; + + dd &= GUNZIP_WSIZE - 1; + e = GUNZIP_WSIZE - (dd > w ? dd : w); + delta = w > dd ? w - dd : dd - w; + if (e > nn) e = nn; + nn -= e; + + /* copy to new buffer to prevent possible overwrite */ + if (delta >= e) { + memcpy(gunzip_window + w, gunzip_window + dd, e); + w += e; + dd += e; + } else { + /* do it slow to avoid memcpy() overlap */ + /* !NOMEMCPY */ + do { + gunzip_window[w++] = gunzip_window[dd++]; + } while (--e); + } + if (w == GUNZIP_WSIZE) { + gunzip_outbuf_count = w; + resume_copy = (nn != 0); + //flush_gunzip_window(); + w = 0; + return 1; + } + } while (nn); + resume_copy = 0; + } + } + + /* restore the globals from the locals */ + gunzip_outbuf_count = w; /* restore global gunzip_window pointer */ + gunzip_bb = bb; /* restore global bit buffer */ + gunzip_bk = k; + + /* normally just after call to inflate_codes, but save code by putting it here */ + /* free the decoding tables (tl and td), return */ + huft_free_all(PASS_STATE_ONLY); + + /* done */ + return 0; +} +#undef ml +#undef md +#undef bb +#undef k +#undef w +#undef tl +#undef td +#undef bl +#undef bd +#undef nn +#undef dd + + +/* called once from inflate_block */ +static void inflate_stored_setup(STATE_PARAM int my_n, int my_b, int my_k) +{ + inflate_stored_n = my_n; + inflate_stored_b = my_b; + inflate_stored_k = my_k; + /* initialize gunzip_window position */ + inflate_stored_w = gunzip_outbuf_count; +} +/* called once from inflate_get_next_window */ +static int inflate_stored(STATE_PARAM_ONLY) +{ + /* read and output the compressed data */ + while (inflate_stored_n--) { + inflate_stored_b = fill_bitbuffer(PASS_STATE inflate_stored_b, &inflate_stored_k, 8); + gunzip_window[inflate_stored_w++] = (unsigned char) inflate_stored_b; + if (inflate_stored_w == GUNZIP_WSIZE) { + gunzip_outbuf_count = inflate_stored_w; + //flush_gunzip_window(); + inflate_stored_w = 0; + inflate_stored_b >>= 8; + inflate_stored_k -= 8; + return 1; /* We have a block */ + } + inflate_stored_b >>= 8; + inflate_stored_k -= 8; + } + + /* restore the globals from the locals */ + gunzip_outbuf_count = inflate_stored_w; /* restore global gunzip_window pointer */ + gunzip_bb = inflate_stored_b; /* restore global bit buffer */ + gunzip_bk = inflate_stored_k; + return 0; /* Finished */ +} + + +/* + * decompress an inflated block + * e: last block flag + * + * GLOBAL VARIABLES: bb, kk, + */ +/* Return values: -1 = inflate_stored, -2 = inflate_codes */ +/* One callsite in inflate_get_next_window */ +static int inflate_block(STATE_PARAM smallint *e) +{ + unsigned ll[286 + 30]; /* literal/length and distance code lengths */ + unsigned t; /* block type */ + unsigned b; /* bit buffer */ + unsigned k; /* number of bits in bit buffer */ + + /* make local bit buffer */ + + b = gunzip_bb; + k = gunzip_bk; + + /* read in last block bit */ + b = fill_bitbuffer(PASS_STATE b, &k, 1); + *e = b & 1; + b >>= 1; + k -= 1; + + /* read in block type */ + b = fill_bitbuffer(PASS_STATE b, &k, 2); + t = (unsigned) b & 3; + b >>= 2; + k -= 2; + + /* restore the global bit buffer */ + gunzip_bb = b; + gunzip_bk = k; + + /* Do we see block type 1 often? Yes! + * TODO: fix performance problem (see below) */ + //bb_error_msg("blktype %d", t); + + /* inflate that block type */ + switch (t) { + case 0: /* Inflate stored */ + { + unsigned n; /* number of bytes in block */ + unsigned b_stored; /* bit buffer */ + unsigned k_stored; /* number of bits in bit buffer */ + + /* make local copies of globals */ + b_stored = gunzip_bb; /* initialize bit buffer */ + k_stored = gunzip_bk; + + /* go to byte boundary */ + n = k_stored & 7; + b_stored >>= n; + k_stored -= n; + + /* get the length and its complement */ + b_stored = fill_bitbuffer(PASS_STATE b_stored, &k_stored, 16); + n = ((unsigned) b_stored & 0xffff); + b_stored >>= 16; + k_stored -= 16; + + b_stored = fill_bitbuffer(PASS_STATE b_stored, &k_stored, 16); + if (n != (unsigned) ((~b_stored) & 0xffff)) { + abort_unzip(PASS_STATE_ONLY); /* error in compressed data */ + } + b_stored >>= 16; + k_stored -= 16; + + inflate_stored_setup(PASS_STATE n, b_stored, k_stored); + + return -1; + } + case 1: + /* Inflate fixed + * decompress an inflated type 1 (fixed Huffman codes) block. We should + * either replace this with a custom decoder, or at least precompute the + * Huffman tables. TODO */ + { + int i; /* temporary variable */ + unsigned bl; /* lookup bits for tl */ + unsigned bd; /* lookup bits for td */ + /* gcc 4.2.1 is too dumb to reuse stackspace. Moved up... */ + //unsigned ll[288]; /* length list for huft_build */ + + /* set up literal table */ + for (i = 0; i < 144; i++) + ll[i] = 8; + for (; i < 256; i++) + ll[i] = 9; + for (; i < 280; i++) + ll[i] = 7; + for (; i < 288; i++) /* make a complete, but wrong code set */ + ll[i] = 8; + bl = 7; + inflate_codes_tl = huft_build(ll, 288, 257, &lit, &bl); + /* ^^^ never returns error here - we use known data */ + + /* set up distance table */ + for (i = 0; i < 30; i++) /* make an incomplete code set */ + ll[i] = 5; + bd = 5; + inflate_codes_td = huft_build(ll, 30, 0, &dist, &bd); + /* ^^^ does return error here! (lsb bit is set) - we gave it incomplete code set */ + /* clearing error bit: */ + inflate_codes_td = (void*)((uintptr_t)inflate_codes_td & ~(uintptr_t)1); + + /* set up data for inflate_codes() */ + inflate_codes_setup(PASS_STATE bl, bd); + + /* huft_free code moved into inflate_codes */ + + return -2; + } + case 2: /* Inflate dynamic */ + { + enum { dbits = 6 }; /* bits in base distance lookup table */ + enum { lbits = 9 }; /* bits in base literal/length lookup table */ + + huft_t *td; /* distance code table */ + unsigned i; /* temporary variables */ + unsigned j; + unsigned l; /* last length */ + unsigned m; /* mask for bit lengths table */ + unsigned n; /* number of lengths to get */ + unsigned bl; /* lookup bits for tl */ + unsigned bd; /* lookup bits for td */ + unsigned nb; /* number of bit length codes */ + unsigned nl; /* number of literal/length codes */ + unsigned nd; /* number of distance codes */ + + //unsigned ll[286 + 30];/* literal/length and distance code lengths */ + unsigned b_dynamic; /* bit buffer */ + unsigned k_dynamic; /* number of bits in bit buffer */ + + /* make local bit buffer */ + b_dynamic = gunzip_bb; + k_dynamic = gunzip_bk; + + /* read in table lengths */ + b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 5); + nl = 257 + ((unsigned) b_dynamic & 0x1f); /* number of literal/length codes */ + + b_dynamic >>= 5; + k_dynamic -= 5; + b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 5); + nd = 1 + ((unsigned) b_dynamic & 0x1f); /* number of distance codes */ + + b_dynamic >>= 5; + k_dynamic -= 5; + b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 4); + nb = 4 + ((unsigned) b_dynamic & 0xf); /* number of bit length codes */ + + b_dynamic >>= 4; + k_dynamic -= 4; + if (nl > 286 || nd > 30) { + abort_unzip(PASS_STATE_ONLY); /* bad lengths */ + } + + /* read in bit-length-code lengths */ + for (j = 0; j < nb; j++) { + b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 3); + ll[border[j]] = (unsigned) b_dynamic & 7; + b_dynamic >>= 3; + k_dynamic -= 3; + } + for (; j < 19; j++) + ll[border[j]] = 0; + + /* build decoding table for trees - single level, 7 bit lookup */ + bl = 7; + inflate_codes_tl = huft_build(ll, 19, 19, NULL, &bl); + if (BAD_HUFT(inflate_codes_tl)) { + abort_unzip(PASS_STATE_ONLY); /* incomplete code set */ + } + + /* read in literal and distance code lengths */ + n = nl + nd; + m = mask_bits[bl]; + i = l = 0; + while ((unsigned) i < n) { + b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, (unsigned)bl); + td = inflate_codes_tl + ((unsigned) b_dynamic & m); + j = td->b; + b_dynamic >>= j; + k_dynamic -= j; + j = td->v.n; + if (j < 16) { /* length of code in bits (0..15) */ + ll[i++] = l = j; /* save last length in l */ + } else if (j == 16) { /* repeat last length 3 to 6 times */ + b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 2); + j = 3 + ((unsigned) b_dynamic & 3); + b_dynamic >>= 2; + k_dynamic -= 2; + if ((unsigned) i + j > n) { + abort_unzip(PASS_STATE_ONLY); //return 1; + } + while (j--) { + ll[i++] = l; + } + } else if (j == 17) { /* 3 to 10 zero length codes */ + b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 3); + j = 3 + ((unsigned) b_dynamic & 7); + b_dynamic >>= 3; + k_dynamic -= 3; + if ((unsigned) i + j > n) { + abort_unzip(PASS_STATE_ONLY); //return 1; + } + while (j--) { + ll[i++] = 0; + } + l = 0; + } else { /* j == 18: 11 to 138 zero length codes */ + b_dynamic = fill_bitbuffer(PASS_STATE b_dynamic, &k_dynamic, 7); + j = 11 + ((unsigned) b_dynamic & 0x7f); + b_dynamic >>= 7; + k_dynamic -= 7; + if ((unsigned) i + j > n) { + abort_unzip(PASS_STATE_ONLY); //return 1; + } + while (j--) { + ll[i++] = 0; + } + l = 0; + } + } + + /* free decoding table for trees */ + huft_free(inflate_codes_tl); + + /* restore the global bit buffer */ + gunzip_bb = b_dynamic; + gunzip_bk = k_dynamic; + + /* build the decoding tables for literal/length and distance codes */ + bl = lbits; + inflate_codes_tl = huft_build(ll, nl, 257, &lit, &bl); + if (BAD_HUFT(inflate_codes_tl)) { + abort_unzip(PASS_STATE_ONLY); + } + bd = dbits; + inflate_codes_td = huft_build(ll + nl, nd, 0, &dist, &bd); + if (BAD_HUFT(inflate_codes_td)) { + abort_unzip(PASS_STATE_ONLY); + } + + /* set up data for inflate_codes() */ + inflate_codes_setup(PASS_STATE bl, bd); + + /* huft_free code moved into inflate_codes */ + + return -2; + } + default: + abort_unzip(PASS_STATE_ONLY); + } +} + +/* Two callsites, both in inflate_get_next_window */ +static void calculate_gunzip_crc(STATE_PARAM_ONLY) +{ + gunzip_crc = crc32_block_endian0(gunzip_crc, gunzip_window, gunzip_outbuf_count, gunzip_crc_table); + gunzip_bytes_out += gunzip_outbuf_count; +} + +/* One callsite in inflate_unzip_internal */ +static int inflate_get_next_window(STATE_PARAM_ONLY) +{ + gunzip_outbuf_count = 0; + + while (1) { + int ret; + + if (need_another_block) { + if (end_reached) { + calculate_gunzip_crc(PASS_STATE_ONLY); + end_reached = 0; + /* NB: need_another_block is still set */ + return 0; /* Last block */ + } + method = inflate_block(PASS_STATE &end_reached); + need_another_block = 0; + } + + switch (method) { + case -1: + ret = inflate_stored(PASS_STATE_ONLY); + break; + case -2: + ret = inflate_codes(PASS_STATE_ONLY); + break; + default: /* cannot happen */ + abort_unzip(PASS_STATE_ONLY); + } + + if (ret == 1) { + calculate_gunzip_crc(PASS_STATE_ONLY); + return 1; /* more data left */ + } + need_another_block = 1; /* end of that block */ + } + /* Doesnt get here */ +} + + +/* Called from unpack_gz_stream() and inflate_unzip() */ +static IF_DESKTOP(long long) int +inflate_unzip_internal(STATE_PARAM transformer_state_t *xstate) +{ + IF_DESKTOP(long long) int n = 0; + ssize_t nwrote; + + /* Allocate all global buffers (for DYN_ALLOC option) */ + gunzip_window = xmalloc(GUNZIP_WSIZE); + gunzip_outbuf_count = 0; + gunzip_bytes_out = 0; + gunzip_src_fd = xstate->src_fd; + + /* (re) initialize state */ + method = -1; + need_another_block = 1; + resume_copy = 0; + gunzip_bk = 0; + gunzip_bb = 0; + + /* Create the crc table */ + gunzip_crc_table = crc32_new_table_le(); + gunzip_crc = ~0; + + error_msg = "corrupted data"; + if (setjmp(error_jmp)) { + /* Error from deep inside zip machinery */ + bb_simple_error_msg(error_msg); + n = -1; + goto ret; + } + + while (1) { + int r = inflate_get_next_window(PASS_STATE_ONLY); + nwrote = transformer_write(xstate, gunzip_window, gunzip_outbuf_count); + if (nwrote == (ssize_t)-1) { + n = -1; + goto ret; + } + IF_DESKTOP(n += nwrote;) + if (r == 0) break; + } + + /* Store unused bytes in a global buffer so calling applets can access it */ + if (gunzip_bk >= 8) { + /* Undo too much lookahead. The next read will be byte aligned + * so we can discard unused bits in the last meaningful byte. */ + bytebuffer_offset--; + bytebuffer[bytebuffer_offset] = gunzip_bb & 0xff; + gunzip_bb >>= 8; + gunzip_bk -= 8; + } + ret: + /* Cleanup */ + free(gunzip_window); + free(gunzip_crc_table); + return n; +} + + +/* External entry points */ + +/* For unzip */ + +IF_DESKTOP(long long) int FAST_FUNC +inflate_unzip(transformer_state_t *xstate) +{ + IF_DESKTOP(long long) int n; + DECLARE_STATE; + + ALLOC_STATE; + + to_read = xstate->bytes_in; +// bytebuffer_max = 0x8000; + bytebuffer_offset = 4; + bytebuffer = xmalloc(bytebuffer_max); + n = inflate_unzip_internal(PASS_STATE xstate); + free(bytebuffer); + + xstate->crc32 = gunzip_crc; + xstate->bytes_out = gunzip_bytes_out; + DEALLOC_STATE; + return n; +} + + +/* For gunzip */ + +/* helpers first */ + +/* Top up the input buffer with at least n bytes. */ +static int top_up(STATE_PARAM unsigned n) +{ + int count = bytebuffer_size - bytebuffer_offset; + + if (count < (int)n) { + memmove(bytebuffer, &bytebuffer[bytebuffer_offset], count); + bytebuffer_offset = 0; + bytebuffer_size = full_read(gunzip_src_fd, &bytebuffer[count], bytebuffer_max - count); + if ((int)bytebuffer_size < 0) { + bb_simple_error_msg(bb_msg_read_error); + return 0; + } + bytebuffer_size += count; + if (bytebuffer_size < n) + return 0; + } + return 1; +} + +static uint16_t buffer_read_le_u16(STATE_PARAM_ONLY) +{ + uint16_t res; +#if BB_LITTLE_ENDIAN + move_from_unaligned16(res, &bytebuffer[bytebuffer_offset]); +#else + res = bytebuffer[bytebuffer_offset]; + res |= bytebuffer[bytebuffer_offset + 1] << 8; +#endif + bytebuffer_offset += 2; + return res; +} + +static uint32_t buffer_read_le_u32(STATE_PARAM_ONLY) +{ + uint32_t res; +#if BB_LITTLE_ENDIAN + move_from_unaligned32(res, &bytebuffer[bytebuffer_offset]); +#else + res = bytebuffer[bytebuffer_offset]; + res |= bytebuffer[bytebuffer_offset + 1] << 8; + res |= bytebuffer[bytebuffer_offset + 2] << 16; + res |= bytebuffer[bytebuffer_offset + 3] << 24; +#endif + bytebuffer_offset += 4; + return res; +} + +static int check_header_gzip(STATE_PARAM transformer_state_t *xstate) +{ + union { + unsigned char raw[8]; + struct { + uint8_t gz_method; + uint8_t flags; + uint32_t mtime; + uint8_t xtra_flags_UNUSED; + uint8_t os_flags_UNUSED; + } PACKED formatted; + } header; + + BUILD_BUG_ON(sizeof(header) != 8); + + /* + * Rewind bytebuffer. We use the beginning because the header has 8 + * bytes, leaving enough for unwinding afterwards. + */ + bytebuffer_size -= bytebuffer_offset; + memmove(bytebuffer, &bytebuffer[bytebuffer_offset], bytebuffer_size); + bytebuffer_offset = 0; + + if (!top_up(PASS_STATE 8)) + return 0; + memcpy(header.raw, &bytebuffer[bytebuffer_offset], 8); + bytebuffer_offset += 8; + + /* Check the compression method */ + if (header.formatted.gz_method != 8) { + return 0; + } + + if (header.formatted.flags & 0x04) { + /* bit 2 set: extra field present */ + unsigned extra_short; + + if (!top_up(PASS_STATE 2)) + return 0; + extra_short = buffer_read_le_u16(PASS_STATE_ONLY); + if (!top_up(PASS_STATE extra_short)) + return 0; + /* Ignore extra field */ + bytebuffer_offset += extra_short; + } + + /* Discard original name and file comment if any */ + /* bit 3 set: original file name present */ + /* bit 4 set: file comment present */ + if (header.formatted.flags & 0x18) { + while (1) { + do { + if (!top_up(PASS_STATE 1)) + return 0; + } while (bytebuffer[bytebuffer_offset++] != 0); + if ((header.formatted.flags & 0x18) != 0x18) + break; + header.formatted.flags &= ~0x18; + } + } + + xstate->mtime = SWAP_LE32(header.formatted.mtime); + + /* Read the header checksum */ + if (header.formatted.flags & 0x02) { + if (!top_up(PASS_STATE 2)) + return 0; + bytebuffer_offset += 2; + } + return 1; +} + +IF_DESKTOP(long long) int FAST_FUNC +unpack_gz_stream(transformer_state_t *xstate) +{ + uint32_t v32; + IF_DESKTOP(long long) int total, n; + DECLARE_STATE; + +#if !ENABLE_FEATURE_SEAMLESS_Z + if (check_signature16(xstate, GZIP_MAGIC)) + return -1; +#else + if (!xstate->signature_skipped) { + uint16_t magic2; + + if (full_read(xstate->src_fd, &magic2, 2) != 2) { + bad_magic: + bb_simple_error_msg("invalid magic"); + return -1; + } + if (magic2 == COMPRESS_MAGIC) { + xstate->signature_skipped = 2; + return unpack_Z_stream(xstate); + } + if (magic2 != GZIP_MAGIC) + goto bad_magic; + } +#endif + + total = 0; + + ALLOC_STATE; + to_read = -1; +// bytebuffer_max = 0x8000; + bytebuffer = xmalloc(bytebuffer_max); + gunzip_src_fd = xstate->src_fd; + + again: + if (!check_header_gzip(PASS_STATE xstate)) { + bb_simple_error_msg("corrupted data"); + total = -1; + goto ret; + } + + n = inflate_unzip_internal(PASS_STATE xstate); + if (n < 0) { + total = -1; + goto ret; + } + total += n; + + if (!top_up(PASS_STATE 8)) { + bb_simple_error_msg("corrupted data"); + total = -1; + goto ret; + } + + /* Validate decompression - crc */ + v32 = buffer_read_le_u32(PASS_STATE_ONLY); + if ((~gunzip_crc) != v32) { + bb_simple_error_msg("crc error"); + total = -1; + goto ret; + } + + /* Validate decompression - size */ + v32 = buffer_read_le_u32(PASS_STATE_ONLY); + if ((uint32_t)gunzip_bytes_out != v32) { + bb_simple_error_msg("incorrect length"); + total = -1; + } + + if (!top_up(PASS_STATE 2)) + goto ret; /* EOF */ + + if (bytebuffer[bytebuffer_offset] == 0x1f + && bytebuffer[bytebuffer_offset + 1] == 0x8b + ) { + bytebuffer_offset += 2; + goto again; + } + /* GNU gzip says: */ + /*bb_error_msg("decompression OK, trailing garbage ignored");*/ + + ret: + free(bytebuffer); + DEALLOC_STATE; + return total; +} diff --git a/busybox-1_37_0/archival/libarchive/decompress_uncompress.c b/busybox-1_37_0/archival/libarchive/decompress_uncompress.c new file mode 100644 index 000000000..2725a7f09 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/decompress_uncompress.c @@ -0,0 +1,312 @@ +/* vi: set sw=4 ts=4: */ +/* + * uncompress for busybox -- (c) 2002 Robert Griebl + * + * based on the original compress42.c source + * (see disclaimer below) + */ +/* (N)compress42.c - File compression ala IEEE Computer, Mar 1992. + * + * Authors: + * Spencer W. Thomas (decvax!harpo!utah-cs!utah-gr!thomas) + * Jim McKie (decvax!mcvax!jim) + * Steve Davies (decvax!vax135!petsd!peora!srd) + * Ken Turkowski (decvax!decwrl!turtlevax!ken) + * James A. Woods (decvax!ihnp4!ames!jaw) + * Joe Orost (decvax!vax135!petsd!joe) + * Dave Mack (csu@alembic.acs.com) + * Peter Jannesen, Network Communication Systems + * (peter@ncs.nl) + * + * marc@suse.de : a small security fix for a buffer overflow + * + * [... History snipped ...] + */ +#include "libbb.h" +#include "bb_archive.h" + + +/* Default input buffer size */ +#define IBUFSIZ 2048 + +/* Default output buffer size */ +#define OBUFSIZ 2048 + +/* Defines for third byte of header */ +#define BIT_MASK 0x1f /* Mask for 'number of compresssion bits' */ + /* Masks 0x20 and 0x40 are free. */ + /* I think 0x20 should mean that there is */ + /* a fourth header byte (for expansion). */ +#define BLOCK_MODE 0x80 /* Block compression if table is full and */ + /* compression rate is dropping flush tables */ + /* the next two codes should not be changed lightly, as they must not */ + /* lie within the contiguous general code space. */ +#define FIRST 257 /* first free entry */ +#define CLEAR 256 /* table clear output code */ + +#define INIT_BITS 9 /* initial number of bits/code */ + + +/* machine variants which require cc -Dmachine: pdp11, z8000, DOS */ +#define HBITS 17 /* 50% occupancy */ +#define HSIZE (1<src_fd, inbuf, 1) != 1) { + bb_simple_error_msg("short read"); + goto err; + } + + maxbits = inbuf[0] & BIT_MASK; + block_mode = inbuf[0] & BLOCK_MODE; + maxmaxcode = MAXCODE(maxbits); + + if (maxbits > BITS) { + bb_error_msg("compressed with %d bits, can only handle " + BITS_STR" bits", maxbits); + goto err; + } + + n_bits = INIT_BITS; + maxcode = MAXCODE(INIT_BITS) - 1; + bitmask = (1 << INIT_BITS) - 1; + oldcode = -1; + finchar = 0; + outpos = 0; + posbits = 0 << 3; + + free_ent = ((block_mode) ? FIRST : 256); + + /* As above, initialize the first 256 entries in the table. */ + /*clear_tab_prefixof(); - done by xzalloc */ + + { + int i; + for (i = 255; i >= 0; --i) + tab_suffixof(i) = (unsigned char) i; + } + + do { + resetbuf: + { + int i; + int e; + int o; + + o = posbits >> 3; + e = insize - o; + + for (i = 0; i < e; ++i) + inbuf[i] = inbuf[i + o]; + + insize = e; + posbits = 0; + } + + if (insize < (int) (IBUFSIZ + 64) - IBUFSIZ) { + rsize = safe_read(xstate->src_fd, inbuf + insize, IBUFSIZ); + if (rsize < 0) + bb_simple_error_msg_and_die(bb_msg_read_error); + insize += rsize; + } + + inbits = ((rsize > 0) ? (insize - insize % n_bits) << 3 : + (insize << 3) - (n_bits - 1)); + + while (inbits > posbits) { + long code; + + if (free_ent > maxcode) { + posbits = + ((posbits - 1) + + ((n_bits << 3) - + (posbits - 1 + (n_bits << 3)) % (n_bits << 3))); + ++n_bits; + if (n_bits == maxbits) { + maxcode = maxmaxcode; + } else { + maxcode = MAXCODE(n_bits) - 1; + } + bitmask = (1 << n_bits) - 1; + goto resetbuf; + } + { + unsigned char *p = &inbuf[posbits >> 3]; + code = ((p[0] + | ((long) (p[1]) << 8) + | ((long) (p[2]) << 16)) >> (posbits & 0x7)) & bitmask; + } + posbits += n_bits; + + if (oldcode == -1) { + if (code >= 256) + bb_simple_error_msg_and_die("corrupted data"); /* %ld", code); */ + oldcode = code; + finchar = (int) oldcode; + outbuf[outpos++] = (unsigned char) finchar; + continue; + } + + if (code == CLEAR && block_mode) { + clear_tab_prefixof(); + free_ent = FIRST - 1; + posbits = + ((posbits - 1) + + ((n_bits << 3) - + (posbits - 1 + (n_bits << 3)) % (n_bits << 3))); + n_bits = INIT_BITS; + maxcode = MAXCODE(INIT_BITS) - 1; + bitmask = (1 << INIT_BITS) - 1; + goto resetbuf; + } + + incode = code; + stackp = de_stack; + + /* Special case for KwKwK string. */ + if (code >= free_ent) { + if (code > free_ent) { +/* + unsigned char *p; + + posbits -= n_bits; + p = &inbuf[posbits >> 3]; + bb_error_msg + ("insize:%d posbits:%d inbuf:%02X %02X %02X %02X %02X (%d)", + insize, posbits, p[-1], p[0], p[1], p[2], p[3], + (posbits & 07)); +*/ + bb_simple_error_msg("corrupted data"); + goto err; + } + + *--stackp = (unsigned char) finchar; + code = oldcode; + } + + /* Generate output characters in reverse order */ + while (code >= 256) { + if (stackp <= &htabof(0)) + bb_simple_error_msg_and_die("corrupted data"); + *--stackp = tab_suffixof(code); + code = tab_prefixof(code); + } + + finchar = tab_suffixof(code); + *--stackp = (unsigned char) finchar; + + /* And put them out in forward order */ + { + int i; + + i = de_stack - stackp; + if (outpos + i >= OBUFSIZ) { + do { + if (i > OBUFSIZ - outpos) { + i = OBUFSIZ - outpos; + } + + if (i > 0) { + memcpy(outbuf + outpos, stackp, i); + outpos += i; + } + + if (outpos >= OBUFSIZ) { + xtransformer_write(xstate, outbuf, outpos); + IF_DESKTOP(total_written += outpos;) + outpos = 0; + } + stackp += i; + i = de_stack - stackp; + } while (i > 0); + } else { + memcpy(outbuf + outpos, stackp, i); + outpos += i; + } + } + + /* Generate the new entry. */ + if (free_ent < maxmaxcode) { + tab_prefixof(free_ent) = (unsigned short) oldcode; + tab_suffixof(free_ent) = (unsigned char) finchar; + free_ent++; + } + + /* Remember previous code. */ + oldcode = incode; + } + } while (rsize > 0); + + if (outpos > 0) { + xtransformer_write(xstate, outbuf, outpos); + IF_DESKTOP(total_written += outpos;) + } + + retval = IF_DESKTOP(total_written) + 0; + err: + free(inbuf); + free(outbuf); + free(htab); + free(codetab); + return retval; +} diff --git a/busybox-1_37_0/archival/libarchive/decompress_unlzma.c b/busybox-1_37_0/archival/libarchive/decompress_unlzma.c new file mode 100644 index 000000000..fb5aac8fe --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/decompress_unlzma.c @@ -0,0 +1,527 @@ +/* vi: set sw=4 ts=4: */ +/* + * Small lzma deflate implementation. + * Copyright (C) 2006 Aurelien Jacobs + * + * Based on LzmaDecode.c from the LZMA SDK 4.22 (http://www.7-zip.org/) + * Copyright (C) 1999-2005 Igor Pavlov + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +#if 0 +# define dbg(...) bb_error_msg(__VA_ARGS__) +#else +# define dbg(...) ((void)0) +#endif + + +#if ENABLE_FEATURE_LZMA_FAST +# define speed_inline ALWAYS_INLINE +# define size_inline +#else +# define speed_inline +# define size_inline ALWAYS_INLINE +#endif + + +typedef struct { + int fd; + uint8_t *ptr; + +/* Was keeping rc on stack in unlzma and separately allocating buffer, + * but with "buffer 'attached to' allocated rc" code is smaller: */ + /* uint8_t *buffer; */ +#define RC_BUFFER ((uint8_t*)(rc+1)) + + uint8_t *buffer_end; + +/* Had provisions for variable buffer, but we don't need it here */ + /* int buffer_size; */ +#define RC_BUFFER_SIZE 0x10000 + + uint32_t code; + uint32_t range; + uint32_t bound; +} rc_t; + +#define RC_TOP_BITS 24 +#define RC_MOVE_BITS 5 +#define RC_MODEL_TOTAL_BITS 11 + + +/* Called once in rc_do_normalize() */ +static void rc_read(rc_t *rc) +{ + int buffer_size = safe_read(rc->fd, RC_BUFFER, RC_BUFFER_SIZE); +//TODO: return -1 instead +//This will make unlzma delete broken unpacked file on unpack errors + if (buffer_size <= 0) + bb_simple_error_msg_and_die("unexpected EOF"); + rc->buffer_end = RC_BUFFER + buffer_size; + rc->ptr = RC_BUFFER; +} + +/* Called twice, but one callsite is in speed_inline'd rc_is_bit_1() */ +static void rc_do_normalize(rc_t *rc) +{ + if (rc->ptr >= rc->buffer_end) + rc_read(rc); + rc->range <<= 8; + rc->code = (rc->code << 8) | *rc->ptr++; +} +static ALWAYS_INLINE void rc_normalize(rc_t *rc) +{ + if (rc->range < (1 << RC_TOP_BITS)) { + rc_do_normalize(rc); + } +} + +/* Called once */ +static ALWAYS_INLINE rc_t* rc_init(int fd) /*, int buffer_size) */ +{ + int i; + rc_t *rc; + + rc = xzalloc(sizeof(*rc) + RC_BUFFER_SIZE); + + rc->fd = fd; + /* rc->ptr = rc->buffer_end; */ + + for (i = 0; i < 5; i++) { + rc_do_normalize(rc); + } + rc->range = 0xffffffff; + return rc; +} + +/* Called once */ +static ALWAYS_INLINE void rc_free(rc_t *rc) +{ + free(rc); +} + +/* rc_is_bit_1 is called 9 times */ +static speed_inline int rc_is_bit_1(rc_t *rc, uint16_t *p) +{ + rc_normalize(rc); + rc->bound = *p * (rc->range >> RC_MODEL_TOTAL_BITS); + if (rc->code < rc->bound) { + rc->range = rc->bound; + *p += ((1 << RC_MODEL_TOTAL_BITS) - *p) >> RC_MOVE_BITS; + return 0; + } + rc->range -= rc->bound; + rc->code -= rc->bound; + *p -= *p >> RC_MOVE_BITS; + return 1; +} + +/* Called 4 times in unlzma loop */ +static ALWAYS_INLINE int rc_get_bit(rc_t *rc, uint16_t *p, int *symbol) +{ + int ret = rc_is_bit_1(rc, p); + *symbol = *symbol * 2 + ret; + return ret; +} + +/* Called once */ +static ALWAYS_INLINE int rc_direct_bit(rc_t *rc) +{ + rc_normalize(rc); + rc->range >>= 1; + if (rc->code >= rc->range) { + rc->code -= rc->range; + return 1; + } + return 0; +} + +/* Called twice */ +static speed_inline void +rc_bit_tree_decode(rc_t *rc, uint16_t *p, int num_levels, int *symbol) +{ + int i = num_levels; + + *symbol = 1; + while (i--) + rc_get_bit(rc, p + *symbol, symbol); + *symbol -= 1 << num_levels; +} + + +typedef struct { + uint8_t pos; + uint32_t dict_size; + uint64_t dst_size; +} PACKED lzma_header_t; + + +/* #defines will force compiler to compute/optimize each one with each usage. + * Have heart and use enum instead. */ +enum { + LZMA_BASE_SIZE = 1846, + LZMA_LIT_SIZE = 768, + + LZMA_NUM_POS_BITS_MAX = 4, + + LZMA_LEN_NUM_LOW_BITS = 3, + LZMA_LEN_NUM_MID_BITS = 3, + LZMA_LEN_NUM_HIGH_BITS = 8, + + LZMA_LEN_CHOICE = 0, + LZMA_LEN_CHOICE_2 = (LZMA_LEN_CHOICE + 1), + LZMA_LEN_LOW = (LZMA_LEN_CHOICE_2 + 1), + LZMA_LEN_MID = (LZMA_LEN_LOW \ + + (1 << (LZMA_NUM_POS_BITS_MAX + LZMA_LEN_NUM_LOW_BITS))), + LZMA_LEN_HIGH = (LZMA_LEN_MID \ + + (1 << (LZMA_NUM_POS_BITS_MAX + LZMA_LEN_NUM_MID_BITS))), + LZMA_NUM_LEN_PROBS = (LZMA_LEN_HIGH + (1 << LZMA_LEN_NUM_HIGH_BITS)), + + LZMA_NUM_STATES = 12, + LZMA_NUM_LIT_STATES = 7, + + LZMA_START_POS_MODEL_INDEX = 4, + LZMA_END_POS_MODEL_INDEX = 14, + LZMA_NUM_FULL_DISTANCES = (1 << (LZMA_END_POS_MODEL_INDEX >> 1)), + + LZMA_NUM_POS_SLOT_BITS = 6, + LZMA_NUM_LEN_TO_POS_STATES = 4, + + LZMA_NUM_ALIGN_BITS = 4, + + LZMA_MATCH_MIN_LEN = 2, + + LZMA_IS_MATCH = 0, + LZMA_IS_REP = (LZMA_IS_MATCH + (LZMA_NUM_STATES << LZMA_NUM_POS_BITS_MAX)), + LZMA_IS_REP_G0 = (LZMA_IS_REP + LZMA_NUM_STATES), + LZMA_IS_REP_G1 = (LZMA_IS_REP_G0 + LZMA_NUM_STATES), + LZMA_IS_REP_G2 = (LZMA_IS_REP_G1 + LZMA_NUM_STATES), + LZMA_IS_REP_0_LONG = (LZMA_IS_REP_G2 + LZMA_NUM_STATES), + LZMA_POS_SLOT = (LZMA_IS_REP_0_LONG \ + + (LZMA_NUM_STATES << LZMA_NUM_POS_BITS_MAX)), + LZMA_SPEC_POS = (LZMA_POS_SLOT \ + + (LZMA_NUM_LEN_TO_POS_STATES << LZMA_NUM_POS_SLOT_BITS)), + LZMA_ALIGN = (LZMA_SPEC_POS \ + + LZMA_NUM_FULL_DISTANCES - LZMA_END_POS_MODEL_INDEX), + LZMA_LEN_CODER = (LZMA_ALIGN + (1 << LZMA_NUM_ALIGN_BITS)), + LZMA_REP_LEN_CODER = (LZMA_LEN_CODER + LZMA_NUM_LEN_PROBS), + LZMA_LITERAL = (LZMA_REP_LEN_CODER + LZMA_NUM_LEN_PROBS), +}; + + +IF_DESKTOP(long long) int FAST_FUNC +unpack_lzma_stream(transformer_state_t *xstate) +{ + IF_DESKTOP(long long total_written = 0;) + lzma_header_t header; + int lc, pb, lp; + uint32_t pos_state_mask; + uint32_t literal_pos_mask; + uint16_t *p; + rc_t *rc; + int i; + uint8_t *buffer; + uint32_t buffer_size; + uint8_t previous_byte = 0; + size_t buffer_pos = 0, global_pos = 0; + int len = 0; + int state = 0; + uint32_t rep0 = 1, rep1 = 1, rep2 = 1, rep3 = 1; + + if (full_read(xstate->src_fd, &header, sizeof(header)) != sizeof(header) + || header.pos >= (9 * 5 * 5) + ) { + bb_simple_error_msg("bad lzma header"); + return -1; + } + + i = header.pos / 9; + lc = header.pos % 9; + pb = i / 5; + lp = i % 5; + pos_state_mask = (1 << pb) - 1; + literal_pos_mask = (1 << lp) - 1; + + /* Example values from linux-3.3.4.tar.lzma: + * dict_size: 64M, dst_size: 2^64-1 + */ + header.dict_size = SWAP_LE32(header.dict_size); + header.dst_size = SWAP_LE64(header.dst_size); + + if (header.dict_size == 0) + header.dict_size++; + + buffer_size = MIN(header.dst_size, header.dict_size); + buffer = xmalloc(buffer_size); + + { + int num_probs; + + num_probs = LZMA_BASE_SIZE + (LZMA_LIT_SIZE << (lc + lp)); + p = xmalloc(num_probs * sizeof(*p)); + num_probs += LZMA_LITERAL - LZMA_BASE_SIZE; + for (i = 0; i < num_probs; i++) + p[i] = (1 << RC_MODEL_TOTAL_BITS) >> 1; + } + + rc = rc_init(xstate->src_fd); /*, RC_BUFFER_SIZE); */ + + while (global_pos + buffer_pos < header.dst_size) { + int pos_state = (buffer_pos + global_pos) & pos_state_mask; + uint16_t *prob = p + LZMA_IS_MATCH + (state << LZMA_NUM_POS_BITS_MAX) + pos_state; + + if (!rc_is_bit_1(rc, prob)) { + static const char next_state[LZMA_NUM_STATES] = + { 0, 0, 0, 0, 1, 2, 3, 4, 5, 6, 4, 5 }; + int mi = 1; + + prob = (p + LZMA_LITERAL + + (LZMA_LIT_SIZE * ((((buffer_pos + global_pos) & literal_pos_mask) << lc) + + (previous_byte >> (8 - lc)) + ) + ) + ); + + if (state >= LZMA_NUM_LIT_STATES) { + int match_byte; + uint32_t pos; + + pos = buffer_pos - rep0; + if ((int32_t)pos < 0) { + pos += header.dict_size; + if ((int32_t)pos < 0) + goto bad; + } + match_byte = buffer[pos]; + do { + int bit; + + match_byte <<= 1; + bit = match_byte & 0x100; + bit ^= (rc_get_bit(rc, prob + 0x100 + bit + mi, &mi) << 8); /* 0x100 or 0 */ + if (bit) + break; + } while (mi < 0x100); + } + while (mi < 0x100) { + rc_get_bit(rc, prob + mi, &mi); + } + + state = next_state[state]; + + previous_byte = (uint8_t) mi; +#if ENABLE_FEATURE_LZMA_FAST + one_byte1: + buffer[buffer_pos++] = previous_byte; + if (buffer_pos == header.dict_size) { + buffer_pos = 0; + global_pos += header.dict_size; + if (transformer_write(xstate, buffer, header.dict_size) != (ssize_t)header.dict_size) + goto bad; + IF_DESKTOP(total_written += header.dict_size;) + } +#else + len = 1; + goto one_byte2; +#endif + } else { + int num_bits; + int offset; + uint16_t *prob2; +#define prob_len prob2 + + prob2 = p + LZMA_IS_REP + state; + if (!rc_is_bit_1(rc, prob2)) { + rep3 = rep2; + rep2 = rep1; + rep1 = rep0; + state = state < LZMA_NUM_LIT_STATES ? 0 : 3; + prob2 = p + LZMA_LEN_CODER; + } else { + prob2 += LZMA_IS_REP_G0 - LZMA_IS_REP; + if (!rc_is_bit_1(rc, prob2)) { + prob2 = (p + LZMA_IS_REP_0_LONG + + (state << LZMA_NUM_POS_BITS_MAX) + + pos_state + ); + if (!rc_is_bit_1(rc, prob2)) { +#if ENABLE_FEATURE_LZMA_FAST + uint32_t pos; + state = state < LZMA_NUM_LIT_STATES ? 9 : 11; + + pos = buffer_pos - rep0; + if ((int32_t)pos < 0) { + pos += header.dict_size; + /* see unzip_bad_lzma_2.zip: */ + if (pos >= buffer_size) { + dbg("%d pos:%d buffer_size:%d", __LINE__, pos, buffer_size); + goto bad; + } + } + previous_byte = buffer[pos]; + goto one_byte1; +#else + state = state < LZMA_NUM_LIT_STATES ? 9 : 11; + len = 1; + goto string; +#endif + } + } else { + uint32_t distance; + + prob2 += LZMA_IS_REP_G1 - LZMA_IS_REP_G0; + distance = rep1; + if (rc_is_bit_1(rc, prob2)) { + prob2 += LZMA_IS_REP_G2 - LZMA_IS_REP_G1; + distance = rep2; + if (rc_is_bit_1(rc, prob2)) { + distance = rep3; + rep3 = rep2; + } + rep2 = rep1; + } + rep1 = rep0; + rep0 = distance; + } + state = state < LZMA_NUM_LIT_STATES ? 8 : 11; + prob2 = p + LZMA_REP_LEN_CODER; + } + + prob_len = prob2 + LZMA_LEN_CHOICE; + num_bits = LZMA_LEN_NUM_LOW_BITS; + if (!rc_is_bit_1(rc, prob_len)) { + prob_len += LZMA_LEN_LOW - LZMA_LEN_CHOICE + + (pos_state << LZMA_LEN_NUM_LOW_BITS); + offset = 0; + } else { + prob_len += LZMA_LEN_CHOICE_2 - LZMA_LEN_CHOICE; + if (!rc_is_bit_1(rc, prob_len)) { + prob_len += LZMA_LEN_MID - LZMA_LEN_CHOICE_2 + + (pos_state << LZMA_LEN_NUM_MID_BITS); + offset = 1 << LZMA_LEN_NUM_LOW_BITS; + num_bits += LZMA_LEN_NUM_MID_BITS - LZMA_LEN_NUM_LOW_BITS; + } else { + prob_len += LZMA_LEN_HIGH - LZMA_LEN_CHOICE_2; + offset = ((1 << LZMA_LEN_NUM_LOW_BITS) + + (1 << LZMA_LEN_NUM_MID_BITS)); + num_bits += LZMA_LEN_NUM_HIGH_BITS - LZMA_LEN_NUM_LOW_BITS; + } + } + rc_bit_tree_decode(rc, prob_len, num_bits, &len); + len += offset; + + if (state < 4) { + int pos_slot; + uint16_t *prob3; + + state += LZMA_NUM_LIT_STATES; + prob3 = p + LZMA_POS_SLOT + + ((len < LZMA_NUM_LEN_TO_POS_STATES ? len : + LZMA_NUM_LEN_TO_POS_STATES - 1) + << LZMA_NUM_POS_SLOT_BITS); + rc_bit_tree_decode(rc, prob3, + LZMA_NUM_POS_SLOT_BITS, &pos_slot); + rep0 = pos_slot; + if (pos_slot >= LZMA_START_POS_MODEL_INDEX) { + int i2, mi2, num_bits2 = (pos_slot >> 1) - 1; + rep0 = 2 | (pos_slot & 1); + if (pos_slot < LZMA_END_POS_MODEL_INDEX) { + rep0 <<= num_bits2; + prob3 = p + LZMA_SPEC_POS + rep0 - pos_slot - 1; + } else { + for (; num_bits2 != LZMA_NUM_ALIGN_BITS; num_bits2--) + rep0 = (rep0 << 1) | rc_direct_bit(rc); + rep0 <<= LZMA_NUM_ALIGN_BITS; + // Note: (int32_t)rep0 may be < 0 here + // (I have linux-3.3.4.tar.lzma which has it). + // I moved the check after "++rep0 == 0" check below. + prob3 = p + LZMA_ALIGN; + } + i2 = 1; + mi2 = 1; + while (num_bits2--) { + if (rc_get_bit(rc, prob3 + mi2, &mi2)) + rep0 |= i2; + i2 <<= 1; + } + } + rep0++; + if ((int32_t)rep0 <= 0) { + if (rep0 == 0) + break; + dbg("%d rep0:%d", __LINE__, rep0); + goto bad; + } + } + + len += LZMA_MATCH_MIN_LEN; + /* + * LZMA SDK has this optimized: + * it precalculates size and copies many bytes + * in a loop with simpler checks, a-la: + * do + * *(dest) = *(dest + ofs); + * while (++dest != lim); + * and + * do { + * buffer[buffer_pos++] = buffer[pos]; + * if (++pos == header.dict_size) + * pos = 0; + * } while (--cur_len != 0); + * Our code is slower (more checks per byte copy): + */ + IF_NOT_FEATURE_LZMA_FAST(string:) + do { + uint32_t pos = buffer_pos - rep0; + if ((int32_t)pos < 0) { + pos += header.dict_size; + /* bug 10436 has an example file where this triggers: */ + //if ((int32_t)pos < 0) + // goto bad; + /* more stringent test (see unzip_bad_lzma_1.zip): */ + if (pos >= buffer_size) + goto bad; + } + previous_byte = buffer[pos]; + IF_NOT_FEATURE_LZMA_FAST(one_byte2:) + buffer[buffer_pos++] = previous_byte; + if (buffer_pos == header.dict_size) { + buffer_pos = 0; + global_pos += header.dict_size; + if (transformer_write(xstate, buffer, header.dict_size) != (ssize_t)header.dict_size) + goto bad; + IF_DESKTOP(total_written += header.dict_size;) + } + len--; + } while (len != 0 && buffer_pos < header.dst_size); + /* FIXME: ...........^^^^^ + * shouldn't it be "global_pos + buffer_pos < header.dst_size"? + * It probably should, but it is a "do we accidentally + * unpack more bytes than expected?" check - which + * never happens for well-formed compression data... + */ + } + } + + { + IF_NOT_DESKTOP(int total_written = 0; /* success */) + IF_DESKTOP(total_written += buffer_pos;) + if (transformer_write(xstate, buffer, buffer_pos) != (ssize_t)buffer_pos) { + bad: + /* One of our users, bbunpack(), expects _us_ to emit + * the error message (since it's the best place to give + * potentially more detailed information). + * Do not fail silently. + */ + bb_simple_error_msg("corrupted data"); + total_written = -1; /* failure */ + } + rc_free(rc); + free(p); + free(buffer); + return total_written; + } +} diff --git a/busybox-1_37_0/archival/libarchive/decompress_unxz.c b/busybox-1_37_0/archival/libarchive/decompress_unxz.c new file mode 100644 index 000000000..3dd9bbf49 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/decompress_unxz.c @@ -0,0 +1,154 @@ +/* + * This file uses XZ Embedded library code which is written + * by Lasse Collin + * and Igor Pavlov + * + * See README file in unxz/ directory for more information. + * + * This file is: + * Copyright (C) 2010 Denys Vlasenko + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +#define XZ_FUNC FAST_FUNC +#define XZ_EXTERN static + +#define XZ_DEC_DYNALLOC + +/* Skip check (rather than fail) of unsupported hash functions */ +#define XZ_DEC_ANY_CHECK 1 + +/* We use our own crc32 function */ +#define XZ_INTERNAL_CRC32 0 +static uint32_t xz_crc32(const uint8_t *buf, size_t size, uint32_t crc) +{ + return ~crc32_block_endian0(~crc, buf, size, global_crc32_table); +} + +/* We use arch-optimized unaligned fixed-endian accessors. + * They have been moved to libbb (proved to be useful elsewhere as well), + * just check that we have them defined: + */ +#if !defined(get_unaligned_le32) \ + || !defined(get_unaligned_be32) \ + || !defined(put_unaligned_le32) \ + || !defined(put_unaligned_be32) +# error get_unaligned_le32 accessors are not defined +#endif + +#include "unxz/xz_dec_bcj.c" +#include "unxz/xz_dec_lzma2.c" +#include "unxz/xz_dec_stream.c" + +IF_DESKTOP(long long) int FAST_FUNC +unpack_xz_stream(transformer_state_t *xstate) +{ + enum xz_ret xz_result; + struct xz_buf iobuf; + struct xz_dec *state; + unsigned char *membuf; + IF_DESKTOP(long long) int total = 0; + + if (!global_crc32_table) + global_crc32_new_table_le(); + + memset(&iobuf, 0, sizeof(iobuf)); + membuf = xmalloc(2 * BUFSIZ); + iobuf.in = membuf; + iobuf.out = membuf + BUFSIZ; + iobuf.out_size = BUFSIZ; + + if (!xstate || xstate->signature_skipped) { + /* Preload XZ file signature */ + strcpy((char*)membuf, HEADER_MAGIC); + iobuf.in_size = HEADER_MAGIC_SIZE; + } /* else: let xz code read & check it */ + + /* Limit memory usage to about 64 MiB. */ + state = xz_dec_init(XZ_DYNALLOC, 64*1024*1024); + + xz_result = X_OK; + while (1) { + if (iobuf.in_pos == iobuf.in_size) { + int rd = safe_read(xstate->src_fd, membuf, BUFSIZ); + if (rd < 0) { + bb_simple_error_msg(bb_msg_read_error); + total = -1; + break; + } + if (rd == 0 && xz_result == XZ_STREAM_END) + break; + iobuf.in_size = rd; + iobuf.in_pos = 0; + } + if (xz_result == XZ_STREAM_END) { + /* + * Try to start decoding next concatenated stream. + * Stream padding must always be a multiple of four + * bytes to preserve four-byte alignment. To keep the + * code slightly smaller, we aren't as strict here as + * the .xz spec requires. We just skip all zero-bytes + * without checking the alignment and thus can accept + * files that aren't valid, e.g. the XZ utils test + * files bad-0pad-empty.xz and bad-0catpad-empty.xz. + */ + do { + if (membuf[iobuf.in_pos] != 0) { + /* There is more data, but is it XZ data? + * Example: dpkg-deb -f busybox_1.30.1-4_amd64.deb + * reads control.tar.xz "control" file + * inside the ar archive, but tar.xz + * extraction code reaches end of xz data, + * reached this code and reads the beginning + * of data.tar.xz's ar header, which isn't xz data, + * and prints "corrupted data". + * The correct solution is to not read + * past nested archive (to simulate EOF). + * This is a workaround: + */ + if (membuf[iobuf.in_pos] != 0xfd) { + /* It's definitely not a xz signature + * (which is 0xfd,"7zXZ",0x00). + */ + goto end; + } + xz_dec_reset(state); + goto do_run; + } + iobuf.in_pos++; + } while (iobuf.in_pos < iobuf.in_size); + } + do_run: +// bb_error_msg(">in pos:%d size:%d out pos:%d size:%d", +// iobuf.in_pos, iobuf.in_size, iobuf.out_pos, iobuf.out_size); + xz_result = xz_dec_run(state, &iobuf); +// bb_error_msg("file_header->name) + return EXIT_SUCCESS; + return EXIT_FAILURE; +} diff --git a/busybox-1_37_0/archival/libarchive/filter_accept_list.c b/busybox-1_37_0/archival/libarchive/filter_accept_list.c new file mode 100644 index 000000000..32f806574 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/filter_accept_list.c @@ -0,0 +1,18 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2002 by Glenn McGrath + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +/* + * Accept names that are in the accept list, ignoring reject list. + */ +char FAST_FUNC filter_accept_list(archive_handle_t *archive_handle) +{ + if (find_list_entry(archive_handle->accept, archive_handle->file_header->name)) + return EXIT_SUCCESS; + return EXIT_FAILURE; +} diff --git a/busybox-1_37_0/archival/libarchive/filter_accept_list_reassign.c b/busybox-1_37_0/archival/libarchive/filter_accept_list_reassign.c new file mode 100644 index 000000000..826c5c29d --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/filter_accept_list_reassign.c @@ -0,0 +1,60 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2002 by Glenn McGrath + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +/* Built and used only if ENABLE_DPKG || ENABLE_DPKG_DEB */ + +/* + * Reassign the subarchive metadata parser based on the filename extension + * e.g. if its a .tar.gz modify archive_handle->sub_archive to process a .tar.gz + * or if its a .tar.bz2 make archive_handle->sub_archive handle that + */ +char FAST_FUNC filter_accept_list_reassign(archive_handle_t *archive_handle) +{ + /* Check the file entry is in the accept list */ + if (find_list_entry(archive_handle->accept, archive_handle->file_header->name)) { + const char *name_ptr; + + /* Find extension */ + name_ptr = strrchr(archive_handle->file_header->name, '.'); + if (!name_ptr) + return EXIT_FAILURE; + name_ptr++; + + /* Modify the subarchive handler based on the extension */ + if (strcmp(name_ptr, "tar") == 0) { + archive_handle->dpkg__action_data_subarchive = get_header_tar; + return EXIT_SUCCESS; + } + if (ENABLE_FEATURE_SEAMLESS_GZ + && strcmp(name_ptr, "gz") == 0 + ) { + archive_handle->dpkg__action_data_subarchive = get_header_tar_gz; + return EXIT_SUCCESS; + } + if (ENABLE_FEATURE_SEAMLESS_BZ2 + && strcmp(name_ptr, "bz2") == 0 + ) { + archive_handle->dpkg__action_data_subarchive = get_header_tar_bz2; + return EXIT_SUCCESS; + } + if (ENABLE_FEATURE_SEAMLESS_LZMA + && strcmp(name_ptr, "lzma") == 0 + ) { + archive_handle->dpkg__action_data_subarchive = get_header_tar_lzma; + return EXIT_SUCCESS; + } + if (ENABLE_FEATURE_SEAMLESS_XZ + && strcmp(name_ptr, "xz") == 0 + ) { + archive_handle->dpkg__action_data_subarchive = get_header_tar_xz; + return EXIT_SUCCESS; + } + } + return EXIT_FAILURE; +} diff --git a/busybox-1_37_0/archival/libarchive/filter_accept_reject_list.c b/busybox-1_37_0/archival/libarchive/filter_accept_reject_list.c new file mode 100644 index 000000000..939e626fa --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/filter_accept_reject_list.c @@ -0,0 +1,37 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2002 by Glenn McGrath + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +/* + * Accept names that are in the accept list and not in the reject list + */ +char FAST_FUNC filter_accept_reject_list(archive_handle_t *archive_handle) +{ + const char *key; + const llist_t *reject_entry; + const llist_t *accept_entry; + + key = archive_handle->file_header->name; + + /* If the key is in a reject list fail */ + reject_entry = find_list_entry2(archive_handle->reject, key); + if (reject_entry) { + return EXIT_FAILURE; + } + + /* Fail if an accept list was specified and the key wasnt in there */ + if (archive_handle->accept) { + accept_entry = find_list_entry2(archive_handle->accept, key); + if (!accept_entry) { + return EXIT_FAILURE; + } + } + + /* Accepted */ + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/archival/libarchive/find_list_entry.c b/busybox-1_37_0/archival/libarchive/find_list_entry.c new file mode 100644 index 000000000..37726bd3d --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/find_list_entry.c @@ -0,0 +1,53 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2002 by Glenn McGrath + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include +#include "libbb.h" +#include "bb_archive.h" + +/* Find a string in a shell pattern list */ +const llist_t* FAST_FUNC find_list_entry(const llist_t *list, const char *filename) +{ + while (list) { + if (fnmatch(list->data, filename, 0) == 0) { + return list; + } + list = list->link; + } + return NULL; +} + +/* Same, but compares only path components present in pattern + * (extra trailing path components in filename are assumed to match) + */ +const llist_t* FAST_FUNC find_list_entry2(const llist_t *list, const char *filename) +{ + char buf[PATH_MAX]; + int pattern_slash_cnt; + const char *c; + char *d; + + while (list) { + c = list->data; + pattern_slash_cnt = 0; + while (*c) + if (*c++ == '/') pattern_slash_cnt++; + c = filename; + d = buf; + /* paranoia is better than buffer overflows */ + while (*c && d != buf + sizeof(buf)-1) { + if (*c == '/' && --pattern_slash_cnt < 0) + break; + *d++ = *c++; + } + *d = '\0'; + if (fnmatch(list->data, buf, 0) == 0) { + return list; + } + list = list->link; + } + return NULL; +} diff --git a/busybox-1_37_0/archival/libarchive/get_header_ar.c b/busybox-1_37_0/archival/libarchive/get_header_ar.c new file mode 100644 index 000000000..6bd897392 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/get_header_ar.c @@ -0,0 +1,146 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright 2001 Glenn McGrath. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" +#include "ar_.h" + +/* WARNING: Clobbers str[len], so fields must be read in reverse order! */ +static unsigned read_num(char *str, int base, int len) +{ + int err; + + /* ar fields are fixed length text strings (padded with spaces). + * Ensure bb_strtou doesn't read past the field in case the full + * width is used. */ + str[len] = 0; + + /* This code works because + * on misformatted numbers bb_strtou returns all-ones */ + err = bb_strtou(str, NULL, base); + if (err == -1) + bb_simple_error_msg_and_die("invalid ar header"); + return err; +} + +char FAST_FUNC get_header_ar(archive_handle_t *archive_handle) +{ + file_header_t *typed = archive_handle->file_header; + unsigned size; + union { + char raw[60]; + struct ar_header formatted; + } ar; + + /* dont use xread as we want to handle the error ourself */ + if (read(archive_handle->src_fd, ar.raw, 60) != 60) { + /* End Of File */ + return EXIT_FAILURE; + } + + /* ar header starts on an even byte (2 byte aligned) + * '\n' is used for padding + */ + if (ar.raw[0] == '\n') { + /* fix up the header, we started reading 1 byte too early */ + memmove(ar.raw, &ar.raw[1], 59); + ar.raw[59] = xread_char(archive_handle->src_fd); + archive_handle->offset++; + } + archive_handle->offset += 60; + + if (ar.formatted.magic[0] != '`' || ar.formatted.magic[1] != '\n') + bb_simple_error_msg_and_die("invalid ar header"); + + /* + * Note that the fields MUST be read in reverse order as + * read_num() clobbers the next byte after the field! + * Order is: name, date, uid, gid, mode, size, magic. + */ + typed->size = size = read_num(ar.formatted.size, 10, + sizeof(ar.formatted.size)); + + /* special filenames have '/' as the first character */ + if (ar.formatted.name[0] == '/') { + if (ar.formatted.name[1] == ' ') { + /* This is the index of symbols in the file for compilers */ + data_skip(archive_handle); + archive_handle->offset += size; + return get_header_ar(archive_handle); /* Return next header */ + } +#if ENABLE_FEATURE_AR_LONG_FILENAMES + if (ar.formatted.name[1] == '/') { + /* If the second char is a '/' then this entries data section + * stores long filename for multiple entries, they are stored + * in static variable long_names for use in future entries + */ + archive_handle->ar__long_name_size = size; + free(archive_handle->ar__long_names); + archive_handle->ar__long_names = xzalloc(size + 1); + xread(archive_handle->src_fd, archive_handle->ar__long_names, size); + archive_handle->offset += size; + /* Return next header */ + return get_header_ar(archive_handle); + } +#else + bb_simple_error_msg_and_die("long filenames not supported"); +#endif + } + /* Only size is always present, the rest may be missing in + * long filename pseudo file. Thus we decode the rest + * after dealing with long filename pseudo file. + * + * GNU binutils in deterministic mode hard codes mode to 0644 (NOT + * 0100644). AR archives can only contain files, so force file + * mode. + */ + typed->mode = read_num(ar.formatted.mode, 8, sizeof(ar.formatted.mode)) | S_IFREG; + typed->gid = read_num(ar.formatted.gid, 10, sizeof(ar.formatted.gid)); + typed->uid = read_num(ar.formatted.uid, 10, sizeof(ar.formatted.uid)); + typed->mtime = read_num(ar.formatted.date, 10, sizeof(ar.formatted.date)); + +#if ENABLE_FEATURE_AR_LONG_FILENAMES + if (ar.formatted.name[0] == '/') { + unsigned long_offset; + + /* The number after the '/' indicates the offset in the ar data section + * (saved in ar__long_names) that contains the real filename */ + long_offset = read_num(&ar.formatted.name[1], 10, + sizeof(ar.formatted.name) - 1); + if (long_offset >= archive_handle->ar__long_name_size) { + bb_simple_error_msg_and_die("can't resolve long filename"); + } + typed->name = xstrdup(archive_handle->ar__long_names + long_offset); + } else +#endif + { + /* short filenames */ + typed->name = xstrndup(ar.formatted.name, 16); + } + + typed->name[strcspn(typed->name, " /")] = '\0'; + + if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) { + archive_handle->action_header(typed); +#if ENABLE_DPKG || ENABLE_DPKG_DEB + if (archive_handle->dpkg__sub_archive) { + struct archive_handle_t *sa = archive_handle->dpkg__sub_archive; + while (archive_handle->dpkg__action_data_subarchive(sa) == EXIT_SUCCESS) + continue; + create_links_from_list(sa->link_placeholders); + } else +#endif + archive_handle->action_data(archive_handle); + } else { + data_skip(archive_handle); + } + + archive_handle->offset += typed->size; + /* Set the file pointer to the correct spot, we may have been reading a compressed file */ + lseek(archive_handle->src_fd, archive_handle->offset, SEEK_SET); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/archival/libarchive/get_header_cpio.c b/busybox-1_37_0/archival/libarchive/get_header_cpio.c new file mode 100644 index 000000000..9ad0557c2 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/get_header_cpio.c @@ -0,0 +1,192 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright 2002 Laurence Anderson + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +typedef struct hardlinks_t { + struct hardlinks_t *next; + int inode; /* TODO: must match maj/min too! */ + int mode ; + int mtime; /* These three are useful only in corner case */ + int uid ; /* of hardlinks with zero size body */ + int gid ; + char name[1]; +} hardlinks_t; + +char FAST_FUNC get_header_cpio(archive_handle_t *archive_handle) +{ + file_header_t *file_header = archive_handle->file_header; + char cpio_header[111]; + int namesize; + int major, minor, nlink, mode, inode; + unsigned size, uid, gid, mtime; + + /* There can be padding before archive header */ + data_align(archive_handle, 4); + + size = full_read(archive_handle->src_fd, cpio_header, 110); + if (size == 0) { + goto create_hardlinks; + } + if (size != 110) { + bb_simple_error_msg_and_die("short read"); + } + archive_handle->offset += 110; + + if (!is_prefixed_with(&cpio_header[0], "07070") + || (cpio_header[5] != '1' && cpio_header[5] != '2') + ) { + bb_simple_error_msg_and_die("unsupported cpio format, use newc or crc"); + } + + cpio_header[110] = '\0'; /* sscanf may call strlen which may break without this */ + if (sscanf(cpio_header + 6, + "%8x" "%8x" "%8x" "%8x" + "%8x" "%8x" "%8x" /*maj,min:*/ "%*16c" + /*rmaj,rmin:*/"%8x" "%8x" "%8x" /*chksum: "%*8c"*/, + &inode, &mode, &uid, &gid, + &nlink, &mtime, &size, + &major, &minor, &namesize) != 10) + bb_simple_error_msg_and_die("damaged cpio file"); + file_header->mode = mode; + /* "cpio -R USER:GRP" support: */ + if (archive_handle->cpio__owner.uid != (uid_t)-1L) + uid = archive_handle->cpio__owner.uid; + if (archive_handle->cpio__owner.gid != (gid_t)-1L) + gid = archive_handle->cpio__owner.gid; + file_header->uid = uid; + file_header->gid = gid; + file_header->mtime = mtime; + file_header->size = size; + + namesize &= 0x1fff; /* paranoia: limit names to 8k chars */ + file_header->name = xzalloc(namesize + 1); + /* Read in filename */ + xread(archive_handle->src_fd, file_header->name, namesize); + if (file_header->name[0] == '/') { + /* Testcase: echo /etc/hosts | cpio -pvd /tmp + * Without this code, it tries to unpack /etc/hosts + * into "/etc/hosts", not "etc/hosts". + */ + char *p = file_header->name; + do p++; while (*p == '/'); + overlapping_strcpy(file_header->name, p); + } + archive_handle->offset += namesize; + + /* Update offset amount and skip padding before file contents */ + data_align(archive_handle, 4); + + if (strcmp(file_header->name, cpio_TRAILER) == 0) { + /* Always round up. ">> 9" divides by 512 */ + archive_handle->cpio__blocks = (uoff_t)(archive_handle->offset + 511) >> 9; + goto create_hardlinks; + } + + file_header->link_target = NULL; + if (S_ISLNK(file_header->mode)) { + file_header->size &= 0x1fff; /* paranoia: limit names to 8k chars */ + file_header->link_target = xzalloc(file_header->size + 1); + xread(archive_handle->src_fd, file_header->link_target, file_header->size); + archive_handle->offset += file_header->size; + file_header->size = 0; /* Stop possible seeks in future */ + } + +// TODO: data_extract_all can't deal with hardlinks to non-files... +// when fixed, change S_ISREG to !S_ISDIR here + + if (nlink > 1 && S_ISREG(file_header->mode)) { + hardlinks_t *new = xmalloc(sizeof(*new) + namesize); + new->inode = inode; + new->mode = mode ; + new->mtime = mtime; + new->uid = uid ; + new->gid = gid ; + strcpy(new->name, file_header->name); + /* Put file on a linked list for later */ + if (size == 0) { + new->next = archive_handle->cpio__hardlinks_to_create; + archive_handle->cpio__hardlinks_to_create = new; + return EXIT_SUCCESS; /* Skip this one */ + /* TODO: this breaks cpio -t (it does not show hardlinks) */ + } + new->next = archive_handle->cpio__created_hardlinks; + archive_handle->cpio__created_hardlinks = new; + } + file_header->device = makedev(major, minor); + + if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) { + archive_handle->action_data(archive_handle); +//TODO: run "echo /etc/hosts | cpio -pv /tmp" twice. On 2nd run: +//cpio: etc/hosts not created: newer or same age file exists +//etc/hosts <-- should NOT show it +//2 blocks <-- should say "0 blocks" + archive_handle->action_header(file_header); + } else { + data_skip(archive_handle); + } + + archive_handle->offset += file_header->size; + + free(file_header->link_target); + free(file_header->name); + file_header->link_target = NULL; + file_header->name = NULL; + + return EXIT_SUCCESS; + + create_hardlinks: + free(file_header->link_target); + free(file_header->name); + + while (archive_handle->cpio__hardlinks_to_create) { + hardlinks_t *cur; + hardlinks_t *make_me = archive_handle->cpio__hardlinks_to_create; + + archive_handle->cpio__hardlinks_to_create = make_me->next; + + memset(file_header, 0, sizeof(*file_header)); + file_header->mtime = make_me->mtime; + file_header->name = make_me->name; + file_header->mode = make_me->mode; + file_header->uid = make_me->uid; + file_header->gid = make_me->gid; + /*file_header->size = 0;*/ + /*file_header->link_target = NULL;*/ + + /* Try to find a file we are hardlinked to */ + cur = archive_handle->cpio__created_hardlinks; + while (cur) { + /* TODO: must match maj/min too! */ + if (cur->inode == make_me->inode) { + file_header->link_target = cur->name; + /* link_target != NULL, size = 0: "I am a hardlink" */ + if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) + archive_handle->action_data(archive_handle); + free(make_me); + goto next_link; + } + cur = cur->next; + } + /* Oops... no file with such inode was created... do it now + * (happens when hardlinked files are empty (zero length)) */ + if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) + archive_handle->action_data(archive_handle); + /* Move to the list of created hardlinked files */ + make_me->next = archive_handle->cpio__created_hardlinks; + archive_handle->cpio__created_hardlinks = make_me; + next_link: ; + } + + while (archive_handle->cpio__created_hardlinks) { + hardlinks_t *p = archive_handle->cpio__created_hardlinks; + archive_handle->cpio__created_hardlinks = p->next; + free(p); + } + + return EXIT_FAILURE; /* "No more files to process" */ +} diff --git a/busybox-1_37_0/archival/libarchive/get_header_tar.c b/busybox-1_37_0/archival/libarchive/get_header_tar.c new file mode 100644 index 000000000..cc6f3f0ad --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/get_header_tar.c @@ -0,0 +1,491 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * FIXME: + * In privileged mode if uname and gname map to a uid and gid then use the + * mapped value instead of the uid/gid values in tar header + * + * References: + * GNU tar and star man pages, + * Opengroup's ustar interchange format, + * http://www.opengroup.org/onlinepubs/007904975/utilities/pax.html + */ +#include "libbb.h" +#include "bb_archive.h" + +typedef uint32_t aliased_uint32_t FIX_ALIASING; +typedef off_t aliased_off_t FIX_ALIASING; + +/* NB: _DESTROYS_ str[len] character! */ +static unsigned long long getOctal(char *str, int len) +{ + unsigned long long v; + char *end; + /* NB: leading spaces are allowed. Using strtoull to handle that. + * The downside is that we accept e.g. "-123" too :( + */ + str[len] = '\0'; + v = strtoull(str, &end, 8); + /* std: "Each numeric field is terminated by one or more + * or NUL characters". We must support ' '! */ + if (*end != '\0' && *end != ' ') { + int8_t first = str[0]; + if (!(first & 0x80)) + bb_simple_error_msg_and_die("corrupted octal value in tar header"); + /* + * GNU tar uses "base-256 encoding" for very large numbers. + * Encoding is binary, with highest bit always set as a marker + * and sign in next-highest bit: + * 80 00 .. 00 - zero + * bf ff .. ff - largest positive number + * ff ff .. ff - minus 1 + * c0 00 .. 00 - smallest negative number + * + * Example of tar file with 8914993153 (0x213600001) byte file. + * Field starts at offset 7c: + * 00070 30 30 30 00 30 30 30 30 30 30 30 00 80 00 00 00 |000.0000000.....| + * 00080 00 00 00 02 13 60 00 01 31 31 31 32 30 33 33 36 |.....`..11120336| + * + * NB: tarballs with NEGATIVE unix times encoded that way were seen! + */ + /* Sign-extend 7bit 'first' to 64bit 'v' (that is, using 6th bit as sign): */ + first <<= 1; + first >>= 1; /* now 7th bit = 6th bit */ + v = first; /* sign-extend 8 bits to 64 */ + while (--len != 0) + v = (v << 8) + (uint8_t) *++str; + } + return v; +} +#define GET_OCTAL(a) getOctal((a), sizeof(a)) + +#define TAR_EXTD (ENABLE_FEATURE_TAR_GNU_EXTENSIONS || ENABLE_FEATURE_TAR_SELINUX) +#if !TAR_EXTD +#define process_pax_hdr(archive_handle, sz, global) \ + process_pax_hdr(archive_handle, sz) +#endif +/* "global" is 0 or 1 */ +static void process_pax_hdr(archive_handle_t *archive_handle, unsigned sz, int global) +{ +#if !TAR_EXTD + unsigned blk_sz = (sz + 511) & (~511); + seek_by_read(archive_handle->src_fd, blk_sz); +#else + unsigned blk_sz = (sz + 511) & (~511); + char *buf, *p; + + p = buf = xmalloc(blk_sz + 1); + xread(archive_handle->src_fd, buf, blk_sz); + archive_handle->offset += blk_sz; + + /* prevent bb_strtou from running off the buffer */ + buf[sz] = '\0'; + + while (sz != 0) { + char *end, *value; + unsigned len; + + /* Every record has this format: "LEN NAME=VALUE\n" */ + len = bb_strtou(p, &end, 10); + /* expect errno to be EINVAL, because the character + * following the digits should be a space + */ + p += len; + sz -= len; + if ( + /** (int)sz < 0 - not good enough for huge malicious VALUE of 2^32-1 */ + (int)(sz|len) < 0 /* this works */ + || len == 0 + || errno != EINVAL + || *end != ' ' + ) { + bb_simple_error_msg("malformed extended header, skipped"); + // More verbose version: + //bb_error_msg("malformed extended header at %"OFF_FMT"d, skipped", + // archive_handle->offset - (sz + len)); + break; + } + /* overwrite the terminating newline with NUL + * (we do not bother to check that it *was* a newline) + */ + p[-1] = '\0'; + value = end + 1; + +# if ENABLE_FEATURE_TAR_GNU_EXTENSIONS + if (!global) { + if (is_prefixed_with(value, "path=")) { + value += sizeof("path=") - 1; + free(archive_handle->tar__longname); + archive_handle->tar__longname = xstrdup(value); + continue; + } + if (is_prefixed_with(value, "linkpath=")) { + value += sizeof("linkpath=") - 1; + free(archive_handle->tar__linkname); + archive_handle->tar__linkname = xstrdup(value); + continue; + } + } +# endif + +# if ENABLE_FEATURE_TAR_SELINUX + /* Scan for SELinux contexts, via "RHT.security.selinux" keyword. + * This is what Red Hat's patched version of tar uses. + */ +# define SELINUX_CONTEXT_KEYWORD "RHT.security.selinux" + if (is_prefixed_with(value, SELINUX_CONTEXT_KEYWORD"=")) { + value += sizeof(SELINUX_CONTEXT_KEYWORD"=") - 1; + free(archive_handle->tar__sctx[global]); + archive_handle->tar__sctx[global] = xstrdup(value); + continue; + } +# endif + } + + free(buf); +#endif +} + +#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS +static void die_if_bad_fnamesize(off_t sz) +{ + if ((uoff_t)sz > 0xfff) /* more than 4k?! no funny business please */ + bb_simple_error_msg_and_die("bad archive"); +} +#endif + +char FAST_FUNC get_header_tar(archive_handle_t *archive_handle) +{ + file_header_t *file_header = archive_handle->file_header; + struct tar_header_t tar; + char *cp; + int tar_typeflag; /* can be "char", "int" seems give smaller code */ + int i, sum_u, sum; +#if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY + int sum_s; +#endif + int parse_names; + + /* Our "private data" */ +#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS +# define p_longname (archive_handle->tar__longname) +# define p_linkname (archive_handle->tar__linkname) +#else +# define p_longname 0 +# define p_linkname 0 +#endif + +#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS || ENABLE_FEATURE_TAR_SELINUX + again: +#endif + /* Align header */ + data_align(archive_handle, 512); + + again_after_align: + +#if ENABLE_DESKTOP || ENABLE_FEATURE_TAR_AUTODETECT + /* to prevent misdetection of bz2 sig */ + *(aliased_uint32_t*)&tar = 0; + i = full_read(archive_handle->src_fd, &tar, 512); + /* If GNU tar sees EOF in above read, it says: + * "tar: A lone zero block at N", where N = kilobyte + * where EOF was met (not EOF block, actual EOF!), + * and exits with EXIT_SUCCESS. + * We will mimic exit(EXIT_SUCCESS), although we will not mimic + * the message and we don't check whether we indeed + * saw zero block directly before this. */ + if (i == 0) { + /* GNU tar 1.29 will be silent if tar archive ends abruptly + * (if there are no zero blocks at all, and last read returns zero, + * not short read 0 < len < 512). Complain only if + * the very first read fails. Grrr. + */ + if (archive_handle->offset == 0) + bb_simple_error_msg("short read"); + /* this merely signals end of archive, not exit(1): */ + return EXIT_FAILURE; + } + if (i != 512) { + IF_FEATURE_TAR_AUTODETECT(goto autodetect;) + bb_simple_error_msg_and_die("short read"); + } + +#else + i = 512; + xread(archive_handle->src_fd, &tar, i); +#endif + archive_handle->offset += i; + + /* If there is no filename its an empty header */ + if (tar.name[0] == 0 && tar.prefix[0] == 0 + /* Have seen a tar archive with pax 'x' header supplying UTF8 filename, + * with actual file having all name fields NUL-filled. Check this: */ + && !p_longname + ) { + if (archive_handle->tar__end) { + /* Second consecutive empty header - end of archive. + * Read until the end to empty the pipe from gz or bz2 + */ + while (full_read(archive_handle->src_fd, &tar, 512) == 512) + continue; + return EXIT_FAILURE; /* "end of archive" */ + } + archive_handle->tar__end = 1; + return EXIT_SUCCESS; /* "decoded one header" */ + } + archive_handle->tar__end = 0; + + /* Check header has valid magic, "ustar" is for the proper tar, + * five NULs are for the old tar format */ + if (!is_prefixed_with(tar.magic, "ustar") + && (!ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY + || memcmp(tar.magic, "\0\0\0\0", 5) != 0) + ) { +#if ENABLE_FEATURE_TAR_AUTODETECT + autodetect: + /* Two different causes for lseek() != 0: + * unseekable fd (would like to support that too, but...), + * or not first block (false positive, it's not .gz/.bz2!) */ + if (lseek(archive_handle->src_fd, -i, SEEK_CUR) != 0) + goto err; + if (setup_unzip_on_fd(archive_handle->src_fd, /*fail_if_not_compressed:*/ 0) != 0) + err: + bb_simple_error_msg_and_die("invalid tar magic"); + archive_handle->offset = 0; + goto again_after_align; +#endif + bb_simple_error_msg_and_die("invalid tar magic"); + } + + /* Do checksum on headers. + * POSIX says that checksum is done on unsigned bytes, but + * Sun and HP-UX gets it wrong... more details in + * GNU tar source. */ + sum_u = ' ' * sizeof(tar.chksum); +#if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY + sum_s = sum_u; +#endif + for (i = 0; i < 148; i++) { + sum_u += ((unsigned char*)&tar)[i]; +#if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY + sum_s += ((signed char*)&tar)[i]; +#endif + } + for (i = 156; i < 512; i++) { + sum_u += ((unsigned char*)&tar)[i]; +#if ENABLE_FEATURE_TAR_OLDSUN_COMPATIBILITY + sum_s += ((signed char*)&tar)[i]; +#endif + } + /* Most tarfiles have tar.chksum NUL or space terminated, but + * github.com decided to be "special" and have unterminated field: + * 0090: 30343300 30303031 33323731 30000000 |043.000132710...| + * ^^^^^^^^| + * Need to use GET_OCTAL. This overwrites tar.typeflag ---+ + * (the '0' char immediately after chksum in example above) with NUL. + */ + tar_typeflag = (uint8_t)tar.typeflag; /* save it */ + sum = GET_OCTAL(tar.chksum); + if (sum_u != sum + IF_FEATURE_TAR_OLDSUN_COMPATIBILITY(&& sum_s != sum) + ) { + bb_simple_error_msg_and_die("invalid tar header checksum"); + } + + /* GET_OCTAL trashes subsequent field, therefore we call it + * on fields in reverse order */ + if (tar.devmajor[0]) { + char t = tar.prefix[0]; + /* we trash prefix[0] here, but we DO need it later! */ + unsigned minor = GET_OCTAL(tar.devminor); + unsigned major = GET_OCTAL(tar.devmajor); + file_header->device = makedev(major, minor); + tar.prefix[0] = t; + } + + /* 0 is reserved for high perf file, treat as normal file */ + if (tar_typeflag == '\0') tar_typeflag = '0'; + parse_names = (tar_typeflag >= '0' && tar_typeflag <= '7'); + + file_header->link_target = NULL; + if (!p_linkname && parse_names && tar.linkname[0]) { + file_header->link_target = xstrndup(tar.linkname, sizeof(tar.linkname)); + /* FIXME: what if we have non-link object with link_target? */ + /* Will link_target be free()ed? */ + } +#if ENABLE_FEATURE_TAR_UNAME_GNAME + file_header->tar__uname = tar.uname[0] ? xstrndup(tar.uname, sizeof(tar.uname)) : NULL; + file_header->tar__gname = tar.gname[0] ? xstrndup(tar.gname, sizeof(tar.gname)) : NULL; +#endif + file_header->mtime = GET_OCTAL(tar.mtime); + file_header->size = GET_OCTAL(tar.size); + file_header->gid = GET_OCTAL(tar.gid); + file_header->uid = GET_OCTAL(tar.uid); + /* Set bits 0-11 of the files mode */ + file_header->mode = 07777 & GET_OCTAL(tar.mode); + + file_header->name = NULL; + if (!p_longname && parse_names) { + /* we trash mode[0] here, it's ok */ + //tar.name[sizeof(tar.name)] = '\0'; - gcc 4.3.0 would complain + tar.mode[0] = '\0'; + if (tar.prefix[0]) { + /* and padding[0] */ + //tar.prefix[sizeof(tar.prefix)] = '\0'; - gcc 4.3.0 would complain + tar.padding[0] = '\0'; + file_header->name = concat_path_file(tar.prefix, tar.name); + } else + file_header->name = xstrdup(tar.name); + } + + switch (tar_typeflag) { + case '1': /* hardlink */ + /* we mark hardlinks as regular files with zero size and a link name */ + file_header->mode |= S_IFREG; + /* on size of link fields from star(4) + * ... For tar archives written by pre POSIX.1-1988 + * implementations, the size field usually contains the size of + * the file and needs to be ignored as no data may follow this + * header type. For POSIX.1-1988 compliant archives, the size + * field needs to be 0. For POSIX.1-2001 compliant archives, + * the size field may be non zero, indicating that file data is + * included in the archive. + * i.e; always assume this is zero for safety. + */ + goto size0; + case '7': + /* case 0: */ + case '0': +#if ENABLE_FEATURE_TAR_OLDGNU_COMPATIBILITY + if (file_header->name && last_char_is(file_header->name, '/')) { + goto set_dir; + } +#endif + file_header->mode |= S_IFREG; + break; + case '2': + file_header->mode |= S_IFLNK; + /* have seen tarballs with size field containing + * the size of the link target's name */ + size0: + file_header->size = 0; + break; + case '3': + file_header->mode |= S_IFCHR; + goto size0; /* paranoia */ + case '4': + file_header->mode |= S_IFBLK; + goto size0; + case '5': + IF_FEATURE_TAR_OLDGNU_COMPATIBILITY(set_dir:) + file_header->mode |= S_IFDIR; + goto size0; + case '6': + file_header->mode |= S_IFIFO; + goto size0; + case 'g': /* pax global header */ + case 'x': { /* pax extended header */ + if ((uoff_t)file_header->size > 0xfffff) /* paranoia */ + goto skip_ext_hdr; + process_pax_hdr(archive_handle, file_header->size, (tar_typeflag == 'g')); + goto again_after_align; +#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS +/* See http://www.gnu.org/software/tar/manual/html_node/Extensions.html */ + case 'L': + /* free: paranoia: tar with several consecutive longnames */ + free(p_longname); + /* For paranoia reasons we allocate extra NUL char */ + die_if_bad_fnamesize(file_header->size); + p_longname = xzalloc(file_header->size + 1); + /* We read ASCIZ string, including NUL */ + xread(archive_handle->src_fd, p_longname, file_header->size); + archive_handle->offset += file_header->size; + /* return get_header_tar(archive_handle); */ + /* gcc 4.1.1 didn't optimize it into jump */ + /* so we will do it ourself, this also saves stack */ + goto again; + case 'K': + free(p_linkname); + die_if_bad_fnamesize(file_header->size); + p_linkname = xzalloc(file_header->size + 1); + xread(archive_handle->src_fd, p_linkname, file_header->size); + archive_handle->offset += file_header->size; + /* return get_header_tar(archive_handle); */ + goto again; +/* + * case 'S': // Sparse file + * Was seen in the wild. Not supported (yet?). + * See https://www.gnu.org/software/tar/manual/html_section/tar_92.html + * for the format. (An "Old GNU Format" was seen, not PAX formats). + */ +// case 'D': /* GNU dump dir */ +// case 'M': /* Continuation of multi volume archive */ +// case 'N': /* Old GNU for names > 100 characters */ + case 'V': /* Volume header */ + ; /* Fall through to skip it */ +#endif + } + skip_ext_hdr: + { + off_t sz; + bb_error_msg("warning: skipping header '%c'", tar_typeflag); + sz = (file_header->size + 511) & ~(off_t)511; + archive_handle->offset += sz; + sz >>= 9; /* sz /= 512 but w/o contortions for signed div */ + while (sz--) + xread(archive_handle->src_fd, &tar, 512); + /* return get_header_tar(archive_handle); */ + goto again_after_align; + } + default: + bb_error_msg_and_die("unknown typeflag: 0x%x", tar_typeflag); + } + +#if ENABLE_FEATURE_TAR_GNU_EXTENSIONS + if (p_longname) { + file_header->name = p_longname; + p_longname = NULL; + } + if (p_linkname) { + file_header->link_target = p_linkname; + p_linkname = NULL; + } +#endif + + /* Everything up to and including last ".." component is stripped */ + overlapping_strcpy(file_header->name, strip_unsafe_prefix(file_header->name)); +//TODO: do the same for file_header->link_target? + + /* Strip trailing '/' in directories */ + /* Must be done after mode is set as '/' is used to check if it's a directory */ + cp = last_char_is(file_header->name, '/'); + + if (archive_handle->filter(archive_handle) == EXIT_SUCCESS) { + archive_handle->action_header(/*archive_handle->*/ file_header); + /* Note that we kill the '/' only after action_header() */ + /* (like GNU tar 1.15.1: verbose mode outputs "dir/dir/") */ + if (cp) + *cp = '\0'; + archive_handle->action_data(archive_handle); + if (archive_handle->accept || archive_handle->reject + || (archive_handle->ah_flags & ARCHIVE_REMEMBER_NAMES) + ) { + llist_add_to(&archive_handle->passed, file_header->name); + } else /* Caller isn't interested in list of unpacked files */ + free(file_header->name); + } else { + data_skip(archive_handle); + free(file_header->name); + } + archive_handle->offset += file_header->size; + + free(file_header->link_target); + /* Do not free(file_header->name)! + * It might be inserted in archive_handle->passed - see above */ +#if ENABLE_FEATURE_TAR_UNAME_GNAME + free(file_header->tar__uname); + free(file_header->tar__gname); +#endif + return EXIT_SUCCESS; /* "decoded one header" */ +} diff --git a/busybox-1_37_0/archival/libarchive/get_header_tar_bz2.c b/busybox-1_37_0/archival/libarchive/get_header_tar_bz2.c new file mode 100644 index 000000000..c021720ac --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/get_header_tar_bz2.c @@ -0,0 +1,20 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +char FAST_FUNC get_header_tar_bz2(archive_handle_t *archive_handle) +{ + /* Can't lseek over pipes */ + archive_handle->seek = seek_by_read; + + fork_transformer_with_sig(archive_handle->src_fd, unpack_bz2_stream, "bunzip2"); + archive_handle->offset = 0; + while (get_header_tar(archive_handle) == EXIT_SUCCESS) + continue; + + /* Can only do one file at a time */ + return EXIT_FAILURE; +} diff --git a/busybox-1_37_0/archival/libarchive/get_header_tar_gz.c b/busybox-1_37_0/archival/libarchive/get_header_tar_gz.c new file mode 100644 index 000000000..793b161a1 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/get_header_tar_gz.c @@ -0,0 +1,20 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +char FAST_FUNC get_header_tar_gz(archive_handle_t *archive_handle) +{ + /* Can't lseek over pipes */ + archive_handle->seek = seek_by_read; + + fork_transformer_with_sig(archive_handle->src_fd, unpack_gz_stream, "gunzip"); + archive_handle->offset = 0; + while (get_header_tar(archive_handle) == EXIT_SUCCESS) + continue; + + /* Can only do one file at a time */ + return EXIT_FAILURE; +} diff --git a/busybox-1_37_0/archival/libarchive/get_header_tar_lzma.c b/busybox-1_37_0/archival/libarchive/get_header_tar_lzma.c new file mode 100644 index 000000000..15d10adb8 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/get_header_tar_lzma.c @@ -0,0 +1,23 @@ +/* vi: set sw=4 ts=4: */ +/* + * Small lzma deflate implementation. + * Copyright (C) 2006 Aurelien Jacobs + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +char FAST_FUNC get_header_tar_lzma(archive_handle_t *archive_handle) +{ + /* Can't lseek over pipes */ + archive_handle->seek = seek_by_read; + + fork_transformer_with_sig(archive_handle->src_fd, unpack_lzma_stream, "unlzma"); + archive_handle->offset = 0; + while (get_header_tar(archive_handle) == EXIT_SUCCESS) + continue; + + /* Can only do one file at a time */ + return EXIT_FAILURE; +} diff --git a/busybox-1_37_0/archival/libarchive/get_header_tar_xz.c b/busybox-1_37_0/archival/libarchive/get_header_tar_xz.c new file mode 100644 index 000000000..852c989ce --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/get_header_tar_xz.c @@ -0,0 +1,20 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +char FAST_FUNC get_header_tar_xz(archive_handle_t *archive_handle) +{ + /* Can't lseek over pipes */ + archive_handle->seek = seek_by_read; + + fork_transformer_with_sig(archive_handle->src_fd, unpack_xz_stream, "unxz"); + archive_handle->offset = 0; + while (get_header_tar(archive_handle) == EXIT_SUCCESS) + continue; + + /* Can only do one file at a time */ + return EXIT_FAILURE; +} diff --git a/busybox-1_37_0/archival/libarchive/header_list.c b/busybox-1_37_0/archival/libarchive/header_list.c new file mode 100644 index 000000000..0621aa406 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/header_list.c @@ -0,0 +1,12 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC header_list(const file_header_t *file_header) +{ +//TODO: cpio -vp DIR should output "DIR/NAME", not just "NAME" */ + puts(file_header->name); +} diff --git a/busybox-1_37_0/archival/libarchive/header_skip.c b/busybox-1_37_0/archival/libarchive/header_skip.c new file mode 100644 index 000000000..f5987bfe2 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/header_skip.c @@ -0,0 +1,10 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC header_skip(const file_header_t *file_header UNUSED_PARAM) +{ +} diff --git a/busybox-1_37_0/archival/libarchive/header_verbose_list.c b/busybox-1_37_0/archival/libarchive/header_verbose_list.c new file mode 100644 index 000000000..a575a08a0 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/header_verbose_list.c @@ -0,0 +1,69 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC header_verbose_list(const file_header_t *file_header) +{ + struct tm tm_time; + struct tm *ptm = &tm_time; //localtime(&file_header->mtime); + char modestr[12]; + +#if ENABLE_FEATURE_TAR_UNAME_GNAME + char uid[sizeof(int)*3 + 2]; + /*char gid[sizeof(int)*3 + 2];*/ + char *user; + char *group; + + localtime_r(&file_header->mtime, ptm); + + user = file_header->tar__uname; + if (user == NULL) { + sprintf(uid, "%u", (unsigned)file_header->uid); + user = uid; + } + group = file_header->tar__gname; + if (group == NULL) { + /*sprintf(gid, "%u", (unsigned)file_header->gid);*/ + group = utoa(file_header->gid); + } + printf("%s %s/%s %9"OFF_FMT"u %4u-%02u-%02u %02u:%02u:%02u %s", + bb_mode_string(modestr, file_header->mode), + user, + group, + file_header->size, + 1900 + ptm->tm_year, + 1 + ptm->tm_mon, + ptm->tm_mday, + ptm->tm_hour, + ptm->tm_min, + ptm->tm_sec, + file_header->name); + +#else /* !FEATURE_TAR_UNAME_GNAME */ + + localtime_r(&file_header->mtime, ptm); + + printf("%s %u/%u %9"OFF_FMT"u %4u-%02u-%02u %02u:%02u:%02u %s", + bb_mode_string(modestr, file_header->mode), + (unsigned)file_header->uid, + (unsigned)file_header->gid, + file_header->size, + 1900 + ptm->tm_year, + 1 + ptm->tm_mon, + ptm->tm_mday, + ptm->tm_hour, + ptm->tm_min, + ptm->tm_sec, + file_header->name); + +#endif /* FEATURE_TAR_UNAME_GNAME */ + + /* NB: GNU tar shows "->" for symlinks and "link to" for hardlinks */ + if (file_header->link_target) { + printf(" -> %s", file_header->link_target); + } + bb_putchar('\n'); +} diff --git a/busybox-1_37_0/archival/libarchive/init_handle.c b/busybox-1_37_0/archival/libarchive/init_handle.c new file mode 100644 index 000000000..4c64dac58 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/init_handle.c @@ -0,0 +1,25 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +archive_handle_t* FAST_FUNC init_handle(void) +{ + archive_handle_t *archive_handle; + + /* Initialize default values */ + archive_handle = xzalloc(sizeof(archive_handle_t)); + archive_handle->file_header = xzalloc(sizeof(file_header_t)); + archive_handle->action_header = header_skip; + archive_handle->action_data = data_skip; + archive_handle->filter = filter_accept_all; + archive_handle->seek = seek_by_jump; +#if ENABLE_CPIO || ENABLE_RPM2CPIO || ENABLE_RPM + archive_handle->cpio__owner.uid = (uid_t)-1L; + archive_handle->cpio__owner.gid = (gid_t)-1L; +#endif + + return archive_handle; +} diff --git a/busybox-1_37_0/archival/libarchive/liblzo.h b/busybox-1_37_0/archival/libarchive/liblzo.h new file mode 100644 index 000000000..4596620fe --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/liblzo.h @@ -0,0 +1,95 @@ +/* + This file is part of the LZO real-time data compression library. + + Copyright (C) 1996..2008 Markus Franz Xaver Johannes Oberhumer + All Rights Reserved. + + Markus F.X.J. Oberhumer + http://www.oberhumer.com/opensource/lzo/ + + The LZO library is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + The LZO library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with the LZO library; see the file COPYING. + If not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +#include "liblzo_interface.h" + +/* lzo-2.03/src/config1x.h */ +#define M2_MIN_LEN 3 +#define M2_MAX_LEN 8 +#define M3_MAX_LEN 33 +#define M4_MAX_LEN 9 +#define M1_MAX_OFFSET 0x0400 +#define M2_MAX_OFFSET 0x0800 +#define M3_MAX_OFFSET 0x4000 +#define M4_MAX_OFFSET 0xbfff +#define M1_MARKER 0 +#define M3_MARKER 32 +#define M4_MARKER 16 + +#define MX_MAX_OFFSET (M1_MAX_OFFSET + M2_MAX_OFFSET) +#define MIN_LOOKAHEAD (M2_MAX_LEN + 1) + +#define LZO_EOF_CODE + +/* lzo-2.03/src/lzo_dict.h */ +#define GINDEX(m_pos,m_off,dict,dindex,in) m_pos = dict[dindex] +#define DX2(p,s1,s2) \ + (((((unsigned)((p)[2]) << (s2)) ^ (p)[1]) << (s1)) ^ (p)[0]) +//#define DA3(p,s1,s2,s3) ((DA2((p)+1,s2,s3) << (s1)) + (p)[0]) +//#define DS3(p,s1,s2,s3) ((DS2((p)+1,s2,s3) << (s1)) - (p)[0]) +#define DX3(p,s1,s2,s3) ((DX2((p)+1,s2,s3) << (s1)) ^ (p)[0]) + +#define D_SIZE (1U << D_BITS) +#define D_MASK ((1U << D_BITS) - 1) +#define D_HIGH ((D_MASK >> 1) + 1) + +#define LZO_CHECK_MPOS_NON_DET(m_pos,m_off,in,ip,max_offset) \ + ( \ + m_pos = ip - (unsigned)(ip - m_pos), \ + ((uintptr_t)m_pos < (uintptr_t)in \ + || (m_off = (unsigned)(ip - m_pos)) <= 0 \ + || m_off > max_offset) \ + ) + +#define DENTRY(p,in) (p) +#define UPDATE_I(dict,drun,index,p,in) dict[index] = DENTRY(p,in) + +#define DMS(v,s) ((unsigned) (((v) & (D_MASK >> (s))) << (s))) +#define DM(v) ((unsigned) ((v) & D_MASK)) +#define DMUL(a,b) ((unsigned) ((a) * (b))) + +/* lzo-2.03/src/lzo_ptr.h */ +#define pd(a,b) ((unsigned)((a)-(b))) + +# define TEST_IP (ip < ip_end) +# define NEED_IP(x) \ + if ((unsigned)(ip_end - ip) < (unsigned)(x)) goto input_overrun +# define TEST_IV(x) if ((x) > (unsigned)0 - (511)) goto input_overrun + +# undef TEST_OP /* don't need both of the tests here */ +# define TEST_OP 1 +# define NEED_OP(x) \ + if ((unsigned)(op_end - op) < (unsigned)(x)) goto output_overrun +# define TEST_OV(x) if ((x) > (unsigned)0 - (511)) goto output_overrun + +#define HAVE_ANY_OP 1 + +//#if defined(LZO_TEST_OVERRUN_LOOKBEHIND) +# define TEST_LB(m_pos) if (m_pos < out || m_pos >= op) goto lookbehind_overrun +//# define TEST_LBO(m_pos,o) if (m_pos < out || m_pos >= op - (o)) goto lookbehind_overrun +//#else +//# define TEST_LB(m_pos) ((void) 0) +//# define TEST_LBO(m_pos,o) ((void) 0) +//#endif diff --git a/busybox-1_37_0/archival/libarchive/lzo1x_1.c b/busybox-1_37_0/archival/libarchive/lzo1x_1.c new file mode 100644 index 000000000..a88839846 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/lzo1x_1.c @@ -0,0 +1,35 @@ +/* LZO1X-1 compression + + This file is part of the LZO real-time data compression library. + + Copyright (C) 1996..2008 Markus Franz Xaver Johannes Oberhumer + All Rights Reserved. + + Markus F.X.J. Oberhumer + http://www.oberhumer.com/opensource/lzo/ + + The LZO library is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + The LZO library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with the LZO library; see the file COPYING. + If not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +#include "libbb.h" +#include "liblzo.h" + +#define D_BITS 14 +#define D_INDEX1(d,p) d = DM(DMUL(0x21,DX3(p,5,5,6)) >> 5) +#define D_INDEX2(d,p) d = (d & (D_MASK & 0x7ff)) ^ (D_HIGH | 0x1f) + +#define DO_COMPRESS lzo1x_1_compress + +#include "lzo1x_c.c" diff --git a/busybox-1_37_0/archival/libarchive/lzo1x_1o.c b/busybox-1_37_0/archival/libarchive/lzo1x_1o.c new file mode 100644 index 000000000..3c61253e0 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/lzo1x_1o.c @@ -0,0 +1,35 @@ +/* LZO1X-1(15) compression + + This file is part of the LZO real-time data compression library. + + Copyright (C) 1996..2008 Markus Franz Xaver Johannes Oberhumer + All Rights Reserved. + + Markus F.X.J. Oberhumer + http://www.oberhumer.com/opensource/lzo/ + + The LZO library is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + The LZO library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with the LZO library; see the file COPYING. + If not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +#include "libbb.h" +#include "liblzo.h" + +#define D_BITS 15 +#define D_INDEX1(d,p) d = DM(DMUL(0x21,DX3(p,5,5,6)) >> 5) +#define D_INDEX2(d,p) d = (d & (D_MASK & 0x7ff)) ^ (D_HIGH | 0x1f) + +#define DO_COMPRESS lzo1x_1_15_compress + +#include "lzo1x_c.c" diff --git a/busybox-1_37_0/archival/libarchive/lzo1x_9x.c b/busybox-1_37_0/archival/libarchive/lzo1x_9x.c new file mode 100644 index 000000000..df26b375f --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/lzo1x_9x.c @@ -0,0 +1,919 @@ +/* lzo1x_9x.c -- implementation of the LZO1X-999 compression algorithm + + This file is part of the LZO real-time data compression library. + + Copyright (C) 2008 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 2007 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 2006 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 2005 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 2004 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 2003 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 2002 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 2001 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 2000 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 1999 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 1998 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 1997 Markus Franz Xaver Johannes Oberhumer + Copyright (C) 1996 Markus Franz Xaver Johannes Oberhumer + All Rights Reserved. + + The LZO library is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + The LZO library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with the LZO library; see the file COPYING. + If not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + + Markus F.X.J. Oberhumer + + http://www.oberhumer.com/opensource/lzo/ +*/ +#include "libbb.h" + +/* The following is probably only safe on Intel-compatible processors ... */ +#define LZO_UNALIGNED_OK_2 +#define LZO_UNALIGNED_OK_4 + +#include "liblzo.h" + +#define LZO_MAX(a,b) ((a) >= (b) ? (a) : (b)) +#define LZO_MIN(a,b) ((a) <= (b) ? (a) : (b)) +#define LZO_MAX3(a,b,c) ((a) >= (b) ? LZO_MAX(a,c) : LZO_MAX(b,c)) + +/*********************************************************************** +// +************************************************************************/ +#define SWD_N M4_MAX_OFFSET /* size of ring buffer */ +#define SWD_F 2048 /* upper limit for match length */ + +#define SWD_BEST_OFF (LZO_MAX3(M2_MAX_LEN, M3_MAX_LEN, M4_MAX_LEN) + 1) + +typedef struct { + int init; + + unsigned look; /* bytes in lookahead buffer */ + + unsigned m_len; + unsigned m_off; + + const uint8_t *bp; + const uint8_t *ip; + const uint8_t *in; + const uint8_t *in_end; + uint8_t *out; + + unsigned r1_lit; +} lzo1x_999_t; + +#define getbyte(c) ((c).ip < (c).in_end ? *((c).ip)++ : (-1)) + +/* lzo_swd.c -- sliding window dictionary */ + +/*********************************************************************** +// +************************************************************************/ +#define SWD_UINT_MAX USHRT_MAX + +#ifndef SWD_HSIZE +# define SWD_HSIZE 16384 +#endif +#ifndef SWD_MAX_CHAIN +# define SWD_MAX_CHAIN 2048 +#endif + +#define HEAD3(b, p) \ + ( ((0x9f5f * ((((b[p]<<5)^b[p+1])<<5) ^ b[p+2])) >> 5) & (SWD_HSIZE-1) ) + +#if defined(LZO_UNALIGNED_OK_2) +# define HEAD2(b,p) (* (bb__aliased_uint16_t *) &(b[p])) +#else +# define HEAD2(b,p) (b[p] ^ ((unsigned)b[p+1]<<8)) +#endif +#define NIL2 SWD_UINT_MAX + +typedef struct lzo_swd { + /* public - "built-in" */ + + /* public - configuration */ + unsigned max_chain; + int use_best_off; + + /* public - output */ + unsigned m_len; + unsigned m_off; + unsigned look; + int b_char; +#if defined(SWD_BEST_OFF) + unsigned best_off[SWD_BEST_OFF]; +#endif + + /* semi public */ + lzo1x_999_t *c; + unsigned m_pos; +#if defined(SWD_BEST_OFF) + unsigned best_pos[SWD_BEST_OFF]; +#endif + + /* private */ + unsigned ip; /* input pointer (lookahead) */ + unsigned bp; /* buffer pointer */ + unsigned rp; /* remove pointer */ + + unsigned node_count; + unsigned first_rp; + + uint8_t b[SWD_N + SWD_F]; + uint8_t b_wrap[SWD_F]; /* must follow b */ + uint16_t head3[SWD_HSIZE]; + uint16_t succ3[SWD_N + SWD_F]; + uint16_t best3[SWD_N + SWD_F]; + uint16_t llen3[SWD_HSIZE]; +#ifdef HEAD2 + uint16_t head2[65536L]; +#endif +} lzo_swd_t, *lzo_swd_p; + +#define SIZEOF_LZO_SWD_T (sizeof(lzo_swd_t)) + + +/* Access macro for head3. + * head3[key] may be uninitialized, but then its value will never be used. + */ +#define s_get_head3(s,key) s->head3[key] + + +/*********************************************************************** +// +************************************************************************/ +#define B_SIZE (SWD_N + SWD_F) + +static int swd_init(lzo_swd_p s) +{ + /* defaults */ + s->node_count = SWD_N; + + memset(s->llen3, 0, sizeof(s->llen3[0]) * (unsigned)SWD_HSIZE); +#ifdef HEAD2 + memset(s->head2, 0xff, sizeof(s->head2[0]) * 65536L); + assert(s->head2[0] == NIL2); +#endif + + s->ip = 0; + s->bp = s->ip; + s->first_rp = s->ip; + + assert(s->ip + SWD_F <= B_SIZE); + s->look = (unsigned) (s->c->in_end - s->c->ip); + if (s->look > 0) { + if (s->look > SWD_F) + s->look = SWD_F; + memcpy(&s->b[s->ip], s->c->ip, s->look); + s->c->ip += s->look; + s->ip += s->look; + } + if (s->ip == B_SIZE) + s->ip = 0; + + s->rp = s->first_rp; + if (s->rp >= s->node_count) + s->rp -= s->node_count; + else + s->rp += B_SIZE - s->node_count; + + return LZO_E_OK; +} + +#define swd_pos2off(s,pos) \ + (s->bp > (pos) ? s->bp - (pos) : B_SIZE - ((pos) - s->bp)) + + +/*********************************************************************** +// +************************************************************************/ +static void swd_getbyte(lzo_swd_p s) +{ + int c; + + if ((c = getbyte(*(s->c))) < 0) { + if (s->look > 0) + --s->look; + } else { + s->b[s->ip] = c; + if (s->ip < SWD_F) + s->b_wrap[s->ip] = c; + } + if (++s->ip == B_SIZE) + s->ip = 0; + if (++s->bp == B_SIZE) + s->bp = 0; + if (++s->rp == B_SIZE) + s->rp = 0; +} + + +/*********************************************************************** +// remove node from lists +************************************************************************/ +static void swd_remove_node(lzo_swd_p s, unsigned node) +{ + if (s->node_count == 0) { + unsigned key; + + key = HEAD3(s->b,node); + assert(s->llen3[key] > 0); + --s->llen3[key]; + +#ifdef HEAD2 + key = HEAD2(s->b,node); + assert(s->head2[key] != NIL2); + if ((unsigned) s->head2[key] == node) + s->head2[key] = NIL2; +#endif + } else + --s->node_count; +} + + +/*********************************************************************** +// +************************************************************************/ +static void swd_accept(lzo_swd_p s, unsigned n) +{ + assert(n <= s->look); + + while (n--) { + unsigned key; + + swd_remove_node(s,s->rp); + + /* add bp into HEAD3 */ + key = HEAD3(s->b, s->bp); + s->succ3[s->bp] = s_get_head3(s, key); + s->head3[key] = s->bp; + s->best3[s->bp] = SWD_F + 1; + s->llen3[key]++; + assert(s->llen3[key] <= SWD_N); + +#ifdef HEAD2 + /* add bp into HEAD2 */ + key = HEAD2(s->b, s->bp); + s->head2[key] = s->bp; +#endif + + swd_getbyte(s); + } +} + + +/*********************************************************************** +// +************************************************************************/ +static void swd_search(lzo_swd_p s, unsigned node, unsigned cnt) +{ + const uint8_t *p1; + const uint8_t *p2; + const uint8_t *px; + unsigned m_len = s->m_len; + const uint8_t *b = s->b; + const uint8_t *bp = s->b + s->bp; + const uint8_t *bx = s->b + s->bp + s->look; + unsigned char scan_end1; + + assert(s->m_len > 0); + + scan_end1 = bp[m_len - 1]; + for ( ; cnt-- > 0; node = s->succ3[node]) { + p1 = bp; + p2 = b + node; + px = bx; + + assert(m_len < s->look); + + if (p2[m_len - 1] == scan_end1 + && p2[m_len] == p1[m_len] + && p2[0] == p1[0] + && p2[1] == p1[1] + ) { + unsigned i; + assert(lzo_memcmp(bp, &b[node], 3) == 0); + + p1 += 2; p2 += 2; + do {} while (++p1 < px && *p1 == *++p2); + i = p1-bp; + + assert(lzo_memcmp(bp, &b[node], i) == 0); + +#if defined(SWD_BEST_OFF) + if (i < SWD_BEST_OFF) { + if (s->best_pos[i] == 0) + s->best_pos[i] = node + 1; + } +#endif + if (i > m_len) { + s->m_len = m_len = i; + s->m_pos = node; + if (m_len == s->look) + return; + if (m_len >= SWD_F) + return; + if (m_len > (unsigned) s->best3[node]) + return; + scan_end1 = bp[m_len - 1]; + } + } + } +} + + +/*********************************************************************** +// +************************************************************************/ +#ifdef HEAD2 + +static int swd_search2(lzo_swd_p s) +{ + unsigned key; + + assert(s->look >= 2); + assert(s->m_len > 0); + + key = s->head2[HEAD2(s->b, s->bp)]; + if (key == NIL2) + return 0; + assert(lzo_memcmp(&s->b[s->bp], &s->b[key], 2) == 0); +#if defined(SWD_BEST_OFF) + if (s->best_pos[2] == 0) + s->best_pos[2] = key + 1; +#endif + + if (s->m_len < 2) { + s->m_len = 2; + s->m_pos = key; + } + return 1; +} + +#endif + + +/*********************************************************************** +// +************************************************************************/ +static void swd_findbest(lzo_swd_p s) +{ + unsigned key; + unsigned cnt, node; + unsigned len; + + assert(s->m_len > 0); + + /* get current head, add bp into HEAD3 */ + key = HEAD3(s->b,s->bp); + node = s->succ3[s->bp] = s_get_head3(s, key); + cnt = s->llen3[key]++; + assert(s->llen3[key] <= SWD_N + SWD_F); + if (cnt > s->max_chain) + cnt = s->max_chain; + s->head3[key] = s->bp; + + s->b_char = s->b[s->bp]; + len = s->m_len; + if (s->m_len >= s->look) { + if (s->look == 0) + s->b_char = -1; + s->m_off = 0; + s->best3[s->bp] = SWD_F + 1; + } else { +#ifdef HEAD2 + if (swd_search2(s)) +#endif + if (s->look >= 3) + swd_search(s, node, cnt); + if (s->m_len > len) + s->m_off = swd_pos2off(s,s->m_pos); + s->best3[s->bp] = s->m_len; + +#if defined(SWD_BEST_OFF) + if (s->use_best_off) { + int i; + for (i = 2; i < SWD_BEST_OFF; i++) { + if (s->best_pos[i] > 0) + s->best_off[i] = swd_pos2off(s, s->best_pos[i]-1); + else + s->best_off[i] = 0; + } + } +#endif + } + + swd_remove_node(s,s->rp); + +#ifdef HEAD2 + /* add bp into HEAD2 */ + key = HEAD2(s->b, s->bp); + s->head2[key] = s->bp; +#endif +} + +#undef HEAD3 +#undef HEAD2 +#undef s_get_head3 + + +/*********************************************************************** +// +************************************************************************/ +static int init_match(lzo1x_999_t *c, lzo_swd_p s, uint32_t use_best_off) +{ + int r; + + assert(!c->init); + c->init = 1; + + s->c = c; + + r = swd_init(s); + if (r != 0) + return r; + + s->use_best_off = use_best_off; + return r; +} + + +/*********************************************************************** +// +************************************************************************/ +static int find_match(lzo1x_999_t *c, lzo_swd_p s, + unsigned this_len, unsigned skip) +{ + assert(c->init); + + if (skip > 0) { + assert(this_len >= skip); + swd_accept(s, this_len - skip); + } else { + assert(this_len <= 1); + } + + s->m_len = 1; +#ifdef SWD_BEST_OFF + if (s->use_best_off) + memset(s->best_pos, 0, sizeof(s->best_pos)); +#endif + swd_findbest(s); + c->m_len = s->m_len; + c->m_off = s->m_off; + + swd_getbyte(s); + + if (s->b_char < 0) { + c->look = 0; + c->m_len = 0; + } else { + c->look = s->look + 1; + } + c->bp = c->ip - c->look; + + return LZO_E_OK; +} + +/* this is a public functions, but there is no prototype in a header file */ +static int lzo1x_999_compress_internal(const uint8_t *in, unsigned in_len, + uint8_t *out, unsigned *out_len, + void *wrkmem, + unsigned good_length, + unsigned max_lazy, + unsigned max_chain, + uint32_t use_best_off); + + +/*********************************************************************** +// +************************************************************************/ +static uint8_t *code_match(lzo1x_999_t *c, + uint8_t *op, unsigned m_len, unsigned m_off) +{ + assert(op > c->out); + if (m_len == 2) { + assert(m_off <= M1_MAX_OFFSET); + assert(c->r1_lit > 0); + assert(c->r1_lit < 4); + m_off -= 1; + *op++ = M1_MARKER | ((m_off & 3) << 2); + *op++ = m_off >> 2; + } else if (m_len <= M2_MAX_LEN && m_off <= M2_MAX_OFFSET) { + assert(m_len >= 3); + m_off -= 1; + *op++ = ((m_len - 1) << 5) | ((m_off & 7) << 2); + *op++ = m_off >> 3; + assert(op[-2] >= M2_MARKER); + } else if (m_len == M2_MIN_LEN && m_off <= MX_MAX_OFFSET && c->r1_lit >= 4) { + assert(m_len == 3); + assert(m_off > M2_MAX_OFFSET); + m_off -= 1 + M2_MAX_OFFSET; + *op++ = M1_MARKER | ((m_off & 3) << 2); + *op++ = m_off >> 2; + } else if (m_off <= M3_MAX_OFFSET) { + assert(m_len >= 3); + m_off -= 1; + if (m_len <= M3_MAX_LEN) + *op++ = M3_MARKER | (m_len - 2); + else { + m_len -= M3_MAX_LEN; + *op++ = M3_MARKER | 0; + while (m_len > 255) { + m_len -= 255; + *op++ = 0; + } + assert(m_len > 0); + *op++ = m_len; + } + *op++ = m_off << 2; + *op++ = m_off >> 6; + } else { + unsigned k; + + assert(m_len >= 3); + assert(m_off > 0x4000); + assert(m_off <= 0xbfff); + m_off -= 0x4000; + k = (m_off & 0x4000) >> 11; + if (m_len <= M4_MAX_LEN) + *op++ = M4_MARKER | k | (m_len - 2); + else { + m_len -= M4_MAX_LEN; + *op++ = M4_MARKER | k | 0; + while (m_len > 255) { + m_len -= 255; + *op++ = 0; + } + assert(m_len > 0); + *op++ = m_len; + } + *op++ = m_off << 2; + *op++ = m_off >> 6; + } + + return op; +} + + +static uint8_t *STORE_RUN(lzo1x_999_t *c, uint8_t *op, + const uint8_t *ii, unsigned t) +{ + if (op == c->out && t <= 238) { + *op++ = 17 + t; + } else if (t <= 3) { + op[-2] |= t; + } else if (t <= 18) { + *op++ = t - 3; + } else { + unsigned tt = t - 18; + + *op++ = 0; + while (tt > 255) { + tt -= 255; + *op++ = 0; + } + assert(tt > 0); + *op++ = tt; + } + do *op++ = *ii++; while (--t > 0); + + return op; +} + + +static uint8_t *code_run(lzo1x_999_t *c, uint8_t *op, const uint8_t *ii, + unsigned lit) +{ + if (lit > 0) { + assert(m_len >= 2); + op = STORE_RUN(c, op, ii, lit); + } else { + assert(m_len >= 3); + } + c->r1_lit = lit; + + return op; +} + + +/*********************************************************************** +// +************************************************************************/ +static int len_of_coded_match(unsigned m_len, unsigned m_off, unsigned lit) +{ + int n = 4; + + if (m_len < 2) + return -1; + if (m_len == 2) + return (m_off <= M1_MAX_OFFSET && lit > 0 && lit < 4) ? 2 : -1; + if (m_len <= M2_MAX_LEN && m_off <= M2_MAX_OFFSET) + return 2; + if (m_len == M2_MIN_LEN && m_off <= MX_MAX_OFFSET && lit >= 4) + return 2; + if (m_off <= M3_MAX_OFFSET) { + if (m_len <= M3_MAX_LEN) + return 3; + m_len -= M3_MAX_LEN; + } else if (m_off <= M4_MAX_OFFSET) { + if (m_len <= M4_MAX_LEN) + return 3; + m_len -= M4_MAX_LEN; + } else + return -1; + while (m_len > 255) { + m_len -= 255; + n++; + } + return n; +} + + +static int min_gain(unsigned ahead, unsigned lit1, + unsigned lit2, int l1, int l2, int l3) +{ + int lazy_match_min_gain = 0; + + assert (ahead >= 1); + lazy_match_min_gain += ahead; + + if (lit1 <= 3) + lazy_match_min_gain += (lit2 <= 3) ? 0 : 2; + else if (lit1 <= 18) + lazy_match_min_gain += (lit2 <= 18) ? 0 : 1; + + lazy_match_min_gain += (l2 - l1) * 2; + if (l3 > 0) + lazy_match_min_gain -= (ahead - l3) * 2; + + if (lazy_match_min_gain < 0) + lazy_match_min_gain = 0; + + return lazy_match_min_gain; +} + + +/*********************************************************************** +// +************************************************************************/ +#if defined(SWD_BEST_OFF) + +static void better_match(const lzo_swd_p swd, + unsigned *m_len, unsigned *m_off) +{ + if (*m_len <= M2_MIN_LEN) + return; + + if (*m_off <= M2_MAX_OFFSET) + return; + + /* M3/M4 -> M2 */ + if (*m_off > M2_MAX_OFFSET + && *m_len >= M2_MIN_LEN + 1 && *m_len <= M2_MAX_LEN + 1 + && swd->best_off[*m_len-1] && swd->best_off[*m_len-1] <= M2_MAX_OFFSET + ) { + *m_len = *m_len - 1; + *m_off = swd->best_off[*m_len]; + return; + } + + /* M4 -> M2 */ + if (*m_off > M3_MAX_OFFSET + && *m_len >= M4_MAX_LEN + 1 && *m_len <= M2_MAX_LEN + 2 + && swd->best_off[*m_len-2] && swd->best_off[*m_len-2] <= M2_MAX_OFFSET + ) { + *m_len = *m_len - 2; + *m_off = swd->best_off[*m_len]; + return; + } + /* M4 -> M3 */ + if (*m_off > M3_MAX_OFFSET + && *m_len >= M4_MAX_LEN + 1 && *m_len <= M3_MAX_LEN + 1 + && swd->best_off[*m_len-1] && swd->best_off[*m_len-1] <= M3_MAX_OFFSET + ) { + *m_len = *m_len - 1; + *m_off = swd->best_off[*m_len]; + } +} + +#endif + + +/*********************************************************************** +// +************************************************************************/ +static int lzo1x_999_compress_internal(const uint8_t *in, unsigned in_len, + uint8_t *out, unsigned *out_len, + void *wrkmem, + unsigned good_length, + unsigned max_lazy, + unsigned max_chain, + uint32_t use_best_off) +{ + uint8_t *op; + const uint8_t *ii; + unsigned lit; + unsigned m_len, m_off; + lzo1x_999_t cc; + lzo1x_999_t *const c = &cc; + const lzo_swd_p swd = (lzo_swd_p) wrkmem; + int r; + + c->init = 0; + c->ip = c->in = in; + c->in_end = in + in_len; + c->out = out; + + op = out; + ii = c->ip; /* point to start of literal run */ + lit = 0; + c->r1_lit = 0; + + r = init_match(c, swd, use_best_off); + if (r != 0) + return r; + swd->max_chain = max_chain; + + r = find_match(c, swd, 0, 0); + if (r != 0) + return r; + + while (c->look > 0) { + unsigned ahead; + unsigned max_ahead; + int l1, l2, l3; + + m_len = c->m_len; + m_off = c->m_off; + + assert(c->bp == c->ip - c->look); + assert(c->bp >= in); + if (lit == 0) + ii = c->bp; + assert(ii + lit == c->bp); + assert(swd->b_char == *(c->bp)); + + if (m_len < 2 + || (m_len == 2 && (m_off > M1_MAX_OFFSET || lit == 0 || lit >= 4)) + /* Do not accept this match for compressed-data compatibility + * with LZO v1.01 and before + * [ might be a problem for decompress() and optimize() ] + */ + || (m_len == 2 && op == out) + || (op == out && lit == 0) + ) { + /* a literal */ + m_len = 0; + } + else if (m_len == M2_MIN_LEN) { + /* compression ratio improves if we code a literal in some cases */ + if (m_off > MX_MAX_OFFSET && lit >= 4) + m_len = 0; + } + + if (m_len == 0) { + /* a literal */ + lit++; + swd->max_chain = max_chain; + r = find_match(c, swd, 1, 0); + assert(r == 0); + continue; + } + + /* a match */ +#if defined(SWD_BEST_OFF) + if (swd->use_best_off) + better_match(swd, &m_len, &m_off); +#endif + + /* shall we try a lazy match ? */ + ahead = 0; + if (m_len >= max_lazy) { + /* no */ + l1 = 0; + max_ahead = 0; + } else { + /* yes, try a lazy match */ + l1 = len_of_coded_match(m_len, m_off, lit); + assert(l1 > 0); + max_ahead = LZO_MIN(2, (unsigned)l1 - 1); + } + + + while (ahead < max_ahead && c->look > m_len) { + int lazy_match_min_gain; + + if (m_len >= good_length) + swd->max_chain = max_chain >> 2; + else + swd->max_chain = max_chain; + r = find_match(c, swd, 1, 0); + ahead++; + + assert(r == 0); + assert(c->look > 0); + assert(ii + lit + ahead == c->bp); + + if (c->m_len < m_len) + continue; + if (c->m_len == m_len && c->m_off >= m_off) + continue; +#if defined(SWD_BEST_OFF) + if (swd->use_best_off) + better_match(swd, &c->m_len, &c->m_off); +#endif + l2 = len_of_coded_match(c->m_len, c->m_off, lit+ahead); + if (l2 < 0) + continue; + + /* compressed-data compatibility [see above] */ + l3 = (op == out) ? -1 : len_of_coded_match(ahead, m_off, lit); + + lazy_match_min_gain = min_gain(ahead, lit, lit+ahead, l1, l2, l3); + if (c->m_len >= m_len + lazy_match_min_gain) { + if (l3 > 0) { + /* code previous run */ + op = code_run(c, op, ii, lit); + lit = 0; + /* code shortened match */ + op = code_match(c, op, ahead, m_off); + } else { + lit += ahead; + assert(ii + lit == c->bp); + } + goto lazy_match_done; + } + } + + assert(ii + lit + ahead == c->bp); + + /* 1 - code run */ + op = code_run(c, op, ii, lit); + lit = 0; + + /* 2 - code match */ + op = code_match(c, op, m_len, m_off); + swd->max_chain = max_chain; + r = find_match(c, swd, m_len, 1+ahead); + assert(r == 0); + + lazy_match_done: ; + } + + /* store final run */ + if (lit > 0) + op = STORE_RUN(c, op, ii, lit); + +#if defined(LZO_EOF_CODE) + *op++ = M4_MARKER | 1; + *op++ = 0; + *op++ = 0; +#endif + + *out_len = op - out; + + return LZO_E_OK; +} + + +/*********************************************************************** +// +************************************************************************/ +int lzo1x_999_compress_level(const uint8_t *in, unsigned in_len, + uint8_t *out, unsigned *out_len, + void *wrkmem, + int compression_level) +{ + static const struct { + uint16_t good_length; + uint16_t max_lazy; + uint16_t max_chain; + uint16_t use_best_off; + } c[3] = { + { 8, 32, 256, 0 }, + { 32, 128, 2048, 1 }, + { SWD_F, SWD_F, 4096, 1 } /* max. compression */ + }; + + if (compression_level < 7 || compression_level > 9) + return LZO_E_ERROR; + + compression_level -= 7; + return lzo1x_999_compress_internal(in, in_len, out, out_len, wrkmem, + c[compression_level].good_length, + c[compression_level].max_lazy, + c[compression_level].max_chain, + c[compression_level].use_best_off); +} diff --git a/busybox-1_37_0/archival/libarchive/lzo1x_c.c b/busybox-1_37_0/archival/libarchive/lzo1x_c.c new file mode 100644 index 000000000..8c77072ab --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/lzo1x_c.c @@ -0,0 +1,296 @@ +/* implementation of the LZO1[XY]-1 compression algorithm + + This file is part of the LZO real-time data compression library. + + Copyright (C) 1996..2008 Markus Franz Xaver Johannes Oberhumer + All Rights Reserved. + + Markus F.X.J. Oberhumer + http://www.oberhumer.com/opensource/lzo/ + + The LZO library is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + The LZO library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with the LZO library; see the file COPYING. + If not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ + +/*********************************************************************** +// compress a block of data. +************************************************************************/ +static NOINLINE unsigned +do_compress(const uint8_t* in, unsigned in_len, + uint8_t* out, unsigned* out_len, + void* wrkmem) +{ + register const uint8_t* ip; + uint8_t* op; + const uint8_t* const in_end = in + in_len; + const uint8_t* const ip_end = in + in_len - M2_MAX_LEN - 5; + const uint8_t* ii; + const void* *const dict = (const void**) wrkmem; + + op = out; + ip = in; + ii = ip; + + ip += 4; + for (;;) { + register const uint8_t* m_pos; + unsigned m_off; + unsigned m_len; + unsigned dindex; + + D_INDEX1(dindex,ip); + GINDEX(m_pos,m_off,dict,dindex,in); + if (LZO_CHECK_MPOS_NON_DET(m_pos,m_off,in,ip,M4_MAX_OFFSET)) + goto literal; +#if 1 + if (m_off <= M2_MAX_OFFSET || m_pos[3] == ip[3]) + goto try_match; + D_INDEX2(dindex,ip); +#endif + GINDEX(m_pos,m_off,dict,dindex,in); + if (LZO_CHECK_MPOS_NON_DET(m_pos,m_off,in,ip,M4_MAX_OFFSET)) + goto literal; + if (m_off <= M2_MAX_OFFSET || m_pos[3] == ip[3]) + goto try_match; + goto literal; + + try_match: +#if 1 && defined(LZO_UNALIGNED_OK_2) + if (* (const lzo_ushortp) m_pos != * (const lzo_ushortp) ip) +#else + if (m_pos[0] != ip[0] || m_pos[1] != ip[1]) +#endif + { + } else { + if (m_pos[2] == ip[2]) { +#if 0 + if (m_off <= M2_MAX_OFFSET) + goto match; + if (lit <= 3) + goto match; + if (lit == 3) { /* better compression, but slower */ + assert(op - 2 > out); op[-2] |= (uint8_t)(3); + *op++ = *ii++; *op++ = *ii++; *op++ = *ii++; + goto code_match; + } + if (m_pos[3] == ip[3]) +#endif + goto match; + } + else { + /* still need a better way for finding M1 matches */ +#if 0 + /* a M1 match */ +#if 0 + if (m_off <= M1_MAX_OFFSET && lit > 0 && lit <= 3) +#else + if (m_off <= M1_MAX_OFFSET && lit == 3) +#endif + { + register unsigned t; + + t = lit; + assert(op - 2 > out); op[-2] |= (uint8_t)(t); + do *op++ = *ii++; while (--t > 0); + assert(ii == ip); + m_off -= 1; + *op++ = (uint8_t)(M1_MARKER | ((m_off & 3) << 2)); + *op++ = (uint8_t)(m_off >> 2); + ip += 2; + goto match_done; + } +#endif + } + } + + /* a literal */ + literal: + UPDATE_I(dict, 0, dindex, ip, in); + ++ip; + if (ip >= ip_end) + break; + continue; + + /* a match */ +match: + UPDATE_I(dict, 0, dindex, ip, in); + /* store current literal run */ + if (pd(ip, ii) > 0) { + register unsigned t = pd(ip, ii); + + if (t <= 3) { + assert(op - 2 > out); + op[-2] |= (uint8_t)(t); + } + else if (t <= 18) + *op++ = (uint8_t)(t - 3); + else { + register unsigned tt = t - 18; + + *op++ = 0; + while (tt > 255) { + tt -= 255; + *op++ = 0; + } + assert(tt > 0); + *op++ = (uint8_t)(tt); + } + do *op++ = *ii++; while (--t > 0); + } + + /* code the match */ + assert(ii == ip); + ip += 3; + if (m_pos[3] != *ip++ || m_pos[4] != *ip++ || m_pos[5] != *ip++ + || m_pos[6] != *ip++ || m_pos[7] != *ip++ || m_pos[8] != *ip++ +#ifdef LZO1Y + || m_pos[ 9] != *ip++ || m_pos[10] != *ip++ || m_pos[11] != *ip++ + || m_pos[12] != *ip++ || m_pos[13] != *ip++ || m_pos[14] != *ip++ +#endif + ) { + --ip; + m_len = pd(ip, ii); + assert(m_len >= 3); + assert(m_len <= M2_MAX_LEN); + + if (m_off <= M2_MAX_OFFSET) { + m_off -= 1; +#if defined(LZO1X) + *op++ = (uint8_t)(((m_len - 1) << 5) | ((m_off & 7) << 2)); + *op++ = (uint8_t)(m_off >> 3); +#elif defined(LZO1Y) + *op++ = (uint8_t)(((m_len + 1) << 4) | ((m_off & 3) << 2)); + *op++ = (uint8_t)(m_off >> 2); +#endif + } + else if (m_off <= M3_MAX_OFFSET) { + m_off -= 1; + *op++ = (uint8_t)(M3_MARKER | (m_len - 2)); + goto m3_m4_offset; + } else { +#if defined(LZO1X) + m_off -= 0x4000; + assert(m_off > 0); + assert(m_off <= 0x7fff); + *op++ = (uint8_t)(M4_MARKER | ((m_off & 0x4000) >> 11) | (m_len - 2)); + goto m3_m4_offset; +#elif defined(LZO1Y) + goto m4_match; +#endif + } + } + else { + { + const uint8_t* end = in_end; + const uint8_t* m = m_pos + M2_MAX_LEN + 1; + while (ip < end && *m == *ip) + m++, ip++; + m_len = pd(ip, ii); + } + assert(m_len > M2_MAX_LEN); + + if (m_off <= M3_MAX_OFFSET) { + m_off -= 1; + if (m_len <= 33) + *op++ = (uint8_t)(M3_MARKER | (m_len - 2)); + else { + m_len -= 33; + *op++ = M3_MARKER | 0; + goto m3_m4_len; + } + } else { +#if defined(LZO1Y) + m4_match: +#endif + m_off -= 0x4000; + assert(m_off > 0); + assert(m_off <= 0x7fff); + if (m_len <= M4_MAX_LEN) + *op++ = (uint8_t)(M4_MARKER | ((m_off & 0x4000) >> 11) | (m_len - 2)); + else { + m_len -= M4_MAX_LEN; + *op++ = (uint8_t)(M4_MARKER | ((m_off & 0x4000) >> 11)); + m3_m4_len: + while (m_len > 255) { + m_len -= 255; + *op++ = 0; + } + assert(m_len > 0); + *op++ = (uint8_t)(m_len); + } + } + m3_m4_offset: + *op++ = (uint8_t)((m_off & 63) << 2); + *op++ = (uint8_t)(m_off >> 6); + } +#if 0 + match_done: +#endif + ii = ip; + if (ip >= ip_end) + break; + } + + *out_len = pd(op, out); + return pd(in_end, ii); +} + +/*********************************************************************** +// public entry point +************************************************************************/ +int DO_COMPRESS(const uint8_t* in, unsigned in_len, + uint8_t* out, unsigned* out_len, + void* wrkmem) +{ + uint8_t* op = out; + unsigned t; + + if (in_len <= M2_MAX_LEN + 5) + t = in_len; + else { + t = do_compress(in,in_len,op,out_len,wrkmem); + op += *out_len; + } + + if (t > 0) { + const uint8_t* ii = in + in_len - t; + + if (op == out && t <= 238) + *op++ = (uint8_t)(17 + t); + else if (t <= 3) + op[-2] |= (uint8_t)(t); + else if (t <= 18) + *op++ = (uint8_t)(t - 3); + else { + unsigned tt = t - 18; + + *op++ = 0; + while (tt > 255) { + tt -= 255; + *op++ = 0; + } + assert(tt > 0); + *op++ = (uint8_t)(tt); + } + do *op++ = *ii++; while (--t > 0); + } + + *op++ = M4_MARKER | 1; + *op++ = 0; + *op++ = 0; + + *out_len = pd(op, out); + return 0; /*LZO_E_OK*/ +} diff --git a/busybox-1_37_0/archival/libarchive/lzo1x_d.c b/busybox-1_37_0/archival/libarchive/lzo1x_d.c new file mode 100644 index 000000000..43cf4a04e --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/lzo1x_d.c @@ -0,0 +1,422 @@ +/* implementation of the LZO1X decompression algorithm + + This file is part of the LZO real-time data compression library. + + Copyright (C) 1996..2008 Markus Franz Xaver Johannes Oberhumer + All Rights Reserved. + + Markus F.X.J. Oberhumer + http://www.oberhumer.com/opensource/lzo/ + + The LZO library is free software; you can redistribute it and/or + modify it under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + The LZO library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with the LZO library; see the file COPYING. + If not, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + */ +#include "libbb.h" +#include "liblzo.h" + +/*********************************************************************** +// decompress a block of data. +************************************************************************/ +/* safe decompression with overrun testing */ +int lzo1x_decompress_safe(const uint8_t* in, unsigned in_len, + uint8_t* out, unsigned* out_len /*, void* wrkmem */) +{ + register uint8_t* op; + register const uint8_t* ip; + register unsigned t; +#if defined(COPY_DICT) + unsigned m_off; + const uint8_t* dict_end; +#else + register const uint8_t* m_pos = NULL; /* possibly not needed */ +#endif + const uint8_t* const ip_end = in + in_len; +#if defined(HAVE_ANY_OP) + uint8_t* const op_end = out + *out_len; +#endif +#if defined(LZO1Z) + unsigned last_m_off = 0; +#endif + +// LZO_UNUSED(wrkmem); + +#if defined(COPY_DICT) + if (dict) { + if (dict_len > M4_MAX_OFFSET) { + dict += dict_len - M4_MAX_OFFSET; + dict_len = M4_MAX_OFFSET; + } + dict_end = dict + dict_len; + } else { + dict_len = 0; + dict_end = NULL; + } +#endif /* COPY_DICT */ + + *out_len = 0; + + op = out; + ip = in; + + if (*ip > 17) { + t = *ip++ - 17; + if (t < 4) + goto match_next; + assert(t > 0); NEED_OP(t); NEED_IP(t+1); + do *op++ = *ip++; while (--t > 0); + goto first_literal_run; + } + + while (TEST_IP && TEST_OP) { + t = *ip++; + if (t >= 16) + goto match; + /* a literal run */ + if (t == 0) { + NEED_IP(1); + while (*ip == 0) { + t += 255; + ip++; + NEED_IP(1); + } + TEST_IV(t); + t += 15 + *ip++; + } + /* copy literals */ + assert(t > 0); + NEED_OP(t+3); + NEED_IP(t+4); +#if defined(LZO_UNALIGNED_OK_4) || defined(LZO_ALIGNED_OK_4) +# if !defined(LZO_UNALIGNED_OK_4) + if (PTR_ALIGNED2_4(op, ip)) +# endif + { + COPY4(op, ip); + op += 4; + ip += 4; + if (--t > 0) { + if (t >= 4) { + do { + COPY4(op, ip); + op += 4; + ip += 4; + t -= 4; + } while (t >= 4); + if (t > 0) + do *op++ = *ip++; while (--t > 0); + } else { + do *op++ = *ip++; while (--t > 0); + } + } + } +# if !defined(LZO_UNALIGNED_OK_4) + else +# endif +#endif +#if !defined(LZO_UNALIGNED_OK_4) + { + *op++ = *ip++; + *op++ = *ip++; + *op++ = *ip++; + do *op++ = *ip++; while (--t > 0); + } +#endif + + first_literal_run: + t = *ip++; + if (t >= 16) + goto match; +#if defined(COPY_DICT) +#if defined(LZO1Z) + m_off = (1 + M2_MAX_OFFSET) + (t << 6) + (*ip++ >> 2); + last_m_off = m_off; +#else + m_off = (1 + M2_MAX_OFFSET) + (t >> 2) + (*ip++ << 2); +#endif + NEED_OP(3); + t = 3; COPY_DICT(t,m_off) +#else /* !COPY_DICT */ +#if defined(LZO1Z) + t = (1 + M2_MAX_OFFSET) + (t << 6) + (*ip++ >> 2); + m_pos = op - t; + last_m_off = t; +#else + m_pos = op - (1 + M2_MAX_OFFSET); + m_pos -= t >> 2; + m_pos -= *ip++ << 2; +#endif + TEST_LB(m_pos); NEED_OP(3); + *op++ = *m_pos++; + *op++ = *m_pos++; + *op++ = *m_pos; +#endif /* COPY_DICT */ + goto match_done; + + /* handle matches */ + do { + match: + if (t >= 64) { /* a M2 match */ +#if defined(COPY_DICT) +#if defined(LZO1X) + m_off = 1 + ((t >> 2) & 7) + (*ip++ << 3); + t = (t >> 5) - 1; +#elif defined(LZO1Y) + m_off = 1 + ((t >> 2) & 3) + (*ip++ << 2); + t = (t >> 4) - 3; +#elif defined(LZO1Z) + m_off = t & 0x1f; + if (m_off >= 0x1c) + m_off = last_m_off; + else { + m_off = 1 + (m_off << 6) + (*ip++ >> 2); + last_m_off = m_off; + } + t = (t >> 5) - 1; +#endif +#else /* !COPY_DICT */ +#if defined(LZO1X) + m_pos = op - 1; + m_pos -= (t >> 2) & 7; + m_pos -= *ip++ << 3; + t = (t >> 5) - 1; +#elif defined(LZO1Y) + m_pos = op - 1; + m_pos -= (t >> 2) & 3; + m_pos -= *ip++ << 2; + t = (t >> 4) - 3; +#elif defined(LZO1Z) + { + unsigned off = t & 0x1f; + m_pos = op; + if (off >= 0x1c) { + assert(last_m_off > 0); + m_pos -= last_m_off; + } else { + off = 1 + (off << 6) + (*ip++ >> 2); + m_pos -= off; + last_m_off = off; + } + } + t = (t >> 5) - 1; +#endif + TEST_LB(m_pos); assert(t > 0); NEED_OP(t+3-1); + goto copy_match; +#endif /* COPY_DICT */ + } + else if (t >= 32) { /* a M3 match */ + t &= 31; + if (t == 0) { + NEED_IP(1); + while (*ip == 0) { + t += 255; + ip++; + NEED_IP(1); + } + TEST_IV(t); + t += 31 + *ip++; + } +#if defined(COPY_DICT) +#if defined(LZO1Z) + m_off = 1 + (ip[0] << 6) + (ip[1] >> 2); + last_m_off = m_off; +#else + m_off = 1 + (ip[0] >> 2) + (ip[1] << 6); +#endif +#else /* !COPY_DICT */ +#if defined(LZO1Z) + { + unsigned off = 1 + (ip[0] << 6) + (ip[1] >> 2); + m_pos = op - off; + last_m_off = off; + } +#elif defined(LZO_UNALIGNED_OK_2) && defined(LZO_ABI_LITTLE_ENDIAN) + m_pos = op - 1; + m_pos -= (* (const lzo_ushortp) ip) >> 2; +#else + m_pos = op - 1; + m_pos -= (ip[0] >> 2) + (ip[1] << 6); +#endif +#endif /* COPY_DICT */ + ip += 2; + } + else if (t >= 16) { /* a M4 match */ +#if defined(COPY_DICT) + m_off = (t & 8) << 11; +#else /* !COPY_DICT */ + m_pos = op; + m_pos -= (t & 8) << 11; +#endif /* COPY_DICT */ + t &= 7; + if (t == 0) { + NEED_IP(1); + while (*ip == 0) { + t += 255; + ip++; + NEED_IP(1); + } + TEST_IV(t); + t += 7 + *ip++; + } +#if defined(COPY_DICT) +#if defined(LZO1Z) + m_off += (ip[0] << 6) + (ip[1] >> 2); +#else + m_off += (ip[0] >> 2) + (ip[1] << 6); +#endif + ip += 2; + if (m_off == 0) + goto eof_found; + m_off += 0x4000; +#if defined(LZO1Z) + last_m_off = m_off; +#endif +#else /* !COPY_DICT */ +#if defined(LZO1Z) + m_pos -= (ip[0] << 6) + (ip[1] >> 2); +#elif defined(LZO_UNALIGNED_OK_2) && defined(LZO_ABI_LITTLE_ENDIAN) + m_pos -= (* (const lzo_ushortp) ip) >> 2; +#else + m_pos -= (ip[0] >> 2) + (ip[1] << 6); +#endif + ip += 2; + if (m_pos == op) + goto eof_found; + m_pos -= 0x4000; +#if defined(LZO1Z) + last_m_off = pd((const uint8_t*)op, m_pos); +#endif +#endif /* COPY_DICT */ + } + else { /* a M1 match */ +#if defined(COPY_DICT) +#if defined(LZO1Z) + m_off = 1 + (t << 6) + (*ip++ >> 2); + last_m_off = m_off; +#else + m_off = 1 + (t >> 2) + (*ip++ << 2); +#endif + NEED_OP(2); + t = 2; COPY_DICT(t,m_off) +#else /* !COPY_DICT */ +#if defined(LZO1Z) + t = 1 + (t << 6) + (*ip++ >> 2); + m_pos = op - t; + last_m_off = t; +#else + m_pos = op - 1; + m_pos -= t >> 2; + m_pos -= *ip++ << 2; +#endif + TEST_LB(m_pos); NEED_OP(2); + *op++ = *m_pos++; + *op++ = *m_pos; +#endif /* COPY_DICT */ + goto match_done; + } + + /* copy match */ +#if defined(COPY_DICT) + + NEED_OP(t+3-1); + t += 3-1; COPY_DICT(t,m_off) + +#else /* !COPY_DICT */ + + TEST_LB(m_pos); assert(t > 0); NEED_OP(t+3-1); +#if defined(LZO_UNALIGNED_OK_4) || defined(LZO_ALIGNED_OK_4) +# if !defined(LZO_UNALIGNED_OK_4) + if (t >= 2 * 4 - (3 - 1) && PTR_ALIGNED2_4(op,m_pos)) { + assert((op - m_pos) >= 4); /* both pointers are aligned */ +# else + if (t >= 2 * 4 - (3 - 1) && (op - m_pos) >= 4) { +# endif + COPY4(op,m_pos); + op += 4; m_pos += 4; t -= 4 - (3 - 1); + do { + COPY4(op,m_pos); + op += 4; m_pos += 4; t -= 4; + } while (t >= 4); + if (t > 0) + do *op++ = *m_pos++; while (--t > 0); + } + else +#endif + { + copy_match: + *op++ = *m_pos++; *op++ = *m_pos++; + do *op++ = *m_pos++; while (--t > 0); + } + +#endif /* COPY_DICT */ + + match_done: +#if defined(LZO1Z) + t = ip[-1] & 3; +#else + t = ip[-2] & 3; +#endif + if (t == 0) + break; + + /* copy literals */ + match_next: + assert(t > 0); + assert(t < 4); + NEED_OP(t); + NEED_IP(t+1); +#if 0 + do *op++ = *ip++; while (--t > 0); +#else + *op++ = *ip++; + if (t > 1) { + *op++ = *ip++; + if (t > 2) + *op++ = *ip++; + } +#endif + t = *ip++; + } while (TEST_IP && TEST_OP); + } + +//#if defined(HAVE_TEST_IP) || defined(HAVE_TEST_OP) + /* no EOF code was found */ + *out_len = pd(op, out); + return LZO_E_EOF_NOT_FOUND; +//#endif + + eof_found: + assert(t == 1); + *out_len = pd(op, out); + return (ip == ip_end ? LZO_E_OK : + (ip < ip_end ? LZO_E_INPUT_NOT_CONSUMED : LZO_E_INPUT_OVERRUN)); + +//#if defined(HAVE_NEED_IP) + input_overrun: + *out_len = pd(op, out); + return LZO_E_INPUT_OVERRUN; +//#endif + +//#if defined(HAVE_NEED_OP) + output_overrun: + *out_len = pd(op, out); + return LZO_E_OUTPUT_OVERRUN; +//#endif + +//#if defined(LZO_TEST_OVERRUN_LOOKBEHIND) + lookbehind_overrun: + *out_len = pd(op, out); + return LZO_E_LOOKBEHIND_OVERRUN; +//#endif +} diff --git a/busybox-1_37_0/archival/libarchive/open_transformer.c b/busybox-1_37_0/archival/libarchive/open_transformer.c new file mode 100644 index 000000000..44715ef25 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/open_transformer.c @@ -0,0 +1,386 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC init_transformer_state(transformer_state_t *xstate) +{ + memset(xstate, 0, sizeof(*xstate)); +} + +int FAST_FUNC check_signature16(transformer_state_t *xstate, unsigned magic16) +{ + if (!xstate->signature_skipped) { + uint16_t magic2; + if (full_read(xstate->src_fd, &magic2, 2) != 2 || magic2 != magic16) { + bb_simple_error_msg("invalid magic"); + return -1; + } + xstate->signature_skipped = 2; + } + return 0; +} + +ssize_t FAST_FUNC transformer_write(transformer_state_t *xstate, const void *buf, size_t bufsize) +{ + ssize_t nwrote; + + if (xstate->mem_output_size_max != 0) { + size_t pos = xstate->mem_output_size; + size_t size; + + size = (xstate->mem_output_size += bufsize); + if (size > xstate->mem_output_size_max) { + free(xstate->mem_output_buf); + xstate->mem_output_buf = NULL; + bb_perror_msg("buffer %u too small", (unsigned)xstate->mem_output_size_max); + nwrote = -1; + goto ret; + } + xstate->mem_output_buf = xrealloc(xstate->mem_output_buf, size + 1); + memcpy(xstate->mem_output_buf + pos, buf, bufsize); + xstate->mem_output_buf[size] = '\0'; + nwrote = bufsize; + } else { + nwrote = full_write(xstate->dst_fd, buf, bufsize); + if (nwrote != (ssize_t)bufsize) { + bb_simple_perror_msg("write"); + nwrote = -1; + goto ret; + } + } + ret: + return nwrote; +} + +ssize_t FAST_FUNC xtransformer_write(transformer_state_t *xstate, const void *buf, size_t bufsize) +{ + ssize_t nwrote = transformer_write(xstate, buf, bufsize); + if (nwrote != (ssize_t)bufsize) { + xfunc_die(); + } + return nwrote; +} + +void check_errors_in_children(int signo) +{ + int status; + + if (!signo) { + /* block waiting for any child */ + if (wait(&status) < 0) +//FIXME: check EINTR? + return; /* probably there are no children */ + goto check_status; + } + + /* Wait for any child without blocking */ + for (;;) { + if (wait_any_nohang(&status) < 0) +//FIXME: check EINTR? + /* wait failed?! I'm confused... */ + return; + check_status: + /*if (WIFEXITED(status) && WEXITSTATUS(status) == 0)*/ + /* On Linux, the above can be checked simply as: */ + if (status == 0) + /* this child exited with 0 */ + continue; + /* Cannot happen: + if (!WIFSIGNALED(status) && !WIFEXITED(status)) ???; + */ + bb_got_signal = 1; + } +} + +/* transformer(), more than meets the eye */ +#if BB_MMU +void FAST_FUNC fork_transformer(int fd, + int signature_skipped, + IF_DESKTOP(long long) int FAST_FUNC (*transformer)(transformer_state_t *xstate) +) +#else +void FAST_FUNC fork_transformer(int fd, const char *transform_prog) +#endif +{ + struct fd_pair fd_pipe; + int pid; + + xpiped_pair(fd_pipe); + pid = BB_MMU ? xfork() : xvfork(); + if (pid == 0) { + /* Child */ + close(fd_pipe.rd); /* we don't want to read from the parent */ + // FIXME: error check? +#if BB_MMU + { + IF_DESKTOP(long long) int r; + transformer_state_t xstate; + init_transformer_state(&xstate); + xstate.signature_skipped = signature_skipped; + xstate.src_fd = fd; + xstate.dst_fd = fd_pipe.wr; + r = transformer(&xstate); + if (ENABLE_FEATURE_CLEAN_UP) { + close(fd_pipe.wr); /* send EOF */ + close(fd); + } + /* must be _exit! bug was actually seen here */ + _exit(/*error if:*/ r < 0); + } +#else + { + char *argv[4]; + xmove_fd(fd, 0); + xmove_fd(fd_pipe.wr, 1); + argv[0] = (char*)transform_prog; + argv[1] = (char*)"-cf"; + argv[2] = (char*)"-"; + argv[3] = NULL; + BB_EXECVP(transform_prog, argv); + bb_perror_msg_and_die("can't execute '%s'", transform_prog); + } +#endif + /* notreached */ + } + + /* parent process */ + close(fd_pipe.wr); /* don't want to write to the child */ + xmove_fd(fd_pipe.rd, fd); +} + + +#if SEAMLESS_COMPRESSION + +/* Used by e.g. rpm which gives us a fd without filename, + * thus we can't guess the format from filename's extension. + */ +static transformer_state_t *setup_transformer_on_fd(int fd, int fail_if_not_compressed) +{ + transformer_state_t *xstate; + + xstate = xzalloc(sizeof(*xstate)); + xstate->src_fd = fd; + + /* .gz and .bz2 both have 2-byte signature, and their + * unpack_XXX_stream wants this header skipped. */ + xstate->signature_skipped = 2; + xread(fd, xstate->magic.b16, 2); + if (ENABLE_FEATURE_SEAMLESS_GZ + && xstate->magic.b16[0] == GZIP_MAGIC + ) { + xstate->xformer = unpack_gz_stream; + USE_FOR_NOMMU(xstate->xformer_prog = "gunzip";) + goto found_magic; + } + if (ENABLE_FEATURE_SEAMLESS_Z + && xstate->magic.b16[0] == COMPRESS_MAGIC + ) { + xstate->xformer = unpack_Z_stream; + USE_FOR_NOMMU(xstate->xformer_prog = "uncompress";) + goto found_magic; + } + if (ENABLE_FEATURE_SEAMLESS_BZ2 + && xstate->magic.b16[0] == BZIP2_MAGIC + ) { + xstate->xformer = unpack_bz2_stream; + USE_FOR_NOMMU(xstate->xformer_prog = "bunzip2";) + goto found_magic; + } + if (ENABLE_FEATURE_SEAMLESS_XZ + && xstate->magic.b16[0] == XZ_MAGIC1 + ) { + uint32_t v32; + xstate->signature_skipped = 6; + xread(fd, &xstate->magic.b16[1], 4); + move_from_unaligned32(v32, &xstate->magic.b16[1]); + if (v32 == XZ_MAGIC2) { + xstate->xformer = unpack_xz_stream; + USE_FOR_NOMMU(xstate->xformer_prog = "unxz";) + goto found_magic; + } + } + + /* No known magic seen */ + if (fail_if_not_compressed) + bb_simple_error_msg_and_die("no gzip" + IF_FEATURE_SEAMLESS_BZ2("/bzip2") + IF_FEATURE_SEAMLESS_XZ("/xz") + " magic"); + + /* Some callers expect this function to "consume" fd + * even if data is not compressed. In this case, + * we return a state with trivial transformer. + */ +// USE_FOR_MMU(xstate->xformer = copy_stream;) +// USE_FOR_NOMMU(xstate->xformer_prog = "cat";) + + found_magic: + return xstate; +} + +static void fork_transformer_and_free(transformer_state_t *xstate) +{ +# if BB_MMU + fork_transformer_with_no_sig(xstate->src_fd, xstate->xformer); +# else + /* NOMMU version of fork_transformer execs + * an external unzipper that wants + * file position at the start of the file. + */ + xlseek(xstate->src_fd, - xstate->signature_skipped, SEEK_CUR); + xstate->signature_skipped = 0; + fork_transformer_with_sig(xstate->src_fd, xstate->xformer, xstate->xformer_prog); +# endif + free(xstate); +} + +/* Used by e.g. rpm which gives us a fd without filename, + * thus we can't guess the format from filename's extension. + */ +int FAST_FUNC setup_unzip_on_fd(int fd, int fail_if_not_compressed) +{ + transformer_state_t *xstate = setup_transformer_on_fd(fd, fail_if_not_compressed); + + if (!xstate->xformer) { + free(xstate); + return 1; + } + + fork_transformer_and_free(xstate); + return 0; +} +#if ENABLE_FEATURE_SEAMLESS_LZMA +/* ...and custom version for LZMA */ +void FAST_FUNC setup_lzma_on_fd(int fd) +{ + transformer_state_t *xstate = xzalloc(sizeof(*xstate)); + xstate->src_fd = fd; + xstate->xformer = unpack_lzma_stream; + USE_FOR_NOMMU(xstate->xformer_prog = "unlzma";) + fork_transformer_and_free(xstate); +} +#endif + +static transformer_state_t *open_transformer(const char *fname, int fail_if_not_compressed) +{ + transformer_state_t *xstate; + int fd; + + fd = open(fname, O_RDONLY); + if (fd < 0) + return NULL; + + if (ENABLE_FEATURE_SEAMLESS_LZMA) { + /* .lzma has no header/signature, can only detect it by extension */ + if (is_suffixed_with(fname, ".lzma")) { + xstate = xzalloc(sizeof(*xstate)); + xstate->src_fd = fd; + xstate->xformer = unpack_lzma_stream; + USE_FOR_NOMMU(xstate->xformer_prog = "unlzma";) + return xstate; + } + } + + xstate = setup_transformer_on_fd(fd, fail_if_not_compressed); + + return xstate; +} + +int FAST_FUNC open_zipped(const char *fname, int fail_if_not_compressed) +{ + int fd; + transformer_state_t *xstate; + + xstate = open_transformer(fname, fail_if_not_compressed); + if (!xstate) + return -1; + + fd = xstate->src_fd; +# if BB_MMU + if (xstate->xformer) { + fork_transformer_with_no_sig(fd, xstate->xformer); + } else { + /* the file is not compressed */ + xlseek(fd, - xstate->signature_skipped, SEEK_CUR); + xstate->signature_skipped = 0; + } +# else + /* NOMMU can't avoid the seek :( */ + xlseek(fd, - xstate->signature_skipped, SEEK_CUR); + xstate->signature_skipped = 0; + if (xstate->xformer) { + fork_transformer_with_sig(fd, xstate->xformer, xstate->xformer_prog); + } /* else: the file is not compressed */ +# endif + + free(xstate); + return fd; +} + +void* FAST_FUNC xmalloc_open_zipped_read_close(const char *fname, size_t *maxsz_p) +{ +# if 1 + transformer_state_t *xstate; + char *image; + + xstate = open_transformer(fname, /*fail_if_not_compressed:*/ 0); + if (!xstate) /* file open error */ + return NULL; + + image = NULL; + if (xstate->xformer) { + /* In-memory decompression */ + xstate->mem_output_size_max = maxsz_p ? *maxsz_p : (size_t)(INT_MAX - 4095); + xstate->xformer(xstate); + if (xstate->mem_output_buf) { + image = xstate->mem_output_buf; + if (maxsz_p) + *maxsz_p = xstate->mem_output_size; + } + } else { + /* File is not compressed. + * We already read first few bytes, account for that. + * Example where it happens: + * "modinfo MODULE.ko" (not compressed) + * open("MODULE.ko", O_RDONLY|O_LARGEFILE) = 4 + * read(4, "\177E", 2) = 2 + * fstat64(4, ...) + * mmap(...) + * read(4, "LF\2\1\1\0\0\0\0"... + * ...and we avoided seeking on the fd! :) + */ + image = xmalloc_read_with_initial_buf( + xstate->src_fd, + maxsz_p, + xmemdup(&xstate->magic, xstate->signature_skipped), + xstate->signature_skipped + ); + xstate->signature_skipped = 0; + } + + if (!image) + bb_perror_msg("read error from '%s'", fname); + close(xstate->src_fd); + free(xstate); + return image; +# else + /* This version forks a subprocess - much more expensive */ + int fd; + char *image; + + fd = open_zipped(fname, /*fail_if_not_compressed:*/ 0); + if (fd < 0) + return NULL; + + image = xmalloc_read(fd, maxsz_p); + if (!image) + bb_perror_msg("read error from '%s'", fname); + close(fd); + return image; +# endif +} + +#endif /* SEAMLESS_COMPRESSION */ diff --git a/busybox-1_37_0/archival/libarchive/seek_by_jump.c b/busybox-1_37_0/archival/libarchive/seek_by_jump.c new file mode 100644 index 000000000..dddaa3732 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/seek_by_jump.c @@ -0,0 +1,18 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC seek_by_jump(int fd, off_t amount) +{ + if (amount + && lseek(fd, amount, SEEK_CUR) == (off_t) -1 + ) { + if (errno == ESPIPE) + seek_by_read(fd, amount); + else + bb_simple_perror_msg_and_die("seek failure"); + } +} diff --git a/busybox-1_37_0/archival/libarchive/seek_by_read.c b/busybox-1_37_0/archival/libarchive/seek_by_read.c new file mode 100644 index 000000000..df2346354 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/seek_by_read.c @@ -0,0 +1,15 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +/* If we are reading through a pipe, or from stdin then we can't lseek, + * we must read and discard the data to skip over it. + */ +void FAST_FUNC seek_by_read(int fd, off_t amount) +{ + if (amount) + bb_copyfd_exact_size(fd, -1, amount); +} diff --git a/busybox-1_37_0/archival/libarchive/unpack_ar_archive.c b/busybox-1_37_0/archival/libarchive/unpack_ar_archive.c new file mode 100644 index 000000000..125d424c9 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unpack_ar_archive.c @@ -0,0 +1,21 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" +#include "ar_.h" + +void FAST_FUNC unpack_ar_archive(archive_handle_t *ar_archive) +{ + char magic[7]; + + xread(ar_archive->src_fd, magic, AR_MAGIC_LEN); + if (!is_prefixed_with(magic, AR_MAGIC)) { + bb_simple_error_msg_and_die("invalid ar magic"); + } + ar_archive->offset += AR_MAGIC_LEN; + + while (get_header_ar(ar_archive) == EXIT_SUCCESS) + continue; +} diff --git a/busybox-1_37_0/archival/libarchive/unsafe_prefix.c b/busybox-1_37_0/archival/libarchive/unsafe_prefix.c new file mode 100644 index 000000000..33e487bf9 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unsafe_prefix.c @@ -0,0 +1,35 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +const char* FAST_FUNC strip_unsafe_prefix(const char *str) +{ + const char *cp = str; + while (1) { + char *cp2; + if (*cp == '/') { + cp++; + continue; + } + if (is_prefixed_with(cp, "/../"+1)) { + cp += 3; + continue; + } + cp2 = strstr(cp, "/../"); + if (!cp2) + break; + cp = cp2 + 4; + } + if (cp != str) { + static smallint warned = 0; + if (!warned) { + warned = 1; + bb_error_msg("removing leading '%.*s' from member names", + (int)(cp - str), str); + } + } + return cp; +} diff --git a/busybox-1_37_0/archival/libarchive/unsafe_symlink_target.c b/busybox-1_37_0/archival/libarchive/unsafe_symlink_target.c new file mode 100644 index 000000000..f8dc8033d --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unsafe_symlink_target.c @@ -0,0 +1,42 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#include "libbb.h" +#include "bb_archive.h" + +void FAST_FUNC create_or_remember_link(llist_t **link_placeholders, + const char *target, + const char *linkname, + int hard_link) +{ + if (hard_link || target[0] == '/' || strstr(target, "..")) { + llist_add_to_end(link_placeholders, + xasprintf("%c%s%c%s", hard_link, linkname, '\0', target) + ); + return; + } + if (symlink(target, linkname) != 0) { + /* shared message */ + bb_perror_msg_and_die("can't create %slink '%s' to '%s'", + "sym", linkname, target + ); + } +} + +void FAST_FUNC create_links_from_list(llist_t *list) +{ + while (list) { + char *target; + + target = list->data + 1 + strlen(list->data + 1) + 1; + if ((*list->data ? link : symlink) (target, list->data + 1)) { + /* shared message */ + bb_error_msg_and_die("can't create %slink '%s' to '%s'", + *list->data ? "hard" : "sym", + list->data + 1, target + ); + } + list = list->link; + } +} diff --git a/busybox-1_37_0/archival/libarchive/unxz/README b/busybox-1_37_0/archival/libarchive/unxz/README new file mode 100644 index 000000000..a84912035 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unxz/README @@ -0,0 +1,135 @@ + +XZ Embedded +=========== + + XZ Embedded is a relatively small, limited implementation of the .xz + file format. Currently only decoding is implemented. + + XZ Embedded was written for use in the Linux kernel, but the code can + be easily used in other environments too, including regular userspace + applications. See userspace/xzminidec.c for an example program. + + This README contains information that is useful only when the copy + of XZ Embedded isn't part of the Linux kernel tree. You should also + read linux/Documentation/xz.txt even if you aren't using XZ Embedded + as part of Linux; information in that file is not repeated in this + README. + +Compiling the Linux kernel module + + The xz_dec module depends on crc32 module, so make sure that you have + it enabled (CONFIG_CRC32). + + Building the xz_dec and xz_dec_test modules without support for BCJ + filters: + + cd linux/lib/xz + make -C /path/to/kernel/source \ + KCPPFLAGS=-I"$(pwd)/../../include" M="$(pwd)" \ + CONFIG_XZ_DEC=m CONFIG_XZ_DEC_TEST=m + + Building the xz_dec and xz_dec_test modules with support for BCJ + filters: + + cd linux/lib/xz + make -C /path/to/kernel/source \ + KCPPFLAGS=-I"$(pwd)/../../include" M="$(pwd)" \ + CONFIG_XZ_DEC=m CONFIG_XZ_DEC_TEST=m CONFIG_XZ_DEC_BCJ=y \ + CONFIG_XZ_DEC_X86=y CONFIG_XZ_DEC_POWERPC=y \ + CONFIG_XZ_DEC_IA64=y CONFIG_XZ_DEC_ARM=y \ + CONFIG_XZ_DEC_ARMTHUMB=y CONFIG_XZ_DEC_SPARC=y + + If you want only one or a few of the BCJ filters, omit the appropriate + variables. CONFIG_XZ_DEC_BCJ=y is always required to build the support + code shared between all BCJ filters. + + Most people don't need the xz_dec_test module. You can skip building + it by omitting CONFIG_XZ_DEC_TEST=m from the make command line. + +Compiler requirements + + XZ Embedded should compile as either GNU-C89 (used in the Linux + kernel) or with any C99 compiler. Getting the code to compile with + non-GNU C89 compiler or a C++ compiler should be quite easy as + long as there is a data type for unsigned 64-bit integer (or the + code is modified not to support large files, which needs some more + care than just using 32-bit integer instead of 64-bit). + + If you use GCC, try to use a recent version. For example, on x86-32, + xz_dec_lzma2.c compiled with GCC 3.3.6 is 15-25 % slower than when + compiled with GCC 4.3.3. + +Embedding into userspace applications + + To embed the XZ decoder, copy the following files into a single + directory in your source code tree: + + linux/include/linux/xz.h + linux/lib/xz/xz_crc32.c + linux/lib/xz/xz_dec_lzma2.c + linux/lib/xz/xz_dec_stream.c + linux/lib/xz/xz_lzma2.h + linux/lib/xz/xz_private.h + linux/lib/xz/xz_stream.h + userspace/xz_config.h + + Alternatively, xz.h may be placed into a different directory but then + that directory must be in the compiler include path when compiling + the .c files. + + Your code should use only the functions declared in xz.h. The rest of + the .h files are meant only for internal use in XZ Embedded. + + You may want to modify xz_config.h to be more suitable for your build + environment. Probably you should at least skim through it even if the + default file works as is. + +BCJ filter support + + If you want support for one or more BCJ filters, you need to copy also + linux/lib/xz/xz_dec_bcj.c into your application, and use appropriate + #defines in xz_config.h or in compiler flags. You don't need these + #defines in the code that just uses XZ Embedded via xz.h, but having + them always #defined doesn't hurt either. + + #define Instruction set BCJ filter endianness + XZ_DEC_X86 x86-32 or x86-64 Little endian only + XZ_DEC_POWERPC PowerPC Big endian only + XZ_DEC_IA64 Itanium (IA-64) Big or little endian + XZ_DEC_ARM ARM Little endian only + XZ_DEC_ARMTHUMB ARM-Thumb Little endian only + XZ_DEC_SPARC SPARC Big or little endian + + While some architectures are (partially) bi-endian, the endianness + setting doesn't change the endianness of the instructions on all + architectures. That's why Itanium and SPARC filters work for both big + and little endian executables (Itanium has little endian instructions + and SPARC has big endian instructions). + + There currently is no filter for little endian PowerPC or big endian + ARM or ARM-Thumb. Implementing filters for them can be considered if + there is a need for such filters in real-world applications. + +Notes about shared libraries + + If you are including XZ Embedded into a shared library, you very + probably should rename the xz_* functions to prevent symbol + conflicts in case your library is linked against some other library + or application that also has XZ Embedded in it (which may even be + a different version of XZ Embedded). TODO: Provide an easy way + to do this. + + Please don't create a shared library of XZ Embedded itself unless + it is fine to rebuild everything depending on that shared library + everytime you upgrade to a newer version of XZ Embedded. There are + no API or ABI stability guarantees between different versions of + XZ Embedded. + +Specifying the calling convention + + XZ_FUNC macro was included to support declaring functions with __init + in Linux. Outside Linux, it can be used to specify the calling + convention on systems that support multiple calling conventions. + For example, on Windows, you may make all functions use the stdcall + calling convention by defining XZ_FUNC=__stdcall when building and + using the functions from XZ Embedded. diff --git a/busybox-1_37_0/archival/libarchive/unxz/xz.h b/busybox-1_37_0/archival/libarchive/unxz/xz.h new file mode 100644 index 000000000..e0b22db56 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unxz/xz.h @@ -0,0 +1,280 @@ +/* + * XZ decompressor + * + * Authors: Lasse Collin + * Igor Pavlov + * + * This file has been put into the public domain. + * You can do whatever you want with this file. + */ + +#ifndef XZ_H +#define XZ_H + +#ifdef __KERNEL__ +# include +# include +#else +# include +# include +#endif + +#ifdef __cplusplus +extern "C" { +#endif + +/* In Linux, this is used to make extern functions static when needed. */ +#ifndef XZ_EXTERN +# define XZ_EXTERN extern +#endif + +/* In Linux, this is used to mark the functions with __init when needed. */ +#ifndef XZ_FUNC +# define XZ_FUNC +#endif + +/** + * enum xz_mode - Operation mode + * + * @XZ_SINGLE: Single-call mode. This uses less RAM than + * than multi-call modes, because the LZMA2 + * dictionary doesn't need to be allocated as + * part of the decoder state. All required data + * structures are allocated at initialization, + * so xz_dec_run() cannot return XZ_MEM_ERROR. + * @XZ_PREALLOC: Multi-call mode with preallocated LZMA2 + * dictionary buffer. All data structures are + * allocated at initialization, so xz_dec_run() + * cannot return XZ_MEM_ERROR. + * @XZ_DYNALLOC: Multi-call mode. The LZMA2 dictionary is + * allocated once the required size has been + * parsed from the stream headers. If the + * allocation fails, xz_dec_run() will return + * XZ_MEM_ERROR. + * + * It is possible to enable support only for a subset of the above + * modes at compile time by defining XZ_DEC_SINGLE, XZ_DEC_PREALLOC, + * or XZ_DEC_DYNALLOC. The xz_dec kernel module is always compiled + * with support for all operation modes, but the preboot code may + * be built with fewer features to minimize code size. + */ +enum xz_mode { + XZ_SINGLE, + XZ_PREALLOC, + XZ_DYNALLOC +}; + +/** + * enum xz_ret - Return codes + * @XZ_OK: Everything is OK so far. More input or more + * output space is required to continue. This + * return code is possible only in multi-call mode + * (XZ_PREALLOC or XZ_DYNALLOC). + * @XZ_STREAM_END: Operation finished successfully. + * @XZ_UNSUPPORTED_CHECK: Integrity check type is not supported. Decoding + * is still possible in multi-call mode by simply + * calling xz_dec_run() again. + * Note that this return value is used only if + * XZ_DEC_ANY_CHECK was defined at build time, + * which is not used in the kernel. Unsupported + * check types return XZ_OPTIONS_ERROR if + * XZ_DEC_ANY_CHECK was not defined at build time. + * @XZ_MEM_ERROR: Allocating memory failed. This return code is + * possible only if the decoder was initialized + * with XZ_DYNALLOC. The amount of memory that was + * tried to be allocated was no more than the + * dict_max argument given to xz_dec_init(). + * @XZ_MEMLIMIT_ERROR: A bigger LZMA2 dictionary would be needed than + * allowed by the dict_max argument given to + * xz_dec_init(). This return value is possible + * only in multi-call mode (XZ_PREALLOC or + * XZ_DYNALLOC); the single-call mode (XZ_SINGLE) + * ignores the dict_max argument. + * @XZ_FORMAT_ERROR: File format was not recognized (wrong magic + * bytes). + * @XZ_OPTIONS_ERROR: This implementation doesn't support the requested + * compression options. In the decoder this means + * that the header CRC32 matches, but the header + * itself specifies something that we don't support. + * @XZ_DATA_ERROR: Compressed data is corrupt. + * @XZ_BUF_ERROR: Cannot make any progress. Details are slightly + * different between multi-call and single-call + * mode; more information below. + * + * In multi-call mode, XZ_BUF_ERROR is returned when two consecutive calls + * to XZ code cannot consume any input and cannot produce any new output. + * This happens when there is no new input available, or the output buffer + * is full while at least one output byte is still pending. Assuming your + * code is not buggy, you can get this error only when decoding a compressed + * stream that is truncated or otherwise corrupt. + * + * In single-call mode, XZ_BUF_ERROR is returned only when the output buffer + * is too small or the compressed input is corrupt in a way that makes the + * decoder produce more output than the caller expected. When it is + * (relatively) clear that the compressed input is truncated, XZ_DATA_ERROR + * is used instead of XZ_BUF_ERROR. + */ +enum xz_ret { + XZ_OK, + XZ_STREAM_END, + XZ_UNSUPPORTED_CHECK, + XZ_MEM_ERROR, + XZ_MEMLIMIT_ERROR, + XZ_FORMAT_ERROR, + XZ_OPTIONS_ERROR, + XZ_DATA_ERROR, + XZ_BUF_ERROR +}; + +/** + * struct xz_buf - Passing input and output buffers to XZ code + * @in: Beginning of the input buffer. This may be NULL if and only + * if in_pos is equal to in_size. + * @in_pos: Current position in the input buffer. This must not exceed + * in_size. + * @in_size: Size of the input buffer + * @out: Beginning of the output buffer. This may be NULL if and only + * if out_pos is equal to out_size. + * @out_pos: Current position in the output buffer. This must not exceed + * out_size. + * @out_size: Size of the output buffer + * + * Only the contents of the output buffer from out[out_pos] onward, and + * the variables in_pos and out_pos are modified by the XZ code. + */ +struct xz_buf { + const uint8_t *in; + size_t in_pos; + size_t in_size; + + uint8_t *out; + size_t out_pos; + size_t out_size; +}; + +/** + * struct xz_dec - Opaque type to hold the XZ decoder state + */ +struct xz_dec; + +/** + * xz_dec_init() - Allocate and initialize a XZ decoder state + * @mode: Operation mode + * @dict_max: Maximum size of the LZMA2 dictionary (history buffer) for + * multi-call decoding. This is ignored in single-call mode + * (mode == XZ_SINGLE). LZMA2 dictionary is always 2^n bytes + * or 2^n + 2^(n-1) bytes (the latter sizes are less common + * in practice), so other values for dict_max don't make sense. + * In the kernel, dictionary sizes of 64 KiB, 128 KiB, 256 KiB, + * 512 KiB, and 1 MiB are probably the only reasonable values, + * except for kernel and initramfs images where a bigger + * dictionary can be fine and useful. + * + * Single-call mode (XZ_SINGLE): xz_dec_run() decodes the whole stream at + * once. The caller must provide enough output space or the decoding will + * fail. The output space is used as the dictionary buffer, which is why + * there is no need to allocate the dictionary as part of the decoder's + * internal state. + * + * Because the output buffer is used as the workspace, streams encoded using + * a big dictionary are not a problem in single-call mode. It is enough that + * the output buffer is big enough to hold the actual uncompressed data; it + * can be smaller than the dictionary size stored in the stream headers. + * + * Multi-call mode with preallocated dictionary (XZ_PREALLOC): dict_max bytes + * of memory is preallocated for the LZMA2 dictionary. This way there is no + * risk that xz_dec_run() could run out of memory, since xz_dec_run() will + * never allocate any memory. Instead, if the preallocated dictionary is too + * small for decoding the given input stream, xz_dec_run() will return + * XZ_MEMLIMIT_ERROR. Thus, it is important to know what kind of data will be + * decoded to avoid allocating excessive amount of memory for the dictionary. + * + * Multi-call mode with dynamically allocated dictionary (XZ_DYNALLOC): + * dict_max specifies the maximum allowed dictionary size that xz_dec_run() + * may allocate once it has parsed the dictionary size from the stream + * headers. This way excessive allocations can be avoided while still + * limiting the maximum memory usage to a sane value to prevent running the + * system out of memory when decompressing streams from untrusted sources. + * + * On success, xz_dec_init() returns a pointer to struct xz_dec, which is + * ready to be used with xz_dec_run(). If memory allocation fails, + * xz_dec_init() returns NULL. + */ +XZ_EXTERN struct xz_dec * XZ_FUNC xz_dec_init( + enum xz_mode mode, uint32_t dict_max); + +/** + * xz_dec_run() - Run the XZ decoder + * @s: Decoder state allocated using xz_dec_init() + * @b: Input and output buffers + * + * The possible return values depend on build options and operation mode. + * See enum xz_ret for details. + * + * Note that if an error occurs in single-call mode (return value is not + * XZ_STREAM_END), b->in_pos and b->out_pos are not modified and the + * contents of the output buffer from b->out[b->out_pos] onward are + * undefined. This is true even after XZ_BUF_ERROR, because with some filter + * chains, there may be a second pass over the output buffer, and this pass + * cannot be properly done if the output buffer is truncated. Thus, you + * cannot give the single-call decoder a too small buffer and then expect to + * get that amount valid data from the beginning of the stream. You must use + * the multi-call decoder if you don't want to uncompress the whole stream. + */ +XZ_EXTERN enum xz_ret XZ_FUNC xz_dec_run(struct xz_dec *s, struct xz_buf *b); + +/** + * xz_dec_reset() - Reset an already allocated decoder state + * @s: Decoder state allocated using xz_dec_init() + * + * This function can be used to reset the multi-call decoder state without + * freeing and reallocating memory with xz_dec_end() and xz_dec_init(). + * + * In single-call mode, xz_dec_reset() is always called in the beginning of + * xz_dec_run(). Thus, explicit call to xz_dec_reset() is useful only in + * multi-call mode. + */ +XZ_EXTERN void XZ_FUNC xz_dec_reset(struct xz_dec *s); + +/** + * xz_dec_end() - Free the memory allocated for the decoder state + * @s: Decoder state allocated using xz_dec_init(). If s is NULL, + * this function does nothing. + */ +XZ_EXTERN void XZ_FUNC xz_dec_end(struct xz_dec *s); + +/* + * Standalone build (userspace build or in-kernel build for boot time use) + * needs a CRC32 implementation. For normal in-kernel use, kernel's own + * CRC32 module is used instead, and users of this module don't need to + * care about the functions below. + */ +#ifndef XZ_INTERNAL_CRC32 +# ifdef __KERNEL__ +# define XZ_INTERNAL_CRC32 0 +# else +# define XZ_INTERNAL_CRC32 1 +# endif +#endif + +#if XZ_INTERNAL_CRC32 +/* + * This must be called before any other xz_* function to initialize + * the CRC32 lookup table. + */ +XZ_EXTERN void XZ_FUNC xz_crc32_init(void); + +/* + * Update CRC32 value using the polynomial from IEEE-802.3. To start a new + * calculation, the third argument must be zero. To continue the calculation, + * the previously returned value is passed as the third argument. + */ +XZ_EXTERN uint32_t XZ_FUNC xz_crc32( + const uint8_t *buf, size_t size, uint32_t crc); +#endif + +#ifdef __cplusplus +} +#endif + +#endif diff --git a/busybox-1_37_0/archival/libarchive/unxz/xz_config.h b/busybox-1_37_0/archival/libarchive/unxz/xz_config.h new file mode 100644 index 000000000..187e1cbed --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unxz/xz_config.h @@ -0,0 +1,123 @@ +/* + * Private includes and definitions for userspace use of XZ Embedded + * + * Author: Lasse Collin + * + * This file has been put into the public domain. + * You can do whatever you want with this file. + */ + +#ifndef XZ_CONFIG_H +#define XZ_CONFIG_H + +/* Uncomment as needed to enable BCJ filter decoders. */ +/* #define XZ_DEC_X86 */ +/* #define XZ_DEC_POWERPC */ +/* #define XZ_DEC_IA64 */ +/* #define XZ_DEC_ARM */ +/* #define XZ_DEC_ARMTHUMB */ +/* #define XZ_DEC_SPARC */ + +#include +#include +#include + +#include "xz.h" + +#define kmalloc(size, flags) malloc(size) +#define kfree(ptr) free(ptr) +#define vmalloc(size) malloc(size) +#define vfree(ptr) free(ptr) + +#define memeq(a, b, size) (memcmp(a, b, size) == 0) +#define memzero(buf, size) memset(buf, 0, size) + +#undef min +#undef min_t +#define min(x, y) ((x) < (y) ? (x) : (y)) +#define min_t(type, x, y) min(x, y) + +/* + * Some functions have been marked with __always_inline to keep the + * performance reasonable even when the compiler is optimizing for + * small code size. You may be able to save a few bytes by #defining + * __always_inline to plain inline, but don't complain if the code + * becomes slow. + * + * NOTE: System headers on GNU/Linux may #define this macro already, + * so if you want to change it, you need to #undef it first. + */ +#ifndef __always_inline +# ifdef __GNUC__ +# define __always_inline \ + inline __attribute__((__always_inline__)) +# else +# define __always_inline inline +# endif +#endif + +/* + * Some functions are marked to never be inlined to reduce stack usage. + * If you don't care about stack usage, you may want to modify this so + * that noinline_for_stack is #defined to be empty even when using GCC. + * Doing so may save a few bytes in binary size. + */ +#ifndef noinline_for_stack +# ifdef __GNUC__ +# define noinline_for_stack __attribute__((__noinline__)) +# else +# define noinline_for_stack +# endif +#endif + +/* Inline functions to access unaligned unsigned 32-bit integers */ +#ifndef get_unaligned_le32 +static inline uint32_t XZ_FUNC get_unaligned_le32(const uint8_t *buf) +{ + return (uint32_t)buf[0] + | ((uint32_t)buf[1] << 8) + | ((uint32_t)buf[2] << 16) + | ((uint32_t)buf[3] << 24); +} +#endif + +#ifndef get_unaligned_be32 +static inline uint32_t XZ_FUNC get_unaligned_be32(const uint8_t *buf) +{ + return (uint32_t)(buf[0] << 24) + | ((uint32_t)buf[1] << 16) + | ((uint32_t)buf[2] << 8) + | (uint32_t)buf[3]; +} +#endif + +#ifndef put_unaligned_le32 +static inline void XZ_FUNC put_unaligned_le32(uint32_t val, uint8_t *buf) +{ + buf[0] = (uint8_t)val; + buf[1] = (uint8_t)(val >> 8); + buf[2] = (uint8_t)(val >> 16); + buf[3] = (uint8_t)(val >> 24); +} +#endif + +#ifndef put_unaligned_be32 +static inline void XZ_FUNC put_unaligned_be32(uint32_t val, uint8_t *buf) +{ + buf[0] = (uint8_t)(val >> 24); + buf[1] = (uint8_t)(val >> 16); + buf[2] = (uint8_t)(val >> 8); + buf[3] = (uint8_t)val; +} +#endif + +/* + * Use get_unaligned_le32() also for aligned access for simplicity. On + * little endian systems, #define get_le32(ptr) (*(const uint32_t *)(ptr)) + * could save a few bytes in code size. + */ +#ifndef get_le32 +# define get_le32 get_unaligned_le32 +#endif + +#endif diff --git a/busybox-1_37_0/archival/libarchive/unxz/xz_dec_bcj.c b/busybox-1_37_0/archival/libarchive/unxz/xz_dec_bcj.c new file mode 100644 index 000000000..e0f913a94 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unxz/xz_dec_bcj.c @@ -0,0 +1,580 @@ +/* + * Branch/Call/Jump (BCJ) filter decoders + * + * Authors: Lasse Collin + * Igor Pavlov + * + * This file has been put into the public domain. + * You can do whatever you want with this file. + */ + +#include "xz_private.h" + +/* + * The rest of the file is inside this ifdef. It makes things a little more + * convenient when building without support for any BCJ filters. + */ +#ifdef XZ_DEC_BCJ + +struct xz_dec_bcj { + /* Type of the BCJ filter being used */ + enum { + BCJ_X86 = 4, /* x86 or x86-64 */ + BCJ_POWERPC = 5, /* Big endian only */ + BCJ_IA64 = 6, /* Big or little endian */ + BCJ_ARM = 7, /* Little endian only */ + BCJ_ARMTHUMB = 8, /* Little endian only */ + BCJ_SPARC = 9 /* Big or little endian */ + } type; + + /* + * Return value of the next filter in the chain. We need to preserve + * this information across calls, because we must not call the next + * filter anymore once it has returned XZ_STREAM_END. + */ + enum xz_ret ret; + + /* True if we are operating in single-call mode. */ + bool single_call; + + /* + * Absolute position relative to the beginning of the uncompressed + * data (in a single .xz Block). We care only about the lowest 32 + * bits so this doesn't need to be uint64_t even with big files. + */ + uint32_t pos; + + /* x86 filter state */ + uint32_t x86_prev_mask; + + /* Temporary space to hold the variables from struct xz_buf */ + uint8_t *out; + size_t out_pos; + size_t out_size; + + struct { + /* Amount of already filtered data in the beginning of buf */ + size_t filtered; + + /* Total amount of data currently stored in buf */ + size_t size; + + /* + * Buffer to hold a mix of filtered and unfiltered data. This + * needs to be big enough to hold Alignment + 2 * Look-ahead: + * + * Type Alignment Look-ahead + * x86 1 4 + * PowerPC 4 0 + * IA-64 16 0 + * ARM 4 0 + * ARM-Thumb 2 2 + * SPARC 4 0 + */ + uint8_t buf[16]; + } temp; +}; + +#ifdef XZ_DEC_X86 +/* + * This is used to test the most significant byte of a memory address + * in an x86 instruction. + */ +static inline int bcj_x86_test_msbyte(uint8_t b) +{ + return b == 0x00 || b == 0xFF; +} + +static noinline_for_stack size_t XZ_FUNC bcj_x86( + struct xz_dec_bcj *s, uint8_t *buf, size_t size) +{ + static const bool mask_to_allowed_status[8] + = { true, true, true, false, true, false, false, false }; + + static const uint8_t mask_to_bit_num[8] = { 0, 1, 2, 2, 3, 3, 3, 3 }; + + size_t i; + size_t prev_pos = (size_t)-1; + uint32_t prev_mask = s->x86_prev_mask; + uint32_t src; + uint32_t dest; + uint32_t j; + uint8_t b; + + if (size <= 4) + return 0; + + size -= 4; + for (i = 0; i < size; ++i) { + if ((buf[i] & 0xFE) != 0xE8) + continue; + + prev_pos = i - prev_pos; + if (prev_pos > 3) { + prev_mask = 0; + } else { + prev_mask = (prev_mask << (prev_pos - 1)) & 7; + if (prev_mask != 0) { + b = buf[i + 4 - mask_to_bit_num[prev_mask]]; + if (!mask_to_allowed_status[prev_mask] + || bcj_x86_test_msbyte(b)) { + prev_pos = i; + prev_mask = (prev_mask << 1) | 1; + continue; + } + } + } + + prev_pos = i; + + if (bcj_x86_test_msbyte(buf[i + 4])) { + src = get_unaligned_le32(buf + i + 1); + while (true) { + dest = src - (s->pos + (uint32_t)i + 5); + if (prev_mask == 0) + break; + + j = mask_to_bit_num[prev_mask] * 8; + b = (uint8_t)(dest >> (24 - j)); + if (!bcj_x86_test_msbyte(b)) + break; + + src = dest ^ (((uint32_t)1 << (32 - j)) - 1); + } + + dest &= 0x01FFFFFF; + dest |= (uint32_t)0 - (dest & 0x01000000); + put_unaligned_le32(dest, buf + i + 1); + i += 4; + } else { + prev_mask = (prev_mask << 1) | 1; + } + } + + prev_pos = i - prev_pos; + s->x86_prev_mask = prev_pos > 3 ? 0 : prev_mask << (prev_pos - 1); + return i; +} +#endif + +#ifdef XZ_DEC_POWERPC +static noinline_for_stack size_t XZ_FUNC bcj_powerpc( + struct xz_dec_bcj *s, uint8_t *buf, size_t size) +{ + size_t i; + uint32_t instr; + + for (i = 0; i + 4 <= size; i += 4) { + instr = get_unaligned_be32(buf + i); + if ((instr & 0xFC000003) == 0x48000001) { + instr &= 0x03FFFFFC; + instr -= s->pos + (uint32_t)i; + instr &= 0x03FFFFFC; + instr |= 0x48000001; + put_unaligned_be32(instr, buf + i); + } + } + + return i; +} +#endif + +#ifdef XZ_DEC_IA64 +static noinline_for_stack size_t XZ_FUNC bcj_ia64( + struct xz_dec_bcj *s, uint8_t *buf, size_t size) +{ + static const uint8_t branch_table[32] = { + 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, + 4, 4, 6, 6, 0, 0, 7, 7, + 4, 4, 0, 0, 4, 4, 0, 0 + }; + + /* + * The local variables take a little bit stack space, but it's less + * than what LZMA2 decoder takes, so it doesn't make sense to reduce + * stack usage here without doing that for the LZMA2 decoder too. + */ + + /* Loop counters */ + size_t i; + size_t j; + + /* Instruction slot (0, 1, or 2) in the 128-bit instruction word */ + uint32_t slot; + + /* Bitwise offset of the instruction indicated by slot */ + uint32_t bit_pos; + + /* bit_pos split into byte and bit parts */ + uint32_t byte_pos; + uint32_t bit_res; + + /* Address part of an instruction */ + uint32_t addr; + + /* Mask used to detect which instructions to convert */ + uint32_t mask; + + /* 41-bit instruction stored somewhere in the lowest 48 bits */ + uint64_t instr; + + /* Instruction normalized with bit_res for easier manipulation */ + uint64_t norm; + + for (i = 0; i + 16 <= size; i += 16) { + mask = branch_table[buf[i] & 0x1F]; + for (slot = 0, bit_pos = 5; slot < 3; ++slot, bit_pos += 41) { + if (((mask >> slot) & 1) == 0) + continue; + + byte_pos = bit_pos >> 3; + bit_res = bit_pos & 7; + instr = 0; + for (j = 0; j < 6; ++j) + instr |= (uint64_t)(buf[i + j + byte_pos]) + << (8 * j); + + norm = instr >> bit_res; + + if (((norm >> 37) & 0x0F) == 0x05 + && ((norm >> 9) & 0x07) == 0) { + addr = (norm >> 13) & 0x0FFFFF; + addr |= ((uint32_t)(norm >> 36) & 1) << 20; + addr <<= 4; + addr -= s->pos + (uint32_t)i; + addr >>= 4; + + norm &= ~((uint64_t)0x8FFFFF << 13); + norm |= (uint64_t)(addr & 0x0FFFFF) << 13; + norm |= (uint64_t)(addr & 0x100000) + << (36 - 20); + + instr &= (1 << bit_res) - 1; + instr |= norm << bit_res; + + for (j = 0; j < 6; j++) + buf[i + j + byte_pos] + = (uint8_t)(instr >> (8 * j)); + } + } + } + + return i; +} +#endif + +#ifdef XZ_DEC_ARM +static noinline_for_stack size_t XZ_FUNC bcj_arm( + struct xz_dec_bcj *s, uint8_t *buf, size_t size) +{ + size_t i; + uint32_t addr; + + for (i = 0; i + 4 <= size; i += 4) { + if (buf[i + 3] == 0xEB) { + addr = (uint32_t)buf[i] | ((uint32_t)buf[i + 1] << 8) + | ((uint32_t)buf[i + 2] << 16); + addr <<= 2; + addr -= s->pos + (uint32_t)i + 8; + addr >>= 2; + buf[i] = (uint8_t)addr; + buf[i + 1] = (uint8_t)(addr >> 8); + buf[i + 2] = (uint8_t)(addr >> 16); + } + } + + return i; +} +#endif + +#ifdef XZ_DEC_ARMTHUMB +static noinline_for_stack size_t XZ_FUNC bcj_armthumb( + struct xz_dec_bcj *s, uint8_t *buf, size_t size) +{ + size_t i; + uint32_t addr; + + for (i = 0; i + 4 <= size; i += 2) { + if ((buf[i + 1] & 0xF8) == 0xF0 + && (buf[i + 3] & 0xF8) == 0xF8) { + addr = (((uint32_t)buf[i + 1] & 0x07) << 19) + | ((uint32_t)buf[i] << 11) + | (((uint32_t)buf[i + 3] & 0x07) << 8) + | (uint32_t)buf[i + 2]; + addr <<= 1; + addr -= s->pos + (uint32_t)i + 4; + addr >>= 1; + buf[i + 1] = (uint8_t)(0xF0 | ((addr >> 19) & 0x07)); + buf[i] = (uint8_t)(addr >> 11); + buf[i + 3] = (uint8_t)(0xF8 | ((addr >> 8) & 0x07)); + buf[i + 2] = (uint8_t)addr; + i += 2; + } + } + + return i; +} +#endif + +#ifdef XZ_DEC_SPARC +static noinline_for_stack size_t XZ_FUNC bcj_sparc( + struct xz_dec_bcj *s, uint8_t *buf, size_t size) +{ + size_t i; + uint32_t instr; + + for (i = 0; i + 4 <= size; i += 4) { + instr = get_unaligned_be32(buf + i); + if ((instr >> 22) == 0x100 || (instr >> 22) == 0x1FF) { + instr <<= 2; + instr -= s->pos + (uint32_t)i; + instr >>= 2; + instr = ((uint32_t)0x40000000 - (instr & 0x400000)) + | 0x40000000 | (instr & 0x3FFFFF); + put_unaligned_be32(instr, buf + i); + } + } + + return i; +} +#endif + +/* + * Apply the selected BCJ filter. Update *pos and s->pos to match the amount + * of data that got filtered. + * + * NOTE: This is implemented as a switch statement to avoid using function + * pointers, which could be problematic in the kernel boot code, which must + * avoid pointers to static data (at least on x86). + */ +static void XZ_FUNC bcj_apply(struct xz_dec_bcj *s, + uint8_t *buf, size_t *pos, size_t size) +{ + size_t filtered; + + buf += *pos; + size -= *pos; + + switch (s->type) { +#ifdef XZ_DEC_X86 + case BCJ_X86: + filtered = bcj_x86(s, buf, size); + break; +#endif +#ifdef XZ_DEC_POWERPC + case BCJ_POWERPC: + filtered = bcj_powerpc(s, buf, size); + break; +#endif +#ifdef XZ_DEC_IA64 + case BCJ_IA64: + filtered = bcj_ia64(s, buf, size); + break; +#endif +#ifdef XZ_DEC_ARM + case BCJ_ARM: + filtered = bcj_arm(s, buf, size); + break; +#endif +#ifdef XZ_DEC_ARMTHUMB + case BCJ_ARMTHUMB: + filtered = bcj_armthumb(s, buf, size); + break; +#endif +#ifdef XZ_DEC_SPARC + case BCJ_SPARC: + filtered = bcj_sparc(s, buf, size); + break; +#endif + default: + /* Never reached but silence compiler warnings. */ + filtered = 0; + break; + } + + *pos += filtered; + s->pos += filtered; +} + +/* + * Flush pending filtered data from temp to the output buffer. + * Move the remaining mixture of possibly filtered and unfiltered + * data to the beginning of temp. + */ +static void XZ_FUNC bcj_flush(struct xz_dec_bcj *s, struct xz_buf *b) +{ + size_t copy_size; + + copy_size = min_t(size_t, s->temp.filtered, b->out_size - b->out_pos); + memcpy(b->out + b->out_pos, s->temp.buf, copy_size); + b->out_pos += copy_size; + + s->temp.filtered -= copy_size; + s->temp.size -= copy_size; + memmove(s->temp.buf, s->temp.buf + copy_size, s->temp.size); +} + +/* + * The BCJ filter functions are primitive in sense that they process the + * data in chunks of 1-16 bytes. To hide this issue, this function does + * some buffering. + */ +XZ_EXTERN enum xz_ret XZ_FUNC xz_dec_bcj_run(struct xz_dec_bcj *s, + struct xz_dec_lzma2 *lzma2, struct xz_buf *b) +{ + size_t out_start; + + /* + * Flush pending already filtered data to the output buffer. Return + * immediatelly if we couldn't flush everything, or if the next + * filter in the chain had already returned XZ_STREAM_END. + */ + if (s->temp.filtered > 0) { + bcj_flush(s, b); + if (s->temp.filtered > 0) + return XZ_OK; + + if (s->ret == XZ_STREAM_END) + return XZ_STREAM_END; + } + + /* + * If we have more output space than what is currently pending in + * temp, copy the unfiltered data from temp to the output buffer + * and try to fill the output buffer by decoding more data from the + * next filter in the chain. Apply the BCJ filter on the new data + * in the output buffer. If everything cannot be filtered, copy it + * to temp and rewind the output buffer position accordingly. + * + * This needs to be always run when temp.size == 0 to handle a special + * case where the output buffer is full and the next filter has no + * more output coming but hasn't returned XZ_STREAM_END yet. + */ + if (s->temp.size < b->out_size - b->out_pos || s->temp.size == 0) { + out_start = b->out_pos; + memcpy(b->out + b->out_pos, s->temp.buf, s->temp.size); + b->out_pos += s->temp.size; + + s->ret = xz_dec_lzma2_run(lzma2, b); + if (s->ret != XZ_STREAM_END + && (s->ret != XZ_OK || s->single_call)) + return s->ret; + + bcj_apply(s, b->out, &out_start, b->out_pos); + + /* + * As an exception, if the next filter returned XZ_STREAM_END, + * we can do that too, since the last few bytes that remain + * unfiltered are meant to remain unfiltered. + */ + if (s->ret == XZ_STREAM_END) + return XZ_STREAM_END; + + s->temp.size = b->out_pos - out_start; + b->out_pos -= s->temp.size; + memcpy(s->temp.buf, b->out + b->out_pos, s->temp.size); + + /* + * If there wasn't enough input to the next filter to fill + * the output buffer with unfiltered data, there's no point + * to try decoding more data to temp. + */ + if (b->out_pos + s->temp.size < b->out_size) + return XZ_OK; + } + + /* + * We have unfiltered data in temp. If the output buffer isn't full + * yet, try to fill the temp buffer by decoding more data from the + * next filter. Apply the BCJ filter on temp. Then we hopefully can + * fill the actual output buffer by copying filtered data from temp. + * A mix of filtered and unfiltered data may be left in temp; it will + * be taken care on the next call to this function. + */ + if (b->out_pos < b->out_size) { + /* Make b->out{,_pos,_size} temporarily point to s->temp. */ + s->out = b->out; + s->out_pos = b->out_pos; + s->out_size = b->out_size; + b->out = s->temp.buf; + b->out_pos = s->temp.size; + b->out_size = sizeof(s->temp.buf); + + s->ret = xz_dec_lzma2_run(lzma2, b); + + s->temp.size = b->out_pos; + b->out = s->out; + b->out_pos = s->out_pos; + b->out_size = s->out_size; + + if (s->ret != XZ_OK && s->ret != XZ_STREAM_END) + return s->ret; + + bcj_apply(s, s->temp.buf, &s->temp.filtered, s->temp.size); + + /* + * If the next filter returned XZ_STREAM_END, we mark that + * everything is filtered, since the last unfiltered bytes + * of the stream are meant to be left as is. + */ + if (s->ret == XZ_STREAM_END) + s->temp.filtered = s->temp.size; + + bcj_flush(s, b); + if (s->temp.filtered > 0) + return XZ_OK; + } + + return s->ret; +} + +XZ_EXTERN struct xz_dec_bcj * XZ_FUNC xz_dec_bcj_create(bool single_call) +{ + struct xz_dec_bcj *s = kmalloc(sizeof(*s), GFP_KERNEL); + if (s != NULL) + s->single_call = single_call; + + return s; +} + +XZ_EXTERN enum xz_ret XZ_FUNC xz_dec_bcj_reset( + struct xz_dec_bcj *s, uint8_t id) +{ + switch (id) { +#ifdef XZ_DEC_X86 + case BCJ_X86: +#endif +#ifdef XZ_DEC_POWERPC + case BCJ_POWERPC: +#endif +#ifdef XZ_DEC_IA64 + case BCJ_IA64: +#endif +#ifdef XZ_DEC_ARM + case BCJ_ARM: +#endif +#ifdef XZ_DEC_ARMTHUMB + case BCJ_ARMTHUMB: +#endif +#ifdef XZ_DEC_SPARC + case BCJ_SPARC: +#endif + break; + + default: + /* Unsupported Filter ID */ + return XZ_OPTIONS_ERROR; + } + + s->type = id; + s->ret = XZ_OK; + s->pos = 0; + s->x86_prev_mask = 0; + s->temp.filtered = 0; + s->temp.size = 0; + + return XZ_OK; +} + +#endif diff --git a/busybox-1_37_0/archival/libarchive/unxz/xz_dec_lzma2.c b/busybox-1_37_0/archival/libarchive/unxz/xz_dec_lzma2.c new file mode 100644 index 000000000..bca41e705 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unxz/xz_dec_lzma2.c @@ -0,0 +1,1171 @@ +/* + * LZMA2 decoder + * + * Authors: Lasse Collin + * Igor Pavlov + * + * This file has been put into the public domain. + * You can do whatever you want with this file. + */ + +#include "xz_private.h" +#include "xz_lzma2.h" + +/* + * Range decoder initialization eats the first five bytes of each LZMA chunk. + */ +#define RC_INIT_BYTES 5 + +/* + * Minimum number of usable input buffer to safely decode one LZMA symbol. + * The worst case is that we decode 22 bits using probabilities and 26 + * direct bits. This may decode at maximum of 20 bytes of input. However, + * lzma_main() does an extra normalization before returning, thus we + * need to put 21 here. + */ +#define LZMA_IN_REQUIRED 21 + +/* + * Dictionary (history buffer) + * + * These are always true: + * start <= pos <= full <= end + * pos <= limit <= end + * + * In multi-call mode, also these are true: + * end == size + * size <= size_max + * allocated <= size + * + * Most of these variables are size_t to support single-call mode, + * in which the dictionary variables address the actual output + * buffer directly. + */ +struct dictionary { + /* Beginning of the history buffer */ + uint8_t *buf; + + /* Old position in buf (before decoding more data) */ + size_t start; + + /* Position in buf */ + size_t pos; + + /* + * How full dictionary is. This is used to detect corrupt input that + * would read beyond the beginning of the uncompressed stream. + */ + size_t full; + + /* Write limit; we don't write to buf[limit] or later bytes. */ + size_t limit; + + /* + * End of the dictionary buffer. In multi-call mode, this is + * the same as the dictionary size. In single-call mode, this + * indicates the size of the output buffer. + */ + size_t end; + + /* + * Size of the dictionary as specified in Block Header. This is used + * together with "full" to detect corrupt input that would make us + * read beyond the beginning of the uncompressed stream. + */ + uint32_t size; + + /* + * Maximum allowed dictionary size in multi-call mode. + * This is ignored in single-call mode. + */ + uint32_t size_max; + + /* + * Amount of memory currently allocated for the dictionary. + * This is used only with XZ_DYNALLOC. (With XZ_PREALLOC, + * size_max is always the same as the allocated size.) + */ + uint32_t allocated; + + /* Operation mode */ + enum xz_mode mode; +}; + +/* Range decoder */ +struct rc_dec { + uint32_t range; + uint32_t code; + + /* + * Number of initializing bytes remaining to be read + * by rc_read_init(). + */ + uint32_t init_bytes_left; + + /* + * Buffer from which we read our input. It can be either + * temp.buf or the caller-provided input buffer. + */ + const uint8_t *in; + size_t in_pos; + size_t in_limit; +}; + +/* Probabilities for a length decoder. */ +struct lzma_len_dec { + /* Probability of match length being at least 10 */ + uint16_t choice; + + /* Probability of match length being at least 18 */ + uint16_t choice2; + + /* Probabilities for match lengths 2-9 */ + uint16_t low[POS_STATES_MAX][LEN_LOW_SYMBOLS]; + + /* Probabilities for match lengths 10-17 */ + uint16_t mid[POS_STATES_MAX][LEN_MID_SYMBOLS]; + + /* Probabilities for match lengths 18-273 */ + uint16_t high[LEN_HIGH_SYMBOLS]; +}; + +struct lzma_dec { + /* Distances of latest four matches */ + uint32_t rep0; + uint32_t rep1; + uint32_t rep2; + uint32_t rep3; + + /* Types of the most recently seen LZMA symbols */ + enum lzma_state state; + + /* + * Length of a match. This is updated so that dict_repeat can + * be called again to finish repeating the whole match. + */ + uint32_t len; + + /* + * LZMA properties or related bit masks (number of literal + * context bits, a mask dervied from the number of literal + * position bits, and a mask dervied from the number + * position bits) + */ + uint32_t lc; + uint32_t literal_pos_mask; /* (1 << lp) - 1 */ + uint32_t pos_mask; /* (1 << pb) - 1 */ + + /* If 1, it's a match. Otherwise it's a single 8-bit literal. */ + uint16_t is_match[STATES][POS_STATES_MAX]; + + /* If 1, it's a repeated match. The distance is one of rep0 .. rep3. */ + uint16_t is_rep[STATES]; + + /* + * If 0, distance of a repeated match is rep0. + * Otherwise check is_rep1. + */ + uint16_t is_rep0[STATES]; + + /* + * If 0, distance of a repeated match is rep1. + * Otherwise check is_rep2. + */ + uint16_t is_rep1[STATES]; + + /* If 0, distance of a repeated match is rep2. Otherwise it is rep3. */ + uint16_t is_rep2[STATES]; + + /* + * If 1, the repeated match has length of one byte. Otherwise + * the length is decoded from rep_len_decoder. + */ + uint16_t is_rep0_long[STATES][POS_STATES_MAX]; + + /* + * Probability tree for the highest two bits of the match + * distance. There is a separate probability tree for match + * lengths of 2 (i.e. MATCH_LEN_MIN), 3, 4, and [5, 273]. + */ + uint16_t dist_slot[DIST_STATES][DIST_SLOTS]; + + /* + * Probility trees for additional bits for match distance + * when the distance is in the range [4, 127]. + */ + uint16_t dist_special[FULL_DISTANCES - DIST_MODEL_END]; + + /* + * Probability tree for the lowest four bits of a match + * distance that is equal to or greater than 128. + */ + uint16_t dist_align[ALIGN_SIZE]; + + /* Length of a normal match */ + struct lzma_len_dec match_len_dec; + + /* Length of a repeated match */ + struct lzma_len_dec rep_len_dec; + + /* Probabilities of literals */ + uint16_t literal[LITERAL_CODERS_MAX][LITERAL_CODER_SIZE]; +}; + +struct lzma2_dec { + /* Position in xz_dec_lzma2_run(). */ + enum lzma2_seq { + SEQ_CONTROL, + SEQ_UNCOMPRESSED_1, + SEQ_UNCOMPRESSED_2, + SEQ_COMPRESSED_0, + SEQ_COMPRESSED_1, + SEQ_PROPERTIES, + SEQ_LZMA_PREPARE, + SEQ_LZMA_RUN, + SEQ_COPY + } sequence; + + /* Next position after decoding the compressed size of the chunk. */ + enum lzma2_seq next_sequence; + + /* Uncompressed size of LZMA chunk (2 MiB at maximum) */ + uint32_t uncompressed; + + /* + * Compressed size of LZMA chunk or compressed/uncompressed + * size of uncompressed chunk (64 KiB at maximum) + */ + uint32_t compressed; + + /* + * True if dictionary reset is needed. This is false before + * the first chunk (LZMA or uncompressed). + */ + bool need_dict_reset; + + /* + * True if new LZMA properties are needed. This is false + * before the first LZMA chunk. + */ + bool need_props; +}; + +struct xz_dec_lzma2 { + /* + * The order below is important on x86 to reduce code size and + * it shouldn't hurt on other platforms. Everything up to and + * including lzma.pos_mask are in the first 128 bytes on x86-32, + * which allows using smaller instructions to access those + * variables. On x86-64, fewer variables fit into the first 128 + * bytes, but this is still the best order without sacrificing + * the readability by splitting the structures. + */ + struct rc_dec rc; + struct dictionary dict; + struct lzma2_dec lzma2; + struct lzma_dec lzma; + + /* + * Temporary buffer which holds small number of input bytes between + * decoder calls. See lzma2_lzma() for details. + */ + struct { + uint32_t size; + uint8_t buf[3 * LZMA_IN_REQUIRED]; + } temp; +}; + +/************** + * Dictionary * + **************/ + +/* + * Reset the dictionary state. When in single-call mode, set up the beginning + * of the dictionary to point to the actual output buffer. + */ +static void XZ_FUNC dict_reset(struct dictionary *dict, struct xz_buf *b) +{ + if (DEC_IS_SINGLE(dict->mode)) { + dict->buf = b->out + b->out_pos; + dict->end = b->out_size - b->out_pos; + } + + dict->start = 0; + dict->pos = 0; + dict->limit = 0; + dict->full = 0; +} + +/* Set dictionary write limit */ +static void XZ_FUNC dict_limit(struct dictionary *dict, size_t out_max) +{ + if (dict->end - dict->pos <= out_max) + dict->limit = dict->end; + else + dict->limit = dict->pos + out_max; +} + +/* Return true if at least one byte can be written into the dictionary. */ +static __always_inline bool XZ_FUNC dict_has_space(const struct dictionary *dict) +{ + return dict->pos < dict->limit; +} + +/* + * Get a byte from the dictionary at the given distance. The distance is + * assumed to valid, or as a special case, zero when the dictionary is + * still empty. This special case is needed for single-call decoding to + * avoid writing a '\0' to the end of the destination buffer. + */ +static __always_inline uint32_t XZ_FUNC dict_get( + const struct dictionary *dict, uint32_t dist) +{ + size_t offset = dict->pos - dist - 1; + + if (dist >= dict->pos) + offset += dict->end; + + return dict->full > 0 ? dict->buf[offset] : 0; +} + +/* + * Put one byte into the dictionary. It is assumed that there is space for it. + */ +static inline void XZ_FUNC dict_put(struct dictionary *dict, uint8_t byte) +{ + dict->buf[dict->pos++] = byte; + + if (dict->full < dict->pos) + dict->full = dict->pos; +} + +/* + * Repeat given number of bytes from the given distance. If the distance is + * invalid, false is returned. On success, true is returned and *len is + * updated to indicate how many bytes were left to be repeated. + */ +static bool XZ_FUNC dict_repeat( + struct dictionary *dict, uint32_t *len, uint32_t dist) +{ + size_t back; + uint32_t left; + + if (dist >= dict->full || dist >= dict->size) + return false; + + left = min_t(size_t, dict->limit - dict->pos, *len); + *len -= left; + + back = dict->pos - dist - 1; + if (dist >= dict->pos) + back += dict->end; + + do { + dict->buf[dict->pos++] = dict->buf[back++]; + if (back == dict->end) + back = 0; + } while (--left > 0); + + if (dict->full < dict->pos) + dict->full = dict->pos; + + return true; +} + +/* Copy uncompressed data as is from input to dictionary and output buffers. */ +static void XZ_FUNC dict_uncompressed( + struct dictionary *dict, struct xz_buf *b, uint32_t *left) +{ + size_t copy_size; + + while (*left > 0 && b->in_pos < b->in_size + && b->out_pos < b->out_size) { + copy_size = min(b->in_size - b->in_pos, + b->out_size - b->out_pos); + if (copy_size > dict->end - dict->pos) + copy_size = dict->end - dict->pos; + if (copy_size > *left) + copy_size = *left; + + *left -= copy_size; + + memcpy(dict->buf + dict->pos, b->in + b->in_pos, copy_size); + dict->pos += copy_size; + + if (dict->full < dict->pos) + dict->full = dict->pos; + + if (DEC_IS_MULTI(dict->mode)) { + if (dict->pos == dict->end) + dict->pos = 0; + + memcpy(b->out + b->out_pos, b->in + b->in_pos, + copy_size); + } + + dict->start = dict->pos; + + b->out_pos += copy_size; + b->in_pos += copy_size; + } +} + +/* + * Flush pending data from dictionary to b->out. It is assumed that there is + * enough space in b->out. This is guaranteed because caller uses dict_limit() + * before decoding data into the dictionary. + */ +static uint32_t XZ_FUNC dict_flush(struct dictionary *dict, struct xz_buf *b) +{ + size_t copy_size = dict->pos - dict->start; + + if (DEC_IS_MULTI(dict->mode)) { + if (dict->pos == dict->end) + dict->pos = 0; + + memcpy(b->out + b->out_pos, dict->buf + dict->start, + copy_size); + } + + dict->start = dict->pos; + b->out_pos += copy_size; + return copy_size; +} + +/***************** + * Range decoder * + *****************/ + +/* Reset the range decoder. */ +static void XZ_FUNC rc_reset(struct rc_dec *rc) +{ + rc->range = (uint32_t)-1; + rc->code = 0; + rc->init_bytes_left = RC_INIT_BYTES; +} + +/* + * Read the first five initial bytes into rc->code if they haven't been + * read already. (Yes, the first byte gets completely ignored.) + */ +static bool XZ_FUNC rc_read_init(struct rc_dec *rc, struct xz_buf *b) +{ + while (rc->init_bytes_left > 0) { + if (b->in_pos == b->in_size) + return false; + + rc->code = (rc->code << 8) + b->in[b->in_pos++]; + --rc->init_bytes_left; + } + + return true; +} + +/* Return true if there may not be enough input for the next decoding loop. */ +static inline bool XZ_FUNC rc_limit_exceeded(const struct rc_dec *rc) +{ + return rc->in_pos > rc->in_limit; +} + +/* + * Return true if it is possible (from point of view of range decoder) that + * we have reached the end of the LZMA chunk. + */ +static inline bool XZ_FUNC rc_is_finished(const struct rc_dec *rc) +{ + return rc->code == 0; +} + +/* Read the next input byte if needed. */ +static __always_inline void XZ_FUNC rc_normalize(struct rc_dec *rc) +{ + if (rc->range < RC_TOP_VALUE) { + rc->range <<= RC_SHIFT_BITS; + rc->code = (rc->code << RC_SHIFT_BITS) + rc->in[rc->in_pos++]; + } +} + +/* + * Decode one bit. In some versions, this function has been split in three + * functions so that the compiler is supposed to be able to more easily avoid + * an extra branch. In this particular version of the LZMA decoder, this + * doesn't seem to be a good idea (tested with GCC 3.3.6, 3.4.6, and 4.3.3 + * on x86). Using a non-split version results in nicer looking code too. + * + * NOTE: This must return an int. Do not make it return a bool or the speed + * of the code generated by GCC 3.x decreases 10-15 %. (GCC 4.3 doesn't care, + * and it generates 10-20 % faster code than GCC 3.x from this file anyway.) + */ +static __always_inline int XZ_FUNC rc_bit(struct rc_dec *rc, uint16_t *prob) +{ + uint32_t bound; + int bit; + + rc_normalize(rc); + bound = (rc->range >> RC_BIT_MODEL_TOTAL_BITS) * *prob; + if (rc->code < bound) { + rc->range = bound; + *prob += (RC_BIT_MODEL_TOTAL - *prob) >> RC_MOVE_BITS; + bit = 0; + } else { + rc->range -= bound; + rc->code -= bound; + *prob -= *prob >> RC_MOVE_BITS; + bit = 1; + } + + return bit; +} + +/* Decode a bittree starting from the most significant bit. */ +static __always_inline uint32_t XZ_FUNC rc_bittree( + struct rc_dec *rc, uint16_t *probs, uint32_t limit) +{ + uint32_t symbol = 1; + + do { + if (rc_bit(rc, &probs[symbol])) + symbol = (symbol << 1) + 1; + else + symbol <<= 1; + } while (symbol < limit); + + return symbol; +} + +/* Decode a bittree starting from the least significant bit. */ +static __always_inline void XZ_FUNC rc_bittree_reverse(struct rc_dec *rc, + uint16_t *probs, uint32_t *dest, uint32_t limit) +{ + uint32_t symbol = 1; + uint32_t i = 0; + + do { + if (rc_bit(rc, &probs[symbol])) { + symbol = (symbol << 1) + 1; + *dest += 1 << i; + } else { + symbol <<= 1; + } + } while (++i < limit); +} + +/* Decode direct bits (fixed fifty-fifty probability) */ +static inline void XZ_FUNC rc_direct( + struct rc_dec *rc, uint32_t *dest, uint32_t limit) +{ + uint32_t mask; + + do { + rc_normalize(rc); + rc->range >>= 1; + rc->code -= rc->range; + mask = (uint32_t)0 - (rc->code >> 31); + rc->code += rc->range & mask; + *dest = (*dest << 1) + (mask + 1); + } while (--limit > 0); +} + +/******** + * LZMA * + ********/ + +/* Get pointer to literal coder probability array. */ +static uint16_t * XZ_FUNC lzma_literal_probs(struct xz_dec_lzma2 *s) +{ + uint32_t prev_byte = dict_get(&s->dict, 0); + uint32_t low = prev_byte >> (8 - s->lzma.lc); + uint32_t high = (s->dict.pos & s->lzma.literal_pos_mask) << s->lzma.lc; + return s->lzma.literal[low + high]; +} + +/* Decode a literal (one 8-bit byte) */ +static void XZ_FUNC lzma_literal(struct xz_dec_lzma2 *s) +{ + uint16_t *probs; + uint32_t symbol; + uint32_t match_byte; + uint32_t match_bit; + uint32_t offset; + uint32_t i; + + probs = lzma_literal_probs(s); + + if (lzma_state_is_literal(s->lzma.state)) { + symbol = rc_bittree(&s->rc, probs, 0x100); + } else { + symbol = 1; + match_byte = dict_get(&s->dict, s->lzma.rep0) << 1; + offset = 0x100; + + do { + match_bit = match_byte & offset; + match_byte <<= 1; + i = offset + match_bit + symbol; + + if (rc_bit(&s->rc, &probs[i])) { + symbol = (symbol << 1) + 1; + offset &= match_bit; + } else { + symbol <<= 1; + offset &= ~match_bit; + } + } while (symbol < 0x100); + } + + dict_put(&s->dict, (uint8_t)symbol); + lzma_state_literal(&s->lzma.state); +} + +/* Decode the length of the match into s->lzma.len. */ +static void XZ_FUNC lzma_len(struct xz_dec_lzma2 *s, struct lzma_len_dec *l, + uint32_t pos_state) +{ + uint16_t *probs; + uint32_t limit; + + if (!rc_bit(&s->rc, &l->choice)) { + probs = l->low[pos_state]; + limit = LEN_LOW_SYMBOLS; + s->lzma.len = MATCH_LEN_MIN; + } else { + if (!rc_bit(&s->rc, &l->choice2)) { + probs = l->mid[pos_state]; + limit = LEN_MID_SYMBOLS; + s->lzma.len = MATCH_LEN_MIN + LEN_LOW_SYMBOLS; + } else { + probs = l->high; + limit = LEN_HIGH_SYMBOLS; + s->lzma.len = MATCH_LEN_MIN + LEN_LOW_SYMBOLS + + LEN_MID_SYMBOLS; + } + } + + s->lzma.len += rc_bittree(&s->rc, probs, limit) - limit; +} + +/* Decode a match. The distance will be stored in s->lzma.rep0. */ +static void XZ_FUNC lzma_match(struct xz_dec_lzma2 *s, uint32_t pos_state) +{ + uint16_t *probs; + uint32_t dist_slot; + uint32_t limit; + + lzma_state_match(&s->lzma.state); + + s->lzma.rep3 = s->lzma.rep2; + s->lzma.rep2 = s->lzma.rep1; + s->lzma.rep1 = s->lzma.rep0; + + lzma_len(s, &s->lzma.match_len_dec, pos_state); + + probs = s->lzma.dist_slot[lzma_get_dist_state(s->lzma.len)]; + dist_slot = rc_bittree(&s->rc, probs, DIST_SLOTS) - DIST_SLOTS; + + if (dist_slot < DIST_MODEL_START) { + s->lzma.rep0 = dist_slot; + } else { + limit = (dist_slot >> 1) - 1; + s->lzma.rep0 = 2 + (dist_slot & 1); + + if (dist_slot < DIST_MODEL_END) { + s->lzma.rep0 <<= limit; + probs = s->lzma.dist_special + s->lzma.rep0 + - dist_slot - 1; + rc_bittree_reverse(&s->rc, probs, + &s->lzma.rep0, limit); + } else { + rc_direct(&s->rc, &s->lzma.rep0, limit - ALIGN_BITS); + s->lzma.rep0 <<= ALIGN_BITS; + rc_bittree_reverse(&s->rc, s->lzma.dist_align, + &s->lzma.rep0, ALIGN_BITS); + } + } +} + +/* + * Decode a repeated match. The distance is one of the four most recently + * seen matches. The distance will be stored in s->lzma.rep0. + */ +static void XZ_FUNC lzma_rep_match(struct xz_dec_lzma2 *s, uint32_t pos_state) +{ + uint32_t tmp; + + if (!rc_bit(&s->rc, &s->lzma.is_rep0[s->lzma.state])) { + if (!rc_bit(&s->rc, &s->lzma.is_rep0_long[ + s->lzma.state][pos_state])) { + lzma_state_short_rep(&s->lzma.state); + s->lzma.len = 1; + return; + } + } else { + if (!rc_bit(&s->rc, &s->lzma.is_rep1[s->lzma.state])) { + tmp = s->lzma.rep1; + } else { + if (!rc_bit(&s->rc, &s->lzma.is_rep2[s->lzma.state])) { + tmp = s->lzma.rep2; + } else { + tmp = s->lzma.rep3; + s->lzma.rep3 = s->lzma.rep2; + } + + s->lzma.rep2 = s->lzma.rep1; + } + + s->lzma.rep1 = s->lzma.rep0; + s->lzma.rep0 = tmp; + } + + lzma_state_long_rep(&s->lzma.state); + lzma_len(s, &s->lzma.rep_len_dec, pos_state); +} + +/* LZMA decoder core */ +static bool XZ_FUNC lzma_main(struct xz_dec_lzma2 *s) +{ + uint32_t pos_state; + + /* + * If the dictionary was reached during the previous call, try to + * finish the possibly pending repeat in the dictionary. + */ + if (dict_has_space(&s->dict) && s->lzma.len > 0) + dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0); + + /* + * Decode more LZMA symbols. One iteration may consume up to + * LZMA_IN_REQUIRED - 1 bytes. + */ + while (dict_has_space(&s->dict) && !rc_limit_exceeded(&s->rc)) { + pos_state = s->dict.pos & s->lzma.pos_mask; + + if (!rc_bit(&s->rc, &s->lzma.is_match[ + s->lzma.state][pos_state])) { + lzma_literal(s); + } else { + if (rc_bit(&s->rc, &s->lzma.is_rep[s->lzma.state])) + lzma_rep_match(s, pos_state); + else + lzma_match(s, pos_state); + + if (!dict_repeat(&s->dict, &s->lzma.len, s->lzma.rep0)) + return false; + } + } + + /* + * Having the range decoder always normalized when we are outside + * this function makes it easier to correctly handle end of the chunk. + */ + rc_normalize(&s->rc); + + return true; +} + +/* + * Reset the LZMA decoder and range decoder state. Dictionary is nore reset + * here, because LZMA state may be reset without resetting the dictionary. + */ +static void XZ_FUNC lzma_reset(struct xz_dec_lzma2 *s) +{ + uint16_t *probs; + size_t i; + + s->lzma.state = STATE_LIT_LIT; + s->lzma.rep0 = 0; + s->lzma.rep1 = 0; + s->lzma.rep2 = 0; + s->lzma.rep3 = 0; + + /* + * All probabilities are initialized to the same value. This hack + * makes the code smaller by avoiding a separate loop for each + * probability array. + * + * This could be optimized so that only that part of literal + * probabilities that are actually required. In the common case + * we would write 12 KiB less. + */ + probs = s->lzma.is_match[0]; + for (i = 0; i < PROBS_TOTAL; ++i) + probs[i] = RC_BIT_MODEL_TOTAL / 2; + + rc_reset(&s->rc); +} + +/* + * Decode and validate LZMA properties (lc/lp/pb) and calculate the bit masks + * from the decoded lp and pb values. On success, the LZMA decoder state is + * reset and true is returned. + */ +static bool XZ_FUNC lzma_props(struct xz_dec_lzma2 *s, uint8_t props) +{ + if (props > (4 * 5 + 4) * 9 + 8) + return false; + + s->lzma.pos_mask = 0; + while (props >= 9 * 5) { + props -= 9 * 5; + ++s->lzma.pos_mask; + } + + s->lzma.pos_mask = (1 << s->lzma.pos_mask) - 1; + + s->lzma.literal_pos_mask = 0; + while (props >= 9) { + props -= 9; + ++s->lzma.literal_pos_mask; + } + + s->lzma.lc = props; + + if (s->lzma.lc + s->lzma.literal_pos_mask > 4) + return false; + + s->lzma.literal_pos_mask = (1 << s->lzma.literal_pos_mask) - 1; + + lzma_reset(s); + + return true; +} + +/********* + * LZMA2 * + *********/ + +/* + * The LZMA decoder assumes that if the input limit (s->rc.in_limit) hasn't + * been exceeded, it is safe to read up to LZMA_IN_REQUIRED bytes. This + * wrapper function takes care of making the LZMA decoder's assumption safe. + * + * As long as there is plenty of input left to be decoded in the current LZMA + * chunk, we decode directly from the caller-supplied input buffer until + * there's LZMA_IN_REQUIRED bytes left. Those remaining bytes are copied into + * s->temp.buf, which (hopefully) gets filled on the next call to this + * function. We decode a few bytes from the temporary buffer so that we can + * continue decoding from the caller-supplied input buffer again. + */ +static bool XZ_FUNC lzma2_lzma(struct xz_dec_lzma2 *s, struct xz_buf *b) +{ + size_t in_avail; + uint32_t tmp; + + in_avail = b->in_size - b->in_pos; + if (s->temp.size > 0 || s->lzma2.compressed == 0) { + tmp = 2 * LZMA_IN_REQUIRED - s->temp.size; + if (tmp > s->lzma2.compressed - s->temp.size) + tmp = s->lzma2.compressed - s->temp.size; + if (tmp > in_avail) + tmp = in_avail; + + memcpy(s->temp.buf + s->temp.size, b->in + b->in_pos, tmp); + + if (s->temp.size + tmp == s->lzma2.compressed) { + memzero(s->temp.buf + s->temp.size + tmp, + sizeof(s->temp.buf) + - s->temp.size - tmp); + s->rc.in_limit = s->temp.size + tmp; + } else if (s->temp.size + tmp < LZMA_IN_REQUIRED) { + s->temp.size += tmp; + b->in_pos += tmp; + return true; + } else { + s->rc.in_limit = s->temp.size + tmp - LZMA_IN_REQUIRED; + } + + s->rc.in = s->temp.buf; + s->rc.in_pos = 0; + + if (!lzma_main(s) || s->rc.in_pos > s->temp.size + tmp) + return false; + + s->lzma2.compressed -= s->rc.in_pos; + + if (s->rc.in_pos < s->temp.size) { + s->temp.size -= s->rc.in_pos; + memmove(s->temp.buf, s->temp.buf + s->rc.in_pos, + s->temp.size); + return true; + } + + b->in_pos += s->rc.in_pos - s->temp.size; + s->temp.size = 0; + } + + in_avail = b->in_size - b->in_pos; + if (in_avail >= LZMA_IN_REQUIRED) { + s->rc.in = b->in; + s->rc.in_pos = b->in_pos; + + if (in_avail >= s->lzma2.compressed + LZMA_IN_REQUIRED) + s->rc.in_limit = b->in_pos + s->lzma2.compressed; + else + s->rc.in_limit = b->in_size - LZMA_IN_REQUIRED; + + if (!lzma_main(s)) + return false; + + in_avail = s->rc.in_pos - b->in_pos; + if (in_avail > s->lzma2.compressed) + return false; + + s->lzma2.compressed -= in_avail; + b->in_pos = s->rc.in_pos; + } + + in_avail = b->in_size - b->in_pos; + if (in_avail < LZMA_IN_REQUIRED) { + if (in_avail > s->lzma2.compressed) + in_avail = s->lzma2.compressed; + + memcpy(s->temp.buf, b->in + b->in_pos, in_avail); + s->temp.size = in_avail; + b->in_pos += in_avail; + } + + return true; +} + +/* + * Take care of the LZMA2 control layer, and forward the job of actual LZMA + * decoding or copying of uncompressed chunks to other functions. + */ +XZ_EXTERN NOINLINE enum xz_ret XZ_FUNC xz_dec_lzma2_run( + struct xz_dec_lzma2 *s, struct xz_buf *b) +{ + uint32_t tmp; + + while (b->in_pos < b->in_size || s->lzma2.sequence == SEQ_LZMA_RUN) { + switch (s->lzma2.sequence) { + case SEQ_CONTROL: + /* + * LZMA2 control byte + * + * Exact values: + * 0x00 End marker + * 0x01 Dictionary reset followed by + * an uncompressed chunk + * 0x02 Uncompressed chunk (no dictionary reset) + * + * Highest three bits (s->control & 0xE0): + * 0xE0 Dictionary reset, new properties and state + * reset, followed by LZMA compressed chunk + * 0xC0 New properties and state reset, followed + * by LZMA compressed chunk (no dictionary + * reset) + * 0xA0 State reset using old properties, + * followed by LZMA compressed chunk (no + * dictionary reset) + * 0x80 LZMA chunk (no dictionary or state reset) + * + * For LZMA compressed chunks, the lowest five bits + * (s->control & 1F) are the highest bits of the + * uncompressed size (bits 16-20). + * + * A new LZMA2 stream must begin with a dictionary + * reset. The first LZMA chunk must set new + * properties and reset the LZMA state. + * + * Values that don't match anything described above + * are invalid and we return XZ_DATA_ERROR. + */ + tmp = b->in[b->in_pos++]; + + if (tmp == 0x00) + return XZ_STREAM_END; + + if (tmp >= 0xE0 || tmp == 0x01) { + s->lzma2.need_props = true; + s->lzma2.need_dict_reset = false; + dict_reset(&s->dict, b); + } else if (s->lzma2.need_dict_reset) { + return XZ_DATA_ERROR; + } + + if (tmp >= 0x80) { + s->lzma2.uncompressed = (tmp & 0x1F) << 16; + s->lzma2.sequence = SEQ_UNCOMPRESSED_1; + + if (tmp >= 0xC0) { + /* + * When there are new properties, + * state reset is done at + * SEQ_PROPERTIES. + */ + s->lzma2.need_props = false; + s->lzma2.next_sequence + = SEQ_PROPERTIES; + } else if (s->lzma2.need_props) { + return XZ_DATA_ERROR; + } else { + s->lzma2.next_sequence + = SEQ_LZMA_PREPARE; + if (tmp >= 0xA0) + lzma_reset(s); + } + } else { + if (tmp > 0x02) + return XZ_DATA_ERROR; + + s->lzma2.sequence = SEQ_COMPRESSED_0; + s->lzma2.next_sequence = SEQ_COPY; + } + + break; + + case SEQ_UNCOMPRESSED_1: + s->lzma2.uncompressed + += (uint32_t)b->in[b->in_pos++] << 8; + s->lzma2.sequence = SEQ_UNCOMPRESSED_2; + break; + + case SEQ_UNCOMPRESSED_2: + s->lzma2.uncompressed + += (uint32_t)b->in[b->in_pos++] + 1; + s->lzma2.sequence = SEQ_COMPRESSED_0; + break; + + case SEQ_COMPRESSED_0: + s->lzma2.compressed + = (uint32_t)b->in[b->in_pos++] << 8; + s->lzma2.sequence = SEQ_COMPRESSED_1; + break; + + case SEQ_COMPRESSED_1: + s->lzma2.compressed + += (uint32_t)b->in[b->in_pos++] + 1; + s->lzma2.sequence = s->lzma2.next_sequence; + break; + + case SEQ_PROPERTIES: + if (!lzma_props(s, b->in[b->in_pos++])) + return XZ_DATA_ERROR; + + s->lzma2.sequence = SEQ_LZMA_PREPARE; + + case SEQ_LZMA_PREPARE: + if (s->lzma2.compressed < RC_INIT_BYTES) + return XZ_DATA_ERROR; + + if (!rc_read_init(&s->rc, b)) + return XZ_OK; + + s->lzma2.compressed -= RC_INIT_BYTES; + s->lzma2.sequence = SEQ_LZMA_RUN; + + case SEQ_LZMA_RUN: + /* + * Set dictionary limit to indicate how much we want + * to be encoded at maximum. Decode new data into the + * dictionary. Flush the new data from dictionary to + * b->out. Check if we finished decoding this chunk. + * In case the dictionary got full but we didn't fill + * the output buffer yet, we may run this loop + * multiple times without changing s->lzma2.sequence. + */ + dict_limit(&s->dict, min_t(size_t, + b->out_size - b->out_pos, + s->lzma2.uncompressed)); + if (!lzma2_lzma(s, b)) + return XZ_DATA_ERROR; + + s->lzma2.uncompressed -= dict_flush(&s->dict, b); + + if (s->lzma2.uncompressed == 0) { + if (s->lzma2.compressed > 0 || s->lzma.len > 0 + || !rc_is_finished(&s->rc)) + return XZ_DATA_ERROR; + + rc_reset(&s->rc); + s->lzma2.sequence = SEQ_CONTROL; + } else if (b->out_pos == b->out_size + || (b->in_pos == b->in_size + && s->temp.size + < s->lzma2.compressed)) { + return XZ_OK; + } + + break; + + case SEQ_COPY: + dict_uncompressed(&s->dict, b, &s->lzma2.compressed); + if (s->lzma2.compressed > 0) + return XZ_OK; + + s->lzma2.sequence = SEQ_CONTROL; + break; + } + } + + return XZ_OK; +} + +XZ_EXTERN struct xz_dec_lzma2 * XZ_FUNC xz_dec_lzma2_create( + enum xz_mode mode, uint32_t dict_max) +{ + struct xz_dec_lzma2 *s = kmalloc(sizeof(*s), GFP_KERNEL); + if (s == NULL) + return NULL; + + s->dict.mode = mode; + s->dict.size_max = dict_max; + + if (DEC_IS_PREALLOC(mode)) { + s->dict.buf = vmalloc(dict_max); + if (s->dict.buf == NULL) { + kfree(s); + return NULL; + } + } else if (DEC_IS_DYNALLOC(mode)) { + s->dict.buf = NULL; + s->dict.allocated = 0; + } + + return s; +} + +XZ_EXTERN enum xz_ret XZ_FUNC xz_dec_lzma2_reset( + struct xz_dec_lzma2 *s, uint8_t props) +{ + /* This limits dictionary size to 3 GiB to keep parsing simpler. */ + if (props > 39) + return XZ_OPTIONS_ERROR; + + s->dict.size = 2 + (props & 1); + s->dict.size <<= (props >> 1) + 11; + + if (DEC_IS_MULTI(s->dict.mode)) { + if (s->dict.size > s->dict.size_max) + return XZ_MEMLIMIT_ERROR; + + s->dict.end = s->dict.size; + + if (DEC_IS_DYNALLOC(s->dict.mode)) { + if (s->dict.allocated < s->dict.size) { + vfree(s->dict.buf); + s->dict.buf = vmalloc(s->dict.size); + if (s->dict.buf == NULL) { + s->dict.allocated = 0; + return XZ_MEM_ERROR; + } + } + } + } + + s->lzma.len = 0; + + s->lzma2.sequence = SEQ_CONTROL; + s->lzma2.need_dict_reset = true; + + s->temp.size = 0; + + return XZ_OK; +} + +XZ_EXTERN void XZ_FUNC xz_dec_lzma2_end(struct xz_dec_lzma2 *s) +{ + if (DEC_IS_MULTI(s->dict.mode)) + vfree(s->dict.buf); + + kfree(s); +} diff --git a/busybox-1_37_0/archival/libarchive/unxz/xz_dec_stream.c b/busybox-1_37_0/archival/libarchive/unxz/xz_dec_stream.c new file mode 100644 index 000000000..31158b4e8 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unxz/xz_dec_stream.c @@ -0,0 +1,820 @@ +/* + * .xz Stream decoder + * + * Author: Lasse Collin + * + * This file has been put into the public domain. + * You can do whatever you want with this file. + */ + +#include "xz_private.h" +#include "xz_stream.h" + +/* Hash used to validate the Index field */ +struct xz_dec_hash { + vli_type unpadded; + vli_type uncompressed; + uint32_t crc32; +}; + +struct xz_dec { + /* Position in dec_main() */ + enum { + SEQ_STREAM_HEADER, + SEQ_BLOCK_START, + SEQ_BLOCK_HEADER, + SEQ_BLOCK_UNCOMPRESS, + SEQ_BLOCK_PADDING, + SEQ_BLOCK_CHECK, + SEQ_INDEX, + SEQ_INDEX_PADDING, + SEQ_INDEX_CRC32, + SEQ_STREAM_FOOTER + } sequence; + + /* Position in variable-length integers and Check fields */ + uint32_t pos; + + /* Variable-length integer decoded by dec_vli() */ + vli_type vli; + + /* Saved in_pos and out_pos */ + size_t in_start; + size_t out_start; + + /* CRC32 value in Block or Index */ + uint32_t crc32; + + /* Type of the integrity check calculated from uncompressed data */ + enum xz_check check_type; + + /* Operation mode */ + enum xz_mode mode; + + /* + * True if the next call to xz_dec_run() is allowed to return + * XZ_BUF_ERROR. + */ + bool allow_buf_error; + + /* Information stored in Block Header */ + struct { + /* + * Value stored in the Compressed Size field, or + * VLI_UNKNOWN if Compressed Size is not present. + */ + vli_type compressed; + + /* + * Value stored in the Uncompressed Size field, or + * VLI_UNKNOWN if Uncompressed Size is not present. + */ + vli_type uncompressed; + + /* Size of the Block Header field */ + uint32_t size; + } block_header; + + /* Information collected when decoding Blocks */ + struct { + /* Observed compressed size of the current Block */ + vli_type compressed; + + /* Observed uncompressed size of the current Block */ + vli_type uncompressed; + + /* Number of Blocks decoded so far */ + vli_type count; + + /* + * Hash calculated from the Block sizes. This is used to + * validate the Index field. + */ + struct xz_dec_hash hash; + } block; + + /* Variables needed when verifying the Index field */ + struct { + /* Position in dec_index() */ + enum { + SEQ_INDEX_COUNT, + SEQ_INDEX_UNPADDED, + SEQ_INDEX_UNCOMPRESSED + } sequence; + + /* Size of the Index in bytes */ + vli_type size; + + /* Number of Records (matches block.count in valid files) */ + vli_type count; + + /* + * Hash calculated from the Records (matches block.hash in + * valid files). + */ + struct xz_dec_hash hash; + } index; + + /* + * Temporary buffer needed to hold Stream Header, Block Header, + * and Stream Footer. The Block Header is the biggest (1 KiB) + * so we reserve space according to that. buf[] has to be aligned + * to a multiple of four bytes; the size_t variables before it + * should guarantee this. + */ + struct { + size_t pos; + size_t size; + uint8_t buf[1024]; + } temp; + + struct xz_dec_lzma2 *lzma2; + +#ifdef XZ_DEC_BCJ + struct xz_dec_bcj *bcj; + bool bcj_active; +#endif +}; + +#ifdef XZ_DEC_ANY_CHECK +/* Sizes of the Check field with different Check IDs */ +static const uint8_t check_sizes[16] = { + 0, + 4, 4, 4, + 8, 8, 8, + 16, 16, 16, + 32, 32, 32, + 64, 64, 64 +}; +#endif + +/* + * Fill s->temp by copying data starting from b->in[b->in_pos]. Caller + * must have set s->temp.pos to indicate how much data we are supposed + * to copy into s->temp.buf. Return true once s->temp.pos has reached + * s->temp.size. + */ +static bool XZ_FUNC fill_temp(struct xz_dec *s, struct xz_buf *b) +{ + size_t copy_size = min_t(size_t, + b->in_size - b->in_pos, s->temp.size - s->temp.pos); + + memcpy(s->temp.buf + s->temp.pos, b->in + b->in_pos, copy_size); + b->in_pos += copy_size; + s->temp.pos += copy_size; + + if (s->temp.pos == s->temp.size) { + s->temp.pos = 0; + return true; + } + + return false; +} + +/* Decode a variable-length integer (little-endian base-128 encoding) */ +static enum xz_ret XZ_FUNC dec_vli(struct xz_dec *s, + const uint8_t *in, size_t *in_pos, size_t in_size) +{ + uint8_t byte; + + if (s->pos == 0) + s->vli = 0; + + while (*in_pos < in_size) { + byte = in[*in_pos]; + ++*in_pos; + + s->vli |= (vli_type)(byte & 0x7F) << s->pos; + + if ((byte & 0x80) == 0) { + /* Don't allow non-minimal encodings. */ + if (byte == 0 && s->pos != 0) + return XZ_DATA_ERROR; + + s->pos = 0; + return XZ_STREAM_END; + } + + s->pos += 7; + if (s->pos == 7 * VLI_BYTES_MAX) + return XZ_DATA_ERROR; + } + + return XZ_OK; +} + +/* + * Decode the Compressed Data field from a Block. Update and validate + * the observed compressed and uncompressed sizes of the Block so that + * they don't exceed the values possibly stored in the Block Header + * (validation assumes that no integer overflow occurs, since vli_type + * is normally uint64_t). Update the CRC32 if presence of the CRC32 + * field was indicated in Stream Header. + * + * Once the decoding is finished, validate that the observed sizes match + * the sizes possibly stored in the Block Header. Update the hash and + * Block count, which are later used to validate the Index field. + */ +static enum xz_ret XZ_FUNC dec_block(struct xz_dec *s, struct xz_buf *b) +{ + enum xz_ret ret; + + s->in_start = b->in_pos; + s->out_start = b->out_pos; + +#ifdef XZ_DEC_BCJ + if (s->bcj_active) + ret = xz_dec_bcj_run(s->bcj, s->lzma2, b); + else +#endif + ret = xz_dec_lzma2_run(s->lzma2, b); + + s->block.compressed += b->in_pos - s->in_start; + s->block.uncompressed += b->out_pos - s->out_start; + + /* + * There is no need to separately check for VLI_UNKNOWN, since + * the observed sizes are always smaller than VLI_UNKNOWN. + */ + if (s->block.compressed > s->block_header.compressed + || s->block.uncompressed + > s->block_header.uncompressed) + return XZ_DATA_ERROR; + + if (s->check_type == XZ_CHECK_CRC32) + s->crc32 = xz_crc32(b->out + s->out_start, + b->out_pos - s->out_start, s->crc32); + + if (ret == XZ_STREAM_END) { + if (s->block_header.compressed != VLI_UNKNOWN + && s->block_header.compressed + != s->block.compressed) + return XZ_DATA_ERROR; + + if (s->block_header.uncompressed != VLI_UNKNOWN + && s->block_header.uncompressed + != s->block.uncompressed) + return XZ_DATA_ERROR; + + s->block.hash.unpadded += s->block_header.size + + s->block.compressed; + +#ifdef XZ_DEC_ANY_CHECK + s->block.hash.unpadded += check_sizes[s->check_type]; +#else + if (s->check_type == XZ_CHECK_CRC32) + s->block.hash.unpadded += 4; +#endif + + s->block.hash.uncompressed += s->block.uncompressed; + s->block.hash.crc32 = xz_crc32( + (const uint8_t *)&s->block.hash, + sizeof(s->block.hash), s->block.hash.crc32); + + ++s->block.count; + } + + return ret; +} + +/* Update the Index size and the CRC32 value. */ +static void XZ_FUNC index_update(struct xz_dec *s, const struct xz_buf *b) +{ + size_t in_used = b->in_pos - s->in_start; + s->index.size += in_used; + s->crc32 = xz_crc32(b->in + s->in_start, in_used, s->crc32); +} + +/* + * Decode the Number of Records, Unpadded Size, and Uncompressed Size + * fields from the Index field. That is, Index Padding and CRC32 are not + * decoded by this function. + * + * This can return XZ_OK (more input needed), XZ_STREAM_END (everything + * successfully decoded), or XZ_DATA_ERROR (input is corrupt). + */ +static enum xz_ret XZ_FUNC dec_index(struct xz_dec *s, struct xz_buf *b) +{ + enum xz_ret ret; + + do { + ret = dec_vli(s, b->in, &b->in_pos, b->in_size); + if (ret != XZ_STREAM_END) { + index_update(s, b); + return ret; + } + + switch (s->index.sequence) { + case SEQ_INDEX_COUNT: + s->index.count = s->vli; + + /* + * Validate that the Number of Records field + * indicates the same number of Records as + * there were Blocks in the Stream. + */ + if (s->index.count != s->block.count) + return XZ_DATA_ERROR; + + s->index.sequence = SEQ_INDEX_UNPADDED; + break; + + case SEQ_INDEX_UNPADDED: + s->index.hash.unpadded += s->vli; + s->index.sequence = SEQ_INDEX_UNCOMPRESSED; + break; + + case SEQ_INDEX_UNCOMPRESSED: + s->index.hash.uncompressed += s->vli; + s->index.hash.crc32 = xz_crc32( + (const uint8_t *)&s->index.hash, + sizeof(s->index.hash), + s->index.hash.crc32); + --s->index.count; + s->index.sequence = SEQ_INDEX_UNPADDED; + break; + } + } while (s->index.count > 0); + + return XZ_STREAM_END; +} + +/* + * Validate that the next four input bytes match the value of s->crc32. + * s->pos must be zero when starting to validate the first byte. + */ +static enum xz_ret XZ_FUNC crc32_validate(struct xz_dec *s, struct xz_buf *b) +{ + do { + if (b->in_pos == b->in_size) + return XZ_OK; + + if (((s->crc32 >> s->pos) & 0xFF) != b->in[b->in_pos++]) + return XZ_DATA_ERROR; + + s->pos += 8; + } while (s->pos < 32); + + s->crc32 = 0; + s->pos = 0; + + return XZ_STREAM_END; +} + +#ifdef XZ_DEC_ANY_CHECK +/* + * Skip over the Check field when the Check ID is not supported. + * Returns true once the whole Check field has been skipped over. + */ +static bool XZ_FUNC check_skip(struct xz_dec *s, struct xz_buf *b) +{ + while (s->pos < check_sizes[s->check_type]) { + if (b->in_pos == b->in_size) + return false; + + ++b->in_pos; + ++s->pos; + } + + s->pos = 0; + + return true; +} +#endif + +/* Decode the Stream Header field (the first 12 bytes of the .xz Stream). */ +static enum xz_ret XZ_FUNC dec_stream_header(struct xz_dec *s) +{ + if (!memeq(s->temp.buf, HEADER_MAGIC, HEADER_MAGIC_SIZE)) + return XZ_FORMAT_ERROR; + + if (xz_crc32(s->temp.buf + HEADER_MAGIC_SIZE, 2, 0) + != get_le32(s->temp.buf + HEADER_MAGIC_SIZE + 2)) + return XZ_DATA_ERROR; + + if (s->temp.buf[HEADER_MAGIC_SIZE] != 0) + return XZ_OPTIONS_ERROR; + + /* + * Of integrity checks, we support only none (Check ID = 0) and + * CRC32 (Check ID = 1). However, if XZ_DEC_ANY_CHECK is defined, + * we will accept other check types too, but then the check won't + * be verified and a warning (XZ_UNSUPPORTED_CHECK) will be given. + */ + s->check_type = s->temp.buf[HEADER_MAGIC_SIZE + 1]; + +#ifdef XZ_DEC_ANY_CHECK + if (s->check_type > XZ_CHECK_MAX) + return XZ_OPTIONS_ERROR; + + if (s->check_type > XZ_CHECK_CRC32) + return XZ_UNSUPPORTED_CHECK; +#else + if (s->check_type > XZ_CHECK_CRC32) + return XZ_OPTIONS_ERROR; +#endif + + return XZ_OK; +} + +/* Decode the Stream Footer field (the last 12 bytes of the .xz Stream) */ +static enum xz_ret XZ_FUNC dec_stream_footer(struct xz_dec *s) +{ + if (!memeq(s->temp.buf + 10, FOOTER_MAGIC, FOOTER_MAGIC_SIZE)) + return XZ_DATA_ERROR; + + if (xz_crc32(s->temp.buf + 4, 6, 0) != get_le32(s->temp.buf)) + return XZ_DATA_ERROR; + + /* + * Validate Backward Size. Note that we never added the size of the + * Index CRC32 field to s->index.size, thus we use s->index.size / 4 + * instead of s->index.size / 4 - 1. + */ + if ((s->index.size >> 2) != get_le32(s->temp.buf + 4)) + return XZ_DATA_ERROR; + + if (s->temp.buf[8] != 0 || s->temp.buf[9] != s->check_type) + return XZ_DATA_ERROR; + + /* + * Use XZ_STREAM_END instead of XZ_OK to be more convenient + * for the caller. + */ + return XZ_STREAM_END; +} + +/* Decode the Block Header and initialize the filter chain. */ +static enum xz_ret XZ_FUNC dec_block_header(struct xz_dec *s) +{ + enum xz_ret ret; + + /* + * Validate the CRC32. We know that the temp buffer is at least + * eight bytes so this is safe. + */ + s->temp.size -= 4; + if (xz_crc32(s->temp.buf, s->temp.size, 0) + != get_le32(s->temp.buf + s->temp.size)) + return XZ_DATA_ERROR; + + s->temp.pos = 2; + + /* + * Catch unsupported Block Flags. We support only one or two filters + * in the chain, so we catch that with the same test. + */ +#ifdef XZ_DEC_BCJ + if (s->temp.buf[1] & 0x3E) +#else + if (s->temp.buf[1] & 0x3F) +#endif + return XZ_OPTIONS_ERROR; + + /* Compressed Size */ + if (s->temp.buf[1] & 0x40) { + if (dec_vli(s, s->temp.buf, &s->temp.pos, s->temp.size) + != XZ_STREAM_END) + return XZ_DATA_ERROR; + + s->block_header.compressed = s->vli; + } else { + s->block_header.compressed = VLI_UNKNOWN; + } + + /* Uncompressed Size */ + if (s->temp.buf[1] & 0x80) { + if (dec_vli(s, s->temp.buf, &s->temp.pos, s->temp.size) + != XZ_STREAM_END) + return XZ_DATA_ERROR; + + s->block_header.uncompressed = s->vli; + } else { + s->block_header.uncompressed = VLI_UNKNOWN; + } + +#ifdef XZ_DEC_BCJ + /* If there are two filters, the first one must be a BCJ filter. */ + s->bcj_active = s->temp.buf[1] & 0x01; + if (s->bcj_active) { + if (s->temp.size - s->temp.pos < 2) + return XZ_OPTIONS_ERROR; + + ret = xz_dec_bcj_reset(s->bcj, s->temp.buf[s->temp.pos++]); + if (ret != XZ_OK) + return ret; + + /* + * We don't support custom start offset, + * so Size of Properties must be zero. + */ + if (s->temp.buf[s->temp.pos++] != 0x00) + return XZ_OPTIONS_ERROR; + } +#endif + + /* Valid Filter Flags always take at least two bytes. */ + if (s->temp.size - s->temp.pos < 2) + return XZ_DATA_ERROR; + + /* Filter ID = LZMA2 */ + if (s->temp.buf[s->temp.pos++] != 0x21) + return XZ_OPTIONS_ERROR; + + /* Size of Properties = 1-byte Filter Properties */ + if (s->temp.buf[s->temp.pos++] != 0x01) + return XZ_OPTIONS_ERROR; + + /* Filter Properties contains LZMA2 dictionary size. */ + if (s->temp.size - s->temp.pos < 1) + return XZ_DATA_ERROR; + + ret = xz_dec_lzma2_reset(s->lzma2, s->temp.buf[s->temp.pos++]); + if (ret != XZ_OK) + return ret; + + /* The rest must be Header Padding. */ + while (s->temp.pos < s->temp.size) + if (s->temp.buf[s->temp.pos++] != 0x00) + return XZ_OPTIONS_ERROR; + + s->temp.pos = 0; + s->block.compressed = 0; + s->block.uncompressed = 0; + + return XZ_OK; +} + +static NOINLINE enum xz_ret XZ_FUNC dec_main(struct xz_dec *s, struct xz_buf *b) +{ + enum xz_ret ret; + + /* + * Store the start position for the case when we are in the middle + * of the Index field. + */ + s->in_start = b->in_pos; + + while (true) { + switch (s->sequence) { + case SEQ_STREAM_HEADER: + /* + * Stream Header is copied to s->temp, and then + * decoded from there. This way if the caller + * gives us only little input at a time, we can + * still keep the Stream Header decoding code + * simple. Similar approach is used in many places + * in this file. + */ + if (!fill_temp(s, b)) + return XZ_OK; + + /* + * If dec_stream_header() returns + * XZ_UNSUPPORTED_CHECK, it is still possible + * to continue decoding if working in multi-call + * mode. Thus, update s->sequence before calling + * dec_stream_header(). + */ + s->sequence = SEQ_BLOCK_START; + + ret = dec_stream_header(s); + if (ret != XZ_OK) + return ret; + + case SEQ_BLOCK_START: + /* We need one byte of input to continue. */ + if (b->in_pos == b->in_size) + return XZ_OK; + + /* See if this is the beginning of the Index field. */ + if (b->in[b->in_pos] == 0) { + s->in_start = b->in_pos++; + s->sequence = SEQ_INDEX; + break; + } + + /* + * Calculate the size of the Block Header and + * prepare to decode it. + */ + s->block_header.size + = ((uint32_t)b->in[b->in_pos] + 1) * 4; + + s->temp.size = s->block_header.size; + s->temp.pos = 0; + s->sequence = SEQ_BLOCK_HEADER; + + case SEQ_BLOCK_HEADER: + if (!fill_temp(s, b)) + return XZ_OK; + + ret = dec_block_header(s); + if (ret != XZ_OK) + return ret; + + s->sequence = SEQ_BLOCK_UNCOMPRESS; + + case SEQ_BLOCK_UNCOMPRESS: + ret = dec_block(s, b); + if (ret != XZ_STREAM_END) + return ret; + + s->sequence = SEQ_BLOCK_PADDING; + + case SEQ_BLOCK_PADDING: + /* + * Size of Compressed Data + Block Padding + * must be a multiple of four. We don't need + * s->block.compressed for anything else + * anymore, so we use it here to test the size + * of the Block Padding field. + */ + while (s->block.compressed & 3) { + if (b->in_pos == b->in_size) + return XZ_OK; + + if (b->in[b->in_pos++] != 0) + return XZ_DATA_ERROR; + + ++s->block.compressed; + } + + s->sequence = SEQ_BLOCK_CHECK; + + case SEQ_BLOCK_CHECK: + if (s->check_type == XZ_CHECK_CRC32) { + ret = crc32_validate(s, b); + if (ret != XZ_STREAM_END) + return ret; + } +#ifdef XZ_DEC_ANY_CHECK + else if (!check_skip(s, b)) { + return XZ_OK; + } +#endif + + s->sequence = SEQ_BLOCK_START; + break; + + case SEQ_INDEX: + ret = dec_index(s, b); + if (ret != XZ_STREAM_END) + return ret; + + s->sequence = SEQ_INDEX_PADDING; + + case SEQ_INDEX_PADDING: + while ((s->index.size + (b->in_pos - s->in_start)) + & 3) { + if (b->in_pos == b->in_size) { + index_update(s, b); + return XZ_OK; + } + + if (b->in[b->in_pos++] != 0) + return XZ_DATA_ERROR; + } + + /* Finish the CRC32 value and Index size. */ + index_update(s, b); + + /* Compare the hashes to validate the Index field. */ + if (!memeq(&s->block.hash, &s->index.hash, + sizeof(s->block.hash))) + return XZ_DATA_ERROR; + + s->sequence = SEQ_INDEX_CRC32; + + case SEQ_INDEX_CRC32: + ret = crc32_validate(s, b); + if (ret != XZ_STREAM_END) + return ret; + + s->temp.size = STREAM_HEADER_SIZE; + s->sequence = SEQ_STREAM_FOOTER; + + case SEQ_STREAM_FOOTER: + if (!fill_temp(s, b)) + return XZ_OK; + + return dec_stream_footer(s); + } + } + + /* Never reached */ +} + +/* + * xz_dec_run() is a wrapper for dec_main() to handle some special cases in + * multi-call and single-call decoding. + * + * In multi-call mode, we must return XZ_BUF_ERROR when it seems clear that we + * are not going to make any progress anymore. This is to prevent the caller + * from calling us infinitely when the input file is truncated or otherwise + * corrupt. Since zlib-style API allows that the caller fills the input buffer + * only when the decoder doesn't produce any new output, we have to be careful + * to avoid returning XZ_BUF_ERROR too easily: XZ_BUF_ERROR is returned only + * after the second consecutive call to xz_dec_run() that makes no progress. + * + * In single-call mode, if we couldn't decode everything and no error + * occurred, either the input is truncated or the output buffer is too small. + * Since we know that the last input byte never produces any output, we know + * that if all the input was consumed and decoding wasn't finished, the file + * must be corrupt. Otherwise the output buffer has to be too small or the + * file is corrupt in a way that decoding it produces too big output. + * + * If single-call decoding fails, we reset b->in_pos and b->out_pos back to + * their original values. This is because with some filter chains there won't + * be any valid uncompressed data in the output buffer unless the decoding + * actually succeeds (that's the price to pay of using the output buffer as + * the workspace). + */ +XZ_EXTERN enum xz_ret XZ_FUNC xz_dec_run(struct xz_dec *s, struct xz_buf *b) +{ + size_t in_start; + size_t out_start; + enum xz_ret ret; + + if (DEC_IS_SINGLE(s->mode)) + xz_dec_reset(s); + + in_start = b->in_pos; + out_start = b->out_pos; + ret = dec_main(s, b); + + if (DEC_IS_SINGLE(s->mode)) { + if (ret == XZ_OK) + ret = b->in_pos == b->in_size + ? XZ_DATA_ERROR : XZ_BUF_ERROR; + + if (ret != XZ_STREAM_END) { + b->in_pos = in_start; + b->out_pos = out_start; + } + } else if (ret == XZ_OK && in_start == b->in_pos + && out_start == b->out_pos) { + if (s->allow_buf_error) + ret = XZ_BUF_ERROR; + + s->allow_buf_error = true; + } else { + s->allow_buf_error = false; + } + + return ret; +} + +XZ_EXTERN struct xz_dec * XZ_FUNC xz_dec_init( + enum xz_mode mode, uint32_t dict_max) +{ + struct xz_dec *s = kmalloc(sizeof(*s), GFP_KERNEL); + if (s == NULL) + return NULL; + + s->mode = mode; + +#ifdef XZ_DEC_BCJ + s->bcj = xz_dec_bcj_create(DEC_IS_SINGLE(mode)); + if (s->bcj == NULL) + goto error_bcj; +#endif + + s->lzma2 = xz_dec_lzma2_create(mode, dict_max); + if (s->lzma2 == NULL) + goto error_lzma2; + + xz_dec_reset(s); + return s; + +error_lzma2: +#ifdef XZ_DEC_BCJ + xz_dec_bcj_end(s->bcj); +error_bcj: +#endif + kfree(s); + return NULL; +} + +XZ_EXTERN void XZ_FUNC xz_dec_reset(struct xz_dec *s) +{ + s->sequence = SEQ_STREAM_HEADER; + s->allow_buf_error = false; + s->pos = 0; + s->crc32 = 0; + memzero(&s->block, sizeof(s->block)); + memzero(&s->index, sizeof(s->index)); + s->temp.pos = 0; + s->temp.size = STREAM_HEADER_SIZE; +} + +XZ_EXTERN void XZ_FUNC xz_dec_end(struct xz_dec *s) +{ + if (s != NULL) { + xz_dec_lzma2_end(s->lzma2); +#ifdef XZ_DEC_BCJ + xz_dec_bcj_end(s->bcj); +#endif + kfree(s); + } +} diff --git a/busybox-1_37_0/archival/libarchive/unxz/xz_lzma2.h b/busybox-1_37_0/archival/libarchive/unxz/xz_lzma2.h new file mode 100644 index 000000000..47f21afbc --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unxz/xz_lzma2.h @@ -0,0 +1,204 @@ +/* + * LZMA2 definitions + * + * Authors: Lasse Collin + * Igor Pavlov + * + * This file has been put into the public domain. + * You can do whatever you want with this file. + */ + +#ifndef XZ_LZMA2_H +#define XZ_LZMA2_H + +/* Range coder constants */ +#define RC_SHIFT_BITS 8 +#define RC_TOP_BITS 24 +#define RC_TOP_VALUE (1 << RC_TOP_BITS) +#define RC_BIT_MODEL_TOTAL_BITS 11 +#define RC_BIT_MODEL_TOTAL (1 << RC_BIT_MODEL_TOTAL_BITS) +#define RC_MOVE_BITS 5 + +/* + * Maximum number of position states. A position state is the lowest pb + * number of bits of the current uncompressed offset. In some places there + * are different sets of probabilities for different position states. + */ +#define POS_STATES_MAX (1 << 4) + +/* + * This enum is used to track which LZMA symbols have occurred most recently + * and in which order. This information is used to predict the next symbol. + * + * Symbols: + * - Literal: One 8-bit byte + * - Match: Repeat a chunk of data at some distance + * - Long repeat: Multi-byte match at a recently seen distance + * - Short repeat: One-byte repeat at a recently seen distance + * + * The symbol names are in from STATE_oldest_older_previous. REP means + * either short or long repeated match, and NONLIT means any non-literal. + */ +enum lzma_state { + STATE_LIT_LIT, + STATE_MATCH_LIT_LIT, + STATE_REP_LIT_LIT, + STATE_SHORTREP_LIT_LIT, + STATE_MATCH_LIT, + STATE_REP_LIT, + STATE_SHORTREP_LIT, + STATE_LIT_MATCH, + STATE_LIT_LONGREP, + STATE_LIT_SHORTREP, + STATE_NONLIT_MATCH, + STATE_NONLIT_REP +}; + +/* Total number of states */ +#define STATES 12 + +/* The lowest 7 states indicate that the previous state was a literal. */ +#define LIT_STATES 7 + +/* Indicate that the latest symbol was a literal. */ +static inline void XZ_FUNC lzma_state_literal(enum lzma_state *state) +{ + if (*state <= STATE_SHORTREP_LIT_LIT) + *state = STATE_LIT_LIT; + else if (*state <= STATE_LIT_SHORTREP) + *state -= 3; + else + *state -= 6; +} + +/* Indicate that the latest symbol was a match. */ +static inline void XZ_FUNC lzma_state_match(enum lzma_state *state) +{ + *state = *state < LIT_STATES ? STATE_LIT_MATCH : STATE_NONLIT_MATCH; +} + +/* Indicate that the latest state was a long repeated match. */ +static inline void XZ_FUNC lzma_state_long_rep(enum lzma_state *state) +{ + *state = *state < LIT_STATES ? STATE_LIT_LONGREP : STATE_NONLIT_REP; +} + +/* Indicate that the latest symbol was a short match. */ +static inline void XZ_FUNC lzma_state_short_rep(enum lzma_state *state) +{ + *state = *state < LIT_STATES ? STATE_LIT_SHORTREP : STATE_NONLIT_REP; +} + +/* Test if the previous symbol was a literal. */ +static inline bool XZ_FUNC lzma_state_is_literal(enum lzma_state state) +{ + return state < LIT_STATES; +} + +/* Each literal coder is divided in three sections: + * - 0x001-0x0FF: Without match byte + * - 0x101-0x1FF: With match byte; match bit is 0 + * - 0x201-0x2FF: With match byte; match bit is 1 + * + * Match byte is used when the previous LZMA symbol was something else than + * a literal (that is, it was some kind of match). + */ +#define LITERAL_CODER_SIZE 0x300 + +/* Maximum number of literal coders */ +#define LITERAL_CODERS_MAX (1 << 4) + +/* Minimum length of a match is two bytes. */ +#define MATCH_LEN_MIN 2 + +/* Match length is encoded with 4, 5, or 10 bits. + * + * Length Bits + * 2-9 4 = Choice=0 + 3 bits + * 10-17 5 = Choice=1 + Choice2=0 + 3 bits + * 18-273 10 = Choice=1 + Choice2=1 + 8 bits + */ +#define LEN_LOW_BITS 3 +#define LEN_LOW_SYMBOLS (1 << LEN_LOW_BITS) +#define LEN_MID_BITS 3 +#define LEN_MID_SYMBOLS (1 << LEN_MID_BITS) +#define LEN_HIGH_BITS 8 +#define LEN_HIGH_SYMBOLS (1 << LEN_HIGH_BITS) +#define LEN_SYMBOLS (LEN_LOW_SYMBOLS + LEN_MID_SYMBOLS + LEN_HIGH_SYMBOLS) + +/* + * Maximum length of a match is 273 which is a result of the encoding + * described above. + */ +#define MATCH_LEN_MAX (MATCH_LEN_MIN + LEN_SYMBOLS - 1) + +/* + * Different sets of probabilities are used for match distances that have + * very short match length: Lengths of 2, 3, and 4 bytes have a separate + * set of probabilities for each length. The matches with longer length + * use a shared set of probabilities. + */ +#define DIST_STATES 4 + +/* + * Get the index of the appropriate probability array for decoding + * the distance slot. + */ +static inline uint32_t XZ_FUNC lzma_get_dist_state(uint32_t len) +{ + return len < DIST_STATES + MATCH_LEN_MIN + ? len - MATCH_LEN_MIN : DIST_STATES - 1; +} + +/* + * The highest two bits of a 32-bit match distance are encoded using six bits. + * This six-bit value is called a distance slot. This way encoding a 32-bit + * value takes 6-36 bits, larger values taking more bits. + */ +#define DIST_SLOT_BITS 6 +#define DIST_SLOTS (1 << DIST_SLOT_BITS) + +/* Match distances up to 127 are fully encoded using probabilities. Since + * the highest two bits (distance slot) are always encoded using six bits, + * the distances 0-3 don't need any additional bits to encode, since the + * distance slot itself is the same as the actual distance. DIST_MODEL_START + * indicates the first distance slot where at least one additional bit is + * needed. + */ +#define DIST_MODEL_START 4 + +/* + * Match distances greater than 127 are encoded in three pieces: + * - distance slot: the highest two bits + * - direct bits: 2-26 bits below the highest two bits + * - alignment bits: four lowest bits + * + * Direct bits don't use any probabilities. + * + * The distance slot value of 14 is for distances 128-191. + */ +#define DIST_MODEL_END 14 + +/* Distance slots that indicate a distance <= 127. */ +#define FULL_DISTANCES_BITS (DIST_MODEL_END / 2) +#define FULL_DISTANCES (1 << FULL_DISTANCES_BITS) + +/* + * For match distances greater than 127, only the highest two bits and the + * lowest four bits (alignment) is encoded using probabilities. + */ +#define ALIGN_BITS 4 +#define ALIGN_SIZE (1 << ALIGN_BITS) +#define ALIGN_MASK (ALIGN_SIZE - 1) + +/* Total number of all probability variables */ +#define PROBS_TOTAL (1846 + LITERAL_CODERS_MAX * LITERAL_CODER_SIZE) + +/* + * LZMA remembers the four most recent match distances. Reusing these + * distances tends to take less space than re-encoding the actual + * distance value. + */ +#define REPS 4 + +#endif diff --git a/busybox-1_37_0/archival/libarchive/unxz/xz_private.h b/busybox-1_37_0/archival/libarchive/unxz/xz_private.h new file mode 100644 index 000000000..145649a83 --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unxz/xz_private.h @@ -0,0 +1,159 @@ +/* + * Private includes and definitions + * + * Author: Lasse Collin + * + * This file has been put into the public domain. + * You can do whatever you want with this file. + */ + +#ifndef XZ_PRIVATE_H +#define XZ_PRIVATE_H + +#ifdef __KERNEL__ + /* XZ_PREBOOT may be defined only via decompress_unxz.c. */ +# ifndef XZ_PREBOOT +# include +# include +# include +# define memeq(a, b, size) (memcmp(a, b, size) == 0) +# define memzero(buf, size) memset(buf, 0, size) +# endif +# include +# include +# define get_le32(p) le32_to_cpup((const uint32_t *)(p)) + /* XZ_IGNORE_KCONFIG may be defined only via decompress_unxz.c. */ +# ifndef XZ_IGNORE_KCONFIG +# ifdef CONFIG_XZ_DEC_X86 +# define XZ_DEC_X86 +# endif +# ifdef CONFIG_XZ_DEC_POWERPC +# define XZ_DEC_POWERPC +# endif +# ifdef CONFIG_XZ_DEC_IA64 +# define XZ_DEC_IA64 +# endif +# ifdef CONFIG_XZ_DEC_ARM +# define XZ_DEC_ARM +# endif +# ifdef CONFIG_XZ_DEC_ARMTHUMB +# define XZ_DEC_ARMTHUMB +# endif +# ifdef CONFIG_XZ_DEC_SPARC +# define XZ_DEC_SPARC +# endif +# endif +# include +#else + /* + * For userspace builds, use a separate header to define the required + * macros and functions. This makes it easier to adapt the code into + * different environments and avoids clutter in the Linux kernel tree. + */ +# include "xz_config.h" +#endif + +/* If no specific decoding mode is requested, enable support for all modes. */ +#if !defined(XZ_DEC_SINGLE) && !defined(XZ_DEC_PREALLOC) \ + && !defined(XZ_DEC_DYNALLOC) +# define XZ_DEC_SINGLE +# define XZ_DEC_PREALLOC +# define XZ_DEC_DYNALLOC +#endif + +/* + * The DEC_IS_foo(mode) macros are used in "if" statements. If only some + * of the supported modes are enabled, these macros will evaluate to true or + * false at compile time and thus allow the compiler to omit unneeded code. + */ +#ifdef XZ_DEC_SINGLE +# define DEC_IS_SINGLE(mode) ((mode) == XZ_SINGLE) +#else +# define DEC_IS_SINGLE(mode) (false) +#endif + +#ifdef XZ_DEC_PREALLOC +# define DEC_IS_PREALLOC(mode) ((mode) == XZ_PREALLOC) +#else +# define DEC_IS_PREALLOC(mode) (false) +#endif + +#ifdef XZ_DEC_DYNALLOC +# define DEC_IS_DYNALLOC(mode) ((mode) == XZ_DYNALLOC) +#else +# define DEC_IS_DYNALLOC(mode) (false) +#endif + +#if !defined(XZ_DEC_SINGLE) +# define DEC_IS_MULTI(mode) (true) +#elif defined(XZ_DEC_PREALLOC) || defined(XZ_DEC_DYNALLOC) +# define DEC_IS_MULTI(mode) ((mode) != XZ_SINGLE) +#else +# define DEC_IS_MULTI(mode) (false) +#endif + +/* + * If any of the BCJ filter decoders are wanted, define XZ_DEC_BCJ. + * XZ_DEC_BCJ is used to enable generic support for BCJ decoders. + */ +#ifndef XZ_DEC_BCJ +# if defined(XZ_DEC_X86) || defined(XZ_DEC_POWERPC) \ + || defined(XZ_DEC_IA64) || defined(XZ_DEC_ARM) \ + || defined(XZ_DEC_ARM) || defined(XZ_DEC_ARMTHUMB) \ + || defined(XZ_DEC_SPARC) +# define XZ_DEC_BCJ +# endif +#endif + +/* + * Allocate memory for LZMA2 decoder. xz_dec_lzma2_reset() must be used + * before calling xz_dec_lzma2_run(). + */ +XZ_EXTERN struct xz_dec_lzma2 * XZ_FUNC xz_dec_lzma2_create( + enum xz_mode mode, uint32_t dict_max); + +/* + * Decode the LZMA2 properties (one byte) and reset the decoder. Return + * XZ_OK on success, XZ_MEMLIMIT_ERROR if the preallocated dictionary is not + * big enough, and XZ_OPTIONS_ERROR if props indicates something that this + * decoder doesn't support. + */ +XZ_EXTERN enum xz_ret XZ_FUNC xz_dec_lzma2_reset( + struct xz_dec_lzma2 *s, uint8_t props); + +/* Decode raw LZMA2 stream from b->in to b->out. */ +XZ_EXTERN enum xz_ret XZ_FUNC xz_dec_lzma2_run( + struct xz_dec_lzma2 *s, struct xz_buf *b); + +/* Free the memory allocated for the LZMA2 decoder. */ +XZ_EXTERN void XZ_FUNC xz_dec_lzma2_end(struct xz_dec_lzma2 *s); + +#ifdef XZ_DEC_BCJ +/* + * Allocate memory for BCJ decoders. xz_dec_bcj_reset() must be used before + * calling xz_dec_bcj_run(). + */ +XZ_EXTERN struct xz_dec_bcj * XZ_FUNC xz_dec_bcj_create(bool single_call); + +/* + * Decode the Filter ID of a BCJ filter. This implementation doesn't + * support custom start offsets, so no decoding of Filter Properties + * is needed. Returns XZ_OK if the given Filter ID is supported. + * Otherwise XZ_OPTIONS_ERROR is returned. + */ +XZ_EXTERN enum xz_ret XZ_FUNC xz_dec_bcj_reset( + struct xz_dec_bcj *s, uint8_t id); + +/* + * Decode raw BCJ + LZMA2 stream. This must be used only if there actually is + * a BCJ filter in the chain. If the chain has only LZMA2, xz_dec_lzma2_run() + * must be called directly. + */ +XZ_EXTERN enum xz_ret XZ_FUNC xz_dec_bcj_run(struct xz_dec_bcj *s, + struct xz_dec_lzma2 *lzma2, struct xz_buf *b); + +/* Free the memory allocated for the BCJ filters. */ +#define xz_dec_bcj_end(s) kfree(s) +#endif + +#endif diff --git a/busybox-1_37_0/archival/libarchive/unxz/xz_stream.h b/busybox-1_37_0/archival/libarchive/unxz/xz_stream.h new file mode 100644 index 000000000..45056e42c --- /dev/null +++ b/busybox-1_37_0/archival/libarchive/unxz/xz_stream.h @@ -0,0 +1,62 @@ +/* + * Definitions for handling the .xz file format + * + * Author: Lasse Collin + * + * This file has been put into the public domain. + * You can do whatever you want with this file. + */ + +#ifndef XZ_STREAM_H +#define XZ_STREAM_H + +#if defined(__KERNEL__) && !XZ_INTERNAL_CRC32 +# include +# undef crc32 +# define xz_crc32(buf, size, crc) \ + (~crc32_le(~(uint32_t)(crc), buf, size)) +#endif + +/* + * See the .xz file format specification at + * http://tukaani.org/xz/xz-file-format.txt + * to understand the container format. + */ + +#define STREAM_HEADER_SIZE 12 + +#define HEADER_MAGIC "\375""7zXZ" +#define HEADER_MAGIC_SIZE 6 + +#define FOOTER_MAGIC "YZ" +#define FOOTER_MAGIC_SIZE 2 + +/* + * Variable-length integer can hold a 63-bit unsigned integer or a special + * value indicating that the value is unknown. + * + * Experimental: vli_type can be defined to uint32_t to save a few bytes + * in code size (no effect on speed). Doing so limits the uncompressed and + * compressed size of the file to less than 256 MiB and may also weaken + * error detection slightly. + */ +typedef uint64_t vli_type; + +#define VLI_MAX ((vli_type)-1 / 2) +#define VLI_UNKNOWN ((vli_type)-1) + +/* Maximum encoded size of a VLI */ +#define VLI_BYTES_MAX (sizeof(vli_type) * 8 / 7) + +/* Integrity Check types */ +enum xz_check { + XZ_CHECK_NONE = 0, + XZ_CHECK_CRC32 = 1, + XZ_CHECK_CRC64 = 4, + XZ_CHECK_SHA256 = 10 +}; + +/* Maximum possible Check ID */ +#define XZ_CHECK_MAX 15 + +#endif diff --git a/busybox-1_37_0/archival/lzop.c b/busybox-1_37_0/archival/lzop.c new file mode 100644 index 000000000..bdcc6d548 --- /dev/null +++ b/busybox-1_37_0/archival/lzop.c @@ -0,0 +1,1145 @@ +/* + This file is part of the lzop file compressor. + + Copyright (C) 1996..2003 Markus Franz Xaver Johannes Oberhumer + All Rights Reserved. + + Markus F.X.J. Oberhumer + http://www.oberhumer.com/opensource/lzop/ + + lzop and the LZO library are free software; you can redistribute them + and/or modify them under the terms of the GNU General Public License as + published by the Free Software Foundation; either version 2 of + the License, or (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; see the file COPYING. + If not, write to the Free Software Foundation, Inc., + 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + + "Minimalized" for busybox by Alain Knaff +*/ +//config:config LZOP +//config: bool "lzop (13 kb)" +//config: default y +//config: help +//config: Lzop compression/decompresion. +//config: +//config:config UNLZOP +//config: bool "unlzop (13 kb)" +//config: default n # INCOMPAT: upstream lzop does not provide such tool +//config: help +//config: Lzop decompresion. +//config: +//config:config LZOPCAT +//config: bool "lzopcat (13 kb)" +//config: default n # INCOMPAT: upstream lzop does not provide such tool +//config: help +//config: Alias to "lzop -dc". +//config: +//config:config LZOP_COMPR_HIGH +//config: bool "lzop compression levels 7,8,9 (not very useful)" +//config: default n +//config: depends on LZOP || UNLZOP || LZOPCAT +//config: help +//config: High levels (7,8,9) of lzop compression. These levels +//config: are actually slower than gzip at equivalent compression ratios +//config: and take up 3.2K of code. + +//applet:IF_LZOP(APPLET(lzop, BB_DIR_BIN, BB_SUID_DROP)) +// APPLET_ODDNAME:name main location suid_type help +//applet:IF_UNLZOP( APPLET_ODDNAME(unlzop, lzop, BB_DIR_USR_BIN, BB_SUID_DROP, unlzop)) +//applet:IF_LZOPCAT(APPLET_ODDNAME(lzopcat, lzop, BB_DIR_USR_BIN, BB_SUID_DROP, lzopcat)) + +//kbuild:lib-$(CONFIG_LZOP) += lzop.o +//kbuild:lib-$(CONFIG_UNLZOP) += lzop.o +//kbuild:lib-$(CONFIG_LZOPCAT) += lzop.o + +//usage:#define lzop_trivial_usage +//usage: "[-cfUvd123456789CF] [FILE]..." +//usage:#define lzop_full_usage "\n\n" +//usage: " -1..9 Compression level" +//usage: "\n -d Decompress" +//usage: "\n -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -U Delete input files" +///////: "\n -k Keep input files" (default, so why bother documenting?) +//usage: "\n -v Verbose" +//usage: "\n -F Don't store or verify checksum" +//usage: "\n -C Also write checksum of compressed block" +//usage: +//usage:#define lzopcat_trivial_usage +//usage: "[-vF] [FILE]..." +//usage:#define lzopcat_full_usage "\n\n" +//usage: " -v Verbose" +//usage: "\n -F Don't verify checksum" +//usage: +//usage:#define unlzop_trivial_usage +//usage: "[-cfUvF] [FILE]..." +//usage:#define unlzop_full_usage "\n\n" +//usage: " -c Write to stdout" +//usage: "\n -f Force" +//usage: "\n -U Delete input files" +///////: "\n -k Keep input files" (default, so why bother documenting?) +//usage: "\n -t Test integrity" +//usage: "\n -v Verbose" +//usage: "\n -F Don't verify checksum" + +#include "libbb.h" +#include "common_bufsiz.h" +#include "bb_archive.h" +#include "liblzo_interface.h" + +/* lzo-2.03/src/lzo_ptr.h */ +#define pd(a,b) ((unsigned)((a)-(b))) + +#define lzo_version() LZO_VERSION +#define lzo_sizeof_dict_t (sizeof(uint8_t*)) + +/* lzo-2.03/include/lzo/lzo1x.h */ +#define LZO1X_1_MEM_COMPRESS (16384 * lzo_sizeof_dict_t) +#define LZO1X_1_15_MEM_COMPRESS (32768 * lzo_sizeof_dict_t) +#define LZO1X_999_MEM_COMPRESS (14 * 16384 * sizeof(short)) + +/* lzo-2.03/src/lzo1x_oo.c */ +#define NO_LIT UINT_MAX + +/**********************************************************************/ +static void copy2(uint8_t* ip, const uint8_t* m_pos, unsigned off) +{ + ip[0] = m_pos[0]; + if (off == 1) + ip[1] = m_pos[0]; + else + ip[1] = m_pos[1]; +} + +static void copy3(uint8_t* ip, const uint8_t* m_pos, unsigned off) +{ + ip[0] = m_pos[0]; + if (off == 1) { + ip[2] = ip[1] = m_pos[0]; + } + else if (off == 2) { + ip[1] = m_pos[1]; + ip[2] = m_pos[0]; + } + else { + ip[1] = m_pos[1]; + ip[2] = m_pos[2]; + } +} + +/**********************************************************************/ +// optimize a block of data. +/**********************************************************************/ +#define TEST_IP (ip < ip_end) +#define TEST_OP (op <= op_end) + +static NOINLINE int lzo1x_optimize(uint8_t *in, unsigned in_len, + uint8_t *out, unsigned *out_len /*, void* wrkmem */) +{ + uint8_t* op; + uint8_t* ip; + unsigned t; + uint8_t* m_pos; + uint8_t* const ip_end = in + in_len; + uint8_t* const op_end = out + *out_len; + uint8_t* litp = NULL; + unsigned lit = 0; + unsigned next_lit = NO_LIT; + unsigned nl; + unsigned long o_m1_a = 0, o_m1_b = 0, o_m2 = 0, o_m3_a = 0, o_m3_b = 0; + +// LZO_UNUSED(wrkmem); + + *out_len = 0; + + op = out; + ip = in; + + if (*ip > 17) { + t = *ip++ - 17; + if (t < 4) + goto match_next; + goto first_literal_run; + } + + while (TEST_IP && TEST_OP) { + t = *ip++; + if (t >= 16) + goto match; + /* a literal run */ + litp = ip - 1; + if (t == 0) { + t = 15; + while (*ip == 0) + t += 255, ip++; + t += *ip++; + } + lit = t + 3; + /* copy literals */ + copy_literal_run: + *op++ = *ip++; + *op++ = *ip++; + *op++ = *ip++; + first_literal_run: + do *op++ = *ip++; while (--t > 0); + + t = *ip++; + + if (t >= 16) + goto match; +#if defined(LZO1X) + m_pos = op - 1 - 0x800; +#elif defined(LZO1Y) + m_pos = op - 1 - 0x400; +#endif + m_pos -= t >> 2; + m_pos -= *ip++ << 2; + *op++ = *m_pos++; + *op++ = *m_pos++; + *op++ = *m_pos++; + lit = 0; + goto match_done; + + + /* handle matches */ + do { + if (t < 16) { /* a M1 match */ + m_pos = op - 1; + m_pos -= t >> 2; + m_pos -= *ip++ << 2; + + if (litp == NULL) + goto copy_m1; + + nl = ip[-2] & 3; + /* test if a match follows */ + if (nl == 0 && lit == 1 && ip[0] >= 16) { + next_lit = nl; + /* adjust length of previous short run */ + lit += 2; + *litp = (unsigned char)((*litp & ~3) | lit); + /* copy over the 2 literals that replace the match */ + copy2(ip-2, m_pos, pd(op, m_pos)); + o_m1_a++; + } + /* test if a literal run follows */ + else + if (nl == 0 + && ip[0] < 16 + && ip[0] != 0 + && (lit + 2 + ip[0] < 16) + ) { + t = *ip++; + /* remove short run */ + *litp &= ~3; + /* copy over the 2 literals that replace the match */ + copy2(ip-3+1, m_pos, pd(op, m_pos)); + /* move literals 1 byte ahead */ + litp += 2; + if (lit > 0) + memmove(litp+1, litp, lit); + /* insert new length of long literal run */ + lit += 2 + t + 3; + *litp = (unsigned char)(lit - 3); + + o_m1_b++; + *op++ = *m_pos++; + *op++ = *m_pos++; + goto copy_literal_run; + } + copy_m1: + *op++ = *m_pos++; + *op++ = *m_pos++; + } else { + match: + if (t >= 64) { /* a M2 match */ + m_pos = op - 1; +#if defined(LZO1X) + m_pos -= (t >> 2) & 7; + m_pos -= *ip++ << 3; + t = (t >> 5) - 1; +#elif defined(LZO1Y) + m_pos -= (t >> 2) & 3; + m_pos -= *ip++ << 2; + t = (t >> 4) - 3; +#endif + if (litp == NULL) + goto copy_m; + + nl = ip[-2] & 3; + /* test if in beetween two long literal runs */ + if (t == 1 && lit > 3 && nl == 0 + && ip[0] < 16 && ip[0] != 0 && (lit + 3 + ip[0] < 16) + ) { + t = *ip++; + /* copy over the 3 literals that replace the match */ + copy3(ip-1-2, m_pos, pd(op, m_pos)); + /* set new length of previous literal run */ + lit += 3 + t + 3; + *litp = (unsigned char)(lit - 3); + o_m2++; + *op++ = *m_pos++; + *op++ = *m_pos++; + *op++ = *m_pos++; + goto copy_literal_run; + } + } else { + if (t >= 32) { /* a M3 match */ + t &= 31; + if (t == 0) { + t = 31; + while (*ip == 0) + t += 255, ip++; + t += *ip++; + } + m_pos = op - 1; + m_pos -= *ip++ >> 2; + m_pos -= *ip++ << 6; + } else { /* a M4 match */ + m_pos = op; + m_pos -= (t & 8) << 11; + t &= 7; + if (t == 0) { + t = 7; + while (*ip == 0) + t += 255, ip++; + t += *ip++; + } + m_pos -= *ip++ >> 2; + m_pos -= *ip++ << 6; + if (m_pos == op) + goto eof_found; + m_pos -= 0x4000; + } + if (litp == NULL) + goto copy_m; + + nl = ip[-2] & 3; + /* test if in beetween two matches */ + if (t == 1 && lit == 0 && nl == 0 && ip[0] >= 16) { + next_lit = nl; + /* make a previous short run */ + lit += 3; + *litp = (unsigned char)((*litp & ~3) | lit); + /* copy over the 3 literals that replace the match */ + copy3(ip-3, m_pos, pd(op, m_pos)); + o_m3_a++; + } + /* test if a literal run follows */ + else if (t == 1 && lit <= 3 && nl == 0 + && ip[0] < 16 && ip[0] != 0 && (lit + 3 + ip[0] < 16) + ) { + t = *ip++; + /* remove short run */ + *litp &= ~3; + /* copy over the 3 literals that replace the match */ + copy3(ip-4+1, m_pos, pd(op, m_pos)); + /* move literals 1 byte ahead */ + litp += 2; + if (lit > 0) + memmove(litp+1,litp,lit); + /* insert new length of long literal run */ + lit += 3 + t + 3; + *litp = (unsigned char)(lit - 3); + + o_m3_b++; + *op++ = *m_pos++; + *op++ = *m_pos++; + *op++ = *m_pos++; + goto copy_literal_run; + } + } + copy_m: + *op++ = *m_pos++; + *op++ = *m_pos++; + do *op++ = *m_pos++; while (--t > 0); + } + + match_done: + if (next_lit == NO_LIT) { + t = ip[-2] & 3; + lit = t; + litp = ip - 2; + } + else + t = next_lit; + next_lit = NO_LIT; + if (t == 0) + break; + /* copy literals */ + match_next: + do *op++ = *ip++; while (--t > 0); + t = *ip++; + } while (TEST_IP && TEST_OP); + } + + /* no EOF code was found */ + *out_len = pd(op, out); + return LZO_E_EOF_NOT_FOUND; + + eof_found: +// LZO_UNUSED(o_m1_a); LZO_UNUSED(o_m1_b); LZO_UNUSED(o_m2); +// LZO_UNUSED(o_m3_a); LZO_UNUSED(o_m3_b); + *out_len = pd(op, out); + return (ip == ip_end ? LZO_E_OK : + (ip < ip_end ? LZO_E_INPUT_NOT_CONSUMED : LZO_E_INPUT_OVERRUN)); +} + +/**********************************************************************/ +#define F_OS F_OS_UNIX +#define F_CS F_CS_NATIVE + +/**********************************************************************/ +#define ADLER32_INIT_VALUE 1 +#define CRC32_INIT_VALUE 0 + +/**********************************************************************/ +enum { + M_LZO1X_1 = 1, + M_LZO1X_1_15 = 2, + M_LZO1X_999 = 3, +}; + +/**********************************************************************/ +/* header flags */ +#define F_ADLER32_D 0x00000001L +#define F_ADLER32_C 0x00000002L +#define F_H_EXTRA_FIELD 0x00000040L +#define F_H_GMTDIFF 0x00000080L +#define F_CRC32_D 0x00000100L +#define F_CRC32_C 0x00000200L +#define F_H_FILTER 0x00000800L +#define F_H_CRC32 0x00001000L +#define F_MASK 0x00003FFFL + +/* operating system & file system that created the file [mostly unused] */ +#define F_OS_UNIX 0x03000000L +#define F_OS_SHIFT 24 +#define F_OS_MASK 0xff000000L + +/* character set for file name encoding [mostly unused] */ +#define F_CS_NATIVE 0x00000000L +#define F_CS_SHIFT 20 +#define F_CS_MASK 0x00f00000L + +/* these bits must be zero */ +#define F_RESERVED ((F_MASK | F_OS_MASK | F_CS_MASK) ^ 0xffffffffL) + +typedef struct chksum_t { + uint32_t f_adler32; + uint32_t f_crc32; +} chksum_t; + +typedef struct header_t { + /* used to have auxiliary fields here */ + + /* Starting from here, the layout and endianness + * are exactly in on-disk format. + */ + uint16_t version_be16; + uint16_t lib_version_be16; + uint16_t version_needed_to_extract_be16; + uint8_t method; + uint8_t level; + uint32_t flags32; /* be32 on disk, but we keep this field in native order */ + uint32_t mode_be32; + uint32_t mtime_be32; + uint32_t gmtdiff_be32; + char len_and_name[1+255+1]; +} header_t; + +struct globals { + /*const uint32_t *lzo_crc32_table;*/ + chksum_t chksum; +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +//#define G (*ptr_to_globals) +#define INIT_G() do { \ + setup_common_bufsiz(); \ + /*SET_PTR_TO_GLOBALS(xzalloc(sizeof(G)));*/ \ +} while (0) + + +/**********************************************************************/ +#define LZOP_VERSION 0x1010 +//#define LZOP_VERSION_STRING "1.01" +//#define LZOP_VERSION_DATE "Apr 27th 2003" + +// lzop wants to be weird: +// unlike all other compressosrs, its -k "keep" option is the default, +// and -U is used to delete the source. We will invert the bit after getopt(). +#define OPTION_STRING "cfUvqdt123456789CFk" + +/* Note: must be kept in sync with archival/bbunzip.c */ +enum { + OPT_STDOUT = (1 << 0), + OPT_FORCE = (1 << 1), + OPT_KEEP = (1 << 2), + OPT_VERBOSE = (1 << 3), + OPT_QUIET = (1 << 4), + OPT_DECOMPRESS = (1 << 5), + OPT_TEST = (1 << 6), + OPT_1 = (1 << 7), + OPT_2 = (1 << 8), + OPT_3 = (1 << 9), + OPT_4 = (1 << 10), + OPT_5 = (1 << 11), + OPT_6 = (1 << 12), + OPT_7 = (1 << 13), + OPT_8 = (1 << 14), + OPT_9 = (1 << 15), + OPT_C = (1 << 16), + OPT_F = (1 << 17), + OPT_k = (1 << 18), + OPT_789 = OPT_7 | OPT_8 | OPT_9 +}; + +/**********************************************************************/ +// adler32 checksum +// adapted from free code by Mark Adler +// see http://www.zlib.org/ +/**********************************************************************/ +static FAST_FUNC uint32_t +lzo_adler32(uint32_t adler, const uint8_t* buf, unsigned len) +{ + enum { + LZO_BASE = 65521, /* largest prime smaller than 65536 */ + /* NMAX is the largest n such that + * 255n(n+1)/2 + (n+1)(BASE-1) <= 2^32-1 */ + LZO_NMAX = 5552, + }; + uint32_t s1 = adler & 0xffff; + uint32_t s2 = (adler >> 16) & 0xffff; + unsigned k; + + if (buf == NULL) + return 1; + + while (len > 0) { + k = len < LZO_NMAX ? (unsigned) len : LZO_NMAX; + len -= k; + if (k != 0) do { + s1 += *buf++; + s2 += s1; + } while (--k > 0); + s1 %= LZO_BASE; + s2 %= LZO_BASE; + } + return (s2 << 16) | s1; +} + +static FAST_FUNC uint32_t +lzo_crc32(uint32_t c, const uint8_t* buf, unsigned len) +{ + //if (buf == NULL) - impossible + // return 0; + + return ~crc32_block_endian0(~c, buf, len, global_crc32_table); +} + +/**********************************************************************/ +static void init_chksum(void) +{ + G.chksum.f_adler32 = ADLER32_INIT_VALUE; + G.chksum.f_crc32 = CRC32_INIT_VALUE; +} + +static void add_bytes_to_chksum(const void* buf, int cnt) +{ + /* We need to handle the two checksums at once, because at the + * beginning of the header, we don't know yet which one we'll + * eventually need */ + G.chksum.f_adler32 = lzo_adler32(G.chksum.f_adler32, (const uint8_t*)buf, cnt); + G.chksum.f_crc32 = lzo_crc32(G.chksum.f_crc32, (const uint8_t*)buf, cnt); +} + +static uint32_t chksum_getresult(uint32_t h_flags32) +{ + return (h_flags32 & F_H_CRC32) ? G.chksum.f_crc32 : G.chksum.f_adler32; +} + +/**********************************************************************/ +static uint32_t read32(void) +{ + uint32_t v; + xread(0, &v, 4); + return ntohl(v); +} +static void f_read(void* buf, int cnt) +{ + xread(0, buf, cnt); + add_bytes_to_chksum(buf, cnt); +} +//static int f_read8(void) +//{ +// uint8_t v; +// f_read(&v, 1); +// return v; +//} +//static unsigned f_read16(void) +//{ +// uint16_t v; +// f_read(&v, 2); +// return ntohs(v); +//} +static uint32_t f_read32(void) +{ + uint32_t v; + f_read(&v, 4); + return ntohl(v); +} + +static void write32(uint32_t v) +{ + v = htonl(v); + xwrite(1, &v, 4); +} +static void f_write(const void* buf, int cnt) +{ + xwrite(1, buf, cnt); + add_bytes_to_chksum(buf, cnt); +} +//static void f_write8(uint8_t v) +//{ +// f_write(&v, 1); +//} +//static void f_write16(uint16_t v) +//{ +// v = htons(v); +// f_write(&v, 2); +//} +//static void f_write32(uint32_t v) +//{ +// v = htonl(v); +// f_write(&v, 4); +//} + +/**********************************************************************/ +#define LZO_BLOCK_SIZE (256 * 1024l) +#define MAX_BLOCK_SIZE (64 * 1024l * 1024l) /* DO NOT CHANGE */ + +/* LZO may expand uncompressible data by a small amount */ +#define MAX_COMPRESSED_SIZE(x) ((x) + (x) / 16 + 64 + 3) + +/**********************************************************************/ +// compress a file +/**********************************************************************/ +static NOINLINE int lzo_compress(const header_t *h) +{ + unsigned block_size = LZO_BLOCK_SIZE; + int r = 0; /* LZO_E_OK */ + uint8_t *const b1 = xzalloc(block_size); + uint8_t *const b2 = xzalloc(MAX_COMPRESSED_SIZE(block_size)); + uint32_t d_adler32 = ADLER32_INIT_VALUE; + uint32_t d_crc32 = CRC32_INIT_VALUE; + uint8_t *wrk_mem = NULL; + + /* Only these methods are possible, see lzo_set_method(): + * -1: M_LZO1X_1_15 + * -2..6: M_LZO1X_1 + * -7..9: M_LZO1X_999 if ENABLE_LZOP_COMPR_HIGH + */ + if (h->method == M_LZO1X_1) + wrk_mem = xzalloc(LZO1X_1_MEM_COMPRESS); + else /* check only if it's not the only possibility */ + IF_LZOP_COMPR_HIGH(if (h->method == M_LZO1X_1_15)) + wrk_mem = xzalloc(LZO1X_1_15_MEM_COMPRESS); +#if ENABLE_LZOP_COMPR_HIGH + else /* must be h->method == M_LZO1X_999 */ + wrk_mem = xzalloc(LZO1X_999_MEM_COMPRESS); +#endif + + for (;;) { + unsigned src_len, dst_len; + int l; + uint32_t wordbuf[6]; + uint32_t *wordptr = wordbuf; + + /* read a block */ + l = full_read(0, b1, block_size); + src_len = (l > 0 ? l : 0); + + /* write uncompressed block size */ + /* exit if last block */ + if (src_len == 0) { + write32(0); + break; + } + *wordptr++ = htonl(src_len); + + /* compute checksum of uncompressed block */ + if (h->flags32 & F_ADLER32_D) + d_adler32 = lzo_adler32(ADLER32_INIT_VALUE, b1, src_len); + if (h->flags32 & F_CRC32_D) + d_crc32 = lzo_crc32(CRC32_INIT_VALUE, b1, src_len); + + /* compress */ + if (h->method == M_LZO1X_1) + r = lzo1x_1_compress(b1, src_len, b2, &dst_len, wrk_mem); + else IF_LZOP_COMPR_HIGH(if (h->method == M_LZO1X_1_15)) + r = lzo1x_1_15_compress(b1, src_len, b2, &dst_len, wrk_mem); +#if ENABLE_LZOP_COMPR_HIGH + else /* must be h->method == M_LZO1X_999 */ + r = lzo1x_999_compress_level(b1, src_len, b2, &dst_len, + wrk_mem, h->level); +#endif + if (r != 0) /* not LZO_E_OK */ + bb_error_msg_and_die("%s: %s", "internal error", "compression"); + + /* write compressed block size */ + if (dst_len < src_len) { + /* optimize */ + if (h->method == M_LZO1X_999) { + unsigned new_len = src_len; + r = lzo1x_optimize(b2, dst_len, b1, &new_len /*, NULL*/); + if (r != 0 /*LZO_E_OK*/ || new_len != src_len) + bb_error_msg_and_die("%s: %s", "internal error", "optimization"); + } + *wordptr++ = htonl(dst_len); + } else { + /* data actually expanded => store data uncompressed */ + *wordptr++ = htonl(src_len); + } + + /* write checksum of uncompressed block */ + if (h->flags32 & F_ADLER32_D) + *wordptr++ = htonl(d_adler32); + if (h->flags32 & F_CRC32_D) + *wordptr++ = htonl(d_crc32); + + if (dst_len < src_len) { + /* write checksum of compressed block */ + if (h->flags32 & F_ADLER32_C) + *wordptr++ = htonl(lzo_adler32(ADLER32_INIT_VALUE, b2, dst_len)); + if (h->flags32 & F_CRC32_C) + *wordptr++ = htonl(lzo_crc32(CRC32_INIT_VALUE, b2, dst_len)); + } + xwrite(1, wordbuf, ((char*)wordptr) - ((char*)wordbuf)); + if (dst_len < src_len) { + /* write compressed block data */ + xwrite(1, b2, dst_len); + } else { + /* write uncompressed block data */ + xwrite(1, b1, src_len); + } + // /* if full_read() was nevertheless "short", it was EOF */ + // if (src_len < block_size) + // break; + } + + free(wrk_mem); + free(b1); + free(b2); + return 1; +} + +static FAST_FUNC void lzo_check( + uint32_t init, + uint8_t* buf, unsigned len, + uint32_t FAST_FUNC (*fn)(uint32_t, const uint8_t*, unsigned), + uint32_t ref) +{ + /* This function, by having the same order of parameters + * as fn, and by being marked FAST_FUNC (same as fn), + * saves a dozen bytes of code. + */ + uint32_t c = fn(init, buf, len); + if (c != ref) + bb_simple_error_msg_and_die("checksum error"); +} + +/**********************************************************************/ +// decompress a file +/**********************************************************************/ +// used to have "const header_t *h" parameter, but since it uses +// only flags32 field, changed to receive only that. +static NOINLINE int lzo_decompress(uint32_t h_flags32) +{ + unsigned block_size = LZO_BLOCK_SIZE; + int r; + uint32_t src_len, dst_len; + uint32_t c_adler32 = ADLER32_INIT_VALUE; + uint32_t d_adler32 = ADLER32_INIT_VALUE; + uint32_t c_crc32 = CRC32_INIT_VALUE, d_crc32 = CRC32_INIT_VALUE; + uint8_t *b1; + uint32_t mcs_block_size = MAX_COMPRESSED_SIZE(block_size); + uint8_t *b2 = NULL; + + for (;;) { + uint8_t *dst; + + /* read uncompressed block size */ + dst_len = read32(); + + /* exit if last block */ + if (dst_len == 0) + break; + + /* error if split file */ + if (dst_len == 0xffffffffL) + /* should not happen - not yet implemented */ + bb_simple_error_msg_and_die("this file is a split lzop file"); + + if (dst_len > MAX_BLOCK_SIZE) + bb_simple_error_msg_and_die("corrupted data"); + + /* read compressed block size */ + src_len = read32(); + if (src_len <= 0 || src_len > dst_len) + bb_simple_error_msg_and_die("corrupted data"); + + if (dst_len > block_size) { + if (b2) { + free(b2); + b2 = NULL; + } + block_size = dst_len; + mcs_block_size = MAX_COMPRESSED_SIZE(block_size); + } + + /* read checksum of uncompressed block */ + if (h_flags32 & F_ADLER32_D) + d_adler32 = read32(); + if (h_flags32 & F_CRC32_D) + d_crc32 = read32(); + + /* read checksum of compressed block */ + if (src_len < dst_len) { + if (h_flags32 & F_ADLER32_C) + c_adler32 = read32(); + if (h_flags32 & F_CRC32_C) + c_crc32 = read32(); + } + + if (b2 == NULL) + b2 = xzalloc(mcs_block_size); + /* read the block into the end of our buffer */ + b1 = b2 + mcs_block_size - src_len; + xread(0, b1, src_len); + + if (src_len < dst_len) { + unsigned d = dst_len; + + if (!(option_mask32 & OPT_F)) { + /* verify checksum of compressed block */ + if (h_flags32 & F_ADLER32_C) + lzo_check(ADLER32_INIT_VALUE, + b1, src_len, + lzo_adler32, c_adler32); + if (h_flags32 & F_CRC32_C) + lzo_check(CRC32_INIT_VALUE, + b1, src_len, + lzo_crc32, c_crc32); + } + + /* decompress */ +// if (option_mask32 & OPT_F) +// r = lzo1x_decompress(b1, src_len, b2, &d /*, NULL*/); +// else + r = lzo1x_decompress_safe(b1, src_len, b2, &d /*, NULL*/); + + if (r != 0 /*LZO_E_OK*/ || dst_len != d) { + bb_simple_error_msg_and_die("corrupted data"); + } + dst = b2; + } else { + /* "stored" block => no decompression */ + dst = b1; + } + + if (!(option_mask32 & OPT_F)) { + /* verify checksum of uncompressed block */ + if (h_flags32 & F_ADLER32_D) + lzo_check(ADLER32_INIT_VALUE, + dst, dst_len, + lzo_adler32, d_adler32); + if (h_flags32 & F_CRC32_D) + lzo_check(CRC32_INIT_VALUE, + dst, dst_len, + lzo_crc32, d_crc32); + } + + /* write uncompressed block data */ + xwrite(1, dst, dst_len); + } + + free(b2); + return 1; +} + +/**********************************************************************/ +// lzop file signature (shamelessly borrowed from PNG) +/**********************************************************************/ +/* + * The first nine bytes of a lzop file always contain the following values: + * + * 0 1 2 3 4 5 6 7 8 + * --- --- --- --- --- --- --- --- --- + * (hex) 89 4c 5a 4f 00 0d 0a 1a 0a + * (decimal) 137 76 90 79 0 13 10 26 10 + * (C notation - ASCII) \211 L Z O \0 \r \n \032 \n + */ + +/* (vda) comparison with lzop v1.02rc1 ("lzop -1 len_and_name+1 + 0; /* 0 is strlen(h->len_and_name+1) */ + /* Store length byte */ + /*h->len_and_name[0] = end - (h->len_and_name+1); - zero already */ + + f_write(&h->version_be16, end - (char*)&h->version_be16); + + h->flags32 = htonl(h->flags32); /* native endianness for lzo_compress() */ + + write32(chksum_getresult(h->flags32)); +} + +static int read_header(header_t *h) +{ + int l; + uint32_t checksum; + /* As it stands now, only h->flags32 is used by our caller. + * Therefore we don't store many fields in h->FIELD. + */ + unsigned h_version; + unsigned h_version_needed_to_extract; + + init_chksum(); + + /* We don't support versions < 0.94, since 0.94 + * came only 2 months after 0.90: + * 0.90 (10 Aug 1997): First public release of lzop + * 0.94 (15 Oct 1997): Header format change + */ + + /* Read up to and including name length byte */ + f_read(&h->version_be16, ((char*)&h->len_and_name[1]) - ((char*)&h->version_be16)); + + h_version = htons(h->version_be16); + if (h_version < 0x0940) + return 3; + h_version_needed_to_extract = htons(h->version_needed_to_extract_be16); + if (h_version_needed_to_extract > LZOP_VERSION) + return 16; + if (h_version_needed_to_extract < 0x0940) + return 3; + + if (h->method <= 0) + return 14; + + /* former lzo_get_method(h): */ + if (h->method == M_LZO1X_1) { + if (h->level == 0) + h->level = 3; + } else if (h->method == M_LZO1X_1_15) { + if (h->level == 0) + h->level = 1; + } else if (h->method == M_LZO1X_999) { + if (h->level == 0) + h->level = 9; + } else + return -1; /* not a LZO method */ + /* check compression level */ + if (h->level < 1 || h->level > 9) + return 15; + + h->flags32 = ntohl(h->flags32); + if (h->flags32 & F_H_FILTER) + return 16; /* filter not supported */ + /* check reserved flags */ + if (h->flags32 & F_RESERVED) + return -13; + + l = h->len_and_name[0]; + if (l > 0) + /* UNUSED */ f_read(h->len_and_name+1, l); + /* UNUSED h->len_and_name[1+l] = 0; */ + + checksum = chksum_getresult(h->flags32); + if (read32() != checksum) + return 2; + + /* skip extra field [not used yet] */ + if (h->flags32 & F_H_EXTRA_FIELD) { + uint32_t extra_field_len; + uint32_t extra_field_checksum; + uint32_t k; + char dummy; + + /* note: the checksum also covers the length */ + init_chksum(); + extra_field_len = f_read32(); + for (k = 0; k < extra_field_len; k++) + f_read(&dummy, 1); + checksum = chksum_getresult(h->flags32); + extra_field_checksum = read32(); + if (extra_field_checksum != checksum) + return 3; + } + + return 0; +} + +/**********************************************************************/ +// compress +/**********************************************************************/ +static void lzo_set_method(header_t *h) +{ + smallint level; + + /* levels 2..6 or none (defaults to level 3) */ + h->method = M_LZO1X_1; + level = 5; /* levels 2-6 are actually the same */ + + if (option_mask32 & OPT_1) { + h->method = M_LZO1X_1_15; + level = 1; + } + if (option_mask32 & OPT_789) { +#if ENABLE_LZOP_COMPR_HIGH + h->method = M_LZO1X_999; + level = 9; + if (option_mask32 & OPT_7) + level = 7; + else if (option_mask32 & OPT_8) + level = 8; +#else + bb_simple_error_msg_and_die("high compression not compiled in"); +#endif + } + + h->level = level; +} + +static int do_lzo_compress(void) +{ + header_t header; + +#define h (&header) + memset(h, 0, sizeof(*h)); + + lzo_set_method(h); + + h->version_be16 = htons(LZOP_VERSION & 0xffff); + h->version_needed_to_extract_be16 = htons(0x0940); + h->lib_version_be16 = htons(lzo_version() & 0xffff); + + h->flags32 = htonl((F_OS & F_OS_MASK) | (F_CS & F_CS_MASK)); + + if (!(option_mask32 & OPT_F) || h->method == M_LZO1X_999) { + h->flags32 |= htonl(F_ADLER32_D); + if (option_mask32 & OPT_C) + h->flags32 |= htonl(F_ADLER32_C); + } + + /* write_header() also converts h->flags32 to native endianness */ + write_header(h); + + return lzo_compress(h); +#undef h +} + +/**********************************************************************/ +// decompress +/**********************************************************************/ +static int do_lzo_decompress(void) +{ + int r; + header_t header; + + check_magic(); + r = read_header(&header); + if (r != 0) + bb_error_msg_and_die("header_error %d", r); + return lzo_decompress(header.flags32); +} + +static char* FAST_FUNC make_new_name_lzop(char *filename, const char *expected_ext UNUSED_PARAM) +{ + if (option_mask32 & OPT_DECOMPRESS) { + char *extension = strrchr(filename, '.'); + if (!extension || strcmp(extension + 1, "lzo") != 0) + return xasprintf("%s.out", filename); + *extension = '\0'; + return filename; + } + return xasprintf("%s.lzo", filename); +} + +static IF_DESKTOP(long long) int FAST_FUNC pack_lzop(transformer_state_t *xstate UNUSED_PARAM) +{ + if (option_mask32 & OPT_DECOMPRESS) + return do_lzo_decompress(); + return do_lzo_compress(); +} + +int lzop_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int lzop_main(int argc UNUSED_PARAM, char **argv) +{ + INIT_G(); + + getopt32(argv, OPTION_STRING); + argv += optind; + /* -U is "anti -k", invert bit for bbunpack(): */ + option_mask32 ^= OPT_KEEP; + /* -k disables -U (if any): */ + /* opt_complementary "k-U"? - nope, only handles -Uk, not -kU */ + if (option_mask32 & OPT_k) + option_mask32 |= OPT_KEEP; + + /* lzopcat? */ + if (ENABLE_LZOPCAT && applet_name[4] == 'c') + option_mask32 |= (OPT_STDOUT | OPT_DECOMPRESS); + /* unlzop? */ + if (ENABLE_UNLZOP && applet_name[4] == 'o') + option_mask32 |= OPT_DECOMPRESS; + + global_crc32_new_table_le(); + return bbunpack(argv, pack_lzop, make_new_name_lzop, /*unused:*/ NULL); +} diff --git a/busybox-1_37_0/archival/rpm.c b/busybox-1_37_0/archival/rpm.c new file mode 100644 index 000000000..af8db99a6 --- /dev/null +++ b/busybox-1_37_0/archival/rpm.c @@ -0,0 +1,561 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini rpm applet for busybox + * + * Copyright (C) 2001,2002 by Laurence Anderson + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config RPM +//config: bool "rpm (32 kb)" +//config: default y +//config: help +//config: Mini RPM applet - queries and extracts RPM packages. + +//applet:IF_RPM(APPLET(rpm, BB_DIR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_RPM) += rpm.o + +#include "libbb.h" +#include "common_bufsiz.h" +#include "bb_archive.h" +#include "rpm.h" + +#define RPM_CHAR_TYPE 1 +#define RPM_INT8_TYPE 2 +#define RPM_INT16_TYPE 3 +#define RPM_INT32_TYPE 4 +/* #define RPM_INT64_TYPE 5 ---- These aren't supported (yet) */ +#define RPM_STRING_TYPE 6 +#define RPM_BIN_TYPE 7 +#define RPM_STRING_ARRAY_TYPE 8 +#define RPM_I18NSTRING_TYPE 9 + +#define TAG_NAME 1000 +#define TAG_VERSION 1001 +#define TAG_RELEASE 1002 +#define TAG_SUMMARY 1004 +#define TAG_DESCRIPTION 1005 +#define TAG_BUILDTIME 1006 +#define TAG_BUILDHOST 1007 +#define TAG_SIZE 1009 +#define TAG_VENDOR 1011 +#define TAG_LICENSE 1014 +#define TAG_PACKAGER 1015 +#define TAG_GROUP 1016 +#define TAG_URL 1020 +#define TAG_PREIN 1023 +#define TAG_POSTIN 1024 +#define TAG_FILEFLAGS 1037 +#define TAG_FILEUSERNAME 1039 +#define TAG_FILEGROUPNAME 1040 +#define TAG_SOURCERPM 1044 +#define TAG_PREINPROG 1085 +#define TAG_POSTINPROG 1086 +#define TAG_PREFIXS 1098 +#define TAG_DIRINDEXES 1116 +#define TAG_BASENAMES 1117 +#define TAG_DIRNAMES 1118 +#define TAG_PAYLOADCOMPRESSOR 1125 + + +#define RPMFILE_CONFIG (1 << 0) +#define RPMFILE_DOC (1 << 1) + +enum rpm_functions_e { + rpm_query = 1, + rpm_install = 2, + rpm_query_info = 4, + rpm_query_package = 8, + rpm_query_list = 16, + rpm_query_list_doc = 32, + rpm_query_list_config = 64 +}; + +typedef struct { + uint32_t tag; /* 4 byte tag */ + uint32_t type; /* 4 byte type */ + uint32_t offset; /* 4 byte offset */ + uint32_t count; /* 4 byte count */ +} rpm_index; + +struct globals { + void *map; + rpm_index *mytags; + int tagcount; + unsigned mapsize; + IF_VARIABLE_ARCH_PAGESIZE(unsigned pagesize;) +#define G_pagesize cached_pagesize(G.pagesize) +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { setup_common_bufsiz(); } while (0) + +static int rpm_gettags(const char *filename) +{ + rpm_index *tags; + int fd; + unsigned pass, idx; + unsigned storepos; + + if (!filename) { /* rpm2cpio w/o filename? */ + filename = bb_msg_standard_output; + fd = 0; + } else { + fd = xopen(filename, O_RDONLY); + } + + storepos = xlseek(fd, 96, SEEK_CUR); /* Seek past the unused lead */ + G.tagcount = 0; + tags = NULL; + idx = 0; + /* 1st pass is the signature headers, 2nd is the main stuff */ + for (pass = 0; pass < 2; pass++) { + struct rpm_header header; + unsigned cnt; + + xread(fd, &header, sizeof(header)); + if (header.magic_and_ver != htonl(RPM_HEADER_MAGICnVER)) + bb_error_msg_and_die("invalid RPM header magic in '%s'", filename); + header.size = ntohl(header.size); + cnt = ntohl(header.entries); + storepos += sizeof(header) + cnt * 16; + + G.tagcount += cnt; + tags = xrealloc(tags, sizeof(tags[0]) * G.tagcount); + xread(fd, &tags[idx], sizeof(tags[0]) * cnt); + while (cnt--) { + rpm_index *tag = &tags[idx]; + tag->tag = ntohl(tag->tag); + tag->type = ntohl(tag->type); + tag->count = ntohl(tag->count); + tag->offset = storepos + ntohl(tag->offset); + if (pass == 0) + tag->tag -= 743; + idx++; + } + /* Skip padding to 8 byte boundary after reading signature headers */ + if (pass == 0) + while (header.size & 7) + header.size++; + /* Seek past store */ + storepos = xlseek(fd, header.size, SEEK_CUR); + } + G.mytags = tags; + + /* Map the store */ + storepos = (storepos + G_pagesize) & -(int)G_pagesize; + /* remember size for munmap */ + G.mapsize = storepos; + /* some NOMMU systems prefer MAP_PRIVATE over MAP_SHARED */ + G.map = mmap_read(fd, storepos); + if (G.map == MAP_FAILED) + bb_perror_msg_and_die("mmap '%s'", filename); + + return fd; +} + +static int bsearch_rpmtag(const void *key, const void *item) +{ + int *tag = (int *)key; + rpm_index *tmp = (rpm_index *) item; + return (*tag - tmp->tag); +} + +static char *rpm_getstr(int tag, int itemindex) +{ + rpm_index *found; + found = bsearch(&tag, G.mytags, G.tagcount, sizeof(G.mytags[0]), bsearch_rpmtag); + if (!found || itemindex >= found->count) + return NULL; + if (found->type == RPM_STRING_TYPE + || found->type == RPM_I18NSTRING_TYPE + || found->type == RPM_STRING_ARRAY_TYPE + ) { + int n; + char *tmpstr = (char *) G.map + found->offset; + for (n = 0; n < itemindex; n++) + tmpstr = tmpstr + strlen(tmpstr) + 1; + return tmpstr; + } + return NULL; +} +static char *rpm_getstr0(int tag) +{ + return rpm_getstr(tag, 0); +} + +#if ENABLE_RPM + +static int rpm_getint(int tag, int itemindex) +{ + rpm_index *found; + char *tmpint; + + /* gcc throws warnings here when sizeof(void*)!=sizeof(int) ... + * it's ok to ignore it because tag won't be used as a pointer */ + found = bsearch(&tag, G.mytags, G.tagcount, sizeof(G.mytags[0]), bsearch_rpmtag); + if (!found || itemindex >= found->count) + return -1; + + tmpint = (char *) G.map + found->offset; + if (found->type == RPM_INT32_TYPE) { + tmpint += itemindex*4; + return ntohl(*(int32_t*)tmpint); + } + if (found->type == RPM_INT16_TYPE) { + tmpint += itemindex*2; + return ntohs(*(int16_t*)tmpint); + } + if (found->type == RPM_INT8_TYPE) { + tmpint += itemindex; + return *(int8_t*)tmpint; + } + return -1; +} + +static int rpm_getcount(int tag) +{ + rpm_index *found; + found = bsearch(&tag, G.mytags, G.tagcount, sizeof(G.mytags[0]), bsearch_rpmtag); + if (!found) + return 0; + return found->count; +} + +static void fileaction_dobackup(char *filename, int fileref) +{ + struct stat oldfile; + int stat_res; + char *newname; + if (rpm_getint(TAG_FILEFLAGS, fileref) & RPMFILE_CONFIG) { + /* Only need to backup config files */ + stat_res = lstat(filename, &oldfile); + if (stat_res == 0 && S_ISREG(oldfile.st_mode)) { + /* File already exists - really should check MD5's etc to see if different */ + newname = xasprintf("%s.rpmorig", filename); + copy_file(filename, newname, FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS); + remove_file(filename, FILEUTILS_RECUR | FILEUTILS_FORCE); + free(newname); + } + } +} + +static void fileaction_setowngrp(char *filename, int fileref) +{ + /* real rpm warns: "user foo does not exist - using " */ + struct passwd *pw = getpwnam(rpm_getstr(TAG_FILEUSERNAME, fileref)); + int uid = pw ? pw->pw_uid : getuid(); /* or euid? */ + struct group *gr = getgrnam(rpm_getstr(TAG_FILEGROUPNAME, fileref)); + int gid = gr ? gr->gr_gid : getgid(); + chown(filename, uid, gid); +} + +static void loop_through_files(int filetag, void (*fileaction)(char *filename, int fileref)) +{ + int count = 0; + while (rpm_getstr(filetag, count)) { + char* filename = xasprintf("%s%s", + rpm_getstr(TAG_DIRNAMES, rpm_getint(TAG_DIRINDEXES, count)), + rpm_getstr(TAG_BASENAMES, count)); + fileaction(filename, count++); + free(filename); + } +} + +#if 0 //DEBUG +static void print_all_tags(void) +{ + unsigned i = 0; + while (i < G.tagcount) { + rpm_index *tag = &G.mytags[i]; + if (tag->type == RPM_STRING_TYPE + || tag->type == RPM_I18NSTRING_TYPE + || tag->type == RPM_STRING_ARRAY_TYPE + ) { + unsigned n; + char *str = (char *) G.map + tag->offset; + + printf("tag[%u] %08x type %08x offset %08x count %d '%s'\n", + i, tag->tag, tag->type, tag->offset, tag->count, str + ); + for (n = 1; n < tag->count; n++) { + str += strlen(str) + 1; + printf("\t'%s'\n", str); + } + } + i++; + } +} +#else +#define print_all_tags() ((void)0) +#endif + +static void extract_cpio(int fd, const char *source_rpm) +{ + archive_handle_t *archive_handle; + + if (source_rpm != NULL) { + /* Binary rpm (it was built from some SRPM), install to root */ + xchdir("/"); + } /* else: SRPM, install to current dir */ + + /* Initialize */ + archive_handle = init_handle(); + archive_handle->seek = seek_by_read; + archive_handle->action_data = data_extract_all; +#if 0 /* For testing (rpm -i only lists the files in internal cpio): */ + archive_handle->action_header = header_list; + archive_handle->action_data = data_skip; +#endif + archive_handle->ah_flags = ARCHIVE_RESTORE_DATE | ARCHIVE_CREATE_LEADING_DIRS + /* compat: overwrite existing files. + * try "rpm -i foo.src.rpm" few times in a row - + * standard rpm will not complain. + */ + | ARCHIVE_REPLACE_VIA_RENAME; + archive_handle->src_fd = fd; + /*archive_handle->offset = 0; - init_handle() did it */ + + setup_unzip_on_fd(archive_handle->src_fd, /*fail_if_not_compressed:*/ 1); + while (get_header_cpio(archive_handle) == EXIT_SUCCESS) + continue; +} + +//usage:#define rpm_trivial_usage +//usage: "-i PACKAGE.rpm; rpm -qp[ildc] PACKAGE.rpm" +//usage:#define rpm_full_usage "\n\n" +//usage: "Manipulate RPM packages\n" +//usage: "\nCommands:" +//usage: "\n -i Install package" +//usage: "\n -qp Query package" +//usage: "\n -qpi Show information" +//usage: "\n -qpl List contents" +//usage: "\n -qpd List documents" +//usage: "\n -qpc List config files" + +/* RPM version 4.13.0.1: + * Unlike -q, -i seems to imply -p: -i, -ip and -pi work the same. + * OTOH, with -q order is important: "-piq FILE.rpm" works as -qp, not -qpi + * (IOW: shows only package name, not package info). + * "-iq ARG" works as -q: treats ARG as package name, not a file. + * + * "man rpm" on -l option and options implying it: + * -l, --list List files in package. + * -c, --configfiles List only configuration files (implies -l). + * -d, --docfiles List only documentation files (implies -l). + * -L, --licensefiles List only license files (implies -l). + * --dump Dump file information as follows (implies -l): + * path size mtime digest mode owner group isconfig isdoc rdev symlink + * -s, --state Display the states of files in the package (implies -l). + * The state of each file is one of normal, not installed, or replaced. + * + * Looks like we can switch to getopt32 here: in practice, people + * do place -q first if they intend to use it (misinterpreting "-piq" wouldn't matter). + */ +int rpm_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int rpm_main(int argc, char **argv) +{ + int opt, func = 0; + + INIT_G(); + INIT_PAGESIZE(G.pagesize); + + while ((opt = getopt(argc, argv, "iqpldc")) != -1) { + switch (opt) { + case 'i': /* First arg: Install mode, with q: Information */ + if (!func) func = rpm_install; + else func |= rpm_query_info; + break; + case 'q': /* First arg: Query mode */ + if (func) bb_show_usage(); + func = rpm_query; + break; + case 'p': /* Query a package (IOW: .rpm file, we are not querying RPMDB) */ + func |= rpm_query_package; + break; + case 'l': /* List files in a package */ + func |= rpm_query_list; + break; + case 'd': /* List doc files in a package (implies -l) */ + func |= rpm_query_list; + func |= rpm_query_list_doc; + break; + case 'c': /* List config files in a package (implies -l) */ + func |= rpm_query_list; + func |= rpm_query_list_config; + break; + default: + bb_show_usage(); + } + } + argv += optind; + //argc -= optind; + if (!argv[0]) { + bb_show_usage(); + } + + for (;;) { + int rpm_fd; + const char *source_rpm; + + rpm_fd = rpm_gettags(*argv); + print_all_tags(); + + source_rpm = rpm_getstr0(TAG_SOURCERPM); + + if (func & rpm_install) { + /* -i (and not -qi) */ + + /* Backup any config files */ + loop_through_files(TAG_BASENAMES, fileaction_dobackup); + /* Extact the archive */ + extract_cpio(rpm_fd, source_rpm); + /* Set the correct file uid/gid's */ + loop_through_files(TAG_BASENAMES, fileaction_setowngrp); + } + else + if ((func & (rpm_query|rpm_query_package)) == (rpm_query|rpm_query_package)) { + /* -qp */ + + if (!(func & (rpm_query_info|rpm_query_list))) { + /* If just a straight query, just give package name */ + printf("%s-%s-%s\n", rpm_getstr0(TAG_NAME), rpm_getstr0(TAG_VERSION), rpm_getstr0(TAG_RELEASE)); + } + if (func & rpm_query_info) { + /* Do the nice printout */ + time_t bdate_time; + struct tm *bdate_ptm; + char bdatestring[50]; + const char *p; + + printf("%-12s: %s\n", "Name" , rpm_getstr0(TAG_NAME)); + /* TODO compat: add "Epoch" here */ + printf("%-12s: %s\n", "Version" , rpm_getstr0(TAG_VERSION)); + printf("%-12s: %s\n", "Release" , rpm_getstr0(TAG_RELEASE)); + /* add "Architecture" */ + /* printf("%-12s: %s\n", "Install Date", "(not installed)"); - we don't know */ + printf("%-12s: %s\n", "Group" , rpm_getstr0(TAG_GROUP)); + printf("%-12s: %d\n", "Size" , rpm_getint(TAG_SIZE, 0)); + printf("%-12s: %s\n", "License" , rpm_getstr0(TAG_LICENSE)); + /* add "Signature" */ + printf("%-12s: %s\n", "Source RPM" , source_rpm ? source_rpm : "(none)"); + bdate_time = rpm_getint(TAG_BUILDTIME, 0); + bdate_ptm = localtime(&bdate_time); + strftime(bdatestring, 50, "%a %d %b %Y %T %Z", bdate_ptm); + printf("%-12s: %s\n", "Build Date" , bdatestring); + printf("%-12s: %s\n", "Build Host" , rpm_getstr0(TAG_BUILDHOST)); + p = rpm_getstr0(TAG_PREFIXS); + printf("%-12s: %s\n", "Relocations" , p ? p : "(not relocatable)"); + /* add "Packager" */ + p = rpm_getstr0(TAG_VENDOR); + if (p) /* rpm 4.13.0.1 does not show "(none)" for Vendor: */ + printf("%-12s: %s\n", "Vendor" , p); + p = rpm_getstr0(TAG_URL); + if (p) /* rpm 4.13.0.1 does not show "(none)"/"(null)" for URL: */ + printf("%-12s: %s\n", "URL" , p); + printf("%-12s: %s\n", "Summary" , rpm_getstr0(TAG_SUMMARY)); + printf("Description :\n%s\n", rpm_getstr0(TAG_DESCRIPTION)); + } + if (func & rpm_query_list) { + int count, it, flags; + count = rpm_getcount(TAG_BASENAMES); + for (it = 0; it < count; it++) { + flags = rpm_getint(TAG_FILEFLAGS, it); + switch (func & (rpm_query_list_doc|rpm_query_list_config)) { + case rpm_query_list_doc: + if (!(flags & RPMFILE_DOC)) continue; + break; + case rpm_query_list_config: + if (!(flags & RPMFILE_CONFIG)) continue; + break; + case rpm_query_list_doc|rpm_query_list_config: + if (!(flags & (RPMFILE_CONFIG|RPMFILE_DOC))) continue; + break; + } + printf("%s%s\n", + rpm_getstr(TAG_DIRNAMES, rpm_getint(TAG_DIRINDEXES, it)), + rpm_getstr(TAG_BASENAMES, it)); + } + } + } else { + /* Unsupported (help text shows what we support) */ + bb_show_usage(); + } + if (!*++argv) + break; + munmap(G.map, G.mapsize); + free(G.mytags); + close(rpm_fd); + } + + return 0; +} + +#endif /* RPM */ + +/* + * Mini rpm2cpio implementation for busybox + * + * Copyright (C) 2001 by Laurence Anderson + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config RPM2CPIO +//config: bool "rpm2cpio (21 kb)" +//config: default y +//config: help +//config: Converts a RPM file into a CPIO archive. + +//applet:IF_RPM2CPIO(APPLET(rpm2cpio, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_RPM2CPIO) += rpm.o + +//usage:#define rpm2cpio_trivial_usage +//usage: "PACKAGE.rpm" +//usage:#define rpm2cpio_full_usage "\n\n" +//usage: "Output a cpio archive of the rpm file" + +#if ENABLE_RPM2CPIO + +/* No getopt required */ +int rpm2cpio_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int rpm2cpio_main(int argc UNUSED_PARAM, char **argv) +{ + const char *str; + int rpm_fd; + + INIT_G(); + INIT_PAGESIZE(G.pagesize); + + rpm_fd = rpm_gettags(argv[1]); + + //if (SEAMLESS_COMPRESSION) - we do this at the end instead. + // /* We need to know whether child (gzip/bzip/etc) exits abnormally */ + // signal(SIGCHLD, check_errors_in_children); + + if (ENABLE_FEATURE_SEAMLESS_LZMA + && (str = rpm_getstr0(TAG_PAYLOADCOMPRESSOR)) != NULL + && strcmp(str, "lzma") == 0 + ) { + // lzma compression can't be detected + // set up decompressor without detection + setup_lzma_on_fd(rpm_fd); + } else { + setup_unzip_on_fd(rpm_fd, /*fail_if_not_compressed:*/ 1); + } + + if (bb_copyfd_eof(rpm_fd, STDOUT_FILENO) < 0) + bb_simple_error_msg_and_die("error unpacking"); + + if (ENABLE_FEATURE_CLEAN_UP) { + close(rpm_fd); + } + + if (SEAMLESS_COMPRESSION) { + check_errors_in_children(0); + return bb_got_signal; + } + return EXIT_SUCCESS; +} + +#endif /* RPM2CPIO */ diff --git a/busybox-1_37_0/archival/rpm.h b/busybox-1_37_0/archival/rpm.h new file mode 100644 index 000000000..afe2b550c --- /dev/null +++ b/busybox-1_37_0/archival/rpm.h @@ -0,0 +1,38 @@ +/* vi: set sw=4 ts=4: */ +/* + * RPM structs and consts + * + * Copyright (C) 2001 by Laurence Anderson + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ + +/* RPM file starts with this struct: */ +struct rpm_lead { + uint32_t magic; + uint8_t major, minor; + uint16_t type; + uint16_t archnum; + char name[66]; + uint16_t osnum; + uint16_t signature_type; + char reserved[16]; +}; +struct BUG_rpm_lead { + char bug[sizeof(struct rpm_lead) == 96 ? 1 : -1]; +}; +#define RPM_LEAD_MAGIC 0xedabeedb +#define RPM_LEAD_MAGIC_STR "\355\253\356\333" + +/* Then follows the header: */ +struct rpm_header { + uint32_t magic_and_ver; /* 3 byte magic: 0x8e 0xad 0xe8; 1 byte version: 0x01 */ + uint32_t reserved; /* 4 bytes reserved */ + uint32_t entries; /* Number of entries in header (4 bytes) */ + uint32_t size; /* Size of store (4 bytes) */ +}; +struct BUG_rpm_header { + char bug[sizeof(struct rpm_header) == 16 ? 1 : -1]; +}; +#define RPM_HEADER_MAGICnVER 0x8eade801 +#define RPM_HEADER_MAGIC_STR "\216\255\350" diff --git a/busybox-1_37_0/archival/tar.c b/busybox-1_37_0/archival/tar.c new file mode 100644 index 000000000..d6ca6c1e0 --- /dev/null +++ b/busybox-1_37_0/archival/tar.c @@ -0,0 +1,1286 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini tar implementation for busybox + * + * Modified to use common extraction code used by ar, cpio, dpkg-deb, dpkg + * by Glenn McGrath + * + * Note, that as of BusyBox-0.43, tar has been completely rewritten from the + * ground up. It still has remnants of the old code lying about, but it is + * very different now (i.e., cleaner, less global variables, etc.) + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Based in part in the tar implementation in sash + * Copyright (c) 1999 by David I. Bell + * Permission is granted to use, distribute, or modify this source, + * provided that this copyright notice remains intact. + * Permission to distribute sash derived code under GPL has been granted. + * + * Based in part on the tar implementation from busybox-0.28 + * Copyright (C) 1995 Bruce Perens + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config TAR +//config: bool "tar (39 kb)" +//config: default y +//config: help +//config: tar is an archiving program. It's commonly used with gzip to +//config: create compressed archives. It's probably the most widely used +//config: UNIX archive program. +//config: +//config:config FEATURE_TAR_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on TAR && LONG_OPTS +//config: +//config:config FEATURE_TAR_CREATE +//config: bool "Enable -c (archive creation)" +//config: default y +//config: depends on TAR +//config: +//config:config FEATURE_TAR_AUTODETECT +//config: bool "Autodetect compressed tarballs" +//config: default y +//config: depends on TAR && (FEATURE_SEAMLESS_Z || FEATURE_SEAMLESS_GZ || FEATURE_SEAMLESS_BZ2 || FEATURE_SEAMLESS_LZMA || FEATURE_SEAMLESS_XZ) +//config: help +//config: With this option tar can automatically detect compressed +//config: tarballs. Currently it works only on files (not pipes etc). +//config: +//config:config FEATURE_TAR_FROM +//config: bool "Enable -X (exclude from) and -T (include from) options" +//config: default y +//config: depends on TAR +//config: help +//config: If you enable this option you'll be able to specify +//config: a list of files to include or exclude from an archive. +//config: +//config:config FEATURE_TAR_OLDGNU_COMPATIBILITY +//config: bool "Support old tar header format" +//config: default y +//config: depends on TAR || DPKG +//config: help +//config: This option is required to unpack archives created in +//config: the old GNU format; help to kill this old format by +//config: repacking your ancient archives with the new format. +//config: +//config:config FEATURE_TAR_OLDSUN_COMPATIBILITY +//config: bool "Enable untarring of tarballs with checksums produced by buggy Sun tar" +//config: default y +//config: depends on TAR || DPKG +//config: help +//config: This option is required to unpack archives created by some old +//config: version of Sun's tar (it was calculating checksum using signed +//config: arithmetic). It is said to be fixed in newer Sun tar, but "old" +//config: tarballs still exist. +//config: +//config:config FEATURE_TAR_GNU_EXTENSIONS +//config: bool "Support GNU tar extensions (long filenames)" +//config: default y +//config: depends on TAR || DPKG +//config: +//config:config FEATURE_TAR_TO_COMMAND +//config: bool "Support writing to an external program (--to-command)" +//config: default y +//config: depends on TAR && FEATURE_TAR_LONG_OPTIONS +//config: help +//config: If you enable this option you'll be able to instruct tar to send +//config: the contents of each extracted file to the standard input of an +//config: external program. +//config: +//config:config FEATURE_TAR_UNAME_GNAME +//config: bool "Enable use of user and group names" +//config: default y +//config: depends on TAR +//config: help +//config: Enable use of user and group names in tar. This affects contents +//config: listings (-t) and preserving permissions when unpacking (-p). +//config: +200 bytes. +//config: +//config:config FEATURE_TAR_NOPRESERVE_TIME +//config: bool "Enable -m (do not preserve time) GNU option" +//config: default y +//config: depends on TAR +//config: +//config:config FEATURE_TAR_SELINUX +//config: bool "Support extracting SELinux labels" +//config: default n +//config: depends on TAR && SELINUX +//config: help +//config: With this option busybox supports restoring SELinux labels +//config: when extracting files from tar archives. + +//applet:IF_TAR(APPLET(tar, BB_DIR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_TAR) += tar.o + +#include +#include "libbb.h" +#include "common_bufsiz.h" +#include "bb_archive.h" +/* FIXME: Stop using this non-standard feature */ +#ifndef FNM_LEADING_DIR +# define FNM_LEADING_DIR 0 +#endif + +#if 0 +# define DBG(fmt, ...) bb_error_msg("%s: " fmt, __func__, ## __VA_ARGS__) +#else +# define DBG(...) ((void)0) +#endif +#define DBG_OPTION_PARSING 0 + + +#define block_buf bb_common_bufsiz1 +#define INIT_G() do { setup_common_bufsiz(); } while (0) + + +#if ENABLE_FEATURE_TAR_CREATE + +/* +** writeTarFile(), writeFileToTarball(), and writeTarHeader() are +** the only functions that deal with the HardLinkInfo structure. +** Even these functions use the xxxHardLinkInfo() functions. +*/ +typedef struct HardLinkInfo { + struct HardLinkInfo *next; /* Next entry in list */ + dev_t dev; /* Device number */ + ino_t ino; /* Inode number */ +// short linkCount; /* (Hard) Link Count */ + char name[1]; /* Start of filename (must be last) */ +} HardLinkInfo; + +/* Some info to be carried along when creating a new tarball */ +typedef struct TarBallInfo { + int tarFd; /* Open-for-write file descriptor + * for the tarball */ + int verboseFlag; /* Whether to print extra stuff or not */ +# if ENABLE_FEATURE_TAR_FROM + const llist_t *excludeList; /* List of files to not include */ +# endif + HardLinkInfo *hlInfoHead; /* Hard Link Tracking Information */ + HardLinkInfo *hlInfo; /* Hard Link Info for the current file */ +//TODO: save only st_dev + st_ino + struct stat tarFileStatBuf; /* Stat info for the tarball, letting + * us know the inode and device that the + * tarball lives, so we can avoid trying + * to include the tarball into itself */ +} TarBallInfo; + +/* A nice enum with all the possible tar file content types */ +enum { + REGTYPE = '0', /* regular file */ + REGTYPE0 = '\0', /* regular file (ancient bug compat) */ + LNKTYPE = '1', /* hard link */ + SYMTYPE = '2', /* symbolic link */ + CHRTYPE = '3', /* character special */ + BLKTYPE = '4', /* block special */ + DIRTYPE = '5', /* directory */ + FIFOTYPE = '6', /* FIFO special */ + CONTTYPE = '7', /* reserved */ + GNULONGLINK = 'K', /* GNU long (>100 chars) link name */ + GNULONGNAME = 'L', /* GNU long (>100 chars) file name */ +}; + +/* Might be faster (and bigger) if the dev/ino were stored in numeric order;) */ +static void addHardLinkInfo(HardLinkInfo **hlInfoHeadPtr, + struct stat *statbuf, + const char *fileName) +{ + /* Note: hlInfoHeadPtr can never be NULL! */ + HardLinkInfo *hlInfo; + + hlInfo = xmalloc(sizeof(HardLinkInfo) + strlen(fileName)); + hlInfo->next = *hlInfoHeadPtr; + *hlInfoHeadPtr = hlInfo; + hlInfo->dev = statbuf->st_dev; + hlInfo->ino = statbuf->st_ino; +// hlInfo->linkCount = statbuf->st_nlink; + strcpy(hlInfo->name, fileName); +} + +static void freeHardLinkInfo(HardLinkInfo **hlInfoHeadPtr) +{ + HardLinkInfo *hlInfo; + HardLinkInfo *hlInfoNext; + + if (hlInfoHeadPtr) { + hlInfo = *hlInfoHeadPtr; + while (hlInfo) { + hlInfoNext = hlInfo->next; + free(hlInfo); + hlInfo = hlInfoNext; + } + *hlInfoHeadPtr = NULL; + } +} + +/* Might be faster (and bigger) if the dev/ino were stored in numeric order ;) */ +static HardLinkInfo *findHardLinkInfo(HardLinkInfo *hlInfo, struct stat *statbuf) +{ + while (hlInfo) { + if (statbuf->st_ino == hlInfo->ino + && statbuf->st_dev == hlInfo->dev + ) { + DBG("found hardlink:'%s'", hlInfo->name); + break; + } + hlInfo = hlInfo->next; + } + return hlInfo; +} + +/* Put an octal string into the specified buffer. + * The number is zero padded and possibly NUL terminated. + * Stores low-order bits only if whole value does not fit. */ +static void putOctal(char *cp, int len, off_t value) +{ + char tempBuffer[sizeof(off_t)*3 + 1]; + char *tempString = tempBuffer; + int width; + + width = sprintf(tempBuffer, "%0*"OFF_FMT"o", len, value); + tempString += (width - len); + + /* If string has leading zeroes, we can drop one */ + /* and field will have trailing '\0' */ + /* (increases chances of compat with other tars) */ + if (tempString[0] == '0') + tempString++; + + /* Copy the string to the field */ + memcpy(cp, tempString, len); +} +#define PUT_OCTAL(a, b) putOctal((a), sizeof(a), (b)) + +# if ENABLE_FEATURE_TAR_GNU_EXTENSIONS +static void writeLongname(int fd, int type, const char *name, int dir) +{ + struct prefilled { + char mode[8]; /* 100-107 */ + char uid[8]; /* 108-115 */ + char gid[8]; /* 116-123 */ + char size[12]; /* 124-135 */ + char mtime[12]; /* 136-147 */ + }; + struct tar_header_t header; + int size; + + memset(&header, 0, sizeof(header)); + header.typeflag = type; + strcpy(header.name, "././@LongLink"); + /* This sets mode/uid/gid/mtime to "00...00" strings */ + memset((char*)&header + offsetof(struct tar_header_t, mode), /* make gcc-9.x happy */ + '0', sizeof(struct prefilled)); + header.mode [sizeof(header.mode ) - 1] = '\0'; + header.uid [sizeof(header.uid ) - 1] = '\0'; + header.gid [sizeof(header.gid ) - 1] = '\0'; + /* header.size is filled by '0' now, will be corrected below */ + header.mtime[sizeof(header.mtime) - 1] = '\0'; + + dir = !!dir; /* normalize: 0/1 */ + size = strlen(name) + 1 + dir; /* GNU tar uses strlen+1 */ + /* + dir: account for possible '/' */ + + PUT_OCTAL(header.size, size); + chksum_and_xwrite_tar_header(fd, &header); + + /* Write filename[/] and pad the block. */ + /* dir=0: writes 'name', pads */ + /* dir=1: writes 'name', writes '/', pads */ + dir *= 2; + xwrite(fd, name, size - dir); + xwrite(fd, "/", dir); + size = (-size) & (TAR_BLOCK_SIZE-1); + memset(&header, 0, size); + xwrite(fd, &header, size); +} +# endif + +/* Write out a tar header for the specified file/directory/whatever */ +static int writeTarHeader(struct TarBallInfo *tbInfo, + const char *header_name, const char *fileName, struct stat *statbuf) +{ + struct tar_header_t header; + + memset(&header, 0, sizeof(header)); + + strncpy(header.name, header_name, sizeof(header.name)); + + /* POSIX says to mask mode with 07777. */ + PUT_OCTAL(header.mode, statbuf->st_mode & 07777); + PUT_OCTAL(header.uid, statbuf->st_uid); + PUT_OCTAL(header.gid, statbuf->st_gid); + memset(header.size, '0', sizeof(header.size)-1); /* Regular file size is handled later */ + /* users report that files with negative st_mtime cause trouble, so: */ + PUT_OCTAL(header.mtime, statbuf->st_mtime >= 0 ? statbuf->st_mtime : 0); + + /* Enter the user and group names */ + safe_strncpy(header.uname, get_cached_username(statbuf->st_uid), sizeof(header.uname)); + safe_strncpy(header.gname, get_cached_groupname(statbuf->st_gid), sizeof(header.gname)); + + if (tbInfo->hlInfo) { + /* This is a hard link */ + header.typeflag = LNKTYPE; + strncpy(header.linkname, tbInfo->hlInfo->name, + sizeof(header.linkname)); +# if ENABLE_FEATURE_TAR_GNU_EXTENSIONS + /* Write out long linkname if needed */ + if (header.linkname[sizeof(header.linkname)-1]) + writeLongname(tbInfo->tarFd, GNULONGLINK, + tbInfo->hlInfo->name, 0); +# endif + } else if (S_ISLNK(statbuf->st_mode)) { + char *lpath = xmalloc_readlink_or_warn(fileName); + if (!lpath) + return FALSE; + header.typeflag = SYMTYPE; + strncpy(header.linkname, lpath, sizeof(header.linkname)); +# if ENABLE_FEATURE_TAR_GNU_EXTENSIONS + /* Write out long linkname if needed */ + if (header.linkname[sizeof(header.linkname)-1]) + writeLongname(tbInfo->tarFd, GNULONGLINK, lpath, 0); +# else + /* If it is larger than 100 bytes, bail out */ + if (header.linkname[sizeof(header.linkname)-1]) { + free(lpath); + bb_simple_error_msg("names longer than "NAME_SIZE_STR" chars not supported"); + return FALSE; + } +# endif + free(lpath); + } else if (S_ISDIR(statbuf->st_mode)) { + header.typeflag = DIRTYPE; + /* Append '/' only if there is a space for it */ + if (!header.name[sizeof(header.name)-1]) + header.name[strlen(header.name)] = '/'; + } else if (S_ISCHR(statbuf->st_mode)) { + header.typeflag = CHRTYPE; + PUT_OCTAL(header.devmajor, major(statbuf->st_rdev)); + PUT_OCTAL(header.devminor, minor(statbuf->st_rdev)); + } else if (S_ISBLK(statbuf->st_mode)) { + header.typeflag = BLKTYPE; + PUT_OCTAL(header.devmajor, major(statbuf->st_rdev)); + PUT_OCTAL(header.devminor, minor(statbuf->st_rdev)); + } else if (S_ISFIFO(statbuf->st_mode)) { + header.typeflag = FIFOTYPE; + } else if (S_ISREG(statbuf->st_mode)) { + /* header.size field is 12 bytes long */ + /* Does octal-encoded size fit? */ + uoff_t filesize = statbuf->st_size; + if (sizeof(filesize) <= 4 + || filesize <= (uoff_t)0777777777777LL + ) { + PUT_OCTAL(header.size, filesize); + } + /* Does base256-encoded size fit? + * It always does unless off_t is wider than 64 bits. + */ + else if (ENABLE_FEATURE_TAR_GNU_EXTENSIONS +# if ULLONG_MAX > 0xffffffffffffffffLL /* 2^64-1 */ + && (filesize <= 0x3fffffffffffffffffffffffLL) +# endif + ) { + /* GNU tar uses "base-256 encoding" for very large numbers. + * Encoding is binary, with highest bit always set as a marker + * and sign in next-highest bit: + * 80 00 .. 00 - zero + * bf ff .. ff - largest positive number + * ff ff .. ff - minus 1 + * c0 00 .. 00 - smallest negative number + */ + char *p8 = header.size + sizeof(header.size); + do { + *--p8 = (uint8_t)filesize; + filesize >>= 8; + } while (p8 != header.size); + *p8 |= 0x80; + } else { + bb_error_msg_and_die("can't store file '%s' " + "of size %"OFF_FMT"u, aborting", + fileName, statbuf->st_size); + } + header.typeflag = REGTYPE; + } else { + bb_error_msg("%s: unknown file type", fileName); + return FALSE; + } + +# if ENABLE_FEATURE_TAR_GNU_EXTENSIONS + /* Write out long name if needed */ + /* (we, like GNU tar, output long linkname *before* long name) */ + if (header.name[sizeof(header.name)-1]) + writeLongname(tbInfo->tarFd, GNULONGNAME, + header_name, S_ISDIR(statbuf->st_mode)); +# endif + + chksum_and_xwrite_tar_header(tbInfo->tarFd, &header); + + /* Now do the verbose thing (or not) */ + if (tbInfo->verboseFlag) { + FILE *vbFd = stdout; + + /* If archive goes to stdout, verbose goes to stderr */ + if (tbInfo->tarFd == STDOUT_FILENO) + vbFd = stderr; + /* GNU "tar cvvf" prints "extended" listing a-la "ls -l" */ + /* We don't have such excesses here: for us "v" == "vv" */ + /* '/' is probably a GNUism */ + fprintf(vbFd, "%s%s\n", header_name, + S_ISDIR(statbuf->st_mode) ? "/" : ""); + } + + return TRUE; +} + +# if ENABLE_FEATURE_TAR_FROM +static int exclude_file(const llist_t *excluded_files, const char *file) +{ + while (excluded_files) { + if (excluded_files->data[0] == '/') { + if (fnmatch(excluded_files->data, file, + FNM_PATHNAME | FNM_LEADING_DIR) == 0) + return 1; + } else { + const char *p; + + for (p = file; p[0] != '\0'; p++) { + if ((p == file || p[-1] == '/') + && p[0] != '/' + && fnmatch(excluded_files->data, p, + FNM_PATHNAME | FNM_LEADING_DIR) == 0 + ) { + return 1; + } + } + } + excluded_files = excluded_files->link; + } + + return 0; +} +# else +# define exclude_file(excluded_files, file) 0 +# endif + +static int FAST_FUNC writeFileToTarball(struct recursive_state *state, + const char *fileName, + struct stat *statbuf) +{ + struct TarBallInfo *tbInfo = (struct TarBallInfo *) state->userData; + const char *header_name; + int inputFileFd = -1; + + DBG("writeFileToTarball('%s')", fileName); + + /* Strip leading '/' and such (must be before memorizing hardlink's name) */ + header_name = strip_unsafe_prefix(fileName); + + if (header_name[0] == '\0') + return TRUE; + + if (exclude_file(tbInfo->excludeList, header_name)) + return SKIP; /* "do not recurse on this directory", no error message printed */ + + /* It is against the rules to archive a socket */ + if (S_ISSOCK(statbuf->st_mode)) { + bb_error_msg("%s: socket ignored", fileName); + return TRUE; + } + + /* + * Check to see if we are dealing with a hard link. + * If so - + * Treat the first occurrence of a given dev/inode as a file while + * treating any additional occurrences as hard links. This is done + * by adding the file information to the HardLinkInfo linked list. + */ + tbInfo->hlInfo = NULL; + if (!S_ISDIR(statbuf->st_mode) && statbuf->st_nlink > 1) { + DBG("'%s': st_nlink > 1", header_name); + tbInfo->hlInfo = findHardLinkInfo(tbInfo->hlInfoHead, statbuf); + if (tbInfo->hlInfo == NULL) { + DBG("'%s': addHardLinkInfo", header_name); + addHardLinkInfo(&tbInfo->hlInfoHead, statbuf, header_name); + } + } + + /* It is a bad idea to store the archive we are in the process of creating, + * so check the device and inode to be sure that this particular file isn't + * the new tarball */ + if (tbInfo->tarFileStatBuf.st_dev == statbuf->st_dev + && tbInfo->tarFileStatBuf.st_ino == statbuf->st_ino + ) { + bb_error_msg("%s: file is the archive; skipping", fileName); + return TRUE; + } + +# if !ENABLE_FEATURE_TAR_GNU_EXTENSIONS + if (strlen(header_name) >= NAME_SIZE) { + bb_simple_error_msg("names longer than "NAME_SIZE_STR" chars not supported"); + return TRUE; + } +# endif + + /* Is this a regular file? */ + if (tbInfo->hlInfo == NULL && S_ISREG(statbuf->st_mode)) { + /* open the file we want to archive, and make sure all is well */ + inputFileFd = open_or_warn(fileName, O_RDONLY); + if (inputFileFd < 0) { + return FALSE; /* make recursive_action() return FALSE */ + } + } + + /* Add an entry to the tarball */ + if (writeTarHeader(tbInfo, header_name, fileName, statbuf) == FALSE) { + return FALSE; /* make recursive_action() return FALSE */ + } + + /* If it was a regular file, write out the body */ + if (inputFileFd >= 0) { + size_t readSize; + /* Write the file to the archive. */ + /* We record size into header first, */ + /* and then write out file. If file shrinks in between, */ + /* tar will be corrupted. So we don't allow for that. */ + /* NB: GNU tar 1.16 warns and pads with zeroes */ + /* or even seeks back and updates header */ + bb_copyfd_exact_size(inputFileFd, tbInfo->tarFd, statbuf->st_size); + ////off_t readSize; + ////readSize = bb_copyfd_size(inputFileFd, tbInfo->tarFd, statbuf->st_size); + ////if (readSize != statbuf->st_size && readSize >= 0) { + //// bb_error_msg_and_die("short read from %s, aborting", fileName); + ////} + + /* Check that file did not grow in between? */ + /* if (safe_read(inputFileFd, 1) == 1) warn but continue? */ + + close(inputFileFd); + + /* Pad the file up to the tar block size */ + /* (a few tricks here in the name of code size) */ + readSize = (-(int)statbuf->st_size) & (TAR_BLOCK_SIZE-1); + memset(block_buf, 0, readSize); + xwrite(tbInfo->tarFd, block_buf, readSize); + } + + return TRUE; +} + +# if SEAMLESS_COMPRESSION +/* Don't inline: vfork scares gcc and pessimizes code */ +static void NOINLINE vfork_compressor(int tar_fd, const char *gzip) +{ + // On Linux, vfork never unpauses parent early, although standard + // allows for that. Do we want to waste bytes checking for it? +# define WAIT_FOR_CHILD 0 + volatile int vfork_exec_errno = 0; + struct fd_pair data; +# if WAIT_FOR_CHILD + struct fd_pair status; + xpiped_pair(status); +# endif + xpiped_pair(data); + + signal(SIGPIPE, SIG_IGN); /* we only want EPIPE on errors */ + + if (xvfork() == 0) { + /* child */ + int tfd; + /* NB: close _first_, then move fds! */ + close(data.wr); +# if WAIT_FOR_CHILD + close(status.rd); + /* status.wr will close only on exec - + * parent waits for this close to happen */ + fcntl(status.wr, F_SETFD, FD_CLOEXEC); +# endif + /* copy it: parent's tar_fd variable must not change */ + tfd = tar_fd; + if (tfd == 0) { + /* Output tar fd may be zero. + * xmove_fd(data.rd, 0) would destroy it. + * Reproducer: + * exec 0>&- + * exec 1>&- + * tar czf Z.tar.gz FILE + * Swapping move_fd's order wouldn't work: + * data.rd is 1 and _it_ would be destroyed. + */ + tfd = dup(tfd); + } + xmove_fd(data.rd, 0); + xmove_fd(tfd, 1); + + /* exec gzip/bzip2/... program */ + //BB_EXECLP(gzip, gzip, "-f", (char *)0); - WRONG for "xz", + // if xz is an enabled applet, it'll be a version which + // can only decompress. We do need to execute external + // program, not applet. + execlp(gzip, gzip, "-f", (char *)0); + + vfork_exec_errno = errno; + _exit_FAILURE(); + } + + /* parent */ + xmove_fd(data.wr, tar_fd); + close(data.rd); +# if WAIT_FOR_CHILD + close(status.wr); + while (1) { + /* Wait until child execs (or fails to) */ + char buf; + int n = full_read(status.rd, &buf, 1); + if (n < 0 /* && errno == EAGAIN */) + continue; /* try it again */ + } + close(status.rd); +# endif + if (vfork_exec_errno) { + errno = vfork_exec_errno; + bb_perror_msg_and_die("can't execute '%s'", gzip); + } +} +# endif /* SEAMLESS_COMPRESSION */ + + +# if !SEAMLESS_COMPRESSION +/* Do not pass gzip flag to writeTarFile() */ +#define writeTarFile(tbInfo, recurseFlags, filelist, gzip) \ + writeTarFile(tbInfo, recurseFlags, filelist) +# endif +/* gcc 4.2.1 inlines it, making code bigger */ +static NOINLINE int writeTarFile( + struct TarBallInfo *tbInfo, + int recurseFlags, + const llist_t *filelist, + const char *gzip) +{ + int errorFlag = FALSE; + + /*tbInfo->hlInfoHead = NULL; - already is */ + + /* Store the stat info for the tarball's file, so + * can avoid including the tarball into itself.... */ + xfstat(tbInfo->tarFd, &tbInfo->tarFileStatBuf, "can't stat tar file"); + +# if SEAMLESS_COMPRESSION + if (gzip) + vfork_compressor(tbInfo->tarFd, gzip); +# endif + + /* Read the directory/files and iterate over them one at a time */ + while (filelist) { + if (!recursive_action(filelist->data, recurseFlags, + writeFileToTarball, writeFileToTarball, tbInfo) + ) { + errorFlag = TRUE; + } + filelist = filelist->link; + } + /* Write two empty blocks to the end of the archive */ + memset(block_buf, 0, 2*TAR_BLOCK_SIZE); + xwrite(tbInfo->tarFd, block_buf, 2*TAR_BLOCK_SIZE); + + /* To be pedantically correct, we would check if the tarball + * is smaller than 20 tar blocks, and pad it if it was smaller, + * but that isn't necessary for GNU tar interoperability, and + * so is considered a waste of space */ + + /* Close so the child process (if any) will exit */ + close(tbInfo->tarFd); + + /* Hang up the tools, close up shop, head home */ + if (ENABLE_FEATURE_CLEAN_UP) + freeHardLinkInfo(&tbInfo->hlInfoHead); + + if (errorFlag) + bb_simple_error_msg("error exit delayed from previous errors"); + +# if SEAMLESS_COMPRESSION + if (gzip) { + int status; + if (safe_waitpid(-1, &status, 0) == -1) + bb_simple_perror_msg("waitpid"); + else if (!WIFEXITED(status) || WEXITSTATUS(status)) + /* gzip was killed or has exited with nonzero! */ + errorFlag = TRUE; + } +# endif + return errorFlag; +} + +#endif /* FEATURE_TAR_CREATE */ + +#if ENABLE_FEATURE_TAR_FROM +static llist_t *append_file_list_to_list(llist_t *list) +{ + llist_t *newlist = NULL; + + while (list) { + FILE *src_stream; + char *line; + + src_stream = xfopen_stdin(llist_pop(&list)); + while ((line = xmalloc_fgetline(src_stream)) != NULL) { + /* kill trailing '/' unless the string is just "/" */ + char *cp = last_char_is(line, '/'); + if (cp > line) + *cp = '\0'; + llist_add_to_end(&newlist, line); + } + fclose(src_stream); + } + return newlist; +} +#endif + +//usage:#define tar_trivial_usage +//usage: IF_FEATURE_TAR_CREATE("c|") "x|t [-" +//usage: IF_FEATURE_SEAMLESS_Z("Z") +//usage: IF_FEATURE_SEAMLESS_GZ("z") +//usage: IF_FEATURE_SEAMLESS_XZ("J") +//usage: IF_FEATURE_SEAMLESS_BZ2("j") +//usage: "a" +//usage: IF_FEATURE_TAR_CREATE("h") +//usage: IF_FEATURE_TAR_NOPRESERVE_TIME("m") +//usage: "vokO] " +//usage: "[-f TARFILE] [-C DIR] " +//usage: IF_FEATURE_TAR_FROM("[-T FILE] [-X FILE] "IF_FEATURE_TAR_LONG_OPTIONS("[LONGOPT]... ")) +//usage: "[FILE]..." +//usage:#define tar_full_usage "\n\n" +//usage: IF_FEATURE_TAR_CREATE("Create, extract, ") +//usage: IF_NOT_FEATURE_TAR_CREATE("Extract ") +//usage: "or list files from a tar file" +//usage: "\n" +//usage: IF_FEATURE_TAR_CREATE( +//usage: "\n c Create" +//usage: ) +//usage: "\n x Extract" +//usage: "\n t List" +//usage: "\n -f FILE Name of TARFILE ('-' for stdin/out)" +//usage: "\n -C DIR Change to DIR before operation" +//usage: "\n -v Verbose" +//usage: "\n -O Extract to stdout" +//usage: IF_FEATURE_TAR_NOPRESERVE_TIME( +//usage: "\n -m Don't restore mtime" +//usage: ) +//usage: "\n -o Don't restore user:group" +///////:-p - accepted but ignored, restores mode (aliases in GNU tar: --preserve-permissions, --same-permissions) +//usage: "\n -k Don't replace existing files" +//usage: IF_FEATURE_SEAMLESS_Z( +//usage: "\n -Z (De)compress using compress" +//usage: ) +//usage: IF_FEATURE_SEAMLESS_GZ( +//usage: "\n -z (De)compress using gzip" +//usage: ) +//usage: IF_FEATURE_SEAMLESS_XZ( +//usage: "\n -J (De)compress using xz" +//usage: ) +//usage: IF_FEATURE_SEAMLESS_BZ2( +//usage: "\n -j (De)compress using bzip2" +//usage: ) +//usage: IF_FEATURE_SEAMLESS_LZMA( +//usage: IF_FEATURE_TAR_LONG_OPTIONS( +//usage: "\n --lzma (De)compress using lzma" +//usage: ) +//usage: ) +//usage: "\n -a (De)compress based on extension" +//usage: IF_FEATURE_TAR_CREATE( +//usage: "\n -h Follow symlinks" +//usage: ) +//usage: IF_FEATURE_TAR_FROM( +//usage: "\n -T FILE File with names to include" +//usage: "\n -X FILE File with glob patterns to exclude" +//usage: IF_FEATURE_TAR_LONG_OPTIONS( +//usage: "\n --exclude PATTERN Glob pattern to exclude" +//usage: ) +//usage: ) +//usage: IF_FEATURE_TAR_LONG_OPTIONS( +//usage: "\n --overwrite Replace existing files" +//usage: "\n --strip-components NUM NUM of leading components to strip" +//usage: "\n --no-recursion Don't descend in directories" +//usage: "\n --numeric-owner Use numeric user:group" +//usage: "\n --no-same-permissions Don't restore access permissions" +//usage: IF_FEATURE_TAR_TO_COMMAND( +//usage: "\n --to-command COMMAND Pipe files to COMMAND" +//usage: ) +//usage: ) +//usage: +//usage:#define tar_example_usage +//usage: "$ zcat /tmp/tarball.tar.gz | tar -xf -\n" +//usage: "$ tar -cf /tmp/tarball.tar /usr/local\n" + +enum { + OPTBIT_KEEP_OLD = 8, + IF_FEATURE_TAR_CREATE( OPTBIT_CREATE ,) + IF_FEATURE_TAR_CREATE( OPTBIT_DEREFERENCE ,) + IF_FEATURE_SEAMLESS_BZ2( OPTBIT_BZIP2 ,) + IF_FEATURE_TAR_FROM( OPTBIT_INCLUDE_FROM,) + IF_FEATURE_TAR_FROM( OPTBIT_EXCLUDE_FROM,) + IF_FEATURE_SEAMLESS_GZ( OPTBIT_GZIP ,) + IF_FEATURE_SEAMLESS_XZ( OPTBIT_XZ ,) + IF_FEATURE_SEAMLESS_Z( OPTBIT_COMPRESS ,) // 16th bit + OPTBIT_AUTOCOMPRESS_BY_EXT, + IF_FEATURE_TAR_NOPRESERVE_TIME(OPTBIT_NOPRESERVE_TIME,) +#if ENABLE_FEATURE_TAR_LONG_OPTIONS + OPTBIT_STRIP_COMPONENTS, + IF_FEATURE_SEAMLESS_LZMA(OPTBIT_LZMA ,) + OPTBIT_NORECURSION, + IF_FEATURE_TAR_TO_COMMAND(OPTBIT_2COMMAND ,) + OPTBIT_NUMERIC_OWNER, + OPTBIT_NOPRESERVE_PERM, + OPTBIT_OVERWRITE, +#endif + OPT_TEST = 1 << 0, // t + OPT_EXTRACT = 1 << 1, // x + OPT_BASEDIR = 1 << 2, // C + OPT_TARNAME = 1 << 3, // f + OPT_2STDOUT = 1 << 4, // O + OPT_NOPRESERVE_OWNER = 1 << 5, // o == no-same-owner + OPT_P = 1 << 6, // p + OPT_VERBOSE = 1 << 7, // v + OPT_KEEP_OLD = 1 << 8, // k + OPT_CREATE = IF_FEATURE_TAR_CREATE( (1 << OPTBIT_CREATE )) + 0, // c + OPT_DEREFERENCE = IF_FEATURE_TAR_CREATE( (1 << OPTBIT_DEREFERENCE )) + 0, // h + OPT_BZIP2 = IF_FEATURE_SEAMLESS_BZ2( (1 << OPTBIT_BZIP2 )) + 0, // j + OPT_INCLUDE_FROM = IF_FEATURE_TAR_FROM( (1 << OPTBIT_INCLUDE_FROM)) + 0, // T + OPT_EXCLUDE_FROM = IF_FEATURE_TAR_FROM( (1 << OPTBIT_EXCLUDE_FROM)) + 0, // X + OPT_GZIP = IF_FEATURE_SEAMLESS_GZ( (1 << OPTBIT_GZIP )) + 0, // z + OPT_XZ = IF_FEATURE_SEAMLESS_XZ( (1 << OPTBIT_XZ )) + 0, // J + OPT_COMPRESS = IF_FEATURE_SEAMLESS_Z( (1 << OPTBIT_COMPRESS )) + 0, // Z + OPT_AUTOCOMPRESS_BY_EXT = 1 << OPTBIT_AUTOCOMPRESS_BY_EXT, // a + OPT_NOPRESERVE_TIME = IF_FEATURE_TAR_NOPRESERVE_TIME((1 << OPTBIT_NOPRESERVE_TIME)) + 0, // m + OPT_STRIP_COMPONENTS = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_STRIP_COMPONENTS)) + 0, // strip-components + OPT_LZMA = IF_FEATURE_TAR_LONG_OPTIONS(IF_FEATURE_SEAMLESS_LZMA((1 << OPTBIT_LZMA))) + 0, // lzma + OPT_NORECURSION = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_NORECURSION )) + 0, // no-recursion + OPT_2COMMAND = IF_FEATURE_TAR_TO_COMMAND( (1 << OPTBIT_2COMMAND )) + 0, // to-command + OPT_NUMERIC_OWNER = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_NUMERIC_OWNER )) + 0, // numeric-owner + OPT_NOPRESERVE_PERM = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_NOPRESERVE_PERM)) + 0, // no-same-permissions + OPT_OVERWRITE = IF_FEATURE_TAR_LONG_OPTIONS((1 << OPTBIT_OVERWRITE )) + 0, // overwrite + + OPT_ANY_COMPRESS = (OPT_BZIP2 | OPT_LZMA | OPT_GZIP | OPT_XZ | OPT_COMPRESS), +}; +#if ENABLE_FEATURE_TAR_LONG_OPTIONS +static const char tar_longopts[] ALIGN1 = + "list\0" No_argument "t" + "extract\0" No_argument "x" + "directory\0" Required_argument "C" + "file\0" Required_argument "f" + "to-stdout\0" No_argument "O" + /* do not restore owner */ + /* Note: GNU tar handles 'o' as no-same-owner only on extract, + * on create, 'o' is --old-archive. We do not support --old-archive. */ + "no-same-owner\0" No_argument "o" + "same-permissions\0" No_argument "p" + "verbose\0" No_argument "v" + "keep-old\0" No_argument "k" +# if ENABLE_FEATURE_TAR_CREATE + "create\0" No_argument "c" + "dereference\0" No_argument "h" +# endif +# if ENABLE_FEATURE_SEAMLESS_BZ2 + "bzip2\0" No_argument "j" +# endif +# if ENABLE_FEATURE_TAR_FROM + "files-from\0" Required_argument "T" + "exclude-from\0" Required_argument "X" +# endif +# if ENABLE_FEATURE_SEAMLESS_GZ + "gzip\0" No_argument "z" +# endif +# if ENABLE_FEATURE_SEAMLESS_XZ + "xz\0" No_argument "J" +# endif +# if ENABLE_FEATURE_SEAMLESS_Z + "compress\0" No_argument "Z" +# endif + "auto-compress\0" No_argument "a" +# if ENABLE_FEATURE_TAR_NOPRESERVE_TIME + "touch\0" No_argument "m" +# endif + "strip-components\0" Required_argument "\xf8" +# if ENABLE_FEATURE_SEAMLESS_LZMA + "lzma\0" No_argument "\xf9" +# endif + "no-recursion\0" No_argument "\xfa" +# if ENABLE_FEATURE_TAR_TO_COMMAND + "to-command\0" Required_argument "\xfb" +# endif + /* use numeric uid/gid from tar header, not textual */ + "numeric-owner\0" No_argument "\xfc" + /* do not restore mode */ + "no-same-permissions\0" No_argument "\xfd" + /* on unpack, open with O_TRUNC and !O_EXCL */ + "overwrite\0" No_argument "\xfe" + /* --exclude takes next bit position in option mask, */ + /* therefore we have to put it _after_ --no-same-permissions */ +# if ENABLE_FEATURE_TAR_FROM + "exclude\0" Required_argument "\xff" +# endif + ; +# define GETOPT32 getopt32long +# define LONGOPTS ,tar_longopts +#else +# define GETOPT32 getopt32 +# define LONGOPTS +#endif + +int tar_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int tar_main(int argc UNUSED_PARAM, char **argv) +{ + archive_handle_t *tar_handle; + char *base_dir = NULL; + const char *tar_filename = "-"; + unsigned opt; + int verboseFlag = 0; +#if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM + llist_t *excludes = NULL; +#endif + INIT_G(); + + /* Initialise default values */ + tar_handle = init_handle(); + tar_handle->ah_flags = ARCHIVE_CREATE_LEADING_DIRS + | ARCHIVE_RESTORE_DATE + | ARCHIVE_UNLINK_OLD; + + /* Apparently only root's tar preserves perms (see bug 3844) */ + if (getuid() != 0) + tar_handle->ah_flags |= ARCHIVE_DONT_RESTORE_PERM; + +#if ENABLE_DESKTOP + /* Lie to buildroot when it starts asking stupid questions. */ + if (argv[1] && strcmp(argv[1], "--version") == 0) { + // Output of 'tar --version' examples: + // tar (GNU tar) 1.15.1 + // tar (GNU tar) 1.25 + // bsdtar 2.8.3 - libarchive 2.8.3 + puts("tar (busybox) " BB_VER); + return 0; + } +#endif + if (argv[1] && argv[1][0] != '-' && argv[1][0] != '\0') { + /* Compat: + * 1st argument without dash handles options with parameters + * differently from dashed one: it takes *next argv[i]* + * as parameter even if there are more chars in 1st argument: + * "tar fx TARFILE" - "x" is not taken as f's param + * but is interpreted as -x option + * "tar -xf TARFILE" - dashed equivalent of the above + * "tar -fx ..." - "x" is taken as f's param + * getopt32 wouldn't handle 1st command correctly. + * Unfortunately, people do use such commands. + * We massage argv[1] to work around it by moving 'f' + * to the end of the string. + * More contrived "tar fCx TARFILE DIR" still fails, + * but such commands are much less likely to be used. + */ + char *f = strchr(argv[1], 'f'); + if (f) { + while (f[1] != '\0') { + *f = f[1]; + f++; + } + *f = 'f'; + } + /* Prepend '-' to the first argument */ + argv[1] = xasprintf("-%s", argv[1]); + } + opt = GETOPT32(argv, "^" + "txC:f:Oopvk" + IF_FEATURE_TAR_CREATE( "ch" ) + IF_FEATURE_SEAMLESS_BZ2( "j" ) + IF_FEATURE_TAR_FROM( "T:*X:*") + IF_FEATURE_SEAMLESS_GZ( "z" ) + IF_FEATURE_SEAMLESS_XZ( "J" ) + IF_FEATURE_SEAMLESS_Z( "Z" ) + "a" + IF_FEATURE_TAR_NOPRESERVE_TIME("m") + IF_FEATURE_TAR_LONG_OPTIONS("\xf8:") // --strip-components + "\0" + "tt:vv:" // count -t,-v +#if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM + "\xff::" // --exclude=PATTERN is a list +#endif + IF_FEATURE_TAR_CREATE("c:") "t:x:" // at least one of these is reqd + IF_FEATURE_TAR_CREATE("c--tx:t--cx:x--ct") // mutually exclusive + IF_NOT_FEATURE_TAR_CREATE("t--x:x--t") // mutually exclusive +#if ENABLE_FEATURE_TAR_LONG_OPTIONS + ":\xf8+" // --strip-components=NUM +#endif + LONGOPTS + , &base_dir // -C dir + , &tar_filename // -f filename + IF_FEATURE_TAR_FROM(, &(tar_handle->accept)) // T + IF_FEATURE_TAR_FROM(, &(tar_handle->reject)) // X +#if ENABLE_FEATURE_TAR_LONG_OPTIONS + , &tar_handle->tar__strip_components // --strip-components +#endif + IF_FEATURE_TAR_TO_COMMAND(, &(tar_handle->tar__to_command)) // --to-command +#if ENABLE_FEATURE_TAR_LONG_OPTIONS && ENABLE_FEATURE_TAR_FROM + , &excludes // --exclude +#endif + , &verboseFlag // combined count for -t and -v + , &verboseFlag // combined count for -t and -v + ); +#if DBG_OPTION_PARSING + bb_error_msg("opt: 0x%08x", opt); +# define showopt(o) bb_error_msg("opt & %s(%x):\t%x", #o, o, opt & o); + showopt(OPT_TEST ); + showopt(OPT_EXTRACT ); + showopt(OPT_BASEDIR ); + showopt(OPT_TARNAME ); + showopt(OPT_2STDOUT ); + showopt(OPT_NOPRESERVE_OWNER); + showopt(OPT_P ); + showopt(OPT_VERBOSE ); + showopt(OPT_KEEP_OLD ); + showopt(OPT_CREATE ); + showopt(OPT_DEREFERENCE ); + showopt(OPT_BZIP2 ); + showopt(OPT_INCLUDE_FROM ); + showopt(OPT_EXCLUDE_FROM ); + showopt(OPT_GZIP ); + showopt(OPT_XZ ); + showopt(OPT_COMPRESS ); + showopt(OPT_AUTOCOMPRESS_BY_EXT); + showopt(OPT_NOPRESERVE_TIME ); + showopt(OPT_STRIP_COMPONENTS); + showopt(OPT_LZMA ); + showopt(OPT_NORECURSION ); + showopt(OPT_2COMMAND ); + showopt(OPT_NUMERIC_OWNER ); + showopt(OPT_NOPRESERVE_PERM ); + showopt(OPT_OVERWRITE ); + showopt(OPT_ANY_COMPRESS ); + bb_error_msg("base_dir:'%s'", base_dir); + bb_error_msg("tar_filename:'%s'", tar_filename); + bb_error_msg("verboseFlag:%d", verboseFlag); + bb_error_msg("tar_handle->tar__to_command:'%s'", tar_handle->tar__to_command); + bb_error_msg("tar_handle->tar__strip_components:%u", tar_handle->tar__strip_components); + return 0; +# undef showopt +#endif + argv += optind; + + if (verboseFlag) + tar_handle->action_header = header_verbose_list; + if (verboseFlag == 1) + tar_handle->action_header = header_list; + + if (opt & OPT_EXTRACT) + tar_handle->action_data = data_extract_all; + + if (opt & OPT_2STDOUT) + tar_handle->action_data = data_extract_to_stdout; + + if (opt & OPT_2COMMAND) { + putenv((char*)"TAR_FILETYPE=f"); + signal(SIGPIPE, SIG_IGN); + tar_handle->action_data = data_extract_to_command; + IF_FEATURE_TAR_TO_COMMAND(tar_handle->tar__to_command_shell = xstrdup(get_shell_name());) + } + + if (opt & OPT_KEEP_OLD) + tar_handle->ah_flags &= ~ARCHIVE_UNLINK_OLD; + + if (opt & OPT_NUMERIC_OWNER) + tar_handle->ah_flags |= ARCHIVE_NUMERIC_OWNER; + + if (opt & OPT_NOPRESERVE_OWNER) + tar_handle->ah_flags |= ARCHIVE_DONT_RESTORE_OWNER; + + if (opt & OPT_NOPRESERVE_PERM) + tar_handle->ah_flags |= ARCHIVE_DONT_RESTORE_PERM; + + if (opt & OPT_OVERWRITE) { + tar_handle->ah_flags &= ~ARCHIVE_UNLINK_OLD; + tar_handle->ah_flags |= ARCHIVE_O_TRUNC; + } + + if (opt & OPT_NOPRESERVE_TIME) + tar_handle->ah_flags &= ~ARCHIVE_RESTORE_DATE; + +#if ENABLE_FEATURE_TAR_FROM + /* Convert each -X EXCLFILE to list of to-be-rejected glob patterns */ + tar_handle->reject = append_file_list_to_list(tar_handle->reject); +# if ENABLE_FEATURE_TAR_LONG_OPTIONS + /* Append --exclude=GLOBPATTERNs to reject */ + if (excludes) { + llist_t **p2next = &tar_handle->reject; + while (*p2next) + p2next = &((*p2next)->link); + *p2next = excludes; + } +# endif + tar_handle->accept = append_file_list_to_list(tar_handle->accept); +#endif + + /* Setup an array of filenames to work with */ + /* TODO: This is the same as in ar, make a separate function? */ + while (*argv) { + /* kill trailing '/' unless the string is just "/" */ + char *cp = last_char_is(*argv, '/'); + if (cp > *argv) + *cp = '\0'; + llist_add_to_end(&tar_handle->accept, *argv); + argv++; + } + + if (tar_handle->accept || tar_handle->reject) + tar_handle->filter = filter_accept_reject_list; + + /* Open the tar file */ + { + int tar_fd = STDIN_FILENO; + int flags = O_RDONLY; + + if (opt & OPT_CREATE) { + /* Make sure there is at least one file to tar up */ + if (tar_handle->accept == NULL) + bb_simple_error_msg_and_die("empty archive"); + + tar_fd = STDOUT_FILENO; + /* Mimicking GNU tar 1.15.1: */ + flags = O_WRONLY | O_CREAT | O_TRUNC; + } + + if (LONE_DASH(tar_filename)) { + tar_handle->src_fd = tar_fd; + tar_handle->seek = seek_by_read; + } else + if (ENABLE_FEATURE_TAR_AUTODETECT + && ENABLE_FEATURE_SEAMLESS_LZMA + && flags == O_RDONLY + && !(opt & OPT_ANY_COMPRESS) + && is_suffixed_with(tar_filename, ".lzma") + /* We do this only for .lzma files, they have no signature. + * All other compression formats are recognized in + * get_header_tar() when first tar block has invalid format. + * Doing it here for all filenames would falsely trigger + * on e.g. tarball with 1st file named "BZh5". + */ + ) { + tar_handle->src_fd = open_zipped(tar_filename, /*fail_if_not_compressed:*/ 0); + if (tar_handle->src_fd < 0) + bb_perror_msg_and_die("can't open '%s'", tar_filename); + } else { + tar_handle->src_fd = xopen(tar_filename, flags); +#if ENABLE_FEATURE_TAR_CREATE + if ((OPT_GZIP | OPT_BZIP2 | OPT_XZ | OPT_LZMA) != 0 /* at least one is config-enabled */ + && (opt & OPT_AUTOCOMPRESS_BY_EXT) + && flags != O_RDONLY + ) { + if (OPT_GZIP != 0 && is_suffixed_with(tar_filename, "gz")) + opt |= OPT_GZIP; + if (OPT_BZIP2 != 0 && is_suffixed_with(tar_filename, "bz2")) + opt |= OPT_BZIP2; + if (OPT_XZ != 0 && is_suffixed_with(tar_filename, "xz")) + opt |= OPT_XZ; + if (OPT_LZMA != 0 && is_suffixed_with(tar_filename, "lzma")) + opt |= OPT_LZMA; + } +#endif + } + } + + if (base_dir) + xchdir(base_dir); + +#if ENABLE_FEATURE_TAR_CREATE + /* Create an archive */ + if (opt & OPT_CREATE) { + struct TarBallInfo *tbInfo; +# if SEAMLESS_COMPRESSION + const char *zipMode = NULL; + if (opt & OPT_COMPRESS) + zipMode = "compress"; + if (opt & OPT_GZIP) + zipMode = "gzip"; + if (opt & OPT_BZIP2) + zipMode = "bzip2"; + if (opt & OPT_LZMA) + zipMode = "lzma"; + if (opt & OPT_XZ) + zipMode = "xz"; +# endif + tbInfo = xzalloc(sizeof(*tbInfo)); + tbInfo->tarFd = tar_handle->src_fd; + tbInfo->verboseFlag = verboseFlag; +# if ENABLE_FEATURE_TAR_FROM + tbInfo->excludeList = tar_handle->reject; +# endif + /* NB: writeTarFile() closes tar_handle->src_fd */ + return writeTarFile(tbInfo, + (opt & OPT_DEREFERENCE ? ACTION_FOLLOWLINKS : 0) + | (opt & OPT_NORECURSION ? 0 : ACTION_RECURSE), + tar_handle->accept, + zipMode); + } +#endif + + if (opt & OPT_ANY_COMPRESS) { + USE_FOR_MMU(IF_DESKTOP(long long) int FAST_FUNC (*xformer)(transformer_state_t *xstate);) + USE_FOR_NOMMU(const char *xformer_prog;) + + if (opt & OPT_COMPRESS) { + USE_FOR_MMU(IF_FEATURE_SEAMLESS_Z(xformer = unpack_Z_stream;)) + USE_FOR_NOMMU(xformer_prog = "uncompress";) + } + if (opt & OPT_GZIP) { + USE_FOR_MMU(IF_FEATURE_SEAMLESS_GZ(xformer = unpack_gz_stream;)) + USE_FOR_NOMMU(xformer_prog = "gunzip";) + } + if (opt & OPT_BZIP2) { + USE_FOR_MMU(IF_FEATURE_SEAMLESS_BZ2(xformer = unpack_bz2_stream;)) + USE_FOR_NOMMU(xformer_prog = "bunzip2";) + } + if (opt & OPT_LZMA) { + USE_FOR_MMU(IF_FEATURE_SEAMLESS_LZMA(xformer = unpack_lzma_stream;)) + USE_FOR_NOMMU(xformer_prog = "unlzma";) + } + if (opt & OPT_XZ) { + USE_FOR_MMU(IF_FEATURE_SEAMLESS_XZ(xformer = unpack_xz_stream;)) + USE_FOR_NOMMU(xformer_prog = "unxz";) + } + + fork_transformer_with_sig(tar_handle->src_fd, xformer, xformer_prog); + /* Can't lseek over pipes */ + tar_handle->seek = seek_by_read; + /*tar_handle->offset = 0; - already is */ + } + + /* Zero processed headers (== empty file) is not a valid tarball. + * We (ab)use bb_got_signal as exitcode here, + * because check_errors_in_children() uses _it_ as error indicator. + */ + bb_got_signal = EXIT_FAILURE; + + while (get_header_tar(tar_handle) == EXIT_SUCCESS) + bb_got_signal = EXIT_SUCCESS; /* saw at least one header, good */ + + create_links_from_list(tar_handle->link_placeholders); + + /* Check that every file that should have been extracted was */ + while (tar_handle->accept) { + if (!find_list_entry(tar_handle->reject, tar_handle->accept->data) + && !find_list_entry(tar_handle->passed, tar_handle->accept->data) + ) { + bb_error_msg_and_die("%s: not found in archive", + tar_handle->accept->data); + } + tar_handle->accept = tar_handle->accept->link; + } + if (ENABLE_FEATURE_CLEAN_UP /* && tar_handle->src_fd != STDIN_FILENO */) + close(tar_handle->src_fd); + + if (SEAMLESS_COMPRESSION || OPT_COMPRESS) { + /* Set bb_got_signal to 1 if a child died with !0 exitcode */ + check_errors_in_children(0); + } + + return bb_got_signal; +} diff --git a/busybox-1_37_0/archival/tar_symlink_attack b/busybox-1_37_0/archival/tar_symlink_attack new file mode 100755 index 000000000..35455f200 --- /dev/null +++ b/busybox-1_37_0/archival/tar_symlink_attack @@ -0,0 +1,16 @@ +#!/bin/sh +# Makes "symlink attack" tarball (needs GNU tar for --append) + +true >anything.txt +tar cvf tar_symlink_attack.tar anything.txt +rm anything.txt + +ln -s /tmp symlink +tar --append -f tar_symlink_attack.tar symlink +rm symlink + +mkdir symlink +echo BUG >symlink/bb_test_evilfile +tar --append -f tar_symlink_attack.tar symlink/bb_test_evilfile +rm symlink/bb_test_evilfile +rmdir symlink diff --git a/busybox-1_37_0/archival/unzip.c b/busybox-1_37_0/archival/unzip.c new file mode 100644 index 000000000..71a302915 --- /dev/null +++ b/busybox-1_37_0/archival/unzip.c @@ -0,0 +1,1088 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini unzip implementation for busybox + * + * Copyright (C) 2004 by Ed Clark + * + * Loosely based on original busybox unzip applet by Laurence Anderson. + * All options and features should work in this version. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* For reference see + * http://www.pkware.com/company/standards/appnote/ + * http://www.info-zip.org/pub/infozip/doc/appnote-iz-latest.zip + * + * TODO + * Zip64 + other methods + */ +//config:config UNZIP +//config: bool "unzip (26 kb)" +//config: default y +//config: help +//config: unzip will list or extract files from a ZIP archive, +//config: commonly found on DOS/WIN systems. The default behavior +//config: (with no options) is to extract the archive into the +//config: current directory. +//config: +//config:config FEATURE_UNZIP_CDF +//config: bool "Read and use Central Directory data" +//config: default y +//config: depends on UNZIP +//config: help +//config: If you know that you only need to deal with simple +//config: ZIP files without deleted/updated files, SFX archives etc, +//config: you can reduce code size by unselecting this option. +//config: To support less trivial ZIPs, say Y. +//config: +//config:config FEATURE_UNZIP_BZIP2 +//config: bool "Support compression method 12 (bzip2)" +//config: default y +//config: depends on FEATURE_UNZIP_CDF && DESKTOP +// FEATURE_UNZIP_CDF is needed, otherwise we can't find start of next file +// DESKTOP is needed to get back uncompressed length +//config: +//config:config FEATURE_UNZIP_LZMA +//config: bool "Support compression method 14 (lzma)" +//config: default y +//config: depends on FEATURE_UNZIP_CDF && DESKTOP +//config: +//config:config FEATURE_UNZIP_XZ +//config: bool "Support compression method 95 (xz)" +//config: default y +//config: depends on FEATURE_UNZIP_CDF && DESKTOP + +//applet:IF_UNZIP(APPLET(unzip, BB_DIR_USR_BIN, BB_SUID_DROP)) +//kbuild:lib-$(CONFIG_UNZIP) += unzip.o + +//usage:#define unzip_trivial_usage +//usage: "[-lnojpqK] FILE[.zip] [FILE]... [-x FILE]... [-d DIR]" +//usage:#define unzip_full_usage "\n\n" +//usage: "Extract FILEs from ZIP archive\n" +//usage: "\n -l List contents (with -q for short form)" +//usage: "\n -n Never overwrite files (default: ask)" +//usage: "\n -o Overwrite" +//usage: "\n -j Do not restore paths" +//usage: "\n -p Write to stdout" +//usage: "\n -t Test" +//usage: "\n -q Quiet" +//usage: "\n -K Do not clear SUID bit" +//usage: "\n -x FILE Exclude FILEs" +//usage: "\n -d DIR Extract into DIR" + +#include "libbb.h" +#include "bb_archive.h" + +#if 0 +# define dbg(...) bb_error_msg(__VA_ARGS__) +#else +# define dbg(...) ((void)0) +#endif + +enum { +#if BB_BIG_ENDIAN + ZIP_FILEHEADER_MAGIC = 0x504b0304, + ZIP_CDF_MAGIC = 0x504b0102, /* CDF item */ + ZIP_CDE_MAGIC = 0x504b0506, /* End of CDF */ + ZIP64_CDE_MAGIC = 0x504b0606, /* End of Zip64 CDF */ + ZIP_DD_MAGIC = 0x504b0708, +#else + ZIP_FILEHEADER_MAGIC = 0x04034b50, + ZIP_CDF_MAGIC = 0x02014b50, + ZIP_CDE_MAGIC = 0x06054b50, + ZIP64_CDE_MAGIC = 0x06064b50, + ZIP_DD_MAGIC = 0x08074b50, +#endif +}; + +#define ZIP_HEADER_LEN 26 + +typedef union { + uint8_t raw[ZIP_HEADER_LEN]; + struct { + uint16_t version; /* 0-1 */ + uint16_t zip_flags; /* 2-3 */ + uint16_t method; /* 4-5 */ + uint16_t modtime; /* 6-7 */ + uint16_t moddate; /* 8-9 */ + uint32_t crc32 PACKED; /* 10-13 */ + uint32_t cmpsize PACKED; /* 14-17 */ + uint32_t ucmpsize PACKED; /* 18-21 */ + uint16_t filename_len; /* 22-23 */ + uint16_t extra_len; /* 24-25 */ + /* filename follows (not NUL terminated) */ + /* extra field follows */ + /* data follows */ + } fmt PACKED; +} zip_header_t; /* PACKED - gcc 4.2.1 doesn't like it (spews warning) */ + +#define FIX_ENDIANNESS_ZIP(zip) \ +do { if (BB_BIG_ENDIAN) { \ + (zip).fmt.method = SWAP_LE16((zip).fmt.method ); \ + (zip).fmt.modtime = SWAP_LE16((zip).fmt.modtime ); \ + (zip).fmt.moddate = SWAP_LE16((zip).fmt.moddate ); \ + (zip).fmt.crc32 = SWAP_LE32((zip).fmt.crc32 ); \ + (zip).fmt.cmpsize = SWAP_LE32((zip).fmt.cmpsize ); \ + (zip).fmt.ucmpsize = SWAP_LE32((zip).fmt.ucmpsize ); \ + (zip).fmt.filename_len = SWAP_LE16((zip).fmt.filename_len); \ + (zip).fmt.extra_len = SWAP_LE16((zip).fmt.extra_len ); \ +}} while (0) + +#define CDF_HEADER_LEN 42 + +typedef union { + uint8_t raw[CDF_HEADER_LEN]; + struct { + /* uint32_t signature; 50 4b 01 02 */ + uint16_t version_made_by; /* 0-1 */ + uint16_t version_needed; /* 2-3 */ + uint16_t cdf_flags; /* 4-5 */ + uint16_t method; /* 6-7 */ + uint16_t modtime; /* 8-9 */ + uint16_t moddate; /* 10-11 */ + uint32_t crc32; /* 12-15 */ + uint32_t cmpsize; /* 16-19 */ + uint32_t ucmpsize; /* 20-23 */ + uint16_t filename_len; /* 24-25 */ + uint16_t extra_len; /* 26-27 */ + uint16_t file_comment_length; /* 28-29 */ + uint16_t disk_number_start; /* 30-31 */ + uint16_t internal_attributes; /* 32-33 */ + uint32_t external_attributes PACKED; /* 34-37 */ + uint32_t relative_offset_of_local_header PACKED; /* 38-41 */ + /* filename follows (not NUL terminated) */ + /* extra field follows */ + /* file comment follows */ + } fmt PACKED; +} cdf_header_t; + +#define FIX_ENDIANNESS_CDF(cdf) \ +do { if (BB_BIG_ENDIAN) { \ + (cdf).fmt.version_made_by = SWAP_LE16((cdf).fmt.version_made_by); \ + (cdf).fmt.version_needed = SWAP_LE16((cdf).fmt.version_needed ); \ + (cdf).fmt.method = SWAP_LE16((cdf).fmt.method ); \ + (cdf).fmt.modtime = SWAP_LE16((cdf).fmt.modtime ); \ + (cdf).fmt.moddate = SWAP_LE16((cdf).fmt.moddate ); \ + (cdf).fmt.crc32 = SWAP_LE32((cdf).fmt.crc32 ); \ + (cdf).fmt.cmpsize = SWAP_LE32((cdf).fmt.cmpsize ); \ + (cdf).fmt.ucmpsize = SWAP_LE32((cdf).fmt.ucmpsize ); \ + (cdf).fmt.filename_len = SWAP_LE16((cdf).fmt.filename_len ); \ + (cdf).fmt.extra_len = SWAP_LE16((cdf).fmt.extra_len ); \ + (cdf).fmt.file_comment_length = SWAP_LE16((cdf).fmt.file_comment_length); \ + (cdf).fmt.external_attributes = SWAP_LE32((cdf).fmt.external_attributes); \ +}} while (0) + +#define CDE_LEN 16 + +typedef union { + uint8_t raw[CDE_LEN]; + struct { + /* uint32_t signature; 50 4b 05 06 */ + uint16_t this_disk_no; + uint16_t disk_with_cdf_no; + uint16_t cdf_entries_on_this_disk; + uint16_t cdf_entries_total; + uint32_t cdf_size; + uint32_t cdf_offset; + /* uint16_t archive_comment_length; */ + /* archive comment follows */ + } fmt PACKED; +} cde_t; + +#define FIX_ENDIANNESS_CDE(cde) \ +do { if (BB_BIG_ENDIAN) { \ + (cde).fmt.cdf_offset = SWAP_LE32((cde).fmt.cdf_offset); \ +}} while (0) + +struct BUG { + /* Check the offset of the last element, not the length. This leniency + * allows for poor packing, whereby the overall struct may be too long, + * even though the elements are all in the right place. + */ + char BUG_zip_header_must_be_26_bytes[ + offsetof(zip_header_t, fmt.extra_len) + 2 + == ZIP_HEADER_LEN ? 1 : -1]; + char BUG_cdf_header_must_be_42_bytes[ + offsetof(cdf_header_t, fmt.relative_offset_of_local_header) + 4 + == CDF_HEADER_LEN ? 1 : -1]; + char BUG_cde_must_be_16_bytes[ + sizeof(cde_t) == CDE_LEN ? 1 : -1]; +}; + + +enum { zip_fd = 3 }; + + +/* This value means that we failed to find CDF */ +#define BAD_CDF_OFFSET ((uint32_t)0xffffffff) + +#if !ENABLE_FEATURE_UNZIP_CDF + +# define find_cdf_offset() BAD_CDF_OFFSET + +#else +/* Seen in the wild: + * Self-extracting PRO2K3XP_32.exe contains 19078464 byte zip archive, + * where CDE was nearly 48 kbytes before EOF. + * (Surprisingly, it also apparently has *another* CDE structure + * closer to the end, with bogus cdf_offset). + * To make extraction work, bumped PEEK_FROM_END from 16k to 64k. + */ +#define PEEK_FROM_END (64*1024) +/* NB: does not preserve file position! */ +static uint32_t find_cdf_offset(void) +{ + cde_t cde; + unsigned char *buf; + unsigned char *p; + off_t end; + uint32_t found; + + end = lseek(zip_fd, 0, SEEK_END); + if (end == (off_t) -1) + return BAD_CDF_OFFSET; + + end -= PEEK_FROM_END; + if (end < 0) + end = 0; + + dbg("Looking for cdf_offset starting from 0x%"OFF_FMT"x", end); + xlseek(zip_fd, end, SEEK_SET); + buf = xzalloc(PEEK_FROM_END); + full_read(zip_fd, buf, PEEK_FROM_END); + + found = BAD_CDF_OFFSET; + p = buf; + while (p <= buf + PEEK_FROM_END - CDE_LEN - 4) { + if (*p != 'P') { + p++; + continue; + } + if (*++p != 'K') + continue; + if (*++p != 5) + continue; + if (*++p != 6) + continue; + /* we found CDE! */ + memcpy(cde.raw, p + 1, CDE_LEN); + dbg("cde.this_disk_no:%d", cde.fmt.this_disk_no ); + dbg("cde.disk_with_cdf_no:%d", cde.fmt.disk_with_cdf_no ); + dbg("cde.cdf_entries_on_this_disk:%d", cde.fmt.cdf_entries_on_this_disk); + dbg("cde.cdf_entries_total:%d", cde.fmt.cdf_entries_total ); + dbg("cde.cdf_size:%d", cde.fmt.cdf_size ); + dbg("cde.cdf_offset:%x", cde.fmt.cdf_offset ); + FIX_ENDIANNESS_CDE(cde); + /* + * I've seen .ZIP files with seemingly valid CDEs + * where cdf_offset points past EOF - ?? + * This check ignores such CDEs: + */ + if (cde.fmt.cdf_offset < end + (p - buf)) { + found = cde.fmt.cdf_offset; + dbg("Possible cdf_offset:0x%x at 0x%"OFF_FMT"x", + (unsigned)found, end + (p-3 - buf)); + dbg(" cdf_offset+cdf_size:0x%x", + (unsigned)(found + SWAP_LE32(cde.fmt.cdf_size))); + /* + * We do not "break" here because only the last CDE is valid. + * I've seen a .zip archive which contained a .zip file, + * uncompressed, and taking the first CDE was using + * the CDE inside that file! + */ + } + } + free(buf); + dbg("Found cdf_offset:0x%x", (unsigned)found); + return found; +}; + +static uint32_t read_next_cdf(uint32_t cdf_offset, cdf_header_t *cdf) +{ + uint32_t magic; + + if (cdf_offset == BAD_CDF_OFFSET) + return cdf_offset; + + dbg("Reading CDF at 0x%x", (unsigned)cdf_offset); + xlseek(zip_fd, cdf_offset, SEEK_SET); + xread(zip_fd, &magic, 4); + /* Central Directory End? Assume CDF has ended. + * (more correct method is to use cde.cdf_entries_total counter) + */ + if (magic == ZIP_CDE_MAGIC) { + dbg("got ZIP_CDE_MAGIC"); + return 0; /* EOF */ + } + if (magic == ZIP64_CDE_MAGIC) { /* seen in .zip with >4GB files */ + dbg("got ZIP64_CDE_MAGIC"); + return 0; /* EOF */ + } + xread(zip_fd, cdf->raw, CDF_HEADER_LEN); + + FIX_ENDIANNESS_CDF(*cdf); + dbg(" magic:%08x filename_len:%u extra_len:%u file_comment_length:%u", + magic, + (unsigned)cdf->fmt.filename_len, + (unsigned)cdf->fmt.extra_len, + (unsigned)cdf->fmt.file_comment_length + ); +//TODO: require that magic == ZIP_CDF_MAGIC? + + cdf_offset += 4 + CDF_HEADER_LEN + + cdf->fmt.filename_len + + cdf->fmt.extra_len + + cdf->fmt.file_comment_length; + + dbg("Next cdf_offset 0x%x", cdf_offset); + return cdf_offset; +}; +#endif + +static void die_if_bad_fnamesize(unsigned sz) +{ + if (sz > 0xfff) /* more than 4k?! no funny business please */ + bb_simple_error_msg_and_die("bad archive"); +} + +static void unzip_skip(off_t skip) +{ + if (skip != 0) + if (lseek(zip_fd, skip, SEEK_CUR) == (off_t)-1) + bb_copyfd_exact_size(zip_fd, -1, skip); +} + +static void unzip_create_leading_dirs(const char *fn) +{ + /* Create all leading directories */ + char *name = xstrdup(fn); + + /* mode of -1: set mode according to umask */ + if (bb_make_directory(dirname(name), -1, FILEUTILS_RECUR)) { + xfunc_die(); /* bb_make_directory is noisy */ + } + free(name); +} + +#if ENABLE_FEATURE_UNZIP_CDF +static void unzip_extract_symlink(llist_t **symlink_placeholders, + zip_header_t *zip, + const char *dst_fn) +{ + char *target; + + die_if_bad_fnamesize(zip->fmt.ucmpsize); + + if (zip->fmt.method == 0) { + /* Method 0 - stored (not compressed) */ + target = xzalloc(zip->fmt.ucmpsize + 1); + xread(zip_fd, target, zip->fmt.ucmpsize); + } else { +#if 1 + bb_simple_error_msg_and_die("compressed symlink is not supported"); +#else + transformer_state_t xstate; + init_transformer_state(&xstate); + xstate.mem_output_size_max = zip->fmt.ucmpsize; + /* ...unpack... */ + if (!xstate.mem_output_buf) + WTF(); + target = xstate.mem_output_buf; + target = xrealloc(target, xstate.mem_output_size + 1); + target[xstate.mem_output_size] = '\0'; +#endif + } + create_or_remember_link(symlink_placeholders, + target, + dst_fn, + 0); + free(target); +} +#endif + +static void unzip_extract(zip_header_t *zip, int dst_fd) +{ + transformer_state_t xstate; + + if (zip->fmt.method == 0) { + /* Method 0 - stored (not compressed) */ + off_t size = zip->fmt.ucmpsize; + if (size) + bb_copyfd_exact_size(zip_fd, dst_fd, size); + return; + } + + init_transformer_state(&xstate); + xstate.bytes_in = zip->fmt.cmpsize; + xstate.src_fd = zip_fd; + xstate.dst_fd = dst_fd; + if (zip->fmt.method == 8) { + /* Method 8 - inflate */ + if (inflate_unzip(&xstate) < 0) + bb_simple_error_msg_and_die("inflate error"); + /* Validate decompression - crc */ + if (zip->fmt.crc32 != (xstate.crc32 ^ 0xffffffffL)) { + bb_simple_error_msg_and_die("crc error"); + } + } +#if ENABLE_FEATURE_UNZIP_BZIP2 + else if (zip->fmt.method == 12) { + /* Tested. Unpacker reads too much, but we use CDF + * and will seek to the correct beginning of next file. + */ + xstate.bytes_out = unpack_bz2_stream(&xstate); + if (xstate.bytes_out < 0) + bb_simple_error_msg_and_die("inflate error"); + } +#endif +#if ENABLE_FEATURE_UNZIP_LZMA + else if (zip->fmt.method == 14) { + /* Not tested yet */ + xstate.bytes_out = unpack_lzma_stream(&xstate); + if (xstate.bytes_out < 0) + bb_simple_error_msg_and_die("inflate error"); + } +#endif +#if ENABLE_FEATURE_UNZIP_XZ + else if (zip->fmt.method == 95) { + /* Not tested yet */ + xstate.bytes_out = unpack_xz_stream(&xstate); + if (xstate.bytes_out < 0) + bb_simple_error_msg_and_die("inflate error"); + } +#endif + else { + bb_error_msg_and_die("unsupported method %u", zip->fmt.method); + } + + /* Validate decompression - size */ + if (zip->fmt.ucmpsize != 0xffffffff /* seen on files with >4GB uncompressed data */ + && zip->fmt.ucmpsize != xstate.bytes_out + ) { + /* Don't die. Who knows, maybe len calculation + * was botched somewhere. After all, crc matched! */ + bb_simple_error_msg("bad length"); + } +} + +static void my_fgets80(char *buf80) +{ + fflush_all(); + if (!fgets(buf80, 80, stdin)) { + bb_simple_perror_msg_and_die("can't read standard input"); + } +} + +static int get_lstat_mode(const char *dst_fn) +{ + struct stat stat_buf; + if (lstat(dst_fn, &stat_buf) == -1) { + if (errno != ENOENT) { + bb_perror_msg_and_die("can't stat '%s'", + dst_fn + ); + } + /* File does not exist */ + return -1; + } + return stat_buf.st_mode; +} + +int unzip_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int unzip_main(int argc, char **argv) +{ + enum { + OPT_l = (1 << 0), + OPT_x = (1 << 1), + OPT_j = (1 << 2), + OPT_K = (1 << 3), + }; + unsigned opts; + smallint quiet = 0; + IF_NOT_FEATURE_UNZIP_CDF(const) smallint verbose = 0; + enum { O_PROMPT, O_NEVER, O_ALWAYS }; + smallint overwrite = O_PROMPT; + uint32_t cdf_offset; + unsigned long total_usize; + unsigned long total_size; + unsigned total_entries; + int dst_fd = -1; + char *src_fn = NULL; + char *dst_fn = NULL; + llist_t *zaccept = NULL; + llist_t *zreject = NULL; + char *base_dir = NULL; +#if ENABLE_FEATURE_UNZIP_CDF + llist_t *symlink_placeholders = NULL; +#endif + int i; + char key_buf[80]; /* must match size used by my_fgets80 */ + +/* -q, -l and -v: UnZip 5.52 of 28 February 2005, by Info-ZIP: + * + * # /usr/bin/unzip -qq -v decompress_unlzma.i.zip + * 204372 Defl:N 35278 83% 09-06-09 14:23 0d056252 decompress_unlzma.i + * # /usr/bin/unzip -q -v decompress_unlzma.i.zip + * Length Method Size Ratio Date Time CRC-32 Name + * -------- ------ ------- ----- ---- ---- ------ ---- + * 204372 Defl:N 35278 83% 09-06-09 14:23 0d056252 decompress_unlzma.i + * -------- ------- --- ------- + * 204372 35278 83% 1 file + * # /usr/bin/unzip -v decompress_unlzma.i.zip + * Archive: decompress_unlzma.i.zip + * Length Method Size Ratio Date Time CRC-32 Name + * -------- ------ ------- ----- ---- ---- ------ ---- + * 204372 Defl:N 35278 83% 09-06-09 14:23 0d056252 decompress_unlzma.i + * -------- ------- --- ------- + * 204372 35278 83% 1 file + * # unzip -v decompress_unlzma.i.zip + * Archive: decompress_unlzma.i.zip + * Length Date Time Name + * -------- ---- ---- ---- + * 204372 09-06-09 14:23 decompress_unlzma.i + * -------- ------- + * 204372 1 files + * # /usr/bin/unzip -l -qq decompress_unlzma.i.zip + * 204372 09-06-09 14:23 decompress_unlzma.i + * # /usr/bin/unzip -l -q decompress_unlzma.i.zip + * Length Date Time Name + * -------- ---- ---- ---- + * 204372 09-06-09 14:23 decompress_unlzma.i + * -------- ------- + * 204372 1 file + * # /usr/bin/unzip -l decompress_unlzma.i.zip + * Archive: decompress_unlzma.i.zip + * Length Date Time Name + * -------- ---- ---- ---- + * 204372 09-06-09 14:23 decompress_unlzma.i + * -------- ------- + * 204372 1 file + */ + +//TODO: accept and ignore these? +// -a convert to text files with 't' label, -aa: all files +// -b do not convert to text - bbox: we don't convert anything +// -D skip restoration of timestamps for extracted items - bbox: we don't restore these (yet?) +// -X restore user:group ownership + opts = 0; + /* '-' makes getopt return 1 for non-options */ + while ((i = getopt(argc, argv, "-d:lnotpqxjvK")) != -1) { + switch (i) { + case 'd': /* Extract to base directory */ + base_dir = optarg; + break; + + case 'l': /* List */ + opts |= OPT_l; + break; + + case 'n': /* Never overwrite existing files */ + overwrite = O_NEVER; + break; + + case 'o': /* Always overwrite existing files */ + overwrite = O_ALWAYS; + break; + + case 't': /* Extract files to /dev/null */ + xmove_fd(xopen("/dev/null", O_WRONLY), STDOUT_FILENO); + /*fallthrough*/ + +// NB: -c extract files to stdout/screen (unlike -p, also prints .zip and file names to stdout) + case 'p': /* Extract files to stdout */ + dst_fd = STDOUT_FILENO; + /*fallthrough*/ + + case 'q': /* Be quiet */ + quiet++; + break; + + case 'v': /* Verbose list */ + IF_FEATURE_UNZIP_CDF(verbose++;) + opts |= OPT_l; + break; + + case 'x': + opts |= OPT_x; + break; + + case 'j': + opts |= OPT_j; + break; + + case 'K': + opts |= OPT_K; + break; + + case 1: + if (!src_fn) { + /* The zip file */ + /* +5: space for ".zip" and NUL */ + src_fn = xmalloc(strlen(optarg) + 5); + strcpy(src_fn, optarg); + } else if (!(opts & OPT_x)) { + /* Include files */ + llist_add_to(&zaccept, optarg); + } else { + /* Exclude files */ + llist_add_to(&zreject, optarg); + } + break; + + default: + bb_show_usage(); + } + } + +#ifndef __GLIBC__ + /* + * This code is needed for non-GNU getopt + * which doesn't understand "-" in option string. + * The -x option won't work properly in this case: + * "unzip a.zip q -x w e" will be interpreted as + * "unzip a.zip q w e -x" = "unzip a.zip q w e" + */ + argv += optind; + if (argv[0]) { + /* +5: space for ".zip" and NUL */ + src_fn = xmalloc(strlen(argv[0]) + 5); + strcpy(src_fn, argv[0]); + while (*++argv) + llist_add_to(&zaccept, *argv); + } +#endif + + if (!src_fn) { + bb_show_usage(); + } + + /* Open input file */ + if (LONE_DASH(src_fn)) { + xdup2(STDIN_FILENO, zip_fd); + /* Cannot use prompt mode since zip data is arriving on STDIN */ + if (overwrite == O_PROMPT) + overwrite = O_NEVER; + } else { + static const char extn[][5] ALIGN1 = { ".zip", ".ZIP" }; + char *ext = src_fn + strlen(src_fn); + int src_fd; + + i = 0; + for (;;) { + src_fd = open(src_fn, O_RDONLY); + if (src_fd >= 0) + break; + if (++i > 2) { + *ext = '\0'; + bb_error_msg_and_die("can't open %s[.zip]", + src_fn + ); + } + strcpy(ext, extn[i - 1]); + } + xmove_fd(src_fd, zip_fd); + } + + /* Change dir if necessary */ + if (base_dir) { + /* -p DIR: try to create, errors don't matter. + * UnZip 6.00 does no multi-level mkdir (-p DIR1/DIR2 syntax), + * not using bb_make_directory() here (yet?) + */ + mkdir(base_dir, 0777); + xchdir(base_dir); + } + + if (quiet <= 1) { /* not -qq */ + if (quiet == 0) { + printf("Archive: %s\n", + printable_string(src_fn) + ); + } + if (opts & OPT_l) { + puts(verbose ? + " Length Method Size Cmpr Date Time CRC-32 Name\n" + "-------- ------ ------- ---- ---------- ----- -------- ----" + : + " Length Date Time Name\n" + "--------- ---------- ----- ----" + ); + } + } + +/* Example of an archive with one 0-byte long file named 'z' + * created by Zip 2.31 on Unix: + * 0000 [50 4b]03 04 0a 00 00 00 00 00 42 1a b8 3c 00 00 |PK........B..<..| + * sig........ vneed flags compr mtime mdate crc32> + * 0010 00 00 00 00 00 00 00 00 00 00 01 00 15 00 7a 55 |..............zU| + * >..... csize...... usize...... fnlen exlen fn ex> + * 0020 54 09 00 03 cc d3 f9 4b cc d3 f9 4b 55 78 04 00 |T......K...KUx..| + * >tra_field...................................... + * 0030 00 00 00 00[50 4b]01 02 17 03 0a 00 00 00 00 00 |....PK..........| + * ........... sig........ vmade vneed flags compr + * 0040 42 1a b8 3c 00 00 00 00 00 00 00 00 00 00 00 00 |B..<............| + * mtime mdate crc32...... csize...... usize...... + * 0050 01 00 0d 00 00 00 00 00 00 00 00 00 a4 81 00 00 |................| + * fnlen exlen clen. dnum. iattr eattr...... relofs> (eattr = rw-r--r--) + * 0060 00 00 7a 55 54 05 00 03 cc d3 f9 4b 55 78 00 00 |..zUT......KUx..| + * >..... fn extra_field........................... + * 0070 [50 4b]05 06 00 00 00 00 01 00 01 00 3c 00 00 00 |PK..........<...| + * 0080 34 00 00 00 00 00 |4.....| + */ + total_usize = 0; + total_size = 0; + total_entries = 0; + cdf_offset = find_cdf_offset(); /* try to seek to the end, find CDE and CDF start */ + while (1) { + zip_header_t zip; + mode_t dir_mode = 0777; +#if ENABLE_FEATURE_UNZIP_CDF + mode_t file_mode = 0666; +#endif + + if (!ENABLE_FEATURE_UNZIP_CDF || cdf_offset == BAD_CDF_OFFSET) { + /* Normally happens when input is unseekable. + * + * Valid ZIP file has Central Directory at the end + * with central directory file headers (CDFs). + * After it, there is a Central Directory End structure. + * CDFs identify what files are in the ZIP and where + * they are located. This allows ZIP readers to load + * the list of files without reading the entire ZIP archive. + * ZIP files may be appended to, only files specified in + * the CD are valid. Scanning for local file headers is + * not a correct algorithm. + * + * We try to do the above, and resort to "linear" reading + * of ZIP file only if seek failed or CDE wasn't found. + */ + uint32_t magic; + + /* Check magic number */ + xread(zip_fd, &magic, 4); + /* CDF item? Assume there are no more files, exit */ + if (magic == ZIP_CDF_MAGIC) { + dbg("got ZIP_CDF_MAGIC"); + break; + } + /* Data descriptor? It was a streaming file, go on */ + if (magic == ZIP_DD_MAGIC) { + dbg("got ZIP_DD_MAGIC"); + /* skip over duplicate crc32, cmpsize and ucmpsize */ + unzip_skip(3 * 4); + continue; + } + if (magic != ZIP_FILEHEADER_MAGIC) + bb_error_msg_and_die("invalid zip magic %08X", (int)magic); + dbg("got ZIP_FILEHEADER_MAGIC"); + + xread(zip_fd, zip.raw, ZIP_HEADER_LEN); + FIX_ENDIANNESS_ZIP(zip); + if (zip.fmt.zip_flags & SWAP_LE16(0x0008)) { + bb_error_msg_and_die("zip flag %s is not supported", + "8 (streaming)"); + } + } +#if ENABLE_FEATURE_UNZIP_CDF + else { + /* cdf_offset is valid (and we know the file is seekable) */ + cdf_header_t cdf; + cdf_offset = read_next_cdf(cdf_offset, &cdf); + if (cdf_offset == 0) /* EOF? */ + break; +# if 1 + xlseek(zip_fd, + SWAP_LE32(cdf.fmt.relative_offset_of_local_header) + 4, + SEEK_SET); + xread(zip_fd, zip.raw, ZIP_HEADER_LEN); + FIX_ENDIANNESS_ZIP(zip); + if (zip.fmt.zip_flags & SWAP_LE16(0x0008)) { + /* 0x0008 - streaming. [u]cmpsize can be reliably gotten + * only from Central Directory. + */ + zip.fmt.crc32 = cdf.fmt.crc32; + zip.fmt.cmpsize = cdf.fmt.cmpsize; + zip.fmt.ucmpsize = cdf.fmt.ucmpsize; + } +// Seen in some zipfiles: central directory 9 byte extra field contains +// a subfield with ID 0x5455 and 5 data bytes, which is a Unix-style UTC mtime. +// Local header version: +// u16 0x5455 ("UT") +// u16 size (1 + 4 * n) +// u8 flags: bit 0:mtime is present, bit 1:atime is present, bit 2:ctime is present +// u32 mtime +// u32 atime +// u32 ctime +// Central header version: +// u16 0x5455 ("UT") +// u16 size (5 (or 1?)) +// u8 flags: bit 0:mtime is present, bit 1:atime is present, bit 2:ctime is present +// u32 mtime (CDF does not store atime/ctime) +# else + /* CDF has the same data as local header, no need to read the latter... + * ...not really. An archive was seen with cdf.extra_len == 6 but + * zip.extra_len == 0. + */ + memcpy(&zip.fmt.version, + &cdf.fmt.version_needed, ZIP_HEADER_LEN); + xlseek(zip_fd, + SWAP_LE32(cdf.fmt.relative_offset_of_local_header) + 4 + ZIP_HEADER_LEN, + SEEK_SET); +# endif + if ((cdf.fmt.version_made_by >> 8) == 3) { + /* This archive is created on Unix */ + file_mode = (cdf.fmt.external_attributes >> 16); + if (!(opts & OPT_K)) + file_mode &= ~(mode_t)(S_ISUID | S_ISGID); + dir_mode = file_mode; + } + } +#endif + + if (zip.fmt.zip_flags & SWAP_LE16(0x0001)) { + /* 0x0001 - encrypted */ + bb_error_msg_and_die("zip flag %s is not supported", + "1 (encryption)"); + } + dbg("File cmpsize:0x%x extra_len:0x%x ucmpsize:0x%x", + (unsigned)zip.fmt.cmpsize, + (unsigned)zip.fmt.extra_len, + (unsigned)zip.fmt.ucmpsize + ); + + /* Read filename */ + free(dst_fn); + die_if_bad_fnamesize(zip.fmt.filename_len); + dst_fn = xzalloc(zip.fmt.filename_len + 1); + xread(zip_fd, dst_fn, zip.fmt.filename_len); + /* Skip extra header bytes */ + unzip_skip(zip.fmt.extra_len); + + /* Guard against "/abspath", "/../" and similar attacks */ +// NB: UnZip 6.00 has option -: to disable this + overlapping_strcpy(dst_fn, strip_unsafe_prefix(dst_fn)); + + /* Filter zip entries */ + if (find_list_entry(zreject, dst_fn) + || (zaccept && !find_list_entry(zaccept, dst_fn)) + ) { /* Skip entry */ + goto skip_cmpsize; + } + + if (opts & OPT_l) { + /* List entry */ + char dtbuf[sizeof("mm-dd-yyyy hh:mm")]; + sprintf(dtbuf, "%02u-%02u-%04u %02u:%02u", + (zip.fmt.moddate >> 5) & 0xf, // mm: 0x01e0 + (zip.fmt.moddate) & 0x1f, // dd: 0x001f + (zip.fmt.moddate >> 9) + 1980, // yy: 0xfe00 + (zip.fmt.modtime >> 11), // hh: 0xf800 + (zip.fmt.modtime >> 5) & 0x3f // mm: 0x07e0 + // seconds/2 not shown, encoded in -- 0x001f + ); + if (!verbose) { + // " Length Date Time Name\n" + // "--------- ---------- ----- ----" + printf( "%9u " "%s " "%s\n", + (unsigned)zip.fmt.ucmpsize, + dtbuf, + printable_string(dst_fn) + ); + } else { + char method6[7]; + unsigned long percents; + + sprintf(method6, "%6u", zip.fmt.method); + if (zip.fmt.method == 0) { + strcpy(method6, "Stored"); + } + if (zip.fmt.method == 8) { + strcpy(method6, "Defl:N"); + /* normal, maximum, fast, superfast */ + IF_DESKTOP(method6[5] = "NXFS"[(zip.fmt.zip_flags >> 1) & 3];) + } + percents = zip.fmt.ucmpsize - zip.fmt.cmpsize; + if ((int32_t)percents < 0) + percents = 0; /* happens if ucmpsize < cmpsize */ + percents = percents * 100; + if (zip.fmt.ucmpsize) + percents /= zip.fmt.ucmpsize; + // " Length Method Size Cmpr Date Time CRC-32 Name\n" + // "-------- ------ ------- ---- ---------- ----- -------- ----" + printf( "%8u %s" "%9u%4u%% " "%s " "%08x " "%s\n", + (unsigned)zip.fmt.ucmpsize, + method6, + (unsigned)zip.fmt.cmpsize, + (unsigned)percents, + dtbuf, + zip.fmt.crc32, + printable_string(dst_fn) + ); + total_size += zip.fmt.cmpsize; + } + total_usize += zip.fmt.ucmpsize; + goto skip_cmpsize; + } + + if (dst_fd == STDOUT_FILENO) { + /* Extracting to STDOUT */ + goto do_extract; + } + + /* Strip paths (after -l: unzip -lj a.zip lists full names) */ + if (opts & OPT_j) + overlapping_strcpy(dst_fn, bb_basename(dst_fn)); + /* Did this strip everything ("DIR/" case)? Then skip */ + if (!dst_fn[0]) + goto skip_cmpsize; + + if (last_char_is(dst_fn, '/')) { + int mode; + + /* Extract directory */ + mode = get_lstat_mode(dst_fn); + if (mode == -1) { /* ENOENT */ + if (!quiet) { + printf(" creating: %s\n", printable_string(dst_fn)); + } + unzip_create_leading_dirs(dst_fn); + if (bb_make_directory(dst_fn, dir_mode, FILEUTILS_IGNORE_CHMOD_ERR)) { + xfunc_die(); + } + } else { + if (!S_ISDIR(mode)) { + bb_error_msg_and_die("'%s' exists but is not a %s", + printable_string(dst_fn), + "directory" + ); + } + } + goto skip_cmpsize; + } + check_file: + /* Does target file already exist? */ + { + int mode = get_lstat_mode(dst_fn); + if (mode == -1) { + /* ENOENT: does not exist */ + goto do_open_and_extract; + } + if (overwrite == O_NEVER) { + goto skip_cmpsize; + } + if (!S_ISREG(mode)) { + fishy: + bb_error_msg_and_die("'%s' exists but is not a %s", + printable_string(dst_fn), + "regular file" + ); + } + if (overwrite == O_ALWAYS) { + goto do_open_and_extract; + } + printf("replace %s? [y]es, [n]o, [A]ll, [N]one, [r]ename: ", + printable_string(dst_fn) + ); + my_fgets80(key_buf); + /* User input could take a long time. Is it still a regular file? */ + mode = get_lstat_mode(dst_fn); + if (!S_ISREG(mode)) + goto fishy; + } + + /* Extract (or skip) it */ + switch (key_buf[0]) { + case 'A': + overwrite = O_ALWAYS; + case 'y': /* Open file and fall into unzip */ + do_open_and_extract: + unzip_create_leading_dirs(dst_fn); +#if ENABLE_FEATURE_UNZIP_CDF + dst_fd = -1; + if (!S_ISLNK(file_mode)) { + dst_fd = xopen3(dst_fn, + O_WRONLY | O_CREAT | O_TRUNC | O_NOFOLLOW, + file_mode); + } +#else + /* O_NOFOLLOW defends against symlink attacks */ + dst_fd = xopen(dst_fn, O_WRONLY | O_CREAT | O_TRUNC | O_NOFOLLOW); +#endif + if (!quiet) { + printf(/* zip.fmt.method == 0 + ? " extracting: %s\n" + : */ " inflating: %s\n", + printable_string(dst_fn) + ); + } + do_extract: +#if ENABLE_FEATURE_UNZIP_CDF + if (S_ISLNK(file_mode)) { + if (dst_fd != STDOUT_FILENO) /* not -p? */ + unzip_extract_symlink(&symlink_placeholders, &zip, dst_fn); + } else +#endif + { + unzip_extract(&zip, dst_fd); + if (dst_fd != STDOUT_FILENO) { + /* closing STDOUT is potentially bad for future business */ + close(dst_fd); + } + } + break; + + case 'N': + overwrite = O_NEVER; + case 'n': /* Skip entry data */ + skip_cmpsize: + unzip_skip(zip.fmt.cmpsize); + break; + + case 'r': + /* Prompt for new name */ + printf("new name: "); + my_fgets80(key_buf); + free(dst_fn); + dst_fn = xstrdup(key_buf); + chomp(dst_fn); + goto check_file; + + default: + printf("error: invalid response [%c]\n", (char)key_buf[0]); + goto check_file; + } + + total_entries++; + } + +#if ENABLE_FEATURE_UNZIP_CDF + create_links_from_list(symlink_placeholders); +#endif + + if ((opts & OPT_l) && quiet <= 1) { + if (!verbose) { + // " Length Date Time Name\n" + // "--------- ---------- ----- ----" + printf( " --------%21s" "-------\n" + "%9lu%21s" "%u files\n", + "", + total_usize, "", total_entries); + } else { + unsigned long percents = total_usize - total_size; + if ((long)percents < 0) + percents = 0; /* happens if usize < size */ + percents = percents * 100; + if (total_usize) + percents /= total_usize; + // " Length Method Size Cmpr Date Time CRC-32 Name\n" + // "-------- ------ ------- ---- ---------- ----- -------- ----" + printf( "-------- ------- ----%28s" "----\n" + "%8lu" "%17lu%4u%%%28s" "%u files\n", + "", + total_usize, total_size, (unsigned)percents, "", + total_entries); + } + } + + return 0; +} diff --git a/busybox-1_37_0/boot-files/initramfs/bin/arch b/busybox-1_37_0/boot-files/initramfs/bin/arch new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/arch @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/ash b/busybox-1_37_0/boot-files/initramfs/bin/ash new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/ash @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/base32 b/busybox-1_37_0/boot-files/initramfs/bin/base32 new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/base32 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/base64 b/busybox-1_37_0/boot-files/initramfs/bin/base64 new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/base64 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/busybox b/busybox-1_37_0/boot-files/initramfs/bin/busybox new file mode 100755 index 0000000000000000000000000000000000000000..219241cb514da15d0e53f4627ea61ef91c2d296f GIT binary patch literal 2310232 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%0DIozwPrT!_M5t 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

1ez(mkj=k)gU|zCjSB_&u#82!~WUX$=6koBh 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

U@5Sr_K1LN^n(NhdJu+|z}cd>4l1y3oPI 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

HwI6`qCGWbtPvZZZo9k|>YxczZ(7 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

wyr_kGc7rOPNYKlzv+vx8tqZziP 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

iPtsi5nYyWK3e?+r3PsR4Iv6Y;JE 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

77!Ax? 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

    1^d@0;7*MeTCwvf@kXS0Lx{-ZmdAt*;LrN;HAR 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

    ?V)IJQJJA@i8N`W5&g&#;Ny{>Gcun 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 z zhRCE+NzQtb!`Tqv>>xdH18Swe>-qGmFgviAA#4b>eYVIdFnwTIECTR)j@xX8?fY$ec4>&j6xpJ{S>A<&6p|hN4*F2{ z`FzON=nD1VBNl}c0S9L=lrOjKHloJO(tmr$gH<%oL#NMVHcUxBTkMHh<;6aTazNm` zx%!07aOPmmmDa4H;!&%rOgT3k%57<+KUX`aiYfb3^b6!|)iiTy?&c)oJD}W{x#SMZ zsI;hqNQtRw65L3oI$2QQ+M6!s&2meV;5E%vl(vRmTF~o8@kX#*#M=6$j{lTt;7BsC`Pj85k?ns8=HvdjiCqZDM}G0x)A3tmKE zq9%uk8c5iOZ?!hl=}e1K_i zkm{p!%RIdwABqHOlm12aJHBiQ$z$u1eVIm0av|%%n#Q&5n*rRoLsCVBM8treKm5e} zBdCR>kZ_}cuSJcAEuepg-&GWdt2@7IPOp;yHWCXY`5N^VNd=5#qCVjaz!KO|76wdb z$Wb3(p0>iSF@xq~A?ss%(_ z^M`c}5|n-sE#e=3^GS~zB`80HaRe%bxS}2rbn+%R++Ly?0kemk$mk`a8>4gw;{>dC zSW)8>?>0~haG>AKK?{Fy$y0Pz54UA6RU2u;Hp`Sq3>9zzS1h0HCAjftFq;YYKMJ3D(hEj^B6HX!N zk#}=8_N7KI%OBn1*h(+a8;r}FTgEQD>!L4_*MFYdkhW$ueUFar$j&}rr(W`1E*C1S zT^Hl4%%U2}Q!uK=6@IkAyfP;4tu$by2=GQKaTZZyi&xNc4#5%BrSU}<6?SH7*XWBo z=H!(~b28(t6HWT=X)e_BA=j53QtNHiM*K3WcS|gLU~z9-9b}b!zG2hp7gNsFMdhLv zT_uT7vJs53y@NBzFtY?B5g3ZScd6A$likClBUrAc+Ue=NDwpfQHAKIv6k(FANn0xo zAhV`?nb=lN+c03PwJ25{n?xEG5|=ncs9CK>Q3P$LVY%G-Sc8n?6PnLyeAG`0 z_R~WV?r^$xS}P6CthOk@MZ%`ckGf@sRWnh-i&!}}XtCCC{`M9&ZR!?tMb%wVcFoGP z3aSf%U<>Il0S5K9Ue}<(gS{$wTUfgas6qzRSU|L@3p;a^=R4wDBOp;Y2sdg)7H9{6uQg1`a_Q&2n zy-##CDikxyG?x0=Mx_*9&S=a<;~K+&!+X~oJP{)~HbGie%K}U&(**|BorQxFBv#EW zNxErkeWP_3%SFQBBWuV!R5&wDjd^xp?%$kMK&{ta-Or9(!;G@oTiw3zRZ%TQ43pbN zQLkD&`BFu9>>D&!ABpn49tYW5c>^|!=sWFYw;jangh)$%f)V2?BjP73i^ z2aAj-3{B*y-!4+29`O59KK6HqYpmg%a5r8M&t9!4DLvQ~0xA%ez}U@3t71ZJdkcay zdj(3A8z?9Z7A~=M3z3=~Bbrf@OF*jnQ6cg-)}D#1St8V7p!FFR9J7Gou~b3{s*0G% z85`RyDK@I0O7C>v32M_9mJhjxzS|<)Ces3Gwvq`nkbw^iULp73<54+YHw8sDw5!An zJVkOS=w&D{*&ORH%kL@1cJIF2==f12?%{XddC^io49&oi+bp^&4eI;E`DB?w^<4=a zXHr$yNlEBY?db2J9GzZrZ$(Ro5MiLSGUPO!vk+%W31VtQRX#`ULEJ%gLcgMbh;oDPD$SXay zTquSNTb*yV@fk;@L8C3ioGA;3+)7bE)u(r$WPxg>#1DtG4YgMkG#DN`a7O!%qO{So z7z8lbGXxy@PDdd4y}u_9V3v4S!!ozo>7A-Luv+p0gL&83U+e)G%FtU&gpnx01}L#e zkPJYC5YM@brC}HT7cLCdcsZPgBj{->!6J!)wND((%H~k=O81FTS%%s0L$HB*7u@Sq zDj5|qofTJ58sL#W$~Ck+hwb^J>OQ6^wi9xSvSc5rwK*1LCWMq6krQJ{Gsv|zg5ZU$biWJ|PR+Hxv*Y?s<4{aTM z|ItZ8GceiSLz{wkMPh*!RuN$$sH9jbq6o|mbH9dGA)H4^PSa&ZM|8^C%odZc%&@0vOb?k9$jfHB3AU^;`rT5UD`xHw~^zjc8}ex^8C3S770$wz zR*aDY8YLUCn+~T1rY;b?Z~`f-wB&xgtvYCig7VvmpG{LK zkUnUo0wI_> z_iCJuop>hbCNreMi_Z-Z92$6l+=ksbQ2-KOdhV(E8~ zhU^9&W&2#A6*Y2h0!Ji* z-uF~(>1MG;lsa*zmqujXOxC2pNv#Xk7=&D5=2o)!P1H#NP20yU6oGv@(a=dzH0CJW zx)SP|>g>l`brs`i-JV4mq(QN~yom|jOQ8~Mp$delmwbwn>4iCX*L=GJ3=v4RKaO_Xa>r!wz0}kWEl@@u&@^rj`A3frUj6*J{Q<(_YNMn@Gxw*FwT6WQTCDSb{2cj0!T^EKyh>$f^oZXv7dvg1zkxN%yiD zGAfaR$S8S2##v4uXH|jMUqUA_G*AH=U1nwDC+s6)W&8?{Z;? zf~qkMiWC_dJQtQ3 zxeewq4!*a%$(*Fg^AA_bAt8U|;>VDcwuu>J+9M-2nkpEB>j*!CpxzIa{j^H|`))1pFZ=VEBu0S_Au+Gu3N41sHyd{4*j7c?>x6q=D^CjjTOTaXwT&zU0=z zsPsBtrj&{ljGo74PpUXW=&w5)Gi!ecs7MUuMf1XPoTS6?ps`|v(pvMh zYC=FvwK%i!HPTP7Aiam(z8h^ZwuodkDWvP7s|^?I3`i-{k;$q*O~d;Gx`1PkGFHY2h!*@rWb3J`4syBtk_>xB$=-Y;S~Et?EV1 z0Q|D$jf=uAc=p9f6djzp3g(U!LycZCejNH;@YI3T04j3^3?}28oGR(dDOOa=!u|E2 z6;1s0&PC+pH99ofV@!M+k}6_xm}bZ;CApPDkis73LuPQ)IB3gMYRgMFOmvk2K@e>U z!x>N(3n7S6fFh5D3ZTLwf{PTJu-$-X;0SK=4F@P1)8V6IU=cRSURG2E1XkJ%`BJE| z(#@$sK~qZ9PrZm#XQR8!^WfJ$eEIV$q*9=w$9>0`%HQ)!GdW0X2AQJ$a3VqmxstjVG!EkHG;Tj=zg2Sn}Il4mfp^gvQFD7=SE@NGkMFC$?H%^5>GL_Kj> zlHVBZr6J{olDKYC@$+ zGSw(j!9n*@>sg3i4$pRq6}mf3d9&xD5zU1R#8-fMZb3XP$2gq zpFwOMsujdIWPRzI2atmD7xzt#fHDTRN??*uJNZEV3YwcCwA>Q%AFc4ShNBz0!t6bA z!4H%~q*SC7q@)EpLnm4VvMu1GMD2*@sSEC*z9y2L!DL(n4?Pv%-O2caQO_g?Kn zbOlf^5uapobq(0`=Mbj?LbwML7Ld=Tbb8A}hop zHbL;XbPNhwp2^VV1E&70l3qn^5-*x1OntI7G@-lZU&QyXG(AhD92bafrjkNX)o2JR z(n+R=NJ6|-ljC!@mWSm~`JXGbM#+x&HWNt)G@&$Zr&&1EgQ}{{lLa*%uU1j*Yl5{H zTymu)NG+QjPTZwXqc>$l| zcJPP8dk?SKex!%ifmlj_EHBQ(i9Imx3RJWYpGsB+O;>>9)vsc5*k0gcE<>LGp_i2D z6V^fy2oTjaY|uzV$0aj$*{2uyM^We@2?Hi2N5K;Jg8d=TQLZLacCXYNJ!#FD|Xihz}n7}q< zH{Q>=friRbp(;i&{OB39FUdB;^D;vNm}KR(UZQ|Lkgu|V93kKK?@A4=6<@y$W)A8^ z!yCt6BZd_je%vj=fIJ}wHjvmXM9>OZc!&web`YCkvxqeXcRyA$!u`gpJa4IEC}EUX zPZ2I?UbTt08VzpAu45zCH@Hj$8W0q=C5wRKYk5FhV0#dwt7dl9t6zAP<6(t>_|kJ6 zM&i*3!ay&+*Fv;}r(z2hkRnuAKCZDykS3GD?bv~p1?^{f6=9_Tp~M#!F=wZ*>+Hu~ zTL@&CwxEwsXP2z;6bGLwi#d;7NK&BMkdq`ZcxWg{Snh*vH6_AB?MXZjh`>b{0TG1= z9YjhH#7r|o+ft-woR}6mK+dsW!fn9r-sI<#2G0g4KK= z749)$Z(b5f0=VS&!o>sLMF|tZIc(wqyJsAK9*^0r$OGt*fspCo2LechBFIQcBpD(g z2c4BjMHR_I!!SJw5k^3e>LDXSNSl|a;2X;X#~wMt`%uO}QbmZ7WM@G729K=$Hjs=) z3=~q;oQD)dV&(e&={=#MZRn=SGI-O^4W#0cYjLNVhJ}N%(0t^=#5!i%MG%J0@*am zEel)U)J8#45f|7Dq8x(^3(7Ehm~9qpdIbrv8y3ABOcd|;T*R9@N_3ngJ)NjKb->nL zCqCA2uZw7g-|X~Zvh0UUh8ZkXSZL6Bz%+5I$~>bTz@h>Y!#J`{H0REW?@3 znh3=%Iv3l9w!=p%R3f7UIi&3&9iz-0z^0TJcw%@Kcbz2FNC#{HV51okoTCqa5 zhNd8e1y!(6tW?&r-DJS`GOiQ}vzeP&N3__@gGTrtVC;s>7%HeUg32jvf@xZ8mK)d< zDNVA7QE4yd-(B`aE!sFJB9+f_&6 z_%lWZr6ng@no)AE%kS^(@va%LE#8|+_*k1zK3l~od1&cdFwmG9GxMBK{fyuPf_irQ zd;NPFEhgp@KxqY$epIAX86dNRwsq|fW*sdk&9XCR37#3USh0%~%l*&EG@zoz6o}8$ zOEYXMr%1zc>uneyj?}Rcjva6e#*Wq$F(X>hpot6crPeowG0av_8rSZs`BuUd1O=fJg2_; zVeVt>rCv|TG{!&X&5))S8S7xBEdu4KENe2-vSuZdLPDn|$4n`;%XLQ#31HFChQp~v zM6?Q6(wP_=GH~~3Gx%ZFXnf4h(j(>MYTB|Y1YwAz*fw}?oQFm0AH~IeMPiB?o7bVX zePaS_`*foO{E+_U7z|IWDH02#pu~;6upZ3MNpY`ZV8Y;c8~C(bG$Zt3HY>31-t!Yt(A3NLXGpp$t&W9dxlx*G}XiN+Nlq+8nKT8Rz*8}y*W5}wcglqlHwy5T`W1BbQiam zt+WY2N9dlprSt5O1pGELZ7x~` zR1%}=(=XR0Zi!L4_~b^7hgSn_VBRWYxh zTr58*uuJ5RYtEHqX0rTEzB74fIOFH{}3jp7wKWpQ2P4WI$5t;ccdIdS|0#+{K4U!%gJ zBotVvg9V5zhiO__76`B`uuDq79NzvxJaYpEqGh$A&nAsS>AZ(*fw?9lY^hLfB8Sa@bAWZxDTNZ89cO;TZHpd! zzetsVhZ~8a*PQ5BuKo4qglS!dOl$WRuZIeT1??!_KQaMi5;yBE=ta?KX_)$>eSo|i zOR7`8z^`mpIO?@iMq73+812$6I!41WDkLJ{5=s+rnMO= z2hDkqYBZ|2B^%)$c8K#vN*WQ2CV*YHrcmNv+LIOdHPJ8BNM&HU+57jJvvu zE{zTsjc7~@bkhQ@BS$K?YymTV9c0AWOscRM^xBgvT{5kWNi7?1cef;>fy>$dx|9L- ziXed?ftYEL7@{hay-$mvPO1q-Ckj+Sl<3p52nLRk&TUhN0298-=NWmXuDpc|I zd@b*~gCvZEiRglPh#}zVcGq3>68G)9Ye#dw(LlkftXNHWX3AOwuKu} z3`&DzLo*B~CRk&k_hhb4N7r;5QBDbzz^pSZ5D|dK11lZbV4yms6@%8)RU)wjRMS|j zW8YNn{NW`h!{T)or)+6)6*=jM=PwHA8W|`)j1L)=Jgp5rlT67_@Z9eO5S$Mi6#PBc z-uH+bu}FFXQ3!DsEQY37LKunwup%lhhy$?@kSh?N4X9F$cU~Ue6)g@8T>*UXl(DH` zs$1Gac?pux%mmHF8NS36SWQL+5mb=);2U(~5jHePaEg(Hiy{?^ghJQ$YbpzCl#nDz z^=$*dX&)*hpP#_eooQXLX80J~5c2%{@$RT|7#j&ZUe?a9NjpMHbMUYMLL(w>5T^5{ zL_pZ3 z4S{qMP|1@CQZgSecGFW}1cgX#XrW6^UjtLoA7zqGNjG2{v(&g3rm{H?q8cDLp`?jz zl*&S}3rMiZ%MfrRH?}qLU_sH+qK2r>ncp_?7*p4TIciOjZzA$N`)q1J*~cJ+V*o@; zN(u9oK>oy`0w_q5I7P^x$gKwQerfoi8gVNp!IGhoo;+O-&FIOAdy4?hDJYvWJG;

    + + "endmenu" + +This defines a menu block, see "Menu structure" above for more +information. The only possible options are dependencies. + +if: + + "if" + + "endif" + +This defines an if block. The dependency expression is appended +to all enclosed menu entries. + +source: + + "source" + +This reads the specified configuration file. This file is always parsed. diff --git a/busybox-1_37_0/docs/Serial-Programming-HOWTO.txt b/busybox-1_37_0/docs/Serial-Programming-HOWTO.txt new file mode 100644 index 000000000..8a3954b09 --- /dev/null +++ b/busybox-1_37_0/docs/Serial-Programming-HOWTO.txt @@ -0,0 +1,424 @@ +Downloaded from http://www.lafn.org/~dave/linux/Serial-Programming-HOWTO.txt +Seems to be somewhat old, but contains useful bits for getty.c hacking +============================================================================ + + The Linux Serial Programming HOWTO, Part 1 of 2 + By Vernon C. Hoxie + v2.0 10 September 1999 + + This document describes how to program communications with devices + over a serial port on a Linux box. + ______________________________________________________________________ + + Table of Contents + + 1. Copyright + + 2. Introduction + + 3. Opening + + 4. Commands + + 5. Changing Baud Rates + + 6. Additional Control Calls + + 6.1 Sending a "break". + 6.2 Hardware flow control. + 6.3 Flushing I/O buffers. + + 7. Modem control + + 8. Process Groups + + 8.1 Sessions + 8.2 Process Groups + 8.3 Controlling Terminal + 8.3.1 Get the foreground group process id. + 8.3.2 Set the foreground process group id of a terminal. + 8.3.3 Get process group id. + + 9. Lockfiles + + 10. Additional Information + + 11. Feedback + + ______________________________________________________________________ + + 1. Copyright + + The Linux Serial-Programming-HOWTO is copyright (C) 1997 by Vernon + Hoxie. Linux HOWTO documents may be reproduced and distributed in + whole or in part, in any medium physical or electronic, as long as + this copyright notice is retained on all copies. Commercial + redistribution is allowed and encouraged; however, the author would + like to be notified of any such distributions. + + All translations, derivative works, or aggregate works incorporating + this Linux HOWTO document must be covered under this copyright notice. + That is, you may not produce a derivative work from this HOWTO and + impose additional restrictions on its distribution. + + This version is a complete rewrite of the previous Serial-Programming- + HOWTO by Peter H. Baumann, + + 2. Introduction + + This HOWTO will attempt to give hints about how to write a program + which needs to access a serial port. Its principal focus will be on + the Linux implementation and what the meaning of the various library + functions available. + + Someone asked about which of several sequences of operations was + right. There is no absolute right way to accomplish an outcome. The + options available are too numerous. If your sequences produces the + desired results, then that is the right way for you. Another + programmer may select another set of options and get the same results. + His method is right for him. + + Neither of these methods may operate properly with some other + implementation of UNIX. It is strange that many of the concepts which + were implemented in the SYSV version have been dumped. Because UNIX + was developed by AT&T and much code has been generated on those + concepts, the AT&T version should be the standard to which others + should emulate. + + Now the standard is POSIX. + + It was once stated that the popularity of UNIX and C was that they + were created by programmers for programmers. Not by scholars who + insist on purity of style in deference to results and simplicity of + use. Not by committees with people who have diverse personal or + proprietary agenda. Now ANSI and POSIX have strayed from those + original clear and simply concepts. + + 3. Opening + + The various serial devices are opened just as any other file. + Although, the fopen(3) command may be used, the plain open(2) is + preferred. This call returns the file descriptor which is required + for the various commands that configure the interface. + + Open(2) has the format: + + #include + int open(char *path, int flags, [int mode]); + + In addition to the obvious O_RDWR, O_WRONLY and O_RDONLY, two + additional flags are available. These are O_NONBLOCK and O_NOCTTY. + Other flags listed in the open(2) manual page are not applicable to + serial devices. + + Normally, a serial device opens in "blocking" mode. This means that + the open() will not return until the Carrier Detect line from the port + is active, e.g. modem, is active. When opened with the O_NONBLOCK + flag set, the open() will return immediately regardless of the status + of the DCD line. The "blocking" mode also affects the read() call. + + The fcntl(2) command can be used to change the O_NONBLOCK flag anytime + after the device has been opened. + + The device driver and the data passing through it are controlled + according to settings in the struct termios. This structure is + defined in "/usr/include/termios.h". In the Linux tree, further + reference is made to "/usr/include/asm/termbits.h". + In blocking mode, a read(2) will block until data is available or a + signal is received. It is still subject to state of the ICANON flag. + + When the termios.c_lflag ICANON bit is set, input data is collected + into strings until a NL, EOF or EOL character is received. You can + define these in the termios.c_cc[] array. Also, ERASE and KILL + characters will operate on the incoming data before it is delivered to + the user. + + In non-canonical mode, incoming data is quantified by use of the + c_cc[VMIN and c_cc[VTIME] values in termios.c_cc[]. + + Some programmers use the select() call to detect the completion of a + read(). This is not the best way of checking for incoming data. + Select() is part of the SOCKETS scheme and too complex for most + applications. + + A full explanation of the fields of the termios structure is contained + in termios(7) of the Users Manual. A version is included in Part 2 of + this HOWTO document. + + 4. Commands + + Changes to the struct termios are made by retrieving the current + settings, making the desired changes and transmitting the modified + structure back to the kernel. + + The historic means of communicating with the kernel was by use of the + ioctl(fd, COMMAND, arg) system call. Then the purists in the + computer industry decided that this was not genetically consistent. + Their argument was that the argument changed its stripes. Sometimes + it was an int, sometimes it was a pointer to int and other times it + was a pointer to struct termios. Then there were those times it was + empty or NULL. These variations are dependent upon the COMMAND. + + As a alternative, the tc* series of functions were concocted. + + These are: + + int tcgetattr(int filedes, struct termios *termios_p); + int tcsetattr(int filedes, int optional_actions, + const struct termios *termios_p); + + instead of: + + int ioctl(int filedes, int command, + struct termios *termios_p); + + where command is TCGETS or one of TCSETS, TCSETSW or TCSETSF. + + The TCSETS command is comparable to the TCSANOW optional_action for + the tc* version. These direct the kernel to adopt the changes + immediately. Other pairs are: + + command optional_action Meaning + TCSETSW TCSADRAIN Change after all output has drained. + TCSETSF TCSAFLUSH Change after all output has drained + then discard any input characters + not read. + + Since the return code from either the ioctl(2) or the tcsetattr(2) + commands only indicate that the command was processed by the kernel. + These do not indicate whether or not the changes were actually + accomplished. Either of these commands should be followed by a call + to: + + ioctl(fd, TCGETS, &new_termios); + + or: + + tcgetattr(fd, &new_termios); + + A user function which makes changes to the termios structure should + define two struct termios variables. One of these variables should + contain the desired configuration. The other should contain a copy of + the kernels version. Then after the desired configuration has been + sent to the kernel, another call should be made to retrieve the + kernels version. Then the two compared. + + Here is an example of how to add RTS/CTS flow control: + + struct termios my_termios; + struct termios new_termios; + + tcgetattr(fd, &my_termios); + my_termios.c_flag |= CRTSCTS; + tcsetattr(fd, TCSANOW, &my_termios); + tcgetattr(fd, &new_termios); + if (memcmp(my_termios, new_termios, + sizeof(my_termios)) != 0) { + /* do some error handling */ + } + + 5. Changing Baud Rates + + With Linux, the baud rate can be changed using a technique similar to + add/delete RTS/CTS. + + struct termios my_termios; + struct termios new_termios; + + tcgetattr(fd, &my_termios); + my_termios.c_flag &= ~CBAUD; + my_termios.c_flag |= B19200; + tcsetattr(fd, TCSANOW, &my_termios); + tcgetattr(fd, &new_termios); + if (memcmp(my_termios, new_termios, + sizeof(my_termios)) != 0) { + /* do some error handling */ + } + + POSIX adds another method. They define: + + speed_t cfgetispeed(const struct termios *termios_p); + speed_t cfgetospeed(const struct termios *termios_p); + + library calls to extract the current input or output speed from the + struct termios pointed to with *termio_p. This is a variable defined + in the calling process. In practice, the data contained in this + termios, should be obtained by the tcgetattr() call or an ioctl() call + using the TCGETS command. + + The companion library calls are: + + int cfsetispeed(struct termios *termios_p, speed_t speed); + int cfsetospeed(struct termios *termios_p, speed_t speed); + + which are used to change the value of the baud rate in the locally + defined *termios_p. Following either of these calls, either a call to + tcsetattr() or ioctl() with one of TCSETS, TCSETSW or TCSETSF as the + command to transmit the change to the kernel. + + The cf* commands are preferred for portability. Some weird Unices use + a considerably different format of termios. + + Most implementations of Linux use only the input speed for both input + and output. These functions are defined in the application program by + reference to . In reality, they are in + /usr/include/asm/termbits.h. + + 6. Additional Control Calls + + 6.1. Sending a "break". + + int ioctl(fd, TCSBRK, int arg); + int tcsendbreak(fd, int arg); + + Send a break: Here the action differs between the conventional + ioctl() call and the POSIX call. For the conventional call, an arg of + '0' sets the break control line of the UART for 0.25 seconds. For the + POSIX command, the break line is set for arg times 0.1 seconds. + + 6.2. Hardware flow control. + + int ioctl(fd, TCXONC, int action); + int tcflow(fd, int action); + + The action flags are: + + o TCOOFF 0 suspend output + + o TCOON 1 restart output + + o TCIOFF 2 transmit STOP character to suspend input + + o TCION 3 transmit START character to restart input + + 6.3. Flushing I/O buffers. + + int ioctl(fd, TCFLSH, queue_selector); + int tcflush(fd, queue_selector); + + The queue_selector flags are: + + o TCIFLUSH 0 flush any data not yet read from the input buffer + + o TCOFLUSH 1 flush any data written to the output buffer but not + yet transmitted + + o TCIOFLUSH 2 flush both buffers + + 7. Modem control + + The hardware modem control lines can be monitored or modified by the + ioctl(2) system call. A set of comparable tc* calls apparently do not + exist. The form of this call is: + + int ioctl(fd, COMMAND, (int *)flags); + + The COMMANDS and their action are: + + o TIOCMBIS turn on control lines depending upon which bits are set + in flags. + + o TIOCMBIC turn off control lines depending upon which bits are + unset in flags. + o TIOCMGET the appropriate bits are set in flags according to the + current status + + o TIOCMSET the state of the UART is changed according to which bits + are set/unset in 'flags' + + The bit pattern of flags refer to the following control lines: + + o TIOCM_LE Line enable + + o TIOCM_DTR Data Terminal Ready + + o TIOCM_RTS Request to send + + o TIOCM_ST Secondary transmit + + o TIOCM_SR Secondary receive + + o TIOCM_CTS Clear to send + + o TIOCM_CAR Carrier detect + + o TIOCM_RNG Ring + + o TIOCM_DSR Data set ready + + It should be noted that some of these bits are controlled by the modem + and the UART cannot change them but their status can be sensed by + TIOCMGET. Also, most Personal Computers do not provide hardware for + secondary transmit and receive. + + There are also a pair of ioctl() to monitor these lines. They are + undocumented as far as I have learned. The commands are TIOCMIWAIT + and TCIOGICOUNT. They also differ between versions of the Linux + kernel. + + See the lines.c file in my "serial_suite" for an example of how these + can be used see + + 8. Process Groups + + 8.1. Sessions + + 8.2. Process Groups + + Any newly created process inherits the Process Group of its creator. + The Process Group leader has the same PID as PGID. + + 8.3. Controlling Terminal + + There are a series of ioctl(2) and tc*(2) calls which can be used to + monitor or to change the process group to which the device is + attached. + + 8.3.1. Get the foreground group process id. + + If there is no foreground group, a number not representing an existing + process group is returned. On error, a -1 is returned and errno is + set. + + int ioctl(fd, TIOCGPGRP, (pid_t *)pid); + int tcgetpgrp(fd, (pid_t *)pid); + + 8.3.2. Set the foreground process group id of a terminal. + + The fd must be the controlling terminal and be associated with the + session of the calling process. + + int ioctl(fd, TIOCSPGRP, (pid_t *)pid); + int tcsetpgrp(fd, (pid_t *)pid); + + 8.3.3. Get process group id. + + int ioctl(fd, TIOCGPGRP, &(pid_t)pid); + int tcgetpgrp(fd, &(pid_t)pid); + + 9. Lockfiles + + Any process which accesses a serial device should first check for the + existence of lock file for the desired device. If such a lock lock + file exists, this means that the device may be in use by another + process. + + Check my "libdevlocks-x.x.tgz" at + for an example of how these lock + files should be utilized. + + 10. Additional Information + + Check out my "serial_suite.tgz" for more information about programming + the serial ports at . There some + examples and some blurbs about setting up modems and comments about + some general considerations. + + 11. Feedback + + Please send me any corrections, questions, comments, suggestions, or + additional material. I would like to improve this HOWTO! Tell me + exactly what you don't understand, or what could be clearer. You can + reach me at via email. Please + include the version number of the Serial-Programming-HOWTO when + writing. diff --git a/busybox-1_37_0/docs/busybox_footer.pod b/busybox-1_37_0/docs/busybox_footer.pod new file mode 100644 index 000000000..0f4810bd3 --- /dev/null +++ b/busybox-1_37_0/docs/busybox_footer.pod @@ -0,0 +1,284 @@ +=head1 LIBC NSS + +GNU Libc (glibc) uses the Name Service Switch (NSS) to configure the behavior +of the C library for the local environment, and to configure how it reads +system data, such as passwords and group information. This is implemented +using an /etc/nsswitch.conf configuration file, and using one or more of the +/lib/libnss_* libraries. BusyBox tries to avoid using any libc calls that make +use of NSS. Some applets however, such as login and su, will use libc functions +that require NSS. + +If you enable CONFIG_USE_BB_PWD_GRP, BusyBox will use internal functions to +directly access the /etc/passwd, /etc/group, and /etc/shadow files without +using NSS. This may allow you to run your system without the need for +installing any of the NSS configuration files and libraries. + +When used with glibc, the BusyBox 'networking' applets will similarly require +that you install at least some of the glibc NSS stuff (in particular, +/etc/nsswitch.conf, /lib/libnss_dns*, /lib/libnss_files*, and /lib/libresolv*). + +Shameless Plug: As an alternative, one could use a C library such as uClibc. In +addition to making your system significantly smaller, uClibc does not require the +use of any NSS support files or libraries. + +=head1 MAINTAINER + +Denis Vlasenko + +=head1 AUTHORS + +The following people have contributed code to BusyBox whether they know it or +not. If you have written code included in BusyBox, you should probably be +listed here so you can obtain your bit of eternal glory. If you should be +listed here, or the description of what you have done needs more detail, or is +incorrect, please send in an update. + + +=for html
    + +Emanuele Aina + + run-parts + +=for html
    + +Erik Andersen + + Tons of new stuff, major rewrite of most of the + core apps, tons of new apps as noted in header files. + Lots of tedious effort writing these boring docs that + nobody is going to actually read. + +=for html
    + +Laurence Anderson + + rpm2cpio, unzip, get_header_cpio, read_gz interface, rpm + +=for html
    + +Jeff Angielski + + ftpput, ftpget + +=for html
    + +Edward Betts + + expr, hostid, logname, whoami + +=for html
    + +John Beppu + + du, nslookup, sort + +=for html
    + +Brian Candler + + tiny-ls(ls) + +=for html
    + +Randolph Chung + + fbset, ping, hostname + +=for html
    + +Dave Cinege + + more(v2), makedevs, dutmp, modularization, auto links file, + various fixes, Linux Router Project maintenance + +=for html
    + +Jordan Crouse + + ipcalc + +=for html
    + +Magnus Damm + + tftp client insmod powerpc support + +=for html
    + +Larry Doolittle + + pristine source directory compilation, lots of patches and fixes. + +=for html
    + +Glenn Engel + + httpd + +=for html
    + +Gennady Feldman + + Sysklogd (single threaded syslogd, IPC Circular buffer support, + logread), various fixes. + +=for html
    + +Karl M. Hegbloom + + cp_mv.c, the test suite, various fixes to utility.c, &c. + +=for html
    + +Daniel Jacobowitz + + mktemp.c + +=for html
    + +Matt Kraai + + documentation, bugfixes, test suite + +=for html
    + +Stephan Linz + + ipcalc, Red Hat equivalence + +=for html
    + +John Lombardo + + tr + +=for html
    + +Glenn McGrath + + Common unarchiving code and unarchiving applets, ifupdown, ftpgetput, + nameif, sed, patch, fold, install, uudecode. + Various bugfixes, review and apply numerous patches. + +=for html
    + +Manuel Novoa III + + cat, head, mkfifo, mknod, rmdir, sleep, tee, tty, uniq, usleep, wc, yes, + mesg, vconfig, make_directory, parse_mode, dirname, mode_string, + get_last_path_component, simplify_path, and a number trivial libbb routines + + also bug fixes, partial rewrites, and size optimizations in + ash, basename, cal, cmp, cp, df, du, echo, env, ln, logname, md5sum, mkdir, + mv, realpath, rm, sort, tail, touch, uname, watch, arith, human_readable, + interface, dutmp, ifconfig, route + +=for html
    + +Vladimir Oleynik + + cmdedit; xargs(current), httpd(current); + ports: ash, crond, fdisk, inetd, stty, traceroute, top; + locale, various fixes + and irreconcilable critic of everything not perfect. + +=for html
    + +Bruce Perens + + Original author of BusyBox in 1995, 1996. Some of his code can + still be found hiding here and there... + +=for html
    + +Tim Riker + + bug fixes, member of fan club + +=for html
    + +Kent Robotti + + reset, tons and tons of bug reports and patches. + +=for html
    + +Chip Rosenthal , + + wget - Contributed by permission of Covad Communications + +=for html
    + +Pavel Roskin + + Lots of bugs fixes and patches. + +=for html
    + +Gyepi Sam + + Remote logging feature for syslogd + +=for html
    + +Linus Torvalds + + mkswap, fsck.minix, mkfs.minix + +=for html
    + +Mark Whitley + + grep, sed, cut, xargs(previous), + style-guide, new-applet-HOWTO, bug fixes, etc. + +=for html
    + +Charles P. Wright + + gzip, mini-netcat(nc) + +=for html
    + +Enrique Zanardi + + tarcat (since removed), loadkmap, various fixes, Debian maintenance + +=for html
    + +Tito Ragusa + + devfsd and size optimizations in strings, openvt and deallocvt. + +=for html
    + +Paul Fox + + vi editing mode for ash, various other patches/fixes + +=for html
    + +Roberto A. Foglietta + + port: dnsd + +=for html
    + +Bernhard Reutner-Fischer + + misc + +=for html
    + +Mike Frysinger + + initial e2fsprogs, printenv, setarch, sum, misc + +=for html
    + +Jie Zhang + + fixed two bugs in msh and hush (exitcode of killed processes) + +=cut diff --git a/busybox-1_37_0/docs/busybox_header.pod b/busybox-1_37_0/docs/busybox_header.pod new file mode 100644 index 000000000..85a173e82 --- /dev/null +++ b/busybox-1_37_0/docs/busybox_header.pod @@ -0,0 +1,82 @@ +# vi: set sw=4 ts=4: + +=head1 NAME + +BusyBox - The Swiss Army Knife of Embedded Linux + +=head1 SYNTAX + + busybox [arguments...] # or + + [arguments...] # if symlinked + +=head1 DESCRIPTION + +BusyBox combines tiny versions of many common UNIX utilities into a single +small executable. It provides minimalist replacements for most of the utilities +you usually find in GNU coreutils, util-linux, etc. The utilities in BusyBox +generally have fewer options than their full-featured GNU cousins; however, the +options that are included provide the expected functionality and behave very +much like their GNU counterparts. + +BusyBox has been written with size-optimization and limited resources in mind. +It is also extremely modular so you can easily include or exclude commands (or +features) at compile time. This makes it easy to customize your embedded +systems. To create a working system, just add /dev, /etc, and a Linux kernel. +BusyBox provides a fairly complete POSIX environment for any small or embedded +system. + +BusyBox is extremely configurable. This allows you to include only the +components you need, thereby reducing binary size. Run 'make config' or 'make +menuconfig' to select the functionality that you wish to enable. Then run +'make' to compile BusyBox using your configuration. + +After the compile has finished, you should use 'make install' to install +BusyBox. This will install the 'bin/busybox' binary, in the target directory +specified by CONFIG_PREFIX. CONFIG_PREFIX can be set when configuring BusyBox, +or you can specify an alternative location at install time (i.e., with a +command line like 'make CONFIG_PREFIX=/tmp/foo install'). If you enabled +any applet installation scheme (either as symlinks or hardlinks), these will +also be installed in the location pointed to by CONFIG_PREFIX. + +=head1 USAGE + +BusyBox is a multi-call binary. A multi-call binary is an executable program +that performs the same job as more than one utility program. That means there +is just a single BusyBox binary, but that single binary acts like a large +number of utilities. This allows BusyBox to be smaller since all the built-in +utility programs (we call them applets) can share code for many common +operations. + +You can also invoke BusyBox by issuing a command as an argument on the +command line. For example, entering + + /bin/busybox ls + +will also cause BusyBox to behave as 'ls'. + +Of course, adding '/bin/busybox' into every command would be painful. So most +people will invoke BusyBox using links to the BusyBox binary. + +For example, entering + + ln -s /bin/busybox ls + ./ls + +will cause BusyBox to behave as 'ls' (if the 'ls' command has been compiled +into BusyBox). Generally speaking, you should never need to make all these +links yourself, as the BusyBox build system will do this for you when you run +the 'make install' command. + +If you invoke BusyBox with no arguments, it will provide you with a list of the +applets that have been compiled into your BusyBox binary. + +=head1 COMMON OPTIONS + +Most BusyBox applets support the B<--help> argument to provide a terse runtime +description of their behavior. If the CONFIG_FEATURE_VERBOSE_USAGE option has +been enabled, more detailed usage information will also be available. + +=head1 COMMANDS + +Currently available applets include: diff --git a/busybox-1_37_0/docs/cgi/cl.html b/busybox-1_37_0/docs/cgi/cl.html new file mode 100644 index 000000000..4f8faae9f --- /dev/null +++ b/busybox-1_37_0/docs/cgi/cl.html @@ -0,0 +1,46 @@ +CGI Command line options

    CGI Command line options

    +

    + +

    Specification

    + +The command line is only used in the case of an ISINDEX query. It is +not used in the case of an HTML form or any as yet undefined query +type. The server should search the query information (the QUERY_STRING environment variable) for a non-encoded += character to determine if the command line is to be used, if it +finds one, the command line is not to be used. This trusts the clients +to encode the = sign in ISINDEX queries, a practice which was +considered safe at the time of the design of this specification.

    + +For example, use the finger script and the ISINDEX interface to look up "httpd". You will see that the script will call itself with /cgi-bin/finger?httpd and will actually execute "finger httpd" on the command line and output the results to you. +

    +If the server does find a "=" in the QUERY_STRING, +then the command line will not be used, and no decoding will be +performed. The query then remains intact for processing by an +appropriate FORM submission decoder. +Again, as an example, use this hyperlink to submit "httpd=name" to the finger script. Since this QUERY_STRING +contained an unencoded "=", nothing was decoded, the script didn't know +it was being submitted a valid query, and just gave you the default +finger form. +

    +If the server finds that it cannot send the string due to internal +limitations (such as exec() or /bin/sh command line restrictions) the +server should include NO command line information and provide the +non-decoded query information in the environment +variable QUERY_STRING.

    +


    +

    Examples

    + +Examples of the command line usage are much better demonstrated than explained. For these +examples, pay close attention to the script output which says what +argc and argv are.

    + +


    + +[Back]Return to the +interface specification

    + +CGI - Common Gateway Interface +

    cgi@ncsa.uiuc.edu
    + + + diff --git a/busybox-1_37_0/docs/cgi/env.html b/busybox-1_37_0/docs/cgi/env.html new file mode 100644 index 000000000..66a548b46 --- /dev/null +++ b/busybox-1_37_0/docs/cgi/env.html @@ -0,0 +1,149 @@ +CGI Environment Variables

    CGI Environment Variables

    +
    + +

    + +In order to pass data about the information request from the server to +the script, the server uses command line arguments as well as +environment variables. These environment variables are set when the +server executes the gateway program.

    + +


    +

    Specification

    + +

    +The following environment variables are not request-specific and are +set for all requests:

    + +

      +
    • SERVER_SOFTWARE

      + + The name and version of the information server software answering + the request (and running the gateway). Format: name/version

      + +

    • SERVER_NAME

      + The server's hostname, DNS alias, or IP address as it would appear + in self-referencing URLs.

      + +

    • GATEWAY_INTERFACE

      + The revision of the CGI specification to which this server + complies. Format: CGI/revision

      + +

    + +
    + +The following environment variables are specific to the request being +fulfilled by the gateway program:

    + +

      +
    • SERVER_PROTOCOL

      + The name and revision of the information protocol this request came + in with. Format: protocol/revision

      + +

    • SERVER_PORT

      + The port number to which the request was sent.

      + +

    • REQUEST_METHOD

      + The method with which the request was made. For HTTP, this is + "GET", "HEAD", "POST", etc.

      + +

    • PATH_INFO

      + The extra path information, as given by the client. In other + words, scripts can be accessed by their virtual pathname, followed + by extra information at the end of this path. The extra + information is sent as PATH_INFO. This information should be + decoded by the server if it comes from a URL before it is passed + to the CGI script.

      + +

    • PATH_TRANSLATED

      + The server provides a translated version of PATH_INFO, which takes + the path and does any virtual-to-physical mapping to it.

      + +

    • SCRIPT_NAME

      + A virtual path to the script being executed, used for + self-referencing URLs.

      + +

    • QUERY_STRING

      + The information which follows the ? in the URL + which referenced this script. This is the query information. It + should not be decoded in any fashion. This variable should always + be set when there is query information, regardless of command line decoding.

      + +

    • REMOTE_HOST

      + The hostname making the request. If the server does not have this + information, it should set REMOTE_ADDR and leave this unset.

      + +

    • REMOTE_ADDR

      + The IP address of the remote host making the request.

      + +

    • AUTH_TYPE

      + If the server supports user authentication, and the script is + protects, this is the protocol-specific authentication method used + to validate the user.

      + +

    • REMOTE_USER

      + If the server supports user authentication, and the script is + protected, this is the username they have authenticated as.

      +

    • REMOTE_IDENT

      + If the HTTP server supports RFC 931 identification, then this + variable will be set to the remote user name retrieved from the + server. Usage of this variable should be limited to logging only. +

      + +

    • CONTENT_TYPE

      + For queries which have attached information, such as HTTP POST and + PUT, this is the content type of the data.

      + +

    • CONTENT_LENGTH

      + The length of the said content as given by the client.

      + +

    + + +
    + +In addition to these, the header lines received from the client, if +any, are placed into the environment with the prefix HTTP_ followed by +the header name. Any - characters in the header name are changed to _ +characters. The server may exclude any headers which it has already +processed, such as Authorization, Content-type, and Content-length. If +necessary, the server may choose to exclude any or all of these +headers if including them would exceed any system environment +limits.

    + +An example of this is the HTTP_ACCEPT variable which was defined in +CGI/1.0. Another example is the header User-Agent.

    + +

      +
    • HTTP_ACCEPT

      + The MIME types which the client will accept, as given by HTTP + headers. Other protocols may need to get this information from + elsewhere. Each item in this list should be separated by commas as + per the HTTP spec.

      + + Format: type/subtype, type/subtype

      + + +

    • HTTP_USER_AGENT

      + + The browser the client is using to send the request. General +format: software/version library/version.

      + +

    + +
    +

    Examples

    + +Examples of the setting of environment variables are really much better +demonstrated than explained.

    + +


    + +[Back]Return to the +interface specification

    + +CGI - Common Gateway Interface +

    cgi@ncsa.uiuc.edu
    + + diff --git a/busybox-1_37_0/docs/cgi/in.html b/busybox-1_37_0/docs/cgi/in.html new file mode 100644 index 000000000..7ee5fe601 --- /dev/null +++ b/busybox-1_37_0/docs/cgi/in.html @@ -0,0 +1,33 @@ +CGI Script input

    CGI Script Input

    +
    + +

    Specification

    + +For requests which have information attached after the header, such as +HTTP POST or PUT, the information will be sent to the script on stdin. +

    + +The server will send CONTENT_LENGTH bytes on +this file descriptor. Remember that it will give the CONTENT_TYPE of the data as well. The server is +in no way obligated to send end-of-file after the script reads +CONTENT_LENGTH bytes.

    +


    +

    Example

    + +Let's take a form with METHOD="POST" as an example. Let's say the form +results are 7 bytes encoded, and look like a=b&b=c. +

    + +In this case, the server will set CONTENT_LENGTH to 7 and CONTENT_TYPE +to application/x-www-form-urlencoded. The first byte on the script's +standard input will be "a", followed by the rest of the encoded string.

    + +


    + +[Back]Return to the +interface specification

    + +CGI - Common Gateway Interface +

    cgi@ncsa.uiuc.edu
    + + diff --git a/busybox-1_37_0/docs/cgi/interface.html b/busybox-1_37_0/docs/cgi/interface.html new file mode 100644 index 000000000..0be016b4c --- /dev/null +++ b/busybox-1_37_0/docs/cgi/interface.html @@ -0,0 +1,29 @@ +The Common Gateway Interface Specification +[http://hoohoo.ncsa.uiuc.edu/cgi/interface.html] +

    The CGI Specification

    + +
    + +This is the specification for CGI version 1.1, or CGI/1.1. Further +revisions of this protocol are guaranteed to be backward compatible. +

    + +The server and the CGI script communicate in four major ways. Each of +the following is a hotlink to graphic detail.

    + +

    +
    + + +[Back]Return to the overview

    + + + +CGI - Common Gateway Interface +

    cgi@ncsa.uiuc.edu
    + diff --git a/busybox-1_37_0/docs/cgi/out.html b/busybox-1_37_0/docs/cgi/out.html new file mode 100644 index 000000000..5266985b5 --- /dev/null +++ b/busybox-1_37_0/docs/cgi/out.html @@ -0,0 +1,126 @@ +CGI Script output

    CGI Script Output

    +
    + +

    Script output

    + +The script sends its output to stdout. This output can either be a +document generated by the script, or instructions to the server for +retrieving the desired output.

    +


    + +

    Script naming conventions

    + +Normally, scripts produce output which is interpreted and sent back to +the client. An advantage of this is that the scripts do not need to +send a full HTTP/1.0 header for every request.

    + +Some scripts may want to avoid the extra overhead of the server +parsing their output, and talk directly to the client. In order to +distinguish these scripts from the other scripts, CGI requires that +the script name begins with nph- if a script does not want the server +to parse its header. In this case, it is the script's responsibility +to return a valid HTTP/1.0 (or HTTP/0.9) response to the client.

    + +


    +

    Parsed headers

    + +The output of scripts begins with a small header. This header consists +of text lines, in the same format as an +HTTP header, terminated by a blank line (a line with only a +linefeed or CR/LF).

    + +Any headers which are not server directives are sent directly back to +the client. Currently, this specification defines three server +directives:

    + +

      +
    • Content-type

      + + This is the MIME type of the document you are returning.

      + +

    • Location

      + + This is used to specify to the server that you are returning a + reference to a document rather than an actual document.

      + + If the argument to this is a URL, the server will issue a redirect + to the client.

      + + If the argument to this is a virtual path, the server will + retrieve the document specified as if the client had requested + that document originally. ? directives will work in here, but # + directives must be redirected back to the client.

      + + +

    • Status

      + + This is used to give the server an HTTP/1.0 status +line to send to the client. The format is nnn xxxxx, +where nnn is the 3-digit status code, and +xxxxx is the reason string, such as "Forbidden".

      + +

    + +
    +

    Examples

    + +Let's say I have a fromgratz to HTML converter. When my converter is +finished with its work, it will output the following on stdout (note +that the lines beginning and ending with --- are just for illustration +and would not be output):

    + +

    --- start of output ---
    +Content-type: text/html
    +
    +--- end of output ---
    +
    + +Note the blank line after Content-type.

    + +Now, let's say I have a script which, in certain instances, wants to +return the document /path/doc.txt from this server just +as if the user had actually requested +http://server:port/path/doc.txt to begin with. In this +case, the script would output:

    +

    --- start of output ---
    +Location: /path/doc.txt
    +
    +--- end of output ---
    +
    + +The server would then perform the request and send it to the client. +

    + +Let's say that I have a script which wants to reference our gopher +server. In this case, if the script wanted to refer the user to +gopher://gopher.ncsa.uiuc.edu/, it would output:

    + +

    --- start of output ---
    +Location: gopher://gopher.ncsa.uiuc.edu/
    +
    +--- end of output ---
    +
    + +Finally, I have a script which wants to talk to the client directly. +In this case, if the script is referenced with SERVER_PROTOCOL of HTTP/1.0, +the script would output the following HTTP/1.0 response:

    + +

    --- start of output ---
    +HTTP/1.0 200 OK
    +Server: NCSA/1.0a6
    +Content-type: text/plain
    +
    +This is a plaintext document generated on the fly just for you.
    +
    +--- end of output ---
    +
    + + +
    + +[Back]Return to the +interface specification

    + +CGI - Common Gateway Interface +

    cgi@ncsa.uiuc.edu
    + diff --git a/busybox-1_37_0/docs/contributing.txt b/busybox-1_37_0/docs/contributing.txt new file mode 100644 index 000000000..e3289fd49 --- /dev/null +++ b/busybox-1_37_0/docs/contributing.txt @@ -0,0 +1,439 @@ +Contributing To Busybox +======================= + +This document describes what you need to do to contribute to Busybox, where +you can help, guidelines on testing, and how to submit a well-formed patch +that is more likely to be accepted. + +The Busybox home page is at: http://busybox.net/ + + + +Pre-Contribution Checklist +-------------------------- + +So you want to contribute to Busybox, eh? Great, wonderful, glad you want to +help. However, before you dive in, headlong and hotfoot, there are some things +you need to do: + + +Checkout the Latest Code +~~~~~~~~~~~~~~~~~~~~~~~~ + +This is a necessary first step. Please do not try to work with the last +released version, as there is a good chance that somebody has already fixed +the bug you found. Somebody might have even added the feature you had in mind. +Don't make your work obsolete before you start! + +For information on how to check out Busybox development tree, please look at the +following links: + + http://busybox.net/source.html + + +Read the Mailing List +~~~~~~~~~~~~~~~~~~~~~ + +No one is required to read the entire archives of the mailing list, but you +should at least read up on what people have been talking about lately. If +you've recently discovered a problem, chances are somebody else has too. If +you're the first to discover a problem, post a message and let the rest of us +know. + +Archives can be found here: + + http://busybox.net/lists/busybox/ + +If you have a serious interest in Busybox, i.e., you are using it day-to-day or +as part of an embedded project, it would be a good idea to join the mailing +list. + +A web-based sign-up form can be found here: + + http://busybox.net/mailman/listinfo/busybox + + +Coordinate with the Applet Maintainer +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Some (not all) of the applets in Busybox are "owned" by a maintainer who has +put significant effort into it and is probably more familiar with it than +others. To find the maintainer of an applet, look at the top of the .c file +for a name following the word 'Copyright' or 'Written by' or 'Maintainer'. + +Before plunging ahead, it's a good idea to send a message to the mailing list +that says: "Hey, I was thinking about adding the 'transmogrify' feature to the +'foo' applet. Would this be useful? Is anyone else working on it?" You might +want to CC the maintainer (if any) with your question. + + + +Areas Where You Can Help +------------------------ + +Busybox can always use improvement! If you're looking for ways to help, there +are a variety of areas where you could help. + + +What Busybox Doesn't Need +~~~~~~~~~~~~~~~~~~~~~~~~~ + +Before listing the areas where you _can_ help, it's worthwhile to mention the +areas where you shouldn't bother. While Busybox strives to be the "Swiss Army +Knife" of embedded Linux, there are some applets that will not be accepted: + + - Any filesystem manipulation tools: Busybox is filesystem independent and + we do not want to start adding mkfs/fsck tools for every (or any) + filesystem under the sun. (fsck_minix.c and mkfs_minix.c are living on + borrowed time.) There are far too many of these tools out there. Use + the upstream version. Rationale: bugs in these tools can destroy + vast amounts of data. Keeping up with filesystem format development + is impractical (especially in the area of keeping fsck tool safe + and up-to-date). + + - Any disk, device, or media-specific tools: Use the -utils or -tools package + that was designed for your device; don't try to shoehorn them into Busybox. + + - Any architecture specific tools: Busybox is (or should be) architecture + independent. Do not send us tools that cannot be used across multiple + platforms / arches. + + +Bug Reporting +~~~~~~~~~~~~~ + +If you find bugs, please submit a detailed bug report to the busybox mailing +list at busybox@busybox.net. A well-written bug report should include a +transcript of a shell session that demonstrates the bad behavior and enables +anyone else to duplicate the bug on their own machine. The following is such +an example: + + To: busybox@busybox.net + From: diligent@testing.linux.org + Subject: /bin/date doesn't work + + Package: busybox + Version: 1.00 + + When I execute Busybox 'date' it produces unexpected results. + With GNU date I get the following output: + + $ date + Wed Mar 21 14:19:41 MST 2001 + + But when I use BusyBox date I get this instead: + + $ date + Illegal instruction + + I am using Debian unstable, kernel version 2.4.19-rmk1 on an Netwinder, + and the latest uClibc from CVS. + + -Diligent + +Note the careful description and use of examples showing not only what BusyBox +does, but also a counter example showing what an equivalent GNU app does. Bug +reports lacking such detail may never be fixed... Thanks for understanding. + + + +Write Documentation +~~~~~~~~~~~~~~~~~~~ + +Chances are, documentation in Busybox is either missing or needs improvement. +Either way, help is welcome. + +Work is being done to automatically generate documentation from sources, +especially from the usage.h file. If you want to correct the documentation, +please make changes to the pre-generation parts, rather than the generated +documentation. [More to come on this later...] + +It is preferred that modifications to documentation be submitted in patch +format (more on this below), but we're a little more lenient when it comes to +docs. You could, for example, just say "after the listing of the mount +options, the following example would be helpful..." + + +Consult Existing Sources +~~~~~~~~~~~~~~~~~~~~~~~~ + +For a quick listing of "needs work" spots in the sources, cd into the Busybox +directory and run the following: + + for i in TODO FIXME XXX; do find -name '*.[ch]'|xargs grep $i; done + +This will show all of the trouble spots or 'questionable' code. Pick a spot, +any spot, these are all invitations for you to contribute. + + +Add a New Applet +~~~~~~~~~~~~~~~~ + +If you want to add a new applet to Busybox, we'd love to see it. However, +before you write any code, please ask beforehand on the mailing list something +like "Do you think applet 'foo' would be useful in Busybox?" or "Would you +guys accept applet 'foo' into Busybox if I were to write it?" If the answer is +"no" by the folks on the mailing list, then you've saved yourself some time. +Conversely, you could get some positive responses from folks who might be +interested in helping you implement it, or can recommend the best approach. +Perhaps most importantly, this is your way of calling "dibs" on something and +avoiding duplication of effort. + +Also, before you write a line of code, please read the 'new-applet-HOWTO.txt' +file in the docs/ directory. + + +Janitorial Work +~~~~~~~~~~~~~~~ + +These are dirty jobs, but somebody's gotta do 'em. + + - Security audits: + http://www.securityfocus.com/popups/forums/secprog/intro.shtml + + - Synthetic code removal: http://www.perl.com/pub/2000/06/commify.html - This + is very Perl-specific, but the advice given in here applies equally well to + C. + + - C library function use audits: Verifying that functions are being used + properly (called with the right args), replacing unsafe library functions + with safer versions, making sure return codes are being checked, etc. + + - Where appropriate, replace preprocessor defined macros and values with + compile-time equivalents. + + - Style guide compliance. See: docs/style-guide.txt + + - Add testcases to tests/testcases. + + - Makefile improvements: + http://www.canb.auug.org.au/~millerp/rmch/recu-make-cons-harm.html + (I think the recursive problems are pretty much taken care of at this point, non?) + + - "Ten Commandments" compliance: (this is a "maybe", certainly not as + important as any of the previous items.) + http://www.lysator.liu.se/c/ten-commandments.html + +Other useful links: + + - the comp.lang.c FAQ: http://home.datacomm.ch/t_wolf/tw/c/index.html#Sources + + + +Submitting Patches To Busybox +----------------------------- + +Here are some guidelines on how to submit a patch to Busybox. + + +Making A Patch +~~~~~~~~~~~~~~ + +If you've got anonymous Git access set up, making a patch is simple. Just make +sure you're in the busybox/ directory and type: + + git diff -b -w > mychanges.patch + +You can send the resulting .patch file to the mailing list with a description +of what it does. (But not before you test it! See the next section for some +guidelines.) It is preferred that patches be sent as attachments, but it is +not required. + +Also, feel free to help test other people's patches and reply to them with +comments. You can apply a patch by saving it into your busybox/ directory and +typing: + + patch -p1 < mychanges.patch + +Then you can recompile, see if it runs, test if it works as advertised, and +post your findings to the mailing list. + +NOTE: Please do not include extraneous or irrelevant changes in your patches. +Please do not try to "bundle" two patches together into one. Make single, +discreet changes on a per-patch basis. Sometimes you need to make a patch that +touches code in many places, but these kind of patches are rare and should be +coordinated with a maintainer. + + +Testing Guidelines +~~~~~~~~~~~~~~~~~~ + +It's considered good form to test your new feature before you submit a patch +to the mailing list, and especially before you push a change to Git. Here +are some guidelines on how to test your changes. + + - Always test Busybox applets against GNU counterparts and make sure the + behavior / output is identical between the two. + + - Try several different permutations and combinations of the features you're + adding (i.e., different combinations of command-line switches) and make sure + they all work; make sure one feature does not interfere with another. + + - Make sure you test compiling against the source both with the feature + turned on and turned off in Config.h and make sure Busybox compiles cleanly + both ways. + + - Run the multibuild.pl script in the tests directory and make sure + everything checks out OK. (Do this from within the busybox/ directory by + typing: 'tests/multibuild.pl'.) + + +Making Sure Your Patch Doesn't Get Lost +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +If you don't want your patch to be lost or forgotten, send it to the busybox +mailing list with a subject line something like this: + + [PATCH] - Adds "transmogrify" feature to "foo" + +In the body, you should have a pseudo-header that looks like the following: + + Package: busybox + Version: v1.01pre (or whatever the current version is) + Severity: wishlist + +The remainder of the body should read along these lines: + + This patch adds the "transmogrify" feature to the "foo" applet. I have + tested this on [arch] system(s) and it works. I have tested it against the + GNU counterparts and the outputs are identical. I have run the scripts in + the 'tests' directory and nothing breaks. + + + +Improving Your Chances of Patch Acceptance +------------------------------------------ + +Even after you send a brilliant patch to the mailing list, sometimes it can go +unnoticed, un-replied-to, and sometimes (sigh) even lost. This is an +unfortunate fact of life, but there are steps you can take to help your patch +get noticed and convince a maintainer that it should be added: + + +Be Succinct +~~~~~~~~~~~ + +A patch that includes small, isolated, obvious changes is more likely to be +accepted than a patch that touches code in lots of different places or makes +sweeping, dubious changes. + + +Back It Up +~~~~~~~~~~ + +Hard facts on why your patch is better than the existing code will go a long +way toward convincing maintainers that your patch should be included. +Specifically, patches are more likely to be accepted if they are provably more +correct, smaller, faster, simpler, or more maintainable than the existing +code. + +Conversely, any patch that is supported with nothing more than "I think this +would be cool" or "this patch is good because I say it is and I've got a Phd +in Computer Science" will likely be ignored. + + +Follow The Style Guide +~~~~~~~~~~~~~~~~~~~~~~ + +It's considered good form to abide by the established coding style used in a +project; Busybox is no exception. We have gone so far as to delineate the +"elements of Busybox style" in the file docs/style-guide.txt. Please follow +them. + + +Work With Someone Else +~~~~~~~~~~~~~~~~~~~~~~ + +Working on a patch in isolation is less effective than working with someone +else for a variety of reasons. If another Busybox user is interested in what +you're doing, then it's two (or more) voices instead of one that can petition +for inclusion of the patch. You'll also have more people that can test your +changes, or even offer suggestions on better approaches you could take. + +Getting other folks interested follows as a natural course if you've received +responses from queries to applet maintainer or positive responses from folks +on the mailing list. + +We've made strident efforts to put a useful "collaboration" infrastructure in +place in the form of mailing lists, the bug tracking system, and Git. Please +use these resources. + + +Send Patches to the Bug Tracking System +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +This was mentioned above in the "Making Sure Your Patch Doesn't Get Lost" +section, but it is worth mentioning again. A patch sent to the mailing list +might be unnoticed and forgotten. A patch sent to the bug tracking system will +be stored and closely connected to the bug it fixes. + + +Be Polite +~~~~~~~~~ + +The old saying "You'll catch more flies with honey than you will with vinegar" +applies when submitting patches to the mailing list for approval. The way you +present your patch is sometimes just as important as the actual patch itself +(if not more so). Being rude to the maintainers is not an effective way to +convince them that your patch should be included; it will likely have the +opposite effect. + + + +Pushing Changes to Git +---------------------- + +If you submit several patches that demonstrate that you are a skilled and wise +coder, you may be invited to become a committer, thus enabling you to push +changes directly to Git. This is nice because you don't have to wait for +someone else to push your change for you, you can just do it yourself. + +But note that this is a privilege that comes with some responsibilities. You +should test your changes before you push them. You should also talk to an +applet maintainer before you make any kind of sweeping changes to somebody +else's code. Big changes should still go to the mailing list first. Remember, +being wise, polite, and discreet is more important than being clever. + +For more information on Git push access, see: + + http://busybox.net/developer.html + + +When To Push +~~~~~~~~~~~~ + +Generally, you should feel free to push a change if: + + - Your changes are small and don't touch many files + - You are fixing a bug + - Somebody has told you that it's okay + - It's obviously the Right Thing + +The more of the above are true, the better it is to just push a change +directly to Git. + + +When Not To Push +~~~~~~~~~~~~~~~~ + +Even if you have push access, you should probably still post a patch to the +mailing list if: + + - Your changes are broad and touch many different files + - You are adding a feature + - Your changes are speculative or experimental (i.e., trying a new algorithm) + - You are not the maintainer and your changes make the maintainer cringe + +The more of the above are true, the better it is to post a patch to the +mailing list instead of pushing. + + + +Final Words +----------- + +If all of this seems complicated, don't panic, it's really not that tough. If +you're having difficulty following some of the steps outlined in this +document don't worry, the folks on the Busybox mailing list are a fairly +good-natured bunch and will work with you to help get your patches into shape +or help you make contributions. diff --git a/busybox-1_37_0/docs/ctty.htm b/busybox-1_37_0/docs/ctty.htm new file mode 100644 index 000000000..3cb2dd2bd --- /dev/null +++ b/busybox-1_37_0/docs/ctty.htm @@ -0,0 +1,479 @@ + + + + The Linux kernel: Processes + + +
    +

    10. Processes

    + +

    Before looking at the Linux implementation, first a general Unix +description of threads, processes, process groups and sessions. +

    +(See also General Terminal Interface) +

    A session contains a number of process groups, and a process group +contains a number of processes, and a process contains a number +of threads. +

    A session can have a controlling tty. +At most one process group in a session can be a foreground process group. +An interrupt character typed on a tty ("Teletype", i.e., terminal) +causes a signal to be sent to all members of the foreground process group +in the session (if any) that has that tty as controlling tty. +

    All these objects have numbers, and we have thread IDs, process IDs, +process group IDs and session IDs. +

    +

    10.1 Processes +

    + +

    +

    Creation

    + +

    A new process is traditionally started using the fork() +system call: +

    +
    pid_t p;
    +
    +p = fork();
    +if (p == (pid_t) -1)
    +        /* ERROR */
    +else if (p == 0)
    +        /* CHILD */
    +else
    +        /* PARENT */
    +
    +
    +

    This creates a child as a duplicate of its parent. +Parent and child are identical in almost all respects. +In the code they are distinguished by the fact that the parent +learns the process ID of its child, while fork() +returns 0 in the child. (It can find the process ID of its +parent using the getppid() system call.) +

    +

    Termination

    + +

    Normal termination is when the process does +

    +
    exit(n);
    +
    +
    + +or +
    +
    return n;
    +
    +
    + +from its main() procedure. It returns the single byte n +to its parent. +

    Abnormal termination is usually caused by a signal. +

    +

    Collecting the exit code. Zombies

    + +

    The parent does +

    +
    pid_t p;
    +int status;
    +
    +p = wait(&status);
    +
    +
    + +and collects two bytes: +

    +

    + + + +

    A process that has terminated but has not yet been waited for +is a zombie. It need only store these two bytes: +exit code and reason for termination. +

    On the other hand, if the parent dies first, init (process 1) +inherits the child and becomes its parent. +

    +

    Signals

    + +

    +

    Stopping

    + +

    Some signals cause a process to stop: +SIGSTOP (stop!), +SIGTSTP (stop from tty: probably ^Z was typed), +SIGTTIN (tty input asked by background process), +SIGTTOU (tty output sent by background process, and this was +disallowed by stty tostop). +

    Apart from ^Z there also is ^Y. The former stops the process +when it is typed, the latter stops it when it is read. +

    Signals generated by typing the corresponding character on some tty +are sent to all processes that are in the foreground process group +of the session that has that tty as controlling tty. (Details below.) +

    If a process is being traced, every signal will stop it. +

    +

    Continuing

    + +

    SIGCONT: continue a stopped process. +

    +

    Terminating

    + +

    SIGKILL (die! now!), +SIGTERM (please, go away), +SIGHUP (modem hangup), +SIGINT (^C), +SIGQUIT (^\), etc. +Many signals have as default action to kill the target. +(Sometimes with an additional core dump, when such is +allowed by rlimit.) +The signals SIGCHLD and SIGWINCH +are ignored by default. +All except SIGKILL and SIGSTOP can be +caught or ignored or blocked. +For details, see signal(7). +

    +

    10.2 Process groups +

    + +

    Every process is member of a unique process group, +identified by its process group ID. +(When the process is created, it becomes a member of the process group +of its parent.) +By convention, the process group ID of a process group +equals the process ID of the first member of the process group, +called the process group leader. +A process finds the ID of its process group using the system call +getpgrp(), or, equivalently, getpgid(0). +One finds the process group ID of process p using +getpgid(p). +

    One may use the command ps j to see PPID (parent process ID), +PID (process ID), PGID (process group ID) and SID (session ID) +of processes. With a shell that does not know about job control, +like ash, each of its children will be in the same session +and have the same process group as the shell. With a shell that knows +about job control, like bash, the processes of one pipeline, like +

    +
    % cat paper | ideal | pic | tbl | eqn | ditroff > out
    +
    +
    + +form a single process group. +

    +

    Creation

    + +

    A process pid is put into the process group pgid by +

    +
    setpgid(pid, pgid);
    +
    +
    + +If pgid == pid or pgid == 0 then this creates +a new process group with process group leader pid. +Otherwise, this puts pid into the already existing +process group pgid. +A zero pid refers to the current process. +The call setpgrp() is equivalent to setpgid(0,0). +

    +

    Restrictions on setpgid()

    + +

    The calling process must be pid itself, or its parent, +and the parent can only do this before pid has done +exec(), and only when both belong to the same session. +It is an error if process pid is a session leader +(and this call would change its pgid). +

    +

    Typical sequence

    + +

    +

    +
    p = fork();
    +if (p == (pid_t) -1) {
    +        /* ERROR */
    +} else if (p == 0) {    /* CHILD */
    +        setpgid(0, pgid);
    +        ...
    +} else {                /* PARENT */
    +        setpgid(p, pgid);
    +        ...
    +}
    +
    +
    + +This ensures that regardless of whether parent or child is scheduled +first, the process group setting is as expected by both. +

    +

    Signalling and waiting

    + +

    One can signal all members of a process group: +

    +
    killpg(pgrp, sig);
    +
    +
    +

    One can wait for children in ones own process group: +

    +
    waitpid(0, &status, ...);
    +
    +
    + +or in a specified process group: +
    +
    waitpid(-pgrp, &status, ...);
    +
    +
    +

    +

    Foreground process group

    + +

    Among the process groups in a session at most one can be +the foreground process group of that session. +The tty input and tty signals (signals generated by ^C, ^Z, etc.) +go to processes in this foreground process group. +

    A process can determine the foreground process group in its session +using tcgetpgrp(fd), where fd refers to its +controlling tty. If there is none, this returns a random value +larger than 1 that is not a process group ID. +

    A process can set the foreground process group in its session +using tcsetpgrp(fd,pgrp), where fd refers to its +controlling tty, and pgrp is a process group in +its session, and this session still is associated to the controlling +tty of the calling process. +

    How does one get fd? By definition, /dev/tty +refers to the controlling tty, entirely independent of redirects +of standard input and output. (There is also the function +ctermid() to get the name of the controlling terminal. +On a POSIX standard system it will return /dev/tty.) +Opening the name of the +controlling tty gives a file descriptor fd. +

    +

    Background process groups

    + +

    All process groups in a session that are not foreground +process group are background process groups. +Since the user at the keyboard is interacting with foreground +processes, background processes should stay away from it. +When a background process reads from the terminal it gets +a SIGTTIN signal. Normally, that will stop it, the job control shell +notices and tells the user, who can say fg to continue +this background process as a foreground process, and then this +process can read from the terminal. But if the background process +ignores or blocks the SIGTTIN signal, or if its process group +is orphaned (see below), then the read() returns an EIO error, +and no signal is sent. (Indeed, the idea is to tell the process +that reading from the terminal is not allowed right now. +If it wouldn't see the signal, then it will see the error return.) +

    When a background process writes to the terminal, it may get +a SIGTTOU signal. May: namely, when the flag that this must happen +is set (it is off by default). One can set the flag by +

    +
    % stty tostop
    +
    +
    + +and clear it again by +
    +
    % stty -tostop
    +
    +
    + +and inspect it by +
    +
    % stty -a
    +
    +
    + +Again, if TOSTOP is set but the background process ignores or blocks +the SIGTTOU signal, or if its process group is orphaned (see below), +then the write() returns an EIO error, and no signal is sent. +[vda: correction. SUS says that if SIGTTOU is blocked/ignored, write succeeds. ] +

    +

    Orphaned process groups

    + +

    The process group leader is the first member of the process group. +It may terminate before the others, and then the process group is +without leader. +

    A process group is called orphaned when the +parent of every member is either in the process group +or outside the session. +In particular, the process group of the session leader +is always orphaned. +

    If termination of a process causes a process group to become +orphaned, and some member is stopped, then all are sent first SIGHUP +and then SIGCONT. +

    The idea is that perhaps the parent of the process group leader +is a job control shell. (In the same session but a different +process group.) As long as this parent is alive, it can +handle the stopping and starting of members in the process group. +When it dies, there may be nobody to continue stopped processes. +Therefore, these stopped processes are sent SIGHUP, so that they +die unless they catch or ignore it, and then SIGCONT to continue them. +

    Note that the process group of the session leader is already +orphaned, so no signals are sent when the session leader dies. +

    Note also that a process group can become orphaned in two ways +by termination of a process: either it was a parent and not itself +in the process group, or it was the last element of the process group +with a parent outside but in the same session. +Furthermore, that a process group can become orphaned +other than by termination of a process, namely when some +member is moved to a different process group. +

    +

    10.3 Sessions +

    + +

    Every process group is in a unique session. +(When the process is created, it becomes a member of the session +of its parent.) +By convention, the session ID of a session +equals the process ID of the first member of the session, +called the session leader. +A process finds the ID of its session using the system call +getsid(). +

    Every session may have a controlling tty, +that then also is called the controlling tty of each of +its member processes. +A file descriptor for the controlling tty is obtained by +opening /dev/tty. (And when that fails, there was no +controlling tty.) Given a file descriptor for the controlling tty, +one may obtain the SID using tcgetsid(fd). +

    A session is often set up by a login process. The terminal +on which one is logged in then becomes the controlling tty +of the session. All processes that are descendants of the +login process will in general be members of the session. +

    +

    Creation

    + +

    A new session is created by +

    +
    pid = setsid();
    +
    +
    + +This is allowed only when the current process is not a process group leader. +In order to be sure of that we fork first: +
    +
    p = fork();
    +if (p) exit(0);
    +pid = setsid();
    +
    +
    + +The result is that the current process (with process ID pid) +becomes session leader of a new session with session ID pid. +Moreover, it becomes process group leader of a new process group. +Both session and process group contain only the single process pid. +Furthermore, this process has no controlling tty. +

    The restriction that the current process must not be a process group leader +is needed: otherwise its PID serves as PGID of some existing process group +and cannot be used as the PGID of a new process group. +

    +

    Getting a controlling tty

    + +

    How does one get a controlling terminal? Nobody knows, +this is a great mystery. +

    The System V approach is that the first tty opened by the process +becomes its controlling tty. +

    The BSD approach is that one has to explicitly call +

    +
    ioctl(fd, TIOCSCTTY, 0/1);
    +
    +
    + +to get a controlling tty. +

    Linux tries to be compatible with both, as always, and this +results in a very obscure complex of conditions. Roughly: +

    The TIOCSCTTY ioctl will give us a controlling tty, +provided that (i) the current process is a session leader, +and (ii) it does not yet have a controlling tty, and +(iii) maybe the tty should not already control some other session; +if it does it is an error if we aren't root, or we steal the tty +if we are all-powerful. +[vda: correction: third parameter controls this: if 1, we steal tty from +any such session, if 0, we don't steal] +

    Opening some terminal will give us a controlling tty, +provided that (i) the current process is a session leader, and +(ii) it does not yet have a controlling tty, and +(iii) the tty does not already control some other session, and +(iv) the open did not have the O_NOCTTY flag, and +(v) the tty is not the foreground VT, and +(vi) the tty is not the console, and +(vii) maybe the tty should not be master or slave pty. +

    +

    Getting rid of a controlling tty

    + +

    If a process wants to continue as a daemon, it must detach itself +from its controlling tty. Above we saw that setsid() +will remove the controlling tty. Also the ioctl TIOCNOTTY does this. +Moreover, in order not to get a controlling tty again as soon as it +opens a tty, the process has to fork once more, to assure that it +is not a session leader. Typical code fragment: +

    +

            if ((fork()) != 0)
    +                exit(0);
    +        setsid();
    +        if ((fork()) != 0)
    +                exit(0);
    +
    +

    See also daemon(3). +

    +

    Disconnect

    + +

    If the terminal goes away by modem hangup, and the line was not local, +then a SIGHUP is sent to the session leader. +Any further reads from the gone terminal return EOF. +(Or possibly -1 with errno set to EIO.) +

    If the terminal is the slave side of a pseudotty, and the master side +is closed (for the last time), then a SIGHUP is sent to the foreground +process group of the slave side. +

    When the session leader dies, a SIGHUP is sent to all processes +in the foreground process group. Moreover, the terminal stops being +the controlling terminal of this session (so that it can become +the controlling terminal of another session). +

    Thus, if the terminal goes away and the session leader is +a job control shell, then it can handle things for its descendants, +e.g. by sending them again a SIGHUP. +If on the other hand the session leader is an innocent process +that does not catch SIGHUP, it will die, and all foreground processes +get a SIGHUP. +

    +

    10.4 Threads +

    + +

    A process can have several threads. New threads (with the same PID +as the parent thread) are started using the clone system +call using the CLONE_THREAD flag. Threads are distinguished +by a thread ID (TID). An ordinary process has a single thread +with TID equal to PID. The system call gettid() returns the +TID. The system call tkill() sends a signal to a single thread. +

    Example: a process with two threads. Both only print PID and TID and exit. +(Linux 2.4.19 or later.) +

    % cat << EOF > gettid-demo.c
    +#include <unistd.h>
    +#include <sys/types.h>
    +#define CLONE_SIGHAND   0x00000800
    +#define CLONE_THREAD    0x00010000
    +#include <linux/unistd.h>
    +#include <errno.h>
    +_syscall0(pid_t,gettid)
    +
    +int thread(void *p) {
    +        printf("thread: %d %d\n", gettid(), getpid());
    +}
    +
    +main() {
    +        unsigned char stack[4096];
    +        int i;
    +
    +        i = clone(thread, stack+2048, CLONE_THREAD | CLONE_SIGHAND, NULL);
    +        if (i == -1)
    +                perror("clone");
    +        else
    +                printf("clone returns %d\n", i);
    +        printf("parent: %d %d\n", gettid(), getpid());
    +}
    +EOF
    +% cc -o gettid-demo gettid-demo.c
    +% ./gettid-demo
    +clone returns 21826
    +parent: 21825 21825
    +thread: 21826 21825
    +%
    +
    +

    +

    +


    + + diff --git a/busybox-1_37_0/docs/draft-coar-cgi-v11-03-clean.html b/busybox-1_37_0/docs/draft-coar-cgi-v11-03-clean.html new file mode 100644 index 000000000..d52c9b842 --- /dev/null +++ b/busybox-1_37_0/docs/draft-coar-cgi-v11-03-clean.html @@ -0,0 +1,2674 @@ + + + + Common Gateway Interface - 1.1 *Draft 03* [http://cgi-spec.golux.com/draft-coar-cgi-v11-03-clean.html] + + + + + + + + + + + + + + + + + + + +
    + + + + + + + + + + + + + + + + + + + + + +
    + INTERNET-DRAFT                                 + +           Ken A L Coar +
    + draft-coar-cgi-v11-03.{html,txt}              + +         IBM Corporation +
    +                                                 + +       D.R.T. Robinson +
    +                                                 + +       E*TRADE UK Ltd. +
    +                                                 + +         25 June 1999 +
    +
    + +

    + The WWW Common Gateway Interface +
    + Version 1.1 +

    + + + +

    + + Abstract + +

    +

    + The Common Gateway Interface (CGI) is a simple interface for running + external programs, software or gateways under an information server + in a platform-independent manner. Currently, the supported information + servers are HTTP servers. +

    +

    + The interface has been in use by the World-Wide Web since 1993. This + specification defines the + "current practice" parameters of the + 'CGI/1.1' interface developed and documented at the U.S. National + Centre for Supercomputing Applications [NCSA-CGI]. + This document also defines the use of the CGI/1.1 interface + on the Unix and AmigaDOS(tm) systems. +

    +

    + Discussion of this draft occurs on the CGI-WG mailing list; see the + project Web page at + <URL:http://CGI-Spec.Golux.Com/> + for details on the mailing list and the status of the project. +

    + + +

    + Revision History +

    +

    + The revision history of this draft is being maintained using Web-based + GUI notation, such as struck-through characters and colour-coded + sections. The following legend describes how to determine the origin + of a particular revision according to the colour of the text: +

    +
    +
    Black +
    +
    Revision 00, released 28 May 1998 +
    +
    Green +
    +
    Revision 01, released 28 December 1998 +
    + Major structure change: Section 4, "Request Metadata (Meta-Variables)" + was moved entirely under Section 7, "Data Input to the + CGI Script." + Due to the size of this change, it is noted here and the text in its + former location does not appear as struckthrough. This has + caused major sections 5 and following to decrement + by one. Other + large text movements are likewise not marked up. References to RFC + 1738 were changed to 2396 (1738's replacement). +
    +
    Red +
    +
    Revision 02, released 2 April, 1999 +
    + Added text to section 8.3 defining correct handling + of HTTP/1.1 + requests using "chunked" Transfer-Encoding. Labelled metavariable + names in section 8 with the appropriate detail section + numbers. + Clarified allowed usage of Status and + Location response header fields. Included new + Internet-Draft language. +
    +
    Fuchsia +
    +
    Revision 03, released 25 June 1999 +
    + Changed references from "HTTP" to "Protocol-Specific" for the listing of + things like HTTP_ACCEPT. Changed 'entity-body' and 'content-body' to + 'message-body.' Added a note that response headers must comply with + requirements of the protocol level in use. Added a lot of stuff about + security (section 11). Clarified a bunch of productions. Pointed out + that zero-length and omitted values are indistinguishable in this + specification. Clarified production describing order of fields in + script response header. Clarified issues surrounding encoding of + data. Acknowledged additional contributors, and changed one of + the authors' addresses. +
    +
    + + +

    + + Table of Contents + +

    +
    +
    +  1 Introduction..............................................TBD
    +   1.1 Purpose................................................TBD
    +   1.2 Requirements...........................................TBD
    +   1.3 Specifications.........................................TBD
    +   1.4 Terminology............................................TBD
    +  2 Notational Conventions and Generic Grammar................TBD
    +   2.1 Augmented BNF..........................................TBD
    +   2.2 Basic Rules............................................TBD
    +  3 Protocol Parameters.......................................TBD
    +   3.1 URL Encoding...........................................TBD
    +   3.2 The Script-URI.........................................TBD
    +  4 Invoking the Script.......................................TBD
    +  5 The CGI Script Command Line...............................TBD
    +  6 Data Input to the CGI Script..............................TBD
    +   6.1 Request Metadata (Metavariables).......................TBD
    +    6.1.1 AUTH_TYPE...........................................TBD
    +    6.1.2 CONTENT_LENGTH......................................TBD
    +    6.1.3 CONTENT_TYPE........................................TBD
    +    6.1.4 GATEWAY_INTERFACE...................................TBD
    +    6.1.5 Protocol-Specific Metavariables.....................TBD
    +    6.1.6 PATH_INFO...........................................TBD
    +    6.1.7 PATH_TRANSLATED.....................................TBD
    +    6.1.8 QUERY_STRING........................................TBD
    +    6.1.9 REMOTE_ADDR.........................................TBD
    +    6.1.10 REMOTE_HOST........................................TBD
    +    6.1.11 REMOTE_IDENT.......................................TBD
    +    6.1.12 REMOTE_USER........................................TBD
    +    6.1.13 REQUEST_METHOD.....................................TBD
    +    6.1.14 SCRIPT_NAME........................................TBD
    +    6.1.15 SERVER_NAME........................................TBD
    +    6.1.16 SERVER_PORT........................................TBD
    +    6.1.17 SERVER_PROTOCOL....................................TBD
    +    6.1.18 SERVER_SOFTWARE....................................TBD
    +    6.2 Request Message-Bodies................................TBD
    +  7 Data Output from the CGI Script...........................TBD
    +   7.1 Non-Parsed Header Output...............................TBD
    +   7.2 Parsed Header Output...................................TBD
    +    7.2.1 CGI header fields...................................TBD
    +     7.2.1.1 Content-Type.....................................TBD
    +     7.2.1.2 Location.........................................TBD
    +     7.2.1.3 Status...........................................TBD
    +     7.2.1.4 Extension header fields..........................TBD
    +    7.2.2 HTTP header fields..................................TBD
    +  8 Server Implementation.....................................TBD
    +   8.1 Requirements for Servers...............................TBD
    +    8.1.1 Script-URI..........................................TBD
    +    8.1.2 Request Message-body Handling.......................TBD
    +    8.1.3 Required Metavariables..............................TBD
    +    8.1.4 Response Compliance.................................TBD
    +   8.2 Recommendations for Servers............................TBD
    +   8.3 Summary of Metavariables...............................TBD
    +  9 Script Implementation.....................................TBD
    +   9.1 Requirements for Scripts...............................TBD
    +   9.2 Recommendations for Scripts............................TBD
    +  10 System Specifications....................................TBD
    +   10.1 AmigaDOS..............................................TBD
    +   10.2 Unix..................................................TBD
    +  11 Security Considerations..................................TBD
    +   11.1 Safe Methods..........................................TBD
    +   11.2 HTTP Header Fields Containing Sensitive Information...TBD
    +   11.3 Script Interference with the Server...................TBD
    +   11.4 Data Length and Buffering Considerations..............TBD
    +   11.5 Stateless Processing..................................TBD
    +  12 Acknowledgments..........................................TBD
    +  13 References...............................................TBD
    +  14 Authors' Addresses.......................................TBD
    +     
    +
    + +

    + + 1. Introduction + +

    + +

    + + 1.1. Purpose + +

    +

    + Together the HTTP [3,8] server + and the CGI script are responsible + for servicing a client + request by sending back responses. The client + request comprises a Universal Resource Identifier (URI) + [1], a + request method, and various ancillary + information about the request + provided by the transport mechanism. +

    +

    + The CGI defines the abstract parameters, known as + metavariables, + which describe the client's + request. Together with a + concrete programmer interface this specifies a platform-independent + interface between the script and the HTTP server. +

    + +

    + + 1.2. Requirements + +

    +

    + This specification uses the same words as RFC 1123 + [5] to define the + significance of each particular requirement. These are: +

    +

    +
    +
    MUST +
    +
    +

    + This word or the adjective 'required' means that the item is an + absolute requirement of the specification. +

    +
    +
    SHOULD +
    +
    +

    + This word or the adjective 'recommended' means that there may + exist valid reasons in particular circumstances to ignore this + item, but the full implications should be understood and the case + carefully weighed before choosing a different course. +

    +
    +
    MAY +
    +
    +

    + This word or the adjective 'optional' means that this item is + truly optional. One vendor may choose to include the item because + a particular marketplace requires it or because it enhances the + product, for example; another vendor may omit the same item. +

    +
    +
    +

    + An implementation is not compliant if it fails to satisfy one or more + of the 'must' requirements for the protocols it implements. An + implementation that satisfies all of the 'must' and all of the + 'should' requirements for its features is said to be 'unconditionally + compliant'; one that satisfies all of the 'must' requirements but not + all of the 'should' requirements for its features is said to be + 'conditionally compliant.' +

    + +

    + + 1.3. Specifications + +

    +

    + Not all of the functions and features of the CGI are defined in the + main part of this specification. The following phrases are used to + describe the features which are not specified: +

    +
    +
    system defined +
    +
    +

    + The feature may differ between systems, but must be the same for + different implementations using the same system. A system will + usually identify a class of operating-systems. Some systems are + defined in + section 10 of this document. + New systems may be defined + by new specifications without revision of this document. +

    +
    +
    implementation defined +
    +
    +

    + The behaviour of the feature may vary from implementation to + implementation, but a particular implementation must document its + behaviour. +

    +
    +
    + +

    + + 1.4. Terminology + +

    +

    + This specification uses many terms defined in the HTTP/1.1 + specification [8]; however, the following terms are + used here in a + sense which may not accord with their definitions in that document, + or with their common meaning. +

    + +
    +
    metavariable +
    +
    +

    + A named parameter that carries information from the server to the + script. It is not necessarily a variable in the operating-system's + environment, although that is the most common implementation. +

    +
    + +
    script +
    +
    +

    + The software which is invoked by the server via this + interface. It + need not be a standalone program, but could be a + dynamically-loaded or shared library, or even a subroutine in the + server. It may be a set of statements + interpreted at run-time, as the term 'script' is frequently + understood, but that is not a requirement and within the context + of this specification the term has the broader definition stated. +

    +
    +
    server +
    +
    +

    + The application program which invokes the script in order to service + requests. +

    +
    +
    + +

    + + 2. Notational Conventions and Generic Grammar + +

    + +

    + + 2.1. Augmented BNF + +

    +

    + All of the mechanisms specified in this document are described in + both prose and an augmented Backus-Naur Form (BNF) similar to that + used by RFC 822 [6]. This augmented BNF contains + the following constructs: +

    +
    +
    name = definition +
    +
    +

    + The + definition by the equal character ("="). Whitespace is only + significant in that continuation lines of a definition are + indented. +

    +
    +
    "literal" +
    +
    +

    + Quotation marks (") surround literal text, except for a literal + quotation mark, which is surrounded by angle-brackets ("<" and ">"). + Unless stated otherwise, the text is case-sensitive. +

    +
    +
    rule1 | rule2 +
    +
    +

    + Alternative rules are separated by a vertical bar ("|"). +

    +
    +
    (rule1 rule2 rule3) +
    +
    +

    + Elements enclosed in parentheses are treated as a single element. +

    +
    +
    *rule +
    +
    +

    + A rule preceded by an asterisk ("*") may have zero or more + occurrences. A rule preceded by an integer followed by an asterisk + must occur at least the specified number of times. +

    +
    +
    [rule] +
    +
    +

    + An element enclosed in square + brackets ("[" and "]") is optional. +

    +
    +
    + +

    + + 2.2. Basic Rules + +

    +

    + The following rules are used throughout this specification to + describe basic parsing constructs. +

    +

    +
    +    alpha         = lowalpha | hialpha
    +    alphanum      = alpha | digit
    +    lowalpha      = "a" | "b" | "c" | "d" | "e" | "f" | "g" | "h"
    +                    | "i" | "j" | "k" | "l" | "m" | "n" | "o" | "p"
    +                    | "q" | "r" | "s" | "t" | "u" | "v" | "w" | "x"
    +                    | "y" | "z"
    +    hialpha       = "A" | "B" | "C" | "D" | "E" | "F" | "G" | "H"
    +                    | "I" | "J" | "K" | "L" | "M" | "N" | "O" | "P"
    +                    | "Q" | "R" | "S" | "T" | "U" | "V" | "W" | "X"
    +                    | "Y" | "Z"
    +    digit         = "0" | "1" | "2" | "3" | "4" | "5" | "6" | "7"
    +                    | "8" | "9"
    +    hex           = digit | "A" | "B" | "C" | "D" | "E" | "F" | "a"
    +                    | "b" | "c" | "d" | "e" | "f"
    +    escaped       = "%" hex hex
    +    OCTET         = <any 8-bit sequence of data>
    +    CHAR          = <any US-ASCII character (octets 0 - 127)>
    +    CTL           = <any US-ASCII control character
    +                    (octets 0 - 31) and DEL (127)>
    +    CR            = <US-ASCII CR, carriage return (13)>
    +    LF            = <US-ASCII LF, linefeed (10)>
    +    SP            = <US-ASCII SP, space (32)>
    +    HT            = <US-ASCII HT, horizontal tab (9)>
    +    NL            = CR | LF
    +    LWSP          = SP | HT | NL
    +    tspecial      = "(" | ")" | "@" | "," | ";" | ":" | "\" | <">
    +                    | "/" | "[" | "]" | "?" | "<" | ">" | "{" | "}"
    +                    | SP | HT | NL
    +    token         = 1*<any CHAR except CTLs or tspecials>
    +    quoted-string = ( <"> *qdtext <"> ) | ( "<" *qatext ">")
    +    qdtext        = <any CHAR except <"> and CTLs but including LWSP>
    +    qatext        = <any CHAR except "<", ">" and CTLs but
    +                    including LWSP>
    +    mark          = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"
    +    unreserved    = alphanum | mark
    +    reserved      = ";" | "/" | "?" | ":" | "@" | "&" | "=" |
    +                    "$" | ","
    +    uric          = reserved | unreserved | escaped
    +  
    +

    + Note that newline (NL) need not be a single character, but can be a + character sequence. +

    + +

    + + 3. Protocol Parameters + +

    + +

    + + 3.1. URL Encoding + +

    +

    + Some variables and constructs used here are described as being + 'URL-encoded'. This encoding is described in section + 2 of RFC + 2396 + [4]. +

    +

    + An alternate "shortcut" encoding for representing the space + character exists and is in common use. Scripts MUST be prepared to + recognise both '+' and '%20' as an encoded space in a + URL-encoded value. +

    +

    + Note that some unsafe characters may have different semantics if + they are encoded. The definition of which characters are unsafe + depends on the context. + For example, the following two URLs do not + necessarily refer to the same resource: +

    +

    +
    +    http://somehost.com/somedir%2Fvalue
    +    http://somehost.com/somedir/value
    +  
    +

    + See section + 2 of RFC + 2396 [4] + for authoritative treatment of this issue. +

    + +

    + + 3.2. The Script-URI + +

    +

    + The 'Script-URI' is defined as the URI of the resource identified + by the metavariables. Often, + this URI will be the same as + the URI requested by the client (the 'Client-URI'); however, it need + not be. Instead, it could be a URI invented by the server, and so it + can only be used in the context of the server and its CGI interface. +

    +

    + The Script-URI has the syntax of generic-RL as defined in section 2.1 + of RFC 1808 [7], with the exception that object + parameters and + fragment identifiers are not permitted: +

    +

    +
    +    <scheme>://<host><port>/<path>?<query>
    +  
    +

    + The various components of the + Script-URI + are defined by some of the + metavariables (see + section 4 + below); +

    +

    +
    +    script-uri = protocol "://" SERVER_NAME ":" SERVER_PORT enc-script
    +                 enc-path-info "?" QUERY_STRING
    +  
    +

    + where 'protocol' is obtained + from SERVER_PROTOCOL, 'enc-script' is a + URL-encoded version of SCRIPT_NAME and 'enc-path-info' is a + URL-encoded version of PATH_INFO. See + section 4.6 for more information about the PATH_INFO + metavariable. +

    +

    + Note that the scheme and the protocol are not identical; + for instance, a resource accessed via an SSL mechanism + may have a Client-URI with a scheme of "https" + rather than "http". CGI/1.1 provides no means + for the script to reconstruct this, and therefore + the Script-URI includes the base protocol used. +

    + +

    + + 4. Invoking the Script + +

    +

    + The + script is invoked in a system defined manner. Unless specified + otherwise, the file containing the script will be invoked as an + executable program. +

    + +

    + + 5. The CGI Script Command Line + +

    +

    + Some systems support a method for supplying an array of strings to + the CGI script. This is only used in the case of an 'indexed' query. + This is identified by a "GET" or "HEAD" HTTP request with a URL + query + string not containing any unencoded "=" characters. For such a + request, + servers SHOULD parse the search string + into words, using the following rules: +

    +

    +
    +    search-string = search-word *( "+" search-word )
    +    search-word   = 1*schar
    +    schar         = xunreserved | escaped | xreserved
    +    xunreserved   = alpha | digit | xsafe | extra
    +    xsafe         = "$" | "-" | "_" | "."
    +    xreserved     = ";" | "/" | "?" | ":" | "@" | "&"
    +  
    +

    + After parsing, each word is URL-decoded, optionally encoded in a + system defined manner, + and then the argument list is set to the list + of words. +

    +

    + If the server cannot create any part of the argument list, then the + server SHOULD NOT generate any command line information. For example, the + number of arguments may be greater than operating system or server + limitations permit, or one of the words may not be representable as an + argument. +

    +

    + Scripts SHOULD check to see if the QUERY_STRING value contains an + unencoded "=" character, and SHOULD NOT use the command line arguments + if it does. +

    + +

    + + 6. Data Input to the CGI Script + +

    +

    + Information about a request comes from two different sources: the + request header, and any associated + message-body. + Servers MUST + make portions of this information available to + scripts. +

    + +

    + + 6.1. Request Metadata + (Metavariables) + +

    +

    + Each CGI server + implementation MUST define a mechanism + to pass data about the request from + the server to the script. + The metavariables containing these + data + are accessed by the script in a system + defined manner. + The + representation of the characters in the + metavariables is + system defined. +

    +

    + This specification does not distinguish between the representation of + null values and missing ones. Whether null or missing values + (such as a query component of "?" or "", respectively) are represented + by undefined metavariables or by metavariables with values of "" is + implementation-defined. +

    +

    + Case is not significant in the + metavariable + names, in that there cannot be two + different variables + whose names differ in case only. Here they are + shown using a canonical representation of capitals plus underscore + ("_"). The actual representation of the names is system defined; for + a particular system the representation MAY be defined differently + than this. +

    +

    + Metavariable + values MUST be + considered case-sensitive except as noted + otherwise. +

    +

    + The canonical + metavariables + defined by this specification are: +

    +

    +
    +    AUTH_TYPE
    +    CONTENT_LENGTH
    +    CONTENT_TYPE
    +    GATEWAY_INTERFACE
    +    PATH_INFO
    +    PATH_TRANSLATED
    +    QUERY_STRING
    +    REMOTE_ADDR
    +    REMOTE_HOST
    +    REMOTE_IDENT
    +    REMOTE_USER
    +    REQUEST_METHOD
    +    SCRIPT_NAME
    +    SERVER_NAME
    +    SERVER_PORT
    +    SERVER_PROTOCOL
    +    SERVER_SOFTWARE
    +  
    +

    + Metavariables with names beginning with the protocol name (e.g., + "HTTP_ACCEPT") are also canonical in their description of request header + fields. The number and meaning of these fields may change independently + of this specification. (See also section 6.1.5.) +

    + +

    + + 6.1.1. AUTH_TYPE + +

    +

    + This variable is specific to requests made + via the + "http" + scheme. +

    +

    + If the Script-URI + required access authentication for external + access, then the server + MUST set + the value of + this variable + from the 'auth-scheme' token in + the request's "Authorization" header + field. + Otherwise + it is + set to NULL. +

    +

    +
    +    AUTH_TYPE   = "" | auth-scheme
    +    auth-scheme = "Basic" | "Digest" | token
    +  
    +

    + HTTP access authentication schemes are described in section 11 of the + HTTP/1.1 specification [8]. The auth-scheme is + not case-sensitive. +

    +

    + Servers + MUST + provide this metavariable + to scripts if the request + header included an "Authorization" field + that was authenticated. +

    + +

    + + 6.1.2. CONTENT_LENGTH + +

    +

    + This + metavariable + is set to the + size of the message-body + entity attached to the request, if any, in decimal + number of octets. If no data are attached, then this + metavariable + is either NULL or not + defined. The syntax is + the same as for + the HTTP "Content-Length" header field (section 14.14, HTTP/1.1 + specification [8]). +

    +

    +
    +    CONTENT_LENGTH = "" | 1*digit
    +  
    +

    + Servers MUST provide this metavariable + to scripts if the request + was accompanied by a + message-body entity. +

    + +

    + + 6.1.3. CONTENT_TYPE + +

    +

    + If the request includes a + message-body, + CONTENT_TYPE is set + to + the Internet Media Type + [9] of the attached + entity if the type was provided via + a "Content-type" field in the + request header, or if the server can determine it in the absence + of a supplied "Content-type" field. The syntax is the + same as for the HTTP + "Content-Type" header field. +

    +

    +
    +    CONTENT_TYPE = "" | media-type
    +    media-type   = type "/" subtype *( ";" parameter)
    +    type         = token
    +    subtype      = token
    +    parameter    = attribute "=" value
    +    attribute    = token
    +    value        = token | quoted-string
    +  
    +

    + The type, subtype, + and parameter attribute names are not + case-sensitive. Parameter values MAY be case sensitive. + Media types and their use in HTTP are described + in section 3.7 of the + HTTP/1.1 specification [8]. +

    +

    + Example: +

    +

    +
    +    application/x-www-form-urlencoded
    +  
    +

    + There is no default value for this variable. If and only if it is + unset, then the script MAY attempt to determine the media type from + the data received. If the type remains unknown, then + the script MAY choose to either assume a + content-type of + application/octet-stream + or reject the request with a 415 ("Unsupported Media Type") + error. See section 7.2.1.3 + for more information about returning error status values. +

    +

    + Servers MUST provide this metavariable + to scripts if + a "Content-Type" field was present + in the original request header. If the server receives a request + with an attached entity but no "Content-Type" + header field, it MAY attempt to + determine the correct datatype, or it MAY omit this + metavariable when + communicating the request information to the script. +

    + +

    + + 6.1.4. GATEWAY_INTERFACE + +

    +

    + This + metavariable + is set to + the dialect of CGI being used + by the server to communicate with the script. + Syntax: +

    +

    +
    +    GATEWAY_INTERFACE = "CGI" "/" major "." minor
    +    major             = 1*digit
    +    minor             = 1*digit
    +  
    +

    + Note that the major and minor numbers are treated as separate + integers and hence each may be + more than a single + digit. Thus CGI/2.4 is a lower version than CGI/2.13 which in turn + is lower than CGI/12.3. Leading zeros in either + the major or the minor number MUST be ignored by scripts and + SHOULD NOT be generated by servers. +

    +

    + This document defines the 1.1 version of the CGI interface + ("CGI/1.1"). +

    +

    + Servers MUST provide this metavariable + to scripts. +

    + +

    + + 6.1.5. Protocol-Specific Metavariables + +

    +

    + These metavariables are specific to + the protocol + via which the request is made. + Interpretation of these variables depends on the value of + the + SERVER_PROTOCOL + metavariable + (see + section 6.1.17). +

    +

    + Metavariables + with names beginning with "HTTP_" contain + values from the request header, if the + scheme used was HTTP. + Each + HTTP header field name is converted to upper case, has all occurrences of + "-" replaced with "_", + and has "HTTP_" prepended to form + the metavariable name. + Similar transformations are applied for other + protocols. + The header data MAY be presented as sent + by the client, or MAY be rewritten in ways which do not change its + semantics. If multiple header fields with the same field-name are received + then the server + MUST rewrite them as though they + had been received as a single header field having the same + semantics before being represented in a + metavariable. + Similarly, a header field that is received on more than one line + MUST be merged into a single line. The server MUST, if necessary, + change the representation of the data (for example, the character + set) to be appropriate for a CGI + metavariable. + +

    +

    + Servers are + not required to create + metavariables for all + the request + header fields that they + receive. In particular, + they MAY + decline to make available any + header fields carrying authentication information, such as + "Authorization", or + which are available to the script + via other metavariables, + such as "Content-Length" and "Content-Type". +

    + +

    + + 6.1.6. PATH_INFO + +

    +

    + The PATH_INFO + metavariable + specifies + a path to be interpreted by the CGI script. It identifies the + resource or sub-resource to be returned + by the CGI + script, and it is derived from the portion + of the URI path following the script name but preceding + any query data. + The syntax + and semantics are similar to a decoded HTTP URL + 'path' token + (defined in + RFC 2396 + [4]), with the exception + that a PATH_INFO of "/" + represents a single void path segment. +

    +

    +
    +    PATH_INFO = "" | ( "/" path )
    +    path      = segment *( "/" segment )
    +    segment   = *pchar
    +    pchar     = <any CHAR except "/">
    +  
    +

    + The PATH_INFO string is the trailing part of the <path> component of + the Script-URI + (see section 3.2) + that follows the SCRIPT_NAME + portion of the path. +

    +

    + Servers MAY impose their own restrictions and + limitations on what values they will accept for PATH_INFO, and MAY + reject or edit any values they + consider objectionable before passing + them to the script. +

    +

    + Servers MUST make this URI component available + to CGI scripts. The PATH_INFO + value is case-sensitive, and the + server MUST preserve the case of the PATH_INFO element of the URI + when making it available to scripts. +

    + +

    + + 6.1.7. PATH_TRANSLATED + +

    +

    + PATH_TRANSLATED is derived by taking any path-info component of the + request URI (see + section 6.1.6), decoding it + (see section 3.1), parsing it as a URI in its own + right, and performing any virtual-to-physical + translation appropriate to map it onto the + server's document repository structure. + If the request URI includes no path-info + component, the PATH_TRANSLATED metavariable SHOULD NOT be defined. +

    +

    +
    +    PATH_TRANSLATED = *CHAR
    +  
    +

    + For a request such as the following: +

    +

    +
    +    http://somehost.com/cgi-bin/somescript/this%2eis%2epath%2einfo
    +  
    +

    + the PATH_INFO component would be decoded, and the result + parsed as though it were a request for the following: +

    +

    +
    +    http://somehost.com/this.is.the.path.info
    +  
    +

    + This would then be translated to a + location in the server's document repository, + perhaps a filesystem path something + like this: +

    +

    +
    +    /usr/local/www/htdocs/this.is.the.path.info
    +  
    +

    + The result of the translation is the value of PATH_TRANSLATED. +

    +

    + The value of PATH_TRANSLATED may or may not map to a valid + repository + location. + Servers MUST preserve the case of the path-info + segment if and only if the underlying + repository + supports case-sensitive + names. If the + repository + is only case-aware, case-preserving, or case-blind + with regard to + document names, + servers are not required to preserve the + case of the original segment through the translation. +

    +

    + The + translation + algorithm the server uses to derive PATH_TRANSLATED is + implementation defined; CGI scripts which use this variable may + suffer limited portability. +

    +

    + Servers SHOULD provide this metavariable + to scripts if and only if the request URI includes a + path-info component. +

    + +

    + + 6.1.8. QUERY_STRING + +

    +

    + A URL-encoded + string; the <query> part of the + Script-URI. + (See + section 3.2.) +

    +

    +
    +    QUERY_STRING = query-string
    +    query-string = *uric
    +  
    +

    + The URL syntax for a query + string is described in + section 3 of + RFC 2396 + [4]. +

    +

    + Servers MUST supply this value to scripts. + The QUERY_STRING value is case-sensitive. + If the Script-URI does not include a query component, + the QUERY_STRING metavariable MUST be defined as an empty string (""). +

    + +

    + + 6.1.9. REMOTE_ADDR + +

    +

    + The IP address of the client + sending the request to the server. This + is not necessarily that of the user + agent + (such as if the request came through a proxy). +

    +

    +
    +    REMOTE_ADDR  = hostnumber
    +    hostnumber   = ipv4-address | ipv6-address
    +  
    +

    + The definitions of ipv4-address and ipv6-address + are provided in Appendix B of RFC 2373 [13]. +

    +

    + Servers MUST supply this value to scripts. +

    + +

    + + 6.1.10. REMOTE_HOST + +

    +

    + The fully qualified domain name of the + client sending the request to + the server, if available, otherwise NULL. + (See section 6.1.9.) + Fully qualified domain names take the form as described in + section 3.5 of RFC 1034 [10] and section 2.1 of + RFC 1123 [5]. Domain names are not case sensitive. +

    +

    + Servers SHOULD provide this information to + scripts. +

    + +

    + + 6.1.11. REMOTE_IDENT + +

    +

    + The identity information reported about the connection by a + RFC 1413 [11] request to the remote agent, if + available. Servers + MAY choose not + to support this feature, or not to request the data + for efficiency reasons. +

    +

    +
    +    REMOTE_IDENT = *CHAR
    +  
    +

    + The data returned + may be used for authentication purposes, but the level + of trust reposed in them should be minimal. +

    +

    + Servers MAY supply this information to scripts if the + RFC1413 [11] lookup is performed. +

    + +

    + + 6.1.12. REMOTE_USER + +

    +

    + If the request required authentication using the "Basic" + mechanism (i.e., the AUTH_TYPE + metavariable is set + to "Basic"), then the value of the REMOTE_USER + metavariable is set to the + user-ID supplied. In all other cases + the value of this metavariable + is undefined. +

    +

    +
    +    REMOTE_USER = *OCTET
    +  
    +

    + This variable is specific to requests made via the + HTTP protocol. +

    +

    + Servers SHOULD provide this metavariable + to scripts. +

    + +

    + + 6.1.13. REQUEST_METHOD + +

    +

    + The REQUEST_METHOD + metavariable + is set to the + method with which the request was made, as described in section + 5.1.1 of the HTTP/1.0 specification [3] and + section 5.1.1 of the + HTTP/1.1 specification [8]. +

    +

    +
    +    REQUEST_METHOD   = http-method
    +    http-method      = "GET" | "HEAD" | "POST" | "PUT" | "DELETE"
    +                       | "OPTIONS" | "TRACE" | extension-method
    +    extension-method = token
    +  
    +

    + The method is case sensitive. + CGI/1.1 servers MAY choose to process some methods + directly rather than passing them to scripts. +

    +

    + This variable is specific to requests made with HTTP. +

    +

    + Servers MUST provide this metavariable + to scripts. +

    + +

    + + 6.1.14. SCRIPT_NAME + +

    +

    + The SCRIPT_NAME + metavariable + is + set to a URL path that could identify the CGI script (rather than the + script's + output). The syntax and semantics are identical to a + decoded HTTP URL 'path' token + (see RFC 2396 + [4]). +

    +

    +
    +    SCRIPT_NAME = "" | ( "/" [ path ] )
    +  
    +

    + The SCRIPT_NAME string is some leading part of the <path> component + of the Script-URI derived in some + implementation defined manner. + No PATH_INFO or QUERY_STRING segments + (see sections 6.1.6 and + 6.1.8) are included + in the SCRIPT_NAME value. +

    +

    + Servers MUST provide this metavariable + to scripts. +

    + +

    + + 6.1.15. SERVER_NAME + +

    +

    + The SERVER_NAME + metavariable + is set to the + name of the + server, as + derived from the <host> part of the + Script-URI + (see section 3.2). +

    +

    +
    +    SERVER_NAME = hostname | hostnumber
    +  
    +

    + Servers MUST provide this metavariable + to scripts. +

    + +

    + + 6.1.16. SERVER_PORT + +

    +

    + The SERVER_PORT + metavariable + is set to the + port on which the + request was received, as used in the <port> + part of the Script-URI. +

    +

    +
    +    SERVER_PORT = 1*digit
    +  
    +

    + If the <port> portion of the script-URI is blank, the actual + port number upon which the request was received MUST be supplied. +

    +

    + Servers MUST provide this metavariable + to scripts. +

    + +

    + + 6.1.17. SERVER_PROTOCOL + +

    +

    + The SERVER_PROTOCOL + metavariable + is set to + the + name and revision of the information protocol with which + the + request + arrived. This is not necessarily the same as the protocol version used by + the server in its response to the client. +

    +

    +
    +    SERVER_PROTOCOL   = HTTP-Version | extension-version
    +                        | extension-token
    +    HTTP-Version      = "HTTP" "/" 1*digit "." 1*digit
    +    extension-version = protocol "/" 1*digit "." 1*digit
    +    protocol          = 1*( alpha | digit | "+" | "-" | "." )
    +    extension-token   = token
    +  
    +

    + 'protocol' is a version of the <scheme> part of the + Script-URI, but is + not identical to it. For example, the scheme of a request may be + "https" while the protocol remains "http". + The protocol is not case sensitive, but + by convention, 'protocol' is in + upper case. +

    +

    + A well-known extension token value is "INCLUDED", + which signals that the current document is being included as part of + a composite document, rather than being the direct target of the + client request. +

    +

    + Servers MUST provide this metavariable + to scripts. +

    + +

    + + 6.1.18. SERVER_SOFTWARE + +

    +

    + The SERVER_SOFTWARE + metavariable + is set to the + name and version of the information server software answering the + request (and running the gateway). +

    +

    +
    +    SERVER_SOFTWARE = 1*product
    +    product         = token [ "/" product-version ]
    +    product-version = token
    +  
    +

    + Servers MUST provide this metavariable + to scripts. +

    + +

    + + 6.2. Request Message-Bodies + +

    +

    + As there may be a data entity attached to the request, there MUST be + a system defined method for the script to read + these data. Unless + defined otherwise, this will be via the 'standard input' file + descriptor. +

    +

    + If the CONTENT_LENGTH value (see section 6.1.2) + is non-NULL, the server MUST supply at least that many bytes to + scripts on the standard input stream. + Scripts are + not obliged to read the data. + Servers MAY signal an EOF condition after CONTENT_LENGTH bytes have been + read, but are + not obligated to do so. Therefore, scripts + MUST NOT + attempt to read more than CONTENT_LENGTH bytes, even if more data + are available. +

    +

    + For non-parsed header (NPH) scripts (see + section 7.1 + below), + servers SHOULD + attempt to ensure that the data + supplied to the script are precisely + as supplied by the client and unaltered by + the server. +

    +

    + Section 8.1.2 describes the requirements of + servers with regard to requests that include + message-bodies. +

    + +

    + + 7. Data Output from the CGI Script + +

    +

    + There MUST be a system defined method for the script to send data + back to the server or client; a script MUST always return some data. + Unless defined otherwise, this will be via the 'standard + output' file descriptor. +

    +

    + There are two forms of output that scripts can supply to servers: non-parsed + header (NPH) output, and parsed header output. + Servers MUST support parsed header + output and MAY support NPH output. The method of + distinguishing between the two + types of output (or scripts) is implementation defined. +

    +

    + Servers MAY implement a timeout period within which data must be + received from scripts. If a server implementation defines such + a timeout and receives no data from a script within the timeout + period, the server MAY terminate the script process and SHOULD + abort the client request with + either a + '504 Gateway Timed Out' or a + '500 Internal Server Error' response. +

    + +

    + + 7.1. Non-Parsed Header Output + +

    +

    + Scripts using the NPH output form + MUST return a complete HTTP response message, as described + in Section 6 of the HTTP specifications + [3,8]. + NPH scripts + MUST use the SERVER_PROTOCOL variable to determine the appropriate format + for a response. +

    +

    + Servers + SHOULD attempt to ensure that the script output is sent + directly to the client, with minimal + internal and no transport-visible + buffering. +

    + +

    + + 7.2. Parsed Header Output + +

    +

    + Scripts using the parsed header output form MUST supply + a CGI response message to the server + as follows: +

    +

    +
    +    CGI-Response   = *optional-field CGI-Field *optional-field NL [ Message-Body ]
    +    optional-field = ( CGI-Field | HTTP-Field )
    +    CGI-Field      = Content-type
    +                   | Location
    +                   | Status
    +                   | extension-header
    +  
    +

    + The response comprises a header and a body, separated by a blank line. + The body may be NULL. + The header fields are either CGI header fields to be interpreted by + the server, or HTTP header fields + to be included in the response returned + to the client + if the request method is HTTP. At least one + CGI-Field MUST be + supplied, but no CGI field name may be used more than once + in a response. + If a body is supplied, then a "Content-type" + header field MUST be + supplied by the script, + otherwise the script MUST send a "Location" + or "Status" header field. If a + Location CGI-Field + is returned, then the script MUST NOT supply + any HTTP-Fields. +

    +

    + Each header field in a CGI-Response MUST be specified on a single line; + CGI/1.1 does not support continuation lines. +

    + +

    + + 7.2.1. CGI header fields + +

    +

    + The CGI header fields have the generic syntax: +

    +

    +
    +    generic-field  = field-name ":" [ field-value ] NL
    +    field-name     = token
    +    field-value    = *( field-content | LWSP )
    +    field-content  = *( token | tspecial | quoted-string )
    +  
    +

    + The field-name is not case sensitive; a NULL field value is + equivalent to the header field not being sent. +

    + +

    + + 7.2.1.1. Content-Type + +

    +

    + The Internet Media Type [9] of the entity + body, which is to be sent unmodified to the client. +

    +

    +
    +    Content-Type = "Content-Type" ":" media-type NL
    +  
    +

    + This is actually an HTTP-Field + rather than a CGI-Field, but + it is listed here because of its importance in the CGI dialogue as + a member of the "one of these is required" set of header + fields. +

    + +

    + + 7.2.1.2. Location + +

    +

    + This is used to specify to the server that the script is returning a + reference to a document rather than an actual document. +

    +

    +
    +    Location         = "Location" ":"
    +                       ( fragment-URI | rel-URL-abs-path ) NL
    +    fragment-URI     = URI [ # fragmentid ]
    +    URI              = scheme ":" *qchar
    +    fragmentid       = *qchar
    +    rel-URL-abs-path = "/" [ hpath ] [ "?" query-string ]
    +    hpath            = fpsegment *( "/" psegment )
    +    fpsegment        = 1*hchar
    +    psegment         = *hchar
    +    hchar            = alpha | digit | safe | extra
    +                       | ":" | "@" | "& | "="
    +  
    +

    + The Location + value is either an absolute URI with optional fragment, + as defined in RFC 1630 [1], or an absolute path + within the server's URI space (i.e., + omitting the scheme and network-related fields) and optional + query-string. If an absolute URI is returned by the script, + then the + server MUST generate a + '302 redirect' HTTP response + message unless the script has supplied an + explicit Status response header field. + Scripts returning an absolute URI MAY choose to + provide a message-body. Servers MUST make any appropriate modifications + to the script's output to ensure the response to the user-agent complies + with the response protocol version. + If the Location value is a path, then the server + MUST generate + the response that it would have produced in response to a request + containing the URL +

    +

    +
    +    scheme "://" SERVER_NAME ":" SERVER_PORT rel-URL-abs-path
    +  
    +

    + Note: If the request was accompanied by a + message-body + (such as for a POST request), and the script + redirects the request with a Location field, the + message-body + may not be + available to the resource that is the target of the redirect. +

    + +

    + + 7.2.1.3. Status + +

    +

    + The "Status" header field is used to indicate to the server what + status code the server MUST use in the response message. +

    +

    +
    +    Status        = "Status" ":" digit digit digit SP reason-phrase NL
    +    reason-phrase = *<CHAR, excluding CTLs, NL>
    +  
    +

    + The valid status codes are listed in section 6.1.1 of the HTTP/1.0 + specifications [3]. If the SERVER_PROTOCOL is + "HTTP/1.1", then the status codes defined in the HTTP/1.1 + specification [8] may + be used. If the script does not return a "Status" header + field, then "200 OK" SHOULD be assumed by the server. +

    +

    + If a script is being used to handle a particular error or condition + encountered by the server, such as a '404 Not Found' error, the script + SHOULD use the "Status" CGI header field to propagate the error + condition back to the client. E.g., in the example mentioned it + SHOULD include a "Status: 404 Not Found" in the + header data returned to the server. +

    + +

    + + 7.2.1.4. Extension header fields + +

    +

    + Scripts MAY include in their CGI response header additional fields + not defined in this or the HTTP specification. + These are called "extension" fields, + and have the syntax of a generic-field as defined in + section 7.2.1. The name of an extension field + MUST NOT conflict with a field name defined in this or any other + specification; extension field names SHOULD begin with "X-CGI-" + to ensure uniqueness. +

    + +

    + + 7.2.2. HTTP header fields + +

    +

    + The script MAY return any other header fields defined by the + specification + for the SERVER_PROTOCOL (HTTP/1.0 [3] or HTTP/1.1 + [8]). + Servers MUST resolve conflicts beteen CGI header + and HTTP header formats or names (see section 8). +

    + +

    + + 8. Server Implementation + +

    +

    + This section defines the requirements that must be met by HTTP + servers in order to provide a coherent and correct CGI/1.1 + environment in which scripts may function. It is intended + primarily for server implementors, but it is useful for + script authors to be familiar with the information as well. +

    + +

    + + 8.1. Requirements for Servers + +

    +

    + In order to be considered CGI/1.1-compliant, a server must meet + certain basic criteria and provide certain minimal functionality. + The details of these requirements are described in the following sections. +

    + +

    + + 8.1.1. Script-URI + +

    +

    + Servers MUST support the standard mechanism (described below) which + allows + script authors to determine + what URL to use in documents + which reference the script; + specifically, what URL to use in order to + achieve particular settings of the + metavariables. This + mechanism is as follows: +

    +

    + The server + MUST translate the header data from the CGI header field syntax to + the HTTP + header field syntax if these differ. For example, the character + sequence for + newline (such as Unix's ASCII NL) used by CGI scripts may not be the + same as that used by HTTP (ASCII CR followed by LF). The server MUST + also resolve any conflicts between header fields returned by the script + and header fields that it would otherwise send itself. +

    + +

    + + 8.1.2. Request Message-body Handling + +

    +

    + These are the requirements for server handling of message-bodies directed + to CGI/1.1 resources: +

    +
      +
    1. The message-body the server provides to the CGI script MUST + have any transfer encodings removed. +
    2. +
    3. The server MUST derive and provide a value for the CONTENT_LENGTH + metavariable that reflects the length of the message-body after any + transfer decoding. +
    4. +
    5. The server MUST leave intact any content-encodings of the message-body. +
    6. +
    + +

    + + 8.1.3. Required Metavariables + +

    +

    + Servers MUST provide scripts with certain information and + metavariables + as described in section 8.3. +

    + +

    + + 8.1.4. Response Compliance + +

    +

    + Servers MUST ensure that responses sent to the user-agent meet all + requirements of the protocol level in effect. This may involve + modifying, deleting, or augmenting any header + fields and/or message-body supplied by the script. +

    + +

    + + 8.2. Recommendations for Servers + +

    +

    + Servers SHOULD provide the "query" component of the script-URI + as command-line arguments to scripts if it does not + contain any unencoded '=' characters and the command-line arguments can + be generated in an unambiguous manner. + (See section 5.) +

    +

    + Servers SHOULD set the AUTH_TYPE + metavariable to the value of the + 'auth-scheme' token of the "Authorization" + field if it was supplied as part of the request header. + (See section 6.1.1.) +

    +

    + Where applicable, servers SHOULD set the current working directory + to the directory in which the script is located before invoking + it. +

    +

    + Servers MAY reject with error '404 Not Found' + any requests that would result in + an encoded "/" being decoded into PATH_INFO or SCRIPT_NAME, as this + might represent a loss of information to the script. +

    +

    + Although the server and the CGI script need not be consistent in + their handling of URL paths (client URLs and the PATH_INFO data, + respectively), server authors may wish to impose consistency. + So the server implementation SHOULD define its behaviour for the + following cases: +

    +
      +
    1. define any restrictions on allowed characters, in particular + whether ASCII NUL is permitted; +
    2. +
    3. define any restrictions on allowed path segments, in particular + whether non-terminal NULL segments are permitted; +
    4. +
    5. define the behaviour for "." or ".." path + segments; i.e., whether they are prohibited, treated as + ordinary path + segments or interpreted in accordance with the relative URL + specification [7]; +
    6. +
    7. define any limits of the implementation, including limits on path or + search string lengths, and limits on the volume of header data the server + will parse. +
    8. +
    +

    + Servers MAY generate the + Script-URI in + any way from the client URI, + or from any other data (but the behaviour SHOULD be documented). +

    +

    + For non-parsed header (NPH) scripts (see + section 7.1), servers SHOULD + attempt to ensure that the script input comes directly from the + client, with minimal buffering. For all scripts the data will be + as supplied by the client. +

    + +

    + + 8.3. Summary of + MetaVariables + +

    +

    + Servers MUST provide the following + metavariables to + scripts. See the individual descriptions for exceptions and semantics. +

    +

    +
    +    CONTENT_LENGTH (section 6.1.2)
    +    CONTENT_TYPE (section 6.1.3)
    +    GATEWAY_INTERFACE (section 6.1.4)
    +    PATH_INFO (section 6.1.6)
    +    QUERY_STRING (section 6.1.8)
    +    REMOTE_ADDR (section 6.1.9)
    +    REQUEST_METHOD (section 6.1.13)
    +    SCRIPT_NAME (section 6.1.14)
    +    SERVER_NAME (section 6.1.15)
    +    SERVER_PORT (section 6.1.16)
    +    SERVER_PROTOCOL (section 6.1.17)
    +    SERVER_SOFTWARE (section 6.1.18)
    +  
    +

    + Servers SHOULD define the following + metavariables for scripts. + See the individual descriptions for exceptions and semantics. +

    +

    +
    +    AUTH_TYPE (section 6.1.1)
    +    REMOTE_HOST (section 6.1.10)
    +  
    +

    + In addition, servers SHOULD provide + metavariables for all fields present + in the HTTP request header, with the exception of those involved with + access control. Servers MAY at their discretion provide + metavariables + for access control fields. +

    +

    + Servers MAY define the following + metavariables. See the individual + descriptions for exceptions and semantics. +

    +

    +
    +    PATH_TRANSLATED (section 6.1.7)
    +    REMOTE_IDENT (section 6.1.11)
    +    REMOTE_USER (section 6.1.12)
    +  
    +

    + Servers MAY + at their discretion define additional implementation-specific + extension metavariables + provided their names do not + conflict with defined header field names. Implementation-specific + metavariable names SHOULD + be prefixed with "X_" (e.g., + "X_DBA") to avoid the potential for such conflicts. +

    + +

    + + 9. + Script Implementation + +

    +

    + This section defines the requirements and recommendations for scripts + that are intended to function in a CGI/1.1 environment. It is intended + primarily as a reference for script authors, but server implementors + should be familiar with these issues as well. +

    + +

    + + 9.1. Requirements for Scripts + +

    +

    + Scripts using the parsed-header method to communicate with servers + MUST supply a response header to the server. + (See section 7.) +

    +

    + Scripts using the NPH method to communicate with servers MUST + provide complete HTTP responses, and MUST use the value of the + SERVER_PROTOCOL metavariable + to determine the appropriate format. + (See section 7.1.) +

    +

    + Scripts MUST check the value of the REQUEST_METHOD + metavariable in order + to provide an appropriate response. + (See section 6.1.13.) +

    +

    + Scripts MUST be prepared to handled URL-encoded values in + metavariables. + In addition, they MUST recognise both "+" and "%20" in URL-encoded + quantities as representing the space character. + (See section 3.1.) +

    +

    + Scripts MUST ignore leading zeros in the major and minor version numbers + in the GATEWAY_INTERFACE + metavariable value. (See + section 6.1.4.) +

    +

    + When processing requests that include a + message-body, scripts + MUST NOT read more than CONTENT_LENGTH bytes from the input stream. + (See sections 6.1.2 and 6.2.) +

    + +

    + + 9.2. Recommendations for Scripts + +

    +

    + Servers may interrupt or terminate script execution at any time + and without warning, so scripts SHOULD be prepared to deal with + abnormal termination. +

    +

    + Scripts MUST + reject with + error '405 Method Not + Allowed' requests + made using methods that they do not support. If the script does + not intend + processing the PATH_INFO data, then it SHOULD reject the request with + '404 Not + Found' if PATH_INFO is not NULL. +

    +

    + If a script is processing the output of a form, it SHOULD + verify that the CONTENT_TYPE + is "application/x-www-form-urlencoded" [2] + or whatever other media type is expected. +

    +

    + Scripts parsing PATH_INFO, + PATH_TRANSLATED, or SCRIPT_NAME + SHOULD be careful + of void path segments ("//") and special path segments + ("." and + ".."). They SHOULD either be removed from the path before + use in OS + system calls, or the request SHOULD be rejected with + '404 Not Found'. +

    +

    + As it is impossible for + scripts to determine the client URI that + initiated a + request without knowledge of the specific server in + use, the script SHOULD NOT return "text/html" + documents containing + relative URL links without including a "<BASE>" + tag in the document. +

    +

    + When returning header fields, + scripts SHOULD try to send the CGI + header fields (see section + 7.2) as soon as possible, and + SHOULD send them + before any HTTP header fields. This may + help reduce the server's memory requirements. +

    + +

    + + 10. System Specifications + +

    + +

    + + 10.1. AmigaDOS + +

    +

    + The implementation of the CGI on an AmigaDOS operating system platform + SHOULD use environment variables as the mechanism of providing + request metadata to CGI scripts. +

    +
    +
    Environment variables +
    +
    +

    + These are accessed by the DOS library routine GetVar. The + flags argument SHOULD be 0. Case is ignored, but upper case is + recommended for compatibility with case-sensitive systems. +

    +
    +
    The current working directory +
    +
    +

    + The current working directory for the script is set to the directory + containing the script. +

    +
    +
    Character set +
    +
    +

    + The US-ASCII character set is used for the definition of environment + variable names and header + field names; the newline (NL) sequence is LF; + servers SHOULD also accept CR LF as a newline. +

    +
    +
    + +

    + + 10.2. Unix + +

    +

    + The implementation of the CGI on a UNIX operating system platform + SHOULD use environment variables as the mechanism of providing + request metadata to CGI scripts. +

    +

    + For Unix compatible operating systems, the following are defined: +

    +
    +
    Environment variables +
    +
    +

    + These are accessed by the C library routine getenv. +

    +
    +
    The command line +
    +
    +

    + This is accessed using the + argc and argv + arguments to main(). The words have any characters + that + are 'active' in the Bourne shell escaped with a backslash. + If the value of the QUERY_STRING + metavariable + contains an unencoded equals-sign '=', then the command line + SHOULD NOT be used by the script. +

    +
    +
    The current working directory +
    +
    +

    + The current working directory for the script + SHOULD be set to the directory + containing the script. +

    +
    +
    Character set +
    +
    +

    + The US-ASCII character set is used for the definition of environment + variable names and header field names; the newline (NL) sequence is LF; + servers SHOULD also accept CR LF as a newline. +

    +
    +
    + +

    + + 11. Security Considerations + +

    + +

    + + 11.1. Safe Methods + +

    +

    + As discussed in the security considerations of the HTTP + specifications [3,8], the + convention has been established that the + GET and HEAD methods should be 'safe'; they should cause no + side-effects and only have the significance of resource retrieval. +

    +

    + CGI scripts are responsible for enforcing any HTTP security considerations + [3,8] + with respect to the protocol version level of the request and + any side effects generated by the scripts on behalf of + the server. Primary + among these + are the considerations of safe and idempotent methods. Idempotent + requests are those that may be repeated an arbitrary number of times + and produce side effects identical to a single request. +

    + +

    + + 11.2. HTTP Header + Fields Containing Sensitive Information + +

    +

    + Some HTTP header fields may carry sensitive information which the server + SHOULD NOT pass on to the script unless explicitly configured to do + so. For example, if the server protects the script using the + "Basic" + authentication scheme, then the client will send an + "Authorization" + header field containing a username and password. If the server, rather + than the script, validates this information then the password SHOULD + NOT be passed on to the script via the HTTP_AUTHORIZATION + metavariable + without careful consideration. + This also applies to the + Proxy-Authorization header field and the corresponding + HTTP_PROXY_AUTHORIZATION + metavariable. +

    + +

    + + 11.3. Script + Interference with the Server + +

    +

    + The most common implementation of CGI invokes the script as a child + process using the same user and group as the server process. It + SHOULD therefore be ensured that the script cannot interfere with the + server process, its configuration, or documents. +

    +

    + If the script is executed by calling a function linked in to the + server software (either at compile-time or run-time) then precautions + SHOULD be taken to protect the core memory of the server, or to + ensure that untrusted code cannot be executed. +

    + +

    + + 11.4. Data Length and Buffering Considerations + +

    +

    + This specification places no limits on the length of message-bodies + presented to the script. Scripts should not assume that statically + allocated buffers of any size are sufficient to contain the entire + submission at one time. Use of a fixed length buffer without careful + overflow checking may result in an attacker exploiting 'stack-smashing' + or 'stack-overflow' vulnerabilities of the operating system. + Scripts may spool large submissions to disk or other buffering media, + but a rapid succession of large submissions may result in denial of + service conditions. If the CONTENT_LENGTH of a message-body is larger + than resource considerations allow, scripts should respond with an + error status appropriate for the protocol version; potentially applicable + status codes include '503 Service Unavailable' (HTTP/1.0 and HTTP/1.1), + '413 Request Entity Too Large' (HTTP/1.1), and + '414 Request-URI Too Long' (HTTP/1.1). +

    + +

    + + 11.5. Stateless Processing + +

    +

    + The stateless nature of the Web makes each script execution and resource + retrieval independent of all others even when multiple requests constitute a + single conceptual Web transaction. Because of this, a script should not + make any assumptions about the context of the user-agent submitting a + request. In particular, scripts should examine data obtained from the client + and verify that they are valid, both in form and content, before allowing + them to be used for sensitive purposes such as input to other + applications, commands, or operating system services. These uses + include, but are not + limited to: system call arguments, database writes, dynamically evaluated + source code, and input to billing or other secure processes. It is important + that applications be protected from invalid input regardless of whether + the invalidity is the result of user error, logic error, or malicious action. +

    +

    + Authors of scripts involved in multi-request transactions should be + particularly cautios about validating the state information; + undesirable effects may result from the substitution of dangerous + values for portions of the submission which might otherwise be + presumed safe. Subversion of this type occurs when alterations + are made to data from a prior stage of the transaction that were + not meant to be controlled by the client (e.g., hidden + HTML form elements, cookies, embedded URLs, etc.). +

    + +

    + + 12. Acknowledgements + +

    +

    + This work is based on a draft published in 1997 by David R. Robinson, + which in turn was based on the original CGI interface that arose out of + discussions on the www-talk mailing list. In particular, + Rob McCool, John Franks, Ari Luotonen, + George Phillips and + Tony Sanders deserve special recognition for their efforts in + defining and implementing the early versions of this interface. +

    +

    + This document has also greatly benefited from the comments and + suggestions made by Chris Adie, Dave Kristol, + Mike Meyer, David Morris, Jeremy Madea, + Patrick McManus, Adam Donahue, + Ross Patterson, and Harald Alvestrand. +

    + +

    + + 13. References + +

    +
    +
    [1] +
    +
    Berners-Lee, T., 'Universal Resource Identifiers in WWW: A + Unifying Syntax for the Expression of Names and Addresses of + Objects on the Network as used in the World-Wide Web', RFC 1630, + CERN, June 1994. +

    +

    +
    +
    [2] +
    +
    Berners-Lee, T. and Connolly, D., 'Hypertext Markup Language - + 2.0', RFC 1866, MIT/W3C, November 1995. +

    +

    +
    +
    [3] +
    +
    Berners-Lee, T., Fielding, R. T. and Frystyk, H., + 'Hypertext Transfer Protocol -- HTTP/1.0', RFC 1945, MIT/LCS, + UC Irvine, May 1996. +

    +

    +
    + +
    [4] +
    +
    Berners-Lee, T., Fielding, R., and Masinter, L., Editors, + 'Uniform Resource Identifiers (URI): Generic Syntax', RFC 2396, + MIT, U.C. Irvine, Xerox Corporation, August 1996. +

    +

    +
    + +
    [5] +
    +
    Braden, R., Editor, 'Requirements for Internet Hosts -- + Application and Support', STD 3, RFC 1123, IETF, October 1989. +

    +

    +
    +
    [6] +
    +
    Crocker, D.H., 'Standard for the Format of ARPA Internet Text + Messages', STD 11, RFC 822, University of Delaware, August 1982. +

    +

    +
    +
    [7] +
    +
    Fielding, R., 'Relative Uniform Resource Locators', RFC 1808, + UC Irvine, June 1995. +

    +

    +
    +
    [8] +
    +
    Fielding, R., Gettys, J., Mogul, J., Frystyk, H. and + Berners-Lee, T., 'Hypertext Transfer Protocol -- HTTP/1.1', + RFC 2068, UC Irvine, DEC, + MIT/LCS, January 1997. +

    +

    +
    +
    [9] +
    +
    Freed, N. and Borenstein N., 'Multipurpose Internet Mail + Extensions (MIME) Part Two: Media Types', RFC 2046, Innosoft, + First Virtual, November 1996. +

    +

    +
    +
    [10] +
    +
    Mockapetris, P., 'Domain Names - Concepts and Facilities', + STD 13, RFC 1034, ISI, November 1987. +

    +

    +
    +
    [11] +
    +
    St. Johns, M., 'Identification Protocol', RFC 1431, US + Department of Defense, February 1993. +

    +

    +
    +
    [12] +
    +
    'Coded Character Set -- 7-bit American Standard Code for + Information Interchange', ANSI X3.4-1986. +

    +

    +
    +
    [13] +
    +
    Hinden, R. and Deering, S., + 'IP Version 6 Addressing Architecture', RFC 2373, + Nokia, Cisco Systems, + July 1998. +

    +

    +
    +
    + +

    + + 14. Authors' Addresses + +

    +
    +

    + Ken A L Coar +
    + MeepZor Consulting +
    + 7824 Mayfaire Crest Lane, Suite 202 +
    + Raleigh, NC 27615-4875 +
    + U.S.A. +

    +

    + Tel: +1 (919) 254.4237 +
    + Fax: +1 (919) 254.5250 +
    + Email: + Ken.Coar@Golux.Com +

    +
    +
    +

    + David Robinson +
    + E*TRADE UK Ltd +
    + Mount Pleasant House +
    + 2 Mount Pleasant +
    + Huntingdon Road +
    + Cambridge CB3 0RN +
    + UK +

    +

    + Tel: +44 (1223) 566926 +
    + Fax: +44 (1223) 506288 +
    + Email: + drtr@etrade.co.uk +

    + + + diff --git a/busybox-1_37_0/docs/embedded-scripts.txt b/busybox-1_37_0/docs/embedded-scripts.txt new file mode 100644 index 000000000..f6f107d4e --- /dev/null +++ b/busybox-1_37_0/docs/embedded-scripts.txt @@ -0,0 +1,111 @@ +Embedded Shell Scripts in BusyBox +================================= + +BusyBox allows applets to be implemented as shell scripts. Since +this obviously requires a shell to interpret the scripts the feature +depends on having a shell built into the binary. Either ash or hush +will do. If both are present ash will be used. Support for embedded +scripts also has to be enabled. + +It's unlikely that your applet will be implemented as a pure shell +script: it will probably need some external commands. If these are +to be provided by BusyBox you'll need to ensure they're enabled too. + +There are two ways to include scripts in BusyBox: the quick-and-dirty +custom script and the full-featured scripted applet. + +Custom Scripts +-------------- + +When embedded script support is enabled the BusyBox build process +assumes that any files in the directory 'embed' at the top level of +the source tree are scripts to be embedded. + +The embed directory isn't present in the BusyBox source tree and +BusyBox itself will never put anything there: it's entirely for the +use of third parties. + +Adding a custom script is as simple as running the following sequence +of commands in the BusyBox source directory: + + mkdir embed + echo 'echo foo' >embed/foo + make defconfig + make + +The resulting binary includes the new applet foo! + +Custom scripts have limited opportunities for configuration: the only +control developers have is to put them in the embed directory, or not. +Everything else takes default values. For more control you need the +additional features provided by scripted applets. + +Scripted Applets +---------------- + +Suppose we want to make a shell script version of the sample applet +from the New Applet HOWTO. First we'd have to write a script (vaguely) +equivalent to the C code: + + return $(($RANDOM%256)) + +This should be placed in the file applets_sh/mu in the source tree. + +Next we need the configuration data. This is very similar to the example +code for the native applet: + +//config:config MU +//config: bool "MU" +//config: default y +//config: help +//config: Returns an indeterminate value. + +//applet:IF_MU(APPLET_SCRIPTED(mu, scripted, BB_DIR_USR_BIN, BB_SUID_DROP, mu)) + +//usage:#define mu_trivial_usage +//usage: "[-abcde] FILE..." +//usage:#define mu_full_usage +//usage: "Returns an indeterminate value\n" +//usage: "\n -a First function" +//usage: "\n -b Second function" + +The only difference is that the applet is specified as being of type +APPLET_SCRIPTED. It would also be useful to include details of any +dependencies the script has. No external commands are used by our mu +script, but it does depend on optional shell features. We can ensure +these are selected by adding this to the configuration: + +//config:config MU_DEPENDENCIES +//config: bool "Enable dependencies for mu" +//config: default y +//config: depends on MU +//config: select ASH_RANDOM_SUPPORT +//config: select FEATURE_SH_MATH +//config: help +//config: mu is implemented as a shell script. It requires support +//config: for $RANDOM and arithmetic. + +The configuration data should be placed in a C file in an appropriate +subdirectory. There isn't any C code, though! In this case the file +could be miscutils/mu.c. + +Scripted applets are just as configurable as applets written in C. +They can be enabled or disabled using the configuration menu; their +install directory can be specified and their usage messages are stored +along with those of all other applets. + +Additional Notes +---------------- + +The source for embedded scripts can be displayed by running: + + busybox --show SCRIPT + +This can be disabled by turning off FEATURE_SHOW_SCRIPT in the +configuration, though it won't prevent a determined user from +extracting the source code. + +It can be argued that embedded scripts are linked into the BusyBox +binary and are therefore not subject to the 'mere aggregation' +exception in the GPL. If this is the case embedded scripts should +have a licence compatible with BusyBox's GPL v2-only licence. diff --git a/busybox-1_37_0/docs/ifupdown_design.txt b/busybox-1_37_0/docs/ifupdown_design.txt new file mode 100644 index 000000000..39e28a9f4 --- /dev/null +++ b/busybox-1_37_0/docs/ifupdown_design.txt @@ -0,0 +1,44 @@ +This document is meant to convince you to not use ifup/ifdown. + + +The general problem with ifupdown is that it is "copulated in vertical +fashion" by design. It tries to do the job of shell script in C, +and this is invariably doomed to fail. You need ifup/ifdown +to be adaptable by local admins, and C is an extremely poor choice +for that. + +We are doomed to have problems with ifup/ifdown. Just look as this code: + +static const struct dhcp_client_t ext_dhcp_clients[] = { + { "dhcpcd", "", "" }, + { "dhclient", ........ }, + { "pump", ........ }, + { "udhcpc", ........ }, +}; + +static int dhcp_down(struct interface_defn_t *ifd, execfn *exec) +{ +#if ENABLE_FEATURE_IFUPDOWN_EXTERNAL_DHCP + int i ; + for (i = 0; i < ARRAY_SIZE(ext_dhcp_clients); i++) { + if (executable_exists(ext_dhcp_clients[i].name)) + return execute(ext_dhcp_clients[i].stopcmd, ifd, exec); + } + bb_error_msg("no dhcp clients found, using static interface shutdown"); + return static_down(ifd, exec); +#elif ENABLE_UDHCPC + return execute("kill " + "`cat /var/run/udhcpc.%iface%.pid` 2>/dev/null", ifd, exec); +#else + return 0; /* no dhcp support */ +#endif +} + +How the hell it is supposed to work reliably this way? Just imagine that +admin is using pump and ifup/ifdown. It works. Then, for whatever reason, +admin installs dhclient, but does NOT use it. ifdown will STOP WORKING, +just because it will see installed dhclient binary in e.g. /usr/bin/dhclient! +This is stupid. + +I seriously urge people to not use ifup/ifdown. +Use something less brain damaged. diff --git a/busybox-1_37_0/docs/keep_data_small.txt b/busybox-1_37_0/docs/keep_data_small.txt new file mode 100644 index 000000000..218d4f2ee --- /dev/null +++ b/busybox-1_37_0/docs/keep_data_small.txt @@ -0,0 +1,265 @@ + Keeping data small + +When many applets are compiled into busybox, all rw data and +bss for each applet are concatenated. Including those from libc, +if static busybox is built. When busybox is started, _all_ this data +is allocated, not just that one part for selected applet. + +What "allocated" exactly means, depends on arch. +On NOMMU it's probably bites the most, actually using real +RAM for rwdata and bss. On i386, bss is lazily allocated +by COWed zero pages. Not sure about rwdata - also COW? + +In order to keep busybox NOMMU and small-mem systems friendly +we should avoid large global data in our applets, and should +minimize usage of libc functions which implicitly use +such structures. + +Small experiment to measure "parasitic" bbox memory consumption: +here we start 1000 "busybox sleep 10" in parallel. +busybox binary is practically allyesconfig static one, +built against uclibc. Run on x86-64 machine with 64-bit kernel: + +bash-3.2# nmeter '%t %c %m %p %[pn]' +23:17:28 .......... 168M 0 147 +23:17:29 .......... 168M 0 147 +23:17:30 U......... 168M 1 147 +23:17:31 SU........ 181M 244 391 +23:17:32 SSSSUUU... 223M 757 1147 +23:17:33 UUU....... 223M 0 1147 +23:17:34 U......... 223M 1 1147 +23:17:35 .......... 223M 0 1147 +23:17:36 .......... 223M 0 1147 +23:17:37 S......... 223M 0 1147 +23:17:38 .......... 223M 1 1147 +23:17:39 .......... 223M 0 1147 +23:17:40 .......... 223M 0 1147 +23:17:41 .......... 210M 0 906 +23:17:42 .......... 168M 1 147 +23:17:43 .......... 168M 0 147 + +This requires 55M of memory. Thus 1 trivial busybox applet +takes 55k of memory on 64-bit x86 kernel. + +On 32-bit kernel we need ~26k per applet. + +Script: + +i=1000; while test $i != 0; do + echo -n . + busybox sleep 30 & + i=$((i - 1)) +done +echo +wait + +(Data from NOMMU arches are sought. Provide 'size busybox' output too) + + + Example 1 + +One example how to reduce global data usage is in +archival/libarchive/decompress_gunzip.c: + +/* This is somewhat complex-looking arrangement, but it allows + * to place decompressor state either in bss or in + * malloc'ed space simply by changing #defines below. + * Sizes on i386: + * text data bss dec hex + * 5256 0 108 5364 14f4 - bss + * 4915 0 0 4915 1333 - malloc + */ +#define STATE_IN_BSS 0 +#define STATE_IN_MALLOC 1 + +(see the rest of the file to get the idea) + +This example completely eliminates globals in that module. +Required memory is allocated in unpack_gz_stream() [its main module] +and then passed down to all subroutines which need to access 'globals' +as a parameter. + + + Example 2 + +In case you don't want to pass this additional parameter everywhere, +take a look at archival/gzip.c. Here all global data is replaced by +single global pointer (ptr_to_globals) to allocated storage. + +In order to not duplicate ptr_to_globals in every applet, you can +reuse single common one. It is defined in libbb/ptr_to_globals.c +as struct globals *const ptr_to_globals, but the struct globals is +NOT defined in libbb.h. You first define your own struct: + +struct globals { int a; char buf[1000]; }; + +and then declare that ptr_to_globals is a pointer to it: + +#define G (*ptr_to_globals) + +ptr_to_globals is declared as constant pointer. +This helps gcc understand that it won't change, resulting in noticeably +smaller code. In order to assign it, use SET_PTR_TO_GLOBALS macro: + + SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); + +Typically it is done in _main(). Another variation is +to use stack: + +int _main(...) +{ +#undef G + struct globals G; + memset(&G, 0, sizeof(G)); + SET_PTR_TO_GLOBALS(&G); + +Now you can reference "globals" by G.a, G.buf and so on, in any function. + + + bb_common_bufsiz1 + +There is one big common buffer in bss - bb_common_bufsiz1. It is a much +earlier mechanism to reduce bss usage. Each applet can use it for +its needs. Library functions are prohibited from using it. + +'G.' trick can be done using bb_common_bufsiz1 instead of malloced buffer: + +#define G (*(struct globals*)&bb_common_bufsiz1) + +Be careful, though, and use it only if globals fit into bb_common_bufsiz1. +Since bb_common_bufsiz1 is BUFSIZ + 1 bytes long and BUFSIZ can change +from one libc to another, you have to add compile-time check for it: + +if (sizeof(struct globals) > sizeof(bb_common_bufsiz1)) + BUG__globals_too_big(); + + + Drawbacks + +You have to initialize it by hand. xzalloc() can be helpful in clearing +allocated storage to 0, but anything more must be done by hand. + +All global variables are prefixed by 'G.' now. If this makes code +less readable, use #defines: + +#define dev_fd (G.dev_fd) +#define sector (G.sector) + + + Finding non-shared duplicated strings + +strings busybox | sort | uniq -c | sort -nr + + + gcc's data alignment problem + +The following attribute added in vi.c: + +static int tabstop; +static struct termios term_orig __attribute__ ((aligned (4))); +static struct termios term_vi __attribute__ ((aligned (4))); + +reduces bss size by 32 bytes, because gcc sometimes aligns structures to +ridiculously large values. asm output diff for above example: + + tabstop: + .zero 4 + .section .bss.term_orig,"aw",@nobits +- .align 32 ++ .align 4 + .type term_orig, @object + .size term_orig, 60 + term_orig: + .zero 60 + .section .bss.term_vi,"aw",@nobits +- .align 32 ++ .align 4 + .type term_vi, @object + .size term_vi, 60 + +gcc doesn't seem to have options for altering this behaviour. + +gcc 3.4.3 and 4.1.1 tested: +char c = 1; +// gcc aligns to 32 bytes if sizeof(struct) >= 32 +struct { + int a,b,c,d; + int i1,i2,i3; +} s28 = { 1 }; // struct will be aligned to 4 bytes +struct { + int a,b,c,d; + int i1,i2,i3,i4; +} s32 = { 1 }; // struct will be aligned to 32 bytes +// same for arrays +char vc31[31] = { 1 }; // unaligned +char vc32[32] = { 1 }; // aligned to 32 bytes + +-fpack-struct=1 reduces alignment of s28 to 1 (but probably +will break layout of many libc structs) but s32 and vc32 +are still aligned to 32 bytes. + +I will try to cook up a patch to add a gcc option for disabling it. +Meanwhile, this is where it can be disabled in gcc source: + +gcc/config/i386/i386.c +int +ix86_data_alignment (tree type, int align) +{ +#if 0 + if (AGGREGATE_TYPE_P (type) + && TYPE_SIZE (type) + && TREE_CODE (TYPE_SIZE (type)) == INTEGER_CST + && (TREE_INT_CST_LOW (TYPE_SIZE (type)) >= 256 + || TREE_INT_CST_HIGH (TYPE_SIZE (type))) && align < 256) + return 256; +#endif + +Result (non-static busybox built against glibc): + +# size /usr/srcdevel/bbox/fix/busybox.t0/busybox busybox + text data bss dec hex filename + 634416 2736 23856 661008 a1610 busybox + 632580 2672 22944 658196 a0b14 busybox_noalign + + + + Keeping code small + +Use scripts/bloat-o-meter to check whether introduced changes +didn't generate unnecessary bloat. This script needs unstripped binaries +to generate a detailed report. To automate this, just use +"make bloatcheck". It requires busybox_old binary to be present, +use "make baseline" to generate it from unmodified source, or +copy busybox_unstripped to busybox_old before modifying sources +and rebuilding. + +Set CONFIG_EXTRA_CFLAGS="-fno-inline-functions-called-once", +produce "make bloatcheck", see the biggest auto-inlined functions. +Now, set CONFIG_EXTRA_CFLAGS back to "", but add NOINLINE +to some of these functions. In 1.16.x timeframe, the results were +(annotated "make bloatcheck" output): + +function old new delta +expand_vars_to_list - 1712 +1712 win +lzo1x_optimize - 1429 +1429 win +arith_apply - 1326 +1326 win +read_interfaces - 1163 +1163 loss, leave w/o NOINLINE +logdir_open - 1148 +1148 win +check_deps - 1148 +1148 loss +rewrite - 1039 +1039 win +run_pipe 358 1396 +1038 win +write_status_file - 1029 +1029 almost the same, leave w/o NOINLINE +dump_identity - 987 +987 win +mainQSort3 - 921 +921 win +parse_one_line - 916 +916 loss +summarize - 897 +897 almost the same +do_shm - 884 +884 win +cpio_o - 863 +863 win +subCommand - 841 +841 loss +receive - 834 +834 loss + +855 bytes saved in total. + +scripts/mkdiff_obj_bloat may be useful to automate this process: run +"scripts/mkdiff_obj_bloat NORMALLY_BUILT_TREE FORCED_NOINLINE_TREE" +and select modules which shrank. diff --git a/busybox-1_37_0/docs/logging_and_backgrounding.txt b/busybox-1_37_0/docs/logging_and_backgrounding.txt new file mode 100644 index 000000000..c76cd3653 --- /dev/null +++ b/busybox-1_37_0/docs/logging_and_backgrounding.txt @@ -0,0 +1,98 @@ + Logging and backgrounding + +By default, bb_[p]error_msg[_and_die] messages go to stderr, +and of course, usually applets do not auto-background. :) + +Historically, daemons and inetd services are different. + +Busybox is trying to provide compatible behavior, thus if an applet +is emulating an existing utility, it should mimic it. If utility +auto-backgrounds itself, busybox applet should do the same. +If utility normally logs to syslog, busybox applet should do +the same too. + +However, busybox should not needlessly restrict the freedom +of the users. And users have different needs and different preferences. +Some might like logging everything from daemons to syslog. +Others prefer running stuff under runsv/svlogd and thus would like +logging to stderr and no daemonization. + +To help with that, busybox applets should have options to override +default behavior, whatever that is for a given applet. + + +Current situation is a bit of a mess: + +acpid - auto-backgrounds unless -d +crond - auto-backgrounds unless -f, logs to syslog unless -d or -L. + option -d logs to stderr, -L FILE logs to FILE +devfsd - (obsolete) +dnsd - option -d makes it background and log to syslog +fakeidentd - inetd service. Auto-backgrounds and logs to syslog + if no -f and no -i and no -w (-i is "inetd service" flag, + -w is "inetd-wait service" flag) +ftpd - inetd service. Logs to syslog with -S, with -v logs to strerr too +httpd - auto-backgrounds unless -f or -i (-i is "inetd service" flag) +inetd - auto-backgrounds unless -f, logs to syslog unless -e +klogd - auto-backgrounds unless -n +syslogd - auto-backgrounds unless -n +telnetd - auto-backgrounds unless -f or -i (-i is "inetd service" flag) +udhcpc - auto-backgrounds unless -f after lease is obtained, + option -b makes it background sooner (when lease attempt + fails and retries start), + after backgrounding it stops logging to stderr; + logs to stderr, but option -S makes it log *also* to syslog +udhcpd - auto-backgrounds and do not log to stderr unless -f, + otherwise logs to stderr, but option -S makes it log *also* to syslog +zcip - auto-backgrounds and logs *also* to syslog unless -f + behaviour can be overridden with experimental LOGGING env.var + (can be set to either "none" or "syslog") + +Total: 13 applets (+1 obsolete), + 4 log to syslog by default (crond fakeidentd inetd zcip), + 5 never log to syslog (acpid httpd telnetd klogd syslogd, last two + - for obviously correct reasons), + there are no daemons which always log to syslog, + 12 auto-background if not run as inetd services (all except dnsd. + Note that there is no "standard" dnsd AFAIKS). But see below + for daemons (tcpsvd etc) which don't auto-background. + +miscutils/crond.c: logmode = LOGMODE_SYSLOG; +networking/dnsd.c: logmode = LOGMODE_SYSLOG; +networking/ftpd.c: logmode = LOGMODE_NONE; +networking/ftpd.c: logmode |= LOGMODE_SYSLOG; +networking/inetd.c: logmode = LOGMODE_SYSLOG; +networking/isrv_identd.c: logmode = LOGMODE_SYSLOG; +networking/telnetd.c: logmode = LOGMODE_SYSLOG; +networking/udhcp/dhcpc.c: logmode = LOGMODE_NONE; +networking/udhcp/dhcpc.c: logmode |= LOGMODE_SYSLOG; +networking/udhcp/dhcpc.c: logmode &= ~LOGMODE_STDIO; +networking/udhcp/dhcpd.c: logmode = LOGMODE_NONE; +networking/udhcp/dhcpd.c: logmode |= LOGMODE_SYSLOG; +networking/zcip.c: logmode |= LOGMODE_SYSLOG; + + +These daemons never auto-background and never log to syslog: + +lpd - inetd service. Has nothing to log so far, though +dhcprelay - standard behavior +inotifyd - standard behavior +runsv - standard behavior +runsvdir - standard behavior +svlogd - standard behavior +tcpsvd, udpsvd - standard behavior +tftpd - standard behavior + + +Non-daemons (seems to be use syslog for a good reason): + +networking/nameif.c: logmode |= LOGMODE_SYSLOG; +loginutils/chpasswd.c: logmode = LOGMODE_BOTH; +loginutils/chpasswd.c: logmode = LOGMODE_STDIO; +loginutils/getty.c: logmode = LOGMODE_BOTH; +loginutils/getty.c: logmode = LOGMODE_NONE; +loginutils/passwd.c: logmode = LOGMODE_STDIO; +loginutils/passwd.c: logmode = LOGMODE_BOTH; +loginutils/sulogin.c: logmode = LOGMODE_SYSLOG; (used if stdio isn't a tty) +loginutils/sulogin.c: logmode = LOGMODE_BOTH; +util-linux/mount.c: logmode = LOGMODE_SYSLOG; (used in a backgrounded NFS mount helper) diff --git a/busybox-1_37_0/docs/mdev.txt b/busybox-1_37_0/docs/mdev.txt new file mode 100644 index 000000000..b13a0bb93 --- /dev/null +++ b/busybox-1_37_0/docs/mdev.txt @@ -0,0 +1,151 @@ +------------- + MDEV Primer +------------- + +For those of us who know how to use mdev, a primer might seem lame. For +everyone else, mdev is a weird black box that they hear is awesome, but can't +seem to get their head around how it works. Thus, a primer. + +----------- + Basic Use +----------- + +Mdev has two primary uses: initial population and dynamic updates. Both +require sysfs support in the kernel and have it mounted at /sys. For dynamic +updates, you also need to have hotplugging enabled in your kernel. + +Here's a typical code snippet from the init script: +[0] mount -t proc proc /proc +[1] mount -t sysfs sysfs /sys +[2] echo /sbin/mdev > /proc/sys/kernel/hotplug +[3] mdev -s + +Alternatively, without procfs the above becomes: +[1] mount -t sysfs sysfs /sys +[2] sysctl -w kernel.hotplug=/sbin/mdev +[3] mdev -s + + +Of course, a more "full" setup would entail executing this before the previous +code snippet: +[4] mount -t tmpfs -o size=64k,mode=0755 tmpfs /dev +[5] mkdir /dev/pts +[6] mount -t devpts devpts /dev/pts + +The simple explanation here is that [1] you need to have /sys mounted before +executing mdev. Then you [2] instruct the kernel to execute /sbin/mdev whenever +a device is added or removed so that the device node can be created or +destroyed. Then you [3] seed /dev with all the device nodes that were created +while the system was booting. + +For the "full" setup, you want to [4] make sure /dev is a tmpfs filesystem +(assuming you're running out of flash). Then you want to [5] create the +/dev/pts mount point and finally [6] mount the devpts filesystem on it. + +------------- + MDEV Config (/etc/mdev.conf) +------------- + +Mdev has an optional config file for controlling ownership/permissions of +device nodes if your system needs something more than the default root/root +660 permissions. + +The file has the format: + [-][envmatch] : +or + [envmatch]@ : +or + $envvar= : + +For example: + hd[a-z][0-9]* 0:3 660 + +The config file parsing stops at the first matching line unless this line +starts with "-". If no line is matched, then the default of 0:0 660 is used. +To set your own default, simply create your own total match like so: + + .* 1:1 777 + +You can rename/move device nodes by using the next optional field. + + : [=path] + +So if you want to place the device node into a subdirectory, make sure the path +has a trailing /. If you want to rename the device node, just place the name. + hda 0:3 660 =drives/ +This will move "hda" into the drives/ subdirectory. + hdb 0:3 660 =cdrom +This will rename "hdb" to "cdrom". + +Similarly, ">path" renames/moves the device but it also creates +a direct symlink /dev/DEVNAME to the renamed/moved device. + +You can also prevent creation of device nodes with the 4th field as "!": + tty[a-z]. 0:0 660 ! + pty[a-z]. 0:0 660 ! + +If you also enable support for executing your own commands, then the file has +the format: + : [=path] [@|$|*] + or + : [>path] [@|$|*] + or + : [!] [@|$|*] + +For example: +---8<--- +# block devices +([hs]d[a-z]) root:disk 660 >disk/%1/0 +([hs]d[a-z])([0-9]+) root:disk 660 >disk/%1/%2 +mmcblk([0-9]+) root:disk 660 >disk/mmc/%1/0 +mmcblk([0-9]+)p([0-9]+) root:disk 660 >disk/mmc/%1/%2 +# network devices +(tun|tap) root:network 660 >net/%1 +---8<--- + +The special characters have the meaning: + @ Run after creating the device. + $ Run before removing the device. + * Run both after creating and before removing the device. + +The command is executed via the system() function (which means you're giving a +command to the shell), so make sure you have a shell installed at /bin/sh. You +should also keep in mind that the kernel executes hotplug helpers with stdin, +stdout, and stderr connected to /dev/null. + +For your convenience, the shell env var $MDEV is set to the device name. So if +the device "hdc" was matched, MDEV would be set to "hdc". + +---------- + FIRMWARE +---------- + +Some kernel device drivers need to request firmware at runtime in order to +properly initialize a device. Place all such firmware files into the +/lib/firmware/ directory. At runtime, the kernel will invoke mdev with the +filename of the firmware which mdev will load out of /lib/firmware/ and into +the kernel via the sysfs interface. The exact filename is hardcoded in the +kernel, so look there if you need to know how to name the file in userspace. + +------------ + SEQUENCING +------------ + +Kernel does not serialize hotplug events. It increments SEQNUM environmental +variable for each successive hotplug invocation. Normally, mdev doesn't care. +This may reorder hotplug and hot-unplug events, with typical symptoms of +device nodes sometimes not created as expected. + +However, if /dev/mdev.seq file is found, mdev will compare its +contents with SEQNUM. It will retry up to two seconds, waiting for them +to match. If they match exactly (not even trailing '\n' is allowed), +or if two seconds pass, mdev runs as usual, then it rewrites /dev/mdev.seq +with SEQNUM+1. + +IOW: this will serialize concurrent mdev invocations. + +If you want to activate this feature, execute "echo >/dev/mdev.seq" prior to +setting mdev to be the hotplug handler. This writes single '\n' to the file. +NB: mdev recognizes /dev/mdev.seq consisting of single '\n' character +as a special case. IOW: this will not make your first hotplug event +to stall for two seconds. diff --git a/busybox-1_37_0/docs/new-applet-HOWTO.txt b/busybox-1_37_0/docs/new-applet-HOWTO.txt new file mode 100644 index 000000000..619d47fb8 --- /dev/null +++ b/busybox-1_37_0/docs/new-applet-HOWTO.txt @@ -0,0 +1,207 @@ +How to Add a New Applet to BusyBox +================================== + +This document details the steps you must take to add a new applet to BusyBox. + +Credits: +Matt Kraai - initial writeup +Mark Whitley - the remix +Thomas Lundquist - trying to keep it updated + +When doing this you should consider using the latest git HEAD. +This is a good thing if you plan to getting it committed into mainline. + +Initial Write +------------- + +First, write your applet. Be sure to include copyright information at the top, +such as who you stole the code from and so forth. Also include the mini-GPL +boilerplate and Config.in/Kbuild/usage/applet.h snippets (more on that below +in this document). Be sure to name the main function _main instead +of main. And be sure to put it in .c. Make sure to #include "libbb.h" +as the first include file in your applet. + +For a new applet mu, here is the code that would go in mu.c: + +(libbb.h already includes most usual header files. You do not need +#include etc...) + + +----begin example code------ + +/* vi: set sw=4 ts=4: */ +/* + * Mini mu implementation for busybox + * + * Copyright (C) [YEAR] by [YOUR NAME] + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ + +#include "libbb.h" +#include "other.h" + +//config:config MU +//config: bool "MU" +//config: default y +//config: help +//config: Returns an indeterminate value. + +//kbuild:lib-$(CONFIG_MU) += mu.o +//applet:IF_MU(APPLET(mu, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//usage:#define mu_trivial_usage +//usage: "[-abcde] FILE..." +//usage:#define mu_full_usage +//usage: "Returns an indeterminate value\n" +//usage: "\n -a First function" +//usage: "\n -b Second function" + +int mu_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int mu_main(int argc, char **argv) +{ + int fd; + ssize_t n; + char mu; + + fd = xopen("/dev/random", O_RDONLY); + + if ((n = safe_read(fd, &mu, 1)) < 1) + bb_perror_msg_and_die("/dev/random"); + + return mu; +} + +----end example code------ + + +Coding Style +------------ + +Before you submit your applet for inclusion in BusyBox, (or better yet, before +you _write_ your applet) please read through the style guide in the docs +directory and make your program compliant. + + +Some Words on libbb +------------------- + +As you are writing your applet, please be aware of the body of pre-existing +useful functions in libbb. Use these instead of reinventing the wheel. + +Additionally, if you have any useful, general-purpose functions in your +applet that could be useful in other applets, consider putting them in libbb. + +And it may be possible that some of the other applets uses functions you +could use. If so, you have to rip the function out of the applet and make +a libbb function out of it. + +Adding a libbb function: +------------------------ + +Make a new file named .c + +----start example code------ + +#include "libbb.h" +#include "other.h" + +//kbuild:lib-y += function.o + +int function(char *a) +{ + return *a; +} + +----end example code------ + +Remember about the kbuild snippet. + +You should also try to find a suitable place in include/libbb.h for +the function declaration. If not, add it somewhere anyway, with or without +ifdefs to include or not. + +You can look at libbb/Config.src and try to find out if the function is +tunable and add it there if it is. + + +Kbuild/Config.in/usage/applets.h snippets in .c files +----------------------------------------------------- + +The old way of adding new applets was to put all the information needed by the +configuration and build system into appropriate files (namely: Kbuild.src and +Config.src in new applet's directory) and to add the applet declaration and +usage info text to include/applets.src.h and include/usage.src.h respectively. + +Since the scripts/gen_build_files.sh script had been introduced, the preferred +way is to have all these declarations contained within the applet .c files. + +Every line intended to be processed by gen_build_files.sh should start as a +comment without any preceding whitespaces and be followed by an appropriate +keyword - kbuild, config, usage or applet - and a colon, just like shown in the +first example above. + + +Placement / Directory +--------------------- + +Find the appropriate directory for your new applet. + +Add the config snippet to the .c file: + +//config:config MU +//config: bool "MU" +//config: default y +//config: help +//config: Returns an indeterminate value. + +Add the kbuild snippet to the .c file: + +//kbuild:lib-$(CONFIG_MU) += mu.o + + +Usage String(s) +--------------- + +Next, add usage information for your applet to the .c file. +This should look like the following: + +//usage:#define mu_trivial_usage +//usage: "[-abcde] FILE..." +//usage:#define mu_full_usage "\n\n" +//usage: "Returns an indeterminate value" +//usage: "\n" +//usage: "\n -a First function" +//usage: "\n -b Second function" +//usage: ... + +If your program supports flags, the flags should be mentioned on the first +line ([-abcde]) and a detailed description of each flag should go in the +mu_full_usage section, one flag per line. + + +Header Files +------------ + +Finally add the applet declaration snippet. Be sure to read the top of +applets.src.h before adding your applet - it contains important info +on applet macros and conventions. + +//applet:IF_MU(APPLET(mu, BB_DIR_USR_BIN, BB_SUID_DROP)) + + +The Grand Announcement +---------------------- + +Then create a diff by adding the new files to git (remember your libbb files) + git add /mu.c +eventually also: + git add libbb/function.c +then + git commit + git format-patch HEAD^ +and send it to the mailing list: + busybox@busybox.net + http://busybox.net/mailman/listinfo/busybox + +Sending patches as attachments is preferred, but not required. diff --git a/busybox-1_37_0/docs/nofork_noexec.txt b/busybox-1_37_0/docs/nofork_noexec.txt new file mode 100644 index 000000000..9d210a1c9 --- /dev/null +++ b/busybox-1_37_0/docs/nofork_noexec.txt @@ -0,0 +1,143 @@ + NOEXEC and NOFORK applets. + +Unix shells traditionally execute some commands internally in the attempt +to dramatically speed up execution. It will be slow as hell if for every +"echo blah" shell will fork and exec /bin/echo. To this end, shells +have to _reimplement_ these commands internally. + +Busybox is unique in this regard because it already is a collection +of reimplemented Unix commands, and we can do the same trick +for speeding up busybox shells, and more. NOEXEC and NOFORK applets +are exactly those applets which are eligible for these tricks. + +Applet will be subject to NOFORK/NOEXEC tricks only if it is marked +as such in applets.src.h or in their inline "//applet:" directives. + +In C, if you want to call a program and wait for it, use +spawn_and_wait(argv), BB_EXECVP(prog,argv) or BB_EXECLP(prog,argv0,...). +They check whether program name is an applet name and optionally +do NOFORK/NOEXEC thing depending on configuration. + + + Relevant CONFIG options + +FEATURE_PREFER_APPLETS + Globally enables NOFORK/NOEXEC tricks for such programs as xargs + and find: + BB_EXECVP(cmd, argv) will try to exec /proc/self/exe + if command's name matches some applet name; + spawn_and_wait(argv) will do NOFORK/NOEXEC tricks + +//TODO: the above two things probably should have separate options? + +FEATURE_SH_STANDALONE + shells will try to exec /proc/self/exe if command's name matches + some applet name; shells will do NOEXEC trick on NOEXEC applets + +//TODO: split (same as for PREFER_APPLETS) + +FEATURE_SH_NOFORK + shells will do NOFORK trick on NOFORK applets + +NB: shell builtins use these tricks regardless of FEATURE_SH_STANDALONE, +FEATURE_PREFER_APPLETS or FEATURE_SH_NOFORK. In effect, builtins +are "always NOFORK". + + + NOEXEC + +NOEXEC applet should work correctly if another applet forks and then +executes exit(_main(argc,argv)) in the child. The rules +roughly are: + +* do not expect shared global variables/buffers to be in their + "initialized" state. Examples: xfunc_error_retval can be != 1, + bb_common_bufsiz1 can be scribbled over, ... + (although usually xfunc_error_retval's state is not a problem). +* do not expect that stdio wasn't used before. Calling set[v]buf() + can be disastrous. +* ... + +NOEXEC applets save only one half of fork+exec overhead. +NOEXEC trick is disabled for NOMMU build. + + + NOFORK + +NOFORK applet should work correctly if another applet simply runs +_main(argc,argv) and then continues with its business. +xargs, find, shells do it (grep for "spawn_and_wait" and +"run_nofork_applet" to find more users). + +This poses much more serious limitations on what applet can do: + +* all NOEXEC limitations apply. +* do not run for a long time or wait for user input: + hush shell only handles signals (like ^C) after you return + from APPLET_main(). +* do not ever exit() or exec(). + - xfuncs are okay. They are using special trick to return + to the caller applet instead of dying when they detect "x" condition. + - you may "exit" to caller applet by calling xfunc_die(). Return value + is taken from xfunc_error_retval. + - fflush_stdout_and_exit(n) is ok to use. +* do not use shared global data, or save/restore shared global data + (e.g. bb_common_bufsiz1) prior to returning. + - getopt32() is ok to use. You do not need to save/restore option_mask32, + xfunc_error_retval, and logmode - it is already done by core code. +* if you allocate memory, you can use xmalloc() only on the very first + allocation. All other allocations should use malloc[_or_warn](). + After first allocation, you cannot use any xfuncs. + Otherwise, failing xfunc will return to caller applet + without freeing malloced data! +* the same applies to other resources, such as open fds: no xfuncs after + acquiring them! +* All allocated data, opened files, signal handlers, termios settings + etc should be freed/closed/restored prior to return. + +Currently, ash shell signal handling is implemented in a way that signals +have non-SA_RESTARTed handlers. This means that system calls can +return EINTR. An example of such problem is "yes" applet: +it is implemented so that it has a writing loop, this loop is exited on +any write error, and in the case of user pressing ^C the error was EINTR. +The problem is, the error causes stdout FILE* object to get into error +state, needing clearerr() - or else subsequent shell output will also +not work. ("yes" has been downgraded to NOEXEC, since hush signal handling +does not have this problem - which makes "yes" to not exit on ^C (bug). +But stray EINTRs can be seen in any NOFORK under ash, until ash is fixed). + +NOFORK applets give the most of speed advantage, but are trickiest +to implement. In order to minimize amount of bugs and maintenance, +prime candidates for NOFORK-ification are those applets which +are small and easy to audit, and those which are more likely to be +frequently executed from shell/find/xargs, particularly in shell +script loops. Applets which mess with signal handlers, termios etc +are probably not worth the effort. + +Applets which must be interruptible by ^C in shells can not be NOFORKs. + +Any NOFORK applet is also a NOEXEC applet. + + + Calling NOFORK applets + +API to call NOFORK applets is two functions: + + run_nofork_applet(appno, argv) + spawn_and_wait(argv) // only if FEATURE_PREFER_APPLETS=y + +First one is directly used by shells if FEATURE_SH_NOFORK=y. +Second one is used by many applets, but main users are xargs and find. +It itself calls run_nofork_applet(), if argv[0] is a name +of a NOFORK applet. + +run_nofork_applet() saves/inits/restores option parsing, xfunc_error_retval, +logmode, applet_name. Thus, for example, caller does not need to worry about +option_mask32 getting trashed. + + + Calling NOEXEC applets + +It's the same trusty spawn_and_wait(argv). If FEATURE_PREFER_APPLETS=y, +it does NOEXEC trick. It resets xfunc_error_retval = 1 and +logmode = LOGMODE_STDIO in the child. diff --git a/busybox-1_37_0/docs/posix_conformance.txt b/busybox-1_37_0/docs/posix_conformance.txt new file mode 100644 index 000000000..8edbe3e15 --- /dev/null +++ b/busybox-1_37_0/docs/posix_conformance.txt @@ -0,0 +1,751 @@ + +Busybox POSIX conformance table + +See POSIX documentation (1003.1-2008) here: +http://www.opengroup.org/onlinepubs/9699919799/ +And the complete list of all utilities that POSIX covers: +http://www.opengroup.org/onlinepubs/9699919799/idx/utilities.html + +This listing is a work in progress, and currently only covers +tool options (not operands, environment variables, return codes, etc..). +For each option it is set if it (a) exists and (b) compliant to POSIX 2008. +Some options exist but there is no value in the 'compliant' column: that +means no one has yet bothered to make sure that the option does what it is +required to do. + +----------------------------------------------- + +POSIX Tools supported only as shell built-ins (ash shell): + alias, bg, cd, fg, getopts, hash, jobs, read, type, umask, ulimit, + unalias, wait, write + +POSIX Tools not supported: + asa, at, batch, bc, c99, command, compress, csplit, ex, fc, file, + gencat, getconf, iconv, join, link, locale, localedef, lp, m4, + mailx, newgrp, nl, pathchk, pax, pr, qalter, qdel, qhold, qmove, + qmsg, qrerun, qrls, qselect, qsig, qstat, qsub, tabs, talk, tput, + unlink, uucp, uustat, uux + +POSIX Tools not supported (DEVELOPMENT): + admin, cflow, ctags, cxref, delta, fort77, get, lex, make, nm, prs, rmdel, + sact, sccs, strip, unget, val, what, yacc + + +POSIX Tools supported: + +Note: echo, printf, kill, pwd documented here as stand-alone applets, + not as ash built-ins. + + +ar POSIX options ********************* Failed to recognize zip & tar (did not compare to regular ar) + option | exists | compliant | remarks + -C | no | no | + -T | no | no | + -a | no | no | + -b | no | no | + -c | no | no | + -d | no | no | + -i | no | no | + -m | no | no | + -p | yes | | + -q | no | no | + -r | no | no | + -s | no | no | + -t | yes | | + -u | no | no | + -v | yes | | + -x | yes | | +ar Busybox specific options: + -o + +awk POSIX options + option | exists | compliant | remarks + -F ERE | yes | | + -f progfile | yes | | + -v assignment | yes | | +awk Busybox specific options: None + +basename POSIX options: None +basename Busybox specific options: None + +cal POSIX options: None +cal Busybox specific options: + -y, -j + +cat POSIX options + option | exists | compliant | remarks + -u | yes | no | option is ignored +cat Busybox specific options: None + +chgrp POSIX options + option | exists | compliant | remarks + -H | yes | | + -L | yes | | + -P | yes | | + -R | yes | | + -h | yes | | +chgrp Busybox specific options: + -f, -c, -v + +chmod POSIX options + option | exists | compliant | remarks + -R | yes | yes | +chmod Busybox specific options: + -f, -v, -c + +chown POSIX options ********************************************* + option | exists | compliant | remarks + -H | yes | | It seems like all flags are supported (according to printout), but + -L | yes | | it fails to work on my machine + -P | yes | | + -R | yes | | + -h | yes | | +chown Busybox specific options: + -f, -c, -v + +cksum POSIX options: None +cksum Busybox specific options: None + +cmp POSIX options + option | exists | compliant | remarks + -l | yes | yes | + -s | yes | yes | +cmp Busybox specific options: + + +comm POSIX options + option | exists | compliant | remarks + -1 | yes | yes | + -2 | yes | yes | + -3 | yes | yes | +comm Busybox specific options: None + +cp POSIX options + option | exists | compliant | remarks + -H | yes | yes | + -L | yes | yes | + -P | yes | yes | + -R | yes | yes | + -f | yes | yes | + -i | yes | yes | + -p | yes | yes | +cp Busybox specific options: + -d, -a, -s, -c, -r, -l + +crontab POSIX options + option | exists | compliant | remarks + -e | yes | | + -l | yes | | + -r | yes | | +crontab Busybox specific options: + -u, -c + +cut POSIX options + option | exists | compliant | remarks + -b list | yes | yes | + -c list | yes | yes | + -d delim | yes | yes | + -f list | yes | yes | + -n | yes | yes | + -s | yes | yes | +cut Busybox specific options: None + +date POSIX options + option | exists | compliant | remarks + -u | yes | yes | +date Busybox specific options: + -I[SPEC], -d TIME, -r FILE, -R, -D FMT + +dd POSIX options: + option | exists | compliant | remarks + if | yes | | + of | yes | | + ibs | yes | | + obs | yes | | + bs | yes | | + cbs | no | no | + skip | yes | | + seek | yes | | + count | yes | | + conv=ascii | no | no | + conv=ebcdic | no | no | + conv=ibm | no | no | + conv=block | no | no | + conv=unblock | no | no | + conv=lcase | no | no | + conv=ucase | no | no | + conv=swap | no | no | + conv=noerror | yes | | + conv=notrunc | yes | | + conv=sync | yes | | +dd compatibility options: + conv=fsync | yes | | + iflag=skip_bytes| yes | | + iflag=fullblock | yes | | + oflag=seek_bytes| yes | | + oflag=append | yes | | + +df POSIX options + option | exists | compliant | remarks + -P | yes | yes | + -k | yes | yes | + -t | no | no | +df Busybox specific options: + -a, -m, -B SIZE, -i, -h +Remark: +- It seems that GNU df does not round percents up in its output (thus its results are a bit different) + +diff POSIX options + option | exists | compliant | remarks + -C n | no | no | + -U n | yes | | + -b | yes | | + -c | no | no | + -e | no | no | + -f | no | no | + -r | yes | | + -u | no | no | +diff Busybox specific options: + -d, -a, -s, -t, -L, -N, -i, -T, -w, -q, -S + +dirname POSIX options: None +dirname Busybox specific options: None + +du POSIX options + option | exists | compliant | remarks + -H | yes | | + -L | yes | | + -a | yes | | + -k | yes | | + -s | yes | | + -x | yes | | +du Busybox specific options: + -c, -m, -h, -d N, -l + + +echo POSIX options: None + option | exists | compliant | remarks + -n | yes | yes | The result of -n is "implementation-defined" +echo Busybox specific options: + -e, -E + +ed POSIX options + option | exists | compliant | remarks + -p string | no | no | + -s | no | no | +ed Busybox specific options: None + +env POSIX options + option | exists | compliant | remarks + -i | no | no | +env Busybox specific options: + -u, -, -i + +expand POSIX options + option | exists | compliant | remarks + -t tablist | yes | yes | +expand Busybox specific options: + --tabs=N, -i, --initial + +expr POSIX operations: + option | exists | compliant | remarks + | | yes | yes | + & | yes | yes | + = | yes | yes | + > | yes | yes | + >= | yes | yes | + <= | yes | yes | + < | yes | yes | + != | yes | yes | + + | yes | yes | + - | yes | yes | + * | yes | yes | + / | yes | yes | + % | yes | yes | + : | yes | yes | + (expr) | yes | yes | + integer | yes | yes | + string | yes | yes | +expr Busybox specific operations: + match, substr, index, length, quote + +false POSIX options: None +false Busybox specific options: None + +find POSIX options + option | exists | compliant | remarks + -H | no | no | + -L | no | no | +find Busybox specific options: + -group NAME, -mtime DAYS, -print, -maxdepth N, -exec CMD ARG ;, -newer FILE, -context, -iname PATTERN, -follow, -depth, -xdev, -inum N, -type X, -print0, -mindepth N, -mmin MINS, -regex PATTERN, -prune, -path PATTERN, -user NAME, -delete, -perm NNN, -name PATTERN, -size N[bck] + +fold POSIX options + option | exists | compliant | remarks + -b | yes | yes | + -s | yes | yes | + -w width | yes | yes | +fold Busybox specific options: None + +fuser POSIX options + option | exists | compliant | remarks + -c | no | no | + -f | no | no | + -u | no | no | +fuser Busybox specific options: + -m, -k, -4, -SIGNAL, -6, -s + +grep POSIX options + option | exists | compliant | remarks + -E | yes | | + -F | yes | | + -c | yes | | + -e pattern_list | yes | | + -f pattern_file | yes | | + -i | yes | | + -l | yes | | + -n | yes | | + -q | yes | | + -s | yes | | + -v | yes | | + -x | no | no | +grep Busybox specific options: + -A, -C, -B, -L, -H, -o, -h, -w, -r, -z, -m MAX + +head POSIX options + option | exists | compliant | remarks + -n number | yes | yes | +head Busybox specific options: + -v, -c NUM, -q + +id POSIX options + option | exists | compliant | remarks + -G | yes | yes | + -g | yes | yes | + -n | yes | yes | + -r | yes | yes | + -u | yes | yes | +id Busybox specific options: + -Z + +ipcrm POSIX options + option | exists | compliant | remarks + -M shmkey | no | no | + -Q msgkey | no | no | + -S semkey | no | no | + -m shmid | no | no | + -q msgid | no | no | + -s semid | no | no | +ipcrm Busybox specific options: + -mM, -qQ, -sS + +ipcs POSIX options + option | exists | compliant | remarks + -a | yes | | + -b | no | no | + -c | yes | | + -m | yes | | + -o | no | no | + -p | yes | | + -q | yes | | + -s | yes | | + -t | yes | | +ipcs Busybox specific options: + -l, -i, -u + +kill POSIX options + option | exists | compliant | remarks + -l | yes | yes | + -s signal_name | yes | yes | + -signal_name | yes | yes | + -signal_number | yes | yes | +kill Busybox specific options: + -q, -o + +ln POSIX options + option | exists | compliant | remarks + -L | no | no | + -P | no | no | + -f | yes | yes | + -s | yes | yes | +ln Busybox specific options: + -S suf, -n, -b + +logger POSIX options: None +logger Busybox specific options: + -p PRIO, -t TAG, -s + +logname POSIX options: None +logname Busybox specific options: None + +ls POSIX options + option | exists | compliant | remarks + -1 | yes | yes | + -A | yes | yes | + -C | yes | yes | + -F | yes | yes | And more: '=' for sockets (not defined by POSIX) + -H | no | no | + -L | yes | yes | But coloring may be wrong (at least POSIX does not require correct colors :) ) + -R | yes | yes | + -S | yes | yes | + -a | yes | yes | + -c | yes | no | Sorts output with '-l' (should only show ctime with '-l', and sort only with '-t') + -d | yes | no | When invoked together with '-L' should read symbolic links, and doesn't + -f | no | no | + -g | no | no | + -i | yes | yes | + -k | yes | no | Does something completely unrelated! (Lists security context instead of specifying block size) + -l | yes | yes | + -m | no | no | + -n | yes | no | Works correctly only together with '-l' (but POSIX requires '-l' to be implicitly assumed) + -o | no | no | + -p | yes | yes | + -q | no | no | + -r | yes | yes | + -s | yes | yes | + -t | yes | yes | + -u | yes | yes | + -x | yes | yes | +ls Busybox specific options: + --color, -T NUM, -K, -X, -Z, -e, -h, -v, -w NUM + +man POSIX options + option | exists | compliant | remarks + -k | no | no | +man Busybox specific options: + -a Display all pages + + +mesg POSIX options: None +mesg Busybox specific options: None + +mkdir POSIX options + option | exists | compliant | remarks + -m mode | yes | yes | + -p | yes | yes | +mkdir Busybox specific options: + -Z + +mkfifo POSIX options + option | exists | compliant | remarks + -m mode | yes | yes | +mkfifo Busybox specific options: + -Z + +more POSIX options + option | exists | compliant | remarks + -c | no | no | + -e | no | no | + -i | no | no | + -n number | no | no | + -p command | no | no | + -s | no | no | + -t tagstring | no | no | + -u | no | no | +more Busybox specific options: None + +mv POSIX options + option | exists | compliant | remarks + -f | yes | yes | + -i | yes | yes | +mv Busybox specific options: None + +nice POSIX options + option | exists | compliant | remarks + -n increment | yes | yes | +nice Busybox specific options: None + +nohup POSIX options: None +nohup Busybox specific options: None + +od POSIX options + option | exists | compliant | remarks + -A address_base | no | no | + -N count | no | no | + -b | no | no | + -c | no | no | + -d | no | no | + -j skip | no | no | + -o | no | no | + -s | no | no | + -t type_string | no | no | + -v | no | no | + -x | no | no | +od Busybox specific options: None + +paste POSIX options + option | exists | compliant | remarks + -d list | yes | yes | + -s | yes | yes | +paste Busybox specific options: None + +patch POSIX options + option | exists | compliant | remarks + -D define | no | no | + -N | no | no | + -R | yes | yes | + -b | no | no | + -c | no | no | + -d dir | no | no | + -e | no | no | + -i patchfile | yes | yes | + -l | no | no | + -n | no | no | + -o outfile | no | no | + -p num | yes | yes | + -r rejectfile | no | no | + -u | no | no | +patch Busybox specific options: None + +printf POSIX options: None +printf Busybox specific options: None + +ps POSIX options + option | exists | compliant | remarks + -A | no | no | + -G grouplist | no | no | + -U userlist | no | no | + -a | no | no | + -d | no | no | + -e | no | no | + -f | no | no | + -g grouplist | no | no | + -l | no | no | + -n namelist | no | no | + -o format | yes | no | not supported: ruser, group, rgroup, pcpu + -p proclist | no | no | + -t termlist | no | no | + -u userlist | no | no | +ps Busybox specific options: None + +pwd POSIX options + option | exists | compliant | remarks + -L | no | no | + -P | no | no | +pwd Busybox specific options: None + +renice POSIX options + option | exists | compliant | remarks + -g | yes | yes | + -n increment | yes | yes | Note POSIX allows only to run with this option (busybox also allows to run without '-n' and set niceness directly) + -p | yes | yes | + -u | yes | yes | +renice Busybox specific options: None + +rm POSIX options + option | exists | compliant | remarks + -R | yes | yes | + -f | yes | yes | + -i | yes | yes | + -r | yes | yes | +rm Busybox specific options: None + +rmdir POSIX options + option | exists | compliant | remarks + -p | yes | yes | +rmdir Busybox specific options: + --parents + +sed POSIX options + option | exists | compliant | remarks + -e script | yes | | + -f script_file | yes | | + -n | yes | | +sed Busybox specific options: + -i, -r + +sh POSIX options + option | exists | compliant | remarks + -c | no | no | + -i | no | no | + -s | no | no | +sh Busybox specific options: None + +sleep POSIX options: None +sleep Busybox specific options: None + +sort POSIX options + option | exists | compliant | remarks + -C | no | no | + -b | yes | yes | + -c | yes | yes | + -d | yes | yes | + -f | yes | yes | + -i | yes | yes | But is not like GNU sort, which isn't! (try to sort 'a\nA\nB\nb' with and without -f) + -k keydef | yes | | + -m | no | no | + -n | yes | yes | + -o output | yes | yes | + -r | yes | yes | + -t char | yes | | + -u | yes | yes | +sort Busybox specific options: + -mST, -g, -M, -s, -z + +split POSIX options + option | exists | compliant | remarks + -a suffix_length | yes | yes | + -b n | yes | yes | + -b nk | yes | yes | + -b nm | yes | yes | + -l line_count | yes | yes | +split Busybox specific options: None + +strings POSIX options + option | exists | compliant | remarks + -a | yes | yes | + -n number | yes | yes | + -t format | no | no | +strings Busybox specific options: + -o, -f + +stty POSIX options + option | exists | compliant | remarks + -a | yes | yes | + -g | yes | yes | +stty Busybox specific options: + -F DEVICE + +tail POSIX options + option | exists | compliant | remarks + -c number | yes | yes | + -f | yes | yes | + -n number | yes | yes | +tail Busybox specific options: + -v, -q, -s SEC + +tee POSIX options + option | exists | compliant | remarks + -a | yes | yes | + -i | yes | yes | +tee Busybox specific options: None + +test POSIX options: None +test Busybox specific options: None + +time POSIX options + option | exists | compliant | remarks + -p | no | no | +time Busybox specific options: + -v + +touch POSIX options + option | exists | compliant | remarks + -a | no | no | + -c | yes | yes | + -d date_time | no | no | + -m | no | no | + -r ref_file | no | no | + -t time | no | no | +touch Busybox specific options: None + +tr POSIX options + option | exists | compliant | remarks + -C | no | no | + -c | yes | yes | + -d | yes | yes | + -s | yes | yes | +tr Busybox specific options: None + +true POSIX options: None +true Busybox specific options: None + +tty POSIX options: None +tty Busybox specific options: + -s + +uname POSIX options + option | exists | compliant | remarks + -a | yes | yes | + -m | yes | yes | + -n | yes | yes | + -r | yes | yes | + -s | yes | yes | + -v | yes | yes | +uname Busybox specific options: + -p + +uncompress POSIX options + option | exists | compliant | remarks + -c | yes | yes | + -f | yes | yes | + -v | no | no | +uncompress Busybox specific options: None + +unexpand POSIX options + option | exists | compliant | remarks + -a | yes | no | POSIX requires converting two or more spaces to tabs, busybox converts one or more spaces + -t tablist | yes | yes | +unexpand Busybox specific options: + --tabs=N, -f, --first-only, --all + +uniq POSIX options + option | exists | compliant | remarks + -c | yes | yes | + -d | yes | yes | + -f fields | yes | yes | + -s chars | yes | yes | + -u | yes | yes | +uniq Busybox specific options: + -w N + +uudecode POSIX options + option | exists | compliant | remarks + -o outfile | yes | no | +uudecode Busybox specific options: None + +uuencode POSIX options + option | exists | compliant | remarks + -m | yes | yes | +uuencode Busybox specific options: None + +vi POSIX options + option | exists | compliant | remarks + -R | yes | | + -c command | yes | | + -r | no | no | + -t tagstring | no | no | + -w size | no | no | +vi Busybox specific options: + -H + +wc POSIX options + option | exists | compliant | remarks + -c | yes | yes | + -l | yes | yes | + -m | no | no | + -w | yes | yes | +wc Busybox specific options: + -L + +who POSIX options + option | exists | compliant | remarks + -H | no | no | + -T | no | no | + -a | yes | no | just shows all + -b | no | no | + -d | no | no | + -l | no | no | + -m | no | no | + -p | no | no | + -q | no | no | + -r | no | no | + -s | no | no | + -t | no | no | + -u | no | no | +who Busybox specific options: None + +xargs POSIX options + option | exists | compliant | remarks + -E eofstr | no | no | + -I replstr | no | no | + -L number | no | no | + -n number | yes | yes | + -p | yes | yes | + -s size | yes | yes | + -t | yes | yes | + -x | yes | yes | +xargs Busybox specific options: + -e[STR], -0, -r + +zcat POSIX options: None +zcat Busybox specific options: None diff --git a/busybox-1_37_0/docs/sigint.htm b/busybox-1_37_0/docs/sigint.htm new file mode 100644 index 000000000..d656aeb8c --- /dev/null +++ b/busybox-1_37_0/docs/sigint.htm @@ -0,0 +1,627 @@ + + + +Proper handling of SIGINT/SIGQUIT [http://www.cons.org/cracauer/sigint.html] + + +

    Proper handling of SIGINT/SIGQUIT

    + +

    + + + + + +
    Abstract: +In UNIX terminal sessions, you usually have a key like +C-c (Control-C) to immediately end whatever program you +have running in the foreground. This should work even when the program +you called has called other programs in turn. Everything should be +aborted, giving you your command prompt back, no matter how deep the +call stack is. + +

    Basically, it's trivial. But the existence of interactive +applications that use SIGINT and/or SIGQUIT for other purposes than a +complete immediate abort make matters complicated, and - as was to +expect - left us with several ways to solve the problems. Of course, +existing shells and applications follow different ways. + +

    This Web pages outlines different ways to solve the problem and +argues that only one of them can do everything right, although it +means that we have to fix some existing software. + + + +

    Intended audience: Programmers who implement programs that catch SIGINT/SIGQUIT. +
    Programmers who implements shells or shell-like programs that +execute batches of programs. + +

    Users who have problems problems getting rid of runaway shell +scripts using Control-C. Or have interactive applications +that don't behave right when sending SIGINT. Examples are emacs'es +that die on Control-g or shellscript statements that sometimes are +executed and sometimes not, apparently not determined by the user's +intention. + + +

    Required knowledge: You have to know what it means to catch SIGINT or SIGQUIT and how +processes are waiting for other processes (children) they spawned. + + +
    + + + +

    Basic concepts

    + +What technically happens when you press Control-C is that all programs +running in the foreground in your current terminal (or virtual +terminal) get the signal SIGINT sent. + +

    You may change the key that triggers the signal using +stty and running programs may remap the SIGINT-sending +key at any time they like, without your intervention and without +asking you first. + +

    The usual reaction of a running program to SIGINT is to exit. +However, not all program do an exit on SIGINT, programs are free to +use the signal for other actions or to ignore it at all. + +

    All programs running in the foreground receive the signal. This may +be a nested "stack" of programs: You started a program that started +another and the outer is waiting for the inner to exit. This nesting +may be arbitrarily deep. + +

    The innermost program is the one that decides what to do on SIGINT. +It may exit, do something else or do nothing. Still, when the user hit +SIGINT, all the outer programs are awaken, get the signal and may +react on it. + +

    What we try to achieve

    + +The problem is with shell scripts (or similar programs that call +several subprograms one after another). + +

    Let us consider the most basic script: +

    +#! /bin/sh
    +program1
    +program2
    +
    +and the usual run looks like this: +
    +$ sh myscript
    +[output of program1]
    +[output of program2]
    +$
    +
    + +

    Let us assume that both programs do nothing special on SIGINT, they +just exit. + +

    Now imagine the user hits C-c while a shellscript is executing its +first program. The following programs receive SIGINT: program1 and +also the shell executing the script. program1 exits. + +

    But what should the shell do? If we say that it is only the +innermost's programs business to react on SIGINT, the shell will do +nothing special (not exit) and it will continue the execution of the +script and run program2. But this is wrong: The user's intention in +hitting C-c is to abort the whole script, to get his prompt back. If +he hits C-c while the first program is running, he does not want +program2 to be even started. + +

    here is what would happen if the shell doesn't do anything: +

    +$ sh myscript
    +[first half of program1's output]
    +C-c   [users presses C-c]
    +[second half of program1's output will not be displayed]
    +[output of program2 will appear]
    +
    + + +

    Consider a more annoying example: +

    +#! /bin/sh
    +# let's assume there are 300 *.dat files
    +for file in *.dat ; do
    +	dat2ascii $dat
    +done
    +
    + +If your shell wouldn't end if the user hits C-c, +C-c would just end one dat2ascii run and +the script would continue. Thus, you had to hit C-c up to +300 times to end this script. + +

    Alternatives to do so

    + +

    There are several ways to handle abortion of shell scripts when +SIGINT is received while a foreground child runs: + +

    + +
  1. As just outlined, the shellscript may just continue, ignoring the +fact that the user hit C-c. That way, your shellscript - +including any loops - would continue and you had no chance of aborting +it except using the kill command after finding out the outermost +shell's PID. This "solution" will not be discussed further, as it is +obviously not desirable. + +

  2. The shell itself exits immediately when it receives SIGINT. Not +only the program called will exit, but the calling (the +script-executing) shell. The first variant is to exit the shell (and +therefore discontinuing execution of the script) immediately, while +the background program may still be executing (remember that although +the shell is just waiting for the called program to exit, it is woken +up and may act). I will call the way of doing things the "IUE" (for +"immediate unconditional exit") for the rest of this document. + +

  3. As a variant of the former, when the shell receives SIGINT +while it is waiting for a child to exit, the shell does not exit +immediately. but it remembers the fact that a SIGINT happened. After +the called program exits and the shell's wait ends, the shell will +exit itself and hence discontinue the script. I will call the way of +doing things the "WUE" (for "wait and unconditional exit") for the +rest of this document. + +

  4. There is also a way that the calling shell can tell whether the +called program exited on SIGINT and if it ignored SIGINT (or used it +for other purposes). As in the WUE way, the shell waits for +the child to complete. It figures whether the program was ended on +SIGINT and if so, it discontinue the script. If the program did any +other exit, the script will be continued. I will call the way of doing +things the "WCE" (for "wait and cooperative exit") for the rest of +this document. + +
  5. + +

    The problem

    + +On first sight, all three solutions (IUE, WUE and WCE) all seem to do +what we want: If C-c is hit while the first program of the shell +script runs, the script is discontinued. The user gets his prompt back +immediately. So what are the difference between these way of handling +SIGINT? + +

    There are programs that use the signal SIGINT for other purposes +than exiting. They use it as a normal keystroke. The user is expected +to use the key that sends SIGINT during a perfectly normal program +run. As a result, the user sends SIGINT in situations where he/she +does not want the program or the script to end. + +

    The primary example is the emacs editor: C-g does what ESC does in +other applications: It cancels a partially executed or prepared +operation. Technically, emacs remaps the key that sends SIGINT from +C-c to C-g and catches SIGINT. + +

    Remember that the SIGINT is sent to all programs running in the +foreground. If emacs is executing from a shell script, both emacs and +the shell get SIGINT. emacs is the program that decides what to do: +Exit on SIGINT or not. emacs decides not to exit. The problem arises +when the shell draws its own conclusions from receiving SIGINT without +consulting emacs for its opinion. + +

    Consider this script: +

    +#! /bin/sh
    +emacs /tmp/foo
    +cp /tmp/foo /home/user/mail/sent
    +
    + +

    If C-g is used in emacs, both the shell and emacs will received +SIGINT. Emacs will not exit, the user used C-g as a normal editing +keystroke, he/she does not want the script to be aborted on C-g. + +

    The central problem is that the second command (cp) may +unintentionally be killed when the shell draws its own conclusion +about the user's intention. The innermost program is the only one to +judge. + +

    One more example

    + +

    Imagine a mail session using a curses mailer in a tty. You called +your mailer and started to compose a message. Your mailer calls emacs. +C-g is a normal editing key in emacs. Technically it +sends SIGINT (it was C-c, but emacs remapped the key) to +

    +
  6. emacs +
  7. the shell between your mailer and emacs, the one from your mailers + system("emacs /tmp/bla.44") command +
  8. the mailer itself +
  9. possibly another shell if your mailer was called by a shell script +or from another application using system(3) +
  10. your interactive shell (which ignores it since it is interactive +and hence is not relevant to this discussion) +
  11. + +

    If everyone just exits on SIGINT, you will be left with nothing but +your login shell, without asking. + +

    But for sure you don't want to be dropped out of your editor and +out of your mailer back to the commandline, having your edited data +and mailer status deleted. + +

    Understand the difference: While C-g is used an a kind +of abort key in emacs, it isn't the major "abort everything" key. When +you use C-g in emacs, you want to end some internal emacs +command. You don't want your whole emacs and mailer session to end. + +

    So, if the shell exits immediately if the user sends SIGINT (the +second of the four ways shown above), the parent of emacs would die, +leaving emacs without the controlling tty. The user will lose it's +editing session immediately and unrecoverable. If the "main" shell of +the operating system defaults to this behavior, every editor session +that is spawned from a mailer or such will break (because it is +usually executed by system(3), which calls /bin/sh). This was the case +in FreeBSD before I and Bruce Evans changed it in 1998. + +

    If the shell recognized that SIGINT was sent and exits after the +current foreground process exited (the third way of the four), the +editor session will not be disturbed, but things will still not work +right. + +

    A further look at the alternatives

    + +

    Still considering this script to examine the shell's actions in the +IUE, WUE and ICE way of handling SIGINT: +

    +#! /bin/sh
    +emacs /tmp/foo
    +cp /tmp/foo /home/user/mail/sent
    +
    + +

    The IUE ("immediate unconditional exit") way does not work at all: +emacs wants to survive the SIGINT (it's a normal editing key for +emacs), but its parent shell unconditionally thinks "We received +SIGINT. Abort everything. Now.". The shell will exit even before emacs +exits. But this will leave emacs in an unusable state, since the death +of its calling shell will leave it without required resources (file +descriptors). This way does not work at all for shellscripts that call +programs that use SIGINT for other purposes than immediate exit. Even +for programs that exit on SIGINT, but want to do some cleanup between +the signal and the exit, may fail before they complete their cleanup. + +

    It should be noted that this way has one advantage: If a child +blocks SIGINT and does not exit at all, this way will get control back +to the user's terminal. Since such programs should be banned from your +system anyway, I don't think that weighs against the disadvantages. + +

    WUE ("wait and unconditional exit") is a little more clever: If C-g +was used in emacs, the shell will get SIGINT. It will not immediately +exit, but remember the fact that a SIGINT happened. When emacs ends +(maybe a long time after the SIGINT), it will say "Ok, a SIGINT +happened sometime while the child was executing, the user wants the +script to be discontinued". It will then exit. The cp will not be +executed. But that's bad. The "cp" will be executed when the emacs +session ended without the C-g key ever used, but it will not be +executed when the user used C-g at least one time. That is clearly not +desired. Since C-g is a normal editing key in emacs, the user expects +the rest of the script to behave identically no matter what keys he +used. + +

    As a result, the "WUE" way is better than the "IUE" way in that it +does not break SIGINT-using programs completely. The emacs session +will end undisturbed. But it still does not support scripts where +other actions should be performed after a program that use SIGINT for +non-exit purposes. Since the behavior is basically undeterminable for +the user, this can lead to nasty surprises. + +

    The "WCE" way fixes this by "asking" the called program whether it +exited on SIGINT or not. While emacs receives SIGINT, it does not exit +on it and a calling shell waiting for its exit will not be told that +it exited on SIGINT. (Although it receives SIGINT at some point in +time, the system does not enforce that emacs will exit with +"I-exited-on-SIGINT" status. This is under emacs' control, see below). + +

    this still work for the normal script without SIGINT-using +programs:

    +
    +#! /bin/sh
    +program1
    +program2
    +
    + +Unless program1 and program2 mess around with signal handling, the +system will tell the calling shell whether the programs exited +normally or as a result of SIGINT. + +

    The "WCE" way then has an easy way to things right: When one called +program exited with "I-exited-on-SIGINT" status, it will discontinue +the script after this program. If the program ends without this +status, the next command in the script is started. + +

    It is important to understand that a shell in "WCE" modus does not +need to listen to the SIGINT signal at all. Both in the +"emacs-then-cp" script and in the "several-normal-programs" script, it +will be woken up and receive SIGINT when the user hits the +corresponding key. But the shell does not need to react on this event +and it doesn't need to remember the event of any SIGINT, either. +Telling whether the user wants to end a script is done by asking that +program that has to decide, that program that interprets keystrokes +from the user, the innermost program. + +

    So everything is well with WCE?

    + +Well, almost. + +

    The problem with the "WCE" modus is that there are broken programs +that do not properly communicate the required information up to the +calling program. + +

    Unless a program messes with signal handling, the system does this +automatically. + +

    There are programs that want to exit on SIGINT, but they don't let +the system do the automatic exit, because they want to do some +cleanup. To do so, they catch SIGINT, do the cleanup and then exit by +themselves. + +

    And here is where the problem arises: Once they catch the signal, +the system will no longer communicate the "I-exited-on-SIGINT" status +to the calling program automatically. Even if the program exit +immediately in the signal handler of SIGINT. Once it catches the +signal, it has to take care of communicating the signal status +itself. + +

    Some programs don't do this. On SIGINT, they do cleanup and exit +immediately, but the calling shell isn't told about the non-normal exit +and it will call the next program in the script. + +

    As a result, the user hits SIGINT and while one program exits, the +shellscript continues. To him/her it looks like the shell fails to +obey to his abortion command. + +

    Both IUE or WUE shell would not have this problem, since they +discontinue the script on their own. But as I said, they don't support +programs using SIGINT for non-exiting purposes, no matter whether +these programs properly communicate their signal status to the calling +shell or not. + +

    Since some shell in wide use implement the WUE way (and some even +IUE), there is a considerable number of broken programs out there that +break WCE shells. The programmers just don't recognize it if their +shell isn't WCE. + +

    How to be a proper program

    + +

    (Short note in advance: What you need to achieve is that +WIFSIGNALED(status) is true in the calling program and that +WTERMSIG(status) returns SIGINT.) + +

    If you don't catch SIGINT, the system automatically does the right +thing for you: Your program exits and the calling program gets the +right "I-exited-on-SIGINT" status after waiting for your exit. + +

    But once you catch SIGINT, you have to act. + +

    Decide whether the SIGINT is used for exit/abort purposes and hence +a shellscript calling this program should discontinue. This is +hopefully obvious. If you just need to do some cleanup on SIGINT, but +then exit immediately, the answer is "yes". + +

    If so, you have to tell the calling program about it by exiting +with the "I-exited-on-SIGINT" status. + +

    There is no other way of doing this than to kill yourself with a +SIGINT signal. Do it by resetting the SIGINT handler to SIG_DFL, then +send yourself the signal. + +

    +void sigint_handler(int sig)
    +{
    +	
    +	signal(SIGINT, SIG_DFL);
    +	kill(getpid(), SIGINT);
    +}
    +
    + +Notes: + + + +
  12. You cannot "fake" the proper exit status by an exit(3) with a +special numeric value. People often assume this since the manuals for +shells often list some return value for exactly this. But this is just +a convention for your shell script. It does not work from one UNIX API +program to another. + +

    All that happens is that the shell sets the "$?" variable to a +special numeric value for the convenience of your script, because your +script does not have access to the lower-lever UNIX status evaluation +functions. This is just an agreement between your script and the +executing shell, it does not have any meaning in other contexts. + +

  13. Do not use kill(0, SIGINT) without consulting the manul for +your OS implementation. I.e. on BSD, this would not send the signal to +the current process, but to all processes in the group. + +

  14. POSIX 1003.1 allows all these calls to appear in signal +handlers, so it is portable. + +
  15. + +

    In a bourne shell script, you can catch signals using the +trap command. Here, the same as for C programs apply. If +the intention of SIGINT is to end your program, you have to exit in a +way that the calling programs "sees" that you have been killed. If +you don't catch SIGINT, this happened automatically, but of you catch +SIGINT, i.e. to do cleanup work, you have to end the program by +killing yourself, not by calling exit. + +

    Consider this example from FreeBSD's mkdep, which is a +bourne shell script. + +

    +TMP=_mkdep$$
    +trap 'rm -f $TMP ; trap 2 ; kill -2 $$' 1 2 3 13 15
    +
    + +Yes, you have to do it the hard way. It's even more annoying in shell +scripts than in C programs since you can't "pre-delete" temporary +files (which isn't really portable in C, though). + +

    All this applies to programs in all languages, not only C and +bourne shell. Every language implementation that lets you catch SIGINT +should also give you the option to reset the signal and kill yourself. + +

    It is always desirable to exit the right way, even if you don't +expect your usual callers to depend on it, some unusual one will come +along. This proper exit status will be needed for WCE and will not +hurt when the calling shell uses IUE or WUE. + +

    How to be a proper shell

    + +All this applies only for the script-executing case. Most shells will +also have interactive modes where things are different. + + + +
  16. Do nothing special when SIGINT appears while you wait for a child. +You don't even have to remember that one happened. + +

  17. Wait for child to exit, get the exit status. Do not truncate it +to type char. + +

  18. Look at WIFSIGNALED(status) and WTERMSIG(status) to tell +whether the child says "I exited on SIGINT: in my opinion the user +wants the shellscript to be discontinued". + +

  19. If the latter applies, discontinue the script. + +

  20. Exit. But since a shellscript may in turn be called by a +shellscript, you need to make sure that you properly communicate the +discontinue intention to the calling program. As in any other program +(see above), do + +
    +	signal(SIGINT, SIG_DFL);
    +	kill(getpid(), SIGINT);
    +
    + +
  21. + +

    Other remarks

    + +Although this web page talks about SIGINT only, almost the same issues +apply to SIGQUIT, including proper exiting by killing yourself after +catching the signal and proper reaction on the WIFSIGNALED(status) +value. One notable difference for SIGQUIT is that you have to make +sure that not the whole call tree dumps core. + +

    What to fight

    + +Make sure all programs really kill themselves if they react +to SIGINT or SIGQUIT and intend to abort their operation as a result +of this signal. Programs that don't use SIGINT/SIGQUIT as a +termination trigger - but as part of normal operation - don't kill +themselves, but do a normal exit instead. + +

    Make sure people understand why you can't fake an exit-on-signal by +doing exit(...) using any numerical status. + +

    Make sure you use a shell that behaves right. Especially if you +develop programs, since it will help seeing problems. + +

    Concrete examples how to fix programs:

    +
      + +
    • The fix for FreeBSD's +time(1). This fix is the best example, it's quite short and clear and +it fixes a case where someone tried to fake signal exit status by a +numerical value. And the complete program is small. + +

    • Fix for FreeBSD's +truss(1). + +

    • The fix for FreeBSD's +mkdep(1), a shell script. + + +

    • Fix for FreeBSD's make(1), part 1, +part 2. + +
    + +

    Testsuite for shells

    + +I have a collection of shellscripts that test shells for the +behavior. See my download dir to get the newest +"sh-interrupt" files, either as a tarfile or as individual file for +online browsing. This isn't really documented, besides from the +comments the scripts echo. + +

    Appendix 1 - table of implementation choices

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    Method signDoes what?Example shells that implement it:What happens when a shellscript called emacs, the user used +C-g and the script has additional commands in it?What happens when a shellscript called emacs, the user did not use +C-c and the script has additional commands in it?What happens if a non-interactive child catches SIGINT?To behave properly, children must do what?
    IUEThe shell executing a script exits immediately if it receives +SIGINT.4.4BSD ash (ash), NetBSD, FreeBSD prior to 3.0/22.8The editor session is lost and subsequent commands are not +executed.The editor continues as normal and the subsequent commands are +executed. The scripts ends immediately, returning to the caller even before +the current foreground child of the shell exits. It doesn't matter what the child does or how it exits, even if the +child continues to operate, the shell returns.
    WUEIf the shell executing a script received SIGINT while a foreground +process was running, it will exit after that child's exit.pdksh (OpenBSD /bin/sh)The editor continues as normal, but subsequent commands from the +script are not executed.The editor continues as normal and subsequent commands are +executed. The scripts returns to its caller after the current foreground +child exits, no matter how the child exited. It doesn't matter how the child exits (signal status or not), but +if it doesn't return at all, the shell will not return. In no case +will further commands from the script be executed.
    WCEThe shell exits if a child signaled that it was killed on a +signal (either it had the default handler for SIGINT or it killed +itself). bash (Linux /bin/sh), most commercial /bin/sh, FreeBSD /bin/sh +from 3.0/2.2.8.The editor continues as normal and subsequent commands are +executed. The editor continues as normal and subsequent commands are +executed. The scripts returns to its caller after the current foreground +child exits, but only if the child exited with signal status. If +the child did a normal exit (even if it received SIGINT, but catches +it), the script will continue. The child must be implemented right, or the user will not be able +to break shell scripts reliably.
    + +

     +
    ©2005 Martin Cracauer <cracauer @ cons.org> +http://www.cons.org/cracauer/ +
    Last changed: $Date: 2005/02/11 21:44:43 $ + diff --git a/busybox-1_37_0/docs/smallint.txt b/busybox-1_37_0/docs/smallint.txt new file mode 100644 index 000000000..b57dfd775 --- /dev/null +++ b/busybox-1_37_0/docs/smallint.txt @@ -0,0 +1,39 @@ + smalluint i = index_in_str_array(params, name) + 1; + if (i == 0) + return 0; + if (!(i == 4 || i == 5)) + i |= 0x80; + + return i; + +I think that this optimization is wrong. +index_in_str_array returns int. At best, compiler will use it as-is. +At worst, compiler will try to make sure that it is properly cast +into a byte, which probably results in "n = n & 0xff" on many architectures. + +You save nothing on space here because i is not stored on-stack, +gcc will keep it in register. And even if it *is* stored, +it is *stack* storage, which is cheap (unlike data/bss). + +small[u]ints are useful _mostly_ for: + +(a) flag variables + (a1) global flag variables - make data/bss smaller + (a2) local flag variables - "a = 5", "a |= 0x40" are smaller + for bytes than for full integers. + Example: + on i386, there is no widening constant store instruction + for some types of address modes, thus + movl $0x0,(%eax) is "c7 00 00 00 00 00" + movb $0x0,(%eax) is "c6 00 00" +(b) small integer structure members, when you have many such + structures allocated, + or when these are global objects of this structure type + +small[u]ints are *NOT* useful for: + +(a) function parameters and return values - + they are pushed on-stack or stored in registers, bytes here are *harder* + to deal with than ints +(b) "computational" variables - "a++", "a = b*3 + 7" may take more code to do + on bytes than on ints on some architectires. diff --git a/busybox-1_37_0/docs/style-guide.txt b/busybox-1_37_0/docs/style-guide.txt new file mode 100644 index 000000000..9eed7f125 --- /dev/null +++ b/busybox-1_37_0/docs/style-guide.txt @@ -0,0 +1,713 @@ +Busybox Style Guide +=================== + +This document describes the coding style conventions used in Busybox. If you +add a new file to Busybox or are editing an existing file, please format your +code according to this style. If you are the maintainer of a file that does +not follow these guidelines, please -- at your own convenience -- modify the +file(s) you maintain to bring them into conformance with this style guide. +Please note that this is a low priority task. + +To help you format the whitespace of your programs, an ".indent.pro" file is +included in the main Busybox source directory that contains option flags to +format code as per this style guide. This way you can run GNU indent on your +files by typing 'indent myfile.c myfile.h' and it will magically apply all the +right formatting rules to your file. Please _do_not_ run this on all the files +in the directory, just your own. + + + +Declaration Order +----------------- + +Here is the preferred order in which code should be laid out in a file: + + - commented program name and one-line description + - commented author name and email address(es) + - commented GPL boilerplate + - commented longer description / notes for the program (if needed) + - #includes of .h files with angle brackets (<>) around them + - #includes of .h files with quotes ("") around them + - #defines (if any, note the section below titled "Avoid the Preprocessor") + - const and global variables + - function declarations (if necessary) + - function implementations + + + +Whitespace and Formatting +------------------------- + +This is everybody's favorite flame topic so let's get it out of the way right +up front. + + +Tabs vs. Spaces in Line Indentation +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +The preference in Busybox is to indent lines with tabs. Do not indent lines +with spaces and do not indents lines using a mixture of tabs and spaces. (The +indentation style in the Apache and Postfix source does this sort of thing: +\s\s\s\sif (expr) {\n\tstmt; --ick.) The only exception to this rule is +multi-line comments that use an asterisk at the beginning of each line, i.e.: + + \t/* + \t * This is a block comment. + \t * Note that it has multiple lines + \t * and that the beginning of each line has a tab plus a space + \t * except for the opening '/*' line where the slash + \t * is used instead of a space. + \t */ + +Furthermore, The preference is that tabs be set to display at four spaces +wide, but the beauty of using only tabs (and not spaces) at the beginning of +lines is that you can set your editor to display tabs at *whatever* number of +spaces is desired and the code will still look fine. + + +Operator Spacing +~~~~~~~~~~~~~~~~ + +Put spaces between terms and operators. Example: + + Don't do this: + + for(i=0;i 0) + + +Bracket Spacing +~~~~~~~~~~~~~~~ + +If an opening bracket starts a function, it should be on the +next line with no spacing before it. However, if a bracket follows an opening +control block, it should be on the same line with a single space (not a tab) +between it and the opening control block statement. Examples: + + Don't do this: + + while (!done) + { + + do + { + + Don't do this either: + + while (!done){ + + do{ + + And for heaven's sake, don't do this: + + while (!done) + { + + do + { + + Do this instead: + + while (!done) { + + do { + +If you have long logic statements that need to be wrapped, then uncuddling +the bracket to improve readability is allowed. Generally, this style makes +it easier for reader to notice that 2nd and following lines are still +inside 'if': + + if (some_really_long_checks && some_other_really_long_checks + && some_more_really_long_checks + && even_more_of_long_checks + ) { + do_foo_now; + +Spacing around Parentheses +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Put a space between C keywords and left parens, but not between function names +and the left paren that starts it's parameter list (whether it is being +declared or called). Examples: + + Don't do this: + + while(foo) { + for(i = 0; i < n; i++) { + + Do this instead: + + while (foo) { + for (i = 0; i < n; i++) { + + But do functions like this: + + static int my_func(int foo, char bar) + ... + baz = my_func(1, 2); + +Also, don't put a space between the left paren and the first term, nor between +the last arg and the right paren. + + Don't do this: + + if ( x < 1 ) + strcmp( thisstr, thatstr ) + + Do this instead: + + if (x < 1) + strcmp(thisstr, thatstr) + + +Cuddled Elses +~~~~~~~~~~~~~ + +Also, please "cuddle" your else statements by putting the else keyword on the +same line after the right bracket that closes an 'if' statement. + + Don't do this: + + if (foo) { + stmt; + } + else { + stmt; + } + + Do this instead: + + if (foo) { + stmt; + } else { + stmt; + } + +The exception to this rule is if you want to include a comment before the else +block. Example: + + if (foo) { + stmts... + } + /* otherwise, we're just kidding ourselves, so re-frob the input */ + else { + other_stmts... + } + + +Labels +~~~~~~ + +Labels should start at the beginning of the line, not indented to the block +level (because they do not "belong" to block scope, only to whole function). + + if (foo) { + stmt; + label: + stmt2; + stmt; + } + +(Putting label at position 1 prevents diff -p from confusing label for function +name, but it's not a policy of busybox project to enforce such a minor detail). + + + +Variable and Function Names +--------------------------- + +Use the K&R style with names in all lower-case and underscores occasionally +used to separate words (e.g., "variable_name" and "numchars" are both +acceptable). Using underscores makes variable and function names more readable +because it looks like whitespace; using lower-case is easy on the eyes. + + Frowned upon: + + hitList + TotalChars + szFileName + pf_Nfol_TriState + + Preferred: + + hit_list + total_chars + file_name + sensible_name + +Exceptions: + + - Enums, macros, and constant variables are occasionally written in all + upper-case with words optionally separated by underscores (i.e. FIFO_TYPE, + ISBLKDEV()). + + - Nobody is going to get mad at you for using 'pvar' as the name of a + variable that is a pointer to 'var'. + + +Converting to K&R +~~~~~~~~~~~~~~~~~ + +The Busybox codebase is very much a mixture of code gathered from a variety of +sources. This explains why the current codebase contains such a hodge-podge of +different naming styles (Java, Pascal, K&R, just-plain-weird, etc.). The K&R +guideline explained above should therefore be used on new files that are added +to the repository. Furthermore, the maintainer of an existing file that uses +alternate naming conventions should, at his own convenience, convert those +names over to K&R style. Converting variable names is a very low priority +task. + +If you want to do a search-and-replace of a single variable name in different +files, you can do the following in the busybox directory: + + $ perl -pi -e 's/\bOldVar\b/new_var/g' *.[ch] + +If you want to convert all the non-K&R vars in your file all at once, follow +these steps: + + - In the busybox directory type 'examples/mk2knr.pl files-to-convert'. This + does not do the actual conversion, rather, it generates a script called + 'convertme.pl' that shows what will be converted, giving you a chance to + review the changes beforehand. + + - Review the 'convertme.pl' script that gets generated in the busybox + directory and remove / edit any of the substitutions in there. Please + especially check for false positives (strings that should not be + converted). + + - Type './convertme.pl same-files-as-before' to perform the actual + conversion. + + - Compile and see if everything still works. + +Please be aware of changes that have cascading effects into other files. For +example, if you're changing the name of something in, say utility.c, you +should probably run 'examples/mk2knr.pl utility.c' at first, but when you run +the 'convertme.pl' script you should run it on _all_ files like so: +'./convertme.pl *.[ch]'. + + + +Avoid The Preprocessor +---------------------- + +At best, the preprocessor is a necessary evil, helping us account for platform +and architecture differences. Using the preprocessor unnecessarily is just +plain evil. + + +The Folly of #define +~~~~~~~~~~~~~~~~~~~~ + +Use 'const var' for declaring constants. + + Don't do this: + + #define CONST 80 + + Do this instead, when the variable is in a header file and will be used in + several source files: + + enum { CONST = 80 }; + +Although enum may look ugly to some people, it is better for code size. +With "const int" compiler may fail to optimize it out and will reserve +a real storage in rodata for it! (Hopefully, newer gcc will get better +at it...). With "define", you have slight risk of polluting namespace +(#define doesn't allow you to redefine the name in the inner scopes), +and complex "define" are evaluated each time they used, not once +at declarations like enums. Also, the preprocessor does _no_ type checking +whatsoever, making it much more error prone. + + +The Folly of Macros +~~~~~~~~~~~~~~~~~~~ + +Use 'static inline' instead of a macro. + + Don't do this: + + #define mini_func(param1, param2) (param1 << param2) + + Do this instead: + + static inline int mini_func(int param1, param2) + { + return (param1 << param2); + } + +Static inline functions are greatly preferred over macros. They provide type +safety, have no length limitations, no formatting limitations, have an actual +return value, and under gcc they are as cheap as macros. Besides, really long +macros with backslashes at the end of each line are ugly as sin. + + +The Folly of #ifdef +~~~~~~~~~~~~~~~~~~~ + +Code cluttered with ifdefs is difficult to read and maintain. Don't do it. +Instead, put your ifdefs at the top of your .c file (or in a header), and +conditionally define 'static inline' functions, (or *maybe* macros), which are +used in the code. + + Don't do this: + + ret = my_func(bar, baz); + if (!ret) + return -1; + #ifdef CONFIG_FEATURE_FUNKY + maybe_do_funky_stuff(bar, baz); + #endif + + Do this instead: + + (in .h header file) + + #if ENABLE_FEATURE_FUNKY + static inline void maybe_do_funky_stuff(int bar, int baz) + { + /* lotsa code in here */ + } + #else + static inline void maybe_do_funky_stuff(int bar, int baz) {} + #endif + + (in the .c source file) + + ret = my_func(bar, baz); + if (!ret) + return -1; + maybe_do_funky_stuff(bar, baz); + +The great thing about this approach is that the compiler will optimize away +the "no-op" case (the empty function) when the feature is turned off. + +Note also the use of the word 'maybe' in the function name to indicate +conditional execution. + + + +Notes on Strings +---------------- + +Strings in C can get a little thorny. Here's some guidelines for dealing with +strings in Busybox. (There is surely more that could be added to this +section.) + + +String Files +~~~~~~~~~~~~ + +Put all help/usage messages in usage.c. Put other strings in messages.c. +Putting these strings into their own file is a calculated decision designed to +confine spelling errors to a single place and aid internationalization +efforts, if needed. (Side Note: we might want to use a single file - maybe +called 'strings.c' - instead of two, food for thought). + + +Testing String Equivalence +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +There's a right way and a wrong way to test for string equivalence with +strcmp(): + + The wrong way: + + if (!strcmp(string, "foo")) { + ... + + The right way: + + if (strcmp(string, "foo") == 0){ + ... + +The use of the "equals" (==) operator in the latter example makes it much more +obvious that you are testing for equivalence. The former example with the +"not" (!) operator makes it look like you are testing for an error. In a more +perfect world, we would have a streq() function in the string library, but +that ain't the world we're living in. + + +Avoid Dangerous String Functions +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Unfortunately, the way C handles strings makes them prone to overruns when +certain library functions are (mis)used. The following table offers a summary +of some of the more notorious troublemakers: + +function overflows preferred +------------------------------------------------- +strcpy dest string safe_strncpy +strncpy may fail to 0-terminate dst safe_strncpy +strcat dest string strncat +gets string it gets fgets +getwd buf string getcwd +[v]sprintf str buffer [v]snprintf +realpath path buffer use with pathconf +[vf]scanf its arguments just avoid it + + +The above is by no means a complete list. Be careful out there. + + + +Avoid Big Static Buffers +------------------------ + +First, some background to put this discussion in context: static buffers look +like this in code: + + /* in a .c file outside any functions */ + static char buffer[BUFSIZ]; /* happily used by any function in this file, + but ick! big! */ + +The problem with these is that any time any busybox app is run, you pay a +memory penalty for this buffer, even if the applet that uses said buffer is +not run. This can be fixed, thusly: + + static char *buffer; + ... + other_func() + { + strcpy(buffer, lotsa_chars); /* happily uses global *buffer */ + ... + foo_main() + { + buffer = xmalloc(sizeof(char)*BUFSIZ); + ... + +However, this approach trades bss segment for text segment. Rather than +mallocing the buffers (and thus growing the text size), buffers can be +declared on the stack in the *_main() function and made available globally by +assigning them to a global pointer thusly: + + static char *pbuffer; + ... + other_func() + { + strcpy(pbuffer, lotsa_chars); /* happily uses global *pbuffer */ + ... + foo_main() + { + char *buffer[BUFSIZ]; /* declared locally, on stack */ + pbuffer = buffer; /* but available globally */ + ... + +This last approach has some advantages (low code size, space not used until +it's needed), but can be a problem in some low resource machines that have +very limited stack space (e.g., uCLinux). + +A macro is declared in busybox.h that implements compile-time selection +between xmalloc() and stack creation, so you can code the line in question as + + RESERVE_CONFIG_BUFFER(buffer, BUFSIZ); + +and the right thing will happen, based on your configuration. + +Another relatively new trick of similar nature is explained +in keep_data_small.txt. + + + +Miscellaneous Coding Guidelines +------------------------------- + +The following are important items that don't fit into any of the above +sections. + + +Model Busybox Applets After GNU Counterparts +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +When in doubt about the proper behavior of a Busybox program (output, +formatting, options, etc.), model it after the equivalent GNU program. +Doesn't matter how that program behaves on some other flavor of *NIX; doesn't +matter what the POSIX standard says or doesn't say, just model Busybox +programs after their GNU counterparts and it will make life easier on (nearly) +everyone. + +The only time we deviate from emulating the GNU behavior is when: + + - We are deliberately not supporting a feature (such as a command line + switch) + - Emulating the GNU behavior is prohibitively expensive (lots more code + would be required, lots more memory would be used, etc.) + - The difference is minor or cosmetic + +A note on the 'cosmetic' case: output differences might be considered +cosmetic, but if the output is significant enough to break other scripts that +use the output, it should really be fixed. + + +Scope +~~~~~ + +If a const variable is used only in a single source file, put it in the source +file and not in a header file. Likewise, if a const variable is used in only +one function, do not make it global to the file. Instead, declare it inside +the function body. Bottom line: Make a conscious effort to limit declarations +to the smallest scope possible. + +Inside applet files, all functions should be declared static so as to keep the +global name space clean. The only exception to this rule is the "applet_main" +function which must be declared extern. + +If you write a function that performs a task that could be useful outside the +immediate file, turn it into a general-purpose function with no ties to any +applet and put it in the utility.c file instead. + + +Brackets Are Your Friends +~~~~~~~~~~~~~~~~~~~~~~~~~ + +Please use brackets on all if and else statements, even if it is only one +line. Example: + + Don't do this: + + if (foo) + stmt1; + stmt2 + stmt3; + + Do this instead: + + if (foo) { + stmt1; + } + stmt2 + stmt3; + +The "bracketless" approach is error prone because someday you might add a line +like this: + + if (foo) + stmt1; + new_line(); + stmt2; + stmt3; + +And the resulting behavior of your program would totally bewilder you. (Don't +laugh, it happens to us all.) Remember folks, this is C, not Python. + + +Function Declarations +~~~~~~~~~~~~~~~~~~~~~ + +Do not use old-style function declarations that declare variable types between +the parameter list and opening bracket. Example: + + Don't do this: + + int foo(parm1, parm2) + char parm1; + float parm2; + { + .... + + Do this instead: + + int foo(char parm1, float parm2) + { + .... + +The only time you would ever need to use the old declaration syntax is to +support ancient, antediluvian compilers. To our good fortune, we have access +to more modern compilers and the old declaration syntax is neither necessary +nor desired. + + +Emphasizing Logical Blocks +~~~~~~~~~~~~~~~~~~~~~~~~~~ + +Organization and readability are improved by putting extra newlines around +blocks of code that perform a single task. These are typically blocks that +begin with a C keyword, but not always. + +Furthermore, you should put a single comment (not necessarily one line, just +one comment) before the block, rather than commenting each and every line. +There is an optimal amount of commenting that a program can have; you can +comment too much as well as too little. + +A picture is really worth a thousand words here, the following example +illustrates how to emphasize logical blocks: + + while (line = xmalloc_fgets(fp)) { + + /* eat the newline, if any */ + chomp(line); + + /* ignore blank lines */ + if (strlen(file_to_act_on) == 0) { + continue; + } + + /* if the search string is in this line, print it, + * unless we were told to be quiet */ + if (strstr(line, search) && !be_quiet) { + puts(line); + } + + /* clean up */ + free(line); + } + + +Processing Options with getopt +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +If your applet needs to process command-line switches, please use getopt32() to +do so. Numerous examples can be seen in many of the existing applets, but +basically it boils down to two things: at the top of the .c file, have this +line in the midst of your #includes, if you need to parse long options: + + #include + +Then have long options defined: + + static const char _longopts[] ALIGN1 = + "list\0" No_argument "t" + "extract\0" No_argument "x" + ; + +And a code block similar to the following near the top of your applet_main() +routine: + + char *str_b; + + opt_complementary = "cryptic_string"; + applet_long_options = _longopts; /* if you have them */ + opt = getopt32(argc, argv, "ab:c", &str_b); + if (opt & 1) { + handle_option_a(); + } + if (opt & 2) { + handle_option_b(str_b); + } + if (opt & 4) { + handle_option_c(); + } + +If your applet takes no options (such as 'init'), there should be a line +somewhere in the file reads: + + /* no options, no getopt */ + +That way, when people go grepping to see which applets need to be converted to +use getopt, they won't get false positives. + +For more info and examples, examine getopt32.c, tar.c, wget.c etc. diff --git a/busybox-1_37_0/docs/syslog.conf.txt b/busybox-1_37_0/docs/syslog.conf.txt new file mode 100644 index 000000000..6d9c4a173 --- /dev/null +++ b/busybox-1_37_0/docs/syslog.conf.txt @@ -0,0 +1,28 @@ +If syslogd applet compiled with FEATURE_SYSLOGD_CFG=y, then it supports restricted syslog.conf. +The config resembles rsyslog.conf in RULES part: + +LINE = DELIM [RULE | COMMENT] +COMMENT = #.* +DELIM = SPACE TAB +RULE = SELECTOR [;SELECTOR]* DELIM* ACTION DELIM* +SELECTOR = FACILITY [,FACILITY]* .[[!]=] PRIORITY +FACILITY = * | kern | user ... (see syslog.h) +PRIORITY = * | emerg | alert ... (see syslog.h) +ACTION = FILE + +"mark" facility is NOT supported. +"none" priority is supported. +In FACILITY and PRIORITY "*" stands for "any". +FILE is a regular file or tty device. + +Here is an example: + +#syslog.conf +kern,user.* /var/log/messages #all messages of kern and user facilities +kern.!err /var/log/critical #all messages of kern facility with priorities lower than err (warn, notice ...) +*.*;auth,authpriv.none /var/log/noauth #all messages except ones with auth and authpriv facilities +kern,user.*;kern.!=notice;*.err;syslog.none /var/log/OMG #some whicked rule just as an example =) +*.* /dev/null #this prevents from logging to default log file (-O FILE or /var/log/messages) + +Even in the case of match with some rule another rules will be tried too. +If there was no match with any of the rules, logging to default log file or shared memory will be performed. diff --git a/busybox-1_37_0/docs/tar_pax.txt b/busybox-1_37_0/docs/tar_pax.txt new file mode 100644 index 000000000..e56c27b16 --- /dev/null +++ b/busybox-1_37_0/docs/tar_pax.txt @@ -0,0 +1,239 @@ +'pax headers' is POSIX 2003 (iirc) addition designed to fix +tar format limitations - older tar format has fixed fields +for everything (filename, uid, filesize etc) which can overflow. + +pax Header Block + +The pax header block shall be identical to the ustar header block +described in ustar Interchange Format, except that two additional +typeflag values are defined: + +x + Represents extended header records for the following file in +the archive (which shall have its own ustar header block). + +g + Represents global extended header records for the following +files in the archive. Each value shall affect all subsequent files +that do not override that value in their own extended header +record and until another global extended header record is reached +that provides another value for the same field. The typeflag g +global headers should not be used with interchange media that +could suffer partial data loss in transporting the archive. + +For both of these types, the size field shall be the size of the +extended header records in octets. The other fields in the header +block are not meaningful to this version of the pax utility. +However, if this archive is read by a pax utility conforming to +the ISO POSIX-2:1993 standard, the header block fields are used to +create a regular file that contains the extended header records as +data. Therefore, header block field values should be selected to +provide reasonable file access to this regular file. + +A further difference from the ustar header block is that data +blocks for files of typeflag 1 (the digit one) (hard link) may be +included, which means that the size field may be greater than +zero. + +pax Extended Header + +An extended header shall consist of one or more records, each +constructed as follows: + +"%d %s=%s\n", , , + +The field shall be the decimal length of the extended +header record in octets, including length string itself and the +trailing . + +[skip] + +atime + The file access time for the following file(s), equivalent to +the value of the st_atime member of the stat structure for a file, +as described by the stat() function. The access time shall be +restored if the process has the appropriate privilege required to +do so. The format of the shall be as described in pax +Extended Header File Times. + +charset + The name of the character set used to encode the data in the +following file(s). + + The encoding is included in an extended header for information +only; when pax is used as described in IEEE Std 1003.1-2001, it +shall not translate the file data into any other encoding. The +BINARY entry indicates unencoded binary data. + + When used in write or copy mode, it is implementation-defined +whether pax includes a charset extended header record for a file. + +comment + A series of characters used as a comment. All characters in +the field shall be ignored by pax. + +gid + The group ID of the group that owns the file, expressed as a +decimal number using digits from the ISO/IEC 646:1991 standard. +This record shall override the gid field in the following header +block(s). When used in write or copy mode, pax shall include a gid +extended header record for each file whose group ID is greater +than 2097151 (octal 7777777). + +gname + The group of the file(s), formatted as a group name in the +group database. This record shall override the gid and gname +fields in the following header block(s), and any gid extended +header record. When used in read, copy, or list mode, pax shall +translate the name from the UTF-8 encoding in the header record to +the character set appropriate for the group database on the +receiving system. If any of the UTF-8 characters cannot be +translated, and if the -o invalid= UTF-8 option is not specified, +the results are implementation-defined. When used in write or copy +mode, pax shall include a gname extended header record for each +file whose group name cannot be represented entirely with the +letters and digits of the portable character set. + +linkpath + The pathname of a link being created to another file, of any +type, previously archived. This record shall override the linkname +field in the following ustar header block(s). The following ustar +header block shall determine the type of link created. If typeflag +of the following header block is 1, it shall be a hard link. If +typeflag is 2, it shall be a symbolic link and the linkpath value +shall be the contents of the symbolic link. The pax utility shall +translate the name of the link (contents of the symbolic link) +from the UTF-8 encoding to the character set appropriate for the +local file system. When used in write or copy mode, pax shall +include a linkpath extended header record for each link whose +pathname cannot be represented entirely with the members of the +portable character set other than NUL. + +mtime + The file modification time of the following file(s), +equivalent to the value of the st_mtime member of the stat +structure for a file, as described in the stat() function. This +record shall override the mtime field in the following header +block(s). The modification time shall be restored if the process +has the appropriate privilege required to do so. The format of the + shall be as described in pax Extended Header File Times. + +path + The pathname of the following file(s). This record shall +override the name and prefix fields in the following header +block(s). The pax utility shall translate the pathname of the file +from the UTF-8 encoding to the character set appropriate for the +local file system. + + When used in write or copy mode, pax shall include a path +extended header record for each file whose pathname cannot be +represented entirely with the members of the portable character +set other than NUL. + +realtime.any + The keywords prefixed by "realtime." are reserved for future +standardization. + +security.any + The keywords prefixed by "security." are reserved for future +standardization. + +size + The size of the file in octets, expressed as a decimal number +using digits from the ISO/IEC 646:1991 standard. This record shall +override the size field in the following header block(s). When +used in write or copy mode, pax shall include a size extended +header record for each file with a size value greater than +8589934591 (octal 77777777777). + +uid + The user ID of the file owner, expressed as a decimal number +using digits from the ISO/IEC 646:1991 standard. This record shall +override the uid field in the following header block(s). When used +in write or copy mode, pax shall include a uid extended header +record for each file whose owner ID is greater than 2097151 (octal +7777777). + +uname + The owner of the following file(s), formatted as a user name +in the user database. This record shall override the uid and uname +fields in the following header block(s), and any uid extended +header record. When used in read, copy, or list mode, pax shall +translate the name from the UTF-8 encoding in the header record to +the character set appropriate for the user database on the +receiving system. If any of the UTF-8 characters cannot be +translated, and if the -o invalid= UTF-8 option is not specified, +the results are implementation-defined. When used in write or copy +mode, pax shall include a uname extended header record for each +file whose user name cannot be represented entirely with the +letters and digits of the portable character set. + +If the field is zero length, it shall delete any header +block field, previously entered extended header value, or global +extended header value of the same name. + +If a keyword in an extended header record (or in a -o +option-argument) overrides or deletes a corresponding field in the +ustar header block, pax shall ignore the contents of that header +block field. + +Unlike the ustar header block fields, NULs shall not delimit +s; all characters within the field shall be +considered data for the field. None of the length limitations of +the ustar header block fields in ustar Header Block shall apply to +the extended header records. + +pax Extended Header File Times + +Time records shall be formatted as a decimal representation of the +time in seconds since the Epoch. If a period ( '.' ) decimal point +character is present, the digits to the right of the point shall +represent the units of a subsecond timing granularity. In read or +copy mode, the pax utility shall truncate the time of a file to +the greatest value that is not greater than the input header +file time. In write or copy mode, the pax utility shall output a +time exactly if it can be represented exactly as a decimal number, +and otherwise shall generate only enough digits so that the same +time shall be recovered if the file is extracted on a system whose +underlying implementation supports the same time granularity. + +Example from Linux kernel archive tarball: + +00000000 70 61 78 5f 67 6c 6f 62 61 6c 5f 68 65 61 64 65 |pax_global_heade| +00000010 72 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |r...............| +00000020 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000030 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000040 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000050 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000060 00 00 00 00 30 30 30 30 36 36 36 00 30 30 30 30 |....0000666.0000| +00000070 30 30 30 00 30 30 30 30 30 30 30 00 30 30 30 30 |000.0000000.0000| +00000080 30 30 30 30 30 36 34 00 30 30 30 30 30 30 30 30 |0000064.00000000| +00000090 30 30 30 00 30 30 31 34 30 35 33 00 67 00 00 00 |000.0014053.g...| +000000a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000000b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000000c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000000d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000000e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000000f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000100 00 75 73 74 61 72 00 30 30 67 69 74 00 00 00 00 |.ustar.00git....| +00000110 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000120 00 00 00 00 00 00 00 00 00 67 69 74 00 00 00 00 |.........git....| +00000130 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000140 00 00 00 00 00 00 00 00 00 30 30 30 30 30 30 30 |.........0000000| +00000150 00 30 30 30 30 30 30 30 00 00 00 00 00 00 00 00 |.0000000........| +00000160 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000170 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000180 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000190 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000001a0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000001b0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000001c0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000001d0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000001e0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +000001f0 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +00000200 35 32 20 63 6f 6d 6d 65 6e 74 3d 62 31 30 35 30 |52 comment=b1050| +00000210 32 62 32 32 61 31 32 30 39 64 36 62 34 37 36 33 |2b22a1209d6b4763| +00000220 39 64 38 38 62 38 31 32 62 32 31 66 62 35 39 34 |9d88b812b21fb594| +00000230 39 65 34 0a 00 00 00 00 00 00 00 00 00 00 00 00 |9e4.............| +00000240 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| +... diff --git a/busybox-1_37_0/docs/tcp.txt b/busybox-1_37_0/docs/tcp.txt new file mode 100644 index 000000000..2000f3110 --- /dev/null +++ b/busybox-1_37_0/docs/tcp.txt @@ -0,0 +1,93 @@ + Some less-widely known details of TCP connections. + + Properly closing the connection. + +After this code sequence: + + sock = socket(AF_INET, SOCK_STREAM, 0); + connect(sock, &remote, sizeof(remote)); + write(sock, buffer, 1000000); + +a large block of data is only buffered by kernel, it can't be sent all at once. +What will happen if we close the socket? + +"A host MAY implement a 'half-duplex' TCP close sequence, so that + an application that has called close() cannot continue to read + data from the connection. If such a host issues a close() call + while received data is still pending in TCP, or if new data is + received after close() is called, its TCP SHOULD send a RST + to show that data was lost." + +IOW: if we just close(sock) now, kernel can reset the TCP connection +(send RST packet). + +This is problematic for two reasons: it discards some not-yet sent +data, and it may be reported as error, not EOF, on peer's side. + +What can be done about it? + +Solution #1: block until sending is done: + + /* When enabled, a close(2) or shutdown(2) will not return until + * all queued messages for the socket have been successfully sent + * or the linger timeout has been reached. + */ + struct linger { + int l_onoff; /* linger active */ + int l_linger; /* how many seconds to linger for */ + } linger; + linger.l_onoff = 1; + linger.l_linger = SOME_NUM; + setsockopt(sock, SOL_SOCKET, SO_LINGER, &linger, sizeof(linger)); + close(sock); + +Solution #2: tell kernel that you are done sending. +This makes kernel send FIN after all data is written: + + shutdown(sock, SHUT_WR); + close(sock); + +However, experiments on Linux 3.9.4 show that kernel can return from +shutdown() and from close() before all data is sent, +and if peer sends any data to us after this, kernel still responds with +RST before all our data is sent. + +In practice the protocol in use often does not allow peer to send +such data to us, in which case this solution is acceptable. + +Solution #3: if you know that peer is going to close its end after it sees +our FIN (as EOF), it might be a good idea to perform a read after shutdown(). +When read finishes with 0-sized result, we conclude that peer received all +the data, saw EOF, and closed its end. + +However, this incurs small performance penalty (we run for a longer time) +and requires safeguards (nonblocking reads, timeouts etc) against +malicious peers which don't close the connection. + +Solutions #1 and #2 can be combined: + + /* ...set up struct linger... then: */ + setsockopt(sock, SOL_SOCKET, SO_LINGER, &linger, sizeof(linger)); + shutdown(sock, SHUT_WR); + /* At this point, kernel sent FIN packet, not RST, to the peer, */ + /* even if there is buffered read data from the peer. */ + close(sock); + + Defeating Nagle. + +Method #1: manually control whether partial sends are allowed: + +This prevents partially filled packets being sent: + + int state = 1; + setsockopt(fd, IPPROTO_TCP, TCP_CORK, &state, sizeof(state)); + +and this forces last, partially filled packet (if any) to be sent: + + int state = 0; + setsockopt(fd, IPPROTO_TCP, TCP_CORK, &state, sizeof(state)); + +Method #2: make any write to immediately send data, even if it's partial: + + int state = 1; + setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &state, sizeof(state)); diff --git a/busybox-1_37_0/docs/unicode.txt b/busybox-1_37_0/docs/unicode.txt new file mode 100644 index 000000000..9c159ce2a --- /dev/null +++ b/busybox-1_37_0/docs/unicode.txt @@ -0,0 +1,71 @@ + Unicode support in busybox + +There are several scenarios where we need to handle unicode +correctly. + + Shell input + +We want to correctly handle input of unicode characters. +There are several problems with it. Just handling input +as sequence of bytes would break any editing. This was fixed +and now lineedit operates on the array of wchar_t's. +But we also need to handle the following problematic moments: + +* It is unreasonable to expect that output device supports + _any_ unicode chars. Perhaps we need to avoid printing + those chars which are not supported by output device. + Examples: chars which are not present in the font, + chars which are not assigned in unicode, + combining chars (especially trying to combine bad pairs: + a_chinese_symbol + "combining grave accent" = ??!) + +* We need to account for the fact that unicode chars have + different widths: 0 for combining chars, 1 for usual, + 2 for ideograms (are there 3+ wide chars?). + +* Bidirectional handling. If user wants to echo a phrase + in Hebrew, he types: echo "srettel werbeH" + + Editors (vi, ed) + +This case is a bit similar to "shell input", but unlike shell, +editors may encounter many more unexpected unicode sequences +(try to load a random binary file...), and they need to preserve +them, unlike shell which can afford to drop bogus input. + + more, less + +Need to correctly display any input file. Ideally, with +ASCII/unicode/filtered_unicode option or keyboard switch. +Note: need to handle tabs and backspaces specially +(bksp is for manpage compat). + + cut, fold, watch + +May need ability to cut unicode string to specified number of wchars +and/or to specified screen width. Need to handle tabs specially. + + sed, awk, grep + +Handle unicode-aware regexp match + + ls (multi-column display) + +ls will fail to line up columnar output if it will not account +for character widths (and maybe filter out some of them, see +above). OTOH, non-columnar views (ls -1, ls -l, ls | car) +should NOT filter out bad unicode (but need to filter out +control chars (coreutils does that). Note that unlike more/less, +tabs and backspaces need not special handling. + + top, ps + +Need to perform filtering similar to ls. + + Filename display (in error messages and elsewhere) + +Need to perform filtering similar to ls. + + +TODO: write an email to Asmus Freytag (asmus@unicode.org), +author of http://unicode.org/reports/tr11/ diff --git a/busybox-1_37_0/docs/unicode_UTF-8-test.txt b/busybox-1_37_0/docs/unicode_UTF-8-test.txt new file mode 100644 index 0000000000000000000000000000000000000000..abd16f7253bf7254ad1ae04cb5bee8d8c47e407a GIT binary patch literal 20334 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 a&2b9W0wR0mw+p!$IoY3(SqK`l>;D0Y6_gYJ literal 0 HcmV?d00001 diff --git a/busybox-1_37_0/docs/unicode_full-bmp.txt b/busybox-1_37_0/docs/unicode_full-bmp.txt new file mode 100644 index 000000000..2aeaa1e2b --- /dev/null +++ b/busybox-1_37_0/docs/unicode_full-bmp.txt @@ -0,0 +1,2079 @@ + +Full BMP Test File +------------------ + +Markus Kuhn -- 2003-04-22 + +This file contains the UTF-8 sequences of all code positions in the +ISO 10646-1 Basic Multilingual Plane, except for the C0 and C1 control +character areas. This corresponds to all codes in the range U+0020 - +U+007E and U+00A0 - U+FFFF. [uniset +0000..ffff utf8-list] + + +Basic Latin (U+0000-U+007F): + + !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ +`abcdefghijklmnopqrstuvwxyz{|}~ + +Latin-1 Supplement (U+0080-U+00FF): + + ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÃÂÃÄÅÆÇÈÉÊËÌÃÃŽÃÃÑÒÓÔÕÖ×ØÙÚÛÜÃÞß +àáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ + +Latin Extended-A (U+0100-U+017F): + +Ä€ÄĂ㥹ĆćĈĉĊċČÄÄŽÄÄđĒēĔĕĖėĘęĚěĜÄĞğĠġĢģĤĥĦħĨĩĪīĬĭĮįİıIJijĴĵĶķĸĹĺĻļĽľĿ +Å€ÅłŃńŅņŇňʼnŊŋŌÅÅŽÅÅőŒœŔŕŖŗŘřŚśŜÅŞşŠšŢţŤťŦŧŨũŪūŬŭŮůŰűŲųŴŵŶŷŸŹźŻżŽžſ + +Latin Extended-B (U+0180-U+024F): + +Æ€ÆƂƃƄƅƆƇƈƉƊƋƌÆÆŽÆÆƑƒƓƔƕƖƗƘƙƚƛƜÆƞƟƠơƢƣƤƥƦƧƨƩƪƫƬƭƮƯưƱƲƳƴƵƶƷƸƹƺƻƼƽƾƿ +Ç€ÇǂǃDŽDždžLJLjljNJNjnjÇÇŽÇÇǑǒǓǔǕǖǗǘǙǚǛǜÇǞǟǠǡǢǣǤǥǦǧǨǩǪǫǬǭǮǯǰDZDzdzǴǵǶǷǸǹǺǻǼǽǾǿ +È€ÈȂȃȄȅȆȇȈȉȊȋȌÈÈŽÈÈȑȒȓȔȕȖȗȘșȚțȜÈȞȟȠȡȢȣȤȥȦȧȨȩȪȫȬȭȮȯȰȱȲȳȴȵȶȷȸȹȺȻȼȽȾȿ +É€ÉɂɃɄɅɆɇɈɉɊɋɌÉÉŽÉ + +IPA Extensions (U+0250-U+02AF): + +ÉɑɒɓɔɕɖɗɘəɚɛɜÉɞɟɠɡɢɣɤɥɦɧɨɩɪɫɬɭɮɯɰɱɲɳɴɵɶɷɸɹɺɻɼɽɾɿʀÊʂʃʄʅʆʇʈʉʊʋʌÊÊŽÊ +ÊʑʒʓʔʕʖʗʘʙʚʛʜÊʞʟʠʡʢʣʤʥʦʧʨʩʪʫʬʭʮʯ + +Spacing Modifier Letters (U+02B0-U+02FF): + +ʰʱʲʳʴʵʶʷʸʹʺʻʼʽʾʿˀË˂˃˄˅ˆˇˈˉˊˋˌËËŽËËˑ˒˓˔˕˖˗˘˙˚˛˜Ë˞˟ˠˡˢˣˤ˥˦˧˨˩˪˫ˬ˭ˮ˯ +˰˱˲˳˴˵˶˷˸˹˺˻˼˽˾˿ + +Combining Diacritical Marks (U+0300-U+036F): + +◌̀◌Ì◌̂◌̃◌̄◌̅◌̆◌̇◌̈◌̉◌̊◌̋◌̌◌Ì◌̎◌Ìâ—ŒÌ◌̑◌̒◌̓◌̔◌̕◌̖◌̗◌̘◌̙◌̚◌̛◌̜◌Ì◌̞◌̟◌̠◌̡◌̢◌̣◌̤◌̥◌̦◌̧◌̨◌̩◌̪◌̫◌̬◌̭◌̮◌̯◌̰◌̱◌̲◌̳◌̴◌̵◌̶◌̷◌̸◌̹◌̺◌̻◌̼◌̽◌̾◌̿ +◌̀◌Í◌͂◌̓◌̈́◌ͅ◌͆◌͇◌͈◌͉◌͊◌͋◌͌◌Í◌͎◌ÍÍ͓͔͕͖͙͚͑͒͗͛͘͜Í͟͞◌͠◌͡◌͢◌ͣ◌ͤ◌ͥ◌ͦ◌ͧ◌ͨ◌ͩ◌ͪ◌ͫ◌ͬ◌ͭ◌ͮ◌ͯ + +Greek and Coptic (U+0370-U+03FF): + +ͰͱͲͳʹ͵Ͷͷ͸͹ͺͻͼͽ;Ϳ΀Î΂΃΄΅Ά·ΈΉΊ΋ΌÎÎŽÎÎΑΒΓΔΕΖΗΘΙΚΛΜÎΞΟΠΡ΢ΣΤΥΦΧΨΩΪΫάέήί +ΰαβγδεζηθικλμνξοπÏςστυφχψωϊϋόÏÏŽÏÏϑϒϓϔϕϖϗϘϙϚϛϜÏϞϟϠϡϢϣϤϥϦϧϨϩϪϫϬϭϮϯ +ϰϱϲϳϴϵ϶ϷϸϹϺϻϼϽϾϿ + +Cyrillic (U+0400-U+04FF): + +ЀÐЂЃЄЅІЇЈЉЊЋЌÐÐŽÐÐБВГДЕЖЗИЙКЛМÐОПРСТУФХЦЧШЩЪЫЬЭЮЯабвгдежзийклмноп +Ñ€ÑтуфхцчшщъыьÑÑŽÑÑёђѓєѕіїјљњћќÑўџѠѡѢѣѤѥѦѧѨѩѪѫѬѭѮѯѰѱѲѳѴѵѶѷѸѹѺѻѼѽѾѿ +Ò€Ò҂◌҃◌҄◌҅◌҆҇ Òˆ Ò‰ÒŠÒ‹ÒŒÒÒŽÒÒÒ‘Ò’Ò“Ò”Ò•Ò–Ò—Ò˜Ò™ÒšÒ›ÒœÒÒžÒŸÒ Ò¡Ò¢Ò£Ò¤Ò¥Ò¦Ò§Ò¨Ò©ÒªÒ«Ò¬Ò­Ò®Ò¯Ò°Ò±Ò²Ò³Ò´ÒµÒ¶Ò·Ò¸Ò¹ÒºÒ»Ò¼Ò½Ò¾Ò¿ +Ó€ÓÓ‚ÓƒÓ„Ó…Ó†Ó‡ÓˆÓ‰ÓŠÓ‹ÓŒÓÓŽÓÓÓ‘Ó’Ó“Ó”Ó•Ó–Ó—Ó˜Ó™ÓšÓ›ÓœÓÓžÓŸÓ Ó¡Ó¢Ó£Ó¤Ó¥Ó¦Ó§Ó¨Ó©ÓªÓ«Ó¬Ó­Ó®Ó¯Ó°Ó±Ó²Ó³Ó´ÓµÓ¶Ó·Ó¸Ó¹ÓºÓ»Ó¼Ó½Ó¾Ó¿ + +Cyrillic Supplementary (U+0500-U+052F): + +Ô€ÔÔ‚ÔƒÔ„Ô…Ô†Ô‡ÔˆÔ‰ÔŠÔ‹ÔŒÔÔŽÔÔÔ‘Ô’Ô“Ô”Ô•Ô–Ô—Ô˜Ô™ÔšÔ›ÔœÔÔžÔŸÔ Ô¡Ô¢Ô£Ô¤Ô¥Ô¦Ô§Ô¨Ô©ÔªÔ«Ô¬Ô­Ô®Ô¯ + +Armenian (U+0530-U+058F): + +Ô°Ô±Ô²Ô³Ô´ÔµÔ¶Ô·Ô¸Ô¹ÔºÔ»Ô¼Ô½Ô¾Ô¿Õ€ÕÕ‚ÕƒÕ„Õ…Õ†Õ‡ÕˆÕ‰ÕŠÕ‹ÕŒÕÕŽÕÕÕ‘Õ’Õ“Õ”Õ•Õ–Õ—Õ˜Õ™ÕšÕ›ÕœÕÕžÕŸÕ Õ¡Õ¢Õ£Õ¤Õ¥Õ¦Õ§Õ¨Õ©ÕªÕ«Õ¬Õ­Õ®Õ¯ +Õ°Õ±Õ²Õ³Õ´ÕµÕ¶Õ·Õ¸Õ¹ÕºÕ»Õ¼Õ½Õ¾Õ¿Ö€ÖÖ‚ÖƒÖ„Ö…Ö†Ö‡ÖˆÖ‰ÖŠÖ‹ÖŒÖÖŽÖ + +Hebrew (U+0590-U+05FF): + +Ö◌֑◌֒◌֓◌֔◌֕◌֖◌֗◌֘◌֙◌֚◌֛◌֜◌Ö◌֞◌֟◌֠◌֢֡◌֣◌֤◌֥◌֦◌֧◌֨◌֩◌֪◌֫◌֬◌֭◌֮◌֯◌ְ◌ֱ◌ֲ◌ֳ◌ִ◌ֵ◌ֶ◌ַ◌ָ◌ֹֺ◌ֻ◌ּ◌ֽ־◌ֿ׀◌×◌ׂ׃◌ׅׄ׆ׇ׈׉׊׋׌××Ž× +×בגדהוזחטיךכל×מןנסעףפץצקרשת׫׬׭׮ׯװױײ׳״׵׶׷׸׹׺׻׼׽׾׿ + +Arabic (U+0600-U+06FF): + +Ø€Ø؂؃؄؅؆؇؈؉؊؋،ØØŽØØؘؙؚؑؒؓؔؕؖؗ؛؜Ø؞؟ؠءآأؤإئابةتثجحخدذرزسشصضطظعغػؼؽؾؿ +Ù€Ùقكلمنهوىي◌ً◌ٌ◌Ù◌َ◌Ùâ—ŒÙ◌ّ◌ْ◌ٓ◌ٔ◌ٕٖٜٗ٘ٙٚٛÙٟٞ٠١٢٣٤٥٦٧٨٩٪٫٬٭ٮٯ◌ٰٱٲٳٴٵٶٷٸٹٺٻټٽپٿ +Ú€ÚÚ‚ÚƒÚ„Ú…Ú†Ú‡ÚˆÚ‰ÚŠÚ‹ÚŒÚÚŽÚÚÚ‘Ú’Ú“Ú”Ú•Ú–Ú—Ú˜Ú™ÚšÚ›ÚœÚÚžÚŸÚ Ú¡Ú¢Ú£Ú¤Ú¥Ú¦Ú§Ú¨Ú©ÚªÚ«Ú¬Ú­Ú®Ú¯Ú°Ú±Ú²Ú³Ú´ÚµÚ¶Ú·Ú¸Ú¹ÚºÚ»Ú¼Ú½Ú¾Ú¿ +Û€ÛÛ‚ÛƒÛ„Û…Û†Û‡ÛˆÛ‰ÛŠÛ‹ÛŒÛÛŽÛÛÛ‘Û’Û“Û”Û•â—ŒÛ–â—ŒÛ—â—ŒÛ˜â—ŒÛ™â—ŒÛšâ—ŒÛ›â—ŒÛœÛ Ûžâ—ŒÛŸâ—ŒÛ â—ŒÛ¡â—ŒÛ¢â—ŒÛ£â—ŒÛ¤Û¥Û¦â—ŒÛ§â—ŒÛ¨Û©â—ŒÛªâ—ŒÛ«â—ŒÛ¬â—ŒÛ­Û®Û¯Û°Û±Û²Û³Û´ÛµÛ¶Û·Û¸Û¹ÛºÛ»Û¼Û½Û¾Û¿ + +Syriac (U+0700-U+074F): + +Ü€Ü܂܃܄܅܆܇܈܉܊܋܌ÜÜŽÜÜ◌ܑܒܓܔܕܖܗܘܙܚܛܜÜܞܟܠܡܢܣܤܥܦܧܨܩܪܫܬܭܮܯ◌ܰ◌ܱ◌ܲ◌ܳ◌ܴ◌ܵ◌ܶ◌ܷ◌ܸ◌ܹ◌ܺ◌ܻ◌ܼ◌ܽ◌ܾ◌ܿ +◌݀◌Ý◌݂◌݃◌݄◌݅◌݆◌݇◌݈◌݉◌݊݋݌ÝÝŽÝ + +Free block (U+0750-U+077F): + +ÝݑݒݓݔݕݖݗݘݙݚݛݜÝݞݟݠݡݢݣݤݥݦݧݨݩݪݫݬݭݮݯݰݱݲݳݴݵݶݷݸݹݺݻݼݽݾݿ + +Thaana (U+0780-U+07BF): + +Þ€ÞÞ‚ÞƒÞ„Þ…Þ†Þ‡ÞˆÞ‰ÞŠÞ‹ÞŒÞÞŽÞÞÞ‘Þ’Þ“Þ”Þ•Þ–Þ—Þ˜Þ™ÞšÞ›ÞœÞޞޟޠޡޢޣޤޥ◌ަ◌ާ◌ި◌ީ◌ު◌ޫ◌ެ◌ޭ◌ޮ◌ޯ◌ްޱ޲޳޴޵޶޷޸޹޺޻޼޽޾޿ + +Free block (U+07C0-U+08FF): + +߀ß߂߃߄߅߆߇߈߉ߊߋߌßߎßßߑߒߓߔߕߖߗߘߙߚߛߜßߞߟߠߡߢߣߤߥߦߧߨߩߪ߲߫߬߭߮߯߰߱߳ߴߵ߶߷߸߹ߺ߻߼߽߾߿ +à €à à ‚ࠃࠄࠅࠆࠇࠈࠉࠊࠋࠌà à Žà à à ‘ࠒࠓࠔࠕࠖࠗ࠘࠙ࠚࠛࠜà à žà Ÿà  à ¡à ¢à £à ¤à ¥à ¦à §à ¨à ©à ªà «à ¬à ­à ®à ¯à °à ±à ²à ³à ´à µà ¶à ·à ¸à ¹à ºà »à ¼à ½à ¾à ¿ +à¡€à¡à¡‚ࡃࡄࡅࡆࡇࡈࡉࡊࡋࡌà¡à¡Žà¡à¡à¡‘ࡒࡓࡔࡕࡖࡗࡘ࡙࡚࡛࡜à¡à¡žà¡Ÿà¡ à¡¡à¡¢à¡£à¡¤à¡¥à¡¦à¡§à¡¨à¡©à¡ªà¡«à¡¬à¡­à¡®à¡¯à¡°à¡±à¡²à¡³à¡´à¡µà¡¶à¡·à¡¸à¡¹à¡ºà¡»à¡¼à¡½à¡¾à¡¿ +ࢀà¢à¢‚ࢃࢄࢅࢆࢇ࢈ࢉࢊࢋࢌà¢à¢Žà¢à¢à¢‘࢒࢓࢔࢕࢖࢙࢚࢛ࢗ࢘࢜à¢à¢žà¢Ÿà¢ à¢¡à¢¢à¢£à¢¤à¢¥à¢¦à¢§à¢¨à¢©à¢ªà¢«à¢¬à¢­à¢®à¢¯à¢°à¢±à¢²à¢³à¢´à¢µà¢¶à¢·à¢¸à¢¹à¢ºà¢»à¢¼à¢½à¢¾à¢¿ +ࣀà£à£‚ࣃࣄࣅࣆࣇࣈࣉ࣊࣋࣌à£à£Žà£à£à£‘࣒࣓ࣔࣕࣖࣗࣘࣙࣚࣛࣜà£à£žà£Ÿà£ à£¡à£¢à££à£¤à£¥à£¦à£§à£¨à£©à£ªà£«à£¬à£­à£®à£¯à£°à£±à£²à£³à£´à£µà£¶à£·à£¸à£¹à£ºà£»à£¼à£½à£¾à£¿ + +Devanagari (U+0900-U+097F): + +ऀ◌à¤â—Œà¤‚ःऄअआइईउऊऋऌà¤à¤Žà¤à¤à¤‘ऒओऔकखगघङचछजà¤à¤žà¤Ÿà¤ à¤¡à¤¢à¤£à¤¤à¤¥à¤¦à¤§à¤¨à¤©à¤ªà¤«à¤¬à¤­à¤®à¤¯à¤°à¤±à¤²à¤³à¤´à¤µà¤¶à¤·à¤¸à¤¹à¤ºà¤»â—Œà¤¼à¤½à¤¾à¤¿ +ी◌à¥â—Œà¥‚◌ृ◌ॄ◌ॅ◌ॆ◌े◌ैॉॊोौ◌à¥à¥Žà¥à¥â—Œà¥‘◌॒◌॓◌॔ॕॖॗक़ख़ग़ज़ड़à¥à¥žà¥Ÿà¥ à¥¡â—Œà¥¢â—Œà¥£à¥¤à¥¥à¥¦à¥§à¥¨à¥©à¥ªà¥«à¥¬à¥­à¥®à¥¯à¥°à¥±à¥²à¥³à¥´à¥µà¥¶à¥·à¥¸à¥¹à¥ºà¥»à¥¼à¥½à¥¾à¥¿ + +Bengali (U+0980-U+09FF): + +ঀ◌à¦à¦‚ঃ঄অআইঈউঊঋঌà¦à¦Žà¦à¦à¦‘঒ওঔকখগঘঙচছজà¦à¦žà¦Ÿà¦ à¦¡à¦¢à¦£à¦¤à¦¥à¦¦à¦§à¦¨à¦©à¦ªà¦«à¦¬à¦­à¦®à¦¯à¦°à¦±à¦²à¦³à¦´à¦µà¦¶à¦·à¦¸à¦¹à¦ºà¦»â—Œà¦¼à¦½à¦¾à¦¿ +ী◌à§â—Œà§‚◌ৃ◌ৄ৅৆েৈ৉৊োৌ◌à§à§Žà§à§à§‘৒৓৔৕৖ৗ৘৙৚৛ড়à§à§žà§Ÿà§ à§¡â—Œà§¢â—Œà§£à§¤à§¥à§¦à§§à§¨à§©à§ªà§«à§¬à§­à§®à§¯à§°à§±à§²à§³à§´à§µà§¶à§·à§¸à§¹à§ºà§»à§¼à§½à§¾à§¿ + +Gurmukhi (U+0A00-U+0A7F): + +਀à¨â—Œà¨‚ਃ਄ਅਆਇਈਉਊ਋਌à¨à¨Žà¨à¨à¨‘਒ਓਔਕਖਗਘਙਚਛਜà¨à¨žà¨Ÿà¨ à¨¡à¨¢à¨£à¨¤à¨¥à¨¦à¨§à¨¨à¨©à¨ªà¨«à¨¬à¨­à¨®à¨¯à¨°à¨±à¨²à¨³à¨´à¨µà¨¶à¨·à¨¸à¨¹à¨ºà¨»â—Œà¨¼à¨½à¨¾à¨¿ +ੀ◌à©â—Œà©‚੃੄੅੆◌ੇ◌ੈ੉੊◌ੋ◌ੌ◌à©à©Žà©à©à©‘੒੓੔੕੖੗੘ਖ਼ਗ਼ਜ਼ੜà©à©žà©Ÿà© à©¡à©¢à©£à©¤à©¥à©¦à©§à©¨à©©à©ªà©«à©¬à©­à©®à©¯â—Œà©°â—Œà©±à©²à©³à©´à©µà©¶à©·à©¸à©¹à©ºà©»à©¼à©½à©¾à©¿ + +Gujarati (U+0A80-U+0AFF): + +઀◌àªâ—Œàª‚ઃ઄અઆઇઈઉઊઋઌàªàªŽàªàªàª‘઒ઓઔકખગઘઙચછજàªàªžàªŸàª àª¡àª¢àª£àª¤àª¥àª¦àª§àª¨àª©àªªàª«àª¬àª­àª®àª¯àª°àª±àª²àª³àª´àªµàª¶àª·àª¸àª¹àªºàª»â—Œàª¼àª½àª¾àª¿ +ી◌à«â—Œà«‚◌ૃ◌ૄ◌ૅ૆◌ે◌ૈૉ૊ોૌ◌à«à«Žà«à«à«‘૒૓૔૕૖૗૘૙૚૛૜à«à«žà«Ÿà« à«¡à«¢à«£à«¤à«¥à«¦à«§à«¨à«©à«ªà««à«¬à«­à«®à«¯à«°à«±à«²à«³à«´à«µà«¶à«·à«¸à«¹à«ºà«»à«¼à«½à«¾à«¿ + +Oriya (U+0B00-U+0B7F): + +଀◌à¬à¬‚ଃ଄ଅଆଇଈଉଊଋଌà¬à¬Žà¬à¬à¬‘଒ଓଔକଖଗଘଙଚଛଜà¬à¬žà¬Ÿà¬ à¬¡à¬¢à¬£à¬¤à¬¥à¬¦à¬§à¬¨à¬©à¬ªà¬«à¬¬à¬­à¬®à¬¯à¬°à¬±à¬²à¬³à¬´à¬µà¬¶à¬·à¬¸à¬¹à¬ºà¬»â—Œà¬¼à¬½à¬¾â—Œà¬¿ +ୀ◌à­â—Œà­‚◌ୃୄ୅୆େୈ୉୊ୋୌ◌à­à­Žà­à­à­‘୒୓୔୕◌ୖୗ୘୙୚୛ଡ଼à­à­žà­Ÿà­ à­¡à­¢à­£à­¤à­¥à­¦à­§à­¨à­©à­ªà­«à­¬à­­à­®à­¯à­°à­±à­²à­³à­´à­µà­¶à­·à­¸à­¹à­ºà­»à­¼à­½à­¾à­¿ + +Tamil (U+0B80-U+0BFF): + +஀à®â—Œà®‚ஃ஄அஆஇஈஉஊ஋஌à®à®Žà®à®à®‘ஒஓஔக஖஗஘ஙச஛ஜà®à®žà®Ÿà® à®¡à®¢à®£à®¤à®¥à®¦à®§à®¨à®©à®ªà®«à®¬à®­à®®à®¯à®°à®±à®²à®³à®´à®µà®¶à®·à®¸à®¹à®ºà®»à®¼à®½à®¾à®¿ +◌ீà¯à¯‚௃௄௅ெேை௉ொோௌ◌à¯à¯Žà¯à¯à¯‘௒௓௔௕௖ௗ௘௙௚௛௜à¯à¯žà¯Ÿà¯ à¯¡à¯¢à¯£à¯¤à¯¥à¯¦à¯§à¯¨à¯©à¯ªà¯«à¯¬à¯­à¯®à¯¯à¯°à¯±à¯²à¯³à¯´à¯µà¯¶à¯·à¯¸à¯¹à¯ºà¯»à¯¼à¯½à¯¾à¯¿ + +Telugu (U+0C00-U+0C7F): + +à°€à°à°‚ఃఄఅఆఇఈఉఊఋఌà°à°Žà°à°à°‘ఒఓఔకఖగఘఙచఛజà°à°žà°Ÿà° à°¡à°¢à°£à°¤à°¥à°¦à°§à°¨à°©à°ªà°«à°¬à°­à°®à°¯à°°à°±à°²à°³à°´à°µà°¶à°·à°¸à°¹à°ºà°»à°¼à°½â—Œà°¾â—Œà°¿ +◌ీà±à±‚ృౄ౅◌ె◌ే◌ై౉◌ొ◌ో◌ౌ◌à±à±Žà±à±à±‘౒౓౔◌ౕ◌ౖ౗ౘౙౚ౛౜à±à±žà±Ÿà± à±¡à±¢à±£à±¤à±¥à±¦à±§à±¨à±©à±ªà±«à±¬à±­à±®à±¯à±°à±±à±²à±³à±´à±µà±¶à±·à±¸à±¹à±ºà±»à±¼à±½à±¾à±¿ + +Kannada (U+0C80-U+0CFF): + +ಀà²à²‚ಃ಄ಅಆಇಈಉಊಋಌà²à²Žà²à²à²‘ಒಓಔಕಖಗಘಙಚಛಜà²à²žà²Ÿà² à²¡à²¢à²£à²¤à²¥à²¦à²§à²¨à²©à²ªà²«à²¬à²­à²®à²¯à²°à²±à²²à²³à²´à²µà²¶à²·à²¸à²¹à²ºà²»à²¼à²½à²¾â—Œà²¿ +à³€à³à³‚ೃೄ೅◌ೆೇೈ೉ೊೋ◌ೌ◌à³à³Žà³à³à³‘೒೓೔ೕೖ೗೘೙೚೛೜à³à³žà³Ÿà³ à³¡à³¢à³£à³¤à³¥à³¦à³§à³¨à³©à³ªà³«à³¬à³­à³®à³¯à³°à³±à³²à³³à³´à³µà³¶à³·à³¸à³¹à³ºà³»à³¼à³½à³¾à³¿ + +Malayalam (U+0D00-U+0D7F): + +à´€à´à´‚ഃഄഅആഇഈഉഊഋഌà´à´Žà´à´à´‘ഒഓഔകഖഗഘങചഛജà´à´žà´Ÿà´ à´¡à´¢à´£à´¤à´¥à´¦à´§à´¨à´©à´ªà´«à´¬à´­à´®à´¯à´°à´±à´²à´³à´´à´µà´¶à´·à´¸à´¹à´ºà´»à´¼à´½à´¾à´¿ +ീ◌àµâ—Œàµ‚◌ൃൄ൅െേൈ൉ൊോൌ◌àµàµŽàµàµàµ‘൒൓ൔൕൖൗ൘൙൚൛൜àµàµžàµŸàµ àµ¡àµ¢àµ£àµ¤àµ¥àµ¦àµ§àµ¨àµ©àµªàµ«àµ¬àµ­àµ®àµ¯àµ°àµ±àµ²àµ³àµ´àµµàµ¶àµ·àµ¸àµ¹àµºàµ»àµ¼àµ½àµ¾àµ¿ + +Sinhala (U+0D80-U+0DFF): + +඀à¶à¶‚ඃ඄අආඇඈඉඊඋඌà¶à¶Žà¶à¶à¶‘ඒඓඔඕඖ඗඘඙කඛගà¶à¶žà¶Ÿà¶ à¶¡à¶¢à¶£à¶¤à¶¥à¶¦à¶§à¶¨à¶©à¶ªà¶«à¶¬à¶­à¶®à¶¯à¶°à¶±à¶²à¶³à¶´à¶µà¶¶à¶·à¶¸à¶¹à¶ºà¶»à¶¼à¶½à¶¾à¶¿ +à·€à·à·‚සහළෆ෇෈෉◌්෋෌à·à·Žà·à·à·‘◌ි◌ී◌ු෕◌ූ෗ෘෙේෛොà·à·žà·Ÿà· à·¡à·¢à·£à·¤à·¥à·¦à·§à·¨à·©à·ªà·«à·¬à·­à·®à·¯à·°à·±à·²à·³à·´à·µà·¶à··à·¸à·¹à·ºà·»à·¼à·½à·¾à·¿ + +Thai (U+0E00-U+0E7F): + +฀à¸à¸‚ฃคฅฆงจฉชซฌà¸à¸Žà¸à¸à¸‘ฒณดตถทธนบปผà¸à¸žà¸Ÿà¸ à¸¡à¸¢à¸£à¸¤à¸¥à¸¦à¸§à¸¨à¸©à¸ªà¸«à¸¬à¸­à¸®à¸¯à¸°â—Œà¸±à¸²à¸³â—Œà¸´â—Œà¸µâ—Œà¸¶â—Œà¸·â—Œà¸¸â—Œà¸¹â—Œà¸ºà¸»à¸¼à¸½à¸¾à¸¿ +เà¹à¹‚ใไๅๆ◌็◌่◌้◌๊◌๋◌์◌à¹â—Œà¹Žà¹à¹à¹‘๒๓๔๕๖๗๘๙๚๛๜à¹à¹žà¹Ÿà¹ à¹¡à¹¢à¹£à¹¤à¹¥à¹¦à¹§à¹¨à¹©à¹ªà¹«à¹¬à¹­à¹®à¹¯à¹°à¹±à¹²à¹³à¹´à¹µà¹¶à¹·à¹¸à¹¹à¹ºà¹»à¹¼à¹½à¹¾à¹¿ + +Lao (U+0E80-U+0EFF): + +຀àºàº‚຃ຄ຅ຆງຈຉຊ຋ຌàºàºŽàºàºàº‘ຒຓດຕຖທຘນບປຜàºàºžàºŸàº àº¡àº¢àº£àº¤àº¥àº¦àº§àº¨àº©àºªàº«àº¬àº­àº®àº¯àº°â—Œàº±àº²àº³â—Œàº´â—Œàºµâ—Œàº¶â—Œàº·â—Œàº¸â—Œàº¹àººâ—Œàº»â—Œàº¼àº½àº¾àº¿ +ເà»à»‚ໃໄ໅ໆ໇◌່◌້◌໊◌໋◌໌◌à»à»Žà»à»à»‘໒໓໔໕໖໗໘໙໚໛ໜà»à»žà»Ÿà» à»¡à»¢à»£à»¤à»¥à»¦à»§à»¨à»©à»ªà»«à»¬à»­à»®à»¯à»°à»±à»²à»³à»´à»µà»¶à»·à»¸à»¹à»ºà»»à»¼à»½à»¾à»¿ + +Tibetan (U+0F00-U+0FFF): + +ༀà¼à¼‚༃༄༅༆༇༈༉༊་༌à¼à¼Žà¼à¼à¼‘༒༓༔༕༖༗◌༘◌༙༚༛༜à¼à¼žà¼Ÿà¼ à¼¡à¼¢à¼£à¼¤à¼¥à¼¦à¼§à¼¨à¼©à¼ªà¼«à¼¬à¼­à¼®à¼¯à¼°à¼±à¼²à¼³à¼´â—Œà¼µà¼¶â—Œà¼·à¼¸â—Œà¼¹à¼ºà¼»à¼¼à¼½à¼¾à¼¿ +ཀà½à½‚གྷངཅཆཇ཈ཉཊཋཌà½à½Žà½à½à½‘དྷནཔཕབབྷམཙཚཛཛྷà½à½žà½Ÿà½ à½¡à½¢à½£à½¤à½¥à½¦à½§à½¨à½©à½ªà½«à½¬à½­à½®à½¯à½°â—Œà½±â—Œà½²â—Œà½³â—Œà½´â—Œà½µâ—Œà½¶â—Œà½·â—Œà½¸â—Œà½¹â—Œà½ºâ—Œà½»â—Œà½¼â—Œà½½â—Œà½¾à½¿ +◌ྀ◌à¾â—Œà¾‚◌ྃ◌྄྅◌྆◌྇ྈྉྊྋྌà¾à¾Žà¾â—Œà¾â—Œà¾‘◌ྒ◌ྒྷ◌ྔ◌ྕ◌ྖ◌ྗ྘◌ྙ◌ྚ◌ྛ◌ྜ◌à¾â—Œà¾žâ—Œà¾Ÿâ—Œà¾ â—Œà¾¡â—Œà¾¢â—Œà¾£â—Œà¾¤â—Œà¾¥â—Œà¾¦â—Œà¾§â—Œà¾¨â—Œà¾©â—Œà¾ªâ—Œà¾«â—Œà¾¬â—Œà¾­â—Œà¾®â—Œà¾¯â—Œà¾°â—Œà¾±â—Œà¾²â—Œà¾³â—Œà¾´â—Œà¾µâ—Œà¾¶â—Œà¾·â—Œà¾¸â—Œà¾¹â—Œà¾ºâ—Œà¾»â—Œà¾¼à¾½à¾¾à¾¿ +à¿€à¿à¿‚࿃࿄࿅◌࿆࿇࿈࿉࿊࿋࿌à¿à¿Žà¿à¿à¿‘࿒࿓࿔࿕࿖࿗࿘࿙࿚࿛࿜à¿à¿žà¿Ÿà¿ à¿¡à¿¢à¿£à¿¤à¿¥à¿¦à¿§à¿¨à¿©à¿ªà¿«à¿¬à¿­à¿®à¿¯à¿°à¿±à¿²à¿³à¿´à¿µà¿¶à¿·à¿¸à¿¹à¿ºà¿»à¿¼à¿½à¿¾à¿¿ + +Myanmar (U+1000-U+109F): + +ကá€á€‚ဃငစဆဇဈဉညဋဌá€á€Žá€á€á€‘ဒဓနပဖဗဘမယရလá€á€žá€Ÿá€ á€¡á€¢á€£á€¤á€¥á€¦á€§á€¨á€©á€ªá€«á€¬â—Œá€­â—Œá€®â—Œá€¯â—Œá€°á€±â—Œá€²á€³á€´á€µâ—Œá€¶â—Œá€·á€¸â—Œá€¹á€ºá€»á€¼á€½á€¾á€¿ +á€áá‚áƒá„á…á†á‡áˆá‰áŠá‹áŒááŽááá‘á’á“á”á•á–á—â—Œá˜â—Œá™ášá›áœáážáŸá á¡á¢á£á¤á¥á¦á§á¨á©áªá«á¬á­á®á¯á°á±á²á³á´áµá¶á·á¸á¹áºá»á¼á½á¾á¿ +á‚€á‚ႂႃႄႅႆႇႈႉႊႋႌá‚á‚Žá‚á‚႑႒႓႔႕႖႗႘႙ႚႛႜá‚á‚žá‚Ÿ + +Georgian (U+10A0-U+10FF): + +ႠႡႢႣႤႥႦႧႨႩႪႫႬႭႮႯႰႱႲႳႴႵႶႷႸႹႺႻႼႽႾႿჀáƒáƒ‚ჃჄჅ჆Ⴧ჈჉჊჋჌áƒáƒŽáƒáƒáƒ‘გდევზთიკლმნáƒáƒžáƒŸ +რსტუფქღყშჩცძწჭხჯჰჱჲჳჴჵჶჷჸჹჺ჻ჼჽჾჿ + +Hangul Jamo (U+1100-U+11FF): + +á„€á„ᄂᄃᄄᄅᄆᄇᄈᄉᄊᄋᄌá„á„Žá„á„ᄑᄒᄓᄔᄕᄖᄗᄘᄙᄚᄛᄜá„á„žá„Ÿ +ᄠᄡᄢᄣᄤᄥᄦᄧᄨᄩᄪᄫᄬᄭᄮᄯᄰᄱᄲᄳᄴᄵᄶᄷᄸᄹᄺᄻᄼᄽᄾᄿ +á…€á…ᅂᅃᅄᅅᅆᅇᅈᅉᅊᅋᅌá…á…Žá…á…ᅑᅒᅓᅔᅕᅖᅗᅘᅙᅚᅛᅜá…á…žá…Ÿ +ᅠᅡᅢᅣᅤᅥᅦᅧᅨᅩᅪᅫᅬᅭᅮᅯᅰᅱᅲᅳᅴᅵᅶᅷᅸᅹᅺᅻᅼᅽᅾᅿᆀá†á†‚ᆃᆄᆅᆆᆇᆈᆉᆊᆋᆌá†á†Žá†á†á†‘ᆒᆓᆔᆕᆖᆗᆘᆙᆚᆛᆜá†á†žá†Ÿ +ᆠᆡᆢᆣᆤᆥᆦᆧᆨᆩᆪᆫᆬᆭᆮᆯᆰᆱᆲᆳᆴᆵᆶᆷᆸᆹᆺᆻᆼᆽᆾᆿᇀá‡á‡‚ᇃᇄᇅᇆᇇᇈᇉᇊᇋᇌá‡á‡Žá‡á‡á‡‘ᇒᇓᇔᇕᇖᇗᇘᇙᇚᇛᇜá‡á‡žá‡Ÿ +ᇠᇡᇢᇣᇤᇥᇦᇧᇨᇩᇪᇫᇬᇭᇮᇯᇰᇱᇲᇳᇴᇵᇶᇷᇸᇹᇺᇻᇼᇽᇾᇿ + +Ethiopic (U+1200-U+137F): + +ሀáˆáˆ‚ሃሄህሆሇለሉሊላሌáˆáˆŽáˆáˆáˆ‘ሒሓሔሕሖሗመሙሚማሜáˆáˆžáˆŸáˆ áˆ¡áˆ¢áˆ£áˆ¤áˆ¥áˆ¦áˆ§áˆ¨áˆ©áˆªáˆ«áˆ¬áˆ­áˆ®áˆ¯áˆ°áˆ±áˆ²áˆ³áˆ´áˆµáˆ¶áˆ·áˆ¸áˆ¹áˆºáˆ»áˆ¼áˆ½áˆ¾áˆ¿ +ቀá‰á‰‚ቃቄቅቆቇቈ቉ቊቋቌá‰á‰Žá‰á‰á‰‘ቒቓቔቕቖ቗ቘ቙ቚቛቜá‰á‰žá‰Ÿá‰ á‰¡á‰¢á‰£á‰¤á‰¥á‰¦á‰§á‰¨á‰©á‰ªá‰«á‰¬á‰­á‰®á‰¯á‰°á‰±á‰²á‰³á‰´á‰µá‰¶á‰·á‰¸á‰¹á‰ºá‰»á‰¼á‰½á‰¾á‰¿ +ኀáŠáŠ‚ኃኄኅኆኇኈ኉ኊኋኌáŠáŠŽáŠáŠáŠ‘ኒናኔንኖኗኘኙኚኛኜáŠáŠžáŠŸáŠ áŠ¡áŠ¢áŠ£áŠ¤áŠ¥áŠ¦áŠ§áŠ¨áŠ©áŠªáŠ«áŠ¬áŠ­áŠ®áŠ¯áŠ°áŠ±áŠ²áŠ³áŠ´áŠµáŠ¶áŠ·áŠ¸áŠ¹áŠºáŠ»áŠ¼áŠ½áŠ¾áŠ¿ +á‹€á‹á‹‚ዃዄዅ዆዇ወዉዊዋዌá‹á‹Žá‹á‹á‹‘ዒዓዔዕዖ዗ዘዙዚዛዜá‹á‹žá‹Ÿá‹ á‹¡á‹¢á‹£á‹¤á‹¥á‹¦á‹§á‹¨á‹©á‹ªá‹«á‹¬á‹­á‹®á‹¯á‹°á‹±á‹²á‹³á‹´á‹µá‹¶á‹·á‹¸á‹¹á‹ºá‹»á‹¼á‹½á‹¾á‹¿ +ጀáŒáŒ‚ጃጄጅጆጇገጉጊጋጌáŒáŒŽáŒáŒáŒ‘ጒጓጔጕ጖጗ጘጙጚጛጜáŒáŒžáŒŸáŒ áŒ¡áŒ¢áŒ£áŒ¤áŒ¥áŒ¦áŒ§áŒ¨áŒ©áŒªáŒ«áŒ¬áŒ­áŒ®áŒ¯áŒ°áŒ±áŒ²áŒ³áŒ´áŒµáŒ¶áŒ·áŒ¸áŒ¹áŒºáŒ»áŒ¼áŒ½áŒ¾áŒ¿ +á€áá‚áƒá„á…á†á‡áˆá‰áŠá‹áŒááŽááá‘á’á“á”á•á–á—á˜á™ášá›áœáážáŸá á¡á¢á£á¤á¥á¦á§á¨á©áªá«á¬á­á®á¯á°á±á²á³á´áµá¶á·á¸á¹áºá»á¼á½á¾á¿ + +Free block (U+1380-U+139F): + +ᎀáŽáŽ‚ᎃᎄᎅᎆᎇᎈᎉᎊᎋᎌáŽáŽŽáŽáŽáŽ‘᎒᎓᎔᎕᎖᎗᎘᎙᎚᎛᎜áŽáŽžáŽŸ + +Cherokee (U+13A0-U+13FF): + +ᎠᎡᎢᎣᎤᎥᎦᎧᎨᎩᎪᎫᎬᎭᎮᎯᎰᎱᎲᎳᎴᎵᎶᎷᎸᎹᎺᎻᎼᎽᎾᎿá€áá‚áƒá„á…á†á‡áˆá‰áŠá‹áŒááŽááá‘á’á“á”á•á–á—á˜á™ášá›áœáážáŸ +á á¡á¢á£á¤á¥á¦á§á¨á©áªá«á¬á­á®á¯á°á±á²á³á´áµá¶á·á¸á¹áºá»á¼á½á¾á¿ + +Unified Canadian Aboriginal Syllabics (U+1400-U+167F): + +á€áá‚áƒá„á…á†á‡áˆá‰áŠá‹áŒááŽááá‘á’á“á”á•á–á—á˜á™ášá›áœáážáŸá á¡á¢á£á¤á¥á¦á§á¨á©áªá«á¬á­á®á¯á°á±á²á³á´áµá¶á·á¸á¹áºá»á¼á½á¾á¿ +á‘€á‘ᑂᑃᑄᑅᑆᑇᑈᑉᑊᑋᑌá‘á‘Žá‘á‘ᑑᑒᑓᑔᑕᑖᑗᑘᑙᑚᑛᑜá‘ᑞᑟᑠᑡᑢᑣᑤᑥᑦᑧᑨᑩᑪᑫᑬᑭᑮᑯᑰᑱᑲᑳᑴᑵᑶᑷᑸᑹᑺᑻᑼᑽᑾᑿ +á’€á’ᒂᒃᒄᒅᒆᒇᒈᒉᒊᒋᒌá’á’Žá’á’ᒑᒒᒓᒔᒕᒖᒗᒘᒙᒚᒛᒜá’ᒞᒟᒠᒡᒢᒣᒤᒥᒦᒧᒨᒩᒪᒫᒬᒭᒮᒯᒰᒱᒲᒳᒴᒵᒶᒷᒸᒹᒺᒻᒼᒽᒾᒿ +á“€á“ᓂᓃᓄᓅᓆᓇᓈᓉᓊᓋᓌá“á“Žá“á“ᓑᓒᓓᓔᓕᓖᓗᓘᓙᓚᓛᓜá“ᓞᓟᓠᓡᓢᓣᓤᓥᓦᓧᓨᓩᓪᓫᓬᓭᓮᓯᓰᓱᓲᓳᓴᓵᓶᓷᓸᓹᓺᓻᓼᓽᓾᓿ +ᔀá”ᔂᔃᔄᔅᔆᔇᔈᔉᔊᔋᔌá”ᔎá”á”ᔑᔒᔓᔔᔕᔖᔗᔘᔙᔚᔛᔜá”ᔞᔟᔠᔡᔢᔣᔤᔥᔦᔧᔨᔩᔪᔫᔬᔭᔮᔯᔰᔱᔲᔳᔴᔵᔶᔷᔸᔹᔺᔻᔼᔽᔾᔿ +á•€á•á•‚ᕃᕄᕅᕆᕇᕈᕉᕊᕋᕌá•á•Žá•á•á•‘ᕒᕓᕔᕕᕖᕗᕘᕙᕚᕛᕜá•á•žá•Ÿá• á•¡á•¢á•£á•¤á•¥á•¦á•§á•¨á•©á•ªá•«á•¬á•­á•®á•¯á•°á•±á•²á•³á•´á•µá•¶á•·á•¸á•¹á•ºá•»á•¼á•½á•¾á•¿ +á–€á–ᖂᖃᖄᖅᖆᖇᖈᖉᖊᖋᖌá–á–Žá–á–ᖑᖒᖓᖔᖕᖖᖗᖘᖙᖚᖛᖜá–ᖞᖟᖠᖡᖢᖣᖤᖥᖦᖧᖨᖩᖪᖫᖬᖭᖮᖯᖰᖱᖲᖳᖴᖵᖶᖷᖸᖹᖺᖻᖼᖽᖾᖿ +á—€á—ᗂᗃᗄᗅᗆᗇᗈᗉᗊᗋᗌá—á—Žá—á—ᗑᗒᗓᗔᗕᗖᗗᗘᗙᗚᗛᗜá—ᗞᗟᗠᗡᗢᗣᗤᗥᗦᗧᗨᗩᗪᗫᗬᗭᗮᗯᗰᗱᗲᗳᗴᗵᗶᗷᗸᗹᗺᗻᗼᗽᗾᗿ +ᘀá˜á˜‚ᘃᘄᘅᘆᘇᘈᘉᘊᘋᘌá˜á˜Žá˜á˜á˜‘ᘒᘓᘔᘕᘖᘗᘘᘙᘚᘛᘜá˜á˜žá˜Ÿá˜ á˜¡á˜¢á˜£á˜¤á˜¥á˜¦á˜§á˜¨á˜©á˜ªá˜«á˜¬á˜­á˜®á˜¯á˜°á˜±á˜²á˜³á˜´á˜µá˜¶á˜·á˜¸á˜¹á˜ºá˜»á˜¼á˜½á˜¾á˜¿ +ᙀá™á™‚ᙃᙄᙅᙆᙇᙈᙉᙊᙋᙌá™á™Žá™á™á™‘ᙒᙓᙔᙕᙖᙗᙘᙙᙚᙛᙜá™á™žá™Ÿá™ á™¡á™¢á™£á™¤á™¥á™¦á™§á™¨á™©á™ªá™«á™¬á™­á™®á™¯á™°á™±á™²á™³á™´á™µá™¶á™·á™¸á™¹á™ºá™»á™¼á™½á™¾á™¿ + +Ogham (U+1680-U+169F): + + ášáš‚ᚃᚄᚅᚆᚇᚈᚉᚊᚋᚌášášŽášášáš‘ᚒᚓᚔᚕᚖᚗᚘᚙᚚ᚛᚜ášášžášŸ + +Runic (U+16A0-U+16FF): + +ᚠᚡᚢᚣᚤᚥᚦᚧᚨᚩᚪᚫᚬᚭᚮᚯᚰᚱᚲᚳᚴᚵᚶᚷᚸᚹᚺᚻᚼᚽᚾᚿᛀá›á›‚ᛃᛄᛅᛆᛇᛈᛉᛊᛋᛌá›á›Žá›á›á›‘ᛒᛓᛔᛕᛖᛗᛘᛙᛚᛛᛜá›á›žá›Ÿ +ᛠᛡᛢᛣᛤᛥᛦᛧᛨᛩᛪ᛫᛬᛭ᛮᛯᛰᛱᛲᛳᛴᛵᛶᛷᛸ᛹᛺᛻᛼᛽᛾᛿ + +Tagalog (U+1700-U+171F): + +ᜀáœáœ‚ᜃᜄᜅᜆᜇᜈᜉᜊᜋᜌáœáœŽáœáœáœ‘◌ᜒ◌ᜓ◌᜔᜕᜖᜗᜘᜙᜚᜛᜜áœáœžáœŸ + +Hanunoo (U+1720-U+173F): + +ᜠᜡᜢᜣᜤᜥᜦᜧᜨᜩᜪᜫᜬᜭᜮᜯᜰᜱ◌ᜲ◌ᜳ◌᜴᜵᜶᜷᜸᜹᜺᜻᜼᜽᜾᜿ + +Buhid (U+1740-U+175F): + +á€áá‚áƒá„á…á†á‡áˆá‰áŠá‹áŒááŽááá‘â—Œá’â—Œá“á”á•á–á—á˜á™ášá›áœáážáŸ + +Tagbanwa (U+1760-U+177F): + +á á¡á¢á£á¤á¥á¦á§á¨á©áªá«á¬á­á®á¯á°á±â—Œá²â—Œá³á´áµá¶á·á¸á¹áºá»á¼á½á¾á¿ + +Khmer (U+1780-U+17FF): + +កážáž‚ឃងចឆជឈញដឋឌážážŽážážáž‘ធនបផពភមយរលវážážžážŸáž áž¡áž¢áž£áž¤áž¥áž¦áž§áž¨áž©ážªáž«áž¬áž­áž®áž¯áž°áž±áž²áž³áž´ážµáž¶â—Œáž·â—Œáž¸â—Œáž¹â—Œážºâ—Œáž»â—Œáž¼â—Œáž½áž¾áž¿ +ៀáŸáŸ‚ៃោៅ◌ំះៈ◌៉◌៊◌់◌៌◌áŸâ—ŒáŸŽâ—ŒáŸâ—ŒáŸâ—ŒáŸ‘◌្◌៓។៕៖ៗ៘៙៚៛ៜáŸáŸžáŸŸáŸ áŸ¡áŸ¢áŸ£áŸ¤áŸ¥áŸ¦áŸ§áŸ¨áŸ©áŸªáŸ«áŸ¬áŸ­áŸ®áŸ¯áŸ°áŸ±áŸ²áŸ³áŸ´áŸµáŸ¶áŸ·áŸ¸áŸ¹áŸºáŸ»áŸ¼áŸ½áŸ¾áŸ¿ + +Mongolian (U+1800-U+18AF): + +á €á á ‚᠃᠄᠅᠆᠇᠈᠉᠊◌᠋◌᠌◌á á Žá á á ‘᠒᠓᠔᠕᠖᠗᠘᠙᠚᠛᠜á á žá Ÿá  á ¡á ¢á £á ¤á ¥á ¦á §á ¨á ©á ªá «á ¬á ­á ®á ¯á °á ±á ²á ³á ´á µá ¶á ·á ¸á ¹á ºá »á ¼á ½á ¾á ¿ +á¡€á¡á¡‚ᡃᡄᡅᡆᡇᡈᡉᡊᡋᡌá¡á¡Žá¡á¡á¡‘ᡒᡓᡔᡕᡖᡗᡘᡙᡚᡛᡜá¡á¡žá¡Ÿá¡ á¡¡á¡¢á¡£á¡¤á¡¥á¡¦á¡§á¡¨á¡©á¡ªá¡«á¡¬á¡­á¡®á¡¯á¡°á¡±á¡²á¡³á¡´á¡µá¡¶á¡·á¡¸á¡¹á¡ºá¡»á¡¼á¡½á¡¾á¡¿ +ᢀá¢á¢‚ᢃᢄᢅᢆᢇᢈᢉᢊᢋᢌá¢á¢Žá¢á¢á¢‘ᢒᢓᢔᢕᢖᢗᢘᢙᢚᢛᢜá¢á¢žá¢Ÿá¢ á¢¡á¢¢á¢£á¢¤á¢¥á¢¦á¢§á¢¨â—Œá¢©á¢ªá¢«á¢¬á¢­á¢®á¢¯ + +Free block (U+18B0-U+18FF): + +ᢰᢱᢲᢳᢴᢵᢶᢷᢸᢹᢺᢻᢼᢽᢾᢿᣀá£á£‚ᣃᣄᣅᣆᣇᣈᣉᣊᣋᣌá£á£Žá£á£á£‘ᣒᣓᣔᣕᣖᣗᣘᣙᣚᣛᣜá£á£žá£Ÿá£ á£¡á£¢á££á£¤á£¥á£¦á£§á£¨á£©á£ªá£«á£¬á£­á£®á£¯ +ᣰᣱᣲᣳᣴᣵ᣶᣷᣸᣹᣺᣻᣼᣽᣾᣿ + +Limbu (U+1900-U+194F): + +ᤀá¤á¤‚ᤃᤄᤅᤆᤇᤈᤉᤊᤋᤌá¤á¤Žá¤á¤á¤‘ᤒᤓᤔᤕᤖᤗᤘᤙᤚᤛᤜá¤á¤žá¤Ÿá¤ á¤¡á¤¢á¤£á¤¤á¤¥á¤¦á¤§á¤¨á¤©á¤ªá¤«á¤¬á¤­á¤®á¤¯á¤°á¤±á¤²á¤³á¤´á¤µá¤¶á¤·á¤¸á¤¹á¤ºá¤»á¤¼á¤½á¤¾á¤¿ +᥀á¥á¥‚᥃᥄᥅᥆᥇᥈᥉᥊᥋᥌á¥á¥Žá¥ + +Tai Le (U+1950-U+197F): + +á¥á¥‘ᥒᥓᥔᥕᥖᥗᥘᥙᥚᥛᥜá¥á¥žá¥Ÿá¥ á¥¡á¥¢á¥£á¥¤á¥¥á¥¦á¥§á¥¨á¥©á¥ªá¥«á¥¬á¥­á¥®á¥¯á¥°á¥±á¥²á¥³á¥´á¥µá¥¶á¥·á¥¸á¥¹á¥ºá¥»á¥¼á¥½á¥¾á¥¿ + +Free block (U+1980-U+19DF): + +ᦀá¦á¦‚ᦃᦄᦅᦆᦇᦈᦉᦊᦋᦌá¦á¦Žá¦á¦á¦‘ᦒᦓᦔᦕᦖᦗᦘᦙᦚᦛᦜá¦á¦žá¦Ÿá¦ á¦¡á¦¢á¦£á¦¤á¦¥á¦¦á¦§á¦¨á¦©á¦ªá¦«á¦¬á¦­á¦®á¦¯á¦°á¦±á¦²á¦³á¦´á¦µá¦¶á¦·á¦¸á¦¹á¦ºá¦»á¦¼á¦½á¦¾á¦¿ +ᧀá§á§‚ᧃᧄᧅᧆᧇᧈᧉ᧊᧋᧌á§á§Žá§á§á§‘᧒᧓᧔᧕᧖᧗᧘᧙᧚᧛᧜á§á§žá§Ÿ + +Khmer Symbols (U+19E0-U+19FF): + +᧠᧡᧢᧣᧤᧥᧦᧧᧨᧩᧪᧫᧬᧭᧮᧯᧰᧱᧲᧳᧴᧵᧶᧷᧸᧹᧺᧻᧼᧽᧾᧿ + +Free block (U+1A00-U+1CFF): + +ᨀá¨á¨‚ᨃᨄᨅᨆᨇᨈᨉᨊᨋᨌá¨á¨Žá¨á¨á¨‘ᨒᨓᨔᨕᨖᨘᨗᨙᨚᨛ᨜á¨á¨žá¨Ÿá¨ á¨¡á¨¢á¨£á¨¤á¨¥á¨¦á¨§á¨¨á¨©á¨ªá¨«á¨¬á¨­á¨®á¨¯á¨°á¨±á¨²á¨³á¨´á¨µá¨¶á¨·á¨¸á¨¹á¨ºá¨»á¨¼á¨½á¨¾á¨¿ +á©€á©á©‚ᩃᩄᩅᩆᩇᩈᩉᩊᩋᩌá©á©Žá©á©á©‘ᩒᩓᩔᩕᩖᩗᩘᩙᩚᩛᩜá©á©žá©Ÿá© á©¡á©¢á©£á©¤á©¥á©¦á©§á©¨á©©á©ªá©«á©¬á©­á©®á©¯á©°á©±á©²á©³á©´á©µá©¶á©·á©¸á©¹á©ºá©»á©¼á©½á©¾á©¿ +᪀áªáª‚᪃᪄᪅᪆᪇᪈᪉᪊᪋᪌áªáªŽáªáªáª‘᪒᪓᪔᪕᪖᪗᪘᪙᪚᪛᪜áªáªžáªŸáª áª¡áª¢áª£áª¤áª¥áª¦áª§áª¨áª©áªªáª«áª¬áª­áª®áª¯áª°áª±áª²áª³áª´áªµáª¶áª·áª¸áª¹áªºáª»áª¼áª½áª¾áª¿ +á«€á«á«‚᫃᫄᫊᫅᫆᫇᫈᫉᫋ᫌá«á«Žá«á«á«‘᫒᫓᫔᫕᫖᫗᫘᫙᫚᫛᫜á«á«žá«Ÿá« á«¡á«¢á«£á«¤á«¥á«¦á«§á«¨á«©á«ªá««á«¬á«­á«®á«¯á«°á«±á«²á«³á«´á«µá«¶á«·á«¸á«¹á«ºá«»á«¼á«½á«¾á«¿ +ᬀá¬á¬‚ᬃᬄᬅᬆᬇᬈᬉᬊᬋᬌá¬á¬Žá¬á¬á¬‘ᬒᬓᬔᬕᬖᬗᬘᬙᬚᬛᬜá¬á¬žá¬Ÿá¬ á¬¡á¬¢á¬£á¬¤á¬¥á¬¦á¬§á¬¨á¬©á¬ªá¬«á¬¬á¬­á¬®á¬¯á¬°á¬±á¬²á¬³á¬´á¬µá¬¶á¬·á¬¸á¬¹á¬ºá¬»á¬¼á¬½á¬¾á¬¿ +á­€á­á­‚ᭃ᭄ᭅᭆᭇᭈᭉᭊᭋᭌá­á­Žá­á­á­‘᭒᭓᭔᭕᭖᭗᭘᭙᭚᭛᭜á­á­žá­Ÿá­ á­¡á­¢á­£á­¤á­¥á­¦á­§á­¨á­©á­ªá­«á­¬á­­á­®á­¯á­°á­±á­²á­³á­´á­µá­¶á­·á­¸á­¹á­ºá­»á­¼á­½á­¾á­¿ +ᮀá®á®‚ᮃᮄᮅᮆᮇᮈᮉᮊᮋᮌá®á®Žá®á®á®‘ᮒᮓᮔᮕᮖᮗᮘᮙᮚᮛᮜá®á®žá®Ÿá® á®¡á®¢á®£á®¤á®¥á®¦á®§á®¨á®©á®ªá®«á®¬á®­á®®á®¯á®°á®±á®²á®³á®´á®µá®¶á®·á®¸á®¹á®ºá®»á®¼á®½á®¾á®¿ +ᯀá¯á¯‚ᯃᯄᯅᯆᯇᯈᯉᯊᯋᯌá¯á¯Žá¯á¯á¯‘ᯒᯓᯔᯕᯖᯗᯘᯙᯚᯛᯜá¯á¯žá¯Ÿá¯ á¯¡á¯¢á¯£á¯¤á¯¥á¯¦á¯§á¯¨á¯©á¯ªá¯«á¯¬á¯­á¯®á¯¯á¯°á¯±á¯²á¯³á¯´á¯µá¯¶á¯·á¯¸á¯¹á¯ºá¯»á¯¼á¯½á¯¾á¯¿ +á°€á°á°‚ᰃᰄᰅᰆᰇᰈᰉᰊᰋᰌá°á°Žá°á°á°‘ᰒᰓᰔᰕᰖᰗᰘᰙᰚᰛᰜá°á°žá°Ÿá° á°¡á°¢á°£á°¤á°¥á°¦á°§á°¨á°©á°ªá°«á°¬á°­á°®á°¯á°°á°±á°²á°³á°´á°µá°¶á°·á°¸á°¹á°ºá°»á°¼á°½á°¾á°¿ +á±€á±á±‚᱃᱄᱅᱆᱇᱈᱉᱊᱋᱌á±á±Žá±á±á±‘᱒᱓᱔᱕᱖᱗᱘᱙ᱚᱛᱜá±á±žá±Ÿá± á±¡á±¢á±£á±¤á±¥á±¦á±§á±¨á±©á±ªá±«á±¬á±­á±®á±¯á±°á±±á±²á±³á±´á±µá±¶á±·á±¸á±¹á±ºá±»á±¼á±½á±¾á±¿ +á²€á²á²‚ᲃᲄᲅᲆᲇᲈᲉᲊ᲋᲌á²á²Žá²á²á²‘ᲒᲓᲔᲕᲖᲗᲘᲙᲚᲛᲜá²á²žá²Ÿá² á²¡á²¢á²£á²¤á²¥á²¦á²§á²¨á²©á²ªá²«á²¬á²­á²®á²¯á²°á²±á²²á²³á²´á²µá²¶á²·á²¸á²¹á²ºá²»á²¼á²½á²¾á²¿ +á³€á³á³‚᳃᳄᳅᳆᳇᳈᳉᳊᳋᳌á³á³Žá³á³á³‘᳒᳓᳔᳕᳖᳗᳘᳙᳜᳚᳛á³á³žá³Ÿá³ á³¡á³¢á³£á³¤á³¥á³¦á³§á³¨á³©á³ªá³«á³¬á³­á³®á³¯á³°á³±á³²á³³á³´á³µá³¶á³·á³¸á³¹á³ºá³»á³¼á³½á³¾á³¿ + +Phonetic Extensions (U+1D00-U+1D7F): + +á´€á´á´‚ᴃᴄᴅᴆᴇᴈᴉᴊᴋᴌá´á´Žá´á´á´‘ᴒᴓᴔᴕᴖᴗᴘᴙᴚᴛᴜá´á´žá´Ÿá´ á´¡á´¢á´£á´¤á´¥á´¦á´§á´¨á´©á´ªá´«á´¬á´­á´®á´¯á´°á´±á´²á´³á´´á´µá´¶á´·á´¸á´¹á´ºá´»á´¼á´½á´¾á´¿ +áµ€áµáµ‚ᵃᵄᵅᵆᵇᵈᵉᵊᵋᵌáµáµŽáµáµáµ‘ᵒᵓᵔᵕᵖᵗᵘᵙᵚᵛᵜáµáµžáµŸáµ áµ¡áµ¢áµ£áµ¤áµ¥áµ¦áµ§áµ¨áµ©áµªáµ«áµ¬áµ­áµ®áµ¯áµ°áµ±áµ²áµ³áµ´áµµáµ¶áµ·áµ¸áµ¹áµºáµ»áµ¼áµ½áµ¾áµ¿ + +Free block (U+1D80-U+1DFF): + +ᶀá¶á¶‚ᶃᶄᶅᶆᶇᶈᶉᶊᶋᶌá¶á¶Žá¶á¶á¶‘ᶒᶓᶔᶕᶖᶗᶘᶙᶚᶛᶜá¶á¶žá¶Ÿá¶ á¶¡á¶¢á¶£á¶¤á¶¥á¶¦á¶§á¶¨á¶©á¶ªá¶«á¶¬á¶­á¶®á¶¯á¶°á¶±á¶²á¶³á¶´á¶µá¶¶á¶·á¶¸á¶¹á¶ºá¶»á¶¼á¶½á¶¾á¶¿ +á·€á·á·‚᷊᷃᷄᷅᷆᷇᷈᷉᷋᷌á·á·Žá·á·á·‘᷒ᷓᷔᷕᷖᷗᷘᷙᷚᷛᷜá·á·žá·Ÿá· á·¡á·¢á·£á·¤á·¥á·¦á·§á·¨á·©á·ªá·«á·¬á·­á·®á·¯á·°á·±á·²á·³á·´á·µá·¶á··á·¸á·¹á·ºá·»á·¼á·½á·¾á·¿ + +Latin Extended Additional (U+1E00-U+1EFF): + +Ḁá¸á¸‚ḃḄḅḆḇḈḉḊḋḌá¸á¸Žá¸á¸á¸‘ḒḓḔḕḖḗḘḙḚḛḜá¸á¸žá¸Ÿá¸ á¸¡á¸¢á¸£á¸¤á¸¥á¸¦á¸§á¸¨á¸©á¸ªá¸«á¸¬á¸­á¸®á¸¯á¸°á¸±á¸²á¸³á¸´á¸µá¸¶á¸·á¸¸á¸¹á¸ºá¸»á¸¼á¸½á¸¾á¸¿ +á¹€á¹á¹‚ṃṄṅṆṇṈṉṊṋṌá¹á¹Žá¹á¹á¹‘ṒṓṔṕṖṗṘṙṚṛṜá¹á¹žá¹Ÿá¹ á¹¡á¹¢á¹£á¹¤á¹¥á¹¦á¹§á¹¨á¹©á¹ªá¹«á¹¬á¹­á¹®á¹¯á¹°á¹±á¹²á¹³á¹´á¹µá¹¶á¹·á¹¸á¹¹á¹ºá¹»á¹¼á¹½á¹¾á¹¿ +Ẁáºáº‚ẃẄẅẆẇẈẉẊẋẌáºáºŽáºáºáº‘ẒẓẔẕẖẗẘẙẚẛẜáºáºžáºŸáº áº¡áº¢áº£áº¤áº¥áº¦áº§áº¨áº©áºªáº«áº¬áº­áº®áº¯áº°áº±áº²áº³áº´áºµáº¶áº·áº¸áº¹áººáº»áº¼áº½áº¾áº¿ +Ềá»á»‚ểỄễỆệỈỉỊịỌá»á»Žá»á»á»‘ỒồỔổỖỗỘộỚớỜá»á»žá»Ÿá» á»¡á»¢á»£á»¤á»¥á»¦á»§á»¨á»©á»ªá»«á»¬á»­á»®á»¯á»°á»±á»²á»³á»´á»µá»¶á»·á»¸á»¹á»ºá»»á»¼á»½á»¾á»¿ + +Greek Extended (U+1F00-U+1FFF): + +á¼€á¼á¼‚ἃἄἅἆἇἈἉἊἋἌá¼á¼Žá¼á¼á¼‘ἒἓἔἕ἖἗ἘἙἚἛἜá¼á¼žá¼Ÿá¼ á¼¡á¼¢á¼£á¼¤á¼¥á¼¦á¼§á¼¨á¼©á¼ªá¼«á¼¬á¼­á¼®á¼¯á¼°á¼±á¼²á¼³á¼´á¼µá¼¶á¼·á¼¸á¼¹á¼ºá¼»á¼¼á¼½á¼¾á¼¿ +á½€á½á½‚ὃὄὅ὆὇ὈὉὊὋὌá½á½Žá½á½á½‘ὒὓὔὕὖὗ὘Ὑ὚Ὓ὜á½á½žá½Ÿá½ á½¡á½¢á½£á½¤á½¥á½¦á½§á½¨á½©á½ªá½«á½¬á½­á½®á½¯á½°á½±á½²á½³á½´á½µá½¶á½·á½¸á½¹á½ºá½»á½¼á½½á½¾á½¿ +á¾€á¾á¾‚ᾃᾄᾅᾆᾇᾈᾉᾊᾋᾌá¾á¾Žá¾á¾á¾‘ᾒᾓᾔᾕᾖᾗᾘᾙᾚᾛᾜá¾á¾žá¾Ÿá¾ á¾¡á¾¢á¾£á¾¤á¾¥á¾¦á¾§á¾¨á¾©á¾ªá¾«á¾¬á¾­á¾®á¾¯á¾°á¾±á¾²á¾³á¾´á¾µá¾¶á¾·á¾¸á¾¹á¾ºá¾»á¾¼á¾½á¾¾á¾¿ +á¿€á¿á¿‚ῃῄ῅ῆῇῈΈῊΉῌá¿á¿Žá¿á¿á¿‘ῒΐ῔῕ῖῗῘῙῚΊ῜á¿á¿žá¿Ÿá¿ á¿¡á¿¢á¿£á¿¤á¿¥á¿¦á¿§á¿¨á¿©á¿ªá¿«á¿¬á¿­á¿®á¿¯á¿°á¿±á¿²á¿³á¿´á¿µá¿¶á¿·á¿¸á¿¹á¿ºá¿»á¿¼á¿½á¿¾á¿¿ + +General Punctuation (U+2000-U+206F): + + â€â€‚        ​‌â€â€Žâ€â€â€‘‒–—―‖‗‘’‚‛“â€â€žâ€Ÿâ€ â€¡â€¢â€£â€¤â€¥â€¦â€§â€¨â€©â€ªâ€«â€¬â€­â€®â€¯â€°â€±â€²â€³â€´â€µâ€¶â€·â€¸â€¹â€ºâ€»â€¼â€½â€¾â€¿ +â€ââ‚âƒâ„â…â†â‡âˆâ‰âŠâ‹âŒââŽâââ‘â’â“â”â•â–â—â˜â™âšâ›âœââžâŸâ â¡â¢â£â¤â¥â¦â§â¨â©âªâ«â¬â­â®â¯ + +Superscripts and Subscripts (U+2070-U+209F): + +â°â±â²â³â´âµâ¶â·â¸â¹âºâ»â¼â½â¾â¿â‚€â‚₂₃₄₅₆₇₈₉₊₋₌â‚â‚Žâ‚â‚ₑₒₓₔₕₖₗₘₙₚₛₜâ‚â‚žâ‚Ÿ + +Currency Symbols (U+20A0-U+20CF): + +₠₡₢₣₤₥₦₧₨₩₪₫€₭₮₯₰₱₲₳₴₵₶₷₸₹₺₻₼₽₾₿⃀âƒâƒ‚⃃⃄⃅⃆⃇⃈⃉⃊⃋⃌âƒâƒŽâƒ + +Combining Diacritical Marks for Symbols (U+20D0-U+20FF): + +â—Œâƒâ—Œâƒ‘◌⃒◌⃓◌⃔◌⃕◌⃖◌⃗◌⃘◌⃙◌⃚◌⃛◌⃜ ⃠⃞ ⃟ ⃠◌⃡ ⃢ ⃣ ⃤◌⃥◌⃦◌⃧◌⃨◌⃩◌⃪⃫⃬⃭⃮⃯⃰⃱⃲⃳⃴⃵⃶⃷⃸⃹⃺⃻⃼⃽⃾⃿ + +Letterlike Symbols (U+2100-U+214F): + +â„€â„ℂ℃℄℅℆ℇ℈℉ℊℋℌâ„â„Žâ„â„ℑℒℓ℔ℕ№℗℘ℙℚℛℜâ„℞℟℠℡™℣ℤ℥Ω℧ℨ℩KÅℬℭ℮ℯℰℱℲℳℴℵℶℷℸℹ℺℻ℼℽℾℿ +â…€â…⅂⅃⅄ⅅⅆⅇⅈⅉ⅊⅋⅌â…â…Žâ… + +Number Forms (U+2150-U+218F): + +â…⅑⅒⅓⅔⅕⅖⅗⅘⅙⅚⅛⅜â…⅞⅟ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩⅪⅫⅬⅭⅮⅯⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹⅺⅻⅼⅽⅾⅿↀâ†â†‚Ↄↄↅↆↇↈ↉↊↋↌â†â†Žâ† + +Arrows (U+2190-U+21FF): + +â†â†‘→↓↔↕↖↗↘↙↚↛↜â†â†žâ†Ÿâ† â†¡â†¢â†£â†¤â†¥â†¦â†§â†¨â†©â†ªâ†«â†¬â†­â†®â†¯â†°â†±â†²â†³â†´â†µâ†¶â†·â†¸â†¹â†ºâ†»â†¼â†½â†¾â†¿â‡€â‡â‡‚⇃⇄⇅⇆⇇⇈⇉⇊⇋⇌â‡â‡Žâ‡ +â‡â‡‘⇒⇓⇔⇕⇖⇗⇘⇙⇚⇛⇜â‡â‡žâ‡Ÿâ‡ â‡¡â‡¢â‡£â‡¤â‡¥â‡¦â‡§â‡¨â‡©â‡ªâ‡«â‡¬â‡­â‡®â‡¯â‡°â‡±â‡²â‡³â‡´â‡µâ‡¶â‡·â‡¸â‡¹â‡ºâ‡»â‡¼â‡½â‡¾â‡¿ + +Mathematical Operators (U+2200-U+22FF): + +∀âˆâˆ‚∃∄∅∆∇∈∉∊∋∌âˆâˆŽâˆâˆâˆ‘−∓∔∕∖∗∘∙√∛∜âˆâˆžâˆŸâˆ âˆ¡âˆ¢âˆ£âˆ¤âˆ¥âˆ¦âˆ§âˆ¨âˆ©âˆªâˆ«âˆ¬âˆ­âˆ®âˆ¯âˆ°âˆ±âˆ²âˆ³âˆ´âˆµâˆ¶âˆ·âˆ¸âˆ¹âˆºâˆ»âˆ¼âˆ½âˆ¾âˆ¿ +≀â‰â‰‚≃≄≅≆≇≈≉≊≋≌â‰â‰Žâ‰â‰â‰‘≒≓≔≕≖≗≘≙≚≛≜â‰â‰žâ‰Ÿâ‰ â‰¡â‰¢â‰£â‰¤â‰¥â‰¦â‰§â‰¨â‰©â‰ªâ‰«â‰¬â‰­â‰®â‰¯â‰°â‰±â‰²â‰³â‰´â‰µâ‰¶â‰·â‰¸â‰¹â‰ºâ‰»â‰¼â‰½â‰¾â‰¿ +⊀âŠâŠ‚⊃⊄⊅⊆⊇⊈⊉⊊⊋⊌âŠâŠŽâŠâŠâŠ‘⊒⊓⊔⊕⊖⊗⊘⊙⊚⊛⊜âŠâŠžâŠŸâŠ âŠ¡âŠ¢âŠ£âŠ¤âŠ¥âŠ¦âŠ§âŠ¨âŠ©âŠªâŠ«âŠ¬âŠ­âŠ®âŠ¯âŠ°âŠ±âŠ²âŠ³âŠ´âŠµâŠ¶âŠ·âŠ¸âŠ¹âŠºâŠ»âŠ¼âŠ½âŠ¾âŠ¿ +â‹€â‹â‹‚⋃⋄⋅⋆⋇⋈⋉⋊⋋⋌â‹â‹Žâ‹â‹â‹‘⋒⋓⋔⋕⋖⋗⋘⋙⋚⋛⋜â‹â‹žâ‹Ÿâ‹ â‹¡â‹¢â‹£â‹¤â‹¥â‹¦â‹§â‹¨â‹©â‹ªâ‹«â‹¬â‹­â‹®â‹¯â‹°â‹±â‹²â‹³â‹´â‹µâ‹¶â‹·â‹¸â‹¹â‹ºâ‹»â‹¼â‹½â‹¾â‹¿ + +Miscellaneous Technical (U+2300-U+23FF): + +⌀âŒâŒ‚⌃⌄⌅⌆⌇⌈⌉⌊⌋⌌âŒâŒŽâŒâŒâŒ‘⌒⌓⌔⌕⌖⌗⌘⌙⌚⌛⌜âŒâŒžâŒŸâŒ âŒ¡âŒ¢âŒ£âŒ¤âŒ¥âŒ¦âŒ§âŒ¨âŒ©âŒªâŒ«âŒ¬âŒ­âŒ®âŒ¯âŒ°âŒ±âŒ²âŒ³âŒ´âŒµâŒ¶âŒ·âŒ¸âŒ¹âŒºâŒ»âŒ¼âŒ½ +⌾⌿â€ââ‚âƒâ„â…â†â‡âˆâ‰âŠâ‹âŒââŽâââ‘â’â“â”â•â–â—â˜â™âšâ›âœââžâŸâ â¡â¢â£â¤â¥â¦â§â¨â©âªâ«â¬â­â®â¯â°â±â²â³â´âµâ¶â·â¸â¹âºâ»â¼â½ +â¾â¿âŽ€âŽâŽ‚⎃⎄⎅⎆⎇⎈⎉⎊⎋⎌âŽâŽŽâŽâŽâŽ‘⎒⎓⎔⎕⎖⎗⎘⎙⎚⎛⎜âŽâŽžâŽŸâŽ âŽ¡âŽ¢âŽ£âŽ¤âŽ¥âŽ¦âŽ§âŽ¨âŽ©âŽªâŽ«âŽ¬âŽ­âŽ®âŽ¯âŽ°âŽ±âŽ²âŽ³âŽ´âŽµâŽ¶âŽ·âŽ¸âŽ¹âŽºâŽ»âŽ¼âŽ½ +⎾⎿â€ââ‚âƒâ„â…â†â‡âˆâ‰âŠâ‹âŒââŽâââ‘â’â“â”â•â–â—â˜â™âšâ›âœââžâŸâ â¡â¢â£â¤â¥â¦â§â¨â©âªâ«â¬â­â®â¯â°â±â²â³â´âµâ¶â·â¸â¹âºâ»â¼â½ +â¾â¿ + +Control Pictures (U+2400-U+243F): + +â€ââ‚âƒâ„â…â†â‡âˆâ‰âŠâ‹âŒââŽâââ‘â’â“â”â•â–â—â˜â™âšâ›âœââžâŸâ â¡â¢â£â¤â¥â¦â§â¨â©âªâ«â¬â­â®â¯â°â±â²â³â´âµâ¶â·â¸â¹âºâ»â¼â½â¾â¿ + +Optical Character Recognition (U+2440-U+245F): + +â‘€â‘⑂⑃⑄⑅⑆⑇⑈⑉⑊⑋⑌â‘â‘Žâ‘â‘⑑⑒⑓⑔⑕⑖⑗⑘⑙⑚⑛⑜â‘â‘žâ‘Ÿ + +Enclosed Alphanumerics (U+2460-U+24FF): + +①②③④⑤⑥⑦⑧⑨⑩⑪⑫⑬⑭⑮⑯⑰⑱⑲⑳⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽⑾⑿⒀â’⒂⒃⒄⒅⒆⒇⒈⒉⒊⒋⒌â’â’Žâ’â’⒑⒒⒓⒔⒕⒖⒗⒘⒙⒚⒛⒜â’â’žâ’Ÿ +⒠⒡⒢⒣⒤⒥⒦⒧⒨⒩⒪⒫⒬⒭⒮⒯⒰⒱⒲⒳⒴⒵ⒶⒷⒸⒹⒺⒻⒼⒽⒾⒿⓀâ“ⓂⓃⓄⓅⓆⓇⓈⓉⓊⓋⓌâ“â“Žâ“â“ⓑⓒⓓⓔⓕⓖⓗⓘⓙⓚⓛⓜâ“â“žâ“Ÿ +ⓠⓡⓢⓣⓤⓥⓦⓧⓨⓩ⓪⓫⓬⓭⓮⓯⓰⓱⓲⓳⓴⓵⓶⓷⓸⓹⓺⓻⓼⓽⓾⓿ + +Box Drawing (U+2500-U+257F): + +─â”│┃┄┅┆┇┈┉┊┋┌â”┎â”â”┑┒┓└┕┖┗┘┙┚┛├â”┞┟┠┡┢┣┤┥┦┧┨┩┪┫┬┭┮┯┰┱┲┳┴┵┶┷┸┹┺┻┼┽┾┿ +â•€â•â•‚╃╄╅╆╇╈╉╊╋╌â•â•Žâ•â•â•‘╒╓╔╕╖╗╘╙╚╛╜â•â•žâ•Ÿâ• â•¡â•¢â•£â•¤â•¥â•¦â•§â•¨â•©â•ªâ•«â•¬â•­â•®â•¯â•°â•±â•²â•³â•´â•µâ•¶â•·â•¸â•¹â•ºâ•»â•¼â•½â•¾â•¿ + +Block Elements (U+2580-U+259F): + +â–€â–▂▃▄▅▆▇█▉▊▋▌â–â–Žâ–â–░▒▓▔▕▖▗▘▙▚▛▜â–â–žâ–Ÿ + +Geometric Shapes (U+25A0-U+25FF): + +■□▢▣▤▥▦▧▨▩▪▫▬▭▮▯▰▱▲△▴▵▶▷▸▹►▻▼▽▾▿◀â—◂◃◄◅◆◇◈◉◊○◌â—â—Žâ—â—◑◒◓◔◕◖◗◘◙◚◛◜â—â—žâ—Ÿ +◠◡◢◣◤◥◦◧◨◩◪◫◬◭◮◯◰◱◲◳◴◵◶◷◸◹◺◻◼◽◾◿ + +Miscellaneous Symbols (U+2600-U+26FF): + +☀â˜â˜‚☃☄★☆☇☈☉☊☋☌â˜â˜Žâ˜â˜â˜‘☒☓☔☕☖☗☘☙☚☛☜â˜â˜žâ˜Ÿâ˜ â˜¡â˜¢â˜£â˜¤â˜¥â˜¦â˜§â˜¨â˜©â˜ªâ˜«â˜¬â˜­â˜®â˜¯â˜°â˜±â˜²â˜³â˜´â˜µâ˜¶â˜·â˜¸â˜¹â˜ºâ˜»â˜¼â˜½â˜¾â˜¿ +♀â™â™‚♃♄♅♆♇♈♉♊♋♌â™â™Žâ™â™â™‘♒♓♔♕♖♗♘♙♚♛♜â™â™žâ™Ÿâ™ â™¡â™¢â™£â™¤â™¥â™¦â™§â™¨â™©â™ªâ™«â™¬â™­â™®â™¯â™°â™±â™²â™³â™´â™µâ™¶â™·â™¸â™¹â™ºâ™»â™¼â™½â™¾â™¿ +⚀âšâš‚⚃⚄⚅⚆⚇⚈⚉⚊⚋⚌âšâšŽâšâšâš‘⚒⚓⚔⚕⚖⚗⚘⚙⚚⚛⚜âšâšžâšŸâš âš¡âš¢âš£âš¤âš¥âš¦âš§âš¨âš©âšªâš«âš¬âš­âš®âš¯âš°âš±âš²âš³âš´âšµâš¶âš·âš¸âš¹âšºâš»âš¼âš½âš¾âš¿ +⛀â›â›‚⛃⛄⛅⛆⛇⛈⛉⛊⛋⛌â›â›Žâ›â›â›‘⛒⛓⛔⛕⛖⛗⛘⛙⛚⛛⛜â›â›žâ›Ÿâ› â›¡â›¢â›£â›¤â›¥â›¦â›§â›¨â›©â›ªâ›«â›¬â›­â›®â›¯â›°â›±â›²â›³â›´â›µâ›¶â›·â›¸â›¹â›ºâ›»â›¼â›½â›¾â›¿ + +Dingbats (U+2700-U+27BF): + +✀âœâœ‚✃✄✅✆✇✈✉✊✋✌âœâœŽâœâœâœ‘✒✓✔✕✖✗✘✙✚✛✜âœâœžâœŸâœ âœ¡âœ¢âœ£âœ¤âœ¥âœ¦âœ§âœ¨âœ©âœªâœ«âœ¬âœ­âœ®âœ¯âœ°âœ±âœ²âœ³âœ´âœµâœ¶âœ·âœ¸âœ¹âœºâœ»âœ¼âœ½âœ¾âœ¿ +â€ââ‚âƒâ„â…â†â‡âˆâ‰âŠâ‹âŒââŽâââ‘â’â“â”â•â–â—â˜â™âšâ›âœââžâŸâ â¡â¢â£â¤â¥â¦â§â¨â©âªâ«â¬â­â®â¯â°â±â²â³â´âµâ¶â·â¸â¹âºâ»â¼â½â¾â¿ +➀âžâž‚➃➄➅➆➇➈➉➊➋➌âžâžŽâžâžâž‘➒➓➔➕➖➗➘➙➚➛➜âžâžžâžŸâž âž¡âž¢âž£âž¤âž¥âž¦âž§âž¨âž©âžªâž«âž¬âž­âž®âž¯âž°âž±âž²âž³âž´âžµâž¶âž·âž¸âž¹âžºâž»âž¼âž½âž¾âž¿ + +Miscellaneous Mathematical Symbols-A (U+27C0-U+27EF): + +⟀âŸâŸ‚⟃⟄⟅⟆⟇⟈⟉⟊⟋⟌âŸâŸŽâŸâŸâŸ‘⟒⟓⟔⟕⟖⟗⟘⟙⟚⟛⟜âŸâŸžâŸŸâŸ âŸ¡âŸ¢âŸ£âŸ¤âŸ¥âŸ¦âŸ§âŸ¨âŸ©âŸªâŸ«âŸ¬âŸ­âŸ®âŸ¯ + +Supplemental Arrows-A (U+27F0-U+27FF): + +⟰⟱⟲⟳⟴⟵⟶⟷⟸⟹⟺⟻⟼⟽⟾⟿ + +Braille Patterns (U+2800-U+28FF): + +â €â â ‚⠃⠄⠅⠆⠇⠈⠉⠊⠋⠌â â Žâ â â ‘⠒⠓⠔⠕⠖⠗⠘⠙⠚⠛⠜â â žâ Ÿâ  â ¡â ¢â £â ¤â ¥â ¦â §â ¨â ©â ªâ «â ¬â ­â ®â ¯â °â ±â ²â ³â ´â µâ ¶â ·â ¸â ¹â ºâ »â ¼â ½â ¾â ¿ +â¡€â¡â¡‚⡃⡄⡅⡆⡇⡈⡉⡊⡋⡌â¡â¡Žâ¡â¡â¡‘⡒⡓⡔⡕⡖⡗⡘⡙⡚⡛⡜â¡â¡žâ¡Ÿâ¡ â¡¡â¡¢â¡£â¡¤â¡¥â¡¦â¡§â¡¨â¡©â¡ªâ¡«â¡¬â¡­â¡®â¡¯â¡°â¡±â¡²â¡³â¡´â¡µâ¡¶â¡·â¡¸â¡¹â¡ºâ¡»â¡¼â¡½â¡¾â¡¿ +⢀â¢â¢‚⢃⢄⢅⢆⢇⢈⢉⢊⢋⢌â¢â¢Žâ¢â¢â¢‘⢒⢓⢔⢕⢖⢗⢘⢙⢚⢛⢜â¢â¢žâ¢Ÿâ¢ â¢¡â¢¢â¢£â¢¤â¢¥â¢¦â¢§â¢¨â¢©â¢ªâ¢«â¢¬â¢­â¢®â¢¯â¢°â¢±â¢²â¢³â¢´â¢µâ¢¶â¢·â¢¸â¢¹â¢ºâ¢»â¢¼â¢½â¢¾â¢¿ +⣀â£â£‚⣃⣄⣅⣆⣇⣈⣉⣊⣋⣌â£â£Žâ£â£â£‘⣒⣓⣔⣕⣖⣗⣘⣙⣚⣛⣜â£â£žâ£Ÿâ£ â£¡â£¢â££â£¤â£¥â£¦â£§â£¨â£©â£ªâ£«â£¬â£­â£®â£¯â£°â£±â£²â£³â£´â£µâ£¶â£·â£¸â£¹â£ºâ£»â£¼â£½â£¾â£¿ + +Supplemental Arrows-B (U+2900-U+297F): + +⤀â¤â¤‚⤃⤄⤅⤆⤇⤈⤉⤊⤋⤌â¤â¤Žâ¤â¤â¤‘⤒⤓⤔⤕⤖⤗⤘⤙⤚⤛⤜â¤â¤žâ¤Ÿâ¤ â¤¡â¤¢â¤£â¤¤â¤¥â¤¦â¤§â¤¨â¤©â¤ªâ¤«â¤¬â¤­â¤®â¤¯â¤°â¤±â¤²â¤³â¤´â¤µâ¤¶â¤·â¤¸â¤¹â¤ºâ¤»â¤¼â¤½â¤¾â¤¿ +⥀â¥â¥‚⥃⥄⥅⥆⥇⥈⥉⥊⥋⥌â¥â¥Žâ¥â¥â¥‘⥒⥓⥔⥕⥖⥗⥘⥙⥚⥛⥜â¥â¥žâ¥Ÿâ¥ â¥¡â¥¢â¥£â¥¤â¥¥â¥¦â¥§â¥¨â¥©â¥ªâ¥«â¥¬â¥­â¥®â¥¯â¥°â¥±â¥²â¥³â¥´â¥µâ¥¶â¥·â¥¸â¥¹â¥ºâ¥»â¥¼â¥½â¥¾â¥¿ + +Miscellaneous Mathematical Symbols-B (U+2980-U+29FF): + +⦀â¦â¦‚⦃⦄⦅⦆⦇⦈⦉⦊⦋⦌â¦â¦Žâ¦â¦â¦‘⦒⦓⦔⦕⦖⦗⦘⦙⦚⦛⦜â¦â¦žâ¦Ÿâ¦ â¦¡â¦¢â¦£â¦¤â¦¥â¦¦â¦§â¦¨â¦©â¦ªâ¦«â¦¬â¦­â¦®â¦¯â¦°â¦±â¦²â¦³â¦´â¦µâ¦¶â¦·â¦¸â¦¹â¦ºâ¦»â¦¼â¦½â¦¾â¦¿ +⧀â§â§‚⧃⧄⧅⧆⧇⧈⧉⧊⧋⧌â§â§Žâ§â§â§‘⧒⧓⧔⧕⧖⧗⧘⧙⧚⧛⧜â§â§žâ§Ÿâ§ â§¡â§¢â§£â§¤â§¥â§¦â§§â§¨â§©â§ªâ§«â§¬â§­â§®â§¯â§°â§±â§²â§³â§´â§µâ§¶â§·â§¸â§¹â§ºâ§»â§¼â§½â§¾â§¿ + +Supplemental Mathematical Operators (U+2A00-U+2AFF): + +⨀â¨â¨‚⨃⨄⨅⨆⨇⨈⨉⨊⨋⨌â¨â¨Žâ¨â¨â¨‘⨒⨓⨔⨕⨖⨗⨘⨙⨚⨛⨜â¨â¨žâ¨Ÿâ¨ â¨¡â¨¢â¨£â¨¤â¨¥â¨¦â¨§â¨¨â¨©â¨ªâ¨«â¨¬â¨­â¨®â¨¯â¨°â¨±â¨²â¨³â¨´â¨µâ¨¶â¨·â¨¸â¨¹â¨ºâ¨»â¨¼â¨½â¨¾â¨¿ +â©€â©â©‚⩃⩄⩅⩆⩇⩈⩉⩊⩋⩌â©â©Žâ©â©â©‘⩒⩓⩔⩕⩖⩗⩘⩙⩚⩛⩜â©â©žâ©Ÿâ© â©¡â©¢â©£â©¤â©¥â©¦â©§â©¨â©©â©ªâ©«â©¬â©­â©®â©¯â©°â©±â©²â©³â©´â©µâ©¶â©·â©¸â©¹â©ºâ©»â©¼â©½â©¾â©¿ +⪀âªâª‚⪃⪄⪅⪆⪇⪈⪉⪊⪋⪌âªâªŽâªâªâª‘⪒⪓⪔⪕⪖⪗⪘⪙⪚⪛⪜âªâªžâªŸâª âª¡âª¢âª£âª¤âª¥âª¦âª§âª¨âª©âªªâª«âª¬âª­âª®âª¯âª°âª±âª²âª³âª´âªµâª¶âª·âª¸âª¹âªºâª»âª¼âª½âª¾âª¿ +â«€â«â«‚⫃⫄⫅⫆⫇⫈⫉⫊⫋⫌â«â«Žâ«â«â«‘⫒⫓⫔⫕⫖⫗⫘⫙⫚⫛⫝̸â«â«žâ«Ÿâ« â«¡â«¢â«£â«¤â«¥â«¦â«§â«¨â«©â«ªâ««â«¬â«­â«®â«¯â«°â«±â«²â«³â«´â«µâ«¶â«·â«¸â«¹â«ºâ«»â«¼â«½â«¾â«¿ + +Miscellaneous Symbols and Arrows (U+2B00-U+2BFF): + +⬀â¬â¬‚⬃⬄⬅⬆⬇⬈⬉⬊⬋⬌â¬â¬Žâ¬â¬â¬‘⬒⬓⬔⬕⬖⬗⬘⬙⬚⬛⬜â¬â¬žâ¬Ÿâ¬ â¬¡â¬¢â¬£â¬¤â¬¥â¬¦â¬§â¬¨â¬©â¬ªâ¬«â¬¬â¬­â¬®â¬¯â¬°â¬±â¬²â¬³â¬´â¬µâ¬¶â¬·â¬¸â¬¹â¬ºâ¬»â¬¼â¬½â¬¾â¬¿ +â­€â­â­‚⭃⭄⭅⭆⭇⭈⭉⭊⭋⭌â­â­Žâ­â­â­‘⭒⭓⭔⭕⭖⭗⭘⭙⭚⭛⭜â­â­žâ­Ÿâ­ â­¡â­¢â­£â­¤â­¥â­¦â­§â­¨â­©â­ªâ­«â­¬â­­â­®â­¯â­°â­±â­²â­³â­´â­µâ­¶â­·â­¸â­¹â­ºâ­»â­¼â­½â­¾â­¿ +⮀â®â®‚⮃⮄⮅⮆⮇⮈⮉⮊⮋⮌â®â®Žâ®â®â®‘⮒⮓⮔⮕⮖⮗⮘⮙⮚⮛⮜â®â®žâ®Ÿâ® â®¡â®¢â®£â®¤â®¥â®¦â®§â®¨â®©â®ªâ®«â®¬â®­â®®â®¯â®°â®±â®²â®³â®´â®µâ®¶â®·â®¸â®¹â®ºâ®»â®¼â®½â®¾â®¿ +⯀â¯â¯‚⯃⯄⯅⯆⯇⯈⯉⯊⯋⯌â¯â¯Žâ¯â¯â¯‘⯒⯓⯔⯕⯖⯗⯘⯙⯚⯛⯜â¯â¯žâ¯Ÿâ¯ â¯¡â¯¢â¯£â¯¤â¯¥â¯¦â¯§â¯¨â¯©â¯ªâ¯«â¯¬â¯­â¯®â¯¯â¯°â¯±â¯²â¯³â¯´â¯µâ¯¶â¯·â¯¸â¯¹â¯ºâ¯»â¯¼â¯½â¯¾â¯¿ + +Free block (U+2C00-U+2E7F): + +â°€â°â°‚ⰃⰄⰅⰆⰇⰈⰉⰊⰋⰌâ°â°Žâ°â°â°‘ⰒⰓⰔⰕⰖⰗⰘⰙⰚⰛⰜâ°â°žâ°Ÿâ° â°¡â°¢â°£â°¤â°¥â°¦â°§â°¨â°©â°ªâ°«â°¬â°­â°®â°¯â°°â°±â°²â°³â°´â°µâ°¶â°·â°¸â°¹â°ºâ°»â°¼â°½â°¾â°¿ +â±€â±â±‚ⱃⱄⱅⱆⱇⱈⱉⱊⱋⱌâ±â±Žâ±â±â±‘ⱒⱓⱔⱕⱖⱗⱘⱙⱚⱛⱜâ±â±žâ±Ÿâ± â±¡â±¢â±£â±¤â±¥â±¦â±§â±¨â±©â±ªâ±«â±¬â±­â±®â±¯â±°â±±â±²â±³â±´â±µâ±¶â±·â±¸â±¹â±ºâ±»â±¼â±½â±¾â±¿ +â²€â²â²‚ⲃⲄⲅⲆⲇⲈⲉⲊⲋⲌâ²â²Žâ²â²â²‘ⲒⲓⲔⲕⲖⲗⲘⲙⲚⲛⲜâ²â²žâ²Ÿâ² â²¡â²¢â²£â²¤â²¥â²¦â²§â²¨â²©â²ªâ²«â²¬â²­â²®â²¯â²°â²±â²²â²³â²´â²µâ²¶â²·â²¸â²¹â²ºâ²»â²¼â²½â²¾â²¿ +â³€â³â³‚ⳃⳄⳅⳆⳇⳈⳉⳊⳋⳌâ³â³Žâ³â³â³‘ⳒⳓⳔⳕⳖⳗⳘⳙⳚⳛⳜâ³â³žâ³Ÿâ³ â³¡â³¢â³£â³¤â³¥â³¦â³§â³¨â³©â³ªâ³«â³¬â³­â³®â³¯â³°â³±â³²â³³â³´â³µâ³¶â³·â³¸â³¹â³ºâ³»â³¼â³½â³¾â³¿ +â´€â´â´‚ⴃⴄⴅⴆⴇⴈⴉⴊⴋⴌâ´â´Žâ´â´â´‘ⴒⴓⴔⴕⴖⴗⴘⴙⴚⴛⴜâ´â´žâ´Ÿâ´ â´¡â´¢â´£â´¤â´¥â´¦â´§â´¨â´©â´ªâ´«â´¬â´­â´®â´¯â´°â´±â´²â´³â´´â´µâ´¶â´·â´¸â´¹â´ºâ´»â´¼â´½â´¾â´¿ +âµ€âµâµ‚ⵃⵄⵅⵆⵇⵈⵉⵊⵋⵌâµâµŽâµâµâµ‘ⵒⵓⵔⵕⵖⵗⵘⵙⵚⵛⵜâµâµžâµŸâµ âµ¡âµ¢âµ£âµ¤âµ¥âµ¦âµ§âµ¨âµ©âµªâµ«âµ¬âµ­âµ®âµ¯âµ°âµ±âµ²âµ³âµ´âµµâµ¶âµ·âµ¸âµ¹âµºâµ»âµ¼âµ½âµ¾âµ¿ +ⶀâ¶â¶‚ⶃⶄⶅⶆⶇⶈⶉⶊⶋⶌâ¶â¶Žâ¶â¶â¶‘ⶒⶓⶔⶕⶖ⶗⶘⶙⶚⶛⶜â¶â¶žâ¶Ÿâ¶ â¶¡â¶¢â¶£â¶¤â¶¥â¶¦â¶§â¶¨â¶©â¶ªâ¶«â¶¬â¶­â¶®â¶¯â¶°â¶±â¶²â¶³â¶´â¶µâ¶¶â¶·â¶¸â¶¹â¶ºâ¶»â¶¼â¶½â¶¾â¶¿ +â·€â·â·‚ⷃⷄⷅⷆ⷇ⷈⷉⷊⷋⷌâ·â·Žâ·â·â·‘ⷒⷓⷔⷕⷖ⷗ⷘⷙⷚⷛⷜâ·â·žâ·Ÿâ· â·¡â·¢â·£â·¤â·¥â·¦â·§â·¨â·©â·ªâ·«â·¬â·­â·®â·¯â·°â·±â·²â·³â·´â·µâ·¶â··â·¸â·¹â·ºâ·»â·¼â·½â·¾â·¿ +⸀â¸â¸‚⸃⸄⸅⸆⸇⸈⸉⸊⸋⸌â¸â¸Žâ¸â¸â¸‘⸒⸓⸔⸕⸖⸗⸘⸙⸚⸛⸜â¸â¸žâ¸Ÿâ¸ â¸¡â¸¢â¸£â¸¤â¸¥â¸¦â¸§â¸¨â¸©â¸ªâ¸«â¸¬â¸­â¸®â¸¯â¸°â¸±â¸²â¸³â¸´â¸µâ¸¶â¸·â¸¸â¸¹â¸ºâ¸»â¸¼â¸½â¸¾â¸¿ +â¹€â¹â¹‚⹃⹄⹅⹆⹇⹈⹉⹊⹋⹌â¹â¹Žâ¹â¹â¹‘⹒⹓⹔⹕⹖⹗⹘⹙⹚⹛⹜â¹â¹žâ¹Ÿâ¹ â¹¡â¹¢â¹£â¹¤â¹¥â¹¦â¹§â¹¨â¹©â¹ªâ¹«â¹¬â¹­â¹®â¹¯â¹°â¹±â¹²â¹³â¹´â¹µâ¹¶â¹·â¹¸â¹¹â¹ºâ¹»â¹¼â¹½â¹¾â¹¿ + +CJK Radicals Supplement (U+2E80-U+2EFF): + +⺀âºâº‚⺃⺄⺅⺆⺇⺈⺉⺊⺋⺌âºâºŽâºâºâº‘⺒⺓⺔⺕⺖⺗⺘⺙⺚⺛⺜âºâºžâºŸ +⺠⺡⺢⺣⺤⺥⺦⺧⺨⺩⺪⺫⺬⺭⺮⺯⺰⺱⺲⺳⺴⺵⺶⺷⺸⺹⺺⺻⺼⺽⺾⺿ +⻀â»â»‚⻃⻄⻅⻆⻇⻈⻉⻊⻋⻌â»â»Žâ»â»â»‘⻒⻓⻔⻕⻖⻗⻘⻙⻚⻛⻜â»â»žâ»Ÿ +⻠⻡⻢⻣⻤⻥⻦⻧⻨⻩⻪⻫⻬⻭⻮⻯⻰⻱⻲⻳⻴⻵⻶⻷⻸⻹⻺⻻⻼⻽⻾⻿ + +Kangxi Radicals (U+2F00-U+2FDF): + +â¼€â¼â¼‚⼃⼄⼅⼆⼇⼈⼉⼊⼋⼌â¼â¼Žâ¼â¼â¼‘⼒⼓⼔⼕⼖⼗⼘⼙⼚⼛⼜â¼â¼žâ¼Ÿ +⼠⼡⼢⼣⼤⼥⼦⼧⼨⼩⼪⼫⼬⼭⼮⼯⼰⼱⼲⼳⼴⼵⼶⼷⼸⼹⼺⼻⼼⼽⼾⼿ +â½€â½â½‚⽃⽄⽅⽆⽇⽈⽉⽊⽋⽌â½â½Žâ½â½â½‘⽒⽓⽔⽕⽖⽗⽘⽙⽚⽛⽜â½â½žâ½Ÿ +⽠⽡⽢⽣⽤⽥⽦⽧⽨⽩⽪⽫⽬⽭⽮⽯⽰⽱⽲⽳⽴⽵⽶⽷⽸⽹⽺⽻⽼⽽⽾⽿ +â¾€â¾â¾‚⾃⾄⾅⾆⾇⾈⾉⾊⾋⾌â¾â¾Žâ¾â¾â¾‘⾒⾓⾔⾕⾖⾗⾘⾙⾚⾛⾜â¾â¾žâ¾Ÿ +⾠⾡⾢⾣⾤⾥⾦⾧⾨⾩⾪⾫⾬⾭⾮⾯⾰⾱⾲⾳⾴⾵⾶⾷⾸⾹⾺⾻⾼⾽⾾⾿ +â¿€â¿â¿‚⿃⿄⿅⿆⿇⿈⿉⿊⿋⿌â¿â¿Žâ¿â¿â¿‘⿒⿓⿔⿕⿖⿗⿘⿙⿚⿛⿜â¿â¿žâ¿Ÿ + +Free block (U+2FE0-U+2FEF): + +⿠⿡⿢⿣⿤⿥⿦⿧⿨⿩⿪⿫⿬⿭⿮⿯ + +Ideographic Description Characters (U+2FF0-U+2FFF): + +⿰⿱⿲⿳⿴⿵⿶⿷⿸⿹⿺⿻⿼⿽⿾⿿ + +CJK Symbols and Punctuation (U+3000-U+303F): + + ã€ã€‚〃〄々〆〇〈〉《》「ã€ã€Žã€ã€ã€‘〒〓〔〕〖〗〘〙〚〛〜ã€ã€žã€Ÿ +〠〡〢〣〤〥〦〧〨〩◌〪◌〫◌〬◌〭◌〮◌〯〰〱〲〳〴〵〶〷〸〹〺〻〼〽〾〿 + +Hiragana (U+3040-U+309F): + +ã€ãã‚ãƒã„ã…ã†ã‡ãˆã‰ãŠã‹ãŒããŽããã‘ã’ã“ã”ã•ã–ã—ã˜ã™ãšã›ãœããžãŸ +ã ã¡ã¢ã£ã¤ã¥ã¦ã§ã¨ã©ãªã«ã¬ã­ã®ã¯ã°ã±ã²ã³ã´ãµã¶ã·ã¸ã¹ãºã»ã¼ã½ã¾ã¿ +ã‚€ã‚もゃやゅゆょよらりるれã‚ã‚Žã‚ã‚ゑをんゔゕゖ゗゘◌゙◌゚゛゜ã‚ã‚žã‚Ÿ + +Katakana (U+30A0-U+30FF): + +゠ァアィイゥウェエォオカガキギクグケゲコゴサザシジスズセゼソゾタ +ダãƒãƒ‚ッツヅテデトドナニヌãƒãƒŽãƒãƒãƒ‘ヒビピフブプヘベペホボãƒãƒžãƒŸ +ムメモャヤュユョヨラリルレロヮワヰヱヲンヴヵヶヷヸヹヺ・ーヽヾヿ + +Bopomofo (U+3100-U+312F): + +ã„€ã„㄂㄃㄄ㄅㄆㄇㄈㄉㄊㄋㄌã„ã„Žã„ã„ㄑㄒㄓㄔㄕㄖㄗㄘㄙㄚㄛㄜã„ã„žã„Ÿ +ㄠㄡㄢㄣㄤㄥㄦㄧㄨㄩㄪㄫㄬㄭㄮㄯ + +Hangul Compatibility Jamo (U+3130-U+318F): + +㄰ㄱㄲㄳㄴㄵㄶㄷㄸㄹㄺㄻㄼㄽㄾㄿㅀã…ㅂㅃㅄㅅㅆㅇㅈㅉㅊㅋㅌã…ã…Žã… +ã…ㅑㅒㅓㅔㅕㅖㅗㅘㅙㅚㅛㅜã…ㅞㅟㅠㅡㅢㅣㅤㅥㅦㅧㅨㅩㅪㅫㅬㅭㅮㅯ +ㅰㅱㅲㅳㅴㅵㅶㅷㅸㅹㅺㅻㅼㅽㅾㅿㆀã†ã†‚ㆃㆄㆅㆆㆇㆈㆉㆊㆋㆌã†ã†Žã† + +Kanbun (U+3190-U+319F): + +ã†ã†‘㆒㆓㆔㆕㆖㆗㆘㆙㆚㆛㆜ã†ã†žã†Ÿ + +Bopomofo Extended (U+31A0-U+31BF): + +ㆠㆡㆢㆣㆤㆥㆦㆧㆨㆩㆪㆫㆬㆭㆮㆯㆰㆱㆲㆳㆴㆵㆶㆷㆸㆹㆺㆻㆼㆽㆾㆿ + +Free block (U+31C0-U+31EF): + +㇀ã‡ã‡‚㇃㇄㇅㇆㇇㇈㇉㇊㇋㇌ã‡ã‡Žã‡ã‡ã‡‘㇒㇓㇔㇕㇖㇗㇘㇙㇚㇛㇜ã‡ã‡žã‡Ÿ +㇠㇡㇢㇣㇤㇥㇦㇧㇨㇩㇪㇫㇬㇭㇮㇯ + +Katakana Phonetic Extensions (U+31F0-U+31FF): + +ㇰㇱㇲㇳㇴㇵㇶㇷㇸㇹㇺㇻㇼㇽㇾㇿ + +Enclosed CJK Letters and Months (U+3200-U+32FF): + +㈀ãˆãˆ‚㈃㈄㈅㈆㈇㈈㈉㈊㈋㈌ãˆãˆŽãˆãˆãˆ‘㈒㈓㈔㈕㈖㈗㈘㈙㈚㈛㈜ãˆãˆžãˆŸ +㈠㈡㈢㈣㈤㈥㈦㈧㈨㈩㈪㈫㈬㈭㈮㈯㈰㈱㈲㈳㈴㈵㈶㈷㈸㈹㈺㈻㈼㈽㈾㈿ +㉀ã‰ã‰‚㉃㉄㉅㉆㉇㉈㉉㉊㉋㉌ã‰ã‰Žã‰ã‰ã‰‘㉒㉓㉔㉕㉖㉗㉘㉙㉚㉛㉜ã‰ã‰žã‰Ÿ +㉠㉡㉢㉣㉤㉥㉦㉧㉨㉩㉪㉫㉬㉭㉮㉯㉰㉱㉲㉳㉴㉵㉶㉷㉸㉹㉺㉻㉼㉽㉾㉿ +㊀ãŠãŠ‚㊃㊄㊅㊆㊇㊈㊉㊊㊋㊌ãŠãŠŽãŠãŠãŠ‘㊒㊓㊔㊕㊖㊗㊘㊙㊚㊛㊜ãŠãŠžãŠŸ +㊠㊡㊢㊣㊤㊥㊦㊧㊨㊩㊪㊫㊬㊭㊮㊯㊰㊱㊲㊳㊴㊵㊶㊷㊸㊹㊺㊻㊼㊽㊾㊿ +ã‹€ã‹ã‹‚㋃㋄㋅㋆㋇㋈㋉㋊㋋㋌ã‹ã‹Žã‹ã‹ã‹‘㋒㋓㋔㋕㋖㋗㋘㋙㋚㋛㋜ã‹ã‹žã‹Ÿ +㋠㋡㋢㋣㋤㋥㋦㋧㋨㋩㋪㋫㋬㋭㋮㋯㋰㋱㋲㋳㋴㋵㋶㋷㋸㋹㋺㋻㋼㋽㋾㋿ + +CJK Compatibility (U+3300-U+33FF): + +㌀ãŒãŒ‚㌃㌄㌅㌆㌇㌈㌉㌊㌋㌌ãŒãŒŽãŒãŒãŒ‘㌒㌓㌔㌕㌖㌗㌘㌙㌚㌛㌜ãŒãŒžãŒŸ +㌠㌡㌢㌣㌤㌥㌦㌧㌨㌩㌪㌫㌬㌭㌮㌯㌰㌱㌲㌳㌴㌵㌶㌷㌸㌹㌺㌻㌼㌽㌾㌿ +ã€ãã‚ãƒã„ã…ã†ã‡ãˆã‰ãŠã‹ãŒããŽããã‘ã’ã“ã”ã•ã–ã—ã˜ã™ãšã›ãœããžãŸ +ã ã¡ã¢ã£ã¤ã¥ã¦ã§ã¨ã©ãªã«ã¬ã­ã®ã¯ã°ã±ã²ã³ã´ãµã¶ã·ã¸ã¹ãºã»ã¼ã½ã¾ã¿ +㎀ãŽãŽ‚㎃㎄㎅㎆㎇㎈㎉㎊㎋㎌ãŽãŽŽãŽãŽãŽ‘㎒㎓㎔㎕㎖㎗㎘㎙㎚㎛㎜ãŽãŽžãŽŸ +㎠㎡㎢㎣㎤㎥㎦㎧㎨㎩㎪㎫㎬㎭㎮㎯㎰㎱㎲㎳㎴㎵㎶㎷㎸㎹㎺㎻㎼㎽㎾㎿ +ã€ãã‚ãƒã„ã…ã†ã‡ãˆã‰ãŠã‹ãŒããŽããã‘ã’ã“ã”ã•ã–ã—ã˜ã™ãšã›ãœããžãŸ +ã ã¡ã¢ã£ã¤ã¥ã¦ã§ã¨ã©ãªã«ã¬ã­ã®ã¯ã°ã±ã²ã³ã´ãµã¶ã·ã¸ã¹ãºã»ã¼ã½ã¾ã¿ + +CJK Unified Ideographs Extension A (U+3400-U+4DBF): + +ã€ãã‚ãƒã„ã…ã†ã‡ãˆã‰ãŠã‹ãŒããŽããã‘ã’ã“ã”ã•ã–ã—ã˜ã™ãšã›ãœããžãŸ +ã ã¡ã¢ã£ã¤ã¥ã¦ã§ã¨ã©ãªã«ã¬ã­ã®ã¯ã°ã±ã²ã³ã´ãµã¶ã·ã¸ã¹ãºã»ã¼ã½ã¾ã¿ +ã‘€ã‘㑂㑃㑄㑅㑆㑇㑈㑉㑊㑋㑌ã‘ã‘Žã‘ã‘㑑㑒㑓㑔㑕㑖㑗㑘㑙㑚㑛㑜ã‘ã‘žã‘Ÿ +㑠㑡㑢㑣㑤㑥㑦㑧㑨㑩㑪㑫㑬㑭㑮㑯㑰㑱㑲㑳㑴㑵㑶㑷㑸㑹㑺㑻㑼㑽㑾㑿 +ã’€ã’㒂㒃㒄㒅㒆㒇㒈㒉㒊㒋㒌ã’ã’Žã’ã’㒑㒒㒓㒔㒕㒖㒗㒘㒙㒚㒛㒜ã’ã’žã’Ÿ +㒠㒡㒢㒣㒤㒥㒦㒧㒨㒩㒪㒫㒬㒭㒮㒯㒰㒱㒲㒳㒴㒵㒶㒷㒸㒹㒺㒻㒼㒽㒾㒿 +ã“€ã“㓂㓃㓄㓅㓆㓇㓈㓉㓊㓋㓌ã“ã“Žã“ã“㓑㓒㓓㓔㓕㓖㓗㓘㓙㓚㓛㓜ã“ã“žã“Ÿ +㓠㓡㓢㓣㓤㓥㓦㓧㓨㓩㓪㓫㓬㓭㓮㓯㓰㓱㓲㓳㓴㓵㓶㓷㓸㓹㓺㓻㓼㓽㓾㓿 +㔀ã”㔂㔃㔄㔅㔆㔇㔈㔉㔊㔋㔌ã”㔎ã”ã”㔑㔒㔓㔔㔕㔖㔗㔘㔙㔚㔛㔜ã”㔞㔟 +㔠㔡㔢㔣㔤㔥㔦㔧㔨㔩㔪㔫㔬㔭㔮㔯㔰㔱㔲㔳㔴㔵㔶㔷㔸㔹㔺㔻㔼㔽㔾㔿 +ã•€ã•ã•‚㕃㕄㕅㕆㕇㕈㕉㕊㕋㕌ã•ã•Žã•ã•ã•‘㕒㕓㕔㕕㕖㕗㕘㕙㕚㕛㕜ã•ã•žã•Ÿ +㕠㕡㕢㕣㕤㕥㕦㕧㕨㕩㕪㕫㕬㕭㕮㕯㕰㕱㕲㕳㕴㕵㕶㕷㕸㕹㕺㕻㕼㕽㕾㕿 +ã–€ã–㖂㖃㖄㖅㖆㖇㖈㖉㖊㖋㖌ã–ã–Žã–ã–㖑㖒㖓㖔㖕㖖㖗㖘㖙㖚㖛㖜ã–ã–žã–Ÿ +㖠㖡㖢㖣㖤㖥㖦㖧㖨㖩㖪㖫㖬㖭㖮㖯㖰㖱㖲㖳㖴㖵㖶㖷㖸㖹㖺㖻㖼㖽㖾㖿 +ã—€ã—㗂㗃㗄㗅㗆㗇㗈㗉㗊㗋㗌ã—ã—Žã—ã—㗑㗒㗓㗔㗕㗖㗗㗘㗙㗚㗛㗜ã—ã—žã—Ÿ +㗠㗡㗢㗣㗤㗥㗦㗧㗨㗩㗪㗫㗬㗭㗮㗯㗰㗱㗲㗳㗴㗵㗶㗷㗸㗹㗺㗻㗼㗽㗾㗿 +㘀ã˜ã˜‚㘃㘄㘅㘆㘇㘈㘉㘊㘋㘌ã˜ã˜Žã˜ã˜ã˜‘㘒㘓㘔㘕㘖㘗㘘㘙㘚㘛㘜ã˜ã˜žã˜Ÿ +㘠㘡㘢㘣㘤㘥㘦㘧㘨㘩㘪㘫㘬㘭㘮㘯㘰㘱㘲㘳㘴㘵㘶㘷㘸㘹㘺㘻㘼㘽㘾㘿 +㙀ã™ã™‚㙃㙄㙅㙆㙇㙈㙉㙊㙋㙌ã™ã™Žã™ã™ã™‘㙒㙓㙔㙕㙖㙗㙘㙙㙚㙛㙜ã™ã™žã™Ÿ +㙠㙡㙢㙣㙤㙥㙦㙧㙨㙩㙪㙫㙬㙭㙮㙯㙰㙱㙲㙳㙴㙵㙶㙷㙸㙹㙺㙻㙼㙽㙾㙿 +㚀ãšãš‚㚃㚄㚅㚆㚇㚈㚉㚊㚋㚌ãšãšŽãšãšãš‘㚒㚓㚔㚕㚖㚗㚘㚙㚚㚛㚜ãšãšžãšŸ +㚠㚡㚢㚣㚤㚥㚦㚧㚨㚩㚪㚫㚬㚭㚮㚯㚰㚱㚲㚳㚴㚵㚶㚷㚸㚹㚺㚻㚼㚽㚾㚿 +㛀ã›ã›‚㛃㛄㛅㛆㛇㛈㛉㛊㛋㛌ã›ã›Žã›ã›ã›‘㛒㛓㛔㛕㛖㛗㛘㛙㛚㛛㛜ã›ã›žã›Ÿ +㛠㛡㛢㛣㛤㛥㛦㛧㛨㛩㛪㛫㛬㛭㛮㛯㛰㛱㛲㛳㛴㛵㛶㛷㛸㛹㛺㛻㛼㛽㛾㛿 +㜀ãœãœ‚㜃㜄㜅㜆㜇㜈㜉㜊㜋㜌ãœãœŽãœãœãœ‘㜒㜓㜔㜕㜖㜗㜘㜙㜚㜛㜜ãœãœžãœŸ +㜠㜡㜢㜣㜤㜥㜦㜧㜨㜩㜪㜫㜬㜭㜮㜯㜰㜱㜲㜳㜴㜵㜶㜷㜸㜹㜺㜻㜼㜽㜾㜿 +ã€ãã‚ãƒã„ã…ã†ã‡ãˆã‰ãŠã‹ãŒããŽããã‘ã’ã“ã”ã•ã–ã—ã˜ã™ãšã›ãœããžãŸ +ã ã¡ã¢ã£ã¤ã¥ã¦ã§ã¨ã©ãªã«ã¬ã­ã®ã¯ã°ã±ã²ã³ã´ãµã¶ã·ã¸ã¹ãºã»ã¼ã½ã¾ã¿ +㞀ãžãž‚㞃㞄㞅㞆㞇㞈㞉㞊㞋㞌ãžãžŽãžãžãž‘㞒㞓㞔㞕㞖㞗㞘㞙㞚㞛㞜ãžãžžãžŸ +㞠㞡㞢㞣㞤㞥㞦㞧㞨㞩㞪㞫㞬㞭㞮㞯㞰㞱㞲㞳㞴㞵㞶㞷㞸㞹㞺㞻㞼㞽㞾㞿 +㟀ãŸãŸ‚㟃㟄㟅㟆㟇㟈㟉㟊㟋㟌ãŸãŸŽãŸãŸãŸ‘㟒㟓㟔㟕㟖㟗㟘㟙㟚㟛㟜ãŸãŸžãŸŸ +㟠㟡㟢㟣㟤㟥㟦㟧㟨㟩㟪㟫㟬㟭㟮㟯㟰㟱㟲㟳㟴㟵㟶㟷㟸㟹㟺㟻㟼㟽㟾㟿 +ã €ã ã ‚㠃㠄㠅㠆㠇㠈㠉㠊㠋㠌ã ã Žã ã ã ‘㠒㠓㠔㠕㠖㠗㠘㠙㠚㠛㠜ã ã žã Ÿ +㠠㠡㠢㠣㠤㠥㠦㠧㠨㠩㠪㠫㠬㠭㠮㠯㠰㠱㠲㠳㠴㠵㠶㠷㠸㠹㠺㠻㠼㠽㠾㠿 +ã¡€ã¡ã¡‚㡃㡄㡅㡆㡇㡈㡉㡊㡋㡌ã¡ã¡Žã¡ã¡ã¡‘㡒㡓㡔㡕㡖㡗㡘㡙㡚㡛㡜ã¡ã¡žã¡Ÿ +㡠㡡㡢㡣㡤㡥㡦㡧㡨㡩㡪㡫㡬㡭㡮㡯㡰㡱㡲㡳㡴㡵㡶㡷㡸㡹㡺㡻㡼㡽㡾㡿 +㢀ã¢ã¢‚㢃㢄㢅㢆㢇㢈㢉㢊㢋㢌ã¢ã¢Žã¢ã¢ã¢‘㢒㢓㢔㢕㢖㢗㢘㢙㢚㢛㢜ã¢ã¢žã¢Ÿ +㢠㢡㢢㢣㢤㢥㢦㢧㢨㢩㢪㢫㢬㢭㢮㢯㢰㢱㢲㢳㢴㢵㢶㢷㢸㢹㢺㢻㢼㢽㢾㢿 +㣀ã£ã£‚㣃㣄㣅㣆㣇㣈㣉㣊㣋㣌ã£ã£Žã£ã£ã£‘㣒㣓㣔㣕㣖㣗㣘㣙㣚㣛㣜ã£ã£žã£Ÿ +㣠㣡㣢㣣㣤㣥㣦㣧㣨㣩㣪㣫㣬㣭㣮㣯㣰㣱㣲㣳㣴㣵㣶㣷㣸㣹㣺㣻㣼㣽㣾㣿 +㤀ã¤ã¤‚㤃㤄㤅㤆㤇㤈㤉㤊㤋㤌ã¤ã¤Žã¤ã¤ã¤‘㤒㤓㤔㤕㤖㤗㤘㤙㤚㤛㤜ã¤ã¤žã¤Ÿ +㤠㤡㤢㤣㤤㤥㤦㤧㤨㤩㤪㤫㤬㤭㤮㤯㤰㤱㤲㤳㤴㤵㤶㤷㤸㤹㤺㤻㤼㤽㤾㤿 +㥀ã¥ã¥‚㥃㥄㥅㥆㥇㥈㥉㥊㥋㥌ã¥ã¥Žã¥ã¥ã¥‘㥒㥓㥔㥕㥖㥗㥘㥙㥚㥛㥜ã¥ã¥žã¥Ÿ +㥠㥡㥢㥣㥤㥥㥦㥧㥨㥩㥪㥫㥬㥭㥮㥯㥰㥱㥲㥳㥴㥵㥶㥷㥸㥹㥺㥻㥼㥽㥾㥿 +㦀ã¦ã¦‚㦃㦄㦅㦆㦇㦈㦉㦊㦋㦌ã¦ã¦Žã¦ã¦ã¦‘㦒㦓㦔㦕㦖㦗㦘㦙㦚㦛㦜ã¦ã¦žã¦Ÿ +㦠㦡㦢㦣㦤㦥㦦㦧㦨㦩㦪㦫㦬㦭㦮㦯㦰㦱㦲㦳㦴㦵㦶㦷㦸㦹㦺㦻㦼㦽㦾㦿 +㧀ã§ã§‚㧃㧄㧅㧆㧇㧈㧉㧊㧋㧌ã§ã§Žã§ã§ã§‘㧒㧓㧔㧕㧖㧗㧘㧙㧚㧛㧜ã§ã§žã§Ÿ +㧠㧡㧢㧣㧤㧥㧦㧧㧨㧩㧪㧫㧬㧭㧮㧯㧰㧱㧲㧳㧴㧵㧶㧷㧸㧹㧺㧻㧼㧽㧾㧿 +㨀ã¨ã¨‚㨃㨄㨅㨆㨇㨈㨉㨊㨋㨌ã¨ã¨Žã¨ã¨ã¨‘㨒㨓㨔㨕㨖㨗㨘㨙㨚㨛㨜ã¨ã¨žã¨Ÿ +㨠㨡㨢㨣㨤㨥㨦㨧㨨㨩㨪㨫㨬㨭㨮㨯㨰㨱㨲㨳㨴㨵㨶㨷㨸㨹㨺㨻㨼㨽㨾㨿 +ã©€ã©ã©‚㩃㩄㩅㩆㩇㩈㩉㩊㩋㩌ã©ã©Žã©ã©ã©‘㩒㩓㩔㩕㩖㩗㩘㩙㩚㩛㩜ã©ã©žã©Ÿ +㩠㩡㩢㩣㩤㩥㩦㩧㩨㩩㩪㩫㩬㩭㩮㩯㩰㩱㩲㩳㩴㩵㩶㩷㩸㩹㩺㩻㩼㩽㩾㩿 +㪀ãªãª‚㪃㪄㪅㪆㪇㪈㪉㪊㪋㪌ãªãªŽãªãªãª‘㪒㪓㪔㪕㪖㪗㪘㪙㪚㪛㪜ãªãªžãªŸ +㪠㪡㪢㪣㪤㪥㪦㪧㪨㪩㪪㪫㪬㪭㪮㪯㪰㪱㪲㪳㪴㪵㪶㪷㪸㪹㪺㪻㪼㪽㪾㪿 +ã«€ã«ã«‚㫃㫄㫅㫆㫇㫈㫉㫊㫋㫌ã«ã«Žã«ã«ã«‘㫒㫓㫔㫕㫖㫗㫘㫙㫚㫛㫜ã«ã«žã«Ÿ +㫠㫡㫢㫣㫤㫥㫦㫧㫨㫩㫪㫫㫬㫭㫮㫯㫰㫱㫲㫳㫴㫵㫶㫷㫸㫹㫺㫻㫼㫽㫾㫿 +㬀ã¬ã¬‚㬃㬄㬅㬆㬇㬈㬉㬊㬋㬌ã¬ã¬Žã¬ã¬ã¬‘㬒㬓㬔㬕㬖㬗㬘㬙㬚㬛㬜ã¬ã¬žã¬Ÿ +㬠㬡㬢㬣㬤㬥㬦㬧㬨㬩㬪㬫㬬㬭㬮㬯㬰㬱㬲㬳㬴㬵㬶㬷㬸㬹㬺㬻㬼㬽㬾㬿 +ã­€ã­ã­‚㭃㭄㭅㭆㭇㭈㭉㭊㭋㭌ã­ã­Žã­ã­ã­‘㭒㭓㭔㭕㭖㭗㭘㭙㭚㭛㭜ã­ã­žã­Ÿ +㭠㭡㭢㭣㭤㭥㭦㭧㭨㭩㭪㭫㭬㭭㭮㭯㭰㭱㭲㭳㭴㭵㭶㭷㭸㭹㭺㭻㭼㭽㭾㭿 +㮀ã®ã®‚㮃㮄㮅㮆㮇㮈㮉㮊㮋㮌ã®ã®Žã®ã®ã®‘㮒㮓㮔㮕㮖㮗㮘㮙㮚㮛㮜ã®ã®žã®Ÿ +㮠㮡㮢㮣㮤㮥㮦㮧㮨㮩㮪㮫㮬㮭㮮㮯㮰㮱㮲㮳㮴㮵㮶㮷㮸㮹㮺㮻㮼㮽㮾㮿 +㯀ã¯ã¯‚㯃㯄㯅㯆㯇㯈㯉㯊㯋㯌ã¯ã¯Žã¯ã¯ã¯‘㯒㯓㯔㯕㯖㯗㯘㯙㯚㯛㯜ã¯ã¯žã¯Ÿ +㯠㯡㯢㯣㯤㯥㯦㯧㯨㯩㯪㯫㯬㯭㯮㯯㯰㯱㯲㯳㯴㯵㯶㯷㯸㯹㯺㯻㯼㯽㯾㯿 +ã°€ã°ã°‚㰃㰄㰅㰆㰇㰈㰉㰊㰋㰌ã°ã°Žã°ã°ã°‘㰒㰓㰔㰕㰖㰗㰘㰙㰚㰛㰜ã°ã°žã°Ÿ +㰠㰡㰢㰣㰤㰥㰦㰧㰨㰩㰪㰫㰬㰭㰮㰯㰰㰱㰲㰳㰴㰵㰶㰷㰸㰹㰺㰻㰼㰽㰾㰿 +ã±€ã±ã±‚㱃㱄㱅㱆㱇㱈㱉㱊㱋㱌ã±ã±Žã±ã±ã±‘㱒㱓㱔㱕㱖㱗㱘㱙㱚㱛㱜ã±ã±žã±Ÿ +㱠㱡㱢㱣㱤㱥㱦㱧㱨㱩㱪㱫㱬㱭㱮㱯㱰㱱㱲㱳㱴㱵㱶㱷㱸㱹㱺㱻㱼㱽㱾㱿 +ã²€ã²ã²‚㲃㲄㲅㲆㲇㲈㲉㲊㲋㲌ã²ã²Žã²ã²ã²‘㲒㲓㲔㲕㲖㲗㲘㲙㲚㲛㲜ã²ã²žã²Ÿ +㲠㲡㲢㲣㲤㲥㲦㲧㲨㲩㲪㲫㲬㲭㲮㲯㲰㲱㲲㲳㲴㲵㲶㲷㲸㲹㲺㲻㲼㲽㲾㲿 +ã³€ã³ã³‚㳃㳄㳅㳆㳇㳈㳉㳊㳋㳌ã³ã³Žã³ã³ã³‘㳒㳓㳔㳕㳖㳗㳘㳙㳚㳛㳜ã³ã³žã³Ÿ +㳠㳡㳢㳣㳤㳥㳦㳧㳨㳩㳪㳫㳬㳭㳮㳯㳰㳱㳲㳳㳴㳵㳶㳷㳸㳹㳺㳻㳼㳽㳾㳿 +ã´€ã´ã´‚㴃㴄㴅㴆㴇㴈㴉㴊㴋㴌ã´ã´Žã´ã´ã´‘㴒㴓㴔㴕㴖㴗㴘㴙㴚㴛㴜ã´ã´žã´Ÿ +㴠㴡㴢㴣㴤㴥㴦㴧㴨㴩㴪㴫㴬㴭㴮㴯㴰㴱㴲㴳㴴㴵㴶㴷㴸㴹㴺㴻㴼㴽㴾㴿 +ãµ€ãµãµ‚㵃㵄㵅㵆㵇㵈㵉㵊㵋㵌ãµãµŽãµãµãµ‘㵒㵓㵔㵕㵖㵗㵘㵙㵚㵛㵜ãµãµžãµŸ +㵠㵡㵢㵣㵤㵥㵦㵧㵨㵩㵪㵫㵬㵭㵮㵯㵰㵱㵲㵳㵴㵵㵶㵷㵸㵹㵺㵻㵼㵽㵾㵿 +㶀ã¶ã¶‚㶃㶄㶅㶆㶇㶈㶉㶊㶋㶌ã¶ã¶Žã¶ã¶ã¶‘㶒㶓㶔㶕㶖㶗㶘㶙㶚㶛㶜ã¶ã¶žã¶Ÿ +㶠㶡㶢㶣㶤㶥㶦㶧㶨㶩㶪㶫㶬㶭㶮㶯㶰㶱㶲㶳㶴㶵㶶㶷㶸㶹㶺㶻㶼㶽㶾㶿 +ã·€ã·ã·‚㷃㷄㷅㷆㷇㷈㷉㷊㷋㷌ã·ã·Žã·ã·ã·‘㷒㷓㷔㷕㷖㷗㷘㷙㷚㷛㷜ã·ã·žã·Ÿ +㷠㷡㷢㷣㷤㷥㷦㷧㷨㷩㷪㷫㷬㷭㷮㷯㷰㷱㷲㷳㷴㷵㷶㷷㷸㷹㷺㷻㷼㷽㷾㷿 +㸀ã¸ã¸‚㸃㸄㸅㸆㸇㸈㸉㸊㸋㸌ã¸ã¸Žã¸ã¸ã¸‘㸒㸓㸔㸕㸖㸗㸘㸙㸚㸛㸜ã¸ã¸žã¸Ÿ +㸠㸡㸢㸣㸤㸥㸦㸧㸨㸩㸪㸫㸬㸭㸮㸯㸰㸱㸲㸳㸴㸵㸶㸷㸸㸹㸺㸻㸼㸽㸾㸿 +ã¹€ã¹ã¹‚㹃㹄㹅㹆㹇㹈㹉㹊㹋㹌ã¹ã¹Žã¹ã¹ã¹‘㹒㹓㹔㹕㹖㹗㹘㹙㹚㹛㹜ã¹ã¹žã¹Ÿ +㹠㹡㹢㹣㹤㹥㹦㹧㹨㹩㹪㹫㹬㹭㹮㹯㹰㹱㹲㹳㹴㹵㹶㹷㹸㹹㹺㹻㹼㹽㹾㹿 +㺀ãºãº‚㺃㺄㺅㺆㺇㺈㺉㺊㺋㺌ãºãºŽãºãºãº‘㺒㺓㺔㺕㺖㺗㺘㺙㺚㺛㺜ãºãºžãºŸ +㺠㺡㺢㺣㺤㺥㺦㺧㺨㺩㺪㺫㺬㺭㺮㺯㺰㺱㺲㺳㺴㺵㺶㺷㺸㺹㺺㺻㺼㺽㺾㺿 +㻀ã»ã»‚㻃㻄㻅㻆㻇㻈㻉㻊㻋㻌ã»ã»Žã»ã»ã»‘㻒㻓㻔㻕㻖㻗㻘㻙㻚㻛㻜ã»ã»žã»Ÿ +㻠㻡㻢㻣㻤㻥㻦㻧㻨㻩㻪㻫㻬㻭㻮㻯㻰㻱㻲㻳㻴㻵㻶㻷㻸㻹㻺㻻㻼㻽㻾㻿 +ã¼€ã¼ã¼‚㼃㼄㼅㼆㼇㼈㼉㼊㼋㼌ã¼ã¼Žã¼ã¼ã¼‘㼒㼓㼔㼕㼖㼗㼘㼙㼚㼛㼜ã¼ã¼žã¼Ÿ +㼠㼡㼢㼣㼤㼥㼦㼧㼨㼩㼪㼫㼬㼭㼮㼯㼰㼱㼲㼳㼴㼵㼶㼷㼸㼹㼺㼻㼼㼽㼾㼿 +ã½€ã½ã½‚㽃㽄㽅㽆㽇㽈㽉㽊㽋㽌ã½ã½Žã½ã½ã½‘㽒㽓㽔㽕㽖㽗㽘㽙㽚㽛㽜ã½ã½žã½Ÿ +㽠㽡㽢㽣㽤㽥㽦㽧㽨㽩㽪㽫㽬㽭㽮㽯㽰㽱㽲㽳㽴㽵㽶㽷㽸㽹㽺㽻㽼㽽㽾㽿 +ã¾€ã¾ã¾‚㾃㾄㾅㾆㾇㾈㾉㾊㾋㾌ã¾ã¾Žã¾ã¾ã¾‘㾒㾓㾔㾕㾖㾗㾘㾙㾚㾛㾜ã¾ã¾žã¾Ÿ +㾠㾡㾢㾣㾤㾥㾦㾧㾨㾩㾪㾫㾬㾭㾮㾯㾰㾱㾲㾳㾴㾵㾶㾷㾸㾹㾺㾻㾼㾽㾾㾿 +ã¿€ã¿ã¿‚㿃㿄㿅㿆㿇㿈㿉㿊㿋㿌ã¿ã¿Žã¿ã¿ã¿‘㿒㿓㿔㿕㿖㿗㿘㿙㿚㿛㿜ã¿ã¿žã¿Ÿ +㿠㿡㿢㿣㿤㿥㿦㿧㿨㿩㿪㿫㿬㿭㿮㿯㿰㿱㿲㿳㿴㿵㿶㿷㿸㿹㿺㿻㿼㿽㿾㿿 +䀀ä€ä€‚䀃䀄䀅䀆䀇䀈䀉䀊䀋䀌ä€ä€Žä€ä€ä€‘䀒䀓䀔䀕䀖䀗䀘䀙䀚䀛䀜ä€ä€žä€Ÿ +䀠䀡䀢䀣䀤䀥䀦䀧䀨䀩䀪䀫䀬䀭䀮䀯䀰䀱䀲䀳䀴䀵䀶䀷䀸䀹䀺䀻䀼䀽䀾䀿 +ä€ää‚äƒä„ä…ä†ä‡äˆä‰äŠä‹äŒääŽäää‘ä’ä“ä”ä•ä–ä—ä˜ä™äšä›äœääžäŸ +ä ä¡ä¢ä£ä¤ä¥ä¦ä§ä¨ä©äªä«ä¬ä­ä®ä¯ä°ä±ä²ä³ä´äµä¶ä·ä¸ä¹äºä»ä¼ä½ä¾ä¿ +ä‚€ä‚䂂䂃䂄䂅䂆䂇䂈䂉䂊䂋䂌ä‚ä‚Žä‚ä‚䂑䂒䂓䂔䂕䂖䂗䂘䂙䂚䂛䂜ä‚ä‚žä‚Ÿ +䂠䂡䂢䂣䂤䂥䂦䂧䂨䂩䂪䂫䂬䂭䂮䂯䂰䂱䂲䂳䂴䂵䂶䂷䂸䂹䂺䂻䂼䂽䂾䂿 +䃀äƒäƒ‚䃃䃄䃅䃆䃇䃈䃉䃊䃋䃌äƒäƒŽäƒäƒäƒ‘䃒䃓䃔䃕䃖䃗䃘䃙䃚䃛䃜äƒäƒžäƒŸ +䃠䃡䃢䃣䃤䃥䃦䃧䃨䃩䃪䃫䃬䃭䃮䃯䃰䃱䃲䃳䃴䃵䃶䃷䃸䃹䃺䃻䃼䃽䃾䃿 +ä„€ä„䄂䄃䄄䄅䄆䄇䄈䄉䄊䄋䄌ä„ä„Žä„ä„䄑䄒䄓䄔䄕䄖䄗䄘䄙䄚䄛䄜ä„ä„žä„Ÿ +䄠䄡䄢䄣䄤䄥䄦䄧䄨䄩䄪䄫䄬䄭䄮䄯䄰䄱䄲䄳䄴䄵䄶䄷䄸䄹䄺䄻䄼䄽䄾䄿 +ä…€ä…䅂䅃䅄䅅䅆䅇䅈䅉䅊䅋䅌ä…ä…Žä…ä…䅑䅒䅓䅔䅕䅖䅗䅘䅙䅚䅛䅜ä…ä…žä…Ÿ +䅠䅡䅢䅣䅤䅥䅦䅧䅨䅩䅪䅫䅬䅭䅮䅯䅰䅱䅲䅳䅴䅵䅶䅷䅸䅹䅺䅻䅼䅽䅾䅿 +䆀ä†ä†‚䆃䆄䆅䆆䆇䆈䆉䆊䆋䆌ä†ä†Žä†ä†ä†‘䆒䆓䆔䆕䆖䆗䆘䆙䆚䆛䆜ä†ä†žä†Ÿ +䆠䆡䆢䆣䆤䆥䆦䆧䆨䆩䆪䆫䆬䆭䆮䆯䆰䆱䆲䆳䆴䆵䆶䆷䆸䆹䆺䆻䆼䆽䆾䆿 +䇀ä‡ä‡‚䇃䇄䇅䇆䇇䇈䇉䇊䇋䇌ä‡ä‡Žä‡ä‡ä‡‘䇒䇓䇔䇕䇖䇗䇘䇙䇚䇛䇜ä‡ä‡žä‡Ÿ +䇠䇡䇢䇣䇤䇥䇦䇧䇨䇩䇪䇫䇬䇭䇮䇯䇰䇱䇲䇳䇴䇵䇶䇷䇸䇹䇺䇻䇼䇽䇾䇿 +䈀äˆäˆ‚䈃䈄䈅䈆䈇䈈䈉䈊䈋䈌äˆäˆŽäˆäˆäˆ‘䈒䈓䈔䈕䈖䈗䈘䈙䈚䈛䈜äˆäˆžäˆŸ +䈠䈡䈢䈣䈤䈥䈦䈧䈨䈩䈪䈫䈬䈭䈮䈯䈰䈱䈲䈳䈴䈵䈶䈷䈸䈹䈺䈻䈼䈽䈾䈿 +䉀ä‰ä‰‚䉃䉄䉅䉆䉇䉈䉉䉊䉋䉌ä‰ä‰Žä‰ä‰ä‰‘䉒䉓䉔䉕䉖䉗䉘䉙䉚䉛䉜ä‰ä‰žä‰Ÿ +䉠䉡䉢䉣䉤䉥䉦䉧䉨䉩䉪䉫䉬䉭䉮䉯䉰䉱䉲䉳䉴䉵䉶䉷䉸䉹䉺䉻䉼䉽䉾䉿 +䊀äŠäŠ‚䊃䊄䊅䊆䊇䊈䊉䊊䊋䊌äŠäŠŽäŠäŠäŠ‘䊒䊓䊔䊕䊖䊗䊘䊙䊚䊛䊜äŠäŠžäŠŸ +䊠䊡䊢䊣䊤䊥䊦䊧䊨䊩䊪䊫䊬䊭䊮䊯䊰䊱䊲䊳䊴䊵䊶䊷䊸䊹䊺䊻䊼䊽䊾䊿 +ä‹€ä‹ä‹‚䋃䋄䋅䋆䋇䋈䋉䋊䋋䋌ä‹ä‹Žä‹ä‹ä‹‘䋒䋓䋔䋕䋖䋗䋘䋙䋚䋛䋜ä‹ä‹žä‹Ÿ +䋠䋡䋢䋣䋤䋥䋦䋧䋨䋩䋪䋫䋬䋭䋮䋯䋰䋱䋲䋳䋴䋵䋶䋷䋸䋹䋺䋻䋼䋽䋾䋿 +䌀äŒäŒ‚䌃䌄䌅䌆䌇䌈䌉䌊䌋䌌äŒäŒŽäŒäŒäŒ‘䌒䌓䌔䌕䌖䌗䌘䌙䌚䌛䌜äŒäŒžäŒŸ +䌠䌡䌢䌣䌤䌥䌦䌧䌨䌩䌪䌫䌬䌭䌮䌯䌰䌱䌲䌳䌴䌵䌶䌷䌸䌹䌺䌻䌼䌽䌾䌿 +ä€ää‚äƒä„ä…ä†ä‡äˆä‰äŠä‹äŒääŽäää‘ä’ä“ä”ä•ä–ä—ä˜ä™äšä›äœääžäŸ +ä ä¡ä¢ä£ä¤ä¥ä¦ä§ä¨ä©äªä«ä¬ä­ä®ä¯ä°ä±ä²ä³ä´äµä¶ä·ä¸ä¹äºä»ä¼ä½ä¾ä¿ +䎀äŽäŽ‚䎃䎄䎅䎆䎇䎈䎉䎊䎋䎌äŽäŽŽäŽäŽäŽ‘䎒䎓䎔䎕䎖䎗䎘䎙䎚䎛䎜äŽäŽžäŽŸ +䎠䎡䎢䎣䎤䎥䎦䎧䎨䎩䎪䎫䎬䎭䎮䎯䎰䎱䎲䎳䎴䎵䎶䎷䎸䎹䎺䎻䎼䎽䎾䎿 +ä€ää‚äƒä„ä…ä†ä‡äˆä‰äŠä‹äŒääŽäää‘ä’ä“ä”ä•ä–ä—ä˜ä™äšä›äœääžäŸ +ä ä¡ä¢ä£ä¤ä¥ä¦ä§ä¨ä©äªä«ä¬ä­ä®ä¯ä°ä±ä²ä³ä´äµä¶ä·ä¸ä¹äºä»ä¼ä½ä¾ä¿ +ä€ää‚äƒä„ä…ä†ä‡äˆä‰äŠä‹äŒääŽäää‘ä’ä“ä”ä•ä–ä—ä˜ä™äšä›äœääžäŸ +ä ä¡ä¢ä£ä¤ä¥ä¦ä§ä¨ä©äªä«ä¬ä­ä®ä¯ä°ä±ä²ä³ä´äµä¶ä·ä¸ä¹äºä»ä¼ä½ä¾ä¿ +ä‘€ä‘䑂䑃䑄䑅䑆䑇䑈䑉䑊䑋䑌ä‘ä‘Žä‘ä‘䑑䑒䑓䑔䑕䑖䑗䑘䑙䑚䑛䑜ä‘ä‘žä‘Ÿ +䑠䑡䑢䑣䑤䑥䑦䑧䑨䑩䑪䑫䑬䑭䑮䑯䑰䑱䑲䑳䑴䑵䑶䑷䑸䑹䑺䑻䑼䑽䑾䑿 +ä’€ä’䒂䒃䒄䒅䒆䒇䒈䒉䒊䒋䒌ä’ä’Žä’ä’䒑䒒䒓䒔䒕䒖䒗䒘䒙䒚䒛䒜ä’ä’žä’Ÿ +䒠䒡䒢䒣䒤䒥䒦䒧䒨䒩䒪䒫䒬䒭䒮䒯䒰䒱䒲䒳䒴䒵䒶䒷䒸䒹䒺䒻䒼䒽䒾䒿 +ä“€ä“䓂䓃䓄䓅䓆䓇䓈䓉䓊䓋䓌ä“ä“Žä“ä“䓑䓒䓓䓔䓕䓖䓗䓘䓙䓚䓛䓜ä“ä“žä“Ÿ +䓠䓡䓢䓣䓤䓥䓦䓧䓨䓩䓪䓫䓬䓭䓮䓯䓰䓱䓲䓳䓴䓵䓶䓷䓸䓹䓺䓻䓼䓽䓾䓿 +䔀ä”䔂䔃䔄䔅䔆䔇䔈䔉䔊䔋䔌ä”䔎ä”ä”䔑䔒䔓䔔䔕䔖䔗䔘䔙䔚䔛䔜ä”䔞䔟 +䔠䔡䔢䔣䔤䔥䔦䔧䔨䔩䔪䔫䔬䔭䔮䔯䔰䔱䔲䔳䔴䔵䔶䔷䔸䔹䔺䔻䔼䔽䔾䔿 +ä•€ä•ä•‚䕃䕄䕅䕆䕇䕈䕉䕊䕋䕌ä•ä•Žä•ä•ä•‘䕒䕓䕔䕕䕖䕗䕘䕙䕚䕛䕜ä•ä•žä•Ÿ +䕠䕡䕢䕣䕤䕥䕦䕧䕨䕩䕪䕫䕬䕭䕮䕯䕰䕱䕲䕳䕴䕵䕶䕷䕸䕹䕺䕻䕼䕽䕾䕿 +ä–€ä–䖂䖃䖄䖅䖆䖇䖈䖉䖊䖋䖌ä–ä–Žä–ä–䖑䖒䖓䖔䖕䖖䖗䖘䖙䖚䖛䖜ä–ä–žä–Ÿ +䖠䖡䖢䖣䖤䖥䖦䖧䖨䖩䖪䖫䖬䖭䖮䖯䖰䖱䖲䖳䖴䖵䖶䖷䖸䖹䖺䖻䖼䖽䖾䖿 +ä—€ä—䗂䗃䗄䗅䗆䗇䗈䗉䗊䗋䗌ä—ä—Žä—ä—䗑䗒䗓䗔䗕䗖䗗䗘䗙䗚䗛䗜ä—ä—žä—Ÿ +䗠䗡䗢䗣䗤䗥䗦䗧䗨䗩䗪䗫䗬䗭䗮䗯䗰䗱䗲䗳䗴䗵䗶䗷䗸䗹䗺䗻䗼䗽䗾䗿 +䘀ä˜ä˜‚䘃䘄䘅䘆䘇䘈䘉䘊䘋䘌ä˜ä˜Žä˜ä˜ä˜‘䘒䘓䘔䘕䘖䘗䘘䘙䘚䘛䘜ä˜ä˜žä˜Ÿ +䘠䘡䘢䘣䘤䘥䘦䘧䘨䘩䘪䘫䘬䘭䘮䘯䘰䘱䘲䘳䘴䘵䘶䘷䘸䘹䘺䘻䘼䘽䘾䘿 +䙀ä™ä™‚䙃䙄䙅䙆䙇䙈䙉䙊䙋䙌ä™ä™Žä™ä™ä™‘䙒䙓䙔䙕䙖䙗䙘䙙䙚䙛䙜ä™ä™žä™Ÿ +䙠䙡䙢䙣䙤䙥䙦䙧䙨䙩䙪䙫䙬䙭䙮䙯䙰䙱䙲䙳䙴䙵䙶䙷䙸䙹䙺䙻䙼䙽䙾䙿 +䚀äšäš‚䚃䚄䚅䚆䚇䚈䚉䚊䚋䚌äšäšŽäšäšäš‘䚒䚓䚔䚕䚖䚗䚘䚙䚚䚛䚜äšäšžäšŸ +䚠䚡䚢䚣䚤䚥䚦䚧䚨䚩䚪䚫䚬䚭䚮䚯䚰䚱䚲䚳䚴䚵䚶䚷䚸䚹䚺䚻䚼䚽䚾䚿 +䛀ä›ä›‚䛃䛄䛅䛆䛇䛈䛉䛊䛋䛌ä›ä›Žä›ä›ä›‘䛒䛓䛔䛕䛖䛗䛘䛙䛚䛛䛜ä›ä›žä›Ÿ +䛠䛡䛢䛣䛤䛥䛦䛧䛨䛩䛪䛫䛬䛭䛮䛯䛰䛱䛲䛳䛴䛵䛶䛷䛸䛹䛺䛻䛼䛽䛾䛿 +䜀äœäœ‚䜃䜄䜅䜆䜇䜈䜉䜊䜋䜌äœäœŽäœäœäœ‘䜒䜓䜔䜕䜖䜗䜘䜙䜚䜛䜜äœäœžäœŸ +䜠䜡䜢䜣䜤䜥䜦䜧䜨䜩䜪䜫䜬䜭䜮䜯䜰䜱䜲䜳䜴䜵䜶䜷䜸䜹䜺䜻䜼䜽䜾䜿 +ä€ää‚äƒä„ä…ä†ä‡äˆä‰äŠä‹äŒääŽäää‘ä’ä“ä”ä•ä–ä—ä˜ä™äšä›äœääžäŸ +ä ä¡ä¢ä£ä¤ä¥ä¦ä§ä¨ä©äªä«ä¬ä­ä®ä¯ä°ä±ä²ä³ä´äµä¶ä·ä¸ä¹äºä»ä¼ä½ä¾ä¿ +䞀äžäž‚䞃䞄䞅䞆䞇䞈䞉䞊䞋䞌äžäžŽäžäžäž‘䞒䞓䞔䞕䞖䞗䞘䞙䞚䞛䞜äžäžžäžŸ +䞠䞡䞢䞣䞤䞥䞦䞧䞨䞩䞪䞫䞬䞭䞮䞯䞰䞱䞲䞳䞴䞵䞶䞷䞸䞹䞺䞻䞼䞽䞾䞿 +䟀äŸäŸ‚䟃䟄䟅䟆䟇䟈䟉䟊䟋䟌äŸäŸŽäŸäŸäŸ‘䟒䟓䟔䟕䟖䟗䟘䟙䟚䟛䟜äŸäŸžäŸŸ +䟠䟡䟢䟣䟤䟥䟦䟧䟨䟩䟪䟫䟬䟭䟮䟯䟰䟱䟲䟳䟴䟵䟶䟷䟸䟹䟺䟻䟼䟽䟾䟿 +ä €ä ä ‚䠃䠄䠅䠆䠇䠈䠉䠊䠋䠌ä ä Žä ä ä ‘䠒䠓䠔䠕䠖䠗䠘䠙䠚䠛䠜ä ä žä Ÿ +䠠䠡䠢䠣䠤䠥䠦䠧䠨䠩䠪䠫䠬䠭䠮䠯䠰䠱䠲䠳䠴䠵䠶䠷䠸䠹䠺䠻䠼䠽䠾䠿 +ä¡€ä¡ä¡‚䡃䡄䡅䡆䡇䡈䡉䡊䡋䡌ä¡ä¡Žä¡ä¡ä¡‘䡒䡓䡔䡕䡖䡗䡘䡙䡚䡛䡜ä¡ä¡žä¡Ÿ +䡠䡡䡢䡣䡤䡥䡦䡧䡨䡩䡪䡫䡬䡭䡮䡯䡰䡱䡲䡳䡴䡵䡶䡷䡸䡹䡺䡻䡼䡽䡾䡿 +䢀ä¢ä¢‚䢃䢄䢅䢆䢇䢈䢉䢊䢋䢌ä¢ä¢Žä¢ä¢ä¢‘䢒䢓䢔䢕䢖䢗䢘䢙䢚䢛䢜ä¢ä¢žä¢Ÿ +䢠䢡䢢䢣䢤䢥䢦䢧䢨䢩䢪䢫䢬䢭䢮䢯䢰䢱䢲䢳䢴䢵䢶䢷䢸䢹䢺䢻䢼䢽䢾䢿 +䣀ä£ä£‚䣃䣄䣅䣆䣇䣈䣉䣊䣋䣌ä£ä£Žä£ä£ä£‘䣒䣓䣔䣕䣖䣗䣘䣙䣚䣛䣜ä£ä£žä£Ÿ +䣠䣡䣢䣣䣤䣥䣦䣧䣨䣩䣪䣫䣬䣭䣮䣯䣰䣱䣲䣳䣴䣵䣶䣷䣸䣹䣺䣻䣼䣽䣾䣿 +䤀ä¤ä¤‚䤃䤄䤅䤆䤇䤈䤉䤊䤋䤌ä¤ä¤Žä¤ä¤ä¤‘䤒䤓䤔䤕䤖䤗䤘䤙䤚䤛䤜ä¤ä¤žä¤Ÿ +䤠䤡䤢䤣䤤䤥䤦䤧䤨䤩䤪䤫䤬䤭䤮䤯䤰䤱䤲䤳䤴䤵䤶䤷䤸䤹䤺䤻䤼䤽䤾䤿 +䥀ä¥ä¥‚䥃䥄䥅䥆䥇䥈䥉䥊䥋䥌ä¥ä¥Žä¥ä¥ä¥‘䥒䥓䥔䥕䥖䥗䥘䥙䥚䥛䥜ä¥ä¥žä¥Ÿ +䥠䥡䥢䥣䥤䥥䥦䥧䥨䥩䥪䥫䥬䥭䥮䥯䥰䥱䥲䥳䥴䥵䥶䥷䥸䥹䥺䥻䥼䥽䥾䥿 +䦀ä¦ä¦‚䦃䦄䦅䦆䦇䦈䦉䦊䦋䦌ä¦ä¦Žä¦ä¦ä¦‘䦒䦓䦔䦕䦖䦗䦘䦙䦚䦛䦜ä¦ä¦žä¦Ÿ +䦠䦡䦢䦣䦤䦥䦦䦧䦨䦩䦪䦫䦬䦭䦮䦯䦰䦱䦲䦳䦴䦵䦶䦷䦸䦹䦺䦻䦼䦽䦾䦿 +䧀ä§ä§‚䧃䧄䧅䧆䧇䧈䧉䧊䧋䧌ä§ä§Žä§ä§ä§‘䧒䧓䧔䧕䧖䧗䧘䧙䧚䧛䧜ä§ä§žä§Ÿ +䧠䧡䧢䧣䧤䧥䧦䧧䧨䧩䧪䧫䧬䧭䧮䧯䧰䧱䧲䧳䧴䧵䧶䧷䧸䧹䧺䧻䧼䧽䧾䧿 +䨀ä¨ä¨‚䨃䨄䨅䨆䨇䨈䨉䨊䨋䨌ä¨ä¨Žä¨ä¨ä¨‘䨒䨓䨔䨕䨖䨗䨘䨙䨚䨛䨜ä¨ä¨žä¨Ÿ +䨠䨡䨢䨣䨤䨥䨦䨧䨨䨩䨪䨫䨬䨭䨮䨯䨰䨱䨲䨳䨴䨵䨶䨷䨸䨹䨺䨻䨼䨽䨾䨿 +ä©€ä©ä©‚䩃䩄䩅䩆䩇䩈䩉䩊䩋䩌ä©ä©Žä©ä©ä©‘䩒䩓䩔䩕䩖䩗䩘䩙䩚䩛䩜ä©ä©žä©Ÿ +䩠䩡䩢䩣䩤䩥䩦䩧䩨䩩䩪䩫䩬䩭䩮䩯䩰䩱䩲䩳䩴䩵䩶䩷䩸䩹䩺䩻䩼䩽䩾䩿 +䪀äªäª‚䪃䪄䪅䪆䪇䪈䪉䪊䪋䪌äªäªŽäªäªäª‘䪒䪓䪔䪕䪖䪗䪘䪙䪚䪛䪜äªäªžäªŸ +䪠䪡䪢䪣䪤䪥䪦䪧䪨䪩䪪䪫䪬䪭䪮䪯䪰䪱䪲䪳䪴䪵䪶䪷䪸䪹䪺䪻䪼䪽䪾䪿 +ä«€ä«ä«‚䫃䫄䫅䫆䫇䫈䫉䫊䫋䫌ä«ä«Žä«ä«ä«‘䫒䫓䫔䫕䫖䫗䫘䫙䫚䫛䫜ä«ä«žä«Ÿ +䫠䫡䫢䫣䫤䫥䫦䫧䫨䫩䫪䫫䫬䫭䫮䫯䫰䫱䫲䫳䫴䫵䫶䫷䫸䫹䫺䫻䫼䫽䫾䫿 +䬀ä¬ä¬‚䬃䬄䬅䬆䬇䬈䬉䬊䬋䬌ä¬ä¬Žä¬ä¬ä¬‘䬒䬓䬔䬕䬖䬗䬘䬙䬚䬛䬜ä¬ä¬žä¬Ÿ +䬠䬡䬢䬣䬤䬥䬦䬧䬨䬩䬪䬫䬬䬭䬮䬯䬰䬱䬲䬳䬴䬵䬶䬷䬸䬹䬺䬻䬼䬽䬾䬿 +ä­€ä­ä­‚䭃䭄䭅䭆䭇䭈䭉䭊䭋䭌ä­ä­Žä­ä­ä­‘䭒䭓䭔䭕䭖䭗䭘䭙䭚䭛䭜ä­ä­žä­Ÿ +䭠䭡䭢䭣䭤䭥䭦䭧䭨䭩䭪䭫䭬䭭䭮䭯䭰䭱䭲䭳䭴䭵䭶䭷䭸䭹䭺䭻䭼䭽䭾䭿 +䮀ä®ä®‚䮃䮄䮅䮆䮇䮈䮉䮊䮋䮌ä®ä®Žä®ä®ä®‘䮒䮓䮔䮕䮖䮗䮘䮙䮚䮛䮜ä®ä®žä®Ÿ +䮠䮡䮢䮣䮤䮥䮦䮧䮨䮩䮪䮫䮬䮭䮮䮯䮰䮱䮲䮳䮴䮵䮶䮷䮸䮹䮺䮻䮼䮽䮾䮿 +䯀ä¯ä¯‚䯃䯄䯅䯆䯇䯈䯉䯊䯋䯌ä¯ä¯Žä¯ä¯ä¯‘䯒䯓䯔䯕䯖䯗䯘䯙䯚䯛䯜ä¯ä¯žä¯Ÿ +䯠䯡䯢䯣䯤䯥䯦䯧䯨䯩䯪䯫䯬䯭䯮䯯䯰䯱䯲䯳䯴䯵䯶䯷䯸䯹䯺䯻䯼䯽䯾䯿 +ä°€ä°ä°‚䰃䰄䰅䰆䰇䰈䰉䰊䰋䰌ä°ä°Žä°ä°ä°‘䰒䰓䰔䰕䰖䰗䰘䰙䰚䰛䰜ä°ä°žä°Ÿ +䰠䰡䰢䰣䰤䰥䰦䰧䰨䰩䰪䰫䰬䰭䰮䰯䰰䰱䰲䰳䰴䰵䰶䰷䰸䰹䰺䰻䰼䰽䰾䰿 +ä±€ä±ä±‚䱃䱄䱅䱆䱇䱈䱉䱊䱋䱌ä±ä±Žä±ä±ä±‘䱒䱓䱔䱕䱖䱗䱘䱙䱚䱛䱜ä±ä±žä±Ÿ +䱠䱡䱢䱣䱤䱥䱦䱧䱨䱩䱪䱫䱬䱭䱮䱯䱰䱱䱲䱳䱴䱵䱶䱷䱸䱹䱺䱻䱼䱽䱾䱿 +ä²€ä²ä²‚䲃䲄䲅䲆䲇䲈䲉䲊䲋䲌ä²ä²Žä²ä²ä²‘䲒䲓䲔䲕䲖䲗䲘䲙䲚䲛䲜ä²ä²žä²Ÿ +䲠䲡䲢䲣䲤䲥䲦䲧䲨䲩䲪䲫䲬䲭䲮䲯䲰䲱䲲䲳䲴䲵䲶䲷䲸䲹䲺䲻䲼䲽䲾䲿 +ä³€ä³ä³‚䳃䳄䳅䳆䳇䳈䳉䳊䳋䳌ä³ä³Žä³ä³ä³‘䳒䳓䳔䳕䳖䳗䳘䳙䳚䳛䳜ä³ä³žä³Ÿ +䳠䳡䳢䳣䳤䳥䳦䳧䳨䳩䳪䳫䳬䳭䳮䳯䳰䳱䳲䳳䳴䳵䳶䳷䳸䳹䳺䳻䳼䳽䳾䳿 +ä´€ä´ä´‚䴃䴄䴅䴆䴇䴈䴉䴊䴋䴌ä´ä´Žä´ä´ä´‘䴒䴓䴔䴕䴖䴗䴘䴙䴚䴛䴜ä´ä´žä´Ÿ +䴠䴡䴢䴣䴤䴥䴦䴧䴨䴩䴪䴫䴬䴭䴮䴯䴰䴱䴲䴳䴴䴵䴶䴷䴸䴹䴺䴻䴼䴽䴾䴿 +äµ€äµäµ‚䵃䵄䵅䵆䵇䵈䵉䵊䵋䵌äµäµŽäµäµäµ‘䵒䵓䵔䵕䵖䵗䵘䵙䵚䵛䵜äµäµžäµŸ +䵠䵡䵢䵣䵤䵥䵦䵧䵨䵩䵪䵫䵬䵭䵮䵯䵰䵱䵲䵳䵴䵵䵶䵷䵸䵹䵺䵻䵼䵽䵾䵿 +䶀ä¶ä¶‚䶃䶄䶅䶆䶇䶈䶉䶊䶋䶌ä¶ä¶Žä¶ä¶ä¶‘䶒䶓䶔䶕䶖䶗䶘䶙䶚䶛䶜ä¶ä¶žä¶Ÿ +䶠䶡䶢䶣䶤䶥䶦䶧䶨䶩䶪䶫䶬䶭䶮䶯䶰䶱䶲䶳䶴䶵䶶䶷䶸䶹䶺䶻䶼䶽䶾䶿 + +Yijing Hexagram Symbols (U+4DC0-U+4DFF): + +ä·€ä·ä·‚䷃䷄䷅䷆䷇䷈䷉䷊䷋䷌ä·ä·Žä·ä·ä·‘䷒䷓䷔䷕䷖䷗䷘䷙䷚䷛䷜ä·ä·žä·Ÿ +䷠䷡䷢䷣䷤䷥䷦䷧䷨䷩䷪䷫䷬䷭䷮䷯䷰䷱䷲䷳䷴䷵䷶䷷䷸䷹䷺䷻䷼䷽䷾䷿ + +CJK Unified Ideographs (U+4E00-U+9FFF): + +一ä¸ä¸‚七丄丅丆万丈三上下丌ä¸ä¸Žä¸ä¸ä¸‘丒专且丕世丗丘丙业丛东ä¸ä¸žä¸Ÿ +丠両丢丣两严並丧丨丩个丫丬中丮丯丰丱串丳临丵丶丷丸丹为主丼丽举丿 +ä¹€ä¹ä¹‚乃乄久乆乇么义乊之乌ä¹ä¹Žä¹ä¹ä¹‘乒乓乔乕乖乗乘乙乚乛乜ä¹ä¹žä¹Ÿ +习乡乢乣乤乥书乧乨乩乪乫乬乭乮乯买乱乲乳乴乵乶乷乸乹乺乻乼乽乾乿 +亀äºäº‚亃亄亅了亇予争亊事二äºäºŽäºäºäº‘互亓五井亖亗亘亙亚些亜äºäºžäºŸ +亠亡亢亣交亥亦产亨亩亪享京亭亮亯亰亱亲亳亴亵亶亷亸亹人亻亼亽亾亿 +什ä»ä»‚仃仄仅仆仇仈仉今介仌ä»ä»Žä»ä»ä»‘仒仓仔仕他仗付仙仚仛仜ä»ä»žä»Ÿ +仠仡仢代令以仦仧仨仩仪仫们仭仮仯仰仱仲仳仴仵件价仸仹仺任仼份仾仿 +ä¼€ä¼ä¼‚伃伄伅伆伇伈伉伊伋伌ä¼ä¼Žä¼ä¼ä¼‘伒伓伔伕伖众优伙会伛伜ä¼ä¼žä¼Ÿ +传伡伢伣伤伥伦伧伨伩伪伫伬伭伮伯估伱伲伳伴伵伶伷伸伹伺伻似伽伾伿 +ä½€ä½ä½‚佃佄佅但佇佈佉佊佋佌ä½ä½Žä½ä½ä½‘佒体佔何佖佗佘余佚佛作ä½ä½žä½Ÿ +你佡佢佣佤佥佦佧佨佩佪佫佬佭佮佯佰佱佲佳佴併佶佷佸佹佺佻佼佽佾使 +ä¾€ä¾ä¾‚侃侄侅來侇侈侉侊例侌ä¾ä¾Žä¾ä¾ä¾‘侒侓侔侕侖侗侘侙侚供侜ä¾ä¾žä¾Ÿ +侠価侢侣侤侥侦侧侨侩侪侫侬侭侮侯侰侱侲侳侴侵侶侷侸侹侺侻侼侽侾便 +ä¿€ä¿ä¿‚促俄俅俆俇俈俉俊俋俌ä¿ä¿Žä¿ä¿ä¿‘俒俓俔俕俖俗俘俙俚俛俜ä¿ä¿žä¿Ÿ +俠信俢俣俤俥俦俧俨俩俪俫俬俭修俯俰俱俲俳俴俵俶俷俸俹俺俻俼俽俾俿 +倀å€å€‚倃倄倅倆倇倈倉倊個倌å€å€Žå€å€å€‘倒倓倔倕倖倗倘候倚倛倜å€å€žå€Ÿ +倠倡倢倣値倥倦倧倨倩倪倫倬倭倮倯倰倱倲倳倴倵倶倷倸倹债倻值倽倾倿 +å€åå‚åƒå„å…å†å‡åˆå‰åŠå‹åŒååŽååå‘å’å“å”å•å–å—å˜å™åšå›åœååžåŸ +å å¡å¢å£å¤å¥å¦å§å¨å©åªå«å¬å­å®å¯å°å±å²å³å´åµå¶å·å¸å¹åºå»å¼å½å¾å¿ +å‚€å‚傂傃傄傅傆傇傈傉傊傋傌å‚å‚Žå‚å‚傑傒傓傔傕傖傗傘備傚傛傜å‚å‚žå‚Ÿ +傠傡傢傣傤傥傦傧储傩傪傫催傭傮傯傰傱傲傳傴債傶傷傸傹傺傻傼傽傾傿 +僀åƒåƒ‚僃僄僅僆僇僈僉僊僋僌åƒåƒŽåƒåƒåƒ‘僒僓僔僕僖僗僘僙僚僛僜åƒåƒžåƒŸ +僠僡僢僣僤僥僦僧僨僩僪僫僬僭僮僯僰僱僲僳僴僵僶僷僸價僺僻僼僽僾僿 +å„€å„儂儃億儅儆儇儈儉儊儋儌å„å„Žå„å„儑儒儓儔儕儖儗儘儙儚儛儜å„å„žå„Ÿ +儠儡儢儣儤儥儦儧儨儩優儫儬儭儮儯儰儱儲儳儴儵儶儷儸儹儺儻儼儽儾儿 +å…€å…兂元兄充兆兇先光兊克兌å…å…Žå…å…兑兒兓兔兕兖兗兘兙党兛兜å…å…žå…Ÿ +兠兡兢兣兤入兦內全兩兪八公六兮兯兰共兲关兴兵其具典兹兺养兼兽兾兿 +冀å†å†‚冃冄内円冇冈冉冊冋册å†å†Žå†å†å†‘冒冓冔冕冖冗冘写冚军农å†å†žå†Ÿ +冠冡冢冣冤冥冦冧冨冩冪冫冬冭冮冯冰冱冲决冴况冶冷冸冹冺冻冼冽冾冿 +净å‡å‡‚凃凄凅准凇凈凉凊凋凌å‡å‡Žå‡å‡å‡‘凒凓凔凕凖凗凘凙凚凛凜å‡å‡žå‡Ÿ +几凡凢凣凤凥処凧凨凩凪凫凬凭凮凯凰凱凲凳凴凵凶凷凸凹出击凼函凾凿 +刀åˆåˆ‚刃刄刅分切刈刉刊刋刌åˆåˆŽåˆåˆåˆ‘划刓刔刕刖列刘则刚创刜åˆåˆžåˆŸ +删刡刢刣判別刦刧刨利刪别刬刭刮刯到刱刲刳刴刵制刷券刹刺刻刼刽刾刿 +剀å‰å‰‚剃剄剅剆則剈剉削剋剌å‰å‰Žå‰å‰å‰‘剒剓剔剕剖剗剘剙剚剛剜å‰å‰žå‰Ÿ +剠剡剢剣剤剥剦剧剨剩剪剫剬剭剮副剰剱割剳剴創剶剷剸剹剺剻剼剽剾剿 +劀åŠåŠ‚劃劄劅劆劇劈劉劊劋劌åŠåŠŽåŠåŠåŠ‘劒劓劔劕劖劗劘劙劚力劜åŠåŠžåŠŸ +加务劢劣劤劥劦劧动助努劫劬劭劮劯劰励劲劳労劵劶劷劸効劺劻劼劽劾势 +å‹€å‹å‹‚勃勄勅勆勇勈勉勊勋勌å‹å‹Žå‹å‹å‹‘勒勓勔動勖勗勘務勚勛勜å‹å‹žå‹Ÿ +勠勡勢勣勤勥勦勧勨勩勪勫勬勭勮勯勰勱勲勳勴勵勶勷勸勹勺勻勼勽勾勿 +匀åŒåŒ‚匃匄包匆匇匈匉匊匋匌åŒåŒŽåŒåŒåŒ‘匒匓匔匕化北匘匙匚匛匜åŒåŒžåŒŸ +匠匡匢匣匤匥匦匧匨匩匪匫匬匭匮匯匰匱匲匳匴匵匶匷匸匹区医匼匽匾匿 +å€åå‚åƒå„å…å†å‡åˆå‰åŠå‹åŒååŽååå‘å’å“å”å•å–å—å˜å™åšå›åœååžåŸ +å å¡å¢å£å¤å¥å¦å§å¨å©åªå«å¬å­å®å¯å°å±å²å³å´åµå¶å·å¸å¹åºå»å¼å½å¾å¿ +厀åŽåŽ‚厃厄厅历厇厈厉厊压厌åŽåŽŽåŽåŽåŽ‘厒厓厔厕厖厗厘厙厚厛厜åŽåŽžåŽŸ +厠厡厢厣厤厥厦厧厨厩厪厫厬厭厮厯厰厱厲厳厴厵厶厷厸厹厺去厼厽厾县 +å€åå‚åƒå„å…å†å‡åˆå‰åŠå‹åŒååŽååå‘å’å“å”å•å–å—å˜å™åšå›åœååžåŸ +å å¡å¢å£å¤å¥å¦å§å¨å©åªå«å¬å­å®å¯å°å±å²å³å´åµå¶å·å¸å¹åºå»å¼å½å¾å¿ +å€åå‚åƒå„å…å†å‡åˆå‰åŠå‹åŒååŽååå‘å’å“å”å•å–å—å˜å™åšå›åœååžåŸ +å å¡å¢å£å¤å¥å¦å§å¨å©åªå«å¬å­å®å¯å°å±å²å³å´åµå¶å·å¸å¹åºå»å¼å½å¾å¿ +å‘€å‘呂呃呄呅呆呇呈呉告呋呌å‘å‘Žå‘å‘呑呒呓呔呕呖呗员呙呚呛呜å‘å‘žå‘Ÿ +呠呡呢呣呤呥呦呧周呩呪呫呬呭呮呯呰呱呲味呴呵呶呷呸呹呺呻呼命呾呿 +å’€å’咂咃咄咅咆咇咈咉咊咋和å’å’Žå’å’咑咒咓咔咕咖咗咘咙咚咛咜å’å’žå’Ÿ +咠咡咢咣咤咥咦咧咨咩咪咫咬咭咮咯咰咱咲咳咴咵咶咷咸咹咺咻咼咽咾咿 +å“€å“哂哃哄哅哆哇哈哉哊哋哌å“å“Žå“å“哑哒哓哔哕哖哗哘哙哚哛哜å“å“žå“Ÿ +哠員哢哣哤哥哦哧哨哩哪哫哬哭哮哯哰哱哲哳哴哵哶哷哸哹哺哻哼哽哾哿 +唀å”唂唃唄唅唆唇唈唉唊唋唌å”唎å”å”唑唒唓唔唕唖唗唘唙唚唛唜å”唞唟 +唠唡唢唣唤唥唦唧唨唩唪唫唬唭售唯唰唱唲唳唴唵唶唷唸唹唺唻唼唽唾唿 +å•€å•å•‚啃啄啅商啇啈啉啊啋啌å•å•Žå•å•å•‘啒啓啔啕啖啗啘啙啚啛啜å•å•žå•Ÿ +啠啡啢啣啤啥啦啧啨啩啪啫啬啭啮啯啰啱啲啳啴啵啶啷啸啹啺啻啼啽啾啿 +å–€å–喂喃善喅喆喇喈喉喊喋喌å–å–Žå–å–喑喒喓喔喕喖喗喘喙喚喛喜å–å–žå–Ÿ +喠喡喢喣喤喥喦喧喨喩喪喫喬喭單喯喰喱喲喳喴喵営喷喸喹喺喻喼喽喾喿 +å—€å—嗂嗃嗄嗅嗆嗇嗈嗉嗊嗋嗌å—å—Žå—å—嗑嗒嗓嗔嗕嗖嗗嗘嗙嗚嗛嗜å—å—žå—Ÿ +嗠嗡嗢嗣嗤嗥嗦嗧嗨嗩嗪嗫嗬嗭嗮嗯嗰嗱嗲嗳嗴嗵嗶嗷嗸嗹嗺嗻嗼嗽嗾嗿 +嘀å˜å˜‚嘃嘄嘅嘆嘇嘈嘉嘊嘋嘌å˜å˜Žå˜å˜å˜‘嘒嘓嘔嘕嘖嘗嘘嘙嘚嘛嘜å˜å˜žå˜Ÿ +嘠嘡嘢嘣嘤嘥嘦嘧嘨嘩嘪嘫嘬嘭嘮嘯嘰嘱嘲嘳嘴嘵嘶嘷嘸嘹嘺嘻嘼嘽嘾嘿 +噀å™å™‚噃噄噅噆噇噈噉噊噋噌å™å™Žå™å™å™‘噒噓噔噕噖噗噘噙噚噛噜å™å™žå™Ÿ +噠噡噢噣噤噥噦噧器噩噪噫噬噭噮噯噰噱噲噳噴噵噶噷噸噹噺噻噼噽噾噿 +嚀åšåš‚嚃嚄嚅嚆嚇嚈嚉嚊嚋嚌åšåšŽåšåšåš‘嚒嚓嚔嚕嚖嚗嚘嚙嚚嚛嚜åšåšžåšŸ +嚠嚡嚢嚣嚤嚥嚦嚧嚨嚩嚪嚫嚬嚭嚮嚯嚰嚱嚲嚳嚴嚵嚶嚷嚸嚹嚺嚻嚼嚽嚾嚿 +囀å›å›‚囃囄囅囆囇囈囉囊囋囌å›å›Žå›å›å›‘囒囓囔囕囖囗囘囙囚四囜å›å›žå›Ÿ +因囡团団囤囥囦囧囨囩囪囫囬园囮囯困囱囲図围囵囶囷囸囹固囻囼国图囿 +圀åœåœ‚圃圄圅圆圇圈圉圊國圌åœåœŽåœåœåœ‘園圓圔圕圖圗團圙圚圛圜åœåœžåœŸ +圠圡圢圣圤圥圦圧在圩圪圫圬圭圮圯地圱圲圳圴圵圶圷圸圹场圻圼圽圾圿 +å€åå‚åƒå„å…å†å‡åˆå‰åŠå‹åŒååŽååå‘å’å“å”å•å–å—å˜å™åšå›åœååžåŸ +å å¡å¢å£å¤å¥å¦å§å¨å©åªå«å¬å­å®å¯å°å±å²å³å´åµå¶å·å¸å¹åºå»å¼å½å¾å¿ +垀åžåž‚垃垄垅垆垇垈垉垊型垌åžåžŽåžåžåž‘垒垓垔垕垖垗垘垙垚垛垜åžåžžåžŸ +垠垡垢垣垤垥垦垧垨垩垪垫垬垭垮垯垰垱垲垳垴垵垶垷垸垹垺垻垼垽垾垿 +埀åŸåŸ‚埃埄埅埆埇埈埉埊埋埌åŸåŸŽåŸåŸåŸ‘埒埓埔埕埖埗埘埙埚埛埜åŸåŸžåŸŸ +埠埡埢埣埤埥埦埧埨埩埪埫埬埭埮埯埰埱埲埳埴埵埶執埸培基埻埼埽埾埿 +å €å å ‚堃堄堅堆堇堈堉堊堋堌å å Žå å å ‘堒堓堔堕堖堗堘堙堚堛堜å å žå Ÿ +堠堡堢堣堤堥堦堧堨堩堪堫堬堭堮堯堰報堲堳場堵堶堷堸堹堺堻堼堽堾堿 +å¡€å¡å¡‚塃塄塅塆塇塈塉塊塋塌å¡å¡Žå¡å¡å¡‘塒塓塔塕塖塗塘塙塚塛塜å¡å¡žå¡Ÿ +塠塡塢塣塤塥塦塧塨塩塪填塬塭塮塯塰塱塲塳塴塵塶塷塸塹塺塻塼塽塾塿 +墀å¢å¢‚境墄墅墆墇墈墉墊墋墌å¢å¢Žå¢å¢å¢‘墒墓墔墕墖増墘墙墚墛墜å¢å¢žå¢Ÿ +墠墡墢墣墤墥墦墧墨墩墪墫墬墭墮墯墰墱墲墳墴墵墶墷墸墹墺墻墼墽墾墿 +壀å£å£‚壃壄壅壆壇壈壉壊壋壌å£å£Žå£å£å£‘壒壓壔壕壖壗壘壙壚壛壜å£å£žå£Ÿ +壠壡壢壣壤壥壦壧壨壩壪士壬壭壮壯声壱売壳壴壵壶壷壸壹壺壻壼壽壾壿 +夀å¤å¤‚夃处夅夆备夈変夊夋夌å¤å¤Žå¤å¤å¤‘夒夓夔夕外夗夘夙多夛夜å¤å¤žå¤Ÿ +夠夡夢夣夤夥夦大夨天太夫夬夭央夯夰失夲夳头夵夶夷夸夹夺夻夼夽夾夿 +奀å¥å¥‚奃奄奅奆奇奈奉奊奋奌å¥å¥Žå¥å¥å¥‘奒奓奔奕奖套奘奙奚奛奜å¥å¥žå¥Ÿ +奠奡奢奣奤奥奦奧奨奩奪奫奬奭奮奯奰奱奲女奴奵奶奷奸她奺奻奼好奾奿 +妀å¦å¦‚妃妄妅妆妇妈妉妊妋妌å¦å¦Žå¦å¦å¦‘妒妓妔妕妖妗妘妙妚妛妜å¦å¦žå¦Ÿ +妠妡妢妣妤妥妦妧妨妩妪妫妬妭妮妯妰妱妲妳妴妵妶妷妸妹妺妻妼妽妾妿 +姀å§å§‚姃姄姅姆姇姈姉姊始姌å§å§Žå§å§å§‘姒姓委姕姖姗姘姙姚姛姜å§å§žå§Ÿ +姠姡姢姣姤姥姦姧姨姩姪姫姬姭姮姯姰姱姲姳姴姵姶姷姸姹姺姻姼姽姾姿 +娀å¨å¨‚娃娄娅娆娇娈娉娊娋娌å¨å¨Žå¨å¨å¨‘娒娓娔娕娖娗娘娙娚娛娜å¨å¨žå¨Ÿ +娠娡娢娣娤娥娦娧娨娩娪娫娬娭娮娯娰娱娲娳娴娵娶娷娸娹娺娻娼娽娾娿 +å©€å©å©‚婃婄婅婆婇婈婉婊婋婌å©å©Žå©å©å©‘婒婓婔婕婖婗婘婙婚婛婜å©å©žå©Ÿ +婠婡婢婣婤婥婦婧婨婩婪婫婬婭婮婯婰婱婲婳婴婵婶婷婸婹婺婻婼婽婾婿 +媀åªåª‚媃媄媅媆媇媈媉媊媋媌åªåªŽåªåªåª‘媒媓媔媕媖媗媘媙媚媛媜åªåªžåªŸ +媠媡媢媣媤媥媦媧媨媩媪媫媬媭媮媯媰媱媲媳媴媵媶媷媸媹媺媻媼媽媾媿 +å«€å«å«‚嫃嫄嫅嫆嫇嫈嫉嫊嫋嫌å«å«Žå«å«å«‘嫒嫓嫔嫕嫖嫗嫘嫙嫚嫛嫜å«å«žå«Ÿ +嫠嫡嫢嫣嫤嫥嫦嫧嫨嫩嫪嫫嫬嫭嫮嫯嫰嫱嫲嫳嫴嫵嫶嫷嫸嫹嫺嫻嫼嫽嫾嫿 +嬀å¬å¬‚嬃嬄嬅嬆嬇嬈嬉嬊嬋嬌å¬å¬Žå¬å¬å¬‘嬒嬓嬔嬕嬖嬗嬘嬙嬚嬛嬜å¬å¬žå¬Ÿ +嬠嬡嬢嬣嬤嬥嬦嬧嬨嬩嬪嬫嬬嬭嬮嬯嬰嬱嬲嬳嬴嬵嬶嬷嬸嬹嬺嬻嬼嬽嬾嬿 +å­€å­å­‚孃孄孅孆孇孈孉孊孋孌å­å­Žå­å­å­‘孒孓孔孕孖字存孙孚孛孜å­å­žå­Ÿ +孠孡孢季孤孥学孧孨孩孪孫孬孭孮孯孰孱孲孳孴孵孶孷學孹孺孻孼孽孾孿 +宀å®å®‚它宄宅宆宇守安宊宋完å®å®Žå®å®å®‘宒宓宔宕宖宗官宙定宛宜å®å®žå®Ÿ +宠审客宣室宥宦宧宨宩宪宫宬宭宮宯宰宱宲害宴宵家宷宸容宺宻宼宽宾宿 +寀å¯å¯‚寃寄寅密寇寈寉寊寋富å¯å¯Žå¯å¯å¯‘寒寓寔寕寖寗寘寙寚寛寜å¯å¯žå¯Ÿ +寠寡寢寣寤寥實寧寨審寪寫寬寭寮寯寰寱寲寳寴寵寶寷寸对寺寻导寽対寿 +å°€å°å°‚尃射尅将將專尉尊尋尌å°å°Žå°å°å°‘尒尓尔尕尖尗尘尙尚尛尜å°å°žå°Ÿ +尠尡尢尣尤尥尦尧尨尩尪尫尬尭尮尯尰就尲尳尴尵尶尷尸尹尺尻尼尽尾尿 +å±€å±å±‚屃屄居屆屇屈屉届屋屌å±å±Žå±å±å±‘屒屓屔展屖屗屘屙屚屛屜å±å±žå±Ÿ +屠屡屢屣層履屦屧屨屩屪屫屬屭屮屯屰山屲屳屴屵屶屷屸屹屺屻屼屽屾屿 +å²€å²å²‚岃岄岅岆岇岈岉岊岋岌å²å²Žå²å²å²‘岒岓岔岕岖岗岘岙岚岛岜å²å²žå²Ÿ +岠岡岢岣岤岥岦岧岨岩岪岫岬岭岮岯岰岱岲岳岴岵岶岷岸岹岺岻岼岽岾岿 +å³€å³å³‚峃峄峅峆峇峈峉峊峋峌å³å³Žå³å³å³‘峒峓峔峕峖峗峘峙峚峛峜å³å³žå³Ÿ +峠峡峢峣峤峥峦峧峨峩峪峫峬峭峮峯峰峱峲峳峴峵島峷峸峹峺峻峼峽峾峿 +å´€å´å´‚崃崄崅崆崇崈崉崊崋崌å´å´Žå´å´å´‘崒崓崔崕崖崗崘崙崚崛崜å´å´žå´Ÿ +崠崡崢崣崤崥崦崧崨崩崪崫崬崭崮崯崰崱崲崳崴崵崶崷崸崹崺崻崼崽崾崿 +åµ€åµåµ‚嵃嵄嵅嵆嵇嵈嵉嵊嵋嵌åµåµŽåµåµåµ‘嵒嵓嵔嵕嵖嵗嵘嵙嵚嵛嵜åµåµžåµŸ +嵠嵡嵢嵣嵤嵥嵦嵧嵨嵩嵪嵫嵬嵭嵮嵯嵰嵱嵲嵳嵴嵵嵶嵷嵸嵹嵺嵻嵼嵽嵾嵿 +嶀å¶å¶‚嶃嶄嶅嶆嶇嶈嶉嶊嶋嶌å¶å¶Žå¶å¶å¶‘嶒嶓嶔嶕嶖嶗嶘嶙嶚嶛嶜å¶å¶žå¶Ÿ +嶠嶡嶢嶣嶤嶥嶦嶧嶨嶩嶪嶫嶬嶭嶮嶯嶰嶱嶲嶳嶴嶵嶶嶷嶸嶹嶺嶻嶼嶽嶾嶿 +å·€å·å·‚巃巄巅巆巇巈巉巊巋巌å·å·Žå·å·å·‘巒巓巔巕巖巗巘巙巚巛巜å·å·žå·Ÿ +巠巡巢巣巤工左巧巨巩巪巫巬巭差巯巰己已巳巴巵巶巷巸巹巺巻巼巽巾巿 +帀å¸å¸‚布帄帅帆帇师帉帊帋希å¸å¸Žå¸å¸å¸‘帒帓帔帕帖帗帘帙帚帛帜å¸å¸žå¸Ÿ +帠帡帢帣帤帥带帧帨帩帪師帬席帮帯帰帱帲帳帴帵帶帷常帹帺帻帼帽帾帿 +å¹€å¹å¹‚幃幄幅幆幇幈幉幊幋幌å¹å¹Žå¹å¹å¹‘幒幓幔幕幖幗幘幙幚幛幜å¹å¹žå¹Ÿ +幠幡幢幣幤幥幦幧幨幩幪幫幬幭幮幯幰幱干平年幵并幷幸幹幺幻幼幽幾广 +庀åºåº‚広庄庅庆庇庈庉床庋庌åºåºŽåºåºåº‘庒库应底庖店庘庙庚庛府åºåºžåºŸ +庠庡庢庣庤庥度座庨庩庪庫庬庭庮庯庰庱庲庳庴庵庶康庸庹庺庻庼庽庾庿 +廀å»å»‚廃廄廅廆廇廈廉廊廋廌å»å»Žå»å»å»‘廒廓廔廕廖廗廘廙廚廛廜å»å»žå»Ÿ +廠廡廢廣廤廥廦廧廨廩廪廫廬廭廮廯廰廱廲廳廴廵延廷廸廹建廻廼廽廾廿 +å¼€å¼å¼‚弃弄弅弆弇弈弉弊弋弌å¼å¼Žå¼å¼å¼‘弒弓弔引弖弗弘弙弚弛弜å¼å¼žå¼Ÿ +张弡弢弣弤弥弦弧弨弩弪弫弬弭弮弯弰弱弲弳弴張弶強弸弹强弻弼弽弾弿 +å½€å½å½‚彃彄彅彆彇彈彉彊彋彌å½å½Žå½å½å½‘归当彔录彖彗彘彙彚彛彜å½å½žå½Ÿ +彠彡形彣彤彥彦彧彨彩彪彫彬彭彮彯彰影彲彳彴彵彶彷彸役彺彻彼彽彾彿 +å¾€å¾å¾‚徃径待徆徇很徉徊律後å¾å¾Žå¾å¾å¾‘徒従徔徕徖得徘徙徚徛徜å¾å¾žå¾Ÿ +徠御徢徣徤徥徦徧徨復循徫徬徭微徯徰徱徲徳徴徵徶德徸徹徺徻徼徽徾徿 +å¿€å¿å¿‚心忄必忆忇忈忉忊忋忌å¿å¿Žå¿å¿å¿‘忒忓忔忕忖志忘忙忚忛応å¿å¿žå¿Ÿ +忠忡忢忣忤忥忦忧忨忩忪快忬忭忮忯忰忱忲忳忴念忶忷忸忹忺忻忼忽忾忿 +怀æ€æ€‚怃怄怅怆怇怈怉怊怋怌æ€æ€Žæ€æ€æ€‘怒怓怔怕怖怗怘怙怚怛怜æ€æ€žæ€Ÿ +怠怡怢怣怤急怦性怨怩怪怫怬怭怮怯怰怱怲怳怴怵怶怷怸怹怺总怼怽怾怿 +æ€ææ‚æƒæ„æ…æ†æ‡æˆæ‰æŠæ‹æŒææŽæææ‘æ’æ“æ”æ•æ–æ—æ˜æ™æšæ›æœææžæŸ +æ æ¡æ¢æ£æ¤æ¥æ¦æ§æ¨æ©æªæ«æ¬æ­æ®æ¯æ°æ±æ²æ³æ´æµæ¶æ·æ¸æ¹æºæ»æ¼æ½æ¾æ¿ +æ‚€æ‚悂悃悄悅悆悇悈悉悊悋悌æ‚æ‚Žæ‚æ‚悑悒悓悔悕悖悗悘悙悚悛悜æ‚æ‚žæ‚Ÿ +悠悡悢患悤悥悦悧您悩悪悫悬悭悮悯悰悱悲悳悴悵悶悷悸悹悺悻悼悽悾悿 +惀æƒæƒ‚惃惄情惆惇惈惉惊惋惌æƒæƒŽæƒæƒæƒ‘惒惓惔惕惖惗惘惙惚惛惜æƒæƒžæƒŸ +惠惡惢惣惤惥惦惧惨惩惪惫惬惭惮惯惰惱惲想惴惵惶惷惸惹惺惻惼惽惾惿 +æ„€æ„愂愃愄愅愆愇愈愉愊愋愌æ„æ„Žæ„æ„愑愒愓愔愕愖愗愘愙愚愛愜æ„æ„žæ„Ÿ +愠愡愢愣愤愥愦愧愨愩愪愫愬愭愮愯愰愱愲愳愴愵愶愷愸愹愺愻愼愽愾愿 +æ…€æ…慂慃慄慅慆慇慈慉慊態慌æ…æ…Žæ…æ…慑慒慓慔慕慖慗慘慙慚慛慜æ…æ…žæ…Ÿ +慠慡慢慣慤慥慦慧慨慩慪慫慬慭慮慯慰慱慲慳慴慵慶慷慸慹慺慻慼慽慾慿 +憀æ†æ†‚憃憄憅憆憇憈憉憊憋憌æ†æ†Žæ†æ†æ†‘憒憓憔憕憖憗憘憙憚憛憜æ†æ†žæ†Ÿ +憠憡憢憣憤憥憦憧憨憩憪憫憬憭憮憯憰憱憲憳憴憵憶憷憸憹憺憻憼憽憾憿 +懀æ‡æ‡‚懃懄懅懆懇懈應懊懋懌æ‡æ‡Žæ‡æ‡æ‡‘懒懓懔懕懖懗懘懙懚懛懜æ‡æ‡žæ‡Ÿ +懠懡懢懣懤懥懦懧懨懩懪懫懬懭懮懯懰懱懲懳懴懵懶懷懸懹懺懻懼懽懾懿 +戀æˆæˆ‚戃戄戅戆戇戈戉戊戋戌æˆæˆŽæˆæˆæˆ‘戒戓戔戕或戗战戙戚戛戜æˆæˆžæˆŸ +戠戡戢戣戤戥戦戧戨戩截戫戬戭戮戯戰戱戲戳戴戵戶户戸戹戺戻戼戽戾房 +所æ‰æ‰‚扃扄扅扆扇扈扉扊手扌æ‰æ‰Žæ‰æ‰æ‰‘扒打扔払扖扗托扙扚扛扜æ‰æ‰žæ‰Ÿ +扠扡扢扣扤扥扦执扨扩扪扫扬扭扮扯扰扱扲扳扴扵扶扷扸批扺扻扼扽找承 +技æŠæŠ‚抃抄抅抆抇抈抉把抋抌æŠæŠŽæŠæŠæŠ‘抒抓抔投抖抗折抙抚抛抜æŠæŠžæŠŸ +抠抡抢抣护报抦抧抨抩抪披抬抭抮抯抰抱抲抳抴抵抶抷抸抹抺抻押抽抾抿 +æ‹€æ‹æ‹‚拃拄担拆拇拈拉拊拋拌æ‹æ‹Žæ‹æ‹æ‹‘拒拓拔拕拖拗拘拙拚招拜æ‹æ‹žæ‹Ÿ +拠拡拢拣拤拥拦拧拨择拪拫括拭拮拯拰拱拲拳拴拵拶拷拸拹拺拻拼拽拾拿 +挀æŒæŒ‚挃挄挅挆指挈按挊挋挌æŒæŒŽæŒæŒæŒ‘挒挓挔挕挖挗挘挙挚挛挜æŒæŒžæŒŸ +挠挡挢挣挤挥挦挧挨挩挪挫挬挭挮振挰挱挲挳挴挵挶挷挸挹挺挻挼挽挾挿 +æ€ææ‚æƒæ„æ…æ†æ‡æˆæ‰æŠæ‹æŒææŽæææ‘æ’æ“æ”æ•æ–æ—æ˜æ™æšæ›æœææžæŸ +æ æ¡æ¢æ£æ¤æ¥æ¦æ§æ¨æ©æªæ«æ¬æ­æ®æ¯æ°æ±æ²æ³æ´æµæ¶æ·æ¸æ¹æºæ»æ¼æ½æ¾æ¿ +掀æŽæŽ‚掃掄掅掆掇授掉掊掋掌æŽæŽŽæŽæŽæŽ‘排掓掔掕掖掗掘掙掚掛掜æŽæŽžæŽŸ +掠採探掣掤接掦控推掩措掫掬掭掮掯掰掱掲掳掴掵掶掷掸掹掺掻掼掽掾掿 +æ€ææ‚æƒæ„æ…æ†æ‡æˆæ‰æŠæ‹æŒææŽæææ‘æ’æ“æ”æ•æ–æ—æ˜æ™æšæ›æœææžæŸ +æ æ¡æ¢æ£æ¤æ¥æ¦æ§æ¨æ©æªæ«æ¬æ­æ®æ¯æ°æ±æ²æ³æ´æµæ¶æ·æ¸æ¹æºæ»æ¼æ½æ¾æ¿ +æ€ææ‚æƒæ„æ…æ†æ‡æˆæ‰æŠæ‹æŒææŽæææ‘æ’æ“æ”æ•æ–æ—æ˜æ™æšæ›æœææžæŸ +æ æ¡æ¢æ£æ¤æ¥æ¦æ§æ¨æ©æªæ«æ¬æ­æ®æ¯æ°æ±æ²æ³æ´æµæ¶æ·æ¸æ¹æºæ»æ¼æ½æ¾æ¿ +æ‘€æ‘摂摃摄摅摆摇摈摉摊摋摌æ‘æ‘Žæ‘æ‘摑摒摓摔摕摖摗摘摙摚摛摜æ‘æ‘žæ‘Ÿ +摠摡摢摣摤摥摦摧摨摩摪摫摬摭摮摯摰摱摲摳摴摵摶摷摸摹摺摻摼摽摾摿 +æ’€æ’撂撃撄撅撆撇撈撉撊撋撌æ’æ’Žæ’æ’撑撒撓撔撕撖撗撘撙撚撛撜æ’æ’žæ’Ÿ +撠撡撢撣撤撥撦撧撨撩撪撫撬播撮撯撰撱撲撳撴撵撶撷撸撹撺撻撼撽撾撿 +æ“€æ“擂擃擄擅擆擇擈擉擊擋擌æ“æ“Žæ“æ“擑擒擓擔擕擖擗擘擙據擛擜æ“æ“žæ“Ÿ +擠擡擢擣擤擥擦擧擨擩擪擫擬擭擮擯擰擱擲擳擴擵擶擷擸擹擺擻擼擽擾擿 +攀æ”攂攃攄攅攆攇攈攉攊攋攌æ”攎æ”æ”攑攒攓攔攕攖攗攘攙攚攛攜æ”攞攟 +攠攡攢攣攤攥攦攧攨攩攪攫攬攭攮支攰攱攲攳攴攵收攷攸改攺攻攼攽放政 +æ•€æ•æ•‚敃敄故敆敇效敉敊敋敌æ•æ•Žæ•æ•æ•‘敒敓敔敕敖敗敘教敚敛敜æ•æ•žæ•Ÿ +敠敡敢散敤敥敦敧敨敩敪敫敬敭敮敯数敱敲敳整敵敶敷數敹敺敻敼敽敾敿 +æ–€æ–斂斃斄斅斆文斈斉斊斋斌æ–æ–Žæ–æ–斑斒斓斔斕斖斗斘料斚斛斜æ–æ–žæ–Ÿ +斠斡斢斣斤斥斦斧斨斩斪斫斬断斮斯新斱斲斳斴斵斶斷斸方斺斻於施斾斿 +æ—€æ—旂旃旄旅旆旇旈旉旊旋旌æ—æ—Žæ—æ—旑旒旓旔旕旖旗旘旙旚旛旜æ—æ—žæ—Ÿ +无旡既旣旤日旦旧旨早旪旫旬旭旮旯旰旱旲旳旴旵时旷旸旹旺旻旼旽旾旿 +昀æ˜æ˜‚昃昄昅昆昇昈昉昊昋昌æ˜æ˜Žæ˜æ˜æ˜‘昒易昔昕昖昗昘昙昚昛昜æ˜æ˜žæ˜Ÿ +映昡昢昣昤春昦昧昨昩昪昫昬昭昮是昰昱昲昳昴昵昶昷昸昹昺昻昼昽显昿 +晀æ™æ™‚晃晄晅晆晇晈晉晊晋晌æ™æ™Žæ™æ™æ™‘晒晓晔晕晖晗晘晙晚晛晜æ™æ™žæ™Ÿ +晠晡晢晣晤晥晦晧晨晩晪晫晬晭普景晰晱晲晳晴晵晶晷晸晹智晻晼晽晾晿 +暀æšæš‚暃暄暅暆暇暈暉暊暋暌æšæšŽæšæšæš‘暒暓暔暕暖暗暘暙暚暛暜æšæšžæšŸ +暠暡暢暣暤暥暦暧暨暩暪暫暬暭暮暯暰暱暲暳暴暵暶暷暸暹暺暻暼暽暾暿 +曀æ›æ›‚曃曄曅曆曇曈曉曊曋曌æ›æ›Žæ›æ›æ›‘曒曓曔曕曖曗曘曙曚曛曜æ›æ›žæ›Ÿ +曠曡曢曣曤曥曦曧曨曩曪曫曬曭曮曯曰曱曲曳更曵曶曷書曹曺曻曼曽曾替 +最æœæœ‚會朄朅朆朇月有朊朋朌æœæœŽæœæœæœ‘朒朓朔朕朖朗朘朙朚望朜æœæœžæœŸ +朠朡朢朣朤朥朦朧木朩未末本札朮术朰朱朲朳朴朵朶朷朸朹机朻朼朽朾朿 +æ€ææ‚æƒæ„æ…æ†æ‡æˆæ‰æŠæ‹æŒææŽæææ‘æ’æ“æ”æ•æ–æ—æ˜æ™æšæ›æœææžæŸ +æ æ¡æ¢æ£æ¤æ¥æ¦æ§æ¨æ©æªæ«æ¬æ­æ®æ¯æ°æ±æ²æ³æ´æµæ¶æ·æ¸æ¹æºæ»æ¼æ½æ¾æ¿ +枀æžæž‚枃构枅枆枇枈枉枊枋枌æžæžŽæžæžæž‘枒枓枔枕枖林枘枙枚枛果æžæžžæžŸ +枠枡枢枣枤枥枦枧枨枩枪枫枬枭枮枯枰枱枲枳枴枵架枷枸枹枺枻枼枽枾枿 +柀æŸæŸ‚柃柄柅柆柇柈柉柊柋柌æŸæŸŽæŸæŸæŸ‘柒染柔柕柖柗柘柙柚柛柜æŸæŸžæŸŸ +柠柡柢柣柤查柦柧柨柩柪柫柬柭柮柯柰柱柲柳柴柵柶柷柸柹柺査柼柽柾柿 +æ €æ æ ‚栃栄栅栆标栈栉栊栋栌æ æ Žæ æ æ ‘栒栓栔栕栖栗栘栙栚栛栜æ æ žæ Ÿ +栠校栢栣栤栥栦栧栨栩株栫栬栭栮栯栰栱栲栳栴栵栶样核根栺栻格栽栾栿 +æ¡€æ¡æ¡‚桃桄桅框桇案桉桊桋桌æ¡æ¡Žæ¡æ¡æ¡‘桒桓桔桕桖桗桘桙桚桛桜æ¡æ¡žæ¡Ÿ +桠桡桢档桤桥桦桧桨桩桪桫桬桭桮桯桰桱桲桳桴桵桶桷桸桹桺桻桼桽桾桿 +梀æ¢æ¢‚梃梄梅梆梇梈梉梊梋梌æ¢æ¢Žæ¢æ¢æ¢‘梒梓梔梕梖梗梘梙梚梛梜æ¢æ¢žæ¢Ÿ +梠梡梢梣梤梥梦梧梨梩梪梫梬梭梮梯械梱梲梳梴梵梶梷梸梹梺梻梼梽梾梿 +检æ£æ£‚棃棄棅棆棇棈棉棊棋棌æ£æ£Žæ£æ£æ£‘棒棓棔棕棖棗棘棙棚棛棜æ£æ£žæ£Ÿ +棠棡棢棣棤棥棦棧棨棩棪棫棬棭森棯棰棱棲棳棴棵棶棷棸棹棺棻棼棽棾棿 +椀æ¤æ¤‚椃椄椅椆椇椈椉椊椋椌æ¤æ¤Žæ¤æ¤æ¤‘椒椓椔椕椖椗椘椙椚椛検æ¤æ¤žæ¤Ÿ +椠椡椢椣椤椥椦椧椨椩椪椫椬椭椮椯椰椱椲椳椴椵椶椷椸椹椺椻椼椽椾椿 +楀æ¥æ¥‚楃楄楅楆楇楈楉楊楋楌æ¥æ¥Žæ¥æ¥æ¥‘楒楓楔楕楖楗楘楙楚楛楜æ¥æ¥žæ¥Ÿ +楠楡楢楣楤楥楦楧楨楩楪楫楬業楮楯楰楱楲楳楴極楶楷楸楹楺楻楼楽楾楿 +榀æ¦æ¦‚榃榄榅榆榇榈榉榊榋榌æ¦æ¦Žæ¦æ¦æ¦‘榒榓榔榕榖榗榘榙榚榛榜æ¦æ¦žæ¦Ÿ +榠榡榢榣榤榥榦榧榨榩榪榫榬榭榮榯榰榱榲榳榴榵榶榷榸榹榺榻榼榽榾榿 +槀æ§æ§‚槃槄槅槆槇槈槉槊構槌æ§æ§Žæ§æ§æ§‘槒槓槔槕槖槗様槙槚槛槜æ§æ§žæ§Ÿ +槠槡槢槣槤槥槦槧槨槩槪槫槬槭槮槯槰槱槲槳槴槵槶槷槸槹槺槻槼槽槾槿 +樀æ¨æ¨‚樃樄樅樆樇樈樉樊樋樌æ¨æ¨Žæ¨æ¨æ¨‘樒樓樔樕樖樗樘標樚樛樜æ¨æ¨žæ¨Ÿ +樠模樢樣樤樥樦樧樨権横樫樬樭樮樯樰樱樲樳樴樵樶樷樸樹樺樻樼樽樾樿 +æ©€æ©æ©‚橃橄橅橆橇橈橉橊橋橌æ©æ©Žæ©æ©æ©‘橒橓橔橕橖橗橘橙橚橛橜æ©æ©žæ©Ÿ +橠橡橢橣橤橥橦橧橨橩橪橫橬橭橮橯橰橱橲橳橴橵橶橷橸橹橺橻橼橽橾橿 +檀æªæª‚檃檄檅檆檇檈檉檊檋檌æªæªŽæªæªæª‘檒檓檔檕檖檗檘檙檚檛檜æªæªžæªŸ +檠檡檢檣檤檥檦檧檨檩檪檫檬檭檮檯檰檱檲檳檴檵檶檷檸檹檺檻檼檽檾檿 +æ«€æ«æ«‚櫃櫄櫅櫆櫇櫈櫉櫊櫋櫌æ«æ«Žæ«æ«æ«‘櫒櫓櫔櫕櫖櫗櫘櫙櫚櫛櫜æ«æ«žæ«Ÿ +櫠櫡櫢櫣櫤櫥櫦櫧櫨櫩櫪櫫櫬櫭櫮櫯櫰櫱櫲櫳櫴櫵櫶櫷櫸櫹櫺櫻櫼櫽櫾櫿 +欀æ¬æ¬‚欃欄欅欆欇欈欉權欋欌æ¬æ¬Žæ¬æ¬æ¬‘欒欓欔欕欖欗欘欙欚欛欜æ¬æ¬žæ¬Ÿ +欠次欢欣欤欥欦欧欨欩欪欫欬欭欮欯欰欱欲欳欴欵欶欷欸欹欺欻欼欽款欿 +æ­€æ­æ­‚歃歄歅歆歇歈歉歊歋歌æ­æ­Žæ­æ­æ­‘歒歓歔歕歖歗歘歙歚歛歜æ­æ­žæ­Ÿ +歠歡止正此步武歧歨歩歪歫歬歭歮歯歰歱歲歳歴歵歶歷歸歹歺死歼歽歾歿 +殀æ®æ®‚殃殄殅殆殇殈殉殊残殌æ®æ®Žæ®æ®æ®‘殒殓殔殕殖殗殘殙殚殛殜æ®æ®žæ®Ÿ +殠殡殢殣殤殥殦殧殨殩殪殫殬殭殮殯殰殱殲殳殴段殶殷殸殹殺殻殼殽殾殿 +毀æ¯æ¯‚毃毄毅毆毇毈毉毊毋毌æ¯æ¯Žæ¯æ¯æ¯‘毒毓比毕毖毗毘毙毚毛毜æ¯æ¯žæ¯Ÿ +毠毡毢毣毤毥毦毧毨毩毪毫毬毭毮毯毰毱毲毳毴毵毶毷毸毹毺毻毼毽毾毿 +æ°€æ°æ°‚氃氄氅氆氇氈氉氊氋氌æ°æ°Žæ°æ°æ°‘氒氓气氕氖気氘氙氚氛氜æ°æ°žæ°Ÿ +氠氡氢氣氤氥氦氧氨氩氪氫氬氭氮氯氰氱氲氳水氵氶氷永氹氺氻氼氽氾氿 +æ±€æ±æ±‚汃汄汅汆汇汈汉汊汋汌æ±æ±Žæ±æ±æ±‘汒汓汔汕汖汗汘汙汚汛汜æ±æ±žæ±Ÿ +池污汢汣汤汥汦汧汨汩汪汫汬汭汮汯汰汱汲汳汴汵汶汷汸汹決汻汼汽汾汿 +æ²€æ²æ²‚沃沄沅沆沇沈沉沊沋沌æ²æ²Žæ²æ²æ²‘沒沓沔沕沖沗沘沙沚沛沜æ²æ²žæ²Ÿ +沠没沢沣沤沥沦沧沨沩沪沫沬沭沮沯沰沱沲河沴沵沶沷沸油沺治沼沽沾沿 +æ³€æ³æ³‚泃泄泅泆泇泈泉泊泋泌æ³æ³Žæ³æ³æ³‘泒泓泔法泖泗泘泙泚泛泜æ³æ³žæ³Ÿ +泠泡波泣泤泥泦泧注泩泪泫泬泭泮泯泰泱泲泳泴泵泶泷泸泹泺泻泼泽泾泿 +æ´€æ´æ´‚洃洄洅洆洇洈洉洊洋洌æ´æ´Žæ´æ´æ´‘洒洓洔洕洖洗洘洙洚洛洜æ´æ´žæ´Ÿ +洠洡洢洣洤津洦洧洨洩洪洫洬洭洮洯洰洱洲洳洴洵洶洷洸洹洺活洼洽派洿 +æµ€æµæµ‚浃浄浅浆浇浈浉浊测浌æµæµŽæµæµæµ‘浒浓浔浕浖浗浘浙浚浛浜æµæµžæµŸ +浠浡浢浣浤浥浦浧浨浩浪浫浬浭浮浯浰浱浲浳浴浵浶海浸浹浺浻浼浽浾浿 +涀æ¶æ¶‚涃涄涅涆涇消涉涊涋涌æ¶æ¶Žæ¶æ¶æ¶‘涒涓涔涕涖涗涘涙涚涛涜æ¶æ¶žæ¶Ÿ +涠涡涢涣涤涥润涧涨涩涪涫涬涭涮涯涰涱液涳涴涵涶涷涸涹涺涻涼涽涾涿 +æ·€æ·æ·‚淃淄淅淆淇淈淉淊淋淌æ·æ·Žæ·æ·æ·‘淒淓淔淕淖淗淘淙淚淛淜æ·æ·žæ·Ÿ +淠淡淢淣淤淥淦淧淨淩淪淫淬淭淮淯淰深淲淳淴淵淶混淸淹淺添淼淽淾淿 +渀æ¸æ¸‚渃渄清渆渇済渉渊渋渌æ¸æ¸Žæ¸æ¸æ¸‘渒渓渔渕渖渗渘渙渚減渜æ¸æ¸žæ¸Ÿ +渠渡渢渣渤渥渦渧渨温渪渫測渭渮港渰渱渲渳渴渵渶渷游渹渺渻渼渽渾渿 +æ¹€æ¹æ¹‚湃湄湅湆湇湈湉湊湋湌æ¹æ¹Žæ¹æ¹æ¹‘湒湓湔湕湖湗湘湙湚湛湜æ¹æ¹žæ¹Ÿ +湠湡湢湣湤湥湦湧湨湩湪湫湬湭湮湯湰湱湲湳湴湵湶湷湸湹湺湻湼湽湾湿 +満æºæº‚溃溄溅溆溇溈溉溊溋溌æºæºŽæºæºæº‘溒溓溔溕準溗溘溙溚溛溜æºæºžæºŸ +溠溡溢溣溤溥溦溧溨溩溪溫溬溭溮溯溰溱溲溳溴溵溶溷溸溹溺溻溼溽溾溿 +滀æ»æ»‚滃滄滅滆滇滈滉滊滋滌æ»æ»Žæ»æ»æ»‘滒滓滔滕滖滗滘滙滚滛滜æ»æ»žæ»Ÿ +滠满滢滣滤滥滦滧滨滩滪滫滬滭滮滯滰滱滲滳滴滵滶滷滸滹滺滻滼滽滾滿 +æ¼€æ¼æ¼‚漃漄漅漆漇漈漉漊漋漌æ¼æ¼Žæ¼æ¼æ¼‘漒漓演漕漖漗漘漙漚漛漜æ¼æ¼žæ¼Ÿ +漠漡漢漣漤漥漦漧漨漩漪漫漬漭漮漯漰漱漲漳漴漵漶漷漸漹漺漻漼漽漾漿 +æ½€æ½æ½‚潃潄潅潆潇潈潉潊潋潌æ½æ½Žæ½æ½æ½‘潒潓潔潕潖潗潘潙潚潛潜æ½æ½žæ½Ÿ +潠潡潢潣潤潥潦潧潨潩潪潫潬潭潮潯潰潱潲潳潴潵潶潷潸潹潺潻潼潽潾潿 +æ¾€æ¾æ¾‚澃澄澅澆澇澈澉澊澋澌æ¾æ¾Žæ¾æ¾æ¾‘澒澓澔澕澖澗澘澙澚澛澜æ¾æ¾žæ¾Ÿ +澠澡澢澣澤澥澦澧澨澩澪澫澬澭澮澯澰澱澲澳澴澵澶澷澸澹澺澻澼澽澾澿 +æ¿€æ¿æ¿‚濃濄濅濆濇濈濉濊濋濌æ¿æ¿Žæ¿æ¿æ¿‘濒濓濔濕濖濗濘濙濚濛濜æ¿æ¿žæ¿Ÿ +濠濡濢濣濤濥濦濧濨濩濪濫濬濭濮濯濰濱濲濳濴濵濶濷濸濹濺濻濼濽濾濿 +瀀ç€ç€‚瀃瀄瀅瀆瀇瀈瀉瀊瀋瀌ç€ç€Žç€ç€ç€‘瀒瀓瀔瀕瀖瀗瀘瀙瀚瀛瀜ç€ç€žç€Ÿ +瀠瀡瀢瀣瀤瀥瀦瀧瀨瀩瀪瀫瀬瀭瀮瀯瀰瀱瀲瀳瀴瀵瀶瀷瀸瀹瀺瀻瀼瀽瀾瀿 +ç€çç‚çƒç„ç…ç†ç‡çˆç‰çŠç‹çŒççŽççç‘ç’ç“ç”ç•ç–ç—ç˜ç™çšç›çœççžçŸ +ç ç¡ç¢ç£ç¤ç¥ç¦ç§ç¨ç©çªç«ç¬ç­ç®ç¯ç°ç±ç²ç³ç´çµç¶ç·ç¸ç¹çºç»ç¼ç½ç¾ç¿ +ç‚€ç‚炂炃炄炅炆炇炈炉炊炋炌ç‚ç‚Žç‚ç‚炑炒炓炔炕炖炗炘炙炚炛炜ç‚ç‚žç‚Ÿ +炠炡炢炣炤炥炦炧炨炩炪炫炬炭炮炯炰炱炲炳炴炵炶炷炸点為炻炼炽炾炿 +烀çƒçƒ‚烃烄烅烆烇烈烉烊烋烌çƒçƒŽçƒçƒçƒ‘烒烓烔烕烖烗烘烙烚烛烜çƒçƒžçƒŸ +烠烡烢烣烤烥烦烧烨烩烪烫烬热烮烯烰烱烲烳烴烵烶烷烸烹烺烻烼烽烾烿 +ç„€ç„焂焃焄焅焆焇焈焉焊焋焌ç„ç„Žç„ç„焑焒焓焔焕焖焗焘焙焚焛焜ç„ç„žç„Ÿ +焠無焢焣焤焥焦焧焨焩焪焫焬焭焮焯焰焱焲焳焴焵然焷焸焹焺焻焼焽焾焿 +ç…€ç…煂煃煄煅煆煇煈煉煊煋煌ç…ç…Žç…ç…煑煒煓煔煕煖煗煘煙煚煛煜ç…ç…žç…Ÿ +煠煡煢煣煤煥煦照煨煩煪煫煬煭煮煯煰煱煲煳煴煵煶煷煸煹煺煻煼煽煾煿 +熀ç†ç†‚熃熄熅熆熇熈熉熊熋熌ç†ç†Žç†ç†ç†‘熒熓熔熕熖熗熘熙熚熛熜ç†ç†žç†Ÿ +熠熡熢熣熤熥熦熧熨熩熪熫熬熭熮熯熰熱熲熳熴熵熶熷熸熹熺熻熼熽熾熿 +燀ç‡ç‡‚燃燄燅燆燇燈燉燊燋燌ç‡ç‡Žç‡ç‡ç‡‘燒燓燔燕燖燗燘燙燚燛燜ç‡ç‡žç‡Ÿ +燠燡燢燣燤燥燦燧燨燩燪燫燬燭燮燯燰燱燲燳燴燵燶燷燸燹燺燻燼燽燾燿 +爀çˆçˆ‚爃爄爅爆爇爈爉爊爋爌çˆçˆŽçˆçˆçˆ‘爒爓爔爕爖爗爘爙爚爛爜çˆçˆžçˆŸ +爠爡爢爣爤爥爦爧爨爩爪爫爬爭爮爯爰爱爲爳爴爵父爷爸爹爺爻爼爽爾爿 +牀ç‰ç‰‚牃牄牅牆片版牉牊牋牌ç‰ç‰Žç‰ç‰ç‰‘牒牓牔牕牖牗牘牙牚牛牜ç‰ç‰žç‰Ÿ +牠牡牢牣牤牥牦牧牨物牪牫牬牭牮牯牰牱牲牳牴牵牶牷牸特牺牻牼牽牾牿 +犀çŠçŠ‚犃犄犅犆犇犈犉犊犋犌çŠçŠŽçŠçŠçŠ‘犒犓犔犕犖犗犘犙犚犛犜çŠçŠžçŠŸ +犠犡犢犣犤犥犦犧犨犩犪犫犬犭犮犯犰犱犲犳犴犵状犷犸犹犺犻犼犽犾犿 +ç‹€ç‹ç‹‚狃狄狅狆狇狈狉狊狋狌ç‹ç‹Žç‹ç‹ç‹‘狒狓狔狕狖狗狘狙狚狛狜ç‹ç‹žç‹Ÿ +狠狡狢狣狤狥狦狧狨狩狪狫独狭狮狯狰狱狲狳狴狵狶狷狸狹狺狻狼狽狾狿 +猀çŒçŒ‚猃猄猅猆猇猈猉猊猋猌çŒçŒŽçŒçŒçŒ‘猒猓猔猕猖猗猘猙猚猛猜çŒçŒžçŒŸ +猠猡猢猣猤猥猦猧猨猩猪猫猬猭献猯猰猱猲猳猴猵猶猷猸猹猺猻猼猽猾猿 +ç€çç‚çƒç„ç…ç†ç‡çˆç‰çŠç‹çŒççŽççç‘ç’ç“ç”ç•ç–ç—ç˜ç™çšç›çœççžçŸ +ç ç¡ç¢ç£ç¤ç¥ç¦ç§ç¨ç©çªç«ç¬ç­ç®ç¯ç°ç±ç²ç³ç´çµç¶ç·ç¸ç¹çºç»ç¼ç½ç¾ç¿ +玀çŽçŽ‚玃玄玅玆率玈玉玊王玌çŽçŽŽçŽçŽçŽ‘玒玓玔玕玖玗玘玙玚玛玜çŽçŽžçŽŸ +玠玡玢玣玤玥玦玧玨玩玪玫玬玭玮环现玱玲玳玴玵玶玷玸玹玺玻玼玽玾玿 +ç€çç‚çƒç„ç…ç†ç‡çˆç‰çŠç‹çŒççŽççç‘ç’ç“ç”ç•ç–ç—ç˜ç™çšç›çœççžçŸ +ç ç¡ç¢ç£ç¤ç¥ç¦ç§ç¨ç©çªç«ç¬ç­ç®ç¯ç°ç±ç²ç³ç´çµç¶ç·ç¸ç¹çºç»ç¼ç½ç¾ç¿ +ç€çç‚çƒç„ç…ç†ç‡çˆç‰çŠç‹çŒççŽççç‘ç’ç“ç”ç•ç–ç—ç˜ç™çšç›çœççžçŸ +ç ç¡ç¢ç£ç¤ç¥ç¦ç§ç¨ç©çªç«ç¬ç­ç®ç¯ç°ç±ç²ç³ç´çµç¶ç·ç¸ç¹çºç»ç¼ç½ç¾ç¿ +ç‘€ç‘瑂瑃瑄瑅瑆瑇瑈瑉瑊瑋瑌ç‘ç‘Žç‘ç‘瑑瑒瑓瑔瑕瑖瑗瑘瑙瑚瑛瑜ç‘ç‘žç‘Ÿ +瑠瑡瑢瑣瑤瑥瑦瑧瑨瑩瑪瑫瑬瑭瑮瑯瑰瑱瑲瑳瑴瑵瑶瑷瑸瑹瑺瑻瑼瑽瑾瑿 +ç’€ç’璂璃璄璅璆璇璈璉璊璋璌ç’ç’Žç’ç’璑璒璓璔璕璖璗璘璙璚璛璜ç’ç’žç’Ÿ +璠璡璢璣璤璥璦璧璨璩璪璫璬璭璮璯環璱璲璳璴璵璶璷璸璹璺璻璼璽璾璿 +ç“€ç“瓂瓃瓄瓅瓆瓇瓈瓉瓊瓋瓌ç“ç“Žç“ç“瓑瓒瓓瓔瓕瓖瓗瓘瓙瓚瓛瓜ç“ç“žç“Ÿ +瓠瓡瓢瓣瓤瓥瓦瓧瓨瓩瓪瓫瓬瓭瓮瓯瓰瓱瓲瓳瓴瓵瓶瓷瓸瓹瓺瓻瓼瓽瓾瓿 +甀ç”甂甃甄甅甆甇甈甉甊甋甌ç”甎ç”ç”甑甒甓甔甕甖甗甘甙甚甛甜ç”甞生 +甠甡產産甤甥甦甧用甩甪甫甬甭甮甯田由甲申甴电甶男甸甹町画甼甽甾甿 +ç•€ç•ç•‚畃畄畅畆畇畈畉畊畋界ç•ç•Žç•ç•ç•‘畒畓畔畕畖畗畘留畚畛畜ç•ç•žç•Ÿ +畠畡畢畣畤略畦畧畨畩番畫畬畭畮畯異畱畲畳畴畵當畷畸畹畺畻畼畽畾畿 +ç–€ç–疂疃疄疅疆疇疈疉疊疋疌ç–ç–Žç–ç–疑疒疓疔疕疖疗疘疙疚疛疜ç–ç–žç–Ÿ +疠疡疢疣疤疥疦疧疨疩疪疫疬疭疮疯疰疱疲疳疴疵疶疷疸疹疺疻疼疽疾疿 +ç—€ç—痂痃痄病痆症痈痉痊痋痌ç—ç—Žç—ç—痑痒痓痔痕痖痗痘痙痚痛痜ç—ç—žç—Ÿ +痠痡痢痣痤痥痦痧痨痩痪痫痬痭痮痯痰痱痲痳痴痵痶痷痸痹痺痻痼痽痾痿 +瘀ç˜ç˜‚瘃瘄瘅瘆瘇瘈瘉瘊瘋瘌ç˜ç˜Žç˜ç˜ç˜‘瘒瘓瘔瘕瘖瘗瘘瘙瘚瘛瘜ç˜ç˜žç˜Ÿ +瘠瘡瘢瘣瘤瘥瘦瘧瘨瘩瘪瘫瘬瘭瘮瘯瘰瘱瘲瘳瘴瘵瘶瘷瘸瘹瘺瘻瘼瘽瘾瘿 +癀ç™ç™‚癃癄癅癆癇癈癉癊癋癌ç™ç™Žç™ç™ç™‘癒癓癔癕癖癗癘癙癚癛癜ç™ç™žç™Ÿ +癠癡癢癣癤癥癦癧癨癩癪癫癬癭癮癯癰癱癲癳癴癵癶癷癸癹発登發白百癿 +皀çšçš‚皃的皅皆皇皈皉皊皋皌çšçšŽçšçšçš‘皒皓皔皕皖皗皘皙皚皛皜çšçšžçšŸ +皠皡皢皣皤皥皦皧皨皩皪皫皬皭皮皯皰皱皲皳皴皵皶皷皸皹皺皻皼皽皾皿 +盀ç›ç›‚盃盄盅盆盇盈盉益盋盌ç›ç›Žç›ç›ç›‘盒盓盔盕盖盗盘盙盚盛盜ç›ç›žç›Ÿ +盠盡盢監盤盥盦盧盨盩盪盫盬盭目盯盰盱盲盳直盵盶盷相盹盺盻盼盽盾盿 +眀çœçœ‚眃眄眅眆眇眈眉眊看県çœçœŽçœçœçœ‘眒眓眔眕眖眗眘眙眚眛眜çœçœžçœŸ +眠眡眢眣眤眥眦眧眨眩眪眫眬眭眮眯眰眱眲眳眴眵眶眷眸眹眺眻眼眽眾眿 +ç€çç‚çƒç„ç…ç†ç‡çˆç‰çŠç‹çŒççŽççç‘ç’ç“ç”ç•ç–ç—ç˜ç™çšç›çœççžçŸ +ç ç¡ç¢ç£ç¤ç¥ç¦ç§ç¨ç©çªç«ç¬ç­ç®ç¯ç°ç±ç²ç³ç´çµç¶ç·ç¸ç¹çºç»ç¼ç½ç¾ç¿ +瞀çžçž‚瞃瞄瞅瞆瞇瞈瞉瞊瞋瞌çžçžŽçžçžçž‘瞒瞓瞔瞕瞖瞗瞘瞙瞚瞛瞜çžçžžçžŸ +瞠瞡瞢瞣瞤瞥瞦瞧瞨瞩瞪瞫瞬瞭瞮瞯瞰瞱瞲瞳瞴瞵瞶瞷瞸瞹瞺瞻瞼瞽瞾瞿 +矀çŸçŸ‚矃矄矅矆矇矈矉矊矋矌çŸçŸŽçŸçŸçŸ‘矒矓矔矕矖矗矘矙矚矛矜çŸçŸžçŸŸ +矠矡矢矣矤知矦矧矨矩矪矫矬短矮矯矰矱矲石矴矵矶矷矸矹矺矻矼矽矾矿 +ç €ç ç ‚砃砄砅砆砇砈砉砊砋砌ç ç Žç ç ç ‘砒砓研砕砖砗砘砙砚砛砜ç ç žç Ÿ +砠砡砢砣砤砥砦砧砨砩砪砫砬砭砮砯砰砱砲砳破砵砶砷砸砹砺砻砼砽砾砿 +ç¡€ç¡ç¡‚硃硄硅硆硇硈硉硊硋硌ç¡ç¡Žç¡ç¡ç¡‘硒硓硔硕硖硗硘硙硚硛硜ç¡ç¡žç¡Ÿ +硠硡硢硣硤硥硦硧硨硩硪硫硬硭确硯硰硱硲硳硴硵硶硷硸硹硺硻硼硽硾硿 +碀ç¢ç¢‚碃碄碅碆碇碈碉碊碋碌ç¢ç¢Žç¢ç¢ç¢‘碒碓碔碕碖碗碘碙碚碛碜ç¢ç¢žç¢Ÿ +碠碡碢碣碤碥碦碧碨碩碪碫碬碭碮碯碰碱碲碳碴碵碶碷碸碹確碻碼碽碾碿 +磀ç£ç£‚磃磄磅磆磇磈磉磊磋磌ç£ç£Žç£ç£ç£‘磒磓磔磕磖磗磘磙磚磛磜ç£ç£žç£Ÿ +磠磡磢磣磤磥磦磧磨磩磪磫磬磭磮磯磰磱磲磳磴磵磶磷磸磹磺磻磼磽磾磿 +礀ç¤ç¤‚礃礄礅礆礇礈礉礊礋礌ç¤ç¤Žç¤ç¤ç¤‘礒礓礔礕礖礗礘礙礚礛礜ç¤ç¤žç¤Ÿ +礠礡礢礣礤礥礦礧礨礩礪礫礬礭礮礯礰礱礲礳礴礵礶礷礸礹示礻礼礽社礿 +祀ç¥ç¥‚祃祄祅祆祇祈祉祊祋祌ç¥ç¥Žç¥ç¥ç¥‘祒祓祔祕祖祗祘祙祚祛祜ç¥ç¥žç¥Ÿ +祠祡祢祣祤祥祦祧票祩祪祫祬祭祮祯祰祱祲祳祴祵祶祷祸祹祺祻祼祽祾祿 +禀ç¦ç¦‚禃禄禅禆禇禈禉禊禋禌ç¦ç¦Žç¦ç¦ç¦‘禒禓禔禕禖禗禘禙禚禛禜ç¦ç¦žç¦Ÿ +禠禡禢禣禤禥禦禧禨禩禪禫禬禭禮禯禰禱禲禳禴禵禶禷禸禹禺离禼禽禾禿 +秀ç§ç§‚秃秄秅秆秇秈秉秊秋秌ç§ç§Žç§ç§ç§‘秒秓秔秕秖秗秘秙秚秛秜ç§ç§žç§Ÿ +秠秡秢秣秤秥秦秧秨秩秪秫秬秭秮积称秱秲秳秴秵秶秷秸秹秺移秼秽秾秿 +稀ç¨ç¨‚稃稄稅稆稇稈稉稊程稌ç¨ç¨Žç¨ç¨ç¨‘稒稓稔稕稖稗稘稙稚稛稜ç¨ç¨žç¨Ÿ +稠稡稢稣稤稥稦稧稨稩稪稫稬稭種稯稰稱稲稳稴稵稶稷稸稹稺稻稼稽稾稿 +ç©€ç©ç©‚穃穄穅穆穇穈穉穊穋穌ç©ç©Žç©ç©ç©‘穒穓穔穕穖穗穘穙穚穛穜ç©ç©žç©Ÿ +穠穡穢穣穤穥穦穧穨穩穪穫穬穭穮穯穰穱穲穳穴穵究穷穸穹空穻穼穽穾穿 +窀çªçª‚窃窄窅窆窇窈窉窊窋窌çªçªŽçªçªçª‘窒窓窔窕窖窗窘窙窚窛窜çªçªžçªŸ +窠窡窢窣窤窥窦窧窨窩窪窫窬窭窮窯窰窱窲窳窴窵窶窷窸窹窺窻窼窽窾窿 +ç«€ç«ç«‚竃竄竅竆竇竈竉竊立竌ç«ç«Žç«ç«ç«‘竒竓竔竕竖竗竘站竚竛竜ç«ç«žç«Ÿ +章竡竢竣竤童竦竧竨竩竪竫竬竭竮端竰竱竲竳竴竵競竷竸竹竺竻竼竽竾竿 +笀ç¬ç¬‚笃笄笅笆笇笈笉笊笋笌ç¬ç¬Žç¬ç¬ç¬‘笒笓笔笕笖笗笘笙笚笛笜ç¬ç¬žç¬Ÿ +笠笡笢笣笤笥符笧笨笩笪笫第笭笮笯笰笱笲笳笴笵笶笷笸笹笺笻笼笽笾笿 +ç­€ç­ç­‚筃筄筅筆筇筈等筊筋筌ç­ç­Žç­ç­ç­‘筒筓答筕策筗筘筙筚筛筜ç­ç­žç­Ÿ +筠筡筢筣筤筥筦筧筨筩筪筫筬筭筮筯筰筱筲筳筴筵筶筷筸筹筺筻筼筽签筿 +简ç®ç®‚箃箄箅箆箇箈箉箊箋箌ç®ç®Žç®ç®ç®‘箒箓箔箕箖算箘箙箚箛箜ç®ç®žç®Ÿ +箠管箢箣箤箥箦箧箨箩箪箫箬箭箮箯箰箱箲箳箴箵箶箷箸箹箺箻箼箽箾箿 +節ç¯ç¯‚篃範篅篆篇篈築篊篋篌ç¯ç¯Žç¯ç¯ç¯‘篒篓篔篕篖篗篘篙篚篛篜ç¯ç¯žç¯Ÿ +篠篡篢篣篤篥篦篧篨篩篪篫篬篭篮篯篰篱篲篳篴篵篶篷篸篹篺篻篼篽篾篿 +ç°€ç°ç°‚簃簄簅簆簇簈簉簊簋簌ç°ç°Žç°ç°ç°‘簒簓簔簕簖簗簘簙簚簛簜ç°ç°žç°Ÿ +簠簡簢簣簤簥簦簧簨簩簪簫簬簭簮簯簰簱簲簳簴簵簶簷簸簹簺簻簼簽簾簿 +ç±€ç±ç±‚籃籄籅籆籇籈籉籊籋籌ç±ç±Žç±ç±ç±‘籒籓籔籕籖籗籘籙籚籛籜ç±ç±žç±Ÿ +籠籡籢籣籤籥籦籧籨籩籪籫籬籭籮籯籰籱籲米籴籵籶籷籸籹籺类籼籽籾籿 +ç²€ç²ç²‚粃粄粅粆粇粈粉粊粋粌ç²ç²Žç²ç²ç²‘粒粓粔粕粖粗粘粙粚粛粜ç²ç²žç²Ÿ +粠粡粢粣粤粥粦粧粨粩粪粫粬粭粮粯粰粱粲粳粴粵粶粷粸粹粺粻粼粽精粿 +ç³€ç³ç³‚糃糄糅糆糇糈糉糊糋糌ç³ç³Žç³ç³ç³‘糒糓糔糕糖糗糘糙糚糛糜ç³ç³žç³Ÿ +糠糡糢糣糤糥糦糧糨糩糪糫糬糭糮糯糰糱糲糳糴糵糶糷糸糹糺系糼糽糾糿 +ç´€ç´ç´‚紃約紅紆紇紈紉紊紋紌ç´ç´Žç´ç´ç´‘紒紓純紕紖紗紘紙級紛紜ç´ç´žç´Ÿ +素紡索紣紤紥紦紧紨紩紪紫紬紭紮累細紱紲紳紴紵紶紷紸紹紺紻紼紽紾紿 +çµ€çµçµ‚絃組絅絆絇絈絉絊絋経çµçµŽçµçµçµ‘絒絓絔絕絖絗絘絙絚絛絜çµçµžçµŸ +絠絡絢絣絤絥給絧絨絩絪絫絬絭絮絯絰統絲絳絴絵絶絷絸絹絺絻絼絽絾絿 +綀ç¶ç¶‚綃綄綅綆綇綈綉綊綋綌ç¶ç¶Žç¶ç¶ç¶‘綒經綔綕綖綗綘継続綛綜ç¶ç¶žç¶Ÿ +綠綡綢綣綤綥綦綧綨綩綪綫綬維綮綯綰綱網綳綴綵綶綷綸綹綺綻綼綽綾綿 +ç·€ç·ç·‚緃緄緅緆緇緈緉緊緋緌ç·ç·Žç·ç·ç·‘緒緓緔緕緖緗緘緙線緛緜ç·ç·žç·Ÿ +締緡緢緣緤緥緦緧編緩緪緫緬緭緮緯緰緱緲緳練緵緶緷緸緹緺緻緼緽緾緿 +縀ç¸ç¸‚縃縄縅縆縇縈縉縊縋縌ç¸ç¸Žç¸ç¸ç¸‘縒縓縔縕縖縗縘縙縚縛縜ç¸ç¸žç¸Ÿ +縠縡縢縣縤縥縦縧縨縩縪縫縬縭縮縯縰縱縲縳縴縵縶縷縸縹縺縻縼總績縿 +ç¹€ç¹ç¹‚繃繄繅繆繇繈繉繊繋繌ç¹ç¹Žç¹ç¹ç¹‘繒繓織繕繖繗繘繙繚繛繜ç¹ç¹žç¹Ÿ +繠繡繢繣繤繥繦繧繨繩繪繫繬繭繮繯繰繱繲繳繴繵繶繷繸繹繺繻繼繽繾繿 +纀çºçº‚纃纄纅纆纇纈纉纊纋續çºçºŽçºçºçº‘纒纓纔纕纖纗纘纙纚纛纜çºçºžçºŸ +纠纡红纣纤纥约级纨纩纪纫纬纭纮纯纰纱纲纳纴纵纶纷纸纹纺纻纼纽纾线 +绀ç»ç»‚练组绅细织终绉绊绋绌ç»ç»Žç»ç»ç»‘绒结绔绕绖绗绘给绚绛络ç»ç»žç»Ÿ +绠绡绢绣绤绥绦继绨绩绪绫绬续绮绯绰绱绲绳维绵绶绷绸绹绺绻综绽绾绿 +ç¼€ç¼ç¼‚缃缄缅缆缇缈缉缊缋缌ç¼ç¼Žç¼ç¼ç¼‘缒缓缔缕编缗缘缙缚缛缜ç¼ç¼žç¼Ÿ +缠缡缢缣缤缥缦缧缨缩缪缫缬缭缮缯缰缱缲缳缴缵缶缷缸缹缺缻缼缽缾缿 +ç½€ç½ç½‚罃罄罅罆罇罈罉罊罋罌ç½ç½Žç½ç½ç½‘罒罓罔罕罖罗罘罙罚罛罜ç½ç½žç½Ÿ +罠罡罢罣罤罥罦罧罨罩罪罫罬罭置罯罰罱署罳罴罵罶罷罸罹罺罻罼罽罾罿 +ç¾€ç¾ç¾‚羃羄羅羆羇羈羉羊羋羌ç¾ç¾Žç¾ç¾ç¾‘羒羓羔羕羖羗羘羙羚羛羜ç¾ç¾žç¾Ÿ +羠羡羢羣群羥羦羧羨義羪羫羬羭羮羯羰羱羲羳羴羵羶羷羸羹羺羻羼羽羾羿 +ç¿€ç¿ç¿‚翃翄翅翆翇翈翉翊翋翌ç¿ç¿Žç¿ç¿ç¿‘習翓翔翕翖翗翘翙翚翛翜ç¿ç¿žç¿Ÿ +翠翡翢翣翤翥翦翧翨翩翪翫翬翭翮翯翰翱翲翳翴翵翶翷翸翹翺翻翼翽翾翿 +耀è€è€‚考耄者耆耇耈耉耊耋而è€è€Žè€è€è€‘耒耓耔耕耖耗耘耙耚耛耜è€è€žè€Ÿ +耠耡耢耣耤耥耦耧耨耩耪耫耬耭耮耯耰耱耲耳耴耵耶耷耸耹耺耻耼耽耾耿 +è€èè‚èƒè„è…è†è‡èˆè‰èŠè‹èŒèèŽèèè‘è’è“è”è•è–è—è˜è™èšè›èœèèžèŸ +è è¡è¢è£è¤è¥è¦è§è¨è©èªè«è¬è­è®è¯è°è±è²è³è´èµè¶è·è¸è¹èºè»è¼è½è¾è¿ +è‚€è‚肂肃肄肅肆肇肈肉肊肋肌è‚è‚Žè‚è‚肑肒肓肔肕肖肗肘肙肚肛肜è‚è‚žè‚Ÿ +肠股肢肣肤肥肦肧肨肩肪肫肬肭肮肯肰肱育肳肴肵肶肷肸肹肺肻肼肽肾肿 +胀èƒèƒ‚胃胄胅胆胇胈胉胊胋背èƒèƒŽèƒèƒèƒ‘胒胓胔胕胖胗胘胙胚胛胜èƒèƒžèƒŸ +胠胡胢胣胤胥胦胧胨胩胪胫胬胭胮胯胰胱胲胳胴胵胶胷胸胹胺胻胼能胾胿 +è„€è„脂脃脄脅脆脇脈脉脊脋脌è„è„Žè„è„脑脒脓脔脕脖脗脘脙脚脛脜è„è„žè„Ÿ +脠脡脢脣脤脥脦脧脨脩脪脫脬脭脮脯脰脱脲脳脴脵脶脷脸脹脺脻脼脽脾脿 +è…€è…腂腃腄腅腆腇腈腉腊腋腌è…è…Žè…è…腑腒腓腔腕腖腗腘腙腚腛腜è…è…žè…Ÿ +腠腡腢腣腤腥腦腧腨腩腪腫腬腭腮腯腰腱腲腳腴腵腶腷腸腹腺腻腼腽腾腿 +膀è†è†‚膃膄膅膆膇膈膉膊膋膌è†è†Žè†è†è†‘膒膓膔膕膖膗膘膙膚膛膜è†è†žè†Ÿ +膠膡膢膣膤膥膦膧膨膩膪膫膬膭膮膯膰膱膲膳膴膵膶膷膸膹膺膻膼膽膾膿 +臀è‡è‡‚臃臄臅臆臇臈臉臊臋臌è‡è‡Žè‡è‡è‡‘臒臓臔臕臖臗臘臙臚臛臜è‡è‡žè‡Ÿ +臠臡臢臣臤臥臦臧臨臩自臫臬臭臮臯臰臱臲至致臵臶臷臸臹臺臻臼臽臾臿 +舀èˆèˆ‚舃舄舅舆與興舉舊舋舌èˆèˆŽèˆèˆèˆ‘舒舓舔舕舖舗舘舙舚舛舜èˆèˆžèˆŸ +舠舡舢舣舤舥舦舧舨舩航舫般舭舮舯舰舱舲舳舴舵舶舷舸船舺舻舼舽舾舿 +艀è‰è‰‚艃艄艅艆艇艈艉艊艋艌è‰è‰Žè‰è‰è‰‘艒艓艔艕艖艗艘艙艚艛艜è‰è‰žè‰Ÿ +艠艡艢艣艤艥艦艧艨艩艪艫艬艭艮良艰艱色艳艴艵艶艷艸艹艺艻艼艽艾艿 +芀èŠèŠ‚芃芄芅芆芇芈芉芊芋芌èŠèŠŽèŠèŠèŠ‘芒芓芔芕芖芗芘芙芚芛芜èŠèŠžèŠŸ +芠芡芢芣芤芥芦芧芨芩芪芫芬芭芮芯芰花芲芳芴芵芶芷芸芹芺芻芼芽芾芿 +è‹€è‹è‹‚苃苄苅苆苇苈苉苊苋苌è‹è‹Žè‹è‹è‹‘苒苓苔苕苖苗苘苙苚苛苜è‹è‹žè‹Ÿ +苠苡苢苣苤若苦苧苨苩苪苫苬苭苮苯苰英苲苳苴苵苶苷苸苹苺苻苼苽苾苿 +茀èŒèŒ‚范茄茅茆茇茈茉茊茋茌èŒèŒŽèŒèŒèŒ‘茒茓茔茕茖茗茘茙茚茛茜èŒèŒžèŒŸ +茠茡茢茣茤茥茦茧茨茩茪茫茬茭茮茯茰茱茲茳茴茵茶茷茸茹茺茻茼茽茾茿 +è€èè‚èƒè„è…è†è‡èˆè‰èŠè‹èŒèèŽèèè‘è’è“è”è•è–è—è˜è™èšè›èœèèžèŸ +è è¡è¢è£è¤è¥è¦è§è¨è©èªè«è¬è­è®è¯è°è±è²è³è´èµè¶è·è¸è¹èºè»è¼è½è¾è¿ +莀èŽèŽ‚莃莄莅莆莇莈莉莊莋莌èŽèŽŽèŽèŽèŽ‘莒莓莔莕莖莗莘莙莚莛莜èŽèŽžèŽŸ +莠莡莢莣莤莥莦莧莨莩莪莫莬莭莮莯莰莱莲莳莴莵莶获莸莹莺莻莼莽莾莿 +è€èè‚èƒè„è…è†è‡èˆè‰èŠè‹èŒèèŽèèè‘è’è“è”è•è–è—è˜è™èšè›èœèèžèŸ +è è¡è¢è£è¤è¥è¦è§è¨è©èªè«è¬è­è®è¯è°è±è²è³è´èµè¶è·è¸è¹èºè»è¼è½è¾è¿ +è€èè‚èƒè„è…è†è‡èˆè‰èŠè‹èŒèèŽèèè‘è’è“è”è•è–è—è˜è™èšè›èœèèžèŸ +è è¡è¢è£è¤è¥è¦è§è¨è©èªè«è¬è­è®è¯è°è±è²è³è´èµè¶è·è¸è¹èºè»è¼è½è¾è¿ +è‘€è‘葂葃葄葅葆葇葈葉葊葋葌è‘è‘Žè‘è‘葑葒葓葔葕葖著葘葙葚葛葜è‘è‘žè‘Ÿ +葠葡葢董葤葥葦葧葨葩葪葫葬葭葮葯葰葱葲葳葴葵葶葷葸葹葺葻葼葽葾葿 +è’€è’蒂蒃蒄蒅蒆蒇蒈蒉蒊蒋蒌è’è’Žè’è’蒑蒒蒓蒔蒕蒖蒗蒘蒙蒚蒛蒜è’è’žè’Ÿ +蒠蒡蒢蒣蒤蒥蒦蒧蒨蒩蒪蒫蒬蒭蒮蒯蒰蒱蒲蒳蒴蒵蒶蒷蒸蒹蒺蒻蒼蒽蒾蒿 +è“€è“蓂蓃蓄蓅蓆蓇蓈蓉蓊蓋蓌è“è“Žè“è“蓑蓒蓓蓔蓕蓖蓗蓘蓙蓚蓛蓜è“è“žè“Ÿ +蓠蓡蓢蓣蓤蓥蓦蓧蓨蓩蓪蓫蓬蓭蓮蓯蓰蓱蓲蓳蓴蓵蓶蓷蓸蓹蓺蓻蓼蓽蓾蓿 +蔀è”蔂蔃蔄蔅蔆蔇蔈蔉蔊蔋蔌è”蔎è”è”蔑蔒蔓蔔蔕蔖蔗蔘蔙蔚蔛蔜è”蔞蔟 +蔠蔡蔢蔣蔤蔥蔦蔧蔨蔩蔪蔫蔬蔭蔮蔯蔰蔱蔲蔳蔴蔵蔶蔷蔸蔹蔺蔻蔼蔽蔾蔿 +è•€è•è•‚蕃蕄蕅蕆蕇蕈蕉蕊蕋蕌è•è•Žè•è•è•‘蕒蕓蕔蕕蕖蕗蕘蕙蕚蕛蕜è•è•žè•Ÿ +蕠蕡蕢蕣蕤蕥蕦蕧蕨蕩蕪蕫蕬蕭蕮蕯蕰蕱蕲蕳蕴蕵蕶蕷蕸蕹蕺蕻蕼蕽蕾蕿 +è–€è–薂薃薄薅薆薇薈薉薊薋薌è–è–Žè–è–薑薒薓薔薕薖薗薘薙薚薛薜è–è–žè–Ÿ +薠薡薢薣薤薥薦薧薨薩薪薫薬薭薮薯薰薱薲薳薴薵薶薷薸薹薺薻薼薽薾薿 +è—€è—藂藃藄藅藆藇藈藉藊藋藌è—è—Žè—è—藑藒藓藔藕藖藗藘藙藚藛藜è—è—žè—Ÿ +藠藡藢藣藤藥藦藧藨藩藪藫藬藭藮藯藰藱藲藳藴藵藶藷藸藹藺藻藼藽藾藿 +蘀è˜è˜‚蘃蘄蘅蘆蘇蘈蘉蘊蘋蘌è˜è˜Žè˜è˜è˜‘蘒蘓蘔蘕蘖蘗蘘蘙蘚蘛蘜è˜è˜žè˜Ÿ +蘠蘡蘢蘣蘤蘥蘦蘧蘨蘩蘪蘫蘬蘭蘮蘯蘰蘱蘲蘳蘴蘵蘶蘷蘸蘹蘺蘻蘼蘽蘾蘿 +虀è™è™‚虃虄虅虆虇虈虉虊虋虌è™è™Žè™è™è™‘虒虓虔處虖虗虘虙虚虛虜è™è™žè™Ÿ +虠虡虢虣虤虥虦虧虨虩虪虫虬虭虮虯虰虱虲虳虴虵虶虷虸虹虺虻虼虽虾虿 +蚀èšèš‚蚃蚄蚅蚆蚇蚈蚉蚊蚋蚌èšèšŽèšèšèš‘蚒蚓蚔蚕蚖蚗蚘蚙蚚蚛蚜èšèšžèšŸ +蚠蚡蚢蚣蚤蚥蚦蚧蚨蚩蚪蚫蚬蚭蚮蚯蚰蚱蚲蚳蚴蚵蚶蚷蚸蚹蚺蚻蚼蚽蚾蚿 +蛀è›è›‚蛃蛄蛅蛆蛇蛈蛉蛊蛋蛌è›è›Žè›è›è›‘蛒蛓蛔蛕蛖蛗蛘蛙蛚蛛蛜è›è›žè›Ÿ +蛠蛡蛢蛣蛤蛥蛦蛧蛨蛩蛪蛫蛬蛭蛮蛯蛰蛱蛲蛳蛴蛵蛶蛷蛸蛹蛺蛻蛼蛽蛾蛿 +蜀èœèœ‚蜃蜄蜅蜆蜇蜈蜉蜊蜋蜌èœèœŽèœèœèœ‘蜒蜓蜔蜕蜖蜗蜘蜙蜚蜛蜜èœèœžèœŸ +蜠蜡蜢蜣蜤蜥蜦蜧蜨蜩蜪蜫蜬蜭蜮蜯蜰蜱蜲蜳蜴蜵蜶蜷蜸蜹蜺蜻蜼蜽蜾蜿 +è€èè‚èƒè„è…è†è‡èˆè‰èŠè‹èŒèèŽèèè‘è’è“è”è•è–è—è˜è™èšè›èœèèžèŸ +è è¡è¢è£è¤è¥è¦è§è¨è©èªè«è¬è­è®è¯è°è±è²è³è´èµè¶è·è¸è¹èºè»è¼è½è¾è¿ +螀èžèž‚螃螄螅螆螇螈螉螊螋螌èžèžŽèžèžèž‘螒螓螔螕螖螗螘螙螚螛螜èžèžžèžŸ +螠螡螢螣螤螥螦螧螨螩螪螫螬螭螮螯螰螱螲螳螴螵螶螷螸螹螺螻螼螽螾螿 +蟀èŸèŸ‚蟃蟄蟅蟆蟇蟈蟉蟊蟋蟌èŸèŸŽèŸèŸèŸ‘蟒蟓蟔蟕蟖蟗蟘蟙蟚蟛蟜èŸèŸžèŸŸ +蟠蟡蟢蟣蟤蟥蟦蟧蟨蟩蟪蟫蟬蟭蟮蟯蟰蟱蟲蟳蟴蟵蟶蟷蟸蟹蟺蟻蟼蟽蟾蟿 +è €è è ‚蠃蠄蠅蠆蠇蠈蠉蠊蠋蠌è è Žè è è ‘蠒蠓蠔蠕蠖蠗蠘蠙蠚蠛蠜è è žè Ÿ +蠠蠡蠢蠣蠤蠥蠦蠧蠨蠩蠪蠫蠬蠭蠮蠯蠰蠱蠲蠳蠴蠵蠶蠷蠸蠹蠺蠻蠼蠽蠾蠿 +è¡€è¡è¡‚衃衄衅衆衇衈衉衊衋行è¡è¡Žè¡è¡è¡‘衒術衔衕衖街衘衙衚衛衜è¡è¡žè¡Ÿ +衠衡衢衣衤补衦衧表衩衪衫衬衭衮衯衰衱衲衳衴衵衶衷衸衹衺衻衼衽衾衿 +袀è¢è¢‚袃袄袅袆袇袈袉袊袋袌è¢è¢Žè¢è¢è¢‘袒袓袔袕袖袗袘袙袚袛袜è¢è¢žè¢Ÿ +袠袡袢袣袤袥袦袧袨袩袪被袬袭袮袯袰袱袲袳袴袵袶袷袸袹袺袻袼袽袾袿 +裀è£è£‚裃裄装裆裇裈裉裊裋裌è£è£Žè£è£è£‘裒裓裔裕裖裗裘裙裚裛補è£è£žè£Ÿ +裠裡裢裣裤裥裦裧裨裩裪裫裬裭裮裯裰裱裲裳裴裵裶裷裸裹裺裻裼製裾裿 +褀è¤è¤‚褃褄褅褆複褈褉褊褋褌è¤è¤Žè¤è¤è¤‘褒褓褔褕褖褗褘褙褚褛褜è¤è¤žè¤Ÿ +褠褡褢褣褤褥褦褧褨褩褪褫褬褭褮褯褰褱褲褳褴褵褶褷褸褹褺褻褼褽褾褿 +襀è¥è¥‚襃襄襅襆襇襈襉襊襋襌è¥è¥Žè¥è¥è¥‘襒襓襔襕襖襗襘襙襚襛襜è¥è¥žè¥Ÿ +襠襡襢襣襤襥襦襧襨襩襪襫襬襭襮襯襰襱襲襳襴襵襶襷襸襹襺襻襼襽襾西 +覀è¦è¦‚覃覄覅覆覇覈覉覊見覌è¦è¦Žè¦è¦è¦‘覒覓覔覕視覗覘覙覚覛覜è¦è¦žè¦Ÿ +覠覡覢覣覤覥覦覧覨覩親覫覬覭覮覯覰覱覲観覴覵覶覷覸覹覺覻覼覽覾覿 +觀è§è§‚觃规觅视觇览觉觊觋觌è§è§Žè§è§è§‘角觓觔觕觖觗觘觙觚觛觜è§è§žè§Ÿ +觠觡觢解觤觥触觧觨觩觪觫觬觭觮觯觰觱觲觳觴觵觶觷觸觹觺觻觼觽觾觿 +言è¨è¨‚訃訄訅訆訇計訉訊訋訌è¨è¨Žè¨è¨è¨‘訒訓訔訕訖託記訙訚訛訜è¨è¨žè¨Ÿ +訠訡訢訣訤訥訦訧訨訩訪訫訬設訮訯訰許訲訳訴訵訶訷訸訹診註証訽訾訿 +è©€è©è©‚詃詄詅詆詇詈詉詊詋詌è©è©Žè©è©è©‘詒詓詔評詖詗詘詙詚詛詜è©è©žè©Ÿ +詠詡詢詣詤詥試詧詨詩詪詫詬詭詮詯詰話該詳詴詵詶詷詸詹詺詻詼詽詾詿 +誀èªèª‚誃誄誅誆誇誈誉誊誋誌èªèªŽèªèªèª‘誒誓誔誕誖誗誘誙誚誛誜èªèªžèªŸ +誠誡誢誣誤誥誦誧誨誩說誫説読誮誯誰誱課誳誴誵誶誷誸誹誺誻誼誽誾調 +è«€è«è«‚諃諄諅諆談諈諉諊請諌è«è«Žè«è«è«‘諒諓諔諕論諗諘諙諚諛諜è«è«žè«Ÿ +諠諡諢諣諤諥諦諧諨諩諪諫諬諭諮諯諰諱諲諳諴諵諶諷諸諹諺諻諼諽諾諿 +謀è¬è¬‚謃謄謅謆謇謈謉謊謋謌è¬è¬Žè¬è¬è¬‘謒謓謔謕謖謗謘謙謚講謜è¬è¬žè¬Ÿ +謠謡謢謣謤謥謦謧謨謩謪謫謬謭謮謯謰謱謲謳謴謵謶謷謸謹謺謻謼謽謾謿 +è­€è­è­‚譃譄譅譆譇譈證譊譋譌è­è­Žè­è­è­‘譒譓譔譕譖譗識譙譚譛譜è­è­žè­Ÿ +譠譡譢譣譤譥警譧譨譩譪譫譬譭譮譯議譱譲譳譴譵譶護譸譹譺譻譼譽譾譿 +讀è®è®‚讃讄讅讆讇讈讉變讋讌è®è®Žè®è®è®‘讒讓讔讕讖讗讘讙讚讛讜è®è®žè®Ÿ +讠计订讣认讥讦讧讨让讪讫讬训议讯记讱讲讳讴讵讶讷许讹论讻讼讽设访 +诀è¯è¯‚诃评诅识诇诈诉诊诋诌è¯è¯Žè¯è¯è¯‘诒诓诔试诖诗诘诙诚诛诜è¯è¯žè¯Ÿ +诠诡询诣诤该详诧诨诩诪诫诬语诮误诰诱诲诳说诵诶请诸诹诺读诼诽课诿 +è°€è°è°‚调谄谅谆谇谈谉谊谋谌è°è°Žè°è°è°‘谒谓谔谕谖谗谘谙谚谛谜è°è°žè°Ÿ +谠谡谢谣谤谥谦谧谨谩谪谫谬谭谮谯谰谱谲谳谴谵谶谷谸谹谺谻谼谽谾谿 +è±€è±è±‚豃豄豅豆豇豈豉豊豋豌è±è±Žè±è±è±‘豒豓豔豕豖豗豘豙豚豛豜è±è±žè±Ÿ +豠象豢豣豤豥豦豧豨豩豪豫豬豭豮豯豰豱豲豳豴豵豶豷豸豹豺豻豼豽豾豿 +è²€è²è²‚貃貄貅貆貇貈貉貊貋貌è²è²Žè²è²è²‘貒貓貔貕貖貗貘貙貚貛貜è²è²žè²Ÿ +負財貢貣貤貥貦貧貨販貪貫責貭貮貯貰貱貲貳貴貵貶買貸貹貺費貼貽貾貿 +è³€è³è³‚賃賄賅賆資賈賉賊賋賌è³è³Žè³è³è³‘賒賓賔賕賖賗賘賙賚賛賜è³è³žè³Ÿ +賠賡賢賣賤賥賦賧賨賩質賫賬賭賮賯賰賱賲賳賴賵賶賷賸賹賺賻購賽賾賿 +è´€è´è´‚贃贄贅贆贇贈贉贊贋贌è´è´Žè´è´è´‘贒贓贔贕贖贗贘贙贚贛贜è´è´žè´Ÿ +贠贡财责贤败账货质贩贪贫贬购贮贯贰贱贲贳贴贵贶贷贸费贺贻贼贽贾贿 +èµ€èµèµ‚赃资赅赆赇赈赉赊赋赌èµèµŽèµèµèµ‘赒赓赔赕赖赗赘赙赚赛赜èµèµžèµŸ +赠赡赢赣赤赥赦赧赨赩赪赫赬赭赮赯走赱赲赳赴赵赶起赸赹赺赻赼赽赾赿 +趀è¶è¶‚趃趄超趆趇趈趉越趋趌è¶è¶Žè¶è¶è¶‘趒趓趔趕趖趗趘趙趚趛趜è¶è¶žè¶Ÿ +趠趡趢趣趤趥趦趧趨趩趪趫趬趭趮趯趰趱趲足趴趵趶趷趸趹趺趻趼趽趾趿 +è·€è·è·‚跃跄跅跆跇跈跉跊跋跌è·è·Žè·è·è·‘跒跓跔跕跖跗跘跙跚跛跜è·è·žè·Ÿ +跠跡跢跣跤跥跦跧跨跩跪跫跬跭跮路跰跱跲跳跴践跶跷跸跹跺跻跼跽跾跿 +踀è¸è¸‚踃踄踅踆踇踈踉踊踋踌è¸è¸Žè¸è¸è¸‘踒踓踔踕踖踗踘踙踚踛踜è¸è¸žè¸Ÿ +踠踡踢踣踤踥踦踧踨踩踪踫踬踭踮踯踰踱踲踳踴踵踶踷踸踹踺踻踼踽踾踿 +è¹€è¹è¹‚蹃蹄蹅蹆蹇蹈蹉蹊蹋蹌è¹è¹Žè¹è¹è¹‘蹒蹓蹔蹕蹖蹗蹘蹙蹚蹛蹜è¹è¹žè¹Ÿ +蹠蹡蹢蹣蹤蹥蹦蹧蹨蹩蹪蹫蹬蹭蹮蹯蹰蹱蹲蹳蹴蹵蹶蹷蹸蹹蹺蹻蹼蹽蹾蹿 +躀èºèº‚躃躄躅躆躇躈躉躊躋躌èºèºŽèºèºèº‘躒躓躔躕躖躗躘躙躚躛躜èºèºžèºŸ +躠躡躢躣躤躥躦躧躨躩躪身躬躭躮躯躰躱躲躳躴躵躶躷躸躹躺躻躼躽躾躿 +軀è»è»‚軃軄軅軆軇軈軉車軋軌è»è»Žè»è»è»‘軒軓軔軕軖軗軘軙軚軛軜è»è»žè»Ÿ +軠軡転軣軤軥軦軧軨軩軪軫軬軭軮軯軰軱軲軳軴軵軶軷軸軹軺軻軼軽軾軿 +è¼€è¼è¼‚較輄輅輆輇輈載輊輋輌è¼è¼Žè¼è¼è¼‘輒輓輔輕輖輗輘輙輚輛輜è¼è¼žè¼Ÿ +輠輡輢輣輤輥輦輧輨輩輪輫輬輭輮輯輰輱輲輳輴輵輶輷輸輹輺輻輼輽輾輿 +è½€è½è½‚轃轄轅轆轇轈轉轊轋轌è½è½Žè½è½è½‘轒轓轔轕轖轗轘轙轚轛轜è½è½žè½Ÿ +轠轡轢轣轤轥车轧轨轩轪轫转轭轮软轰轱轲轳轴轵轶轷轸轹轺轻轼载轾轿 +è¾€è¾è¾‚较辄辅辆辇辈辉辊辋辌è¾è¾Žè¾è¾è¾‘辒输辔辕辖辗辘辙辚辛辜è¾è¾žè¾Ÿ +辠辡辢辣辤辥辦辧辨辩辪辫辬辭辮辯辰辱農辳辴辵辶辷辸边辺辻込辽达辿 +è¿€è¿è¿‚迃迄迅迆过迈迉迊迋迌è¿è¿Žè¿è¿è¿‘迒迓返迕迖迗还这迚进远è¿è¿žè¿Ÿ +迠迡迢迣迤迥迦迧迨迩迪迫迬迭迮迯述迱迲迳迴迵迶迷迸迹迺迻迼追迾迿 +退é€é€‚逃逄逅逆逇逈选逊逋逌é€é€Žé€é€é€‘递逓途逕逖逗逘這通逛逜é€é€žé€Ÿ +造逡逢連逤逥逦逧逨逩逪逫逬逭逮逯逰週進逳逴逵逶逷逸逹逺逻逼逽逾逿 +é€éé‚éƒé„é…é†é‡éˆé‰éŠé‹éŒééŽééé‘é’é“é”é•é–é—é˜é™éšé›éœééžéŸ +é é¡é¢é£é¤é¥é¦é§é¨é©éªé«é¬é­é®é¯é°é±é²é³é´éµé¶é·é¸é¹éºé»é¼é½é¾é¿ +é‚€é‚邂邃還邅邆邇邈邉邊邋邌é‚é‚Žé‚é‚邑邒邓邔邕邖邗邘邙邚邛邜é‚é‚žé‚Ÿ +邠邡邢那邤邥邦邧邨邩邪邫邬邭邮邯邰邱邲邳邴邵邶邷邸邹邺邻邼邽邾邿 +郀éƒéƒ‚郃郄郅郆郇郈郉郊郋郌éƒéƒŽéƒéƒéƒ‘郒郓郔郕郖郗郘郙郚郛郜éƒéƒžéƒŸ +郠郡郢郣郤郥郦郧部郩郪郫郬郭郮郯郰郱郲郳郴郵郶郷郸郹郺郻郼都郾郿 +é„€é„鄂鄃鄄鄅鄆鄇鄈鄉鄊鄋鄌é„é„Žé„é„鄑鄒鄓鄔鄕鄖鄗鄘鄙鄚鄛鄜é„é„žé„Ÿ +鄠鄡鄢鄣鄤鄥鄦鄧鄨鄩鄪鄫鄬鄭鄮鄯鄰鄱鄲鄳鄴鄵鄶鄷鄸鄹鄺鄻鄼鄽鄾鄿 +é…€é…酂酃酄酅酆酇酈酉酊酋酌é…é…Žé…é…酑酒酓酔酕酖酗酘酙酚酛酜é…é…žé…Ÿ +酠酡酢酣酤酥酦酧酨酩酪酫酬酭酮酯酰酱酲酳酴酵酶酷酸酹酺酻酼酽酾酿 +醀é†é†‚醃醄醅醆醇醈醉醊醋醌é†é†Žé†é†é†‘醒醓醔醕醖醗醘醙醚醛醜é†é†žé†Ÿ +醠醡醢醣醤醥醦醧醨醩醪醫醬醭醮醯醰醱醲醳醴醵醶醷醸醹醺醻醼醽醾醿 +釀é‡é‡‚釃釄釅釆采釈釉释釋里é‡é‡Žé‡é‡é‡‘釒釓釔釕釖釗釘釙釚釛釜é‡é‡žé‡Ÿ +釠釡釢釣釤釥釦釧釨釩釪釫釬釭釮釯釰釱釲釳釴釵釶釷釸釹釺釻釼釽釾釿 +鈀éˆéˆ‚鈃鈄鈅鈆鈇鈈鈉鈊鈋鈌éˆéˆŽéˆéˆéˆ‘鈒鈓鈔鈕鈖鈗鈘鈙鈚鈛鈜éˆéˆžéˆŸ +鈠鈡鈢鈣鈤鈥鈦鈧鈨鈩鈪鈫鈬鈭鈮鈯鈰鈱鈲鈳鈴鈵鈶鈷鈸鈹鈺鈻鈼鈽鈾鈿 +鉀é‰é‰‚鉃鉄鉅鉆鉇鉈鉉鉊鉋鉌é‰é‰Žé‰é‰é‰‘鉒鉓鉔鉕鉖鉗鉘鉙鉚鉛鉜é‰é‰žé‰Ÿ +鉠鉡鉢鉣鉤鉥鉦鉧鉨鉩鉪鉫鉬鉭鉮鉯鉰鉱鉲鉳鉴鉵鉶鉷鉸鉹鉺鉻鉼鉽鉾鉿 +銀éŠéŠ‚銃銄銅銆銇銈銉銊銋銌éŠéŠŽéŠéŠéŠ‘銒銓銔銕銖銗銘銙銚銛銜éŠéŠžéŠŸ +銠銡銢銣銤銥銦銧銨銩銪銫銬銭銮銯銰銱銲銳銴銵銶銷銸銹銺銻銼銽銾銿 +é‹€é‹é‹‚鋃鋄鋅鋆鋇鋈鋉鋊鋋鋌é‹é‹Žé‹é‹é‹‘鋒鋓鋔鋕鋖鋗鋘鋙鋚鋛鋜é‹é‹žé‹Ÿ +鋠鋡鋢鋣鋤鋥鋦鋧鋨鋩鋪鋫鋬鋭鋮鋯鋰鋱鋲鋳鋴鋵鋶鋷鋸鋹鋺鋻鋼鋽鋾鋿 +錀éŒéŒ‚錃錄錅錆錇錈錉錊錋錌éŒéŒŽéŒéŒéŒ‘錒錓錔錕錖錗錘錙錚錛錜éŒéŒžéŒŸ +錠錡錢錣錤錥錦錧錨錩錪錫錬錭錮錯錰錱録錳錴錵錶錷錸錹錺錻錼錽錾錿 +é€éé‚éƒé„é…é†é‡éˆé‰éŠé‹éŒééŽééé‘é’é“é”é•é–é—é˜é™éšé›éœééžéŸ +é é¡é¢é£é¤é¥é¦é§é¨é©éªé«é¬é­é®é¯é°é±é²é³é´éµé¶é·é¸é¹éºé»é¼é½é¾é¿ +鎀éŽéŽ‚鎃鎄鎅鎆鎇鎈鎉鎊鎋鎌éŽéŽŽéŽéŽéŽ‘鎒鎓鎔鎕鎖鎗鎘鎙鎚鎛鎜éŽéŽžéŽŸ +鎠鎡鎢鎣鎤鎥鎦鎧鎨鎩鎪鎫鎬鎭鎮鎯鎰鎱鎲鎳鎴鎵鎶鎷鎸鎹鎺鎻鎼鎽鎾鎿 +é€éé‚éƒé„é…é†é‡éˆé‰éŠé‹éŒééŽééé‘é’é“é”é•é–é—é˜é™éšé›éœééžéŸ +é é¡é¢é£é¤é¥é¦é§é¨é©éªé«é¬é­é®é¯é°é±é²é³é´éµé¶é·é¸é¹éºé»é¼é½é¾é¿ +é€éé‚éƒé„é…é†é‡éˆé‰éŠé‹éŒééŽééé‘é’é“é”é•é–é—é˜é™éšé›éœééžéŸ +é é¡é¢é£é¤é¥é¦é§é¨é©éªé«é¬é­é®é¯é°é±é²é³é´éµé¶é·é¸é¹éºé»é¼é½é¾é¿ +é‘€é‘鑂鑃鑄鑅鑆鑇鑈鑉鑊鑋鑌é‘é‘Žé‘é‘鑑鑒鑓鑔鑕鑖鑗鑘鑙鑚鑛鑜é‘é‘žé‘Ÿ +鑠鑡鑢鑣鑤鑥鑦鑧鑨鑩鑪鑫鑬鑭鑮鑯鑰鑱鑲鑳鑴鑵鑶鑷鑸鑹鑺鑻鑼鑽鑾鑿 +é’€é’钂钃钄钅钆钇针钉钊钋钌é’é’Žé’é’钑钒钓钔钕钖钗钘钙钚钛钜é’é’žé’Ÿ +钠钡钢钣钤钥钦钧钨钩钪钫钬钭钮钯钰钱钲钳钴钵钶钷钸钹钺钻钼钽钾钿 +é“€é“铂铃铄铅铆铇铈铉铊铋铌é“é“Žé“é“铑铒铓铔铕铖铗铘铙铚铛铜é“é“žé“Ÿ +铠铡铢铣铤铥铦铧铨铩铪铫铬铭铮铯铰铱铲铳铴铵银铷铸铹铺铻铼铽链铿 +销é”锂锃锄锅锆锇锈锉锊锋锌é”锎é”é”锑锒锓锔锕锖锗锘错锚锛锜é”锞锟 +锠锡锢锣锤锥锦锧锨锩锪锫锬锭键锯锰锱锲锳锴锵锶锷锸锹锺锻锼锽锾锿 +é•€é•é•‚镃镄镅镆镇镈镉镊镋镌é•é•Žé•é•é•‘镒镓镔镕镖镗镘镙镚镛镜é•é•žé•Ÿ +镠镡镢镣镤镥镦镧镨镩镪镫镬镭镮镯镰镱镲镳镴镵镶長镸镹镺镻镼镽镾长 +é–€é–閂閃閄閅閆閇閈閉閊開閌é–é–Žé–é–閑閒間閔閕閖閗閘閙閚閛閜é–é–žé–Ÿ +閠閡関閣閤閥閦閧閨閩閪閫閬閭閮閯閰閱閲閳閴閵閶閷閸閹閺閻閼閽閾閿 +é—€é—闂闃闄闅闆闇闈闉闊闋闌é—é—Žé—é—闑闒闓闔闕闖闗闘闙闚闛關é—é—žé—Ÿ +闠闡闢闣闤闥闦闧门闩闪闫闬闭问闯闰闱闲闳间闵闶闷闸闹闺闻闼闽闾闿 +阀é˜é˜‚阃阄阅阆阇阈阉阊阋阌é˜é˜Žé˜é˜é˜‘阒阓阔阕阖阗阘阙阚阛阜é˜é˜žé˜Ÿ +阠阡阢阣阤阥阦阧阨阩阪阫阬阭阮阯阰阱防阳阴阵阶阷阸阹阺阻阼阽阾阿 +陀é™é™‚陃附际陆陇陈陉陊陋陌é™é™Žé™é™é™‘陒陓陔陕陖陗陘陙陚陛陜é™é™žé™Ÿ +陠陡院陣除陥陦陧陨险陪陫陬陭陮陯陰陱陲陳陴陵陶陷陸陹険陻陼陽陾陿 +隀éšéš‚隃隄隅隆隇隈隉隊隋隌éšéšŽéšéšéš‘隒隓隔隕隖隗隘隙隚際障éšéšžéšŸ +隠隡隢隣隤隥隦隧隨隩險隫隬隭隮隯隰隱隲隳隴隵隶隷隸隹隺隻隼隽难隿 +雀é›é›‚雃雄雅集雇雈雉雊雋雌é›é›Žé›é›é›‘雒雓雔雕雖雗雘雙雚雛雜é›é›žé›Ÿ +雠雡離難雤雥雦雧雨雩雪雫雬雭雮雯雰雱雲雳雴雵零雷雸雹雺電雼雽雾雿 +需éœéœ‚霃霄霅霆震霈霉霊霋霌éœéœŽéœéœéœ‘霒霓霔霕霖霗霘霙霚霛霜éœéœžéœŸ +霠霡霢霣霤霥霦霧霨霩霪霫霬霭霮霯霰霱露霳霴霵霶霷霸霹霺霻霼霽霾霿 +é€éé‚éƒé„é…é†é‡éˆé‰éŠé‹éŒééŽééé‘é’é“é”é•é–é—é˜é™éšé›éœééžéŸ +é é¡é¢é£é¤é¥é¦é§é¨é©éªé«é¬é­é®é¯é°é±é²é³é´éµé¶é·é¸é¹éºé»é¼é½é¾é¿ +鞀éžéž‚鞃鞄鞅鞆鞇鞈鞉鞊鞋鞌éžéžŽéžéžéž‘鞒鞓鞔鞕鞖鞗鞘鞙鞚鞛鞜éžéžžéžŸ +鞠鞡鞢鞣鞤鞥鞦鞧鞨鞩鞪鞫鞬鞭鞮鞯鞰鞱鞲鞳鞴鞵鞶鞷鞸鞹鞺鞻鞼鞽鞾鞿 +韀éŸéŸ‚韃韄韅韆韇韈韉韊韋韌éŸéŸŽéŸéŸéŸ‘韒韓韔韕韖韗韘韙韚韛韜éŸéŸžéŸŸ +韠韡韢韣韤韥韦韧韨韩韪韫韬韭韮韯韰韱韲音韴韵韶韷韸韹韺韻韼韽韾響 +é €é é ‚頃頄項順頇須頉頊頋頌é é Žé é é ‘頒頓頔頕頖頗領頙頚頛頜é é žé Ÿ +頠頡頢頣頤頥頦頧頨頩頪頫頬頭頮頯頰頱頲頳頴頵頶頷頸頹頺頻頼頽頾頿 +é¡€é¡é¡‚顃顄顅顆顇顈顉顊顋題é¡é¡Žé¡é¡é¡‘顒顓顔顕顖顗願顙顚顛顜é¡é¡žé¡Ÿ +顠顡顢顣顤顥顦顧顨顩顪顫顬顭顮顯顰顱顲顳顴页顶顷顸项顺须顼顽顾顿 +颀é¢é¢‚颃预颅领颇颈颉颊颋颌é¢é¢Žé¢é¢é¢‘颒颓颔颕颖颗题颙颚颛颜é¢é¢žé¢Ÿ +颠颡颢颣颤颥颦颧風颩颪颫颬颭颮颯颰颱颲颳颴颵颶颷颸颹颺颻颼颽颾颿 +飀é£é£‚飃飄飅飆飇飈飉飊飋飌é£é£Žé£é£é£‘飒飓飔飕飖飗飘飙飚飛飜é£é£žé£Ÿ +飠飡飢飣飤飥飦飧飨飩飪飫飬飭飮飯飰飱飲飳飴飵飶飷飸飹飺飻飼飽飾飿 +餀é¤é¤‚餃餄餅餆餇餈餉養餋餌é¤é¤Žé¤é¤é¤‘餒餓餔餕餖餗餘餙餚餛餜é¤é¤žé¤Ÿ +餠餡餢餣餤餥餦餧館餩餪餫餬餭餮餯餰餱餲餳餴餵餶餷餸餹餺餻餼餽餾餿 +饀é¥é¥‚饃饄饅饆饇饈饉饊饋饌é¥é¥Žé¥é¥é¥‘饒饓饔饕饖饗饘饙饚饛饜é¥é¥žé¥Ÿ +饠饡饢饣饤饥饦饧饨饩饪饫饬饭饮饯饰饱饲饳饴饵饶饷饸饹饺饻饼饽饾饿 +馀é¦é¦‚馃馄馅馆馇馈馉馊馋馌é¦é¦Žé¦é¦é¦‘馒馓馔馕首馗馘香馚馛馜é¦é¦žé¦Ÿ +馠馡馢馣馤馥馦馧馨馩馪馫馬馭馮馯馰馱馲馳馴馵馶馷馸馹馺馻馼馽馾馿 +駀é§é§‚駃駄駅駆駇駈駉駊駋駌é§é§Žé§é§é§‘駒駓駔駕駖駗駘駙駚駛駜é§é§žé§Ÿ +駠駡駢駣駤駥駦駧駨駩駪駫駬駭駮駯駰駱駲駳駴駵駶駷駸駹駺駻駼駽駾駿 +騀é¨é¨‚騃騄騅騆騇騈騉騊騋騌é¨é¨Žé¨é¨é¨‘騒験騔騕騖騗騘騙騚騛騜é¨é¨žé¨Ÿ +騠騡騢騣騤騥騦騧騨騩騪騫騬騭騮騯騰騱騲騳騴騵騶騷騸騹騺騻騼騽騾騿 +é©€é©é©‚驃驄驅驆驇驈驉驊驋驌é©é©Žé©é©é©‘驒驓驔驕驖驗驘驙驚驛驜é©é©žé©Ÿ +驠驡驢驣驤驥驦驧驨驩驪驫马驭驮驯驰驱驲驳驴驵驶驷驸驹驺驻驼驽驾驿 +骀éªéª‚骃骄骅骆骇骈骉骊骋验éªéªŽéªéªéª‘骒骓骔骕骖骗骘骙骚骛骜éªéªžéªŸ +骠骡骢骣骤骥骦骧骨骩骪骫骬骭骮骯骰骱骲骳骴骵骶骷骸骹骺骻骼骽骾骿 +é«€é«é«‚髃髄髅髆髇髈髉髊髋髌é«é«Žé«é«é«‘髒髓體髕髖髗高髙髚髛髜é«é«žé«Ÿ +髠髡髢髣髤髥髦髧髨髩髪髫髬髭髮髯髰髱髲髳髴髵髶髷髸髹髺髻髼髽髾髿 +鬀é¬é¬‚鬃鬄鬅鬆鬇鬈鬉鬊鬋鬌é¬é¬Žé¬é¬é¬‘鬒鬓鬔鬕鬖鬗鬘鬙鬚鬛鬜é¬é¬žé¬Ÿ +鬠鬡鬢鬣鬤鬥鬦鬧鬨鬩鬪鬫鬬鬭鬮鬯鬰鬱鬲鬳鬴鬵鬶鬷鬸鬹鬺鬻鬼鬽鬾鬿 +é­€é­é­‚魃魄魅魆魇魈魉魊魋魌é­é­Žé­é­é­‘魒魓魔魕魖魗魘魙魚魛魜é­é­žé­Ÿ +魠魡魢魣魤魥魦魧魨魩魪魫魬魭魮魯魰魱魲魳魴魵魶魷魸魹魺魻魼魽魾魿 +鮀é®é®‚鮃鮄鮅鮆鮇鮈鮉鮊鮋鮌é®é®Žé®é®é®‘鮒鮓鮔鮕鮖鮗鮘鮙鮚鮛鮜é®é®žé®Ÿ +鮠鮡鮢鮣鮤鮥鮦鮧鮨鮩鮪鮫鮬鮭鮮鮯鮰鮱鮲鮳鮴鮵鮶鮷鮸鮹鮺鮻鮼鮽鮾鮿 +鯀é¯é¯‚鯃鯄鯅鯆鯇鯈鯉鯊鯋鯌é¯é¯Žé¯é¯é¯‘鯒鯓鯔鯕鯖鯗鯘鯙鯚鯛鯜é¯é¯žé¯Ÿ +鯠鯡鯢鯣鯤鯥鯦鯧鯨鯩鯪鯫鯬鯭鯮鯯鯰鯱鯲鯳鯴鯵鯶鯷鯸鯹鯺鯻鯼鯽鯾鯿 +é°€é°é°‚鰃鰄鰅鰆鰇鰈鰉鰊鰋鰌é°é°Žé°é°é°‘鰒鰓鰔鰕鰖鰗鰘鰙鰚鰛鰜é°é°žé°Ÿ +鰠鰡鰢鰣鰤鰥鰦鰧鰨鰩鰪鰫鰬鰭鰮鰯鰰鰱鰲鰳鰴鰵鰶鰷鰸鰹鰺鰻鰼鰽鰾鰿 +é±€é±é±‚鱃鱄鱅鱆鱇鱈鱉鱊鱋鱌é±é±Žé±é±é±‘鱒鱓鱔鱕鱖鱗鱘鱙鱚鱛鱜é±é±žé±Ÿ +鱠鱡鱢鱣鱤鱥鱦鱧鱨鱩鱪鱫鱬鱭鱮鱯鱰鱱鱲鱳鱴鱵鱶鱷鱸鱹鱺鱻鱼鱽鱾鱿 +é²€é²é²‚鲃鲄鲅鲆鲇鲈鲉鲊鲋鲌é²é²Žé²é²é²‘鲒鲓鲔鲕鲖鲗鲘鲙鲚鲛鲜é²é²žé²Ÿ +鲠鲡鲢鲣鲤鲥鲦鲧鲨鲩鲪鲫鲬鲭鲮鲯鲰鲱鲲鲳鲴鲵鲶鲷鲸鲹鲺鲻鲼鲽鲾鲿 +é³€é³é³‚鳃鳄鳅鳆鳇鳈鳉鳊鳋鳌é³é³Žé³é³é³‘鳒鳓鳔鳕鳖鳗鳘鳙鳚鳛鳜é³é³žé³Ÿ +鳠鳡鳢鳣鳤鳥鳦鳧鳨鳩鳪鳫鳬鳭鳮鳯鳰鳱鳲鳳鳴鳵鳶鳷鳸鳹鳺鳻鳼鳽鳾鳿 +é´€é´é´‚鴃鴄鴅鴆鴇鴈鴉鴊鴋鴌é´é´Žé´é´é´‘鴒鴓鴔鴕鴖鴗鴘鴙鴚鴛鴜é´é´žé´Ÿ +鴠鴡鴢鴣鴤鴥鴦鴧鴨鴩鴪鴫鴬鴭鴮鴯鴰鴱鴲鴳鴴鴵鴶鴷鴸鴹鴺鴻鴼鴽鴾鴿 +éµ€éµéµ‚鵃鵄鵅鵆鵇鵈鵉鵊鵋鵌éµéµŽéµéµéµ‘鵒鵓鵔鵕鵖鵗鵘鵙鵚鵛鵜éµéµžéµŸ +鵠鵡鵢鵣鵤鵥鵦鵧鵨鵩鵪鵫鵬鵭鵮鵯鵰鵱鵲鵳鵴鵵鵶鵷鵸鵹鵺鵻鵼鵽鵾鵿 +鶀é¶é¶‚鶃鶄鶅鶆鶇鶈鶉鶊鶋鶌é¶é¶Žé¶é¶é¶‘鶒鶓鶔鶕鶖鶗鶘鶙鶚鶛鶜é¶é¶žé¶Ÿ +鶠鶡鶢鶣鶤鶥鶦鶧鶨鶩鶪鶫鶬鶭鶮鶯鶰鶱鶲鶳鶴鶵鶶鶷鶸鶹鶺鶻鶼鶽鶾鶿 +é·€é·é·‚鷃鷄鷅鷆鷇鷈鷉鷊鷋鷌é·é·Žé·é·é·‘鷒鷓鷔鷕鷖鷗鷘鷙鷚鷛鷜é·é·žé·Ÿ +鷠鷡鷢鷣鷤鷥鷦鷧鷨鷩鷪鷫鷬鷭鷮鷯鷰鷱鷲鷳鷴鷵鷶鷷鷸鷹鷺鷻鷼鷽鷾鷿 +鸀é¸é¸‚鸃鸄鸅鸆鸇鸈鸉鸊鸋鸌é¸é¸Žé¸é¸é¸‘鸒鸓鸔鸕鸖鸗鸘鸙鸚鸛鸜é¸é¸žé¸Ÿ +鸠鸡鸢鸣鸤鸥鸦鸧鸨鸩鸪鸫鸬鸭鸮鸯鸰鸱鸲鸳鸴鸵鸶鸷鸸鸹鸺鸻鸼鸽鸾鸿 +é¹€é¹é¹‚鹃鹄鹅鹆鹇鹈鹉鹊鹋鹌é¹é¹Žé¹é¹é¹‘鹒鹓鹔鹕鹖鹗鹘鹙鹚鹛鹜é¹é¹žé¹Ÿ +鹠鹡鹢鹣鹤鹥鹦鹧鹨鹩鹪鹫鹬鹭鹮鹯鹰鹱鹲鹳鹴鹵鹶鹷鹸鹹鹺鹻鹼鹽鹾鹿 +麀éºéº‚麃麄麅麆麇麈麉麊麋麌éºéºŽéºéºéº‘麒麓麔麕麖麗麘麙麚麛麜éºéºžéºŸ +麠麡麢麣麤麥麦麧麨麩麪麫麬麭麮麯麰麱麲麳麴麵麶麷麸麹麺麻麼麽麾麿 +黀é»é»‚黃黄黅黆黇黈黉黊黋黌é»é»Žé»é»é»‘黒黓黔黕黖黗默黙黚黛黜é»é»žé»Ÿ +黠黡黢黣黤黥黦黧黨黩黪黫黬黭黮黯黰黱黲黳黴黵黶黷黸黹黺黻黼黽黾黿 +é¼€é¼é¼‚鼃鼄鼅鼆鼇鼈鼉鼊鼋鼌é¼é¼Žé¼é¼é¼‘鼒鼓鼔鼕鼖鼗鼘鼙鼚鼛鼜é¼é¼žé¼Ÿ +鼠鼡鼢鼣鼤鼥鼦鼧鼨鼩鼪鼫鼬鼭鼮鼯鼰鼱鼲鼳鼴鼵鼶鼷鼸鼹鼺鼻鼼鼽鼾鼿 +é½€é½é½‚齃齄齅齆齇齈齉齊齋齌é½é½Žé½é½é½‘齒齓齔齕齖齗齘齙齚齛齜é½é½žé½Ÿ +齠齡齢齣齤齥齦齧齨齩齪齫齬齭齮齯齰齱齲齳齴齵齶齷齸齹齺齻齼齽齾齿 +é¾€é¾é¾‚龃龄龅龆龇龈龉龊龋龌é¾é¾Žé¾é¾é¾‘龒龓龔龕龖龗龘龙龚龛龜é¾é¾žé¾Ÿ +龠龡龢龣龤龥龦龧龨龩龪龫龬龭龮龯龰龱龲龳龴龵龶龷龸龹龺龻龼龽龾龿 +é¿€é¿é¿‚鿃鿄鿅鿆鿇鿈鿉鿊鿋鿌é¿é¿Žé¿é¿é¿‘鿒鿓鿔鿕鿖鿗鿘鿙鿚鿛鿜é¿é¿žé¿Ÿ +鿠鿡鿢鿣鿤鿥鿦鿧鿨鿩鿪鿫鿬鿭鿮鿯鿰鿱鿲鿳鿴鿵鿶鿷鿸鿹鿺鿻鿼鿽鿾鿿 + +Yi Syllables (U+A000-U+A48F): + +ꀀê€ê€‚ꀃꀄꀅꀆꀇꀈꀉꀊꀋꀌê€ê€Žê€ê€ê€‘ꀒꀓꀔꀕꀖꀗꀘꀙꀚꀛꀜê€ê€žê€Ÿ +ꀠꀡꀢꀣꀤꀥꀦꀧꀨꀩꀪꀫꀬꀭꀮꀯꀰꀱꀲꀳꀴꀵꀶꀷꀸꀹꀺꀻꀼꀽꀾꀿ +ê€êê‚êƒê„ê…ê†ê‡êˆê‰êŠê‹êŒêêŽêêê‘ê’ê“ê”ê•ê–ê—ê˜ê™êšê›êœêêžêŸ +ê ê¡ê¢ê£ê¤ê¥ê¦ê§ê¨ê©êªê«ê¬ê­ê®ê¯ê°ê±ê²ê³ê´êµê¶ê·ê¸ê¹êºê»ê¼ê½ê¾ê¿ +ê‚€ê‚ꂂꂃꂄꂅꂆꂇꂈꂉꂊꂋꂌê‚ê‚Žê‚ê‚ꂑꂒꂓꂔꂕꂖꂗꂘꂙꂚꂛꂜê‚ê‚žê‚Ÿ +ꂠꂡꂢꂣꂤꂥꂦꂧꂨꂩꂪꂫꂬꂭꂮꂯꂰꂱꂲꂳꂴꂵꂶꂷꂸꂹꂺꂻꂼꂽꂾꂿ +ꃀêƒêƒ‚ꃃꃄꃅꃆꃇꃈꃉꃊꃋꃌêƒêƒŽêƒêƒêƒ‘ꃒꃓꃔꃕꃖꃗꃘꃙꃚꃛꃜêƒêƒžêƒŸ +ꃠꃡꃢꃣꃤꃥꃦꃧꃨꃩꃪꃫꃬꃭꃮꃯꃰꃱꃲꃳꃴꃵꃶꃷꃸꃹꃺꃻꃼꃽꃾꃿ +ê„€ê„ꄂꄃꄄꄅꄆꄇꄈꄉꄊꄋꄌê„ê„Žê„ê„ꄑꄒꄓꄔꄕꄖꄗꄘꄙꄚꄛꄜê„ê„žê„Ÿ +ꄠꄡꄢꄣꄤꄥꄦꄧꄨꄩꄪꄫꄬꄭꄮꄯꄰꄱꄲꄳꄴꄵꄶꄷꄸꄹꄺꄻꄼꄽꄾꄿ +ê…€ê…ꅂꅃꅄꅅꅆꅇꅈꅉꅊꅋꅌê…ê…Žê…ê…ꅑꅒꅓꅔꅕꅖꅗꅘꅙꅚꅛꅜê…ê…žê…Ÿ +ꅠꅡꅢꅣꅤꅥꅦꅧꅨꅩꅪꅫꅬꅭꅮꅯꅰꅱꅲꅳꅴꅵꅶꅷꅸꅹꅺꅻꅼꅽꅾꅿ +ꆀê†ê†‚ꆃꆄꆅꆆꆇꆈꆉꆊꆋꆌê†ê†Žê†ê†ê†‘ꆒꆓꆔꆕꆖꆗꆘꆙꆚꆛꆜê†ê†žê†Ÿ +ꆠꆡꆢꆣꆤꆥꆦꆧꆨꆩꆪꆫꆬꆭꆮꆯꆰꆱꆲꆳꆴꆵꆶꆷꆸꆹꆺꆻꆼꆽꆾꆿ +ꇀê‡ê‡‚ꇃꇄꇅꇆꇇꇈꇉꇊꇋꇌê‡ê‡Žê‡ê‡ê‡‘ꇒꇓꇔꇕꇖꇗꇘꇙꇚꇛꇜê‡ê‡žê‡Ÿ +ꇠꇡꇢꇣꇤꇥꇦꇧꇨꇩꇪꇫꇬꇭꇮꇯꇰꇱꇲꇳꇴꇵꇶꇷꇸꇹꇺꇻꇼꇽꇾꇿ +ꈀêˆêˆ‚ꈃꈄꈅꈆꈇꈈꈉꈊꈋꈌêˆêˆŽêˆêˆêˆ‘ꈒꈓꈔꈕꈖꈗꈘꈙꈚꈛꈜêˆêˆžêˆŸ +ꈠꈡꈢꈣꈤꈥꈦꈧꈨꈩꈪꈫꈬꈭꈮꈯꈰꈱꈲꈳꈴꈵꈶꈷꈸꈹꈺꈻꈼꈽꈾꈿ +ꉀê‰ê‰‚ꉃꉄꉅꉆꉇꉈꉉꉊꉋꉌê‰ê‰Žê‰ê‰ê‰‘ꉒꉓꉔꉕꉖꉗꉘꉙꉚꉛꉜê‰ê‰žê‰Ÿ +ꉠꉡꉢꉣꉤꉥꉦꉧꉨꉩꉪꉫꉬꉭꉮꉯꉰꉱꉲꉳꉴꉵꉶꉷꉸꉹꉺꉻꉼꉽꉾꉿ +ꊀêŠêŠ‚ꊃꊄꊅꊆꊇꊈꊉꊊꊋꊌêŠêŠŽêŠêŠêŠ‘ꊒꊓꊔꊕꊖꊗꊘꊙꊚꊛꊜêŠêŠžêŠŸ +ꊠꊡꊢꊣꊤꊥꊦꊧꊨꊩꊪꊫꊬꊭꊮꊯꊰꊱꊲꊳꊴꊵꊶꊷꊸꊹꊺꊻꊼꊽꊾꊿ +ê‹€ê‹ê‹‚ꋃꋄꋅꋆꋇꋈꋉꋊꋋꋌê‹ê‹Žê‹ê‹ê‹‘ꋒꋓꋔꋕꋖꋗꋘꋙꋚꋛꋜê‹ê‹žê‹Ÿ +ꋠꋡꋢꋣꋤꋥꋦꋧꋨꋩꋪꋫꋬꋭꋮꋯꋰꋱꋲꋳꋴꋵꋶꋷꋸꋹꋺꋻꋼꋽꋾꋿ +ꌀêŒêŒ‚ꌃꌄꌅꌆꌇꌈꌉꌊꌋꌌêŒêŒŽêŒêŒêŒ‘ꌒꌓꌔꌕꌖꌗꌘꌙꌚꌛꌜêŒêŒžêŒŸ +ꌠꌡꌢꌣꌤꌥꌦꌧꌨꌩꌪꌫꌬꌭꌮꌯꌰꌱꌲꌳꌴꌵꌶꌷꌸꌹꌺꌻꌼꌽꌾꌿ +ê€êê‚êƒê„ê…ê†ê‡êˆê‰êŠê‹êŒêêŽêêê‘ê’ê“ê”ê•ê–ê—ê˜ê™êšê›êœêêžêŸ +ê ê¡ê¢ê£ê¤ê¥ê¦ê§ê¨ê©êªê«ê¬ê­ê®ê¯ê°ê±ê²ê³ê´êµê¶ê·ê¸ê¹êºê»ê¼ê½ê¾ê¿ +ꎀêŽêŽ‚ꎃꎄꎅꎆꎇꎈꎉꎊꎋꎌêŽêŽŽêŽêŽêŽ‘ꎒꎓꎔꎕꎖꎗꎘꎙꎚꎛꎜêŽêŽžêŽŸ +ꎠꎡꎢꎣꎤꎥꎦꎧꎨꎩꎪꎫꎬꎭꎮꎯꎰꎱꎲꎳꎴꎵꎶꎷꎸꎹꎺꎻꎼꎽꎾꎿ +ê€êê‚êƒê„ê…ê†ê‡êˆê‰êŠê‹êŒêêŽêêê‘ê’ê“ê”ê•ê–ê—ê˜ê™êšê›êœêêžêŸ +ê ê¡ê¢ê£ê¤ê¥ê¦ê§ê¨ê©êªê«ê¬ê­ê®ê¯ê°ê±ê²ê³ê´êµê¶ê·ê¸ê¹êºê»ê¼ê½ê¾ê¿ +ê€êê‚êƒê„ê…ê†ê‡êˆê‰êŠê‹êŒêêŽêêê‘ê’ê“ê”ê•ê–ê—ê˜ê™êšê›êœêêžêŸ +ê ê¡ê¢ê£ê¤ê¥ê¦ê§ê¨ê©êªê«ê¬ê­ê®ê¯ê°ê±ê²ê³ê´êµê¶ê·ê¸ê¹êºê»ê¼ê½ê¾ê¿ +ê‘€ê‘ꑂꑃꑄꑅꑆꑇꑈꑉꑊꑋꑌê‘ê‘Žê‘ê‘ꑑꑒꑓꑔꑕꑖꑗꑘꑙꑚꑛꑜê‘ê‘žê‘Ÿ +ꑠꑡꑢꑣꑤꑥꑦꑧꑨꑩꑪꑫꑬꑭꑮꑯꑰꑱꑲꑳꑴꑵꑶꑷꑸꑹꑺꑻꑼꑽꑾꑿ +ê’€ê’ꒂꒃꒄꒅꒆꒇꒈꒉꒊꒋꒌê’ê’Žê’ + +Yi Radicals (U+A490-U+A4CF): + +ê’꒑꒒꒓꒔꒕꒖꒗꒘꒙꒚꒛꒜ê’꒞꒟꒠꒡꒢꒣꒤꒥꒦꒧꒨꒩꒪꒫꒬꒭꒮꒯ +꒰꒱꒲꒳꒴꒵꒶꒷꒸꒹꒺꒻꒼꒽꒾꒿꓀ê“꓂꓃꓄꓅꓆꓇꓈꓉꓊꓋꓌ê“ê“Žê“ + +Free block (U+A4D0-U+ABFF): + +ê“ꓑꓒꓓꓔꓕꓖꓗꓘꓙꓚꓛꓜê“ꓞꓟꓠꓡꓢꓣꓤꓥꓦꓧꓨꓩꓪꓫꓬꓭꓮꓯꓰꓱꓲꓳꓴꓵꓶꓷꓸꓹꓺꓻꓼꓽ꓾꓿ꔀê”ꔂꔃꔄꔅꔆꔇꔈꔉꔊꔋꔌê”ê”Žê” +ê”ꔑꔒꔓꔔꔕꔖꔗꔘꔙꔚꔛꔜê”ꔞꔟꔠꔡꔢꔣꔤꔥꔦꔧꔨꔩꔪꔫꔬꔭꔮꔯꔰꔱꔲꔳꔴꔵꔶꔷꔸꔹꔺꔻꔼꔽꔾꔿꕀê•ê•‚ꕃꕄꕅꕆꕇꕈꕉꕊꕋꕌê•ê•Žê• +ê•ê•‘ꕒꕓꕔꕕꕖꕗꕘꕙꕚꕛꕜê•ê•žê•Ÿê• ê•¡ê•¢ê•£ê•¤ê•¥ê•¦ê•§ê•¨ê•©ê•ªê•«ê•¬ê•­ê•®ê•¯ê•°ê•±ê•²ê•³ê•´ê•µê•¶ê•·ê•¸ê•¹ê•ºê•»ê•¼ê•½ê•¾ê•¿ê–€ê–ꖂꖃꖄꖅꖆꖇꖈꖉꖊꖋꖌê–ê–Žê– +ê–ꖑꖒꖓꖔꖕꖖꖗꖘꖙꖚꖛꖜê–ꖞꖟꖠꖡꖢꖣꖤꖥꖦꖧꖨꖩꖪꖫꖬꖭꖮꖯꖰꖱꖲꖳꖴꖵꖶꖷꖸꖹꖺꖻꖼꖽꖾꖿꗀê—ꗂꗃꗄꗅꗆꗇꗈꗉꗊꗋꗌê—ê—Žê— +ê—ꗑꗒꗓꗔꗕꗖꗗꗘꗙꗚꗛꗜê—ꗞꗟꗠꗡꗢꗣꗤꗥꗦꗧꗨꗩꗪꗫꗬꗭꗮꗯꗰꗱꗲꗳꗴꗵꗶꗷꗸꗹꗺꗻꗼꗽꗾꗿꘀê˜ê˜‚ꘃꘄꘅꘆꘇꘈꘉꘊꘋꘌê˜ê˜Žê˜ +ê˜ê˜‘ꘒꘓꘔꘕꘖꘗꘘꘙꘚꘛꘜê˜ê˜žê˜Ÿê˜ ê˜¡ê˜¢ê˜£ê˜¤ê˜¥ê˜¦ê˜§ê˜¨ê˜©ê˜ªê˜«ê˜¬ê˜­ê˜®ê˜¯ê˜°ê˜±ê˜²ê˜³ê˜´ê˜µê˜¶ê˜·ê˜¸ê˜¹ê˜ºê˜»ê˜¼ê˜½ê˜¾ê˜¿ê™€ê™ê™‚ꙃꙄꙅꙆꙇꙈꙉꙊꙋꙌê™ê™Žê™ +ê™ê™‘ꙒꙓꙔꙕꙖꙗꙘꙙꙚꙛꙜê™ê™žê™Ÿê™ ê™¡ê™¢ê™£ê™¤ê™¥ê™¦ê™§ê™¨ê™©ê™ªê™«ê™¬ê™­ê™®ê™¯ê™°ê™±ê™²ê™³ê™´ê™µê™¶ê™·ê™¸ê™¹ê™ºê™»ê™¼ê™½ê™¾ê™¿êš€êšêš‚ꚃꚄꚅꚆꚇꚈꚉꚊꚋꚌêšêšŽêš +êšêš‘ꚒꚓꚔꚕꚖꚗꚘꚙꚚꚛꚜêšêšžêšŸêš êš¡êš¢êš£êš¤êš¥êš¦êš§êš¨êš©êšªêš«êš¬êš­êš®êš¯êš°êš±êš²êš³êš´êšµêš¶êš·êš¸êš¹êšºêš»êš¼êš½êš¾êš¿ê›€ê›ê›‚ꛃꛄꛅꛆꛇꛈꛉꛊꛋꛌê›ê›Žê› +ê›ê›‘ꛒꛓꛔꛕꛖꛗꛘꛙꛚꛛꛜê›ê›žê›Ÿê› ê›¡ê›¢ê›£ê›¤ê›¥ê›¦ê›§ê›¨ê›©ê›ªê›«ê›¬ê›­ê›®ê›¯ê›°ê›±ê›²ê›³ê›´ê›µê›¶ê›·ê›¸ê›¹ê›ºê›»ê›¼ê›½ê›¾ê›¿êœ€êœêœ‚꜃꜄꜅꜆꜇꜈꜉꜊꜋꜌êœêœŽêœ +êœêœ‘꜒꜓꜔꜕꜖ꜗꜘꜙꜚꜛꜜêœêœžêœŸêœ êœ¡êœ¢êœ£êœ¤êœ¥êœ¦êœ§êœ¨êœ©êœªêœ«êœ¬êœ­êœ®êœ¯êœ°êœ±êœ²êœ³êœ´êœµêœ¶êœ·êœ¸êœ¹êœºêœ»êœ¼êœ½êœ¾êœ¿ê€êê‚êƒê„ê…ê†ê‡êˆê‰êŠê‹êŒêêŽê +êê‘ê’ê“ê”ê•ê–ê—ê˜ê™êšê›êœêêžêŸê ê¡ê¢ê£ê¤ê¥ê¦ê§ê¨ê©êªê«ê¬ê­ê®ê¯ê°ê±ê²ê³ê´êµê¶ê·ê¸ê¹êºê»ê¼ê½ê¾ê¿êž€êžêž‚ꞃꞄꞅꞆꞇꞈ꞉꞊ꞋꞌêžêžŽêž +êžêž‘ꞒꞓꞔꞕꞖꞗꞘꞙꞚꞛꞜêžêžžêžŸêž êž¡êž¢êž£êž¤êž¥êž¦êž§êž¨êž©êžªêž«êž¬êž­êž®êž¯êž°êž±êž²êž³êž´êžµêž¶êž·êž¸êž¹êžºêž»êž¼êž½êž¾êž¿êŸ€êŸêŸ‚ꟃꟄꟅꟆꟇꟈꟉꟊꟋꟌêŸêŸŽêŸ +êŸêŸ‘꟒ꟓ꟔ꟕꟖꟗꟘꟙꟚꟛꟜêŸêŸžêŸŸêŸ êŸ¡êŸ¢êŸ£êŸ¤êŸ¥êŸ¦êŸ§êŸ¨êŸ©êŸªêŸ«êŸ¬êŸ­êŸ®êŸ¯êŸ°êŸ±êŸ²êŸ³êŸ´êŸµêŸ¶êŸ·êŸ¸êŸ¹êŸºêŸ»êŸ¼êŸ½êŸ¾êŸ¿ê €ê ê ‚ꠃꠄꠅ꠆ꠇꠈꠉꠊꠋꠌê ê Žê  +ê ê ‘ꠒꠓꠔꠕꠖꠗꠘꠙꠚꠛꠜê ê žê Ÿê  ê ¡ê ¢ê £ê ¤ê ¥ê ¦ê §ê ¨ê ©ê ªê «ê ¬ê ­ê ®ê ¯ê °ê ±ê ²ê ³ê ´ê µê ¶ê ·ê ¸ê ¹ê ºê »ê ¼ê ½ê ¾ê ¿ê¡€ê¡ê¡‚ꡃꡄꡅꡆꡇꡈꡉꡊꡋꡌê¡ê¡Žê¡ +ê¡ê¡‘ꡒꡓꡔꡕꡖꡗꡘꡙꡚꡛꡜê¡ê¡žê¡Ÿê¡ ê¡¡ê¡¢ê¡£ê¡¤ê¡¥ê¡¦ê¡§ê¡¨ê¡©ê¡ªê¡«ê¡¬ê¡­ê¡®ê¡¯ê¡°ê¡±ê¡²ê¡³ê¡´ê¡µê¡¶ê¡·ê¡¸ê¡¹ê¡ºê¡»ê¡¼ê¡½ê¡¾ê¡¿ê¢€ê¢ê¢‚ꢃꢄꢅꢆꢇꢈꢉꢊꢋꢌê¢ê¢Žê¢ +ê¢ê¢‘ꢒꢓꢔꢕꢖꢗꢘꢙꢚꢛꢜê¢ê¢žê¢Ÿê¢ ê¢¡ê¢¢ê¢£ê¢¤ê¢¥ê¢¦ê¢§ê¢¨ê¢©ê¢ªê¢«ê¢¬ê¢­ê¢®ê¢¯ê¢°ê¢±ê¢²ê¢³ê¢´ê¢µê¢¶ê¢·ê¢¸ê¢¹ê¢ºê¢»ê¢¼ê¢½ê¢¾ê¢¿ê£€ê£ê£‚ꣃ꣄ꣅ꣆꣇꣈꣉꣊꣋꣌ê£ê£Žê£ +ê£ê£‘꣒꣓꣔꣕꣖꣗꣘꣙꣚꣛꣜ê£ê£žê£Ÿê£ ê£¡ê£¢ê££ê£¤ê£¥ê£¦ê£§ê£¨ê£©ê£ªê£«ê£¬ê£­ê£®ê£¯ê£°ê£±ê£²ê£³ê£´ê£µê£¶ê£·ê£¸ê£¹ê£ºê£»ê£¼ê£½ê£¾ê£¿ê¤€ê¤ê¤‚꤃꤄꤅꤆꤇꤈꤉ꤊꤋꤌê¤ê¤Žê¤ +ê¤ê¤‘ꤒꤓꤔꤕꤖꤗꤘꤙꤚꤛꤜê¤ê¤žê¤Ÿê¤ ê¤¡ê¤¢ê¤£ê¤¤ê¤¥ê¤¦ê¤§ê¤¨ê¤©ê¤ªê¤«ê¤¬ê¤­ê¤®ê¤¯ê¤°ê¤±ê¤²ê¤³ê¤´ê¤µê¤¶ê¤·ê¤¸ê¤¹ê¤ºê¤»ê¤¼ê¤½ê¤¾ê¤¿ê¥€ê¥ê¥‚ꥃꥄꥅꥆꥇꥈꥉꥊꥋꥌê¥ê¥Žê¥ +ê¥ê¥‘ꥒ꥓꥔꥕꥖꥗꥘꥙꥚꥛꥜ê¥ê¥žê¥Ÿê¥ ê¥¡ê¥¢ê¥£ê¥¤ê¥¥ê¥¦ê¥§ê¥¨ê¥©ê¥ªê¥«ê¥¬ê¥­ê¥®ê¥¯ê¥°ê¥±ê¥²ê¥³ê¥´ê¥µê¥¶ê¥·ê¥¸ê¥¹ê¥ºê¥»ê¥¼ê¥½ê¥¾ê¥¿ê¦€ê¦ê¦‚ꦃꦄꦅꦆꦇꦈꦉꦊꦋꦌê¦ê¦Žê¦ +ê¦ê¦‘ꦒꦓꦔꦕꦖꦗꦘꦙꦚꦛꦜê¦ê¦žê¦Ÿê¦ ê¦¡ê¦¢ê¦£ê¦¤ê¦¥ê¦¦ê¦§ê¦¨ê¦©ê¦ªê¦«ê¦¬ê¦­ê¦®ê¦¯ê¦°ê¦±ê¦²ê¦³ê¦´ê¦µê¦¶ê¦·ê¦¸ê¦¹ê¦ºê¦»ê¦¼ê¦½ê¦¾ê¦¿ê§€ê§ê§‚꧃꧄꧅꧆꧇꧈꧉꧊꧋꧌ê§ê§Žê§ +ê§ê§‘꧒꧓꧔꧕꧖꧗꧘꧙꧚꧛꧜ê§ê§žê§Ÿê§ ê§¡ê§¢ê§£ê§¤ê§¥ê§¦ê§§ê§¨ê§©ê§ªê§«ê§¬ê§­ê§®ê§¯ê§°ê§±ê§²ê§³ê§´ê§µê§¶ê§·ê§¸ê§¹ê§ºê§»ê§¼ê§½ê§¾ê§¿ê¨€ê¨ê¨‚ꨃꨄꨅꨆꨇꨈꨉꨊꨋꨌê¨ê¨Žê¨ +ê¨ê¨‘ꨒꨓꨔꨕꨖꨗꨘꨙꨚꨛꨜê¨ê¨žê¨Ÿê¨ ê¨¡ê¨¢ê¨£ê¨¤ê¨¥ê¨¦ê¨§ê¨¨ê¨©ê¨ªê¨«ê¨¬ê¨­ê¨®ê¨¯ê¨°ê¨±ê¨²ê¨³ê¨´ê¨µê¨¶ê¨·ê¨¸ê¨¹ê¨ºê¨»ê¨¼ê¨½ê¨¾ê¨¿ê©€ê©ê©‚ꩃꩄꩅꩆꩇꩈꩉꩊꩋꩌê©ê©Žê© +ê©ê©‘꩒꩓꩔꩕꩖꩗꩘꩙꩚꩛꩜ê©ê©žê©Ÿê© ê©¡ê©¢ê©£ê©¤ê©¥ê©¦ê©§ê©¨ê©©ê©ªê©«ê©¬ê©­ê©®ê©¯ê©°ê©±ê©²ê©³ê©´ê©µê©¶ê©·ê©¸ê©¹ê©ºê©»ê©¼ê©½ê©¾ê©¿êª€êªêª‚ꪃꪄꪅꪆꪇꪈꪉꪊꪋꪌêªêªŽêª +êªêª‘ꪒꪓꪔꪕꪖꪗꪘꪙꪚꪛꪜêªêªžêªŸêª êª¡êª¢êª£êª¤êª¥êª¦êª§êª¨êª©êªªêª«êª¬êª­êª®êª¯êª°êª±êª²êª³êª´êªµêª¶êª·êª¸êª¹êªºêª»êª¼êª½êª¾êª¿ê«€ê«ê«‚꫃꫄꫅꫆꫇꫈꫉꫊꫋꫌ê«ê«Žê« +ê«ê«‘꫒꫓꫔꫕꫖꫗꫘꫙꫚ꫛꫜê«ê«žê«Ÿê« ê«¡ê«¢ê«£ê«¤ê«¥ê«¦ê«§ê«¨ê«©ê«ªê««ê«¬ê«­ê«®ê«¯ê«°ê«±ê«²ê«³ê«´ê«µê«¶ê«·ê«¸ê«¹ê«ºê«»ê«¼ê«½ê«¾ê«¿ê¬€ê¬ê¬‚ꬃꬄꬅꬆ꬇꬈ꬉꬊꬋꬌê¬ê¬Žê¬ +ê¬ê¬‘ꬒꬓꬔꬕꬖ꬗꬘꬙꬚꬛꬜ê¬ê¬žê¬Ÿê¬ ê¬¡ê¬¢ê¬£ê¬¤ê¬¥ê¬¦ê¬§ê¬¨ê¬©ê¬ªê¬«ê¬¬ê¬­ê¬®ê¬¯ê¬°ê¬±ê¬²ê¬³ê¬´ê¬µê¬¶ê¬·ê¬¸ê¬¹ê¬ºê¬»ê¬¼ê¬½ê¬¾ê¬¿ê­€ê­ê­‚ꭃꭄꭅꭆꭇꭈꭉꭊꭋꭌê­ê­Žê­ +ê­ê­‘ꭒꭓꭔꭕꭖꭗꭘꭙꭚ꭛ꭜê­ê­žê­Ÿê­ ê­¡ê­¢ê­£ê­¤ê­¥ê­¦ê­§ê­¨ê­©ê­ªê­«ê­¬ê­­ê­®ê­¯ê­°ê­±ê­²ê­³ê­´ê­µê­¶ê­·ê­¸ê­¹ê­ºê­»ê­¼ê­½ê­¾ê­¿ê®€ê®ê®‚ꮃꮄꮅꮆꮇꮈꮉꮊꮋꮌê®ê®Žê® +ê®ê®‘ꮒꮓꮔꮕꮖꮗꮘꮙꮚꮛꮜê®ê®žê®Ÿê® ê®¡ê®¢ê®£ê®¤ê®¥ê®¦ê®§ê®¨ê®©ê®ªê®«ê®¬ê®­ê®®ê®¯ê®°ê®±ê®²ê®³ê®´ê®µê®¶ê®·ê®¸ê®¹ê®ºê®»ê®¼ê®½ê®¾ê®¿ê¯€ê¯ê¯‚ꯃꯄꯅꯆꯇꯈꯉꯊꯋꯌê¯ê¯Žê¯ +ê¯ê¯‘ꯒꯓꯔꯕꯖꯗꯘꯙꯚꯛꯜê¯ê¯žê¯Ÿê¯ ê¯¡ê¯¢ê¯£ê¯¤ê¯¥ê¯¦ê¯§ê¯¨ê¯©ê¯ªê¯«ê¯¬ê¯­ê¯®ê¯¯ê¯°ê¯±ê¯²ê¯³ê¯´ê¯µê¯¶ê¯·ê¯¸ê¯¹ê¯ºê¯»ê¯¼ê¯½ê¯¾ê¯¿ + +Hangul Syllables (U+AC00-U+D7AF): + +ê°€ê°ê°‚갃간갅갆갇갈갉갊갋갌ê°ê°Žê°ê°ê°‘값갓갔강갖갗갘같갚갛개ê°ê°žê°Ÿ +갠갡갢갣갤갥갦갧갨갩갪갫갬갭갮갯갰갱갲갳갴갵갶갷갸갹갺갻갼갽갾갿 +ê±€ê±ê±‚걃걄걅걆걇걈걉걊걋걌ê±ê±Žê±ê±ê±‘걒걓걔걕걖걗걘걙걚걛걜ê±ê±žê±Ÿ +걠걡걢걣걤걥걦걧걨걩걪걫걬걭걮걯거걱걲걳건걵걶걷걸걹걺걻걼걽걾걿 +ê²€ê²ê²‚것겄겅겆겇겈겉겊겋게ê²ê²Žê²ê²ê²‘겒겓겔겕겖겗겘겙겚겛겜ê²ê²žê²Ÿ +겠겡겢겣겤겥겦겧겨격겪겫견겭겮겯결겱겲겳겴겵겶겷겸겹겺겻겼경겾겿 +ê³€ê³ê³‚곃계곅곆곇곈곉곊곋곌ê³ê³Žê³ê³ê³‘곒곓곔곕곖곗곘곙곚곛곜ê³ê³žê³Ÿ +고곡곢곣곤곥곦곧골곩곪곫곬곭곮곯곰곱곲곳곴공곶곷곸곹곺곻과곽곾곿 +ê´€ê´ê´‚괃괄괅괆괇괈괉괊괋괌ê´ê´Žê´ê´ê´‘괒괓괔괕괖괗괘괙괚괛괜ê´ê´žê´Ÿ +괠괡괢괣괤괥괦괧괨괩괪괫괬괭괮괯괰괱괲괳괴괵괶괷괸괹괺괻괼괽괾괿 +êµ€êµêµ‚굃굄굅굆굇굈굉굊굋굌êµêµŽêµêµêµ‘굒굓굔굕굖굗굘굙굚굛굜êµêµžêµŸ +굠굡굢굣굤굥굦굧굨굩굪굫구국굮굯군굱굲굳굴굵굶굷굸굹굺굻굼굽굾굿 +궀ê¶ê¶‚궃궄궅궆궇궈궉궊궋권ê¶ê¶Žê¶ê¶ê¶‘궒궓궔궕궖궗궘궙궚궛궜ê¶ê¶žê¶Ÿ +궠궡궢궣궤궥궦궧궨궩궪궫궬궭궮궯궰궱궲궳궴궵궶궷궸궹궺궻궼궽궾궿 +ê·€ê·ê·‚귃귄귅귆귇귈귉귊귋귌ê·ê·Žê·ê·ê·‘귒귓귔귕귖귗귘귙귚귛규ê·ê·žê·Ÿ +균귡귢귣귤귥귦귧귨귩귪귫귬귭귮귯귰귱귲귳귴귵귶귷그극귺귻근귽귾귿 +글ê¸ê¸‚긃긄긅긆긇금급긊긋긌ê¸ê¸Žê¸ê¸ê¸‘긒긓긔긕긖긗긘긙긚긛긜ê¸ê¸žê¸Ÿ +긠긡긢긣긤긥긦긧긨긩긪긫긬긭긮긯기긱긲긳긴긵긶긷길긹긺긻긼긽긾긿 +ê¹€ê¹ê¹‚깃깄깅깆깇깈깉깊깋까ê¹ê¹Žê¹ê¹ê¹‘깒깓깔깕깖깗깘깙깚깛깜ê¹ê¹žê¹Ÿ +깠깡깢깣깤깥깦깧깨깩깪깫깬깭깮깯깰깱깲깳깴깵깶깷깸깹깺깻깼깽깾깿 +꺀êºêº‚꺃꺄꺅꺆꺇꺈꺉꺊꺋꺌êºêºŽêºêºêº‘꺒꺓꺔꺕꺖꺗꺘꺙꺚꺛꺜êºêºžêºŸ +꺠꺡꺢꺣꺤꺥꺦꺧꺨꺩꺪꺫꺬꺭꺮꺯꺰꺱꺲꺳꺴꺵꺶꺷꺸꺹꺺꺻꺼꺽꺾꺿 +껀ê»ê»‚껃껄껅껆껇껈껉껊껋껌ê»ê»Žê»ê»ê»‘껒껓껔껕껖껗께껙껚껛껜ê»ê»žê»Ÿ +껠껡껢껣껤껥껦껧껨껩껪껫껬껭껮껯껰껱껲껳껴껵껶껷껸껹껺껻껼껽껾껿 +ê¼€ê¼ê¼‚꼃꼄꼅꼆꼇꼈꼉꼊꼋꼌ê¼ê¼Žê¼ê¼ê¼‘꼒꼓꼔꼕꼖꼗꼘꼙꼚꼛꼜ê¼ê¼žê¼Ÿ +꼠꼡꼢꼣꼤꼥꼦꼧꼨꼩꼪꼫꼬꼭꼮꼯꼰꼱꼲꼳꼴꼵꼶꼷꼸꼹꼺꼻꼼꼽꼾꼿 +ê½€ê½ê½‚꽃꽄꽅꽆꽇꽈꽉꽊꽋꽌ê½ê½Žê½ê½ê½‘꽒꽓꽔꽕꽖꽗꽘꽙꽚꽛꽜ê½ê½žê½Ÿ +꽠꽡꽢꽣꽤꽥꽦꽧꽨꽩꽪꽫꽬꽭꽮꽯꽰꽱꽲꽳꽴꽵꽶꽷꽸꽹꽺꽻꽼꽽꽾꽿 +ê¾€ê¾ê¾‚꾃꾄꾅꾆꾇꾈꾉꾊꾋꾌ê¾ê¾Žê¾ê¾ê¾‘꾒꾓꾔꾕꾖꾗꾘꾙꾚꾛꾜ê¾ê¾žê¾Ÿ +꾠꾡꾢꾣꾤꾥꾦꾧꾨꾩꾪꾫꾬꾭꾮꾯꾰꾱꾲꾳꾴꾵꾶꾷꾸꾹꾺꾻꾼꾽꾾꾿 +ê¿€ê¿ê¿‚꿃꿄꿅꿆꿇꿈꿉꿊꿋꿌ê¿ê¿Žê¿ê¿ê¿‘꿒꿓꿔꿕꿖꿗꿘꿙꿚꿛꿜ê¿ê¿žê¿Ÿ +꿠꿡꿢꿣꿤꿥꿦꿧꿨꿩꿪꿫꿬꿭꿮꿯꿰꿱꿲꿳꿴꿵꿶꿷꿸꿹꿺꿻꿼꿽꿾꿿 +뀀ë€ë€‚뀃뀄뀅뀆뀇뀈뀉뀊뀋뀌ë€ë€Žë€ë€ë€‘뀒뀓뀔뀕뀖뀗뀘뀙뀚뀛뀜ë€ë€žë€Ÿ +뀠뀡뀢뀣뀤뀥뀦뀧뀨뀩뀪뀫뀬뀭뀮뀯뀰뀱뀲뀳뀴뀵뀶뀷뀸뀹뀺뀻뀼뀽뀾뀿 +ë€ëë‚ëƒë„ë…ë†ë‡ëˆë‰ëŠë‹ëŒëëŽëëë‘ë’ë“ë”ë•ë–ë—ë˜ë™ëšë›ëœëëžëŸ +ë ë¡ë¢ë£ë¤ë¥ë¦ë§ë¨ë©ëªë«ë¬ë­ë®ë¯ë°ë±ë²ë³ë´ëµë¶ë·ë¸ë¹ëºë»ë¼ë½ë¾ë¿ +ë‚€ë‚낂낃낄낅낆낇낈낉낊낋낌ë‚ë‚Žë‚ë‚낑낒낓낔낕낖낗나낙낚낛난ë‚ë‚žë‚Ÿ +날낡낢낣낤낥낦낧남납낪낫났낭낮낯낰낱낲낳내낵낶낷낸낹낺낻낼낽낾낿 +냀ëƒëƒ‚냃냄냅냆냇냈냉냊냋냌ëƒëƒŽëƒëƒëƒ‘냒냓냔냕냖냗냘냙냚냛냜ëƒëƒžëƒŸ +냠냡냢냣냤냥냦냧냨냩냪냫냬냭냮냯냰냱냲냳냴냵냶냷냸냹냺냻냼냽냾냿 +ë„€ë„넂넃넄넅넆넇너넉넊넋넌ë„ë„Žë„ë„넑넒넓넔넕넖넗넘넙넚넛넜ë„ë„žë„Ÿ +넠넡넢넣네넥넦넧넨넩넪넫넬넭넮넯넰넱넲넳넴넵넶넷넸넹넺넻넼넽넾넿 +ë…€ë…녂녃년녅녆녇녈녉녊녋녌ë…ë…Žë…ë…녑녒녓녔녕녖녗녘녙녚녛녜ë…ë…žë…Ÿ +녠녡녢녣녤녥녦녧녨녩녪녫녬녭녮녯녰녱녲녳녴녵녶녷노녹녺녻논녽녾녿 +놀ë†ë†‚놃놄놅놆놇놈놉놊놋놌ë†ë†Žë†ë†ë†‘높놓놔놕놖놗놘놙놚놛놜ë†ë†žë†Ÿ +놠놡놢놣놤놥놦놧놨놩놪놫놬놭놮놯놰놱놲놳놴놵놶놷놸놹놺놻놼놽놾놿 +뇀ë‡ë‡‚뇃뇄뇅뇆뇇뇈뇉뇊뇋뇌ë‡ë‡Žë‡ë‡ë‡‘뇒뇓뇔뇕뇖뇗뇘뇙뇚뇛뇜ë‡ë‡žë‡Ÿ +뇠뇡뇢뇣뇤뇥뇦뇧뇨뇩뇪뇫뇬뇭뇮뇯뇰뇱뇲뇳뇴뇵뇶뇷뇸뇹뇺뇻뇼뇽뇾뇿 +눀ëˆëˆ‚눃누눅눆눇눈눉눊눋눌ëˆëˆŽëˆëˆëˆ‘눒눓눔눕눖눗눘눙눚눛눜ëˆëˆžëˆŸ +눠눡눢눣눤눥눦눧눨눩눪눫눬눭눮눯눰눱눲눳눴눵눶눷눸눹눺눻눼눽눾눿 +뉀ë‰ë‰‚뉃뉄뉅뉆뉇뉈뉉뉊뉋뉌ë‰ë‰Žë‰ë‰ë‰‘뉒뉓뉔뉕뉖뉗뉘뉙뉚뉛뉜ë‰ë‰žë‰Ÿ +뉠뉡뉢뉣뉤뉥뉦뉧뉨뉩뉪뉫뉬뉭뉮뉯뉰뉱뉲뉳뉴뉵뉶뉷뉸뉹뉺뉻뉼뉽뉾뉿 +늀ëŠëŠ‚늃늄늅늆늇늈늉늊늋늌ëŠëŠŽëŠëŠëŠ‘늒늓는늕늖늗늘늙늚늛늜ëŠëŠžëŠŸ +늠늡늢늣늤능늦늧늨늩늪늫늬늭늮늯늰늱늲늳늴늵늶늷늸늹늺늻늼늽늾늿 +ë‹€ë‹ë‹‚닃닄닅닆닇니닉닊닋닌ë‹ë‹Žë‹ë‹ë‹‘닒닓닔닕닖닗님닙닚닛닜ë‹ë‹žë‹Ÿ +닠닡닢닣다닥닦닧단닩닪닫달닭닮닯닰닱닲닳담답닶닷닸당닺닻닼닽닾닿 +대ëŒëŒ‚댃댄댅댆댇댈댉댊댋댌ëŒëŒŽëŒëŒëŒ‘댒댓댔댕댖댗댘댙댚댛댜ëŒëŒžëŒŸ +댠댡댢댣댤댥댦댧댨댩댪댫댬댭댮댯댰댱댲댳댴댵댶댷댸댹댺댻댼댽댾댿 +ë€ëë‚ëƒë„ë…ë†ë‡ëˆë‰ëŠë‹ëŒëëŽëëë‘ë’ë“ë”ë•ë–ë—ë˜ë™ëšë›ëœëëžëŸ +ë ë¡ë¢ë£ë¤ë¥ë¦ë§ë¨ë©ëªë«ë¬ë­ë®ë¯ë°ë±ë²ë³ë´ëµë¶ë·ë¸ë¹ëºë»ë¼ë½ë¾ë¿ +뎀ëŽëŽ‚뎃뎄뎅뎆뎇뎈뎉뎊뎋뎌ëŽëŽŽëŽëŽëŽ‘뎒뎓뎔뎕뎖뎗뎘뎙뎚뎛뎜ëŽëŽžëŽŸ +뎠뎡뎢뎣뎤뎥뎦뎧뎨뎩뎪뎫뎬뎭뎮뎯뎰뎱뎲뎳뎴뎵뎶뎷뎸뎹뎺뎻뎼뎽뎾뎿 +ë€ëë‚ëƒë„ë…ë†ë‡ëˆë‰ëŠë‹ëŒëëŽëëë‘ë’ë“ë”ë•ë–ë—ë˜ë™ëšë›ëœëëžëŸ +ë ë¡ë¢ë£ë¤ë¥ë¦ë§ë¨ë©ëªë«ë¬ë­ë®ë¯ë°ë±ë²ë³ë´ëµë¶ë·ë¸ë¹ëºë»ë¼ë½ë¾ë¿ +ë€ëë‚ëƒë„ë…ë†ë‡ëˆë‰ëŠë‹ëŒëëŽëëë‘ë’ë“ë”ë•ë–ë—ë˜ë™ëšë›ëœëëžëŸ +ë ë¡ë¢ë£ë¤ë¥ë¦ë§ë¨ë©ëªë«ë¬ë­ë®ë¯ë°ë±ë²ë³ë´ëµë¶ë·ë¸ë¹ëºë»ë¼ë½ë¾ë¿ +ë‘€ë‘둂둃둄둅둆둇둈둉둊둋둌ë‘ë‘Žë‘ë‘둑둒둓둔둕둖둗둘둙둚둛둜ë‘ë‘žë‘Ÿ +둠둡둢둣둤둥둦둧둨둩둪둫둬둭둮둯둰둱둲둳둴둵둶둷둸둹둺둻둼둽둾둿 +ë’€ë’뒂뒃뒄뒅뒆뒇뒈뒉뒊뒋뒌ë’ë’Žë’ë’뒑뒒뒓뒔뒕뒖뒗뒘뒙뒚뒛뒜ë’ë’žë’Ÿ +뒠뒡뒢뒣뒤뒥뒦뒧뒨뒩뒪뒫뒬뒭뒮뒯뒰뒱뒲뒳뒴뒵뒶뒷뒸뒹뒺뒻뒼뒽뒾뒿 +ë“€ë“듂듃듄듅듆듇듈듉듊듋듌ë“ë“Žë“ë“듑듒듓듔듕듖듗듘듙듚듛드ë“ë“žë“Ÿ +든듡듢듣들듥듦듧듨듩듪듫듬듭듮듯듰등듲듳듴듵듶듷듸듹듺듻듼듽듾듿 +딀ë”딂딃딄딅딆딇딈딉딊딋딌ë”딎ë”ë”딑딒딓디딕딖딗딘딙딚딛딜ë”딞딟 +딠딡딢딣딤딥딦딧딨딩딪딫딬딭딮딯따딱딲딳딴딵딶딷딸딹딺딻딼딽딾딿 +ë•€ë•ë•‚땃땄땅땆땇땈땉땊땋때ë•ë•Žë•ë•ë•‘땒땓땔땕땖땗땘땙땚땛땜ë•ë•žë•Ÿ +땠땡땢땣땤땥땦땧땨땩땪땫땬땭땮땯땰땱땲땳땴땵땶땷땸땹땺땻땼땽땾땿 +ë–€ë–떂떃떄떅떆떇떈떉떊떋떌ë–ë–Žë–ë–떑떒떓떔떕떖떗떘떙떚떛떜ë–ë–žë–Ÿ +떠떡떢떣떤떥떦떧떨떩떪떫떬떭떮떯떰떱떲떳떴떵떶떷떸떹떺떻떼떽떾떿 +ë—€ë—뗂뗃뗄뗅뗆뗇뗈뗉뗊뗋뗌ë—ë—Žë—ë—뗑뗒뗓뗔뗕뗖뗗뗘뗙뗚뗛뗜ë—ë—žë—Ÿ +뗠뗡뗢뗣뗤뗥뗦뗧뗨뗩뗪뗫뗬뗭뗮뗯뗰뗱뗲뗳뗴뗵뗶뗷뗸뗹뗺뗻뗼뗽뗾뗿 +똀ë˜ë˜‚똃똄똅똆똇똈똉똊똋똌ë˜ë˜Žë˜ë˜ë˜‘똒똓똔똕똖똗똘똙똚똛똜ë˜ë˜žë˜Ÿ +똠똡똢똣똤똥똦똧똨똩똪똫똬똭똮똯똰똱똲똳똴똵똶똷똸똹똺똻똼똽똾똿 +뙀ë™ë™‚뙃뙄뙅뙆뙇뙈뙉뙊뙋뙌ë™ë™Žë™ë™ë™‘뙒뙓뙔뙕뙖뙗뙘뙙뙚뙛뙜ë™ë™žë™Ÿ +뙠뙡뙢뙣뙤뙥뙦뙧뙨뙩뙪뙫뙬뙭뙮뙯뙰뙱뙲뙳뙴뙵뙶뙷뙸뙹뙺뙻뙼뙽뙾뙿 +뚀ëšëš‚뚃뚄뚅뚆뚇뚈뚉뚊뚋뚌ëšëšŽëšëšëš‘뚒뚓뚔뚕뚖뚗뚘뚙뚚뚛뚜ëšëšžëšŸ +뚠뚡뚢뚣뚤뚥뚦뚧뚨뚩뚪뚫뚬뚭뚮뚯뚰뚱뚲뚳뚴뚵뚶뚷뚸뚹뚺뚻뚼뚽뚾뚿 +뛀ë›ë›‚뛃뛄뛅뛆뛇뛈뛉뛊뛋뛌ë›ë›Žë›ë›ë›‘뛒뛓뛔뛕뛖뛗뛘뛙뛚뛛뛜ë›ë›žë›Ÿ +뛠뛡뛢뛣뛤뛥뛦뛧뛨뛩뛪뛫뛬뛭뛮뛯뛰뛱뛲뛳뛴뛵뛶뛷뛸뛹뛺뛻뛼뛽뛾뛿 +뜀ëœëœ‚뜃뜄뜅뜆뜇뜈뜉뜊뜋뜌ëœëœŽëœëœëœ‘뜒뜓뜔뜕뜖뜗뜘뜙뜚뜛뜜ëœëœžëœŸ +뜠뜡뜢뜣뜤뜥뜦뜧뜨뜩뜪뜫뜬뜭뜮뜯뜰뜱뜲뜳뜴뜵뜶뜷뜸뜹뜺뜻뜼뜽뜾뜿 +ë€ëë‚ëƒë„ë…ë†ë‡ëˆë‰ëŠë‹ëŒëëŽëëë‘ë’ë“ë”ë•ë–ë—ë˜ë™ëšë›ëœëëžëŸ +ë ë¡ë¢ë£ë¤ë¥ë¦ë§ë¨ë©ëªë«ë¬ë­ë®ë¯ë°ë±ë²ë³ë´ëµë¶ë·ë¸ë¹ëºë»ë¼ë½ë¾ë¿ +란ëžëž‚랃랄랅랆랇랈랉랊랋람ëžëžŽëžëžëž‘랒랓랔랕랖랗래랙랚랛랜ëžëžžëžŸ +랠랡랢랣랤랥랦랧램랩랪랫랬랭랮랯랰랱랲랳랴략랶랷랸랹랺랻랼랽랾랿 +럀ëŸëŸ‚럃럄럅럆럇럈량럊럋럌ëŸëŸŽëŸëŸëŸ‘럒럓럔럕럖럗럘럙럚럛럜ëŸëŸžëŸŸ +럠럡럢럣럤럥럦럧럨럩럪럫러럭럮럯런럱럲럳럴럵럶럷럸럹럺럻럼럽럾럿 +ë €ë ë ‚렃렄렅렆렇레렉렊렋렌ë ë Žë ë ë ‘렒렓렔렕렖렗렘렙렚렛렜ë ë žë Ÿ +렠렡렢렣려력렦렧련렩렪렫렬렭렮렯렰렱렲렳렴렵렶렷렸령렺렻렼렽렾렿 +ë¡€ë¡ë¡‚롃롄롅롆롇롈롉롊롋롌ë¡ë¡Žë¡ë¡ë¡‘롒롓롔롕롖롗롘롙롚롛로ë¡ë¡žë¡Ÿ +론롡롢롣롤롥롦롧롨롩롪롫롬롭롮롯롰롱롲롳롴롵롶롷롸롹롺롻롼롽롾롿 +뢀ë¢ë¢‚뢃뢄뢅뢆뢇뢈뢉뢊뢋뢌ë¢ë¢Žë¢ë¢ë¢‘뢒뢓뢔뢕뢖뢗뢘뢙뢚뢛뢜ë¢ë¢žë¢Ÿ +뢠뢡뢢뢣뢤뢥뢦뢧뢨뢩뢪뢫뢬뢭뢮뢯뢰뢱뢲뢳뢴뢵뢶뢷뢸뢹뢺뢻뢼뢽뢾뢿 +룀ë£ë£‚룃룄룅룆룇룈룉룊룋료ë£ë£Žë£ë£ë£‘룒룓룔룕룖룗룘룙룚룛룜ë£ë£žë£Ÿ +룠룡룢룣룤룥룦룧루룩룪룫룬룭룮룯룰룱룲룳룴룵룶룷룸룹룺룻룼룽룾룿 +뤀ë¤ë¤‚뤃뤄뤅뤆뤇뤈뤉뤊뤋뤌ë¤ë¤Žë¤ë¤ë¤‘뤒뤓뤔뤕뤖뤗뤘뤙뤚뤛뤜ë¤ë¤žë¤Ÿ +뤠뤡뤢뤣뤤뤥뤦뤧뤨뤩뤪뤫뤬뤭뤮뤯뤰뤱뤲뤳뤴뤵뤶뤷뤸뤹뤺뤻뤼뤽뤾뤿 +륀ë¥ë¥‚륃륄륅륆륇륈륉륊륋륌ë¥ë¥Žë¥ë¥ë¥‘륒륓륔륕륖륗류륙륚륛륜ë¥ë¥žë¥Ÿ +률륡륢륣륤륥륦륧륨륩륪륫륬륭륮륯륰륱륲륳르륵륶륷른륹륺륻를륽륾륿 +릀ë¦ë¦‚릃름릅릆릇릈릉릊릋릌ë¦ë¦Žë¦ë¦ë¦‘릒릓릔릕릖릗릘릙릚릛릜ë¦ë¦žë¦Ÿ +릠릡릢릣릤릥릦릧릨릩릪릫리릭릮릯린릱릲릳릴릵릶릷릸릹릺릻림립릾릿 +맀ë§ë§‚맃맄맅맆맇마막맊맋만ë§ë§Žë§ë§ë§‘맒맓맔맕맖맗맘맙맚맛맜ë§ë§žë§Ÿ +맠맡맢맣매맥맦맧맨맩맪맫맬맭맮맯맰맱맲맳맴맵맶맷맸맹맺맻맼맽맾맿 +먀ë¨ë¨‚먃먄먅먆먇먈먉먊먋먌ë¨ë¨Žë¨ë¨ë¨‘먒먓먔먕먖먗먘먙먚먛먜ë¨ë¨žë¨Ÿ +먠먡먢먣먤먥먦먧먨먩먪먫먬먭먮먯먰먱먲먳먴먵먶먷머먹먺먻먼먽먾먿 +ë©€ë©ë©‚멃멄멅멆멇멈멉멊멋멌ë©ë©Žë©ë©ë©‘멒멓메멕멖멗멘멙멚멛멜ë©ë©žë©Ÿ +멠멡멢멣멤멥멦멧멨멩멪멫멬멭멮멯며멱멲멳면멵멶멷멸멹멺멻멼멽멾멿 +몀ëªëª‚몃몄명몆몇몈몉몊몋몌ëªëªŽëªëªëª‘몒몓몔몕몖몗몘몙몚몛몜ëªëªžëªŸ +몠몡몢몣몤몥몦몧모목몪몫몬몭몮몯몰몱몲몳몴몵몶몷몸몹몺못몼몽몾몿 +ë«€ë«ë«‚뫃뫄뫅뫆뫇뫈뫉뫊뫋뫌ë«ë«Žë«ë«ë«‘뫒뫓뫔뫕뫖뫗뫘뫙뫚뫛뫜ë«ë«žë«Ÿ +뫠뫡뫢뫣뫤뫥뫦뫧뫨뫩뫪뫫뫬뫭뫮뫯뫰뫱뫲뫳뫴뫵뫶뫷뫸뫹뫺뫻뫼뫽뫾뫿 +묀ë¬ë¬‚묃묄묅묆묇묈묉묊묋묌ë¬ë¬Žë¬ë¬ë¬‘묒묓묔묕묖묗묘묙묚묛묜ë¬ë¬žë¬Ÿ +묠묡묢묣묤묥묦묧묨묩묪묫묬묭묮묯묰묱묲묳무묵묶묷문묹묺묻물묽묾묿 +ë­€ë­ë­‚뭃뭄뭅뭆뭇뭈뭉뭊뭋뭌ë­ë­Žë­ë­ë­‘뭒뭓뭔뭕뭖뭗뭘뭙뭚뭛뭜ë­ë­žë­Ÿ +뭠뭡뭢뭣뭤뭥뭦뭧뭨뭩뭪뭫뭬뭭뭮뭯뭰뭱뭲뭳뭴뭵뭶뭷뭸뭹뭺뭻뭼뭽뭾뭿 +뮀ë®ë®‚뮃뮄뮅뮆뮇뮈뮉뮊뮋뮌ë®ë®Žë®ë®ë®‘뮒뮓뮔뮕뮖뮗뮘뮙뮚뮛뮜ë®ë®žë®Ÿ +뮠뮡뮢뮣뮤뮥뮦뮧뮨뮩뮪뮫뮬뮭뮮뮯뮰뮱뮲뮳뮴뮵뮶뮷뮸뮹뮺뮻뮼뮽뮾뮿 +므ë¯ë¯‚믃믄믅믆믇믈믉믊믋믌ë¯ë¯Žë¯ë¯ë¯‘믒믓믔믕믖믗믘믙믚믛믜ë¯ë¯žë¯Ÿ +믠믡믢믣믤믥믦믧믨믩믪믫믬믭믮믯믰믱믲믳믴믵믶믷미믹믺믻민믽믾믿 +ë°€ë°ë°‚밃밄밅밆밇밈밉밊밋밌ë°ë°Žë°ë°ë°‘밒밓바박밖밗반밙밚받발ë°ë°žë°Ÿ +밠밡밢밣밤밥밦밧밨방밪밫밬밭밮밯배백밲밳밴밵밶밷밸밹밺밻밼밽밾밿 +ë±€ë±ë±‚뱃뱄뱅뱆뱇뱈뱉뱊뱋뱌ë±ë±Žë±ë±ë±‘뱒뱓뱔뱕뱖뱗뱘뱙뱚뱛뱜ë±ë±žë±Ÿ +뱠뱡뱢뱣뱤뱥뱦뱧뱨뱩뱪뱫뱬뱭뱮뱯뱰뱱뱲뱳뱴뱵뱶뱷뱸뱹뱺뱻뱼뱽뱾뱿 +ë²€ë²ë²‚벃버벅벆벇번벉벊벋벌ë²ë²Žë²ë²ë²‘벒벓범법벖벗벘벙벚벛벜ë²ë²žë²Ÿ +베벡벢벣벤벥벦벧벨벩벪벫벬벭벮벯벰벱벲벳벴벵벶벷벸벹벺벻벼벽벾벿 +ë³€ë³ë³‚볃별볅볆볇볈볉볊볋볌ë³ë³Žë³ë³ë³‘볒볓볔볕볖볗볘볙볚볛볜ë³ë³žë³Ÿ +볠볡볢볣볤볥볦볧볨볩볪볫볬볭볮볯볰볱볲볳보복볶볷본볹볺볻볼볽볾볿 +ë´€ë´ë´‚봃봄봅봆봇봈봉봊봋봌ë´ë´Žë´ë´ë´‘봒봓봔봕봖봗봘봙봚봛봜ë´ë´žë´Ÿ +봠봡봢봣봤봥봦봧봨봩봪봫봬봭봮봯봰봱봲봳봴봵봶봷봸봹봺봻봼봽봾봿 +ëµ€ëµëµ‚뵃뵄뵅뵆뵇뵈뵉뵊뵋뵌ëµëµŽëµëµëµ‘뵒뵓뵔뵕뵖뵗뵘뵙뵚뵛뵜ëµëµžëµŸ +뵠뵡뵢뵣뵤뵥뵦뵧뵨뵩뵪뵫뵬뵭뵮뵯뵰뵱뵲뵳뵴뵵뵶뵷뵸뵹뵺뵻뵼뵽뵾뵿 +부ë¶ë¶‚붃분붅붆붇불붉붊붋붌ë¶ë¶Žë¶ë¶ë¶‘붒붓붔붕붖붗붘붙붚붛붜ë¶ë¶žë¶Ÿ +붠붡붢붣붤붥붦붧붨붩붪붫붬붭붮붯붰붱붲붳붴붵붶붷붸붹붺붻붼붽붾붿 +ë·€ë·ë·‚뷃뷄뷅뷆뷇뷈뷉뷊뷋뷌ë·ë·Žë·ë·ë·‘뷒뷓뷔뷕뷖뷗뷘뷙뷚뷛뷜ë·ë·žë·Ÿ +뷠뷡뷢뷣뷤뷥뷦뷧뷨뷩뷪뷫뷬뷭뷮뷯뷰뷱뷲뷳뷴뷵뷶뷷뷸뷹뷺뷻뷼뷽뷾뷿 +븀ë¸ë¸‚븃븄븅븆븇븈븉븊븋브ë¸ë¸Žë¸ë¸ë¸‘븒븓블븕븖븗븘븙븚븛븜ë¸ë¸žë¸Ÿ +븠븡븢븣븤븥븦븧븨븩븪븫븬븭븮븯븰븱븲븳븴븵븶븷븸븹븺븻븼븽븾븿 +ë¹€ë¹ë¹‚빃비빅빆빇빈빉빊빋빌ë¹ë¹Žë¹ë¹ë¹‘빒빓빔빕빖빗빘빙빚빛빜ë¹ë¹žë¹Ÿ +빠빡빢빣빤빥빦빧빨빩빪빫빬빭빮빯빰빱빲빳빴빵빶빷빸빹빺빻빼빽빾빿 +뺀ëºëº‚뺃뺄뺅뺆뺇뺈뺉뺊뺋뺌ëºëºŽëºëºëº‘뺒뺓뺔뺕뺖뺗뺘뺙뺚뺛뺜ëºëºžëºŸ +뺠뺡뺢뺣뺤뺥뺦뺧뺨뺩뺪뺫뺬뺭뺮뺯뺰뺱뺲뺳뺴뺵뺶뺷뺸뺹뺺뺻뺼뺽뺾뺿 +뻀ë»ë»‚뻃뻄뻅뻆뻇뻈뻉뻊뻋뻌ë»ë»Žë»ë»ë»‘뻒뻓뻔뻕뻖뻗뻘뻙뻚뻛뻜ë»ë»žë»Ÿ +뻠뻡뻢뻣뻤뻥뻦뻧뻨뻩뻪뻫뻬뻭뻮뻯뻰뻱뻲뻳뻴뻵뻶뻷뻸뻹뻺뻻뻼뻽뻾뻿 +ë¼€ë¼ë¼‚뼃뼄뼅뼆뼇뼈뼉뼊뼋뼌ë¼ë¼Žë¼ë¼ë¼‘뼒뼓뼔뼕뼖뼗뼘뼙뼚뼛뼜ë¼ë¼žë¼Ÿ +뼠뼡뼢뼣뼤뼥뼦뼧뼨뼩뼪뼫뼬뼭뼮뼯뼰뼱뼲뼳뼴뼵뼶뼷뼸뼹뼺뼻뼼뼽뼾뼿 +ë½€ë½ë½‚뽃뽄뽅뽆뽇뽈뽉뽊뽋뽌ë½ë½Žë½ë½ë½‘뽒뽓뽔뽕뽖뽗뽘뽙뽚뽛뽜ë½ë½žë½Ÿ +뽠뽡뽢뽣뽤뽥뽦뽧뽨뽩뽪뽫뽬뽭뽮뽯뽰뽱뽲뽳뽴뽵뽶뽷뽸뽹뽺뽻뽼뽽뽾뽿 +ë¾€ë¾ë¾‚뾃뾄뾅뾆뾇뾈뾉뾊뾋뾌ë¾ë¾Žë¾ë¾ë¾‘뾒뾓뾔뾕뾖뾗뾘뾙뾚뾛뾜ë¾ë¾žë¾Ÿ +뾠뾡뾢뾣뾤뾥뾦뾧뾨뾩뾪뾫뾬뾭뾮뾯뾰뾱뾲뾳뾴뾵뾶뾷뾸뾹뾺뾻뾼뾽뾾뾿 +ë¿€ë¿ë¿‚뿃뿄뿅뿆뿇뿈뿉뿊뿋뿌ë¿ë¿Žë¿ë¿ë¿‘뿒뿓뿔뿕뿖뿗뿘뿙뿚뿛뿜ë¿ë¿žë¿Ÿ +뿠뿡뿢뿣뿤뿥뿦뿧뿨뿩뿪뿫뿬뿭뿮뿯뿰뿱뿲뿳뿴뿵뿶뿷뿸뿹뿺뿻뿼뿽뿾뿿 +쀀ì€ì€‚쀃쀄쀅쀆쀇쀈쀉쀊쀋쀌ì€ì€Žì€ì€ì€‘쀒쀓쀔쀕쀖쀗쀘쀙쀚쀛쀜ì€ì€žì€Ÿ +쀠쀡쀢쀣쀤쀥쀦쀧쀨쀩쀪쀫쀬쀭쀮쀯쀰쀱쀲쀳쀴쀵쀶쀷쀸쀹쀺쀻쀼쀽쀾쀿 +ì€ìì‚ìƒì„ì…ì†ì‡ìˆì‰ìŠì‹ìŒììŽììì‘ì’ì“ì”ì•ì–ì—ì˜ì™ìšì›ìœììžìŸ +ì ì¡ì¢ì£ì¤ì¥ì¦ì§ì¨ì©ìªì«ì¬ì­ì®ì¯ì°ì±ì²ì³ì´ìµì¶ì·ì¸ì¹ìºì»ì¼ì½ì¾ì¿ +ì‚€ì‚삂삃삄삅삆삇삈삉삊삋삌ì‚ì‚Žì‚ì‚삑삒삓삔삕삖삗삘삙삚삛삜ì‚ì‚žì‚Ÿ +삠삡삢삣삤삥삦삧삨삩삪삫사삭삮삯산삱삲삳살삵삶삷삸삹삺삻삼삽삾삿 +샀ìƒìƒ‚샃샄샅샆샇새색샊샋샌ìƒìƒŽìƒìƒìƒ‘샒샓샔샕샖샗샘샙샚샛샜ìƒìƒžìƒŸ +샠샡샢샣샤샥샦샧샨샩샪샫샬샭샮샯샰샱샲샳샴샵샶샷샸샹샺샻샼샽샾샿 +ì„€ì„섂섃섄섅섆섇섈섉섊섋섌ì„ì„Žì„ì„섑섒섓섔섕섖섗섘섙섚섛서ì„ì„žì„Ÿ +선섡섢섣설섥섦섧섨섩섪섫섬섭섮섯섰성섲섳섴섵섶섷세섹섺섻센섽섾섿 +ì…€ì…셂셃셄셅셆셇셈셉셊셋셌ì…ì…Žì…ì…셑셒셓셔셕셖셗션셙셚셛셜ì…ì…žì…Ÿ +셠셡셢셣셤셥셦셧셨셩셪셫셬셭셮셯셰셱셲셳셴셵셶셷셸셹셺셻셼셽셾셿 +솀ì†ì†‚솃솄솅솆솇솈솉솊솋소ì†ì†Žì†ì†ì†‘솒솓솔솕솖솗솘솙솚솛솜ì†ì†žì†Ÿ +솠송솢솣솤솥솦솧솨솩솪솫솬솭솮솯솰솱솲솳솴솵솶솷솸솹솺솻솼솽솾솿 +쇀ì‡ì‡‚쇃쇄쇅쇆쇇쇈쇉쇊쇋쇌ì‡ì‡Žì‡ì‡ì‡‘쇒쇓쇔쇕쇖쇗쇘쇙쇚쇛쇜ì‡ì‡žì‡Ÿ +쇠쇡쇢쇣쇤쇥쇦쇧쇨쇩쇪쇫쇬쇭쇮쇯쇰쇱쇲쇳쇴쇵쇶쇷쇸쇹쇺쇻쇼쇽쇾쇿 +숀ìˆìˆ‚숃숄숅숆숇숈숉숊숋숌ìˆìˆŽìˆìˆìˆ‘숒숓숔숕숖숗수숙숚숛순ìˆìˆžìˆŸ +술숡숢숣숤숥숦숧숨숩숪숫숬숭숮숯숰숱숲숳숴숵숶숷숸숹숺숻숼숽숾숿 +쉀ì‰ì‰‚쉃쉄쉅쉆쉇쉈쉉쉊쉋쉌ì‰ì‰Žì‰ì‰ì‰‘쉒쉓쉔쉕쉖쉗쉘쉙쉚쉛쉜ì‰ì‰žì‰Ÿ +쉠쉡쉢쉣쉤쉥쉦쉧쉨쉩쉪쉫쉬쉭쉮쉯쉰쉱쉲쉳쉴쉵쉶쉷쉸쉹쉺쉻쉼쉽쉾쉿 +슀ìŠìŠ‚슃슄슅슆슇슈슉슊슋슌ìŠìŠŽìŠìŠìŠ‘슒슓슔슕슖슗슘슙슚슛슜ìŠìŠžìŠŸ +슠슡슢슣스슥슦슧슨슩슪슫슬슭슮슯슰슱슲슳슴습슶슷슸승슺슻슼슽슾슿 +ì‹€ì‹ì‹‚싃싄싅싆싇싈싉싊싋싌ì‹ì‹Žì‹ì‹ì‹‘싒싓싔싕싖싗싘싙싚싛시ì‹ì‹žì‹Ÿ +신싡싢싣실싥싦싧싨싩싪싫심십싮싯싰싱싲싳싴싵싶싷싸싹싺싻싼싽싾싿 +쌀ìŒìŒ‚쌃쌄쌅쌆쌇쌈쌉쌊쌋쌌ìŒìŒŽìŒìŒìŒ‘쌒쌓쌔쌕쌖쌗쌘쌙쌚쌛쌜ìŒìŒžìŒŸ +쌠쌡쌢쌣쌤쌥쌦쌧쌨쌩쌪쌫쌬쌭쌮쌯쌰쌱쌲쌳쌴쌵쌶쌷쌸쌹쌺쌻쌼쌽쌾쌿 +ì€ìì‚ìƒì„ì…ì†ì‡ìˆì‰ìŠì‹ìŒììŽììì‘ì’ì“ì”ì•ì–ì—ì˜ì™ìšì›ìœììžìŸ +ì ì¡ì¢ì£ì¤ì¥ì¦ì§ì¨ì©ìªì«ì¬ì­ì®ì¯ì°ì±ì²ì³ì´ìµì¶ì·ì¸ì¹ìºì»ì¼ì½ì¾ì¿ +쎀ìŽìŽ‚쎃쎄쎅쎆쎇쎈쎉쎊쎋쎌ìŽìŽŽìŽìŽìŽ‘쎒쎓쎔쎕쎖쎗쎘쎙쎚쎛쎜ìŽìŽžìŽŸ +쎠쎡쎢쎣쎤쎥쎦쎧쎨쎩쎪쎫쎬쎭쎮쎯쎰쎱쎲쎳쎴쎵쎶쎷쎸쎹쎺쎻쎼쎽쎾쎿 +ì€ìì‚ìƒì„ì…ì†ì‡ìˆì‰ìŠì‹ìŒììŽììì‘ì’ì“ì”ì•ì–ì—ì˜ì™ìšì›ìœììžìŸ +ì ì¡ì¢ì£ì¤ì¥ì¦ì§ì¨ì©ìªì«ì¬ì­ì®ì¯ì°ì±ì²ì³ì´ìµì¶ì·ì¸ì¹ìºì»ì¼ì½ì¾ì¿ +ì€ìì‚ìƒì„ì…ì†ì‡ìˆì‰ìŠì‹ìŒììŽììì‘ì’ì“ì”ì•ì–ì—ì˜ì™ìšì›ìœììžìŸ +ì ì¡ì¢ì£ì¤ì¥ì¦ì§ì¨ì©ìªì«ì¬ì­ì®ì¯ì°ì±ì²ì³ì´ìµì¶ì·ì¸ì¹ìºì»ì¼ì½ì¾ì¿ +ì‘€ì‘쑂쑃쑄쑅쑆쑇쑈쑉쑊쑋쑌ì‘ì‘Žì‘ì‘쑑쑒쑓쑔쑕쑖쑗쑘쑙쑚쑛쑜ì‘ì‘žì‘Ÿ +쑠쑡쑢쑣쑤쑥쑦쑧쑨쑩쑪쑫쑬쑭쑮쑯쑰쑱쑲쑳쑴쑵쑶쑷쑸쑹쑺쑻쑼쑽쑾쑿 +ì’€ì’쒂쒃쒄쒅쒆쒇쒈쒉쒊쒋쒌ì’ì’Žì’ì’쒑쒒쒓쒔쒕쒖쒗쒘쒙쒚쒛쒜ì’ì’žì’Ÿ +쒠쒡쒢쒣쒤쒥쒦쒧쒨쒩쒪쒫쒬쒭쒮쒯쒰쒱쒲쒳쒴쒵쒶쒷쒸쒹쒺쒻쒼쒽쒾쒿 +ì“€ì“쓂쓃쓄쓅쓆쓇쓈쓉쓊쓋쓌ì“ì“Žì“ì“쓑쓒쓓쓔쓕쓖쓗쓘쓙쓚쓛쓜ì“ì“žì“Ÿ +쓠쓡쓢쓣쓤쓥쓦쓧쓨쓩쓪쓫쓬쓭쓮쓯쓰쓱쓲쓳쓴쓵쓶쓷쓸쓹쓺쓻쓼쓽쓾쓿 +씀ì”씂씃씄씅씆씇씈씉씊씋씌ì”씎ì”ì”씑씒씓씔씕씖씗씘씙씚씛씜ì”씞씟 +씠씡씢씣씤씥씦씧씨씩씪씫씬씭씮씯씰씱씲씳씴씵씶씷씸씹씺씻씼씽씾씿 +ì•€ì•ì•‚앃아악앆앇안앉않앋알ì•ì•Žì•ì•ì•‘앒앓암압앖앗았앙앚앛앜ì•ì•žì•Ÿ +애액앢앣앤앥앦앧앨앩앪앫앬앭앮앯앰앱앲앳앴앵앶앷앸앹앺앻야약앾앿 +ì–€ì–얂얃얄얅얆얇얈얉얊얋얌ì–ì–Žì–ì–양얒얓얔얕얖얗얘얙얚얛얜ì–ì–žì–Ÿ +얠얡얢얣얤얥얦얧얨얩얪얫얬얭얮얯얰얱얲얳어억얶얷언얹얺얻얼얽얾얿 +ì—€ì—엂엃엄업없엇었엉엊엋엌ì—ì—Žì—ì—엑엒엓엔엕엖엗엘엙엚엛엜ì—ì—žì—Ÿ +엠엡엢엣엤엥엦엧엨엩엪엫여역엮엯연엱엲엳열엵엶엷엸엹엺엻염엽엾엿 +였ì˜ì˜‚옃옄옅옆옇예옉옊옋옌ì˜ì˜Žì˜ì˜ì˜‘옒옓옔옕옖옗옘옙옚옛옜ì˜ì˜žì˜Ÿ +옠옡옢옣오옥옦옧온옩옪옫올옭옮옯옰옱옲옳옴옵옶옷옸옹옺옻옼옽옾옿 +와ì™ì™‚왃완왅왆왇왈왉왊왋왌ì™ì™Žì™ì™ì™‘왒왓왔왕왖왗왘왙왚왛왜ì™ì™žì™Ÿ +왠왡왢왣왤왥왦왧왨왩왪왫왬왭왮왯왰왱왲왳왴왵왶왷외왹왺왻왼왽왾왿 +욀ìšìš‚욃욄욅욆욇욈욉욊욋욌ìšìšŽìšìšìš‘욒욓요욕욖욗욘욙욚욛욜ìšìšžìšŸ +욠욡욢욣욤욥욦욧욨용욪욫욬욭욮욯우욱욲욳운욵욶욷울욹욺욻욼욽욾욿 +움ì›ì›‚웃웄웅웆웇웈웉웊웋워ì›ì›Žì›ì›ì›‘웒웓월웕웖웗웘웙웚웛웜ì›ì›žì›Ÿ +웠웡웢웣웤웥웦웧웨웩웪웫웬웭웮웯웰웱웲웳웴웵웶웷웸웹웺웻웼웽웾웿 +윀ìœìœ‚윃위윅윆윇윈윉윊윋윌ìœìœŽìœìœìœ‘윒윓윔윕윖윗윘윙윚윛윜ìœìœžìœŸ +유육윢윣윤윥윦윧율윩윪윫윬윭윮윯윰윱윲윳윴융윶윷윸윹윺윻으윽윾윿 +ì€ìì‚ìƒì„ì…ì†ì‡ìˆì‰ìŠì‹ìŒììŽììì‘ì’ì“ì”ì•ì–ì—ì˜ì™ìšì›ìœììžìŸ +ì ì¡ì¢ì£ì¤ì¥ì¦ì§ì¨ì©ìªì«ì¬ì­ì®ì¯ì°ì±ì²ì³ì´ìµì¶ì·ì¸ì¹ìºì»ì¼ì½ì¾ì¿ +잀ìžìž‚잃임입잆잇있잉잊잋잌ìžìžŽìžìžìž‘잒잓잔잕잖잗잘잙잚잛잜ìžìžžìžŸ +잠잡잢잣잤장잦잧잨잩잪잫재잭잮잯잰잱잲잳잴잵잶잷잸잹잺잻잼잽잾잿 +쟀ìŸìŸ‚쟃쟄쟅쟆쟇쟈쟉쟊쟋쟌ìŸìŸŽìŸìŸìŸ‘쟒쟓쟔쟕쟖쟗쟘쟙쟚쟛쟜ìŸìŸžìŸŸ +쟠쟡쟢쟣쟤쟥쟦쟧쟨쟩쟪쟫쟬쟭쟮쟯쟰쟱쟲쟳쟴쟵쟶쟷쟸쟹쟺쟻쟼쟽쟾쟿 +ì €ì ì ‚젃전젅젆젇절젉젊젋젌ì ì Žì ì ì ‘젒젓젔정젖젗젘젙젚젛제ì ì žì Ÿ +젠젡젢젣젤젥젦젧젨젩젪젫젬젭젮젯젰젱젲젳젴젵젶젷져젹젺젻젼젽젾젿 +ì¡€ì¡ì¡‚졃졄졅졆졇졈졉졊졋졌ì¡ì¡Žì¡ì¡ì¡‘졒졓졔졕졖졗졘졙졚졛졜ì¡ì¡žì¡Ÿ +졠졡졢졣졤졥졦졧졨졩졪졫졬졭졮졯조족졲졳존졵졶졷졸졹졺졻졼졽졾졿 +좀ì¢ì¢‚좃좄종좆좇좈좉좊좋좌ì¢ì¢Žì¢ì¢ì¢‘좒좓좔좕좖좗좘좙좚좛좜ì¢ì¢žì¢Ÿ +좠좡좢좣좤좥좦좧좨좩좪좫좬좭좮좯좰좱좲좳좴좵좶좷좸좹좺좻좼좽좾좿 +죀ì£ì£‚죃죄죅죆죇죈죉죊죋죌ì£ì£Žì£ì£ì£‘죒죓죔죕죖죗죘죙죚죛죜ì£ì£žì£Ÿ +죠죡죢죣죤죥죦죧죨죩죪죫죬죭죮죯죰죱죲죳죴죵죶죷죸죹죺죻주죽죾죿 +준ì¤ì¤‚줃줄줅줆줇줈줉줊줋줌ì¤ì¤Žì¤ì¤ì¤‘줒줓줔줕줖줗줘줙줚줛줜ì¤ì¤žì¤Ÿ +줠줡줢줣줤줥줦줧줨줩줪줫줬줭줮줯줰줱줲줳줴줵줶줷줸줹줺줻줼줽줾줿 +쥀ì¥ì¥‚쥃쥄쥅쥆쥇쥈쥉쥊쥋쥌ì¥ì¥Žì¥ì¥ì¥‘쥒쥓쥔쥕쥖쥗쥘쥙쥚쥛쥜ì¥ì¥žì¥Ÿ +쥠쥡쥢쥣쥤쥥쥦쥧쥨쥩쥪쥫쥬쥭쥮쥯쥰쥱쥲쥳쥴쥵쥶쥷쥸쥹쥺쥻쥼쥽쥾쥿 +즀ì¦ì¦‚즃즄즅즆즇즈즉즊즋즌ì¦ì¦Žì¦ì¦ì¦‘즒즓즔즕즖즗즘즙즚즛즜ì¦ì¦žì¦Ÿ +즠즡즢즣즤즥즦즧즨즩즪즫즬즭즮즯즰즱즲즳즴즵즶즷즸즹즺즻즼즽즾즿 +지ì§ì§‚짃진짅짆짇질짉짊짋짌ì§ì§Žì§ì§ì§‘짒짓짔징짖짗짘짙짚짛짜ì§ì§žì§Ÿ +짠짡짢짣짤짥짦짧짨짩짪짫짬짭짮짯짰짱짲짳짴짵짶짷째짹짺짻짼짽짾짿 +쨀ì¨ì¨‚쨃쨄쨅쨆쨇쨈쨉쨊쨋쨌ì¨ì¨Žì¨ì¨ì¨‘쨒쨓쨔쨕쨖쨗쨘쨙쨚쨛쨜ì¨ì¨žì¨Ÿ +쨠쨡쨢쨣쨤쨥쨦쨧쨨쨩쨪쨫쨬쨭쨮쨯쨰쨱쨲쨳쨴쨵쨶쨷쨸쨹쨺쨻쨼쨽쨾쨿 +ì©€ì©ì©‚쩃쩄쩅쩆쩇쩈쩉쩊쩋쩌ì©ì©Žì©ì©ì©‘쩒쩓쩔쩕쩖쩗쩘쩙쩚쩛쩜ì©ì©žì©Ÿ +쩠쩡쩢쩣쩤쩥쩦쩧쩨쩩쩪쩫쩬쩭쩮쩯쩰쩱쩲쩳쩴쩵쩶쩷쩸쩹쩺쩻쩼쩽쩾쩿 +쪀ìªìª‚쪃쪄쪅쪆쪇쪈쪉쪊쪋쪌ìªìªŽìªìªìª‘쪒쪓쪔쪕쪖쪗쪘쪙쪚쪛쪜ìªìªžìªŸ +쪠쪡쪢쪣쪤쪥쪦쪧쪨쪩쪪쪫쪬쪭쪮쪯쪰쪱쪲쪳쪴쪵쪶쪷쪸쪹쪺쪻쪼쪽쪾쪿 +ì«€ì«ì«‚쫃쫄쫅쫆쫇쫈쫉쫊쫋쫌ì«ì«Žì«ì«ì«‘쫒쫓쫔쫕쫖쫗쫘쫙쫚쫛쫜ì«ì«žì«Ÿ +쫠쫡쫢쫣쫤쫥쫦쫧쫨쫩쫪쫫쫬쫭쫮쫯쫰쫱쫲쫳쫴쫵쫶쫷쫸쫹쫺쫻쫼쫽쫾쫿 +쬀ì¬ì¬‚쬃쬄쬅쬆쬇쬈쬉쬊쬋쬌ì¬ì¬Žì¬ì¬ì¬‘쬒쬓쬔쬕쬖쬗쬘쬙쬚쬛쬜ì¬ì¬žì¬Ÿ +쬠쬡쬢쬣쬤쬥쬦쬧쬨쬩쬪쬫쬬쬭쬮쬯쬰쬱쬲쬳쬴쬵쬶쬷쬸쬹쬺쬻쬼쬽쬾쬿 +ì­€ì­ì­‚쭃쭄쭅쭆쭇쭈쭉쭊쭋쭌ì­ì­Žì­ì­ì­‘쭒쭓쭔쭕쭖쭗쭘쭙쭚쭛쭜ì­ì­žì­Ÿ +쭠쭡쭢쭣쭤쭥쭦쭧쭨쭩쭪쭫쭬쭭쭮쭯쭰쭱쭲쭳쭴쭵쭶쭷쭸쭹쭺쭻쭼쭽쭾쭿 +쮀ì®ì®‚쮃쮄쮅쮆쮇쮈쮉쮊쮋쮌ì®ì®Žì®ì®ì®‘쮒쮓쮔쮕쮖쮗쮘쮙쮚쮛쮜ì®ì®žì®Ÿ +쮠쮡쮢쮣쮤쮥쮦쮧쮨쮩쮪쮫쮬쮭쮮쮯쮰쮱쮲쮳쮴쮵쮶쮷쮸쮹쮺쮻쮼쮽쮾쮿 +쯀ì¯ì¯‚쯃쯄쯅쯆쯇쯈쯉쯊쯋쯌ì¯ì¯Žì¯ì¯ì¯‘쯒쯓쯔쯕쯖쯗쯘쯙쯚쯛쯜ì¯ì¯žì¯Ÿ +쯠쯡쯢쯣쯤쯥쯦쯧쯨쯩쯪쯫쯬쯭쯮쯯쯰쯱쯲쯳쯴쯵쯶쯷쯸쯹쯺쯻쯼쯽쯾쯿 +ì°€ì°ì°‚찃찄찅찆찇찈찉찊찋찌ì°ì°Žì°ì°ì°‘찒찓찔찕찖찗찘찙찚찛찜ì°ì°žì°Ÿ +찠찡찢찣찤찥찦찧차착찪찫찬찭찮찯찰찱찲찳찴찵찶찷참찹찺찻찼창찾찿 +ì±€ì±ì±‚챃채책챆챇챈챉챊챋챌ì±ì±Žì±ì±ì±‘챒챓챔챕챖챗챘챙챚챛챜ì±ì±žì±Ÿ +챠챡챢챣챤챥챦챧챨챩챪챫챬챭챮챯챰챱챲챳챴챵챶챷챸챹챺챻챼챽챾챿 +ì²€ì²ì²‚첃첄첅첆첇첈첉첊첋첌ì²ì²Žì²ì²ì²‘첒첓첔첕첖첗처척첚첛천ì²ì²žì²Ÿ +철첡첢첣첤첥첦첧첨첩첪첫첬청첮첯첰첱첲첳체첵첶첷첸첹첺첻첼첽첾첿 +ì³€ì³ì³‚쳃쳄쳅쳆쳇쳈쳉쳊쳋쳌ì³ì³Žì³ì³ì³‘쳒쳓쳔쳕쳖쳗쳘쳙쳚쳛쳜ì³ì³žì³Ÿ +쳠쳡쳢쳣쳤쳥쳦쳧쳨쳩쳪쳫쳬쳭쳮쳯쳰쳱쳲쳳쳴쳵쳶쳷쳸쳹쳺쳻쳼쳽쳾쳿 +ì´€ì´ì´‚촃촄촅촆촇초촉촊촋촌ì´ì´Žì´ì´ì´‘촒촓촔촕촖촗촘촙촚촛촜ì´ì´žì´Ÿ +촠촡촢촣촤촥촦촧촨촩촪촫촬촭촮촯촰촱촲촳촴촵촶촷촸촹촺촻촼촽촾촿 +ìµ€ìµìµ‚쵃쵄쵅쵆쵇쵈쵉쵊쵋쵌ìµìµŽìµìµìµ‘쵒쵓쵔쵕쵖쵗쵘쵙쵚쵛최ìµìµžìµŸ +쵠쵡쵢쵣쵤쵥쵦쵧쵨쵩쵪쵫쵬쵭쵮쵯쵰쵱쵲쵳쵴쵵쵶쵷쵸쵹쵺쵻쵼쵽쵾쵿 +춀ì¶ì¶‚춃춄춅춆춇춈춉춊춋춌ì¶ì¶Žì¶ì¶ì¶‘춒춓추축춖춗춘춙춚춛출ì¶ì¶žì¶Ÿ +춠춡춢춣춤춥춦춧춨충춪춫춬춭춮춯춰춱춲춳춴춵춶춷춸춹춺춻춼춽춾춿 +ì·€ì·ì·‚췃췄췅췆췇췈췉췊췋췌ì·ì·Žì·ì·ì·‘췒췓췔췕췖췗췘췙췚췛췜ì·ì·žì·Ÿ +췠췡췢췣췤췥췦췧취췩췪췫췬췭췮췯췰췱췲췳췴췵췶췷췸췹췺췻췼췽췾췿 +츀ì¸ì¸‚츃츄츅츆츇츈츉츊츋츌ì¸ì¸Žì¸ì¸ì¸‘츒츓츔츕츖츗츘츙츚츛츜ì¸ì¸žì¸Ÿ +츠측츢츣츤츥츦츧츨츩츪츫츬츭츮츯츰츱츲츳츴층츶츷츸츹츺츻츼츽츾츿 +ì¹€ì¹ì¹‚칃칄칅칆칇칈칉칊칋칌ì¹ì¹Žì¹ì¹ì¹‘칒칓칔칕칖칗치칙칚칛친ì¹ì¹žì¹Ÿ +칠칡칢칣칤칥칦칧침칩칪칫칬칭칮칯칰칱칲칳카칵칶칷칸칹칺칻칼칽칾칿 +캀ìºìº‚캃캄캅캆캇캈캉캊캋캌ìºìºŽìºìºìº‘캒캓캔캕캖캗캘캙캚캛캜ìºìºžìºŸ +캠캡캢캣캤캥캦캧캨캩캪캫캬캭캮캯캰캱캲캳캴캵캶캷캸캹캺캻캼캽캾캿 +컀ì»ì»‚컃컄컅컆컇컈컉컊컋컌ì»ì»Žì»ì»ì»‘컒컓컔컕컖컗컘컙컚컛컜ì»ì»žì»Ÿ +컠컡컢컣커컥컦컧컨컩컪컫컬컭컮컯컰컱컲컳컴컵컶컷컸컹컺컻컼컽컾컿 +ì¼€ì¼ì¼‚켃켄켅켆켇켈켉켊켋켌ì¼ì¼Žì¼ì¼ì¼‘켒켓켔켕켖켗켘켙켚켛켜ì¼ì¼žì¼Ÿ +켠켡켢켣켤켥켦켧켨켩켪켫켬켭켮켯켰켱켲켳켴켵켶켷켸켹켺켻켼켽켾켿 +ì½€ì½ì½‚콃콄콅콆콇콈콉콊콋콌ì½ì½Žì½ì½ì½‘콒콓코콕콖콗콘콙콚콛콜ì½ì½žì½Ÿ +콠콡콢콣콤콥콦콧콨콩콪콫콬콭콮콯콰콱콲콳콴콵콶콷콸콹콺콻콼콽콾콿 +ì¾€ì¾ì¾‚쾃쾄쾅쾆쾇쾈쾉쾊쾋쾌ì¾ì¾Žì¾ì¾ì¾‘쾒쾓쾔쾕쾖쾗쾘쾙쾚쾛쾜ì¾ì¾žì¾Ÿ +쾠쾡쾢쾣쾤쾥쾦쾧쾨쾩쾪쾫쾬쾭쾮쾯쾰쾱쾲쾳쾴쾵쾶쾷쾸쾹쾺쾻쾼쾽쾾쾿 +ì¿€ì¿ì¿‚쿃쿄쿅쿆쿇쿈쿉쿊쿋쿌ì¿ì¿Žì¿ì¿ì¿‘쿒쿓쿔쿕쿖쿗쿘쿙쿚쿛쿜ì¿ì¿žì¿Ÿ +쿠쿡쿢쿣쿤쿥쿦쿧쿨쿩쿪쿫쿬쿭쿮쿯쿰쿱쿲쿳쿴쿵쿶쿷쿸쿹쿺쿻쿼쿽쿾쿿 +퀀í€í€‚퀃퀄퀅퀆퀇퀈퀉퀊퀋퀌í€í€Ží€í€í€‘퀒퀓퀔퀕퀖퀗퀘퀙퀚퀛퀜í€í€ží€Ÿ +퀠퀡퀢퀣퀤퀥퀦퀧퀨퀩퀪퀫퀬퀭퀮퀯퀰퀱퀲퀳퀴퀵퀶퀷퀸퀹퀺퀻퀼퀽퀾퀿 +í€íí‚íƒí„í…í†í‡íˆí‰íŠí‹íŒííŽííí‘í’í“í”í•í–í—í˜í™íší›íœíížíŸ +í í¡í¢í£í¤í¥í¦í§í¨í©íªí«í¬í­í®í¯í°í±í²í³í´íµí¶í·í¸í¹íºí»í¼í½í¾í¿ +í‚€í‚킂킃킄킅킆킇킈킉킊킋킌í‚í‚Ží‚í‚킑킒킓킔킕킖킗킘킙킚킛킜í‚í‚ží‚Ÿ +킠킡킢킣키킥킦킧킨킩킪킫킬킭킮킯킰킱킲킳킴킵킶킷킸킹킺킻킼킽킾킿 +타íƒíƒ‚탃탄탅탆탇탈탉탊탋탌íƒíƒŽíƒíƒíƒ‘탒탓탔탕탖탗탘탙탚탛태íƒíƒžíƒŸ +탠탡탢탣탤탥탦탧탨탩탪탫탬탭탮탯탰탱탲탳탴탵탶탷탸탹탺탻탼탽탾탿 +í„€í„턂턃턄턅턆턇턈턉턊턋턌í„í„Ží„í„턑턒턓턔턕턖턗턘턙턚턛턜í„í„ží„Ÿ +턠턡턢턣턤턥턦턧턨턩턪턫턬턭턮턯터턱턲턳턴턵턶턷털턹턺턻턼턽턾턿 +í…€í…텂텃텄텅텆텇텈텉텊텋테í…í…Ží…í…텑텒텓텔텕텖텗텘텙텚텛템í…í…ží…Ÿ +텠텡텢텣텤텥텦텧텨텩텪텫텬텭텮텯텰텱텲텳텴텵텶텷텸텹텺텻텼텽텾텿 +톀í†í†‚톃톄톅톆톇톈톉톊톋톌í†í†Ží†í†í†‘톒톓톔톕톖톗톘톙톚톛톜í†í†ží†Ÿ +토톡톢톣톤톥톦톧톨톩톪톫톬톭톮톯톰톱톲톳톴통톶톷톸톹톺톻톼톽톾톿 +퇀í‡í‡‚퇃퇄퇅퇆퇇퇈퇉퇊퇋퇌í‡í‡Ží‡í‡í‡‘퇒퇓퇔퇕퇖퇗퇘퇙퇚퇛퇜í‡í‡ží‡Ÿ +퇠퇡퇢퇣퇤퇥퇦퇧퇨퇩퇪퇫퇬퇭퇮퇯퇰퇱퇲퇳퇴퇵퇶퇷퇸퇹퇺퇻퇼퇽퇾퇿 +툀íˆíˆ‚툃툄툅툆툇툈툉툊툋툌íˆíˆŽíˆíˆíˆ‘툒툓툔툕툖툗툘툙툚툛툜íˆíˆžíˆŸ +툠툡툢툣툤툥툦툧툨툩툪툫투툭툮툯툰툱툲툳툴툵툶툷툸툹툺툻툼툽툾툿 +퉀í‰í‰‚퉃퉄퉅퉆퉇퉈퉉퉊퉋퉌í‰í‰Ží‰í‰í‰‘퉒퉓퉔퉕퉖퉗퉘퉙퉚퉛퉜í‰í‰ží‰Ÿ +퉠퉡퉢퉣퉤퉥퉦퉧퉨퉩퉪퉫퉬퉭퉮퉯퉰퉱퉲퉳퉴퉵퉶퉷퉸퉹퉺퉻퉼퉽퉾퉿 +튀íŠíŠ‚튃튄튅튆튇튈튉튊튋튌íŠíŠŽíŠíŠíŠ‘튒튓튔튕튖튗튘튙튚튛튜íŠíŠžíŠŸ +튠튡튢튣튤튥튦튧튨튩튪튫튬튭튮튯튰튱튲튳튴튵튶튷트특튺튻튼튽튾튿 +í‹€í‹í‹‚틃틄틅틆틇틈틉틊틋틌í‹í‹Ží‹í‹í‹‘틒틓틔틕틖틗틘틙틚틛틜í‹í‹ží‹Ÿ +틠틡틢틣틤틥틦틧틨틩틪틫틬틭틮틯티틱틲틳틴틵틶틷틸틹틺틻틼틽틾틿 +팀íŒíŒ‚팃팄팅팆팇팈팉팊팋파íŒíŒŽíŒíŒíŒ‘팒팓팔팕팖팗팘팙팚팛팜íŒíŒžíŒŸ +팠팡팢팣팤팥팦팧패팩팪팫팬팭팮팯팰팱팲팳팴팵팶팷팸팹팺팻팼팽팾팿 +í€íí‚íƒí„í…í†í‡íˆí‰íŠí‹íŒííŽííí‘í’í“í”í•í–í—í˜í™íší›íœíížíŸ +í í¡í¢í£í¤í¥í¦í§í¨í©íªí«í¬í­í®í¯í°í±í²í³í´íµí¶í·í¸í¹íºí»í¼í½í¾í¿ +펀íŽíŽ‚펃펄펅펆펇펈펉펊펋펌íŽíŽŽíŽíŽíŽ‘펒펓펔펕펖펗페펙펚펛펜íŽíŽžíŽŸ +펠펡펢펣펤펥펦펧펨펩펪펫펬펭펮펯펰펱펲펳펴펵펶펷편펹펺펻펼펽펾펿 +í€íí‚íƒí„í…í†í‡íˆí‰íŠí‹íŒííŽííí‘í’í“í”í•í–í—í˜í™íší›íœíížíŸ +í í¡í¢í£í¤í¥í¦í§í¨í©íªí«í¬í­í®í¯í°í±í²í³í´íµí¶í·í¸í¹íºí»í¼í½í¾í¿ +í€íí‚íƒí„í…í†í‡íˆí‰íŠí‹íŒííŽííí‘í’í“í”í•í–í—í˜í™íší›íœíížíŸ +í í¡í¢í£í¤í¥í¦í§í¨í©íªí«í¬í­í®í¯í°í±í²í³í´íµí¶í·í¸í¹íºí»í¼í½í¾í¿ +í‘€í‘푂푃푄푅푆푇푈푉푊푋푌í‘í‘Ží‘í‘푑푒푓푔푕푖푗푘푙푚푛표í‘í‘ží‘Ÿ +푠푡푢푣푤푥푦푧푨푩푪푫푬푭푮푯푰푱푲푳푴푵푶푷푸푹푺푻푼푽푾푿 +í’€í’풂풃풄풅풆풇품풉풊풋풌í’í’Ží’í’풑풒풓풔풕풖풗풘풙풚풛풜í’í’ží’Ÿ +풠풡풢풣풤풥풦풧풨풩풪풫풬풭풮풯풰풱풲풳풴풵풶풷풸풹풺풻풼풽풾풿 +í“€í“퓂퓃퓄퓅퓆퓇퓈퓉퓊퓋퓌í“í“Ží“í“퓑퓒퓓퓔퓕퓖퓗퓘퓙퓚퓛퓜í“í“ží“Ÿ +퓠퓡퓢퓣퓤퓥퓦퓧퓨퓩퓪퓫퓬퓭퓮퓯퓰퓱퓲퓳퓴퓵퓶퓷퓸퓹퓺퓻퓼퓽퓾퓿 +픀í”픂픃프픅픆픇픈픉픊픋플í”픎í”í”픑픒픓픔픕픖픗픘픙픚픛픜í”픞픟 +픠픡픢픣픤픥픦픧픨픩픪픫픬픭픮픯픰픱픲픳픴픵픶픷픸픹픺픻피픽픾픿 +í•€í•í•‚핃필핅핆핇핈핉핊핋핌í•í•Ží•í•í•‘핒핓핔핕핖핗하학핚핛한í•í•ží•Ÿ +할핡핢핣핤핥핦핧함합핪핫핬항핮핯핰핱핲핳해핵핶핷핸핹핺핻핼핽핾핿 +í–€í–햂햃햄햅햆햇했행햊햋햌í–í–Ží–í–햑햒햓햔햕햖햗햘햙햚햛햜í–í–ží–Ÿ +햠햡햢햣햤향햦햧햨햩햪햫햬햭햮햯햰햱햲햳햴햵햶햷햸햹햺햻햼햽햾햿 +í—€í—헂헃헄헅헆헇허헉헊헋헌í—í—Ží—í—헑헒헓헔헕헖헗험헙헚헛헜í—í—ží—Ÿ +헠헡헢헣헤헥헦헧헨헩헪헫헬헭헮헯헰헱헲헳헴헵헶헷헸헹헺헻헼헽헾헿 +혀í˜í˜‚혃현혅혆혇혈혉혊혋혌í˜í˜Ží˜í˜í˜‘혒혓혔형혖혗혘혙혚혛혜í˜í˜ží˜Ÿ +혠혡혢혣혤혥혦혧혨혩혪혫혬혭혮혯혰혱혲혳혴혵혶혷호혹혺혻혼혽혾혿 +홀í™í™‚홃홄홅홆홇홈홉홊홋홌í™í™Ží™í™í™‘홒홓화확홖홗환홙홚홛활í™í™ží™Ÿ +홠홡홢홣홤홥홦홧홨황홪홫홬홭홮홯홰홱홲홳홴홵홶홷홸홹홺홻홼홽홾홿 +횀íšíš‚횃횄횅횆횇횈횉횊횋회íšíšŽíšíšíš‘횒횓횔횕횖횗횘횙횚횛횜íšíšžíšŸ +횠횡횢횣횤횥횦횧효횩횪횫횬횭횮횯횰횱횲횳횴횵횶횷횸횹횺횻횼횽횾횿 +훀í›í›‚훃후훅훆훇훈훉훊훋훌í›í›Ží›í›í›‘훒훓훔훕훖훗훘훙훚훛훜í›í›ží›Ÿ +훠훡훢훣훤훥훦훧훨훩훪훫훬훭훮훯훰훱훲훳훴훵훶훷훸훹훺훻훼훽훾훿 +휀íœíœ‚휃휄휅휆휇휈휉휊휋휌íœíœŽíœíœíœ‘휒휓휔휕휖휗휘휙휚휛휜íœíœžíœŸ +휠휡휢휣휤휥휦휧휨휩휪휫휬휭휮휯휰휱휲휳휴휵휶휷휸휹휺휻휼휽휾휿 +í€íí‚íƒí„í…í†í‡íˆí‰íŠí‹íŒííŽííí‘í’í“í”í•í–í—í˜í™íší›íœíížíŸ +í í¡í¢í£í¤í¥í¦í§í¨í©íªí«í¬í­í®í¯í°í±í²í³í´íµí¶í·í¸í¹íºí»í¼í½í¾í¿ +힀ížíž‚힃힄힅힆힇히힉힊힋힌ížížŽížížíž‘힒힓힔힕힖힗힘힙힚힛힜ížížžížŸ +힠힡힢힣힤힥힦힧힨힩힪힫힬힭힮힯 + +Free block (U+D7B0-U+D7FF): + +ힰힱힲힳힴힵힶힷힸힹힺힻힼힽힾힿퟀíŸíŸ‚ퟃퟄퟅퟆ퟇퟈퟉퟊ퟋퟌíŸíŸŽíŸíŸíŸ‘ퟒퟓퟔퟕퟖퟗퟘퟙퟚퟛퟜíŸíŸžíŸŸíŸ íŸ¡íŸ¢íŸ£íŸ¤íŸ¥íŸ¦íŸ§íŸ¨íŸ©íŸªíŸ«íŸ¬íŸ­íŸ®íŸ¯ +ퟰퟱퟲퟳퟴퟵퟶퟷퟸퟹퟺퟻ퟼퟽퟾퟿ + +High Surrogates (U+D800-U+DB7F): + +í €í í ‚í ƒí „í …í †í ‡í ˆí ‰í Ší ‹í Œí í Ží í í ‘í ’í “í ”í •í –í —í ˜í ™í ší ›í œí í ží Ÿí  í ¡í ¢í £í ¤í ¥í ¦í §í ¨í ©í ªí «í ¬í ­í ®í ¯í °í ±í ²í ³í ´í µí ¶í ·í ¸í ¹í ºí »í ¼í ½í ¾í ¿ +í¡€í¡í¡‚í¡ƒí¡„í¡…í¡†í¡‡í¡ˆí¡‰í¡Ší¡‹í¡Œí¡í¡Ží¡í¡í¡‘í¡’í¡“í¡”í¡•í¡–í¡—í¡˜í¡™í¡ší¡›í¡œí¡í¡ží¡Ÿí¡ í¡¡í¡¢í¡£í¡¤í¡¥í¡¦í¡§í¡¨í¡©í¡ªí¡«í¡¬í¡­í¡®í¡¯í¡°í¡±í¡²í¡³í¡´í¡µí¡¶í¡·í¡¸í¡¹í¡ºí¡»í¡¼í¡½í¡¾í¡¿ +í¢€í¢í¢‚í¢ƒí¢„í¢…í¢†í¢‡í¢ˆí¢‰í¢Ší¢‹í¢Œí¢í¢Ží¢í¢í¢‘í¢’í¢“í¢”í¢•í¢–í¢—í¢˜í¢™í¢ší¢›í¢œí¢í¢ží¢Ÿí¢ í¢¡í¢¢í¢£í¢¤í¢¥í¢¦í¢§í¢¨í¢©í¢ªí¢«í¢¬í¢­í¢®í¢¯í¢°í¢±í¢²í¢³í¢´í¢µí¢¶í¢·í¢¸í¢¹í¢ºí¢»í¢¼í¢½í¢¾í¢¿ +í£€í£í£‚í£ƒí£„í£…í£†í£‡í£ˆí£‰í£Ší£‹í£Œí£í£Ží£í£í£‘í£’í£“í£”í£•í£–í£—í£˜í£™í£ší£›í£œí£í£ží£Ÿí£ í£¡í£¢í££í£¤í£¥í£¦í£§í£¨í£©í£ªí£«í£¬í£­í£®í£¯í£°í£±í£²í£³í£´í£µí£¶í£·í£¸í£¹í£ºí£»í£¼í£½í£¾í£¿ +í¤€í¤í¤‚í¤ƒí¤„í¤…í¤†í¤‡í¤ˆí¤‰í¤Ší¤‹í¤Œí¤í¤Ží¤í¤í¤‘í¤’í¤“í¤”í¤•í¤–í¤—í¤˜í¤™í¤ší¤›í¤œí¤í¤ží¤Ÿí¤ í¤¡í¤¢í¤£í¤¤í¤¥í¤¦í¤§í¤¨í¤©í¤ªí¤«í¤¬í¤­í¤®í¤¯í¤°í¤±í¤²í¤³í¤´í¤µí¤¶í¤·í¤¸í¤¹í¤ºí¤»í¤¼í¤½í¤¾í¤¿ +í¥€í¥í¥‚í¥ƒí¥„í¥…í¥†í¥‡í¥ˆí¥‰í¥Ší¥‹í¥Œí¥í¥Ží¥í¥í¥‘í¥’í¥“í¥”í¥•í¥–í¥—í¥˜í¥™í¥ší¥›í¥œí¥í¥ží¥Ÿí¥ í¥¡í¥¢í¥£í¥¤í¥¥í¥¦í¥§í¥¨í¥©í¥ªí¥«í¥¬í¥­í¥®í¥¯í¥°í¥±í¥²í¥³í¥´í¥µí¥¶í¥·í¥¸í¥¹í¥ºí¥»í¥¼í¥½í¥¾í¥¿ +í¦€í¦í¦‚í¦ƒí¦„í¦…í¦†í¦‡í¦ˆí¦‰í¦Ší¦‹í¦Œí¦í¦Ží¦í¦í¦‘í¦’í¦“í¦”í¦•í¦–í¦—í¦˜í¦™í¦ší¦›í¦œí¦í¦ží¦Ÿí¦ í¦¡í¦¢í¦£í¦¤í¦¥í¦¦í¦§í¦¨í¦©í¦ªí¦«í¦¬í¦­í¦®í¦¯í¦°í¦±í¦²í¦³í¦´í¦µí¦¶í¦·í¦¸í¦¹í¦ºí¦»í¦¼í¦½í¦¾í¦¿ +í§€í§í§‚í§ƒí§„í§…í§†í§‡í§ˆí§‰í§Ší§‹í§Œí§í§Ží§í§í§‘í§’í§“í§”í§•í§–í§—í§˜í§™í§ší§›í§œí§í§ží§Ÿí§ í§¡í§¢í§£í§¤í§¥í§¦í§§í§¨í§©í§ªí§«í§¬í§­í§®í§¯í§°í§±í§²í§³í§´í§µí§¶í§·í§¸í§¹í§ºí§»í§¼í§½í§¾í§¿ +í¨€í¨í¨‚í¨ƒí¨„í¨…í¨†í¨‡í¨ˆí¨‰í¨Ší¨‹í¨Œí¨í¨Ží¨í¨í¨‘í¨’í¨“í¨”í¨•í¨–í¨—í¨˜í¨™í¨ší¨›í¨œí¨í¨ží¨Ÿí¨ í¨¡í¨¢í¨£í¨¤í¨¥í¨¦í¨§í¨¨í¨©í¨ªí¨«í¨¬í¨­í¨®í¨¯í¨°í¨±í¨²í¨³í¨´í¨µí¨¶í¨·í¨¸í¨¹í¨ºí¨»í¨¼í¨½í¨¾í¨¿ +í©€í©í©‚í©ƒí©„í©…í©†í©‡í©ˆí©‰í©Ší©‹í©Œí©í©Ží©í©í©‘í©’í©“í©”í©•í©–í©—í©˜í©™í©ší©›í©œí©í©ží©Ÿí© í©¡í©¢í©£í©¤í©¥í©¦í©§í©¨í©©í©ªí©«í©¬í©­í©®í©¯í©°í©±í©²í©³í©´í©µí©¶í©·í©¸í©¹í©ºí©»í©¼í©½í©¾í©¿ +íª€íªíª‚íªƒíª„íª…íª†íª‡íªˆíª‰íªŠíª‹íªŒíªíªŽíªíªíª‘íª’íª“íª”íª•íª–íª—íª˜íª™íªšíª›íªœíªíªžíªŸíª íª¡íª¢íª£íª¤íª¥íª¦íª§íª¨íª©íªªíª«íª¬íª­íª®íª¯íª°íª±íª²íª³íª´íªµíª¶íª·íª¸íª¹íªºíª»íª¼íª½íª¾íª¿ +í«€í«í«‚í«ƒí«„í«…í«†í«‡í«ˆí«‰í«Ší«‹í«Œí«í«Ží«í«í«‘í«’í«“í«”í«•í«–í«—í«˜í«™í«ší«›í«œí«í«ží«Ÿí« í«¡í«¢í«£í«¤í«¥í«¦í«§í«¨í«©í«ªí««í«¬í«­í«®í«¯í«°í«±í«²í«³í«´í«µí«¶í«·í«¸í«¹í«ºí«»í«¼í«½í«¾í«¿ +í¬€í¬í¬‚í¬ƒí¬„í¬…í¬†í¬‡í¬ˆí¬‰í¬Ší¬‹í¬Œí¬í¬Ží¬í¬í¬‘í¬’í¬“í¬”í¬•í¬–í¬—í¬˜í¬™í¬ší¬›í¬œí¬í¬ží¬Ÿí¬ í¬¡í¬¢í¬£í¬¤í¬¥í¬¦í¬§í¬¨í¬©í¬ªí¬«í¬¬í¬­í¬®í¬¯í¬°í¬±í¬²í¬³í¬´í¬µí¬¶í¬·í¬¸í¬¹í¬ºí¬»í¬¼í¬½í¬¾í¬¿ +í­€í­í­‚í­ƒí­„í­…í­†í­‡í­ˆí­‰í­Ší­‹í­Œí­í­Ží­í­í­‘í­’í­“í­”í­•í­–í­—í­˜í­™í­ší­›í­œí­í­ží­Ÿí­ í­¡í­¢í­£í­¤í­¥í­¦í­§í­¨í­©í­ªí­«í­¬í­­í­®í­¯í­°í­±í­²í­³í­´í­µí­¶í­·í­¸í­¹í­ºí­»í­¼í­½í­¾í­¿ + +High Private Use Surrogates (U+DB80-U+DBFF): + +í®€í®í®‚í®ƒí®„í®…í®†í®‡í®ˆí®‰í®Ší®‹í®Œí®í®Ží®í®í®‘í®’í®“í®”í®•í®–í®—í®˜í®™í®ší®›í®œí®í®ží®Ÿí® í®¡í®¢í®£í®¤í®¥í®¦í®§í®¨í®©í®ªí®«í®¬í®­í®®í®¯í®°í®±í®²í®³í®´í®µí®¶í®·í®¸í®¹í®ºí®»í®¼í®½í®¾í®¿ +í¯€í¯í¯‚í¯ƒí¯„í¯…í¯†í¯‡í¯ˆí¯‰í¯Ší¯‹í¯Œí¯í¯Ží¯í¯í¯‘í¯’í¯“í¯”í¯•í¯–í¯—í¯˜í¯™í¯ší¯›í¯œí¯í¯ží¯Ÿí¯ í¯¡í¯¢í¯£í¯¤í¯¥í¯¦í¯§í¯¨í¯©í¯ªí¯«í¯¬í¯­í¯®í¯¯í¯°í¯±í¯²í¯³í¯´í¯µí¯¶í¯·í¯¸í¯¹í¯ºí¯»í¯¼í¯½í¯¾í¯¿ + +Low Surrogates (U+DC00-U+DFFF): + +í°€í°í°‚í°ƒí°„í°…í°†í°‡í°ˆí°‰í°Ší°‹í°Œí°í°Ží°í°í°‘í°’í°“í°”í°•í°–í°—í°˜í°™í°ší°›í°œí°í°ží°Ÿí° í°¡í°¢í°£í°¤í°¥í°¦í°§í°¨í°©í°ªí°«í°¬í°­í°®í°¯í°°í°±í°²í°³í°´í°µí°¶í°·í°¸í°¹í°ºí°»í°¼í°½í°¾í°¿ +í±€í±í±‚í±ƒí±„í±…í±†í±‡í±ˆí±‰í±Ší±‹í±Œí±í±Ží±í±í±‘í±’í±“í±”í±•í±–í±—í±˜í±™í±ší±›í±œí±í±ží±Ÿí± í±¡í±¢í±£í±¤í±¥í±¦í±§í±¨í±©í±ªí±«í±¬í±­í±®í±¯í±°í±±í±²í±³í±´í±µí±¶í±·í±¸í±¹í±ºí±»í±¼í±½í±¾í±¿ +í²€í²í²‚í²ƒí²„í²…í²†í²‡í²ˆí²‰í²Ší²‹í²Œí²í²Ží²í²í²‘í²’í²“í²”í²•í²–í²—í²˜í²™í²ší²›í²œí²í²ží²Ÿí² í²¡í²¢í²£í²¤í²¥í²¦í²§í²¨í²©í²ªí²«í²¬í²­í²®í²¯í²°í²±í²²í²³í²´í²µí²¶í²·í²¸í²¹í²ºí²»í²¼í²½í²¾í²¿ +í³€í³í³‚í³ƒí³„í³…í³†í³‡í³ˆí³‰í³Ší³‹í³Œí³í³Ží³í³í³‘í³’í³“í³”í³•í³–í³—í³˜í³™í³ší³›í³œí³í³ží³Ÿí³ í³¡í³¢í³£í³¤í³¥í³¦í³§í³¨í³©í³ªí³«í³¬í³­í³®í³¯í³°í³±í³²í³³í³´í³µí³¶í³·í³¸í³¹í³ºí³»í³¼í³½í³¾í³¿ +í´€í´í´‚í´ƒí´„í´…í´†í´‡í´ˆí´‰í´Ší´‹í´Œí´í´Ží´í´í´‘í´’í´“í´”í´•í´–í´—í´˜í´™í´ší´›í´œí´í´ží´Ÿí´ í´¡í´¢í´£í´¤í´¥í´¦í´§í´¨í´©í´ªí´«í´¬í´­í´®í´¯í´°í´±í´²í´³í´´í´µí´¶í´·í´¸í´¹í´ºí´»í´¼í´½í´¾í´¿ +íµ€íµíµ‚íµƒíµ„íµ…íµ†íµ‡íµˆíµ‰íµŠíµ‹íµŒíµíµŽíµíµíµ‘íµ’íµ“íµ”íµ•íµ–íµ—íµ˜íµ™íµšíµ›íµœíµíµžíµŸíµ íµ¡íµ¢íµ£íµ¤íµ¥íµ¦íµ§íµ¨íµ©íµªíµ«íµ¬íµ­íµ®íµ¯íµ°íµ±íµ²íµ³íµ´íµµíµ¶íµ·íµ¸íµ¹íµºíµ»íµ¼íµ½íµ¾íµ¿ +í¶€í¶í¶‚í¶ƒí¶„í¶…í¶†í¶‡í¶ˆí¶‰í¶Ší¶‹í¶Œí¶í¶Ží¶í¶í¶‘í¶’í¶“í¶”í¶•í¶–í¶—í¶˜í¶™í¶ší¶›í¶œí¶í¶ží¶Ÿí¶ í¶¡í¶¢í¶£í¶¤í¶¥í¶¦í¶§í¶¨í¶©í¶ªí¶«í¶¬í¶­í¶®í¶¯í¶°í¶±í¶²í¶³í¶´í¶µí¶¶í¶·í¶¸í¶¹í¶ºí¶»í¶¼í¶½í¶¾í¶¿ +í·€í·í·‚í·ƒí·„í·…í·†í·‡í·ˆí·‰í·Ší·‹í·Œí·í·Ží·í·í·‘í·’í·“í·”í·•í·–í·—í·˜í·™í·ší·›í·œí·í·ží·Ÿí· í·¡í·¢í·£í·¤í·¥í·¦í·§í·¨í·©í·ªí·«í·¬í·­í·®í·¯í·°í·±í·²í·³í·´í·µí·¶í··í·¸í·¹í·ºí·»í·¼í·½í·¾í·¿ +í¸€í¸í¸‚í¸ƒí¸„í¸…í¸†í¸‡í¸ˆí¸‰í¸Ší¸‹í¸Œí¸í¸Ží¸í¸í¸‘í¸’í¸“í¸”í¸•í¸–í¸—í¸˜í¸™í¸ší¸›í¸œí¸í¸ží¸Ÿí¸ í¸¡í¸¢í¸£í¸¤í¸¥í¸¦í¸§í¸¨í¸©í¸ªí¸«í¸¬í¸­í¸®í¸¯í¸°í¸±í¸²í¸³í¸´í¸µí¸¶í¸·í¸¸í¸¹í¸ºí¸»í¸¼í¸½í¸¾í¸¿ +í¹€í¹í¹‚í¹ƒí¹„í¹…í¹†í¹‡í¹ˆí¹‰í¹Ší¹‹í¹Œí¹í¹Ží¹í¹í¹‘í¹’í¹“í¹”í¹•í¹–í¹—í¹˜í¹™í¹ší¹›í¹œí¹í¹ží¹Ÿí¹ í¹¡í¹¢í¹£í¹¤í¹¥í¹¦í¹§í¹¨í¹©í¹ªí¹«í¹¬í¹­í¹®í¹¯í¹°í¹±í¹²í¹³í¹´í¹µí¹¶í¹·í¹¸í¹¹í¹ºí¹»í¹¼í¹½í¹¾í¹¿ +íº€íºíº‚íºƒíº„íº…íº†íº‡íºˆíº‰íºŠíº‹íºŒíºíºŽíºíºíº‘íº’íº“íº”íº•íº–íº—íº˜íº™íºšíº›íºœíºíºžíºŸíº íº¡íº¢íº£íº¤íº¥íº¦íº§íº¨íº©íºªíº«íº¬íº­íº®íº¯íº°íº±íº²íº³íº´íºµíº¶íº·íº¸íº¹íººíº»íº¼íº½íº¾íº¿ +í»€í»í»‚í»ƒí»„í»…í»†í»‡í»ˆí»‰í»Ší»‹í»Œí»í»Ží»í»í»‘í»’í»“í»”í»•í»–í»—í»˜í»™í»ší»›í»œí»í»ží»Ÿí» í»¡í»¢í»£í»¤í»¥í»¦í»§í»¨í»©í»ªí»«í»¬í»­í»®í»¯í»°í»±í»²í»³í»´í»µí»¶í»·í»¸í»¹í»ºí»»í»¼í»½í»¾í»¿ +í¼€í¼í¼‚í¼ƒí¼„í¼…í¼†í¼‡í¼ˆí¼‰í¼Ší¼‹í¼Œí¼í¼Ží¼í¼í¼‘í¼’í¼“í¼”í¼•í¼–í¼—í¼˜í¼™í¼ší¼›í¼œí¼í¼ží¼Ÿí¼ í¼¡í¼¢í¼£í¼¤í¼¥í¼¦í¼§í¼¨í¼©í¼ªí¼«í¼¬í¼­í¼®í¼¯í¼°í¼±í¼²í¼³í¼´í¼µí¼¶í¼·í¼¸í¼¹í¼ºí¼»í¼¼í¼½í¼¾í¼¿ +í½€í½í½‚í½ƒí½„í½…í½†í½‡í½ˆí½‰í½Ší½‹í½Œí½í½Ží½í½í½‘í½’í½“í½”í½•í½–í½—í½˜í½™í½ší½›í½œí½í½ží½Ÿí½ í½¡í½¢í½£í½¤í½¥í½¦í½§í½¨í½©í½ªí½«í½¬í½­í½®í½¯í½°í½±í½²í½³í½´í½µí½¶í½·í½¸í½¹í½ºí½»í½¼í½½í½¾í½¿ +í¾€í¾í¾‚í¾ƒí¾„í¾…í¾†í¾‡í¾ˆí¾‰í¾Ší¾‹í¾Œí¾í¾Ží¾í¾í¾‘í¾’í¾“í¾”í¾•í¾–í¾—í¾˜í¾™í¾ší¾›í¾œí¾í¾ží¾Ÿí¾ í¾¡í¾¢í¾£í¾¤í¾¥í¾¦í¾§í¾¨í¾©í¾ªí¾«í¾¬í¾­í¾®í¾¯í¾°í¾±í¾²í¾³í¾´í¾µí¾¶í¾·í¾¸í¾¹í¾ºí¾»í¾¼í¾½í¾¾í¾¿ +í¿€í¿í¿‚í¿ƒí¿„í¿…í¿†í¿‡í¿ˆí¿‰í¿Ší¿‹í¿Œí¿í¿Ží¿í¿í¿‘í¿’í¿“í¿”í¿•í¿–í¿—í¿˜í¿™í¿ší¿›í¿œí¿í¿ží¿Ÿí¿ í¿¡í¿¢í¿£í¿¤í¿¥í¿¦í¿§í¿¨í¿©í¿ªí¿«í¿¬í¿­í¿®í¿¯í¿°í¿±í¿²í¿³í¿´í¿µí¿¶í¿·í¿¸í¿¹í¿ºí¿»í¿¼í¿½í¿¾í¿¿ + +Private Use Area (U+E000-U+F8FF): + +î€î€‚î€î€Žî€î€î€‘î€î€žî€Ÿî€ î€¡î€¢î€£î€¤î€¥î€¦î€§î€¨î€©î€ªî€«î€¬î€­î€®î€¯î€°î€±î€²î€³î€´î€µî€¶î€·î€¸î€¹î€ºî€»î€¼î€½î€¾î€¿ +î€îî‚îƒî„î…î†î‡îˆî‰îŠî‹îŒîîŽîîî‘î’î“î”î•î–î—î˜î™îšî›îœîîžîŸî î¡î¢î£î¤î¥î¦î§î¨î©îªî«î¬î­î®î¯î°î±î²î³î´îµî¶î·î¸î¹îºî»î¼î½î¾î¿ +î‚€î‚î‚î‚Žî‚î‚î‚ +îƒîƒ‚îƒîƒŽîƒîƒîƒ‘îƒîƒžîƒŸîƒ îƒ¡îƒ¢îƒ£îƒ¤îƒ¥îƒ¦îƒ§îƒ¨îƒ©îƒªîƒ«îƒ¬îƒ­îƒ®îƒ¯îƒ°îƒ±îƒ²îƒ³îƒ´îƒµîƒ¶îƒ·îƒ¸îƒ¹îƒºîƒ»îƒ¼îƒ½îƒ¾îƒ¿ +î„€î„î„î„Žî„î„î„ +î…€î…î…î…Žî…î…î… +î†î†‚î†î†Žî†î†î†‘î†î†žî†Ÿî† î†¡î†¢î†£î†¤î†¥î†¦î†§î†¨î†©î†ªî†«î†¬î†­î†®î†¯î†°î†±î†²î†³î†´î†µî†¶î†·î†¸î†¹î†ºî†»î†¼î†½î†¾î†¿ +î‡î‡‚î‡î‡Žî‡î‡î‡‘î‡î‡žî‡Ÿî‡ î‡¡î‡¢î‡£î‡¤î‡¥î‡¦î‡§î‡¨î‡©î‡ªî‡«î‡¬î‡­î‡®î‡¯î‡°î‡±î‡²î‡³î‡´î‡µî‡¶î‡·î‡¸î‡¹î‡ºî‡»î‡¼î‡½î‡¾î‡¿ +îˆîˆ‚îˆîˆŽîˆîˆîˆ‘îˆîˆžîˆŸîˆ îˆ¡îˆ¢îˆ£îˆ¤îˆ¥îˆ¦îˆ§îˆ¨îˆ©îˆªîˆ«îˆ¬îˆ­îˆ®îˆ¯îˆ°îˆ±îˆ²îˆ³îˆ´îˆµîˆ¶îˆ·îˆ¸îˆ¹îˆºîˆ»îˆ¼îˆ½îˆ¾îˆ¿ +î‰î‰‚î‰î‰Žî‰î‰î‰‘î‰î‰žî‰Ÿî‰ î‰¡î‰¢î‰£î‰¤î‰¥î‰¦î‰§î‰¨î‰©î‰ªî‰«î‰¬î‰­î‰®î‰¯î‰°î‰±î‰²î‰³î‰´î‰µî‰¶î‰·î‰¸î‰¹î‰ºî‰»î‰¼î‰½î‰¾î‰¿ +îŠîŠ‚îŠîŠŽîŠîŠîŠ‘îŠîŠžîŠŸîŠ îŠ¡îŠ¢îŠ£îŠ¤îŠ¥îŠ¦îŠ§îŠ¨îŠ©îŠªîŠ«îŠ¬îŠ­îŠ®îŠ¯îŠ°îŠ±îŠ²îŠ³îŠ´îŠµîŠ¶îŠ·îŠ¸îŠ¹îŠºîŠ»îŠ¼îŠ½îŠ¾îŠ¿ +î‹€î‹î‹‚î‹î‹Žî‹î‹î‹‘î‹î‹žî‹Ÿî‹ î‹¡î‹¢î‹£î‹¤î‹¥î‹¦î‹§î‹¨î‹©î‹ªî‹«î‹¬î‹­î‹®î‹¯î‹°î‹±î‹²î‹³î‹´î‹µî‹¶î‹·î‹¸î‹¹î‹ºî‹»î‹¼î‹½î‹¾î‹¿ +îŒîŒ‚îŒîŒŽîŒîŒîŒ‘îŒîŒžîŒŸîŒ îŒ¡îŒ¢îŒ£îŒ¤îŒ¥îŒ¦îŒ§îŒ¨îŒ©îŒªîŒ«îŒ¬îŒ­îŒ®îŒ¯îŒ°îŒ±îŒ²îŒ³îŒ´îŒµîŒ¶îŒ·îŒ¸îŒ¹îŒºîŒ»îŒ¼îŒ½îŒ¾îŒ¿ +î€îî‚îƒî„î…î†î‡îˆî‰îŠî‹îŒîîŽîîî‘î’î“î”î•î–î—î˜î™îšî›îœîîžîŸî î¡î¢î£î¤î¥î¦î§î¨î©îªî«î¬î­î®î¯î°î±î²î³î´îµî¶î·î¸î¹îºî»î¼î½î¾î¿ +îŽîŽ‚îŽîŽŽîŽîŽîŽ‘îŽîŽžîŽŸîŽ îŽ¡îŽ¢îŽ£îŽ¤îŽ¥îŽ¦îŽ§îŽ¨îŽ©îŽªîŽ«îŽ¬îŽ­îŽ®îŽ¯îŽ°îŽ±îŽ²îŽ³îŽ´îŽµîŽ¶îŽ·îŽ¸îŽ¹îŽºîŽ»îŽ¼îŽ½îŽ¾îŽ¿ +î€îî‚îƒî„î…î†î‡îˆî‰îŠî‹îŒîîŽîîî‘î’î“î”î•î–î—î˜î™îšî›îœîîžîŸî î¡î¢î£î¤î¥î¦î§î¨î©îªî«î¬î­î®î¯î°î±î²î³î´îµî¶î·î¸î¹îºî»î¼î½î¾î¿ +î€îî‚îƒî„î…î†î‡îˆî‰îŠî‹îŒîîŽîîî‘î’î“î”î•î–î—î˜î™îšî›îœîîžîŸî î¡î¢î£î¤î¥î¦î§î¨î©îªî«î¬î­î®î¯î°î±î²î³î´îµî¶î·î¸î¹îºî»î¼î½î¾î¿ +î‘€î‘î‘î‘Žî‘î‘î‘ +î’€î’î’î’Žî’î’î’ +î“€î“î“î“Žî“î“î“ +î”î”î”î”î” +î•€î•î•‚î•î•Žî•î•î•‘î•î•žî•Ÿî• î•¡î•¢î•£î•¤î•¥î•¦î•§î•¨î•©î•ªî•«î•¬î•­î•®î•¯î•°î•±î•²î•³î•´î•µî•¶î•·î•¸î•¹î•ºî•»î•¼î•½î•¾î•¿ +î–€î–î–î–Žî–î–î– +î—€î—î—î—Žî—î—î— +î˜î˜‚î˜î˜Žî˜î˜î˜‘î˜î˜žî˜Ÿî˜ î˜¡î˜¢î˜£î˜¤î˜¥î˜¦î˜§î˜¨î˜©î˜ªî˜«î˜¬î˜­î˜®î˜¯î˜°î˜±î˜²î˜³î˜´î˜µî˜¶î˜·î˜¸î˜¹î˜ºî˜»î˜¼î˜½î˜¾î˜¿ +î™î™‚î™î™Žî™î™î™‘î™î™žî™Ÿî™ î™¡î™¢î™£î™¤î™¥î™¦î™§î™¨î™©î™ªî™«î™¬î™­î™®î™¯î™°î™±î™²î™³î™´î™µî™¶î™·î™¸î™¹î™ºî™»î™¼î™½î™¾î™¿ +îšîš‚îšîšŽîšîšîš‘îšîšžîšŸîš îš¡îš¢îš£îš¤îš¥îš¦îš§îš¨îš©îšªîš«îš¬îš­îš®îš¯îš°îš±îš²îš³îš´îšµîš¶îš·îš¸îš¹îšºîš»îš¼îš½îš¾îš¿ +î›î›‚î›î›Žî›î›î›‘î›î›žî›Ÿî› î›¡î›¢î›£î›¤î›¥î›¦î›§î›¨î›©î›ªî›«î›¬î›­î›®î›¯î›°î›±î›²î›³î›´î›µî›¶î›·î›¸î›¹î›ºî›»î›¼î›½î›¾î›¿ +îœîœ‚îœîœŽîœîœîœ‘îœîœžîœŸîœ îœ¡îœ¢îœ£îœ¤îœ¥îœ¦îœ§îœ¨îœ©îœªîœ«îœ¬îœ­îœ®îœ¯îœ°îœ±îœ²îœ³îœ´îœµîœ¶îœ·îœ¸îœ¹îœºîœ»îœ¼îœ½îœ¾îœ¿ +î€îî‚îƒî„î…î†î‡îˆî‰îŠî‹îŒîîŽîîî‘î’î“î”î•î–î—î˜î™îšî›îœîîžîŸî î¡î¢î£î¤î¥î¦î§î¨î©îªî«î¬î­î®î¯î°î±î²î³î´îµî¶î·î¸î¹îºî»î¼î½î¾î¿ +îžîž‚îžîžŽîžîžîž‘îžîžžîžŸîž îž¡îž¢îž£îž¤îž¥îž¦îž§îž¨îž©îžªîž«îž¬îž­îž®îž¯îž°îž±îž²îž³îž´îžµîž¶îž·îž¸îž¹îžºîž»îž¼îž½îž¾îž¿ +îŸîŸ‚îŸîŸŽîŸîŸîŸ‘îŸîŸžîŸŸîŸ îŸ¡îŸ¢îŸ£îŸ¤îŸ¥îŸ¦îŸ§îŸ¨îŸ©îŸªîŸ«îŸ¬îŸ­îŸ®îŸ¯îŸ°îŸ±îŸ²îŸ³îŸ´îŸµîŸ¶îŸ·îŸ¸îŸ¹îŸºîŸ»îŸ¼îŸ½îŸ¾îŸ¿ +î €î î ‚î î Žî î î ‘î î žî Ÿî  î ¡î ¢î £î ¤î ¥î ¦î §î ¨î ©î ªî «î ¬î ­î ®î ¯î °î ±î ²î ³î ´î µî ¶î ·î ¸î ¹î ºî »î ¼î ½î ¾î ¿ +î¡€î¡î¡‚î¡î¡Žî¡î¡î¡‘î¡î¡žî¡Ÿî¡ î¡¡î¡¢î¡£î¡¤î¡¥î¡¦î¡§î¡¨î¡©î¡ªî¡«î¡¬î¡­î¡®î¡¯î¡°î¡±î¡²î¡³î¡´î¡µî¡¶î¡·î¡¸î¡¹î¡ºî¡»î¡¼î¡½î¡¾î¡¿ +î¢î¢‚î¢î¢Žî¢î¢î¢‘î¢î¢žî¢Ÿî¢ î¢¡î¢¢î¢£î¢¤î¢¥î¢¦î¢§î¢¨î¢©î¢ªî¢«î¢¬î¢­î¢®î¢¯î¢°î¢±î¢²î¢³î¢´î¢µî¢¶î¢·î¢¸î¢¹î¢ºî¢»î¢¼î¢½î¢¾î¢¿ +î£î£‚î£î£Žî£î£î£‘î£î£žî£Ÿî£ î£¡î£¢î££î£¤î£¥î£¦î£§î£¨î£©î£ªî£«î£¬î£­î£®î£¯î£°î£±î£²î£³î£´î£µî£¶î£·î£¸î£¹î£ºî£»î£¼î£½î£¾î£¿ +î¤î¤‚î¤î¤Žî¤î¤î¤‘î¤î¤žî¤Ÿî¤ î¤¡î¤¢î¤£î¤¤î¤¥î¤¦î¤§î¤¨î¤©î¤ªî¤«î¤¬î¤­î¤®î¤¯î¤°î¤±î¤²î¤³î¤´î¤µî¤¶î¤·î¤¸î¤¹î¤ºî¤»î¤¼î¤½î¤¾î¤¿ +î¥î¥‚î¥î¥Žî¥î¥î¥‘î¥î¥žî¥Ÿî¥ î¥¡î¥¢î¥£î¥¤î¥¥î¥¦î¥§î¥¨î¥©î¥ªî¥«î¥¬î¥­î¥®î¥¯î¥°î¥±î¥²î¥³î¥´î¥µî¥¶î¥·î¥¸î¥¹î¥ºî¥»î¥¼î¥½î¥¾î¥¿ +î¦î¦‚î¦î¦Žî¦î¦î¦‘î¦î¦žî¦Ÿî¦ î¦¡î¦¢î¦£î¦¤î¦¥î¦¦î¦§î¦¨î¦©î¦ªî¦«î¦¬î¦­î¦®î¦¯î¦°î¦±î¦²î¦³î¦´î¦µî¦¶î¦·î¦¸î¦¹î¦ºî¦»î¦¼î¦½î¦¾î¦¿ +î§î§‚î§î§Žî§î§î§‘î§î§žî§Ÿî§ î§¡î§¢î§£î§¤î§¥î§¦î§§î§¨î§©î§ªî§«î§¬î§­î§®î§¯î§°î§±î§²î§³î§´î§µî§¶î§·î§¸î§¹î§ºî§»î§¼î§½î§¾î§¿ +î¨î¨‚î¨î¨Žî¨î¨î¨‘î¨î¨žî¨Ÿî¨ î¨¡î¨¢î¨£î¨¤î¨¥î¨¦î¨§î¨¨î¨©î¨ªî¨«î¨¬î¨­î¨®î¨¯î¨°î¨±î¨²î¨³î¨´î¨µî¨¶î¨·î¨¸î¨¹î¨ºî¨»î¨¼î¨½î¨¾î¨¿ +î©€î©î©‚î©î©Žî©î©î©‘î©î©žî©Ÿî© î©¡î©¢î©£î©¤î©¥î©¦î©§î©¨î©©î©ªî©«î©¬î©­î©®î©¯î©°î©±î©²î©³î©´î©µî©¶î©·î©¸î©¹î©ºî©»î©¼î©½î©¾î©¿ +îªîª‚îªîªŽîªîªîª‘îªîªžîªŸîª îª¡îª¢îª£îª¤îª¥îª¦îª§îª¨îª©îªªîª«îª¬îª­îª®îª¯îª°îª±îª²îª³îª´îªµîª¶îª·îª¸îª¹îªºîª»îª¼îª½îª¾îª¿ +î«€î«î«‚î«î«Žî«î«î«‘î«î«žî«Ÿî« î«¡î«¢î«£î«¤î«¥î«¦î«§î«¨î«©î«ªî««î«¬î«­î«®î«¯î«°î«±î«²î«³î«´î«µî«¶î«·î«¸î«¹î«ºî«»î«¼î«½î«¾î«¿ +î¬î¬‚î¬î¬Žî¬î¬î¬‘î¬î¬žî¬Ÿî¬ î¬¡î¬¢î¬£î¬¤î¬¥î¬¦î¬§î¬¨î¬©î¬ªî¬«î¬¬î¬­î¬®î¬¯î¬°î¬±î¬²î¬³î¬´î¬µî¬¶î¬·î¬¸î¬¹î¬ºî¬»î¬¼î¬½î¬¾î¬¿ +î­€î­î­‚î­î­Žî­î­î­‘î­î­žî­Ÿî­ î­¡î­¢î­£î­¤î­¥î­¦î­§î­¨î­©î­ªî­«î­¬î­­î­®î­¯î­°î­±î­²î­³î­´î­µî­¶î­·î­¸î­¹î­ºî­»î­¼î­½î­¾î­¿ +î®î®‚î®î®Žî®î®î®‘î®î®žî®Ÿî® î®¡î®¢î®£î®¤î®¥î®¦î®§î®¨î®©î®ªî®«î®¬î®­î®®î®¯î®°î®±î®²î®³î®´î®µî®¶î®·î®¸î®¹î®ºî®»î®¼î®½î®¾î®¿ +î¯î¯‚î¯î¯Žî¯î¯î¯‘î¯î¯žî¯Ÿî¯ î¯¡î¯¢î¯£î¯¤î¯¥î¯¦î¯§î¯¨î¯©î¯ªî¯«î¯¬î¯­î¯®î¯¯î¯°î¯±î¯²î¯³î¯´î¯µî¯¶î¯·î¯¸î¯¹î¯ºî¯»î¯¼î¯½î¯¾î¯¿ +î°€î°î°‚î°î°Žî°î°î°‘î°î°žî°Ÿî° î°¡î°¢î°£î°¤î°¥î°¦î°§î°¨î°©î°ªî°«î°¬î°­î°®î°¯î°°î°±î°²î°³î°´î°µî°¶î°·î°¸î°¹î°ºî°»î°¼î°½î°¾î°¿ +î±€î±î±‚î±î±Žî±î±î±‘î±î±žî±Ÿî± î±¡î±¢î±£î±¤î±¥î±¦î±§î±¨î±©î±ªî±«î±¬î±­î±®î±¯î±°î±±î±²î±³î±´î±µî±¶î±·î±¸î±¹î±ºî±»î±¼î±½î±¾î±¿ +î²€î²î²‚î²î²Žî²î²î²‘î²î²žî²Ÿî² î²¡î²¢î²£î²¤î²¥î²¦î²§î²¨î²©î²ªî²«î²¬î²­î²®î²¯î²°î²±î²²î²³î²´î²µî²¶î²·î²¸î²¹î²ºî²»î²¼î²½î²¾î²¿ +î³€î³î³‚î³î³Žî³î³î³‘î³î³žî³Ÿî³ î³¡î³¢î³£î³¤î³¥î³¦î³§î³¨î³©î³ªî³«î³¬î³­î³®î³¯î³°î³±î³²î³³î³´î³µî³¶î³·î³¸î³¹î³ºî³»î³¼î³½î³¾î³¿ +î´€î´î´‚î´î´Žî´î´î´‘î´î´žî´Ÿî´ î´¡î´¢î´£î´¤î´¥î´¦î´§î´¨î´©î´ªî´«î´¬î´­î´®î´¯î´°î´±î´²î´³î´´î´µî´¶î´·î´¸î´¹î´ºî´»î´¼î´½î´¾î´¿ +îµ€îµîµ‚îµîµŽîµîµîµ‘îµîµžîµŸîµ îµ¡îµ¢îµ£îµ¤îµ¥îµ¦îµ§îµ¨îµ©îµªîµ«îµ¬îµ­îµ®îµ¯îµ°îµ±îµ²îµ³îµ´îµµîµ¶îµ·îµ¸îµ¹îµºîµ»îµ¼îµ½îµ¾îµ¿ +î¶î¶‚î¶î¶Žî¶î¶î¶‘î¶î¶žî¶Ÿî¶ î¶¡î¶¢î¶£î¶¤î¶¥î¶¦î¶§î¶¨î¶©î¶ªî¶«î¶¬î¶­î¶®î¶¯î¶°î¶±î¶²î¶³î¶´î¶µî¶¶î¶·î¶¸î¶¹î¶ºî¶»î¶¼î¶½î¶¾î¶¿ +î·€î·î·‚î·î·Žî·î·î·‘î·î·žî·Ÿî· î·¡î·¢î·£î·¤î·¥î·¦î·§î·¨î·©î·ªî·«î·¬î·­î·®î·¯î·°î·±î·²î·³î·´î·µî·¶î··î·¸î·¹î·ºî·»î·¼î·½î·¾î·¿ +î¸î¸‚î¸î¸Žî¸î¸î¸‘î¸î¸žî¸Ÿî¸ î¸¡î¸¢î¸£î¸¤î¸¥î¸¦î¸§î¸¨î¸©î¸ªî¸«î¸¬î¸­î¸®î¸¯î¸°î¸±î¸²î¸³î¸´î¸µî¸¶î¸·î¸¸î¸¹î¸ºî¸»î¸¼î¸½î¸¾î¸¿ +î¹€î¹î¹‚î¹î¹Žî¹î¹î¹‘î¹î¹žî¹Ÿî¹ î¹¡î¹¢î¹£î¹¤î¹¥î¹¦î¹§î¹¨î¹©î¹ªî¹«î¹¬î¹­î¹®î¹¯î¹°î¹±î¹²î¹³î¹´î¹µî¹¶î¹·î¹¸î¹¹î¹ºî¹»î¹¼î¹½î¹¾î¹¿ +îºîº‚îºîºŽîºîºîº‘îºîºžîºŸîº îº¡îº¢îº£îº¤îº¥îº¦îº§îº¨îº©îºªîº«îº¬îº­îº®îº¯îº°îº±îº²îº³îº´îºµîº¶îº·îº¸îº¹îººîº»îº¼îº½îº¾îº¿ +î»î»‚î»î»Žî»î»î»‘î»î»žî»Ÿî» î»¡î»¢î»£î»¤î»¥î»¦î»§î»¨î»©î»ªî»«î»¬î»­î»®î»¯î»°î»±î»²î»³î»´î»µî»¶î»·î»¸î»¹î»ºî»»î»¼î»½î»¾î»¿ +î¼€î¼î¼‚î¼î¼Žî¼î¼î¼‘î¼î¼žî¼Ÿî¼ î¼¡î¼¢î¼£î¼¤î¼¥î¼¦î¼§î¼¨î¼©î¼ªî¼«î¼¬î¼­î¼®î¼¯î¼°î¼±î¼²î¼³î¼´î¼µî¼¶î¼·î¼¸î¼¹î¼ºî¼»î¼¼î¼½î¼¾î¼¿ +î½€î½î½‚î½î½Žî½î½î½‘î½î½žî½Ÿî½ î½¡î½¢î½£î½¤î½¥î½¦î½§î½¨î½©î½ªî½«î½¬î½­î½®î½¯î½°î½±î½²î½³î½´î½µî½¶î½·î½¸î½¹î½ºî½»î½¼î½½î½¾î½¿ +î¾€î¾î¾‚î¾î¾Žî¾î¾î¾‘î¾î¾žî¾Ÿî¾ î¾¡î¾¢î¾£î¾¤î¾¥î¾¦î¾§î¾¨î¾©î¾ªî¾«î¾¬î¾­î¾®î¾¯î¾°î¾±î¾²î¾³î¾´î¾µî¾¶î¾·î¾¸î¾¹î¾ºî¾»î¾¼î¾½î¾¾î¾¿ +î¿€î¿î¿‚î¿î¿Žî¿î¿î¿‘î¿î¿žî¿Ÿî¿ î¿¡î¿¢î¿£î¿¤î¿¥î¿¦î¿§î¿¨î¿©î¿ªî¿«î¿¬î¿­î¿®î¿¯î¿°î¿±î¿²î¿³î¿´î¿µî¿¶î¿·î¿¸î¿¹î¿ºî¿»î¿¼î¿½î¿¾î¿¿ +ï€ï€‚ï€ï€Žï€ï€ï€‘ï€ï€žï€Ÿï€ ï€¡ï€¢ï€£ï€¤ï€¥ï€¦ï€§ï€¨ï€©ï€ªï€«ï€¬ï€­ï€®ï€¯ï€°ï€±ï€²ï€³ï€´ï€µï€¶ï€·ï€¸ï€¹ï€ºï€»ï€¼ï€½ï€¾ï€¿ +ï€ïï‚ïƒï„ï…ï†ï‡ïˆï‰ïŠï‹ïŒïïŽïïï‘ï’ï“ï”ï•ï–ï—ï˜ï™ïšï›ïœïïžïŸï ï¡ï¢ï£ï¤ï¥ï¦ï§ï¨ï©ïªï«ï¬ï­ï®ï¯ï°ï±ï²ï³ï´ïµï¶ï·ï¸ï¹ïºï»ï¼ï½ï¾ï¿ +ï‚€ï‚ï‚ï‚Žï‚ï‚ï‚ +ïƒïƒ‚ïƒïƒŽïƒïƒïƒ‘ïƒïƒžïƒŸïƒ ïƒ¡ïƒ¢ïƒ£ïƒ¤ïƒ¥ïƒ¦ïƒ§ïƒ¨ïƒ©ïƒªïƒ«ïƒ¬ïƒ­ïƒ®ïƒ¯ïƒ°ïƒ±ïƒ²ïƒ³ïƒ´ïƒµïƒ¶ïƒ·ïƒ¸ïƒ¹ïƒºïƒ»ïƒ¼ïƒ½ïƒ¾ïƒ¿ +ï„€ï„ï„ï„Žï„ï„ï„ +ï…€ï…ï…ï…Žï…ï…ï… +ï†ï†‚ï†ï†Žï†ï†ï†‘ï†ï†žï†Ÿï† ï†¡ï†¢ï†£ï†¤ï†¥ï†¦ï†§ï†¨ï†©ï†ªï†«ï†¬ï†­ï†®ï†¯ï†°ï†±ï†²ï†³ï†´ï†µï†¶ï†·ï†¸ï†¹ï†ºï†»ï†¼ï†½ï†¾ï†¿ +ï‡ï‡‚ï‡ï‡Žï‡ï‡ï‡‘ï‡ï‡žï‡Ÿï‡ ï‡¡ï‡¢ï‡£ï‡¤ï‡¥ï‡¦ï‡§ï‡¨ï‡©ï‡ªï‡«ï‡¬ï‡­ï‡®ï‡¯ï‡°ï‡±ï‡²ï‡³ï‡´ï‡µï‡¶ï‡·ï‡¸ï‡¹ï‡ºï‡»ï‡¼ï‡½ï‡¾ï‡¿ +ïˆïˆ‚ïˆïˆŽïˆïˆïˆ‘ïˆïˆžïˆŸïˆ ïˆ¡ïˆ¢ïˆ£ïˆ¤ïˆ¥ïˆ¦ïˆ§ïˆ¨ïˆ©ïˆªïˆ«ïˆ¬ïˆ­ïˆ®ïˆ¯ïˆ°ïˆ±ïˆ²ïˆ³ïˆ´ïˆµïˆ¶ïˆ·ïˆ¸ïˆ¹ïˆºïˆ»ïˆ¼ïˆ½ïˆ¾ïˆ¿ +ï‰ï‰‚ï‰ï‰Žï‰ï‰ï‰‘ï‰ï‰žï‰Ÿï‰ ï‰¡ï‰¢ï‰£ï‰¤ï‰¥ï‰¦ï‰§ï‰¨ï‰©ï‰ªï‰«ï‰¬ï‰­ï‰®ï‰¯ï‰°ï‰±ï‰²ï‰³ï‰´ï‰µï‰¶ï‰·ï‰¸ï‰¹ï‰ºï‰»ï‰¼ï‰½ï‰¾ï‰¿ +ïŠïŠ‚ïŠïŠŽïŠïŠïŠ‘ïŠïŠžïŠŸïŠ ïŠ¡ïŠ¢ïŠ£ïŠ¤ïŠ¥ïŠ¦ïŠ§ïŠ¨ïŠ©ïŠªïŠ«ïŠ¬ïŠ­ïŠ®ïŠ¯ïŠ°ïŠ±ïŠ²ïŠ³ïŠ´ïŠµïŠ¶ïŠ·ïŠ¸ïŠ¹ïŠºïŠ»ïŠ¼ïŠ½ïŠ¾ïŠ¿ +ï‹€ï‹ï‹‚ï‹ï‹Žï‹ï‹ï‹‘ï‹ï‹žï‹Ÿï‹ ï‹¡ï‹¢ï‹£ï‹¤ï‹¥ï‹¦ï‹§ï‹¨ï‹©ï‹ªï‹«ï‹¬ï‹­ï‹®ï‹¯ï‹°ï‹±ï‹²ï‹³ï‹´ï‹µï‹¶ï‹·ï‹¸ï‹¹ï‹ºï‹»ï‹¼ï‹½ï‹¾ï‹¿ +ïŒïŒ‚ïŒïŒŽïŒïŒïŒ‘ïŒïŒžïŒŸïŒ ïŒ¡ïŒ¢ïŒ£ïŒ¤ïŒ¥ïŒ¦ïŒ§ïŒ¨ïŒ©ïŒªïŒ«ïŒ¬ïŒ­ïŒ®ïŒ¯ïŒ°ïŒ±ïŒ²ïŒ³ïŒ´ïŒµïŒ¶ïŒ·ïŒ¸ïŒ¹ïŒºïŒ»ïŒ¼ïŒ½ïŒ¾ïŒ¿ +ï€ïï‚ïƒï„ï…ï†ï‡ïˆï‰ïŠï‹ïŒïïŽïïï‘ï’ï“ï”ï•ï–ï—ï˜ï™ïšï›ïœïïžïŸï ï¡ï¢ï£ï¤ï¥ï¦ï§ï¨ï©ïªï«ï¬ï­ï®ï¯ï°ï±ï²ï³ï´ïµï¶ï·ï¸ï¹ïºï»ï¼ï½ï¾ï¿ +ïŽïŽ‚ïŽïŽŽïŽïŽïŽ‘ïŽïŽžïŽŸïŽ ïŽ¡ïŽ¢ïŽ£ïŽ¤ïŽ¥ïŽ¦ïŽ§ïŽ¨ïŽ©ïŽªïŽ«ïŽ¬ïŽ­ïŽ®ïŽ¯ïŽ°ïŽ±ïŽ²ïŽ³ïŽ´ïŽµïŽ¶ïŽ·ïŽ¸ïŽ¹ïŽºïŽ»ïŽ¼ïŽ½ïŽ¾ïŽ¿ +ï€ïï‚ïƒï„ï…ï†ï‡ïˆï‰ïŠï‹ïŒïïŽïïï‘ï’ï“ï”ï•ï–ï—ï˜ï™ïšï›ïœïïžïŸï ï¡ï¢ï£ï¤ï¥ï¦ï§ï¨ï©ïªï«ï¬ï­ï®ï¯ï°ï±ï²ï³ï´ïµï¶ï·ï¸ï¹ïºï»ï¼ï½ï¾ï¿ +ï€ïï‚ïƒï„ï…ï†ï‡ïˆï‰ïŠï‹ïŒïïŽïïï‘ï’ï“ï”ï•ï–ï—ï˜ï™ïšï›ïœïïžïŸï ï¡ï¢ï£ï¤ï¥ï¦ï§ï¨ï©ïªï«ï¬ï­ï®ï¯ï°ï±ï²ï³ï´ïµï¶ï·ï¸ï¹ïºï»ï¼ï½ï¾ï¿ +ï‘€ï‘ï‘ï‘Žï‘ï‘ï‘ +ï’€ï’ï’ï’Žï’ï’ï’ +ï“€ï“ï“ï“Žï“ï“ï“ +ï”ï”ï”ï”ï” +ï•€ï•ï•‚ï•ï•Žï•ï•ï•‘ï•ï•žï•Ÿï• ï•¡ï•¢ï•£ï•¤ï•¥ï•¦ï•§ï•¨ï•©ï•ªï•«ï•¬ï•­ï•®ï•¯ï•°ï•±ï•²ï•³ï•´ï•µï•¶ï•·ï•¸ï•¹ï•ºï•»ï•¼ï•½ï•¾ï•¿ +ï–€ï–ï–ï–Žï–ï–ï– +ï—€ï—ï—ï—Žï—ï—ï— +ï˜ï˜‚ï˜ï˜Žï˜ï˜ï˜‘ï˜ï˜žï˜Ÿï˜ ï˜¡ï˜¢ï˜£ï˜¤ï˜¥ï˜¦ï˜§ï˜¨ï˜©ï˜ªï˜«ï˜¬ï˜­ï˜®ï˜¯ï˜°ï˜±ï˜²ï˜³ï˜´ï˜µï˜¶ï˜·ï˜¸ï˜¹ï˜ºï˜»ï˜¼ï˜½ï˜¾ï˜¿ +ï™ï™‚ï™ï™Žï™ï™ï™‘ï™ï™žï™Ÿï™ ï™¡ï™¢ï™£ï™¤ï™¥ï™¦ï™§ï™¨ï™©ï™ªï™«ï™¬ï™­ï™®ï™¯ï™°ï™±ï™²ï™³ï™´ï™µï™¶ï™·ï™¸ï™¹ï™ºï™»ï™¼ï™½ï™¾ï™¿ +ïšïš‚ïšïšŽïšïšïš‘ïšïšžïšŸïš ïš¡ïš¢ïš£ïš¤ïš¥ïš¦ïš§ïš¨ïš©ïšªïš«ïš¬ïš­ïš®ïš¯ïš°ïš±ïš²ïš³ïš´ïšµïš¶ïš·ïš¸ïš¹ïšºïš»ïš¼ïš½ïš¾ïš¿ +ï›ï›‚ï›ï›Žï›ï›ï›‘ï›ï›žï›Ÿï› ï›¡ï›¢ï›£ï›¤ï›¥ï›¦ï›§ï›¨ï›©ï›ªï›«ï›¬ï›­ï›®ï›¯ï›°ï›±ï›²ï›³ï›´ï›µï›¶ï›·ï›¸ï›¹ï›ºï›»ï›¼ï›½ï›¾ï›¿ +ïœïœ‚ïœïœŽïœïœïœ‘ïœïœžïœŸïœ ïœ¡ïœ¢ïœ£ïœ¤ïœ¥ïœ¦ïœ§ïœ¨ïœ©ïœªïœ«ïœ¬ïœ­ïœ®ïœ¯ïœ°ïœ±ïœ²ïœ³ïœ´ïœµïœ¶ïœ·ïœ¸ïœ¹ïœºïœ»ïœ¼ïœ½ïœ¾ïœ¿ +ï€ïï‚ïƒï„ï…ï†ï‡ïˆï‰ïŠï‹ïŒïïŽïïï‘ï’ï“ï”ï•ï–ï—ï˜ï™ïšï›ïœïïžïŸï ï¡ï¢ï£ï¤ï¥ï¦ï§ï¨ï©ïªï«ï¬ï­ï®ï¯ï°ï±ï²ï³ï´ïµï¶ï·ï¸ï¹ïºï»ï¼ï½ï¾ï¿ +ïžïž‚ïžïžŽïžïžïž‘ïžïžžïžŸïž ïž¡ïž¢ïž£ïž¤ïž¥ïž¦ïž§ïž¨ïž©ïžªïž«ïž¬ïž­ïž®ïž¯ïž°ïž±ïž²ïž³ïž´ïžµïž¶ïž·ïž¸ïž¹ïžºïž»ïž¼ïž½ïž¾ïž¿ +ïŸïŸ‚ïŸïŸŽïŸïŸïŸ‘ïŸïŸžïŸŸïŸ ïŸ¡ïŸ¢ïŸ£ïŸ¤ïŸ¥ïŸ¦ïŸ§ïŸ¨ïŸ©ïŸªïŸ«ïŸ¬ïŸ­ïŸ®ïŸ¯ïŸ°ïŸ±ïŸ²ïŸ³ïŸ´ïŸµïŸ¶ïŸ·ïŸ¸ïŸ¹ïŸºïŸ»ïŸ¼ïŸ½ïŸ¾ïŸ¿ +ï €ï ï ‚ï ï Žï ï ï ‘ï ï žï Ÿï  ï ¡ï ¢ï £ï ¤ï ¥ï ¦ï §ï ¨ï ©ï ªï «ï ¬ï ­ï ®ï ¯ï °ï ±ï ²ï ³ï ´ï µï ¶ï ·ï ¸ï ¹ï ºï »ï ¼ï ½ï ¾ï ¿ +ï¡€ï¡ï¡‚ï¡ï¡Žï¡ï¡ï¡‘ï¡ï¡žï¡Ÿï¡ ï¡¡ï¡¢ï¡£ï¡¤ï¡¥ï¡¦ï¡§ï¡¨ï¡©ï¡ªï¡«ï¡¬ï¡­ï¡®ï¡¯ï¡°ï¡±ï¡²ï¡³ï¡´ï¡µï¡¶ï¡·ï¡¸ï¡¹ï¡ºï¡»ï¡¼ï¡½ï¡¾ï¡¿ +ï¢ï¢‚ï¢ï¢Žï¢ï¢ï¢‘ï¢ï¢žï¢Ÿï¢ ï¢¡ï¢¢ï¢£ï¢¤ï¢¥ï¢¦ï¢§ï¢¨ï¢©ï¢ªï¢«ï¢¬ï¢­ï¢®ï¢¯ï¢°ï¢±ï¢²ï¢³ï¢´ï¢µï¢¶ï¢·ï¢¸ï¢¹ï¢ºï¢»ï¢¼ï¢½ï¢¾ï¢¿ +ï£ï£‚ï£ï£Žï£ï£ï£‘ï£ï£žï£Ÿï£ ï£¡ï£¢ï££ï£¤ï£¥ï£¦ï£§ï£¨ï£©ï£ªï£«ï£¬ï£­ï£®ï£¯ï£°ï£±ï£²ï£³ï£´ï£µï£¶ï£·ï£¸ï£¹ï£ºï£»ï£¼ï£½ï£¾ï£¿ + +CJK Compatibility Ideographs (U+F900-U+FAFF): + +豈ï¤ï¤‚賈滑串句龜龜契金喇奈ï¤ï¤Žï¤ï¤ï¤‘裸邏樂洛烙珞落酪駱亂卵ï¤ï¤žï¤Ÿ +鸞嵐濫藍襤拉臘蠟廊朗浪狼郎來冷勞擄櫓爐盧老蘆虜路露魯鷺碌祿綠菉錄 +鹿ï¥ï¥‚弄籠聾牢磊賂雷壘屢樓ï¥ï¥Žï¥ï¥ï¥‘勒肋凜凌稜綾菱陵讀拏樂ï¥ï¥žï¥Ÿ +怒率異北磻便復不泌數索參塞省葉說殺辰沈拾若掠略亮兩凉梁糧良諒量勵 +呂ï¦ï¦‚旅濾礪閭驪麗黎力曆歷ï¦ï¦Žï¦ï¦ï¦‘漣煉璉秊練聯輦蓮連鍊列ï¦ï¦žï¦Ÿ +裂說廉念捻殮簾獵令囹寧嶺怜玲瑩羚聆鈴零靈領例禮醴隸惡了僚寮尿料樂 +燎ï§ï§‚遼龍暈阮劉杻柳流溜琉ï§ï§Žï§ï§ï§‘戮陸倫崙淪輪律慄栗率隆ï§ï§žï§Ÿ +易李梨泥理痢罹裏裡里離匿溺吝燐璘藺隣鱗麟林淋臨立笠粒狀炙識什茶刺 +切ï¨ï¨‚糖宅洞暴輻行降見廓兀ï¨ï¨Žï¨ï¨ï¨‘晴﨓﨔凞猪益礼神祥福靖ï¨ï¨žï¨Ÿ +蘒﨡諸﨣﨤逸都﨧﨨﨩飯飼館鶴郞隷侮僧免勉勤卑喝嘆器塀墨層屮悔慨憎 +ï©€ï©ï©‚暑梅海渚漢煮爫琢碑社ï©ï©Žï©ï©ï©‘禍禎穀突節練縉繁署者臭ï©ï©žï©Ÿ +褐視謁謹賓贈辶逸難響頻恵𤋮舘﩮﩯並况全侀充冀勇勺喝啕喙嗢塚墳奄奔 +婢ïªïª‚廙彩徭惘慎愈憎慠懲戴ïªïªŽïªïªïª‘朗望杖歹殺流滛滋漢瀞煮ïªïªžïªŸ +猪瑱甆画瘝瘟益盛直睊着磌窱節类絛練缾者荒華蝹襁覆視調諸請謁諾諭謹 +ï«€ï«ï«‚遲醙鉶陼難靖韛響頋頻ï«ï«Žï«ï«ï«‘㮝䀘䀹𥉉𥳐𧻓齃龎﫚﫛﫜ï«ï«žï«Ÿ +﫠﫡﫢﫣﫤﫥﫦﫧﫨﫩﫪﫫﫬﫭﫮﫯﫰﫱﫲﫳﫴﫵﫶﫷﫸﫹﫺﫻﫼﫽﫾﫿 + +Alphabetic Presentation Forms (U+FB00-U+FB4F): + +ffï¬ï¬‚ffifflſtst﬇﬈﬉﬊﬋﬌ï¬ï¬Žï¬ï¬ï¬‘﬒ﬓﬔﬕﬖﬗ﬘﬙﬚﬛﬜ï¬â—Œï¬žï¬Ÿï¬ ï¬¡ï¬¢ï¬£ï¬¤ï¬¥ï¬¦ï¬§ï¬¨ï¬©ï¬ªï¬«ï¬¬ï¬­ï¬®ï¬¯ï¬°ï¬±ï¬²ï¬³ï¬´ï¬µï¬¶ï¬·ï¬¸ï¬¹ï¬ºï¬»ï¬¼ï¬½ï¬¾ï¬¿ +ï­€ï­ï­‚ףּפּ﭅צּקּרּשּתּוֹבֿï­ï­Žï­ + +Arabic Presentation Forms-A (U+FB50-U+FDFF): + +ï­ï­‘ﭒﭓﭔﭕﭖﭗﭘﭙﭚﭛﭜï­ï­žï­Ÿï­ ï­¡ï­¢ï­£ï­¤ï­¥ï­¦ï­§ï­¨ï­©ï­ªï­«ï­¬ï­­ï­®ï­¯ï­°ï­±ï­²ï­³ï­´ï­µï­¶ï­·ï­¸ï­¹ï­ºï­»ï­¼ï­½ï­¾ï­¿ï®€ï®ï®‚ﮃﮄﮅﮆﮇﮈﮉﮊﮋﮌï®ï®Žï® +ï®ï®‘ﮒﮓﮔﮕﮖﮗﮘﮙﮚﮛﮜï®ï®žï®Ÿï® ï®¡ï®¢ï®£ï®¤ï®¥ï®¦ï®§ï®¨ï®©ï®ªï®«ï®¬ï®­ï®®ï®¯ï®°ï®±ï®²ï®³ï®´ï®µï®¶ï®·ï®¸ï®¹ï®ºï®»ï®¼ï®½ï®¾ï®¿ï¯€ï¯ï¯‚﯃﯄﯅﯆﯇﯈﯉﯊﯋﯌ï¯ï¯Žï¯ +ï¯ï¯‘﯒ﯓﯔﯕﯖﯗﯘﯙﯚﯛﯜï¯ï¯žï¯Ÿï¯ ï¯¡ï¯¢ï¯£ï¯¤ï¯¥ï¯¦ï¯§ï¯¨ï¯©ï¯ªï¯«ï¯¬ï¯­ï¯®ï¯¯ï¯°ï¯±ï¯²ï¯³ï¯´ï¯µï¯¶ï¯·ï¯¸ï¯¹ï¯ºï¯»ï¯¼ï¯½ï¯¾ï¯¿ï°€ï°ï°‚ﰃﰄﰅﰆﰇﰈﰉﰊﰋﰌï°ï°Žï° +ï°ï°‘ﰒﰓﰔﰕﰖﰗﰘﰙﰚﰛﰜï°ï°žï°Ÿï° ï°¡ï°¢ï°£ï°¤ï°¥ï°¦ï°§ï°¨ï°©ï°ªï°«ï°¬ï°­ï°®ï°¯ï°°ï°±ï°²ï°³ï°´ï°µï°¶ï°·ï°¸ï°¹ï°ºï°»ï°¼ï°½ï°¾ï°¿ï±€ï±ï±‚ﱃﱄﱅﱆﱇﱈﱉﱊﱋﱌï±ï±Žï± +ï±ï±‘ﱒﱓﱔﱕﱖﱗﱘﱙﱚﱛﱜï±ï±žï±Ÿï± ï±¡ï±¢ï±£ï±¤ï±¥ï±¦ï±§ï±¨ï±©ï±ªï±«ï±¬ï±­ï±®ï±¯ï±°ï±±ï±²ï±³ï±´ï±µï±¶ï±·ï±¸ï±¹ï±ºï±»ï±¼ï±½ï±¾ï±¿ï²€ï²ï²‚ﲃﲄﲅﲆﲇﲈﲉﲊﲋﲌï²ï²Žï² +ï²ï²‘ﲒﲓﲔﲕﲖﲗﲘﲙﲚﲛﲜï²ï²žï²Ÿï² ï²¡ï²¢ï²£ï²¤ï²¥ï²¦ï²§ï²¨ï²©ï²ªï²«ï²¬ï²­ï²®ï²¯ï²°ï²±ï²²ï²³ï²´ï²µï²¶ï²·ï²¸ï²¹ï²ºï²»ï²¼ï²½ï²¾ï²¿ï³€ï³ï³‚ﳃﳄﳅﳆﳇﳈﳉﳊﳋﳌï³ï³Žï³ +ï³ï³‘ﳒﳓﳔﳕﳖﳗﳘﳙﳚﳛﳜï³ï³žï³Ÿï³ ï³¡ï³¢ï³£ï³¤ï³¥ï³¦ï³§ï³¨ï³©ï³ªï³«ï³¬ï³­ï³®ï³¯ï³°ï³±ï³²ï³³ï³´ï³µï³¶ï³·ï³¸ï³¹ï³ºï³»ï³¼ï³½ï³¾ï³¿ï´€ï´ï´‚ﴃﴄﴅﴆﴇﴈﴉﴊﴋﴌï´ï´Žï´ +ï´ï´‘ﴒﴓﴔﴕﴖﴗﴘﴙﴚﴛﴜï´ï´žï´Ÿï´ ï´¡ï´¢ï´£ï´¤ï´¥ï´¦ï´§ï´¨ï´©ï´ªï´«ï´¬ï´­ï´®ï´¯ï´°ï´±ï´²ï´³ï´´ï´µï´¶ï´·ï´¸ï´¹ï´ºï´»ï´¼ï´½ï´¾ï´¿ïµ€ïµïµ‚﵃﵄﵅﵆﵇﵈﵉﵊﵋﵌ïµïµŽïµ +ïµïµ‘ﵒﵓﵔﵕﵖﵗﵘﵙﵚﵛﵜïµïµžïµŸïµ ïµ¡ïµ¢ïµ£ïµ¤ïµ¥ïµ¦ïµ§ïµ¨ïµ©ïµªïµ«ïµ¬ïµ­ïµ®ïµ¯ïµ°ïµ±ïµ²ïµ³ïµ´ïµµïµ¶ïµ·ïµ¸ïµ¹ïµºïµ»ïµ¼ïµ½ïµ¾ïµ¿ï¶€ï¶ï¶‚ﶃﶄﶅﶆﶇﶈﶉﶊﶋﶌï¶ï¶Žï¶ +ï¶ï¶‘ﶒﶓﶔﶕﶖﶗﶘﶙﶚﶛﶜï¶ï¶žï¶Ÿï¶ ï¶¡ï¶¢ï¶£ï¶¤ï¶¥ï¶¦ï¶§ï¶¨ï¶©ï¶ªï¶«ï¶¬ï¶­ï¶®ï¶¯ï¶°ï¶±ï¶²ï¶³ï¶´ï¶µï¶¶ï¶·ï¶¸ï¶¹ï¶ºï¶»ï¶¼ï¶½ï¶¾ï¶¿ï·€ï·ï·‚ﷃﷄﷅﷆﷇ﷈﷉﷊﷋﷌ï·ï·Žï· +ï·ï·‘﷒﷓﷔﷕﷖﷗﷘﷙﷚﷛﷜ï·ï·žï·Ÿï· ï·¡ï·¢ï·£ï·¤ï·¥ï·¦ï·§ï·¨ï·©ï·ªï·«ï·¬ï·­ï·®ï·¯ï·°ï·±ï·²ï·³ï·´ï·µï·¶ï··ï·¸ï·¹ï·ºï·»ï·¼ï·½ï·¾ï·¿ + +Variation Selectors (U+FE00-U+FE0F): + +◌︀◌ï¸â—Œï¸‚◌︃◌︄◌︅◌︆◌︇◌︈◌︉◌︊◌︋◌︌◌ï¸â—Œï¸Žâ—Œï¸ + +Free block (U+FE10-U+FE1F): + +ï¸ï¸‘︒︓︔︕︖︗︘︙︚︛︜ï¸ï¸žï¸Ÿ + +Combining Half Marks (U+FE20-U+FE2F): + +◌︠◌︡◌︢◌︧︨︩︪︫︬︭︣︤︥︦︮︯ + +CJK Compatibility Forms (U+FE30-U+FE4F): + +︰︱︲︳︴︵︶︷︸︹︺︻︼︽︾︿﹀ï¹ï¹‚﹃﹄﹅﹆﹇﹈﹉﹊﹋﹌ï¹ï¹Žï¹ + +Small Form Variants (U+FE50-U+FE6F): + +ï¹ï¹‘﹒﹓﹔﹕﹖﹗﹘﹙﹚﹛﹜ï¹ï¹žï¹Ÿï¹ ï¹¡ï¹¢ï¹£ï¹¤ï¹¥ï¹¦ï¹§ï¹¨ï¹©ï¹ªï¹«ï¹¬ï¹­ï¹®ï¹¯ + +Arabic Presentation Forms-B (U+FE70-U+FEFF): + +ﹰﹱﹲﹳﹴ﹵ﹶﹷﹸﹹﹺﹻﹼﹽﹾﹿﺀïºïº‚ﺃﺄﺅﺆﺇﺈﺉﺊﺋﺌïºïºŽïºïºïº‘ﺒﺓﺔﺕﺖﺗﺘﺙﺚﺛﺜïºïºžïºŸïº ïº¡ïº¢ïº£ïº¤ïº¥ïº¦ïº§ïº¨ïº©ïºªïº«ïº¬ïº­ïº®ïº¯ +ﺰﺱﺲﺳﺴﺵﺶﺷﺸﺹﺺﺻﺼﺽﺾﺿﻀï»ï»‚ﻃﻄﻅﻆﻇﻈﻉﻊﻋﻌï»ï»Žï»ï»ï»‘ﻒﻓﻔﻕﻖﻗﻘﻙﻚﻛﻜï»ï»žï»Ÿï» ï»¡ï»¢ï»£ï»¤ï»¥ï»¦ï»§ï»¨ï»©ï»ªï»«ï»¬ï»­ï»®ï»¯ +ﻰﻱﻲﻳﻴﻵﻶﻷﻸﻹﻺﻻﻼ﻽﻾ + +Halfwidth and Fullwidth Forms (U+FF00-U+FFEF): + +ï¼€ï¼ï¼‚#$%&'()*+,ï¼ï¼Žï¼ï¼ï¼‘23456789:;<ï¼ï¼žï¼Ÿ +@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_ +ï½€ï½ï½‚cdefghijklï½ï½Žï½ï½ï½‘rstuvwxyz{|ï½ï½žï½Ÿ +⦆。「」、・ヲァィゥェォャュョッーアイウエオカキクケコサシスセソタï¾ï¾‚テトナニヌネノハヒフï¾ï¾Žï¾ï¾ï¾‘メモヤユヨラリルレロワï¾ï¾ž +゚ᅠᄀᄁᆪᄂᆬᆭᄃᄄᄅᆰᆱᆲᆳᆴᆵᄚᄆᄇᄈᄡᄉᄊᄋᄌᄍᄎᄏᄐᄑᄒ﾿￀ï¿ï¿‚ᅢᅣᅤᅥᅦ￈￉ᅧᅨᅩï¿ï¿Žï¿ï¿ï¿‘ᅭᅮᅯᅰᅱᅲ￘￙ᅳᅴᅵï¿ï¿ž +￟¢£¬ ̄¦¥₩￧│←↑→↓■○￯ + +Specials (U+FFF0-U+FFFF): + +￰￱￲￳￴￵￶￷￸�￾￿ diff --git a/busybox-1_37_0/docs/unit-tests.txt b/busybox-1_37_0/docs/unit-tests.txt new file mode 100644 index 000000000..0fb522086 --- /dev/null +++ b/busybox-1_37_0/docs/unit-tests.txt @@ -0,0 +1,50 @@ +Busybox unit test framework +=========================== + +This document describes what you need to do to write test cases using the +Busybox unit test framework. + + +Building unit tests +------------------- + +The framework and all tests are built as a regular Busybox applet if option +CONFIG_UNIT_TEST (found in General Configuration -> Debugging Options) is set. + + +Writing test cases +------------------ + +Unit testing interface can be found in include/bbunit.h. + +Tests can be placed in any .c file in Busybox tree - preferably right next to +the functions they test. Test cases should be enclosed within an #if, and +should start with BBUNIT_DEFINE_TEST macro and end with BBUNIT_ENDTEST within +the test curly brackets. If an assertion fails the test ends immediately, ie. +the following assertions will not be reached. Any code placed after +BBUNIT_ENDTEST is executed regardless of the test result. Here's an example: + +#if ENABLE_UNIT_TEST + +BBUNIT_DEFINE_TEST(test_name) +{ + int *i; + + i = malloc(sizeof(int)); + BBUNIT_ASSERT_NOTNULL(i); + *i = 2; + BBUNIT_ASSERT_EQ((*i)*(*i), 4); + + BBUNIT_ENDTEST; + + free(i); +} + +#endif /* ENABLE_UNIT_TEST */ + + +Running the unit test suite +--------------------------- + +To run the tests you can either directly run 'busybox unit' or use 'make test' +to run both the unit tests (if compiled) and regular test suite. diff --git a/busybox-1_37_0/e2fsprogs/Config.src b/busybox-1_37_0/e2fsprogs/Config.src new file mode 100644 index 000000000..ad15f470c --- /dev/null +++ b/busybox-1_37_0/e2fsprogs/Config.src @@ -0,0 +1,43 @@ +# +# For a description of the syntax of this configuration file, +# see docs/Kconfig-language.txt. +# + +menu "Linux Ext2 FS Progs" + +INSERT + +### config E2FSCK +### bool "e2fsck" +### default y +### help +### e2fsck is used to check Linux second extended file systems (ext2fs). +### e2fsck also supports ext2 filesystems countaining a journal (ext3). +### The normal compat symlinks 'fsck.ext2' and 'fsck.ext3' are also +### provided. + +### config MKE2FS +### bool "mke2fs" +### default y +### help +### mke2fs is used to create an ext2/ext3 filesystem. The normal compat +### symlinks 'mkfs.ext2' and 'mkfs.ext3' are also provided. + +### config E2LABEL +### bool "e2label" +### default y +### depends on TUNE2FS +### help +### e2label will display or change the filesystem label on the ext2 +### filesystem located on device. + +### NB: this one is now provided by util-linux/volume_id/* +### config FINDFS +### bool "findfs" +### default y +### depends on TUNE2FS +### help +### findfs will search the disks in the system looking for a filesystem +### which has a label matching label or a UUID equal to uuid. + +endmenu diff --git a/busybox-1_37_0/e2fsprogs/Kbuild.src b/busybox-1_37_0/e2fsprogs/Kbuild.src new file mode 100644 index 000000000..6b4fb7470 --- /dev/null +++ b/busybox-1_37_0/e2fsprogs/Kbuild.src @@ -0,0 +1,9 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2005 by Erik Andersen +# +# Licensed under GPLv2, see file LICENSE in this source tree. + +lib-y:= + +INSERT diff --git a/busybox-1_37_0/e2fsprogs/README b/busybox-1_37_0/e2fsprogs/README new file mode 100644 index 000000000..eb158e588 --- /dev/null +++ b/busybox-1_37_0/e2fsprogs/README @@ -0,0 +1,12 @@ +Authors and contributors of original e2fsprogs: + +Remy Card +Theodore Ts'o +Stephen C. Tweedie +Andreas Gruenbacher, +Kaz Kylheku +F.W. ten Wolde +Jeremy Fitzhardinge +M.J.E. Mol +Miquel van Smoorenburg +Uwe Ohse diff --git a/busybox-1_37_0/e2fsprogs/chattr.c b/busybox-1_37_0/e2fsprogs/chattr.c new file mode 100644 index 000000000..5dec3253b --- /dev/null +++ b/busybox-1_37_0/e2fsprogs/chattr.c @@ -0,0 +1,260 @@ +/* vi: set sw=4 ts=4: */ +/* + * chattr.c - Change file attributes on an ext2 file system + * + * Copyright (C) 1993, 1994 Remy Card + * Laboratoire MASI, Institut Blaise Pascal + * Universite Pierre et Marie Curie (Paris VI) + * + * This file can be redistributed under the terms of the GNU General + * Public License + */ +//config:config CHATTR +//config: bool "chattr (4.1 kb)" +//config: default y +//config: help +//config: chattr changes the file attributes on a second extended file system. + +//applet:IF_CHATTR(APPLET_NOEXEC(chattr, chattr, BB_DIR_BIN, BB_SUID_DROP, chattr)) + +//kbuild:lib-$(CONFIG_CHATTR) += chattr.o e2fs_lib.o + +//usage:#define chattr_trivial_usage +//usage: "[-R] [-v VERSION] [-p PROJID] [-+=AacDdijsStTu] FILE..." +//usage:#define chattr_full_usage "\n\n" +//usage: "Change ext2 file attributes\n" +//usage: "\n -R Recurse" +//usage: "\n -v NUM Set version/generation number" +//usage: "\n -p NUM Set project number" +//-V, -f accepted but ignored +//usage: "\nModifiers:" +//usage: "\n -,+,= Remove/add/set attributes" +//usage: "\nAttributes:" +//usage: "\n A No atime" +//usage: "\n a Append only" +//usage: "\n C No copy-on-write" +//usage: "\n c Compressed" +//usage: "\n D Synchronous dir updates" +//usage: "\n d Don't backup with dump" +//usage: "\n E Encrypted" +//usage: "\n e File uses extents" +//usage: "\n F Case-insensitive dir" +//usage: "\n I Indexed dir" +//usage: "\n i Immutable" +//usage: "\n j Write data to journal first" +//usage: "\n N File is stored in inode" +//usage: "\n P Hierarchical project ID dir" +//usage: "\n S Synchronous file updates" +//usage: "\n s Zero storage when deleted" +//usage: "\n T Top of dir hierarchy" +//usage: "\n t Don't tail-merge with other files" +//usage: "\n u Allow undelete" +//usage: "\n V Verity" + +#include "libbb.h" +#include "e2fs_lib.h" + +#define OPT_ADD (1 << 0) +#define OPT_REM (1 << 1) +#define OPT_SET (1 << 2) +#define OPT_SET_VER (1 << 3) +#define OPT_SET_PROJ (1 << 4) + +struct globals { + unsigned version; + unsigned af; + unsigned rf; + int flags; + uint32_t projid; + smallint recursive; +}; + +static unsigned long get_flag(char c) +{ + const char *fp = strchr(e2attr_flags_sname_chattr, c); + if (fp) + return e2attr_flags_value_chattr[fp - e2attr_flags_sname_chattr]; + bb_show_usage(); +} + +static char** decode_arg(char **argv, struct globals *gp) +{ + unsigned *fl; + const char *arg = *argv; + char opt = *arg; + + fl = &gp->af; + if (opt == '-') { + /* gp->flags |= OPT_REM; - WRONG, it can be an option */ + /* testcase: chattr =ae -R FILE should not complain "= is incompatible with - and +" */ + /* (and should not read flags, with =FLAGS they can be just set directly) */ + fl = &gp->rf; + } else if (opt == '+') { + gp->flags |= OPT_ADD; + } else { /* if (opt == '=') */ + gp->flags |= OPT_SET; + } + + while (*++arg) { + if (opt == '-') { +//e2fsprogs-1.43.1 accepts: +// "-RRR", "-RRRv VER" and even "-ARRRva VER" and "-vvv V1 V2 V3" +// but not "-vVER". +// IOW: options are parsed as part of "remove attrs" strings, +// if "v" is seen, next argv[] is VER, even if more opts/attrs follow in this argv[]! + if (*arg == 'R') { + gp->recursive = 1; + continue; + } + if (*arg == 'V') { + /*"verbose and print program version" (nop for now) */; + continue; + } + if (*arg == 'f') { + /*"suppress most error messages" (nop) */; + continue; + } + if (*arg == 'v') { + if (!*++argv) + bb_show_usage(); + gp->version = xatou(*argv); + gp->flags |= OPT_SET_VER; + continue; + } + if (*arg == 'p') { + if (!*++argv) + bb_show_usage(); + gp->projid = xatou32(*argv); + gp->flags |= OPT_SET_PROJ; + continue; + } + /* not a known option, try as an attribute */ + gp->flags |= OPT_REM; + } + *fl |= get_flag(*arg); /* aborts on bad flag letter */ + } + + return argv; +} + +static void change_attributes(const char *name, struct globals *gp); + +static int FAST_FUNC chattr_dir_proc(const char *dir_name, struct dirent *de, void *gp) +{ +//TODO: use de->d_type (if it's not DT_UNKNOWN) to skip !(REG || DIR || LNK) entries without lstat? + + char *path = concat_subpath_file(dir_name, de->d_name); + /* path is NULL if de->d_name is "." or "..", else... */ + if (path) { + change_attributes(path, gp); + free(path); + } + return 0; +} + +static void change_attributes(const char *name, struct globals *gp) +{ + unsigned fsflags; + int fd; + struct stat st; + + if (lstat(name, &st) != 0) { + bb_perror_msg("can't stat '%s'", name); + return; + } + + /* Don't try to open device files, fifos etc. We probably + * ought to display an error if the file was explicitly given + * on the command line (whether or not recursive was + * requested). */ + if (!S_ISREG(st.st_mode) && !S_ISLNK(st.st_mode) && !S_ISDIR(st.st_mode)) + return; + + /* There is no way to run needed ioctls on a symlink. + * open(O_PATH | O_NOFOLLOW) _can_ be used to get a fd referring to the symlink, + * but ioctls fail on such a fd (tried on 4.12.0 kernel). + * e2fsprogs-1.46.2 uses open(O_NOFOLLOW), it fails on symlinks. + */ + fd = open_or_warn(name, O_RDONLY | O_NONBLOCK | O_NOCTTY | O_NOFOLLOW); + if (fd >= 0) { + int r; + + if (gp->flags & OPT_SET_VER) { + r = ioctl(fd, EXT2_IOC_SETVERSION, &gp->version); + if (r != 0) + bb_perror_msg("setting %s on %s", "version", name); + } + + if (gp->flags & OPT_SET_PROJ) { + struct ext2_fsxattr fsxattr; + r = ioctl(fd, EXT2_IOC_FSGETXATTR, &fsxattr); + /* note: ^^^ may fail in 32-bit userspace on 64-bit kernel (seen on 4.12.0) */ + if (r != 0) { + bb_perror_msg("getting %s on %s", "project ID", name); + } else { + fsxattr.fsx_projid = gp->projid; + r = ioctl(fd, EXT2_IOC_FSSETXATTR, &fsxattr); + if (r != 0) + bb_perror_msg("setting %s on %s", "project ID", name); + } + } + + if (gp->flags & OPT_SET) { + fsflags = gp->af; + } else { + r = ioctl(fd, EXT2_IOC_GETFLAGS, &fsflags); + if (r != 0) { + bb_perror_msg("getting %s on %s", "flags", name); + goto skip_setflags; + } + /*if (gp->flags & OPT_REM) - not needed, rf is zero otherwise */ + fsflags &= ~gp->rf; + /*if (gp->flags & OPT_ADD) - not needed, af is zero otherwise */ + fsflags |= gp->af; +// What is this? And why it's not done for SET case? + if (!S_ISDIR(st.st_mode)) + fsflags &= ~EXT2_DIRSYNC_FL; + } + r = ioctl(fd, EXT2_IOC_SETFLAGS, &fsflags); + if (r != 0) + bb_perror_msg("setting %s on %s", "flags", name); + skip_setflags: + close(fd); + } + + if (gp->recursive && S_ISDIR(st.st_mode)) + iterate_on_dir(name, chattr_dir_proc, gp); +} + +int chattr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int chattr_main(int argc UNUSED_PARAM, char **argv) +{ + struct globals g; + + memset(&g, 0, sizeof(g)); + + /* parse the args */ + for (;;) { + char *arg = *++argv; + if (!arg) + bb_show_usage(); + if (arg[0] != '-' && arg[0] != '+' && arg[0] != '=') + break; + + argv = decode_arg(argv, &g); + } + /* note: on loop exit, remaining argv[] is never empty */ + + /* run sanity checks on all the arguments given us */ + if ((g.flags & OPT_SET) && (g.flags & (OPT_ADD|OPT_REM))) + bb_simple_error_msg_and_die("= is incompatible with - and +"); + if (g.rf & g.af) + bb_simple_error_msg_and_die("can't set and unset a flag"); + if (!g.flags) + bb_simple_error_msg_and_die("must use -v, -p, =, - or +"); + + /* now run chattr on all the files passed to us */ + do change_attributes(*argv, &g); while (*++argv); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/e2fsprogs/e2fs_lib.c b/busybox-1_37_0/e2fsprogs/e2fs_lib.c new file mode 100644 index 000000000..9b68d8901 --- /dev/null +++ b/busybox-1_37_0/e2fsprogs/e2fs_lib.c @@ -0,0 +1,111 @@ +/* vi: set sw=4 ts=4: */ +/* + * See README for additional information + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ + +#include "libbb.h" +#include "e2fs_lib.h" + +/* Print file attributes on an ext2 file system */ +const uint32_t e2attr_flags_value[] ALIGN4 = { +#ifdef ENABLE_COMPRESSION + EXT2_COMPRBLK_FL, + EXT2_DIRTY_FL, + EXT2_NOCOMPR_FL, +#endif + EXT2_SECRM_FL, + EXT2_UNRM_FL, + EXT2_SYNC_FL, + EXT2_DIRSYNC_FL, + EXT2_IMMUTABLE_FL, + EXT2_APPEND_FL, + EXT2_NODUMP_FL, + EXT2_NOATIME_FL, + EXT2_COMPR_FL, + EXT2_ECOMPR_FL, + EXT3_JOURNAL_DATA_FL, + EXT2_INDEX_FL, + EXT2_NOTAIL_FL, + EXT2_TOPDIR_FL, + EXT2_EXTENT_FL, + EXT2_NOCOW_FL, + EXT2_CASEFOLD_FL, + EXT2_INLINE_DATA_FL, + EXT2_PROJINHERIT_FL, + EXT2_VERITY_FL, +}; + +const char e2attr_flags_sname[] ALIGN1 = +#ifdef ENABLE_COMPRESSION + "BZX" +#endif + "suSDiadAcEjItTeCFNPV"; + +static const char e2attr_flags_lname[] ALIGN1 = +#ifdef ENABLE_COMPRESSION + "Compressed_File" "\0" + "Compressed_Dirty_File" "\0" + "Compression_Raw_Access" "\0" +#endif + "Secure_Deletion" "\0" + "Undelete" "\0" + "Synchronous_Updates" "\0" + "Synchronous_Directory_Updates" "\0" + "Immutable" "\0" + "Append_Only" "\0" + "No_Dump" "\0" + "No_Atime" "\0" + "Compression_Requested" "\0" + "Encrypted" "\0" + "Journaled_Data" "\0" + "Indexed_directory" "\0" + "No_Tailmerging" "\0" + "Top_of_Directory_Hierarchies" "\0" + "Extents" "\0" + "No_COW" "\0" + "Casefold" "\0" + "Inline_Data" "\0" + "Project_Hierarchy" "\0" + "Verity" "\0" + /* Another trailing NUL is added by compiler */; + +void print_e2flags_long(unsigned flags) +{ + const uint32_t *fv; + const char *fn; + int first = 1; + + fv = e2attr_flags_value; + fn = e2attr_flags_lname; + do { + if (flags & *fv) { + if (!first) + fputs(", ", stdout); + fputs(fn, stdout); + first = 0; + } + fv++; + fn += strlen(fn) + 1; + } while (*fn); + if (first) + fputs("---", stdout); +} + +void print_e2flags(unsigned flags) +{ + const uint32_t *fv; + const char *fn; + + fv = e2attr_flags_value; + fn = e2attr_flags_sname; + do { + char c = '-'; + if (flags & *fv) + c = *fn; + putchar(c); + fv++; + fn++; + } while (*fn); +} diff --git a/busybox-1_37_0/e2fsprogs/e2fs_lib.h b/busybox-1_37_0/e2fsprogs/e2fs_lib.h new file mode 100644 index 000000000..bab447a94 --- /dev/null +++ b/busybox-1_37_0/e2fsprogs/e2fs_lib.h @@ -0,0 +1,31 @@ +/* vi: set sw=4 ts=4: */ +/* + * See README for additional information + * + * This file can be redistributed under the terms of the GNU Library General + * Public License + */ + +/* Constants and structures */ +#include "bb_e2fs_defs.h" + +PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN + +/* Print file attributes on an ext2 file system */ +void print_e2flags_long(unsigned flags); +void print_e2flags(unsigned flags); + +extern const uint32_t e2attr_flags_value[]; +extern const char e2attr_flags_sname[]; + +/* If you plan to ENABLE_COMPRESSION, see e2fs_lib.c and chattr.c - */ +/* make sure that chattr doesn't accept bad options! */ +#ifdef ENABLE_COMPRESSION +#define e2attr_flags_value_chattr (&e2attr_flags_value[5]) +#define e2attr_flags_sname_chattr (&e2attr_flags_sname[5]) +#else +#define e2attr_flags_value_chattr (&e2attr_flags_value[1]) +#define e2attr_flags_sname_chattr (&e2attr_flags_sname[1]) +#endif + +POP_SAVED_FUNCTION_VISIBILITY diff --git a/busybox-1_37_0/e2fsprogs/fsck.c b/busybox-1_37_0/e2fsprogs/fsck.c new file mode 100644 index 000000000..fd4ea737c --- /dev/null +++ b/busybox-1_37_0/e2fsprogs/fsck.c @@ -0,0 +1,1115 @@ +/* vi: set sw=4 ts=4: */ +/* + * fsck --- A generic, parallelizing front-end for the fsck program. + * It will automatically try to run fsck programs in parallel if the + * devices are on separate spindles. It is based on the same ideas as + * the generic front end for fsck by David Engel and Fred van Kempen, + * but it has been completely rewritten from scratch to support + * parallel execution. + * + * Written by Theodore Ts'o, + * + * Miquel van Smoorenburg (miquels@drinkel.ow.org) 20-Oct-1994: + * o Changed -t fstype to behave like with mount when -A (all file + * systems) or -M (like mount) is specified. + * o fsck looks if it can find the fsck.type program to decide + * if it should ignore the fs type. This way more fsck programs + * can be added without changing this front-end. + * o -R flag skip root file system. + * + * Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, + * 2001, 2002, 2003, 2004, 2005 by Theodore Ts'o. + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ + +/* All filesystem specific hooks have been removed. + * If filesystem cannot be determined, we will execute + * "fsck.auto". Currently this also happens if you specify + * UUID=xxx or LABEL=xxx as an object to check. + * Detection code for that is also probably has to be in fsck.auto. + * + * In other words, this is _really_ is just a driver program which + * spawns actual fsck.something for each filesystem to check. + * It doesn't guess filesystem types from on-disk format. + */ +//config:config FSCK +//config: bool "fsck (7.6 kb)" +//config: default y +//config: help +//config: fsck is used to check and optionally repair one or more filesystems. +//config: In actuality, fsck is simply a front-end for the various file system +//config: checkers (fsck.fstype) available under Linux. + +//applet:IF_FSCK(APPLET(fsck, BB_DIR_SBIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_FSCK) += fsck.o + +//usage:#define fsck_trivial_usage +//usage: "[-ANPRTV] [-t FSTYPE] [FS_OPTS] [BLOCKDEV]..." +//usage:#define fsck_full_usage "\n\n" +//usage: "Check and repair filesystems\n" +//usage: "\n -A Walk /etc/fstab and check all filesystems" +//usage: "\n -N Don't execute, just show what would be done" +//usage: "\n -P With -A, check filesystems in parallel" +//usage: "\n -R With -A, skip the root filesystem" +//usage: "\n -T Don't show title on startup" +//usage: "\n -V Verbose" +//DO_PROGRESS_INDICATOR is off: +////usage: "\n -C FD Write status information to specified file descriptor" +//usage: "\n -t TYPE List of filesystem types to check" + +#include "libbb.h" +#include "common_bufsiz.h" + +/* "progress indicator" code is somewhat buggy and ext[23] specific. + * We should be filesystem agnostic. IOW: there should be a well-defined + * API for fsck.something, NOT ad-hoc hacks in generic fsck. */ +#define DO_PROGRESS_INDICATOR 0 + +/* fsck 1.41.4 (27-Jan-2009) manpage says: + * 0 - No errors + * 1 - File system errors corrected + * 2 - System should be rebooted + * 4 - File system errors left uncorrected + * 8 - Operational error + * 16 - Usage or syntax error + * 32 - Fsck canceled by user request + * 128 - Shared library error + */ +#define EXIT_OK 0 +#define EXIT_NONDESTRUCT 1 +#define EXIT_DESTRUCT 2 +#define EXIT_UNCORRECTED 4 +#define EXIT_ERROR 8 +#define EXIT_USAGE 16 +#define FSCK_CANCELED 32 /* Aborted with a signal or ^C */ + +/* + * Internal structure for mount table entries. + */ +struct fs_info { + struct fs_info *next; + char *device; + char *mountpt; + char *type; + char *opts; + int passno; + int flags; +}; + +#define FLAG_DONE 1 +#define FLAG_PROGRESS 2 +/* + * Structure to allow exit codes to be stored + */ +struct fsck_instance { + struct fsck_instance *next; + int pid; + int flags; +#if DO_PROGRESS_INDICATOR + time_t start_time; +#endif + char *prog; + char *device; + char *base_device; /* /dev/hda for /dev/hdaN etc */ +}; + +static const char ignored_types[] ALIGN1 = + "ignore\0" + "iso9660\0" + "nfs\0" + "proc\0" + "sw\0" + "swap\0" + "tmpfs\0" + "devpts\0"; + +#if 0 +static const char really_wanted[] ALIGN1 = + "minix\0" + "ext2\0" + "ext3\0" + "jfs\0" + "reiserfs\0" + "xiafs\0" + "xfs\0"; +#endif + +#define BASE_MD "/dev/md" + +struct globals { + char **args; + int num_args; + int verbose; + +#define FS_TYPE_FLAG_NORMAL 0 +#define FS_TYPE_FLAG_OPT 1 +#define FS_TYPE_FLAG_NEGOPT 2 + char **fs_type_list; + uint8_t *fs_type_flag; + smallint fs_type_negated; + + smallint noexecute; + smallint serialize; + smallint skip_root; + /* smallint like_mount; */ + smallint parallel_root; + smallint force_all_parallel; + smallint kill_sent; + +#if DO_PROGRESS_INDICATOR + smallint progress; + int progress_fd; +#endif + + int num_running; + int max_running; + char *fstype; + struct fs_info *filesys_info; + struct fs_info *filesys_last; + struct fsck_instance *instance_list; +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { \ + setup_common_bufsiz(); \ + BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ +} while (0) + +/* + * Return the "base device" given a particular device; this is used to + * assure that we only fsck one partition on a particular drive at any + * one time. Otherwise, the disk heads will be seeking all over the + * place. If the base device cannot be determined, return NULL. + * + * The base_device() function returns an allocated string which must + * be freed. + */ +#if ENABLE_FEATURE_DEVFS +/* + * Required for the uber-silly devfs /dev/ide/host1/bus2/target3/lun3 + * pathames. + */ +static const char *const devfs_hier[] ALIGN_PTR = { + "host", "bus", "target", "lun", NULL +}; +#endif + +static char *base_device(const char *device) +{ + char *str, *cp; +#if ENABLE_FEATURE_DEVFS + const char *const *hier; + const char *disk; + int len; +#endif + str = xstrdup(device); + + /* Skip over "/dev/"; if it's not present, give up */ + cp = skip_dev_pfx(str); + if (cp == str) + goto errout; + + /* + * For md devices, we treat them all as if they were all + * on one disk, since we don't know how to parallelize them. + */ + if (cp[0] == 'm' && cp[1] == 'd') { + cp[2] = 0; + return str; + } + + /* Handle DAC 960 devices */ + if (is_prefixed_with(cp, "rd/")) { + cp += 3; + if (cp[0] != 'c' || !isdigit(cp[1]) + || cp[2] != 'd' || !isdigit(cp[3])) + goto errout; + cp[4] = 0; + return str; + } + + /* Now let's handle /dev/hd* and /dev/sd* devices.... */ + if ((cp[0] == 'h' || cp[0] == 's') && cp[1] == 'd') { + cp += 2; + /* If there's a single number after /dev/hd, skip it */ + if (isdigit(*cp)) + cp++; + /* What follows must be an alpha char, or give up */ + if (!isalpha(*cp)) + goto errout; + cp[1] = 0; + return str; + } + +#if ENABLE_FEATURE_DEVFS + /* Now let's handle devfs (ugh) names */ + len = 0; + if (is_prefixed_with(cp, "ide/")) + len = 4; + if (is_prefixed_with(cp, "scsi/")) + len = 5; + if (len) { + cp += len; + /* + * Now we proceed down the expected devfs hierarchy. + * i.e., .../host1/bus2/target3/lun4/... + * If we don't find the expected token, followed by + * some number of digits at each level, abort. + */ + for (hier = devfs_hier; *hier; hier++) { + cp = is_prefixed_with(cp, *hier); + if (!cp) + goto errout; + while (*cp != '/' && *cp != '\0') { + if (!isdigit(*cp)) + goto errout; + cp++; + } +//FIXME: what if *cp = '\0' now? cp++ moves past it!!! + cp++; + } + cp[-1] = '\0'; + return str; + } + + /* Now handle devfs /dev/disc or /dev/disk names */ + disk = NULL; + if (is_prefixed_with(cp, "discs/")) + disk = "disc"; + else if (is_prefixed_with(cp, "disks/")) + disk = "disk"; + if (disk) { + cp += 6; + cp = is_prefixed_with(cp, disk); + if (!cp) + goto errout; + while (*cp != '/' && *cp != '\0') { + if (!isdigit(*cp)) + goto errout; + cp++; + } + *cp = '\0'; + return str; + } +#endif + errout: + free(str); + return NULL; +} + +static void free_instance(struct fsck_instance *p) +{ + free(p->prog); + free(p->device); + free(p->base_device); + free(p); +} + +static struct fs_info *create_fs_device(const char *device, const char *mntpnt, + const char *type, const char *opts, + int passno) +{ + struct fs_info *fs; + + fs = xzalloc(sizeof(*fs)); + fs->device = xstrdup(device); + fs->mountpt = xstrdup(mntpnt); + if (strchr(type, ',')) + type = (char *)"auto"; + fs->type = xstrdup(type); + fs->opts = xstrdup(opts ? opts : ""); + fs->passno = passno < 0 ? 1 : passno; + /*fs->flags = 0; */ + /*fs->next = NULL; */ + + if (!G.filesys_info) + G.filesys_info = fs; + else + G.filesys_last->next = fs; + G.filesys_last = fs; + + return fs; +} + +/* Load the filesystem database from /etc/fstab */ +static void load_fs_info(const char *filename) +{ + FILE *fstab; + struct mntent mte; + char buf[1024]; + + fstab = setmntent(filename, "r"); + if (!fstab) { + bb_perror_msg("can't read '%s'", filename); + return; + } + + // Loop through entries + while (getmntent_r(fstab, &mte, buf, sizeof(buf))) { + //bb_error_msg("CREATE[%s][%s][%s][%s][%d]", mte.mnt_fsname, mte.mnt_dir, + // mte.mnt_type, mte.mnt_opts, + // mte.mnt_passno); + create_fs_device(mte.mnt_fsname, mte.mnt_dir, + mte.mnt_type, mte.mnt_opts, + mte.mnt_passno); + } + endmntent(fstab); +} + +/* Lookup filesys in /etc/fstab and return the corresponding entry. */ +static struct fs_info *lookup(char *filesys) +{ + struct fs_info *fs; + + for (fs = G.filesys_info; fs; fs = fs->next) { + if (strcmp(filesys, fs->device) == 0 + || (fs->mountpt && strcmp(filesys, fs->mountpt) == 0) + ) + break; + } + + return fs; +} + +#if DO_PROGRESS_INDICATOR +static int progress_active(void) +{ + struct fsck_instance *inst; + + for (inst = G.instance_list; inst; inst = inst->next) { + if (inst->flags & FLAG_DONE) + continue; + if (inst->flags & FLAG_PROGRESS) + return 1; + } + return 0; +} +#endif + + +/* + * Send a signal to all outstanding fsck child processes + */ +static void kill_all_if_got_signal(void) +{ + struct fsck_instance *inst; + + if (!bb_got_signal || G.kill_sent) + return; + + for (inst = G.instance_list; inst; inst = inst->next) { + if (inst->flags & FLAG_DONE) + continue; + kill(inst->pid, SIGTERM); + } + G.kill_sent = 1; +} + +/* + * Wait for one child process to exit; when it does, unlink it from + * the list of executing child processes, free, and return its exit status. + * If there is no exited child, return -1. + */ +static int wait_one(int flags) +{ + int status; + int exitcode; + struct fsck_instance *inst, *prev; + pid_t pid; + + if (!G.instance_list) + return -1; + /* if (G.noexecute) { already returned -1; } */ + + while (1) { + pid = waitpid(-1, &status, flags); + kill_all_if_got_signal(); + if (pid == 0) /* flags == WNOHANG and no children exited */ + return -1; + if (pid < 0) { + if (errno == EINTR) + continue; + if (errno == ECHILD) { /* paranoia */ + bb_simple_error_msg("wait: no more children"); + return -1; + } + bb_simple_perror_msg("wait"); + continue; + } + prev = NULL; + inst = G.instance_list; + do { + if (inst->pid == pid) + goto child_died; + prev = inst; + inst = inst->next; + } while (inst); + } + child_died: + + exitcode = WEXITSTATUS(status); + if (WIFSIGNALED(status)) { + unsigned sig; + sig = WTERMSIG(status); + exitcode = EXIT_UNCORRECTED; + if (sig != SIGINT) { + printf("Warning: %s %s terminated " + "by signal %u\n", + inst->prog, inst->device, sig); + exitcode = EXIT_ERROR; + } + } + +#if DO_PROGRESS_INDICATOR + if (progress && (inst->flags & FLAG_PROGRESS) && !progress_active()) { + struct fsck_instance *inst2; + for (inst2 = G.instance_list; inst2; inst2 = inst2->next) { + if (inst2->flags & FLAG_DONE) + continue; + if (strcmp(inst2->type, "ext2") != 0 + && strcmp(inst2->type, "ext3") != 0 + ) { + continue; + } + /* ext[23], we will send USR1 + * (request to start displaying progress bar) + * + * If we've just started the fsck, wait a tiny + * bit before sending the kill, to give it + * time to set up the signal handler + */ + if (inst2->start_time >= time(NULL) - 1) + sleep1(); + kill(inst2->pid, SIGUSR1); + inst2->flags |= FLAG_PROGRESS; + break; + } + } +#endif + + if (prev) + prev->next = inst->next; + else + G.instance_list = inst->next; + if (G.verbose > 1) + printf("Finished with %s (exit status %u)\n", + inst->device, exitcode); + G.num_running--; + free_instance(inst); + + return exitcode; +} + +/* + * Wait until all executing child processes have exited; return the + * logical OR of all of their exit code values. + */ +#define FLAG_WAIT_ALL 0 +#define FLAG_WAIT_ATLEAST_ONE WNOHANG +static int wait_many(int flags) +{ + int exit_status; + int global_status = 0; + int wait_flags = 0; + + while ((exit_status = wait_one(wait_flags)) != -1) { + global_status |= exit_status; + wait_flags |= flags; + } + return global_status; +} + +/* + * Execute a particular fsck program, and link it into the list of + * child processes we are waiting for. + */ +static void execute(const char *type, const char *device, + const char *mntpt /*, int interactive */) +{ + int i; + struct fsck_instance *inst; + pid_t pid; + + G.args[0] = xasprintf("fsck.%s", type); + +#if DO_PROGRESS_INDICATOR + if (progress && !progress_active()) { + if (strcmp(type, "ext2") == 0 + || strcmp(type, "ext3") == 0 + ) { + G.args[XXX] = xasprintf("-C%d", progress_fd); /* 1 */ + inst->flags |= FLAG_PROGRESS; + } + } +#endif + + G.args[G.num_args - 2] = (char*)device; + /* G.args[G.num_args - 1] = NULL; - already is */ + + if (G.verbose || G.noexecute) { + printf("[%s (%d) -- %s]", G.args[0], G.num_running, + mntpt ? mntpt : device); + for (i = 0; G.args[i]; i++) + printf(" %s", G.args[i]); + bb_putchar('\n'); + } + + /* Fork and execute the correct program. */ + pid = -1; + if (!G.noexecute) { + pid = spawn(G.args); + if (pid < 0) + bb_simple_perror_msg(G.args[0]); + } + +#if DO_PROGRESS_INDICATOR + free(G.args[XXX]); +#endif + + /* No child, so don't record an instance */ + if (pid <= 0) { + free(G.args[0]); + return; + } + + inst = xzalloc(sizeof(*inst)); + inst->pid = pid; + inst->prog = G.args[0]; + inst->device = xstrdup(device); + inst->base_device = base_device(device); +#if DO_PROGRESS_INDICATOR + inst->start_time = time(NULL); +#endif + + /* Add to the list of running fsck's. + * (was adding to the end, but adding to the front is simpler...) */ + inst->next = G.instance_list; + G.instance_list = inst; +} + +/* + * Run the fsck program on a particular device + * + * If the type is specified using -t, and it isn't prefixed with "no" + * (as in "noext2") and only one filesystem type is specified, then + * use that type regardless of what is specified in /etc/fstab. + * + * If the type isn't specified by the user, then use either the type + * specified in /etc/fstab, or "auto". + */ +static void fsck_device(struct fs_info *fs /*, int interactive */) +{ + const char *type; + + if (strcmp(fs->type, "auto") != 0) { + type = fs->type; + if (G.verbose > 2) + printf("using filesystem type '%s' %s\n", + type, "from fstab"); + } else if (G.fstype + && (G.fstype[0] != 'n' || G.fstype[1] != 'o') /* != "no" */ + && !is_prefixed_with(G.fstype, "opts=") + && !is_prefixed_with(G.fstype, "loop") + && !strchr(G.fstype, ',') + ) { + type = G.fstype; + if (G.verbose > 2) + printf("using filesystem type '%s' %s\n", + type, "from -t"); + } else { + type = "auto"; + if (G.verbose > 2) + printf("using filesystem type '%s' %s\n", + type, "(default)"); + } + + G.num_running++; + execute(type, fs->device, fs->mountpt /*, interactive */); +} + +/* + * Returns TRUE if a partition on the same disk is already being + * checked. + */ +static int device_already_active(char *device) +{ + struct fsck_instance *inst; + char *base; + + if (G.force_all_parallel) + return 0; + +#ifdef BASE_MD + /* Don't check a soft raid disk with any other disk */ + if (G.instance_list + && (is_prefixed_with(G.instance_list->device, BASE_MD) + || is_prefixed_with(device, BASE_MD)) + ) { + return 1; + } +#endif + + base = base_device(device); + /* + * If we don't know the base device, assume that the device is + * already active if there are any fsck instances running. + */ + if (!base) + return (G.instance_list != NULL); + + for (inst = G.instance_list; inst; inst = inst->next) { + if (!inst->base_device || strcmp(base, inst->base_device) == 0) { + free(base); + return 1; + } + } + + free(base); + return 0; +} + +/* + * This function returns true if a particular option appears in a + * comma-delimited options list + */ +static int opt_in_list(char *opt, char *optlist) +{ + char *s; + int len; + + if (!optlist) + return 0; + + len = strlen(opt); + s = optlist - 1; + while (1) { + s = strstr(s + 1, opt); + if (!s) + return 0; + /* neither "opt.." nor "xxx,opt.."? */ + if (s != optlist && s[-1] != ',') + continue; + /* neither "..opt" nor "..opt,xxx"? */ + if (s[len] != '\0' && s[len] != ',') + continue; + return 1; + } +} + +/* See if the filesystem matches the criteria given by the -t option */ +static int fs_match(struct fs_info *fs) +{ + int n, ret, checked_type; + char *cp; + + if (!G.fs_type_list) + return 1; + + ret = 0; + checked_type = 0; + n = 0; + while (1) { + cp = G.fs_type_list[n]; + if (!cp) + break; + switch (G.fs_type_flag[n]) { + case FS_TYPE_FLAG_NORMAL: + checked_type++; + if (strcmp(cp, fs->type) == 0) + ret = 1; + break; + case FS_TYPE_FLAG_NEGOPT: + if (opt_in_list(cp, fs->opts)) + return 0; + break; + case FS_TYPE_FLAG_OPT: + if (!opt_in_list(cp, fs->opts)) + return 0; + break; + } + n++; + } + if (checked_type == 0) + return 1; + + return (G.fs_type_negated ? !ret : ret); +} + +/* Check if we should ignore this filesystem. */ +static int ignore(struct fs_info *fs) +{ + /* + * If the pass number is 0, ignore it. + */ + if (fs->passno == 0) + return 1; + + /* + * If a specific fstype is specified, and it doesn't match, + * ignore it. + */ + if (!fs_match(fs)) + return 1; + + /* Are we ignoring this type? */ + if (index_in_strings(ignored_types, fs->type) >= 0) + return 1; + + /* We can and want to check this file system type. */ + return 0; +} + +/* Check all file systems, using the /etc/fstab table. */ +static int check_all(void) +{ + struct fs_info *fs; + int status = EXIT_OK; + smallint not_done_yet; + smallint pass_done; + int passno; + + if (G.verbose) + puts("Checking all filesystems"); + + /* + * Do an initial scan over the filesystem; mark filesystems + * which should be ignored as done, and resolve any "auto" + * filesystem types (done as a side-effect of calling ignore()). + */ + for (fs = G.filesys_info; fs; fs = fs->next) + if (ignore(fs)) + fs->flags |= FLAG_DONE; + + /* + * Find and check the root filesystem. + */ + if (!G.parallel_root) { + for (fs = G.filesys_info; fs; fs = fs->next) { + if (LONE_CHAR(fs->mountpt, '/')) { + if (!G.skip_root && !ignore(fs)) { + fsck_device(fs /*, 1*/); + status |= wait_many(FLAG_WAIT_ALL); + if (status > EXIT_NONDESTRUCT) + return status; + } + fs->flags |= FLAG_DONE; + break; + } + } + } + /* + * This is for the bone-headed user who has root + * filesystem listed twice. + * "Skip root" will skip _all_ root entries. + */ + if (G.skip_root) + for (fs = G.filesys_info; fs; fs = fs->next) + if (LONE_CHAR(fs->mountpt, '/')) + fs->flags |= FLAG_DONE; + + not_done_yet = 1; + passno = 1; + while (not_done_yet) { + not_done_yet = 0; + pass_done = 1; + + for (fs = G.filesys_info; fs; fs = fs->next) { + if (bb_got_signal) + break; + if (fs->flags & FLAG_DONE) + continue; + /* + * If the filesystem's pass number is higher + * than the current pass number, then we didn't + * do it yet. + */ + if (fs->passno > passno) { + not_done_yet = 1; + continue; + } + /* + * If a filesystem on a particular device has + * already been spawned, then we need to defer + * this to another pass. + */ + if (device_already_active(fs->device)) { + pass_done = 0; + continue; + } + /* + * Spawn off the fsck process + */ + fsck_device(fs /*, G.serialize*/); + fs->flags |= FLAG_DONE; + + /* + * Only do one filesystem at a time, or if we + * have a limit on the number of fsck's extant + * at one time, apply that limit. + */ + if (G.serialize + || (G.num_running >= G.max_running) + ) { + pass_done = 0; + break; + } + } + if (bb_got_signal) + break; + if (G.verbose > 1) + printf("--waiting-- (pass %d)\n", passno); + status |= wait_many(pass_done ? FLAG_WAIT_ALL : + FLAG_WAIT_ATLEAST_ONE); + if (pass_done) { + if (G.verbose > 1) + puts("----------------------------------"); + passno++; + } else + not_done_yet = 1; + } + kill_all_if_got_signal(); + status |= wait_many(FLAG_WAIT_ATLEAST_ONE); + return status; +} + +/* + * Deal with the fsck -t argument. + * Huh, for mount "-t novfat,nfs" means "neither vfat nor nfs"! + * Why here we require "-t novfat,nonfs" ?? + */ +static void compile_fs_type(char *fs_type) +{ + char *s; + int num = 2; + smallint negate; + + s = fs_type; + while ((s = strchr(s, ','))) { + num++; + s++; + } + + G.fs_type_list = xzalloc(num * sizeof(G.fs_type_list[0])); + G.fs_type_flag = xzalloc(num * sizeof(G.fs_type_flag[0])); + G.fs_type_negated = -1; /* not yet known is it negated or not */ + + num = 0; + s = fs_type; + while (1) { + char *comma; + + negate = 0; + if (s[0] == 'n' && s[1] == 'o') { /* "no.." */ + s += 2; + negate = 1; + } else if (s[0] == '!') { + s++; + negate = 1; + } + + if (strcmp(s, "loop") == 0) + /* loop is really short-hand for opts=loop */ + goto loop_special_case; + if (is_prefixed_with(s, "opts=")) { + s += 5; + loop_special_case: + G.fs_type_flag[num] = negate ? FS_TYPE_FLAG_NEGOPT : FS_TYPE_FLAG_OPT; + } else { + if (G.fs_type_negated == -1) + G.fs_type_negated = negate; + if (G.fs_type_negated != negate) + bb_simple_error_msg_and_die( +"either all or none of the filesystem types passed to -t must be prefixed " +"with 'no' or '!'"); + } + comma = strchrnul(s, ','); + G.fs_type_list[num++] = xstrndup(s, comma-s); + if (*comma == '\0') + break; + s = comma + 1; + } +} + +static char **new_args(void) +{ + G.args = xrealloc_vector(G.args, 2, G.num_args); + return &G.args[G.num_args++]; +} + +int fsck_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int fsck_main(int argc UNUSED_PARAM, char **argv) +{ + int i, status; + /*int interactive;*/ + struct fs_info *fs; + const char *fstab; + char *tmp; + char **devices; + int num_devices; + smallint opts_for_fsck; + smallint doall; + smallint notitle; + + INIT_G(); + + /* we want wait() to be interruptible */ + signal_no_SA_RESTART_empty_mask(SIGINT, record_signo); + signal_no_SA_RESTART_empty_mask(SIGTERM, record_signo); + + setbuf(stdout, NULL); + + opts_for_fsck = doall = notitle = 0; + devices = NULL; + num_devices = 0; + new_args(); /* G.args[0] = NULL, will be replaced by fsck. */ + /* G.instance_list = NULL; - in bss, so already zeroed */ + + while (*++argv) { + int j; + int optpos; + char *options; + char *arg = *argv; + + /* "/dev/blk" or "/path" or "UUID=xxx" or "LABEL=xxx" */ + if ((arg[0] == '/' && !opts_for_fsck) || strchr(arg, '=')) { +// FIXME: must check that arg is a blkdev, or resolve +// "/path", "UUID=xxx" or "LABEL=xxx" into block device name +// ("UUID=xxx"/"LABEL=xxx" can probably shifted to fsck.auto duties) + devices = xrealloc_vector(devices, 2, num_devices); + devices[num_devices++] = arg; + continue; + } + + if (arg[0] != '-' || opts_for_fsck) { + *new_args() = arg; + continue; + } + + if (LONE_CHAR(arg + 1, '-')) { /* "--" ? */ + opts_for_fsck = 1; + continue; + } + + optpos = 0; + options = NULL; + for (j = 1; arg[j]; j++) { + switch (arg[j]) { + case 'A': + doall = 1; + break; +#if DO_PROGRESS_INDICATOR + case 'C': + progress = 1; + if (arg[++j]) { /* -Cn */ + progress_fd = xatoi_positive(&arg[j]); + goto next_arg; + } + /* -C n */ + if (!*++argv) + bb_show_usage(); + progress_fd = xatoi_positive(*argv); + goto next_arg; +#endif + case 'V': + G.verbose++; + break; + case 'N': + G.noexecute = 1; + break; + case 'R': + G.skip_root = 1; + break; + case 'T': + notitle = 1; + break; +/* case 'M': + like_mount = 1; + break; */ + case 'P': + G.parallel_root = 1; + break; + case 's': + G.serialize = 1; + break; + case 't': + if (G.fstype) + bb_show_usage(); + if (arg[++j]) + tmp = &arg[j]; + else if (*++argv) + tmp = *argv; + else + bb_show_usage(); + G.fstype = xstrdup(tmp); + compile_fs_type(G.fstype); + goto next_arg; + case '?': + bb_show_usage(); + break; + default: + optpos++; + /* one extra for '\0' */ + options = xrealloc(options, optpos + 2); + options[optpos] = arg[j]; + break; + } + } + next_arg: + if (optpos) { + options[0] = '-'; + options[optpos + 1] = '\0'; + *new_args() = options; + } + } + if (getenv("FSCK_FORCE_ALL_PARALLEL")) + G.force_all_parallel = 1; + tmp = getenv("FSCK_MAX_INST"); + G.max_running = INT_MAX; + if (tmp) + G.max_running = xatoi(tmp); + new_args(); /* G.args[G.num_args - 2] will be replaced by */ + new_args(); /* G.args[G.num_args - 1] is the last, NULL element */ + + if (!notitle) + puts("fsck (busybox "BB_VER")"); + + /* Even plain "fsck /dev/hda1" needs fstab to get fs type, + * so we are scanning it anyway */ + fstab = getenv("FSTAB_FILE"); + if (!fstab) + fstab = "/etc/fstab"; + load_fs_info(fstab); + + /*interactive = (num_devices == 1) | G.serialize;*/ + + if (num_devices == 0) + /*interactive =*/ G.serialize = doall = 1; + if (doall) + return check_all(); + + status = 0; + for (i = 0; i < num_devices; i++) { + if (bb_got_signal) { + kill_all_if_got_signal(); + break; + } + + fs = lookup(devices[i]); + if (!fs) + fs = create_fs_device(devices[i], "", "auto", NULL, -1); + fsck_device(fs /*, interactive */); + + if (G.serialize + || (G.num_running >= G.max_running) + ) { + int exit_status = wait_one(0); + if (exit_status >= 0) + status |= exit_status; + if (G.verbose > 1) + puts("----------------------------------"); + } + } + status |= wait_many(FLAG_WAIT_ALL); + return status; +} diff --git a/busybox-1_37_0/e2fsprogs/lsattr.c b/busybox-1_37_0/e2fsprogs/lsattr.c new file mode 100644 index 000000000..f678f72fb --- /dev/null +++ b/busybox-1_37_0/e2fsprogs/lsattr.c @@ -0,0 +1,153 @@ +/* vi: set sw=4 ts=4: */ +/* + * lsattr.c - List file attributes on an ext2 file system + * + * Copyright (C) 1993, 1994 Remy Card + * Laboratoire MASI, Institut Blaise Pascal + * Universite Pierre et Marie Curie (Paris VI) + * + * This file can be redistributed under the terms of the GNU General + * Public License + */ +//config:config LSATTR +//config: bool "lsattr (5.7 kb)" +//config: default y +//config: help +//config: lsattr lists the file attributes on a second extended file system. + +//applet:IF_LSATTR(APPLET_NOEXEC(lsattr, lsattr, BB_DIR_BIN, BB_SUID_DROP, lsattr)) +/* ls is NOEXEC, so we should be too! ;) */ + +//kbuild:lib-$(CONFIG_LSATTR) += lsattr.o e2fs_lib.o + +//usage:#define lsattr_trivial_usage +//usage: "[-Radlpv] [FILE]..." +//usage:#define lsattr_full_usage "\n\n" +//usage: "List ext2 file attributes\n" +//usage: "\n -R Recurse" +//usage: "\n -a Include names starting with ." +//usage: "\n -d List directory names, not contents" +// -a,-d text should match ls --help +//usage: "\n -l List long flag names" +//usage: "\n -p List project ID" +//usage: "\n -v List version/generation number" + +#include "libbb.h" +#include "e2fs_lib.h" + +enum { + OPT_RECUR = 1 << 0, + OPT_ALL = 1 << 1, + OPT_DIRS_OPT = 1 << 2, + OPT_PF_LONG = 1 << 3, + OPT_GENERATION = 1 << 4, + OPT_PROJID = 1 << 5, +}; + +static void list_attributes(const char *name) +{ + unsigned fsflags; + int fd, r; + + /* There is no way to run needed ioctls on a symlink. + * open(O_PATH | O_NOFOLLOW) _can_ be used to get a fd referring to the symlink, + * but ioctls fail on such a fd (tried on 4.12.0 kernel). + * e2fsprogs-1.46.2 uses open(O_NOFOLLOW), it fails on symlinks. + */ + fd = open_or_warn(name, O_RDONLY | O_NONBLOCK | O_NOCTTY | O_NOFOLLOW); + if (fd < 0) + return; + + if (option_mask32 & OPT_PROJID) { + struct ext2_fsxattr fsxattr; + r = ioctl(fd, EXT2_IOC_FSGETXATTR, &fsxattr); + /* note: ^^^ may fail in 32-bit userspace on 64-bit kernel (seen on 4.12.0) */ + if (r != 0) + goto read_err; + printf("%5u ", (unsigned)fsxattr.fsx_projid); + } + + if (option_mask32 & OPT_GENERATION) { + unsigned generation; + r = ioctl(fd, EXT2_IOC_GETVERSION, &generation); + if (r != 0) + goto read_err; + printf("%-10u ", generation); + } + + r = ioctl(fd, EXT2_IOC_GETFLAGS, &fsflags); + if (r != 0) + goto read_err; + + close(fd); + + if (option_mask32 & OPT_PF_LONG) { + printf("%-28s ", name); + print_e2flags_long(fsflags); + bb_putchar('\n'); + } else { + print_e2flags(fsflags); + printf(" %s\n", name); + } + + return; + read_err: + bb_perror_msg("reading %s", name); + close(fd); +} + +static int FAST_FUNC lsattr_dir_proc(const char *dir_name, + struct dirent *de, + void *private UNUSED_PARAM) +{ + struct stat st; + char *path; + + path = concat_path_file(dir_name, de->d_name); + + if (lstat(path, &st) != 0) + bb_perror_msg("can't stat '%s'", path); + + else if (de->d_name[0] != '.' || (option_mask32 & OPT_ALL)) { + /* Don't try to open device files, fifos etc */ + if (S_ISREG(st.st_mode) || S_ISLNK(st.st_mode) || S_ISDIR(st.st_mode)) + list_attributes(path); + + if (S_ISDIR(st.st_mode) && (option_mask32 & OPT_RECUR) + && !DOT_OR_DOTDOT(de->d_name) + ) { + printf("\n%s:\n", path); + iterate_on_dir(path, lsattr_dir_proc, NULL); + bb_putchar('\n'); + } + } + + free(path); + return 0; +} + +static void lsattr_args(const char *name) +{ + struct stat st; + + if (lstat(name, &st) == -1) { + bb_perror_msg("can't stat '%s'", name); + } else if (S_ISDIR(st.st_mode) && !(option_mask32 & OPT_DIRS_OPT)) { + iterate_on_dir(name, lsattr_dir_proc, NULL); + } else { + list_attributes(name); + } +} + +int lsattr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int lsattr_main(int argc UNUSED_PARAM, char **argv) +{ + getopt32(argv, "Radlvp"); + argv += optind; + + if (!*argv) + *--argv = (char*)"."; + do lsattr_args(*argv++); while (*argv); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/e2fsprogs/tune2fs.c b/busybox-1_37_0/e2fsprogs/tune2fs.c new file mode 100644 index 000000000..f7fcd88bf --- /dev/null +++ b/busybox-1_37_0/e2fsprogs/tune2fs.c @@ -0,0 +1,102 @@ +/* vi: set sw=4 ts=4: */ +/* + * tune2fs: utility to modify EXT2 filesystem + * + * Busybox'ed (2009) by Vladimir Dronnikov + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//config:config TUNE2FS +//config: bool "tune2fs (4.4 kb)" +//config: default n # off: it is too limited compared to upstream version +//config: help +//config: tune2fs allows the system administrator to adjust various tunable +//config: filesystem parameters on Linux ext2/ext3 filesystems. + +//applet:IF_TUNE2FS(APPLET_NOEXEC(tune2fs, tune2fs, BB_DIR_SBIN, BB_SUID_DROP, tune2fs)) + +//TODO alias to "tune2fs -L LABEL": //applet:IF_E2LABEL(APPLET_ODDNAME(e2label, tune2fs, BB_DIR_SBIN, BB_SUID_DROP, e2label)) + +//kbuild:lib-$(CONFIG_TUNE2FS) += tune2fs.o + +//usage:#define tune2fs_trivial_usage +//usage: "[-c MAX_MOUNT_COUNT] " +////usage: "[-e errors-behavior] [-g group] " +//usage: "[-i DAYS] " +////usage: "[-j] [-J journal-options] [-l] [-s sparse-flag] " +////usage: "[-m reserved-blocks-percent] [-o [^]mount-options[,...]] " +////usage: "[-r reserved-blocks-count] [-u user] " +//usage: "[-C MOUNT_COUNT] " +//usage: "[-L LABEL] " +////usage: "[-M last-mounted-dir] [-O [^]feature[,...]] " +////usage: "[-T last-check-time] [-U UUID] " +//usage: "BLOCKDEV" +//usage: +//usage:#define tune2fs_full_usage "\n\n" +//usage: "Adjust filesystem options on ext[23] filesystems" + +#include "libbb.h" +#include +#include "bb_e2fs_defs.h" + +enum { + OPT_L = 1 << 0, // label + OPT_c = 1 << 1, // max mount count + OPT_i = 1 << 2, // check interval + OPT_C = 1 << 3, // current mount count +}; + +int tune2fs_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int tune2fs_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned opts; + const char *label, *str_c, *str_i, *str_C; + struct ext2_super_block *sb; + int fd; + + opts = getopt32(argv, "^" "L:c:i:C:" "\0" "=1", &label, &str_c, &str_i, &str_C); + if (!opts) + bb_show_usage(); + argv += optind; // argv[0] -- device + + // read superblock + fd = xopen(argv[0], O_RDWR); + xlseek(fd, 1024, SEEK_SET); + sb = xzalloc(1024); + xread(fd, sb, 1024); + + // mangle superblock + //STORE_LE(sb->s_wtime, time(NULL)); - why bother? + + if (opts & OPT_C) { + int n = xatoi_range(str_C, 1, 0xfffe); + STORE_LE(sb->s_mnt_count, (unsigned)n); + } + + // set the label + if (opts & OPT_L) + safe_strncpy((char *)sb->s_volume_name, label, sizeof(sb->s_volume_name)); + + if (opts & OPT_c) { + int n = xatoi_range(str_c, -1, 0xfffe); + if (n == 0) + n = -1; + STORE_LE(sb->s_max_mnt_count, (unsigned)n); + } + + if (opts & OPT_i) { + unsigned n = xatou_range(str_i, 0, (unsigned)0xffffffff / (24*60*60)) * 24*60*60; + STORE_LE(sb->s_checkinterval, n); + } + + // write superblock + xlseek(fd, 1024, SEEK_SET); + xwrite(fd, sb, 1024); + + if (ENABLE_FEATURE_CLEAN_UP) { + free(sb); + } + + xclose(fd); + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/editors/Config.src b/busybox-1_37_0/editors/Config.src new file mode 100644 index 000000000..3b2e4a6c0 --- /dev/null +++ b/busybox-1_37_0/editors/Config.src @@ -0,0 +1,18 @@ +# +# For a description of the syntax of this configuration file, +# see docs/Kconfig-language.txt. +# + +menu "Editors" + +INSERT + +config FEATURE_ALLOW_EXEC + bool "Allow vi and awk to execute shell commands" + default y + depends on VI || AWK + help + Enables vi and awk features which allow user to execute + shell commands (using system() C call). + +endmenu diff --git a/busybox-1_37_0/editors/Kbuild.src b/busybox-1_37_0/editors/Kbuild.src new file mode 100644 index 000000000..6b4fb7470 --- /dev/null +++ b/busybox-1_37_0/editors/Kbuild.src @@ -0,0 +1,9 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2005 by Erik Andersen +# +# Licensed under GPLv2, see file LICENSE in this source tree. + +lib-y:= + +INSERT diff --git a/busybox-1_37_0/editors/awk.c b/busybox-1_37_0/editors/awk.c new file mode 100644 index 000000000..64e752f4b --- /dev/null +++ b/busybox-1_37_0/editors/awk.c @@ -0,0 +1,3893 @@ +/* vi: set sw=4 ts=4: */ +/* + * awk implementation for busybox + * + * Copyright (C) 2002 by Dmitry Zakharov + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config AWK +//config: bool "awk (24 kb)" +//config: default y +//config: help +//config: Awk is used as a pattern scanning and processing language. +//config: +//config:config FEATURE_AWK_LIBM +//config: bool "Enable math functions (requires libm)" +//config: default y +//config: depends on AWK +//config: help +//config: Enable math functions of the Awk programming language. +//config: NOTE: This requires libm to be present for linking. +//config: +//config:config FEATURE_AWK_GNU_EXTENSIONS +//config: bool "Enable a few GNU extensions" +//config: default y +//config: depends on AWK +//config: help +//config: Enable a few features from gawk: +//config: * command line option -e AWK_PROGRAM +//config: * simultaneous use of -f and -e on the command line. +//config: This enables the use of awk library files. +//config: Example: awk -f mylib.awk -e '{print myfunction($1);}' ... + +//applet:IF_AWK(APPLET_NOEXEC(awk, awk, BB_DIR_USR_BIN, BB_SUID_DROP, awk)) + +//kbuild:lib-$(CONFIG_AWK) += awk.o + +//usage:#define awk_trivial_usage +//usage: "[OPTIONS] [AWK_PROGRAM] [FILE]..." +//usage:#define awk_full_usage "\n\n" +//usage: " -v VAR=VAL Set variable" +//usage: "\n -F SEP Use SEP as field separator" +//usage: "\n -f/-E FILE Read program from FILE" +//usage: IF_FEATURE_AWK_GNU_EXTENSIONS( +//usage: "\n -e AWK_PROGRAM" +//usage: ) + +#include "libbb.h" +#include "xregex.h" +#include + +/* This is a NOEXEC applet. Be very careful! */ + + +/* If you comment out one of these below, it will be #defined later + * to perform debug printfs to stderr: */ +#define debug_printf_walker(...) do {} while (0) +#define debug_printf_eval(...) do {} while (0) +#define debug_printf_parse(...) do {} while (0) + +#ifndef debug_printf_walker +# define debug_printf_walker(...) (fprintf(stderr, __VA_ARGS__)) +#endif +#ifndef debug_printf_eval +# define debug_printf_eval(...) (fprintf(stderr, __VA_ARGS__)) +#endif +#ifndef debug_printf_parse +# define debug_printf_parse(...) (fprintf(stderr, __VA_ARGS__)) +#else +# define debug_parse_print_tc(...) ((void)0) +#endif + + +/* "+": stop on first non-option: + * $ awk 'BEGIN { for(i=1; i >> */ +#define TC_UOPPOST (1 << 4) /* unary postfix operator ++ -- */ +#define TC_UOPPRE1 (1 << 5) /* unary prefix operator ++ -- $ */ +#define TC_BINOPX (1 << 6) /* two-opnd operator */ +#define TC_IN (1 << 7) /* 'in' */ +#define TC_COMMA (1 << 8) /* , */ +#define TC_PIPE (1 << 9) /* input redirection pipe | */ +#define TC_UOPPRE2 (1 << 10) /* unary prefix operator + - ! */ +#define TC_ARRTERM (1 << 11) /* ] */ +#define TC_LBRACE (1 << 12) /* { */ +#define TC_RBRACE (1 << 13) /* } */ +#define TC_SEMICOL (1 << 14) /* ; */ +#define TC_NEWLINE (1 << 15) +#define TC_STATX (1 << 16) /* ctl statement (for, next...) */ +#define TC_WHILE (1 << 17) /* 'while' */ +#define TC_ELSE (1 << 18) /* 'else' */ +#define TC_BUILTIN (1 << 19) +/* This costs ~50 bytes of code. + * A separate class to support deprecated "length" form. If we don't need that + * (i.e. if we demand that only "length()" with () is valid), then TC_LENGTH + * can be merged with TC_BUILTIN: + */ +#define TC_LENGTH (1 << 20) /* 'length' */ +#define TC_GETLINE (1 << 21) /* 'getline' */ +#define TC_FUNCDECL (1 << 22) /* 'function' 'func' */ +#define TC_BEGIN (1 << 23) /* 'BEGIN' */ +#define TC_END (1 << 24) /* 'END' */ +#define TC_EOF (1 << 25) +#define TC_VARIABLE (1 << 26) /* name */ +#define TC_ARRAY (1 << 27) /* name[ */ +#define TC_FUNCTION (1 << 28) /* name( */ +#define TC_STRING (1 << 29) /* "..." */ +#define TC_NUMBER (1 << 30) + +#ifndef debug_parse_print_tc +static void debug_parse_print_tc(uint32_t n) +{ + if (n & TC_LPAREN ) debug_printf_parse(" LPAREN" ); + if (n & TC_RPAREN ) debug_printf_parse(" RPAREN" ); + if (n & TC_REGEXP ) debug_printf_parse(" REGEXP" ); + if (n & TC_OUTRDR ) debug_printf_parse(" OUTRDR" ); + if (n & TC_UOPPOST ) debug_printf_parse(" UOPPOST" ); + if (n & TC_UOPPRE1 ) debug_printf_parse(" UOPPRE1" ); + if (n & TC_BINOPX ) debug_printf_parse(" BINOPX" ); + if (n & TC_IN ) debug_printf_parse(" IN" ); + if (n & TC_COMMA ) debug_printf_parse(" COMMA" ); + if (n & TC_PIPE ) debug_printf_parse(" PIPE" ); + if (n & TC_UOPPRE2 ) debug_printf_parse(" UOPPRE2" ); + if (n & TC_ARRTERM ) debug_printf_parse(" ARRTERM" ); + if (n & TC_LBRACE ) debug_printf_parse(" LBRACE" ); + if (n & TC_RBRACE ) debug_printf_parse(" RBRACE" ); + if (n & TC_SEMICOL ) debug_printf_parse(" SEMICOL" ); + if (n & TC_NEWLINE ) debug_printf_parse(" NEWLINE" ); + if (n & TC_STATX ) debug_printf_parse(" STATX" ); + if (n & TC_WHILE ) debug_printf_parse(" WHILE" ); + if (n & TC_ELSE ) debug_printf_parse(" ELSE" ); + if (n & TC_BUILTIN ) debug_printf_parse(" BUILTIN" ); + if (n & TC_LENGTH ) debug_printf_parse(" LENGTH" ); + if (n & TC_GETLINE ) debug_printf_parse(" GETLINE" ); + if (n & TC_FUNCDECL) debug_printf_parse(" FUNCDECL"); + if (n & TC_BEGIN ) debug_printf_parse(" BEGIN" ); + if (n & TC_END ) debug_printf_parse(" END" ); + if (n & TC_EOF ) debug_printf_parse(" EOF" ); + if (n & TC_VARIABLE) debug_printf_parse(" VARIABLE"); + if (n & TC_ARRAY ) debug_printf_parse(" ARRAY" ); + if (n & TC_FUNCTION) debug_printf_parse(" FUNCTION"); + if (n & TC_STRING ) debug_printf_parse(" STRING" ); + if (n & TC_NUMBER ) debug_printf_parse(" NUMBER" ); +} +#endif + +/* combined token classes ("token [class] sets") */ +#define TS_UOPPRE (TC_UOPPRE1 | TC_UOPPRE2) + +#define TS_BINOP (TC_BINOPX | TC_COMMA | TC_PIPE | TC_IN) +//#define TS_UNARYOP (TS_UOPPRE | TC_UOPPOST) +#define TS_OPERAND (TC_VARIABLE | TC_ARRAY | TC_FUNCTION \ + | TC_BUILTIN | TC_LENGTH | TC_GETLINE \ + | TC_LPAREN | TC_STRING | TC_NUMBER) + +#define TS_LVALUE (TC_VARIABLE | TC_ARRAY) +#define TS_STATEMNT (TC_STATX | TC_WHILE) + +/* word tokens, cannot mean something else if not expected */ +#define TS_WORD (TC_IN | TS_STATEMNT | TC_ELSE \ + | TC_BUILTIN | TC_LENGTH | TC_GETLINE \ + | TC_FUNCDECL | TC_BEGIN | TC_END) + +/* discard newlines after these */ +#define TS_NOTERM (TS_BINOP | TC_COMMA | TC_LBRACE | TC_RBRACE \ + | TC_SEMICOL | TC_NEWLINE) + +/* what can expression begin with */ +#define TS_OPSEQ (TS_OPERAND | TS_UOPPRE | TC_REGEXP) +/* what can group begin with */ +#define TS_GRPSEQ (TS_OPSEQ | TS_STATEMNT \ + | TC_SEMICOL | TC_NEWLINE | TC_LBRACE) + +/* if previous token class is CONCAT_L and next is CONCAT_R, concatenation */ +/* operator is inserted between them */ +#define TS_CONCAT_L (TC_VARIABLE | TC_ARRTERM | TC_RPAREN \ + | TC_STRING | TC_NUMBER | TC_UOPPOST \ + | TC_LENGTH) +#define TS_CONCAT_R (TS_OPERAND | TS_UOPPRE) + +#define OF_RES1 0x010000 /* evaluate(left_node) */ +#define OF_RES2 0x020000 /* evaluate(right_node) */ +#define OF_STR1 0x040000 /* ...and use its string value */ +#define OF_STR2 0x080000 /* ...and use its string value */ +#define OF_NUM1 0x100000 /* ...and use its numeric value */ +#define OF_REQUIRED 0x200000 /* left_node must not be NULL */ +#define OF_CHECKED 0x400000 /* range pattern flip-flop bit */ + +/* combined operator flags */ +#define xx 0 +#define xV OF_RES2 +#define xS (OF_RES2 | OF_STR2) +#define Vx OF_RES1 +#define Rx OF_REQUIRED +#define VV (OF_RES1 | OF_RES2) +#define Nx (OF_RES1 | OF_NUM1) +#define NV (OF_RES1 | OF_NUM1 | OF_RES2) +#define Sx (OF_RES1 | OF_STR1) +#define SV (OF_RES1 | OF_STR1 | OF_RES2) +#define SS (OF_RES1 | OF_STR1 | OF_RES2 | OF_STR2) + +#define OPCLSMASK 0xFF00 +#define OPNMASK 0x007F + +/* operator precedence is the highest byte (even: r->l, odd: l->r grouping) + * (for builtins the byte has a different meaning) + */ +#undef P +#undef PRIMASK +#undef PRIMASK2 +#define PRIMASK 0x7F000000 +#define PRIMASK2 0x7E000000 +/* Smaller 'x' means _higher_ operator precedence */ +#define PRECEDENCE(x) (x << 24) +#define P(x) PRECEDENCE(x) +#define LOWEST_PRECEDENCE PRIMASK + +/* Operation classes */ +#define SHIFT_TIL_THIS 0x0600 +#define RECUR_FROM_THIS 0x1000 +enum { + OC_DELETE = 0x0100, OC_EXEC = 0x0200, OC_NEWSOURCE = 0x0300, + OC_PRINT = 0x0400, OC_PRINTF = 0x0500, OC_WALKINIT = 0x0600, + + OC_BR = 0x0700, OC_BREAK = 0x0800, OC_CONTINUE = 0x0900, + OC_EXIT = 0x0a00, OC_NEXT = 0x0b00, OC_NEXTFILE = 0x0c00, + OC_TEST = 0x0d00, OC_WALKNEXT = 0x0e00, + + OC_BINARY = 0x1000, OC_BUILTIN = 0x1100, OC_COLON = 0x1200, + OC_COMMA = 0x1300, OC_COMPARE = 0x1400, OC_CONCAT = 0x1500, + OC_FBLTIN = 0x1600, OC_FIELD = 0x1700, OC_FNARG = 0x1800, + OC_FUNC = 0x1900, OC_GETLINE = 0x1a00, OC_IN = 0x1b00, + OC_LAND = 0x1c00, OC_LOR = 0x1d00, OC_MATCH = 0x1e00, + OC_MOVE = 0x1f00, OC_PGETLINE = 0x2000, OC_REGEXP = 0x2100, + OC_REPLACE = 0x2200, OC_RETURN = 0x2300, OC_SPRINTF = 0x2400, + OC_TERNARY = 0x2500, OC_UNARY = 0x2600, OC_VAR = 0x2700, + OC_CONST = 0x2800, OC_DONE = 0x2900, + + ST_IF = 0x3000, ST_DO = 0x3100, ST_FOR = 0x3200, + ST_WHILE = 0x3300 +}; + +/* simple builtins */ +enum { + F_in, F_rn, F_co, F_ex, F_lg, F_si, F_sq, F_sr, + F_ti, F_le, F_sy, F_ff, F_cl +}; + +/* builtins */ +enum { + B_a2, B_ix, B_ma, B_sp, B_ss, B_ti, B_mt, B_lo, B_up, + B_ge, B_gs, B_su, + B_an, B_co, B_ls, B_or, B_rs, B_xo, +}; + +/* tokens and their corresponding info values */ + +#define NTC "\377" /* switch to next token class (tc<<1) */ +#define NTCC '\377' + +static const char tokenlist[] ALIGN1 = + "\1(" NTC /* TC_LPAREN */ + "\1)" NTC /* TC_RPAREN */ + "\1/" NTC /* TC_REGEXP */ + "\2>>" "\1>" "\1|" NTC /* TC_OUTRDR */ + "\2++" "\2--" NTC /* TC_UOPPOST */ + "\2++" "\2--" "\1$" NTC /* TC_UOPPRE1 */ + "\2==" "\1=" "\2+=" "\2-=" /* TC_BINOPX */ + "\2*=" "\2/=" "\2%=" "\2^=" + "\1+" "\1-" "\3**=" "\2**" + "\1/" "\1%" "\1^" "\1*" + "\2!=" "\2>=" "\2<=" "\1>" + "\1<" "\2!~" "\1~" "\2&&" + "\2||" "\1?" "\1:" NTC + "\2in" NTC /* TC_IN */ + "\1," NTC /* TC_COMMA */ + "\1|" NTC /* TC_PIPE */ + "\1+" "\1-" "\1!" NTC /* TC_UOPPRE2 */ + "\1]" NTC /* TC_ARRTERM */ + "\1{" NTC /* TC_LBRACE */ + "\1}" NTC /* TC_RBRACE */ + "\1;" NTC /* TC_SEMICOL */ + "\1\n" NTC /* TC_NEWLINE */ + "\2if" "\2do" "\3for" "\5break" /* TC_STATX */ + "\10continue" "\6delete" "\5print" + "\6printf" "\4next" "\10nextfile" + "\6return" "\4exit" NTC + "\5while" NTC /* TC_WHILE */ + "\4else" NTC /* TC_ELSE */ + "\3and" "\5compl" "\6lshift" "\2or" /* TC_BUILTIN */ + "\6rshift" "\3xor" + "\5close" "\6system" "\6fflush" "\5atan2" + "\3cos" "\3exp" "\3int" "\3log" + "\4rand" "\3sin" "\4sqrt" "\5srand" + "\6gensub" "\4gsub" "\5index" /* "\6length" was here */ + "\5match" "\5split" "\7sprintf" "\3sub" + "\6substr" "\7systime" "\10strftime" "\6mktime" + "\7tolower" "\7toupper" NTC + "\6length" NTC /* TC_LENGTH */ + "\7getline" NTC /* TC_GETLINE */ + "\4func" "\10function" NTC /* TC_FUNCDECL */ + "\5BEGIN" NTC /* TC_BEGIN */ + "\3END" /* TC_END */ + /* compiler adds trailing "\0" */ + ; + +static const uint32_t tokeninfo[] ALIGN4 = { + 0, /* ( */ + 0, /* ) */ +#define TI_REGEXP OC_REGEXP + TI_REGEXP, /* / */ + /* >> > | */ + xS|'a', xS|'w', xS|'|', + /* ++ -- */ + OC_UNARY|xV|P(9)|'p', OC_UNARY|xV|P(9)|'m', +#define TI_PREINC (OC_UNARY|xV|P(9)|'P') +#define TI_PREDEC (OC_UNARY|xV|P(9)|'M') + /* ++ -- $ */ + TI_PREINC, TI_PREDEC, OC_FIELD|xV|P(5), + /* == = += -= */ + OC_COMPARE|VV|P(39)|5, OC_MOVE|VV|P(74), OC_REPLACE|NV|P(74)|'+', OC_REPLACE|NV|P(74)|'-', + /* *= /= %= ^= (^ is exponentiation, NOT xor) */ + OC_REPLACE|NV|P(74)|'*', OC_REPLACE|NV|P(74)|'/', OC_REPLACE|NV|P(74)|'%', OC_REPLACE|NV|P(74)|'&', + /* + - **= ** */ + OC_BINARY|NV|P(29)|'+', OC_BINARY|NV|P(29)|'-', OC_REPLACE|NV|P(74)|'&', OC_BINARY|NV|P(15)|'&', + /* / % ^ * */ + OC_BINARY|NV|P(25)|'/', OC_BINARY|NV|P(25)|'%', OC_BINARY|NV|P(15)|'&', OC_BINARY|NV|P(25)|'*', + /* != >= <= > */ + OC_COMPARE|VV|P(39)|4, OC_COMPARE|VV|P(39)|3, OC_COMPARE|VV|P(39)|0, OC_COMPARE|VV|P(39)|1, +#define TI_LESS (OC_COMPARE|VV|P(39)|2) + /* < !~ ~ && */ + TI_LESS, OC_MATCH|Sx|P(45)|'!', OC_MATCH|Sx|P(45)|'~', OC_LAND|Vx|P(55), +#define TI_TERNARY (OC_TERNARY|Vx|P(64)|'?') +#define TI_COLON (OC_COLON|xx|P(67)|':') + /* || ? : */ + OC_LOR|Vx|P(59), TI_TERNARY, TI_COLON, +#define TI_IN (OC_IN|SV|P(49)) + TI_IN, +#define TI_COMMA (OC_COMMA|SS|P(80)) + TI_COMMA, +#define TI_PGETLINE (OC_PGETLINE|SV|P(37)) + TI_PGETLINE, /* | */ + /* + - ! */ + OC_UNARY|xV|P(19)|'+', OC_UNARY|xV|P(19)|'-', OC_UNARY|xV|P(19)|'!', + 0, /* ] */ + 0, /* { */ + 0, /* } */ + 0, /* ; */ + 0, /* \n */ + ST_IF, ST_DO, ST_FOR, OC_BREAK, + OC_CONTINUE, OC_DELETE|Rx, OC_PRINT, + OC_PRINTF, OC_NEXT, OC_NEXTFILE, + OC_RETURN|Vx, OC_EXIT|Nx, + ST_WHILE, + 0, /* else */ +// OC_B's are builtins with enforced minimum number of arguments (two upper bits). +// Highest byte bit pattern: nn s3s2s1 v3v2v1 +// nn - min. number of args, sN - resolve Nth arg to string, vN - resolve to var +// OC_F's are builtins with zero or one argument. +// |Rx| enforces that arg is present for: system, close, cos, sin, exp, int, log, sqrt +// Check for no args is present in builtins' code (not in this table): rand, systime +// Have one _optional_ arg: fflush, srand, length +#define OC_B OC_BUILTIN +#define OC_F OC_FBLTIN +#define A1 P(0x40) /*one arg*/ +#define A2 P(0x80) /*two args*/ +#define A3 P(0xc0) /*three args*/ +#define __v P(1) +#define _vv P(3) +#define __s__v P(9) +#define __s_vv P(0x0b) +#define __svvv P(0x0f) +#define _ss_vv P(0x1b) +#define _s_vv_ P(0x16) +#define ss_vv_ P(0x36) + OC_B|B_an|_vv|A2, OC_B|B_co|__v|A1, OC_B|B_ls|_vv|A2, OC_B|B_or|_vv|A2, // and compl lshift or + OC_B|B_rs|_vv|A2, OC_B|B_xo|_vv|A2, // rshift xor + OC_F|F_cl|Sx|Rx, OC_F|F_sy|Sx|Rx, OC_F|F_ff|Sx, OC_B|B_a2|_vv|A2, // close system fflush atan2 + OC_F|F_co|Nx|Rx, OC_F|F_ex|Nx|Rx, OC_F|F_in|Nx|Rx, OC_F|F_lg|Nx|Rx, // cos exp int log + OC_F|F_rn, OC_F|F_si|Nx|Rx, OC_F|F_sq|Nx|Rx, OC_F|F_sr|Nx, // rand sin sqrt srand + OC_B|B_ge|_s_vv_|A3,OC_B|B_gs|ss_vv_|A2,OC_B|B_ix|_ss_vv|A2, // gensub gsub index /*length was here*/ + OC_B|B_ma|__s__v|A2,OC_B|B_sp|__s_vv|A2,OC_SPRINTF, OC_B|B_su|ss_vv_|A2,// match split sprintf sub + OC_B|B_ss|__svvv|A2,OC_F|F_ti, OC_B|B_ti|__s_vv, OC_B|B_mt|__s_vv|A1,// substr systime strftime mktime + OC_B|B_lo|__s__v|A1,OC_B|B_up|__s__v|A1, // tolower toupper + OC_F|F_le|Sx, // length + OC_GETLINE|SV, // getline + 0, 0, // func function + 0, // BEGIN + 0 // END +#undef A1 +#undef A2 +#undef A3 +#undef OC_B +#undef OC_F +}; + +/* gawk 5.1.1 manpage says the precedence of comparisons and assignments are as follows: + * ...... + * < > <= >= == != + * ~ !~ + * in + * && + * || + * ?: + * = += -= *= /= %= ^= + * But there are some abnormalities: + * awk 'BEGIN { print v=3==3,v }' - ok: + * 1 1 + * awk 'BEGIN { print 3==v=3,v }' - wrong, (3==v)=3 is not a valid assignment: + * 1 3 + * This also unexpectedly works: echo "foo" | awk '$1==$1="foo" {print $1}' + * More than one comparison op fails to parse: + * awk 'BEGIN { print 3==3==3 }' - syntax error (wrong, should work) + * awk 'BEGIN { print 3==3!=3 }' - syntax error (wrong, should work) + * + * The ternary a?b:c works as follows in gawk: "a" can't be assignment + * ("= has lower precedence than ?") but inside "b" or "c", assignment + * is higher precedence: + * awk 'BEGIN { u=v=w=1; print u=0?v=4:w=5; print u,v,w }' + * 5 + * 5 1 5 + * This differs from C and shell's "test" rules for ?: which have implicit () + * around "b" in ?:, but not around "c" - they would barf on "w=5" above. + * gawk allows nesting of ?: - this works: + * u=0?v=4?5:6:w=7?8:9 means u=0?(v=4?5:6):(w=7?8:9) + * bbox is buggy here, requires parens: "u=0?(v=4):(w=5)" + */ + +/* internal variable names and their initial values */ +/* asterisk marks SPECIAL vars; $ is just no-named Field0 */ +enum { + CONVFMT, OFMT, FS, OFS, + ORS, RS, RT, FILENAME, + SUBSEP, F0, ARGIND, ARGC, + ARGV, ERRNO, FNR, NR, + NF, IGNORECASE, ENVIRON, NUM_INTERNAL_VARS +}; + +static const char vNames[] ALIGN1 = + "CONVFMT\0" "OFMT\0" "FS\0*" "OFS\0" + "ORS\0" "RS\0*" "RT\0" "FILENAME\0" + "SUBSEP\0" "$\0*" "ARGIND\0" "ARGC\0" + "ARGV\0" "ERRNO\0" "FNR\0" "NR\0" + "NF\0*" "IGNORECASE\0*" "ENVIRON\0" "\0"; + +static const char vValues[] ALIGN1 = + "%.6g\0" "%.6g\0" " \0" " \0" + "\n\0" "\n\0" "\0" "\0" + "\034\0" "\0" "\377"; +#define str_percent_dot_6g vValues + +/* hash size may grow to these values */ +#define FIRST_PRIME 61 +static const uint16_t PRIMES[] ALIGN2 = { 251, 1021, 4093, 16381, 65521 }; + + +/* Globals. Split in two parts so that first one is addressed + * with (mostly short) negative offsets. + * NB: it's unsafe to put members of type "double" + * into globals2 (gcc may fail to align them). + */ +struct globals { + double t_double; + chain beginseq, mainseq, endseq; + chain *seq; + node *break_ptr, *continue_ptr; + xhash *ahash; /* argument names, used only while parsing function bodies */ + xhash *fnhash; /* function names, used only in parsing stage */ + xhash *vhash; /* variables and arrays */ + //xhash *fdhash; /* file objects, used only in execution stage */ + //we are reusing ahash as fdhash, via define (see later) + const char *g_progname; + int g_lineno; + int num_fields; /* number of existing $N's */ + unsigned num_alloc_fields; /* current size of Fields[] */ + /* NB: Fields[0] corresponds to $1, not to $0 */ + var *Fields; + char *g_pos; + char g_saved_ch; + smallint got_program; + smallint icase; + smallint exiting; + smallint nextrec; + smallint nextfile; + smallint is_f0_split; + smallint t_rollback; + + /* former statics from various functions */ + smallint next_token__concat_inserted; + uint32_t next_token__save_tclass; + uint32_t next_token__save_info; +}; +struct globals2 { + uint32_t t_info; /* often used */ + uint32_t t_tclass; + char *t_string; + int t_lineno; + + var *intvar[NUM_INTERNAL_VARS]; /* often used */ + + rstream iF; + + /* former statics from various functions */ + char *split_f0__fstrings; + + unsigned next_input_file__argind; + smallint next_input_file__input_file_seen; + + smalluint exitcode; + + unsigned evaluate__seed; + var *evaluate__fnargs; + regex_t evaluate__sreg; + + var ptest__tmpvar; + var awk_printf__tmpvar; + var as_regex__tmpvar; + var exit__tmpvar; + var main__tmpvar; + + tsplitter exec_builtin__tspl; + + /* biggest and least used members go last */ + tsplitter fsplitter, rsplitter; + + char g_buf[MAXVARFMT + 1]; +}; +#define G1 (ptr_to_globals[-1]) +#define G (*(struct globals2 *)ptr_to_globals) +/* For debug. nm --size-sort awk.o | grep -vi ' [tr] ' */ +//char G1size[sizeof(G1)]; // 0x70 +//char Gsize[sizeof(G)]; // 0x2f8 +/* Trying to keep most of members accessible with short offsets: */ +//char Gofs_seed[offsetof(struct globals2, evaluate__seed)]; // 0x7c +#define t_double (G1.t_double ) +#define beginseq (G1.beginseq ) +#define mainseq (G1.mainseq ) +#define endseq (G1.endseq ) +#define seq (G1.seq ) +#define break_ptr (G1.break_ptr ) +#define continue_ptr (G1.continue_ptr) +#define ahash (G1.ahash ) +#define fnhash (G1.fnhash ) +#define vhash (G1.vhash ) +#define fdhash ahash +//^^^^^^^^^^^^^^^^^^ ahash is cleared after every function parsing, +// and ends up empty after parsing phase. Thus, we can simply reuse it +// for fdhash in execution stage. +#define g_progname (G1.g_progname ) +#define g_lineno (G1.g_lineno ) +#define num_fields (G1.num_fields ) +#define num_alloc_fields (G1.num_alloc_fields) +#define Fields (G1.Fields ) +#define g_pos (G1.g_pos ) +#define g_saved_ch (G1.g_saved_ch ) +#define got_program (G1.got_program ) +#define icase (G1.icase ) +#define exiting (G1.exiting ) +#define nextrec (G1.nextrec ) +#define nextfile (G1.nextfile ) +#define is_f0_split (G1.is_f0_split ) +#define t_rollback (G1.t_rollback ) +#define t_info (G.t_info ) +#define t_tclass (G.t_tclass ) +#define t_string (G.t_string ) +#define t_lineno (G.t_lineno ) +#define intvar (G.intvar ) +#define iF (G.iF ) +#define fsplitter (G.fsplitter ) +#define rsplitter (G.rsplitter ) +#define g_buf (G.g_buf ) +#define INIT_G() do { \ + SET_PTR_TO_GLOBALS((char*)xzalloc(sizeof(G1)+sizeof(G)) + sizeof(G1)); \ + t_tclass = TC_NEWLINE; \ + G.evaluate__seed = 1; \ +} while (0) + +static const char EMSG_UNEXP_EOS[] ALIGN1 = "Unexpected end of string"; +static const char EMSG_UNEXP_TOKEN[] ALIGN1 = "Unexpected token"; +static const char EMSG_DIV_BY_ZERO[] ALIGN1 = "Division by zero"; +static const char EMSG_INV_FMT[] ALIGN1 = "Invalid format specifier"; +static const char EMSG_TOO_FEW_ARGS[] ALIGN1 = "Too few arguments"; +static const char EMSG_NOT_ARRAY[] ALIGN1 = "Not an array"; +static const char EMSG_POSSIBLE_ERROR[] ALIGN1 = "Possible syntax error"; +static const char EMSG_UNDEF_FUNC[] ALIGN1 = "Call to undefined function"; +static const char EMSG_NO_MATH[] ALIGN1 = "Math support is not compiled in"; +static const char EMSG_NEGATIVE_FIELD[] ALIGN1 = "Access to negative field"; + +static int awk_exit(void) NORETURN; + +static void syntax_error(const char *message) NORETURN; +static void syntax_error(const char *message) +{ + bb_error_msg_and_die("%s:%i: %s", g_progname, g_lineno, message); +} + +/* ---- hash stuff ---- */ + +static unsigned hashidx(const char *name) +{ + unsigned idx = 0; + + while (*name) + idx = *name++ + (idx << 6) - idx; + return idx; +} + +/* create new hash */ +static xhash *hash_init(void) +{ + xhash *newhash; + + newhash = xzalloc(sizeof(*newhash)); + newhash->csize = FIRST_PRIME; + newhash->items = xzalloc(FIRST_PRIME * sizeof(newhash->items[0])); + + return newhash; +} + +static void hash_clear(xhash *hash) +{ + unsigned i; + hash_item *hi, *thi; + + for (i = 0; i < hash->csize; i++) { + hi = hash->items[i]; + while (hi) { + thi = hi; + hi = hi->next; +//FIXME: this assumes that it's a hash of *variables*: + free(thi->data.v.string); + free(thi); + } + hash->items[i] = NULL; + } + hash->glen = hash->nel = 0; +} + +#if 0 //UNUSED +static void hash_free(xhash *hash) +{ + hash_clear(hash); + free(hash->items); + free(hash); +} +#endif + +/* find item in hash, return ptr to data, NULL if not found */ +static NOINLINE void *hash_search3(xhash *hash, const char *name, unsigned idx) +{ + hash_item *hi; + + hi = hash->items[idx % hash->csize]; + while (hi) { + if (strcmp(hi->name, name) == 0) + return &hi->data; + hi = hi->next; + } + return NULL; +} + +static void *hash_search(xhash *hash, const char *name) +{ + return hash_search3(hash, name, hashidx(name)); +} + +/* grow hash if it becomes too big */ +static void hash_rebuild(xhash *hash) +{ + unsigned newsize, i, idx; + hash_item **newitems, *hi, *thi; + + if (hash->nprime == ARRAY_SIZE(PRIMES)) + return; + + newsize = PRIMES[hash->nprime++]; + newitems = xzalloc(newsize * sizeof(newitems[0])); + + for (i = 0; i < hash->csize; i++) { + hi = hash->items[i]; + while (hi) { + thi = hi; + hi = thi->next; + idx = hashidx(thi->name) % newsize; + thi->next = newitems[idx]; + newitems[idx] = thi; + } + } + + free(hash->items); + hash->csize = newsize; + hash->items = newitems; +} + +/* find item in hash, add it if necessary. Return ptr to data */ +static void *hash_find(xhash *hash, const char *name) +{ + hash_item *hi; + unsigned idx; + int l; + + idx = hashidx(name); + hi = hash_search3(hash, name, idx); + if (!hi) { + if (++hash->nel > hash->csize * 8) + hash_rebuild(hash); + + l = strlen(name) + 1; + hi = xzalloc(sizeof(*hi) + l); + strcpy(hi->name, name); + + idx = idx % hash->csize; + hi->next = hash->items[idx]; + hash->items[idx] = hi; + hash->glen += l; + } + return &hi->data; +} + +#define findvar(hash, name) ((var*) hash_find((hash), (name))) +#define newvar(name) ((var*) hash_find(vhash, (name))) +#define newfile(name) ((rstream*)hash_find(fdhash, (name))) +#define newfunc(name) ((func*) hash_find(fnhash, (name))) + +static void hash_remove(xhash *hash, const char *name) +{ + hash_item *hi, **phi; + + phi = &hash->items[hashidx(name) % hash->csize]; + while (*phi) { + hi = *phi; + if (strcmp(hi->name, name) == 0) { + hash->glen -= (strlen(name) + 1); + hash->nel--; + *phi = hi->next; + free(hi); + break; + } + phi = &hi->next; + } +} + +/* ------ some useful functions ------ */ + +static char *skip_spaces(char *p) +{ + for (;;) { + if (*p == '\\' && p[1] == '\n') { + p++; + t_lineno++; + } else if (*p != ' ' && *p != '\t') { + break; + } + p++; + } + return p; +} + +/* returns old *s, advances *s past word and terminating NUL */ +static char *nextword(char **s) +{ + char *p = *s; + char *q = p; + while (*q++ != '\0') + continue; + *s = q; + return p; +} + +static char nextchar(char **s) +{ + char c, *pps; + again: + c = *(*s)++; + pps = *s; + if (c == '\\') + c = bb_process_escape_sequence((const char**)s); + /* Example awk statement: + * s = "abc\"def" + * we must treat \" as " + */ + if (c == '\\' && *s == pps) { /* unrecognized \z? */ + c = *(*s); /* yes, fetch z */ + if (c) { /* advance unless z = NUL */ + (*s)++; + if (c == '\n') /* \? eat it */ + goto again; + } + } + return c; +} + +/* TODO: merge with strcpy_and_process_escape_sequences()? + */ +static void unescape_string_in_place(char *s1) +{ + char *s = s1; + while ((*s1 = nextchar(&s)) != '\0') + s1++; +} + +static ALWAYS_INLINE int isalnum_(int c) +{ + return (isalnum(c) || c == '_'); +} + +static double my_strtod(char **pp) +{ + char *cp = *pp; + return strtod(cp, pp); +} +#if ENABLE_DESKTOP +static double my_strtod_or_hexoct(char **pp) +{ + char *cp = *pp; + if (cp[0] == '0') { + /* Might be hex or octal integer: 0x123abc or 07777 */ + char c = (cp[1] | 0x20); + if (c == 'x' || isdigit(cp[1])) { + unsigned long long ull = strtoull(cp, pp, 0); + if (c == 'x') + return ull; + c = **pp; + if (!isdigit(c) && c != '.') + return ull; + /* else: it may be a floating number. Examples: + * 009.123 (*pp points to '9') + * 000.123 (*pp points to '.') + * fall through to strtod. + */ + } + } + return strtod(cp, pp); +} +#else +# define my_strtod_or_hexoct(p) my_strtod(p) +#endif + +/* -------- working with variables (set/get/copy/etc) -------- */ + +static const char *fmt_num(const char *format, double n) +{ + if (n == (long long)n) { + snprintf(g_buf, MAXVARFMT, "%lld", (long long)n); + } else { + const char *s = format; + char c; + + do { c = *s; } while (c && *++s); + if (strchr("diouxX", c)) { + snprintf(g_buf, MAXVARFMT, format, (int)n); + } else if (strchr("eEfFgGaA", c)) { + snprintf(g_buf, MAXVARFMT, format, n); + } else { + syntax_error(EMSG_INV_FMT); + } + } + return g_buf; +} + +static xhash *iamarray(var *a) +{ + while (a->type & VF_CHILD) + a = a->x.parent; + + if (!(a->type & VF_ARRAY)) { + a->type |= VF_ARRAY; + a->x.array = hash_init(); + } + return a->x.array; +} + +#define clear_array(array) hash_clear(array) + +/* clear a variable */ +static var *clrvar(var *v) +{ + if (!(v->type & VF_FSTR)) + free(v->string); + + v->type &= VF_DONTTOUCH; + v->type |= VF_DIRTY; + v->string = NULL; + return v; +} + +static void handle_special(var *); + +/* assign string value to variable */ +static var *setvar_p(var *v, char *value) +{ + clrvar(v); + v->string = value; + handle_special(v); + return v; +} + +/* same as setvar_p but make a copy of string */ +static var *setvar_s(var *v, const char *value) +{ + return setvar_p(v, (value && *value) ? xstrdup(value) : NULL); +} + +static var *setvar_sn(var *v, const char *value, int len) +{ + return setvar_p(v, (value && *value && len > 0) ? xstrndup(value, len) : NULL); +} + +/* same as setvar_s but sets USER flag */ +static var *setvar_u(var *v, const char *value) +{ + v = setvar_s(v, value); + v->type |= VF_USER; + return v; +} + +/* set array element to user string */ +static void setari_u(var *a, int idx, const char *s) +{ + var *v; + + v = findvar(iamarray(a), itoa(idx)); + setvar_u(v, s); +} + +/* assign numeric value to variable */ +static var *setvar_i(var *v, double value) +{ + clrvar(v); + v->type |= VF_NUMBER; + v->number = value; + handle_special(v); + return v; +} + +static void setvar_ERRNO(void) +{ + setvar_i(intvar[ERRNO], errno); +} + +static const char *getvar_s(var *v) +{ + /* if v is numeric and has no cached string, convert it to string */ + if ((v->type & (VF_NUMBER | VF_CACHED)) == VF_NUMBER) { + const char *convfmt = str_percent_dot_6g; /* "%.6g" */ + /* Get CONVFMT, unless we already recursed on it: + * someone might try to cause stack overflow by setting + * CONVFMT=9 (a numeric, not string, value) + */ + if (v != intvar[CONVFMT]) + convfmt = getvar_s(intvar[CONVFMT]); + /* Convert the value */ + v->string = xstrdup(fmt_num(convfmt, v->number)); + v->type |= VF_CACHED; + } + return (v->string == NULL) ? "" : v->string; +} + +static double getvar_i(var *v) +{ + char *s; + + if ((v->type & (VF_NUMBER | VF_CACHED)) == 0) { + v->number = 0; + s = v->string; + if (s && *s) { + debug_printf_eval("getvar_i: '%s'->", s); + v->number = my_strtod(&s); + /* ^^^ hex/oct NOT allowed here! */ + debug_printf_eval("%f (s:'%s')\n", v->number, s); + if (v->type & VF_USER) { +//TODO: skip_spaces() also skips backslash+newline, is it intended here? + s = skip_spaces(s); + if (*s != '\0') + v->type &= ~VF_USER; + } + } else { + debug_printf_eval("getvar_i: '%s'->zero\n", s); + v->type &= ~VF_USER; + } + v->type |= VF_CACHED; + } + debug_printf_eval("getvar_i: %f\n", v->number); + return v->number; +} + +/* Used for operands of bitwise ops */ +static unsigned long getvar_i_int(var *v) +{ + double d = getvar_i(v); + + /* Casting doubles to longs is undefined for values outside + * of target type range. Try to widen it as much as possible */ + if (d >= 0) + return (unsigned long)d; + /* Why? Think about d == -4294967295.0 (assuming 32bit longs) */ + return - (long) (unsigned long) (-d); +} + +static var *copyvar(var *dest, const var *src) +{ + if (dest != src) { + clrvar(dest); + dest->type |= (src->type & ~(VF_DONTTOUCH | VF_FSTR)); + debug_printf_eval("copyvar: number:%f string:'%s'\n", src->number, src->string); + dest->number = src->number; + if (src->string) + dest->string = xstrdup(src->string); + } + handle_special(dest); + return dest; +} + +static var *incvar(var *v) +{ + return setvar_i(v, getvar_i(v) + 1.0); +} + +/* return true if v is number or numeric string */ +static int is_numeric(var *v) +{ + getvar_i(v); + return ((v->type ^ VF_DIRTY) & (VF_NUMBER | VF_USER | VF_DIRTY)); +} + +/* return 1 when value of v corresponds to true, 0 otherwise */ +static int istrue(var *v) +{ + if (is_numeric(v)) + return (v->number != 0); + return (v->string && v->string[0]); +} + +/* ------- awk program text parsing ------- */ + +/* Parse next token pointed by global pos, place results into global t_XYZ variables. + * If token isn't expected, print error message and die. + * Return token class (also store it in t_tclass). + */ +static uint32_t next_token(uint32_t expected) +{ +#define concat_inserted (G1.next_token__concat_inserted) +#define save_tclass (G1.next_token__save_tclass) +#define save_info (G1.next_token__save_info) + + char *p; + const char *tl; + const uint32_t *ti; + uint32_t tc, last_token_class; + + last_token_class = t_tclass; /* t_tclass is initialized to TC_NEWLINE */ + + debug_printf_parse("%s() expected(%x):", __func__, expected); + debug_parse_print_tc(expected); + debug_printf_parse("\n"); + + if (t_rollback) { + debug_printf_parse("%s: using rolled-back token\n", __func__); + t_rollback = FALSE; + } else if (concat_inserted) { + debug_printf_parse("%s: using concat-inserted token\n", __func__); + concat_inserted = FALSE; + t_tclass = save_tclass; + t_info = save_info; + } else { + p = g_pos; + if (g_saved_ch != '\0') { + *p = g_saved_ch; + g_saved_ch = '\0'; + } + readnext: + p = skip_spaces(p); + g_lineno = t_lineno; + if (*p == '#') + while (*p != '\n' && *p != '\0') + p++; + + if (*p == '\0') { + tc = TC_EOF; + debug_printf_parse("%s: token found: TC_EOF\n", __func__); + } else if (*p == '"') { + /* it's a string */ + char *s = t_string = ++p; + while (*p != '"') { + char *pp; + if (*p == '\0' || *p == '\n') + syntax_error(EMSG_UNEXP_EOS); + pp = p; + *s++ = nextchar(&pp); + p = pp; + } + p++; + *s = '\0'; + tc = TC_STRING; + debug_printf_parse("%s: token found:'%s' TC_STRING\n", __func__, t_string); + } else if ((expected & TC_REGEXP) && *p == '/') { + /* it's regexp */ + char *s = t_string = ++p; + while (*p != '/') { + if (*p == '\0' || *p == '\n') + syntax_error(EMSG_UNEXP_EOS); + *s = *p++; + if (*s++ == '\\') { + char *pp = p; + s[-1] = bb_process_escape_sequence((const char **)&pp); + if (*p == '\\') + *s++ = '\\'; + if (pp == p) + *s++ = *p++; + else + p = pp; + } + } + p++; + *s = '\0'; + tc = TC_REGEXP; + debug_printf_parse("%s: token found:'%s' TC_REGEXP\n", __func__, t_string); + + } else if (*p == '.' || isdigit(*p)) { + /* it's a number */ + char *pp = p; + t_double = my_strtod_or_hexoct(&pp); + /* ^^^ awk only allows hex/oct consts in _program_, not in _input_ */ + p = pp; + if (*p == '.') + syntax_error(EMSG_UNEXP_TOKEN); + tc = TC_NUMBER; + debug_printf_parse("%s: token found:%f TC_NUMBER\n", __func__, t_double); + } else { + char *end_of_name; + + if (*p == '\n') + t_lineno++; + + /* search for something known */ + tl = tokenlist; + tc = 0x00000001; + ti = tokeninfo; + while (*tl) { + int l = (unsigned char) *tl++; + if (l == (unsigned char) NTCC) { + tc <<= 1; + continue; + } + /* if token class is expected, + * token matches, + * and it's not a longer word, + */ + if ((tc & (expected | TS_WORD | TC_NEWLINE)) + && strncmp(p, tl, l) == 0 + && !((tc & TS_WORD) && isalnum_(p[l])) + ) { + /* then this is what we are looking for */ + t_info = *ti; + debug_printf_parse("%s: token found:'%.*s' t_info:%x\n", __func__, l, p, t_info); + p += l; + goto token_found; + } + ti++; + tl += l; + } + /* not a known token */ + + /* is it a name? (var/array/function) */ + if (!isalnum_(*p)) + syntax_error(EMSG_UNEXP_TOKEN); /* no */ + /* yes */ + t_string = p; + while (isalnum_(*p)) + p++; + end_of_name = p; + + if (last_token_class == TC_FUNCDECL) + /* eat space in "function FUNC (...) {...}" declaration */ + p = skip_spaces(p); + else if (expected & TC_ARRAY) { + /* eat space between array name and [ */ + char *s = skip_spaces(p); + if (*s == '[') /* array ref, not just a name? */ + p = s; + } + /* else: do NOT consume whitespace after variable name! + * gawk allows definition "function FUNC (p) {...}" - note space, + * but disallows the call "FUNC (p)" because it isn't one - + * expression "v (a)" should NOT be parsed as TC_FUNCTION: + * it is a valid concatenation if "v" is a variable, + * not a function name (and type of name is not known at parse time). + */ + + if (*p == '(') { + p++; + tc = TC_FUNCTION; + debug_printf_parse("%s: token found:'%s' TC_FUNCTION\n", __func__, t_string); + } else if (*p == '[') { + p++; + tc = TC_ARRAY; + debug_printf_parse("%s: token found:'%s' TC_ARRAY\n", __func__, t_string); + } else { + tc = TC_VARIABLE; + debug_printf_parse("%s: token found:'%s' TC_VARIABLE\n", __func__, t_string); + if (end_of_name == p) { + /* there is no space for trailing NUL in t_string! + * We need to save the char we are going to NUL. + * (we'll use it in future call to next_token()) + */ + g_saved_ch = *end_of_name; +// especially pathological example is V="abc"; V.2 - it's V concatenated to .2 +// (it evaluates to "abc0.2"). Because of this case, we can't simply cache +// '.' and analyze it later: we also have to *store it back* in next +// next_token(), in order to give my_strtod() the undamaged ".2" string. + } + } + *end_of_name = '\0'; /* terminate t_string */ + } + token_found: + g_pos = p; + + /* skipping newlines in some cases */ + if ((last_token_class & TS_NOTERM) && (tc & TC_NEWLINE)) + goto readnext; + + /* insert concatenation operator when needed */ + debug_printf_parse("%s: concat_inserted if all nonzero: %x %x %x %x\n", __func__, + (last_token_class & TS_CONCAT_L), (tc & TS_CONCAT_R), (expected & TS_BINOP), + !(last_token_class == TC_LENGTH && tc == TC_LPAREN)); + if ((last_token_class & TS_CONCAT_L) && (tc & TS_CONCAT_R) && (expected & TS_BINOP) + && !(last_token_class == TC_LENGTH && tc == TC_LPAREN) /* but not for "length(..." */ + ) { + concat_inserted = TRUE; + save_tclass = tc; + save_info = t_info; + tc = TC_BINOPX; + t_info = OC_CONCAT | SS | PRECEDENCE(35); + } + + t_tclass = tc; + debug_printf_parse("%s: t_tclass=tc=%x\n", __func__, tc); + } + /* Are we ready for this? */ + if (!(t_tclass & expected)) { + syntax_error((last_token_class & (TC_NEWLINE | TC_EOF)) ? + EMSG_UNEXP_EOS : EMSG_UNEXP_TOKEN); + } + + debug_printf_parse("%s: returning, t_double:%f t_tclass:", __func__, t_double); + debug_parse_print_tc(t_tclass); + debug_printf_parse("\n"); + + return t_tclass; +#undef concat_inserted +#undef save_tclass +#undef save_info +} + +static ALWAYS_INLINE void rollback_token(void) +{ + t_rollback = TRUE; +} + +static node *new_node(uint32_t info) +{ + node *n; + + n = xzalloc(sizeof(node)); + n->info = info; + n->lineno = g_lineno; + return n; +} + +static void mk_re_node(const char *s, node *n, regex_t *re) +{ + n->info = TI_REGEXP; + n->l.re = re; + xregcomp(re, s, REG_EXTENDED); + xregcomp(re + 1, s, REG_EXTENDED | REG_ICASE); +} + +static node *parse_expr(uint32_t); + +static node *parse_lrparen_list(void) +{ + next_token(TC_LPAREN); + return parse_expr(TC_RPAREN); +} + +/* Parse expression terminated by given token, return ptr + * to built subtree. Terminator is eaten by parse_expr */ +static node *parse_expr(uint32_t term_tc) +{ + node sn; + node *cn = &sn; + node *getline_node; + uint32_t tc, expected_tc; + + debug_printf_parse("%s() term_tc(%x):", __func__, term_tc); + debug_parse_print_tc(term_tc); + debug_printf_parse("\n"); + + sn.info = LOWEST_PRECEDENCE; + sn.r.n = sn.a.n = getline_node = NULL; + expected_tc = TS_OPERAND | TS_UOPPRE | TC_REGEXP | term_tc; + + while (!((tc = next_token(expected_tc)) & term_tc)) { + node *vn; + + if (getline_node && (t_info == TI_LESS)) { + /* Attach input redirection (<) to getline node */ + debug_printf_parse("%s: input redir\n", __func__); + cn = getline_node->l.n = new_node(OC_CONCAT | SS | PRECEDENCE(37)); + cn->a.n = getline_node; + expected_tc = TS_OPERAND | TS_UOPPRE; + getline_node = NULL; + continue; + } + if (tc & (TS_BINOP | TC_UOPPOST)) { + debug_printf_parse("%s: TS_BINOP | TC_UOPPOST tc:%x\n", __func__, tc); + /* for binary and postfix-unary operators, jump back over + * previous operators with higher precedence */ + vn = cn; + while (((t_info & PRIMASK) > (vn->a.n->info & PRIMASK2)) + || (t_info == vn->info && t_info == TI_COLON) + ) { + vn = vn->a.n; + if (!vn->a.n) syntax_error(EMSG_UNEXP_TOKEN); + } + if (t_info == TI_TERNARY) /* "?" token */ +//TODO: why? + t_info += PRECEDENCE(6); + cn = vn->a.n->r.n = new_node(t_info); + cn->a.n = vn->a.n; + if (tc & TS_BINOP) { + cn->l.n = vn; + + /* Prevent: + * awk 'BEGIN { "qwe" = 1 }' + * awk 'BEGIN { 7 *= 7 }' + * awk 'BEGIN { length("qwe") = 1 }' + * awk 'BEGIN { (1+1) += 3 }' + */ + /* Assignment? (including *= and friends) */ + if (((t_info & OPCLSMASK) == OC_MOVE) + || ((t_info & OPCLSMASK) == OC_REPLACE) + ) { + debug_printf_parse("%s: MOVE/REPLACE vn->info:%08x\n", __func__, vn->info); + /* Left side is a (variable or array element) + * or function argument + * or $FIELD ? + */ + if ((vn->info & OPCLSMASK) != OC_VAR + && (vn->info & OPCLSMASK) != OC_FNARG + && (vn->info & OPCLSMASK) != OC_FIELD + ) { + syntax_error(EMSG_UNEXP_TOKEN); /* no. bad */ + } + } + + expected_tc = TS_OPERAND | TS_UOPPRE | TC_REGEXP; + if (t_info == TI_PGETLINE) { /* "|" token */ + next_token(TC_GETLINE); /* must be folowed by "getline" */ + /* give maximum precedence to this pipe */ + cn->info &= ~PRIMASK; /* sets PRECEDENCE(0) */ + expected_tc = TS_OPERAND | TS_UOPPRE | TS_BINOP | term_tc; + } + } else { + /* It was an unary postfix operator */ + cn->r.n = vn; + expected_tc = TS_OPERAND | TS_UOPPRE | TS_BINOP | term_tc; + } + vn->a.n = cn; + continue; + } + /* It wasn't a binary or postfix-unary operator */ + + debug_printf_parse("%s: other, t_info:%x\n", __func__, t_info); + /* for operands and prefix-unary operators, attach them + * to last node */ + vn = cn; + cn = vn->r.n = new_node(t_info); + cn->a.n = vn; + + expected_tc = TS_OPERAND | TS_UOPPRE | TC_REGEXP; + if (t_info == TI_PREINC || t_info == TI_PREDEC) + expected_tc = TS_LVALUE | TC_UOPPRE1; + + if (!(tc & (TS_OPERAND | TC_REGEXP))) + continue; + + debug_printf_parse("%s: TS_OPERAND | TC_REGEXP\n", __func__); + expected_tc = TS_UOPPRE | TC_UOPPOST | TS_BINOP | TS_OPERAND | term_tc; + /* one should be very careful with switch on tclass - + * only simple tclasses should be used (TC_xyz, not TS_xyz) */ + switch (tc) { + var *v; + + case TC_VARIABLE: + case TC_ARRAY: + debug_printf_parse("%s: TC_VARIABLE | TC_ARRAY\n", __func__); + cn->info = OC_VAR; + v = hash_search(ahash, t_string); + if (v != NULL) { + cn->info = OC_FNARG; + cn->l.aidx = v->x.aidx; + } else { + cn->l.v = newvar(t_string); + } + if (tc & TC_ARRAY) { + cn->info |= xS; + cn->r.n = parse_expr(TC_ARRTERM); + } + break; + + case TC_NUMBER: + case TC_STRING: + debug_printf_parse("%s: TC_NUMBER | TC_STRING\n", __func__); + cn->info = OC_CONST; + v = cn->l.v = xzalloc(sizeof(var)); + if (tc & TC_NUMBER) { + setvar_i(v, t_double); + } else { + setvar_s(v, t_string); + } + expected_tc &= ~TC_UOPPOST; /* NUM++, "str"++ not allowed */ + break; + + case TC_REGEXP: + debug_printf_parse("%s: TC_REGEXP\n", __func__); + mk_re_node(t_string, cn, xzalloc(sizeof(regex_t)*2)); + break; + + case TC_FUNCTION: + debug_printf_parse("%s: TC_FUNCTION\n", __func__); + cn->info = OC_FUNC; + cn->r.f = newfunc(t_string); + cn->l.n = parse_expr(TC_RPAREN); + break; + + case TC_LPAREN: + debug_printf_parse("%s: TC_LPAREN\n", __func__); + cn = vn->r.n = parse_expr(TC_RPAREN); + if (!cn) + syntax_error("Empty sequence"); + cn->a.n = vn; + break; + + case TC_GETLINE: + /* "getline" is a function, not a statement. + * Works in gawk: + * r = ["SHELL CMD" | ] getline [VAR] [<"FILE"] + * if (getline <"FILE" < 0) print "Can't read FILE" + * while ("SHELL CMD" | getline > 0) ... + * Returns: 1 successful read, 0 EOF, -1 error (sets ERRNO) + */ + debug_printf_parse("%s: TC_GETLINE\n", __func__); + getline_node = cn; + expected_tc = TS_OPERAND | TS_UOPPRE | TS_BINOP | term_tc; + break; + + case TC_BUILTIN: + debug_printf_parse("%s: TC_BUILTIN\n", __func__); + cn->l.n = parse_lrparen_list(); + break; + + case TC_LENGTH: + debug_printf_parse("%s: TC_LENGTH\n", __func__); + tc = next_token(TC_LPAREN /* length(...) */ + | TC_SEMICOL /* length; */ + | TC_NEWLINE /* length */ + | TC_RBRACE /* length } */ + | TC_BINOPX /* length NUM */ + | TC_COMMA /* print length, 1 */ + ); + if (tc != TC_LPAREN) + rollback_token(); + else { + /* It was a "(" token. Handle just like TC_BUILTIN */ + cn->l.n = parse_expr(TC_RPAREN); + } + break; + } + } /* while() */ + + debug_printf_parse("%s() returns %p\n", __func__, sn.r.n); + return sn.r.n; +} + +/* add node to chain. Return ptr to alloc'd node */ +static node *chain_node(uint32_t info) +{ + node *n; + + if (!seq->first) + seq->first = seq->last = new_node(0); + + if (seq->programname != g_progname) { + seq->programname = g_progname; + n = chain_node(OC_NEWSOURCE); + n->l.new_progname = g_progname; + } + + n = seq->last; + n->info = info; + seq->last = n->a.n = new_node(OC_DONE); + + return n; +} + +static void chain_expr(uint32_t info) +{ + node *n; + + n = chain_node(info); + + n->l.n = parse_expr(TC_SEMICOL | TC_NEWLINE | TC_RBRACE); + if ((info & OF_REQUIRED) && !n->l.n) + syntax_error(EMSG_TOO_FEW_ARGS); + + if (t_tclass & TC_RBRACE) + rollback_token(); +} + +static void chain_group(void); + +static node *chain_loop(node *nn) +{ + node *n, *n2, *save_brk, *save_cont; + + save_brk = break_ptr; + save_cont = continue_ptr; + + n = chain_node(OC_BR | Vx); + continue_ptr = new_node(OC_EXEC); + break_ptr = new_node(OC_EXEC); + chain_group(); + n2 = chain_node(OC_EXEC | Vx); + n2->l.n = nn; + n2->a.n = n; + continue_ptr->a.n = n2; + break_ptr->a.n = n->r.n = seq->last; + + continue_ptr = save_cont; + break_ptr = save_brk; + + return n; +} + +static void chain_until_rbrace(void) +{ + uint32_t tc; + while ((tc = next_token(TS_GRPSEQ | TC_RBRACE)) != TC_RBRACE) { + debug_printf_parse("%s: !TC_RBRACE\n", __func__); + if (tc == TC_NEWLINE) + continue; + rollback_token(); + chain_group(); + } + debug_printf_parse("%s: TC_RBRACE\n", __func__); +} + +/* parse group and attach it to chain */ +static void chain_group(void) +{ + uint32_t tc; + node *n, *n2, *n3; + + do { + tc = next_token(TS_GRPSEQ); + } while (tc == TC_NEWLINE); + + if (tc == TC_LBRACE) { + debug_printf_parse("%s: TC_LBRACE\n", __func__); + chain_until_rbrace(); + return; + } + if (tc & (TS_OPSEQ | TC_SEMICOL)) { + debug_printf_parse("%s: TS_OPSEQ | TC_SEMICOL\n", __func__); + rollback_token(); + chain_expr(OC_EXEC | Vx); + return; + } + + /* TS_STATEMNT */ + debug_printf_parse("%s: TS_STATEMNT(?)\n", __func__); + switch (t_info & OPCLSMASK) { + case ST_IF: + debug_printf_parse("%s: ST_IF\n", __func__); + n = chain_node(OC_BR | Vx); + n->l.n = parse_lrparen_list(); + chain_group(); + n2 = chain_node(OC_EXEC); + n->r.n = seq->last; + if (next_token(TS_GRPSEQ | TC_RBRACE | TC_ELSE) == TC_ELSE) { + chain_group(); + n2->a.n = seq->last; + } else { + rollback_token(); + } + break; + + case ST_WHILE: + debug_printf_parse("%s: ST_WHILE\n", __func__); + n2 = parse_lrparen_list(); + n = chain_loop(NULL); + n->l.n = n2; + break; + + case ST_DO: + debug_printf_parse("%s: ST_DO\n", __func__); + n2 = chain_node(OC_EXEC); + n = chain_loop(NULL); + n2->a.n = n->a.n; + next_token(TC_WHILE); + n->l.n = parse_lrparen_list(); + break; + + case ST_FOR: + debug_printf_parse("%s: ST_FOR\n", __func__); + next_token(TC_LPAREN); + n2 = parse_expr(TC_SEMICOL | TC_RPAREN); + if (t_tclass & TC_RPAREN) { /* for (I in ARRAY) */ + if (!n2 || n2->info != TI_IN) + syntax_error(EMSG_UNEXP_TOKEN); + n = chain_node(OC_WALKINIT | VV); + n->l.n = n2->l.n; + n->r.n = n2->r.n; + n = chain_loop(NULL); + n->info = OC_WALKNEXT | Vx; + n->l.n = n2->l.n; + } else { /* for (;;) */ + n = chain_node(OC_EXEC | Vx); + n->l.n = n2; + n2 = parse_expr(TC_SEMICOL); + n3 = parse_expr(TC_RPAREN); + n = chain_loop(n3); + n->l.n = n2; + if (!n2) + n->info = OC_EXEC; + } + break; + + case OC_PRINT: + case OC_PRINTF: + debug_printf_parse("%s: OC_PRINT[F]\n", __func__); + n = chain_node(t_info); + n->l.n = parse_expr(TC_SEMICOL | TC_NEWLINE | TC_OUTRDR | TC_RBRACE); + if (t_tclass & TC_OUTRDR) { + n->info |= t_info; + n->r.n = parse_expr(TC_SEMICOL | TC_NEWLINE | TC_RBRACE); + } + if (t_tclass & TC_RBRACE) + rollback_token(); + break; + + case OC_BREAK: + debug_printf_parse("%s: OC_BREAK\n", __func__); + n = chain_node(OC_EXEC); + if (!break_ptr) + syntax_error("'break' not in a loop"); + n->a.n = break_ptr; + chain_expr(t_info); + break; + + case OC_CONTINUE: + debug_printf_parse("%s: OC_CONTINUE\n", __func__); + n = chain_node(OC_EXEC); + if (!continue_ptr) + syntax_error("'continue' not in a loop"); + n->a.n = continue_ptr; + chain_expr(t_info); + break; + + /* delete, next, nextfile, return, exit */ + default: + debug_printf_parse("%s: default\n", __func__); + chain_expr(t_info); + } +} + +static void parse_program(char *p) +{ + debug_printf_parse("%s()\n", __func__); + + g_pos = p; + t_lineno = 1; + for (;;) { + uint32_t tclass; + + tclass = next_token(TS_OPSEQ | TC_LBRACE | TC_BEGIN | TC_END | TC_FUNCDECL + | TC_EOF | TC_NEWLINE /* but not TC_SEMICOL */); + got_tok: + if (tclass == TC_EOF) { + debug_printf_parse("%s: TC_EOF\n", __func__); + break; + } + if (tclass == TC_NEWLINE) { + debug_printf_parse("%s: TC_NEWLINE\n", __func__); + continue; + } + if (tclass == TC_BEGIN) { + debug_printf_parse("%s: TC_BEGIN\n", __func__); + seq = &beginseq; + /* ensure there is no newline between BEGIN and { */ + next_token(TC_LBRACE); + chain_until_rbrace(); + goto next_tok; + } + if (tclass == TC_END) { + debug_printf_parse("%s: TC_END\n", __func__); + seq = &endseq; + /* ensure there is no newline between END and { */ + next_token(TC_LBRACE); + chain_until_rbrace(); + goto next_tok; + } + if (tclass == TC_FUNCDECL) { + func *f; + + debug_printf_parse("%s: TC_FUNCDECL\n", __func__); + next_token(TC_FUNCTION); + f = newfunc(t_string); + if (f->defined) + syntax_error("Duplicate function"); + f->defined = 1; + //f->body.first = NULL; - already is + //f->nargs = 0; - already is + /* func arg list: comma sep list of args, and a close paren */ + for (;;) { + var *v; + if (next_token(TC_VARIABLE | TC_RPAREN) == TC_RPAREN) { + if (f->nargs == 0) + break; /* func() is ok */ + /* func(a,) is not ok */ + syntax_error(EMSG_UNEXP_TOKEN); + } + v = findvar(ahash, t_string); + v->x.aidx = f->nargs++; + /* Arg followed either by end of arg list or 1 comma */ + if (next_token(TC_COMMA | TC_RPAREN) == TC_RPAREN) + break; + /* it was a comma, we ate it */ + } + seq = &f->body; + /* ensure there is { after "func F(...)" - but newlines are allowed */ + while (next_token(TC_LBRACE | TC_NEWLINE) == TC_NEWLINE) + continue; + chain_until_rbrace(); + hash_clear(ahash); + goto next_tok; + } + seq = &mainseq; + if (tclass & TS_OPSEQ) { + node *cn; + + debug_printf_parse("%s: TS_OPSEQ\n", __func__); + rollback_token(); + cn = chain_node(OC_TEST); + cn->l.n = parse_expr(TC_SEMICOL | TC_NEWLINE | TC_EOF | TC_LBRACE); + if (t_tclass == TC_LBRACE) { + debug_printf_parse("%s: TC_LBRACE\n", __func__); + chain_until_rbrace(); + } else { + /* no action, assume default "{ print }" */ + debug_printf_parse("%s: !TC_LBRACE\n", __func__); + chain_node(OC_PRINT); + } + cn->r.n = mainseq.last; + goto next_tok; + } + /* tclass == TC_LBRACE */ + debug_printf_parse("%s: TC_LBRACE(?)\n", __func__); + chain_until_rbrace(); + next_tok: + /* Same as next_token() at the top of the loop, + TC_SEMICOL */ + tclass = next_token(TS_OPSEQ | TC_LBRACE | TC_BEGIN | TC_END | TC_FUNCDECL + | TC_EOF | TC_NEWLINE | TC_SEMICOL); + /* gawk allows many newlines, but does not allow more than one semicolon: + * BEGIN {...};; + * would complain "each rule must have a pattern or an action part". + * Same message for + * ; BEGIN {...} + */ + if (tclass != TC_SEMICOL) + goto got_tok; /* use this token */ + /* else: loop back - ate the semicolon, get and use _next_ token */ + } /* for (;;) */ +} + +/* -------- program execution part -------- */ + +/* temporary variables allocator */ +static var *nvalloc(int sz) +{ + return xzalloc(sz * sizeof(var)); +} + +static void nvfree(var *v, int sz) +{ + var *p = v; + + while (--sz >= 0) { + if ((p->type & (VF_ARRAY | VF_CHILD)) == VF_ARRAY) { + clear_array(iamarray(p)); + free(p->x.array->items); + free(p->x.array); + } + if (p->type & VF_WALK) { + walker_list *n; + walker_list *w = p->x.walker; + debug_printf_walker("nvfree: freeing walker @%p\n", &p->x.walker); + p->x.walker = NULL; + while (w) { + n = w->prev; + debug_printf_walker(" free(%p)\n", w); + free(w); + w = n; + } + } + clrvar(p); + p++; + } + + free(v); +} + +static node *mk_splitter(const char *s, tsplitter *spl) +{ + regex_t *re; + node *n; + + re = spl->re; + n = &spl->n; + if (n->info == TI_REGEXP) { + regfree(re); + regfree(re + 1); + } + if (s[0] && s[1]) { /* strlen(s) > 1 */ + mk_re_node(s, n, re); + } else { + n->info = (uint32_t) s[0]; + } + + return n; +} + +static var *evaluate(node *, var *); + +/* Use node as a regular expression. Supplied with node ptr and regex_t + * storage space. Return ptr to regex (if result points to preg, it should + * be later regfree'd manually). + */ +static regex_t *as_regex(node *op, regex_t *preg) +{ + int cflags; + const char *s; + + if (op->info == TI_REGEXP) { + return &op->l.re[icase]; + } + + //tmpvar = nvalloc(1); +#define TMPVAR (&G.as_regex__tmpvar) + // We use a single "static" tmpvar (instead of on-stack or malloced one) + // to decrease memory consumption in deeply-recursive awk programs. + // The rule to work safely is to never call evaluate() while our static + // TMPVAR's value is still needed. + s = getvar_s(evaluate(op, TMPVAR)); + + cflags = icase ? REG_EXTENDED | REG_ICASE : REG_EXTENDED; + /* Testcase where REG_EXTENDED fails (unpaired '{'): + * echo Hi | awk 'gsub("@(samp|code|file)\{","");' + * gawk 3.1.5 eats this. We revert to ~REG_EXTENDED + * (maybe gsub is not supposed to use REG_EXTENDED?). + */ + if (regcomp(preg, s, cflags)) { + cflags &= ~REG_EXTENDED; + xregcomp(preg, s, cflags); + } + //nvfree(tmpvar, 1); +#undef TMPVAR + return preg; +} + +/* gradually increasing buffer. + * note that we reallocate even if n == old_size, + * and thus there is at least one extra allocated byte. + */ +static char* qrealloc(char *b, int n, int *size) +{ + if (!b || n >= *size) { + *size = n + (n>>1) + 80; + b = xrealloc(b, *size); + } + return b; +} + +/* resize field storage space */ +static void fsrealloc(int size) +{ + int i, newsize; + + if ((unsigned)size >= num_alloc_fields) { + /* Sanity cap, easier than catering for over/underflows */ + if ((unsigned)size > 0xffffff) + bb_die_memory_exhausted(); + + i = num_alloc_fields; + num_alloc_fields = size + 16; + + newsize = num_alloc_fields * sizeof(Fields[0]); + debug_printf_eval("fsrealloc: xrealloc(%p, %u)\n", Fields, newsize); + Fields = xrealloc(Fields, newsize); + debug_printf_eval("fsrealloc: Fields=%p..%p\n", Fields, (char*)Fields + newsize - 1); + /* ^^^ did Fields[] move? debug aid for L.v getting "upstaged" by R.v in evaluate() */ + + for (; i < num_alloc_fields; i++) { + Fields[i].type = VF_SPECIAL | VF_DIRTY; + Fields[i].string = NULL; + } + } + /* if size < num_fields, clear extra field variables */ + for (i = size; i < num_fields; i++) { + clrvar(Fields + i); + } + num_fields = size; +} + +static int regexec1_nonempty(const regex_t *preg, const char *s, regmatch_t pmatch[]) +{ + int r = regexec(preg, s, 1, pmatch, 0); + if (r == 0 && pmatch[0].rm_eo == 0) { + /* For example, happens when FS can match + * an empty string (awk -F ' *'). Logically, + * this should split into one-char fields. + * However, gawk 5.0.1 searches for first + * _non-empty_ separator string match: + */ + size_t ofs = 0; + do { + ofs++; + if (!s[ofs]) + return REG_NOMATCH; + regexec(preg, s + ofs, 1, pmatch, 0); + } while (pmatch[0].rm_eo == 0); + pmatch[0].rm_so += ofs; + pmatch[0].rm_eo += ofs; + } + return r; +} + +static int awk_split(const char *s, node *spl, char **slist) +{ + int n; + char c[4]; + char *s1; + + /* in worst case, each char would be a separate field */ + *slist = s1 = xzalloc(strlen(s) * 2 + 3); + strcpy(s1, s); + + c[0] = c[1] = (char)spl->info; + c[2] = c[3] = '\0'; + if (*getvar_s(intvar[RS]) == '\0') + c[2] = '\n'; + + n = 0; + if (spl->info == TI_REGEXP) { /* regex split */ + if (!*s) + return n; /* "": zero fields */ + n++; /* at least one field will be there */ + do { + int l; + regmatch_t pmatch[1]; + + l = strcspn(s, c+2); /* len till next NUL or \n */ + if (regexec1_nonempty(&spl->l.re[icase], s, pmatch) == 0 + && pmatch[0].rm_so <= l + ) { + /* if (pmatch[0].rm_eo == 0) ... - impossible */ + l = pmatch[0].rm_so; + n++; /* we saw yet another delimiter */ + } else { + pmatch[0].rm_eo = l; + if (s[l]) + pmatch[0].rm_eo++; + } + s1 = mempcpy(s1, s, l); + *s1++ = '\0'; + s += pmatch[0].rm_eo; + } while (*s); + + /* echo a-- | awk -F-- '{ print NF, length($NF), $NF }' + * should print "2 0 ": + */ + *s1 = '\0'; + + return n; + } + if (c[0] == '\0') { /* null split */ + while (*s) { + *s1++ = *s++; + *s1++ = '\0'; + n++; + } + return n; + } + if (c[0] != ' ') { /* single-character split */ + if (icase) { + c[0] = toupper(c[0]); + c[1] = tolower(c[1]); + } + if (*s1) + n++; + while ((s1 = strpbrk(s1, c)) != NULL) { + *s1++ = '\0'; + n++; + } + return n; + } + /* space split: "In the special case that FS is a single space, + * fields are separated by runs of spaces and/or tabs and/or newlines" + */ + while (*s) { + /* s = skip_whitespace(s); -- WRONG (also skips \v \f \r) */ + while (*s == ' ' || *s == '\t' || *s == '\n') + s++; + if (!*s) + break; + n++; + while (*s && !(*s == ' ' || *s == '\t' || *s == '\n')) + *s1++ = *s++; + *s1++ = '\0'; + } + return n; +} + +static void split_f0(void) +{ +/* static char *fstrings; */ +#define fstrings (G.split_f0__fstrings) + + int i, n; + char *s; + + if (is_f0_split) + return; + + is_f0_split = TRUE; + free(fstrings); + fsrealloc(0); + n = awk_split(getvar_s(intvar[F0]), &fsplitter.n, &fstrings); + fsrealloc(n); + s = fstrings; + for (i = 0; i < n; i++) { + Fields[i].string = nextword(&s); + Fields[i].type |= (VF_FSTR | VF_USER | VF_DIRTY); + } + + /* set NF manually to avoid side effects */ + clrvar(intvar[NF]); + intvar[NF]->type = VF_NUMBER | VF_SPECIAL; + intvar[NF]->number = num_fields; +#undef fstrings +} + +/* perform additional actions when some internal variables changed */ +static void handle_special(var *v) +{ + int n; + char *b; + const char *sep, *s; + int sl, l, len, i, bsize; + + if (!(v->type & VF_SPECIAL)) + return; + + if (v == intvar[NF]) { + n = (int)getvar_i(v); + if (n < 0) + syntax_error("NF set to negative value"); + fsrealloc(n); + + /* recalculate $0 */ + sep = getvar_s(intvar[OFS]); + sl = strlen(sep); + b = NULL; + len = 0; + for (i = 0; i < n; i++) { + s = getvar_s(&Fields[i]); + l = strlen(s); + if (b) { + memcpy(b+len, sep, sl); + len += sl; + } + b = qrealloc(b, len+l+sl, &bsize); + memcpy(b+len, s, l); + len += l; + } + if (b) + b[len] = '\0'; + setvar_p(intvar[F0], b); + is_f0_split = TRUE; + + } else if (v == intvar[F0]) { + is_f0_split = FALSE; + + } else if (v == intvar[FS]) { + /* + * The POSIX-2008 standard says that changing FS should have no effect on the + * current input line, but only on the next one. The language is: + * + * > Before the first reference to a field in the record is evaluated, the record + * > shall be split into fields, according to the rules in Regular Expressions, + * > using the value of FS that was current at the time the record was read. + * + * So, split up current line before assignment to FS: + */ + split_f0(); + + mk_splitter(getvar_s(v), &fsplitter); + } else if (v == intvar[RS]) { + mk_splitter(getvar_s(v), &rsplitter); + } else if (v == intvar[IGNORECASE]) { + icase = istrue(v); + } else { /* $n */ + n = getvar_i(intvar[NF]); + setvar_i(intvar[NF], n > v-Fields ? n : v-Fields+1); + /* right here v is invalid. Just to note... */ + } +} + +/* step through func/builtin/etc arguments */ +static node *nextarg(node **pn) +{ + node *n; + + n = *pn; + if (n && n->info == TI_COMMA) { + *pn = n->r.n; + n = n->l.n; + } else { + *pn = NULL; + } + return n; +} + +static void hashwalk_init(var *v, xhash *array) +{ + hash_item *hi; + unsigned i; + walker_list *w; + walker_list *prev_walker; + + if (v->type & VF_WALK) { + prev_walker = v->x.walker; + } else { + v->type |= VF_WALK; + prev_walker = NULL; + } + debug_printf_walker("hashwalk_init: prev_walker:%p\n", prev_walker); + + w = v->x.walker = xzalloc(sizeof(*w) + array->glen + 1); /* why + 1? */ + debug_printf_walker(" walker@%p=%p\n", &v->x.walker, w); + w->cur = w->end = w->wbuf; + w->prev = prev_walker; + for (i = 0; i < array->csize; i++) { + hi = array->items[i]; + while (hi) { + w->end = stpcpy(w->end, hi->name) + 1; + hi = hi->next; + } + } +} + +static int hashwalk_next(var *v) +{ + walker_list *w = v->x.walker; + + if (w->cur >= w->end) { + walker_list *prev_walker = w->prev; + + debug_printf_walker("end of iteration, free(walker@%p:%p), prev_walker:%p\n", &v->x.walker, w, prev_walker); + free(w); + v->x.walker = prev_walker; + return FALSE; + } + + setvar_s(v, nextword(&w->cur)); + return TRUE; +} + +/* evaluate node, return 1 when result is true, 0 otherwise */ +static int ptest(node *pattern) +{ + // We use a single "static" tmpvar (instead of on-stack or malloced one) + // to decrease memory consumption in deeply-recursive awk programs. + // The rule to work safely is to never call evaluate() while our static + // TMPVAR's value is still needed. + return istrue(evaluate(pattern, &G.ptest__tmpvar)); +} + +/* read next record from stream rsm into a variable v */ +static int awk_getline(rstream *rsm, var *v) +{ + char *b; + regmatch_t pmatch[1]; + int p, pp; + int fd, so, eo, retval, rp; + char *m, *s; + + debug_printf_eval("entered %s()\n", __func__); + + /* we're using our own buffer since we need access to accumulating + * characters + */ + fd = fileno(rsm->F); + m = rsm->buffer; + if (!m) + m = qrealloc(m, 256, &rsm->size); + p = rsm->pos; + rp = 0; + pp = 0; + + do { + b = m + rsm->adv; + so = eo = p; + retval = 1; + if (p > 0) { + char c = (char) rsplitter.n.info; + if (rsplitter.n.info == TI_REGEXP) { + if (regexec(&rsplitter.n.l.re[icase], + b, 1, pmatch, 0) == 0 + ) { + so = pmatch[0].rm_so; + eo = pmatch[0].rm_eo; + if (b[eo] != '\0') + break; + } + } else if (c != '\0') { + s = strchr(b+pp, c); + if (!s) + s = memchr(b+pp, '\0', p - pp); + if (s) { + so = eo = s-b; + eo++; + break; + } + } else { + while (b[rp] == '\n') + rp++; + s = strstr(b+rp, "\n\n"); + if (s) { + so = eo = s-b; + while (b[eo] == '\n') + eo++; + if (b[eo] != '\0') + break; + } + } + } + + if (rsm->adv > 0) { + memmove(m, m+rsm->adv, p+1); + b = m; + rsm->adv = 0; + } + + b = m = qrealloc(m, p+128, &rsm->size); + pp = p; + p += safe_read(fd, b+p, rsm->size - p - 1); + if (p < pp) { + p = 0; + retval = 0; + setvar_ERRNO(); + } + b[p] = '\0'; + } while (p > pp); + + if (p == 0) { + retval--; + } else { + setvar_sn(v, b+rp, so-rp); + v->type |= VF_USER; + setvar_sn(intvar[RT], b+so, eo-so); + } + + rsm->buffer = m; + rsm->adv += eo; + rsm->pos = p - eo; + + debug_printf_eval("returning from %s(): %d\n", __func__, retval); + + return retval; +} + +/* formatted output into an allocated buffer, return ptr to buffer */ +#if !ENABLE_FEATURE_AWK_GNU_EXTENSIONS +# define awk_printf(a, b) awk_printf(a) +#endif +static char *awk_printf(node *n, size_t *len) +{ + char *b; + char *fmt, *f; + size_t i; + + //tmpvar = nvalloc(1); +#define TMPVAR (&G.awk_printf__tmpvar) + // We use a single "static" tmpvar (instead of on-stack or malloced one) + // to decrease memory consumption in deeply-recursive awk programs. + // The rule to work safely is to never call evaluate() while our static + // TMPVAR's value is still needed. + fmt = f = xstrdup(getvar_s(evaluate(nextarg(&n), TMPVAR))); + // ^^^^^^^^^ here we immediately strdup() the value, so the later call + // to evaluate() potentially recursing into another awk_printf() can't + // mangle the value. + + b = NULL; + i = 0; + while (1) { /* "print one format spec" loop */ + char *s; + char c; + char sv; + var *arg; + size_t slen; + + /* Find end of the next format spec, or end of line */ + s = f; + while (1) { + c = *f; + if (!c) /* no percent chars found at all */ + goto nul; + f++; + if (c == '%') + break; + } + /* we are past % in "....%..." */ + c = *f; + if (!c) /* "....%" */ + goto nul; + if (c == '%') { /* "....%%...." */ + slen = f - s; + s = xstrndup(s, slen); + f++; + goto append; /* print "....%" part verbatim */ + } + while (1) { + if (isalpha(c)) + break; + if (c == '*') /* gawk supports %*d and %*.*f, we don't... */ + syntax_error("%*x formats are not supported"); + c = *++f; + if (!c) { /* "....%...." and no letter found after % */ + /* Example: awk 'BEGIN { printf "^^^%^^^\n"; }' */ + nul: + slen = f - s; + goto tail; /* print remaining string, exit loop */ + } + } + /* we are at A in "....%...A..." */ + + arg = evaluate(nextarg(&n), TMPVAR); + + /* Result can be arbitrarily long. Example: + * printf "%99999s", "BOOM" + */ + sv = *++f; + *f = '\0'; + if (c == 'c') { + char cc = is_numeric(arg) ? getvar_i(arg) : *getvar_s(arg); + char *r = xasprintf(s, cc ? cc : '^' /* else strlen will be wrong */); + slen = strlen(r); + if (cc == '\0') /* if cc is NUL, re-format the string with it */ + sprintf(r, s, cc); + s = r; + } else { + if (c == 's') { + s = xasprintf(s, getvar_s(arg)); + } else { + double d = getvar_i(arg); + if (strchr("diouxX", c)) { +//TODO: make it wider here (%x -> %llx etc)? +//Can even print the value into a temp string with %.0f, +//then replace diouxX with s and print that string. +//This will correctly print even very large numbers, +//but some replacements are not equivalent: +//%09d -> %09s: breaks zero-padding; +//%+d -> %+s: won't prepend +; etc + s = xasprintf(s, (int)d); + } else if (strchr("eEfFgGaA", c)) { + s = xasprintf(s, d); + } else { + /* gawk 5.1.1 printf("%W") prints "%W", does not error out */ + s = xstrndup(s, f - s); + } + } + slen = strlen(s); + } + *f = sv; + append: + if (i == 0) { + b = s; + i = slen; + continue; + } + tail: + b = xrealloc(b, i + slen + 1); + strcpy(b + i, s); + i += slen; + if (!c) /* s is NOT allocated and this is the last part of string? */ + break; + free(s); + } + + free(fmt); + //nvfree(tmpvar, 1); +#undef TMPVAR + +#if ENABLE_FEATURE_AWK_GNU_EXTENSIONS + if (len) + *len = i; +#endif + return b; +} + +/* Common substitution routine. + * Replace (nm)'th substring of (src) that matches (rn) with (repl), + * store result into (dest), return number of substitutions. + * If nm = 0, replace all matches. + * If src or dst is NULL, use $0. + * If subexp != 0, enable subexpression matching (\0-\9). + */ +static int awk_sub(node *rn, const char *repl, int nm, var *src, var *dest /*,int subexp*/) +{ + char *resbuf; + const char *sp; + int match_no, residx, replen, resbufsize; + int regexec_flags; + regmatch_t pmatch[10]; + regex_t sreg, *regex; + /* True only if called to implement gensub(): */ + int subexp = (src != dest); +#if defined(REG_STARTEND) + const char *src_string; + size_t src_strlen; + regexec_flags = REG_STARTEND; +#else + regexec_flags = 0; +#endif + resbuf = NULL; + residx = 0; + match_no = 0; + regex = as_regex(rn, &sreg); + sp = getvar_s(src ? src : intvar[F0]); +#if defined(REG_STARTEND) + src_string = sp; + src_strlen = strlen(src_string); +#endif + replen = strlen(repl); + for (;;) { + int so, eo; + +#if defined(REG_STARTEND) +// REG_STARTEND: "This flag is a BSD extension, not present in POSIX" + size_t start_ofs = sp - src_string; + pmatch[0].rm_so = start_ofs; + pmatch[0].rm_eo = src_strlen; + if (regexec(regex, src_string, 10, pmatch, regexec_flags) != 0) + break; + eo = pmatch[0].rm_eo - start_ofs; + so = pmatch[0].rm_so - start_ofs; +#else +// BUG: +// gsub(/\= nm) { + const char *s; + int bslash; + + /* replace */ + residx -= (eo - so); + bslash = 0; + for (s = repl; *s; s++) { + char c = *s; + if (c == '\\' && s[1]) { + bslash ^= 1; + if (bslash) + continue; + } + if ((!bslash && c == '&') + || (subexp && bslash && c >= '0' && c <= '9') + ) { + int n, j = 0; + if (c != '&') { + j = c - '0'; + } + n = pmatch[j].rm_eo - pmatch[j].rm_so; + resbuf = qrealloc(resbuf, residx + replen + n, &resbufsize); + memcpy(resbuf + residx, sp + pmatch[j].rm_so - start_ofs, n); + residx += n; + } else + resbuf[residx++] = c; + bslash = 0; + } + } + + sp += eo; + if (match_no == nm) + break; + if (eo == so) { + /* Empty match (e.g. "b*" will match anywhere). + * Advance by one char. */ + /* Subtle: this is safe only because + * qrealloc allocated at least one extra byte */ + resbuf[residx] = *sp; + if (*sp == '\0') + goto ret; + sp++; + residx++; + } + regexec_flags |= REG_NOTBOL; + } + + resbuf = qrealloc(resbuf, residx + strlen(sp), &resbufsize); + strcpy(resbuf + residx, sp); + ret: + //bb_error_msg("end sp:'%s'%p", sp,sp); + setvar_p(dest ? dest : intvar[F0], resbuf); + if (regex == &sreg) + regfree(regex); + return match_no; +} + +static NOINLINE int do_mktime(const char *ds) +{ + struct tm then; + int count; + + /*memset(&then, 0, sizeof(then)); - not needed */ + then.tm_isdst = -1; /* default is unknown */ + + /* manpage of mktime says these fields are ints, + * so we can sscanf stuff directly into them */ + count = sscanf(ds, "%u %u %u %u %u %u %d", + &then.tm_year, &then.tm_mon, &then.tm_mday, + &then.tm_hour, &then.tm_min, &then.tm_sec, + &then.tm_isdst); + + if (count < 6 + || (unsigned)then.tm_mon < 1 + || (unsigned)then.tm_year < 1900 + ) { + return -1; + } + + then.tm_mon -= 1; + then.tm_year -= 1900; + + return mktime(&then); +} + +/* Reduce stack usage in exec_builtin() by keeping match() code separate */ +static NOINLINE var *do_match(node *an1, const char *as0) +{ + regmatch_t pmatch[1]; + regex_t sreg, *re; + int n, start, len; + + re = as_regex(an1, &sreg); + n = regexec(re, as0, 1, pmatch, 0); + if (re == &sreg) + regfree(re); + start = 0; + len = -1; + if (n == 0) { + start = pmatch[0].rm_so + 1; + len = pmatch[0].rm_eo - pmatch[0].rm_so; + } + setvar_i(newvar("RLENGTH"), len); + return setvar_i(newvar("RSTART"), start); +} + +/* Reduce stack usage in evaluate() by keeping builtins' code separate */ +static NOINLINE var *exec_builtin(node *op, var *res) +{ +#define tspl (G.exec_builtin__tspl) + + var *tmpvars; + node *an[4]; + var *av[4]; + const char *as[4]; + node *spl; + uint32_t isr, info; + int nargs; + time_t tt; + int i, l, ll, n; + + tmpvars = nvalloc(4); +#define TMPVAR0 (tmpvars) +#define TMPVAR1 (tmpvars + 1) +#define TMPVAR2 (tmpvars + 2) +#define TMPVAR3 (tmpvars + 3) +#define TMPVAR(i) (tmpvars + (i)) + isr = info = op->info; + op = op->l.n; + + av[2] = av[3] = NULL; + for (i = 0; i < 4 && op; i++) { + an[i] = nextarg(&op); + if (isr & 0x09000000) { + av[i] = evaluate(an[i], TMPVAR(i)); + if (isr & 0x08000000) + as[i] = getvar_s(av[i]); + } + isr >>= 1; + } + + nargs = i; + if ((uint32_t)nargs < (info >> 30)) + syntax_error(EMSG_TOO_FEW_ARGS); + + info &= OPNMASK; + switch (info) { + + case B_a2: + if (ENABLE_FEATURE_AWK_LIBM) + setvar_i(res, atan2(getvar_i(av[0]), getvar_i(av[1]))); + else + syntax_error(EMSG_NO_MATH); + break; + + case B_sp: { + char *s, *s1; + + if (nargs > 2) { + spl = (an[2]->info == TI_REGEXP) ? an[2] + : mk_splitter(getvar_s(evaluate(an[2], TMPVAR2)), &tspl); + } else { + spl = &fsplitter.n; + } + + n = awk_split(as[0], spl, &s); + s1 = s; + clear_array(iamarray(av[1])); + for (i = 1; i <= n; i++) + setari_u(av[1], i, nextword(&s)); + free(s1); + setvar_i(res, n); + break; + } + + case B_ss: { + l = strlen(as[0]); + i = getvar_i(av[1]) - 1; + if (i > l) + i = l; + if (i < 0) + i = 0; + n = (nargs > 2) ? getvar_i(av[2]) : l-i; + if (n < 0) + n = 0; + setvar_sn(res, as[0]+i, n); + break; + } + + /* Bitwise ops must assume that operands are unsigned. GNU Awk 3.1.5: + * awk '{ print or(-1,1) }' gives "4.29497e+09", not "-2.xxxe+09" */ + case B_an: + setvar_i(res, getvar_i_int(av[0]) & getvar_i_int(av[1])); + break; + + case B_co: + setvar_i(res, ~getvar_i_int(av[0])); + break; + + case B_ls: + setvar_i(res, getvar_i_int(av[0]) << getvar_i_int(av[1])); + break; + + case B_or: + setvar_i(res, getvar_i_int(av[0]) | getvar_i_int(av[1])); + break; + + case B_rs: + setvar_i(res, getvar_i_int(av[0]) >> getvar_i_int(av[1])); + break; + + case B_xo: + setvar_i(res, getvar_i_int(av[0]) ^ getvar_i_int(av[1])); + break; + + case B_lo: + case B_up: { + char *s, *s1; + s1 = s = xstrdup(as[0]); + while (*s1) { + //*s1 = (info == B_up) ? toupper(*s1) : tolower(*s1); + if ((unsigned char)((*s1 | 0x20) - 'a') <= ('z' - 'a')) + *s1 = (info == B_up) ? (*s1 & 0xdf) : (*s1 | 0x20); + s1++; + } + setvar_p(res, s); + break; + } + + case B_ix: + n = 0; + ll = strlen(as[1]); + l = strlen(as[0]) - ll; + if (ll > 0 && l >= 0) { + if (!icase) { + char *s = strstr(as[0], as[1]); + if (s) + n = (s - as[0]) + 1; + } else { + /* this piece of code is terribly slow and + * really should be rewritten + */ + for (i = 0; i <= l; i++) { + if (strncasecmp(as[0]+i, as[1], ll) == 0) { + n = i+1; + break; + } + } + } + } + setvar_i(res, n); + break; + + case B_ti: + if (nargs > 1) + tt = getvar_i(av[1]); + else + time(&tt); + i = strftime(g_buf, MAXVARFMT, + ((nargs > 0) ? as[0] : "%a %b %d %H:%M:%S %Z %Y"), + localtime(&tt)); + setvar_sn(res, g_buf, i); + break; + + case B_mt: + setvar_i(res, do_mktime(as[0])); + break; + + case B_ma: + res = do_match(an[1], as[0]); + break; + + case B_ge: /* gensub(regex, repl, matchnum, string) */ + awk_sub(an[0], as[1], /*matchnum:*/getvar_i(av[2]), /*src:*/av[3], /*dst:*/res/*, TRUE*/); + break; + + case B_gs: /* gsub(regex, repl, string) */ + setvar_i(res, awk_sub(an[0], as[1], /*matchnum:all*/0, /*src:*/av[2], /*dst:*/av[2]/*, FALSE*/)); + break; + + case B_su: /* sub(regex, repl, string) */ + setvar_i(res, awk_sub(an[0], as[1], /*matchnum:first*/1, /*src:*/av[2], /*dst:*/av[2]/*, FALSE*/)); + break; + } + + nvfree(tmpvars, 4); +#undef TMPVAR0 +#undef TMPVAR1 +#undef TMPVAR2 +#undef TMPVAR3 +#undef TMPVAR + + return res; +#undef tspl +} + +/* if expr looks like "var=value", perform assignment and return 1, + * otherwise return 0 */ +static int try_to_assign(const char *expr) +{ + char *exprc, *val; + + val = (char*)endofname(expr); + if (val == (char*)expr || *val != '=') { + return FALSE; + } + + exprc = xstrdup(expr); + val = exprc + (val - expr); + *val++ = '\0'; + + unescape_string_in_place(val); + setvar_u(newvar(exprc), val); + free(exprc); + return TRUE; +} + +/* switch to next input file */ +static int next_input_file(void) +{ +#define input_file_seen (G.next_input_file__input_file_seen) +#define argind (G.next_input_file__argind) + const char *fname; + + if (iF.F) { + fclose(iF.F); + iF.F = NULL; + iF.pos = iF.adv = 0; + } + + for (;;) { + /* GNU Awk 5.1.1 does not _read_ ARGIND (but does read ARGC). + * It only sets ARGIND to 1, 2, 3... for every command-line filename + * (VAR=VAL params cause a gap in numbering). + * If there are none and stdin is used, then ARGIND is not modified: + * if it is set by e.g. 'BEGIN { ARGIND="foo" }', that value will + * still be there. + */ + argind++; + if (argind >= getvar_i(intvar[ARGC])) { + if (input_file_seen) + return FALSE; + fname = "-"; + iF.F = stdin; + break; + } + fname = getvar_s(findvar(iamarray(intvar[ARGV]), utoa(argind))); + if (fname && *fname) { + if (got_program != 2) { /* there was no -E option */ + /* "If a filename on the command line has the form + * var=val it is treated as a variable assignment" + */ + if (try_to_assign(fname)) + continue; + } + iF.F = xfopen_stdin(fname); + setvar_i(intvar[ARGIND], argind); + break; + } + } + + setvar_s(intvar[FILENAME], fname); + input_file_seen = TRUE; + return TRUE; +#undef argind +#undef input_file_seen +} + +/* + * Evaluate node - the heart of the program. Supplied with subtree + * and "res" variable to assign the result to if we evaluate an expression. + * If node refers to e.g. a variable or a field, no assignment happens. + * Return ptr to the result (which may or may not be the "res" variable!) + */ +#define XC(n) ((n) >> 8) + +static var *evaluate(node *op, var *res) +{ +/* This procedure is recursive so we should count every byte */ +#define fnargs (G.evaluate__fnargs) +/* seed is initialized to 1 */ +#define seed (G.evaluate__seed) +#define sreg (G.evaluate__sreg) + + var *tmpvars; + + if (!op) + return setvar_s(res, NULL); + + debug_printf_eval("entered %s()\n", __func__); + + tmpvars = nvalloc(2); +#define TMPVAR0 (tmpvars) +#define TMPVAR1 (tmpvars + 1) + + while (op) { + struct { + var *v; + const char *s; + } L = L; /* for compiler */ + struct { + var *v; + const char *s; + } R = R; + double L_d = L_d; + uint32_t opinfo; + int opn; + node *op1; + var *old_Fields_ptr; + + opinfo = op->info; + opn = (opinfo & OPNMASK); + g_lineno = op->lineno; + op1 = op->l.n; + debug_printf_eval("opinfo:%08x opn:%08x\n", opinfo, opn); + + /* execute inevitable things */ + old_Fields_ptr = NULL; + if (opinfo & OF_RES1) { + if ((opinfo & OF_REQUIRED) && !op1) + syntax_error(EMSG_TOO_FEW_ARGS); + L.v = evaluate(op1, TMPVAR0); + /* Does L.v point to $n variable? */ + if ((size_t)(L.v - Fields) < num_alloc_fields) { + /* yes, remember where Fields[] is */ + old_Fields_ptr = Fields; + } + if (opinfo & OF_NUM1) { + L_d = getvar_i(L.v); + debug_printf_eval("L_d:%f\n", L_d); + } + } + /* NB: if both L and R are $NNNs, and right one is large, + * then at this pint L.v points to Fields[NNN1], second + * evaluate() below reallocates and moves (!) Fields[], + * R.v points to Fields[NNN2] but L.v now points to freed mem! + * (Seen trying to evaluate "$444 $44444") + */ + if (opinfo & OF_RES2) { + R.v = evaluate(op->r.n, TMPVAR1); + /* Seen in $5=$$5=$0: + * Evaluation of R.v ($$5=$0 expression) + * made L.v ($5) invalid. It's detected here. + */ + if (old_Fields_ptr) { + //if (old_Fields_ptr != Fields) + // debug_printf_eval("L.v moved\n"); + L.v = Fields + (L.v - old_Fields_ptr); + } + if (opinfo & OF_STR2) { + R.s = getvar_s(R.v); + debug_printf_eval("R.s:'%s'\n", R.s); + } + } + /* Get L.s _after_ R.v is evaluated: it may have realloc'd L.v + * so we must get the string after "old_Fields_ptr" correction + * above. Testcase: x = (v = "abc", gsub("b", "X", v)); + */ + if (opinfo & OF_RES1) { + if (opinfo & OF_STR1) { + L.s = getvar_s(L.v); + debug_printf_eval("L.s:'%s'\n", L.s); + } + } + + debug_printf_eval("switch(0x%x)\n", XC(opinfo & OPCLSMASK)); + switch (XC(opinfo & OPCLSMASK)) { + + /* -- iterative node type -- */ + + /* test pattern */ + case XC( OC_TEST ): + debug_printf_eval("TEST\n"); + if (op1->info == TI_COMMA) { + /* it's range pattern */ + if ((opinfo & OF_CHECKED) || ptest(op1->l.n)) { + op->info |= OF_CHECKED; + if (ptest(op1->r.n)) + op->info &= ~OF_CHECKED; + op = op->a.n; + } else { + op = op->r.n; + } + } else { + op = ptest(op1) ? op->a.n : op->r.n; + } + break; + + /* just evaluate an expression, also used as unconditional jump */ + case XC( OC_EXEC ): + debug_printf_eval("EXEC\n"); + break; + + /* branch, used in if-else and various loops */ + case XC( OC_BR ): + debug_printf_eval("BR\n"); + op = istrue(L.v) ? op->a.n : op->r.n; + break; + + /* initialize for-in loop */ + case XC( OC_WALKINIT ): + debug_printf_eval("WALKINIT\n"); + hashwalk_init(L.v, iamarray(R.v)); + break; + + /* get next array item */ + case XC( OC_WALKNEXT ): + debug_printf_eval("WALKNEXT\n"); + op = hashwalk_next(L.v) ? op->a.n : op->r.n; + break; + + case XC( OC_PRINT ): + debug_printf_eval("PRINT /\n"); + case XC( OC_PRINTF ): + debug_printf_eval("PRINTF\n"); + { + FILE *F = stdout; + + if (op->r.n) { + rstream *rsm = newfile(R.s); + if (!rsm->F) { + if (opn == '|') { + rsm->F = popen(R.s, "w"); + if (rsm->F == NULL) + bb_simple_perror_msg_and_die("popen"); + rsm->is_pipe = 1; + } else { + rsm->F = xfopen(R.s, opn=='w' ? "w" : "a"); + } + } + F = rsm->F; + } + + /* Can't just check 'opinfo == OC_PRINT' here, parser ORs + * additional bits to opinfos of print/printf with redirects + */ + if ((opinfo & OPCLSMASK) == OC_PRINT) { + if (!op1) { + fputs(getvar_s(intvar[F0]), F); + } else { + for (;;) { + var *v = evaluate(nextarg(&op1), TMPVAR0); + if (v->type & VF_NUMBER) { + fputs(fmt_num(getvar_s(intvar[OFMT]), getvar_i(v)), + F); + } else { + fputs(getvar_s(v), F); + } + if (!op1) + break; + fputs(getvar_s(intvar[OFS]), F); + } + } + fputs(getvar_s(intvar[ORS]), F); + } else { /* PRINTF */ + IF_FEATURE_AWK_GNU_EXTENSIONS(size_t len;) + char *s = awk_printf(op1, &len); +#if ENABLE_FEATURE_AWK_GNU_EXTENSIONS + fwrite(s, len, 1, F); +#else + fputs(s, F); +#endif + free(s); + } + fflush(F); + break; + } + + case XC( OC_DELETE ): + debug_printf_eval("DELETE\n"); + { + /* "delete" is special: + * "delete array[var--]" must evaluate index expr only once. + */ + uint32_t info = op1->info & OPCLSMASK; + var *v; + + if (info == OC_VAR) { + v = op1->l.v; + } else if (info == OC_FNARG) { + v = &fnargs[op1->l.aidx]; + } else { + syntax_error(EMSG_NOT_ARRAY); + } + if (op1->r.n) { /* array ref? */ + const char *s; + s = getvar_s(evaluate(op1->r.n, TMPVAR0)); + hash_remove(iamarray(v), s); + } else { + clear_array(iamarray(v)); + } + break; + } + + case XC( OC_NEWSOURCE ): + debug_printf_eval("NEWSOURCE\n"); + g_progname = op->l.new_progname; + break; + + case XC( OC_RETURN ): + debug_printf_eval("RETURN\n"); + copyvar(res, L.v); + break; + + case XC( OC_NEXTFILE ): + debug_printf_eval("NEXTFILE\n"); + nextfile = TRUE; + case XC( OC_NEXT ): + debug_printf_eval("NEXT\n"); + nextrec = TRUE; + case XC( OC_DONE ): + debug_printf_eval("DONE\n"); + clrvar(res); + break; + + case XC( OC_EXIT ): + debug_printf_eval("EXIT\n"); + if (op1) + G.exitcode = (int)L_d; + awk_exit(); + + /* -- recursive node type -- */ + + case XC( OC_CONST ): + debug_printf_eval("CONST "); + case XC( OC_VAR ): + debug_printf_eval("VAR\n"); + L.v = op->l.v; + if (L.v == intvar[NF]) + split_f0(); + goto v_cont; + + case XC( OC_FNARG ): + debug_printf_eval("FNARG[%d]\n", op->l.aidx); + L.v = &fnargs[op->l.aidx]; + v_cont: + res = op->r.n ? findvar(iamarray(L.v), R.s) : L.v; + break; + + case XC( OC_IN ): + debug_printf_eval("IN\n"); + setvar_i(res, hash_search(iamarray(R.v), L.s) ? 1 : 0); + break; + + case XC( OC_REGEXP ): + debug_printf_eval("REGEXP\n"); + op1 = op; + L.s = getvar_s(intvar[F0]); + goto re_cont; + + case XC( OC_MATCH ): + debug_printf_eval("MATCH\n"); + op1 = op->r.n; + re_cont: + { + regex_t *re = as_regex(op1, &sreg); + int i = regexec(re, L.s, 0, NULL, 0); + if (re == &sreg) + regfree(re); + setvar_i(res, (i == 0) ^ (opn == '!')); + } + break; + + case XC( OC_MOVE ): + debug_printf_eval("MOVE\n"); + /* make sure that we never return a temp var */ + if (L.v == TMPVAR0) + L.v = res; + /* if source is a temporary string, just relink it to dest */ + if (R.v == TMPVAR1 + && !(R.v->type & VF_NUMBER) + /* Why check !NUMBER? if R.v is a number but has cached R.v->string, + * L.v ends up a string, which is wrong */ + /*&& R.v->string - always not NULL (right?) */ + ) { + res = setvar_p(L.v, R.v->string); /* avoids strdup */ + R.v->string = NULL; + } else { + res = copyvar(L.v, R.v); + } + break; + + case XC( OC_TERNARY ): + debug_printf_eval("TERNARY\n"); + if (op->r.n->info != TI_COLON) + syntax_error(EMSG_POSSIBLE_ERROR); + res = evaluate(istrue(L.v) ? op->r.n->l.n : op->r.n->r.n, res); + break; + + case XC( OC_FUNC ): { + var *argvars, *sv_fnargs; + const char *sv_progname; + int nargs, i; + + debug_printf_eval("FUNC\n"); + + if (!op->r.f->defined) + syntax_error(EMSG_UNDEF_FUNC); + + /* The body might be empty, still has to eval the args */ + nargs = op->r.f->nargs; + argvars = nvalloc(nargs); + i = 0; + while (op1) { + var *arg = evaluate(nextarg(&op1), TMPVAR0); + if (i == nargs) { + /* call with more arguments than function takes. + * (gawk warns: "warning: function 'f' called with more arguments than declared"). + * They are still evaluated, but discarded: */ + clrvar(arg); + continue; + } + copyvar(&argvars[i], arg); + argvars[i].type |= VF_CHILD; + argvars[i].x.parent = arg; + i++; + } + + sv_fnargs = fnargs; + sv_progname = g_progname; + + fnargs = argvars; + res = evaluate(op->r.f->body.first, res); + nvfree(argvars, nargs); + + g_progname = sv_progname; + fnargs = sv_fnargs; + + break; + } + + case XC( OC_GETLINE ): + debug_printf_eval("GETLINE /\n"); + case XC( OC_PGETLINE ): + debug_printf_eval("PGETLINE\n"); + { + rstream *rsm; + int i; + + if (op1) { + rsm = newfile(L.s); + if (!rsm->F) { + /* NB: can't use "opinfo == TI_PGETLINE", would break "cmd" | getline */ + if ((opinfo & OPCLSMASK) == OC_PGETLINE) { + rsm->F = popen(L.s, "r"); + rsm->is_pipe = TRUE; + } else { + rsm->F = fopen_for_read(L.s); /* not xfopen! */ + } + } + } else { + if (!iF.F) + next_input_file(); + rsm = &iF; + } + + if (!rsm->F) { + setvar_ERRNO(); + setvar_i(res, -1); + break; + } + + if (!op->r.n) + R.v = intvar[F0]; + + i = awk_getline(rsm, R.v); + if (i > 0 && !op1) { + incvar(intvar[FNR]); + incvar(intvar[NR]); + } + setvar_i(res, i); + break; + } + + /* simple builtins */ + case XC( OC_FBLTIN ): { + double R_d = R_d; /* for compiler */ + debug_printf_eval("FBLTIN\n"); + + if (op1 && op1->info == TI_COMMA) + /* Simple builtins take one arg maximum */ + syntax_error("Too many arguments"); + + switch (opn) { + case F_in: + R_d = (long long)L_d; + break; + + case F_rn: /*rand*/ + if (op1) + syntax_error("Too many arguments"); + { +#if RAND_MAX >= 0x7fffffff + uint32_t u = ((uint32_t)rand() << 16) ^ rand(); + uint64_t v = ((uint64_t)rand() << 32) | u; + /* the above shift+or is optimized out on 32-bit arches */ +# if RAND_MAX > 0x7fffffff + v &= 0x7fffffffffffffffULL; +# endif + R_d = (double)v / 0x8000000000000000ULL; +#else +# error Not implemented for this value of RAND_MAX +#endif + break; + } + case F_co: + if (ENABLE_FEATURE_AWK_LIBM) { + R_d = cos(L_d); + break; + } + + case F_ex: + if (ENABLE_FEATURE_AWK_LIBM) { + R_d = exp(L_d); + break; + } + + case F_lg: + if (ENABLE_FEATURE_AWK_LIBM) { + R_d = log(L_d); + break; + } + + case F_si: + if (ENABLE_FEATURE_AWK_LIBM) { + R_d = sin(L_d); + break; + } + + case F_sq: + if (ENABLE_FEATURE_AWK_LIBM) { + R_d = sqrt(L_d); + break; + } + + syntax_error(EMSG_NO_MATH); + break; + + case F_sr: + R_d = (double)seed; + seed = op1 ? (unsigned)L_d : (unsigned)time(NULL); + srand(seed); + break; + + case F_ti: /*systime*/ + if (op1) + syntax_error("Too many arguments"); + R_d = time(NULL); + break; + + case F_le: + debug_printf_eval("length: L.s:'%s'\n", L.s); + if (!op1) { + L.s = getvar_s(intvar[F0]); + debug_printf_eval("length: L.s='%s'\n", L.s); + } + else if (L.v->type & VF_ARRAY) { + R_d = L.v->x.array->nel; + debug_printf_eval("length: array_len:%d\n", L.v->x.array->nel); + break; + } + R_d = strlen(L.s); + break; + + case F_sy: + fflush_all(); + R_d = (ENABLE_FEATURE_ALLOW_EXEC && L.s && *L.s) + ? (system(L.s) >> 8) : 0; + break; + + case F_ff: + if (!op1) { + fflush(stdout); + } else if (L.s && *L.s) { + rstream *rsm = newfile(L.s); + fflush(rsm->F); + } else { + fflush_all(); + } + break; + + case F_cl: { + rstream *rsm; + int err = 0; + rsm = (rstream *)hash_search(fdhash, L.s); + debug_printf_eval("OC_FBLTIN close: op1:%p s:'%s' rsm:%p\n", op1, L.s, rsm); + if (rsm) { + debug_printf_eval("OC_FBLTIN F_cl " + "rsm->is_pipe:%d, ->F:%p\n", + rsm->is_pipe, rsm->F); + /* Can be NULL if open failed. Example: + * getline line <"doesnt_exist"; + * close("doesnt_exist"); <--- here rsm->F is NULL + */ + if (rsm->F) + err = rsm->is_pipe ? pclose(rsm->F) : fclose(rsm->F); + free(rsm->buffer); + hash_remove(fdhash, L.s); + } else { + err = -1; + /* gawk 'BEGIN { print close(""); print ERRNO }' + * -1 + * close of redirection that was never opened + */ + errno = ENOENT; + } + if (err) + setvar_ERRNO(); + R_d = (double)err; + break; + } + } /* switch */ + setvar_i(res, R_d); + break; + } + + case XC( OC_BUILTIN ): + debug_printf_eval("BUILTIN\n"); + res = exec_builtin(op, res); + break; + + case XC( OC_SPRINTF ): + debug_printf_eval("SPRINTF\n"); + setvar_p(res, awk_printf(op1, NULL)); + break; + + case XC( OC_UNARY ): + debug_printf_eval("UNARY\n"); + { + double Ld, R_d; + + Ld = R_d = getvar_i(R.v); + switch (opn) { + case 'P': + Ld = ++R_d; + goto r_op_change; + case 'p': + R_d++; + goto r_op_change; + case 'M': + Ld = --R_d; + goto r_op_change; + case 'm': + R_d--; + r_op_change: + setvar_i(R.v, R_d); + break; + case '!': + Ld = !istrue(R.v); + break; + case '-': + Ld = -R_d; + break; + } + setvar_i(res, Ld); + break; + } + + case XC( OC_FIELD ): + debug_printf_eval("FIELD\n"); + { + int i = (int)getvar_i(R.v); + if (i < 0) + syntax_error(EMSG_NEGATIVE_FIELD); + if (i == 0) { + res = intvar[F0]; + } else { + split_f0(); + if (i > num_fields) + fsrealloc(i); + res = &Fields[i - 1]; + } + break; + } + + /* concatenation (" ") and index joining (",") */ + case XC( OC_CONCAT ): + debug_printf_eval("CONCAT /\n"); + case XC( OC_COMMA ): { + const char *sep = ""; + debug_printf_eval("COMMA\n"); + if (opinfo == TI_COMMA) + sep = getvar_s(intvar[SUBSEP]); + setvar_p(res, xasprintf("%s%s%s", L.s, sep, R.s)); + break; + } + + case XC( OC_LAND ): + debug_printf_eval("LAND\n"); + setvar_i(res, istrue(L.v) ? ptest(op->r.n) : 0); + break; + + case XC( OC_LOR ): + debug_printf_eval("LOR\n"); + setvar_i(res, istrue(L.v) ? 1 : ptest(op->r.n)); + break; + + case XC( OC_BINARY ): + debug_printf_eval("BINARY /\n"); + case XC( OC_REPLACE ): + debug_printf_eval("REPLACE\n"); + { + double R_d = getvar_i(R.v); + debug_printf_eval("R_d:%f opn:%c\n", R_d, opn); + switch (opn) { + case '+': + L_d += R_d; + break; + case '-': + L_d -= R_d; + break; + case '*': + L_d *= R_d; + break; + case '/': + if (R_d == 0) + syntax_error(EMSG_DIV_BY_ZERO); + L_d /= R_d; + break; + case '&': + if (ENABLE_FEATURE_AWK_LIBM) + L_d = pow(L_d, R_d); + else + syntax_error(EMSG_NO_MATH); + break; + case '%': + if (R_d == 0) + syntax_error(EMSG_DIV_BY_ZERO); + L_d -= (long long)(L_d / R_d) * R_d; + break; + } + debug_printf_eval("BINARY/REPLACE result:%f\n", L_d); + res = setvar_i(((opinfo & OPCLSMASK) == OC_BINARY) ? res : L.v, L_d); + break; + } + + case XC( OC_COMPARE ): { + int i = i; /* for compiler */ + double Ld; + debug_printf_eval("COMPARE\n"); + + if (is_numeric(L.v) && is_numeric(R.v)) { + Ld = getvar_i(L.v) - getvar_i(R.v); + } else { + const char *l = getvar_s(L.v); + const char *r = getvar_s(R.v); + Ld = icase ? strcasecmp(l, r) : strcmp(l, r); + } + switch (opn & 0xfe) { + case 0: + i = (Ld > 0); + break; + case 2: + i = (Ld >= 0); + break; + case 4: + i = (Ld == 0); + break; + } + debug_printf_eval("COMPARE result: %d\n", (i == 0) ^ (opn & 1)); + setvar_i(res, (i == 0) ^ (opn & 1)); + break; + } + + default: + syntax_error(EMSG_POSSIBLE_ERROR); + } /* switch */ + + if ((opinfo & OPCLSMASK) <= SHIFT_TIL_THIS) + op = op->a.n; + if ((opinfo & OPCLSMASK) >= RECUR_FROM_THIS) + break; + if (nextrec) + break; + } /* while (op) */ + + nvfree(tmpvars, 2); +#undef TMPVAR0 +#undef TMPVAR1 + + debug_printf_eval("returning from %s(): %p\n", __func__, res); + return res; +#undef fnargs +#undef seed +#undef sreg +} + +static int awk_exit(void) +{ + unsigned i; + + if (!exiting) { + exiting = TRUE; + nextrec = FALSE; + evaluate(endseq.first, &G.exit__tmpvar); + } + + /* waiting for children */ + for (i = 0; i < fdhash->csize; i++) { + hash_item *hi; + hi = fdhash->items[i]; + while (hi) { + if (hi->data.rs.F && hi->data.rs.is_pipe) + pclose(hi->data.rs.F); + hi = hi->next; + } + } + + exit(G.exitcode); +} + +int awk_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int awk_main(int argc UNUSED_PARAM, char **argv) +{ + int ch; + int i; + + INIT_G(); + + /* Undo busybox.c, or else strtod may eat ','! This breaks parsing: + * $1,$2 == '$1,' '$2', NOT '$1' ',' '$2' */ + if (ENABLE_LOCALE_SUPPORT) + setlocale(LC_NUMERIC, "C"); + + /* initialize variables */ + vhash = hash_init(); + { + char *vnames = (char *)vNames; /* cheat */ + char *vvalues = (char *)vValues; + for (i = 0; *vnames; i++) { + var *v; + intvar[i] = v = newvar(nextword(&vnames)); + if (*vvalues != '\377') + setvar_s(v, nextword(&vvalues)); + else + setvar_i(v, 0); + + if (*vnames == '*') { + v->type |= VF_SPECIAL; + vnames++; + } + } + } + + handle_special(intvar[FS]); + handle_special(intvar[RS]); + + /* Huh, people report that sometimes environ is NULL. Oh well. */ + if (environ) { + char **envp; + for (envp = environ; *envp; envp++) { + /* environ is writable, thus we don't strdup it needlessly */ + char *s = *envp; + char *s1 = strchr(s, '='); + if (s1) { + *s1 = '\0'; + /* Both findvar and setvar_u take const char* + * as 2nd arg -> environment is not trashed */ + setvar_u(findvar(iamarray(intvar[ENVIRON]), s), s1 + 1); + *s1 = '='; + } + } + } + + fnhash = hash_init(); + ahash = hash_init(); + + /* Cannot use getopt32: need to preserve order of -e / -f / -E / -i */ + while ((ch = getopt(argc, argv, OPTSTR_AWK)) >= 0) { + switch (ch) { + case 'F': + unescape_string_in_place(optarg); + setvar_s(intvar[FS], optarg); + break; + case 'v': + if (!try_to_assign(optarg)) + bb_show_usage(); + break; +//TODO: implement -i LIBRARY, it is easy-ish + case 'E': + case 'f': { + int fd; + char *s; + g_progname = optarg; + fd = xopen_stdin(g_progname); + s = xmalloc_read(fd, NULL); /* it's NUL-terminated */ + if (!s) + bb_perror_msg_and_die("read error from '%s'", g_progname); + close(fd); + parse_program(s); + free(s); + got_program = 1; + if (ch == 'E') { + got_program = 2; + goto stop_option_parsing; + } + break; + } +#if ENABLE_FEATURE_AWK_GNU_EXTENSIONS + case 'e': + g_progname = "cmd. line"; + parse_program(optarg); + got_program = 1; + break; +#endif + case 'W': + bb_simple_error_msg("warning: option -W is ignored"); + break; + default: +//bb_error_msg("ch:%d", ch); + bb_show_usage(); + } + } + stop_option_parsing: + + argv += optind; + //argc -= optind; + + if (!got_program) { + if (!*argv) + bb_show_usage(); + g_progname = "cmd. line"; + parse_program(*argv++); + } + + /* Free unused parse structures */ + //hash_free(fnhash); // ~250 bytes when empty, used only for function names + //^^^^^^^^^^^^^^^^^ does not work, hash_clear() inside SEGVs + // (IOW: hash_clear() assumes it's a hash of variables. fnhash is not). + free(fnhash->items); + free(fnhash); + fnhash = NULL; // debug + //hash_free(ahash); // empty after parsing, will reuse as fdhash instead of freeing + + /* Parsing done, on to executing */ + + /* fill in ARGV array */ + setari_u(intvar[ARGV], 0, "awk"); + i = 0; + while (*argv) + setari_u(intvar[ARGV], ++i, *argv++); + setvar_i(intvar[ARGC], i + 1); + + //fdhash = ahash; // done via define + newfile("/dev/stdin")->F = stdin; + newfile("/dev/stdout")->F = stdout; + newfile("/dev/stderr")->F = stderr; + + evaluate(beginseq.first, &G.main__tmpvar); + if (!mainseq.first && !endseq.first) + awk_exit(); + + /* input file could already be opened in BEGIN block */ + if (!iF.F) + goto next_file; /* no, it wasn't, go try opening */ + /* Iterate over input files */ + for (;;) { + nextfile = FALSE; + setvar_i(intvar[FNR], 0); + + while ((i = awk_getline(&iF, intvar[F0])) > 0) { + nextrec = FALSE; + incvar(intvar[NR]); + incvar(intvar[FNR]); + evaluate(mainseq.first, &G.main__tmpvar); + + if (nextfile) + break; + } + if (i < 0) + syntax_error(strerror(errno)); + next_file: + if (!next_input_file()) + break; + } + + awk_exit(); + /*return 0;*/ +} diff --git a/busybox-1_37_0/editors/cmp.c b/busybox-1_37_0/editors/cmp.c new file mode 100644 index 000000000..54f347508 --- /dev/null +++ b/busybox-1_37_0/editors/cmp.c @@ -0,0 +1,166 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini cmp implementation for busybox + * + * Copyright (C) 2000,2001 by Matt Kraai + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config CMP +//config: bool "cmp (5.3 kb)" +//config: default y +//config: help +//config: cmp is used to compare two files and returns the result +//config: to standard output. + +//applet:IF_CMP(APPLET(cmp, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_CMP) += cmp.o + +//usage:#define cmp_trivial_usage +//usage: "[-ls] [-n NUM] FILE1 [FILE2" IF_DESKTOP(" [SKIP1 [SKIP2]]") "]" +//usage:#define cmp_full_usage "\n\n" +//usage: "Compare FILE1 with FILE2 (or stdin)\n" +//usage: "\n -l Write the byte numbers (decimal) and values (octal)" +//usage: "\n for all differing bytes" +//usage: "\n -s Quiet" +//usage: "\n -n NUM Compare at most NUM bytes" + +/* BB_AUDIT SUSv3 (virtually) compliant -- uses nicer GNU format for -l. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/cmp.html */ + +#include "libbb.h" + +static const char fmt_eof[] ALIGN1 = "cmp: EOF on %s\n"; +static const char fmt_differ[] ALIGN1 = "%s %s differ: char %"OFF_FMT"u, line %u\n"; +// This fmt_l_opt uses gnu-isms. SUSv3 would be "%.0s%.0s%"OFF_FMT"u %o %o\n" +static const char fmt_l_opt[] ALIGN1 = "%.0s%.0s%"OFF_FMT"u %3o %3o\n"; + +#define OPT_STR "sln:+" +#define CMP_OPT_s (1<<0) +#define CMP_OPT_l (1<<1) +#define CMP_OPT_n (1<<2) + +int cmp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int cmp_main(int argc UNUSED_PARAM, char **argv) +{ + FILE *fp1, *fp2, *outfile = stdout; + const char *filename1, *filename2 = "-"; + off_t skip1 = 0, skip2 = 0, char_pos = 0; + int line_pos = 1; /* Hopefully won't overflow... */ + const char *fmt; + int c1, c2; + unsigned opt; + int retval = 0; + int max_count = -1; + +#if !ENABLE_LONG_OPTS + opt = getopt32(argv, "^" + OPT_STR + "\0" "-1" + IF_DESKTOP(":?4") + IF_NOT_DESKTOP(":?2") + ":l--s:s--l", + &max_count + ); +#else + static const char cmp_longopts[] ALIGN1 = + "bytes\0" Required_argument "n" + "quiet\0" No_argument "s" + "silent\0" No_argument "s" + "verbose\0" No_argument "l" + ; + opt = getopt32long(argv, "^" + OPT_STR + "\0" "-1" + IF_DESKTOP(":?4") + IF_NOT_DESKTOP(":?2") + ":l--s:s--l", + cmp_longopts, + &max_count + ); +#endif + argv += optind; + + filename1 = *argv; + if (*++argv) { + filename2 = *argv; + if (ENABLE_DESKTOP && *++argv) { + skip1 = XATOOFF(*argv); + if (*++argv) { + skip2 = XATOOFF(*argv); + } + } + } + + xfunc_error_retval = 2; /* missing file results in exitcode 2 */ + if (opt & CMP_OPT_s) + logmode = 0; /* -s suppresses open error messages */ + fp1 = xfopen_stdin(filename1); + fp2 = xfopen_stdin(filename2); + if (fp1 == fp2) { /* Paranoia check... stdin == stdin? */ + /* Note that we don't bother reading stdin. Neither does gnu wc. + * But perhaps we should, so that other apps down the chain don't + * get the input. Consider 'echo hello | (cmp - - && cat -)'. + */ + return 0; + } + logmode = LOGMODE_STDIO; + + if (opt & CMP_OPT_l) + fmt = fmt_l_opt; + else + fmt = fmt_differ; + + if (ENABLE_DESKTOP) { + while (skip1) { getc(fp1); skip1--; } + while (skip2) { getc(fp2); skip2--; } + } + do { + if (max_count >= 0 && --max_count < 0) + break; + c1 = getc(fp1); + c2 = getc(fp2); + ++char_pos; + if (c1 != c2) { /* Remember: a read error may have occurred. */ + retval = 1; /* But assume the files are different for now. */ + if (c2 == EOF) { + /* We know that fp1 isn't at EOF or in an error state. But to + * save space below, things are setup to expect an EOF in fp1 + * if an EOF occurred. So, swap things around. + */ + fp1 = fp2; + filename1 = filename2; + c1 = c2; + } + if (c1 == EOF) { + die_if_ferror(fp1, filename1); + fmt = fmt_eof; /* Well, no error, so it must really be EOF. */ + outfile = stderr; + /* There may have been output to stdout (option -l), so + * make sure we fflush before writing to stderr. */ + fflush_all(); + } + if (!(opt & CMP_OPT_s)) { + if (opt & CMP_OPT_l) { + line_pos = c1; /* line_pos is unused in the -l case. */ + } + fprintf(outfile, fmt, filename1, filename2, char_pos, line_pos, c2); + if (opt) { /* This must be -l since not -s. */ + /* If we encountered an EOF, + * the while check will catch it. */ + continue; + } + } + break; + } + if (c1 == '\n') { + ++line_pos; + } + } while (c1 != EOF); + + die_if_ferror(fp1, filename1); + die_if_ferror(fp2, filename2); + + fflush_stdout_and_exit(retval); +} diff --git a/busybox-1_37_0/editors/diff.c b/busybox-1_37_0/editors/diff.c new file mode 100644 index 000000000..1adc4cbc7 --- /dev/null +++ b/busybox-1_37_0/editors/diff.c @@ -0,0 +1,1058 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini diff implementation for busybox, adapted from OpenBSD diff. + * + * Copyright (C) 2010 by Matheus Izvekov + * Copyright (C) 2006 by Robert Sullivan + * Copyright (c) 2003 Todd C. Miller + * + * Sponsored in part by the Defense Advanced Research Projects + * Agency (DARPA) and Air Force Research Laboratory, Air Force + * Materiel Command, USAF, under agreement number F39502-99-1-0512. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* + * The following code uses an algorithm due to Harold Stone, + * which finds a pair of longest identical subsequences in + * the two files. + * + * The major goal is to generate the match vector J. + * J[i] is the index of the line in file1 corresponding + * to line i in file0. J[i] = 0 if there is no + * such line in file1. + * + * Lines are hashed so as to work in core. All potential + * matches are located by sorting the lines of each file + * on the hash (called "value"). In particular, this + * collects the equivalence classes in file1 together. + * Subroutine equiv replaces the value of each line in + * file0 by the index of the first element of its + * matching equivalence in (the reordered) file1. + * To save space equiv squeezes file1 into a single + * array member in which the equivalence classes + * are simply concatenated, except that their first + * members are flagged by changing sign. + * + * Next the indices that point into member are unsorted into + * array class according to the original order of file0. + * + * The cleverness lies in routine stone. This marches + * through the lines of file0, developing a vector klist + * of "k-candidates". At step i a k-candidate is a matched + * pair of lines x,y (x in file0, y in file1) such that + * there is a common subsequence of length k + * between the first i lines of file0 and the first y + * lines of file1, but there is no such subsequence for + * any smaller y. x is the earliest possible mate to y + * that occurs in such a subsequence. + * + * Whenever any of the members of the equivalence class of + * lines in file1 matable to a line in file0 has serial number + * less than the y of some k-candidate, that k-candidate + * with the smallest such y is replaced. The new + * k-candidate is chained (via pred) to the current + * k-1 candidate so that the actual subsequence can + * be recovered. When a member has serial number greater + * that the y of all k-candidates, the klist is extended. + * At the end, the longest subsequence is pulled out + * and placed in the array J by unravel + * + * With J in hand, the matches there recorded are + * checked against reality to assure that no spurious + * matches have crept in due to hashing. If they have, + * they are broken, and "jackpot" is recorded--a harmless + * matter except that a true match for a spuriously + * mated line may now be unnecessarily reported as a change. + * + * Much of the complexity of the program comes simply + * from trying to minimize core utilization and + * maximize the range of doable problems by dynamically + * allocating what is needed and reusing what is not. + * The core requirements for problems larger than somewhat + * are (in words) 2*length(file0) + length(file1) + + * 3*(number of k-candidates installed), typically about + * 6n words for files of length n. + */ +//config:config DIFF +//config: bool "diff (13 kb)" +//config: default y +//config: help +//config: diff compares two files or directories and outputs the +//config: differences between them in a form that can be given to +//config: the patch command. +//config: +//config:config FEATURE_DIFF_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on DIFF && LONG_OPTS +//config: +//config:config FEATURE_DIFF_DIR +//config: bool "Enable directory support" +//config: default y +//config: depends on DIFF +//config: help +//config: This option enables support for directory and subdirectory +//config: comparison. + +//applet:IF_DIFF(APPLET(diff, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_DIFF) += diff.o + +//usage:#define diff_trivial_usage +//usage: "[-abBdiNqrTstw] [-L LABEL] [-S FILE] [-U LINES] FILE1 FILE2" +//usage:#define diff_full_usage "\n\n" +//usage: "Compare files line by line and output the differences between them.\n" +//usage: "This implementation supports unified diffs only.\n" +//usage: "\n -a Treat all files as text" +//usage: "\n -b Ignore changes in the amount of whitespace" +//usage: "\n -B Ignore changes whose lines are all blank" +//usage: "\n -d Try hard to find a smaller set of changes" +//usage: "\n -i Ignore case differences" +//usage: "\n -L Use LABEL instead of the filename in the unified header" +//usage: "\n -N Treat absent files as empty" +//usage: "\n -q Output only whether files differ" +//usage: "\n -r Recurse" +//usage: "\n -S Start with FILE when comparing directories" +//usage: "\n -T Make tabs line up by prefixing a tab when necessary" +//usage: "\n -s Report when two files are the same" +//usage: "\n -t Expand tabs to spaces in output" +//usage: "\n -U Output LINES lines of context" +//usage: "\n -w Ignore all whitespace" + +#include "libbb.h" +#include "common_bufsiz.h" + +#if 0 +# define dbg_error_msg(...) bb_error_msg(__VA_ARGS__) +#else +# define dbg_error_msg(...) ((void)0) +#endif + +enum { /* print_status() and diffreg() return values */ + STATUS_SAME, /* files are the same */ + STATUS_DIFFER, /* files differ */ + STATUS_BINARY, /* binary files differ */ +}; + +enum { /* Commandline flags */ + FLAG_a, + FLAG_b, + FLAG_d, + FLAG_i, + FLAG_L, /* never used, handled by getopt32 */ + FLAG_N, + FLAG_q, + FLAG_r, + FLAG_s, + FLAG_S, /* never used, handled by getopt32 */ + FLAG_t, + FLAG_T, + FLAG_U, /* never used, handled by getopt32 */ + FLAG_w, + FLAG_u, /* ignored, this is the default */ + FLAG_p, /* not implemented */ + FLAG_B, + FLAG_E, /* not implemented */ +}; +#define FLAG(x) (1 << FLAG_##x) + +/* We cache file position to avoid excessive seeking */ +typedef struct FILE_and_pos_t { + FILE *ft_fp; + off_t ft_pos; +} FILE_and_pos_t; + +struct globals { + smallint exit_status; + int opt_U_context; + const char *other_dir; + char *label[2]; + struct stat stb[2]; +}; +#define G (*ptr_to_globals) +#define exit_status (G.exit_status ) +#define opt_U_context (G.opt_U_context ) +#define label (G.label ) +#define stb (G.stb ) +#define INIT_G() do { \ + SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ + opt_U_context = 3; \ +} while (0) + +typedef int token_t; + +enum { + /* Public */ + TOK_EMPTY = 1 << 9, /* Line fully processed, you can proceed to the next */ + TOK_EOF = 1 << 10, /* File ended */ + /* Private (Only to be used by read_token() */ + TOK_EOL = 1 << 11, /* we saw EOL (sticky) */ + TOK_SPACE = 1 << 12, /* used -b code, means we are skipping spaces */ + SHIFT_EOF = (sizeof(token_t)*8 - 8) - 1, + CHAR_MASK = 0x1ff, /* 8th bit is used to distinguish EOF from 0xff */ +}; + +/* Restores full EOF from one 8th bit: */ +//#define TOK2CHAR(t) (((t) << SHIFT_EOF) >> SHIFT_EOF) +/* We don't really need the above, we only need to have EOF != any_real_char: */ +#define TOK2CHAR(t) ((t) & CHAR_MASK) + +static void seek_ft(FILE_and_pos_t *ft, off_t pos) +{ + if (ft->ft_pos != pos) { + ft->ft_pos = pos; + fseeko(ft->ft_fp, pos, SEEK_SET); + } +} + +/* Reads tokens from given fp, handling -b and -w flags + * The user must reset tok every line start + */ +static int read_token(FILE_and_pos_t *ft, token_t tok) +{ + tok |= TOK_EMPTY; + while (!(tok & TOK_EOL)) { + bool is_space; + int t; + + t = fgetc(ft->ft_fp); + if (t != EOF) + ft->ft_pos++; + is_space = (t == EOF || isspace(t)); + + /* If t == EOF (-1), set both TOK_EOF and TOK_EOL */ + tok |= (t & (TOK_EOF + TOK_EOL)); + /* Only EOL? */ + if (t == '\n') + tok |= TOK_EOL; + + if (option_mask32 & FLAG(i)) /* Handcoded tolower() */ + t = (t >= 'A' && t <= 'Z') ? t - ('A' - 'a') : t; + + if ((option_mask32 & FLAG(w)) && is_space) + continue; + + /* Trim char value to low 9 bits */ + t &= CHAR_MASK; + + if (option_mask32 & FLAG(b)) { + /* Was prev char whitespace? */ + if (tok & TOK_SPACE) { /* yes */ + if (is_space) /* this one too, ignore it */ + continue; + tok &= ~TOK_SPACE; + } else if (is_space) { + /* 1st whitespace char. + * Set TOK_SPACE and replace char by ' ' */ + t = TOK_SPACE + ' '; + } + } + /* Clear EMPTY */ + tok &= ~(TOK_EMPTY + CHAR_MASK); + /* Assign char value (low 9 bits) and maybe set TOK_SPACE */ + tok |= t; + break; + } +#if 0 + bb_error_msg("fp:%p tok:%x '%c'%s%s%s%s", fp, tok, tok & 0xff + , tok & TOK_EOF ? " EOF" : "" + , tok & TOK_EOL ? " EOL" : "" + , tok & TOK_EMPTY ? " EMPTY" : "" + , tok & TOK_SPACE ? " SPACE" : "" + ); +#endif + return tok; +} + +struct cand { + int x; + int y; + int pred; +}; + +static int search(const int *c, int k, int y, const struct cand *list) +{ + int i, j; + + if (list[c[k]].y < y) /* quick look for typical case */ + return k + 1; + + for (i = 0, j = k + 1;;) { + const int l = (i + j) >> 1; + if (l > i) { + const int t = list[c[l]].y; + if (t > y) + j = l; + else if (t < y) + i = l; + else + return l; + } else + return l + 1; + } +} + +static void stone(const int *a, int n, const int *b, int *J, int pref) +{ + const unsigned isq = isqrt(n); + const unsigned bound = + (option_mask32 & FLAG(d)) ? UINT_MAX : MAX(256, isq); + int clen = 1; + int clistlen = 100; + int k = 0; + struct cand *clist = xzalloc(clistlen * sizeof(clist[0])); + struct cand cand; + struct cand *q; + int *klist = xzalloc((n + 2) * sizeof(klist[0])); + /*clist[0] = (struct cand){0}; - xzalloc did it */ + /*klist[0] = 0; */ + + for (cand.x = 1; cand.x <= n; cand.x++) { + int j = a[cand.x], oldl = 0; + unsigned numtries = 0; + if (j == 0) + continue; + cand.y = -b[j]; + cand.pred = klist[0]; + do { + int l, tc; + if (cand.y <= clist[cand.pred].y) + continue; + l = search(klist, k, cand.y, clist); + if (l != oldl + 1) + cand.pred = klist[l - 1]; + if (l <= k && clist[klist[l]].y <= cand.y) + continue; + if (clen == clistlen) { + clistlen = clistlen * 11 / 10; + clist = xrealloc(clist, clistlen * sizeof(clist[0])); + } + clist[clen] = cand; + tc = klist[l]; + klist[l] = clen++; + if (l <= k) { + cand.pred = tc; + oldl = l; + numtries++; + } else { + k++; + break; + } + } while ((cand.y = b[++j]) > 0 && numtries < bound); + } + /* Unravel */ + for (q = clist + klist[k]; q->y; q = clist + q->pred) + J[q->x + pref] = q->y + pref; + free(klist); + free(clist); +} + +struct line { + /* 'serial' is not used in the beginning, so we reuse it + * to store line offsets, thus reducing memory pressure + */ + union { + unsigned serial; + off_t offset; + }; + unsigned value; +}; + +static void equiv(struct line *a, int n, struct line *b, int m, int *c) +{ + int i = 1, j = 1; + + while (i <= n && j <= m) { + if (a[i].value < b[j].value) + a[i++].value = 0; + else if (a[i].value == b[j].value) + a[i++].value = j; + else + j++; + } + while (i <= n) + a[i++].value = 0; + b[m + 1].value = 0; + j = 0; + while (++j <= m) { + c[j] = -b[j].serial; + while (b[j + 1].value == b[j].value) { + j++; + c[j] = b[j].serial; + } + } + c[j] = -1; +} + +static void unsort(const struct line *f, int l, int *b) +{ + int i; + int *a = xmalloc((l + 1) * sizeof(a[0])); + for (i = 1; i <= l; i++) + a[f[i].serial] = f[i].value; + for (i = 1; i <= l; i++) + b[i] = a[i]; + free(a); +} + +static int line_compar(const void *a, const void *b) +{ +#define l0 ((const struct line*)a) +#define l1 ((const struct line*)b) + int r = l0->value - l1->value; + if (r) + return r; + return l0->serial - l1->serial; +#undef l0 +#undef l1 +} + +static void fetch(FILE_and_pos_t *ft, const off_t *ix, int a, int b, int ch) +{ + int i, j, col; + for (i = a; i <= b; i++) { + seek_ft(ft, ix[i - 1]); + putchar(ch); + if (option_mask32 & FLAG(T)) + putchar('\t'); + for (j = 0, col = 0; j < ix[i] - ix[i - 1]; j++) { + int c = fgetc(ft->ft_fp); + if (c == EOF) { + puts("\n\\ No newline at end of file"); + return; + } + ft->ft_pos++; + if (c == '\t' && (option_mask32 & FLAG(t))) + do putchar(' '); while (++col & 7); + else { + putchar(c); + col++; + } + } + } +} + +/* Creates the match vector J, where J[i] is the index + * of the line in the new file corresponding to the line i + * in the old file. Lines start at 1 instead of 0, that value + * being used instead to denote no corresponding line. + * This vector is dynamically allocated and must be freed by the caller. + * + * * fp is an input parameter, where fp[0] and fp[1] are the open + * old file and new file respectively. + * * nlen is an output variable, where nlen[0] and nlen[1] + * gets the number of lines in the old and new file respectively. + * * ix is an output variable, where ix[0] and ix[1] gets + * assigned dynamically allocated vectors of the offsets of the lines + * of the old and new file respectively. These must be freed by the caller. + */ +static NOINLINE int *create_J(FILE_and_pos_t ft[2], int nlen[2], off_t *ix[2]) +{ + int *J, slen[2], *class, *member; + struct line *nfile[2], *sfile[2]; + int pref = 0, suff = 0, i, j, delta; + + /* Lines of both files are hashed, and in the process + * their offsets are stored in the array ix[fileno] + * where fileno == 0 points to the old file, and + * fileno == 1 points to the new one. + */ + for (i = 0; i < 2; i++) { + unsigned hash; + token_t tok; + size_t sz = 100; + nfile[i] = xmalloc((sz + 3) * sizeof(nfile[i][0])); + /* ft gets here without the correct position, cant use seek_ft */ + ft[i].ft_pos = 0; + fseeko(ft[i].ft_fp, 0, SEEK_SET); + + nlen[i] = 0; + /* We could zalloc nfile, but then zalloc starts showing in gprof at ~1% */ + nfile[i][0].offset = 0; + goto start; /* saves code */ + while (1) { + tok = read_token(&ft[i], tok); + if (!(tok & TOK_EMPTY)) { + /* Hash algorithm taken from Robert Sedgewick, Algorithms in C, 3d ed., p 578. */ + /*hash = hash * 128 - hash + TOK2CHAR(tok); + * gcc insists on optimizing above to "hash * 127 + ...", thus... */ + unsigned o = hash - TOK2CHAR(tok); + hash = hash * 128 - o; /* we want SPEED here */ + continue; + } + if (nlen[i]++ == sz) { + sz = sz * 3 / 2; + nfile[i] = xrealloc(nfile[i], (sz + 3) * sizeof(nfile[i][0])); + } + /* line_compar needs hashes fit into positive int */ + nfile[i][nlen[i]].value = hash & INT_MAX; + /* like ftello(ft[i].ft_fp) but faster (avoids lseek syscall) */ + nfile[i][nlen[i]].offset = ft[i].ft_pos; + if (tok & TOK_EOF) { + /* EOF counts as a token, so we have to adjust it here */ + nfile[i][nlen[i]].offset++; + break; + } +start: + hash = tok = 0; + } + /* Exclude lone EOF line from the end of the file, to make fetch()'s job easier */ + if (nfile[i][nlen[i]].offset - nfile[i][nlen[i] - 1].offset == 1) + nlen[i]--; + /* Now we copy the line offsets into ix */ + ix[i] = xmalloc((nlen[i] + 2) * sizeof(ix[i][0])); + for (j = 0; j < nlen[i] + 1; j++) + ix[i][j] = nfile[i][j].offset; + } + + /* length of prefix and suffix is calculated */ + for (; pref < nlen[0] && pref < nlen[1] && + nfile[0][pref + 1].value == nfile[1][pref + 1].value; + pref++); + for (; suff < nlen[0] - pref && suff < nlen[1] - pref && + nfile[0][nlen[0] - suff].value == nfile[1][nlen[1] - suff].value; + suff++); + /* Arrays are pruned by the suffix and prefix length, + * the result being sorted and stored in sfile[fileno], + * and their sizes are stored in slen[fileno] + */ + for (j = 0; j < 2; j++) { + sfile[j] = nfile[j] + pref; + slen[j] = nlen[j] - pref - suff; + for (i = 0; i <= slen[j]; i++) + sfile[j][i].serial = i; + qsort(sfile[j] + 1, slen[j], sizeof(*sfile[j]), line_compar); + } + /* nfile arrays are reused to reduce memory pressure + * The #if zeroed out section performs the same task as the + * one in the #else section. + * Peak memory usage is higher, but one array copy is avoided + * by not using unsort() + */ +#if 0 + member = xmalloc((slen[1] + 2) * sizeof(member[0])); + equiv(sfile[0], slen[0], sfile[1], slen[1], member); + free(nfile[1]); + + class = xmalloc((slen[0] + 1) * sizeof(class[0])); + for (i = 1; i <= slen[0]; i++) /* Unsorting */ + class[sfile[0][i].serial] = sfile[0][i].value; + free(nfile[0]); +#else + member = (int *)nfile[1]; + equiv(sfile[0], slen[0], sfile[1], slen[1], member); + member = xrealloc(member, (slen[1] + 2) * sizeof(member[0])); + + class = (int *)nfile[0]; + unsort(sfile[0], slen[0], (int *)nfile[0]); + class = xrealloc(class, (slen[0] + 2) * sizeof(class[0])); +#endif + J = xmalloc((nlen[0] + 2) * sizeof(J[0])); + /* The elements of J which fall inside the prefix and suffix regions + * are marked as unchanged, while the ones which fall outside + * are initialized with 0 (no matches), so that function stone can + * then assign them their right values + */ + for (i = 0, delta = nlen[1] - nlen[0]; i <= nlen[0]; i++) + J[i] = i <= pref ? i : + i > (nlen[0] - suff) ? (i + delta) : 0; + /* Here the magic is performed */ + stone(class, slen[0], member, J, pref); + J[nlen[0] + 1] = nlen[1] + 1; + + free(class); + free(member); + + /* Both files are rescanned, in an effort to find any lines + * which, due to limitations intrinsic to any hashing algorithm, + * are different but ended up confounded as the same + */ + for (i = 1; i <= nlen[0]; i++) { + if (!J[i]) + continue; + + seek_ft(&ft[0], ix[0][i - 1]); + seek_ft(&ft[1], ix[1][J[i] - 1]); + + for (j = J[i]; i <= nlen[0] && J[i] == j; i++, j++) { + token_t tok0 = 0, tok1 = 0; + do { + tok0 = read_token(&ft[0], tok0); + tok1 = read_token(&ft[1], tok1); + + if (((tok0 ^ tok1) & TOK_EMPTY) != 0 /* one is empty (not both) */ + || (!(tok0 & TOK_EMPTY) && TOK2CHAR(tok0) != TOK2CHAR(tok1)) + ) { + J[i] = 0; /* Break the correspondence */ + } + } while (!(tok0 & tok1 & TOK_EMPTY)); + } + } + + return J; +} + +static bool diff(FILE* fp[2], char *file[2]) +{ + int nlen[2]; + off_t *ix[2]; + FILE_and_pos_t ft[2]; + typedef struct { int a, b; } vec_t[2]; + vec_t *vec = NULL; + int i = 1, j, k, idx = -1; + bool anychange = false; + int *J; + + ft[0].ft_fp = fp[0]; + ft[1].ft_fp = fp[1]; + /* note that ft[i].ft_pos is unintitalized, create_J() + * must not assume otherwise */ + J = create_J(ft, nlen, ix); + + do { + bool nonempty = false; + + while (1) { + vec_t v; + + for (v[0].a = i; v[0].a <= nlen[0] && J[v[0].a] == J[v[0].a - 1] + 1; v[0].a++) + continue; + v[1].a = J[v[0].a - 1] + 1; + + for (v[0].b = v[0].a - 1; v[0].b < nlen[0] && !J[v[0].b + 1]; v[0].b++) + continue; + v[1].b = J[v[0].b + 1] - 1; + /* + * Indicate that there is a difference between lines a and b of the 'from' file + * to get to lines c to d of the 'to' file. If a is greater than b then there + * are no lines in the 'from' file involved and this means that there were + * lines appended (beginning at b). If c is greater than d then there are + * lines missing from the 'to' file. + */ + if (v[0].a <= v[0].b || v[1].a <= v[1].b) { + /* + * If this change is more than 'context' lines from the + * previous change, dump the record and reset it. + */ + int ct = (2 * opt_U_context) + 1; + if (idx >= 0 + && v[0].a > vec[idx][0].b + ct + && v[1].a > vec[idx][1].b + ct + ) { + break; + } + + for (j = 0; j < 2; j++) + for (k = v[j].a; k <= v[j].b; k++) + nonempty |= (ix[j][k] - ix[j][k - 1] != 1); + + vec = xrealloc_vector(vec, 6, ++idx); + memcpy(vec[idx], v, sizeof(v)); + } + + i = v[0].b + 1; + if (i > nlen[0]) + break; + J[v[0].b] = v[1].b; + } + if (idx < 0 || ((option_mask32 & FLAG(B)) && !nonempty)) + goto cont; + if (!(option_mask32 & FLAG(q))) { + int lowa; + vec_t span, *cvp = vec; + + if (!anychange) { + /* Print the context/unidiff header first time through */ + printf("--- %s\n", label[0] ? label[0] : file[0]); + printf("+++ %s\n", label[1] ? label[1] : file[1]); + } + + printf("@@"); + for (j = 0; j < 2; j++) { + int a = span[j].a = MAX(1, (*cvp)[j].a - opt_U_context); + int b = span[j].b = MIN(nlen[j], vec[idx][j].b + opt_U_context); + + printf(" %c%d", j ? '+' : '-', MIN(a, b)); + if (a == b) + continue; + printf(",%d", (a < b) ? b - a + 1 : 0); + } + puts(" @@"); + /* + * Output changes in "unified" diff format--the old and new lines + * are printed together. + */ + for (lowa = span[0].a; ; lowa = (*cvp++)[0].b + 1) { + bool end = cvp > &vec[idx]; + fetch(&ft[0], ix[0], lowa, end ? span[0].b : (*cvp)[0].a - 1, ' '); + if (end) + break; + for (j = 0; j < 2; j++) + fetch(&ft[j], ix[j], (*cvp)[j].a, (*cvp)[j].b, j ? '+' : '-'); + } + } + anychange = true; + cont: + idx = -1; + } while (i <= nlen[0]); + + free(vec); + free(ix[0]); + free(ix[1]); + free(J); + return anychange; +} + +static int diffreg(char *file[2]) +{ + FILE *fp[2]; + bool binary = false, differ = false; + int status = STATUS_SAME, i; + + fp[0] = stdin; + fp[1] = stdin; + for (i = 0; i < 2; i++) { + int fd = STDIN_FILENO; + if (!LONE_DASH(file[i])) { + if (!(option_mask32 & FLAG(N))) { + fd = open_or_warn(file[i], O_RDONLY); + if (fd == -1) + goto out; + } else { + /* -N: if some file does not exist compare it like empty */ + fd = open(file[i], O_RDONLY); + if (fd == -1) + fd = xopen("/dev/null", O_RDONLY); + } + } + /* Our diff implementation is using seek. + * When we meet non-seekable file, we must make a temp copy. + */ + if (lseek(fd, 0, SEEK_SET) == -1 && errno == ESPIPE) { + char name[] = "/tmp/difXXXXXX"; + int fd_tmp = xmkstemp(name); + + unlink(name); + if (bb_copyfd_eof(fd, fd_tmp) < 0) + xfunc_die(); + if (fd != STDIN_FILENO) + close(fd); + fd = fd_tmp; + xlseek(fd, 0, SEEK_SET); + } + fp[i] = fdopen(fd, "r"); + } + + setup_common_bufsiz(); + while (1) { + const size_t sz = COMMON_BUFSIZE / 2; + char *const buf0 = bb_common_bufsiz1; + char *const buf1 = buf0 + sz; + int j, k; + i = fread(buf0, 1, sz, fp[0]); + j = fread(buf1, 1, sz, fp[1]); + if (i != j) { + differ = true; + i = MIN(i, j); + } + if (i == 0) + break; + for (k = 0; k < i; k++) { + if (!buf0[k] || !buf1[k]) + binary = true; + if (buf0[k] != buf1[k]) + differ = true; + } + } + if (differ) { + if (binary && !(option_mask32 & FLAG(a))) + status = STATUS_BINARY; + else if (diff(fp, file)) + status = STATUS_DIFFER; + } + if (status != STATUS_SAME) + exit_status |= 1; +out: + fclose_if_not_stdin(fp[0]); + fclose_if_not_stdin(fp[1]); + + return status; +} + +static void print_status(int status, char *path[2]) +{ + switch (status) { + case STATUS_BINARY: + case STATUS_DIFFER: + if ((option_mask32 & FLAG(q)) || status == STATUS_BINARY) + printf("Files %s and %s differ\n", path[0], path[1]); + break; + case STATUS_SAME: + if (option_mask32 & FLAG(s)) + printf("Files %s and %s are identical\n", path[0], path[1]); + break; + } +} + +#if ENABLE_FEATURE_DIFF_DIR +struct dlist { + size_t len; + int s, e; + char **dl; +}; + +/* This function adds a filename to dl, the directory listing. */ +static int FAST_FUNC add_to_dirlist(struct recursive_state *state, + const char *filename, + struct stat *sb UNUSED_PARAM) +{ + struct dlist *const l = state->userData; + const char *file = filename + l->len; + while (*file == '/') + file++; + l->dl = xrealloc_vector(l->dl, 6, l->e); + l->dl[l->e] = xstrdup(file); + l->e++; + return TRUE; +} + +/* If recursion is not set, this function adds the directory + * to the list and prevents recursive_action from recursing into it. + */ +static int FAST_FUNC skip_dir(struct recursive_state *state, + const char *filename, + struct stat *sb) +{ + if (!(option_mask32 & FLAG(r)) && state->depth) { + add_to_dirlist(state, filename, sb); + return SKIP; + } + if (!(option_mask32 & FLAG(N))) { + /* -r without -N: no need to recurse into dirs + * which do not exist on the "other side". + * Testcase: diff -r /tmp / + * (it would recurse deep into /proc without this code) */ + struct dlist *const l = state->userData; + filename += l->len; + if (filename[0]) { + struct stat osb; + char *othername = concat_path_file(G.other_dir, filename); + int r = stat(othername, &osb); + free(othername); + if (r != 0 || !S_ISDIR(osb.st_mode)) { + /* other dir doesn't have similarly named + * directory, don't recurse; return 1 upon + * exit, just like diffutils' diff */ + exit_status |= 1; + return SKIP; + } + } + } + return TRUE; +} + +static void diffdir(char *p[2], const char *s_start) +{ + struct dlist list[2]; + int i; + + memset(&list, 0, sizeof(list)); + for (i = 0; i < 2; i++) { + /*list[i].s = list[i].e = 0; - memset did it */ + /*list[i].dl = NULL; */ + + G.other_dir = p[1 - i]; + /* We need to trim root directory prefix. + * Using list.len to specify its length, + * add_to_dirlist will remove it. */ + list[i].len = strlen(p[i]); + recursive_action(p[i], ACTION_RECURSE | ACTION_FOLLOWLINKS, + add_to_dirlist, skip_dir, &list[i]); + /* Sort dl alphabetically. + * GNU diff does this ignoring any number of trailing dots. + * We don't, so for us dotted files almost always are + * first on the list. + */ + qsort_string_vector(list[i].dl, list[i].e); + /* If -S was set, find the starting point. */ + if (!s_start) + continue; + while (list[i].s < list[i].e && strcmp(list[i].dl[list[i].s], s_start) < 0) + list[i].s++; + } + /* Now that both dirlist1 and dirlist2 contain sorted directory + * listings, we can start to go through dirlist1. If both listings + * contain the same file, then do a normal diff. Otherwise, behaviour + * is determined by whether the -N flag is set. */ + while (1) { + char *dp[2]; + int pos; + int k; + + dp[0] = list[0].s < list[0].e ? list[0].dl[list[0].s] : NULL; + dp[1] = list[1].s < list[1].e ? list[1].dl[list[1].s] : NULL; + if (!dp[0] && !dp[1]) + break; + pos = !dp[0] ? 1 : (!dp[1] ? -1 : strcmp(dp[0], dp[1])); + k = pos > 0; + if (pos && !(option_mask32 & FLAG(N))) { + printf("Only in %s: %s\n", p[k], dp[k]); + exit_status |= 1; + } else { + char *fullpath[2], *path[2]; /* if -N */ + + for (i = 0; i < 2; i++) { + if (pos == 0 || i == k) { + path[i] = fullpath[i] = concat_path_file(p[i], dp[i]); + stat(fullpath[i], &stb[i]); + } else { + fullpath[i] = concat_path_file(p[i], dp[1 - i]); + path[i] = (char *)bb_dev_null; + } + } + if (pos) + stat(fullpath[k], &stb[1 - k]); + + if (S_ISDIR(stb[0].st_mode) && S_ISDIR(stb[1].st_mode)) + printf("Common subdirectories: %s and %s\n", fullpath[0], fullpath[1]); + else if (!S_ISREG(stb[0].st_mode) && !S_ISDIR(stb[0].st_mode)) + printf("File %s is not a regular file or directory and was skipped\n", fullpath[0]); + else if (!S_ISREG(stb[1].st_mode) && !S_ISDIR(stb[1].st_mode)) + printf("File %s is not a regular file or directory and was skipped\n", fullpath[1]); + else if (S_ISDIR(stb[0].st_mode) != S_ISDIR(stb[1].st_mode)) { + if (S_ISDIR(stb[0].st_mode)) + printf("File %s is a %s while file %s is a %s\n", fullpath[0], "directory", fullpath[1], "regular file"); + else + printf("File %s is a %s while file %s is a %s\n", fullpath[0], "regular file", fullpath[1], "directory"); + } else + print_status(diffreg(path), fullpath); + + free(fullpath[0]); + free(fullpath[1]); + } + free(dp[k]); + list[k].s++; + if (pos == 0) { + free(dp[1 - k]); + list[1 - k].s++; + } + } + if (ENABLE_FEATURE_CLEAN_UP) { + free(list[0].dl); + free(list[1].dl); + } +} +#endif + +#if ENABLE_FEATURE_DIFF_LONG_OPTIONS +static const char diff_longopts[] ALIGN1 = + "ignore-case\0" No_argument "i" + "ignore-tab-expansion\0" No_argument "E" + "ignore-space-change\0" No_argument "b" + "ignore-all-space\0" No_argument "w" + "ignore-blank-lines\0" No_argument "B" + "text\0" No_argument "a" + "unified\0" Required_argument "U" + "label\0" Required_argument "L" + "show-c-function\0" No_argument "p" + "brief\0" No_argument "q" + "expand-tabs\0" No_argument "t" + "initial-tab\0" No_argument "T" + "recursive\0" No_argument "r" + "new-file\0" No_argument "N" + "report-identical-files\0" No_argument "s" + "starting-file\0" Required_argument "S" + "minimal\0" No_argument "d" + ; +# define GETOPT32 getopt32long +# define LONGOPTS ,diff_longopts +#else +# define GETOPT32 getopt32 +# define LONGOPTS +#endif + +int diff_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int diff_main(int argc UNUSED_PARAM, char **argv) +{ + int gotstdin = 0, i; + char *file[2], *s_start = NULL; + llist_t *L_arg = NULL; + + INIT_G(); + + /* exactly 2 params; collect multiple -L

    ^8J?GN;b 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%0Dd)8^#iy3z{r7oWZQf#%`u6wAbB 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 z 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%0Al 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 literal 0 HcmV?d00001 diff --git a/busybox-1_37_0/boot-files/initramfs/bin/cat b/busybox-1_37_0/boot-files/initramfs/bin/cat new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/cat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/chattr b/busybox-1_37_0/boot-files/initramfs/bin/chattr new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/chattr @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/chgrp b/busybox-1_37_0/boot-files/initramfs/bin/chgrp new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/chgrp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/chmod b/busybox-1_37_0/boot-files/initramfs/bin/chmod new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/chmod @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/chown b/busybox-1_37_0/boot-files/initramfs/bin/chown new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/chown @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/conspy b/busybox-1_37_0/boot-files/initramfs/bin/conspy new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/conspy @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/cp b/busybox-1_37_0/boot-files/initramfs/bin/cp new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/cp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/cpio b/busybox-1_37_0/boot-files/initramfs/bin/cpio new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/cpio @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/cttyhack b/busybox-1_37_0/boot-files/initramfs/bin/cttyhack new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/cttyhack @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/date b/busybox-1_37_0/boot-files/initramfs/bin/date new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/date @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/dd b/busybox-1_37_0/boot-files/initramfs/bin/dd new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/dd @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/df b/busybox-1_37_0/boot-files/initramfs/bin/df new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/df @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/dmesg b/busybox-1_37_0/boot-files/initramfs/bin/dmesg new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/dmesg @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/dnsdomainname b/busybox-1_37_0/boot-files/initramfs/bin/dnsdomainname new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/dnsdomainname @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/dumpkmap b/busybox-1_37_0/boot-files/initramfs/bin/dumpkmap new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/dumpkmap @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/echo b/busybox-1_37_0/boot-files/initramfs/bin/echo new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/echo @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/ed b/busybox-1_37_0/boot-files/initramfs/bin/ed new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/ed @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/egrep b/busybox-1_37_0/boot-files/initramfs/bin/egrep new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/egrep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/false b/busybox-1_37_0/boot-files/initramfs/bin/false new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/false @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/fatattr b/busybox-1_37_0/boot-files/initramfs/bin/fatattr new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/fatattr @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/fdflush b/busybox-1_37_0/boot-files/initramfs/bin/fdflush new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/fdflush @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/fgrep b/busybox-1_37_0/boot-files/initramfs/bin/fgrep new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/fgrep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/fsync b/busybox-1_37_0/boot-files/initramfs/bin/fsync new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/fsync @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/getopt b/busybox-1_37_0/boot-files/initramfs/bin/getopt new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/getopt @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/grep b/busybox-1_37_0/boot-files/initramfs/bin/grep new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/grep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/gunzip b/busybox-1_37_0/boot-files/initramfs/bin/gunzip new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/gunzip @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/gzip b/busybox-1_37_0/boot-files/initramfs/bin/gzip new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/gzip @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/hostname b/busybox-1_37_0/boot-files/initramfs/bin/hostname new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/hostname @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/hush b/busybox-1_37_0/boot-files/initramfs/bin/hush new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/hush @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/ionice b/busybox-1_37_0/boot-files/initramfs/bin/ionice new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/ionice @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/iostat b/busybox-1_37_0/boot-files/initramfs/bin/iostat new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/iostat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/ipcalc b/busybox-1_37_0/boot-files/initramfs/bin/ipcalc new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/ipcalc @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/kbd_mode b/busybox-1_37_0/boot-files/initramfs/bin/kbd_mode new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/kbd_mode @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/kill b/busybox-1_37_0/boot-files/initramfs/bin/kill new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/kill @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/link b/busybox-1_37_0/boot-files/initramfs/bin/link new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/link @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/linux32 b/busybox-1_37_0/boot-files/initramfs/bin/linux32 new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/linux32 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/linux64 b/busybox-1_37_0/boot-files/initramfs/bin/linux64 new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/linux64 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/ln b/busybox-1_37_0/boot-files/initramfs/bin/ln new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/ln @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/login b/busybox-1_37_0/boot-files/initramfs/bin/login new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/login @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/ls b/busybox-1_37_0/boot-files/initramfs/bin/ls new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/ls @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/lsattr b/busybox-1_37_0/boot-files/initramfs/bin/lsattr new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/lsattr @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/lzop b/busybox-1_37_0/boot-files/initramfs/bin/lzop new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/lzop @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/makemime b/busybox-1_37_0/boot-files/initramfs/bin/makemime new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/makemime @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/mkdir b/busybox-1_37_0/boot-files/initramfs/bin/mkdir new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/mkdir @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/mknod b/busybox-1_37_0/boot-files/initramfs/bin/mknod new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/mknod @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/mktemp b/busybox-1_37_0/boot-files/initramfs/bin/mktemp new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/mktemp @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/more b/busybox-1_37_0/boot-files/initramfs/bin/more new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/more @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/mount b/busybox-1_37_0/boot-files/initramfs/bin/mount new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/mount @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/mountpoint b/busybox-1_37_0/boot-files/initramfs/bin/mountpoint new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/mountpoint @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/mpstat b/busybox-1_37_0/boot-files/initramfs/bin/mpstat new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/mpstat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/mt b/busybox-1_37_0/boot-files/initramfs/bin/mt new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/mt @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/mv b/busybox-1_37_0/boot-files/initramfs/bin/mv new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/mv @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/netstat b/busybox-1_37_0/boot-files/initramfs/bin/netstat new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/netstat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/nice b/busybox-1_37_0/boot-files/initramfs/bin/nice new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/nice @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/pidof b/busybox-1_37_0/boot-files/initramfs/bin/pidof new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/pidof @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/ping b/busybox-1_37_0/boot-files/initramfs/bin/ping new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/ping @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/ping6 b/busybox-1_37_0/boot-files/initramfs/bin/ping6 new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/ping6 @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/pipe_progress b/busybox-1_37_0/boot-files/initramfs/bin/pipe_progress new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/pipe_progress @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/printenv b/busybox-1_37_0/boot-files/initramfs/bin/printenv new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/printenv @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/ps b/busybox-1_37_0/boot-files/initramfs/bin/ps new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/ps @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/pwd b/busybox-1_37_0/boot-files/initramfs/bin/pwd new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/pwd @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/reformime b/busybox-1_37_0/boot-files/initramfs/bin/reformime new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/reformime @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/resume b/busybox-1_37_0/boot-files/initramfs/bin/resume new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/resume @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/rev b/busybox-1_37_0/boot-files/initramfs/bin/rev new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/rev @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/rm b/busybox-1_37_0/boot-files/initramfs/bin/rm new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/rm @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/rmdir b/busybox-1_37_0/boot-files/initramfs/bin/rmdir new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/rmdir @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/rpm b/busybox-1_37_0/boot-files/initramfs/bin/rpm new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/rpm @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/run-parts b/busybox-1_37_0/boot-files/initramfs/bin/run-parts new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/run-parts @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/scriptreplay b/busybox-1_37_0/boot-files/initramfs/bin/scriptreplay new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/scriptreplay @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/sed b/busybox-1_37_0/boot-files/initramfs/bin/sed new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/sed @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/setarch b/busybox-1_37_0/boot-files/initramfs/bin/setarch new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/setarch @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/setpriv b/busybox-1_37_0/boot-files/initramfs/bin/setpriv new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/setpriv @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/setserial b/busybox-1_37_0/boot-files/initramfs/bin/setserial new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/setserial @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/sh b/busybox-1_37_0/boot-files/initramfs/bin/sh new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/sh @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/sleep b/busybox-1_37_0/boot-files/initramfs/bin/sleep new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/sleep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/stat b/busybox-1_37_0/boot-files/initramfs/bin/stat new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/stat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/stty b/busybox-1_37_0/boot-files/initramfs/bin/stty new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/stty @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/su b/busybox-1_37_0/boot-files/initramfs/bin/su new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/su @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/sync b/busybox-1_37_0/boot-files/initramfs/bin/sync new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/sync @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/tar b/busybox-1_37_0/boot-files/initramfs/bin/tar new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/tar @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/touch b/busybox-1_37_0/boot-files/initramfs/bin/touch new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/touch @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/true b/busybox-1_37_0/boot-files/initramfs/bin/true new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/true @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/umount b/busybox-1_37_0/boot-files/initramfs/bin/umount new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/umount @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/uname b/busybox-1_37_0/boot-files/initramfs/bin/uname new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/uname @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/usleep b/busybox-1_37_0/boot-files/initramfs/bin/usleep new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/usleep @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/vi b/busybox-1_37_0/boot-files/initramfs/bin/vi new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/vi @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/watch b/busybox-1_37_0/boot-files/initramfs/bin/watch new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/watch @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/bin/zcat b/busybox-1_37_0/boot-files/initramfs/bin/zcat new file mode 120000 index 000000000..c3fa81028 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/bin/zcat @@ -0,0 +1 @@ +busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/linuxrc b/busybox-1_37_0/boot-files/initramfs/linuxrc new file mode 120000 index 000000000..f9f73421a --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/linuxrc @@ -0,0 +1 @@ +bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/acpid b/busybox-1_37_0/boot-files/initramfs/sbin/acpid new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/acpid @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/adjtimex b/busybox-1_37_0/boot-files/initramfs/sbin/adjtimex new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/adjtimex @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/arp b/busybox-1_37_0/boot-files/initramfs/sbin/arp new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/arp @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/blkid b/busybox-1_37_0/boot-files/initramfs/sbin/blkid new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/blkid @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/blockdev b/busybox-1_37_0/boot-files/initramfs/sbin/blockdev new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/blockdev @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/bootchartd b/busybox-1_37_0/boot-files/initramfs/sbin/bootchartd new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/bootchartd @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/depmod b/busybox-1_37_0/boot-files/initramfs/sbin/depmod new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/depmod @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/devmem b/busybox-1_37_0/boot-files/initramfs/sbin/devmem new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/devmem @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/fbsplash b/busybox-1_37_0/boot-files/initramfs/sbin/fbsplash new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/fbsplash @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/fdisk b/busybox-1_37_0/boot-files/initramfs/sbin/fdisk new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/fdisk @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/findfs b/busybox-1_37_0/boot-files/initramfs/sbin/findfs new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/findfs @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/freeramdisk b/busybox-1_37_0/boot-files/initramfs/sbin/freeramdisk new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/freeramdisk @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/fsck b/busybox-1_37_0/boot-files/initramfs/sbin/fsck new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/fsck @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/fsck.minix b/busybox-1_37_0/boot-files/initramfs/sbin/fsck.minix new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/fsck.minix @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/fstrim b/busybox-1_37_0/boot-files/initramfs/sbin/fstrim new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/fstrim @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/getty b/busybox-1_37_0/boot-files/initramfs/sbin/getty new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/getty @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/halt b/busybox-1_37_0/boot-files/initramfs/sbin/halt new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/halt @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/hdparm b/busybox-1_37_0/boot-files/initramfs/sbin/hdparm new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/hdparm @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/hwclock b/busybox-1_37_0/boot-files/initramfs/sbin/hwclock new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/hwclock @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/ifconfig b/busybox-1_37_0/boot-files/initramfs/sbin/ifconfig new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/ifconfig @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/ifdown b/busybox-1_37_0/boot-files/initramfs/sbin/ifdown new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/ifdown @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/ifenslave b/busybox-1_37_0/boot-files/initramfs/sbin/ifenslave new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/ifenslave @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/ifup b/busybox-1_37_0/boot-files/initramfs/sbin/ifup new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/ifup @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/init b/busybox-1_37_0/boot-files/initramfs/sbin/init new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/init @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/insmod b/busybox-1_37_0/boot-files/initramfs/sbin/insmod new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/insmod @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/ip b/busybox-1_37_0/boot-files/initramfs/sbin/ip new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/ip @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/ipaddr b/busybox-1_37_0/boot-files/initramfs/sbin/ipaddr new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/ipaddr @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/iplink b/busybox-1_37_0/boot-files/initramfs/sbin/iplink new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/iplink @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/ipneigh b/busybox-1_37_0/boot-files/initramfs/sbin/ipneigh new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/ipneigh @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/iproute b/busybox-1_37_0/boot-files/initramfs/sbin/iproute new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/iproute @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/iprule b/busybox-1_37_0/boot-files/initramfs/sbin/iprule new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/iprule @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/iptunnel b/busybox-1_37_0/boot-files/initramfs/sbin/iptunnel new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/iptunnel @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/klogd b/busybox-1_37_0/boot-files/initramfs/sbin/klogd new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/klogd @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/loadkmap b/busybox-1_37_0/boot-files/initramfs/sbin/loadkmap new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/loadkmap @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/logread b/busybox-1_37_0/boot-files/initramfs/sbin/logread new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/logread @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/losetup b/busybox-1_37_0/boot-files/initramfs/sbin/losetup new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/losetup @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/lsmod b/busybox-1_37_0/boot-files/initramfs/sbin/lsmod new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/lsmod @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/makedevs b/busybox-1_37_0/boot-files/initramfs/sbin/makedevs new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/makedevs @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/mdev b/busybox-1_37_0/boot-files/initramfs/sbin/mdev new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/mdev @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/mkdosfs b/busybox-1_37_0/boot-files/initramfs/sbin/mkdosfs new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/mkdosfs @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/mke2fs b/busybox-1_37_0/boot-files/initramfs/sbin/mke2fs new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/mke2fs @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/mkfs.ext2 b/busybox-1_37_0/boot-files/initramfs/sbin/mkfs.ext2 new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/mkfs.ext2 @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/mkfs.minix b/busybox-1_37_0/boot-files/initramfs/sbin/mkfs.minix new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/mkfs.minix @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/mkfs.vfat b/busybox-1_37_0/boot-files/initramfs/sbin/mkfs.vfat new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/mkfs.vfat @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/mkswap b/busybox-1_37_0/boot-files/initramfs/sbin/mkswap new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/mkswap @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/modinfo b/busybox-1_37_0/boot-files/initramfs/sbin/modinfo new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/modinfo @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/modprobe b/busybox-1_37_0/boot-files/initramfs/sbin/modprobe new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/modprobe @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/nameif b/busybox-1_37_0/boot-files/initramfs/sbin/nameif new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/nameif @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/pivot_root b/busybox-1_37_0/boot-files/initramfs/sbin/pivot_root new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/pivot_root @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/poweroff b/busybox-1_37_0/boot-files/initramfs/sbin/poweroff new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/poweroff @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/raidautorun b/busybox-1_37_0/boot-files/initramfs/sbin/raidautorun new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/raidautorun @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/reboot b/busybox-1_37_0/boot-files/initramfs/sbin/reboot new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/reboot @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/rmmod b/busybox-1_37_0/boot-files/initramfs/sbin/rmmod new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/rmmod @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/route b/busybox-1_37_0/boot-files/initramfs/sbin/route new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/route @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/run-init b/busybox-1_37_0/boot-files/initramfs/sbin/run-init new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/run-init @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/runlevel b/busybox-1_37_0/boot-files/initramfs/sbin/runlevel new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/runlevel @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/setconsole b/busybox-1_37_0/boot-files/initramfs/sbin/setconsole new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/setconsole @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/slattach b/busybox-1_37_0/boot-files/initramfs/sbin/slattach new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/slattach @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/start-stop-daemon b/busybox-1_37_0/boot-files/initramfs/sbin/start-stop-daemon new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/start-stop-daemon @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/sulogin b/busybox-1_37_0/boot-files/initramfs/sbin/sulogin new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/sulogin @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/swapoff b/busybox-1_37_0/boot-files/initramfs/sbin/swapoff new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/swapoff @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/swapon b/busybox-1_37_0/boot-files/initramfs/sbin/swapon new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/swapon @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/switch_root b/busybox-1_37_0/boot-files/initramfs/sbin/switch_root new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/switch_root @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/sysctl b/busybox-1_37_0/boot-files/initramfs/sbin/sysctl new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/sysctl @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/syslogd b/busybox-1_37_0/boot-files/initramfs/sbin/syslogd new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/syslogd @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/tc b/busybox-1_37_0/boot-files/initramfs/sbin/tc new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/tc @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/tunctl b/busybox-1_37_0/boot-files/initramfs/sbin/tunctl new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/tunctl @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/udhcpc b/busybox-1_37_0/boot-files/initramfs/sbin/udhcpc new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/udhcpc @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/uevent b/busybox-1_37_0/boot-files/initramfs/sbin/uevent new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/uevent @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/vconfig b/busybox-1_37_0/boot-files/initramfs/sbin/vconfig new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/vconfig @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/watchdog b/busybox-1_37_0/boot-files/initramfs/sbin/watchdog new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/watchdog @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/sbin/zcip b/busybox-1_37_0/boot-files/initramfs/sbin/zcip new file mode 120000 index 000000000..71259713e --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/sbin/zcip @@ -0,0 +1 @@ +../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/[ b/busybox-1_37_0/boot-files/initramfs/usr/bin/[ new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/[ @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/[[ b/busybox-1_37_0/boot-files/initramfs/usr/bin/[[ new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/[[ @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/ascii b/busybox-1_37_0/boot-files/initramfs/usr/bin/ascii new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/ascii @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/awk b/busybox-1_37_0/boot-files/initramfs/usr/bin/awk new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/awk @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/basename b/busybox-1_37_0/boot-files/initramfs/usr/bin/basename new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/basename @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/bc b/busybox-1_37_0/boot-files/initramfs/usr/bin/bc new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/bc @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/beep b/busybox-1_37_0/boot-files/initramfs/usr/bin/beep new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/beep @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/blkdiscard b/busybox-1_37_0/boot-files/initramfs/usr/bin/blkdiscard new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/blkdiscard @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/bunzip2 b/busybox-1_37_0/boot-files/initramfs/usr/bin/bunzip2 new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/bunzip2 @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/bzcat b/busybox-1_37_0/boot-files/initramfs/usr/bin/bzcat new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/bzcat @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/bzip2 b/busybox-1_37_0/boot-files/initramfs/usr/bin/bzip2 new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/bzip2 @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/cal b/busybox-1_37_0/boot-files/initramfs/usr/bin/cal new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/cal @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/chpst b/busybox-1_37_0/boot-files/initramfs/usr/bin/chpst new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/chpst @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/chrt b/busybox-1_37_0/boot-files/initramfs/usr/bin/chrt new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/chrt @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/chvt b/busybox-1_37_0/boot-files/initramfs/usr/bin/chvt new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/chvt @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/cksum b/busybox-1_37_0/boot-files/initramfs/usr/bin/cksum new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/cksum @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/clear b/busybox-1_37_0/boot-files/initramfs/usr/bin/clear new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/clear @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/cmp b/busybox-1_37_0/boot-files/initramfs/usr/bin/cmp new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/cmp @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/comm b/busybox-1_37_0/boot-files/initramfs/usr/bin/comm new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/comm @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/crc32 b/busybox-1_37_0/boot-files/initramfs/usr/bin/crc32 new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/crc32 @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/crontab b/busybox-1_37_0/boot-files/initramfs/usr/bin/crontab new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/crontab @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/cryptpw b/busybox-1_37_0/boot-files/initramfs/usr/bin/cryptpw new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/cryptpw @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/cut b/busybox-1_37_0/boot-files/initramfs/usr/bin/cut new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/cut @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/dc b/busybox-1_37_0/boot-files/initramfs/usr/bin/dc new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/dc @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/deallocvt b/busybox-1_37_0/boot-files/initramfs/usr/bin/deallocvt new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/deallocvt @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/diff b/busybox-1_37_0/boot-files/initramfs/usr/bin/diff new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/diff @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/dirname b/busybox-1_37_0/boot-files/initramfs/usr/bin/dirname new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/dirname @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/dos2unix b/busybox-1_37_0/boot-files/initramfs/usr/bin/dos2unix new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/dos2unix @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/dpkg b/busybox-1_37_0/boot-files/initramfs/usr/bin/dpkg new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/dpkg @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/dpkg-deb b/busybox-1_37_0/boot-files/initramfs/usr/bin/dpkg-deb new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/dpkg-deb @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/du b/busybox-1_37_0/boot-files/initramfs/usr/bin/du new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/du @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/dumpleases b/busybox-1_37_0/boot-files/initramfs/usr/bin/dumpleases new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/dumpleases @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/eject b/busybox-1_37_0/boot-files/initramfs/usr/bin/eject new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/eject @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/env b/busybox-1_37_0/boot-files/initramfs/usr/bin/env new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/env @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/envdir b/busybox-1_37_0/boot-files/initramfs/usr/bin/envdir new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/envdir @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/envuidgid b/busybox-1_37_0/boot-files/initramfs/usr/bin/envuidgid new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/envuidgid @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/expand b/busybox-1_37_0/boot-files/initramfs/usr/bin/expand new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/expand @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/expr b/busybox-1_37_0/boot-files/initramfs/usr/bin/expr new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/expr @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/factor b/busybox-1_37_0/boot-files/initramfs/usr/bin/factor new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/factor @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/fallocate b/busybox-1_37_0/boot-files/initramfs/usr/bin/fallocate new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/fallocate @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/fgconsole b/busybox-1_37_0/boot-files/initramfs/usr/bin/fgconsole new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/fgconsole @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/find b/busybox-1_37_0/boot-files/initramfs/usr/bin/find new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/find @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/flock b/busybox-1_37_0/boot-files/initramfs/usr/bin/flock new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/flock @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/fold b/busybox-1_37_0/boot-files/initramfs/usr/bin/fold new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/fold @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/free b/busybox-1_37_0/boot-files/initramfs/usr/bin/free new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/free @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/ftpget b/busybox-1_37_0/boot-files/initramfs/usr/bin/ftpget new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/ftpget @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/ftpput b/busybox-1_37_0/boot-files/initramfs/usr/bin/ftpput new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/ftpput @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/fuser b/busybox-1_37_0/boot-files/initramfs/usr/bin/fuser new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/fuser @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/getfattr b/busybox-1_37_0/boot-files/initramfs/usr/bin/getfattr new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/getfattr @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/groups b/busybox-1_37_0/boot-files/initramfs/usr/bin/groups new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/groups @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/hd b/busybox-1_37_0/boot-files/initramfs/usr/bin/hd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/hd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/head b/busybox-1_37_0/boot-files/initramfs/usr/bin/head new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/head @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/hexdump b/busybox-1_37_0/boot-files/initramfs/usr/bin/hexdump new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/hexdump @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/hexedit b/busybox-1_37_0/boot-files/initramfs/usr/bin/hexedit new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/hexedit @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/hostid b/busybox-1_37_0/boot-files/initramfs/usr/bin/hostid new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/hostid @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/id b/busybox-1_37_0/boot-files/initramfs/usr/bin/id new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/id @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/install b/busybox-1_37_0/boot-files/initramfs/usr/bin/install new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/install @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/ipcrm b/busybox-1_37_0/boot-files/initramfs/usr/bin/ipcrm new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/ipcrm @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/ipcs b/busybox-1_37_0/boot-files/initramfs/usr/bin/ipcs new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/ipcs @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/killall b/busybox-1_37_0/boot-files/initramfs/usr/bin/killall new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/killall @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/last b/busybox-1_37_0/boot-files/initramfs/usr/bin/last new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/last @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/less b/busybox-1_37_0/boot-files/initramfs/usr/bin/less new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/less @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/logger b/busybox-1_37_0/boot-files/initramfs/usr/bin/logger new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/logger @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/logname b/busybox-1_37_0/boot-files/initramfs/usr/bin/logname new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/logname @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/lpq b/busybox-1_37_0/boot-files/initramfs/usr/bin/lpq new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/lpq @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/lpr b/busybox-1_37_0/boot-files/initramfs/usr/bin/lpr new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/lpr @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/lsof b/busybox-1_37_0/boot-files/initramfs/usr/bin/lsof new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/lsof @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/lspci b/busybox-1_37_0/boot-files/initramfs/usr/bin/lspci new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/lspci @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/lsscsi b/busybox-1_37_0/boot-files/initramfs/usr/bin/lsscsi new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/lsscsi @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/lsusb b/busybox-1_37_0/boot-files/initramfs/usr/bin/lsusb new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/lsusb @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/lzcat b/busybox-1_37_0/boot-files/initramfs/usr/bin/lzcat new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/lzcat @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/lzma b/busybox-1_37_0/boot-files/initramfs/usr/bin/lzma new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/lzma @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/man b/busybox-1_37_0/boot-files/initramfs/usr/bin/man new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/man @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/md5sum b/busybox-1_37_0/boot-files/initramfs/usr/bin/md5sum new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/md5sum @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/mesg b/busybox-1_37_0/boot-files/initramfs/usr/bin/mesg new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/mesg @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/microcom b/busybox-1_37_0/boot-files/initramfs/usr/bin/microcom new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/microcom @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/mkfifo b/busybox-1_37_0/boot-files/initramfs/usr/bin/mkfifo new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/mkfifo @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/mkpasswd b/busybox-1_37_0/boot-files/initramfs/usr/bin/mkpasswd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/mkpasswd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/nc b/busybox-1_37_0/boot-files/initramfs/usr/bin/nc new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/nc @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/nl b/busybox-1_37_0/boot-files/initramfs/usr/bin/nl new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/nl @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/nmeter b/busybox-1_37_0/boot-files/initramfs/usr/bin/nmeter new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/nmeter @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/nohup b/busybox-1_37_0/boot-files/initramfs/usr/bin/nohup new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/nohup @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/nproc b/busybox-1_37_0/boot-files/initramfs/usr/bin/nproc new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/nproc @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/nsenter b/busybox-1_37_0/boot-files/initramfs/usr/bin/nsenter new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/nsenter @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/nslookup b/busybox-1_37_0/boot-files/initramfs/usr/bin/nslookup new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/nslookup @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/od b/busybox-1_37_0/boot-files/initramfs/usr/bin/od new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/od @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/openvt b/busybox-1_37_0/boot-files/initramfs/usr/bin/openvt new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/openvt @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/passwd b/busybox-1_37_0/boot-files/initramfs/usr/bin/passwd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/passwd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/paste b/busybox-1_37_0/boot-files/initramfs/usr/bin/paste new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/paste @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/patch b/busybox-1_37_0/boot-files/initramfs/usr/bin/patch new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/patch @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/pgrep b/busybox-1_37_0/boot-files/initramfs/usr/bin/pgrep new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/pgrep @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/pkill b/busybox-1_37_0/boot-files/initramfs/usr/bin/pkill new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/pkill @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/pmap b/busybox-1_37_0/boot-files/initramfs/usr/bin/pmap new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/pmap @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/printf b/busybox-1_37_0/boot-files/initramfs/usr/bin/printf new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/printf @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/pscan b/busybox-1_37_0/boot-files/initramfs/usr/bin/pscan new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/pscan @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/pstree b/busybox-1_37_0/boot-files/initramfs/usr/bin/pstree new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/pstree @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/pwdx b/busybox-1_37_0/boot-files/initramfs/usr/bin/pwdx new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/pwdx @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/readlink b/busybox-1_37_0/boot-files/initramfs/usr/bin/readlink new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/readlink @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/realpath b/busybox-1_37_0/boot-files/initramfs/usr/bin/realpath new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/realpath @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/renice b/busybox-1_37_0/boot-files/initramfs/usr/bin/renice new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/renice @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/reset b/busybox-1_37_0/boot-files/initramfs/usr/bin/reset new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/reset @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/resize b/busybox-1_37_0/boot-files/initramfs/usr/bin/resize new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/resize @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/rpm2cpio b/busybox-1_37_0/boot-files/initramfs/usr/bin/rpm2cpio new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/rpm2cpio @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/runsv b/busybox-1_37_0/boot-files/initramfs/usr/bin/runsv new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/runsv @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/runsvdir b/busybox-1_37_0/boot-files/initramfs/usr/bin/runsvdir new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/runsvdir @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/rx b/busybox-1_37_0/boot-files/initramfs/usr/bin/rx new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/rx @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/script b/busybox-1_37_0/boot-files/initramfs/usr/bin/script new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/script @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/seq b/busybox-1_37_0/boot-files/initramfs/usr/bin/seq new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/seq @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/setfattr b/busybox-1_37_0/boot-files/initramfs/usr/bin/setfattr new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/setfattr @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/setkeycodes b/busybox-1_37_0/boot-files/initramfs/usr/bin/setkeycodes new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/setkeycodes @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/setsid b/busybox-1_37_0/boot-files/initramfs/usr/bin/setsid new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/setsid @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/setuidgid b/busybox-1_37_0/boot-files/initramfs/usr/bin/setuidgid new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/setuidgid @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/sha1sum b/busybox-1_37_0/boot-files/initramfs/usr/bin/sha1sum new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/sha1sum @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/sha256sum b/busybox-1_37_0/boot-files/initramfs/usr/bin/sha256sum new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/sha256sum @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/sha3sum b/busybox-1_37_0/boot-files/initramfs/usr/bin/sha3sum new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/sha3sum @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/sha512sum b/busybox-1_37_0/boot-files/initramfs/usr/bin/sha512sum new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/sha512sum @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/showkey b/busybox-1_37_0/boot-files/initramfs/usr/bin/showkey new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/showkey @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/shred b/busybox-1_37_0/boot-files/initramfs/usr/bin/shred new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/shred @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/shuf b/busybox-1_37_0/boot-files/initramfs/usr/bin/shuf new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/shuf @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/smemcap b/busybox-1_37_0/boot-files/initramfs/usr/bin/smemcap new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/smemcap @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/softlimit b/busybox-1_37_0/boot-files/initramfs/usr/bin/softlimit new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/softlimit @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/sort b/busybox-1_37_0/boot-files/initramfs/usr/bin/sort new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/sort @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/split b/busybox-1_37_0/boot-files/initramfs/usr/bin/split new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/split @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/ssl_client b/busybox-1_37_0/boot-files/initramfs/usr/bin/ssl_client new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/ssl_client @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/strings b/busybox-1_37_0/boot-files/initramfs/usr/bin/strings new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/strings @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/sum b/busybox-1_37_0/boot-files/initramfs/usr/bin/sum new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/sum @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/sv b/busybox-1_37_0/boot-files/initramfs/usr/bin/sv new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/sv @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/svc b/busybox-1_37_0/boot-files/initramfs/usr/bin/svc new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/svc @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/svok b/busybox-1_37_0/boot-files/initramfs/usr/bin/svok new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/svok @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/tac b/busybox-1_37_0/boot-files/initramfs/usr/bin/tac new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/tac @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/tail b/busybox-1_37_0/boot-files/initramfs/usr/bin/tail new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/tail @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/taskset b/busybox-1_37_0/boot-files/initramfs/usr/bin/taskset new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/taskset @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/tcpsvd b/busybox-1_37_0/boot-files/initramfs/usr/bin/tcpsvd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/tcpsvd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/tee b/busybox-1_37_0/boot-files/initramfs/usr/bin/tee new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/tee @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/telnet b/busybox-1_37_0/boot-files/initramfs/usr/bin/telnet new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/telnet @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/test b/busybox-1_37_0/boot-files/initramfs/usr/bin/test new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/test @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/tftp b/busybox-1_37_0/boot-files/initramfs/usr/bin/tftp new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/tftp @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/time b/busybox-1_37_0/boot-files/initramfs/usr/bin/time new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/time @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/timeout b/busybox-1_37_0/boot-files/initramfs/usr/bin/timeout new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/timeout @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/top b/busybox-1_37_0/boot-files/initramfs/usr/bin/top new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/top @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/tr b/busybox-1_37_0/boot-files/initramfs/usr/bin/tr new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/tr @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/traceroute b/busybox-1_37_0/boot-files/initramfs/usr/bin/traceroute new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/traceroute @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/traceroute6 b/busybox-1_37_0/boot-files/initramfs/usr/bin/traceroute6 new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/traceroute6 @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/tree b/busybox-1_37_0/boot-files/initramfs/usr/bin/tree new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/tree @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/truncate b/busybox-1_37_0/boot-files/initramfs/usr/bin/truncate new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/truncate @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/ts b/busybox-1_37_0/boot-files/initramfs/usr/bin/ts new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/ts @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/tsort b/busybox-1_37_0/boot-files/initramfs/usr/bin/tsort new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/tsort @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/tty b/busybox-1_37_0/boot-files/initramfs/usr/bin/tty new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/tty @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/ttysize b/busybox-1_37_0/boot-files/initramfs/usr/bin/ttysize new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/ttysize @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/udhcpc6 b/busybox-1_37_0/boot-files/initramfs/usr/bin/udhcpc6 new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/udhcpc6 @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/udpsvd b/busybox-1_37_0/boot-files/initramfs/usr/bin/udpsvd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/udpsvd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/unexpand b/busybox-1_37_0/boot-files/initramfs/usr/bin/unexpand new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/unexpand @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/uniq b/busybox-1_37_0/boot-files/initramfs/usr/bin/uniq new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/uniq @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/unix2dos b/busybox-1_37_0/boot-files/initramfs/usr/bin/unix2dos new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/unix2dos @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/unlink b/busybox-1_37_0/boot-files/initramfs/usr/bin/unlink new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/unlink @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/unlzma b/busybox-1_37_0/boot-files/initramfs/usr/bin/unlzma new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/unlzma @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/unshare b/busybox-1_37_0/boot-files/initramfs/usr/bin/unshare new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/unshare @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/unxz b/busybox-1_37_0/boot-files/initramfs/usr/bin/unxz new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/unxz @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/unzip b/busybox-1_37_0/boot-files/initramfs/usr/bin/unzip new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/unzip @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/uptime b/busybox-1_37_0/boot-files/initramfs/usr/bin/uptime new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/uptime @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/users b/busybox-1_37_0/boot-files/initramfs/usr/bin/users new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/users @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/uudecode b/busybox-1_37_0/boot-files/initramfs/usr/bin/uudecode new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/uudecode @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/uuencode b/busybox-1_37_0/boot-files/initramfs/usr/bin/uuencode new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/uuencode @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/vlock b/busybox-1_37_0/boot-files/initramfs/usr/bin/vlock new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/vlock @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/volname b/busybox-1_37_0/boot-files/initramfs/usr/bin/volname new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/volname @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/w b/busybox-1_37_0/boot-files/initramfs/usr/bin/w new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/w @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/wall b/busybox-1_37_0/boot-files/initramfs/usr/bin/wall new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/wall @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/wc b/busybox-1_37_0/boot-files/initramfs/usr/bin/wc new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/wc @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/wget b/busybox-1_37_0/boot-files/initramfs/usr/bin/wget new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/wget @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/which b/busybox-1_37_0/boot-files/initramfs/usr/bin/which new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/which @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/who b/busybox-1_37_0/boot-files/initramfs/usr/bin/who new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/who @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/whoami b/busybox-1_37_0/boot-files/initramfs/usr/bin/whoami new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/whoami @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/whois b/busybox-1_37_0/boot-files/initramfs/usr/bin/whois new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/whois @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/xargs b/busybox-1_37_0/boot-files/initramfs/usr/bin/xargs new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/xargs @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/xxd b/busybox-1_37_0/boot-files/initramfs/usr/bin/xxd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/xxd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/xz b/busybox-1_37_0/boot-files/initramfs/usr/bin/xz new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/xz @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/xzcat b/busybox-1_37_0/boot-files/initramfs/usr/bin/xzcat new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/xzcat @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/bin/yes b/busybox-1_37_0/boot-files/initramfs/usr/bin/yes new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/bin/yes @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/add-shell b/busybox-1_37_0/boot-files/initramfs/usr/sbin/add-shell new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/add-shell @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/addgroup b/busybox-1_37_0/boot-files/initramfs/usr/sbin/addgroup new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/addgroup @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/adduser b/busybox-1_37_0/boot-files/initramfs/usr/sbin/adduser new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/adduser @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/arping b/busybox-1_37_0/boot-files/initramfs/usr/sbin/arping new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/arping @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/brctl b/busybox-1_37_0/boot-files/initramfs/usr/sbin/brctl new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/brctl @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/chat b/busybox-1_37_0/boot-files/initramfs/usr/sbin/chat new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/chat @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/chpasswd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/chpasswd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/chpasswd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/chroot b/busybox-1_37_0/boot-files/initramfs/usr/sbin/chroot new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/chroot @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/crond b/busybox-1_37_0/boot-files/initramfs/usr/sbin/crond new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/crond @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/delgroup b/busybox-1_37_0/boot-files/initramfs/usr/sbin/delgroup new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/delgroup @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/deluser b/busybox-1_37_0/boot-files/initramfs/usr/sbin/deluser new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/deluser @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/dhcprelay b/busybox-1_37_0/boot-files/initramfs/usr/sbin/dhcprelay new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/dhcprelay @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/dnsd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/dnsd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/dnsd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ether-wake b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ether-wake new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ether-wake @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/fakeidentd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/fakeidentd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/fakeidentd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/fbset b/busybox-1_37_0/boot-files/initramfs/usr/sbin/fbset new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/fbset @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/fdformat b/busybox-1_37_0/boot-files/initramfs/usr/sbin/fdformat new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/fdformat @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/fsfreeze b/busybox-1_37_0/boot-files/initramfs/usr/sbin/fsfreeze new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/fsfreeze @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ftpd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ftpd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ftpd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/httpd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/httpd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/httpd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cdetect b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cdetect new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cdetect @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cdump b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cdump new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cdump @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cget b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cget new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cget @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cset b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cset new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2cset @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2ctransfer b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2ctransfer new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/i2ctransfer @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ifplugd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ifplugd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ifplugd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/inetd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/inetd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/inetd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/killall5 b/busybox-1_37_0/boot-files/initramfs/usr/sbin/killall5 new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/killall5 @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/loadfont b/busybox-1_37_0/boot-files/initramfs/usr/sbin/loadfont new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/loadfont @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/lpd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/lpd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/lpd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/mim b/busybox-1_37_0/boot-files/initramfs/usr/sbin/mim new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/mim @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/nanddump b/busybox-1_37_0/boot-files/initramfs/usr/sbin/nanddump new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/nanddump @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/nandwrite b/busybox-1_37_0/boot-files/initramfs/usr/sbin/nandwrite new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/nandwrite @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/nbd-client b/busybox-1_37_0/boot-files/initramfs/usr/sbin/nbd-client new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/nbd-client @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/nologin b/busybox-1_37_0/boot-files/initramfs/usr/sbin/nologin new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/nologin @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ntpd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ntpd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ntpd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/partprobe b/busybox-1_37_0/boot-files/initramfs/usr/sbin/partprobe new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/partprobe @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/popmaildir b/busybox-1_37_0/boot-files/initramfs/usr/sbin/popmaildir new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/popmaildir @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/powertop b/busybox-1_37_0/boot-files/initramfs/usr/sbin/powertop new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/powertop @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/rdate b/busybox-1_37_0/boot-files/initramfs/usr/sbin/rdate new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/rdate @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/rdev b/busybox-1_37_0/boot-files/initramfs/usr/sbin/rdev new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/rdev @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/readahead b/busybox-1_37_0/boot-files/initramfs/usr/sbin/readahead new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/readahead @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/readprofile b/busybox-1_37_0/boot-files/initramfs/usr/sbin/readprofile new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/readprofile @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/remove-shell b/busybox-1_37_0/boot-files/initramfs/usr/sbin/remove-shell new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/remove-shell @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/rtcwake b/busybox-1_37_0/boot-files/initramfs/usr/sbin/rtcwake new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/rtcwake @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/seedrng b/busybox-1_37_0/boot-files/initramfs/usr/sbin/seedrng new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/seedrng @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/sendmail b/busybox-1_37_0/boot-files/initramfs/usr/sbin/sendmail new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/sendmail @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/setfont b/busybox-1_37_0/boot-files/initramfs/usr/sbin/setfont new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/setfont @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/setlogcons b/busybox-1_37_0/boot-files/initramfs/usr/sbin/setlogcons new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/setlogcons @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/svlogd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/svlogd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/svlogd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/telnetd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/telnetd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/telnetd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/tftpd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/tftpd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/tftpd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubiattach b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubiattach new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubiattach @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubidetach b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubidetach new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubidetach @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubimkvol b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubimkvol new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubimkvol @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirename b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirename new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirename @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirmvol b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirmvol new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirmvol @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirsvol b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirsvol new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubirsvol @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubiupdatevol b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubiupdatevol new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/ubiupdatevol @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/boot-files/initramfs/usr/sbin/udhcpd b/busybox-1_37_0/boot-files/initramfs/usr/sbin/udhcpd new file mode 120000 index 000000000..f948f1a72 --- /dev/null +++ b/busybox-1_37_0/boot-files/initramfs/usr/sbin/udhcpd @@ -0,0 +1 @@ +../../bin/busybox \ No newline at end of file diff --git a/busybox-1_37_0/busybox_ldscript.README.txt b/busybox-1_37_0/busybox_ldscript.README.txt new file mode 100644 index 000000000..1625a970a --- /dev/null +++ b/busybox-1_37_0/busybox_ldscript.README.txt @@ -0,0 +1,47 @@ +/* Add SORT_BY_ALIGNMENT to linker script (found in busybox_unstripped.out): +## .rodata : { *(.rodata SORT_BY_ALIGNMENT(.rodata.*) .gnu.linkonce.r.*) } +## .data : { *(.data SORT_BY_ALIGNMENT(.data.*) .gnu.linkonce.d.*) } +## .bss : { *(.bss SORT_BY_ALIGNMENT(.bss.*) .gnu.linkonce.b.*) } +## This will eliminate most of the padding (~3kb). +## Hmm, "ld --sort-section alignment" should do it too. +## +## There is a ld hack which is meant to decrease disk usage +## at the cost of more RAM usage (??!!) in standard ld script: +## . = ALIGN (0x1000) - ((0x1000 - .) & (0x1000 - 1)); . = DATA_SEGMENT_ALIGN (0x1000, 0x1000); +## Replace it with: +## . = ALIGN (0x1000); . = DATA_SEGMENT_ALIGN (0x1000, 0x1000); +## to unconditionally align .data to the next page boundary, +## instead of "next page, plus current offset in this page" +*/ + +/* To reduce the number of VMAs each bbox process has, +## move *(.bss SORT_BY_ALIGNMENT(.bss.*) ...) +## part from .bss : {...} block to .data : { ... } block. +## (This usually increases .data section by only one page). +## Result: +## +## text data bss dec hex filename +## 1050792 560 7580 1058932 102874 busybox.bss +## 1050792 8149 0 1058941 10287d busybox.nobss +## +## $ exec busybox.bss pmap $$ +## 0000000008048000 1028K r-xp /path/to/busybox.bss +## 0000000008149000 8K rw-p /path/to/busybox.bss +## 000000000814b000 4K rw-p [ anon ] <---- this VMA is eliminated +## 00000000085f5000 4K ---p [heap] +## 00000000085f6000 4K rw-p [heap] +## 00000000f7778000 8K rw-p [ anon ] +## 00000000f777a000 12K r--p [vvar] +## 00000000f777d000 8K r-xp [vdso] +## 00000000ff7e9000 132K rw-p [stack] +## +## $ exec busybox.nobss pmap $$ +## 0000000008048000 1028K r-xp /path/to/busybox.nobss +## 0000000008149000 12K rw-p /path/to/busybox.nobss +## 00000000086f0000 4K ---p [heap] +## 00000000086f1000 4K rw-p [heap] +## 00000000f7783000 8K rw-p [ anon ] +## 00000000f7785000 12K r--p [vvar] +## 00000000f7788000 8K r-xp [vdso] +## 00000000ffac0000 132K rw-p [stack] +*/ diff --git a/busybox-1_37_0/configs/TEST_nommu_defconfig b/busybox-1_37_0/configs/TEST_nommu_defconfig new file mode 100644 index 000000000..fa3e96326 --- /dev/null +++ b/busybox-1_37_0/configs/TEST_nommu_defconfig @@ -0,0 +1,913 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.16.0 +# Wed Jan 27 21:01:26 2010 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +CONFIG_DESKTOP=y +CONFIG_EXTRA_COMPAT=y +CONFIG_INCLUDE_SUSv2=y +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_SHOW_USAGE=y +CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_FEATURE_COMPRESS_USAGE=y +CONFIG_FEATURE_INSTALLER=y +# CONFIG_LOCALE_SUPPORT is not set +# CONFIG_UNICODE_SUPPORT is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_LONG_OPTS=y +CONFIG_FEATURE_DEVPTS=y +# CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_FEATURE_PIDFILE=y +CONFIG_FEATURE_SUID=y +CONFIG_FEATURE_SUID_CONFIG=y +CONFIG_FEATURE_SUID_CONFIG_QUIET=y +CONFIG_SELINUX=y +CONFIG_FEATURE_PREFER_APPLETS=y +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +CONFIG_NOMMU=y +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +CONFIG_LFS=y +CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_WERROR is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options +# +# CONFIG_INSTALL_NO_USR is not set +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +CONFIG_FEATURE_FAST_TOP=y +CONFIG_FEATURE_ETC_NETWORKS=y +CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 +CONFIG_FEATURE_EDITING_VI=y +CONFIG_FEATURE_EDITING_HISTORY=15 +# CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +CONFIG_FEATURE_TAB_COMPLETION=y +CONFIG_FEATURE_USERNAME_COMPLETION=y +CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +CONFIG_FEATURE_EDITING_ASK_TERMINAL=y +CONFIG_FEATURE_NON_POSIX_CP=y +CONFIG_FEATURE_VERBOSE_CP_MESSAGE=y +CONFIG_FEATURE_COPYBUF_KB=4 +CONFIG_MONOTONIC_SYSCALL=y +CONFIG_IOCTL_HEX2STR_ERROR=y +CONFIG_FEATURE_HWIB=y + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +CONFIG_AR=y +CONFIG_FEATURE_AR_LONG_FILENAMES=y +CONFIG_BUNZIP2=y +CONFIG_BZIP2=y +CONFIG_CPIO=y +CONFIG_FEATURE_CPIO_O=y +CONFIG_FEATURE_CPIO_P=y +CONFIG_DPKG=y +CONFIG_DPKG_DEB=y +CONFIG_GUNZIP=y +CONFIG_GZIP=y +CONFIG_FEATURE_GZIP_LONG_OPTIONS=y +CONFIG_LZOP=y +CONFIG_LZOP_COMPR_HIGH=y +CONFIG_RPM2CPIO=y +CONFIG_RPM=y +CONFIG_TAR=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +CONFIG_FEATURE_TAR_LONG_OPTIONS=y +CONFIG_FEATURE_TAR_UNAME_GNAME=y +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +CONFIG_UNCOMPRESS=y +CONFIG_UNLZMA=y +CONFIG_FEATURE_LZMA_FAST=y +CONFIG_UNZIP=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAL=y +CONFIG_CAT=y +CONFIG_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +CONFIG_FEATURE_CHOWN_LONG_OPTIONS=y +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_COMM=y +CONFIG_CP=y +CONFIG_FEATURE_CP_LONG_OPTIONS=y +CONFIG_CUT=y +CONFIG_DATE=y +CONFIG_FEATURE_DATE_ISOFMT=y +CONFIG_FEATURE_DATE_COMPAT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +CONFIG_DF=y +CONFIG_FEATURE_DF_FANCY=y +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +CONFIG_FEATURE_ENV_LONG_OPTIONS=y +CONFIG_EXPAND=y +CONFIG_FEATURE_EXPAND_LONG_OPTIONS=y +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FALSE=y +CONFIG_FOLD=y +CONFIG_FSYNC=y +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_HOSTID=y +CONFIG_ID=y +CONFIG_INSTALL=y +CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y +CONFIG_LN=y +CONFIG_LOGNAME=y +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +CONFIG_FEATURE_LS_COLOR=y +CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_MD5SUM=y +CONFIG_MKDIR=y +CONFIG_FEATURE_MKDIR_LONG_OPTIONS=y +CONFIG_MKFIFO=y +CONFIG_MKNOD=y +CONFIG_MV=y +CONFIG_FEATURE_MV_LONG_OPTIONS=y +CONFIG_NICE=y +CONFIG_NOHUP=y +CONFIG_OD=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +CONFIG_FEATURE_RMDIR_LONG_OPTIONS=y +CONFIG_SEQ=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_FEATURE_FLOAT_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +CONFIG_STAT=y +CONFIG_FEATURE_STAT_FORMAT=y +CONFIG_STTY=y +CONFIG_SUM=y +CONFIG_SYNC=y +CONFIG_TAC=y +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TEST=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TOUCH=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +CONFIG_TRUE=y +CONFIG_TTY=y +CONFIG_UNAME=y +CONFIG_UNEXPAND=y +CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS=y +CONFIG_UNIQ=y +CONFIG_USLEEP=y +CONFIG_UUDECODE=y +CONFIG_UUENCODE=y +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +CONFIG_WHO=y +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +CONFIG_CHVT=y +CONFIG_CLEAR=y +CONFIG_DEALLOCVT=y +CONFIG_DUMPKMAP=y +CONFIG_KBD_MODE=y +CONFIG_LOADFONT=y +CONFIG_LOADKMAP=y +CONFIG_OPENVT=y +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +CONFIG_SETCONSOLE=y +CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS=y +CONFIG_SETFONT=y +CONFIG_FEATURE_SETFONT_TEXTUAL_MAP=y +CONFIG_DEFAULT_SETFONT_DIR="" +CONFIG_SETKEYCODES=y +CONFIG_SETLOGCONS=y +CONFIG_SHOWKEY=y + +# +# Debian Utilities +# +CONFIG_MKTEMP=y +CONFIG_PIPE_PROGRESS=y +CONFIG_RUN_PARTS=y +CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y +CONFIG_FEATURE_RUN_PARTS_FANCY=y +CONFIG_START_STOP_DAEMON=y +CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y +CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS=y +CONFIG_WHICH=y + +# +# Editors +# +CONFIG_AWK=y +CONFIG_FEATURE_AWK_LIBM=y +CONFIG_CMP=y +CONFIG_DIFF=y +CONFIG_FEATURE_DIFF_LONG_OPTIONS=y +CONFIG_FEATURE_DIFF_DIR=y +CONFIG_ED=y +CONFIG_PATCH=y +CONFIG_SED=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=4096 +CONFIG_FEATURE_VI_8BIT=y +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_FEATURE_VI_READONLY=y +CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_FEATURE_VI_SET=y +CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +CONFIG_FEATURE_FIND_INUM=y +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +CONFIG_FEATURE_FIND_DELETE=y +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +CONFIG_FEATURE_FIND_CONTEXT=y +CONFIG_FEATURE_FIND_LINKS=y +CONFIG_GREP=y +CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +CONFIG_INIT=y +CONFIG_FEATURE_USE_INITTAB=y +CONFIG_FEATURE_KILL_REMOVED=y +CONFIG_FEATURE_KILL_DELAY=1 +CONFIG_FEATURE_INIT_SCTTY=y +CONFIG_FEATURE_INIT_SYSLOG=y +CONFIG_FEATURE_INIT_QUIET=y +CONFIG_FEATURE_INIT_COREDUMPS=y +CONFIG_LINUXRC=y +CONFIG_HALT=y +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +CONFIG_MESG=y + +# +# Login/Password Management Utilities +# +CONFIG_FEATURE_SHADOWPASSWDS=y +CONFIG_USE_BB_PWD_GRP=y +CONFIG_USE_BB_SHADOW=y +CONFIG_USE_BB_CRYPT=y +CONFIG_USE_BB_CRYPT_SHA=y +CONFIG_ADDGROUP=y +CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS=y +CONFIG_FEATURE_ADDUSER_TO_GROUP=y +CONFIG_DELGROUP=y +CONFIG_FEATURE_DEL_USER_FROM_GROUP=y +CONFIG_FEATURE_CHECK_NAMES=y +CONFIG_ADDUSER=y +CONFIG_FEATURE_ADDUSER_LONG_OPTIONS=y +CONFIG_FIRST_SYSTEM_ID=100 +CONFIG_LAST_SYSTEM_ID=999 +CONFIG_DELUSER=y +CONFIG_GETTY=y +CONFIG_FEATURE_UTMP=y +CONFIG_FEATURE_WTMP=y +CONFIG_LOGIN=y +# CONFIG_PAM is not set +CONFIG_LOGIN_SCRIPTS=y +CONFIG_FEATURE_NOLOGIN=y +CONFIG_FEATURE_SECURETTY=y +CONFIG_PASSWD=y +CONFIG_FEATURE_PASSWD_WEAK_CHECK=y +CONFIG_CRYPTPW=y +CONFIG_CHPASSWD=y +CONFIG_SU=y +CONFIG_FEATURE_SU_SYSLOG=y +CONFIG_FEATURE_SU_CHECKS_SHELLS=y +CONFIG_SULOGIN=y +CONFIG_VLOCK=y + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +CONFIG_FSCK=y +CONFIG_LSATTR=y + +# +# Linux Module Utilities +# +CONFIG_MODPROBE_SMALL=y +CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE=y +CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y +# CONFIG_INSMOD is not set +# CONFIG_RMMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +CONFIG_DEFAULT_MODULES_DIR="/lib/modules" +CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" + +# +# Linux System Utilities +# +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +CONFIG_BLKID=y +CONFIG_DMESG=y +CONFIG_FEATURE_DMESG_PRETTY=y +CONFIG_FBSET=y +CONFIG_FEATURE_FBSET_FANCY=y +CONFIG_FEATURE_FBSET_READMODE=y +CONFIG_FDFLUSH=y +CONFIG_FDFORMAT=y +CONFIG_FDISK=y +CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +CONFIG_FEATURE_FDISK_WRITABLE=y +CONFIG_FEATURE_AIX_LABEL=y +CONFIG_FEATURE_SGI_LABEL=y +CONFIG_FEATURE_SUN_LABEL=y +CONFIG_FEATURE_OSF_LABEL=y +CONFIG_FEATURE_FDISK_ADVANCED=y +CONFIG_FINDFS=y +CONFIG_FREERAMDISK=y +CONFIG_FSCK_MINIX=y +CONFIG_MKFS_EXT2=y +CONFIG_MKFS_MINIX=y + +# +# Minix filesystem support +# +CONFIG_FEATURE_MINIX2=y +CONFIG_MKFS_REISER=y +CONFIG_MKFS_VFAT=y +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +CONFIG_FEATURE_HEXDUMP_REVERSE=y +CONFIG_HD=y +CONFIG_HWCLOCK=y +CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS=y +CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS=y +CONFIG_IPCRM=y +CONFIG_IPCS=y +CONFIG_LOSETUP=y +CONFIG_LSPCI=y +CONFIG_LSUSB=y +CONFIG_MDEV=y +CONFIG_FEATURE_MDEV_CONF=y +CONFIG_FEATURE_MDEV_RENAME=y +CONFIG_FEATURE_MDEV_RENAME_REGEXP=y +CONFIG_FEATURE_MDEV_EXEC=y +CONFIG_FEATURE_MDEV_LOAD_FIRMWARE=y +CONFIG_MKSWAP=y +CONFIG_FEATURE_MKSWAP_UUID=y +CONFIG_MORE=y +CONFIG_VOLUMEID=y +CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_FEATURE_VOLUMEID_BTRFS=y +CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_FEATURE_VOLUMEID_HFS=y +CONFIG_FEATURE_VOLUMEID_JFS=y +CONFIG_FEATURE_VOLUMEID_XFS=y +CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_FEATURE_VOLUMEID_UDF=y +CONFIG_FEATURE_VOLUMEID_LUKS=y +CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +CONFIG_FEATURE_VOLUMEID_CRAMFS=y +CONFIG_FEATURE_VOLUMEID_ROMFS=y +CONFIG_FEATURE_VOLUMEID_SYSV=y +CONFIG_FEATURE_VOLUMEID_OCFS2=y +CONFIG_FEATURE_VOLUMEID_LINUXRAID=y +CONFIG_MOUNT=y +CONFIG_FEATURE_MOUNT_FAKE=y +CONFIG_FEATURE_MOUNT_VERBOSE=y +CONFIG_FEATURE_MOUNT_HELPERS=y +CONFIG_FEATURE_MOUNT_LABEL=y +CONFIG_FEATURE_MOUNT_NFS=y +CONFIG_FEATURE_MOUNT_CIFS=y +CONFIG_FEATURE_MOUNT_FLAGS=y +CONFIG_FEATURE_MOUNT_FSTAB=y +CONFIG_PIVOT_ROOT=y +CONFIG_RDATE=y +CONFIG_RDEV=y +CONFIG_READPROFILE=y +CONFIG_RTCWAKE=y +CONFIG_SCRIPT=y +CONFIG_SCRIPTREPLAY=y +CONFIG_SETARCH=y +CONFIG_SWAPONOFF=y +CONFIG_FEATURE_SWAPON_PRI=y +CONFIG_SWITCH_ROOT=y +CONFIG_UMOUNT=y +CONFIG_FEATURE_UMOUNT_ALL=y + +# +# Common options for mount/umount +# +CONFIG_FEATURE_MOUNT_LOOP=y +# CONFIG_FEATURE_MTAB_SUPPORT is not set + +# +# Miscellaneous Utilities +# +CONFIG_ADJTIMEX=y +CONFIG_BBCONFIG=y +CONFIG_BEEP=y +CONFIG_FEATURE_BEEP_FREQ=4000 +CONFIG_FEATURE_BEEP_LENGTH_MS=30 +CONFIG_CHAT=y +CONFIG_FEATURE_CHAT_NOFAIL=y +CONFIG_FEATURE_CHAT_TTY_HIFI=y +CONFIG_FEATURE_CHAT_IMPLICIT_CR=y +CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y +CONFIG_FEATURE_CHAT_SEND_ESCAPES=y +CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y +CONFIG_FEATURE_CHAT_CLR_ABORT=y +CONFIG_CHRT=y +CONFIG_CROND=y +CONFIG_FEATURE_CROND_D=y +CONFIG_FEATURE_CROND_CALL_SENDMAIL=y +CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_CRONTAB=y +CONFIG_DC=y +CONFIG_FEATURE_DC_LIBM=y +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +CONFIG_DEVMEM=y +CONFIG_EJECT=y +CONFIG_FEATURE_EJECT_SCSI=y +CONFIG_FBSPLASH=y +CONFIG_FLASHCP=y +# CONFIG_FLASH_LOCK is not set +# CONFIG_FLASH_UNLOCK is not set +# CONFIG_FLASH_ERASEALL is not set +CONFIG_IONICE=y +CONFIG_INOTIFYD=y +CONFIG_LAST=y +CONFIG_FEATURE_LAST_SMALL=y +# CONFIG_FEATURE_LAST_FANCY is not set +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +CONFIG_FEATURE_LESS_MARKS=y +CONFIG_FEATURE_LESS_REGEXP=y +CONFIG_FEATURE_LESS_WINCH=y +CONFIG_FEATURE_LESS_DASHCMD=y +CONFIG_FEATURE_LESS_LINENUMS=y +CONFIG_HDPARM=y +CONFIG_FEATURE_HDPARM_GET_IDENTITY=y +CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET=y +CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y +CONFIG_MAKEDEVS=y +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +CONFIG_FEATURE_MAKEDEVS_TABLE=y +CONFIG_MAN=y +CONFIG_MICROCOM=y +CONFIG_MOUNTPOINT=y +CONFIG_MT=y +CONFIG_RAIDAUTORUN=y +CONFIG_READAHEAD=y +CONFIG_RUNLEVEL=y +CONFIG_RX=y +CONFIG_SETSID=y +CONFIG_STRINGS=y +CONFIG_TASKSET=y +CONFIG_FEATURE_TASKSET_FANCY=y +CONFIG_TIME=y +CONFIG_TIMEOUT=y +CONFIG_TTYSIZE=y +CONFIG_VOLNAME=y +CONFIG_WALL=y +CONFIG_WATCHDOG=y + +# +# Networking Utilities +# +CONFIG_FEATURE_IPV6=y +CONFIG_FEATURE_UNIX_LOCAL=y +CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +CONFIG_VERBOSE_RESOLUTION_ERRORS=y +CONFIG_ARP=y +CONFIG_ARPING=y +CONFIG_BRCTL=y +CONFIG_FEATURE_BRCTL_FANCY=y +CONFIG_FEATURE_BRCTL_SHOW=y +CONFIG_DNSD=y +CONFIG_ETHER_WAKE=y +CONFIG_FAKEIDENTD=y +CONFIG_FTPD=y +CONFIG_FEATURE_FTP_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FTPGET=y +CONFIG_FTPPUT=y +CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS=y +CONFIG_HOSTNAME=y +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_RANGES=y +CONFIG_FEATURE_HTTPD_USE_SENDFILE=y +CONFIG_FEATURE_HTTPD_SETUID=y +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +CONFIG_FEATURE_HTTPD_AUTH_MD5=y +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_IFCONFIG=y +CONFIG_FEATURE_IFCONFIG_STATUS=y +CONFIG_FEATURE_IFCONFIG_SLIP=y +CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y +CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +CONFIG_IFENSLAVE=y +CONFIG_IFPLUGD=y +CONFIG_IFUPDOWN=y +CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate" +CONFIG_FEATURE_IFUPDOWN_IP=y +CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN=y +# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set +CONFIG_FEATURE_IFUPDOWN_IPV4=y +CONFIG_FEATURE_IFUPDOWN_IPV6=y +CONFIG_FEATURE_IFUPDOWN_MAPPING=y +CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP=y +CONFIG_INETD=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN=y +CONFIG_FEATURE_INETD_RPC=y +CONFIG_IP=y +CONFIG_FEATURE_IP_ADDRESS=y +CONFIG_FEATURE_IP_LINK=y +CONFIG_FEATURE_IP_LINK_CAN=y +CONFIG_FEATURE_IP_ROUTE=y +CONFIG_FEATURE_IP_TUNNEL=y +CONFIG_FEATURE_IP_RULE=y +CONFIG_FEATURE_IP_SHORT_FORMS=y +CONFIG_FEATURE_IP_RARE_PROTOCOLS=y +CONFIG_IPADDR=y +CONFIG_IPLINK=y +CONFIG_IPROUTE=y +CONFIG_IPTUNNEL=y +CONFIG_IPRULE=y +CONFIG_IPCALC=y +CONFIG_FEATURE_IPCALC_FANCY=y +CONFIG_FEATURE_IPCALC_LONG_OPTIONS=y +CONFIG_NAMEIF=y +CONFIG_FEATURE_NAMEIF_EXTENDED=y +CONFIG_NC=y +CONFIG_NC_SERVER=y +CONFIG_NC_EXTRA=y +CONFIG_NETSTAT=y +CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_FEATURE_NETSTAT_PRG=y +CONFIG_NSLOOKUP=y +CONFIG_NTPD=y +CONFIG_FEATURE_NTPD_SERVER=y +CONFIG_PING=y +CONFIG_PING6=y +CONFIG_FEATURE_FANCY_PING=y +CONFIG_PSCAN=y +CONFIG_ROUTE=y +CONFIG_SLATTACH=y +CONFIG_TELNET=y +CONFIG_FEATURE_TELNET_TTYPE=y +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +CONFIG_TELNETD=y +CONFIG_FEATURE_TELNETD_STANDALONE=y +CONFIG_FEATURE_TELNETD_INETD_WAIT=y +CONFIG_TFTP=y +CONFIG_TFTPD=y +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +CONFIG_FEATURE_TFTP_BLOCKSIZE=y +CONFIG_FEATURE_TFTP_PROGRESS_BAR=y +CONFIG_TFTP_DEBUG=y +CONFIG_TRACEROUTE=y +CONFIG_TRACEROUTE6=y +CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +CONFIG_FEATURE_TRACEROUTE_USE_ICMP=y +CONFIG_UDHCPD=y +CONFIG_DHCPRELAY=y +CONFIG_DUMPLEASES=y +CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY=y +CONFIG_DHCPD_LEASES_FILE="/var/lib/misc/udhcpd.leases" +CONFIG_UDHCPC=y +CONFIG_FEATURE_UDHCPC_ARPING=y +CONFIG_FEATURE_UDHCP_PORT=y +CONFIG_UDHCP_DEBUG=9 +CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n" +CONFIG_VCONFIG=y +CONFIG_WGET=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_FEATURE_WGET_LONG_OPTIONS=y +CONFIG_ZCIP=y +CONFIG_TCPSVD=y +CONFIG_TUNCTL=y +CONFIG_FEATURE_TUNCTL_UG=y +CONFIG_UDPSVD=y + +# +# Print Utilities +# +CONFIG_LPD=y +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +CONFIG_MAKEMIME=y +CONFIG_FEATURE_MIME_CHARSET="us-ascii" +CONFIG_POPMAILDIR=y +CONFIG_FEATURE_POPMAILDIR_DELIVERY=y +CONFIG_REFORMIME=y +CONFIG_FEATURE_REFORMIME_COMPAT=y +CONFIG_SENDMAIL=y + +# +# Process Utilities +# +CONFIG_FREE=y +CONFIG_FUSER=y +CONFIG_KILL=y +CONFIG_KILLALL=y +CONFIG_KILLALL5=y +CONFIG_NMETER=y +CONFIG_PGREP=y +CONFIG_PIDOF=y +CONFIG_FEATURE_PIDOF_SINGLE=y +CONFIG_FEATURE_PIDOF_OMIT=y +CONFIG_PKILL=y +CONFIG_PS=y +CONFIG_FEATURE_PS_WIDE=y +CONFIG_FEATURE_PS_TIME=y +CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS=y +CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS=y +CONFIG_RENICE=y +CONFIG_BB_SYSCTL=y +CONFIG_TOP=y +CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +CONFIG_FEATURE_TOP_SMP_CPU=y +CONFIG_FEATURE_TOP_DECIMALS=y +CONFIG_FEATURE_TOP_SMP_PROCESS=y +CONFIG_FEATURE_TOPMEM=y +CONFIG_FEATURE_SHOW_THREADS=y +CONFIG_UPTIME=y +CONFIG_WATCH=y + +# +# Runit Utilities +# +CONFIG_RUNSV=y +CONFIG_RUNSVDIR=y +CONFIG_FEATURE_RUNSVDIR_LOG=y +CONFIG_SV=y +CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service" +CONFIG_SVLOGD=y +CONFIG_CHPST=y +CONFIG_SETUIDGID=y +CONFIG_ENVUIDGID=y +CONFIG_ENVDIR=y +CONFIG_SOFTLIMIT=y + +# +# SELinux Utilities +# +CONFIG_CHCON=y +CONFIG_FEATURE_CHCON_LONG_OPTIONS=y +CONFIG_GETENFORCE=y +CONFIG_GETSEBOOL=y +CONFIG_LOAD_POLICY=y +CONFIG_MATCHPATHCON=y +CONFIG_RESTORECON=y +CONFIG_RUNCON=y +CONFIG_FEATURE_RUNCON_LONG_OPTIONS=y +CONFIG_SELINUXENABLED=y +CONFIG_SETENFORCE=y +CONFIG_SETFILES=y +CONFIG_FEATURE_SETFILES_CHECK_OPTION=y +CONFIG_SETSEBOOL=y +CONFIG_SESTATUS=y + +# +# Shells +# +# CONFIG_FEATURE_SH_IS_ASH is not set +CONFIG_FEATURE_SH_IS_HUSH=y +# CONFIG_FEATURE_SH_IS_NONE is not set +# CONFIG_ASH is not set +# CONFIG_ASH_BASH_COMPAT is not set +# CONFIG_ASH_JOB_CONTROL is not set +# CONFIG_ASH_ALIAS is not set +# CONFIG_ASH_GETOPTS is not set +# CONFIG_ASH_ECHO is not set +# CONFIG_ASH_PRINTF is not set +# CONFIG_ASH_TEST is not set +# CONFIG_ASH_CMDCMD is not set +# CONFIG_ASH_MAIL is not set +# CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_ASH_RANDOM_SUPPORT is not set +# CONFIG_ASH_EXPAND_PRMT is not set +CONFIG_HUSH=y +CONFIG_HUSH_BASH_COMPAT=y +CONFIG_HUSH_HELP=y +CONFIG_HUSH_INTERACTIVE=y +CONFIG_HUSH_JOB=y +CONFIG_HUSH_TICK=y +CONFIG_HUSH_IF=y +CONFIG_HUSH_LOOPS=y +CONFIG_HUSH_CASE=y +CONFIG_HUSH_FUNCTIONS=y +CONFIG_HUSH_LOCAL=y +CONFIG_HUSH_EXPORT_N=y +CONFIG_HUSH_RANDOM_SUPPORT=y +CONFIG_SH_MATH_SUPPORT=y +CONFIG_SH_MATH_SUPPORT_64=y +CONFIG_FEATURE_SH_EXTRA_QUIET=y +CONFIG_FEATURE_SH_STANDALONE=y +CONFIG_FEATURE_SH_NOFORK=y +CONFIG_CTTYHACK=y + +# +# System Logging Utilities +# +CONFIG_SYSLOGD=y +CONFIG_FEATURE_ROTATE_LOGFILE=y +CONFIG_FEATURE_REMOTE_LOG=y +CONFIG_FEATURE_SYSLOGD_DUP=y +CONFIG_FEATURE_IPC_SYSLOG=y +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16 +CONFIG_LOGREAD=y +CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING=y +CONFIG_KLOGD=y +CONFIG_LOGGER=y diff --git a/busybox-1_37_0/configs/TEST_noprintf_defconfig b/busybox-1_37_0/configs/TEST_noprintf_defconfig new file mode 100644 index 000000000..9b378fd55 --- /dev/null +++ b/busybox-1_37_0/configs/TEST_noprintf_defconfig @@ -0,0 +1,920 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.17.0.git +# Mon Jun 7 13:37:55 2010 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +CONFIG_DESKTOP=y +CONFIG_EXTRA_COMPAT=y +CONFIG_INCLUDE_SUSv2=y +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_SHOW_USAGE=y +CONFIG_FEATURE_VERBOSE_USAGE=y +# CONFIG_FEATURE_COMPRESS_USAGE is not set +# CONFIG_FEATURE_INSTALLER is not set +# CONFIG_LOCALE_SUPPORT is not set +CONFIG_UNICODE_SUPPORT=y +# CONFIG_UNICODE_USING_LOCALE is not set +CONFIG_FEATURE_CHECK_UNICODE_IN_ENV=y +CONFIG_SUBST_WCHAR=63 +CONFIG_LAST_SUPPORTED_WCHAR=65535 +CONFIG_UNICODE_COMBINING_WCHARS=y +CONFIG_UNICODE_WIDE_WCHARS=y +CONFIG_UNICODE_BIDI_SUPPORT=y +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +CONFIG_UNICODE_PRESERVE_BROKEN=y +CONFIG_LONG_OPTS=y +CONFIG_FEATURE_DEVPTS=y +# CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_FEATURE_UTMP=y +CONFIG_FEATURE_WTMP=y +CONFIG_FEATURE_PIDFILE=y +# CONFIG_FEATURE_SUID is not set +# CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_FEATURE_SUID_CONFIG_QUIET is not set +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +# CONFIG_FEATURE_SYSLOG is not set + +# +# Build Options +# +CONFIG_STATIC=y +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +CONFIG_LFS=y +CONFIG_CROSS_COMPILER_PREFIX="i486-linux-uclibc-" +CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +CONFIG_WERROR=y +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options +# +# CONFIG_INSTALL_NO_USR is not set +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +CONFIG_FEATURE_FAST_TOP=y +# CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 +CONFIG_FEATURE_EDITING_VI=y +CONFIG_FEATURE_EDITING_HISTORY=15 +# CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +CONFIG_FEATURE_TAB_COMPLETION=y +CONFIG_FEATURE_USERNAME_COMPLETION=y +CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +CONFIG_FEATURE_EDITING_ASK_TERMINAL=y +CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_FEATURE_COPYBUF_KB=64 +CONFIG_MONOTONIC_SYSCALL=y +# CONFIG_IOCTL_HEX2STR_ERROR is not set +CONFIG_FEATURE_HWIB=y + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_XZ=y +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +# CONFIG_AR is not set +# CONFIG_FEATURE_AR_LONG_FILENAMES is not set +# CONFIG_FEATURE_AR_CREATE is not set +# CONFIG_BUNZIP2 is not set +# CONFIG_BZIP2 is not set +# CONFIG_CPIO is not set +# CONFIG_FEATURE_CPIO_O is not set +# CONFIG_FEATURE_CPIO_P is not set +# CONFIG_DPKG is not set +# CONFIG_DPKG_DEB is not set +# CONFIG_GUNZIP is not set +# CONFIG_GZIP is not set +# CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set +# CONFIG_LZOP is not set +# CONFIG_LZOP_COMPR_HIGH is not set +# CONFIG_RPM2CPIO is not set +# CONFIG_RPM is not set +# CONFIG_TAR is not set +# CONFIG_FEATURE_TAR_CREATE is not set +# CONFIG_FEATURE_TAR_AUTODETECT is not set +# CONFIG_FEATURE_TAR_FROM is not set +# CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY is not set +# CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY is not set +# CONFIG_FEATURE_TAR_GNU_EXTENSIONS is not set +# CONFIG_FEATURE_TAR_LONG_OPTIONS is not set +# CONFIG_FEATURE_TAR_UNAME_GNAME is not set +# CONFIG_FEATURE_TAR_NOPRESERVE_TIME is not set +# CONFIG_FEATURE_TAR_SELINUX is not set +# CONFIG_UNCOMPRESS is not set +# CONFIG_UNLZMA is not set +# CONFIG_FEATURE_LZMA_FAST is not set +# CONFIG_LZMA is not set +# CONFIG_UNXZ is not set +# CONFIG_XZ is not set +# CONFIG_UNZIP is not set + +# +# Coreutils +# +CONFIG_BASENAME=y +# CONFIG_CAT is not set +# CONFIG_DATE is not set +# CONFIG_FEATURE_DATE_ISOFMT is not set +# CONFIG_FEATURE_DATE_NANO is not set +# CONFIG_FEATURE_DATE_COMPAT is not set +# CONFIG_TEST is not set +# CONFIG_FEATURE_TEST_64 is not set +# CONFIG_TR is not set +# CONFIG_FEATURE_TR_CLASSES is not set +# CONFIG_FEATURE_TR_EQUIV is not set +# CONFIG_CAL is not set +# CONFIG_CATV is not set +# CONFIG_CHGRP is not set +# CONFIG_CHMOD is not set +# CONFIG_CHOWN is not set +# CONFIG_FEATURE_CHOWN_LONG_OPTIONS is not set +# CONFIG_CHROOT is not set +# CONFIG_CKSUM is not set +# CONFIG_COMM is not set +# CONFIG_CP is not set +# CONFIG_FEATURE_CP_LONG_OPTIONS is not set +# CONFIG_CUT is not set +# CONFIG_DD is not set +# CONFIG_FEATURE_DD_SIGNAL_HANDLING is not set +# CONFIG_FEATURE_DD_THIRD_STATUS_LINE is not set +# CONFIG_FEATURE_DD_IBS_OBS is not set +# CONFIG_DF is not set +# CONFIG_FEATURE_DF_FANCY is not set +# CONFIG_DIRNAME is not set +# CONFIG_DOS2UNIX is not set +# CONFIG_UNIX2DOS is not set +# CONFIG_DU is not set +# CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K is not set +# CONFIG_ECHO is not set +# CONFIG_FEATURE_FANCY_ECHO is not set +# CONFIG_ENV is not set +# CONFIG_FEATURE_ENV_LONG_OPTIONS is not set +# CONFIG_EXPAND is not set +# CONFIG_FEATURE_EXPAND_LONG_OPTIONS is not set +# CONFIG_EXPR is not set +# CONFIG_EXPR_MATH_SUPPORT_64 is not set +CONFIG_FALSE=y +# CONFIG_FOLD is not set +# CONFIG_FSYNC is not set +# CONFIG_HEAD is not set +# CONFIG_FEATURE_FANCY_HEAD is not set +# CONFIG_HOSTID is not set +# CONFIG_ID is not set +# CONFIG_INSTALL is not set +# CONFIG_FEATURE_INSTALL_LONG_OPTIONS is not set +# CONFIG_LN is not set +# CONFIG_LOGNAME is not set +# CONFIG_LS is not set +# CONFIG_FEATURE_LS_FILETYPES is not set +# CONFIG_FEATURE_LS_FOLLOWLINKS is not set +# CONFIG_FEATURE_LS_RECURSIVE is not set +# CONFIG_FEATURE_LS_SORTFILES is not set +# CONFIG_FEATURE_LS_TIMESTAMPS is not set +# CONFIG_FEATURE_LS_USERNAME is not set +# CONFIG_FEATURE_LS_COLOR is not set +# CONFIG_FEATURE_LS_COLOR_IS_DEFAULT is not set +# CONFIG_MD5SUM is not set +# CONFIG_MKDIR is not set +# CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set +# CONFIG_MKFIFO is not set +# CONFIG_MKNOD is not set +# CONFIG_MV is not set +# CONFIG_FEATURE_MV_LONG_OPTIONS is not set +# CONFIG_NICE is not set +# CONFIG_NOHUP is not set +# CONFIG_OD is not set +# CONFIG_PRINTENV is not set +# CONFIG_PRINTF is not set +# CONFIG_PWD is not set +# CONFIG_READLINK is not set +# CONFIG_FEATURE_READLINK_FOLLOW is not set +# CONFIG_REALPATH is not set +# CONFIG_RM is not set +# CONFIG_RMDIR is not set +# CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +# CONFIG_SEQ is not set +# CONFIG_SHA1SUM is not set +# CONFIG_SHA256SUM is not set +# CONFIG_SHA512SUM is not set +# CONFIG_SLEEP is not set +# CONFIG_FEATURE_FANCY_SLEEP is not set +# CONFIG_FEATURE_FLOAT_SLEEP is not set +# CONFIG_SORT is not set +# CONFIG_FEATURE_SORT_BIG is not set +# CONFIG_SPLIT is not set +# CONFIG_FEATURE_SPLIT_FANCY is not set +# CONFIG_STAT is not set +# CONFIG_FEATURE_STAT_FORMAT is not set +# CONFIG_STTY is not set +# CONFIG_SUM is not set +# CONFIG_SYNC is not set +# CONFIG_TAC is not set +# CONFIG_TAIL is not set +# CONFIG_FEATURE_FANCY_TAIL is not set +# CONFIG_TEE is not set +# CONFIG_FEATURE_TEE_USE_BLOCK_IO is not set +# CONFIG_TOUCH is not set +CONFIG_TRUE=y +# CONFIG_TTY is not set +# CONFIG_UNAME is not set +# CONFIG_UNEXPAND is not set +# CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS is not set +# CONFIG_UNIQ is not set +# CONFIG_USLEEP is not set +# CONFIG_UUDECODE is not set +# CONFIG_UUENCODE is not set +# CONFIG_WC is not set +# CONFIG_FEATURE_WC_LARGE is not set +# CONFIG_WHO is not set +# CONFIG_WHOAMI is not set +# CONFIG_YES is not set +# CONFIG_FEATURE_PRESERVE_HARDLINKS is not set +# CONFIG_FEATURE_HUMAN_READABLE is not set +# CONFIG_FEATURE_MD5_SHA1_SUM_CHECK is not set + +# +# Console Utilities +# +# CONFIG_CHVT is not set +# CONFIG_FGCONSOLE is not set +# CONFIG_CLEAR is not set +# CONFIG_DEALLOCVT is not set +# CONFIG_DUMPKMAP is not set +# CONFIG_KBD_MODE is not set +# CONFIG_LOADFONT is not set +# CONFIG_LOADKMAP is not set +# CONFIG_OPENVT is not set +# CONFIG_RESET is not set +# CONFIG_RESIZE is not set +# CONFIG_FEATURE_RESIZE_PRINT is not set +# CONFIG_SETCONSOLE is not set +# CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set +# CONFIG_SETFONT is not set +# CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set +CONFIG_DEFAULT_SETFONT_DIR="" +# CONFIG_SETKEYCODES is not set +# CONFIG_SETLOGCONS is not set +# CONFIG_SHOWKEY is not set +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set + +# +# Debian Utilities +# +# CONFIG_MKTEMP is not set +CONFIG_PIPE_PROGRESS=y +# CONFIG_RUN_PARTS is not set +# CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS is not set +# CONFIG_FEATURE_RUN_PARTS_FANCY is not set +# CONFIG_START_STOP_DAEMON is not set +# CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set +# CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +# CONFIG_WHICH is not set + +# +# Editors +# +# CONFIG_AWK is not set +# CONFIG_FEATURE_AWK_LIBM is not set +# CONFIG_CMP is not set +# CONFIG_DIFF is not set +# CONFIG_FEATURE_DIFF_LONG_OPTIONS is not set +# CONFIG_FEATURE_DIFF_DIR is not set +# CONFIG_ED is not set +# CONFIG_PATCH is not set +# CONFIG_SED is not set +# CONFIG_VI is not set +CONFIG_FEATURE_VI_MAX_LEN=0 +# CONFIG_FEATURE_VI_8BIT is not set +# CONFIG_FEATURE_VI_COLON is not set +# CONFIG_FEATURE_VI_YANKMARK is not set +# CONFIG_FEATURE_VI_SEARCH is not set +# CONFIG_FEATURE_VI_USE_SIGNALS is not set +# CONFIG_FEATURE_VI_DOT_CMD is not set +# CONFIG_FEATURE_VI_READONLY is not set +# CONFIG_FEATURE_VI_SETOPTS is not set +# CONFIG_FEATURE_VI_SET is not set +# CONFIG_FEATURE_VI_WIN_RESIZE is not set +# CONFIG_FEATURE_VI_ASK_TERMINAL is not set +# CONFIG_FEATURE_ALLOW_EXEC is not set + +# +# Finding Utilities +# +# CONFIG_FIND is not set +# CONFIG_FEATURE_FIND_PRINT0 is not set +# CONFIG_FEATURE_FIND_MTIME is not set +# CONFIG_FEATURE_FIND_MMIN is not set +# CONFIG_FEATURE_FIND_PERM is not set +# CONFIG_FEATURE_FIND_TYPE is not set +# CONFIG_FEATURE_FIND_XDEV is not set +# CONFIG_FEATURE_FIND_MAXDEPTH is not set +# CONFIG_FEATURE_FIND_NEWER is not set +# CONFIG_FEATURE_FIND_INUM is not set +# CONFIG_FEATURE_FIND_EXEC is not set +# CONFIG_FEATURE_FIND_USER is not set +# CONFIG_FEATURE_FIND_GROUP is not set +# CONFIG_FEATURE_FIND_NOT is not set +# CONFIG_FEATURE_FIND_DEPTH is not set +# CONFIG_FEATURE_FIND_PAREN is not set +# CONFIG_FEATURE_FIND_SIZE is not set +# CONFIG_FEATURE_FIND_PRUNE is not set +# CONFIG_FEATURE_FIND_DELETE is not set +# CONFIG_FEATURE_FIND_PATH is not set +# CONFIG_FEATURE_FIND_REGEX is not set +# CONFIG_FEATURE_FIND_CONTEXT is not set +# CONFIG_FEATURE_FIND_LINKS is not set +# CONFIG_GREP is not set +# CONFIG_FEATURE_GREP_EGREP_ALIAS is not set +# CONFIG_FEATURE_GREP_FGREP_ALIAS is not set +# CONFIG_FEATURE_GREP_CONTEXT is not set +# CONFIG_XARGS is not set +# CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION is not set +# CONFIG_FEATURE_XARGS_SUPPORT_QUOTES is not set +# CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT is not set +# CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM is not set + +# +# Init Utilities +# +# CONFIG_INIT is not set +# CONFIG_FEATURE_USE_INITTAB is not set +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +# CONFIG_FEATURE_INIT_SCTTY is not set +# CONFIG_FEATURE_INIT_SYSLOG is not set +# CONFIG_FEATURE_INIT_QUIET is not set +# CONFIG_FEATURE_INIT_COREDUMPS is not set +# CONFIG_LINUXRC is not set +# CONFIG_HALT is not set +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +# CONFIG_MESG is not set +# CONFIG_BOOTCHARTD is not set + +# +# Login/Password Management Utilities +# +# CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_USE_BB_SHADOW is not set +# CONFIG_USE_BB_CRYPT is not set +# CONFIG_USE_BB_CRYPT_SHA is not set +# CONFIG_ADDGROUP is not set +# CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set +# CONFIG_FEATURE_ADDUSER_TO_GROUP is not set +# CONFIG_DELGROUP is not set +# CONFIG_FEATURE_DEL_USER_FROM_GROUP is not set +# CONFIG_FEATURE_CHECK_NAMES is not set +# CONFIG_ADDUSER is not set +# CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set +CONFIG_FIRST_SYSTEM_ID=0 +CONFIG_LAST_SYSTEM_ID=0 +# CONFIG_DELUSER is not set +# CONFIG_GETTY is not set +# CONFIG_LOGIN is not set +# CONFIG_PAM is not set +# CONFIG_LOGIN_SCRIPTS is not set +# CONFIG_FEATURE_NOLOGIN is not set +# CONFIG_FEATURE_SECURETTY is not set +# CONFIG_PASSWD is not set +# CONFIG_FEATURE_PASSWD_WEAK_CHECK is not set +# CONFIG_CRYPTPW is not set +# CONFIG_CHPASSWD is not set +# CONFIG_SU is not set +# CONFIG_FEATURE_SU_SYSLOG is not set +# CONFIG_FEATURE_SU_CHECKS_SHELLS is not set +# CONFIG_SULOGIN is not set +# CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +# CONFIG_CHATTR is not set +# CONFIG_FSCK is not set +# CONFIG_LSATTR is not set +# CONFIG_TUNE2FS is not set + +# +# Linux Module Utilities +# +# CONFIG_MODINFO is not set +# CONFIG_MODPROBE_SMALL is not set +# CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE is not set +# CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set +# CONFIG_INSMOD is not set +# CONFIG_RMMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_TRY_MMAP is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +# CONFIG_FEATURE_MODUTILS_ALIAS is not set +# CONFIG_FEATURE_MODUTILS_SYMBOLS is not set +CONFIG_DEFAULT_MODULES_DIR="" +CONFIG_DEFAULT_DEPMOD_FILE="" + +# +# Linux System Utilities +# +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +# CONFIG_BLKID is not set +# CONFIG_DMESG is not set +# CONFIG_FEATURE_DMESG_PRETTY is not set +# CONFIG_FBSET is not set +# CONFIG_FEATURE_FBSET_FANCY is not set +# CONFIG_FEATURE_FBSET_READMODE is not set +# CONFIG_FDFLUSH is not set +# CONFIG_FDFORMAT is not set +# CONFIG_FDISK is not set +CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +# CONFIG_FEATURE_FDISK_WRITABLE is not set +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +# CONFIG_FEATURE_FDISK_ADVANCED is not set +# CONFIG_FINDFS is not set +# CONFIG_FLOCK is not set +# CONFIG_FREERAMDISK is not set +# CONFIG_FSCK_MINIX is not set +# CONFIG_MKFS_EXT2 is not set +# CONFIG_MKFS_MINIX is not set +# CONFIG_FEATURE_MINIX2 is not set +# CONFIG_MKFS_REISER is not set +# CONFIG_MKFS_VFAT is not set +# CONFIG_GETOPT is not set +# CONFIG_FEATURE_GETOPT_LONG is not set +# CONFIG_HEXDUMP is not set +# CONFIG_FEATURE_HEXDUMP_REVERSE is not set +# CONFIG_HD is not set +# CONFIG_HWCLOCK is not set +# CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_IPCRM is not set +# CONFIG_IPCS is not set +# CONFIG_LOSETUP is not set +# CONFIG_LSPCI is not set +# CONFIG_LSUSB is not set +# CONFIG_MDEV is not set +# CONFIG_FEATURE_MDEV_CONF is not set +# CONFIG_FEATURE_MDEV_RENAME is not set +# CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set +# CONFIG_FEATURE_MDEV_EXEC is not set +# CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set +# CONFIG_MKSWAP is not set +# CONFIG_FEATURE_MKSWAP_UUID is not set +# CONFIG_MORE is not set +CONFIG_VOLUMEID=y +# CONFIG_FEATURE_VOLUMEID_EXT is not set +# CONFIG_FEATURE_VOLUMEID_BTRFS is not set +# CONFIG_FEATURE_VOLUMEID_REISERFS is not set +# CONFIG_FEATURE_VOLUMEID_FAT is not set +# CONFIG_FEATURE_VOLUMEID_HFS is not set +# CONFIG_FEATURE_VOLUMEID_JFS is not set +# CONFIG_FEATURE_VOLUMEID_XFS is not set +# CONFIG_FEATURE_VOLUMEID_NTFS is not set +# CONFIG_FEATURE_VOLUMEID_ISO9660 is not set +# CONFIG_FEATURE_VOLUMEID_UDF is not set +# CONFIG_FEATURE_VOLUMEID_LUKS is not set +# CONFIG_FEATURE_VOLUMEID_LINUXSWAP is not set +# CONFIG_FEATURE_VOLUMEID_CRAMFS is not set +# CONFIG_FEATURE_VOLUMEID_ROMFS is not set +# CONFIG_FEATURE_VOLUMEID_SYSV is not set +# CONFIG_FEATURE_VOLUMEID_OCFS2 is not set +# CONFIG_FEATURE_VOLUMEID_LINUXRAID is not set +# CONFIG_MOUNT is not set +# CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_FEATURE_MOUNT_LABEL is not set +# CONFIG_FEATURE_MOUNT_NFS is not set +# CONFIG_FEATURE_MOUNT_CIFS is not set +# CONFIG_FEATURE_MOUNT_FLAGS is not set +# CONFIG_FEATURE_MOUNT_FSTAB is not set +# CONFIG_PIVOT_ROOT is not set +# CONFIG_RDATE is not set +# CONFIG_RDEV is not set +# CONFIG_READPROFILE is not set +# CONFIG_RTCWAKE is not set +# CONFIG_SCRIPT is not set +# CONFIG_SCRIPTREPLAY is not set +# CONFIG_SETARCH is not set +# CONFIG_SWAPONOFF is not set +# CONFIG_FEATURE_SWAPON_PRI is not set +# CONFIG_SWITCH_ROOT is not set +# CONFIG_UMOUNT is not set +# CONFIG_FEATURE_UMOUNT_ALL is not set +# CONFIG_FEATURE_MOUNT_LOOP is not set +# CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set +# CONFIG_FEATURE_MTAB_SUPPORT is not set + +# +# Miscellaneous Utilities +# +# CONFIG_ADJTIMEX is not set +CONFIG_BBCONFIG=y +# CONFIG_BEEP is not set +CONFIG_FEATURE_BEEP_FREQ=0 +CONFIG_FEATURE_BEEP_LENGTH_MS=0 +# CONFIG_CHAT is not set +# CONFIG_FEATURE_CHAT_NOFAIL is not set +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +# CONFIG_FEATURE_CHAT_IMPLICIT_CR is not set +# CONFIG_FEATURE_CHAT_SWALLOW_OPTS is not set +# CONFIG_FEATURE_CHAT_SEND_ESCAPES is not set +# CONFIG_FEATURE_CHAT_VAR_ABORT_LEN is not set +# CONFIG_FEATURE_CHAT_CLR_ABORT is not set +# CONFIG_CHRT is not set +# CONFIG_CROND is not set +# CONFIG_FEATURE_CROND_D is not set +# CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set +CONFIG_FEATURE_CROND_DIR="" +# CONFIG_CRONTAB is not set +# CONFIG_DC is not set +# CONFIG_FEATURE_DC_LIBM is not set +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +# CONFIG_DEVMEM is not set +# CONFIG_EJECT is not set +# CONFIG_FEATURE_EJECT_SCSI is not set +# CONFIG_FBSPLASH is not set +# CONFIG_FLASHCP is not set +# CONFIG_FLASH_LOCK is not set +# CONFIG_FLASH_UNLOCK is not set +# CONFIG_FLASH_ERASEALL is not set +# CONFIG_IONICE is not set +# CONFIG_INOTIFYD is not set +# CONFIG_LAST is not set +# CONFIG_FEATURE_LAST_SMALL is not set +# CONFIG_FEATURE_LAST_FANCY is not set +# CONFIG_LESS is not set +CONFIG_FEATURE_LESS_MAXLINES=0 +# CONFIG_FEATURE_LESS_BRACKETS is not set +# CONFIG_FEATURE_LESS_FLAGS is not set +# CONFIG_FEATURE_LESS_MARKS is not set +# CONFIG_FEATURE_LESS_REGEXP is not set +# CONFIG_FEATURE_LESS_WINCH is not set +# CONFIG_FEATURE_LESS_DASHCMD is not set +# CONFIG_FEATURE_LESS_LINENUMS is not set +# CONFIG_HDPARM is not set +# CONFIG_FEATURE_HDPARM_GET_IDENTITY is not set +# CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set +# CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA is not set +# CONFIG_MAKEDEVS is not set +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +# CONFIG_FEATURE_MAKEDEVS_TABLE is not set +# CONFIG_MAN is not set +# CONFIG_MICROCOM is not set +# CONFIG_MOUNTPOINT is not set +# CONFIG_MT is not set +# CONFIG_RAIDAUTORUN is not set +# CONFIG_READAHEAD is not set +# CONFIG_RFKILL is not set +# CONFIG_RUNLEVEL is not set +# CONFIG_RX is not set +# CONFIG_SETSID is not set +# CONFIG_STRINGS is not set +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +# CONFIG_TIME is not set +# CONFIG_TIMEOUT is not set +# CONFIG_TTYSIZE is not set +# CONFIG_VOLNAME is not set +# CONFIG_WALL is not set +# CONFIG_WATCHDOG is not set + +# +# Networking Utilities +# +# CONFIG_FEATURE_IPV6 is not set +# CONFIG_FEATURE_UNIX_LOCAL is not set +# CONFIG_FEATURE_PREFER_IPV4_ADDRESS is not set +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +# CONFIG_ARP is not set +# CONFIG_ARPING is not set +# CONFIG_BRCTL is not set +# CONFIG_FEATURE_BRCTL_FANCY is not set +# CONFIG_FEATURE_BRCTL_SHOW is not set +# CONFIG_DNSD is not set +# CONFIG_ETHER_WAKE is not set +# CONFIG_FAKEIDENTD is not set +# CONFIG_FTPD is not set +# CONFIG_FEATURE_FTP_WRITE is not set +# CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST is not set +# CONFIG_FTPGET is not set +# CONFIG_FTPPUT is not set +# CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set +# CONFIG_HOSTNAME is not set +# CONFIG_HTTPD is not set +# CONFIG_FEATURE_HTTPD_RANGES is not set +# CONFIG_FEATURE_HTTPD_USE_SENDFILE is not set +# CONFIG_FEATURE_HTTPD_SETUID is not set +# CONFIG_FEATURE_HTTPD_BASIC_AUTH is not set +# CONFIG_FEATURE_HTTPD_AUTH_MD5 is not set +# CONFIG_FEATURE_HTTPD_CGI is not set +# CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR is not set +# CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV is not set +# CONFIG_FEATURE_HTTPD_ENCODE_URL_STR is not set +# CONFIG_FEATURE_HTTPD_ERROR_PAGES is not set +# CONFIG_FEATURE_HTTPD_PROXY is not set +# CONFIG_IFCONFIG is not set +# CONFIG_FEATURE_IFCONFIG_STATUS is not set +# CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +# CONFIG_FEATURE_IFCONFIG_HW is not set +# CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS is not set +# CONFIG_IFENSLAVE is not set +# CONFIG_IFPLUGD is not set +# CONFIG_IFUPDOWN is not set +CONFIG_IFUPDOWN_IFSTATE_PATH="" +# CONFIG_FEATURE_IFUPDOWN_IP is not set +# CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN is not set +# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set +# CONFIG_FEATURE_IFUPDOWN_IPV4 is not set +# CONFIG_FEATURE_IFUPDOWN_IPV6 is not set +# CONFIG_FEATURE_IFUPDOWN_MAPPING is not set +# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set +# CONFIG_INETD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set +# CONFIG_FEATURE_INETD_RPC is not set +# CONFIG_IP is not set +# CONFIG_FEATURE_IP_ADDRESS is not set +# CONFIG_FEATURE_IP_LINK is not set +# CONFIG_FEATURE_IP_ROUTE is not set +# CONFIG_FEATURE_IP_TUNNEL is not set +# CONFIG_FEATURE_IP_RULE is not set +# CONFIG_FEATURE_IP_SHORT_FORMS is not set +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +# CONFIG_IPADDR is not set +# CONFIG_IPLINK is not set +# CONFIG_IPROUTE is not set +# CONFIG_IPTUNNEL is not set +# CONFIG_IPRULE is not set +# CONFIG_IPCALC is not set +# CONFIG_FEATURE_IPCALC_FANCY is not set +# CONFIG_FEATURE_IPCALC_LONG_OPTIONS is not set +# CONFIG_NAMEIF is not set +# CONFIG_FEATURE_NAMEIF_EXTENDED is not set +# CONFIG_NC is not set +# CONFIG_NC_SERVER is not set +# CONFIG_NC_EXTRA is not set +# CONFIG_NETSTAT is not set +# CONFIG_FEATURE_NETSTAT_WIDE is not set +# CONFIG_FEATURE_NETSTAT_PRG is not set +# CONFIG_NSLOOKUP is not set +# CONFIG_NTPD is not set +# CONFIG_FEATURE_NTPD_SERVER is not set +# CONFIG_PING is not set +# CONFIG_PING6 is not set +# CONFIG_FEATURE_FANCY_PING is not set +# CONFIG_PSCAN is not set +# CONFIG_ROUTE is not set +# CONFIG_SLATTACH is not set +# CONFIG_TCPSVD is not set +# CONFIG_TELNET is not set +# CONFIG_FEATURE_TELNET_TTYPE is not set +# CONFIG_FEATURE_TELNET_AUTOLOGIN is not set +# CONFIG_TELNETD is not set +# CONFIG_FEATURE_TELNETD_STANDALONE is not set +# CONFIG_FEATURE_TELNETD_INETD_WAIT is not set +# CONFIG_TFTP is not set +# CONFIG_TFTPD is not set +# CONFIG_FEATURE_TFTP_GET is not set +# CONFIG_FEATURE_TFTP_PUT is not set +# CONFIG_FEATURE_TFTP_BLOCKSIZE is not set +# CONFIG_FEATURE_TFTP_PROGRESS_BAR is not set +# CONFIG_TFTP_DEBUG is not set +# CONFIG_TRACEROUTE is not set +# CONFIG_TRACEROUTE6 is not set +# CONFIG_FEATURE_TRACEROUTE_VERBOSE is not set +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +# CONFIG_TUNCTL is not set +# CONFIG_FEATURE_TUNCTL_UG is not set +# CONFIG_UDHCPD is not set +# CONFIG_DHCPRELAY is not set +# CONFIG_DUMPLEASES is not set +# CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set +CONFIG_DHCPD_LEASES_FILE="" +# CONFIG_UDHCPC is not set +# CONFIG_FEATURE_UDHCPC_ARPING is not set +# CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_UDHCP_DEBUG=0 +# CONFIG_FEATURE_UDHCP_RFC3397 is not set +CONFIG_UDHCPC_DEFAULT_SCRIPT="" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=0 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="" +# CONFIG_UDPSVD is not set +# CONFIG_VCONFIG is not set +# CONFIG_WGET is not set +# CONFIG_FEATURE_WGET_STATUSBAR is not set +# CONFIG_FEATURE_WGET_AUTHENTICATION is not set +# CONFIG_FEATURE_WGET_LONG_OPTIONS is not set +# CONFIG_ZCIP is not set + +# +# Print Utilities +# +# CONFIG_LPD is not set +# CONFIG_LPR is not set +# CONFIG_LPQ is not set + +# +# Mail Utilities +# +# CONFIG_MAKEMIME is not set +CONFIG_FEATURE_MIME_CHARSET="" +# CONFIG_POPMAILDIR is not set +# CONFIG_FEATURE_POPMAILDIR_DELIVERY is not set +# CONFIG_REFORMIME is not set +# CONFIG_FEATURE_REFORMIME_COMPAT is not set +# CONFIG_SENDMAIL is not set + +# +# Process Utilities +# +# CONFIG_FREE is not set +# CONFIG_FUSER is not set +# CONFIG_KILL is not set +# CONFIG_KILLALL is not set +# CONFIG_KILLALL5 is not set +# CONFIG_NMETER is not set +# CONFIG_PGREP is not set +# CONFIG_PIDOF is not set +# CONFIG_FEATURE_PIDOF_SINGLE is not set +# CONFIG_FEATURE_PIDOF_OMIT is not set +# CONFIG_PKILL is not set +# CONFIG_PS is not set +# CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_FEATURE_PS_TIME is not set +# CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS is not set +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +# CONFIG_RENICE is not set +# CONFIG_BB_SYSCTL is not set +# CONFIG_TOP is not set +# CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE is not set +# CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS is not set +# CONFIG_FEATURE_TOP_SMP_CPU is not set +# CONFIG_FEATURE_TOP_DECIMALS is not set +# CONFIG_FEATURE_TOP_SMP_PROCESS is not set +# CONFIG_FEATURE_TOPMEM is not set +# CONFIG_FEATURE_SHOW_THREADS is not set +# CONFIG_UPTIME is not set +# CONFIG_WATCH is not set + +# +# Runit Utilities +# +# CONFIG_RUNSV is not set +# CONFIG_RUNSVDIR is not set +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +# CONFIG_SV is not set +CONFIG_SV_DEFAULT_SERVICE_DIR="" +# CONFIG_SVLOGD is not set +# CONFIG_CHPST is not set +# CONFIG_SETUIDGID is not set +# CONFIG_ENVUIDGID is not set +# CONFIG_ENVDIR is not set +# CONFIG_SOFTLIMIT is not set +# CONFIG_CHCON is not set +# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RESTORECON is not set +# CONFIG_RUNCON is not set +# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_SETSEBOOL is not set +# CONFIG_SESTATUS is not set + +# +# Shells +# +# CONFIG_ASH is not set +# CONFIG_ASH_BASH_COMPAT is not set +# CONFIG_ASH_JOB_CONTROL is not set +# CONFIG_ASH_ALIAS is not set +# CONFIG_ASH_GETOPTS is not set +# CONFIG_ASH_ECHO is not set +# CONFIG_ASH_PRINTF is not set +# CONFIG_ASH_TEST is not set +# CONFIG_ASH_CMDCMD is not set +# CONFIG_ASH_MAIL is not set +# CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_ASH_RANDOM_SUPPORT is not set +# CONFIG_ASH_EXPAND_PRMT is not set +# CONFIG_HUSH is not set +# CONFIG_HUSH_BASH_COMPAT is not set +# CONFIG_HUSH_HELP is not set +# CONFIG_HUSH_INTERACTIVE is not set +# CONFIG_HUSH_JOB is not set +# CONFIG_HUSH_TICK is not set +# CONFIG_HUSH_IF is not set +# CONFIG_HUSH_LOOPS is not set +# CONFIG_HUSH_CASE is not set +# CONFIG_HUSH_FUNCTIONS is not set +# CONFIG_HUSH_LOCAL is not set +# CONFIG_HUSH_EXPORT_N is not set +# CONFIG_HUSH_RANDOM_SUPPORT is not set +# CONFIG_FEATURE_SH_IS_ASH is not set +# CONFIG_FEATURE_SH_IS_HUSH is not set +CONFIG_FEATURE_SH_IS_NONE=y +# CONFIG_FEATURE_BASH_IS_ASH is not set +# CONFIG_FEATURE_BASH_IS_HUSH is not set +CONFIG_FEATURE_BASH_IS_NONE=y +# CONFIG_SH_MATH_SUPPORT is not set +# CONFIG_SH_MATH_SUPPORT_64 is not set +# CONFIG_FEATURE_SH_EXTRA_QUIET is not set +# CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_FEATURE_SH_NOFORK is not set +# CONFIG_CTTYHACK is not set + +# +# System Logging Utilities +# +# CONFIG_SYSLOGD is not set +# CONFIG_FEATURE_ROTATE_LOGFILE is not set +# CONFIG_FEATURE_REMOTE_LOG is not set +# CONFIG_FEATURE_SYSLOGD_DUP is not set +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 +# CONFIG_FEATURE_IPC_SYSLOG is not set +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 +# CONFIG_LOGREAD is not set +# CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set +# CONFIG_KLOGD is not set +# CONFIG_LOGGER is not set diff --git a/busybox-1_37_0/configs/TEST_rh9_defconfig b/busybox-1_37_0/configs/TEST_rh9_defconfig new file mode 100644 index 000000000..4ac62b9da --- /dev/null +++ b/busybox-1_37_0/configs/TEST_rh9_defconfig @@ -0,0 +1,927 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.17.0.git +# Fri Apr 16 22:25:22 2010 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +# CONFIG_DESKTOP is not set +# CONFIG_EXTRA_COMPAT is not set +CONFIG_INCLUDE_SUSv2=y +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_SHOW_USAGE=y +CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_FEATURE_COMPRESS_USAGE=y +CONFIG_FEATURE_INSTALLER=y +CONFIG_LOCALE_SUPPORT=y +CONFIG_UNICODE_SUPPORT=y +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=63 +CONFIG_LAST_SUPPORTED_WCHAR=767 +# CONFIG_UNICODE_COMBINING_WCHARS is not set +# CONFIG_UNICODE_WIDE_WCHARS is not set +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +CONFIG_LONG_OPTS=y +CONFIG_FEATURE_DEVPTS=y +# CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_FEATURE_UTMP=y +CONFIG_FEATURE_WTMP=y +CONFIG_FEATURE_PIDFILE=y +CONFIG_FEATURE_SUID=y +CONFIG_FEATURE_SUID_CONFIG=y +CONFIG_FEATURE_SUID_CONFIG_QUIET=y +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +CONFIG_LFS=y +CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_WERROR is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options +# +# CONFIG_INSTALL_NO_USR is not set +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +CONFIG_FEATURE_FAST_TOP=y +# CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 +# CONFIG_FEATURE_EDITING_VI is not set +CONFIG_FEATURE_EDITING_HISTORY=15 +CONFIG_FEATURE_EDITING_SAVEHISTORY=y +CONFIG_FEATURE_TAB_COMPLETION=y +# CONFIG_FEATURE_USERNAME_COMPLETION is not set +# CONFIG_FEATURE_EDITING_FANCY_PROMPT is not set +# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_MONOTONIC_SYSCALL is not set +CONFIG_IOCTL_HEX2STR_ERROR=y +# CONFIG_FEATURE_HWIB is not set + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +CONFIG_AR=y +CONFIG_FEATURE_AR_LONG_FILENAMES=y +CONFIG_FEATURE_AR_CREATE=y +CONFIG_BUNZIP2=y +CONFIG_BZIP2=y +CONFIG_CPIO=y +CONFIG_FEATURE_CPIO_O=y +CONFIG_FEATURE_CPIO_P=y +# CONFIG_DPKG is not set +# CONFIG_DPKG_DEB is not set +CONFIG_GUNZIP=y +CONFIG_GZIP=y +CONFIG_FEATURE_GZIP_LONG_OPTIONS=y +CONFIG_LZOP=y +# CONFIG_LZOP_COMPR_HIGH is not set +CONFIG_RPM2CPIO=y +CONFIG_RPM=y +CONFIG_TAR=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +CONFIG_FEATURE_TAR_LONG_OPTIONS=y +CONFIG_FEATURE_TAR_UNAME_GNAME=y +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +# CONFIG_FEATURE_TAR_SELINUX is not set +CONFIG_UNCOMPRESS=y +CONFIG_UNLZMA=y +CONFIG_FEATURE_LZMA_FAST=y +CONFIG_UNZIP=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAL=y +CONFIG_CAT=y +CONFIG_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +CONFIG_FEATURE_CHOWN_LONG_OPTIONS=y +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_COMM=y +CONFIG_CP=y +CONFIG_FEATURE_CP_LONG_OPTIONS=y +CONFIG_CUT=y +CONFIG_DATE=y +CONFIG_FEATURE_DATE_ISOFMT=y +CONFIG_FEATURE_DATE_COMPAT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +CONFIG_DF=y +CONFIG_FEATURE_DF_FANCY=y +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +CONFIG_FEATURE_ENV_LONG_OPTIONS=y +CONFIG_EXPAND=y +CONFIG_FEATURE_EXPAND_LONG_OPTIONS=y +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FALSE=y +CONFIG_FOLD=y +CONFIG_FSYNC=y +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_HOSTID=y +CONFIG_ID=y +CONFIG_INSTALL=y +CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y +CONFIG_LN=y +CONFIG_LOGNAME=y +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +CONFIG_FEATURE_LS_COLOR=y +CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_MD5SUM=y +CONFIG_MKDIR=y +CONFIG_FEATURE_MKDIR_LONG_OPTIONS=y +CONFIG_MKFIFO=y +CONFIG_MKNOD=y +CONFIG_MV=y +CONFIG_FEATURE_MV_LONG_OPTIONS=y +CONFIG_NICE=y +CONFIG_NOHUP=y +CONFIG_OD=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +CONFIG_FEATURE_RMDIR_LONG_OPTIONS=y +CONFIG_SEQ=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_FEATURE_FLOAT_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +CONFIG_STAT=y +CONFIG_FEATURE_STAT_FORMAT=y +CONFIG_STTY=y +CONFIG_SUM=y +CONFIG_SYNC=y +CONFIG_TAC=y +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TEST=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TOUCH=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +CONFIG_TRUE=y +CONFIG_TTY=y +CONFIG_UNAME=y +CONFIG_UNEXPAND=y +CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS=y +CONFIG_UNIQ=y +CONFIG_USLEEP=y +CONFIG_UUDECODE=y +CONFIG_UUENCODE=y +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +CONFIG_WHO=y +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +CONFIG_CHVT=y +CONFIG_CLEAR=y +CONFIG_DEALLOCVT=y +CONFIG_DUMPKMAP=y +CONFIG_KBD_MODE=y +CONFIG_LOADFONT=y +CONFIG_LOADKMAP=y +CONFIG_OPENVT=y +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +CONFIG_SETCONSOLE=y +CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS=y +CONFIG_SETFONT=y +CONFIG_FEATURE_SETFONT_TEXTUAL_MAP=y +CONFIG_DEFAULT_SETFONT_DIR="" +CONFIG_SETKEYCODES=y +CONFIG_SETLOGCONS=y +CONFIG_SHOWKEY=y + +# +# Common options for loadfont and setfont +# +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set + +# +# Debian Utilities +# +CONFIG_MKTEMP=y +CONFIG_PIPE_PROGRESS=y +CONFIG_RUN_PARTS=y +CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y +CONFIG_FEATURE_RUN_PARTS_FANCY=y +CONFIG_START_STOP_DAEMON=y +CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y +CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS=y +CONFIG_WHICH=y + +# +# Editors +# +CONFIG_AWK=y +CONFIG_FEATURE_AWK_LIBM=y +CONFIG_CMP=y +CONFIG_DIFF=y +CONFIG_FEATURE_DIFF_LONG_OPTIONS=y +CONFIG_FEATURE_DIFF_DIR=y +CONFIG_ED=y +CONFIG_PATCH=y +CONFIG_SED=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=4096 +# CONFIG_FEATURE_VI_8BIT is not set +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_FEATURE_VI_READONLY=y +CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_FEATURE_VI_SET=y +CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +CONFIG_FEATURE_FIND_INUM=y +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +CONFIG_FEATURE_FIND_DELETE=y +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set +CONFIG_FEATURE_FIND_LINKS=y +CONFIG_GREP=y +CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +CONFIG_INIT=y +CONFIG_FEATURE_USE_INITTAB=y +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +CONFIG_FEATURE_INIT_SCTTY=y +CONFIG_FEATURE_INIT_SYSLOG=y +CONFIG_FEATURE_INIT_QUIET=y +CONFIG_FEATURE_INIT_COREDUMPS=y +CONFIG_LINUXRC=y +CONFIG_HALT=y +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +CONFIG_MESG=y + +# +# Login/Password Management Utilities +# +CONFIG_FEATURE_SHADOWPASSWDS=y +CONFIG_USE_BB_PWD_GRP=y +CONFIG_USE_BB_SHADOW=y +CONFIG_USE_BB_CRYPT=y +CONFIG_USE_BB_CRYPT_SHA=y +CONFIG_ADDGROUP=y +CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS=y +CONFIG_FEATURE_ADDUSER_TO_GROUP=y +CONFIG_DELGROUP=y +CONFIG_FEATURE_DEL_USER_FROM_GROUP=y +# CONFIG_FEATURE_CHECK_NAMES is not set +CONFIG_ADDUSER=y +CONFIG_FEATURE_ADDUSER_LONG_OPTIONS=y +CONFIG_FIRST_SYSTEM_ID=100 +CONFIG_LAST_SYSTEM_ID=999 +CONFIG_DELUSER=y +CONFIG_GETTY=y +CONFIG_LOGIN=y +# CONFIG_PAM is not set +CONFIG_LOGIN_SCRIPTS=y +CONFIG_FEATURE_NOLOGIN=y +CONFIG_FEATURE_SECURETTY=y +CONFIG_PASSWD=y +CONFIG_FEATURE_PASSWD_WEAK_CHECK=y +CONFIG_CRYPTPW=y +CONFIG_CHPASSWD=y +CONFIG_SU=y +CONFIG_FEATURE_SU_SYSLOG=y +CONFIG_FEATURE_SU_CHECKS_SHELLS=y +CONFIG_SULOGIN=y +CONFIG_VLOCK=y + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +CONFIG_FSCK=y +CONFIG_LSATTR=y + +# +# Linux Module Utilities +# +CONFIG_MODPROBE_SMALL=y +CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE=y +CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y +# CONFIG_INSMOD is not set +# CONFIG_RMMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +CONFIG_DEFAULT_MODULES_DIR="/lib/modules" +CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" + +# +# Linux System Utilities +# +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +CONFIG_BLKID=y +CONFIG_DMESG=y +CONFIG_FEATURE_DMESG_PRETTY=y +CONFIG_FBSET=y +CONFIG_FEATURE_FBSET_FANCY=y +CONFIG_FEATURE_FBSET_READMODE=y +CONFIG_FDFLUSH=y +CONFIG_FDFORMAT=y +CONFIG_FDISK=y +CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +CONFIG_FEATURE_FDISK_WRITABLE=y +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +CONFIG_FEATURE_FDISK_ADVANCED=y +CONFIG_FINDFS=y +# CONFIG_FLOCK is not set +CONFIG_FREERAMDISK=y +CONFIG_FSCK_MINIX=y +# CONFIG_MKFS_EXT2 is not set +CONFIG_MKFS_MINIX=y + +# +# Minix filesystem support +# +CONFIG_FEATURE_MINIX2=y +# CONFIG_MKFS_REISER is not set +CONFIG_MKFS_VFAT=y +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +CONFIG_FEATURE_HEXDUMP_REVERSE=y +CONFIG_HD=y +CONFIG_HWCLOCK=y +CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS=y +CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS=y +CONFIG_IPCRM=y +CONFIG_IPCS=y +CONFIG_LOSETUP=y +CONFIG_LSPCI=y +CONFIG_LSUSB=y +CONFIG_MDEV=y +CONFIG_FEATURE_MDEV_CONF=y +CONFIG_FEATURE_MDEV_RENAME=y +CONFIG_FEATURE_MDEV_RENAME_REGEXP=y +CONFIG_FEATURE_MDEV_EXEC=y +CONFIG_FEATURE_MDEV_LOAD_FIRMWARE=y +CONFIG_MKSWAP=y +CONFIG_FEATURE_MKSWAP_UUID=y +CONFIG_MORE=y +CONFIG_VOLUMEID=y +CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_FEATURE_VOLUMEID_BTRFS=y +CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_FEATURE_VOLUMEID_HFS=y +CONFIG_FEATURE_VOLUMEID_JFS=y +CONFIG_FEATURE_VOLUMEID_XFS=y +CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_FEATURE_VOLUMEID_UDF=y +CONFIG_FEATURE_VOLUMEID_LUKS=y +CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +CONFIG_FEATURE_VOLUMEID_CRAMFS=y +CONFIG_FEATURE_VOLUMEID_ROMFS=y +CONFIG_FEATURE_VOLUMEID_SYSV=y +CONFIG_FEATURE_VOLUMEID_OCFS2=y +CONFIG_FEATURE_VOLUMEID_LINUXRAID=y +CONFIG_MOUNT=y +CONFIG_FEATURE_MOUNT_FAKE=y +CONFIG_FEATURE_MOUNT_VERBOSE=y +# CONFIG_FEATURE_MOUNT_HELPERS is not set +CONFIG_FEATURE_MOUNT_LABEL=y +CONFIG_FEATURE_MOUNT_NFS=y +CONFIG_FEATURE_MOUNT_CIFS=y +CONFIG_FEATURE_MOUNT_FLAGS=y +CONFIG_FEATURE_MOUNT_FSTAB=y +CONFIG_PIVOT_ROOT=y +CONFIG_RDATE=y +CONFIG_RDEV=y +CONFIG_READPROFILE=y +CONFIG_RTCWAKE=y +CONFIG_SCRIPT=y +CONFIG_SCRIPTREPLAY=y +CONFIG_SETARCH=y +CONFIG_SWAPONOFF=y +CONFIG_FEATURE_SWAPON_PRI=y +CONFIG_SWITCH_ROOT=y +CONFIG_UMOUNT=y +CONFIG_FEATURE_UMOUNT_ALL=y + +# +# Common options for mount/umount +# +CONFIG_FEATURE_MOUNT_LOOP=y +# CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set +# CONFIG_FEATURE_MTAB_SUPPORT is not set + +# +# Miscellaneous Utilities +# +CONFIG_ADJTIMEX=y +# CONFIG_BBCONFIG is not set +CONFIG_BEEP=y +CONFIG_FEATURE_BEEP_FREQ=4000 +CONFIG_FEATURE_BEEP_LENGTH_MS=30 +CONFIG_CHAT=y +CONFIG_FEATURE_CHAT_NOFAIL=y +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +CONFIG_FEATURE_CHAT_IMPLICIT_CR=y +CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y +CONFIG_FEATURE_CHAT_SEND_ESCAPES=y +CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y +CONFIG_FEATURE_CHAT_CLR_ABORT=y +CONFIG_CHRT=y +CONFIG_CROND=y +CONFIG_FEATURE_CROND_D=y +CONFIG_FEATURE_CROND_CALL_SENDMAIL=y +CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_CRONTAB=y +CONFIG_DC=y +CONFIG_FEATURE_DC_LIBM=y +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +CONFIG_DEVMEM=y +CONFIG_EJECT=y +CONFIG_FEATURE_EJECT_SCSI=y +CONFIG_FBSPLASH=y +# CONFIG_FLASHCP is not set +# CONFIG_FLASH_LOCK is not set +# CONFIG_FLASH_UNLOCK is not set +# CONFIG_FLASH_ERASEALL is not set +# CONFIG_IONICE is not set +# CONFIG_INOTIFYD is not set +CONFIG_LAST=y +# CONFIG_FEATURE_LAST_SMALL is not set +CONFIG_FEATURE_LAST_FANCY=y +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +CONFIG_FEATURE_LESS_MARKS=y +CONFIG_FEATURE_LESS_REGEXP=y +CONFIG_FEATURE_LESS_WINCH=y +CONFIG_FEATURE_LESS_DASHCMD=y +CONFIG_FEATURE_LESS_LINENUMS=y +CONFIG_HDPARM=y +CONFIG_FEATURE_HDPARM_GET_IDENTITY=y +CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET=y +CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y +CONFIG_MAKEDEVS=y +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +CONFIG_FEATURE_MAKEDEVS_TABLE=y +CONFIG_MAN=y +CONFIG_MICROCOM=y +CONFIG_MOUNTPOINT=y +CONFIG_MT=y +CONFIG_RAIDAUTORUN=y +# CONFIG_READAHEAD is not set +CONFIG_RUNLEVEL=y +CONFIG_RX=y +CONFIG_SETSID=y +CONFIG_STRINGS=y +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +CONFIG_TIME=y +CONFIG_TIMEOUT=y +CONFIG_TTYSIZE=y +CONFIG_VOLNAME=y +CONFIG_WALL=y +# CONFIG_WATCHDOG is not set + +# +# Networking Utilities +# +CONFIG_FEATURE_IPV6=y +# CONFIG_FEATURE_UNIX_LOCAL is not set +CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +CONFIG_ARP=y +CONFIG_ARPING=y +CONFIG_BRCTL=y +CONFIG_FEATURE_BRCTL_FANCY=y +CONFIG_FEATURE_BRCTL_SHOW=y +CONFIG_DNSD=y +CONFIG_ETHER_WAKE=y +CONFIG_FAKEIDENTD=y +CONFIG_FTPD=y +CONFIG_FEATURE_FTP_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FTPGET=y +CONFIG_FTPPUT=y +CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS=y +CONFIG_HOSTNAME=y +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_RANGES=y +CONFIG_FEATURE_HTTPD_USE_SENDFILE=y +CONFIG_FEATURE_HTTPD_SETUID=y +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +CONFIG_FEATURE_HTTPD_AUTH_MD5=y +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_IFCONFIG=y +CONFIG_FEATURE_IFCONFIG_STATUS=y +CONFIG_FEATURE_IFCONFIG_SLIP=y +CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y +CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +# CONFIG_IFENSLAVE is not set +CONFIG_IFPLUGD=y +CONFIG_IFUPDOWN=y +CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate" +CONFIG_FEATURE_IFUPDOWN_IP=y +CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN=y +# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set +CONFIG_FEATURE_IFUPDOWN_IPV4=y +CONFIG_FEATURE_IFUPDOWN_IPV6=y +CONFIG_FEATURE_IFUPDOWN_MAPPING=y +# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set +CONFIG_INETD=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN=y +CONFIG_FEATURE_INETD_RPC=y +CONFIG_IP=y +CONFIG_FEATURE_IP_ADDRESS=y +CONFIG_FEATURE_IP_LINK=y +CONFIG_FEATURE_IP_ROUTE=y +CONFIG_FEATURE_IP_TUNNEL=y +CONFIG_FEATURE_IP_RULE=y +CONFIG_FEATURE_IP_SHORT_FORMS=y +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +CONFIG_IPADDR=y +CONFIG_IPLINK=y +CONFIG_IPROUTE=y +CONFIG_IPTUNNEL=y +CONFIG_IPRULE=y +CONFIG_IPCALC=y +CONFIG_FEATURE_IPCALC_FANCY=y +CONFIG_FEATURE_IPCALC_LONG_OPTIONS=y +CONFIG_NAMEIF=y +CONFIG_FEATURE_NAMEIF_EXTENDED=y +CONFIG_NC=y +CONFIG_NC_SERVER=y +CONFIG_NC_EXTRA=y +CONFIG_NETSTAT=y +CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_FEATURE_NETSTAT_PRG=y +CONFIG_NSLOOKUP=y +CONFIG_NTPD=y +CONFIG_FEATURE_NTPD_SERVER=y +CONFIG_PING=y +CONFIG_PING6=y +CONFIG_FEATURE_FANCY_PING=y +CONFIG_PSCAN=y +CONFIG_ROUTE=y +CONFIG_SLATTACH=y +CONFIG_TCPSVD=y +CONFIG_TELNET=y +CONFIG_FEATURE_TELNET_TTYPE=y +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +CONFIG_TELNETD=y +CONFIG_FEATURE_TELNETD_STANDALONE=y +CONFIG_FEATURE_TELNETD_INETD_WAIT=y +CONFIG_TFTP=y +CONFIG_TFTPD=y +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +CONFIG_FEATURE_TFTP_BLOCKSIZE=y +CONFIG_FEATURE_TFTP_PROGRESS_BAR=y +# CONFIG_TFTP_DEBUG is not set +CONFIG_TRACEROUTE=y +CONFIG_TRACEROUTE6=y +CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +CONFIG_TUNCTL=y +CONFIG_FEATURE_TUNCTL_UG=y +CONFIG_UDHCPD=y +CONFIG_DHCPRELAY=y +CONFIG_DUMPLEASES=y +CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY=y +CONFIG_DHCPD_LEASES_FILE="/var/lib/misc/udhcpd.leases" +CONFIG_UDHCPC=y +CONFIG_FEATURE_UDHCPC_ARPING=y +CONFIG_FEATURE_UDHCP_PORT=y +CONFIG_UDHCP_DEBUG=9 +CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n" +CONFIG_UDPSVD=y +CONFIG_VCONFIG=y +CONFIG_WGET=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_FEATURE_WGET_LONG_OPTIONS=y +CONFIG_FEATURE_WGET_TIMEOUT=y +CONFIG_ZCIP=y + +# +# Print Utilities +# +CONFIG_LPD=y +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +CONFIG_MAKEMIME=y +CONFIG_FEATURE_MIME_CHARSET="us-ascii" +CONFIG_POPMAILDIR=y +CONFIG_FEATURE_POPMAILDIR_DELIVERY=y +CONFIG_REFORMIME=y +CONFIG_FEATURE_REFORMIME_COMPAT=y +CONFIG_SENDMAIL=y + +# +# Process Utilities +# +CONFIG_FREE=y +CONFIG_FUSER=y +CONFIG_KILL=y +CONFIG_KILLALL=y +CONFIG_KILLALL5=y +CONFIG_NMETER=y +CONFIG_PGREP=y +CONFIG_PIDOF=y +CONFIG_FEATURE_PIDOF_SINGLE=y +CONFIG_FEATURE_PIDOF_OMIT=y +CONFIG_PKILL=y +CONFIG_PS=y +CONFIG_FEATURE_PS_WIDE=y +# CONFIG_FEATURE_PS_TIME is not set +# CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS is not set +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +CONFIG_RENICE=y +CONFIG_BB_SYSCTL=y +CONFIG_TOP=y +CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +CONFIG_FEATURE_TOP_SMP_CPU=y +CONFIG_FEATURE_TOP_DECIMALS=y +CONFIG_FEATURE_TOP_SMP_PROCESS=y +CONFIG_FEATURE_TOPMEM=y +CONFIG_FEATURE_SHOW_THREADS=y +CONFIG_UPTIME=y +CONFIG_WATCH=y + +# +# Runit Utilities +# +CONFIG_RUNSV=y +CONFIG_RUNSVDIR=y +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +CONFIG_SV=y +CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service" +CONFIG_SVLOGD=y +CONFIG_CHPST=y +CONFIG_SETUIDGID=y +CONFIG_ENVUIDGID=y +CONFIG_ENVDIR=y +CONFIG_SOFTLIMIT=y +# CONFIG_CHCON is not set +# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RESTORECON is not set +# CONFIG_RUNCON is not set +# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_SETSEBOOL is not set +# CONFIG_SESTATUS is not set + +# +# Shells +# +CONFIG_FEATURE_SH_IS_ASH=y +# CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_FEATURE_SH_IS_NONE is not set +CONFIG_ASH=y +CONFIG_ASH_BASH_COMPAT=y +CONFIG_ASH_JOB_CONTROL=y +CONFIG_ASH_ALIAS=y +CONFIG_ASH_GETOPTS=y +CONFIG_ASH_ECHO=y +CONFIG_ASH_PRINTF=y +CONFIG_ASH_TEST=y +CONFIG_ASH_CMDCMD=y +# CONFIG_ASH_MAIL is not set +CONFIG_ASH_OPTIMIZE_FOR_SIZE=y +CONFIG_ASH_RANDOM_SUPPORT=y +CONFIG_ASH_EXPAND_PRMT=y +CONFIG_HUSH=y +CONFIG_HUSH_BASH_COMPAT=y +CONFIG_HUSH_HELP=y +CONFIG_HUSH_INTERACTIVE=y +CONFIG_HUSH_JOB=y +CONFIG_HUSH_TICK=y +CONFIG_HUSH_IF=y +CONFIG_HUSH_LOOPS=y +CONFIG_HUSH_CASE=y +CONFIG_HUSH_FUNCTIONS=y +CONFIG_HUSH_LOCAL=y +CONFIG_HUSH_EXPORT_N=y +CONFIG_HUSH_RANDOM_SUPPORT=y +CONFIG_SH_MATH_SUPPORT=y +CONFIG_SH_MATH_SUPPORT_64=y +CONFIG_FEATURE_SH_EXTRA_QUIET=y +# CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_FEATURE_SH_NOFORK is not set +CONFIG_CTTYHACK=y + +# +# System Logging Utilities +# +CONFIG_SYSLOGD=y +CONFIG_FEATURE_ROTATE_LOGFILE=y +CONFIG_FEATURE_REMOTE_LOG=y +CONFIG_FEATURE_SYSLOGD_DUP=y +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=256 +CONFIG_FEATURE_IPC_SYSLOG=y +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16 +CONFIG_LOGREAD=y +CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING=y +CONFIG_KLOGD=y +CONFIG_LOGGER=y diff --git a/busybox-1_37_0/configs/android2_defconfig b/busybox-1_37_0/configs/android2_defconfig new file mode 100644 index 000000000..d4b8f1616 --- /dev/null +++ b/busybox-1_37_0/configs/android2_defconfig @@ -0,0 +1,981 @@ +# Run "make android2_defconfig", then "make". +# +# Tested with the standalone toolchain from ndk r6: +# android-ndk-r6/build/tools/make-standalone-toolchain.sh --platform=android-8 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +# CONFIG_DESKTOP is not set +# CONFIG_EXTRA_COMPAT is not set +# CONFIG_INCLUDE_SUSv2 is not set +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +# CONFIG_SHOW_USAGE is not set +# CONFIG_FEATURE_VERBOSE_USAGE is not set +# CONFIG_FEATURE_COMPRESS_USAGE is not set +# CONFIG_FEATURE_INSTALLER is not set +# CONFIG_INSTALL_NO_USR is not set +# CONFIG_LOCALE_SUPPORT is not set +# CONFIG_UNICODE_SUPPORT is not set +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=0 +CONFIG_LAST_SUPPORTED_WCHAR=0 +# CONFIG_UNICODE_COMBINING_WCHARS is not set +# CONFIG_UNICODE_WIDE_WCHARS is not set +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +# CONFIG_UNICODE_PRESERVE_BROKEN is not set +# CONFIG_LONG_OPTS is not set +# CONFIG_FEATURE_DEVPTS is not set +# CONFIG_FEATURE_CLEAN_UP is not set +# CONFIG_FEATURE_UTMP is not set +# CONFIG_FEATURE_WTMP is not set +# CONFIG_FEATURE_PIDFILE is not set +# CONFIG_FEATURE_SUID is not set +# CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_FEATURE_SUID_CONFIG_QUIET is not set +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +# CONFIG_LFS is not set +CONFIG_CROSS_COMPILER_PREFIX="arm-linux-androideabi-" +CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_WERROR is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options ("make install" behavior) +# +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +# CONFIG_FEATURE_RTMINMAX is not set +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +# CONFIG_FEATURE_FAST_TOP is not set +# CONFIG_FEATURE_ETC_NETWORKS is not set +# CONFIG_FEATURE_EDITING is not set +CONFIG_FEATURE_EDITING_MAX_LEN=0 +# CONFIG_FEATURE_EDITING_VI is not set +CONFIG_FEATURE_EDITING_HISTORY=0 +# CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +# CONFIG_FEATURE_TAB_COMPLETION is not set +# CONFIG_FEATURE_USERNAME_COMPLETION is not set +# CONFIG_FEATURE_EDITING_FANCY_PROMPT is not set +# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +# CONFIG_FEATURE_NON_POSIX_CP is not set +# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_FEATURE_SKIP_ROOTFS is not set +# CONFIG_MONOTONIC_SYSCALL is not set +# CONFIG_IOCTL_HEX2STR_ERROR is not set +# CONFIG_FEATURE_HWIB is not set + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_XZ=y +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +CONFIG_AR=y +CONFIG_FEATURE_AR_LONG_FILENAMES=y +CONFIG_FEATURE_AR_CREATE=y +CONFIG_BUNZIP2=y +CONFIG_BZIP2=y +CONFIG_CPIO=y +CONFIG_FEATURE_CPIO_O=y +CONFIG_FEATURE_CPIO_P=y +CONFIG_DPKG=y +CONFIG_DPKG_DEB=y +CONFIG_GUNZIP=y +CONFIG_GZIP=y +# CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set +CONFIG_LZOP=y +CONFIG_LZOP_COMPR_HIGH=y +CONFIG_RPM2CPIO=y +CONFIG_RPM=y +CONFIG_TAR=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +# CONFIG_FEATURE_TAR_LONG_OPTIONS is not set +# CONFIG_FEATURE_TAR_TO_COMMAND is not set +CONFIG_FEATURE_TAR_UNAME_GNAME=y +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +# CONFIG_FEATURE_TAR_SELINUX is not set +CONFIG_UNCOMPRESS=y +CONFIG_UNLZMA=y +CONFIG_FEATURE_LZMA_FAST=y +CONFIG_LZMA=y +CONFIG_UNXZ=y +CONFIG_XZ=y +CONFIG_UNZIP=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAT=y +# CONFIG_DATE is not set +# CONFIG_FEATURE_DATE_ISOFMT is not set +# CONFIG_FEATURE_DATE_NANO is not set +# CONFIG_FEATURE_DATE_COMPAT is not set +# CONFIG_ID is not set +# CONFIG_GROUPS is not set +CONFIG_TEST=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TOUCH=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +CONFIG_BASE64=y +CONFIG_CAL=y +CONFIG_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +# CONFIG_FEATURE_CHOWN_LONG_OPTIONS is not set +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_COMM=y +CONFIG_CP=y +# CONFIG_FEATURE_CP_LONG_OPTIONS is not set +CONFIG_CUT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +# CONFIG_DF is not set +# CONFIG_FEATURE_DF_FANCY is not set +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +# CONFIG_ENV is not set +# CONFIG_FEATURE_ENV_LONG_OPTIONS is not set +CONFIG_EXPAND=y +# CONFIG_FEATURE_EXPAND_LONG_OPTIONS is not set +# CONFIG_EXPR is not set +# CONFIG_EXPR_MATH_SUPPORT_64 is not set +CONFIG_FALSE=y +CONFIG_FOLD=y +# CONFIG_FSYNC is not set +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +# CONFIG_HOSTID is not set +CONFIG_INSTALL=y +# CONFIG_FEATURE_INSTALL_LONG_OPTIONS is not set +CONFIG_LN=y +# CONFIG_LOGNAME is not set +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +# CONFIG_FEATURE_LS_COLOR is not set +# CONFIG_FEATURE_LS_COLOR_IS_DEFAULT is not set +CONFIG_MD5SUM=y +CONFIG_MKDIR=y +# CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set +CONFIG_MKFIFO=y +CONFIG_MKNOD=y +CONFIG_MV=y +# CONFIG_FEATURE_MV_LONG_OPTIONS is not set +CONFIG_NICE=y +CONFIG_NOHUP=y +CONFIG_OD=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +# CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_SEQ=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_FEATURE_FLOAT_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +# CONFIG_STAT is not set +# CONFIG_FEATURE_STAT_FORMAT is not set +CONFIG_STTY=y +CONFIG_SUM=y +CONFIG_SYNC=y +CONFIG_TAC=y +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TRUE=y +# CONFIG_TTY is not set +CONFIG_UNAME=y +CONFIG_UNEXPAND=y +# CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS is not set +CONFIG_UNIQ=y +# CONFIG_USLEEP is not set +CONFIG_UUDECODE=y +CONFIG_UUENCODE=y +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +# CONFIG_WHO is not set +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +CONFIG_CHVT=y +CONFIG_FGCONSOLE=y +CONFIG_CLEAR=y +CONFIG_DEALLOCVT=y +CONFIG_DUMPKMAP=y +# CONFIG_KBD_MODE is not set +# CONFIG_LOADFONT is not set +CONFIG_LOADKMAP=y +CONFIG_OPENVT=y +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +CONFIG_SETCONSOLE=y +# CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set +# CONFIG_SETFONT is not set +# CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set +CONFIG_DEFAULT_SETFONT_DIR="" +CONFIG_SETKEYCODES=y +CONFIG_SETLOGCONS=y +CONFIG_SHOWKEY=y +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set + +# +# Debian Utilities +# +CONFIG_MKTEMP=y +CONFIG_PIPE_PROGRESS=y +CONFIG_RUN_PARTS=y +# CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS is not set +CONFIG_FEATURE_RUN_PARTS_FANCY=y +CONFIG_START_STOP_DAEMON=y +CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y +# CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +CONFIG_WHICH=y + +# +# Editors +# +CONFIG_PATCH=y +# CONFIG_VI is not set +CONFIG_FEATURE_VI_MAX_LEN=0 +# CONFIG_FEATURE_VI_8BIT is not set +# CONFIG_FEATURE_VI_COLON is not set +# CONFIG_FEATURE_VI_YANKMARK is not set +# CONFIG_FEATURE_VI_SEARCH is not set +# CONFIG_FEATURE_VI_REGEX_SEARCH is not set +# CONFIG_FEATURE_VI_USE_SIGNALS is not set +# CONFIG_FEATURE_VI_DOT_CMD is not set +# CONFIG_FEATURE_VI_READONLY is not set +# CONFIG_FEATURE_VI_SETOPTS is not set +# CONFIG_FEATURE_VI_SET is not set +# CONFIG_FEATURE_VI_WIN_RESIZE is not set +# CONFIG_FEATURE_VI_ASK_TERMINAL is not set +# CONFIG_AWK is not set +# CONFIG_FEATURE_AWK_LIBM is not set +CONFIG_CMP=y +CONFIG_DIFF=y +# CONFIG_FEATURE_DIFF_LONG_OPTIONS is not set +CONFIG_FEATURE_DIFF_DIR=y +# CONFIG_ED is not set +# CONFIG_SED is not set +# CONFIG_FEATURE_ALLOW_EXEC is not set + +# +# Finding Utilities +# +# CONFIG_FIND is not set +# CONFIG_FEATURE_FIND_PRINT0 is not set +# CONFIG_FEATURE_FIND_MTIME is not set +# CONFIG_FEATURE_FIND_MMIN is not set +# CONFIG_FEATURE_FIND_PERM is not set +# CONFIG_FEATURE_FIND_TYPE is not set +# CONFIG_FEATURE_FIND_XDEV is not set +# CONFIG_FEATURE_FIND_MAXDEPTH is not set +# CONFIG_FEATURE_FIND_NEWER is not set +# CONFIG_FEATURE_FIND_INUM is not set +# CONFIG_FEATURE_FIND_EXEC is not set +# CONFIG_FEATURE_FIND_USER is not set +# CONFIG_FEATURE_FIND_GROUP is not set +# CONFIG_FEATURE_FIND_NOT is not set +# CONFIG_FEATURE_FIND_DEPTH is not set +# CONFIG_FEATURE_FIND_PAREN is not set +# CONFIG_FEATURE_FIND_SIZE is not set +# CONFIG_FEATURE_FIND_PRUNE is not set +# CONFIG_FEATURE_FIND_DELETE is not set +# CONFIG_FEATURE_FIND_PATH is not set +# CONFIG_FEATURE_FIND_REGEX is not set +# CONFIG_FEATURE_FIND_CONTEXT is not set +# CONFIG_FEATURE_FIND_LINKS is not set +# CONFIG_GREP is not set +# CONFIG_FEATURE_GREP_EGREP_ALIAS is not set +# CONFIG_FEATURE_GREP_FGREP_ALIAS is not set +# CONFIG_FEATURE_GREP_CONTEXT is not set +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +# CONFIG_BOOTCHARTD is not set +# CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set +# CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE is not set +CONFIG_HALT=y +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +CONFIG_INIT=y +CONFIG_FEATURE_USE_INITTAB=y +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +CONFIG_FEATURE_INIT_SCTTY=y +CONFIG_FEATURE_INIT_SYSLOG=y +CONFIG_FEATURE_INIT_QUIET=y +CONFIG_FEATURE_INIT_COREDUMPS=y +CONFIG_LINUXRC=y +CONFIG_INIT_TERMINAL_TYPE="linux" +CONFIG_MESG=y +CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP=y + +# +# Login/Password Management Utilities +# +# CONFIG_ADD_SHELL is not set +# CONFIG_REMOVE_SHELL is not set +# CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_USE_BB_SHADOW is not set +# CONFIG_USE_BB_CRYPT is not set +# CONFIG_USE_BB_CRYPT_SHA is not set +# CONFIG_ADDUSER is not set +# CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set +# CONFIG_FEATURE_CHECK_NAMES is not set +CONFIG_FIRST_SYSTEM_ID=0 +CONFIG_LAST_SYSTEM_ID=0 +# CONFIG_ADDGROUP is not set +# CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set +# CONFIG_FEATURE_ADDUSER_TO_GROUP is not set +# CONFIG_DELUSER is not set +# CONFIG_DELGROUP is not set +# CONFIG_FEATURE_DEL_USER_FROM_GROUP is not set +# CONFIG_GETTY is not set +# CONFIG_LOGIN is not set +# CONFIG_PAM is not set +# CONFIG_LOGIN_SCRIPTS is not set +# CONFIG_FEATURE_NOLOGIN is not set +# CONFIG_FEATURE_SECURETTY is not set +# CONFIG_PASSWD is not set +# CONFIG_FEATURE_PASSWD_WEAK_CHECK is not set +# CONFIG_CRYPTPW is not set +# CONFIG_CHPASSWD is not set +# CONFIG_SU is not set +# CONFIG_FEATURE_SU_SYSLOG is not set +# CONFIG_FEATURE_SU_CHECKS_SHELLS is not set +# CONFIG_SULOGIN is not set +# CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +# CONFIG_FSCK is not set +CONFIG_LSATTR=y +CONFIG_TUNE2FS=y + +# +# Linux Module Utilities +# +CONFIG_MODINFO=y +CONFIG_MODPROBE_SMALL=y +CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE=y +CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y +# CONFIG_INSMOD is not set +# CONFIG_RMMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +CONFIG_DEFAULT_MODULES_DIR="/lib/modules" +CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" + +# +# Linux System Utilities +# +CONFIG_BLOCKDEV=y +CONFIG_REV=y +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +CONFIG_BLKID=y +# CONFIG_FEATURE_BLKID_TYPE is not set +CONFIG_DMESG=y +CONFIG_FEATURE_DMESG_PRETTY=y +CONFIG_FBSET=y +CONFIG_FEATURE_FBSET_FANCY=y +CONFIG_FEATURE_FBSET_READMODE=y +CONFIG_FDFLUSH=y +CONFIG_FDFORMAT=y +CONFIG_FDISK=y +CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +CONFIG_FEATURE_FDISK_WRITABLE=y +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +# CONFIG_FEATURE_GPT_LABEL is not set +CONFIG_FEATURE_FDISK_ADVANCED=y +CONFIG_FINDFS=y +CONFIG_FLOCK=y +CONFIG_FREERAMDISK=y +# CONFIG_FSCK_MINIX is not set +# CONFIG_MKFS_EXT2 is not set +# CONFIG_MKFS_MINIX is not set +# CONFIG_FEATURE_MINIX2 is not set +# CONFIG_MKFS_REISER is not set +# CONFIG_MKFS_VFAT is not set +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +CONFIG_FEATURE_HEXDUMP_REVERSE=y +CONFIG_HD=y +# CONFIG_HWCLOCK is not set +# CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_IPCRM is not set +# CONFIG_IPCS is not set +CONFIG_LOSETUP=y +CONFIG_LSPCI=y +CONFIG_LSUSB=y +# CONFIG_MDEV is not set +# CONFIG_FEATURE_MDEV_CONF is not set +# CONFIG_FEATURE_MDEV_RENAME is not set +# CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set +# CONFIG_FEATURE_MDEV_EXEC is not set +# CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set +CONFIG_MKSWAP=y +CONFIG_FEATURE_MKSWAP_UUID=y +CONFIG_MORE=y +# CONFIG_MOUNT is not set +# CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_FEATURE_MOUNT_LABEL is not set +# CONFIG_FEATURE_MOUNT_NFS is not set +# CONFIG_FEATURE_MOUNT_CIFS is not set +# CONFIG_FEATURE_MOUNT_FLAGS is not set +# CONFIG_FEATURE_MOUNT_FSTAB is not set +# CONFIG_PIVOT_ROOT is not set +# CONFIG_RDATE is not set +CONFIG_RDEV=y +CONFIG_READPROFILE=y +CONFIG_RTCWAKE=y +CONFIG_SCRIPT=y +CONFIG_SCRIPTREPLAY=y +# CONFIG_SETARCH is not set +# CONFIG_SWAPONOFF is not set +# CONFIG_FEATURE_SWAPON_PRI is not set +# CONFIG_SWITCH_ROOT is not set +# CONFIG_UMOUNT is not set +# CONFIG_FEATURE_UMOUNT_ALL is not set +# CONFIG_FEATURE_MOUNT_LOOP is not set +# CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set +# CONFIG_FEATURE_MTAB_SUPPORT is not set +CONFIG_VOLUMEID=y + +# +# Filesystem/Volume identification +# +CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_FEATURE_VOLUMEID_BTRFS=y +CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_FEATURE_VOLUMEID_HFS=y +CONFIG_FEATURE_VOLUMEID_JFS=y +CONFIG_FEATURE_VOLUMEID_XFS=y +CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_FEATURE_VOLUMEID_UDF=y +CONFIG_FEATURE_VOLUMEID_LUKS=y +CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +CONFIG_FEATURE_VOLUMEID_CRAMFS=y +CONFIG_FEATURE_VOLUMEID_ROMFS=y +CONFIG_FEATURE_VOLUMEID_SYSV=y +CONFIG_FEATURE_VOLUMEID_OCFS2=y +CONFIG_FEATURE_VOLUMEID_LINUXRAID=y + +# +# Miscellaneous Utilities +# +# CONFIG_CONSPY is not set +# CONFIG_NANDWRITE is not set +CONFIG_NANDDUMP=y +CONFIG_SETSERIAL=y +# CONFIG_UBIATTACH is not set +# CONFIG_UBIDETACH is not set +# CONFIG_UBIMKVOL is not set +# CONFIG_UBIRMVOL is not set +# CONFIG_UBIRSVOL is not set +# CONFIG_UBIUPDATEVOL is not set +# CONFIG_ADJTIMEX is not set +# CONFIG_BBCONFIG is not set +# CONFIG_FEATURE_COMPRESS_BBCONFIG is not set +CONFIG_BEEP=y +CONFIG_FEATURE_BEEP_FREQ=4000 +CONFIG_FEATURE_BEEP_LENGTH_MS=30 +CONFIG_CHAT=y +CONFIG_FEATURE_CHAT_NOFAIL=y +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +CONFIG_FEATURE_CHAT_IMPLICIT_CR=y +CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y +CONFIG_FEATURE_CHAT_SEND_ESCAPES=y +CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y +CONFIG_FEATURE_CHAT_CLR_ABORT=y +CONFIG_CHRT=y +# CONFIG_CROND is not set +# CONFIG_FEATURE_CROND_D is not set +# CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set +CONFIG_FEATURE_CROND_DIR="" +# CONFIG_CRONTAB is not set +CONFIG_DC=y +CONFIG_FEATURE_DC_LIBM=y +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +CONFIG_DEVMEM=y +# CONFIG_EJECT is not set +# CONFIG_FEATURE_EJECT_SCSI is not set +CONFIG_FBSPLASH=y +CONFIG_FLASHCP=y +CONFIG_FLASH_LOCK=y +CONFIG_FLASH_UNLOCK=y +# CONFIG_FLASH_ERASEALL is not set +# CONFIG_IONICE is not set +CONFIG_INOTIFYD=y +# CONFIG_LAST is not set +# CONFIG_FEATURE_LAST_SMALL is not set +# CONFIG_FEATURE_LAST_FANCY is not set +# CONFIG_LESS is not set +CONFIG_FEATURE_LESS_MAXLINES=0 +# CONFIG_FEATURE_LESS_BRACKETS is not set +# CONFIG_FEATURE_LESS_FLAGS is not set +# CONFIG_FEATURE_LESS_MARKS is not set +# CONFIG_FEATURE_LESS_REGEXP is not set +# CONFIG_FEATURE_LESS_WINCH is not set +# CONFIG_FEATURE_LESS_DASHCMD is not set +# CONFIG_FEATURE_LESS_LINENUMS is not set +CONFIG_HDPARM=y +CONFIG_FEATURE_HDPARM_GET_IDENTITY=y +CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET=y +CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y +CONFIG_MAKEDEVS=y +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +CONFIG_FEATURE_MAKEDEVS_TABLE=y +CONFIG_MAN=y +# CONFIG_MICROCOM is not set +# CONFIG_MOUNTPOINT is not set +# CONFIG_MT is not set +CONFIG_RAIDAUTORUN=y +# CONFIG_READAHEAD is not set +# CONFIG_RFKILL is not set +# CONFIG_RUNLEVEL is not set +CONFIG_RX=y +CONFIG_SETSID=y +CONFIG_STRINGS=y +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +CONFIG_TIME=y +CONFIG_TIMEOUT=y +CONFIG_TTYSIZE=y +CONFIG_VOLNAME=y +# CONFIG_WALL is not set +# CONFIG_WATCHDOG is not set + +# +# Networking Utilities +# +# CONFIG_NAMEIF is not set +# CONFIG_FEATURE_NAMEIF_EXTENDED is not set +CONFIG_NBDCLIENT=y +CONFIG_NC=y +CONFIG_NC_SERVER=y +CONFIG_NC_EXTRA=y +# CONFIG_NC_110_COMPAT is not set +# CONFIG_PING is not set +# CONFIG_PING6 is not set +# CONFIG_FEATURE_FANCY_PING is not set +CONFIG_WHOIS=y +# CONFIG_FEATURE_IPV6 is not set +# CONFIG_FEATURE_UNIX_LOCAL is not set +# CONFIG_FEATURE_PREFER_IPV4_ADDRESS is not set +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +CONFIG_ARP=y +# CONFIG_ARPING is not set +# CONFIG_BRCTL is not set +# CONFIG_FEATURE_BRCTL_FANCY is not set +# CONFIG_FEATURE_BRCTL_SHOW is not set +CONFIG_DNSD=y +# CONFIG_ETHER_WAKE is not set +CONFIG_FAKEIDENTD=y +CONFIG_FTPD=y +CONFIG_FEATURE_FTP_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FTPGET=y +CONFIG_FTPPUT=y +# CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set +# CONFIG_HOSTNAME is not set +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_RANGES=y +CONFIG_FEATURE_HTTPD_USE_SENDFILE=y +CONFIG_FEATURE_HTTPD_SETUID=y +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +# CONFIG_FEATURE_HTTPD_AUTH_MD5 is not set +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_FEATURE_HTTPD_GZIP=y +CONFIG_IFCONFIG=y +CONFIG_FEATURE_IFCONFIG_STATUS=y +# CONFIG_FEATURE_IFCONFIG_SLIP is not set +CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y +CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +# CONFIG_IFENSLAVE is not set +# CONFIG_IFPLUGD is not set +CONFIG_IFUPDOWN=y +CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate" +CONFIG_FEATURE_IFUPDOWN_IP=y +CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN=y +# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set +CONFIG_FEATURE_IFUPDOWN_IPV4=y +# CONFIG_FEATURE_IFUPDOWN_IPV6 is not set +CONFIG_FEATURE_IFUPDOWN_MAPPING=y +# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set +# CONFIG_INETD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set +# CONFIG_FEATURE_INETD_RPC is not set +CONFIG_IP=y +CONFIG_FEATURE_IP_ADDRESS=y +CONFIG_FEATURE_IP_LINK=y +CONFIG_FEATURE_IP_ROUTE=y +CONFIG_FEATURE_IP_TUNNEL=y +CONFIG_FEATURE_IP_RULE=y +CONFIG_FEATURE_IP_SHORT_FORMS=y +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +CONFIG_IPADDR=y +CONFIG_IPLINK=y +CONFIG_IPROUTE=y +CONFIG_IPTUNNEL=y +CONFIG_IPRULE=y +CONFIG_IPCALC=y +CONFIG_FEATURE_IPCALC_FANCY=y +# CONFIG_FEATURE_IPCALC_LONG_OPTIONS is not set +CONFIG_NETSTAT=y +CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_FEATURE_NETSTAT_PRG=y +# CONFIG_NSLOOKUP is not set +# CONFIG_NTPD is not set +# CONFIG_FEATURE_NTPD_SERVER is not set +CONFIG_PSCAN=y +CONFIG_ROUTE=y +# CONFIG_SLATTACH is not set +CONFIG_TCPSVD=y +# CONFIG_TELNET is not set +# CONFIG_FEATURE_TELNET_TTYPE is not set +# CONFIG_FEATURE_TELNET_AUTOLOGIN is not set +# CONFIG_TELNETD is not set +# CONFIG_FEATURE_TELNETD_STANDALONE is not set +# CONFIG_FEATURE_TELNETD_INETD_WAIT is not set +# CONFIG_TFTP is not set +# CONFIG_TFTPD is not set +# CONFIG_FEATURE_TFTP_GET is not set +# CONFIG_FEATURE_TFTP_PUT is not set +# CONFIG_FEATURE_TFTP_BLOCKSIZE is not set +# CONFIG_FEATURE_TFTP_PROGRESS_BAR is not set +# CONFIG_TFTP_DEBUG is not set +# CONFIG_TRACEROUTE is not set +# CONFIG_TRACEROUTE6 is not set +# CONFIG_FEATURE_TRACEROUTE_VERBOSE is not set +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +CONFIG_TUNCTL=y +CONFIG_FEATURE_TUNCTL_UG=y +# CONFIG_UDHCPD is not set +# CONFIG_DHCPRELAY is not set +# CONFIG_DUMPLEASES is not set +# CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set +# CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set +CONFIG_DHCPD_LEASES_FILE="" +CONFIG_UDHCPC=y +CONFIG_FEATURE_UDHCPC_ARPING=y +# CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_UDHCP_DEBUG=9 +CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_FEATURE_UDHCP_8021Q=y +CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n" +# CONFIG_UDPSVD is not set +# CONFIG_VCONFIG is not set +CONFIG_WGET=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +# CONFIG_FEATURE_WGET_LONG_OPTIONS is not set +CONFIG_FEATURE_WGET_TIMEOUT=y +# CONFIG_ZCIP is not set + +# +# Print Utilities +# +CONFIG_LPD=y +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +CONFIG_MAKEMIME=y +CONFIG_FEATURE_MIME_CHARSET="us-ascii" +CONFIG_POPMAILDIR=y +CONFIG_FEATURE_POPMAILDIR_DELIVERY=y +CONFIG_REFORMIME=y +CONFIG_FEATURE_REFORMIME_COMPAT=y +CONFIG_SENDMAIL=y + +# +# Process Utilities +# +CONFIG_IOSTAT=y +CONFIG_MPSTAT=y +CONFIG_NMETER=y +CONFIG_PMAP=y +CONFIG_POWERTOP=y +CONFIG_PSTREE=y +CONFIG_PWDX=y +CONFIG_SMEMCAP=y +# CONFIG_FREE is not set +CONFIG_FUSER=y +# CONFIG_KILL is not set +# CONFIG_KILLALL is not set +# CONFIG_KILLALL5 is not set +# CONFIG_PGREP is not set +CONFIG_PIDOF=y +CONFIG_FEATURE_PIDOF_SINGLE=y +CONFIG_FEATURE_PIDOF_OMIT=y +# CONFIG_PKILL is not set +# CONFIG_PS is not set +# CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_FEATURE_PS_TIME is not set +# CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS is not set +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +CONFIG_RENICE=y +CONFIG_BB_SYSCTL=y +CONFIG_TOP=y +CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +CONFIG_FEATURE_TOP_SMP_CPU=y +CONFIG_FEATURE_TOP_DECIMALS=y +CONFIG_FEATURE_TOP_SMP_PROCESS=y +CONFIG_FEATURE_TOPMEM=y +CONFIG_FEATURE_SHOW_THREADS=y +# CONFIG_UPTIME is not set +CONFIG_WATCH=y + +# +# Runit Utilities +# +CONFIG_RUNSV=y +CONFIG_RUNSVDIR=y +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +CONFIG_SV=y +CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service" +CONFIG_SVLOGD=y +CONFIG_CHPST=y +CONFIG_SETUIDGID=y +CONFIG_ENVUIDGID=y +CONFIG_ENVDIR=y +CONFIG_SOFTLIMIT=y +# CONFIG_CHCON is not set +# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RESTORECON is not set +# CONFIG_RUNCON is not set +# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_SETSEBOOL is not set +# CONFIG_SESTATUS is not set + +# +# Shells +# +# CONFIG_ASH is not set +# CONFIG_ASH_BASH_COMPAT is not set +# CONFIG_ASH_IDLE_TIMEOUT is not set +# CONFIG_ASH_JOB_CONTROL is not set +# CONFIG_ASH_ALIAS is not set +# CONFIG_ASH_GETOPTS is not set +# CONFIG_ASH_ECHO is not set +# CONFIG_ASH_PRINTF is not set +# CONFIG_ASH_TEST is not set +# CONFIG_ASH_CMDCMD is not set +# CONFIG_ASH_MAIL is not set +# CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_ASH_RANDOM_SUPPORT is not set +# CONFIG_ASH_EXPAND_PRMT is not set +CONFIG_CTTYHACK=y +# CONFIG_HUSH is not set +# CONFIG_HUSH_BASH_COMPAT is not set +# CONFIG_HUSH_BRACE_EXPANSION is not set +# CONFIG_HUSH_HELP is not set +# CONFIG_HUSH_INTERACTIVE is not set +# CONFIG_HUSH_SAVEHISTORY is not set +# CONFIG_HUSH_JOB is not set +# CONFIG_HUSH_TICK is not set +# CONFIG_HUSH_IF is not set +# CONFIG_HUSH_LOOPS is not set +# CONFIG_HUSH_CASE is not set +# CONFIG_HUSH_FUNCTIONS is not set +# CONFIG_HUSH_LOCAL is not set +# CONFIG_HUSH_RANDOM_SUPPORT is not set +# CONFIG_HUSH_EXPORT_N is not set +# CONFIG_HUSH_MODE_X is not set +# CONFIG_FEATURE_SH_IS_ASH is not set +# CONFIG_FEATURE_SH_IS_HUSH is not set +CONFIG_FEATURE_SH_IS_NONE=y +# CONFIG_FEATURE_BASH_IS_ASH is not set +# CONFIG_FEATURE_BASH_IS_HUSH is not set +CONFIG_FEATURE_BASH_IS_NONE=y +# CONFIG_SH_MATH_SUPPORT is not set +# CONFIG_SH_MATH_SUPPORT_64 is not set +# CONFIG_FEATURE_SH_EXTRA_QUIET is not set +# CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_FEATURE_SH_NOFORK is not set +# CONFIG_FEATURE_SH_HISTFILESIZE is not set + +# +# System Logging Utilities +# +# CONFIG_SYSLOGD is not set +# CONFIG_FEATURE_ROTATE_LOGFILE is not set +# CONFIG_FEATURE_REMOTE_LOG is not set +# CONFIG_FEATURE_SYSLOGD_DUP is not set +# CONFIG_FEATURE_SYSLOGD_CFG is not set +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 +# CONFIG_FEATURE_IPC_SYSLOG is not set +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 +# CONFIG_LOGREAD is not set +# CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set +CONFIG_KLOGD=y +CONFIG_FEATURE_KLOGD_KLOGCTL=y +# CONFIG_LOGGER is not set diff --git a/busybox-1_37_0/configs/android_502_defconfig b/busybox-1_37_0/configs/android_502_defconfig new file mode 100644 index 000000000..104e70f23 --- /dev/null +++ b/busybox-1_37_0/configs/android_502_defconfig @@ -0,0 +1,1126 @@ +## This config was successfully used to build busybox on +## Samsung SM-T700 tablet +## Android 5.0.2 +## gcc/toolchain from https://termux.com/ +## binutils 2.26.20160125 +## gcc 4.9.3 +## bionic ANDROID_API 21 +## +## Static build did not work (static libraries not installed?): +## # CONFIG_STATIC is not set +## syslog() requires an additional library: +## CONFIG_EXTRA_LDLIBS="log" +## Bionic's botched off_t: +## # CONFIG_LFS is not set +## +## Incompatible password database API: +## # CONFIG_FEATURE_SHADOWPASSWDS is not set +## # CONFIG_USE_BB_PWD_GRP is not set +## # CONFIG_USE_BB_SHADOW is not set +## # CONFIG_ADDUSER is not set +## # CONFIG_ADDGROUP is not set +## # CONFIG_DELUSER is not set +## # CONFIG_DELGROUP is not set +## +## No utmp/wtmp: +## # CONFIG_FEATURE_UTMP is not set +## # CONFIG_FEATURE_WTMP is not set +## # CONFIG_WHO is not set +## # CONFIG_LAST is not set +## # CONFIG_USERS is not set +## # CONFIG_WALL is not set +## +## Assorted header problems: +## # CONFIG_HOSTID is not set +## # CONFIG_FEATURE_SYNC_FANCY is not set - syncfs() +## # CONFIG_LOGNAME is not set - getlogin_r() +## # CONFIG_LOADFONT is not set +## # CONFIG_SETFONT is not set +## # CONFIG_MDEV is not set +## # CONFIG_FSCK_MINIX is not set +## # CONFIG_MKFS_MINIX is not set +## # CONFIG_IPCRM is not set +## # CONFIG_IPCS is not set +## # CONFIG_SWAPONOFF is not set +## # CONFIG_CONSPY is not set +## # CONFIG_NANDWRITE is not set +## # CONFIG_NANDDUMP is not set +## # CONFIG_RFKILL is not set +## # CONFIG_UBIATTACH is not set +## # CONFIG_UBIDETACH is not set +## # CONFIG_UBIMKVOL is not set +## # CONFIG_UBIRMVOL is not set +## # CONFIG_UBIRSVOL is not set +## # CONFIG_UBIUPDATEVOL is not set +## # CONFIG_FEATURE_EJECT_SCSI is not set - scsi headers +## # CONFIG_ARP is not set +## # CONFIG_ARPING is not set +## # CONFIG_ETHER_WAKE is not set +## # CONFIG_IFCONFIG is not set +## # CONFIG_IFENSLAVE is not set +## # CONFIG_NSLOOKUP is not set +## # CONFIG_ROUTE is not set +## # CONFIG_ZCIP is not set +## # CONFIG_HUSH is not set - glob.h +## # CONFIG_KLOGD is not set +## # CONFIG_LOGGER is not set +## # CONFIG_LOGREAD is not set +## # CONFIG_SYSLOGD is not set +##----------------------------------------------- + +# +# Automatically generated make config: don't edit +# Busybox version: 1.25.0.git +# Mon Mar 14 20:43:42 2016 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +CONFIG_DESKTOP=y +# CONFIG_EXTRA_COMPAT is not set +CONFIG_INCLUDE_SUSv2=y +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_SHOW_USAGE=y +CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_FEATURE_COMPRESS_USAGE=y +CONFIG_FEATURE_INSTALLER=y +# CONFIG_INSTALL_NO_USR is not set +# CONFIG_LOCALE_SUPPORT is not set +CONFIG_UNICODE_SUPPORT=y +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=63 +CONFIG_LAST_SUPPORTED_WCHAR=767 +# CONFIG_UNICODE_COMBINING_WCHARS is not set +# CONFIG_UNICODE_WIDE_WCHARS is not set +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +# CONFIG_UNICODE_PRESERVE_BROKEN is not set +# CONFIG_PAM is not set +CONFIG_FEATURE_USE_SENDFILE=y +CONFIG_LONG_OPTS=y +CONFIG_FEATURE_DEVPTS=y +# CONFIG_FEATURE_CLEAN_UP is not set +# CONFIG_FEATURE_UTMP is not set +# CONFIG_FEATURE_WTMP is not set +CONFIG_FEATURE_PIDFILE=y +CONFIG_PID_FILE_PATH="/var/run" +CONFIG_FEATURE_SUID=y +CONFIG_FEATURE_SUID_CONFIG=y +CONFIG_FEATURE_SUID_CONFIG_QUIET=y +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +# CONFIG_LFS is not set +CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_SYSROOT="" +CONFIG_EXTRA_CFLAGS="" +CONFIG_EXTRA_LDFLAGS="" +CONFIG_EXTRA_LDLIBS="log" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_DEBUG_SANITIZE is not set +# CONFIG_UNIT_TEST is not set +# CONFIG_WERROR is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options ("make install" behavior) +# +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_FEATURE_RTMINMAX=y +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +CONFIG_SHA3_SMALL=1 +# CONFIG_FEATURE_FAST_TOP is not set +# CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 +# CONFIG_FEATURE_EDITING_VI is not set +CONFIG_FEATURE_EDITING_HISTORY=255 +CONFIG_FEATURE_EDITING_SAVEHISTORY=y +# CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set +CONFIG_FEATURE_REVERSE_SEARCH=y +CONFIG_FEATURE_TAB_COMPLETION=y +# CONFIG_FEATURE_USERNAME_COMPLETION is not set +CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_FEATURE_COPYBUF_KB=4 +CONFIG_FEATURE_SKIP_ROOTFS=y +CONFIG_MONOTONIC_SYSCALL=y +CONFIG_IOCTL_HEX2STR_ERROR=y +CONFIG_FEATURE_HWIB=y + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_XZ=y +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +# CONFIG_FEATURE_SEAMLESS_Z is not set +# CONFIG_AR is not set +# CONFIG_FEATURE_AR_LONG_FILENAMES is not set +# CONFIG_FEATURE_AR_CREATE is not set +# CONFIG_UNCOMPRESS is not set +CONFIG_GUNZIP=y +CONFIG_FEATURE_GUNZIP_LONG_OPTIONS=y +CONFIG_BUNZIP2=y +CONFIG_UNLZMA=y +# CONFIG_FEATURE_LZMA_FAST is not set +CONFIG_LZMA=y +CONFIG_UNXZ=y +CONFIG_XZ=y +CONFIG_BZIP2=y +CONFIG_CPIO=y +CONFIG_FEATURE_CPIO_O=y +CONFIG_FEATURE_CPIO_P=y +# CONFIG_DPKG is not set +# CONFIG_DPKG_DEB is not set +CONFIG_GZIP=y +CONFIG_FEATURE_GZIP_LONG_OPTIONS=y +CONFIG_GZIP_FAST=0 +# CONFIG_FEATURE_GZIP_LEVELS is not set +CONFIG_LZOP=y +# CONFIG_LZOP_COMPR_HIGH is not set +CONFIG_RPM=y +CONFIG_RPM2CPIO=y +CONFIG_TAR=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +CONFIG_FEATURE_TAR_LONG_OPTIONS=y +CONFIG_FEATURE_TAR_TO_COMMAND=y +CONFIG_FEATURE_TAR_UNAME_GNAME=y +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +# CONFIG_FEATURE_TAR_SELINUX is not set +CONFIG_UNZIP=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAT=y +CONFIG_DATE=y +CONFIG_FEATURE_DATE_ISOFMT=y +# CONFIG_FEATURE_DATE_NANO is not set +CONFIG_FEATURE_DATE_COMPAT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +CONFIG_FEATURE_DD_STATUS=y +# CONFIG_HOSTID is not set +CONFIG_ID=y +CONFIG_GROUPS=y +CONFIG_SHUF=y +CONFIG_STAT=y +CONFIG_FEATURE_STAT_FORMAT=y +CONFIG_FEATURE_STAT_FILESYSTEM=y +CONFIG_SYNC=y +# CONFIG_FEATURE_SYNC_FANCY is not set +CONFIG_TEST=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TOUCH=y +CONFIG_FEATURE_TOUCH_SUSV3=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +CONFIG_TRUNCATE=y +CONFIG_UNLINK=y +CONFIG_BASE64=y +# CONFIG_WHO is not set +# CONFIG_USERS is not set +CONFIG_CAL=y +CONFIG_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +CONFIG_FEATURE_CHOWN_LONG_OPTIONS=y +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_COMM=y +CONFIG_CP=y +CONFIG_FEATURE_CP_LONG_OPTIONS=y +CONFIG_CUT=y +CONFIG_DF=y +CONFIG_FEATURE_DF_FANCY=y +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +CONFIG_FEATURE_ENV_LONG_OPTIONS=y +CONFIG_EXPAND=y +CONFIG_FEATURE_EXPAND_LONG_OPTIONS=y +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FALSE=y +CONFIG_FOLD=y +CONFIG_FSYNC=y +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_INSTALL=y +CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y +CONFIG_LN=y +# CONFIG_LOGNAME is not set +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +CONFIG_FEATURE_LS_COLOR=y +CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_MD5SUM=y +CONFIG_MKDIR=y +CONFIG_FEATURE_MKDIR_LONG_OPTIONS=y +CONFIG_MKFIFO=y +CONFIG_MKNOD=y +CONFIG_MV=y +CONFIG_FEATURE_MV_LONG_OPTIONS=y +CONFIG_NICE=y +CONFIG_NOHUP=y +CONFIG_OD=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +CONFIG_FEATURE_RMDIR_LONG_OPTIONS=y +CONFIG_SEQ=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SHA3SUM=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_FEATURE_FLOAT_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +CONFIG_STTY=y +CONFIG_SUM=y +CONFIG_TAC=y +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TRUE=y +CONFIG_TTY=y +CONFIG_UNAME=y +CONFIG_UNAME_OSNAME="GNU/Linux" +CONFIG_UNEXPAND=y +CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS=y +CONFIG_UNIQ=y +CONFIG_USLEEP=y +CONFIG_UUDECODE=y +CONFIG_UUENCODE=y +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options +# +CONFIG_FEATURE_VERBOSE=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +CONFIG_CHVT=y +CONFIG_FGCONSOLE=y +CONFIG_CLEAR=y +CONFIG_DEALLOCVT=y +CONFIG_DUMPKMAP=y +CONFIG_KBD_MODE=y +# CONFIG_LOADFONT is not set +CONFIG_LOADKMAP=y +CONFIG_OPENVT=y +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +CONFIG_SETCONSOLE=y +CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS=y +# CONFIG_SETFONT is not set +# CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set +CONFIG_DEFAULT_SETFONT_DIR="" +CONFIG_SETKEYCODES=y +CONFIG_SETLOGCONS=y +CONFIG_SHOWKEY=y +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set + +# +# Debian Utilities +# +CONFIG_MKTEMP=y +CONFIG_PIPE_PROGRESS=y +CONFIG_RUN_PARTS=y +CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y +CONFIG_FEATURE_RUN_PARTS_FANCY=y +CONFIG_START_STOP_DAEMON=y +CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y +CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS=y +CONFIG_WHICH=y + +# +# Editors +# +CONFIG_AWK=y +CONFIG_FEATURE_AWK_LIBM=y +CONFIG_FEATURE_AWK_GNU_EXTENSIONS=y +CONFIG_CMP=y +CONFIG_DIFF=y +CONFIG_FEATURE_DIFF_LONG_OPTIONS=y +CONFIG_FEATURE_DIFF_DIR=y +CONFIG_ED=y +CONFIG_PATCH=y +CONFIG_SED=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=4096 +# CONFIG_FEATURE_VI_8BIT is not set +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +# CONFIG_FEATURE_VI_REGEX_SEARCH is not set +CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_FEATURE_VI_READONLY=y +CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_FEATURE_VI_SET=y +CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_FEATURE_VI_ASK_TERMINAL=y +CONFIG_FEATURE_VI_UNDO=y +CONFIG_FEATURE_VI_UNDO_QUEUE=y +CONFIG_FEATURE_VI_UNDO_QUEUE_MAX=256 +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +CONFIG_FEATURE_FIND_INUM=y +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_EXEC_PLUS=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +CONFIG_FEATURE_FIND_DELETE=y +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set +CONFIG_FEATURE_FIND_LINKS=y +CONFIG_GREP=y +CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y +CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR=y + +# +# Init Utilities +# +CONFIG_BOOTCHARTD=y +CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER=y +CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE=y +CONFIG_HALT=y +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +CONFIG_INIT=y +CONFIG_FEATURE_USE_INITTAB=y +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +CONFIG_FEATURE_INIT_SCTTY=y +CONFIG_FEATURE_INIT_SYSLOG=y +CONFIG_FEATURE_INIT_QUIET=y +CONFIG_FEATURE_INIT_COREDUMPS=y +CONFIG_LINUXRC=y +CONFIG_INIT_TERMINAL_TYPE="linux" +CONFIG_FEATURE_INIT_MODIFY_CMDLINE=y +CONFIG_MESG=y +CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP=y + +# +# Login/Password Management Utilities +# +# CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_USE_BB_SHADOW is not set +CONFIG_USE_BB_CRYPT=y +CONFIG_USE_BB_CRYPT_SHA=y +CONFIG_ADD_SHELL=y +CONFIG_REMOVE_SHELL=y +# CONFIG_ADDGROUP is not set +# CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set +# CONFIG_FEATURE_ADDUSER_TO_GROUP is not set +# CONFIG_ADDUSER is not set +# CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set +# CONFIG_FEATURE_CHECK_NAMES is not set +CONFIG_LAST_ID=0 +CONFIG_FIRST_SYSTEM_ID=0 +CONFIG_LAST_SYSTEM_ID=0 +CONFIG_CHPASSWD=y +CONFIG_FEATURE_DEFAULT_PASSWD_ALGO="des" +CONFIG_CRYPTPW=y +# CONFIG_DELUSER is not set +# CONFIG_DELGROUP is not set +# CONFIG_FEATURE_DEL_USER_FROM_GROUP is not set +CONFIG_GETTY=y +CONFIG_LOGIN=y +# CONFIG_LOGIN_SESSION_AS_CHILD is not set +CONFIG_LOGIN_SCRIPTS=y +CONFIG_FEATURE_NOLOGIN=y +CONFIG_FEATURE_SECURETTY=y +CONFIG_PASSWD=y +CONFIG_FEATURE_PASSWD_WEAK_CHECK=y +CONFIG_SU=y +CONFIG_FEATURE_SU_SYSLOG=y +CONFIG_FEATURE_SU_CHECKS_SHELLS=y +CONFIG_SULOGIN=y +CONFIG_VLOCK=y + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +CONFIG_FSCK=y +CONFIG_LSATTR=y +# CONFIG_TUNE2FS is not set + +# +# Linux Module Utilities +# +CONFIG_MODINFO=y +CONFIG_MODPROBE_SMALL=y +CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE=y +CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y +# CONFIG_INSMOD is not set +# CONFIG_RMMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +CONFIG_DEFAULT_MODULES_DIR="/lib/modules" +CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" + +# +# Linux System Utilities +# +CONFIG_BLKDISCARD=y +CONFIG_BLOCKDEV=y +CONFIG_FATATTR=y +CONFIG_FSTRIM=y +# CONFIG_MDEV is not set +# CONFIG_FEATURE_MDEV_CONF is not set +# CONFIG_FEATURE_MDEV_RENAME is not set +# CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set +# CONFIG_FEATURE_MDEV_EXEC is not set +# CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set +CONFIG_MOUNT=y +CONFIG_FEATURE_MOUNT_FAKE=y +CONFIG_FEATURE_MOUNT_VERBOSE=y +# CONFIG_FEATURE_MOUNT_HELPERS is not set +CONFIG_FEATURE_MOUNT_LABEL=y +# CONFIG_FEATURE_MOUNT_NFS is not set +CONFIG_FEATURE_MOUNT_CIFS=y +CONFIG_FEATURE_MOUNT_FLAGS=y +CONFIG_FEATURE_MOUNT_FSTAB=y +CONFIG_FEATURE_MOUNT_OTHERTAB=y +CONFIG_REV=y +CONFIG_SETARCH=y +CONFIG_UEVENT=y +CONFIG_ACPID=y +CONFIG_FEATURE_ACPID_COMPAT=y +CONFIG_BLKID=y +# CONFIG_FEATURE_BLKID_TYPE is not set +CONFIG_DMESG=y +CONFIG_FEATURE_DMESG_PRETTY=y +CONFIG_FBSET=y +CONFIG_FEATURE_FBSET_FANCY=y +CONFIG_FEATURE_FBSET_READMODE=y +CONFIG_FDFLUSH=y +CONFIG_FDFORMAT=y +CONFIG_FDISK=y +CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +CONFIG_FEATURE_FDISK_WRITABLE=y +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +# CONFIG_FEATURE_GPT_LABEL is not set +CONFIG_FEATURE_FDISK_ADVANCED=y +CONFIG_FINDFS=y +CONFIG_FLOCK=y +CONFIG_FREERAMDISK=y +# CONFIG_FSCK_MINIX is not set +CONFIG_MKFS_EXT2=y +# CONFIG_MKFS_MINIX is not set +# CONFIG_FEATURE_MINIX2 is not set +# CONFIG_MKFS_REISER is not set +CONFIG_MKFS_VFAT=y +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +CONFIG_FEATURE_HEXDUMP_REVERSE=y +CONFIG_HD=y +CONFIG_HWCLOCK=y +CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS=y +# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_IPCRM is not set +# CONFIG_IPCS is not set +CONFIG_LOSETUP=y +CONFIG_LSPCI=y +CONFIG_LSUSB=y +CONFIG_MKSWAP=y +CONFIG_FEATURE_MKSWAP_UUID=y +CONFIG_MORE=y +CONFIG_PIVOT_ROOT=y +CONFIG_RDATE=y +CONFIG_RDEV=y +CONFIG_READPROFILE=y +CONFIG_RTCWAKE=y +CONFIG_SCRIPT=y +CONFIG_SCRIPTREPLAY=y +# CONFIG_SWAPONOFF is not set +# CONFIG_FEATURE_SWAPON_DISCARD is not set +# CONFIG_FEATURE_SWAPON_PRI is not set +CONFIG_SWITCH_ROOT=y +CONFIG_UMOUNT=y +CONFIG_FEATURE_UMOUNT_ALL=y + +# +# Common options for mount/umount +# +CONFIG_FEATURE_MOUNT_LOOP=y +CONFIG_FEATURE_MOUNT_LOOP_CREATE=y +# CONFIG_FEATURE_MTAB_SUPPORT is not set +CONFIG_VOLUMEID=y + +# +# Filesystem/Volume identification +# +CONFIG_FEATURE_VOLUMEID_BCACHE=y +CONFIG_FEATURE_VOLUMEID_BTRFS=y +CONFIG_FEATURE_VOLUMEID_CRAMFS=y +CONFIG_FEATURE_VOLUMEID_EXFAT=y +CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_FEATURE_VOLUMEID_F2FS=y +CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_FEATURE_VOLUMEID_HFS=y +CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_FEATURE_VOLUMEID_JFS=y +CONFIG_FEATURE_VOLUMEID_LINUXRAID=y +CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +CONFIG_FEATURE_VOLUMEID_LUKS=y +CONFIG_FEATURE_VOLUMEID_NILFS=y +CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_FEATURE_VOLUMEID_OCFS2=y +CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_FEATURE_VOLUMEID_ROMFS=y +# CONFIG_FEATURE_VOLUMEID_SQUASHFS is not set +CONFIG_FEATURE_VOLUMEID_SYSV=y +CONFIG_FEATURE_VOLUMEID_UDF=y +CONFIG_FEATURE_VOLUMEID_XFS=y + +# +# Miscellaneous Utilities +# +# CONFIG_CONSPY is not set +CONFIG_CROND=y +CONFIG_FEATURE_CROND_D=y +CONFIG_FEATURE_CROND_CALL_SENDMAIL=y +CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_I2CGET=y +CONFIG_I2CSET=y +CONFIG_I2CDUMP=y +CONFIG_I2CDETECT=y +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +CONFIG_FEATURE_LESS_TRUNCATE=y +CONFIG_FEATURE_LESS_MARKS=y +CONFIG_FEATURE_LESS_REGEXP=y +CONFIG_FEATURE_LESS_WINCH=y +CONFIG_FEATURE_LESS_ASK_TERMINAL=y +CONFIG_FEATURE_LESS_DASHCMD=y +CONFIG_FEATURE_LESS_LINENUMS=y +# CONFIG_NANDWRITE is not set +# CONFIG_NANDDUMP is not set +# CONFIG_RFKILL is not set +CONFIG_SETSERIAL=y +CONFIG_TASKSET=y +CONFIG_FEATURE_TASKSET_FANCY=y +# CONFIG_UBIATTACH is not set +# CONFIG_UBIDETACH is not set +# CONFIG_UBIMKVOL is not set +# CONFIG_UBIRMVOL is not set +# CONFIG_UBIRSVOL is not set +# CONFIG_UBIUPDATEVOL is not set +# CONFIG_WALL is not set +CONFIG_ADJTIMEX=y +# CONFIG_BBCONFIG is not set +# CONFIG_FEATURE_COMPRESS_BBCONFIG is not set +CONFIG_BEEP=y +CONFIG_FEATURE_BEEP_FREQ=4000 +CONFIG_FEATURE_BEEP_LENGTH_MS=30 +CONFIG_CHAT=y +CONFIG_FEATURE_CHAT_NOFAIL=y +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +CONFIG_FEATURE_CHAT_IMPLICIT_CR=y +CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y +CONFIG_FEATURE_CHAT_SEND_ESCAPES=y +CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y +CONFIG_FEATURE_CHAT_CLR_ABORT=y +CONFIG_CHRT=y +CONFIG_CRONTAB=y +CONFIG_DC=y +CONFIG_FEATURE_DC_LIBM=y +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +CONFIG_DEVMEM=y +CONFIG_EJECT=y +# CONFIG_FEATURE_EJECT_SCSI is not set +CONFIG_FBSPLASH=y +# CONFIG_FLASHCP is not set +# CONFIG_FLASH_LOCK is not set +# CONFIG_FLASH_UNLOCK is not set +# CONFIG_FLASH_ERASEALL is not set +CONFIG_IONICE=y +# CONFIG_INOTIFYD is not set +# CONFIG_LAST is not set +# CONFIG_FEATURE_LAST_FANCY is not set +CONFIG_HDPARM=y +CONFIG_FEATURE_HDPARM_GET_IDENTITY=y +CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET=y +CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y +CONFIG_MAKEDEVS=y +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +CONFIG_FEATURE_MAKEDEVS_TABLE=y +CONFIG_MAN=y +CONFIG_MICROCOM=y +CONFIG_MOUNTPOINT=y +# CONFIG_MT is not set +CONFIG_RAIDAUTORUN=y +# CONFIG_READAHEAD is not set +# CONFIG_RUNLEVEL is not set +CONFIG_RX=y +CONFIG_SETSID=y +CONFIG_STRINGS=y +CONFIG_TIME=y +CONFIG_TIMEOUT=y +CONFIG_TTYSIZE=y +CONFIG_VOLNAME=y +CONFIG_WATCHDOG=y + +# +# Networking Utilities +# +CONFIG_NAMEIF=y +CONFIG_FEATURE_NAMEIF_EXTENDED=y +CONFIG_NBDCLIENT=y +CONFIG_NC=y +CONFIG_NC_SERVER=y +CONFIG_NC_EXTRA=y +# CONFIG_NC_110_COMPAT is not set +CONFIG_PING=y +CONFIG_PING6=y +CONFIG_FEATURE_FANCY_PING=y +CONFIG_WGET=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_FEATURE_WGET_LONG_OPTIONS=y +CONFIG_FEATURE_WGET_TIMEOUT=y +CONFIG_FEATURE_WGET_OPENSSL=y +CONFIG_FEATURE_WGET_SSL_HELPER=y +CONFIG_WHOIS=y +CONFIG_FEATURE_IPV6=y +# CONFIG_FEATURE_UNIX_LOCAL is not set +CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +# CONFIG_ARP is not set +# CONFIG_ARPING is not set +CONFIG_BRCTL=y +CONFIG_FEATURE_BRCTL_FANCY=y +CONFIG_FEATURE_BRCTL_SHOW=y +CONFIG_DNSD=y +# CONFIG_ETHER_WAKE is not set +CONFIG_FAKEIDENTD=y +CONFIG_FTPD=y +CONFIG_FEATURE_FTP_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FEATURE_FTP_AUTHENTICATION=y +CONFIG_FTPGET=y +CONFIG_FTPPUT=y +CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS=y +CONFIG_HOSTNAME=y +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_RANGES=y +CONFIG_FEATURE_HTTPD_SETUID=y +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +CONFIG_FEATURE_HTTPD_AUTH_MD5=y +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_FEATURE_HTTPD_GZIP=y +# CONFIG_IFCONFIG is not set +# CONFIG_FEATURE_IFCONFIG_STATUS is not set +# CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +# CONFIG_FEATURE_IFCONFIG_HW is not set +# CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS is not set +# CONFIG_IFENSLAVE is not set +CONFIG_IFPLUGD=y +CONFIG_IFUPDOWN=y +CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate" +CONFIG_FEATURE_IFUPDOWN_IP=y +CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN=y +# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set +CONFIG_FEATURE_IFUPDOWN_IPV4=y +CONFIG_FEATURE_IFUPDOWN_IPV6=y +CONFIG_FEATURE_IFUPDOWN_MAPPING=y +# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set +CONFIG_INETD=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN=y +# CONFIG_FEATURE_INETD_RPC is not set +CONFIG_IP=y +CONFIG_FEATURE_IP_ADDRESS=y +CONFIG_FEATURE_IP_LINK=y +CONFIG_FEATURE_IP_ROUTE=y +CONFIG_FEATURE_IP_ROUTE_DIR="/etc/iproute2" +CONFIG_FEATURE_IP_TUNNEL=y +CONFIG_FEATURE_IP_RULE=y +CONFIG_FEATURE_IP_NEIGH=y +CONFIG_FEATURE_IP_SHORT_FORMS=y +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +CONFIG_IPADDR=y +CONFIG_IPLINK=y +CONFIG_IPROUTE=y +CONFIG_IPTUNNEL=y +CONFIG_IPRULE=y +CONFIG_IPNEIGH=y +CONFIG_IPCALC=y +CONFIG_FEATURE_IPCALC_FANCY=y +CONFIG_FEATURE_IPCALC_LONG_OPTIONS=y +CONFIG_NETSTAT=y +CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_FEATURE_NETSTAT_PRG=y +# CONFIG_NSLOOKUP is not set +CONFIG_NTPD=y +CONFIG_FEATURE_NTPD_SERVER=y +CONFIG_FEATURE_NTPD_CONF=y +CONFIG_PSCAN=y +# CONFIG_ROUTE is not set +CONFIG_SLATTACH=y +CONFIG_TCPSVD=y +CONFIG_TELNET=y +CONFIG_FEATURE_TELNET_TTYPE=y +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +CONFIG_TELNETD=y +CONFIG_FEATURE_TELNETD_STANDALONE=y +CONFIG_FEATURE_TELNETD_INETD_WAIT=y +CONFIG_TFTP=y +CONFIG_TFTPD=y + +# +# Common options for tftp/tftpd +# +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +CONFIG_FEATURE_TFTP_BLOCKSIZE=y +CONFIG_FEATURE_TFTP_PROGRESS_BAR=y +# CONFIG_TFTP_DEBUG is not set +CONFIG_TRACEROUTE=y +CONFIG_TRACEROUTE6=y +CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +CONFIG_TUNCTL=y +CONFIG_FEATURE_TUNCTL_UG=y +# CONFIG_UDHCPC6 is not set +CONFIG_UDHCPD=y +CONFIG_DHCPRELAY=y +CONFIG_DUMPLEASES=y +CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY=y +# CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set +CONFIG_DHCPD_LEASES_FILE="/var/lib/misc/udhcpd.leases" +CONFIG_UDHCPC=y +CONFIG_FEATURE_UDHCPC_ARPING=y +CONFIG_FEATURE_UDHCPC_SANITIZEOPT=y +# CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_UDHCP_DEBUG=9 +CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_FEATURE_UDHCP_8021Q=y +CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n" +CONFIG_UDPSVD=y +CONFIG_VCONFIG=y +# CONFIG_ZCIP is not set + +# +# Print Utilities +# +CONFIG_LPD=y +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +CONFIG_MAKEMIME=y +CONFIG_FEATURE_MIME_CHARSET="us-ascii" +CONFIG_POPMAILDIR=y +CONFIG_FEATURE_POPMAILDIR_DELIVERY=y +CONFIG_REFORMIME=y +CONFIG_FEATURE_REFORMIME_COMPAT=y +CONFIG_SENDMAIL=y + +# +# Process Utilities +# +CONFIG_IOSTAT=y +CONFIG_LSOF=y +CONFIG_MPSTAT=y +CONFIG_NMETER=y +CONFIG_PMAP=y +CONFIG_POWERTOP=y +CONFIG_PSTREE=y +CONFIG_PWDX=y +CONFIG_SMEMCAP=y +CONFIG_TOP=y +CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +CONFIG_FEATURE_TOP_SMP_CPU=y +CONFIG_FEATURE_TOP_DECIMALS=y +CONFIG_FEATURE_TOP_SMP_PROCESS=y +CONFIG_FEATURE_TOPMEM=y +CONFIG_UPTIME=y +# CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set +CONFIG_FREE=y +CONFIG_FUSER=y +CONFIG_KILL=y +CONFIG_KILLALL=y +CONFIG_KILLALL5=y +CONFIG_PGREP=y +CONFIG_PIDOF=y +CONFIG_FEATURE_PIDOF_SINGLE=y +CONFIG_FEATURE_PIDOF_OMIT=y +CONFIG_PKILL=y +CONFIG_PS=y +# CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_FEATURE_PS_LONG is not set +CONFIG_FEATURE_PS_TIME=y +CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS=y +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +CONFIG_RENICE=y +CONFIG_BB_SYSCTL=y +CONFIG_FEATURE_SHOW_THREADS=y +CONFIG_WATCH=y + +# +# Runit Utilities +# +CONFIG_CHPST=y +CONFIG_SETUIDGID=y +CONFIG_ENVUIDGID=y +CONFIG_ENVDIR=y +CONFIG_SOFTLIMIT=y +CONFIG_RUNSV=y +CONFIG_RUNSVDIR=y +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +CONFIG_SV=y +CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service" +CONFIG_SVLOGD=y +# CONFIG_CHCON is not set +# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RESTORECON is not set +# CONFIG_RUNCON is not set +# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_SETSEBOOL is not set +# CONFIG_SESTATUS is not set + +# +# Shells +# +CONFIG_ASH=y +CONFIG_ASH_BASH_COMPAT=y +# CONFIG_ASH_IDLE_TIMEOUT is not set +CONFIG_ASH_JOB_CONTROL=y +CONFIG_ASH_ALIAS=y +CONFIG_ASH_GETOPTS=y +CONFIG_ASH_ECHO=y +CONFIG_ASH_PRINTF=y +CONFIG_ASH_TEST=y +CONFIG_ASH_HELP=y +CONFIG_ASH_CMDCMD=y +# CONFIG_ASH_MAIL is not set +CONFIG_ASH_OPTIMIZE_FOR_SIZE=y +CONFIG_ASH_RANDOM_SUPPORT=y +CONFIG_ASH_EXPAND_PRMT=y +CONFIG_CTTYHACK=y +# CONFIG_HUSH is not set +# CONFIG_HUSH_BASH_COMPAT is not set +# CONFIG_HUSH_BRACE_EXPANSION is not set +# CONFIG_HUSH_HELP is not set +# CONFIG_HUSH_INTERACTIVE is not set +# CONFIG_HUSH_SAVEHISTORY is not set +# CONFIG_HUSH_JOB is not set +# CONFIG_HUSH_TICK is not set +# CONFIG_HUSH_IF is not set +# CONFIG_HUSH_LOOPS is not set +# CONFIG_HUSH_CASE is not set +# CONFIG_HUSH_FUNCTIONS is not set +# CONFIG_HUSH_LOCAL is not set +# CONFIG_HUSH_RANDOM_SUPPORT is not set +# CONFIG_HUSH_EXPORT_N is not set +# CONFIG_HUSH_MODE_X is not set +CONFIG_FEATURE_SH_IS_ASH=y +# CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_FEATURE_SH_IS_NONE is not set +# CONFIG_FEATURE_BASH_IS_ASH is not set +# CONFIG_FEATURE_BASH_IS_HUSH is not set +CONFIG_FEATURE_BASH_IS_NONE=y +CONFIG_SH_MATH_SUPPORT=y +CONFIG_SH_MATH_SUPPORT_64=y +CONFIG_FEATURE_SH_EXTRA_QUIET=y +# CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_FEATURE_SH_NOFORK is not set +CONFIG_FEATURE_SH_HISTFILESIZE=y + +# +# System Logging Utilities +# +# CONFIG_KLOGD is not set +# CONFIG_FEATURE_KLOGD_KLOGCTL is not set +# CONFIG_LOGGER is not set +# CONFIG_LOGREAD is not set +# CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set +# CONFIG_SYSLOGD is not set +# CONFIG_FEATURE_ROTATE_LOGFILE is not set +# CONFIG_FEATURE_REMOTE_LOG is not set +# CONFIG_FEATURE_SYSLOGD_DUP is not set +# CONFIG_FEATURE_SYSLOGD_CFG is not set +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 +# CONFIG_FEATURE_IPC_SYSLOG is not set +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 +# CONFIG_FEATURE_KMSG_SYSLOG is not set diff --git a/busybox-1_37_0/configs/android_defconfig b/busybox-1_37_0/configs/android_defconfig new file mode 100644 index 000000000..92a66048a --- /dev/null +++ b/busybox-1_37_0/configs/android_defconfig @@ -0,0 +1,1013 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.20.0.git +# Sun Nov 6 07:51:38 2011 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +CONFIG_DESKTOP=y +# CONFIG_EXTRA_COMPAT is not set +# CONFIG_INCLUDE_SUSv2 is not set +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +# CONFIG_SHOW_USAGE is not set +# CONFIG_FEATURE_VERBOSE_USAGE is not set +# CONFIG_FEATURE_COMPRESS_USAGE is not set +# CONFIG_FEATURE_INSTALLER is not set +# CONFIG_INSTALL_NO_USR is not set +# CONFIG_LOCALE_SUPPORT is not set +# CONFIG_UNICODE_SUPPORT is not set +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=0 +CONFIG_LAST_SUPPORTED_WCHAR=0 +# CONFIG_UNICODE_COMBINING_WCHARS is not set +# CONFIG_UNICODE_WIDE_WCHARS is not set +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +# CONFIG_UNICODE_PRESERVE_BROKEN is not set +# CONFIG_LONG_OPTS is not set +# CONFIG_FEATURE_DEVPTS is not set +# CONFIG_FEATURE_CLEAN_UP is not set +# CONFIG_FEATURE_UTMP is not set +# CONFIG_FEATURE_WTMP is not set +# CONFIG_FEATURE_PIDFILE is not set +# CONFIG_FEATURE_SUID is not set +# CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_FEATURE_SUID_CONFIG_QUIET is not set +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +# CONFIG_LFS is not set +CONFIG_CROSS_COMPILER_PREFIX="arm-eabi-" +# +# Removed: +# warning flags: +# -Wno-multichar -W -Wall -Wno-unused -Winit-self -Wpointer-arith +# -Werror=return-type -Werror=non-virtual-dtor -Werror=address +# -Werror=sequence-point -Wstrict-aliasing=2 -Wno-undef -Wno-shadow +# bbox already adds these: +# -ffunction-sections -fomit-frame-pointer +# enabled implicitly by -Os: +# -frerun-cse-after-loop +# should be not needed, or even increases code size: +# -finline-functions -fno-inline-functions-called-once -finline-limit=64 +# -fstack-protector -fno-strict-aliasing -fno-exceptions -funwind-tables +# -fmessage-length=0 (only affects error message format) +# todo: do we need these? - +# -fno-short-enums +# -fgcse-after-reload +# -frename-registers +CONFIG_EXTRA_CFLAGS="-I$A/system/core/include -I$A/bionic/libc/arch-arm/include -I$A/bionic/libc/include -I$A/bionic/libc/kernel/common -I$A/bionic/libc/kernel/arch-arm -I$A/bionic/libm/include -I$A/bionic/libm/include/arch/arm -include $A/system/core/include/arch/linux-arm/AndroidConfig.h -I$A/system/core/include/arch/linux-arm/ -D__ANDROID__ -DSK_RELEASE -nostdlib -march=armv7-a -msoft-float -mfloat-abi=softfp -mfpu=neon -mthumb -mthumb-interwork -fpic -fno-short-enums -fgcse-after-reload -frename-registers" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_WERROR is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options ("make install" behavior) +# +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +# CONFIG_FEATURE_RTMINMAX is not set +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +# CONFIG_FEATURE_FAST_TOP is not set +# CONFIG_FEATURE_ETC_NETWORKS is not set +# CONFIG_FEATURE_EDITING is not set +CONFIG_FEATURE_EDITING_MAX_LEN=0 +# CONFIG_FEATURE_EDITING_VI is not set +CONFIG_FEATURE_EDITING_HISTORY=0 +# CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +# CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set +# CONFIG_FEATURE_REVERSE_SEARCH is not set +# CONFIG_FEATURE_TAB_COMPLETION is not set +# CONFIG_FEATURE_USERNAME_COMPLETION is not set +# CONFIG_FEATURE_EDITING_FANCY_PROMPT is not set +# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +# CONFIG_FEATURE_NON_POSIX_CP is not set +# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_FEATURE_SKIP_ROOTFS is not set +# CONFIG_MONOTONIC_SYSCALL is not set +# CONFIG_IOCTL_HEX2STR_ERROR is not set +# CONFIG_FEATURE_HWIB is not set + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_XZ=y +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +CONFIG_AR=y +CONFIG_FEATURE_AR_LONG_FILENAMES=y +CONFIG_FEATURE_AR_CREATE=y +CONFIG_BUNZIP2=y +CONFIG_BZIP2=y +CONFIG_CPIO=y +CONFIG_FEATURE_CPIO_O=y +CONFIG_FEATURE_CPIO_P=y +CONFIG_DPKG=y +CONFIG_DPKG_DEB=y +CONFIG_GUNZIP=y +CONFIG_GZIP=y +# CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set +CONFIG_GZIP_FAST=0 +CONFIG_LZOP=y +CONFIG_LZOP_COMPR_HIGH=y +CONFIG_RPM2CPIO=y +CONFIG_RPM=y +CONFIG_TAR=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +# CONFIG_FEATURE_TAR_LONG_OPTIONS is not set +# CONFIG_FEATURE_TAR_TO_COMMAND is not set +CONFIG_FEATURE_TAR_UNAME_GNAME=y +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +# CONFIG_FEATURE_TAR_SELINUX is not set +CONFIG_UNCOMPRESS=y +CONFIG_UNLZMA=y +CONFIG_FEATURE_LZMA_FAST=y +CONFIG_LZMA=y +CONFIG_UNXZ=y +CONFIG_XZ=y +CONFIG_UNZIP=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAT=y +# CONFIG_DATE is not set +# CONFIG_FEATURE_DATE_ISOFMT is not set +# CONFIG_FEATURE_DATE_NANO is not set +# CONFIG_FEATURE_DATE_COMPAT is not set +# CONFIG_HOSTID is not set +# CONFIG_ID is not set +# CONFIG_GROUPS is not set +CONFIG_TEST=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TOUCH=y +CONFIG_FEATURE_TOUCH_SUSV3=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +CONFIG_BASE64=y +# CONFIG_WHO is not set +# CONFIG_USERS is not set +CONFIG_CAL=y +CONFIG_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +# CONFIG_FEATURE_CHOWN_LONG_OPTIONS is not set +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_COMM=y +CONFIG_CP=y +# CONFIG_FEATURE_CP_LONG_OPTIONS is not set +CONFIG_CUT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +# CONFIG_DF is not set +# CONFIG_FEATURE_DF_FANCY is not set +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +# CONFIG_FEATURE_ENV_LONG_OPTIONS is not set +CONFIG_EXPAND=y +# CONFIG_FEATURE_EXPAND_LONG_OPTIONS is not set +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FALSE=y +CONFIG_FOLD=y +CONFIG_FSYNC=y +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_INSTALL=y +# CONFIG_FEATURE_INSTALL_LONG_OPTIONS is not set +CONFIG_LN=y +# CONFIG_LOGNAME is not set +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +# CONFIG_FEATURE_LS_COLOR is not set +# CONFIG_FEATURE_LS_COLOR_IS_DEFAULT is not set +CONFIG_MD5SUM=y +CONFIG_MKDIR=y +# CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set +CONFIG_MKFIFO=y +CONFIG_MKNOD=y +CONFIG_MV=y +# CONFIG_FEATURE_MV_LONG_OPTIONS is not set +CONFIG_NICE=y +CONFIG_NOHUP=y +CONFIG_OD=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +# CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_SEQ=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_FEATURE_FLOAT_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +# CONFIG_STAT is not set +# CONFIG_FEATURE_STAT_FORMAT is not set +CONFIG_STTY=y +CONFIG_SUM=y +CONFIG_SYNC=y +CONFIG_TAC=y +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TRUE=y +# CONFIG_TTY is not set +CONFIG_UNAME=y +CONFIG_UNEXPAND=y +# CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS is not set +CONFIG_UNIQ=y +CONFIG_USLEEP=y +CONFIG_UUDECODE=y +CONFIG_UUENCODE=y +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +CONFIG_CHVT=y +CONFIG_FGCONSOLE=y +CONFIG_CLEAR=y +CONFIG_DEALLOCVT=y +CONFIG_DUMPKMAP=y +# CONFIG_KBD_MODE is not set +# CONFIG_LOADFONT is not set +CONFIG_LOADKMAP=y +CONFIG_OPENVT=y +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +CONFIG_SETCONSOLE=y +# CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set +# CONFIG_SETFONT is not set +# CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set +CONFIG_DEFAULT_SETFONT_DIR="" +CONFIG_SETKEYCODES=y +CONFIG_SETLOGCONS=y +CONFIG_SHOWKEY=y +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set + +# +# Debian Utilities +# +CONFIG_MKTEMP=y +CONFIG_PIPE_PROGRESS=y +CONFIG_RUN_PARTS=y +# CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS is not set +CONFIG_FEATURE_RUN_PARTS_FANCY=y +CONFIG_START_STOP_DAEMON=y +CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y +# CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +CONFIG_WHICH=y + +# +# Editors +# +CONFIG_PATCH=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=4096 +CONFIG_FEATURE_VI_8BIT=y +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +# CONFIG_FEATURE_VI_REGEX_SEARCH is not set +CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_FEATURE_VI_READONLY=y +CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_FEATURE_VI_SET=y +CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_FEATURE_VI_ASK_TERMINAL=y +CONFIG_AWK=y +CONFIG_FEATURE_AWK_LIBM=y +CONFIG_CMP=y +CONFIG_DIFF=y +# CONFIG_FEATURE_DIFF_LONG_OPTIONS is not set +CONFIG_FEATURE_DIFF_DIR=y +CONFIG_ED=y +CONFIG_SED=y +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +CONFIG_FEATURE_FIND_INUM=y +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +CONFIG_FEATURE_FIND_DELETE=y +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set +CONFIG_FEATURE_FIND_LINKS=y +CONFIG_GREP=y +CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +CONFIG_BOOTCHARTD=y +CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER=y +CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE=y +CONFIG_HALT=y +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +CONFIG_INIT=y +CONFIG_FEATURE_USE_INITTAB=y +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +CONFIG_FEATURE_INIT_SCTTY=y +CONFIG_FEATURE_INIT_SYSLOG=y +CONFIG_FEATURE_INIT_QUIET=y +CONFIG_FEATURE_INIT_COREDUMPS=y +CONFIG_LINUXRC=y +CONFIG_INIT_TERMINAL_TYPE="linux" +CONFIG_MESG=y +CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP=y + +# +# Login/Password Management Utilities +# +# CONFIG_ADD_SHELL is not set +# CONFIG_REMOVE_SHELL is not set +# CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_USE_BB_SHADOW is not set +# CONFIG_USE_BB_CRYPT is not set +# CONFIG_USE_BB_CRYPT_SHA is not set +# CONFIG_ADDUSER is not set +# CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set +# CONFIG_FEATURE_CHECK_NAMES is not set +CONFIG_FIRST_SYSTEM_ID=0 +CONFIG_LAST_SYSTEM_ID=0 +# CONFIG_ADDGROUP is not set +# CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set +# CONFIG_FEATURE_ADDUSER_TO_GROUP is not set +# CONFIG_DELUSER is not set +# CONFIG_DELGROUP is not set +# CONFIG_FEATURE_DEL_USER_FROM_GROUP is not set +# CONFIG_GETTY is not set +# CONFIG_LOGIN is not set +# CONFIG_LOGIN_SESSION_AS_CHILD is not set +# CONFIG_PAM is not set +# CONFIG_LOGIN_SCRIPTS is not set +# CONFIG_FEATURE_NOLOGIN is not set +# CONFIG_FEATURE_SECURETTY is not set +# CONFIG_PASSWD is not set +# CONFIG_FEATURE_PASSWD_WEAK_CHECK is not set +# CONFIG_CRYPTPW is not set +# CONFIG_CHPASSWD is not set +# CONFIG_SU is not set +# CONFIG_FEATURE_SU_SYSLOG is not set +# CONFIG_FEATURE_SU_CHECKS_SHELLS is not set +# CONFIG_SULOGIN is not set +# CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +# CONFIG_FSCK is not set +CONFIG_LSATTR=y +CONFIG_TUNE2FS=y + +# +# Linux Module Utilities +# +CONFIG_MODINFO=y +CONFIG_MODPROBE_SMALL=y +CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE=y +CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y +# CONFIG_INSMOD is not set +# CONFIG_RMMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +CONFIG_DEFAULT_MODULES_DIR="/lib/modules" +CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" + +# +# Linux System Utilities +# +CONFIG_BLOCKDEV=y +CONFIG_MDEV=y +CONFIG_FEATURE_MDEV_CONF=y +CONFIG_FEATURE_MDEV_RENAME=y +CONFIG_FEATURE_MDEV_RENAME_REGEXP=y +CONFIG_FEATURE_MDEV_EXEC=y +CONFIG_FEATURE_MDEV_LOAD_FIRMWARE=y +CONFIG_REV=y +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +CONFIG_BLKID=y +CONFIG_FEATURE_BLKID_TYPE=y +CONFIG_DMESG=y +CONFIG_FEATURE_DMESG_PRETTY=y +CONFIG_FBSET=y +CONFIG_FEATURE_FBSET_FANCY=y +CONFIG_FEATURE_FBSET_READMODE=y +CONFIG_FDFLUSH=y +CONFIG_FDFORMAT=y +CONFIG_FDISK=y +CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +CONFIG_FEATURE_FDISK_WRITABLE=y +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +# CONFIG_FEATURE_GPT_LABEL is not set +CONFIG_FEATURE_FDISK_ADVANCED=y +CONFIG_FINDFS=y +CONFIG_FLOCK=y +CONFIG_FREERAMDISK=y +# CONFIG_FSCK_MINIX is not set +# CONFIG_MKFS_EXT2 is not set +# CONFIG_MKFS_MINIX is not set +# CONFIG_FEATURE_MINIX2 is not set +# CONFIG_MKFS_REISER is not set +# CONFIG_MKFS_VFAT is not set +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +CONFIG_FEATURE_HEXDUMP_REVERSE=y +CONFIG_HD=y +CONFIG_HWCLOCK=y +# CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_IPCRM is not set +# CONFIG_IPCS is not set +CONFIG_LOSETUP=y +CONFIG_LSPCI=y +CONFIG_LSUSB=y +CONFIG_MKSWAP=y +CONFIG_FEATURE_MKSWAP_UUID=y +CONFIG_MORE=y +# CONFIG_MOUNT is not set +# CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_FEATURE_MOUNT_LABEL is not set +# CONFIG_FEATURE_MOUNT_NFS is not set +# CONFIG_FEATURE_MOUNT_CIFS is not set +# CONFIG_FEATURE_MOUNT_FLAGS is not set +# CONFIG_FEATURE_MOUNT_FSTAB is not set +# CONFIG_PIVOT_ROOT is not set +# CONFIG_RDATE is not set +CONFIG_RDEV=y +CONFIG_READPROFILE=y +CONFIG_RTCWAKE=y +CONFIG_SCRIPT=y +CONFIG_SCRIPTREPLAY=y +# CONFIG_SETARCH is not set +# CONFIG_SWAPONOFF is not set +# CONFIG_FEATURE_SWAPON_PRI is not set +CONFIG_SWITCH_ROOT=y +# CONFIG_UMOUNT is not set +# CONFIG_FEATURE_UMOUNT_ALL is not set +# CONFIG_FEATURE_MOUNT_LOOP is not set +# CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set +# CONFIG_FEATURE_MTAB_SUPPORT is not set +CONFIG_VOLUMEID=y + +# +# Filesystem/Volume identification +# +CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_FEATURE_VOLUMEID_BTRFS=y +CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_FEATURE_VOLUMEID_HFS=y +CONFIG_FEATURE_VOLUMEID_JFS=y +CONFIG_FEATURE_VOLUMEID_XFS=y +CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_FEATURE_VOLUMEID_UDF=y +CONFIG_FEATURE_VOLUMEID_LUKS=y +CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +CONFIG_FEATURE_VOLUMEID_CRAMFS=y +CONFIG_FEATURE_VOLUMEID_ROMFS=y +CONFIG_FEATURE_VOLUMEID_SYSV=y +CONFIG_FEATURE_VOLUMEID_OCFS2=y +CONFIG_FEATURE_VOLUMEID_LINUXRAID=y + +# +# Miscellaneous Utilities +# +# CONFIG_CONSPY is not set +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +CONFIG_FEATURE_LESS_MARKS=y +CONFIG_FEATURE_LESS_REGEXP=y +CONFIG_FEATURE_LESS_WINCH=y +CONFIG_FEATURE_LESS_ASK_TERMINAL=y +CONFIG_FEATURE_LESS_DASHCMD=y +CONFIG_FEATURE_LESS_LINENUMS=y +# CONFIG_NANDWRITE is not set +CONFIG_NANDDUMP=y +CONFIG_SETSERIAL=y +# CONFIG_UBIATTACH is not set +# CONFIG_UBIDETACH is not set +# CONFIG_UBIMKVOL is not set +# CONFIG_UBIRMVOL is not set +# CONFIG_UBIRSVOL is not set +# CONFIG_UBIUPDATEVOL is not set +# CONFIG_ADJTIMEX is not set +# CONFIG_BBCONFIG is not set +# CONFIG_FEATURE_COMPRESS_BBCONFIG is not set +CONFIG_BEEP=y +CONFIG_FEATURE_BEEP_FREQ=4000 +CONFIG_FEATURE_BEEP_LENGTH_MS=30 +CONFIG_CHAT=y +CONFIG_FEATURE_CHAT_NOFAIL=y +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +CONFIG_FEATURE_CHAT_IMPLICIT_CR=y +CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y +CONFIG_FEATURE_CHAT_SEND_ESCAPES=y +CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y +CONFIG_FEATURE_CHAT_CLR_ABORT=y +CONFIG_CHRT=y +CONFIG_CROND=y +CONFIG_FEATURE_CROND_D=y +CONFIG_FEATURE_CROND_CALL_SENDMAIL=y +CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_CRONTAB=y +CONFIG_DC=y +CONFIG_FEATURE_DC_LIBM=y +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +CONFIG_DEVMEM=y +# CONFIG_EJECT is not set +# CONFIG_FEATURE_EJECT_SCSI is not set +CONFIG_FBSPLASH=y +CONFIG_FLASHCP=y +CONFIG_FLASH_LOCK=y +CONFIG_FLASH_UNLOCK=y +# CONFIG_FLASH_ERASEALL is not set +# CONFIG_IONICE is not set +CONFIG_INOTIFYD=y +# CONFIG_LAST is not set +# CONFIG_FEATURE_LAST_SMALL is not set +# CONFIG_FEATURE_LAST_FANCY is not set +CONFIG_HDPARM=y +CONFIG_FEATURE_HDPARM_GET_IDENTITY=y +CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET=y +CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y +CONFIG_MAKEDEVS=y +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +CONFIG_FEATURE_MAKEDEVS_TABLE=y +CONFIG_MAN=y +# CONFIG_MICROCOM is not set +# CONFIG_MOUNTPOINT is not set +# CONFIG_MT is not set +CONFIG_RAIDAUTORUN=y +# CONFIG_READAHEAD is not set +# CONFIG_RFKILL is not set +# CONFIG_RUNLEVEL is not set +CONFIG_RX=y +CONFIG_SETSID=y +CONFIG_STRINGS=y +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +CONFIG_TIME=y +CONFIG_TIMEOUT=y +CONFIG_TTYSIZE=y +CONFIG_VOLNAME=y +# CONFIG_WALL is not set +# CONFIG_WATCHDOG is not set + +# +# Networking Utilities +# +# CONFIG_NAMEIF is not set +# CONFIG_FEATURE_NAMEIF_EXTENDED is not set +CONFIG_NBDCLIENT=y +CONFIG_NC=y +CONFIG_NC_SERVER=y +CONFIG_NC_EXTRA=y +# CONFIG_NC_110_COMPAT is not set +CONFIG_PING=y +# CONFIG_PING6 is not set +CONFIG_FEATURE_FANCY_PING=y +CONFIG_WHOIS=y +# CONFIG_FEATURE_IPV6 is not set +# CONFIG_FEATURE_UNIX_LOCAL is not set +# CONFIG_FEATURE_PREFER_IPV4_ADDRESS is not set +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +CONFIG_ARP=y +# CONFIG_ARPING is not set +# CONFIG_BRCTL is not set +# CONFIG_FEATURE_BRCTL_FANCY is not set +# CONFIG_FEATURE_BRCTL_SHOW is not set +CONFIG_DNSD=y +# CONFIG_ETHER_WAKE is not set +CONFIG_FAKEIDENTD=y +CONFIG_FTPD=y +CONFIG_FEATURE_FTP_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FTPGET=y +CONFIG_FTPPUT=y +# CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set +# CONFIG_HOSTNAME is not set +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_RANGES=y +CONFIG_FEATURE_HTTPD_USE_SENDFILE=y +CONFIG_FEATURE_HTTPD_SETUID=y +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +# CONFIG_FEATURE_HTTPD_AUTH_MD5 is not set +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_FEATURE_HTTPD_GZIP=y +CONFIG_IFCONFIG=y +CONFIG_FEATURE_IFCONFIG_STATUS=y +# CONFIG_FEATURE_IFCONFIG_SLIP is not set +CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y +CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +# CONFIG_IFENSLAVE is not set +# CONFIG_IFPLUGD is not set +CONFIG_IFUPDOWN=y +CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate" +CONFIG_FEATURE_IFUPDOWN_IP=y +CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN=y +# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set +CONFIG_FEATURE_IFUPDOWN_IPV4=y +# CONFIG_FEATURE_IFUPDOWN_IPV6 is not set +CONFIG_FEATURE_IFUPDOWN_MAPPING=y +CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP=y +# CONFIG_INETD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set +# CONFIG_FEATURE_INETD_RPC is not set +CONFIG_IP=y +CONFIG_FEATURE_IP_ADDRESS=y +CONFIG_FEATURE_IP_LINK=y +CONFIG_FEATURE_IP_ROUTE=y +CONFIG_FEATURE_IP_TUNNEL=y +CONFIG_FEATURE_IP_RULE=y +CONFIG_FEATURE_IP_SHORT_FORMS=y +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +CONFIG_IPADDR=y +CONFIG_IPLINK=y +CONFIG_IPROUTE=y +CONFIG_IPTUNNEL=y +CONFIG_IPRULE=y +CONFIG_IPCALC=y +CONFIG_FEATURE_IPCALC_FANCY=y +# CONFIG_FEATURE_IPCALC_LONG_OPTIONS is not set +CONFIG_NETSTAT=y +CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_FEATURE_NETSTAT_PRG=y +# CONFIG_NSLOOKUP is not set +# CONFIG_NTPD is not set +# CONFIG_FEATURE_NTPD_SERVER is not set +CONFIG_PSCAN=y +CONFIG_ROUTE=y +# CONFIG_SLATTACH is not set +CONFIG_TCPSVD=y +CONFIG_TELNET=y +CONFIG_FEATURE_TELNET_TTYPE=y +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +CONFIG_TELNETD=y +CONFIG_FEATURE_TELNETD_STANDALONE=y +CONFIG_FEATURE_TELNETD_INETD_WAIT=y +CONFIG_TFTP=y +CONFIG_TFTPD=y + +# +# Common options for tftp/tftpd +# +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +CONFIG_FEATURE_TFTP_BLOCKSIZE=y +CONFIG_FEATURE_TFTP_PROGRESS_BAR=y +# CONFIG_TFTP_DEBUG is not set +CONFIG_TRACEROUTE=y +# CONFIG_TRACEROUTE6 is not set +CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +CONFIG_TUNCTL=y +CONFIG_FEATURE_TUNCTL_UG=y +# CONFIG_UDHCPC6 is not set +# CONFIG_UDHCPD is not set +# CONFIG_DHCPRELAY is not set +# CONFIG_DUMPLEASES is not set +# CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set +# CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set +CONFIG_DHCPD_LEASES_FILE="" +CONFIG_UDHCPC=y +CONFIG_FEATURE_UDHCPC_ARPING=y +CONFIG_FEATURE_UDHCP_PORT=y +CONFIG_UDHCP_DEBUG=9 +CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_FEATURE_UDHCP_8021Q=y +CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n" +CONFIG_UDPSVD=y +CONFIG_VCONFIG=y +CONFIG_WGET=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +# CONFIG_FEATURE_WGET_LONG_OPTIONS is not set +CONFIG_FEATURE_WGET_TIMEOUT=y +# CONFIG_ZCIP is not set + +# +# Print Utilities +# +CONFIG_LPD=y +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +CONFIG_MAKEMIME=y +CONFIG_FEATURE_MIME_CHARSET="us-ascii" +CONFIG_POPMAILDIR=y +CONFIG_FEATURE_POPMAILDIR_DELIVERY=y +CONFIG_REFORMIME=y +CONFIG_FEATURE_REFORMIME_COMPAT=y +CONFIG_SENDMAIL=y + +# +# Process Utilities +# +CONFIG_IOSTAT=y +CONFIG_MPSTAT=y +CONFIG_NMETER=y +CONFIG_PMAP=y +CONFIG_POWERTOP=y +CONFIG_PSTREE=y +CONFIG_PWDX=y +CONFIG_SMEMCAP=y +CONFIG_UPTIME=y +# CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set +CONFIG_FREE=y +CONFIG_FUSER=y +# CONFIG_KILL is not set +# CONFIG_KILLALL is not set +# CONFIG_KILLALL5 is not set +# CONFIG_PGREP is not set +CONFIG_PIDOF=y +CONFIG_FEATURE_PIDOF_SINGLE=y +CONFIG_FEATURE_PIDOF_OMIT=y +# CONFIG_PKILL is not set +CONFIG_PS=y +# CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_FEATURE_PS_LONG is not set +CONFIG_FEATURE_PS_TIME=y +CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS=y +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +CONFIG_RENICE=y +CONFIG_BB_SYSCTL=y +CONFIG_TOP=y +CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +CONFIG_FEATURE_TOP_SMP_CPU=y +CONFIG_FEATURE_TOP_DECIMALS=y +CONFIG_FEATURE_TOP_SMP_PROCESS=y +CONFIG_FEATURE_TOPMEM=y +CONFIG_FEATURE_SHOW_THREADS=y +CONFIG_WATCH=y + +# +# Runit Utilities +# +CONFIG_RUNSV=y +CONFIG_RUNSVDIR=y +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +CONFIG_SV=y +CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service" +CONFIG_SVLOGD=y +CONFIG_CHPST=y +CONFIG_SETUIDGID=y +CONFIG_ENVUIDGID=y +CONFIG_ENVDIR=y +CONFIG_SOFTLIMIT=y +# CONFIG_CHCON is not set +# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RESTORECON is not set +# CONFIG_RUNCON is not set +# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_SETSEBOOL is not set +# CONFIG_SESTATUS is not set + +# +# Shells +# +# CONFIG_ASH is not set +# CONFIG_ASH_BASH_COMPAT is not set +# CONFIG_ASH_IDLE_TIMEOUT is not set +# CONFIG_ASH_JOB_CONTROL is not set +# CONFIG_ASH_ALIAS is not set +# CONFIG_ASH_GETOPTS is not set +# CONFIG_ASH_ECHO is not set +# CONFIG_ASH_PRINTF is not set +# CONFIG_ASH_TEST is not set +# CONFIG_ASH_CMDCMD is not set +# CONFIG_ASH_MAIL is not set +# CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_ASH_RANDOM_SUPPORT is not set +# CONFIG_ASH_EXPAND_PRMT is not set +CONFIG_CTTYHACK=y +# CONFIG_HUSH is not set +# CONFIG_HUSH_BASH_COMPAT is not set +# CONFIG_HUSH_BRACE_EXPANSION is not set +# CONFIG_HUSH_HELP is not set +# CONFIG_HUSH_INTERACTIVE is not set +# CONFIG_HUSH_SAVEHISTORY is not set +# CONFIG_HUSH_JOB is not set +# CONFIG_HUSH_TICK is not set +# CONFIG_HUSH_IF is not set +# CONFIG_HUSH_LOOPS is not set +# CONFIG_HUSH_CASE is not set +# CONFIG_HUSH_FUNCTIONS is not set +# CONFIG_HUSH_LOCAL is not set +# CONFIG_HUSH_RANDOM_SUPPORT is not set +# CONFIG_HUSH_EXPORT_N is not set +# CONFIG_HUSH_MODE_X is not set +# CONFIG_FEATURE_SH_IS_ASH is not set +# CONFIG_FEATURE_SH_IS_HUSH is not set +CONFIG_FEATURE_SH_IS_NONE=y +# CONFIG_FEATURE_BASH_IS_ASH is not set +# CONFIG_FEATURE_BASH_IS_HUSH is not set +CONFIG_FEATURE_BASH_IS_NONE=y +# CONFIG_SH_MATH_SUPPORT is not set +# CONFIG_SH_MATH_SUPPORT_64 is not set +# CONFIG_FEATURE_SH_EXTRA_QUIET is not set +# CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_FEATURE_SH_NOFORK is not set +# CONFIG_FEATURE_SH_HISTFILESIZE is not set + +# +# System Logging Utilities +# +# CONFIG_SYSLOGD is not set +# CONFIG_FEATURE_ROTATE_LOGFILE is not set +# CONFIG_FEATURE_REMOTE_LOG is not set +# CONFIG_FEATURE_SYSLOGD_DUP is not set +# CONFIG_FEATURE_SYSLOGD_CFG is not set +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 +# CONFIG_FEATURE_IPC_SYSLOG is not set +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 +# CONFIG_LOGREAD is not set +# CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set +CONFIG_KLOGD=y +CONFIG_FEATURE_KLOGD_KLOGCTL=y +# CONFIG_LOGGER is not set diff --git a/busybox-1_37_0/configs/android_ndk_defconfig b/busybox-1_37_0/configs/android_ndk_defconfig new file mode 100644 index 000000000..425593454 --- /dev/null +++ b/busybox-1_37_0/configs/android_ndk_defconfig @@ -0,0 +1,1042 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.24.0.git +# Fri Sep 18 20:39:29 2015 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +CONFIG_DESKTOP=y +# CONFIG_EXTRA_COMPAT is not set +# CONFIG_INCLUDE_SUSv2 is not set +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_SHOW_USAGE=y +CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_FEATURE_COMPRESS_USAGE=y +CONFIG_FEATURE_INSTALLER=y +CONFIG_INSTALL_NO_USR=y +# CONFIG_LOCALE_SUPPORT is not set +# CONFIG_UNICODE_SUPPORT is not set +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=0 +CONFIG_LAST_SUPPORTED_WCHAR=0 +# CONFIG_UNICODE_COMBINING_WCHARS is not set +# CONFIG_UNICODE_WIDE_WCHARS is not set +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +# CONFIG_UNICODE_PRESERVE_BROKEN is not set +# CONFIG_PAM is not set +CONFIG_FEATURE_USE_SENDFILE=y +CONFIG_LONG_OPTS=y +# CONFIG_FEATURE_DEVPTS is not set +# CONFIG_FEATURE_CLEAN_UP is not set +# CONFIG_FEATURE_UTMP is not set +# CONFIG_FEATURE_WTMP is not set +# CONFIG_FEATURE_PIDFILE is not set +CONFIG_PID_FILE_PATH="" +# CONFIG_FEATURE_SUID is not set +# CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_FEATURE_SUID_CONFIG_QUIET is not set +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +# CONFIG_LFS is not set +CONFIG_CROSS_COMPILER_PREFIX="arm-linux-androideabi-" +CONFIG_SYSROOT="/opt/android-ndk/platforms/android-9/arch-arm" +CONFIG_EXTRA_CFLAGS="-DANDROID -D__ANDROID__ -DSK_RELEASE -nostdlib -march=armv7-a -msoft-float -mfloat-abi=softfp -mfpu=neon -mthumb -mthumb-interwork -fpic -fno-short-enums -fgcse-after-reload -frename-registers -fuse-ld=bfd" +CONFIG_EXTRA_LDFLAGS="-Xlinker -z -Xlinker muldefs -nostdlib -Bdynamic -Xlinker -dynamic-linker -Xlinker /system/bin/linker -Xlinker -z -Xlinker nocopyreloc -Xlinker --no-undefined ${SYSROOT}/usr/lib/crtbegin_dynamic.o ${SYSROOT}/usr/lib/crtend_android.o" +CONFIG_EXTRA_LDLIBS="dl m c gcc" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_UNIT_TEST is not set +# CONFIG_WERROR is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options ("make install" behavior) +# +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +# CONFIG_FEATURE_RTMINMAX is not set +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +CONFIG_SHA3_SMALL=1 +# CONFIG_FEATURE_FAST_TOP is not set +# CONFIG_FEATURE_ETC_NETWORKS is not set +# CONFIG_FEATURE_EDITING is not set +CONFIG_FEATURE_EDITING_MAX_LEN=0 +# CONFIG_FEATURE_EDITING_VI is not set +CONFIG_FEATURE_EDITING_HISTORY=0 +# CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +# CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set +# CONFIG_FEATURE_REVERSE_SEARCH is not set +# CONFIG_FEATURE_TAB_COMPLETION is not set +# CONFIG_FEATURE_USERNAME_COMPLETION is not set +# CONFIG_FEATURE_EDITING_FANCY_PROMPT is not set +# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +# CONFIG_FEATURE_NON_POSIX_CP is not set +CONFIG_FEATURE_VERBOSE_CP_MESSAGE=y +CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_FEATURE_SKIP_ROOTFS is not set +# CONFIG_MONOTONIC_SYSCALL is not set +# CONFIG_IOCTL_HEX2STR_ERROR is not set +# CONFIG_FEATURE_HWIB is not set + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_XZ=y +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +CONFIG_AR=y +CONFIG_FEATURE_AR_LONG_FILENAMES=y +CONFIG_FEATURE_AR_CREATE=y +CONFIG_UNCOMPRESS=y +CONFIG_GUNZIP=y +CONFIG_BUNZIP2=y +CONFIG_UNLZMA=y +CONFIG_FEATURE_LZMA_FAST=y +CONFIG_LZMA=y +CONFIG_UNXZ=y +CONFIG_XZ=y +CONFIG_BZIP2=y +CONFIG_CPIO=y +CONFIG_FEATURE_CPIO_O=y +CONFIG_FEATURE_CPIO_P=y +CONFIG_DPKG=y +CONFIG_DPKG_DEB=y +CONFIG_GZIP=y +# CONFIG_FEATURE_GZIP_LONG_OPTIONS is not set +CONFIG_GZIP_FAST=0 +# CONFIG_FEATURE_GZIP_LEVELS is not set +CONFIG_LZOP=y +CONFIG_LZOP_COMPR_HIGH=y +CONFIG_RPM=y +CONFIG_RPM2CPIO=y +CONFIG_TAR=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +# CONFIG_FEATURE_TAR_LONG_OPTIONS is not set +# CONFIG_FEATURE_TAR_TO_COMMAND is not set +CONFIG_FEATURE_TAR_UNAME_GNAME=y +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +# CONFIG_FEATURE_TAR_SELINUX is not set +CONFIG_UNZIP=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAT=y +# CONFIG_DATE is not set +# CONFIG_FEATURE_DATE_ISOFMT is not set +# CONFIG_FEATURE_DATE_NANO is not set +# CONFIG_FEATURE_DATE_COMPAT is not set +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +CONFIG_FEATURE_DD_STATUS=y +# CONFIG_HOSTID is not set +# CONFIG_ID is not set +# CONFIG_GROUPS is not set +CONFIG_SHUF=y +CONFIG_SYNC=y +# CONFIG_FEATURE_SYNC_FANCY is not set +CONFIG_TEST=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TOUCH=y +CONFIG_FEATURE_TOUCH_SUSV3=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +CONFIG_TRUNCATE=y +CONFIG_UNLINK=y +CONFIG_BASE64=y +# CONFIG_WHO is not set +# CONFIG_USERS is not set +CONFIG_CAL=y +CONFIG_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +# CONFIG_FEATURE_CHOWN_LONG_OPTIONS is not set +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_COMM=y +CONFIG_CP=y +# CONFIG_FEATURE_CP_LONG_OPTIONS is not set +CONFIG_CUT=y +# CONFIG_DF is not set +# CONFIG_FEATURE_DF_FANCY is not set +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +# CONFIG_FEATURE_ENV_LONG_OPTIONS is not set +CONFIG_EXPAND=y +# CONFIG_FEATURE_EXPAND_LONG_OPTIONS is not set +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FALSE=y +CONFIG_FOLD=y +CONFIG_FSYNC=y +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_INSTALL=y +# CONFIG_FEATURE_INSTALL_LONG_OPTIONS is not set +CONFIG_LN=y +# CONFIG_LOGNAME is not set +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +CONFIG_FEATURE_LS_COLOR=y +# CONFIG_FEATURE_LS_COLOR_IS_DEFAULT is not set +CONFIG_MD5SUM=y +CONFIG_MKDIR=y +# CONFIG_FEATURE_MKDIR_LONG_OPTIONS is not set +CONFIG_MKFIFO=y +CONFIG_MKNOD=y +CONFIG_MV=y +# CONFIG_FEATURE_MV_LONG_OPTIONS is not set +CONFIG_NICE=y +CONFIG_NOHUP=y +CONFIG_OD=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +# CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_SEQ=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SHA3SUM=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_FEATURE_FLOAT_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +# CONFIG_STAT is not set +# CONFIG_FEATURE_STAT_FORMAT is not set +CONFIG_STTY=y +CONFIG_SUM=y +CONFIG_TAC=y +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TRUE=y +# CONFIG_TTY is not set +CONFIG_UNAME=y +CONFIG_UNAME_OSNAME="GNU/Linux" +CONFIG_UNEXPAND=y +# CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS is not set +CONFIG_UNIQ=y +CONFIG_USLEEP=y +CONFIG_UUDECODE=y +CONFIG_UUENCODE=y +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options +# +CONFIG_FEATURE_VERBOSE=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +CONFIG_CHVT=y +CONFIG_FGCONSOLE=y +CONFIG_CLEAR=y +CONFIG_DEALLOCVT=y +CONFIG_DUMPKMAP=y +# CONFIG_KBD_MODE is not set +# CONFIG_LOADFONT is not set +CONFIG_LOADKMAP=y +CONFIG_OPENVT=y +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +CONFIG_SETCONSOLE=y +# CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set +# CONFIG_SETFONT is not set +# CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set +CONFIG_DEFAULT_SETFONT_DIR="" +CONFIG_SETKEYCODES=y +CONFIG_SETLOGCONS=y +CONFIG_SHOWKEY=y +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set + +# +# Debian Utilities +# +CONFIG_MKTEMP=y +CONFIG_PIPE_PROGRESS=y +CONFIG_RUN_PARTS=y +# CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS is not set +CONFIG_FEATURE_RUN_PARTS_FANCY=y +CONFIG_START_STOP_DAEMON=y +CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y +# CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +CONFIG_WHICH=y + +# +# Editors +# +CONFIG_AWK=y +CONFIG_FEATURE_AWK_LIBM=y +CONFIG_FEATURE_AWK_GNU_EXTENSIONS=y +CONFIG_CMP=y +CONFIG_DIFF=y +# CONFIG_FEATURE_DIFF_LONG_OPTIONS is not set +CONFIG_FEATURE_DIFF_DIR=y +CONFIG_ED=y +CONFIG_PATCH=y +CONFIG_SED=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=4096 +CONFIG_FEATURE_VI_8BIT=y +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +# CONFIG_FEATURE_VI_REGEX_SEARCH is not set +CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_FEATURE_VI_READONLY=y +CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_FEATURE_VI_SET=y +CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_FEATURE_VI_ASK_TERMINAL=y +CONFIG_FEATURE_VI_UNDO=y +CONFIG_FEATURE_VI_UNDO_QUEUE=y +CONFIG_FEATURE_VI_UNDO_QUEUE_MAX=256 +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +CONFIG_FEATURE_FIND_INUM=y +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_EXEC_PLUS=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +CONFIG_FEATURE_FIND_DELETE=y +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set +CONFIG_FEATURE_FIND_LINKS=y +CONFIG_GREP=y +CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y +CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR=y + +# +# Init Utilities +# +CONFIG_BOOTCHARTD=y +CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER=y +CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE=y +CONFIG_HALT=y +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +CONFIG_INIT=y +CONFIG_FEATURE_USE_INITTAB=y +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +CONFIG_FEATURE_INIT_SCTTY=y +CONFIG_FEATURE_INIT_SYSLOG=y +CONFIG_FEATURE_INIT_QUIET=y +CONFIG_FEATURE_INIT_COREDUMPS=y +CONFIG_LINUXRC=y +CONFIG_INIT_TERMINAL_TYPE="linux" +CONFIG_MESG=y +CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP=y + +# +# Login/Password Management Utilities +# +# CONFIG_ADD_SHELL is not set +# CONFIG_REMOVE_SHELL is not set +# CONFIG_FEATURE_SHADOWPASSWDS is not set +# CONFIG_USE_BB_PWD_GRP is not set +# CONFIG_USE_BB_SHADOW is not set +CONFIG_USE_BB_CRYPT=y +CONFIG_USE_BB_CRYPT_SHA=y +# CONFIG_ADDUSER is not set +# CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set +# CONFIG_FEATURE_CHECK_NAMES is not set +CONFIG_LAST_ID=0 +CONFIG_FIRST_SYSTEM_ID=0 +CONFIG_LAST_SYSTEM_ID=0 +# CONFIG_ADDGROUP is not set +# CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS is not set +# CONFIG_FEATURE_ADDUSER_TO_GROUP is not set +# CONFIG_DELUSER is not set +# CONFIG_DELGROUP is not set +# CONFIG_FEATURE_DEL_USER_FROM_GROUP is not set +# CONFIG_GETTY is not set +# CONFIG_LOGIN is not set +# CONFIG_LOGIN_SESSION_AS_CHILD is not set +# CONFIG_LOGIN_SCRIPTS is not set +# CONFIG_FEATURE_NOLOGIN is not set +# CONFIG_FEATURE_SECURETTY is not set +# CONFIG_PASSWD is not set +# CONFIG_FEATURE_PASSWD_WEAK_CHECK is not set +# CONFIG_CRYPTPW is not set +# CONFIG_CHPASSWD is not set +CONFIG_FEATURE_DEFAULT_PASSWD_ALGO="" +# CONFIG_SU is not set +# CONFIG_FEATURE_SU_SYSLOG is not set +# CONFIG_FEATURE_SU_CHECKS_SHELLS is not set +# CONFIG_SULOGIN is not set +# CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +# CONFIG_FSCK is not set +CONFIG_LSATTR=y +CONFIG_TUNE2FS=y + +# +# Linux Module Utilities +# +CONFIG_MODINFO=y +CONFIG_MODPROBE_SMALL=y +CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE=y +CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y +# CONFIG_INSMOD is not set +# CONFIG_RMMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +CONFIG_DEFAULT_MODULES_DIR="/system/lib/modules" +CONFIG_DEFAULT_DEPMOD_FILE="modules.dep" + +# +# Linux System Utilities +# +CONFIG_BLOCKDEV=y +CONFIG_FATATTR=y +CONFIG_FSTRIM=y +# CONFIG_MDEV is not set +# CONFIG_FEATURE_MDEV_CONF is not set +# CONFIG_FEATURE_MDEV_RENAME is not set +# CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set +# CONFIG_FEATURE_MDEV_EXEC is not set +# CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set +# CONFIG_MOUNT is not set +# CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_FEATURE_MOUNT_LABEL is not set +# CONFIG_FEATURE_MOUNT_NFS is not set +# CONFIG_FEATURE_MOUNT_CIFS is not set +# CONFIG_FEATURE_MOUNT_FLAGS is not set +# CONFIG_FEATURE_MOUNT_FSTAB is not set +# CONFIG_FEATURE_MOUNT_OTHERTAB is not set +CONFIG_REV=y +CONFIG_UEVENT=y +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +CONFIG_BLKID=y +CONFIG_FEATURE_BLKID_TYPE=y +CONFIG_DMESG=y +CONFIG_FEATURE_DMESG_PRETTY=y +CONFIG_FBSET=y +CONFIG_FEATURE_FBSET_FANCY=y +CONFIG_FEATURE_FBSET_READMODE=y +CONFIG_FDFLUSH=y +CONFIG_FDFORMAT=y +CONFIG_FDISK=y +CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +CONFIG_FEATURE_FDISK_WRITABLE=y +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +# CONFIG_FEATURE_GPT_LABEL is not set +CONFIG_FEATURE_FDISK_ADVANCED=y +CONFIG_FINDFS=y +CONFIG_FLOCK=y +CONFIG_FREERAMDISK=y +# CONFIG_FSCK_MINIX is not set +# CONFIG_MKFS_EXT2 is not set +# CONFIG_MKFS_MINIX is not set +# CONFIG_FEATURE_MINIX2 is not set +# CONFIG_MKFS_REISER is not set +# CONFIG_MKFS_VFAT is not set +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +CONFIG_FEATURE_HEXDUMP_REVERSE=y +CONFIG_HD=y +CONFIG_HWCLOCK=y +# CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_IPCRM is not set +# CONFIG_IPCS is not set +CONFIG_LOSETUP=y +CONFIG_LSPCI=y +CONFIG_LSUSB=y +CONFIG_MKSWAP=y +CONFIG_FEATURE_MKSWAP_UUID=y +CONFIG_MORE=y +# CONFIG_PIVOT_ROOT is not set +# CONFIG_RDATE is not set +CONFIG_RDEV=y +CONFIG_READPROFILE=y +CONFIG_RTCWAKE=y +CONFIG_SCRIPT=y +CONFIG_SCRIPTREPLAY=y +# CONFIG_SETARCH is not set +# CONFIG_SWAPONOFF is not set +# CONFIG_FEATURE_SWAPON_DISCARD is not set +# CONFIG_FEATURE_SWAPON_PRI is not set +CONFIG_SWITCH_ROOT=y +# CONFIG_UMOUNT is not set +# CONFIG_FEATURE_UMOUNT_ALL is not set +# CONFIG_FEATURE_MOUNT_LOOP is not set +# CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set +# CONFIG_FEATURE_MTAB_SUPPORT is not set +CONFIG_VOLUMEID=y + +# +# Filesystem/Volume identification +# +CONFIG_FEATURE_VOLUMEID_BTRFS=y +CONFIG_FEATURE_VOLUMEID_CRAMFS=y +CONFIG_FEATURE_VOLUMEID_EXFAT=y +CONFIG_FEATURE_VOLUMEID_EXT=y +CONFIG_FEATURE_VOLUMEID_F2FS=y +CONFIG_FEATURE_VOLUMEID_FAT=y +CONFIG_FEATURE_VOLUMEID_HFS=y +CONFIG_FEATURE_VOLUMEID_ISO9660=y +CONFIG_FEATURE_VOLUMEID_JFS=y +CONFIG_FEATURE_VOLUMEID_LINUXRAID=y +CONFIG_FEATURE_VOLUMEID_LINUXSWAP=y +CONFIG_FEATURE_VOLUMEID_LUKS=y +CONFIG_FEATURE_VOLUMEID_NILFS=y +CONFIG_FEATURE_VOLUMEID_NTFS=y +CONFIG_FEATURE_VOLUMEID_OCFS2=y +CONFIG_FEATURE_VOLUMEID_REISERFS=y +CONFIG_FEATURE_VOLUMEID_ROMFS=y +CONFIG_FEATURE_VOLUMEID_SQUASHFS=y +CONFIG_FEATURE_VOLUMEID_SYSV=y +CONFIG_FEATURE_VOLUMEID_UDF=y +CONFIG_FEATURE_VOLUMEID_XFS=y + +# +# Miscellaneous Utilities +# +# CONFIG_CONSPY is not set +CONFIG_CROND=y +CONFIG_FEATURE_CROND_D=y +CONFIG_FEATURE_CROND_CALL_SENDMAIL=y +CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_I2CGET=y +CONFIG_I2CSET=y +CONFIG_I2CDUMP=y +CONFIG_I2CDETECT=y +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +CONFIG_FEATURE_LESS_TRUNCATE=y +CONFIG_FEATURE_LESS_MARKS=y +CONFIG_FEATURE_LESS_REGEXP=y +CONFIG_FEATURE_LESS_WINCH=y +CONFIG_FEATURE_LESS_ASK_TERMINAL=y +CONFIG_FEATURE_LESS_DASHCMD=y +CONFIG_FEATURE_LESS_LINENUMS=y +# CONFIG_NANDWRITE is not set +CONFIG_NANDDUMP=y +# CONFIG_RFKILL is not set +CONFIG_SETSERIAL=y +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +# CONFIG_UBIATTACH is not set +# CONFIG_UBIDETACH is not set +# CONFIG_UBIMKVOL is not set +# CONFIG_UBIRMVOL is not set +# CONFIG_UBIRSVOL is not set +# CONFIG_UBIUPDATEVOL is not set +# CONFIG_WALL is not set +# CONFIG_ADJTIMEX is not set +CONFIG_BBCONFIG=y +CONFIG_FEATURE_COMPRESS_BBCONFIG=y +CONFIG_BEEP=y +CONFIG_FEATURE_BEEP_FREQ=4000 +CONFIG_FEATURE_BEEP_LENGTH_MS=30 +CONFIG_CHAT=y +CONFIG_FEATURE_CHAT_NOFAIL=y +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +CONFIG_FEATURE_CHAT_IMPLICIT_CR=y +CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y +CONFIG_FEATURE_CHAT_SEND_ESCAPES=y +CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y +CONFIG_FEATURE_CHAT_CLR_ABORT=y +CONFIG_CHRT=y +CONFIG_CRONTAB=y +CONFIG_DC=y +CONFIG_FEATURE_DC_LIBM=y +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +CONFIG_DEVMEM=y +# CONFIG_EJECT is not set +# CONFIG_FEATURE_EJECT_SCSI is not set +CONFIG_FBSPLASH=y +CONFIG_FLASHCP=y +CONFIG_FLASH_LOCK=y +CONFIG_FLASH_UNLOCK=y +# CONFIG_FLASH_ERASEALL is not set +# CONFIG_IONICE is not set +CONFIG_INOTIFYD=y +# CONFIG_LAST is not set +# CONFIG_FEATURE_LAST_SMALL is not set +# CONFIG_FEATURE_LAST_FANCY is not set +CONFIG_HDPARM=y +CONFIG_FEATURE_HDPARM_GET_IDENTITY=y +CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET=y +CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF=y +CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA=y +CONFIG_MAKEDEVS=y +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +CONFIG_FEATURE_MAKEDEVS_TABLE=y +CONFIG_MAN=y +# CONFIG_MICROCOM is not set +# CONFIG_MOUNTPOINT is not set +# CONFIG_MT is not set +CONFIG_RAIDAUTORUN=y +# CONFIG_READAHEAD is not set +# CONFIG_RUNLEVEL is not set +CONFIG_RX=y +CONFIG_SETSID=y +CONFIG_STRINGS=y +CONFIG_TIME=y +CONFIG_TIMEOUT=y +CONFIG_TTYSIZE=y +CONFIG_VOLNAME=y +# CONFIG_WATCHDOG is not set + +# +# Networking Utilities +# +# CONFIG_NAMEIF is not set +# CONFIG_FEATURE_NAMEIF_EXTENDED is not set +CONFIG_NBDCLIENT=y +CONFIG_NC=y +CONFIG_NC_SERVER=y +CONFIG_NC_EXTRA=y +# CONFIG_NC_110_COMPAT is not set +CONFIG_PING=y +# CONFIG_PING6 is not set +CONFIG_FEATURE_FANCY_PING=y +CONFIG_WHOIS=y +# CONFIG_FEATURE_IPV6 is not set +# CONFIG_FEATURE_UNIX_LOCAL is not set +# CONFIG_FEATURE_PREFER_IPV4_ADDRESS is not set +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +CONFIG_ARP=y +# CONFIG_ARPING is not set +# CONFIG_BRCTL is not set +# CONFIG_FEATURE_BRCTL_FANCY is not set +# CONFIG_FEATURE_BRCTL_SHOW is not set +CONFIG_DNSD=y +# CONFIG_ETHER_WAKE is not set +CONFIG_FAKEIDENTD=y +CONFIG_FTPD=y +CONFIG_FEATURE_FTP_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FEATURE_FTP_AUTHENTICATION=y +CONFIG_FTPGET=y +CONFIG_FTPPUT=y +# CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS is not set +# CONFIG_HOSTNAME is not set +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_RANGES=y +CONFIG_FEATURE_HTTPD_SETUID=y +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +# CONFIG_FEATURE_HTTPD_AUTH_MD5 is not set +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_FEATURE_HTTPD_GZIP=y +CONFIG_IFCONFIG=y +CONFIG_FEATURE_IFCONFIG_STATUS=y +# CONFIG_FEATURE_IFCONFIG_SLIP is not set +CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ=y +CONFIG_FEATURE_IFCONFIG_HW=y +CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS=y +# CONFIG_IFENSLAVE is not set +# CONFIG_IFPLUGD is not set +CONFIG_IFUPDOWN=y +CONFIG_IFUPDOWN_IFSTATE_PATH="/var/run/ifstate" +CONFIG_FEATURE_IFUPDOWN_IP=y +CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN=y +# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set +CONFIG_FEATURE_IFUPDOWN_IPV4=y +# CONFIG_FEATURE_IFUPDOWN_IPV6 is not set +CONFIG_FEATURE_IFUPDOWN_MAPPING=y +CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP=y +# CONFIG_INETD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set +# CONFIG_FEATURE_INETD_RPC is not set +CONFIG_IP=y +CONFIG_FEATURE_IP_ADDRESS=y +CONFIG_FEATURE_IP_LINK=y +CONFIG_FEATURE_IP_ROUTE=y +CONFIG_FEATURE_IP_TUNNEL=y +CONFIG_FEATURE_IP_RULE=y +CONFIG_FEATURE_IP_SHORT_FORMS=y +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +CONFIG_IPADDR=y +CONFIG_IPLINK=y +CONFIG_IPROUTE=y +CONFIG_IPTUNNEL=y +CONFIG_IPRULE=y +CONFIG_IPCALC=y +CONFIG_FEATURE_IPCALC_FANCY=y +# CONFIG_FEATURE_IPCALC_LONG_OPTIONS is not set +CONFIG_NETSTAT=y +CONFIG_FEATURE_NETSTAT_WIDE=y +CONFIG_FEATURE_NETSTAT_PRG=y +# CONFIG_NSLOOKUP is not set +# CONFIG_NTPD is not set +# CONFIG_FEATURE_NTPD_SERVER is not set +# CONFIG_FEATURE_NTPD_CONF is not set +CONFIG_PSCAN=y +CONFIG_ROUTE=y +# CONFIG_SLATTACH is not set +CONFIG_TCPSVD=y +CONFIG_TELNET=y +CONFIG_FEATURE_TELNET_TTYPE=y +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +CONFIG_TELNETD=y +CONFIG_FEATURE_TELNETD_STANDALONE=y +CONFIG_FEATURE_TELNETD_INETD_WAIT=y +CONFIG_TFTP=y +CONFIG_TFTPD=y + +# +# Common options for tftp/tftpd +# +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +CONFIG_FEATURE_TFTP_BLOCKSIZE=y +CONFIG_FEATURE_TFTP_PROGRESS_BAR=y +# CONFIG_TFTP_DEBUG is not set +CONFIG_TRACEROUTE=y +# CONFIG_TRACEROUTE6 is not set +CONFIG_FEATURE_TRACEROUTE_VERBOSE=y +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +CONFIG_TUNCTL=y +CONFIG_FEATURE_TUNCTL_UG=y +# CONFIG_UDHCPC6 is not set +# CONFIG_UDHCPD is not set +# CONFIG_DHCPRELAY is not set +# CONFIG_DUMPLEASES is not set +# CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set +# CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set +CONFIG_DHCPD_LEASES_FILE="" +CONFIG_UDHCPC=y +CONFIG_FEATURE_UDHCPC_ARPING=y +CONFIG_FEATURE_UDHCPC_SANITIZEOPT=y +CONFIG_FEATURE_UDHCP_PORT=y +CONFIG_UDHCP_DEBUG=9 +CONFIG_FEATURE_UDHCP_RFC3397=y +CONFIG_FEATURE_UDHCP_8021Q=y +CONFIG_UDHCPC_DEFAULT_SCRIPT="/usr/share/udhcpc/default.script" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=80 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="-R -n" +CONFIG_UDPSVD=y +CONFIG_VCONFIG=y +CONFIG_WGET=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +# CONFIG_FEATURE_WGET_LONG_OPTIONS is not set +CONFIG_FEATURE_WGET_TIMEOUT=y +# CONFIG_ZCIP is not set + +# +# Print Utilities +# +CONFIG_LPD=y +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +CONFIG_MAKEMIME=y +CONFIG_FEATURE_MIME_CHARSET="us-ascii" +CONFIG_POPMAILDIR=y +CONFIG_FEATURE_POPMAILDIR_DELIVERY=y +CONFIG_REFORMIME=y +CONFIG_FEATURE_REFORMIME_COMPAT=y +CONFIG_SENDMAIL=y + +# +# Process Utilities +# +CONFIG_IOSTAT=y +CONFIG_LSOF=y +CONFIG_MPSTAT=y +CONFIG_NMETER=y +CONFIG_PMAP=y +CONFIG_POWERTOP=y +CONFIG_PSTREE=y +CONFIG_PWDX=y +CONFIG_SMEMCAP=y +CONFIG_TOP=y +CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +CONFIG_FEATURE_TOP_SMP_CPU=y +CONFIG_FEATURE_TOP_DECIMALS=y +CONFIG_FEATURE_TOP_SMP_PROCESS=y +CONFIG_FEATURE_TOPMEM=y +CONFIG_UPTIME=y +# CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set +CONFIG_FREE=y +CONFIG_FUSER=y +# CONFIG_KILL is not set +# CONFIG_KILLALL is not set +# CONFIG_KILLALL5 is not set +# CONFIG_PGREP is not set +CONFIG_PIDOF=y +CONFIG_FEATURE_PIDOF_SINGLE=y +CONFIG_FEATURE_PIDOF_OMIT=y +# CONFIG_PKILL is not set +CONFIG_PS=y +# CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_FEATURE_PS_LONG is not set +CONFIG_FEATURE_PS_TIME=y +CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS=y +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +CONFIG_RENICE=y +CONFIG_BB_SYSCTL=y +CONFIG_FEATURE_SHOW_THREADS=y +CONFIG_WATCH=y + +# +# Runit Utilities +# +CONFIG_RUNSV=y +CONFIG_RUNSVDIR=y +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +CONFIG_SV=y +CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service" +CONFIG_SVLOGD=y +CONFIG_CHPST=y +CONFIG_SETUIDGID=y +CONFIG_ENVUIDGID=y +CONFIG_ENVDIR=y +CONFIG_SOFTLIMIT=y +# CONFIG_CHCON is not set +# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RESTORECON is not set +# CONFIG_RUNCON is not set +# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_SETSEBOOL is not set +# CONFIG_SESTATUS is not set + +# +# Shells +# +# CONFIG_ASH is not set +# CONFIG_ASH_BASH_COMPAT is not set +# CONFIG_ASH_IDLE_TIMEOUT is not set +# CONFIG_ASH_JOB_CONTROL is not set +# CONFIG_ASH_ALIAS is not set +# CONFIG_ASH_GETOPTS is not set +# CONFIG_ASH_ECHO is not set +# CONFIG_ASH_PRINTF is not set +# CONFIG_ASH_TEST is not set +# CONFIG_ASH_HELP is not set +# CONFIG_ASH_CMDCMD is not set +# CONFIG_ASH_MAIL is not set +# CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_ASH_RANDOM_SUPPORT is not set +# CONFIG_ASH_EXPAND_PRMT is not set +CONFIG_CTTYHACK=y +# CONFIG_HUSH is not set +# CONFIG_HUSH_BASH_COMPAT is not set +# CONFIG_HUSH_BRACE_EXPANSION is not set +# CONFIG_HUSH_HELP is not set +# CONFIG_HUSH_INTERACTIVE is not set +# CONFIG_HUSH_SAVEHISTORY is not set +# CONFIG_HUSH_JOB is not set +# CONFIG_HUSH_TICK is not set +# CONFIG_HUSH_IF is not set +# CONFIG_HUSH_LOOPS is not set +# CONFIG_HUSH_CASE is not set +# CONFIG_HUSH_FUNCTIONS is not set +# CONFIG_HUSH_LOCAL is not set +# CONFIG_HUSH_RANDOM_SUPPORT is not set +# CONFIG_HUSH_EXPORT_N is not set +# CONFIG_HUSH_MODE_X is not set +# CONFIG_FEATURE_SH_IS_ASH is not set +# CONFIG_FEATURE_SH_IS_HUSH is not set +CONFIG_FEATURE_SH_IS_NONE=y +# CONFIG_FEATURE_BASH_IS_ASH is not set +# CONFIG_FEATURE_BASH_IS_HUSH is not set +CONFIG_FEATURE_BASH_IS_NONE=y +# CONFIG_SH_MATH_SUPPORT is not set +# CONFIG_SH_MATH_SUPPORT_64 is not set +# CONFIG_FEATURE_SH_EXTRA_QUIET is not set +# CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_FEATURE_SH_NOFORK is not set +# CONFIG_FEATURE_SH_HISTFILESIZE is not set + +# +# System Logging Utilities +# +# CONFIG_SYSLOGD is not set +# CONFIG_FEATURE_ROTATE_LOGFILE is not set +# CONFIG_FEATURE_REMOTE_LOG is not set +# CONFIG_FEATURE_SYSLOGD_DUP is not set +# CONFIG_FEATURE_SYSLOGD_CFG is not set +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=0 +# CONFIG_FEATURE_IPC_SYSLOG is not set +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=0 +# CONFIG_LOGREAD is not set +# CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING is not set +# CONFIG_FEATURE_KMSG_SYSLOG is not set +CONFIG_KLOGD=y +CONFIG_FEATURE_KLOGD_KLOGCTL=y +# CONFIG_LOGGER is not set diff --git a/busybox-1_37_0/configs/cygwin_defconfig b/busybox-1_37_0/configs/cygwin_defconfig new file mode 100644 index 000000000..61e2c2463 --- /dev/null +++ b/busybox-1_37_0/configs/cygwin_defconfig @@ -0,0 +1,1222 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.37.0.git +# Mon Oct 9 11:08:46 2023 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Settings +# +CONFIG_DESKTOP=y +# CONFIG_EXTRA_COMPAT is not set +# CONFIG_FEDORA_COMPAT is not set +CONFIG_INCLUDE_SUSv2=y +CONFIG_LONG_OPTS=y +CONFIG_SHOW_USAGE=y +CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_FEATURE_COMPRESS_USAGE=y +CONFIG_LFS=y +CONFIG_TIME64=y +# CONFIG_PAM is not set +CONFIG_FEATURE_DEVPTS=y +# CONFIG_FEATURE_UTMP is not set +# CONFIG_FEATURE_WTMP is not set +CONFIG_FEATURE_PIDFILE=y +CONFIG_PID_FILE_PATH="/var/run" +CONFIG_BUSYBOX=y +CONFIG_FEATURE_SHOW_SCRIPT=y +CONFIG_FEATURE_INSTALLER=y +# CONFIG_INSTALL_NO_USR is not set +CONFIG_FEATURE_SUID=y +# CONFIG_FEATURE_SUID_CONFIG is not set +# CONFIG_FEATURE_SUID_CONFIG_QUIET is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_CLEAN_UP is not set +CONFIG_FEATURE_SYSLOG_INFO=y +CONFIG_FEATURE_SYSLOG=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_LIBBUSYBOX_STATIC is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_SYSROOT="" +CONFIG_EXTRA_CFLAGS="" +CONFIG_EXTRA_LDFLAGS="" +CONFIG_EXTRA_LDLIBS="" +# CONFIG_USE_PORTABLE_CODE is not set +CONFIG_STACK_OPTIMIZATION_386=y +CONFIG_STATIC_LIBGCC=y + +# +# Installation Options ("make install" behavior) +# +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_DEBUG_SANITIZE is not set +# CONFIG_UNIT_TEST is not set +# CONFIG_WERROR is not set +# CONFIG_WARN_SIMPLE_MSG is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Library Tuning +# +# CONFIG_FEATURE_USE_BSS_TAIL is not set +CONFIG_FLOAT_DURATION=y +CONFIG_FEATURE_RTMINMAX=y +CONFIG_FEATURE_RTMINMAX_USE_LIBC_DEFINITIONS=y +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +CONFIG_SHA1_SMALL=3 +CONFIG_SHA1_HWACCEL=y +CONFIG_SHA256_HWACCEL=y +CONFIG_SHA3_SMALL=1 +CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_FEATURE_USE_SENDFILE=y +CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_MONOTONIC_SYSCALL is not set +CONFIG_IOCTL_HEX2STR_ERROR=y +CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 +# CONFIG_FEATURE_EDITING_VI is not set +CONFIG_FEATURE_EDITING_HISTORY=255 +CONFIG_FEATURE_EDITING_SAVEHISTORY=y +# CONFIG_FEATURE_EDITING_SAVE_ON_EXIT is not set +CONFIG_FEATURE_REVERSE_SEARCH=y +CONFIG_FEATURE_TAB_COMPLETION=y +# CONFIG_FEATURE_USERNAME_COMPLETION is not set +CONFIG_FEATURE_EDITING_FANCY_PROMPT=y +CONFIG_FEATURE_EDITING_WINCH=y +# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +# CONFIG_LOCALE_SUPPORT is not set +CONFIG_UNICODE_SUPPORT=y +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=65533 +CONFIG_LAST_SUPPORTED_WCHAR=0 +# CONFIG_UNICODE_COMBINING_WCHARS is not set +# CONFIG_UNICODE_WIDE_WCHARS is not set +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +# CONFIG_UNICODE_PRESERVE_BROKEN is not set +# CONFIG_LOOP_CONFIGURE is not set +# CONFIG_NO_LOOP_CONFIGURE is not set +CONFIG_TRY_LOOP_CONFIGURE=y + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_XZ=y +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +# CONFIG_FEATURE_SEAMLESS_Z is not set +# CONFIG_AR is not set +# CONFIG_FEATURE_AR_LONG_FILENAMES is not set +# CONFIG_FEATURE_AR_CREATE is not set +# CONFIG_UNCOMPRESS is not set +CONFIG_GUNZIP=y +CONFIG_ZCAT=y +CONFIG_FEATURE_GUNZIP_LONG_OPTIONS=y +CONFIG_BUNZIP2=y +CONFIG_BZCAT=y +CONFIG_UNLZMA=y +CONFIG_LZCAT=y +CONFIG_LZMA=y +CONFIG_UNXZ=y +CONFIG_XZCAT=y +CONFIG_XZ=y +CONFIG_BZIP2=y +CONFIG_BZIP2_SMALL=8 +CONFIG_FEATURE_BZIP2_DECOMPRESS=y +CONFIG_CPIO=y +CONFIG_FEATURE_CPIO_O=y +CONFIG_FEATURE_CPIO_P=y +CONFIG_FEATURE_CPIO_IGNORE_DEVNO=y +CONFIG_FEATURE_CPIO_RENUMBER_INODES=y +# CONFIG_DPKG is not set +# CONFIG_DPKG_DEB is not set +CONFIG_GZIP=y +CONFIG_FEATURE_GZIP_LONG_OPTIONS=y +CONFIG_GZIP_FAST=0 +# CONFIG_FEATURE_GZIP_LEVELS is not set +CONFIG_FEATURE_GZIP_DECOMPRESS=y +CONFIG_LZOP=y +# CONFIG_UNLZOP is not set +# CONFIG_LZOPCAT is not set +# CONFIG_LZOP_COMPR_HIGH is not set +CONFIG_RPM=y +CONFIG_RPM2CPIO=y +CONFIG_TAR=y +CONFIG_FEATURE_TAR_LONG_OPTIONS=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +CONFIG_FEATURE_TAR_TO_COMMAND=y +CONFIG_FEATURE_TAR_UNAME_GNAME=y +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +# CONFIG_FEATURE_TAR_SELINUX is not set +CONFIG_UNZIP=y +CONFIG_FEATURE_UNZIP_CDF=y +CONFIG_FEATURE_UNZIP_BZIP2=y +CONFIG_FEATURE_UNZIP_LZMA=y +CONFIG_FEATURE_UNZIP_XZ=y +CONFIG_FEATURE_LZMA_FAST=y + +# +# Coreutils +# +CONFIG_FEATURE_VERBOSE=y + +# +# Common options for date and touch +# +CONFIG_FEATURE_TIMEZONE=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y +CONFIG_BASENAME=y +CONFIG_CAT=y +CONFIG_FEATURE_CATN=y +CONFIG_FEATURE_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +CONFIG_FEATURE_CHOWN_LONG_OPTIONS=y +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_CRC32=y +CONFIG_COMM=y +CONFIG_CP=y +CONFIG_FEATURE_CP_LONG_OPTIONS=y +CONFIG_FEATURE_CP_REFLINK=y +CONFIG_CUT=y +CONFIG_FEATURE_CUT_REGEX=y +CONFIG_DATE=y +CONFIG_FEATURE_DATE_ISOFMT=y +# CONFIG_FEATURE_DATE_NANO is not set +CONFIG_FEATURE_DATE_COMPAT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +CONFIG_FEATURE_DD_STATUS=y +CONFIG_DF=y +CONFIG_FEATURE_DF_FANCY=y +CONFIG_FEATURE_SKIP_ROOTFS=y +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +# CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K is not set +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +CONFIG_EXPAND=y +CONFIG_UNEXPAND=y +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FACTOR=y +CONFIG_FALSE=y +CONFIG_FOLD=y +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_HOSTID=y +CONFIG_ID=y +CONFIG_GROUPS=y +CONFIG_INSTALL=y +CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y +CONFIG_LINK=y +CONFIG_LN=y +CONFIG_LOGNAME=y +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_WIDTH=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +CONFIG_FEATURE_LS_COLOR=y +CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_MD5SUM=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SHA3SUM=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y +CONFIG_MKDIR=y +CONFIG_MKFIFO=y +CONFIG_MKNOD=y +CONFIG_MKTEMP=y +CONFIG_MV=y +CONFIG_NICE=y +CONFIG_NL=y +CONFIG_NOHUP=y +CONFIG_NPROC=y +CONFIG_OD=y +CONFIG_PASTE=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +CONFIG_SEQ=y +CONFIG_SHRED=y +CONFIG_SHUF=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +# CONFIG_FEATURE_SORT_OPTIMIZE_MEMORY is not set +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +# CONFIG_STAT is not set +# CONFIG_FEATURE_STAT_FORMAT is not set +# CONFIG_FEATURE_STAT_FILESYSTEM is not set +CONFIG_STTY=y +CONFIG_SUM=y +CONFIG_SYNC=y +CONFIG_FEATURE_SYNC_FANCY=y +CONFIG_FSYNC=y +CONFIG_TAC=y +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TEST=y +CONFIG_TEST1=y +CONFIG_TEST2=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TIMEOUT=y +CONFIG_TOUCH=y +CONFIG_FEATURE_TOUCH_SUSV3=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +CONFIG_TRUE=y +CONFIG_TRUNCATE=y +CONFIG_TSORT=y +CONFIG_TTY=y +CONFIG_UNAME=y +CONFIG_UNAME_OSNAME="GNU/Linux" +CONFIG_BB_ARCH=y +CONFIG_UNIQ=y +CONFIG_UNLINK=y +CONFIG_USLEEP=y +CONFIG_UUDECODE=y +CONFIG_BASE32=y +CONFIG_BASE64=y +CONFIG_UUENCODE=y +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +# CONFIG_WHO is not set +# CONFIG_W is not set +# CONFIG_USERS is not set +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Console Utilities +# +# CONFIG_CHVT is not set +CONFIG_CLEAR=y +# CONFIG_DEALLOCVT is not set +# CONFIG_DUMPKMAP is not set +# CONFIG_FGCONSOLE is not set +# CONFIG_KBD_MODE is not set +# CONFIG_LOADFONT is not set +# CONFIG_SETFONT is not set +# CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set +CONFIG_DEFAULT_SETFONT_DIR="" +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set +# CONFIG_LOADKMAP is not set +# CONFIG_OPENVT is not set +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +# CONFIG_SETCONSOLE is not set +# CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set +# CONFIG_SETKEYCODES is not set +# CONFIG_SETLOGCONS is not set +# CONFIG_SHOWKEY is not set + +# +# Debian Utilities +# +CONFIG_PIPE_PROGRESS=y +CONFIG_RUN_PARTS=y +CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y +CONFIG_FEATURE_RUN_PARTS_FANCY=y +CONFIG_START_STOP_DAEMON=y +CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS=y +CONFIG_FEATURE_START_STOP_DAEMON_FANCY=y +CONFIG_WHICH=y + +# +# klibc-utils +# +# CONFIG_MINIPS is not set +# CONFIG_NUKE is not set +CONFIG_RESUME=y +CONFIG_RUN_INIT=y + +# +# Editors +# +CONFIG_AWK=y +CONFIG_FEATURE_AWK_LIBM=y +CONFIG_FEATURE_AWK_GNU_EXTENSIONS=y +CONFIG_CMP=y +CONFIG_DIFF=y +CONFIG_FEATURE_DIFF_LONG_OPTIONS=y +CONFIG_FEATURE_DIFF_DIR=y +CONFIG_ED=y +CONFIG_PATCH=y +CONFIG_SED=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=4096 +# CONFIG_FEATURE_VI_8BIT is not set +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_COLON_EXPAND=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +# CONFIG_FEATURE_VI_REGEX_SEARCH is not set +CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_FEATURE_VI_READONLY=y +CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_FEATURE_VI_SET=y +CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_FEATURE_VI_ASK_TERMINAL=y +CONFIG_FEATURE_VI_UNDO=y +CONFIG_FEATURE_VI_UNDO_QUEUE=y +CONFIG_FEATURE_VI_UNDO_QUEUE_MAX=256 +CONFIG_FEATURE_VI_VERBOSE_STATUS=y +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_ATIME=y +CONFIG_FEATURE_FIND_CTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_AMIN=y +CONFIG_FEATURE_FIND_CMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_EXECUTABLE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +CONFIG_FEATURE_FIND_INUM=y +CONFIG_FEATURE_FIND_SAMEFILE=y +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_EXEC_PLUS=y +CONFIG_FEATURE_FIND_EXEC_OK=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +CONFIG_FEATURE_FIND_QUIT=y +CONFIG_FEATURE_FIND_DELETE=y +CONFIG_FEATURE_FIND_EMPTY=y +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set +CONFIG_FEATURE_FIND_LINKS=y +CONFIG_GREP=y +CONFIG_EGREP=y +CONFIG_FGREP=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y +CONFIG_FEATURE_XARGS_SUPPORT_REPL_STR=y +CONFIG_FEATURE_XARGS_SUPPORT_PARALLEL=y +CONFIG_FEATURE_XARGS_SUPPORT_ARGS_FILE=y + +# +# Init Utilities +# +# CONFIG_BOOTCHARTD is not set +# CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set +# CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE is not set +# CONFIG_HALT is not set +CONFIG_POWEROFF=y +CONFIG_REBOOT=y +CONFIG_FEATURE_WAIT_FOR_INIT=y +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +# CONFIG_INIT is not set +# CONFIG_LINUXRC is not set +# CONFIG_FEATURE_USE_INITTAB is not set +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +# CONFIG_FEATURE_INIT_SCTTY is not set +# CONFIG_FEATURE_INIT_SYSLOG is not set +# CONFIG_FEATURE_INIT_QUIET is not set +# CONFIG_FEATURE_INIT_COREDUMPS is not set +CONFIG_INIT_TERMINAL_TYPE="" +# CONFIG_FEATURE_INIT_MODIFY_CMDLINE is not set + +# +# Login/Password Management Utilities +# +CONFIG_FEATURE_SHADOWPASSWDS=y +CONFIG_USE_BB_PWD_GRP=y +CONFIG_USE_BB_SHADOW=y +CONFIG_USE_BB_CRYPT=y +CONFIG_USE_BB_CRYPT_SHA=y +CONFIG_ADD_SHELL=y +CONFIG_REMOVE_SHELL=y +CONFIG_ADDGROUP=y +CONFIG_FEATURE_ADDUSER_TO_GROUP=y +CONFIG_ADDUSER=y +# CONFIG_FEATURE_CHECK_NAMES is not set +CONFIG_LAST_ID=60000 +CONFIG_FIRST_SYSTEM_ID=100 +CONFIG_LAST_SYSTEM_ID=999 +CONFIG_CHPASSWD=y +CONFIG_FEATURE_DEFAULT_PASSWD_ALGO="des" +CONFIG_CRYPTPW=y +CONFIG_MKPASSWD=y +CONFIG_DELUSER=y +CONFIG_DELGROUP=y +CONFIG_FEATURE_DEL_USER_FROM_GROUP=y +# CONFIG_GETTY is not set +CONFIG_LOGIN=y +# CONFIG_LOGIN_SESSION_AS_CHILD is not set +CONFIG_LOGIN_SCRIPTS=y +CONFIG_FEATURE_NOLOGIN=y +CONFIG_FEATURE_SECURETTY=y +CONFIG_PASSWD=y +CONFIG_FEATURE_PASSWD_WEAK_CHECK=y +CONFIG_SU=y +CONFIG_FEATURE_SU_SYSLOG=y +CONFIG_FEATURE_SU_CHECKS_SHELLS=y +# CONFIG_FEATURE_SU_BLANK_PW_NEEDS_SECURE_TTY is not set +CONFIG_SULOGIN=y +CONFIG_VLOCK=y + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +# CONFIG_FSCK is not set +# CONFIG_LSATTR is not set +# CONFIG_TUNE2FS is not set + +# +# Linux Module Utilities +# +# CONFIG_MODPROBE_SMALL is not set +# CONFIG_DEPMOD is not set +# CONFIG_INSMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODINFO is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_RMMOD is not set + +# +# Options common to multiple modutils +# +# CONFIG_FEATURE_CMDLINE_MODULE_OPTIONS is not set +# CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +# CONFIG_FEATURE_INSMOD_TRY_MMAP is not set +# CONFIG_FEATURE_MODUTILS_ALIAS is not set +# CONFIG_FEATURE_MODUTILS_SYMBOLS is not set +CONFIG_DEFAULT_MODULES_DIR="" +CONFIG_DEFAULT_DEPMOD_FILE="" + +# +# Linux System Utilities +# +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +CONFIG_BLKDISCARD=y +# CONFIG_BLKID is not set +# CONFIG_FEATURE_BLKID_TYPE is not set +# CONFIG_BLOCKDEV is not set +CONFIG_CAL=y +CONFIG_CHRT=y +# CONFIG_DMESG is not set +# CONFIG_FEATURE_DMESG_PRETTY is not set +# CONFIG_EJECT is not set +# CONFIG_FEATURE_EJECT_SCSI is not set +CONFIG_FALLOCATE=y +CONFIG_FATATTR=y +# CONFIG_FBSET is not set +# CONFIG_FEATURE_FBSET_FANCY is not set +# CONFIG_FEATURE_FBSET_READMODE is not set +# CONFIG_FDFORMAT is not set +# CONFIG_FDISK is not set +# CONFIG_FDISK_SUPPORT_LARGE_DISKS is not set +# CONFIG_FEATURE_FDISK_WRITABLE is not set +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +# CONFIG_FEATURE_GPT_LABEL is not set +# CONFIG_FEATURE_FDISK_ADVANCED is not set +# CONFIG_FINDFS is not set +CONFIG_FLOCK=y +# CONFIG_FDFLUSH is not set +# CONFIG_FREERAMDISK is not set +CONFIG_FSCK_MINIX=y +CONFIG_FSFREEZE=y +CONFIG_FSTRIM=y +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +CONFIG_HD=y +CONFIG_XXD=y +# CONFIG_HWCLOCK is not set +# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_IONICE is not set +CONFIG_IPCRM=y +# CONFIG_IPCS is not set +# CONFIG_LAST is not set +# CONFIG_FEATURE_LAST_FANCY is not set +# CONFIG_LOSETUP is not set +# CONFIG_LSPCI is not set +# CONFIG_LSUSB is not set +# CONFIG_MDEV is not set +# CONFIG_FEATURE_MDEV_CONF is not set +# CONFIG_FEATURE_MDEV_RENAME is not set +# CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set +# CONFIG_FEATURE_MDEV_EXEC is not set +# CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set +# CONFIG_FEATURE_MDEV_DAEMON is not set +CONFIG_MESG=y +CONFIG_FEATURE_MESG_ENABLE_ONLY_GROUP=y +CONFIG_MKE2FS=y +# CONFIG_MKFS_EXT2 is not set +# CONFIG_MKFS_MINIX is not set +CONFIG_FEATURE_MINIX2=y +# CONFIG_MKFS_REISER is not set +CONFIG_MKDOSFS=y +# CONFIG_MKFS_VFAT is not set +CONFIG_MKSWAP=y +CONFIG_FEATURE_MKSWAP_UUID=y +CONFIG_MORE=y +# CONFIG_MOUNT is not set +# CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_FEATURE_MOUNT_LABEL is not set +# CONFIG_FEATURE_MOUNT_NFS is not set +# CONFIG_FEATURE_MOUNT_CIFS is not set +# CONFIG_FEATURE_MOUNT_FLAGS is not set +# CONFIG_FEATURE_MOUNT_FSTAB is not set +# CONFIG_FEATURE_MOUNT_OTHERTAB is not set +# CONFIG_MOUNTPOINT is not set +CONFIG_NOLOGIN=y +# CONFIG_NOLOGIN_DEPENDENCIES is not set +CONFIG_NSENTER=y +# CONFIG_PIVOT_ROOT is not set +# CONFIG_RDATE is not set +CONFIG_RDEV=y +CONFIG_READPROFILE=y +CONFIG_RENICE=y +CONFIG_REV=y +# CONFIG_RTCWAKE is not set +CONFIG_SCRIPT=y +CONFIG_SCRIPTREPLAY=y +# CONFIG_SETARCH is not set +CONFIG_LINUX32=y +CONFIG_LINUX64=y +CONFIG_SETPRIV=y +CONFIG_FEATURE_SETPRIV_DUMP=y +CONFIG_FEATURE_SETPRIV_CAPABILITIES=y +CONFIG_FEATURE_SETPRIV_CAPABILITY_NAMES=y +CONFIG_SETSID=y +CONFIG_SWAPON=y +CONFIG_FEATURE_SWAPON_DISCARD=y +# CONFIG_FEATURE_SWAPON_PRI is not set +CONFIG_SWAPOFF=y +CONFIG_FEATURE_SWAPONOFF_LABEL=y +# CONFIG_SWITCH_ROOT is not set +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +# CONFIG_FEATURE_TASKSET_CPULIST is not set +CONFIG_UEVENT=y +# CONFIG_UMOUNT is not set +# CONFIG_FEATURE_UMOUNT_ALL is not set +CONFIG_UNSHARE=y +# CONFIG_WALL is not set +# CONFIG_FEATURE_MOUNT_LOOP is not set +# CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set +# CONFIG_FEATURE_MTAB_SUPPORT is not set +CONFIG_VOLUMEID=y + +# +# Filesystem/Volume identification +# +CONFIG_FEATURE_VOLUMEID_BCACHE=y +# CONFIG_FEATURE_VOLUMEID_BTRFS is not set +# CONFIG_FEATURE_VOLUMEID_CRAMFS is not set +CONFIG_FEATURE_VOLUMEID_EROFS=y +CONFIG_FEATURE_VOLUMEID_EXFAT=y +# CONFIG_FEATURE_VOLUMEID_EXT is not set +CONFIG_FEATURE_VOLUMEID_F2FS=y +# CONFIG_FEATURE_VOLUMEID_FAT is not set +# CONFIG_FEATURE_VOLUMEID_HFS is not set +# CONFIG_FEATURE_VOLUMEID_ISO9660 is not set +# CONFIG_FEATURE_VOLUMEID_JFS is not set +# CONFIG_FEATURE_VOLUMEID_LFS is not set +# CONFIG_FEATURE_VOLUMEID_LINUXRAID is not set +# CONFIG_FEATURE_VOLUMEID_LINUXSWAP is not set +# CONFIG_FEATURE_VOLUMEID_LUKS is not set +CONFIG_FEATURE_VOLUMEID_MINIX=y +CONFIG_FEATURE_VOLUMEID_NILFS=y +# CONFIG_FEATURE_VOLUMEID_NTFS is not set +# CONFIG_FEATURE_VOLUMEID_OCFS2 is not set +# CONFIG_FEATURE_VOLUMEID_REISERFS is not set +# CONFIG_FEATURE_VOLUMEID_ROMFS is not set +# CONFIG_FEATURE_VOLUMEID_SQUASHFS is not set +# CONFIG_FEATURE_VOLUMEID_SYSV is not set +CONFIG_FEATURE_VOLUMEID_UBIFS=y +# CONFIG_FEATURE_VOLUMEID_UDF is not set +# CONFIG_FEATURE_VOLUMEID_XFS is not set + +# +# Miscellaneous Utilities +# +# CONFIG_ADJTIMEX is not set +CONFIG_ASCII=y +# CONFIG_BBCONFIG is not set +# CONFIG_FEATURE_COMPRESS_BBCONFIG is not set +CONFIG_BC=y +CONFIG_DC=y +CONFIG_FEATURE_DC_BIG=y +# CONFIG_FEATURE_DC_LIBM is not set +CONFIG_FEATURE_BC_INTERACTIVE=y +CONFIG_FEATURE_BC_LONG_OPTIONS=y +# CONFIG_BEEP is not set +CONFIG_FEATURE_BEEP_FREQ=0 +CONFIG_FEATURE_BEEP_LENGTH_MS=0 +CONFIG_CHAT=y +CONFIG_FEATURE_CHAT_NOFAIL=y +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +CONFIG_FEATURE_CHAT_IMPLICIT_CR=y +CONFIG_FEATURE_CHAT_SWALLOW_OPTS=y +CONFIG_FEATURE_CHAT_SEND_ESCAPES=y +CONFIG_FEATURE_CHAT_VAR_ABORT_LEN=y +CONFIG_FEATURE_CHAT_CLR_ABORT=y +# CONFIG_CONSPY is not set +CONFIG_CROND=y +CONFIG_FEATURE_CROND_D=y +CONFIG_FEATURE_CROND_CALL_SENDMAIL=y +CONFIG_FEATURE_CROND_SPECIAL_TIMES=y +CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_CRONTAB=y +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +CONFIG_DEVMEM=y +# CONFIG_FBSPLASH is not set +# CONFIG_FLASH_ERASEALL is not set +# CONFIG_FLASH_LOCK is not set +# CONFIG_FLASH_UNLOCK is not set +# CONFIG_FLASHCP is not set +CONFIG_GETFATTR=y +# CONFIG_HDPARM is not set +# CONFIG_FEATURE_HDPARM_GET_IDENTITY is not set +# CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set +# CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA is not set +CONFIG_HEXEDIT=y +CONFIG_I2CGET=y +CONFIG_I2CSET=y +CONFIG_I2CDUMP=y +CONFIG_I2CDETECT=y +CONFIG_I2CTRANSFER=y +# CONFIG_INOTIFYD is not set +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +CONFIG_FEATURE_LESS_TRUNCATE=y +CONFIG_FEATURE_LESS_MARKS=y +CONFIG_FEATURE_LESS_REGEXP=y +CONFIG_FEATURE_LESS_WINCH=y +CONFIG_FEATURE_LESS_ASK_TERMINAL=y +CONFIG_FEATURE_LESS_DASHCMD=y +CONFIG_FEATURE_LESS_LINENUMS=y +CONFIG_FEATURE_LESS_RAW=y +CONFIG_FEATURE_LESS_ENV=y +CONFIG_LSSCSI=y +# CONFIG_MAKEDEVS is not set +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +# CONFIG_FEATURE_MAKEDEVS_TABLE is not set +CONFIG_MAN=y +# CONFIG_MICROCOM is not set +CONFIG_MIM=y +CONFIG_MT=y +# CONFIG_NANDWRITE is not set +# CONFIG_NANDDUMP is not set +CONFIG_PARTPROBE=y +# CONFIG_RAIDAUTORUN is not set +# CONFIG_READAHEAD is not set +# CONFIG_RFKILL is not set +# CONFIG_RUNLEVEL is not set +# CONFIG_RX is not set +CONFIG_SEEDRNG=y +CONFIG_SETFATTR=y +# CONFIG_SETSERIAL is not set +CONFIG_STRINGS=y +CONFIG_TIME=y +CONFIG_TREE=y +CONFIG_TS=y +CONFIG_TTYSIZE=y +# CONFIG_UBIATTACH is not set +# CONFIG_UBIDETACH is not set +# CONFIG_UBIMKVOL is not set +# CONFIG_UBIRMVOL is not set +# CONFIG_UBIRSVOL is not set +# CONFIG_UBIUPDATEVOL is not set +CONFIG_UBIRENAME=y +CONFIG_VOLNAME=y +# CONFIG_WATCHDOG is not set +# CONFIG_FEATURE_WATCHDOG_OPEN_TWICE is not set + +# +# Networking Utilities +# +CONFIG_FEATURE_IPV6=y +# CONFIG_FEATURE_UNIX_LOCAL is not set +CONFIG_FEATURE_PREFER_IPV4_ADDRESS=y +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +# CONFIG_FEATURE_ETC_NETWORKS is not set +# CONFIG_FEATURE_ETC_SERVICES is not set +CONFIG_FEATURE_HWIB=y +# CONFIG_FEATURE_TLS_SHA1 is not set +# CONFIG_ARP is not set +# CONFIG_ARPING is not set +# CONFIG_BRCTL is not set +# CONFIG_FEATURE_BRCTL_FANCY is not set +# CONFIG_FEATURE_BRCTL_SHOW is not set +CONFIG_DNSD=y +# CONFIG_ETHER_WAKE is not set +CONFIG_FTPD=y +CONFIG_FEATURE_FTPD_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FEATURE_FTPD_AUTHENTICATION=y +CONFIG_FTPGET=y +CONFIG_FTPPUT=y +CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS=y +CONFIG_HOSTNAME=y +CONFIG_DNSDOMAINNAME=y +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_PORT_DEFAULT=80 +CONFIG_FEATURE_HTTPD_RANGES=y +CONFIG_FEATURE_HTTPD_SETUID=y +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +CONFIG_FEATURE_HTTPD_AUTH_MD5=y +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_FEATURE_HTTPD_GZIP=y +CONFIG_FEATURE_HTTPD_ETAG=y +CONFIG_FEATURE_HTTPD_LAST_MODIFIED=y +CONFIG_FEATURE_HTTPD_DATE=y +CONFIG_FEATURE_HTTPD_ACL_IP=y +# CONFIG_IFCONFIG is not set +# CONFIG_FEATURE_IFCONFIG_STATUS is not set +# CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +# CONFIG_FEATURE_IFCONFIG_HW is not set +# CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS is not set +# CONFIG_IFENSLAVE is not set +# CONFIG_IFPLUGD is not set +CONFIG_IFUP=y +CONFIG_IFDOWN=y +CONFIG_IFUPDOWN_IFSTATE_PATH="" +# CONFIG_FEATURE_IFUPDOWN_IP is not set +# CONFIG_FEATURE_IFUPDOWN_IPV4 is not set +# CONFIG_FEATURE_IFUPDOWN_IPV6 is not set +# CONFIG_FEATURE_IFUPDOWN_MAPPING is not set +# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set +CONFIG_INETD=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME=y +CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN=y +# CONFIG_FEATURE_INETD_RPC is not set +# CONFIG_IP is not set +# CONFIG_IPADDR is not set +# CONFIG_IPLINK is not set +# CONFIG_IPROUTE is not set +# CONFIG_IPTUNNEL is not set +# CONFIG_IPRULE is not set +CONFIG_IPNEIGH=y +# CONFIG_FEATURE_IP_ADDRESS is not set +# CONFIG_FEATURE_IP_LINK is not set +# CONFIG_FEATURE_IP_ROUTE is not set +CONFIG_FEATURE_IP_ROUTE_DIR="" +# CONFIG_FEATURE_IP_TUNNEL is not set +# CONFIG_FEATURE_IP_RULE is not set +CONFIG_FEATURE_IP_NEIGH=y +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +CONFIG_IPCALC=y +CONFIG_FEATURE_IPCALC_LONG_OPTIONS=y +CONFIG_FEATURE_IPCALC_FANCY=y +CONFIG_FAKEIDENTD=y +# CONFIG_NAMEIF is not set +# CONFIG_FEATURE_NAMEIF_EXTENDED is not set +# CONFIG_NBDCLIENT is not set +CONFIG_NC=y +# CONFIG_NETCAT is not set +CONFIG_NC_SERVER=y +CONFIG_NC_EXTRA=y +# CONFIG_NC_110_COMPAT is not set +# CONFIG_NETSTAT is not set +# CONFIG_FEATURE_NETSTAT_WIDE is not set +# CONFIG_FEATURE_NETSTAT_PRG is not set +# CONFIG_NSLOOKUP is not set +# CONFIG_FEATURE_NSLOOKUP_BIG is not set +# CONFIG_FEATURE_NSLOOKUP_LONG_OPTIONS is not set +# CONFIG_NTPD is not set +# CONFIG_FEATURE_NTPD_SERVER is not set +# CONFIG_FEATURE_NTPD_CONF is not set +# CONFIG_FEATURE_NTP_AUTH is not set +# CONFIG_PING is not set +# CONFIG_PING6 is not set +# CONFIG_FEATURE_FANCY_PING is not set +CONFIG_PSCAN=y +# CONFIG_ROUTE is not set +# CONFIG_SLATTACH is not set +CONFIG_SSL_CLIENT=y +CONFIG_TC=y +CONFIG_FEATURE_TC_INGRESS=y +CONFIG_TCPSVD=y +CONFIG_UDPSVD=y +CONFIG_TELNET=y +CONFIG_FEATURE_TELNET_TTYPE=y +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +CONFIG_FEATURE_TELNET_WIDTH=y +CONFIG_TELNETD=y +CONFIG_FEATURE_TELNETD_STANDALONE=y +CONFIG_FEATURE_TELNETD_PORT_DEFAULT=23 +CONFIG_FEATURE_TELNETD_INETD_WAIT=y +CONFIG_TFTP=y +CONFIG_FEATURE_TFTP_PROGRESS_BAR=y +CONFIG_FEATURE_TFTP_HPA_COMPAT=y +CONFIG_TFTPD=y +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +CONFIG_FEATURE_TFTP_BLOCKSIZE=y +# CONFIG_TFTP_DEBUG is not set +CONFIG_TLS=y +# CONFIG_TRACEROUTE is not set +# CONFIG_TRACEROUTE6 is not set +# CONFIG_FEATURE_TRACEROUTE_VERBOSE is not set +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +# CONFIG_TUNCTL is not set +# CONFIG_FEATURE_TUNCTL_UG is not set +# CONFIG_VCONFIG is not set +CONFIG_WGET=y +CONFIG_FEATURE_WGET_LONG_OPTIONS=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_FTP=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_FEATURE_WGET_TIMEOUT=y +CONFIG_FEATURE_WGET_HTTPS=y +CONFIG_FEATURE_WGET_OPENSSL=y +CONFIG_WHOIS=y +# CONFIG_ZCIP is not set +# CONFIG_UDHCPD is not set +# CONFIG_FEATURE_UDHCPD_BOOTP is not set +# CONFIG_FEATURE_UDHCPD_BASE_IP_ON_MAC is not set +# CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set +CONFIG_DHCPD_LEASES_FILE="" +# CONFIG_DUMPLEASES is not set +# CONFIG_DHCPRELAY is not set +# CONFIG_UDHCPC is not set +# CONFIG_FEATURE_UDHCPC_ARPING is not set +# CONFIG_FEATURE_UDHCPC_SANITIZEOPT is not set +CONFIG_UDHCPC_DEFAULT_SCRIPT="" +CONFIG_UDHCPC6_DEFAULT_SCRIPT="/usr/share/udhcpc/default6.script" +CONFIG_UDHCPC6=y +CONFIG_FEATURE_UDHCPC6_RFC3646=y +CONFIG_FEATURE_UDHCPC6_RFC4704=y +CONFIG_FEATURE_UDHCPC6_RFC4833=y +CONFIG_FEATURE_UDHCPC6_RFC5970=y + +# +# Common options for DHCP applets +# +CONFIG_UDHCPC_DEFAULT_INTERFACE="eth0" +# CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_UDHCP_DEBUG=0 +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=0 +# CONFIG_FEATURE_UDHCP_RFC3397 is not set +# CONFIG_FEATURE_UDHCP_8021Q is not set +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="" + +# +# Print Utilities +# +CONFIG_LPD=y +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +CONFIG_FEATURE_MIME_CHARSET="us-ascii" +CONFIG_MAKEMIME=y +CONFIG_POPMAILDIR=y +CONFIG_FEATURE_POPMAILDIR_DELIVERY=y +CONFIG_REFORMIME=y +CONFIG_FEATURE_REFORMIME_COMPAT=y +CONFIG_SENDMAIL=y + +# +# Process Utilities +# +CONFIG_FEATURE_FAST_TOP=y +# CONFIG_FEATURE_SHOW_THREADS is not set +# CONFIG_FREE is not set +CONFIG_FUSER=y +CONFIG_IOSTAT=y +CONFIG_KILL=y +CONFIG_KILLALL=y +CONFIG_KILLALL5=y +CONFIG_LSOF=y +CONFIG_MPSTAT=y +CONFIG_NMETER=y +CONFIG_PGREP=y +CONFIG_PKILL=y +CONFIG_PIDOF=y +CONFIG_FEATURE_PIDOF_SINGLE=y +CONFIG_FEATURE_PIDOF_OMIT=y +# CONFIG_PMAP is not set +# CONFIG_POWERTOP is not set +# CONFIG_FEATURE_POWERTOP_INTERACTIVE is not set +CONFIG_PS=y +# CONFIG_FEATURE_PS_WIDE is not set +# CONFIG_FEATURE_PS_LONG is not set +# CONFIG_FEATURE_PS_TIME is not set +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS=y +CONFIG_PSTREE=y +CONFIG_PWDX=y +CONFIG_SMEMCAP=y +CONFIG_BB_SYSCTL=y +CONFIG_TOP=y +CONFIG_FEATURE_TOP_INTERACTIVE=y +CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE=y +CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS=y +CONFIG_FEATURE_TOP_SMP_CPU=y +CONFIG_FEATURE_TOP_DECIMALS=y +CONFIG_FEATURE_TOP_SMP_PROCESS=y +CONFIG_FEATURE_TOPMEM=y +# CONFIG_UPTIME is not set +# CONFIG_FEATURE_UPTIME_UTMP_SUPPORT is not set +CONFIG_WATCH=y + +# +# Runit Utilities +# +CONFIG_CHPST=y +CONFIG_SETUIDGID=y +CONFIG_ENVUIDGID=y +CONFIG_ENVDIR=y +CONFIG_SOFTLIMIT=y +CONFIG_RUNSV=y +CONFIG_RUNSVDIR=y +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +CONFIG_SV=y +CONFIG_SV_DEFAULT_SERVICE_DIR="/var/service" +CONFIG_SVC=y +CONFIG_SVOK=y +CONFIG_SVLOGD=y +# CONFIG_CHCON is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RUNCON is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SESTATUS is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_RESTORECON is not set +# CONFIG_SETSEBOOL is not set + +# +# Shells +# +CONFIG_SH_IS_ASH=y +# CONFIG_SH_IS_HUSH is not set +# CONFIG_SH_IS_NONE is not set +# CONFIG_BASH_IS_ASH is not set +# CONFIG_BASH_IS_HUSH is not set +CONFIG_BASH_IS_NONE=y +CONFIG_SHELL_ASH=y +CONFIG_ASH=y +CONFIG_ASH_OPTIMIZE_FOR_SIZE=y +CONFIG_ASH_INTERNAL_GLOB=y +CONFIG_ASH_BASH_COMPAT=y +# CONFIG_ASH_BASH_SOURCE_CURDIR is not set +CONFIG_ASH_BASH_NOT_FOUND_HOOK=y +CONFIG_ASH_JOB_CONTROL=y +CONFIG_ASH_ALIAS=y +CONFIG_ASH_RANDOM_SUPPORT=y +CONFIG_ASH_EXPAND_PRMT=y +# CONFIG_ASH_IDLE_TIMEOUT is not set +# CONFIG_ASH_MAIL is not set +CONFIG_ASH_ECHO=y +CONFIG_ASH_PRINTF=y +CONFIG_ASH_TEST=y +CONFIG_ASH_HELP=y +CONFIG_ASH_GETOPTS=y +CONFIG_ASH_CMDCMD=y +# CONFIG_CTTYHACK is not set +CONFIG_HUSH=y +CONFIG_SHELL_HUSH=y +CONFIG_HUSH_BASH_COMPAT=y +CONFIG_HUSH_BRACE_EXPANSION=y +# CONFIG_HUSH_BASH_SOURCE_CURDIR is not set +CONFIG_HUSH_LINENO_VAR=y +CONFIG_HUSH_INTERACTIVE=y +CONFIG_HUSH_SAVEHISTORY=y +CONFIG_HUSH_JOB=y +CONFIG_HUSH_TICK=y +CONFIG_HUSH_IF=y +CONFIG_HUSH_LOOPS=y +CONFIG_HUSH_CASE=y +CONFIG_HUSH_FUNCTIONS=y +CONFIG_HUSH_LOCAL=y +CONFIG_HUSH_RANDOM_SUPPORT=y +CONFIG_HUSH_MODE_X=y +CONFIG_HUSH_ECHO=y +CONFIG_HUSH_PRINTF=y +CONFIG_HUSH_TEST=y +CONFIG_HUSH_HELP=y +CONFIG_HUSH_EXPORT=y +CONFIG_HUSH_EXPORT_N=y +CONFIG_HUSH_READONLY=y +CONFIG_HUSH_KILL=y +CONFIG_HUSH_WAIT=y +CONFIG_HUSH_COMMAND=y +CONFIG_HUSH_TRAP=y +CONFIG_HUSH_TYPE=y +CONFIG_HUSH_TIMES=y +CONFIG_HUSH_READ=y +CONFIG_HUSH_SET=y +CONFIG_HUSH_UNSET=y +CONFIG_HUSH_ULIMIT=y +CONFIG_HUSH_UMASK=y +CONFIG_HUSH_GETOPTS=y +# CONFIG_HUSH_MEMLEAK is not set + +# +# Options common to all shells +# +CONFIG_FEATURE_SH_MATH=y +CONFIG_FEATURE_SH_MATH_64=y +CONFIG_FEATURE_SH_MATH_BASE=y +CONFIG_FEATURE_SH_EXTRA_QUIET=y +# CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_FEATURE_SH_NOFORK is not set +CONFIG_FEATURE_SH_READ_FRAC=y +CONFIG_FEATURE_SH_HISTFILESIZE=y +CONFIG_FEATURE_SH_EMBEDDED_SCRIPTS=y + +# +# System Logging Utilities +# +# CONFIG_KLOGD is not set +# CONFIG_FEATURE_KLOGD_KLOGCTL is not set +CONFIG_LOGGER=y +CONFIG_LOGREAD=y +CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING=y +CONFIG_SYSLOGD=y +CONFIG_FEATURE_ROTATE_LOGFILE=y +CONFIG_FEATURE_REMOTE_LOG=y +CONFIG_FEATURE_SYSLOGD_DUP=y +CONFIG_FEATURE_SYSLOGD_CFG=y +# CONFIG_FEATURE_SYSLOGD_PRECISE_TIMESTAMPS is not set +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=256 +CONFIG_FEATURE_IPC_SYSLOG=y +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16 +CONFIG_FEATURE_KMSG_SYSLOG=y diff --git a/busybox-1_37_0/configs/freebsd_defconfig b/busybox-1_37_0/configs/freebsd_defconfig new file mode 100644 index 000000000..6cbd54895 --- /dev/null +++ b/busybox-1_37_0/configs/freebsd_defconfig @@ -0,0 +1,958 @@ +# +# Automatically generated make config: don't edit +# Busybox version: 1.18.1 +# Tue Dec 21 19:47:40 2010 +# +CONFIG_HAVE_DOT_CONFIG=y + +# +# Busybox Settings +# + +# +# General Configuration +# +# CONFIG_DESKTOP is not set +# CONFIG_EXTRA_COMPAT is not set +CONFIG_INCLUDE_SUSv2=y +CONFIG_USE_PORTABLE_CODE=y +CONFIG_FEATURE_BUFFERS_USE_MALLOC=y +# CONFIG_FEATURE_BUFFERS_GO_ON_STACK is not set +# CONFIG_FEATURE_BUFFERS_GO_IN_BSS is not set +CONFIG_SHOW_USAGE=y +CONFIG_FEATURE_VERBOSE_USAGE=y +CONFIG_FEATURE_COMPRESS_USAGE=y +CONFIG_FEATURE_INSTALLER=y +# CONFIG_INSTALL_NO_USR is not set +CONFIG_LOCALE_SUPPORT=y +CONFIG_UNICODE_SUPPORT=y +# CONFIG_UNICODE_USING_LOCALE is not set +# CONFIG_FEATURE_CHECK_UNICODE_IN_ENV is not set +CONFIG_SUBST_WCHAR=63 +CONFIG_LAST_SUPPORTED_WCHAR=767 +# CONFIG_UNICODE_COMBINING_WCHARS is not set +# CONFIG_UNICODE_WIDE_WCHARS is not set +# CONFIG_UNICODE_BIDI_SUPPORT is not set +# CONFIG_UNICODE_NEUTRAL_TABLE is not set +# CONFIG_UNICODE_PRESERVE_BROKEN is not set +CONFIG_LONG_OPTS=y +CONFIG_FEATURE_DEVPTS=y +# CONFIG_FEATURE_CLEAN_UP is not set +# CONFIG_FEATURE_WTMP is not set +# CONFIG_FEATURE_UTMP is not set +CONFIG_FEATURE_PIDFILE=y +CONFIG_FEATURE_SUID=y +CONFIG_FEATURE_SUID_CONFIG=y +CONFIG_FEATURE_SUID_CONFIG_QUIET=y +# CONFIG_SELINUX is not set +# CONFIG_FEATURE_PREFER_APPLETS is not set +CONFIG_BUSYBOX_EXEC_PATH="/proc/self/exe" +CONFIG_FEATURE_SYSLOG=y + +# +# Build Options +# +# CONFIG_STATIC is not set +# CONFIG_PIE is not set +# CONFIG_NOMMU is not set +# CONFIG_BUILD_LIBBUSYBOX is not set +# CONFIG_FEATURE_INDIVIDUAL is not set +# CONFIG_FEATURE_SHARED_BUSYBOX is not set +CONFIG_LFS=y +CONFIG_CROSS_COMPILER_PREFIX="" +CONFIG_EXTRA_CFLAGS="" + +# +# Debugging Options +# +# CONFIG_DEBUG is not set +# CONFIG_DEBUG_PESSIMIZE is not set +# CONFIG_WERROR is not set +CONFIG_NO_DEBUG_LIB=y +# CONFIG_DMALLOC is not set +# CONFIG_EFENCE is not set + +# +# Installation Options ("make install" behavior) +# +CONFIG_INSTALL_APPLET_SYMLINKS=y +# CONFIG_INSTALL_APPLET_HARDLINKS is not set +# CONFIG_INSTALL_APPLET_SCRIPT_WRAPPERS is not set +# CONFIG_INSTALL_APPLET_DONT is not set +# CONFIG_INSTALL_SH_APPLET_SYMLINK is not set +# CONFIG_INSTALL_SH_APPLET_HARDLINK is not set +# CONFIG_INSTALL_SH_APPLET_SCRIPT_WRAPPER is not set +CONFIG_PREFIX="./_install" + +# +# Busybox Library Tuning +# +CONFIG_PASSWORD_MINLEN=6 +CONFIG_MD5_SMALL=1 +CONFIG_FEATURE_FAST_TOP=y +# CONFIG_FEATURE_ETC_NETWORKS is not set +CONFIG_FEATURE_EDITING=y +CONFIG_FEATURE_EDITING_MAX_LEN=1024 +# CONFIG_FEATURE_EDITING_VI is not set +CONFIG_FEATURE_EDITING_HISTORY=30 +# CONFIG_FEATURE_EDITING_SAVEHISTORY is not set +CONFIG_FEATURE_TAB_COMPLETION=y +# CONFIG_FEATURE_USERNAME_COMPLETION is not set +# CONFIG_FEATURE_EDITING_FANCY_PROMPT is not set +# CONFIG_FEATURE_EDITING_ASK_TERMINAL is not set +CONFIG_FEATURE_NON_POSIX_CP=y +# CONFIG_FEATURE_VERBOSE_CP_MESSAGE is not set +CONFIG_FEATURE_COPYBUF_KB=4 +# CONFIG_MONOTONIC_SYSCALL is not set +CONFIG_IOCTL_HEX2STR_ERROR=y +CONFIG_FEATURE_HWIB=y + +# +# Applets +# + +# +# Archival Utilities +# +CONFIG_FEATURE_SEAMLESS_XZ=y +CONFIG_FEATURE_SEAMLESS_LZMA=y +CONFIG_FEATURE_SEAMLESS_BZ2=y +CONFIG_FEATURE_SEAMLESS_GZ=y +CONFIG_FEATURE_SEAMLESS_Z=y +CONFIG_AR=y +CONFIG_FEATURE_AR_LONG_FILENAMES=y +CONFIG_FEATURE_AR_CREATE=y +CONFIG_BUNZIP2=y +CONFIG_BZIP2=y +CONFIG_CPIO=y +# CONFIG_FEATURE_CPIO_O is not set +# CONFIG_FEATURE_CPIO_P is not set +# CONFIG_DPKG is not set +# CONFIG_DPKG_DEB is not set +CONFIG_GUNZIP=y +CONFIG_GZIP=y +CONFIG_FEATURE_GZIP_LONG_OPTIONS=y +CONFIG_LZOP=y +# CONFIG_LZOP_COMPR_HIGH is not set +CONFIG_RPM2CPIO=y +CONFIG_RPM=y +CONFIG_TAR=y +CONFIG_FEATURE_TAR_CREATE=y +CONFIG_FEATURE_TAR_AUTODETECT=y +CONFIG_FEATURE_TAR_FROM=y +CONFIG_FEATURE_TAR_OLDGNU_COMPATIBILITY=y +CONFIG_FEATURE_TAR_OLDSUN_COMPATIBILITY=y +CONFIG_FEATURE_TAR_GNU_EXTENSIONS=y +CONFIG_FEATURE_TAR_LONG_OPTIONS=y +CONFIG_FEATURE_TAR_TO_COMMAND=y +# CONFIG_FEATURE_TAR_UNAME_GNAME is not set +CONFIG_FEATURE_TAR_NOPRESERVE_TIME=y +# CONFIG_FEATURE_TAR_SELINUX is not set +CONFIG_UNCOMPRESS=y +CONFIG_UNLZMA=y +CONFIG_FEATURE_LZMA_FAST=y +CONFIG_LZMA=y +CONFIG_UNXZ=y +CONFIG_XZ=y +CONFIG_UNZIP=y + +# +# Coreutils +# +CONFIG_BASENAME=y +CONFIG_CAT=y +# CONFIG_DATE is not set +# CONFIG_FEATURE_DATE_ISOFMT is not set +# CONFIG_FEATURE_DATE_NANO is not set +# CONFIG_FEATURE_DATE_COMPAT is not set +CONFIG_TEST=y +CONFIG_FEATURE_TEST_64=y +CONFIG_TR=y +CONFIG_FEATURE_TR_CLASSES=y +CONFIG_FEATURE_TR_EQUIV=y +# CONFIG_BASE64 is not set +CONFIG_CAL=y +CONFIG_CATV=y +CONFIG_CHGRP=y +CONFIG_CHMOD=y +CONFIG_CHOWN=y +CONFIG_FEATURE_CHOWN_LONG_OPTIONS=y +CONFIG_CHROOT=y +CONFIG_CKSUM=y +CONFIG_COMM=y +CONFIG_CP=y +CONFIG_FEATURE_CP_LONG_OPTIONS=y +CONFIG_CUT=y +CONFIG_DD=y +CONFIG_FEATURE_DD_SIGNAL_HANDLING=y +CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y +CONFIG_FEATURE_DD_IBS_OBS=y +# CONFIG_DF is not set +# CONFIG_FEATURE_DF_FANCY is not set +CONFIG_DIRNAME=y +CONFIG_DOS2UNIX=y +CONFIG_UNIX2DOS=y +CONFIG_DU=y +CONFIG_FEATURE_DU_DEFAULT_BLOCKSIZE_1K=y +CONFIG_ECHO=y +CONFIG_FEATURE_FANCY_ECHO=y +CONFIG_ENV=y +CONFIG_FEATURE_ENV_LONG_OPTIONS=y +CONFIG_EXPAND=y +CONFIG_FEATURE_EXPAND_LONG_OPTIONS=y +CONFIG_EXPR=y +CONFIG_EXPR_MATH_SUPPORT_64=y +CONFIG_FALSE=y +CONFIG_FOLD=y +CONFIG_FSYNC=y +CONFIG_HEAD=y +CONFIG_FEATURE_FANCY_HEAD=y +CONFIG_HOSTID=y +CONFIG_ID=y +CONFIG_INSTALL=y +CONFIG_FEATURE_INSTALL_LONG_OPTIONS=y +CONFIG_LENGTH=y +CONFIG_LN=y +CONFIG_LOGNAME=y +CONFIG_LS=y +CONFIG_FEATURE_LS_FILETYPES=y +CONFIG_FEATURE_LS_FOLLOWLINKS=y +CONFIG_FEATURE_LS_RECURSIVE=y +CONFIG_FEATURE_LS_SORTFILES=y +CONFIG_FEATURE_LS_TIMESTAMPS=y +CONFIG_FEATURE_LS_USERNAME=y +CONFIG_FEATURE_LS_COLOR=y +CONFIG_FEATURE_LS_COLOR_IS_DEFAULT=y +CONFIG_MD5SUM=y +CONFIG_MKDIR=y +CONFIG_FEATURE_MKDIR_LONG_OPTIONS=y +CONFIG_MKFIFO=y +# CONFIG_MKNOD is not set +CONFIG_MV=y +CONFIG_FEATURE_MV_LONG_OPTIONS=y +CONFIG_NICE=y +CONFIG_NOHUP=y +CONFIG_OD=y +CONFIG_PRINTENV=y +CONFIG_PRINTF=y +CONFIG_PWD=y +CONFIG_READLINK=y +CONFIG_FEATURE_READLINK_FOLLOW=y +CONFIG_REALPATH=y +CONFIG_RM=y +CONFIG_RMDIR=y +# CONFIG_FEATURE_RMDIR_LONG_OPTIONS is not set +CONFIG_SEQ=y +CONFIG_SHA1SUM=y +CONFIG_SHA256SUM=y +CONFIG_SHA512SUM=y +CONFIG_SLEEP=y +CONFIG_FEATURE_FANCY_SLEEP=y +CONFIG_FEATURE_FLOAT_SLEEP=y +CONFIG_SORT=y +CONFIG_FEATURE_SORT_BIG=y +CONFIG_SPLIT=y +CONFIG_FEATURE_SPLIT_FANCY=y +# CONFIG_STAT is not set +# CONFIG_FEATURE_STAT_FORMAT is not set +# CONFIG_STTY is not set +CONFIG_SUM=y +CONFIG_SYNC=y +# CONFIG_TAC is not set +CONFIG_TAIL=y +CONFIG_FEATURE_FANCY_TAIL=y +CONFIG_TEE=y +CONFIG_FEATURE_TEE_USE_BLOCK_IO=y +CONFIG_TOUCH=y +CONFIG_TRUE=y +CONFIG_TTY=y +CONFIG_UNAME=y +CONFIG_UNEXPAND=y +CONFIG_FEATURE_UNEXPAND_LONG_OPTIONS=y +CONFIG_UNIQ=y +CONFIG_USLEEP=y +CONFIG_UUDECODE=y +CONFIG_UUENCODE=y +CONFIG_WC=y +CONFIG_FEATURE_WC_LARGE=y +# CONFIG_WHO is not set +CONFIG_WHOAMI=y +CONFIG_YES=y + +# +# Common options for cp and mv +# +CONFIG_FEATURE_PRESERVE_HARDLINKS=y + +# +# Common options for df, du, ls +# +CONFIG_FEATURE_HUMAN_READABLE=y + +# +# Common options for md5sum, sha1sum, sha256sum, sha512sum +# +CONFIG_FEATURE_MD5_SHA1_SUM_CHECK=y + +# +# Console Utilities +# +# CONFIG_CHVT is not set +# CONFIG_FGCONSOLE is not set +CONFIG_CLEAR=y +# CONFIG_DEALLOCVT is not set +# CONFIG_DUMPKMAP is not set +# CONFIG_KBD_MODE is not set +# CONFIG_LOADFONT is not set +# CONFIG_LOADKMAP is not set +# CONFIG_OPENVT is not set +CONFIG_RESET=y +CONFIG_RESIZE=y +CONFIG_FEATURE_RESIZE_PRINT=y +# CONFIG_SETCONSOLE is not set +# CONFIG_FEATURE_SETCONSOLE_LONG_OPTIONS is not set +# CONFIG_SETFONT is not set +# CONFIG_FEATURE_SETFONT_TEXTUAL_MAP is not set +CONFIG_DEFAULT_SETFONT_DIR="" +# CONFIG_SETKEYCODES is not set +# CONFIG_SETLOGCONS is not set +# CONFIG_SHOWKEY is not set +# CONFIG_FEATURE_LOADFONT_PSF2 is not set +# CONFIG_FEATURE_LOADFONT_RAW is not set + +# +# Debian Utilities +# +CONFIG_MKTEMP=y +CONFIG_PIPE_PROGRESS=y +CONFIG_RUN_PARTS=y +CONFIG_FEATURE_RUN_PARTS_LONG_OPTIONS=y +CONFIG_FEATURE_RUN_PARTS_FANCY=y +# CONFIG_START_STOP_DAEMON is not set +# CONFIG_FEATURE_START_STOP_DAEMON_FANCY is not set +# CONFIG_FEATURE_START_STOP_DAEMON_LONG_OPTIONS is not set +CONFIG_WHICH=y + +# +# Editors +# +CONFIG_PATCH=y +CONFIG_AWK=y +CONFIG_FEATURE_AWK_LIBM=y +CONFIG_CMP=y +CONFIG_DIFF=y +CONFIG_FEATURE_DIFF_LONG_OPTIONS=y +CONFIG_FEATURE_DIFF_DIR=y +CONFIG_ED=y +CONFIG_SED=y +CONFIG_VI=y +CONFIG_FEATURE_VI_MAX_LEN=1024 +CONFIG_FEATURE_VI_8BIT=y +CONFIG_FEATURE_VI_COLON=y +CONFIG_FEATURE_VI_YANKMARK=y +CONFIG_FEATURE_VI_SEARCH=y +CONFIG_FEATURE_VI_USE_SIGNALS=y +CONFIG_FEATURE_VI_DOT_CMD=y +CONFIG_FEATURE_VI_READONLY=y +CONFIG_FEATURE_VI_SETOPTS=y +CONFIG_FEATURE_VI_SET=y +CONFIG_FEATURE_VI_WIN_RESIZE=y +CONFIG_FEATURE_VI_ASK_TERMINAL=y +CONFIG_FEATURE_ALLOW_EXEC=y + +# +# Finding Utilities +# +CONFIG_FIND=y +CONFIG_FEATURE_FIND_PRINT0=y +CONFIG_FEATURE_FIND_MTIME=y +CONFIG_FEATURE_FIND_MMIN=y +CONFIG_FEATURE_FIND_PERM=y +CONFIG_FEATURE_FIND_TYPE=y +CONFIG_FEATURE_FIND_XDEV=y +CONFIG_FEATURE_FIND_MAXDEPTH=y +CONFIG_FEATURE_FIND_NEWER=y +CONFIG_FEATURE_FIND_INUM=y +CONFIG_FEATURE_FIND_EXEC=y +CONFIG_FEATURE_FIND_USER=y +CONFIG_FEATURE_FIND_GROUP=y +CONFIG_FEATURE_FIND_NOT=y +CONFIG_FEATURE_FIND_DEPTH=y +CONFIG_FEATURE_FIND_PAREN=y +CONFIG_FEATURE_FIND_SIZE=y +CONFIG_FEATURE_FIND_PRUNE=y +CONFIG_FEATURE_FIND_DELETE=y +CONFIG_FEATURE_FIND_PATH=y +CONFIG_FEATURE_FIND_REGEX=y +# CONFIG_FEATURE_FIND_CONTEXT is not set +CONFIG_FEATURE_FIND_LINKS=y +CONFIG_GREP=y +CONFIG_FEATURE_GREP_EGREP_ALIAS=y +CONFIG_FEATURE_GREP_FGREP_ALIAS=y +CONFIG_FEATURE_GREP_CONTEXT=y +CONFIG_XARGS=y +CONFIG_FEATURE_XARGS_SUPPORT_CONFIRMATION=y +CONFIG_FEATURE_XARGS_SUPPORT_QUOTES=y +CONFIG_FEATURE_XARGS_SUPPORT_TERMOPT=y +CONFIG_FEATURE_XARGS_SUPPORT_ZERO_TERM=y + +# +# Init Utilities +# +# CONFIG_BOOTCHARTD is not set +# CONFIG_FEATURE_BOOTCHARTD_BLOATED_HEADER is not set +# CONFIG_FEATURE_BOOTCHARTD_CONFIG_FILE is not set +# CONFIG_HALT is not set +# CONFIG_FEATURE_CALL_TELINIT is not set +CONFIG_TELINIT_PATH="" +# CONFIG_INIT is not set +# CONFIG_FEATURE_USE_INITTAB is not set +# CONFIG_FEATURE_KILL_REMOVED is not set +CONFIG_FEATURE_KILL_DELAY=0 +# CONFIG_FEATURE_INIT_SCTTY is not set +# CONFIG_FEATURE_INIT_SYSLOG is not set +# CONFIG_FEATURE_INIT_QUIET is not set +# CONFIG_FEATURE_INIT_COREDUMPS is not set +# CONFIG_LINUXRC is not set +CONFIG_INIT_TERMINAL_TYPE="" +# CONFIG_MESG is not set + +# +# Login/Password Management Utilities +# +# CONFIG_ADD_SHELL is not set +# CONFIG_REMOVE_SHELL is not set +# CONFIG_FEATURE_SHADOWPASSWDS is not set +CONFIG_USE_BB_PWD_GRP=y +# CONFIG_USE_BB_SHADOW is not set +# CONFIG_USE_BB_CRYPT is not set +# CONFIG_USE_BB_CRYPT_SHA is not set +# CONFIG_ADDUSER is not set +# CONFIG_FEATURE_ADDUSER_LONG_OPTIONS is not set +# CONFIG_FEATURE_CHECK_NAMES is not set +CONFIG_FIRST_SYSTEM_ID=100 +CONFIG_LAST_SYSTEM_ID=999 +CONFIG_ADDGROUP=y +CONFIG_FEATURE_ADDGROUP_LONG_OPTIONS=y +CONFIG_FEATURE_ADDUSER_TO_GROUP=y +# CONFIG_DELUSER is not set +CONFIG_DELGROUP=y +CONFIG_FEATURE_DEL_USER_FROM_GROUP=y +# CONFIG_GETTY is not set +# CONFIG_LOGIN is not set +# CONFIG_PAM is not set +# CONFIG_LOGIN_SCRIPTS is not set +# CONFIG_FEATURE_NOLOGIN is not set +# CONFIG_FEATURE_SECURETTY is not set +# CONFIG_PASSWD is not set +# CONFIG_FEATURE_PASSWD_WEAK_CHECK is not set +# CONFIG_CRYPTPW is not set +# CONFIG_CHPASSWD is not set +# CONFIG_SU is not set +# CONFIG_FEATURE_SU_SYSLOG is not set +# CONFIG_FEATURE_SU_CHECKS_SHELLS is not set +# CONFIG_SULOGIN is not set +# CONFIG_VLOCK is not set + +# +# Linux Ext2 FS Progs +# +CONFIG_CHATTR=y +# CONFIG_FSCK is not set +# CONFIG_LSATTR is not set +# CONFIG_TUNE2FS is not set +# CONFIG_MODINFO is not set +# CONFIG_MODPROBE_SMALL is not set +# CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE is not set +# CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set +# CONFIG_INSMOD is not set +# CONFIG_RMMOD is not set +# CONFIG_LSMOD is not set +# CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set +# CONFIG_MODPROBE is not set +# CONFIG_FEATURE_MODPROBE_BLACKLIST is not set +# CONFIG_DEPMOD is not set +# CONFIG_FEATURE_2_4_MODULES is not set +# CONFIG_FEATURE_INSMOD_TRY_MMAP is not set +# CONFIG_FEATURE_INSMOD_VERSION_CHECKING is not set +# CONFIG_FEATURE_INSMOD_KSYMOOPS_SYMBOLS is not set +# CONFIG_FEATURE_INSMOD_LOADINKMEM is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP is not set +# CONFIG_FEATURE_INSMOD_LOAD_MAP_FULL is not set +# CONFIG_FEATURE_CHECK_TAINTED_MODULE is not set +# CONFIG_FEATURE_MODUTILS_ALIAS is not set +# CONFIG_FEATURE_MODUTILS_SYMBOLS is not set +CONFIG_DEFAULT_MODULES_DIR="" +CONFIG_DEFAULT_DEPMOD_FILE="" + +# +# Linux System Utilities +# +# CONFIG_BLOCKDEV is not set +CONFIG_REV=y +# CONFIG_ACPID is not set +# CONFIG_FEATURE_ACPID_COMPAT is not set +# CONFIG_BLKID is not set +# CONFIG_DMESG is not set +# CONFIG_FEATURE_DMESG_PRETTY is not set +# CONFIG_FBSET is not set +# CONFIG_FEATURE_FBSET_FANCY is not set +# CONFIG_FEATURE_FBSET_READMODE is not set +# CONFIG_FDFLUSH is not set +# CONFIG_FDFORMAT is not set +# CONFIG_FDISK is not set +CONFIG_FDISK_SUPPORT_LARGE_DISKS=y +# CONFIG_FEATURE_FDISK_WRITABLE is not set +# CONFIG_FEATURE_AIX_LABEL is not set +# CONFIG_FEATURE_SGI_LABEL is not set +# CONFIG_FEATURE_SUN_LABEL is not set +# CONFIG_FEATURE_OSF_LABEL is not set +# CONFIG_FEATURE_GPT_LABEL is not set +# CONFIG_FEATURE_FDISK_ADVANCED is not set +# CONFIG_FINDFS is not set +CONFIG_FLOCK=y +# CONFIG_FREERAMDISK is not set +# CONFIG_FSCK_MINIX is not set +# CONFIG_MKFS_EXT2 is not set +# CONFIG_MKFS_MINIX is not set +# CONFIG_FEATURE_MINIX2 is not set +# CONFIG_MKFS_REISER is not set +# CONFIG_MKFS_VFAT is not set +CONFIG_GETOPT=y +CONFIG_FEATURE_GETOPT_LONG=y +CONFIG_HEXDUMP=y +# CONFIG_FEATURE_HEXDUMP_REVERSE is not set +CONFIG_HD=y +# CONFIG_HWCLOCK is not set +# CONFIG_FEATURE_HWCLOCK_LONG_OPTIONS is not set +# CONFIG_FEATURE_HWCLOCK_ADJTIME_FHS is not set +# CONFIG_IPCRM is not set +# CONFIG_IPCS is not set +# CONFIG_LOSETUP is not set +CONFIG_LSPCI=y +CONFIG_LSUSB=y +# CONFIG_MDEV is not set +# CONFIG_FEATURE_MDEV_CONF is not set +# CONFIG_FEATURE_MDEV_RENAME is not set +# CONFIG_FEATURE_MDEV_RENAME_REGEXP is not set +# CONFIG_FEATURE_MDEV_EXEC is not set +# CONFIG_FEATURE_MDEV_LOAD_FIRMWARE is not set +# CONFIG_MKSWAP is not set +# CONFIG_FEATURE_MKSWAP_UUID is not set +CONFIG_MORE=y +# CONFIG_MOUNT is not set +# CONFIG_FEATURE_MOUNT_FAKE is not set +# CONFIG_FEATURE_MOUNT_VERBOSE is not set +# CONFIG_FEATURE_MOUNT_HELPERS is not set +# CONFIG_FEATURE_MOUNT_LABEL is not set +# CONFIG_FEATURE_MOUNT_NFS is not set +# CONFIG_FEATURE_MOUNT_CIFS is not set +# CONFIG_FEATURE_MOUNT_FLAGS is not set +# CONFIG_FEATURE_MOUNT_FSTAB is not set +# CONFIG_PIVOT_ROOT is not set +# CONFIG_RDATE is not set +# CONFIG_RDEV is not set +CONFIG_READPROFILE=y +# CONFIG_RTCWAKE is not set +# CONFIG_SCRIPT is not set +CONFIG_SCRIPTREPLAY=y +# CONFIG_SETARCH is not set +# CONFIG_SWAPONOFF is not set +# CONFIG_FEATURE_SWAPON_PRI is not set +# CONFIG_SWITCH_ROOT is not set +# CONFIG_UMOUNT is not set +# CONFIG_FEATURE_UMOUNT_ALL is not set +# CONFIG_FEATURE_MOUNT_LOOP is not set +# CONFIG_FEATURE_MOUNT_LOOP_CREATE is not set +# CONFIG_FEATURE_MTAB_SUPPORT is not set +# CONFIG_VOLUMEID is not set +# CONFIG_FEATURE_VOLUMEID_EXT is not set +# CONFIG_FEATURE_VOLUMEID_BTRFS is not set +# CONFIG_FEATURE_VOLUMEID_REISERFS is not set +# CONFIG_FEATURE_VOLUMEID_FAT is not set +# CONFIG_FEATURE_VOLUMEID_HFS is not set +# CONFIG_FEATURE_VOLUMEID_JFS is not set +# CONFIG_FEATURE_VOLUMEID_XFS is not set +# CONFIG_FEATURE_VOLUMEID_NTFS is not set +# CONFIG_FEATURE_VOLUMEID_ISO9660 is not set +# CONFIG_FEATURE_VOLUMEID_UDF is not set +# CONFIG_FEATURE_VOLUMEID_LUKS is not set +# CONFIG_FEATURE_VOLUMEID_LINUXSWAP is not set +# CONFIG_FEATURE_VOLUMEID_CRAMFS is not set +# CONFIG_FEATURE_VOLUMEID_ROMFS is not set +# CONFIG_FEATURE_VOLUMEID_SYSV is not set +# CONFIG_FEATURE_VOLUMEID_OCFS2 is not set +# CONFIG_FEATURE_VOLUMEID_LINUXRAID is not set + +# +# Miscellaneous Utilities +# +# CONFIG_CONSPY is not set +# CONFIG_NANDWRITE is not set +# CONFIG_NANDDUMP is not set +# CONFIG_UBIATTACH is not set +# CONFIG_UBIDETACH is not set +# CONFIG_ADJTIMEX is not set +# CONFIG_BBCONFIG is not set +# CONFIG_FEATURE_COMPRESS_BBCONFIG is not set +# CONFIG_BEEP is not set +CONFIG_FEATURE_BEEP_FREQ=0 +CONFIG_FEATURE_BEEP_LENGTH_MS=0 +# CONFIG_CHAT is not set +# CONFIG_FEATURE_CHAT_NOFAIL is not set +# CONFIG_FEATURE_CHAT_TTY_HIFI is not set +# CONFIG_FEATURE_CHAT_IMPLICIT_CR is not set +# CONFIG_FEATURE_CHAT_SWALLOW_OPTS is not set +# CONFIG_FEATURE_CHAT_SEND_ESCAPES is not set +# CONFIG_FEATURE_CHAT_VAR_ABORT_LEN is not set +# CONFIG_FEATURE_CHAT_CLR_ABORT is not set +CONFIG_CHRT=y +# CONFIG_CROND is not set +# CONFIG_FEATURE_CROND_D is not set +# CONFIG_FEATURE_CROND_CALL_SENDMAIL is not set +CONFIG_FEATURE_CROND_DIR="/var/spool/cron" +CONFIG_CRONTAB=y +CONFIG_DC=y +CONFIG_FEATURE_DC_LIBM=y +# CONFIG_DEVFSD is not set +# CONFIG_DEVFSD_MODLOAD is not set +# CONFIG_DEVFSD_FG_NP is not set +# CONFIG_DEVFSD_VERBOSE is not set +# CONFIG_FEATURE_DEVFS is not set +# CONFIG_DEVMEM is not set +# CONFIG_EJECT is not set +# CONFIG_FEATURE_EJECT_SCSI is not set +# CONFIG_FBSPLASH is not set +# CONFIG_FLASHCP is not set +# CONFIG_FLASH_LOCK is not set +# CONFIG_FLASH_UNLOCK is not set +# CONFIG_FLASH_ERASEALL is not set +# CONFIG_IONICE is not set +# CONFIG_INOTIFYD is not set +# CONFIG_LAST is not set +# CONFIG_FEATURE_LAST_SMALL is not set +# CONFIG_FEATURE_LAST_FANCY is not set +CONFIG_LESS=y +CONFIG_FEATURE_LESS_MAXLINES=9999999 +CONFIG_FEATURE_LESS_BRACKETS=y +CONFIG_FEATURE_LESS_FLAGS=y +CONFIG_FEATURE_LESS_MARKS=y +CONFIG_FEATURE_LESS_REGEXP=y +# CONFIG_FEATURE_LESS_WINCH is not set +# CONFIG_FEATURE_LESS_DASHCMD is not set +# CONFIG_FEATURE_LESS_LINENUMS is not set +# CONFIG_HDPARM is not set +# CONFIG_FEATURE_HDPARM_GET_IDENTITY is not set +# CONFIG_FEATURE_HDPARM_HDIO_SCAN_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_UNREGISTER_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_DRIVE_RESET is not set +# CONFIG_FEATURE_HDPARM_HDIO_TRISTATE_HWIF is not set +# CONFIG_FEATURE_HDPARM_HDIO_GETSET_DMA is not set +# CONFIG_MAKEDEVS is not set +# CONFIG_FEATURE_MAKEDEVS_LEAF is not set +# CONFIG_FEATURE_MAKEDEVS_TABLE is not set +# CONFIG_MAN is not set +CONFIG_MICROCOM=y +# CONFIG_MOUNTPOINT is not set +# CONFIG_MT is not set +# CONFIG_RAIDAUTORUN is not set +# CONFIG_READAHEAD is not set +# CONFIG_RFKILL is not set +# CONFIG_RUNLEVEL is not set +# CONFIG_RX is not set +CONFIG_SETSID=y +CONFIG_STRINGS=y +# CONFIG_TASKSET is not set +# CONFIG_FEATURE_TASKSET_FANCY is not set +# CONFIG_TIME is not set +CONFIG_TIMEOUT=y +CONFIG_TTYSIZE=y +CONFIG_VOLNAME=y +# CONFIG_WALL is not set +# CONFIG_WATCHDOG is not set + +# +# Networking Utilities +# +# CONFIG_NBDCLIENT is not set +CONFIG_NC=y +# CONFIG_NC_SERVER is not set +# CONFIG_NC_EXTRA is not set +# CONFIG_NC_110_COMPAT is not set +# CONFIG_FEATURE_IPV6 is not set +# CONFIG_FEATURE_UNIX_LOCAL is not set +# CONFIG_FEATURE_PREFER_IPV4_ADDRESS is not set +# CONFIG_VERBOSE_RESOLUTION_ERRORS is not set +# CONFIG_ARP is not set +# CONFIG_ARPING is not set +# CONFIG_BRCTL is not set +# CONFIG_FEATURE_BRCTL_FANCY is not set +# CONFIG_FEATURE_BRCTL_SHOW is not set +CONFIG_DNSD=y +# CONFIG_ETHER_WAKE is not set +CONFIG_FAKEIDENTD=y +CONFIG_FTPD=y +CONFIG_FEATURE_FTP_WRITE=y +CONFIG_FEATURE_FTPD_ACCEPT_BROKEN_LIST=y +CONFIG_FTPGET=y +CONFIG_FTPPUT=y +CONFIG_FEATURE_FTPGETPUT_LONG_OPTIONS=y +CONFIG_HOSTNAME=y +CONFIG_HTTPD=y +CONFIG_FEATURE_HTTPD_RANGES=y +# CONFIG_FEATURE_HTTPD_USE_SENDFILE is not set +# CONFIG_FEATURE_HTTPD_SETUID is not set +CONFIG_FEATURE_HTTPD_BASIC_AUTH=y +CONFIG_FEATURE_HTTPD_AUTH_MD5=y +CONFIG_FEATURE_HTTPD_CGI=y +CONFIG_FEATURE_HTTPD_CONFIG_WITH_SCRIPT_INTERPR=y +CONFIG_FEATURE_HTTPD_SET_REMOTE_PORT_TO_ENV=y +CONFIG_FEATURE_HTTPD_ENCODE_URL_STR=y +CONFIG_FEATURE_HTTPD_ERROR_PAGES=y +CONFIG_FEATURE_HTTPD_PROXY=y +CONFIG_FEATURE_HTTPD_GZIP=y +# CONFIG_IFCONFIG is not set +# CONFIG_FEATURE_IFCONFIG_STATUS is not set +# CONFIG_FEATURE_IFCONFIG_SLIP is not set +# CONFIG_FEATURE_IFCONFIG_MEMSTART_IOADDR_IRQ is not set +# CONFIG_FEATURE_IFCONFIG_HW is not set +# CONFIG_FEATURE_IFCONFIG_BROADCAST_PLUS is not set +# CONFIG_IFENSLAVE is not set +# CONFIG_IFPLUGD is not set +# CONFIG_IFUPDOWN is not set +CONFIG_IFUPDOWN_IFSTATE_PATH="" +# CONFIG_FEATURE_IFUPDOWN_IP is not set +# CONFIG_FEATURE_IFUPDOWN_IP_BUILTIN is not set +# CONFIG_FEATURE_IFUPDOWN_IFCONFIG_BUILTIN is not set +# CONFIG_FEATURE_IFUPDOWN_IPV4 is not set +# CONFIG_FEATURE_IFUPDOWN_IPV6 is not set +# CONFIG_FEATURE_IFUPDOWN_MAPPING is not set +# CONFIG_FEATURE_IFUPDOWN_EXTERNAL_DHCP is not set +# CONFIG_INETD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_ECHO is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DISCARD is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_TIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_DAYTIME is not set +# CONFIG_FEATURE_INETD_SUPPORT_BUILTIN_CHARGEN is not set +# CONFIG_FEATURE_INETD_RPC is not set +# CONFIG_IP is not set +# CONFIG_FEATURE_IP_ADDRESS is not set +# CONFIG_FEATURE_IP_LINK is not set +# CONFIG_FEATURE_IP_ROUTE is not set +# CONFIG_FEATURE_IP_TUNNEL is not set +# CONFIG_FEATURE_IP_RULE is not set +# CONFIG_FEATURE_IP_SHORT_FORMS is not set +# CONFIG_FEATURE_IP_RARE_PROTOCOLS is not set +# CONFIG_IPADDR is not set +# CONFIG_IPLINK is not set +# CONFIG_IPROUTE is not set +# CONFIG_IPTUNNEL is not set +# CONFIG_IPRULE is not set +CONFIG_IPCALC=y +CONFIG_FEATURE_IPCALC_FANCY=y +CONFIG_FEATURE_IPCALC_LONG_OPTIONS=y +# CONFIG_NAMEIF is not set +# CONFIG_FEATURE_NAMEIF_EXTENDED is not set +# CONFIG_NETSTAT is not set +# CONFIG_FEATURE_NETSTAT_WIDE is not set +# CONFIG_FEATURE_NETSTAT_PRG is not set +# CONFIG_NSLOOKUP is not set +# CONFIG_NTPD is not set +# CONFIG_FEATURE_NTPD_SERVER is not set +# CONFIG_PING is not set +# CONFIG_PING6 is not set +# CONFIG_FEATURE_FANCY_PING is not set +CONFIG_PSCAN=y +# CONFIG_ROUTE is not set +# CONFIG_SLATTACH is not set +# CONFIG_TCPSVD is not set +CONFIG_TELNET=y +CONFIG_FEATURE_TELNET_TTYPE=y +CONFIG_FEATURE_TELNET_AUTOLOGIN=y +CONFIG_TELNETD=y +CONFIG_FEATURE_TELNETD_STANDALONE=y +CONFIG_FEATURE_TELNETD_INETD_WAIT=y +CONFIG_TFTP=y +CONFIG_TFTPD=y + +# +# Common options for tftp/tftpd +# +CONFIG_FEATURE_TFTP_GET=y +CONFIG_FEATURE_TFTP_PUT=y +CONFIG_FEATURE_TFTP_BLOCKSIZE=y +CONFIG_FEATURE_TFTP_PROGRESS_BAR=y +# CONFIG_TFTP_DEBUG is not set +# CONFIG_TRACEROUTE is not set +# CONFIG_TRACEROUTE6 is not set +# CONFIG_FEATURE_TRACEROUTE_VERBOSE is not set +# CONFIG_FEATURE_TRACEROUTE_USE_ICMP is not set +# CONFIG_TUNCTL is not set +# CONFIG_FEATURE_TUNCTL_UG is not set +# CONFIG_UDHCPD is not set +# CONFIG_DHCPRELAY is not set +# CONFIG_DUMPLEASES is not set +# CONFIG_FEATURE_UDHCPD_WRITE_LEASES_EARLY is not set +CONFIG_DHCPD_LEASES_FILE="" +# CONFIG_UDHCPC is not set +# CONFIG_FEATURE_UDHCPC_ARPING is not set +# CONFIG_FEATURE_UDHCP_PORT is not set +CONFIG_UDHCP_DEBUG=0 +# CONFIG_FEATURE_UDHCP_RFC3397 is not set +CONFIG_UDHCPC_DEFAULT_SCRIPT="" +CONFIG_UDHCPC_SLACK_FOR_BUGGY_SERVERS=0 +CONFIG_IFUPDOWN_UDHCPC_CMD_OPTIONS="" +# CONFIG_UDPSVD is not set +# CONFIG_VCONFIG is not set +CONFIG_WGET=y +CONFIG_FEATURE_WGET_STATUSBAR=y +CONFIG_FEATURE_WGET_AUTHENTICATION=y +CONFIG_FEATURE_WGET_LONG_OPTIONS=y +CONFIG_FEATURE_WGET_TIMEOUT=y +# CONFIG_ZCIP is not set + +# +# Print Utilities +# +# CONFIG_LPD is not set +CONFIG_LPR=y +CONFIG_LPQ=y + +# +# Mail Utilities +# +# CONFIG_MAKEMIME is not set +CONFIG_FEATURE_MIME_CHARSET="" +# CONFIG_POPMAILDIR is not set +# CONFIG_FEATURE_POPMAILDIR_DELIVERY is not set +# CONFIG_REFORMIME is not set +# CONFIG_FEATURE_REFORMIME_COMPAT is not set +# CONFIG_SENDMAIL is not set + +# +# Process Utilities +# +CONFIG_IOSTAT=y +CONFIG_MPSTAT=y +CONFIG_PMAP=y +CONFIG_POWERTOP=y +CONFIG_SMEMCAP=y +# CONFIG_FREE is not set +# CONFIG_FUSER is not set +CONFIG_KILL=y +CONFIG_KILLALL=y +CONFIG_KILLALL5=y +# CONFIG_NMETER is not set +CONFIG_PGREP=y +# CONFIG_PIDOF is not set +# CONFIG_FEATURE_PIDOF_SINGLE is not set +# CONFIG_FEATURE_PIDOF_OMIT is not set +CONFIG_PKILL=y +CONFIG_PS=y +CONFIG_FEATURE_PS_WIDE=y +# CONFIG_FEATURE_PS_TIME is not set +# CONFIG_FEATURE_PS_ADDITIONAL_COLUMNS is not set +# CONFIG_FEATURE_PS_UNUSUAL_SYSTEMS is not set +CONFIG_RENICE=y +CONFIG_BB_SYSCTL=y +# CONFIG_TOP is not set +# CONFIG_FEATURE_TOP_CPU_USAGE_PERCENTAGE is not set +# CONFIG_FEATURE_TOP_CPU_GLOBAL_PERCENTS is not set +# CONFIG_FEATURE_TOP_SMP_CPU is not set +# CONFIG_FEATURE_TOP_DECIMALS is not set +# CONFIG_FEATURE_TOP_SMP_PROCESS is not set +# CONFIG_FEATURE_TOPMEM is not set +CONFIG_FEATURE_SHOW_THREADS=y +# CONFIG_UPTIME is not set +CONFIG_WATCH=y + +# +# Runit Utilities +# +# CONFIG_RUNSV is not set +# CONFIG_RUNSVDIR is not set +# CONFIG_FEATURE_RUNSVDIR_LOG is not set +# CONFIG_SV is not set +CONFIG_SV_DEFAULT_SERVICE_DIR="" +# CONFIG_SVLOGD is not set +# CONFIG_CHPST is not set +# CONFIG_SETUIDGID is not set +# CONFIG_ENVUIDGID is not set +# CONFIG_ENVDIR is not set +# CONFIG_SOFTLIMIT is not set +# CONFIG_CHCON is not set +# CONFIG_FEATURE_CHCON_LONG_OPTIONS is not set +# CONFIG_GETENFORCE is not set +# CONFIG_GETSEBOOL is not set +# CONFIG_LOAD_POLICY is not set +# CONFIG_MATCHPATHCON is not set +# CONFIG_RESTORECON is not set +# CONFIG_RUNCON is not set +# CONFIG_FEATURE_RUNCON_LONG_OPTIONS is not set +# CONFIG_SELINUXENABLED is not set +# CONFIG_SETENFORCE is not set +# CONFIG_SETFILES is not set +# CONFIG_FEATURE_SETFILES_CHECK_OPTION is not set +# CONFIG_SETSEBOOL is not set +# CONFIG_SESTATUS is not set + +# +# Shells +# +CONFIG_ASH=y +# CONFIG_ASH_BASH_COMPAT is not set +# CONFIG_ASH_JOB_CONTROL is not set +# CONFIG_ASH_ALIAS is not set +# CONFIG_ASH_GETOPTS is not set +# CONFIG_ASH_ECHO is not set +# CONFIG_ASH_PRINTF is not set +# CONFIG_ASH_TEST is not set +# CONFIG_ASH_CMDCMD is not set +# CONFIG_ASH_MAIL is not set +# CONFIG_ASH_OPTIMIZE_FOR_SIZE is not set +# CONFIG_ASH_RANDOM_SUPPORT is not set +# CONFIG_ASH_EXPAND_PRMT is not set +# CONFIG_CTTYHACK is not set +# CONFIG_HUSH is not set +# CONFIG_HUSH_BASH_COMPAT is not set +# CONFIG_HUSH_BRACE_EXPANSION is not set +# CONFIG_HUSH_HELP is not set +# CONFIG_HUSH_INTERACTIVE is not set +# CONFIG_HUSH_SAVEHISTORY is not set +# CONFIG_HUSH_JOB is not set +# CONFIG_HUSH_TICK is not set +# CONFIG_HUSH_IF is not set +# CONFIG_HUSH_LOOPS is not set +# CONFIG_HUSH_CASE is not set +# CONFIG_HUSH_FUNCTIONS is not set +# CONFIG_HUSH_LOCAL is not set +# CONFIG_HUSH_RANDOM_SUPPORT is not set +# CONFIG_HUSH_EXPORT_N is not set +# CONFIG_HUSH_MODE_X is not set +CONFIG_FEATURE_SH_IS_ASH=y +# CONFIG_FEATURE_SH_IS_HUSH is not set +# CONFIG_FEATURE_SH_IS_NONE is not set +# CONFIG_FEATURE_BASH_IS_ASH is not set +# CONFIG_FEATURE_BASH_IS_HUSH is not set +CONFIG_FEATURE_BASH_IS_NONE=y +CONFIG_SH_MATH_SUPPORT=y +CONFIG_SH_MATH_SUPPORT_64=y +# CONFIG_FEATURE_SH_EXTRA_QUIET is not set +# CONFIG_FEATURE_SH_STANDALONE is not set +# CONFIG_FEATURE_SH_NOFORK is not set + +# +# System Logging Utilities +# +CONFIG_SYSLOGD=y +CONFIG_FEATURE_ROTATE_LOGFILE=y +CONFIG_FEATURE_REMOTE_LOG=y +# CONFIG_FEATURE_SYSLOGD_DUP is not set +CONFIG_FEATURE_SYSLOGD_READ_BUFFER_SIZE=256 +CONFIG_FEATURE_IPC_SYSLOG=y +CONFIG_FEATURE_IPC_SYSLOG_BUFFER_SIZE=16 +CONFIG_LOGREAD=y +CONFIG_FEATURE_LOGREAD_REDUCED_LOCKING=y +# CONFIG_KLOGD is not set +# CONFIG_FEATURE_KLOGD_KLOGCTL is not set +CONFIG_LOGGER=y diff --git a/busybox-1_37_0/console-tools/Config.src b/busybox-1_37_0/console-tools/Config.src new file mode 100644 index 000000000..c30caf0e1 --- /dev/null +++ b/busybox-1_37_0/console-tools/Config.src @@ -0,0 +1,10 @@ +# +# For a description of the syntax of this configuration file, +# see docs/Kconfig-language.txt. +# + +menu "Console Utilities" + +INSERT + +endmenu diff --git a/busybox-1_37_0/console-tools/Kbuild.src b/busybox-1_37_0/console-tools/Kbuild.src new file mode 100644 index 000000000..6b4fb7470 --- /dev/null +++ b/busybox-1_37_0/console-tools/Kbuild.src @@ -0,0 +1,9 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2005 by Erik Andersen +# +# Licensed under GPLv2, see file LICENSE in this source tree. + +lib-y:= + +INSERT diff --git a/busybox-1_37_0/console-tools/chvt.c b/busybox-1_37_0/console-tools/chvt.c new file mode 100644 index 000000000..2444e1f9d --- /dev/null +++ b/busybox-1_37_0/console-tools/chvt.c @@ -0,0 +1,33 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini chvt implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config CHVT +//config: bool "chvt (2.2 kb)" +//config: default y +//config: help +//config: This program is used to change to another terminal. +//config: Example: chvt 4 (change to terminal /dev/tty4) + +//applet:IF_CHVT(APPLET_NOEXEC(chvt, chvt, BB_DIR_USR_BIN, BB_SUID_DROP, chvt)) + +//kbuild:lib-$(CONFIG_CHVT) += chvt.o + +//usage:#define chvt_trivial_usage +//usage: "N" +//usage:#define chvt_full_usage "\n\n" +//usage: "Change the foreground virtual terminal to /dev/ttyN" + +#include "libbb.h" + +int chvt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int chvt_main(int argc UNUSED_PARAM, char **argv) +{ + int num = xatou_range(single_argv(argv), 1, 63); + console_make_active(get_console_fd_or_die(), num); + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/clear.c b/busybox-1_37_0/console-tools/clear.c new file mode 100644 index 000000000..e1bf2c313 --- /dev/null +++ b/busybox-1_37_0/console-tools/clear.c @@ -0,0 +1,33 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini clear implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config CLEAR +//config: bool "clear (371 bytes)" +//config: default y +//config: help +//config: This program clears the terminal screen. + +//applet:IF_CLEAR(APPLET_NOFORK(clear, clear, BB_DIR_USR_BIN, BB_SUID_DROP, clear)) + +//kbuild:lib-$(CONFIG_CLEAR) += clear.o + +//usage:#define clear_trivial_usage +//usage: "" +//usage:#define clear_full_usage "\n\n" +//usage: "Clear screen" + +#include "libbb.h" + +#define ESC "\033" + +int clear_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int clear_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + /* home; clear to the end of screen */ + return full_write1_str(ESC"[H" ESC"[J") != 6; +} diff --git a/busybox-1_37_0/console-tools/deallocvt.c b/busybox-1_37_0/console-tools/deallocvt.c new file mode 100644 index 000000000..f03ad079b --- /dev/null +++ b/busybox-1_37_0/console-tools/deallocvt.c @@ -0,0 +1,45 @@ +/* vi: set sw=4 ts=4: */ +/* + * Disallocate virtual terminal(s) + * + * Copyright (C) 2003 by Tito Ragusa + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config DEALLOCVT +//config: bool "deallocvt (2.2 kb)" +//config: default y +//config: help +//config: This program deallocates unused virtual consoles. + +//applet:IF_DEALLOCVT(APPLET_NOEXEC(deallocvt, deallocvt, BB_DIR_USR_BIN, BB_SUID_DROP, deallocvt)) + +//kbuild:lib-$(CONFIG_DEALLOCVT) += deallocvt.o + +//usage:#define deallocvt_trivial_usage +//usage: "[N]" +//usage:#define deallocvt_full_usage "\n\n" +//usage: "Deallocate unused virtual terminal /dev/ttyN" + +#include "libbb.h" + +/* From */ +enum { VT_DISALLOCATE = 0x5608 }; /* free memory associated to vt */ + +int deallocvt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int deallocvt_main(int argc UNUSED_PARAM, char **argv) +{ + /* num = 0 deallocate all unused consoles */ + int num = 0; + + if (argv[1]) { + if (argv[2]) + bb_show_usage(); + num = xatou_range(argv[1], 1, 63); + } + + /* double cast suppresses "cast to ptr from int of different size" */ + xioctl(get_console_fd_or_die(), VT_DISALLOCATE, (void *)(ptrdiff_t)num); + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/dumpkmap.c b/busybox-1_37_0/console-tools/dumpkmap.c new file mode 100644 index 000000000..957d16529 --- /dev/null +++ b/busybox-1_37_0/console-tools/dumpkmap.c @@ -0,0 +1,88 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini dumpkmap implementation for busybox + * + * Copyright (C) Arne Bernin + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config DUMPKMAP +//config: bool "dumpkmap (1.9 kb)" +//config: default y +//config: help +//config: This program dumps the kernel's keyboard translation table to +//config: stdout, in binary format. You can then use loadkmap to load it. + +//applet:IF_DUMPKMAP(APPLET_NOEXEC(dumpkmap, dumpkmap, BB_DIR_BIN, BB_SUID_DROP, dumpkmap)) +/* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */ + +//kbuild:lib-$(CONFIG_DUMPKMAP) += dumpkmap.o + +//usage:#define dumpkmap_trivial_usage +//usage: "> keymap" +//usage:#define dumpkmap_full_usage "\n\n" +//usage: "Print a binary keyboard translation table to stdout" +//usage: +//usage:#define dumpkmap_example_usage +//usage: "$ dumpkmap > keymap\n" + +#include "libbb.h" +#include "common_bufsiz.h" + +/* From */ +struct kbentry { + unsigned char kb_table; + unsigned char kb_index; + unsigned short kb_value; +}; +#define KDGKBENT 0x4B46 /* gets one entry in translation table */ + +/* From */ +#define NR_KEYS 128 +#define MAX_NR_KEYMAPS 256 + +int dumpkmap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int dumpkmap_main(int argc UNUSED_PARAM, char **argv) +{ + struct kbentry ke; + int i, j, fd; + + /* When user accidentally runs "dumpkmap FILE" + * instead of "dumpkmap >FILE", we'd dump binary stuff to tty. + * Let's prevent it: + */ + if (argv[1]) + bb_show_usage(); +/* bb_warn_ignoring_args(argv[1]);*/ + + fd = get_console_fd_or_die(); + +#define flags bb_common_bufsiz1 + setup_common_bufsiz(); + /* 0 1 2 3 4 5 6 7 8 9 a b c=12 */ + memcpy(flags, "bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1", + /* Can use sizeof, or sizeof-1. sizeof is even, using that */ + /****/ sizeof("bkeymap\1\1\1\0\1\1\1\0\1\1\1\0\1") + ); + write(STDOUT_FILENO, flags, 7 + MAX_NR_KEYMAPS); +#define flags7 (flags + 7) + + for (i = 0; i < 13; i++) { + if (flags7[i]) { + for (j = 0; j < NR_KEYS; j++) { + ke.kb_index = j; + ke.kb_table = i; + if (!ioctl_or_perror(fd, KDGKBENT, &ke, + "ioctl(KDGKBENT{%d,%d}) failed", + j, i) + ) { + write(STDOUT_FILENO, &ke.kb_value, 2); + } + } + } + } + if (ENABLE_FEATURE_CLEAN_UP) { + close(fd); + } + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/fgconsole.c b/busybox-1_37_0/console-tools/fgconsole.c new file mode 100644 index 000000000..b6dbc472b --- /dev/null +++ b/busybox-1_37_0/console-tools/fgconsole.c @@ -0,0 +1,44 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini fgconsole implementation for busybox + * + * Copyright (C) 2010 by Grigory Batalov + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config FGCONSOLE +//config: bool "fgconsole (1.8 kb)" +//config: default y +//config: help +//config: This program prints active (foreground) console number. + +//applet:IF_FGCONSOLE(APPLET_NOEXEC(fgconsole, fgconsole, BB_DIR_USR_BIN, BB_SUID_DROP, fgconsole)) + +//kbuild:lib-$(CONFIG_FGCONSOLE) += fgconsole.o + +//usage:#define fgconsole_trivial_usage +//usage: "" +//usage:#define fgconsole_full_usage "\n\n" +//usage: "Get active console" + +#include "libbb.h" + +/* From */ +struct vt_stat { + unsigned short v_active; /* active vt */ + unsigned short v_signal; /* signal to send */ + unsigned short v_state; /* vt bitmask */ +}; +enum { VT_GETSTATE = 0x5603 }; /* get global vt state info */ + +int fgconsole_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int fgconsole_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + struct vt_stat vtstat; + + vtstat.v_active = 0; + xioctl(get_console_fd_or_die(), VT_GETSTATE, &vtstat); + printf("%d\n", vtstat.v_active); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/kbd_mode.c b/busybox-1_37_0/console-tools/kbd_mode.c new file mode 100644 index 000000000..1ec25757d --- /dev/null +++ b/busybox-1_37_0/console-tools/kbd_mode.c @@ -0,0 +1,94 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini kbd_mode implementation for busybox + * + * Copyright (C) 2007 Loic Grenie + * written using Andries Brouwer 's kbd_mode from + * console-utils v0.2.3, licensed under GNU GPLv2 + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config KBD_MODE +//config: bool "kbd_mode (4.3 kb)" +//config: default y +//config: help +//config: This program reports and sets keyboard mode. + +//applet:IF_KBD_MODE(APPLET_NOEXEC(kbd_mode, kbd_mode, BB_DIR_BIN, BB_SUID_DROP, kbd_mode)) + +//kbuild:lib-$(CONFIG_KBD_MODE) += kbd_mode.o + +//usage:#define kbd_mode_trivial_usage +//usage: "[-a|k|s|u] [-C TTY]" +//usage:#define kbd_mode_full_usage "\n\n" +//usage: "Report or set VT console keyboard mode\n" +//usage: "\n -a Default (ASCII)" +//usage: "\n -k Medium-raw (keycode)" +//usage: "\n -s Raw (scancode)" +//usage: "\n -u Unicode (utf-8)" +//usage: "\n -C TTY Affect TTY" + +#include "libbb.h" +#include + +int kbd_mode_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int kbd_mode_main(int argc UNUSED_PARAM, char **argv) +{ + enum { + SCANCODE = (1 << 0), + ASCII = (1 << 1), + MEDIUMRAW = (1 << 2), + UNICODE = (1 << 3), + }; + int fd; + unsigned opt; + const char *tty_name; + + opt = getopt32(argv, "sakuC:", &tty_name); + if (opt & 0x10) { + opt &= 0xf; /* clear -C bit, see (*) */ + fd = xopen_nonblocking(tty_name); + } else { + /* kbd-2.0.3 tries in sequence: + * fd#0, /dev/tty, /dev/tty0. + * get_console_fd_or_die: /dev/console, /dev/tty0, /dev/tty. + * kbd-2.0.3 checks KDGKBTYPE, get_console_fd_or_die checks too. + */ + fd = get_console_fd_or_die(); + } + + if (!opt) { /* print current setting */ + const char *mode = "unknown"; + int m; + + xioctl(fd, KDGKBMODE, &m); + if (m == K_RAW) + mode = "raw (scancode)"; + else if (m == K_XLATE) + mode = "default (ASCII)"; + else if (m == K_MEDIUMRAW) + mode = "mediumraw (keycode)"; + else if (m == K_UNICODE) + mode = "Unicode (UTF-8)"; + else if (m == 4 /*K_OFF*/) /* kbd-2.0.3 does not show this mode, says "unknown" */ + mode = "off"; + printf("The keyboard is in %s mode\n", mode); + } else { + /* here we depend on specific bits assigned to options (*) + * KDSKBMODE constants have these values: + * #define K_RAW 0x00 + * #define K_XLATE 0x01 + * #define K_MEDIUMRAW 0x02 + * #define K_UNICODE 0x03 + * #define K_OFF 0x04 + * (looks like "-ak" together would cause the same effect as -u) + */ + opt = opt & UNICODE ? 3 : opt >> 1; + /* double cast prevents warnings about widening conversion */ + xioctl(fd, KDSKBMODE, (void*)(ptrdiff_t)opt); + } + + if (ENABLE_FEATURE_CLEAN_UP) + close(fd); + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/loadfont.c b/busybox-1_37_0/console-tools/loadfont.c new file mode 100644 index 000000000..cec5e19cd --- /dev/null +++ b/busybox-1_37_0/console-tools/loadfont.c @@ -0,0 +1,533 @@ +/* vi: set sw=4 ts=4: */ +/* + * loadfont.c - Eugene Crosser & Andries Brouwer + * + * Version 0.96bb + * + * Loads the console font, and possibly the corresponding screen map(s). + * (Adapted for busybox by Matej Vela.) + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//config:config LOADFONT +//config: bool "loadfont (5.4 kb)" +//config: default y +//config: help +//config: This program loads a console font from standard input. +//config: +//config:config SETFONT +//config: bool "setfont (24 kb)" +//config: default y +//config: help +//config: Allows to load console screen map. Useful for i18n. +//config: +//config:config FEATURE_SETFONT_TEXTUAL_MAP +//config: bool "Support reading textual screen maps" +//config: default y +//config: depends on SETFONT +//config: help +//config: Support reading textual screen maps. +//config: +//config:config DEFAULT_SETFONT_DIR +//config: string "Default directory for console-tools files" +//config: default "" +//config: depends on SETFONT +//config: help +//config: Directory to use if setfont's params are simple filenames +//config: (not /path/to/file or ./file). Default is "" (no default directory). +//config: +//config:comment "Common options for loadfont and setfont" +//config: depends on LOADFONT || SETFONT +//config: +//config:config FEATURE_LOADFONT_PSF2 +//config: bool "Support PSF2 console fonts" +//config: default y +//config: depends on LOADFONT || SETFONT +//config: +//config:config FEATURE_LOADFONT_RAW +//config: bool "Support old (raw) console fonts" +//config: default y +//config: depends on LOADFONT || SETFONT + +//applet:IF_LOADFONT(APPLET_NOEXEC(loadfont, loadfont, BB_DIR_USR_SBIN, BB_SUID_DROP, loadfont)) +//applet:IF_SETFONT(APPLET_NOEXEC(setfont, setfont, BB_DIR_USR_SBIN, BB_SUID_DROP, setfont)) + +//kbuild:lib-$(CONFIG_LOADFONT) += loadfont.o +//kbuild:lib-$(CONFIG_SETFONT) += loadfont.o + +#include "libbb.h" +#include + +#ifndef KDFONTOP +# define KDFONTOP 0x4B72 +struct console_font_op { + unsigned op; /* KD_FONT_OP_* */ + unsigned flags; /* KD_FONT_FLAG_* */ + unsigned width, height; + unsigned charcount; + unsigned char *data; /* font data with height fixed to 32 */ +}; +# define KD_FONT_OP_SET 0 /* Set font */ +# define KD_FONT_OP_GET 1 /* Get font */ +# define KD_FONT_OP_SET_DEFAULT 2 /* Set font to default, data points to name / NULL */ +# define KD_FONT_OP_COPY 3 /* Copy from another console */ +# define KD_FONT_FLAG_OLD 0x80000000 /* Invoked via old interface */ +# define KD_FONT_FLAG_DONT_RECALC 1 /* Don't call adjust_height() */ + /* (Used internally for PIO_FONT support) */ +#endif /* KDFONTOP */ + + +enum { + PSF1_MAGIC0 = 0x36, + PSF1_MAGIC1 = 0x04, + PSF1_MODE512 = 0x01, + PSF1_MODEHASTAB = 0x02, + PSF1_MODEHASSEQ = 0x04, + PSF1_MAXMODE = 0x05, + PSF1_STARTSEQ = 0xfffe, + PSF1_SEPARATOR = 0xffff, +}; + +struct psf1_header { + unsigned char magic[2]; /* Magic number */ + unsigned char mode; /* PSF font mode */ + unsigned char charsize; /* Character size */ +}; + +#define psf1h(x) ((struct psf1_header*)(x)) + +#define PSF1_MAGIC_OK(x) ( \ + (x)->magic[0] == PSF1_MAGIC0 \ + && (x)->magic[1] == PSF1_MAGIC1 \ +) + +#if ENABLE_FEATURE_LOADFONT_PSF2 +enum { + PSF2_MAGIC0 = 0x72, + PSF2_MAGIC1 = 0xb5, + PSF2_MAGIC2 = 0x4a, + PSF2_MAGIC3 = 0x86, + PSF2_HAS_UNICODE_TABLE = 0x01, + PSF2_MAXVERSION = 0, + PSF2_STARTSEQ = 0xfe, + PSF2_SEPARATOR = 0xff +}; + +struct psf2_header { + unsigned char magic[4]; + unsigned int version; + unsigned int headersize; /* offset of bitmaps in file */ + unsigned int flags; + unsigned int length; /* number of glyphs */ + unsigned int charsize; /* number of bytes for each character */ + unsigned int height; /* max dimensions of glyphs */ + unsigned int width; /* charsize = height * ((width + 7) / 8) */ +}; + +#define psf2h(x) ((struct psf2_header*)(x)) + +#define PSF2_MAGIC_OK(x) ( \ + (x)->magic[0] == PSF2_MAGIC0 \ + && (x)->magic[1] == PSF2_MAGIC1 \ + && (x)->magic[2] == PSF2_MAGIC2 \ + && (x)->magic[3] == PSF2_MAGIC3 \ +) +#endif /* ENABLE_FEATURE_LOADFONT_PSF2 */ + + +static void do_loadfont(int fd, unsigned char *inbuf, int height, int width, int charsize, int fontsize) +{ + unsigned char *buf; + int charwidth = 32 * ((width+7)/8); + int i; + + if (height < 1 || height > 32 || width < 1 || width > 32) + bb_error_msg_and_die("bad character size %dx%d", height, width); + + buf = xzalloc(charwidth * ((fontsize < 128) ? 128 : fontsize)); + for (i = 0; i < fontsize; i++) + memcpy(buf + (i*charwidth), inbuf + (i*charsize), charsize); + + { /* KDFONTOP */ + struct console_font_op cfo; + cfo.op = KD_FONT_OP_SET; + cfo.flags = 0; + cfo.width = width; + cfo.height = height; + cfo.charcount = fontsize; + cfo.data = buf; + xioctl(fd, KDFONTOP, &cfo); + } + + free(buf); +} + +/* + * Format of the Unicode information: + * + * For each font position ** + * where is a 2-byte little endian Unicode value (PSF1) + * or an UTF-8 coded value (PSF2), + * = *, = psf1 ? 0xFFFE : 0xFE, + * = psf1 ? 0xFFFF : 0xFF. + * and * denotes zero or more occurrences of the preceding item. + * + * Semantics: + * The leading * part gives Unicode symbols that are all + * represented by this font position. The following sequences + * are sequences of Unicode symbols - probably a symbol + * together with combining accents - also represented by + * this font position. + * + * Example: + * At the font position for a capital A-ring glyph, we + * may have: + * 00C5,212B,FFFE,0041,030A,FFFF + * Some font positions may be described by sequences only, + * namely when there is no precomposed Unicode value for the glyph. + */ +#if !ENABLE_FEATURE_LOADFONT_PSF2 +#define do_loadtable(fd, inbuf, tailsz, fontsize, psf2) \ + do_loadtable(fd, inbuf, tailsz, fontsize) +#endif +static void do_loadtable(int fd, unsigned char *inbuf, int tailsz, int fontsize, int psf2) +{ +#if !ENABLE_FEATURE_LOADFONT_PSF2 +/* gcc 4.3.1 code size: */ +# define psf2 0 /* +0 bytes */ +// const int psf2 = 0; /* +8 bytes */ +// enum { psf2 = 0 }; /* +13 bytes */ +#endif + struct unimapinit advice; + struct unimapdesc ud; + struct unipair *up; + int ct = 0, maxct; + int glyph; + uint16_t unicode; + + maxct = tailsz; /* more than enough */ + up = xmalloc(maxct * sizeof(*up)); + + for (glyph = 0; glyph < fontsize; glyph++) { + while (tailsz > 0) { + if (!psf2) { /* PSF1 */ + unicode = (((uint16_t) inbuf[1]) << 8) + inbuf[0]; + tailsz -= 2; + inbuf += 2; + if (unicode == PSF1_SEPARATOR) + break; + } else { /* PSF2 */ +#if ENABLE_FEATURE_LOADFONT_PSF2 + --tailsz; + unicode = *inbuf++; + if (unicode == PSF2_SEPARATOR) { + break; + } else if (unicode == PSF2_STARTSEQ) { + bb_simple_error_msg_and_die("unicode sequences not implemented"); + } else if (unicode >= 0xC0) { + if (unicode >= 0xFC) + unicode &= 0x01, maxct = 5; + else if (unicode >= 0xF8) + unicode &= 0x03, maxct = 4; + else if (unicode >= 0xF0) + unicode &= 0x07, maxct = 3; + else if (unicode >= 0xE0) + unicode &= 0x0F, maxct = 2; + else + unicode &= 0x1F, maxct = 1; + do { + if (tailsz <= 0 || *inbuf < 0x80 || *inbuf > 0xBF) + bb_simple_error_msg_and_die("illegal UTF-8 character"); + --tailsz; + unicode = (unicode << 6) + (*inbuf++ & 0x3F); + } while (--maxct > 0); + } else if (unicode >= 0x80) { + bb_simple_error_msg_and_die("illegal UTF-8 character"); + } +#else + return; +#endif + } + up[ct].unicode = unicode; + up[ct].fontpos = glyph; + ct++; + } + } + + /* Note: after PIO_UNIMAPCLR and before PIO_UNIMAP + * this printf did not work on many kernels */ + + advice.advised_hashsize = 0; + advice.advised_hashstep = 0; + advice.advised_hashlevel = 0; + xioctl(fd, PIO_UNIMAPCLR, &advice); + ud.entry_ct = ct; + ud.entries = up; + xioctl(fd, PIO_UNIMAP, &ud); +#undef psf2 +} + +static void do_load(int fd, unsigned char *buffer, size_t len) +{ + int height; + int width = 8; + int charsize; + int fontsize = 256; + int has_table = 0; + unsigned char *font = buffer; + unsigned char *table; + + if (len >= sizeof(struct psf1_header) && PSF1_MAGIC_OK(psf1h(buffer))) { + if (psf1h(buffer)->mode > PSF1_MAXMODE) + bb_simple_error_msg_and_die("unsupported psf file mode"); + if (psf1h(buffer)->mode & PSF1_MODE512) + fontsize = 512; + if (psf1h(buffer)->mode & PSF1_MODEHASTAB) + has_table = 1; + height = charsize = psf1h(buffer)->charsize; + font += sizeof(struct psf1_header); + } else +#if ENABLE_FEATURE_LOADFONT_PSF2 + if (len >= sizeof(struct psf2_header) && PSF2_MAGIC_OK(psf2h(buffer))) { + if (psf2h(buffer)->version > PSF2_MAXVERSION) + bb_simple_error_msg_and_die("unsupported psf file version"); + fontsize = psf2h(buffer)->length; + if (psf2h(buffer)->flags & PSF2_HAS_UNICODE_TABLE) + has_table = 2; + charsize = psf2h(buffer)->charsize; + height = psf2h(buffer)->height; + width = psf2h(buffer)->width; + font += psf2h(buffer)->headersize; + } else +#endif +#if ENABLE_FEATURE_LOADFONT_RAW + if (len == 9780) { /* file with three code pages? */ + charsize = height = 16; + font += 40; + } else if ((len & 0377) == 0) { /* bare font */ + charsize = height = len / 256; + } else +#endif + { + bb_simple_error_msg_and_die("input file: bad length or unsupported font type"); + } + +#if !defined(PIO_FONTX) || defined(__sparc__) + if (fontsize != 256) + bb_simple_error_msg_and_die("only fontsize 256 supported"); +#endif + + table = font + fontsize * charsize; + buffer += len; + + if (table > buffer || (!has_table && table != buffer)) + bb_simple_error_msg_and_die("input file: bad length"); + + do_loadfont(fd, font, height, width, charsize, fontsize); + + if (has_table) + do_loadtable(fd, table, buffer - table, fontsize, has_table - 1); +} + + +#if ENABLE_LOADFONT +//usage:#define loadfont_trivial_usage +//usage: "< font" +//usage:#define loadfont_full_usage "\n\n" +//usage: "Load a console font from stdin" +/* //usage: "\n -C TTY Affect TTY instead of /dev/tty" */ +//usage: +//usage:#define loadfont_example_usage +//usage: "$ loadfont < /etc/i18n/fontname\n" +int loadfont_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int loadfont_main(int argc UNUSED_PARAM, char **argv) +{ + size_t len; + unsigned char *buffer; + + // no arguments allowed! + getopt32(argv, "^" "" "\0" "=0"); + + /* + * We used to look at the length of the input file + * with stat(); now that we accept compressed files, + * just read the entire file. + * Len was 32k, but latarcyrheb-sun32.psfu is 34377 bytes + * (it has largish Unicode map). + */ + len = 128*1024; + buffer = xmalloc_read(STDIN_FILENO, &len); + // xmalloc_open_zipped_read_close(filename, &len); + if (!buffer) + bb_simple_perror_msg_and_die("error reading input font"); + do_load(get_console_fd_or_die(), buffer, len); + + return EXIT_SUCCESS; +} +#endif + + +#if ENABLE_SETFONT +/* kbd-1.12: +setfont [-O font+umap.orig] [-o font.orig] [-om cmap.orig] +[-ou umap.orig] [-N] [font.new ...] [-m cmap] [-u umap] [-C console] +[-hNN] [-v] [-V] + +-h NN Override font height +-o file + Save previous font in file +-O file + Save previous font and Unicode map in file +-om file + Store console map in file +-ou file + Save previous Unicode map in file +-m file + Load console map or Unicode console map from file +-u file + Load Unicode table describing the font from file + Example: + # cp866 + 0x00-0x7f idem + # + 0x80 U+0410 # CYRILLIC CAPITAL LETTER A + 0x81 U+0411 # CYRILLIC CAPITAL LETTER BE + 0x82 U+0412 # CYRILLIC CAPITAL LETTER VE +-C console + Set the font for the indicated console +-v Verbose +-V Version +*/ +//usage:#define setfont_trivial_usage +//usage: "[-m MAPFILE] [-C TTY] FILE" +//usage:#define setfont_full_usage "\n\n" +//usage: "Load a console font\n" +//usage: "\n -m MAPFILE Load console screen map" +//usage: "\n -C TTY Affect TTY instead of /dev/tty" +//usage: +//usage:#define setfont_example_usage +//usage: "$ setfont -m koi8-r /etc/i18n/fontname\n" + +# if ENABLE_FEATURE_SETFONT_TEXTUAL_MAP +static int ctoi(char *s) +{ + if (s[0] == '\'' && s[1] != '\0' && s[2] == '\'' && s[3] == '\0') + return s[1]; + // U+ means 0x + if (s[0] == 'U' && s[1] == '+') { + s[0] = '0'; + s[1] = 'x'; + } + if (!isdigit(s[0])) + return -1; + return xstrtoul(s, 0); +} +# endif + +int setfont_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int setfont_main(int argc UNUSED_PARAM, char **argv) +{ + size_t len; + unsigned opts; + int fd; + unsigned char *buffer; + char *mapfilename; + const char *tty_name = CURRENT_TTY; + + opts = getopt32(argv, "^" "m:C:" "\0" "=1", &mapfilename, &tty_name); + argv += optind; + + fd = xopen_nonblocking(tty_name); + + if (sizeof(CONFIG_DEFAULT_SETFONT_DIR) > 1) { // if not "" + if (*argv[0] != '/') { + // goto default fonts location. don't die if doesn't exist + chdir(CONFIG_DEFAULT_SETFONT_DIR "/consolefonts"); + } + } + // load font + len = 128*1024; + buffer = xmalloc_open_zipped_read_close(*argv, &len); + if (!buffer) + bb_simple_perror_msg_and_die(*argv); + do_load(fd, buffer, len); + + // load the screen map, if any + if (opts & 1) { // -m + unsigned mode = PIO_SCRNMAP; + void *map; + + if (sizeof(CONFIG_DEFAULT_SETFONT_DIR) > 1) { // if not "" + if (mapfilename[0] != '/') { + // goto default keymaps location + chdir(CONFIG_DEFAULT_SETFONT_DIR "/consoletrans"); + } + } + // fetch keymap + map = xmalloc_open_zipped_read_close(mapfilename, &len); + if (!map) + bb_simple_perror_msg_and_die(mapfilename); + // file size is 256 or 512 bytes? -> assume binary map + if (len == E_TABSZ || len == 2*E_TABSZ) { + if (len == 2*E_TABSZ) + mode = PIO_UNISCRNMAP; + } +# if ENABLE_FEATURE_SETFONT_TEXTUAL_MAP + // assume textual Unicode console maps: + // 0x00 U+0000 # NULL (NUL) + // 0x01 U+0001 # START OF HEADING (SOH) + // 0x02 U+0002 # START OF TEXT (STX) + // 0x03 U+0003 # END OF TEXT (ETX) + else { + int i; + char *token[2]; + parser_t *parser; + + if (ENABLE_FEATURE_CLEAN_UP) + free(map); + map = xmalloc(E_TABSZ * sizeof(unsigned short)); + +#define unicodes ((unsigned short *)map) + // fill vanilla map + for (i = 0; i < E_TABSZ; i++) + unicodes[i] = 0xf000 + i; + + parser = config_open(mapfilename); + while (config_read(parser, token, 2, 2, "# \t", PARSE_NORMAL | PARSE_MIN_DIE)) { + // parse code/value pair + int a = ctoi(token[0]); + int b = ctoi(token[1]); + if (a < 0 || a >= E_TABSZ + || b < 0 || b > 65535 + ) { + bb_simple_error_msg_and_die("map format"); + } + // patch map + unicodes[a] = b; + // unicode character is met? + if (b > 255) + mode = PIO_UNISCRNMAP; + } + if (ENABLE_FEATURE_CLEAN_UP) + config_close(parser); + + if (mode != PIO_UNISCRNMAP) { +#define asciis ((unsigned char *)map) + for (i = 0; i < E_TABSZ; i++) + asciis[i] = unicodes[i]; +#undef asciis + } +#undef unicodes + } +# endif // ENABLE_FEATURE_SETFONT_TEXTUAL_MAP + + // do set screen map + xioctl(fd, mode, map); + + if (ENABLE_FEATURE_CLEAN_UP) + free(map); + } + + return EXIT_SUCCESS; +} +#endif diff --git a/busybox-1_37_0/console-tools/loadkmap.c b/busybox-1_37_0/console-tools/loadkmap.c new file mode 100644 index 000000000..22e918dbf --- /dev/null +++ b/busybox-1_37_0/console-tools/loadkmap.c @@ -0,0 +1,102 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini loadkmap implementation for busybox + * + * Copyright (C) 1998 Enrique Zanardi + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config LOADKMAP +//config: bool "loadkmap (2.1 kb)" +//config: default y +//config: help +//config: This program loads a keyboard translation table from +//config: standard input. + +//applet:IF_LOADKMAP(APPLET_NOEXEC(loadkmap, loadkmap, BB_DIR_SBIN, BB_SUID_DROP, loadkmap)) + +//kbuild:lib-$(CONFIG_LOADKMAP) += loadkmap.o + +//usage:#define loadkmap_trivial_usage +//usage: "< keymap" +//usage:#define loadkmap_full_usage "\n\n" +//usage: "Load a binary keyboard translation table from stdin" +////usage: "\n" +////usage: "\n -C TTY Affect TTY instead of /dev/tty" +//usage: +//usage:#define loadkmap_example_usage +//usage: "$ loadkmap < /etc/i18n/lang-keymap\n" + +#include "libbb.h" + +#define BINARY_KEYMAP_MAGIC "bkeymap" + +/* From */ +struct kbentry { + unsigned char kb_table; + unsigned char kb_index; + unsigned short kb_value; +}; +/* sets one entry in translation table */ +#define KDSKBENT 0x4B47 + +/* From */ +#define NR_KEYS 128 +#define MAX_NR_KEYMAPS 256 + +int loadkmap_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int loadkmap_main(int argc UNUSED_PARAM, char **argv) +{ + struct kbentry ke; + int i, j, fd; + uint16_t ibuff[NR_KEYS]; +/* const char *tty_name = CURRENT_TTY; */ + RESERVE_CONFIG_BUFFER(flags, MAX_NR_KEYMAPS); + + /* When user accidentally runs "loadkmap FILE" + * instead of "loadkmap + * hacked by Tito + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config OPENVT +//config: bool "openvt (7.4 kb)" +//config: default y +//config: help +//config: This program is used to start a command on an unused +//config: virtual terminal. + +//applet:IF_OPENVT(APPLET(openvt, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_OPENVT) += openvt.o + +//usage:#define openvt_trivial_usage +//usage: "[-c N] [-sw] [PROG ARGS]" +//usage:#define openvt_full_usage "\n\n" +//usage: "Start PROG on a new virtual terminal\n" +//usage: "\n -c N Use specified VT" +//usage: "\n -s Switch to the VT" +/* //usage: "\n -l Run PROG as login shell (by prepending '-')" */ +//usage: "\n -w Wait for PROG to exit" +//usage: +//usage:#define openvt_example_usage +//usage: "openvt 2 /bin/ash\n" + +#include +#include "libbb.h" + +/* "Standard" openvt's man page (we do not support all of this): + +openvt [-c NUM] [-fsulv] [--] [command [args]] + +Find the first available VT, and run command on it. Stdio is directed +to that VT. If no command is specified then $SHELL is used. + +-c NUM + Use the given VT number, not the first free one. +-f + Force opening a VT: don't try to check if VT is already in use. +-s + Switch to the new VT when starting the command. + The VT of the new command will be made the new current VT. +-u + Figure out the owner of the current VT, and run login as that user. + Suitable to be called by init. Shouldn't be used with -c or -l. +-l + Make the command a login shell: a "-" is prepended to the argv[0] + when command is executed. +-v + Verbose. +-w + Wait for command to complete. If -w and -s are used together, + switch back to the controlling terminal when the command completes. + +bbox: +-u: not implemented +-f: always in effect +-l: not implemented, ignored +-v: ignored +-ws: does NOT switch back +*/ + +/* Helper: does this fd understand VT_xxx? */ +static int not_vt_fd(int fd) +{ + struct vt_stat vtstat; + return ioctl(fd, VT_GETSTATE, &vtstat); /* !0: error, it's not VT fd */ +} + +/* Helper: get a fd suitable for VT_xxx */ +static int get_vt_fd(void) +{ + int fd; + + /* Do we, by chance, already have it? */ + for (fd = 0; fd < 3; fd++) + if (!not_vt_fd(fd)) + return fd; + fd = open(DEV_CONSOLE, O_RDONLY | O_NONBLOCK); + if (fd >= 0 && !not_vt_fd(fd)) + return fd; + bb_simple_error_msg_and_die("can't find open VT"); +} + +static int find_free_vtno(void) +{ + int vtno; + int fd = get_vt_fd(); + + errno = 0; + /*xfunc_error_retval = 3; - do we need compat? */ + if (ioctl(fd, VT_OPENQRY, &vtno) != 0 || vtno <= 0) + bb_simple_perror_msg_and_die("can't find open VT"); +// Not really needed, grep for DAEMON_CLOSE_EXTRA_FDS +// if (fd > 2) +// close(fd); + return vtno; +} + +/* vfork scares gcc, it generates bigger code. + * Keep it away from main program. + * TODO: move to libbb; or adapt existing libbb's spawn(). + */ +static NOINLINE void vfork_child(char **argv) +{ + if (vfork() == 0) { + /* CHILD */ + /* Try to make this VT our controlling tty */ + setsid(); /* lose old ctty */ + ioctl(STDIN_FILENO, TIOCSCTTY, 0 /* 0: don't forcibly steal */); + //bb_error_msg("our sid %d", getsid(0)); + //bb_error_msg("our pgrp %d", getpgrp()); + //bb_error_msg("VT's sid %d", tcgetsid(0)); + //bb_error_msg("VT's pgrp %d", tcgetpgrp(0)); + BB_EXECVP_or_die(argv); + } +} + +int openvt_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int openvt_main(int argc UNUSED_PARAM, char **argv) +{ + char vtname[sizeof(VC_FORMAT) + sizeof(int)*3]; + struct vt_stat vtstat; + char *str_c; + int vtno; + int flags; + enum { + OPT_c = (1 << 0), + OPT_w = (1 << 1), + OPT_s = (1 << 2), + OPT_l = (1 << 3), + OPT_f = (1 << 4), + OPT_v = (1 << 5), + }; + + /* "+" - stop on first non-option */ + flags = getopt32(argv, "+c:wslfv", &str_c); + argv += optind; + + if (flags & OPT_c) { + /* Check for illegal vt number: < 1 or > 63 */ + vtno = xatou_range(str_c, 1, 63); + } else { + vtno = find_free_vtno(); + } + + /* Grab new VT */ + sprintf(vtname, VC_FORMAT, vtno); + /* (Try to) clean up stray open fds above fd 2 */ + bb_daemon_helper(DAEMON_CLOSE_EXTRA_FDS); + close(STDIN_FILENO); + /*setsid(); - BAD IDEA: after we exit, child is SIGHUPed... */ + xopen(vtname, O_RDWR); + xioctl(STDIN_FILENO, VT_GETSTATE, &vtstat); + + if (flags & OPT_s) { + console_make_active(STDIN_FILENO, vtno); + } + + if (!argv[0]) { + argv--; + argv[0] = (char *) get_shell_name(); + /*argv[1] = NULL; - already is */ + } + + xdup2(STDIN_FILENO, STDOUT_FILENO); + xdup2(STDIN_FILENO, STDERR_FILENO); + +#ifdef BLOAT + { + /* Handle -l (login shell) option */ + const char *prog = argv[0]; + if (flags & OPT_l) + argv[0] = xasprintf("-%s", argv[0]); + } +#endif + + vfork_child(argv); + if (flags & OPT_w) { + /* We have only one child, wait for it */ + safe_waitpid(-1, NULL, 0); /* loops on EINTR */ + if (flags & OPT_s) { + console_make_active(STDIN_FILENO, vtstat.v_active); + // Compat: even with -c N (try to) disallocate: + // # /usr/app/kbd-1.12/bin/openvt -f -c 9 -ws sleep 5 + // openvt: could not deallocate console 9 + xioctl(STDIN_FILENO, VT_DISALLOCATE, (void*)(ptrdiff_t)vtno); + } + } + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/reset.c b/busybox-1_37_0/console-tools/reset.c new file mode 100644 index 000000000..655a5ef7a --- /dev/null +++ b/busybox-1_37_0/console-tools/reset.c @@ -0,0 +1,65 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini reset implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * Written by Erik Andersen and Kent Robotti + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config RESET +//config: bool "reset (676 bytes)" +//config: default y +//config: help +//config: This program is used to reset the terminal screen, if it +//config: gets messed up. + +//applet:IF_RESET(APPLET_NOEXEC(reset, reset, BB_DIR_USR_BIN, BB_SUID_DROP, reset)) + +//kbuild:lib-$(CONFIG_RESET) += reset.o + +//usage:#define reset_trivial_usage +//usage: "" +//usage:#define reset_full_usage "\n\n" +//usage: "Reset terminal (ESC codes) and termios (signals, buffering, echo)" + +/* "Standard" version of this tool is in ncurses package */ + +#include "libbb.h" + +#define ESC "\033" + +#if ENABLE_STTY +int stty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +#endif + +int reset_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int reset_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + static const char *const args[] ALIGN_PTR = { + "stty", "sane", NULL + }; + + /* no options, no getopt */ + + if (/*isatty(STDIN_FILENO) &&*/ isatty(STDOUT_FILENO)) { + /* See 'man 4 console_codes' for details: + * "ESC c" -- Reset + * "ESC ( B" -- Select G0 Character Set (B = US) + * "ESC [ m" -- Reset all display attributes + * "ESC [ J" -- Erase to the end of screen + * "ESC [ ? 25 h" -- Make cursor visible + */ + printf(ESC"c" ESC"(B" ESC"[m" ESC"[J" ESC"[?25h"); + /* http://bugs.busybox.net/view.php?id=1414: + * people want it to reset echo etc: */ +#if ENABLE_STTY + return stty_main(2, (char**)args); +#else + /* Make sure stdout gets drained before we execvp */ + fflush_all(); + execvp("stty", (char**)args); +#endif + } + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/resize.c b/busybox-1_37_0/console-tools/resize.c new file mode 100644 index 000000000..6fa7ce9ea --- /dev/null +++ b/busybox-1_37_0/console-tools/resize.c @@ -0,0 +1,115 @@ +/* vi: set sw=4 ts=4: */ +/* + * resize - set terminal width and height. + * + * Copyright 2006 Bernhard Reutner-Fischer + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config RESIZE +//config: bool "resize (1.2 kb)" +//config: default y +//config: help +//config: This program is used to (re)set the width and height of your current +//config: terminal. +//config: +//config:config FEATURE_RESIZE_PRINT +//config: bool "Print environment variables" +//config: default y +//config: depends on RESIZE +//config: help +//config: Prints the newly set size (number of columns and rows) of +//config: the terminal. +//config: E.g.: +//config: COLUMNS=80;LINES=44;export COLUMNS LINES; + +//applet:IF_RESIZE(APPLET_NOEXEC(resize, resize, BB_DIR_USR_BIN, BB_SUID_DROP, resize)) +/* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */ + +//kbuild:lib-$(CONFIG_RESIZE) += resize.o + +//usage:#define resize_trivial_usage +//usage: "" +//usage:#define resize_full_usage "\n\n" +//usage: "Resize the screen" + +#include "libbb.h" +#include "common_bufsiz.h" + +#define ESC "\033" + +#define old_termios_p ((struct termios*)bb_common_bufsiz1) +#define INIT_G() do { setup_common_bufsiz(); } while (0) + +static void +onintr(int sig UNUSED_PARAM) +{ + tcsetattr(STDERR_FILENO, TCSANOW, old_termios_p); + _exit_FAILURE(); +} + +int resize_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int resize_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + struct termios new; + struct winsize w = { 0, 0, 0, 0 }; + int ret; + + INIT_G(); + + /* We use _stderr_ in order to make resize usable + * in shell backticks (those redirect stdout away from tty). + * NB: other versions of resize open "/dev/tty" + * and operate on it - should we do the same? + */ + + tcgetattr(STDERR_FILENO, old_termios_p); /* fiddle echo */ +//TODO: die if the above fails? + memcpy(&new, old_termios_p, sizeof(new)); + new.c_cflag |= (CLOCAL | CREAD); + new.c_lflag &= ~(ICANON | ECHO | ECHOE | ISIG); + bb_signals(0 + + (1 << SIGINT) + + (1 << SIGQUIT) + + (1 << SIGTERM) + + (1 << SIGALRM) + , onintr); + /* Users report: + * The resize command messes up the terminal. + * In my case it looks like it is hanging and + * I need to press ctrl-c to get a prompt. + * Actually the program does not hang but just + * the terminal is messed up. + * Replaced TCSANOW with TCSAFLUSH: + * "the change occurs after all output written to fd + * has been transmitted, and all input that has been + * received but not read will be discarded before + * the change is made. + */ + tcsetattr(STDERR_FILENO, TCSAFLUSH, &new); + + /* save_cursor_pos 7 + * scroll_whole_screen [r + * put_cursor_waaaay_off [$x;$yH + * get_cursor_pos [6n + * restore_cursor_pos 8 + */ + fprintf(stderr, ESC"7" ESC"[r" ESC"[999;999H" ESC"[6n"); + alarm(3); /* Just in case terminal won't answer */ +//BUG: death by signal won't restore termios + scanf(ESC"[%hu;%huR", &w.ws_row, &w.ws_col); + fprintf(stderr, ESC"8"); + + /* BTW, other versions of resize recalculate w.ws_xpixel, ws.ws_ypixel + * by calculating character cell HxW from old values + * (gotten via TIOCGWINSZ) and recomputing *pixel values */ + ret = ioctl(STDERR_FILENO, TIOCSWINSZ, &w); + + tcsetattr(STDERR_FILENO, TCSANOW, old_termios_p); + + if (ENABLE_FEATURE_RESIZE_PRINT) + printf("COLUMNS=%d;LINES=%d;export COLUMNS LINES;\n", + w.ws_col, w.ws_row); + + return ret; +} diff --git a/busybox-1_37_0/console-tools/setconsole.c b/busybox-1_37_0/console-tools/setconsole.c new file mode 100644 index 000000000..4e625890a --- /dev/null +++ b/busybox-1_37_0/console-tools/setconsole.c @@ -0,0 +1,64 @@ +/* vi: set sw=4 ts=4: */ +/* + * setconsole.c - redirect system console output + * + * Copyright (C) 2004,2005 Enrik Berkhan + * Copyright (C) 2008 Bernhard Reutner-Fischer + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config SETCONSOLE +//config: bool "setconsole (3.8 kb)" +//config: default y +//config: help +//config: Redirect writes to /dev/console to another device, +//config: like the current tty while logged in via telnet. +//config: This does not redirect kernel log, only writes +//config: from user space. +//config: +//config:config FEATURE_SETCONSOLE_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on SETCONSOLE && LONG_OPTS + +//applet:IF_SETCONSOLE(APPLET_NOEXEC(setconsole, setconsole, BB_DIR_SBIN, BB_SUID_DROP, setconsole)) + +//kbuild:lib-$(CONFIG_SETCONSOLE) += setconsole.o + +//usage:#define setconsole_trivial_usage +//usage: "[-r] [DEVICE]" +//usage:#define setconsole_full_usage "\n\n" +//usage: "Make writes to /dev/console appear on DEVICE (default: /dev/tty)." +//usage: "\n""Does not redirect kernel log output or reads from /dev/console." +//usage: "\n" +//usage: "\n"" -r Reset: writes to /dev/console go to kernel log tty(s)" + +/* It was a bbox-specific invention, but SUSE does have a similar utility. + * SUSE has no -r option, though. + */ + +#include "libbb.h" + +int setconsole_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int setconsole_main(int argc UNUSED_PARAM, char **argv) +{ + const char *device = CURRENT_TTY; + int reset; + + /* at most one non-option argument */ + reset = getopt32(argv, "^" "r" "\0" "?1"); + + argv += 1 + reset; + if (*argv) { + device = *argv; + } else { + if (reset) + device = DEV_CONSOLE; + } + +//TODO: fails if TIOCCONS redir is already active to some tty. +//I think SUSE version first does TIOCCONS on /dev/console fd (iow: resets) +//then TIOCCONS to new tty? + xioctl(xopen(device, O_WRONLY), TIOCCONS, NULL); + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/setkeycodes.c b/busybox-1_37_0/console-tools/setkeycodes.c new file mode 100644 index 000000000..03accec2f --- /dev/null +++ b/busybox-1_37_0/console-tools/setkeycodes.c @@ -0,0 +1,70 @@ +/* vi: set sw=4 ts=4: */ +/* + * setkeycodes + * + * Copyright (C) 1994-1998 Andries E. Brouwer + * + * Adjusted for BusyBox by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config SETKEYCODES +//config: bool "setkeycodes (2.4 kb)" +//config: default y +//config: help +//config: This program loads entries into the kernel's scancode-to-keycode +//config: map, allowing unusual keyboards to generate usable keycodes. + +//applet:IF_SETKEYCODES(APPLET_NOEXEC(setkeycodes, setkeycodes, BB_DIR_USR_BIN, BB_SUID_DROP, setkeycodes)) + +//kbuild:lib-$(CONFIG_SETKEYCODES) += setkeycodes.o + +//usage:#define setkeycodes_trivial_usage +//usage: "{ SCANCODE KEYCODE }..." +//usage:#define setkeycodes_full_usage "\n\n" +//usage: "Modify kernel's scancode-to-keycode map,\n" +//usage: "allowing unusual keyboards to generate usable keycodes.\n\n" +//usage: "SCANCODE is either xx or e0xx (hexadecimal), KEYCODE is decimal." +//usage: +//usage:#define setkeycodes_example_usage +//usage: "$ setkeycodes e030 127\n" + +#include "libbb.h" + +/* From */ +struct kbkeycode { + unsigned scancode, keycode; +}; +enum { + KDSETKEYCODE = 0x4B4D /* write kernel keycode table entry */ +}; + +int setkeycodes_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int setkeycodes_main(int argc, char **argv) +{ + int fd; + + if (!(argc & 1) /* if even */ || argc < 2) { + bb_show_usage(); + } + + fd = get_console_fd_or_die(); + + while (argv[1]) { + struct kbkeycode a; + int sc; + + sc = xstrtoul_range(argv[1], 16, 0, 0xe07f); + if (sc >= 0xe000) { + sc -= 0xe000; + sc += 0x0080; + } + a.scancode = sc; + a.keycode = xatou_range(argv[2], 0, 255); + ioctl_or_perror_and_die(fd, KDSETKEYCODE, &a, + "can't set SCANCODE %x to KEYCODE %d", + sc, a.keycode); + argv += 2; + } + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/setlogcons.c b/busybox-1_37_0/console-tools/setlogcons.c new file mode 100644 index 000000000..a94c0035a --- /dev/null +++ b/busybox-1_37_0/console-tools/setlogcons.c @@ -0,0 +1,65 @@ +/* vi: set sw=4 ts=4: */ +/* + * setlogcons: Send kernel messages to the current console or to console N + * + * Copyright (C) 2006 by Jan Kiszka + * + * Based on setlogcons (kbd-1.12) by Andries E. Brouwer + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config SETLOGCONS +//config: bool "setlogcons (2 kb)" +//config: default y +//config: help +//config: This program redirects the output console of kernel messages. + +//applet:IF_SETLOGCONS(APPLET_NOEXEC(setlogcons, setlogcons, BB_DIR_USR_SBIN, BB_SUID_DROP, setlogcons)) + +//kbuild:lib-$(CONFIG_SETLOGCONS) += setlogcons.o + +//usage:#define setlogcons_trivial_usage +//usage: "[N]" +//usage:#define setlogcons_full_usage "\n\n" +//usage: "Pin kernel output to VT console N. Default:0 (do not pin)" + +// Comment from kernel source: +/* ... + * By default, the kernel messages are always printed on the current virtual + * console. However, the user may modify that default with the + * TIOCL_SETKMSGREDIRECT ioctl call. + * + * This function sets the kernel message console to be @new. It returns the old + * virtual console number. The virtual terminal number 0 (both as parameter and + * return value) means no redirection (i.e. always printed on the currently + * active console). + */ + +#include "libbb.h" + +int setlogcons_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int setlogcons_main(int argc UNUSED_PARAM, char **argv) +{ + char *devname; + struct { + char fn; + char subarg; + } arg = { + 11, /* redirect kernel messages (TIOCL_SETKMSGREDIRECT) */ + 0 + }; + + if (argv[1]) + arg.subarg = xatou_range(argv[1], 0, 63); + + /* Can just call it on "/dev/tty1" always, but... + * in my testing, inactive (never opened) VTs are not + * redirected to, despite ioctl not failing. + * + * By using "/dev/ttyN", ensure it is activated. + */ + devname = xasprintf("/dev/tty%u", arg.subarg); + xioctl(xopen(devname, O_RDONLY), TIOCLINUX, &arg); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/console-tools/showkey.c b/busybox-1_37_0/console-tools/showkey.c new file mode 100644 index 000000000..87532a8ac --- /dev/null +++ b/busybox-1_37_0/console-tools/showkey.c @@ -0,0 +1,158 @@ +/* vi: set sw=4 ts=4: */ +/* + * shows keys pressed. inspired by kbd package + * + * Copyright (C) 2008 by Vladimir Dronnikov + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//config:config SHOWKEY +//config: bool "showkey (4.9 kb)" +//config: default y +//config: help +//config: Shows keys pressed. + +//applet:IF_SHOWKEY(APPLET(showkey, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_SHOWKEY) += showkey.o + +//usage:#define showkey_trivial_usage +//usage: "[-a | -k | -s]" +//usage:#define showkey_full_usage "\n\n" +//usage: "Show keys pressed\n" +//usage: "\n -a Display decimal/octal/hex values of the keys" +//usage: "\n -k Display interpreted keycodes (default)" +//usage: "\n -s Display raw scan-codes" + +#include "libbb.h" +#include + + +struct globals { + int kbmode; + struct termios tio, tio0; +}; +#define G (*ptr_to_globals) +#define kbmode (G.kbmode) +#define tio (G.tio) +#define tio0 (G.tio0) +#define INIT_G() do { \ + SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \ +} while (0) + + +// set raw tty mode +// also used by microcom +// libbb candidates? +static void xget1(struct termios *t, struct termios *oldt) +{ + tcgetattr(STDIN_FILENO, oldt); + *t = *oldt; + cfmakeraw(t); +} + +static void xset1(struct termios *t) +{ + int ret = tcsetattr(STDIN_FILENO, TCSAFLUSH, t); + if (ret) { + bb_simple_perror_msg("can't tcsetattr for stdin"); + } +} + +int showkey_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int showkey_main(int argc UNUSED_PARAM, char **argv) +{ + enum { + OPT_a = (1<<0), // display the decimal/octal/hex values of the keys + OPT_k = (1<<1), // display only the interpreted keycodes (default) + OPT_s = (1<<2), // display only the raw scan-codes + }; + + INIT_G(); + + // FIXME: aks are all mutually exclusive + getopt32(argv, "aks"); + + // prepare for raw mode + xget1(&tio, &tio0); + // put stdin in raw mode + xset1(&tio); + +#define press_keys "Press any keys, program terminates %s:\r\n\n" + + if (option_mask32 & OPT_a) { + // just read stdin char by char + unsigned char c; + + printf(press_keys, "on EOF (ctrl-D)"); + + // read and show byte values + while (1 == read(STDIN_FILENO, &c, 1)) { + printf("%3u 0%03o 0x%02x\r\n", c, c, c); + if (04 /*CTRL-D*/ == c) + break; + } + } else { + // we assume a PC keyboard + xioctl(STDIN_FILENO, KDGKBMODE, &kbmode); + printf("Keyboard mode was %s.\r\n\n", + kbmode == K_RAW ? "RAW" : + (kbmode == K_XLATE ? "XLATE" : + (kbmode == K_MEDIUMRAW ? "MEDIUMRAW" : + (kbmode == K_UNICODE ? "UNICODE" : "UNKNOWN"))) + ); + + // set raw keyboard mode + xioctl(STDIN_FILENO, KDSKBMODE, (void *)(ptrdiff_t)((option_mask32 & OPT_k) ? K_MEDIUMRAW : K_RAW)); + + // we should exit on any signal; signals should interrupt read + bb_signals_norestart(BB_FATAL_SIGS, record_signo); + + // inform user that program ends after time of inactivity + printf(press_keys, "10s after last keypress"); + + // read and show scancodes + while (!bb_got_signal) { + char buf[18]; + int i, n; + + // setup 10s watchdog + alarm(10); + + // read scancodes + n = read(STDIN_FILENO, buf, sizeof(buf)); + i = 0; + while (i < n) { + if (option_mask32 & OPT_s) { + // show raw scancodes + printf("0x%02x ", buf[i++]); + } else { + // show interpreted scancodes (default) + char c = buf[i]; + int kc; + if (i+2 < n + && (c & 0x7f) == 0 + && (buf[i+1] & 0x80) != 0 + && (buf[i+2] & 0x80) != 0 + ) { + kc = ((buf[i+1] & 0x7f) << 7) | (buf[i+2] & 0x7f); + i += 3; + } else { + kc = (c & 0x7f); + i++; + } + printf("keycode %3u %s", kc, (c & 0x80) ? "release" : "press"); + } + } + puts("\r"); + } + + // restore keyboard mode + xioctl(STDIN_FILENO, KDSKBMODE, (void *)(ptrdiff_t)kbmode); + } + + // restore console settings + xset1(&tio0); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/Config.src b/busybox-1_37_0/coreutils/Config.src new file mode 100644 index 000000000..6c9e47551 --- /dev/null +++ b/busybox-1_37_0/coreutils/Config.src @@ -0,0 +1,51 @@ +# +# For a description of the syntax of this configuration file, +# see docs/Kconfig-language.txt. +# + +menu "Coreutils" + +config FEATURE_VERBOSE + bool "Support verbose options (usually -v) for various applets" + default y + help + Enable cp -v, rm -v and similar messages. + Also enables long option (--verbose) if it exists. + Without this option, -v is accepted but ignored. + +comment "Common options for date and touch" + +config FEATURE_TIMEZONE + bool "Allow timezone in dates" + default y + depends on DESKTOP + help + Permit the use of timezones when parsing user-provided data + strings, e.g. '1996-04-09 12:45:00 -0500'. + + This requires support for the '%z' extension to strptime() which + may not be available in all implementations. + +comment "Common options for cp and mv" + depends on CP || MV + +config FEATURE_PRESERVE_HARDLINKS + bool "Preserve hard links" + default y + depends on CP || MV + help + Allow cp and mv to preserve hard links. + +comment "Common options for df, du, ls" + depends on DF || DU || LS + +config FEATURE_HUMAN_READABLE + bool "Support human readable output (example 13k, 23M, 235G)" + default y + depends on DF || DU || LS + help + Allow df, du, and ls to have human readable output. + +INSERT + +endmenu diff --git a/busybox-1_37_0/coreutils/Kbuild.src b/busybox-1_37_0/coreutils/Kbuild.src new file mode 100644 index 000000000..a805b64fe --- /dev/null +++ b/busybox-1_37_0/coreutils/Kbuild.src @@ -0,0 +1,18 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2005 by Erik Andersen +# +# Licensed under GPLv2, see file LICENSE in this source tree. + +libs-y += libcoreutils/ + +lib-y:= + +INSERT + +lib-$(CONFIG_MORE) += cat.o # more uses it if stdout isn't a tty +lib-$(CONFIG_LESS) += cat.o # less too +lib-$(CONFIG_CRONTAB) += cat.o # crontab -l +lib-$(CONFIG_ADDUSER) += chown.o # used by adduser +lib-$(CONFIG_ADDGROUP) += chown.o # used by addgroup +lib-$(CONFIG_FTPD) += ls.o # used by ftpd diff --git a/busybox-1_37_0/coreutils/basename.c b/busybox-1_37_0/coreutils/basename.c new file mode 100644 index 000000000..bf7bd62e0 --- /dev/null +++ b/busybox-1_37_0/coreutils/basename.c @@ -0,0 +1,92 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini basename implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Changes: + * 1) Now checks for too many args. Need at least one and at most two. + * 2) Don't check for options, as per SUSv3. + * 3) Save some space by using strcmp(). Calling strncmp() here was silly. + */ +//config:config BASENAME +//config: bool "basename (3.7 kb)" +//config: default y +//config: help +//config: basename is used to strip the directory and suffix from filenames, +//config: leaving just the filename itself. Enable this option if you wish +//config: to enable the 'basename' utility. + +//applet:IF_BASENAME(APPLET_NOFORK(basename, basename, BB_DIR_USR_BIN, BB_SUID_DROP, basename)) + +//kbuild:lib-$(CONFIG_BASENAME) += basename.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/basename.html */ + +//usage:#define basename_trivial_usage +//usage: "FILE [SUFFIX] | -a FILE... | -s SUFFIX FILE..." +//usage:#define basename_full_usage "\n\n" +//usage: "Strip directory path and SUFFIX from FILE\n" +//usage: "\n -a All arguments are FILEs" +//usage: "\n -s SUFFIX Remove SUFFIX (implies -a)" +//usage: +//usage:#define basename_example_usage +//usage: "$ basename /usr/local/bin/foo\n" +//usage: "foo\n" +//usage: "$ basename /usr/local/bin/\n" +//usage: "bin\n" +//usage: "$ basename /foo/bar.txt .txt\n" +//usage: "bar" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int basename_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int basename_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned opts; + const char *suffix = NULL; + + /* '+': stop at first non-option */ + opts = getopt32(argv, "^+" "as:" + "\0" "-1" /* At least one argument */ + , &suffix + ); + argv += optind; + + do { + char *s; + size_t m; + + /* It should strip slash: /abc/def/ -> def */ + s = bb_get_last_path_component_strip(*argv++); + m = strlen(s); + if (!opts) { + if (*argv) { + suffix = *argv; + if (argv[1]) + bb_show_usage(); + } + } + if (suffix) { + size_t n = strlen(suffix); + if ((m > n) && (strcmp(s + m - n, suffix) == 0)) { + m -= n; + /*s[m] = '\0'; - redundant */ + } + } + /* puts(s) will do, but we can do without stdio this way: */ + s[m++] = '\n'; + /* NB: != is correct here: */ + if (full_write(STDOUT_FILENO, s, m) != (ssize_t)m) + return EXIT_FAILURE; + } while (opts && *argv); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/cat.c b/busybox-1_37_0/coreutils/cat.c new file mode 100644 index 000000000..558869b2a --- /dev/null +++ b/busybox-1_37_0/coreutils/cat.c @@ -0,0 +1,217 @@ +/* vi: set sw=4 ts=4: */ +/* + * cat implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//config:config CAT +//config: bool "cat (5.8 kb)" +//config: default y +//config: help +//config: cat is used to concatenate files and print them to the standard +//config: output. Enable this option if you wish to enable the 'cat' utility. +//config: +//config:config FEATURE_CATN +//config: bool "Enable -n and -b options" +//config: default y +//config: depends on CAT +//config: help +//config: -n numbers all output lines while -b numbers nonempty output lines. +//config: +//config:config FEATURE_CATV +//config: bool "cat -v[etA]" +//config: default y +//config: depends on CAT +//config: help +//config: Display nonprinting characters as escape sequences + +//applet:IF_CAT(APPLET(cat, BB_DIR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_CAT) += cat.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/cat.html */ + +//usage:#if ENABLE_FEATURE_CATN || ENABLE_FEATURE_CATV +//usage:#define cat_trivial_usage +//usage: "[-" IF_FEATURE_CATN("nb") IF_FEATURE_CATV("vteA") "] [FILE]..." +//usage:#else +//usage:#define cat_trivial_usage +//usage: "[FILE]..." +//usage:#endif +//usage:#define cat_full_usage "\n\n" +//usage: "Print FILEs to stdout\n" +//usage: IF_FEATURE_CATN( +//usage: "\n -n Number output lines" +//usage: "\n -b Number nonempty lines" +//usage: ) +//usage: IF_FEATURE_CATV( +//usage: "\n -v Show nonprinting characters as ^x or M-x" +//usage: "\n -t ...and tabs as ^I" +//usage: "\n -e ...and end lines with $" +//usage: "\n -A Same as -vte" +//usage: ) +/* + Longopts not implemented yet: + --number-nonblank number nonempty output lines, overrides -n + --number number all output lines + --show-nonprinting use ^ and M- notation, except for LFD and TAB + --show-all equivalent to -vet + Not implemented yet: + -E, --show-ends display $ at end of each line (-e sans -v) + -T, --show-tabs display TAB characters as ^I (-t sans -v) + -s, --squeeze-blank suppress repeated empty output lines +*/ +//usage: +//usage:#define cat_example_usage +//usage: "$ cat /proc/uptime\n" +//usage: "110716.72 17.67" + +#include "libbb.h" +#include "common_bufsiz.h" + +#if ENABLE_FEATURE_CATV +/* + * cat -v implementation for busybox + * + * Copyright (C) 2006 Rob Landley + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Rob had "cat -v" implemented as a separate applet, catv. + * See "cat -v considered harmful" at + * http://cm.bell-labs.com/cm/cs/doc/84/kp.ps.gz + * From USENIX Summer Conference Proceedings, 1983 + * """ + * The talk reviews reasons for UNIX's popularity and shows, using UCB cat + * as a primary example, how UNIX has grown fat. cat isn't for printing + * files with line numbers, it isn't for compressing multiple blank lines, + * it's not for looking at non-printing ASCII characters, it's for + * concatenating files. + * We are reminded that ls isn't the place for code to break a single column + * into multiple ones, and that mailnews shouldn't have its own more + * processing or joke encryption code. + * """ + * + * I agree with the argument. Unfortunately, this ship has sailed (1983...). + * There are dozens of Linux distros and each of them has "cat" which supports -v. + * It's unrealistic for us to "reeducate" them to use our, incompatible way + * to achieve "cat -v" effect. The actual effect would be "users pissed off + * by gratuitous incompatibility". + */ +#define CAT_OPT_e (1<<0) +#define CAT_OPT_t (1<<1) +#define CAT_OPT_v (1<<2) +/* -A occupies bit (1<<3) */ +#define CAT_OPT_n ((1<<4) * ENABLE_FEATURE_CATN) +#define CAT_OPT_b ((1<<5) * ENABLE_FEATURE_CATN) +static int catv(unsigned opts, char **argv) +{ + int retval = EXIT_SUCCESS; + int fd; +#if ENABLE_FEATURE_CATN + bool eol_seen = (opts & (CAT_OPT_n|CAT_OPT_b)); + unsigned eol_char = (eol_seen ? '\n' : 0x100); + unsigned skip_num_on = (opts & CAT_OPT_b) ? '\n' : 0x100; + unsigned lineno = 0; +#endif + + BUILD_BUG_ON(CAT_OPT_e != VISIBLE_ENDLINE); + BUILD_BUG_ON(CAT_OPT_t != VISIBLE_SHOW_TABS); +#if 0 /* These consts match, we can just pass "opts" to visible() */ + if (opts & CAT_OPT_e) + flags |= VISIBLE_ENDLINE; + if (opts & CAT_OPT_t) + flags |= VISIBLE_SHOW_TABS; +#endif + +#define read_buf bb_common_bufsiz1 + setup_common_bufsiz(); + do { + fd = open_or_warn_stdin(*argv); + if (fd < 0) { + retval = EXIT_FAILURE; + continue; + } + for (;;) { + int i, res; + + res = read(fd, read_buf, COMMON_BUFSIZE); + if (res < 0) + retval = EXIT_FAILURE; + if (res <= 0) + break; + for (i = 0; i < res; i++) { + unsigned char c = read_buf[i]; + char buf[sizeof("M-^c")]; +#if ENABLE_FEATURE_CATN + if (eol_seen && c != skip_num_on) + printf("%6u ", ++lineno); + eol_seen = (c == eol_char); +#endif + visible(c, buf, opts); + fputs_stdout(buf); + } + } + if (ENABLE_FEATURE_CLEAN_UP && fd) + close(fd); + } while (*++argv); + + fflush_stdout_and_exit(retval); +} +#undef CAT_OPT_n +#undef CAT_OPT_b +#endif + +int cat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int cat_main(int argc UNUSED_PARAM, char **argv) +{ +#if ENABLE_FEATURE_CATV || ENABLE_FEATURE_CATN + unsigned opts; + + opts = +#endif + getopt32(argv, IF_FEATURE_CATV("^") + /* -u is ignored ("unbuffered") */ + IF_FEATURE_CATV("etvA")IF_FEATURE_CATN("nb")"u" + IF_FEATURE_CATV("\0" "Aetv" /* -A == -vet */) + ); + argv += optind; + + /* Read from stdin if there's nothing else to do. */ + if (!argv[0]) + *--argv = (char*)"-"; + +#if ENABLE_FEATURE_CATV + if (opts & 7) + return catv(opts, argv); + opts >>= 4; +#endif + +#if ENABLE_FEATURE_CATN +# define CAT_OPT_n (1<<0) +# define CAT_OPT_b (1<<1) + if (opts & (CAT_OPT_n|CAT_OPT_b)) { /* -n or -b */ + struct number_state ns; + int exitcode; + + ns.width = 6; + ns.start = 1; + ns.inc = 1; + ns.sep = "\t"; + ns.empty_str = NULL; + ns.all = !(opts & CAT_OPT_b); /* -n without -b */ + ns.nonempty = (opts & CAT_OPT_b); /* -b (with or without -n) */ + exitcode = EXIT_SUCCESS; + do { + exitcode |= print_numbered_lines(&ns, *argv); + } while (*++argv); + fflush_stdout_and_exit(exitcode); + } + /*opts >>= 2;*/ +#endif + + return bb_cat(argv); +} diff --git a/busybox-1_37_0/coreutils/chgrp.c b/busybox-1_37_0/coreutils/chgrp.c new file mode 100644 index 000000000..e6ac316e5 --- /dev/null +++ b/busybox-1_37_0/coreutils/chgrp.c @@ -0,0 +1,66 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini chgrp implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config CHGRP +//config: bool "chgrp (7.6 kb)" +//config: default y +//config: help +//config: chgrp is used to change the group ownership of files. + +//applet:IF_CHGRP(APPLET_NOEXEC(chgrp, chgrp, BB_DIR_BIN, BB_SUID_DROP, chgrp)) + +//kbuild:lib-$(CONFIG_CHGRP) += chgrp.o chown.o + +/* BB_AUDIT SUSv3 defects - none? */ +/* BB_AUDIT GNU defects - unsupported long options. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/chgrp.html */ + +//usage:#define chgrp_trivial_usage +//usage: "[-Rh"IF_DESKTOP("LHPcvf")"]... GROUP FILE..." +//usage:#define chgrp_full_usage "\n\n" +//usage: "Change the group membership of FILEs to GROUP" +//usage: "\n" +//usage: "\n -h Affect symlinks instead of symlink targets" +//usage: IF_DESKTOP( +//usage: "\n -L Traverse all symlinks to directories" +//usage: "\n -H Traverse symlinks on command line only" +//usage: "\n -P Don't traverse symlinks (default)" +//usage: ) +//next 4 options are the same for chmod/chown/chgrp: +//usage: "\n -R Recurse" +//usage: IF_DESKTOP( +//usage: "\n -c List changed files" +//usage: "\n -v Verbose" +//usage: "\n -f Hide errors" +//usage: ) +//usage: +//usage:#define chgrp_example_usage +//usage: "$ ls -l /tmp/foo\n" +//usage: "-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n" +//usage: "$ chgrp root /tmp/foo\n" +//usage: "$ ls -l /tmp/foo\n" +//usage: "-r--r--r-- 1 andersen root 0 Apr 12 18:25 /tmp/foo\n" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + + +int chgrp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int chgrp_main(int argc, char **argv) +{ + /* "chgrp [opts] abc file(s)" == "chown [opts] :abc file(s)" */ + char **p = argv; + while (*++p) { + if (p[0][0] != '-') { + p[0] = xasprintf(":%s", p[0]); + break; + } + } + return chown_main(argc, argv); +} diff --git a/busybox-1_37_0/coreutils/chmod.c b/busybox-1_37_0/coreutils/chmod.c new file mode 100644 index 000000000..5832cc51b --- /dev/null +++ b/busybox-1_37_0/coreutils/chmod.c @@ -0,0 +1,194 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini chmod implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Reworked by (C) 2002 Vladimir Oleynik + * to correctly parse '-rwxgoa' + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config CHMOD +//config: bool "chmod (5.5 kb)" +//config: default y +//config: help +//config: chmod is used to change the access permission of files. + +//applet:IF_CHMOD(APPLET_NOEXEC(chmod, chmod, BB_DIR_BIN, BB_SUID_DROP, chmod)) + +//kbuild:lib-$(CONFIG_CHMOD) += chmod.o + +/* BB_AUDIT SUSv3 compliant */ +/* BB_AUDIT GNU defects - unsupported long options. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/chmod.html */ + +//usage:#define chmod_trivial_usage +//usage: "[-R"IF_DESKTOP("cvf")"] MODE[,MODE]... FILE..." +//usage:#define chmod_full_usage "\n\n" +//usage: "MODE is octal number (bit pattern sstrwxrwxrwx) or [ugoa]{+|-|=}[rwxXst]" +//usage: "\n" +//next 4 options are the same for chmod/chown/chgrp: +//usage: "\n -R Recurse" +//usage: IF_DESKTOP( +//usage: "\n -c List changed files" +//usage: "\n -v Verbose" +//usage: "\n -f Hide errors" +//usage: ) +//usage: +//usage:#define chmod_example_usage +//usage: "$ ls -l /tmp/foo\n" +//usage: "-rw-rw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" +//usage: "$ chmod u+x /tmp/foo\n" +//usage: "$ ls -l /tmp/foo\n" +//usage: "-rwxrw-r-- 1 root root 0 Apr 12 18:25 /tmp/foo*\n" +//usage: "$ chmod 444 /tmp/foo\n" +//usage: "$ ls -l /tmp/foo\n" +//usage: "-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + + +#define OPT_RECURSE (option_mask32 & 1) +#define OPT_VERBOSE (IF_DESKTOP(option_mask32 & 2) IF_NOT_DESKTOP(0)) +#define OPT_CHANGED (IF_DESKTOP(option_mask32 & 4) IF_NOT_DESKTOP(0)) +#define OPT_QUIET (IF_DESKTOP(option_mask32 & 8) IF_NOT_DESKTOP(0)) +#define OPT_STR "R" IF_DESKTOP("vcf") + +/* coreutils: + * chmod never changes the permissions of symbolic links; the chmod + * system call cannot change their permissions. This is not a problem + * since the permissions of symbolic links are never used. + * However, for each symbolic link listed on the command line, chmod changes + * the permissions of the pointed-to file. In contrast, chmod ignores + * symbolic links encountered during recursive directory traversals. + */ + +static int FAST_FUNC fileAction(struct recursive_state *state, + const char *fileName, + struct stat *statbuf) +{ + mode_t newmode; + + /* match coreutils behavior */ + if (state->depth == 0) { + /* statbuf holds lstat result, but we need stat (follow link) */ + if (stat(fileName, statbuf)) + goto err; + } else { /* depth > 0: skip links */ + if (S_ISLNK(statbuf->st_mode)) + return TRUE; + } + + newmode = bb_parse_mode((char *)state->userData, statbuf->st_mode); + if (newmode == (mode_t)-1) + bb_error_msg_and_die("invalid mode '%s'", (char *)state->userData); + + if (chmod(fileName, newmode) == 0) { + if (OPT_VERBOSE + || (OPT_CHANGED + && (statbuf->st_mode & 07777) != (newmode & 07777)) + ) { + char modestr[12]; + printf("mode of '%s' changed to %04o (%s)\n", fileName, + newmode & 07777, bb_mode_string(modestr, newmode)+1); + } + return TRUE; + } + err: + if (!OPT_QUIET) + bb_simple_perror_msg(fileName); + return FALSE; +} + +int chmod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int chmod_main(int argc UNUSED_PARAM, char **argv) +{ + int retval = EXIT_SUCCESS; + char *arg, **argp; + char *smode; + + /* Convert first encountered -r into ar, -w into aw etc + * so that getopt would not eat it */ + argp = argv; + while ((arg = *++argp)) { + /* Mode spec must be the first arg (sans -R etc) */ + /* (protect against mishandling e.g. "chmod 644 -r") */ + if (arg[0] != '-') { + arg = NULL; + break; + } + /* An option. Not a -- or valid option? */ + if (arg[1] && !strchr("-"OPT_STR, arg[1])) { + arg[0] = 'a'; + break; + } + } + + /* Parse options */ + getopt32(argv, "^" OPT_STR "\0" "-2"); + argv += optind; + + /* Restore option-like mode if needed */ + if (arg) arg[0] = '-'; + + /* Ok, ready to do the deed now */ + smode = *argv++; + do { + if (!recursive_action(*argv, + OPT_RECURSE, // recurse + fileAction, // file action + fileAction, // dir action + smode) // user data + ) { + retval = EXIT_FAILURE; + } + } while (*++argv); + + return retval; +} + +/* +Security: chmod is too important and too subtle. +This is a test script (busybox chmod versus coreutils). +Run it in empty directory. + +#!/bin/sh +t1="/tmp/busybox chmod" +t2="/usr/bin/chmod" +create() { + rm -rf $1; mkdir $1 + ( + cd $1 || exit 1 + mkdir dir + >up + >file + >dir/file + ln -s dir linkdir + ln -s file linkfile + ln -s ../up dir/up + ) +} +tst() { + (cd test1; $t1 $1) + (cd test2; $t2 $1) + (cd test1; ls -lR) >out1 + (cd test2; ls -lR) >out2 + echo "chmod $1" >out.diff + if ! diff -u out1 out2 >>out.diff; then exit 1; fi + rm out.diff +} +echo "If script produced 'out.diff' file, then at least one testcase failed" +create test1; create test2 +tst "a+w file" +tst "a-w dir" +tst "a+w linkfile" +tst "a-w linkdir" +tst "-R a+w file" +tst "-R a-w dir" +tst "-R a+w linkfile" +tst "-R a-w linkdir" +tst "a-r,a+x linkfile" +*/ diff --git a/busybox-1_37_0/coreutils/chown.c b/busybox-1_37_0/coreutils/chown.c new file mode 100644 index 000000000..528a2a05a --- /dev/null +++ b/busybox-1_37_0/coreutils/chown.c @@ -0,0 +1,235 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini chown implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config CHOWN +//config: bool "chown (7.6 kb)" +//config: default y +//config: help +//config: chown is used to change the user and/or group ownership +//config: of files. +//config: +//config:config FEATURE_CHOWN_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on CHOWN && LONG_OPTS + +//applet:IF_CHOWN(APPLET_NOEXEC(chown, chown, BB_DIR_BIN, BB_SUID_DROP, chown)) + +//kbuild:lib-$(CONFIG_CHOWN) += chown.o + +/* BB_AUDIT SUSv3 defects - none? */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/chown.html */ + +//usage:#define chown_trivial_usage +//usage: "[-Rh"IF_DESKTOP("LHPcvf")"]... USER[:[GRP]] FILE..." +//usage:#define chown_full_usage "\n\n" +//usage: "Change the owner and/or group of FILEs to USER and/or GRP" +//usage: "\n" +//usage: "\n -h Affect symlinks instead of symlink targets" +//usage: IF_DESKTOP( +//usage: "\n -L Traverse all symlinks to directories" +//usage: "\n -H Traverse symlinks on command line only" +//usage: "\n -P Don't traverse symlinks (default)" +//usage: ) +//next 4 options are the same for chmod/chown/chgrp: +//usage: "\n -R Recurse" +//usage: IF_DESKTOP( +//usage: "\n -c List changed files" +//usage: "\n -v Verbose" +//usage: "\n -f Hide errors" +//usage: ) +//usage: +//usage:#define chown_example_usage +//usage: "$ ls -l /tmp/foo\n" +//usage: "-r--r--r-- 1 andersen andersen 0 Apr 12 18:25 /tmp/foo\n" +//usage: "$ chown root /tmp/foo\n" +//usage: "$ ls -l /tmp/foo\n" +//usage: "-r--r--r-- 1 root andersen 0 Apr 12 18:25 /tmp/foo\n" +//usage: "$ chown root.root /tmp/foo\n" +//usage: "ls -l /tmp/foo\n" +//usage: "-r--r--r-- 1 root root 0 Apr 12 18:25 /tmp/foo\n" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + + +#define OPT_STR "Rh" IF_DESKTOP("vcfLHP") +#define BIT_RECURSE 1 +#define OPT_RECURSE (opt & 1) +#define OPT_NODEREF (opt & 2) +#define OPT_VERBOSE (IF_DESKTOP(opt & 0x04) IF_NOT_DESKTOP(0)) +#define OPT_CHANGED (IF_DESKTOP(opt & 0x08) IF_NOT_DESKTOP(0)) +#define OPT_QUIET (IF_DESKTOP(opt & 0x10) IF_NOT_DESKTOP(0)) +/* POSIX options + * -L traverse every symbolic link to a directory encountered + * -H if a command line argument is a symbolic link to a directory, traverse it + * -P do not traverse any symbolic links (default) + * We do not conform to the following: + * "Specifying more than one of -H, -L, and -P is not an error. + * The last option specified shall determine the behavior of the utility." */ +/* -L */ +#define BIT_TRAVERSE 0x20 +#define OPT_TRAVERSE (IF_DESKTOP(opt & BIT_TRAVERSE) IF_NOT_DESKTOP(0)) +/* -H or -L */ +#define BIT_TRAVERSE_TOP (0x20|0x40) +#define OPT_TRAVERSE_TOP (IF_DESKTOP(opt & BIT_TRAVERSE_TOP) IF_NOT_DESKTOP(0)) + +#if ENABLE_FEATURE_CHOWN_LONG_OPTIONS +static const char chown_longopts[] ALIGN1 = + "recursive\0" No_argument "R" + "dereference\0" No_argument "\xff" + "no-dereference\0" No_argument "h" +# if ENABLE_DESKTOP + "changes\0" No_argument "c" + "silent\0" No_argument "f" + "quiet\0" No_argument "f" + "verbose\0" No_argument "v" +# endif + ; +#endif + +typedef int (*chown_fptr)(const char *, uid_t, gid_t); + +struct param_t { + struct bb_uidgid_t ugid; + chown_fptr chown_func; +}; + +static int FAST_FUNC fileAction(struct recursive_state *state UNUSED_PARAM, + const char *fileName, struct stat *statbuf) +{ +#define param (*(struct param_t*)state->userData) +#define opt option_mask32 + uid_t u = (param.ugid.uid == (uid_t)-1L) ? statbuf->st_uid : param.ugid.uid; + gid_t g = (param.ugid.gid == (gid_t)-1L) ? statbuf->st_gid : param.ugid.gid; + + if (param.chown_func(fileName, u, g) == 0) { + if (OPT_VERBOSE + || (OPT_CHANGED && (statbuf->st_uid != u || statbuf->st_gid != g)) + ) { + printf("changed ownership of '%s' to %u:%u\n", + fileName, (unsigned)u, (unsigned)g); + } + return TRUE; + } + if (!OPT_QUIET) + bb_simple_perror_msg(fileName); + return FALSE; +#undef opt +#undef param +} + +int chown_main(int argc UNUSED_PARAM, char **argv) +{ + int retval = EXIT_SUCCESS; + int opt, flags; + struct param_t param; + +#if ENABLE_FEATURE_CHOWN_LONG_OPTIONS + opt = getopt32long(argv, "^" OPT_STR "\0" "-2", chown_longopts); +#else + opt = getopt32(argv, "^" OPT_STR "\0" "-2"); +#endif + argv += optind; + + /* This matches coreutils behavior (almost - see below) */ + param.chown_func = chown; + if (OPT_NODEREF + /* || (OPT_RECURSE && !OPT_TRAVERSE_TOP): */ + IF_DESKTOP( || (opt & (BIT_RECURSE|BIT_TRAVERSE_TOP)) == BIT_RECURSE) + ) { + param.chown_func = lchown; + } + + flags = ACTION_DEPTHFIRST; /* match coreutils order */ + if (OPT_RECURSE) + flags |= ACTION_RECURSE; + if (OPT_TRAVERSE_TOP) + flags |= ACTION_FOLLOWLINKS_L0; /* -H/-L: follow links on depth 0 */ + if (OPT_TRAVERSE) + flags |= ACTION_FOLLOWLINKS; /* follow links if -L */ + + parse_chown_usergroup_or_die(¶m.ugid, argv[0]); + + /* Ok, ready to do the deed now */ + while (*++argv) { + if (!recursive_action(*argv, + flags, /* flags */ + fileAction, /* file action */ + fileAction, /* dir action */ + ¶m) /* user data */ + ) { + retval = EXIT_FAILURE; + } + } + + return retval; +} + +/* +Testcase. Run in empty directory. + +#!/bin/sh +t1="/tmp/busybox chown" +t2="/usr/bin/chown" +create() { + rm -rf $1; mkdir $1 + ( + cd $1 || exit 1 + mkdir dir dir2 + >up + >file + >dir/file + >dir2/file + ln -s dir linkdir + ln -s file linkfile + ln -s ../up dir/linkup + ln -s ../dir2 dir/linkupdir2 + ) + chown -R 0:0 $1 +} +tst() { + create test1 + create test2 + echo "[$1]" >>test1.out + echo "[$1]" >>test2.out + (cd test1; $t1 $1) >>test1.out 2>&1 + (cd test2; $t2 $1) >>test2.out 2>&1 + (cd test1; ls -lnR) >out1 + (cd test2; ls -lnR) >out2 + echo "chown $1" >out.diff + if ! diff -u out1 out2 >>out.diff; then exit 1; fi + rm out.diff +} +tst_for_each() { + tst "$1 1:1 file" + tst "$1 1:1 dir" + tst "$1 1:1 linkdir" + tst "$1 1:1 linkfile" +} +echo "If script produced 'out.diff' file, then at least one testcase failed" +>test1.out +>test2.out +# These match coreutils 6.8: +tst_for_each "-v" +tst_for_each "-vR" +tst_for_each "-vRP" +tst_for_each "-vRL" +tst_for_each "-vRH" +tst_for_each "-vh" +tst_for_each "-vhR" +tst_for_each "-vhRP" +tst_for_each "-vhRL" +tst_for_each "-vhRH" +# Fix `name' in coreutils output +sed 's/`/'"'"'/g' -i test2.out +# Compare us with coreutils output +diff -u test1.out test2.out + +*/ diff --git a/busybox-1_37_0/coreutils/chroot.c b/busybox-1_37_0/coreutils/chroot.c new file mode 100644 index 000000000..0b45aa80c --- /dev/null +++ b/busybox-1_37_0/coreutils/chroot.c @@ -0,0 +1,55 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini chroot implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config CHROOT +//config: bool "chroot (4 kb)" +//config: default y +//config: help +//config: chroot is used to change the root directory and run a command. +//config: The default command is '/bin/sh'. + +//applet:IF_CHROOT(APPLET_NOEXEC(chroot, chroot, BB_DIR_USR_SBIN, BB_SUID_DROP, chroot)) + +//kbuild:lib-$(CONFIG_CHROOT) += chroot.o + +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ + +//usage:#define chroot_trivial_usage +//usage: "NEWROOT [PROG ARGS]" +//usage:#define chroot_full_usage "\n\n" +//usage: "Run PROG with root directory set to NEWROOT" +//usage: +//usage:#define chroot_example_usage +//usage: "$ ls -l /bin/ls\n" +//usage: "lrwxrwxrwx 1 root root 12 Apr 13 00:46 /bin/ls -> /BusyBox\n" +//usage: "# mount /dev/hdc1 /mnt -t minix\n" +//usage: "# chroot /mnt\n" +//usage: "# ls -l /bin/ls\n" +//usage: "-rwxr-xr-x 1 root root 40816 Feb 5 07:45 /bin/ls*\n" + +#include "libbb.h" + +int chroot_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int chroot_main(int argc UNUSED_PARAM, char **argv) +{ + ++argv; + if (!*argv) + bb_show_usage(); + + xchroot(*argv); + + ++argv; + if (!*argv) { /* no 2nd param (PROG), use shell */ + argv -= 2; + argv[0] = (char *) get_shell_name(); + argv[1] = (char *) "-i"; /* GNU coreutils 8.4 compat */ + /*argv[2] = NULL; - already is */ + } + + BB_EXECVP_or_die(argv); +} diff --git a/busybox-1_37_0/coreutils/cksum.c b/busybox-1_37_0/coreutils/cksum.c new file mode 100644 index 000000000..1fb6ef2d0 --- /dev/null +++ b/busybox-1_37_0/coreutils/cksum.c @@ -0,0 +1,106 @@ +/* vi: set sw=4 ts=4: */ +/* + * cksum - calculate the CRC32 checksum of a file + * + * Copyright (C) 2006 by Rob Sullivan, with ideas from code by Walter Harms + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config CKSUM +//config: bool "cksum (4.3 kb)" +//config: default y +//config: +//config:config CRC32 +//config: bool "crc32 (4.2 kb)" +//config: default y + +// APPLET_NOEXEC:name main location suid_type help +//applet:IF_CKSUM(APPLET_NOEXEC(cksum, cksum, BB_DIR_USR_BIN, BB_SUID_DROP, cksum)) +//applet:IF_CRC32(APPLET_NOEXEC(crc32, cksum, BB_DIR_USR_BIN, BB_SUID_DROP, cksum)) +/* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */ + +//kbuild:lib-$(CONFIG_CKSUM) += cksum.o +//kbuild:lib-$(CONFIG_CRC32) += cksum.o + +//usage:#define cksum_trivial_usage +//usage: "FILE..." +//usage:#define cksum_full_usage "\n\n" +//usage: "Calculate CRC32 checksum of FILEs" + +#include "libbb.h" +#include "common_bufsiz.h" + +/* This is a NOEXEC applet. Be very careful! */ + +#define IS_CKSUM (ENABLE_CKSUM && (!ENABLE_CRC32 || applet_name[1] == 'k')) +#define IS_CRC32 (ENABLE_CRC32 && (!ENABLE_CKSUM || applet_name[1] == 'r')) + +int cksum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int cksum_main(int argc UNUSED_PARAM, char **argv) +{ + uint32_t *crc32_table = crc32_filltable(NULL, IS_CKSUM); + exitcode_t exit_code = EXIT_SUCCESS; + +#if ENABLE_DESKTOP + getopt32(argv, ""); /* cksum coreutils 6.9 compat */ + argv += optind; +#else + argv++; +#endif + + setup_common_bufsiz(); + do { + uint32_t crc; + IF_CKSUM(off_t filesize;) + const char *fname = *argv ? *argv : bb_msg_standard_input; + int fd = open_or_warn_stdin(fname); + + if (fd < 0) { + exit_code = EXIT_FAILURE; + continue; + } + + crc = IS_CKSUM ? 0 : 0xffffffff; + IF_CKSUM(filesize = 0;) +#define read_buf bb_common_bufsiz1 + for (;;) { + int bytes_read = safe_read(fd, read_buf, COMMON_BUFSIZE); + if (bytes_read < 0) + bb_simple_perror_msg_and_die(fname); + if (bytes_read > 0) { + IF_CKSUM(filesize += bytes_read;) + } else { + IF_CKSUM(uoff_t t;) + + close(fd); + if (IS_CRC32) + break; +#if ENABLE_CKSUM + fd = -1; /* break flag */ + /* Checksum filesize bytes, LSB first */ + t = filesize; + /*bytes_read = 0; - already is */ + while (t != 0) { + read_buf[bytes_read++] = (uint8_t)t; + t >>= 8; + } +#endif + } + crc = (IS_CKSUM ? crc32_block_endian1 : crc32_block_endian0)(crc, read_buf, bytes_read, crc32_table); + if (ENABLE_CKSUM && fd < 0) + break; + } + + crc = ~crc; +#if ENABLE_CKSUM + if (IS_CKSUM) + printf((*argv ? "%u %"OFF_FMT"u %s\n" : "%u %"OFF_FMT"u\n"), + (unsigned)crc, filesize, *argv); + else +#endif + printf((*argv ? "%08x %s\n" : "%08x\n"), + (unsigned)crc, *argv); + } while (*argv && *++argv); + + fflush_stdout_and_exit(exit_code); +} diff --git a/busybox-1_37_0/coreutils/comm.c b/busybox-1_37_0/coreutils/comm.c new file mode 100644 index 000000000..6cbdceaa9 --- /dev/null +++ b/busybox-1_37_0/coreutils/comm.c @@ -0,0 +1,117 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini comm implementation for busybox + * + * Copyright (C) 2005 by Robert Sullivan + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config COMM +//config: bool "comm (4.4 kb)" +//config: default y +//config: help +//config: comm is used to compare two files line by line and return +//config: a three-column output. + +//applet:IF_COMM(APPLET(comm, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_COMM) += comm.o + +//usage:#define comm_trivial_usage +//usage: "[-123] FILE1 FILE2" +//usage:#define comm_full_usage "\n\n" +//usage: "Compare FILE1 with FILE2\n" +//usage: "\n -1 Suppress lines unique to FILE1" +//usage: "\n -2 Suppress lines unique to FILE2" +//usage: "\n -3 Suppress lines common to both files" + +#include "libbb.h" + +#define COMM_OPT_1 (1 << 0) +#define COMM_OPT_2 (1 << 1) +#define COMM_OPT_3 (1 << 2) + +/* writeline outputs the input given, appropriately aligned according to class */ +static void writeline(char *line, int class) +{ + int flags = option_mask32; + if (class == 0) { + if (flags & COMM_OPT_1) + return; + } else if (class == 1) { + if (flags & COMM_OPT_2) + return; + if (!(flags & COMM_OPT_1)) + putchar('\t'); + } else /*if (class == 2)*/ { + if (flags & COMM_OPT_3) + return; + if (!(flags & COMM_OPT_1)) + putchar('\t'); + if (!(flags & COMM_OPT_2)) + putchar('\t'); + } + puts(line); +} + +int comm_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int comm_main(int argc UNUSED_PARAM, char **argv) +{ + char *thisline[2]; + FILE *stream[2]; + int i; + int order; + + getopt32(argv, "^" "123" "\0" "=2"); + argv += optind; + + for (i = 0; i < 2; ++i) { + stream[i] = xfopen_stdin(argv[i]); + } + + order = 0; + thisline[1] = thisline[0] = NULL; + while (1) { + if (order <= 0) { + free(thisline[0]); + thisline[0] = xmalloc_fgetline(stream[0]); + } + if (order >= 0) { + free(thisline[1]); + thisline[1] = xmalloc_fgetline(stream[1]); + } + + i = !thisline[0] + (!thisline[1] << 1); + if (i) + break; + order = strcmp(thisline[0], thisline[1]); + + if (order >= 0) + writeline(thisline[1], order ? 1 : 2); + else + writeline(thisline[0], 0); + } + + /* EOF at least on one of the streams */ + i &= 1; + if (thisline[i]) { + /* stream[i] is not at EOF yet */ + /* we did not print thisline[i] yet */ + char *p = thisline[i]; + writeline(p, i); + while (1) { + free(p); + p = xmalloc_fgetline(stream[i]); + if (!p) + break; + writeline(p, i); + } + } + + if (ENABLE_FEATURE_CLEAN_UP) { + fclose(stream[0]); + fclose(stream[1]); + } + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/cp.c b/busybox-1_37_0/coreutils/cp.c new file mode 100644 index 000000000..ee40af50b --- /dev/null +++ b/busybox-1_37_0/coreutils/cp.c @@ -0,0 +1,285 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini cp implementation for busybox + * + * Copyright (C) 2000 by Matt Kraai + * SELinux support by Yuichi Nakamura + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Size reduction. + */ +//config:config CP +//config: bool "cp (10 kb)" +//config: default y +//config: help +//config: cp is used to copy files and directories. +//config: +//config:config FEATURE_CP_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on CP && LONG_OPTS +//config: help +//config: Enable long options. +//config: Also add support for --parents option. +//config: +//config:config FEATURE_CP_REFLINK +//config: bool "Enable --reflink[=auto]" +//config: default y +//config: depends on FEATURE_CP_LONG_OPTIONS + +//applet:IF_CP(APPLET_NOEXEC(cp, cp, BB_DIR_BIN, BB_SUID_DROP, cp)) +/* NOEXEC despite cases when it can be a "runner" (cp -r LARGE_DIR NEW_DIR) */ + +//kbuild:lib-$(CONFIG_CP) += cp.o + +/* http://www.opengroup.org/onlinepubs/007904975/utilities/cp.html */ + +// Options of cp from GNU coreutils 6.10: +// -a, --archive +// -f, --force +// -i, --interactive +// -l, --link +// -L, --dereference +// -P, --no-dereference +// -R, -r, --recursive +// -s, --symbolic-link +// -v, --verbose +// -H follow command-line symbolic links in SOURCE +// -d same as --no-dereference --preserve=links +// -p same as --preserve=mode,ownership,timestamps +// -c same as --preserve=context +// -u, --update +// copy only when the SOURCE file is newer than the destination +// file or when the destination file is missing +// --remove-destination +// remove each existing destination file before attempting to open +// --parents +// use full source file name under DIRECTORY +// -T, --no-target-directory +// treat DEST as a normal file +// NOT SUPPORTED IN BBOX: +// --backup[=CONTROL] +// make a backup of each existing destination file +// -b like --backup but does not accept an argument +// --copy-contents +// copy contents of special files when recursive +// --preserve[=ATTR_LIST] +// preserve attributes (default: mode,ownership,timestamps), +// if possible additional attributes: security context,links,all +// --no-preserve=ATTR_LIST +// --sparse=WHEN +// control creation of sparse files +// --strip-trailing-slashes +// remove any trailing slashes from each SOURCE argument +// -S, --suffix=SUFFIX +// override the usual backup suffix +// -t, --target-directory=DIRECTORY +// copy all SOURCE arguments into DIRECTORY +// -x, --one-file-system +// stay on this file system +// -Z, --context=CONTEXT +// (SELinux) set SELinux security context of copy to CONTEXT + +//usage:#define cp_trivial_usage +//usage: "[-arPLHpfinlsTu] SOURCE DEST\n" +//usage: "or: cp [-arPLHpfinlsu] SOURCE... { -t DIRECTORY | DIRECTORY }" +//usage:#define cp_full_usage "\n\n" +//usage: "Copy SOURCEs to DEST\n" +//usage: "\n -a Same as -dpR" +//usage: IF_SELINUX( +//usage: "\n -c Preserve security context" +//usage: ) +//usage: "\n -R,-r Recurse" +//usage: "\n -d,-P Preserve symlinks (default if -R)" +//usage: "\n -L Follow all symlinks" +//usage: "\n -H Follow symlinks on command line" +//usage: "\n -p Preserve file attributes if possible" +//usage: "\n -f Overwrite" +//usage: "\n -i Prompt before overwrite" +//usage: "\n -n Don't overwrite" +//usage: "\n -l,-s Create (sym)links" +//usage: "\n -T Refuse to copy if DEST is a directory" +//usage: "\n -t DIR Copy all SOURCEs into DIR" +//usage: "\n -u Copy only newer files" + +#include "libbb.h" +#include "libcoreutils/coreutils.h" + +/* This is a NOEXEC applet. Be very careful! */ + +int cp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int cp_main(int argc, char **argv) +{ + struct stat source_stat; + struct stat dest_stat; + const char *last; + const char *dest; + int s_flags; + int d_flags; + int flags; + int status; +#if ENABLE_FEATURE_CP_LONG_OPTIONS + enum { + /*OPT_rmdest = FILEUTILS_RMDEST = 1 << FILEUTILS_CP_OPTBITS */ + OPT_parents = 1 << (FILEUTILS_CP_OPTBITS+1), + OPT_reflink = 1 << (FILEUTILS_CP_OPTBITS+2), + }; +# if ENABLE_FEATURE_CP_REFLINK + char *reflink = NULL; +# endif + flags = getopt32long(argv, "^" + FILEUTILS_CP_OPTSTR + "\0" + // Need at least one argument. (Usually two+, but -t DIR can have only one) + // Soft- and hardlinking doesn't mix + // -P and -d are the same (-P is POSIX, -d is GNU) + // -r and -R are the same + // -R (and therefore -r) turns on -d (coreutils does this) + // -a = -pdR + // -i overrides -n and vice versa (last wins) + "-1:l--s:s--l:Pd:rRd:Rd:apdR:i-n:n-i", + "archive\0" No_argument "a" + "force\0" No_argument "f" + "interactive\0" No_argument "i" + "no-clobber\0" No_argument "n" + "link\0" No_argument "l" + "dereference\0" No_argument "L" + "no-dereference\0" No_argument "P" + "recursive\0" No_argument "R" + "symbolic-link\0" No_argument "s" + "no-target-directory\0" No_argument "T" + "target-directory\0" Required_argument "t" + "verbose\0" No_argument "v" + "update\0" No_argument "u" + "remove-destination\0" No_argument "\xff" + "parents\0" No_argument "\xfe" +# if ENABLE_FEATURE_CP_REFLINK + "reflink\0" Optional_argument "\xfd" +# endif + , &last +# if ENABLE_FEATURE_CP_REFLINK + , &reflink +# endif + ); +# if ENABLE_FEATURE_CP_REFLINK + BUILD_BUG_ON((int)OPT_reflink != (int)FILEUTILS_REFLINK); + if (flags & FILEUTILS_REFLINK) { + if (!reflink) + flags |= FILEUTILS_REFLINK_ALWAYS; + else if (strcmp(reflink, "always") == 0) + flags |= FILEUTILS_REFLINK_ALWAYS; + else if (strcmp(reflink, "auto") != 0) + bb_show_usage(); + } +# endif +#else + flags = getopt32(argv, "^" + FILEUTILS_CP_OPTSTR + "\0" + "-1:l--s:s--l:Pd:rRd:Rd:apdR" + , &last + ); +#endif + argc -= optind; + argv += optind; + /* Reverse this bit. If there is -d, bit is not set: */ + flags ^= FILEUTILS_DEREFERENCE; + /* coreutils 6.9 compat: + * by default, "cp" derefs symlinks (creates regular dest files), + * but "cp -R" does not. We switch off deref if -r or -R (see above). + * However, "cp -RL" must still deref symlinks: */ + if (flags & FILEUTILS_DEREF_SOFTLINK) /* -L */ + flags |= FILEUTILS_DEREFERENCE; + +#if ENABLE_SELINUX + if (flags & FILEUTILS_PRESERVE_SECURITY_CONTEXT) { + selinux_or_die(); + } +#endif + + status = EXIT_SUCCESS; + if (!(flags & FILEUTILS_TARGET_DIR)) { + last = argv[argc - 1]; + if (argc < 2) + bb_show_usage(); + if (argc != 2) { + if (flags & FILEUTILS_NO_TARGET_DIR) + bb_show_usage(); + /* "cp A B C... DIR" - target must be dir */ + } else /* argc == 2 */ { + /* "cp A B" - only case where target can be not a dir */ + s_flags = cp_mv_stat2(*argv, &source_stat, + (flags & FILEUTILS_DEREFERENCE) ? stat : lstat); + if (s_flags < 0) /* error other than ENOENT */ + return EXIT_FAILURE; + d_flags = cp_mv_stat(last, &dest_stat); + if (d_flags < 0) /* error other than ENOENT */ + return EXIT_FAILURE; + + if (flags & FILEUTILS_NO_TARGET_DIR) { /* -T */ + if (!(s_flags & 2) && (d_flags & 2)) + /* cp -T NOTDIR DIR */ + bb_error_msg_and_die("'%s' is a directory", last); + } + +#if ENABLE_FEATURE_CP_LONG_OPTIONS + //bb_error_msg("flags:%x FILEUTILS_RMDEST:%x OPT_parents:%x", + // flags, FILEUTILS_RMDEST, OPT_parents); + if (flags & OPT_parents) { + if (!(d_flags & 2)) { + bb_simple_error_msg_and_die("with --parents, the destination must be a directory"); + } + } + if (flags & FILEUTILS_RMDEST) { + flags |= FILEUTILS_FORCE; + } +#endif + + /* ...if neither is a directory... */ + if (!((s_flags | d_flags) & 2) + /* ...or: recursing, the 1st is a directory, and the 2nd doesn't exist... */ + || ((flags & FILEUTILS_RECUR) && (s_flags & 2) && !d_flags) + || (flags & FILEUTILS_NO_TARGET_DIR) + ) { + /* Do a simple copy */ + dest = last; + goto DO_COPY; /* NB: argc==2 -> *++argv==last */ + } + } + } + /* else: last is DIR from "-t DIR" */ + + while (1) { +#if ENABLE_FEATURE_CP_LONG_OPTIONS + if (flags & OPT_parents) { + char *dest_dup; + char *dest_dir; + dest = concat_path_file(last, *argv); + dest_dup = xstrdup(dest); + dest_dir = dirname(dest_dup); + if (bb_make_directory(dest_dir, -1, FILEUTILS_RECUR)) { + return EXIT_FAILURE; + } + free(dest_dup); + goto DO_COPY; + } +#endif + dest = concat_path_file(last, bb_get_last_path_component_strip(*argv)); + DO_COPY: + if (copy_file(*argv, dest, flags) < 0) { + status = EXIT_FAILURE; + } + if (!*++argv || *argv == last) { + /* possibly leaking dest... */ + break; + } + /* don't move up: dest may be == last and not malloced! */ + free((void*)dest); + } + + /* Exit. We are NOEXEC, not NOFORK. We do exit at the end of main() */ + return status; +} diff --git a/busybox-1_37_0/coreutils/cut.c b/busybox-1_37_0/coreutils/cut.c new file mode 100644 index 000000000..d129f9b9d --- /dev/null +++ b/busybox-1_37_0/coreutils/cut.c @@ -0,0 +1,333 @@ +/* vi: set sw=4 ts=4: */ +/* + * cut.c - minimalist version of cut + * + * Copyright (C) 1999,2000,2001 by Lineo, inc. + * Written by Mark Whitley + * debloated by Bernhard Reutner-Fischer + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config CUT +//config: bool "cut (6.7 kb)" +//config: default y +//config: help +//config: cut is used to print selected parts of lines from +//config: each file to stdout. +//config: +//config:config FEATURE_CUT_REGEX +//config: bool "cut -F" +//config: default y +//config: depends on CUT +//config: help +//config: Allow regex based delimiters. + +//applet:IF_CUT(APPLET_NOEXEC(cut, cut, BB_DIR_USR_BIN, BB_SUID_DROP, cut)) + +//kbuild:lib-$(CONFIG_CUT) += cut.o + +//usage:#define cut_trivial_usage +//usage: "[OPTIONS] [FILE]..." +//usage:#define cut_full_usage "\n\n" +//usage: "Print selected fields from FILEs to stdout\n" +//usage: "\n -b LIST Output only bytes from LIST" +//usage: "\n -c LIST Output only characters from LIST" +//usage: "\n -d SEP Field delimiter for input (default -f TAB, -F run of whitespace)" +//usage: "\n -O SEP Field delimeter for output (default = -d for -f, one space for -F)" +//usage: "\n -D Don't sort/collate sections or match -fF lines without delimeter" +//usage: "\n -f LIST Print only these fields (-d is single char)" +//usage: IF_FEATURE_CUT_REGEX( +//usage: "\n -F LIST Print only these fields (-d is regex)" +//usage: ) +//usage: "\n -s Output only lines containing delimiter" +//usage: "\n -n Ignored" +//(manpage:-n with -b: don't split multibyte characters) +//usage: +//usage:#define cut_example_usage +//usage: "$ echo \"Hello world\" | cut -f 1 -d ' '\n" +//usage: "Hello\n" +//usage: "$ echo \"Hello world\" | cut -f 2 -d ' '\n" +//usage: "world\n" + +#include "libbb.h" + +#if ENABLE_FEATURE_CUT_REGEX +#include "xregex.h" +#else +#define regex_t int +typedef struct { int rm_eo, rm_so; } regmatch_t; +#define xregcomp(x, ...) *(x) = 0 +#define regexec(...) 0 +#endif + +/* This is a NOEXEC applet. Be very careful! */ + + +/* option vars */ +#define OPT_STR "b:c:f:d:O:sD"IF_FEATURE_CUT_REGEX("F:")"n" +#define CUT_OPT_BYTE_FLGS (1 << 0) +#define CUT_OPT_CHAR_FLGS (1 << 1) +#define CUT_OPT_FIELDS_FLGS (1 << 2) +#define CUT_OPT_DELIM_FLGS (1 << 3) +#define CUT_OPT_ODELIM_FLGS (1 << 4) +#define CUT_OPT_SUPPRESS_FLGS (1 << 5) +#define CUT_OPT_NOSORT_FLGS (1 << 6) +#define CUT_OPT_REGEX_FLGS ((1 << 7) * ENABLE_FEATURE_CUT_REGEX) + +struct cut_list { + int startpos; + int endpos; +}; + +static int cmpfunc(const void *a, const void *b) +{ + return (((struct cut_list *) a)->startpos - + ((struct cut_list *) b)->startpos); +} + +static void cut_file(FILE *file, const char *delim, const char *odelim, + const struct cut_list *cut_lists, unsigned nlists) +{ + char *line; + unsigned linenum = 0; /* keep these zero-based to be consistent */ + regex_t reg; + int spos, shoe = option_mask32 & CUT_OPT_REGEX_FLGS; + + if (shoe) xregcomp(®, delim, REG_EXTENDED); + + /* go through every line in the file */ + while ((line = xmalloc_fgetline(file)) != NULL) { + + /* set up a list so we can keep track of what's been printed */ + int linelen = strlen(line); + char *printed = xzalloc(linelen + 1); + char *orig_line = line; + unsigned cl_pos = 0; + + /* cut based on chars/bytes XXX: only works when sizeof(char) == byte */ + if (option_mask32 & (CUT_OPT_CHAR_FLGS | CUT_OPT_BYTE_FLGS)) { + /* print the chars specified in each cut list */ + for (; cl_pos < nlists; cl_pos++) { + for (spos = cut_lists[cl_pos].startpos; spos < linelen;) { + if (!printed[spos]) { + printed[spos] = 'X'; + putchar(line[spos]); + } + if (++spos > cut_lists[cl_pos].endpos) { + break; + } + } + } + } else if (*delim == '\n') { /* cut by lines */ + spos = cut_lists[cl_pos].startpos; + + /* get out if we have no more lists to process or if the lines + * are lower than what we're interested in */ + if (((int)linenum < spos) || (cl_pos >= nlists)) + goto next_line; + + /* if the line we're looking for is lower than the one we were + * passed, it means we displayed it already, so move on */ + while (spos < (int)linenum) { + spos++; + /* go to the next list if we're at the end of this one */ + if (spos > cut_lists[cl_pos].endpos) { + cl_pos++; + /* get out if there's no more lists to process */ + if (cl_pos >= nlists) + goto next_line; + spos = cut_lists[cl_pos].startpos; + /* get out if the current line is lower than the one + * we just became interested in */ + if ((int)linenum < spos) + goto next_line; + } + } + + /* If we made it here, it means we've found the line we're + * looking for, so print it */ + puts(line); + goto next_line; + } else { /* cut by fields */ + unsigned uu = 0, start = 0, end = 0, out = 0; + int dcount = 0; + + /* Loop through bytes, finding next delimiter */ + for (;;) { + /* End of current range? */ + if (end == linelen || dcount > cut_lists[cl_pos].endpos) { + if (++cl_pos >= nlists) break; + if (option_mask32 & CUT_OPT_NOSORT_FLGS) + start = dcount = uu = 0; + end = 0; + } + /* End of current line? */ + if (uu == linelen) { + /* If we've seen no delimiters, check -s */ + if (!cl_pos && !dcount && !shoe) { + if (option_mask32 & CUT_OPT_SUPPRESS_FLGS) + goto next_line; + } else if (dcount < cut_lists[cl_pos].startpos) + start = linelen; + end = linelen; + } else { + /* Find next delimiter */ + if (shoe) { + regmatch_t rr = {-1, -1}; + + if (!regexec(®, line+uu, 1, &rr, REG_NOTBOL|REG_NOTEOL)) { + end = uu + rr.rm_so; + uu += rr.rm_eo; + } else { + uu = linelen; + continue; + } + } else if (line[end = uu++] != *delim) + continue; + + /* Got delimiter. Loop if not yet within range. */ + if (dcount++ < cut_lists[cl_pos].startpos) { + start = uu; + continue; + } + } + if (end != start || !shoe) + printf("%s%.*s", out++ ? odelim : "", end-start, line + start); + start = uu; + if (!dcount) + break; + } + } + /* if we printed anything, finish with newline */ + putchar('\n'); + next_line: + linenum++; + free(printed); + free(orig_line); + } +} + +int cut_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int cut_main(int argc UNUSED_PARAM, char **argv) +{ + /* growable array holding a series of lists */ + struct cut_list *cut_lists = NULL; + unsigned nlists = 0; /* number of elements in above list */ + char *sopt, *ltok; + const char *delim = NULL; + const char *odelim = NULL; + unsigned opt; + +#define ARG "bcf"IF_FEATURE_CUT_REGEX("F") + opt = getopt32(argv, "^" + OPT_STR // = "b:c:f:d:O:sD"IF_FEATURE_CUT_REGEX("F:")"n" + "\0" "b--"ARG":c--"ARG":f--"ARG IF_FEATURE_CUT_REGEX("F--"ARG), + &sopt, &sopt, &sopt, &delim, &odelim IF_FEATURE_CUT_REGEX(, &sopt) + ); + if (!delim || !*delim) + delim = (opt & CUT_OPT_REGEX_FLGS) ? "[[:space:]]+" : "\t"; + if (!odelim) odelim = (opt & CUT_OPT_REGEX_FLGS) ? " " : delim; + +// argc -= optind; + argv += optind; + if (!(opt & (CUT_OPT_BYTE_FLGS | CUT_OPT_CHAR_FLGS | CUT_OPT_FIELDS_FLGS | CUT_OPT_REGEX_FLGS))) + bb_simple_error_msg_and_die("expected a list of bytes, characters, or fields"); + + /* non-field (char or byte) cutting has some special handling */ + if (!(opt & (CUT_OPT_FIELDS_FLGS|CUT_OPT_REGEX_FLGS))) { + static const char _op_on_field[] ALIGN1 = " only when operating on fields"; + + if (opt & CUT_OPT_SUPPRESS_FLGS) { + bb_error_msg_and_die + ("suppressing non-delimited lines makes sense%s", _op_on_field); + } + if (opt & CUT_OPT_DELIM_FLGS) { + bb_error_msg_and_die + ("a delimiter may be specified%s", _op_on_field); + } + } + + /* + * parse list and put values into startpos and endpos. + * valid list formats: N, N-, N-M, -M + * more than one list can be separated by commas + */ + { + char *ntok; + int s = 0, e = 0; + + /* take apart the lists, one by one (they are separated with commas) */ + while ((ltok = strsep(&sopt, ",")) != NULL) { + + /* it's actually legal to pass an empty list */ + if (!ltok[0]) + continue; + + /* get the start pos */ + ntok = strsep(<ok, "-"); + if (!ntok[0]) { + s = 0; + } else { + s = xatoi_positive(ntok); + /* account for the fact that arrays are zero based, while + * the user expects the first char on the line to be char #1 */ + if (s != 0) + s--; + } + + /* get the end pos */ + if (ltok == NULL) { + e = s; + } else if (!ltok[0]) { + e = INT_MAX; + } else { + e = xatoi_positive(ltok); + /* if the user specified and end position of 0, + * that means "til the end of the line" */ + if (!*ltok) + e = INT_MAX; + else if (e < s) + bb_error_msg_and_die("%d<%d", e, s); + e--; /* again, arrays are zero based, lines are 1 based */ + } + + /* add the new list */ + cut_lists = xrealloc_vector(cut_lists, 4, nlists); + /* NB: startpos is always >= 0 */ + cut_lists[nlists].startpos = s; + cut_lists[nlists].endpos = e; + nlists++; + } + + /* make sure we got some cut positions out of all that */ + if (nlists == 0) + bb_simple_error_msg_and_die("missing list of positions"); + + /* now that the lists are parsed, we need to sort them to make life + * easier on us when it comes time to print the chars / fields / lines + */ + if (!(opt & CUT_OPT_NOSORT_FLGS)) + qsort(cut_lists, nlists, sizeof(cut_lists[0]), cmpfunc); + } + + { + exitcode_t retval = EXIT_SUCCESS; + + if (!*argv) + *--argv = (char *)"-"; + + do { + FILE *file = fopen_or_warn_stdin(*argv); + if (!file) { + retval = EXIT_FAILURE; + continue; + } + cut_file(file, delim, odelim, cut_lists, nlists); + fclose_if_not_stdin(file); + } while (*++argv); + + if (ENABLE_FEATURE_CLEAN_UP) + free(cut_lists); + fflush_stdout_and_exit(retval); + } +} diff --git a/busybox-1_37_0/coreutils/date.c b/busybox-1_37_0/coreutils/date.c new file mode 100644 index 000000000..3a89b6caf --- /dev/null +++ b/busybox-1_37_0/coreutils/date.c @@ -0,0 +1,387 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini date implementation for busybox + * + * by Matthew Grant + * + * iso-format handling added by Robert Griebl + * bugfixes and cleanup by Bernhard Reutner-Fischer + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* This 'date' command supports only 2 time setting formats, + all the GNU strftime stuff (its in libc, lets use it), + setting time using UTC and displaying it, as well as + an RFC 2822 compliant date output for shell scripting + mail commands */ + +/* Input parsing code is always bulky - used heavy duty libc stuff as + much as possible, missed out a lot of bounds checking */ + +//config:config DATE +//config: bool "date (7.2 kb)" +//config: default y +//config: help +//config: date is used to set the system date or display the +//config: current time in the given format. +//config: +//config:config FEATURE_DATE_ISOFMT +//config: bool "Enable ISO date format output (-I)" +//config: default y +//config: depends on DATE +//config: help +//config: Enable option (-I) to output an ISO-8601 compliant +//config: date/time string. +//config: +//config:config FEATURE_DATE_NANO +//config: bool "Support %[num]N nanosecond format specifier" +//config: default n # stat's nanosecond field is a bit non-portable +//config: depends on DATE +//config: help +//config: Support %[num]N format specifier. Adds ~250 bytes of code. +//config: +//config:config FEATURE_DATE_COMPAT +//config: bool "Support weird 'date MMDDhhmm[[YY]YY][.ss]' format" +//config: default y +//config: depends on DATE +//config: help +//config: System time can be set by 'date -s DATE' and simply 'date DATE', +//config: but formats of DATE string are different. 'date DATE' accepts +//config: a rather weird MMDDhhmm[[YY]YY][.ss] format with completely +//config: unnatural placement of year between minutes and seconds. +//config: date -s (and other commands like touch -d) use more sensible +//config: formats (for one, ISO format YYYY-MM-DD hh:mm:ss.ssssss). +//config: +//config: With this option off, 'date DATE' and 'date -s DATE' support +//config: the same format. With it on, 'date DATE' additionally supports +//config: MMDDhhmm[[YY]YY][.ss] format. + +//applet:IF_DATE(APPLET_NOEXEC(date, date, BB_DIR_BIN, BB_SUID_DROP, date)) +/* bb_common_bufsiz1 usage here is safe wrt NOEXEC: not expecting it to be zeroed. */ + +//kbuild:lib-$(CONFIG_DATE) += date.o + +/* GNU coreutils 6.9 man page: + * date [OPTION]... [+FORMAT] + * date [-u|--utc|--universal] [MMDDhhmm[[CC]YY][.ss]] + * -d, --date=STRING + * display time described by STRING, not 'now' + * -f, --file=DATEFILE + * like --date once for each line of DATEFILE + * -r, --reference=FILE + * display the last modification time of FILE + * -R, --rfc-2822 + * output date and time in RFC 2822 format. + * Example: Mon, 07 Aug 2006 12:34:56 -0600 + * --rfc-3339=TIMESPEC + * output date and time in RFC 3339 format. + * TIMESPEC='date', 'seconds', or 'ns' + * Date and time components are separated by a single space: + * 2006-08-07 12:34:56-06:00 + * -s, --set=STRING + * set time described by STRING + * -u, --utc, --universal + * print or set Coordinated Universal Time + * + * Busybox: + * long options are not supported + * -f is not supported + * -I seems to roughly match --rfc-3339, but -I has _optional_ param + * (thus "-I seconds" doesn't work, only "-Iseconds"), + * and does not support -Ins + * -D FMT is a bbox extension for _input_ conversion of -d DATE + */ + +//usage:#define date_trivial_usage +//usage: "[OPTIONS] [+FMT] [[-s] TIME]" +//usage:#define date_full_usage "\n\n" +//usage: "Display time (using +FMT), or set time\n" +//usage: "\n -u Work in UTC (don't convert to local time)" +//usage: "\n [-s] TIME Set time to TIME" +//usage: "\n -d TIME Display TIME, not 'now'" +//usage: IF_FEATURE_DATE_ISOFMT( +//usage: "\n -D FMT FMT (strptime format) for -s/-d TIME conversion" +////////^^^^^^^^^^^^^^^^^^^^^^ busybox invention, not compat +//usage: ) +//usage: "\n -r FILE Display last modification time of FILE" +//usage: "\n -R Output RFC-2822 date" +//usage: IF_FEATURE_DATE_ISOFMT( +//usage: "\n -I[SPEC] Output ISO-8601 date" +//usage: "\n SPEC=date (default), hours, minutes, seconds or ns" +//usage: ) +//usage: "\n" +//usage: "\nRecognized TIME formats:" +//usage: "\n @seconds_since_1970" +//usage: "\n hh:mm[:ss]" +//usage: "\n [YYYY.]MM.DD-hh:mm[:ss]" +//usage: "\n YYYY-MM-DD hh:mm[:ss]" +//usage: "\n [[[[[YY]YY]MM]DD]hh]mm[.ss]" +//usage: IF_FEATURE_DATE_COMPAT( +//usage: "\n 'date TIME' form accepts MMDDhhmm[[YY]YY][.ss] instead" +//usage: ) +//usage: +//usage:#define date_example_usage +//usage: "$ date\n" +//usage: "Wed Apr 12 18:52:41 MDT 2000\n" + +#include "libbb.h" +#include "common_bufsiz.h" +#if ENABLE_FEATURE_DATE_NANO +# include +#endif + +enum { + OPT_RFC2822 = (1 << 0), /* R */ + OPT_SET = (1 << 1), /* s */ + OPT_UTC = (1 << 2), /* u */ + OPT_DATE = (1 << 3), /* d */ + OPT_REFERENCE = (1 << 4), /* r */ + OPT_ISO8601 = (1 << 5) * ENABLE_FEATURE_DATE_ISOFMT, /* I */ + OPT_STR2DT = (1 << 6) * ENABLE_FEATURE_DATE_ISOFMT, /* D */ +}; + +#if ENABLE_LONG_OPTS +static const char date_longopts[] ALIGN1 = + "rfc-822\0" No_argument "R" + "rfc-2822\0" No_argument "R" + "set\0" Required_argument "s" + "utc\0" No_argument "u" + /* "universal\0" No_argument "u" */ + "date\0" Required_argument "d" + "reference\0" Required_argument "r" + ; +#endif + +/* We are a NOEXEC applet. + * Obstacles to NOFORK: + * - we change env + * - xasprintf result not freed + * - after xasprintf we use other xfuncs + */ + +int date_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int date_main(int argc UNUSED_PARAM, char **argv) +{ + struct timespec ts; + struct tm tm_time; + char buf_fmt_dt2str[64]; + unsigned opt; + int isofmt = -1; + char *date_str; + char *fmt_dt2str; + char *fmt_str2dt; + char *filename; + char *isofmt_arg = NULL; + + opt = getopt32long(argv, "^" + "Rs:ud:r:" + IF_FEATURE_DATE_ISOFMT("I::D:") + "\0" + "d--s:s--d" + IF_FEATURE_DATE_ISOFMT(":R--I:I--R"), + date_longopts, + &date_str, &date_str, &filename + IF_FEATURE_DATE_ISOFMT(, &isofmt_arg, &fmt_str2dt) + ); + argv += optind; + + if (opt & OPT_UTC) + putenv((char*)"TZ=UTC0"); + + if (ENABLE_FEATURE_DATE_ISOFMT && (opt & OPT_ISO8601)) { + isofmt = 0; /* default is date */ + if (isofmt_arg) { + static const char isoformats[] ALIGN1 = + "date\0""hours\0""minutes\0""seconds\0ns\0"; + isofmt = index_in_substrings(isoformats, isofmt_arg); + if (isofmt < 0) + bb_show_usage(); + } + } + + fmt_dt2str = NULL; + if (argv[0] && argv[0][0] == '+') { + fmt_dt2str = &argv[0][1]; /* skip over the '+' */ + argv++; + } + if (!(opt & (OPT_SET | OPT_DATE))) { /* neither -s TIME nor -d TIME? */ + opt |= OPT_SET; + date_str = argv[0]; /* can be NULL */ + if (date_str) { +#if ENABLE_FEATURE_DATE_COMPAT + int len = strspn(date_str, "0123456789"); + if (date_str[len] == '\0' + || (date_str[len] == '.' + && isdigit(date_str[len+1]) + && isdigit(date_str[len+2]) + && date_str[len+3] == '\0' + ) + ) { + /* Dreaded MMDDhhmm[[CC]YY][.ss] format! + * It does not match -d or -s format. + * Some users actually do use it. + */ + len -= 8; + if (len < 0 || len > 4 || (len & 1)) + bb_error_msg_and_die(bb_msg_invalid_date, date_str); + if (len != 0) { /* move YY or CCYY to front */ + char buf[4]; + memcpy(buf, date_str + 8, len); + memmove(date_str + len, date_str, 8); + memcpy(date_str, buf, len); + } + } +#endif + argv++; + } + } + if (*argv) + bb_show_usage(); + + /* Now we have parsed all the information except the date format + * which depends on whether the clock is being set or read */ + + if (opt & OPT_REFERENCE) { + struct stat statbuf; + xstat(filename, &statbuf); + ts.tv_sec = statbuf.st_mtime; +#if ENABLE_FEATURE_DATE_NANO + ts.tv_nsec = statbuf.st_mtim.tv_nsec; + /* Some toolchains use .st_mtimensec instead of st_mtim.tv_nsec. + * If you need #define _SVID_SOURCE 1 to enable st_mtim.tv_nsec, + * drop a mail to project mailing list please + */ +#endif + } else { +#if ENABLE_FEATURE_DATE_NANO + clock_gettime(CLOCK_REALTIME, &ts); +#else + time(&ts.tv_sec); +#endif + } +#if !ENABLE_FEATURE_DATE_NANO + ts.tv_nsec = 0; +#endif + localtime_r(&ts.tv_sec, &tm_time); + + /* If date string is given, update tm_time, and maybe set date */ + if (date_str != NULL) { + int check_dst = 1; + /* Zero out fields - take her back to midnight! */ + tm_time.tm_sec = 0; + tm_time.tm_min = 0; + tm_time.tm_hour = 0; + + /* Process any date input to UNIX time since 1 Jan 1970 */ + if (ENABLE_FEATURE_DATE_ISOFMT && (opt & OPT_STR2DT)) { + if (strptime(date_str, fmt_str2dt, &tm_time) == NULL) + bb_error_msg_and_die(bb_msg_invalid_date, date_str); + } else { + check_dst = parse_datestr(date_str, &tm_time); + } + + /* Correct any day of week and day of year etc. fields */ + /* Be sure to recheck dst (but not if date is UTC) */ + if (check_dst) + tm_time.tm_isdst = -1; + ts.tv_sec = validate_tm_time(date_str, &tm_time); + ts.tv_nsec = 0; + + /* if setting time, set it */ + if ((opt & OPT_SET) && clock_settime(CLOCK_REALTIME, &ts) < 0) { + bb_simple_perror_msg("can't set date"); + } + } + + /* Display output */ + + /* Deal with format string */ + if (fmt_dt2str == NULL) { + int i; + fmt_dt2str = buf_fmt_dt2str; + if (ENABLE_FEATURE_DATE_ISOFMT && isofmt >= 0) { + /* -I[SPEC]: 0:date 1:hours 2:minutes 3:seconds 4:ns*/ + strcpy(fmt_dt2str, "%Y-%m-%dT%H:%M:%S"); + i = 8 + 3 * isofmt; + if (isofmt != 0) { + int n; + if (isofmt == 4) { + i -= 3; + i += sprintf(&fmt_dt2str[i], ",%09u", (unsigned)ts.tv_nsec); + } + /* %z prints "+hhmm" timezone, but coreutils-8.30 prints "+hh:mm"! */ + /* ...therefore this atrocity: */ + n = strftime(&fmt_dt2str[i], 8, "%z", &tm_time); + i += n; + if (n == 5 && (fmt_dt2str[i-5] == '+' || fmt_dt2str[i-5] == '-')) { + /* "mm" -> ":mm" */ + fmt_dt2str[i ] = fmt_dt2str[i - 1]; + fmt_dt2str[i - 1] = fmt_dt2str[i - 2]; + fmt_dt2str[i - 2] = ':'; + i++; + } + } + fmt_dt2str[i] = '\0'; + } else if (opt & OPT_RFC2822) { + /* -R. undo busybox.c setlocale */ + if (ENABLE_LOCALE_SUPPORT) + setlocale(LC_TIME, "C"); + fmt_dt2str = (char*)"%a, %d %b %Y %H:%M:%S %z"; + } else { /* default case */ + fmt_dt2str = (char*)"%a %b %e %H:%M:%S %Z %Y"; + } + } +#if ENABLE_FEATURE_DATE_NANO + else { + /* User-specified fmt_dt2str */ + /* Search for and process "%N" */ + char *p = fmt_dt2str; + while ((p = strchr(p, '%')) != NULL) { + int n, m; + unsigned pres, scale; + + p++; + if (*p == '%') { + p++; + continue; + } + n = strspn(p, "0123456789"); + if (p[n] != 'N') { + p += n; + continue; + } + /* We have "%[nnn]N" */ + p[-1] = '\0'; + p[n] = '\0'; + scale = 1; + pres = 9; + if (n) { + pres = xatoi_positive(p); + if (pres == 0) + pres = 9; + m = 9 - pres; + while (--m >= 0) + scale *= 10; + } + + m = p - fmt_dt2str; + p += n + 1; + fmt_dt2str = xasprintf("%s%0*u%s", fmt_dt2str, pres, (unsigned)ts.tv_nsec / scale, p); + p = fmt_dt2str + m; + } + } +#endif + +#define date_buf bb_common_bufsiz1 + setup_common_bufsiz(); + if (*fmt_dt2str == '\0') { + /* With no format string, just print a blank line */ + date_buf[0] = '\0'; + } else { + /* Generate output string */ + strftime(date_buf, COMMON_BUFSIZE, fmt_dt2str, &tm_time); + } + puts(date_buf); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/dd.c b/busybox-1_37_0/coreutils/dd.c new file mode 100644 index 000000000..8bb782781 --- /dev/null +++ b/busybox-1_37_0/coreutils/dd.c @@ -0,0 +1,689 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini dd implementation for busybox + * + * Copyright (C) 2000,2001 Matt Kraai + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config DD +//config: bool "dd (8.3 kb)" +//config: default y +//config: help +//config: dd copies a file (from standard input to standard output, +//config: by default) using specific input and output blocksizes, +//config: while optionally performing conversions on it. +//config: +//config:config FEATURE_DD_SIGNAL_HANDLING +//config: bool "Enable signal handling for status reporting" +//config: default y +//config: depends on DD +//config: help +//config: Sending a SIGUSR1 signal to a running 'dd' process makes it +//config: print to standard error the number of records read and written +//config: so far, then to resume copying. +//config: +//config: $ dd if=/dev/zero of=/dev/null & +//config: $ pid=$!; kill -USR1 $pid; sleep 1; kill $pid +//config: 10899206+0 records in +//config: 10899206+0 records out +//config: +//config:config FEATURE_DD_THIRD_STATUS_LINE +//config: bool "Enable the third status line upon signal" +//config: default y +//config: depends on DD && FEATURE_DD_SIGNAL_HANDLING +//config: help +//config: Displays a coreutils-like third status line with transferred bytes, +//config: elapsed time and speed. +//config: +//config:config FEATURE_DD_IBS_OBS +//config: bool "Enable ibs, obs, iflag, oflag and conv options" +//config: default y +//config: depends on DD +//config: help +//config: Enable support for writing a certain number of bytes in and out, +//config: at a time, and performing conversions on the data stream. +//config: +//config:config FEATURE_DD_STATUS +//config: bool "Enable status display options" +//config: default y +//config: depends on DD +//config: help +//config: Enable support for status=noxfer/none option. + +//applet:IF_DD(APPLET_NOEXEC(dd, dd, BB_DIR_BIN, BB_SUID_DROP, dd)) + +//kbuild:lib-$(CONFIG_DD) += dd.o + +//usage:#define dd_trivial_usage +//usage: "[if=FILE] [of=FILE] [" IF_FEATURE_DD_IBS_OBS("ibs=N obs=N/") "bs=N] [count=N] [skip=N] [seek=N]" +//usage: IF_FEATURE_DD_IBS_OBS("\n" +//usage: " [conv=notrunc|noerror|sync|fsync]\n" +//usage: " [iflag=skip_bytes|count_bytes|fullblock|direct] [oflag=seek_bytes|append|direct]" +//usage: ) +//usage:#define dd_full_usage "\n\n" +//usage: "Copy a file with converting and formatting\n" +//usage: "\n if=FILE Read from FILE instead of stdin" +//usage: "\n of=FILE Write to FILE instead of stdout" +//usage: "\n bs=N Read and write N bytes at a time" +//usage: IF_FEATURE_DD_IBS_OBS( +//usage: "\n ibs=N Read N bytes at a time" +//usage: ) +//usage: IF_FEATURE_DD_IBS_OBS( +//usage: "\n obs=N Write N bytes at a time" +//usage: ) +//usage: "\n count=N Copy only N input blocks" +//usage: "\n skip=N Skip N input blocks" +//usage: "\n seek=N Skip N output blocks" +//usage: IF_FEATURE_DD_IBS_OBS( +//usage: "\n conv=notrunc Don't truncate output file" +//usage: "\n conv=noerror Continue after read errors" +//usage: "\n conv=sync Pad blocks with zeros" +//usage: "\n conv=fsync Physically write data out before finishing" +//usage: "\n conv=swab Swap every pair of bytes" +//usage: "\n iflag=skip_bytes skip=N is in bytes" +//usage: "\n iflag=count_bytes count=N is in bytes" +//usage: "\n oflag=seek_bytes seek=N is in bytes" +//usage: "\n iflag=direct O_DIRECT input" +//usage: "\n oflag=direct O_DIRECT output" +//usage: "\n iflag=fullblock Read full blocks" +//usage: "\n oflag=append Open output in append mode" +//usage: ) +//usage: IF_FEATURE_DD_STATUS( +//usage: "\n status=noxfer Suppress rate output" +//usage: "\n status=none Suppress all output" +//usage: ) +//usage: "\n" +//usage: "\nN may be suffixed by c (1), w (2), b (512), kB (1000), k (1024), MB, M, GB, G" +//usage: +//usage:#define dd_example_usage +//usage: "$ dd if=/dev/zero of=/dev/ram1 bs=1M count=4\n" +//usage: "4+0 records in\n" +//usage: "4+0 records out\n" + +#include "libbb.h" +#include "common_bufsiz.h" + +/* This is a NOEXEC applet. Be very careful! */ + + +enum { + ifd = STDIN_FILENO, + ofd = STDOUT_FILENO, +}; + +struct globals { + off_t out_full, out_part, in_full, in_part; +#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE + unsigned long long total_bytes; + unsigned long long begin_time_us; +#endif + int flags; +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { \ + setup_common_bufsiz(); \ + /* we have to zero it out because of NOEXEC */ \ + memset(&G, 0, sizeof(G)); \ +} while (0) + +enum { + /* Must be in the same order as OP_conv_XXX! */ + /* (see "flags |= (1 << what)" below) */ + FLAG_NOTRUNC = (1 << 0) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_SYNC = (1 << 1) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_NOERROR = (1 << 2) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_FSYNC = (1 << 3) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_SWAB = (1 << 4) * ENABLE_FEATURE_DD_IBS_OBS, + /* end of conv flags */ + /* start of input flags */ + FLAG_IFLAG_SHIFT = 5, + FLAG_SKIP_BYTES = (1 << 5) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_COUNT_BYTES = (1 << 6) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_FULLBLOCK = (1 << 7) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_IDIRECT = (1 << 8) * ENABLE_FEATURE_DD_IBS_OBS, + /* end of input flags */ + /* start of output flags */ + FLAG_OFLAG_SHIFT = 9, + FLAG_SEEK_BYTES = (1 << 9) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_APPEND = (1 << 10) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_ODIRECT = (1 << 11) * ENABLE_FEATURE_DD_IBS_OBS, + /* end of output flags */ + FLAG_TWOBUFS = (1 << 12) * ENABLE_FEATURE_DD_IBS_OBS, + FLAG_COUNT = 1 << 13, + FLAG_STATUS_NONE = 1 << 14, + FLAG_STATUS_NOXFER = 1 << 15, +}; + +static void dd_output_status(int UNUSED_PARAM cur_signal) +{ +#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE + double seconds; + unsigned long long bytes_sec; + unsigned long long now_us = monotonic_us(); /* before fprintf */ +#endif + + /* Deliberately using %u, not %d */ + fprintf(stderr, "%"OFF_FMT"u+%"OFF_FMT"u records in\n" + "%"OFF_FMT"u+%"OFF_FMT"u records out\n", + G.in_full, G.in_part, + G.out_full, G.out_part); + +#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE +# if ENABLE_FEATURE_DD_STATUS + if (G.flags & FLAG_STATUS_NOXFER) /* status=noxfer active? */ + return; + //TODO: should status=none make dd stop reacting to USR1 entirely? + //So far we react to it (we print the stats), + //status=none only suppresses final, non-USR1 generated status message. +# endif + fprintf(stderr, /*G.total_bytes < 1024 + ? "%llu bytes copied, " : */ "%llu bytes (%sB) copied, " + , G.total_bytes, + /* show fractional digit, use suffixes */ + make_human_readable_str(G.total_bytes, 1, 0) + ); + /* Corner cases: + * ./busybox dd /dev/null + * ./busybox dd bs=1M count=2000 /dev/null + * (echo DONE) | ./busybox dd >/dev/null + * (sleep 1; echo DONE) | ./busybox dd >/dev/null + */ + seconds = (now_us - G.begin_time_us) / 1000000.0; + bytes_sec = G.total_bytes / seconds; + fprintf(stderr, "%f seconds, %sB/s\n", + seconds, + /* show fractional digit, use suffixes */ + make_human_readable_str(bytes_sec, 1, 0) + ); +#endif +} + +#if ENABLE_FEATURE_DD_IBS_OBS +# ifdef O_DIRECT +static int clear_O_DIRECT(int fd) +{ + if (errno == EINVAL) { + int fl = fcntl(fd, F_GETFL); + if (fl & O_DIRECT) { + fcntl(fd, F_SETFL, fl & ~O_DIRECT); + return 1; + } + } + return 0; +} +# endif +#endif + +static ssize_t dd_read(void *ibuf, size_t ibs) +{ + ssize_t n; + +#if ENABLE_FEATURE_DD_IBS_OBS + read_again: + if (G.flags & FLAG_FULLBLOCK) + n = full_read(ifd, ibuf, ibs); + else +#endif + n = safe_read(ifd, ibuf, ibs); +#if ENABLE_FEATURE_DD_IBS_OBS +# ifdef O_DIRECT + if (n < 0 && (G.flags & FLAG_IDIRECT) && clear_O_DIRECT(ifd)) + goto read_again; +# endif +#endif + return n; +} + +static bool write_and_stats(const void *buf, size_t len, size_t obs, + const char *filename) +{ + ssize_t n; + + IF_FEATURE_DD_IBS_OBS(write_again:) + n = full_write(ofd, buf, len); +#if ENABLE_FEATURE_DD_IBS_OBS +# ifdef O_DIRECT + if (n < 0 && (G.flags & FLAG_ODIRECT) && clear_O_DIRECT(ofd)) + goto write_again; +# endif +#endif + +#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE + if (n > 0) + G.total_bytes += n; +#endif + if ((size_t)n == obs) { + G.out_full++; + return 0; + } + if ((size_t)n == len) { + G.out_part++; + return 0; + } + /* n is < len (and possibly is -1). + * Even if n >= 0, errno is usually set correctly. + * For example, if writing to block device and getting ENOSPC, + * full_write() first sees a short write, then tries to write + * the remainder and gets errno set to ENOSPC. + * It returns n > 0 (the amount which it did write). + */ + bb_perror_msg("error writing '%s'", filename); + return 1; +} + +#if ENABLE_LFS +# define XATOU_SFX xatoull_sfx +#else +# define XATOU_SFX xatoul_sfx +#endif + +#if ENABLE_FEATURE_DD_IBS_OBS +static int parse_comma_flags(char *val, const char *words, const char *error_in) +{ + int flags = 0; + while (1) { + int n; + char *arg; + /* find ',', replace them with NUL so we can use val for + * index_in_strings() without copying. + * We rely on val being non-null, else strchr would fault. + */ + arg = strchr(val, ','); + if (arg) + *arg = '\0'; + n = index_in_strings(words, val); + if (n < 0) + bb_error_msg_and_die(bb_msg_invalid_arg_to, val, error_in); + flags |= (1 << n); + if (!arg) /* no ',' left, so this was the last specifier */ + break; + *arg = ','; /* to preserve ps listing */ + val = arg + 1; /* skip this keyword and ',' */ + } + return flags; +} +#endif + +static void *alloc_buf(size_t size) +{ + /* Important for "{i,o}flag=direct" - buffers must be page aligned */ + if (size >= bb_getpagesize()) + return xmmap_anon(size); + return xmalloc(size); +} + +int dd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int dd_main(int argc UNUSED_PARAM, char **argv) +{ + static const char keywords[] ALIGN1 = + "bs\0""count\0""seek\0""skip\0""if\0""of\0"IF_FEATURE_DD_STATUS("status\0") +#if ENABLE_FEATURE_DD_IBS_OBS + "ibs\0""obs\0""conv\0""iflag\0""oflag\0" +#endif + ; +#if ENABLE_FEATURE_DD_IBS_OBS + static const char conv_words[] ALIGN1 = + "notrunc\0""sync\0""noerror\0""fsync\0""swab\0"; + static const char iflag_words[] ALIGN1 = + "skip_bytes\0""count_bytes\0""fullblock\0""direct\0"; + static const char oflag_words[] ALIGN1 = + "seek_bytes\0append\0""direct\0"; +#endif +#if ENABLE_FEATURE_DD_STATUS + static const char status_words[] ALIGN1 = + "none\0""noxfer\0"; +#endif + enum { + OP_bs = 0, + OP_count, + OP_seek, + OP_skip, + OP_if, + OP_of, + IF_FEATURE_DD_STATUS(OP_status,) +#if ENABLE_FEATURE_DD_IBS_OBS + OP_ibs, + OP_obs, + OP_conv, + OP_iflag, + OP_oflag, + /* Must be in the same order as FLAG_XXX! */ + OP_conv_notrunc = 0, + OP_conv_sync, + OP_conv_noerror, + OP_conv_fsync, + OP_conv_swab, + /* Unimplemented conv=XXX: */ + //nocreat do not create the output file + //excl fail if the output file already exists + //fdatasync physically write output file data before finishing + //lcase change upper case to lower case + //ucase change lower case to upper case + //block pad newline-terminated records with spaces to cbs-size + //unblock replace trailing spaces in cbs-size records with newline + //ascii from EBCDIC to ASCII + //ebcdic from ASCII to EBCDIC + //ibm from ASCII to alternate EBCDIC + /* Partially implemented: */ + //swab swap every pair of input bytes: will abort on non-even reads + OP_iflag_skip_bytes, + OP_iflag_count_bytes, + OP_iflag_fullblock, + OP_iflag_direct, + OP_oflag_seek_bytes, + OP_oflag_direct, +#endif + }; + exitcode_t exitcode = EXIT_FAILURE; + int i; + size_t ibs = 512; + char *ibuf; +#if ENABLE_FEATURE_DD_IBS_OBS + size_t obs = 512; + char *obuf; +#else +# define obs ibs +# define obuf ibuf +#endif + /* These are all zeroed at once! */ + struct { + IF_FEATURE_DD_IBS_OBS(size_t ocount;) + ssize_t prev_read_size; /* for detecting swab failure */ + off_t count; + off_t seek, skip; + const char *infile, *outfile; + } Z; +#define ocount (Z.ocount ) +#define prev_read_size (Z.prev_read_size) +#define count (Z.count ) +#define seek (Z.seek ) +#define skip (Z.skip ) +#define infile (Z.infile ) +#define outfile (Z.outfile) + + memset(&Z, 0, sizeof(Z)); + INIT_G(); + //fflush_all(); - is this needed because of NOEXEC? + + for (i = 1; argv[i]; i++) { + int what; + char *val; + char *arg = argv[i]; + +#if ENABLE_DESKTOP + /* "dd --". NB: coreutils 6.9 will complain if they see + * more than one of them. We wouldn't. */ + if (arg[0] == '-' && arg[1] == '-' && arg[2] == '\0') + continue; +#endif + val = strchr(arg, '='); + if (val == NULL) + bb_show_usage(); + *val = '\0'; + what = index_in_strings(keywords, arg); + if (what < 0) + bb_show_usage(); + /* *val = '='; - to preserve ps listing? */ + val++; +#if ENABLE_FEATURE_DD_IBS_OBS + if (what == OP_ibs) { + /* Must fit into positive ssize_t */ + ibs = xatoul_range_sfx(val, 1, ((size_t)-1L)/2, cwbkMG_suffixes); + /*continue;*/ + } + if (what == OP_obs) { + obs = xatoul_range_sfx(val, 1, ((size_t)-1L)/2, cwbkMG_suffixes); + /*continue;*/ + } + if (what == OP_conv) { + G.flags |= parse_comma_flags(val, conv_words, "conv"); + /*continue;*/ + } + if (what == OP_iflag) { + G.flags |= parse_comma_flags(val, iflag_words, "iflag") << FLAG_IFLAG_SHIFT; + /*continue;*/ + } + if (what == OP_oflag) { + G.flags |= parse_comma_flags(val, oflag_words, "oflag") << FLAG_OFLAG_SHIFT; + /*continue;*/ + } +#endif + if (what == OP_bs) { + ibs = xatoul_range_sfx(val, 1, ((size_t)-1L)/2, cwbkMG_suffixes); + obs = ibs; + /*continue;*/ + } + /* These can be large: */ + if (what == OP_count) { + G.flags |= FLAG_COUNT; + count = XATOU_SFX(val, cwbkMG_suffixes); + /*continue;*/ + } + if (what == OP_seek) { + seek = XATOU_SFX(val, cwbkMG_suffixes); + /*continue;*/ + } + if (what == OP_skip) { + skip = XATOU_SFX(val, cwbkMG_suffixes); + /*continue;*/ + } + if (what == OP_if) { + infile = val; + /*continue;*/ + } + if (what == OP_of) { + outfile = val; + /*continue;*/ + } +#if ENABLE_FEATURE_DD_STATUS + if (what == OP_status) { + int n; + n = index_in_strings(status_words, val); + if (n < 0) + bb_error_msg_and_die(bb_msg_invalid_arg_to, val, "status"); + G.flags |= FLAG_STATUS_NONE << n; + /*continue;*/ + } +#endif + } /* end of "for (argv[i])" */ + + ibuf = alloc_buf(ibs); + obuf = ibuf; +#if ENABLE_FEATURE_DD_IBS_OBS + if (ibs != obs) { + G.flags |= FLAG_TWOBUFS; + obuf = alloc_buf(obs); + } +#endif + +#if ENABLE_FEATURE_DD_SIGNAL_HANDLING + signal_SA_RESTART_empty_mask(SIGUSR1, dd_output_status); +#endif +#if ENABLE_FEATURE_DD_THIRD_STATUS_LINE + G.begin_time_us = monotonic_us(); +#endif + + if (infile) { + int iflag = O_RDONLY; +#if ENABLE_FEATURE_DD_IBS_OBS + if (G.flags & FLAG_IDIRECT) { +# ifdef O_DIRECT + iflag |= O_DIRECT; +# else + bb_error_msg_and_die("O_DIRECT not supported on this platform"); +# endif + } +#endif + xmove_fd(xopen(infile, iflag), ifd); + } else { + infile = bb_msg_standard_input; + } + if (outfile) { + int oflag = O_WRONLY | O_CREAT; + + if (!seek && !(G.flags & FLAG_NOTRUNC)) + oflag |= O_TRUNC; + if (G.flags & FLAG_APPEND) + oflag |= O_APPEND; +#if ENABLE_FEATURE_DD_IBS_OBS + if (G.flags & FLAG_ODIRECT) { +# ifdef O_DIRECT + oflag |= O_DIRECT; +# else + bb_error_msg_and_die("O_DIRECT not supported on this platform"); +# endif + } +#endif + xmove_fd(xopen(outfile, oflag), ofd); + + if (seek && !(G.flags & FLAG_NOTRUNC)) { + size_t blocksz = (G.flags & FLAG_SEEK_BYTES) ? 1 : obs; + if (ftruncate(ofd, seek * blocksz) < 0) { + struct stat st; + + if (fstat(ofd, &st) < 0 + || S_ISREG(st.st_mode) + || S_ISDIR(st.st_mode) + ) { + goto die_outfile; + } + } + } + } else { + outfile = bb_msg_standard_output; + } + if (skip) { + size_t blocksz = (G.flags & FLAG_SKIP_BYTES) ? 1 : ibs; + if (lseek(ifd, skip * blocksz, SEEK_CUR) < 0) { + do { + ssize_t n = dd_read(ibuf, blocksz); + if (n < 0) + goto die_infile; + if (n == 0) + break; + } while (--skip != 0); + } + } + if (seek) { + size_t blocksz = (G.flags & FLAG_SEEK_BYTES) ? 1 : obs; + if (lseek(ofd, seek * blocksz, SEEK_CUR) < 0) + goto die_outfile; + } + + while (1) { + ssize_t n = ibs; + + if (G.flags & FLAG_COUNT) { + if (count == 0) + break; + if ((G.flags & FLAG_COUNT_BYTES) && count < ibs) + n = count; + } + + n = dd_read(ibuf, n); + if (n == 0) + break; + if (n < 0) { + /* "Bad block" */ + if (!(G.flags & FLAG_NOERROR)) + goto die_infile; + bb_simple_perror_msg(infile); + /* GNU dd with conv=noerror skips over bad blocks */ + xlseek(ifd, ibs, SEEK_CUR); + /* conv=noerror,sync writes NULs, + * conv=noerror just ignores input bad blocks */ + n = 0; + } + if (G.flags & FLAG_SWAB) { + uint16_t *p16; + ssize_t n2; + + /* Our code allows only last read to be odd-sized */ + if (prev_read_size & 1) + bb_error_msg_and_die("can't swab %lu byte buffer", + (unsigned long)prev_read_size); + prev_read_size = n; + + /* If n is odd, last byte is not swapped: + * echo -n "qwe" | dd conv=swab + * prints "wqe". + */ + p16 = (void*) ibuf; + n2 = (n >> 1); + while (--n2 >= 0) { + *p16 = bswap_16(*p16); + p16++; + } + } + count -= (G.flags & FLAG_COUNT_BYTES) ? n : 1; + if ((size_t)n == ibs) + G.in_full++; + else { + G.in_part++; + if (G.flags & FLAG_SYNC) { + memset(ibuf + n, 0, ibs - n); + n = ibs; + } + } +#if ENABLE_FEATURE_DD_IBS_OBS + if (G.flags & FLAG_TWOBUFS) { + char *tmp = ibuf; + while (n) { + size_t d = obs - ocount; + if (d > (size_t)n) + d = n; + memcpy(obuf + ocount, tmp, d); + n -= d; + tmp += d; + ocount += d; + if (ocount == obs) { + if (write_and_stats(obuf, obs, obs, outfile)) + goto out_status; + ocount = 0; + } + } + } else +#endif + { + if (write_and_stats(ibuf, n, obs, outfile)) + goto out_status; + } + } + + if (G.flags & FLAG_FSYNC) { + if (fsync(ofd) < 0) + goto die_outfile; + } + +#if ENABLE_FEATURE_DD_IBS_OBS + if (ocount != 0) { + if (write_and_stats(obuf, ocount, obs, outfile)) + goto out_status; + } +#endif + if (close(ifd) < 0) { + die_infile: + bb_simple_perror_msg_and_die(infile); + } + + if (close(ofd) < 0) { + die_outfile: + bb_simple_perror_msg_and_die(outfile); + } + + exitcode = EXIT_SUCCESS; + out_status: + if (!ENABLE_FEATURE_DD_STATUS || !(G.flags & FLAG_STATUS_NONE)) + dd_output_status(0); + +#if 0 /* can't just free(), they can be mmap()ed */ + if (ENABLE_FEATURE_CLEAN_UP) { + free(obuf); + if (G.flags & FLAG_TWOBUFS) + free(ibuf); + } +#endif + + return exitcode; +} diff --git a/busybox-1_37_0/coreutils/df.c b/busybox-1_37_0/coreutils/df.c new file mode 100644 index 000000000..03aa78148 --- /dev/null +++ b/busybox-1_37_0/coreutils/df.c @@ -0,0 +1,351 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini df implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * based on original code by (I think) Bruce Perens . + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Size reduction. Removed floating point dependency. Added error checking + * on output. Output stats on 0-sized filesystems if specifically listed on + * the command line. Properly round *-blocks, Used, and Available quantities. + * + * Aug 28, 2008 Bernhard Reutner-Fischer + * + * Implement -P and -B; better coreutils compat; cleanup + */ +//config:config DF +//config: bool "df (7.1 kb)" +//config: default y +//config: help +//config: df reports the amount of disk space used and available +//config: on filesystems. +//config: +//config:config FEATURE_DF_FANCY +//config: bool "Enable -a, -i, -B" +//config: default y +//config: depends on DF +//config: help +//config: -a Show all filesystems +//config: -i Inodes +//config: -B Blocksize +//config: +//config:config FEATURE_SKIP_ROOTFS +//config: bool "Skip rootfs in mount table" +//config: default y +//config: depends on DF +//config: help +//config: Ignore rootfs entry in mount table. +//config: +//config: In Linux, kernel has a special filesystem, rootfs, which is initially +//config: mounted on /. It contains initramfs data, if kernel is configured +//config: to have one. Usually, another file system is mounted over / early +//config: in boot process, and therefore most tools which manipulate +//config: mount table, such as df, will skip rootfs entry. +//config: +//config: However, some systems do not mount anything on /. +//config: If you need to configure busybox for one of these systems, +//config: you may find it useful to turn this option off to make df show +//config: initramfs statistics. +//config: +//config: Otherwise, choose Y. + +//applet:IF_DF(APPLET_NOEXEC(df, df, BB_DIR_BIN, BB_SUID_DROP, df)) + +//kbuild:lib-$(CONFIG_DF) += df.o + +/* BB_AUDIT SUSv3 _NOT_ compliant -- option -t missing. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/df.html */ + +//usage:#define df_trivial_usage +//usage: "[-Pk" +//usage: IF_FEATURE_HUMAN_READABLE("mh") +//usage: "T" +//usage: IF_FEATURE_DF_FANCY("ai] [-B SIZE") +//usage: "] [-t TYPE] [FILESYSTEM]..." +//usage:#define df_full_usage "\n\n" +//usage: "Print filesystem usage statistics\n" +//usage: "\n -P POSIX output format" +//usage: "\n -k 1024-byte blocks (default)" +//usage: IF_FEATURE_HUMAN_READABLE( +//usage: "\n -m 1M-byte blocks" +//usage: "\n -h Human readable (e.g. 1K 243M 2G)" +//usage: ) +//usage: "\n -T Print filesystem type" +//usage: "\n -t TYPE Print only mounts of this type" +//usage: IF_FEATURE_DF_FANCY( +//usage: "\n -a Show all filesystems" +//usage: "\n -i Inodes" +//usage: "\n -B SIZE Blocksize" +//usage: ) +//usage: +//usage:#define df_example_usage +//usage: "$ df\n" +//usage: "Filesystem 1K-blocks Used Available Use% Mounted on\n" +//usage: "/dev/sda3 8690864 8553540 137324 98% /\n" +//usage: "/dev/sda1 64216 36364 27852 57% /boot\n" +//usage: "$ df /dev/sda3\n" +//usage: "Filesystem 1K-blocks Used Available Use% Mounted on\n" +//usage: "/dev/sda3 8690864 8553540 137324 98% /\n" +//usage: "$ POSIXLY_CORRECT=sure df /dev/sda3\n" +//usage: "Filesystem 512B-blocks Used Available Use% Mounted on\n" +//usage: "/dev/sda3 17381728 17107080 274648 98% /\n" +//usage: "$ POSIXLY_CORRECT=yep df -P /dev/sda3\n" +//usage: "Filesystem 512-blocks Used Available Capacity Mounted on\n" +//usage: "/dev/sda3 17381728 17107080 274648 98% /\n" + +#include +#include +#include "libbb.h" +#include "unicode.h" + +#if !ENABLE_FEATURE_HUMAN_READABLE +static unsigned long kscale(unsigned long b, unsigned long bs) +{ + return (b * (unsigned long long) bs + 1024/2) / 1024; +} +#endif + +int df_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int df_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned long df_disp_hr = 1024; + exitcode_t status = EXIT_SUCCESS; + unsigned opt; + FILE *mount_table; + struct mntent *mount_entry; + struct statvfs s; + enum { + OPT_KILO = (1 << 0), + OPT_POSIX = (1 << 1), + OPT_FSTYPE = (1 << 2), + OPT_t = (1 << 3), + OPT_ALL = (1 << 4) * ENABLE_FEATURE_DF_FANCY, + OPT_INODE = (1 << 5) * ENABLE_FEATURE_DF_FANCY, + OPT_BSIZE = (1 << 6) * ENABLE_FEATURE_DF_FANCY, + OPT_HUMAN = (1 << (4 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE, + OPT_HUMANDEC = (1 << (5 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE, + OPT_MEGA = (1 << (6 + 3*ENABLE_FEATURE_DF_FANCY)) * ENABLE_FEATURE_HUMAN_READABLE, + }; + const char *disp_units_hdr = NULL; + char *chp, *opt_t; + + init_unicode(); + + /* From the manpage of df from coreutils-6.10: + * Disk space is shown in 1K blocks by default, unless the environment + * variable POSIXLY_CORRECT is set, in which case 512-byte blocks are used. + */ + if (getenv("POSIXLY_CORRECT")) /* TODO - a new libbb function? */ + df_disp_hr = 512; + + opt = getopt32(argv, "^" + "kPTt:" + IF_FEATURE_DF_FANCY("aiB:") + IF_FEATURE_HUMAN_READABLE("hHm") + "\0" +#if ENABLE_FEATURE_HUMAN_READABLE && ENABLE_FEATURE_DF_FANCY + "k-mB:m-Bk:B-km" +#elif ENABLE_FEATURE_HUMAN_READABLE + "k-m:m-k" +#endif + , &opt_t + IF_FEATURE_DF_FANCY(, &chp) + ); + if (opt & OPT_MEGA) + df_disp_hr = 1024*1024; + + if (opt & OPT_BSIZE) { + /* GNU coreutils 8.25 accepts "-BMiB" form too */ + int i; + for (i = 0; kmg_i_suffixes[i].suffix[0]; i++) { + if (strcmp(kmg_i_suffixes[i].suffix, chp) == 0) { + df_disp_hr = kmg_i_suffixes[i].mult; + goto got_it; + } + } + /* Range used to disallow 0 */ + df_disp_hr = xatoul_range_sfx(chp, 1, ULONG_MAX, kmg_i_suffixes); + got_it: ; + } + + if (opt & (OPT_HUMAN|OPT_HUMANDEC)) { + df_disp_hr = 0; +//TODO: need to add support in make_human_readable_str() for "decimal human readable" + //if (opt & OPT_HUMANDEC) + // df_disp_hr--; + disp_units_hdr = " Size"; + } + if (opt & OPT_INODE) + disp_units_hdr = " Inodes"; + + if (disp_units_hdr == NULL) { +#if ENABLE_FEATURE_HUMAN_READABLE + disp_units_hdr = xasprintf("%s-blocks", + /* print df_disp_hr, show no fractionals, + * use suffixes if OPT_POSIX is set in opt */ + make_human_readable_str(df_disp_hr, 0, !!(opt & OPT_POSIX)) + ); +#else + disp_units_hdr = xasprintf("%lu-blocks", df_disp_hr); +#endif + } + + printf("Filesystem %s%-15sUsed Available %s Mounted on\n", + (opt & OPT_FSTYPE) ? "Type " : "", + disp_units_hdr, + (opt & OPT_POSIX) ? "Capacity" : "Use%"); + + mount_table = NULL; + argv += optind; + if (!argv[0]) { + mount_table = setmntent(bb_path_mtab_file, "r"); + if (!mount_table) + bb_simple_perror_msg_and_die(bb_path_mtab_file); + } + + while (1) { + const char *device; + const char *mount_point; + const char *fs_type; + + if (mount_table) { + mount_entry = getmntent(mount_table); + if (!mount_entry) { + endmntent(mount_table); + break; + } + } else { + mount_point = *argv++; + if (!mount_point) + break; + mount_entry = find_mount_point(mount_point, 1); + if (!mount_entry) { + bb_error_msg("%s: can't find mount point", mount_point); + set_error: + status = EXIT_FAILURE; + continue; + } + } + + device = mount_entry->mnt_fsname; + + /* GNU coreutils 6.10 skips certain mounts, try to be compatible */ + if (ENABLE_FEATURE_SKIP_ROOTFS && strcmp(device, "rootfs") == 0) + continue; + + mount_point = mount_entry->mnt_dir; + fs_type = mount_entry->mnt_type; + + if (opt & OPT_t) { + if (strcmp(fs_type, opt_t) != 0) + continue; + } + + if (statvfs(mount_point, &s) != 0) { + bb_simple_perror_msg(mount_point); + goto set_error; + } + /* Some uclibc versions were seen to lose f_frsize + * (kernel does return it, but then uclibc does not copy it) + */ + if (s.f_frsize == 0) + s.f_frsize = s.f_bsize; + + if ((s.f_blocks > 0) || !mount_table || (opt & OPT_ALL)) { + unsigned long long blocks_used; + unsigned long long blocks_total; + unsigned blocks_percent_used; + + if (opt & OPT_INODE) { + s.f_blocks = s.f_files; + s.f_bavail = s.f_bfree = s.f_ffree; + s.f_frsize = 1; + if (df_disp_hr) + df_disp_hr = 1; + } + blocks_used = s.f_blocks - s.f_bfree; + blocks_total = blocks_used + s.f_bavail; + blocks_percent_used = blocks_total; /* 0% if blocks_total == 0, else... */ + if (blocks_total != 0) { + /* Downscale sizes for narrower division */ + unsigned u; + while (blocks_total >= INT_MAX / 101) { + blocks_total >>= 1; + blocks_used >>= 1; + } + u = (unsigned)blocks_used * 100u + (unsigned)blocks_total / 2; + blocks_percent_used = u / (unsigned)blocks_total; + } + +#ifdef WHY_WE_DO_IT_FOR_DEV_ROOT_ONLY + if (strcmp(device, "/dev/root") == 0) { + /* Adjusts device to be the real root device, + * or leaves device alone if it can't find it */ + device = find_block_device("/"); + if (!device) { + goto set_error; + } + } +#endif + +#if ENABLE_UNICODE_SUPPORT + { + uni_stat_t uni_stat; + char *uni_dev = unicode_conv_to_printable(&uni_stat, device); + if (uni_stat.unicode_width > 20 && !(opt & OPT_POSIX)) { + printf("%s\n%20s", uni_dev, ""); + } else { + printf("%s%*s", uni_dev, 20 - (int)uni_stat.unicode_width, ""); + } + free(uni_dev); + if (opt & OPT_FSTYPE) { + char *uni_type = unicode_conv_to_printable(&uni_stat, fs_type); + if (uni_stat.unicode_width > 10 && !(opt & OPT_POSIX)) + printf(" %s\n%31s", uni_type, ""); + else + printf(" %s%*s", uni_type, 10 - (int)uni_stat.unicode_width, ""); + free(uni_type); + } + } +#else + if (printf("\n%-20s" + 1, device) > 20 && !(opt & OPT_POSIX)) + printf("\n%-20s", ""); + if (opt & OPT_FSTYPE) { + if (printf(" %-10s", fs_type) > 11 && !(opt & OPT_POSIX)) + printf("\n%-30s", ""); + } +#endif + +#if ENABLE_FEATURE_HUMAN_READABLE + printf(" %9s ", + /* f_blocks x f_frsize / df_disp_hr, show one fractional, + * use suffixes if df_disp_hr == 0 */ + make_human_readable_str(s.f_blocks, s.f_frsize, df_disp_hr)); + + printf(" %9s " + 1, + /* EXPR x f_frsize / df_disp_hr, show one fractional, + * use suffixes if df_disp_hr == 0 */ + make_human_readable_str((s.f_blocks - s.f_bfree), + s.f_frsize, df_disp_hr)); + + printf("%9s %3u%% %s\n", + /* f_bavail x f_frsize / df_disp_hr, show one fractional, + * use suffixes if df_disp_hr == 0 */ + make_human_readable_str(s.f_bavail, s.f_frsize, df_disp_hr), + blocks_percent_used, mount_point); +#else + printf(" %9lu %9lu %9lu %3u%% %s\n", + kscale(s.f_blocks, s.f_frsize), + kscale(s.f_blocks - s.f_bfree, s.f_frsize), + kscale(s.f_bavail, s.f_frsize), + blocks_percent_used, mount_point); +#endif + } + } + + return status; +} diff --git a/busybox-1_37_0/coreutils/dirname.c b/busybox-1_37_0/coreutils/dirname.c new file mode 100644 index 000000000..71e1e2b7b --- /dev/null +++ b/busybox-1_37_0/coreutils/dirname.c @@ -0,0 +1,43 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini dirname implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config DIRNAME +//config: bool "dirname (611 bytes)" +//config: default y +//config: help +//config: dirname is used to strip a non-directory suffix from +//config: a file name. + +//applet:IF_DIRNAME(APPLET_NOFORK(dirname, dirname, BB_DIR_USR_BIN, BB_SUID_DROP, dirname)) + +//kbuild:lib-$(CONFIG_DIRNAME) += dirname.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/dirname.html */ + +//usage:#define dirname_trivial_usage +//usage: "FILENAME" +//usage:#define dirname_full_usage "\n\n" +//usage: "Strip non-directory suffix from FILENAME" +//usage: +//usage:#define dirname_example_usage +//usage: "$ dirname /tmp/foo\n" +//usage: "/tmp\n" +//usage: "$ dirname /tmp/foo/\n" +//usage: "/tmp\n" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int dirname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int dirname_main(int argc UNUSED_PARAM, char **argv) +{ + puts(dirname(single_argv(argv))); + return fflush_all(); +} diff --git a/busybox-1_37_0/coreutils/dos2unix.c b/busybox-1_37_0/coreutils/dos2unix.c new file mode 100644 index 000000000..c227cd50c --- /dev/null +++ b/busybox-1_37_0/coreutils/dos2unix.c @@ -0,0 +1,137 @@ +/* vi: set sw=4 ts=4: */ +/* + * dos2unix for BusyBox + * + * dos2unix '\n' converter 0.5.0 + * based on Unix2Dos 0.9.0 by Peter Hanecak (made 19.2.1997) + * Copyright 1997,.. by Peter Hanecak . + * All rights reserved. + * + * dos2unix filters reading input from stdin and writing output to stdout. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config DOS2UNIX +//config: bool "dos2unix (5.5 kb)" +//config: default y +//config: help +//config: dos2unix is used to convert a text file from DOS format to +//config: UNIX format, and vice versa. +//config: +//config:config UNIX2DOS +//config: bool "unix2dos (5.5 kb)" +//config: default y +//config: help +//config: unix2dos is used to convert a text file from UNIX format to +//config: DOS format, and vice versa. + +//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 + +//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" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + +enum { + CT_UNIX2DOS = 1, + CT_DOS2UNIX +}; + +/* if fn is NULL then input is stdin and output is stdout */ +static void convert(char *fn, int conv_type) +{ + FILE *in, *out; + int ch; + char *temp_fn = temp_fn; /* for compiler */ + char *resolved_fn = resolved_fn; + + in = stdin; + out = stdout; + if (fn != NULL) { + struct stat st; + int fd; + + resolved_fn = xmalloc_follow_symlinks(fn); + if (resolved_fn == NULL) + bb_simple_perror_msg_and_die(fn); + in = xfopen_for_read(resolved_fn); + xfstat(fileno(in), &st, resolved_fn); + + temp_fn = xasprintf("%sXXXXXX", resolved_fn); + fd = xmkstemp(temp_fn); + if (fchmod(fd, st.st_mode) == -1) + bb_simple_perror_msg_and_die(temp_fn); + fchown(fd, st.st_uid, st.st_gid); + + out = xfdopen_for_write(fd); + } + + while ((ch = fgetc(in)) != EOF) { + if (ch == '\r') + continue; + if (ch == '\n') + if (conv_type == CT_UNIX2DOS) + fputc('\r', out); + fputc(ch, out); + } + + if (fn != NULL) { + if (fclose(in) < 0 || fclose(out) < 0) { + unlink(temp_fn); + bb_perror_nomsg_and_die(); + } + xrename(temp_fn, resolved_fn); + free(temp_fn); + free(resolved_fn); + } +} + +int dos2unix_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int dos2unix_main(int argc UNUSED_PARAM, char **argv) +{ + int o, conv_type; + + /* See if we are supposed to be doing dos2unix or unix2dos */ + if (ENABLE_DOS2UNIX + && (!ENABLE_UNIX2DOS || applet_name[0] == 'd') + ) { + conv_type = CT_DOS2UNIX; + } else { + conv_type = CT_UNIX2DOS; + } + + /* -u convert to unix, -d convert to dos */ + o = getopt32(argv, "^" "du" "\0" "u--d:d--u"); /* mutually exclusive */ + + /* Do the conversion requested by an argument else do the default + * conversion depending on our name. */ + if (o) + conv_type = o; + + argv += optind; + do { + /* might be convert(NULL) if there is no filename given */ + convert(*argv, conv_type); + } while (*argv && *++argv); + + return 0; +} diff --git a/busybox-1_37_0/coreutils/du.c b/busybox-1_37_0/coreutils/du.c new file mode 100644 index 000000000..4652b6300 --- /dev/null +++ b/busybox-1_37_0/coreutils/du.c @@ -0,0 +1,311 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini du implementation for busybox + * + * Copyright (C) 1999,2000,2001 by Lineo, inc. and John Beppu + * Copyright (C) 1999,2000,2001 by John Beppu + * Copyright (C) 2002 Edward Betts + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Mostly rewritten for SUSv3 compliance and to fix bugs/defects. + * 1) Added support for SUSv3 -a, -H, -L, gnu -c, and (busybox) -d options. + * The -d option allows setting of max depth (similar to gnu --max-depth). + * 2) Fixed incorrect size calculations for links and directories, especially + * when errors occurred. Calculates sizes should now match gnu du output. + * 3) Added error checking of output. + * 4) Fixed busybox bug #1284 involving long overflow with human_readable. + */ +//config:config DU +//config: bool "du (6.5 kb)" +//config: default y +//config: help +//config: du is used to report the amount of disk space used +//config: for specified files. +//config: +//config:config FEATURE_DU_DEFAULT_BLOCKSIZE_1K +//config: bool "Use default blocksize of 1024 bytes (else it's 512 bytes)" +//config: default y +//config: depends on DU + +//applet:IF_DU(APPLET(du, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_DU) += du.o + +/* BB_AUDIT SUSv3 compliant (unless default blocksize set to 1k) */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/du.html */ + +//usage:#define du_trivial_usage +//usage: "[-aHLdclsx" IF_FEATURE_HUMAN_READABLE("hm") "k] [FILE]..." +//usage:#define du_full_usage "\n\n" +//usage: "Summarize disk space used for FILEs (or directories)\n" +//usage: "\n -a Show file sizes too" +//usage: "\n -b Apparent size (including holes)" +//usage: "\n -L Follow all symlinks" +//usage: "\n -H Follow symlinks on command line" +//usage: "\n -d N Limit output to directories (and files with -a) of depth < N" +//usage: "\n -c Show grand total" +//usage: "\n -l Count sizes many times if hard linked" +//usage: "\n -s Display only a total for each argument" +//usage: "\n -x Skip directories on different filesystems" +//usage: IF_FEATURE_HUMAN_READABLE( +//usage: "\n -h Sizes in human readable format (e.g., 1K 243M 2G)" +//usage: "\n -m Sizes in megabytes" +//usage: ) +//usage: "\n -k Sizes in kilobytes" IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(" (default)") +//usage: IF_NOT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K( +//usage: "\n Default unit is 512 bytes" +//usage: ) +//usage: +//usage:#define du_example_usage +//usage: "$ du\n" +//usage: "16 ./CVS\n" +//usage: "12 ./kernel-patches/CVS\n" +//usage: "80 ./kernel-patches\n" +//usage: "12 ./tests/CVS\n" +//usage: "36 ./tests\n" +//usage: "12 ./scripts/CVS\n" +//usage: "16 ./scripts\n" +//usage: "12 ./docs/CVS\n" +//usage: "104 ./docs\n" +//usage: "2417 .\n" + +#include "libbb.h" +#include "common_bufsiz.h" + +enum { + OPT_a_files_too = (1 << 0), + OPT_H_follow_links = (1 << 1), + OPT_k_kbytes = (1 << 2), + OPT_L_follow_links = (1 << 3), + OPT_s_total_norecurse = (1 << 4), + OPT_x_one_FS = (1 << 5), + OPT_d_maxdepth = (1 << 6), + OPT_l_hardlinks = (1 << 7), + OPT_c_total = (1 << 8), + OPT_b = (1 << 9), + OPT_h_for_humans = (1 << 10), + OPT_m_mbytes = (1 << 11), +}; + +struct globals { +#if ENABLE_FEATURE_HUMAN_READABLE + unsigned long disp_unit; +#else + unsigned disp_k; +#endif + int max_print_depth; + bool status; + int slink_depth; + int du_depth; + dev_t dir_dev; +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { setup_common_bufsiz(); } while (0) + + +static void print(unsigned long long size, const char *filename) +{ + /* TODO - May not want to defer error checking here. */ +#if ENABLE_FEATURE_HUMAN_READABLE +# if ENABLE_DESKTOP + /* ~30 bytes of code for extra compat: + * coreutils' du rounds sizes up: + * for example, 1025k file is shown as "2" by du -m. + * We round to nearest if human-readable [too hard to fix], + * else (fixed scale such as -m), we round up. To that end, + * add yet another half of the unit before displaying: + */ + if (G.disp_unit) + size += (G.disp_unit-1) / (unsigned)(512 * 2); +# endif + printf("%s\t%s\n", + /* size x 512 / G.disp_unit. + * If G.disp_unit == 0, show one fractional + * and use suffixes + */ + make_human_readable_str(size, (option_mask32 & OPT_b) ? 1 : 512, G.disp_unit), + filename); +#else + if (G.disp_k) { + if (!(option_mask32 & OPT_b)) { + size++; + size >>= 1; + } else { + size >>= 10; + } + } + printf("%llu\t%s\n", size, filename); +#endif +} + +/* tiny recursive du */ +static unsigned long long du(const char *filename) +{ + struct stat statbuf; + unsigned long long sum; + + if (lstat(filename, &statbuf) != 0) { + bb_simple_perror_msg(filename); + G.status = EXIT_FAILURE; + return 0; + } + + if (option_mask32 & OPT_x_one_FS) { + if (G.du_depth == 0) { + G.dir_dev = statbuf.st_dev; + } else if (G.dir_dev != statbuf.st_dev) { + return 0; + } + } + + sum = ((option_mask32 & OPT_b) ? statbuf.st_size : statbuf.st_blocks); + + if (S_ISLNK(statbuf.st_mode)) { + if (G.slink_depth > G.du_depth) { /* -H or -L */ + if (stat(filename, &statbuf) != 0) { + bb_simple_perror_msg(filename); + G.status = EXIT_FAILURE; + return 0; + } + sum = ((option_mask32 & OPT_b) ? statbuf.st_size : statbuf.st_blocks); + if (G.slink_depth == 1) { + /* Convert -H to -L */ + G.slink_depth = INT_MAX; + } + } + } + + if (!(option_mask32 & OPT_l_hardlinks) + && statbuf.st_nlink > 1 + ) { + /* Add files/directories with links only once */ + if (is_in_ino_dev_hashtable(&statbuf)) { + return 0; + } + add_to_ino_dev_hashtable(&statbuf, NULL); + } + + if (S_ISDIR(statbuf.st_mode)) { + DIR *dir; + struct dirent *entry; + char *newfile; + + dir = warn_opendir(filename); + if (!dir) { + G.status = EXIT_FAILURE; + return sum; + } + + while ((entry = readdir(dir))) { + newfile = concat_subpath_file(filename, entry->d_name); + if (newfile == NULL) + continue; + ++G.du_depth; + sum += du(newfile); + --G.du_depth; + free(newfile); + } + closedir(dir); + } else { + if (!(option_mask32 & OPT_a_files_too) && G.du_depth != 0) + return sum; + } + if (G.du_depth <= G.max_print_depth) { + print(sum, filename); + } + return sum; +} + +int du_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int du_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned long long total; + int slink_depth_save; + unsigned opt; + + INIT_G(); + +#if ENABLE_FEATURE_HUMAN_READABLE + IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_unit = 1024;) + IF_NOT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_unit = 512;) + if (getenv("POSIXLY_CORRECT")) /* TODO - a new libbb function? */ + G.disp_unit = 512; +#else + IF_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_k = 1;) + /* IF_NOT_FEATURE_DU_DEFAULT_BLOCKSIZE_1K(G.disp_k = 0;) - G is pre-zeroed */ +#endif + G.max_print_depth = INT_MAX; + + /* Note: SUSv3 specifies that -a and -s options cannot be used together + * in strictly conforming applications. However, it also says that some + * du implementations may produce output when -a and -s are used together. + * gnu du exits with an error code in this case. We choose to simply + * ignore -a. This is consistent with -s being equivalent to -d 0. + */ +#if ENABLE_FEATURE_HUMAN_READABLE + opt = getopt32(argv, "^" + "aHkLsxd:+lcbhm" + "\0" "h-km:k-hm:m-hk:H-L:L-H:s-d:d-s", + &G.max_print_depth + ); + argv += optind; + if (opt & OPT_b) { + G.disp_unit = 1; + } + if (opt & OPT_h_for_humans) { + G.disp_unit = 0; + } + if (opt & OPT_m_mbytes) { + G.disp_unit = 1024*1024; + } + if (opt & OPT_k_kbytes) { + G.disp_unit = 1024; + } +#else + opt = getopt32(argv, "^" + "aHkLsxd:+lcb" + "\0" "H-L:L-H:s-d:d-s", + &G.max_print_depth + ); + argv += optind; +# if !ENABLE_FEATURE_DU_DEFAULT_BLOCKSIZE_1K + if (opt & OPT_k_kbytes) { + G.disp_k = 1; + } +# endif +#endif + if (opt & OPT_H_follow_links) { + G.slink_depth = 1; + } + if (opt & OPT_L_follow_links) { + G.slink_depth = INT_MAX; + } + if (opt & OPT_s_total_norecurse) { + G.max_print_depth = 0; + } + + /* go through remaining args (if any) */ + if (!*argv) { + *--argv = (char*)"."; + if (G.slink_depth == 1) { + G.slink_depth = 0; + } + } + + slink_depth_save = G.slink_depth; + total = 0; + do { + total += du(*argv); + G.slink_depth = slink_depth_save; + } while (*++argv); + + if (ENABLE_FEATURE_CLEAN_UP) + reset_ino_dev_hashtable(); + if (opt & OPT_c_total) + print(total, "total"); + + fflush_stdout_and_exit(G.status); +} diff --git a/busybox-1_37_0/coreutils/echo.c b/busybox-1_37_0/coreutils/echo.c new file mode 100644 index 000000000..2a48d4a90 --- /dev/null +++ b/busybox-1_37_0/coreutils/echo.c @@ -0,0 +1,351 @@ +/* vi: set sw=4 ts=4: */ +/* + * echo implementation for busybox + * + * Copyright (c) 1991, 1993 + * The Regents of the University of California. All rights reserved. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * Original copyright notice is retained at the end of this file. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Because of behavioral differences, implemented configurable SUSv3 + * or 'fancy' gnu-ish behaviors. Also, reduced size and fixed bugs. + * 1) In handling '\c' escape, the previous version only suppressed the + * trailing newline. SUSv3 specifies _no_ output after '\c'. + * 2) SUSv3 specifies that octal escapes are of the form \0{#{#{#}}}. + * The previous version did not allow 4-digit octals. + */ +//config:config ECHO +//config: bool "echo (2 kb)" +//config: default y +//config: help +//config: echo prints a specified string to stdout. +//config: +//config:# this entry also appears in shell/Config.in, next to the echo builtin +//config:config FEATURE_FANCY_ECHO +//config: bool "Enable -n and -e options" +//config: default y +//config: depends on ECHO || ASH_ECHO || HUSH_ECHO + +//applet:IF_ECHO(APPLET_NOFORK(echo, echo, BB_DIR_BIN, BB_SUID_DROP, echo)) + +//kbuild:lib-$(CONFIG_ECHO) += echo.o + +//kbuild:lib-$(CONFIG_ASH_ECHO) += echo.o +//kbuild:lib-$(CONFIG_HUSH_ECHO) += echo.o + +/* BB_AUDIT SUSv3 compliant -- unless configured as fancy echo. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/echo.html */ + +//usage:#define echo_trivial_usage +//usage: IF_FEATURE_FANCY_ECHO("[-neE] ") "[ARG]..." +//usage:#define echo_full_usage "\n\n" +//usage: "Print ARGs to stdout" +//usage: IF_FEATURE_FANCY_ECHO( "\n" +//usage: "\n -n No trailing newline" +//usage: "\n -e Interpret backslash escapes (\\t=tab etc)" +//usage: "\n -E Don't interpret backslash escapes (default)" +//usage: ) +//usage: +//usage:#define echo_example_usage +//usage: "$ echo \"Erik is cool\"\n" +//usage: "Erik is cool\n" +//usage: IF_FEATURE_FANCY_ECHO("$ echo -e \"Erik\\nis\\ncool\"\n" +//usage: "Erik\n" +//usage: "is\n" +//usage: "cool\n" +//usage: "$ echo \"Erik\\nis\\ncool\"\n" +//usage: "Erik\\nis\\ncool\n") + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +/* NB: can be used by shell even if not enabled as applet */ + +/* + * NB2: we don't use stdio, we need better error handing. + * Examples include writing into non-opened stdout and error on write. + * + * With stdio, output gets shoveled into stdout buffer, and even + * fflush cannot clear it out. It seems that even if libc receives + * EBADF on write attempts, it feels determined to output data no matter what. + * If echo is called by shell, it will try writing again later, and possibly + * will clobber future output. Not good. + * + * Solaris has fpurge which discards buffered input. glibc has __fpurge. + * But this function is not standard. + */ + +int echo_main(int argc UNUSED_PARAM, char **argv) +{ + char **pp; + const char *arg; + char *out; + char *buffer; + unsigned buflen; + int err; +#if !ENABLE_FEATURE_FANCY_ECHO + enum { + eflag = 0, /* 0 -- disable escape sequences */ + nflag = 1, /* 1 -- print '\n' */ + }; + + argv++; +#else + char nflag = 1; + char eflag = 0; + + while ((arg = *++argv) != NULL) { + char n, e; + + if (arg[0] != '-') + break; /* not an option arg, echo it */ + + /* If it appears that we are handling options, then make sure + * that all of the options specified are actually valid. + * Otherwise, the string should just be echoed. + */ + arg++; + n = nflag; + e = eflag; + do { + if (*arg == 'n') + n = 0; + else if (*arg == 'e') + e = '\\'; + else if (*arg != 'E') { + /* "-ccc" arg with one of c's invalid, echo it */ + /* arg consisting from just "-" also handled here */ + goto just_echo; + } + } while (*++arg); + nflag = n; + eflag = e; + } + just_echo: +#endif + + buflen = 0; + pp = argv; + while ((arg = *pp) != NULL) { + buflen += strlen(arg) + 1; + pp++; + } + out = buffer = xmalloc(buflen + 1); /* +1 is needed for "no args" case */ + + while ((arg = *argv) != NULL) { + int c; + + if (!eflag) { + /* optimization for very common case */ + out = stpcpy(out, arg); + } else + while ((c = *arg++) != '\0') { + if (c == eflag) { + /* This is an "\x" sequence */ + + if (*arg == 'c') { + /* "\c" means cancel newline and + * ignore all subsequent chars. */ + goto do_write; + } + /* Since SUSv3 mandates a first digit of 0, 4-digit octals + * of the form \0### are accepted. */ + if (*arg == '0') { + if ((unsigned char)(arg[1] - '0') < 8) { + /* 2nd char is 0..7: skip leading '0' */ + arg++; + } + } + /* bb_process_escape_sequence handles NUL correctly + * ("...\" case). */ + { + /* optimization: don't force arg to be on-stack, + * use another variable for that. ~30 bytes win */ + const char *z = arg; + c = bb_process_escape_sequence(&z); + arg = z; + } + } + *out++ = c; + } + + if (!*++argv) + break; + *out++ = ' '; + } + + if (nflag) { + *out++ = '\n'; + } + + do_write: + /* Careful to error out on partial writes too (think ENOSPC!) */ + errno = 0; + err = full_write(STDOUT_FILENO, buffer, out - buffer) != out - buffer; + if (err) { + bb_simple_perror_msg(bb_msg_write_error); + } + free(buffer); + return err; +} + +/* + * Copyright (c) 1991, 1993 + * The Regents of the University of California. All rights reserved. + * + * This code is derived from software contributed to Berkeley by + * Kenneth Almquist. + * + * 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. + * + * 3. + * + * California, Berkeley and its contributors. + * 4. Neither the name of the University nor the names of its contributors + * 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. + * + * @(#)echo.c 8.1 (Berkeley) 5/31/93 + */ + +#ifdef VERSION_WITH_WRITEV +/* We can't use stdio. + * The reason for this is highly non-obvious. + * echo_main is used from shell. Shell must correctly handle "echo foo" + * if stdout is closed. With stdio, output gets shoveled into + * stdout buffer, and even fflush cannot clear it out. It seems that + * even if libc receives EBADF on write attempts, it feels determined + * to output data no matter what. So it will try later, + * and possibly will clobber future output. Not good. + * + * Using writev instead, with 'direct' conversion of argv vector. + */ + +int echo_main(int argc, char **argv) +{ + struct iovec io[argc]; + struct iovec *cur_io = io; + char *arg; + char *p; +#if !ENABLE_FEATURE_FANCY_ECHO + enum { + eflag = '\\', + nflag = 1, /* 1 -- print '\n' */ + }; + arg = *++argv; + if (!arg) + goto newline_ret; +#else + char nflag = 1; + char eflag = 0; + + while (1) { + arg = *++argv; + if (!arg) + goto newline_ret; + if (*arg != '-') + break; + + /* If it appears that we are handling options, then make sure + * that all of the options specified are actually valid. + * Otherwise, the string should just be echoed. + */ + p = arg + 1; + if (!*p) /* A single '-', so echo it. */ + goto just_echo; + + do { + if (!strchr("neE", *p)) + goto just_echo; + } while (*++p); + + /* All of the options in this arg are valid, so handle them. */ + p = arg + 1; + do { + if (*p == 'n') + nflag = 0; + if (*p == 'e') + eflag = '\\'; + } while (*++p); + } + just_echo: +#endif + + while (1) { + /* arg is already == *argv and isn't NULL */ + int c; + + cur_io->iov_base = p = arg; + + if (!eflag) { + /* optimization for very common case */ + p += strlen(arg); + } else while ((c = *arg++)) { + if (c == eflag) { + /* This is an "\x" sequence */ + + if (*arg == 'c') { + /* "\c" means cancel newline and + * ignore all subsequent chars. */ + cur_io->iov_len = p - (char*)cur_io->iov_base; + cur_io++; + goto ret; + } + /* Since SUSv3 mandates a first digit of 0, 4-digit octals + * of the form \0### are accepted. */ + if (*arg == '0' && (unsigned char)(arg[1] - '0') < 8) { + arg++; + } +//FIXME? we also accept non-0 starting sequences (see echo-prints-slash_41 test) +// echo -ne '-\41-' prints "-!-". bash 5.0.17 does not (prints "-\41-"). + /* bb_process_escape_sequence can handle nul correctly */ + c = bb_process_escape_sequence( (void*) &arg); + } + *p++ = c; + } + + arg = *++argv; + if (arg) + *p++ = ' '; + cur_io->iov_len = p - (char*)cur_io->iov_base; + cur_io++; + if (!arg) + break; + } + + newline_ret: + if (nflag) { + cur_io->iov_base = (char*)"\n"; + cur_io->iov_len = 1; + cur_io++; + } + ret: + /* TODO: implement and use full_writev? */ + return writev(1, io, (cur_io - io)) >= 0; +} +#endif diff --git a/busybox-1_37_0/coreutils/env.c b/busybox-1_37_0/coreutils/env.c new file mode 100644 index 000000000..e9d3e883e --- /dev/null +++ b/busybox-1_37_0/coreutils/env.c @@ -0,0 +1,137 @@ +/* vi: set sw=4 ts=4: */ +/* + * env implementation for busybox + * + * Copyright (c) 1988, 1993, 1994 + * The Regents of the University of California. All rights reserved. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * Original copyright notice is retained at the end of this file. + * + * Modified for BusyBox by Erik Andersen + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Fixed bug involving exit return codes if execvp fails. Also added + * output error checking. + */ +/* + * Modified by Vladimir Oleynik (C) 2003 + * - correct "-" option usage + * - multiple "-u unsetenv" support + * - GNU long option support + * - use xfunc_error_retval + */ +//config:config ENV +//config: bool "env (4.3 kb)" +//config: default y +//config: help +//config: env is used to set an environment variable and run +//config: a command; without options it displays the current +//config: environment. + +//applet:IF_ENV(APPLET_NOEXEC(env, env, BB_DIR_USR_BIN, BB_SUID_DROP, env)) + +//kbuild:lib-$(CONFIG_ENV) += env.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/env.html */ + +//usage:#define env_trivial_usage +//usage: "[-i0] [-u NAME]... [-] [NAME=VALUE]... [PROG ARGS]" +// The "-" can occur only once (unlike, say, -i): it terminates option processing, +// so if it is followed by another "-" arg (or any option-looking arg), +// that arg will be taken as PROG (or even as NAME=VALUE, example: "-z=QWE"). +//usage:#define env_full_usage "\n\n" +//usage: "Print current environment or run PROG after setting up environment\n" +//usage: "\n -, -i Start with empty environment" +//usage: "\n -0 NUL terminated output" +//usage: "\n -u NAME Remove variable from environment" + +#include "libbb.h" + +int env_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int env_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned opts; + llist_t *unset_env = NULL; + + opts = getopt32long(argv, "+i0u:*", + "ignore-environment\0" No_argument "i" + "null\0" No_argument "0" + "unset\0" Required_argument "u" + , &unset_env + ); + argv += optind; + if (argv[0] && LONE_DASH(argv[0])) { + opts |= 1; + ++argv; + } + if (opts & 1) { + clearenv(); + } + while (unset_env) { + char *var = llist_pop(&unset_env); + /* This does not handle -uVAR=VAL + * (coreutils _sets_ the variable in that case): */ + /*unsetenv(var);*/ + /* This does, but uses somewhan undocumented feature that + * putenv("name_without_equal_sign") unsets the variable: */ + putenv(var); + } + + while (*argv && (strchr(*argv, '=') != NULL)) { + if (putenv(*argv) < 0) { + bb_simple_perror_msg_and_die("putenv"); + } + ++argv; + } + + if (argv[0]) { + BB_EXECVP_or_die(argv); + } + + if (environ) { /* clearenv() may set environ == NULL! */ + char **ep; + opts = (opts & 2) ? 0 : '\n'; + for (ep = environ; *ep; ep++) { + printf("%s%c", *ep, opts); + } + } + + fflush_stdout_and_exit_SUCCESS(); +} + +/* + * Copyright (c) 1988, 1993, 1994 + * The Regents of the University of California. All rights reserved. + * + * 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. + * + * 3. BSD Advertising Clause omitted per the July 22, 1999 licensing change + * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change + * + * 4. Neither the name of the University nor the names of its contributors + * 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. + */ diff --git a/busybox-1_37_0/coreutils/expand.c b/busybox-1_37_0/coreutils/expand.c new file mode 100644 index 000000000..c4db26055 --- /dev/null +++ b/busybox-1_37_0/coreutils/expand.c @@ -0,0 +1,253 @@ +/* expand - convert tabs to spaces + * unexpand - convert spaces to tabs + * + * Copyright (C) 89, 91, 1995-2006 Free Software Foundation, Inc. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * David MacKenzie + * + * Options for expand: + * -t num --tabs NUM Convert tabs to num spaces (default 8 spaces). + * -i --initial Only convert initial tabs on each line to spaces. + * + * Options for unexpand: + * -a --all Convert all blanks, instead of just initial blanks. + * -f --first-only Convert only leading sequences of blanks (default). + * -t num --tabs NUM Have tabs num characters apart instead of 8. + * + * Busybox version (C) 2007 by Tito Ragusa + * + * Caveat: this versions of expand and unexpand don't accept tab lists. + */ +//config:config EXPAND +//config: bool "expand (5.3 kb)" +//config: default y +//config: help +//config: By default, convert all tabs to spaces. +//config: +//config:config UNEXPAND +//config: bool "unexpand (5.5 kb)" +//config: default y +//config: help +//config: By default, convert only leading sequences of blanks to tabs. + +//applet:IF_EXPAND(APPLET(expand, BB_DIR_USR_BIN, BB_SUID_DROP)) +// APPLET_ODDNAME:name main location suid_type help +//applet:IF_UNEXPAND(APPLET_ODDNAME(unexpand, expand, BB_DIR_USR_BIN, BB_SUID_DROP, unexpand)) + +//kbuild:lib-$(CONFIG_EXPAND) += expand.o +//kbuild:lib-$(CONFIG_UNEXPAND) += expand.o + +//usage:#define expand_trivial_usage +//usage: "[-i] [-t N] [FILE]..." +//usage:#define expand_full_usage "\n\n" +//usage: "Convert tabs to spaces, writing to stdout\n" +//usage: "\n -i Don't convert tabs after non blanks" +//usage: "\n -t Tabstops every N chars" + +//usage:#define unexpand_trivial_usage +//usage: "[-fa][-t N] [FILE]..." +//usage:#define unexpand_full_usage "\n\n" +//usage: "Convert spaces to tabs, writing to stdout\n" +//usage: "\n -a Convert all blanks" +//usage: "\n -f Convert only leading blanks" +//usage: "\n -t N Tabstops every N chars" + +#include "libbb.h" +#include "unicode.h" + +enum { + OPT_INITIAL = 1 << 0, + OPT_TABS = 1 << 1, + OPT_ALL = 1 << 2, +}; + +//FIXME: does not work properly with input containing NULs +//coreutils 8.30 preserves NULs but treats them as chars of width zero: +//ABC will expand to 6 spaces, not 5. + +#if ENABLE_EXPAND +static void expand(FILE *file, unsigned tab_size, unsigned opt) +{ + + for (;;) { + char *line; + char *ptr; + char *ptr_strbeg; +//commented-out code handles NULs, +90 bytes of code, not tested much +// size_t linelen; +// unsigned len = 0; + +// linelen = 1024 * 1024; +// line = xmalloc_fgets_str_len(file, "\n", &linelen); + line = xmalloc_fgets(file); // + if (!line) + break; + ptr = ptr_strbeg = line; + for (;;) { + unsigned char c = *ptr; + if (c == '\0') { +// size_t rem = line + linelen - ptr; +// if (rem > 0) { +//# if ENABLE_UNICODE_SUPPORT +// len += unicode_strwidth(ptr_strbeg); +//# else +// len += ptr - ptr_strbeg; +//# endif +// printf("%s%c", ptr_strbeg, '\0'); +// memmove(ptr, ptr + 1, rem + 1); +// ptr_strbeg = ptr; +// linelen--; +// continue; +// } + break; + } + if ((opt & OPT_INITIAL) && !isblank(c)) { + /* not space or tab */ + break; + } + if (c == '\t') { + unsigned len = 0; // + *ptr = '\0'; +# if ENABLE_UNICODE_SUPPORT + len += unicode_strwidth(ptr_strbeg); +# else + len += ptr - ptr_strbeg; +# endif + len = tab_size - (len % tab_size); + /*while (ptr[1] == '\t') { ptr++; len += tab_size; } - can handle many tabs at once */ + printf("%s%*s", ptr_strbeg, len, ""); +// len = 0; + ptr_strbeg = ptr + 1; + } + ptr++; + } + fputs_stdout(ptr_strbeg); + free(line); + } +} +#endif + +#if ENABLE_UNEXPAND +static void unexpand(FILE *file, unsigned tab_size, unsigned opt) +{ + char *line; + + while ((line = xmalloc_fgets(file)) != NULL) { + char *ptr = line; + unsigned column = 0; + + while (*ptr) { + unsigned n; + unsigned len = 0; + + while (*ptr == ' ') { + ptr++; + len++; + } + column += len; + if (*ptr == '\t') { + column += tab_size - (column % tab_size); + ptr++; + continue; + } + + n = column / tab_size; + if (n) { + len = column = column % tab_size; + while (n--) + putchar('\t'); + } + + if (!(opt & OPT_ALL) && ptr != line) { + printf("%*s%s", len, "", ptr); + break; + } + n = strcspn(ptr, "\t "); + printf("%*s%.*s", len, "", n, ptr); +# if ENABLE_UNICODE_SUPPORT + { + char c = ptr[n]; + ptr[n] = '\0'; + len = unicode_strwidth(ptr); + ptr[n] = c; + } +# else + len = n; +# endif + ptr += n; + column = (column + len) % tab_size; + } + free(line); + } +} +#endif + +int expand_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int expand_main(int argc UNUSED_PARAM, char **argv) +{ + /* Default 8 spaces for 1 tab */ + const char *opt_t = "8"; + FILE *file; + unsigned tab_size; + unsigned opt; + exitcode_t exit_status = EXIT_SUCCESS; + + init_unicode(); + + if (ENABLE_EXPAND && (!ENABLE_UNEXPAND || applet_name[0] == 'e')) { + opt = getopt32long(argv, "it:", + "initial\0" No_argument "i" + "tabs\0" Required_argument "t" + , &opt_t + ); + } else { + opt = getopt32long(argv, "^" + "ft:a" + "\0" + "ta" /* -t NUM sets -a */, + "first-only\0" No_argument "f" + "tabs\0" Required_argument "t" + "all\0" No_argument "a" + , &opt_t + ); + /* -t implies -a, but an explicit -f overrides */ + if (opt & OPT_INITIAL) opt &= ~OPT_ALL; + } + tab_size = xatou_range(opt_t, 1, UINT_MAX); + + argv += optind; + + if (!*argv) { + *--argv = (char*)bb_msg_standard_input; + } + do { + file = fopen_or_warn_stdin(*argv); + if (!file) { + exit_status = EXIT_FAILURE; + continue; + } + + if (ENABLE_EXPAND && (!ENABLE_UNEXPAND || applet_name[0] == 'e')) + IF_EXPAND(expand(file, tab_size, opt)); + else + IF_UNEXPAND(unexpand(file, tab_size, opt)); + + /* Check and close the file */ + if (fclose_if_not_stdin(file)) { + bb_simple_perror_msg(*argv); + exit_status = EXIT_FAILURE; + } + /* If stdin also clear EOF */ + if (file == stdin) + clearerr(file); + } while (*++argv); + + /* Now close stdin also */ + /* (if we didn't read from it, it's a no-op) */ + if (fclose(stdin)) + bb_simple_perror_msg_and_die(bb_msg_standard_input); + + fflush_stdout_and_exit(exit_status); +} diff --git a/busybox-1_37_0/coreutils/expr.c b/busybox-1_37_0/coreutils/expr.c new file mode 100644 index 000000000..47ebe2fca --- /dev/null +++ b/busybox-1_37_0/coreutils/expr.c @@ -0,0 +1,559 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini expr implementation for busybox + * + * based on GNU expr Mike Parker. + * Copyright (C) 86, 1991-1997, 1999 Free Software Foundation, Inc. + * + * Busybox modifications + * Copyright (c) 2000 Edward Betts . + * Copyright (C) 2003-2005 Vladimir Oleynik + * - reduced 464 bytes. + * - 64 math support + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* This program evaluates expressions. Each token (operator, operand, + * parenthesis) of the expression must be a separate argument. The + * parser used is a reasonably general one, though any incarnation of + * it is language-specific. It is especially nice for expressions. + * + * No parse tree is needed; a new node is evaluated immediately. + * One function can handle multiple operators all of equal precedence, + * provided they all associate ((x op x) op x). + */ +//config:config EXPR +//config: bool "expr (6.8 kb)" +//config: default y +//config: help +//config: expr is used to calculate numbers and print the result +//config: to standard output. +//config: +//config:config EXPR_MATH_SUPPORT_64 +//config: bool "Extend Posix numbers support to 64 bit" +//config: default y +//config: depends on EXPR +//config: help +//config: Enable 64-bit math support in the expr applet. This will make +//config: the applet slightly larger, but will allow computation with very +//config: large numbers. + +//applet:IF_EXPR(APPLET_NOEXEC(expr, expr, BB_DIR_USR_BIN, BB_SUID_DROP, expr)) + +//kbuild:lib-$(CONFIG_EXPR) += expr.o + +//usage:#define expr_trivial_usage +//usage: "EXPRESSION" +//usage:#define expr_full_usage "\n\n" +//usage: "Print the value of EXPRESSION\n" +//usage: "\n" +//usage: "EXPRESSION may be:\n" +//usage: " ARG1 | ARG2 ARG1 if it is neither null nor 0, otherwise ARG2\n" +//usage: " ARG1 & ARG2 ARG1 if neither argument is null or 0, otherwise 0\n" +//usage: " ARG1 < ARG2 1 if ARG1 is less than ARG2, else 0. Similarly:\n" +//usage: " ARG1 <= ARG2\n" +//usage: " ARG1 = ARG2\n" +//usage: " ARG1 != ARG2\n" +//usage: " ARG1 >= ARG2\n" +//usage: " ARG1 > ARG2\n" +//usage: " ARG1 + ARG2 Sum of ARG1 and ARG2. Similarly:\n" +//usage: " ARG1 - ARG2\n" +//usage: " ARG1 * ARG2\n" +//usage: " ARG1 / ARG2\n" +//usage: " ARG1 % ARG2\n" +//usage: " STRING : REGEXP Anchored pattern match of REGEXP in STRING\n" +//usage: " match STRING REGEXP Same as STRING : REGEXP\n" +//usage: " substr STRING POS LEN Substring of STRING, POS counts from 1\n" +//usage: " index STRING CHARS Index in STRING where any CHARS is found, or 0\n" +//usage: " length STRING Length of STRING\n" +//usage: " quote TOKEN Interpret TOKEN as a string, even if\n" +//usage: " it is a keyword like 'match' or an\n" +//usage: " operator like '/'\n" +//usage: " (EXPRESSION) Value of EXPRESSION\n" +//usage: "\n" +//usage: "Beware that many operators need to be escaped or quoted for shells.\n" +//usage: "Comparisons are arithmetic if both ARGs are numbers, else\n" +//usage: "lexicographical. Pattern matches return the string matched between\n" +//usage: "\\( and \\) or null; if \\( and \\) are not used, they return the number\n" +//usage: "of characters matched or 0." + +#include "libbb.h" +#include "common_bufsiz.h" +#include "xregex.h" + +#if ENABLE_EXPR_MATH_SUPPORT_64 +typedef int64_t arith_t; + +#define PF_REZ "ll" +#define PF_REZ_TYPE (long long) +#define STRTOL(s, e, b) strtoll(s, e, b) +#else +typedef long arith_t; + +#define PF_REZ "l" +#define PF_REZ_TYPE (long) +#define STRTOL(s, e, b) strtol(s, e, b) +#endif + +/* TODO: use bb_strtol[l]? It's easier to check for errors... */ + +/* The kinds of value we can have. */ +enum { + INTEGER, + STRING +}; + +/* A value is.... */ +struct valinfo { + smallint type; /* Which kind. */ + union { /* The value itself. */ + arith_t i; + char *s; + } u; +}; +typedef struct valinfo VALUE; + +/* The arguments given to the program, minus the program name. */ +struct globals { + char **args; +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { \ + setup_common_bufsiz(); \ + /* NB: noexec applet - globals not zeroed */ \ +} while (0) + +/* forward declarations */ +static VALUE *eval(void); + + +/* Return a VALUE for I. */ + +static VALUE *int_value(arith_t i) +{ + VALUE *v; + + v = xzalloc(sizeof(VALUE)); + if (INTEGER) /* otherwise xzalloc did it already */ + v->type = INTEGER; + v->u.i = i; + return v; +} + +/* Return a VALUE for S. */ + +static VALUE *str_value(const char *s) +{ + VALUE *v; + + v = xzalloc(sizeof(VALUE)); + if (STRING) /* otherwise xzalloc did it already */ + v->type = STRING; + v->u.s = xstrdup(s); + return v; +} + +/* Free VALUE V, including structure components. */ + +static void freev(VALUE *v) +{ + if (v->type == STRING) + free(v->u.s); + free(v); +} + +/* Return nonzero if V is a null-string or zero-number. */ + +static int null(VALUE *v) +{ + if (v->type == INTEGER) + return v->u.i == 0; + /* STRING: */ + return v->u.s[0] == '\0' || LONE_CHAR(v->u.s, '0'); +} + +/* Coerce V to a STRING value (can't fail). */ + +static void tostring(VALUE *v) +{ + if (v->type == INTEGER) { + v->u.s = xasprintf("%" PF_REZ "d", PF_REZ_TYPE v->u.i); + v->type = STRING; + } +} + +/* Coerce V to an INTEGER value. Return 1 on success, 0 on failure. */ + +static bool toarith(VALUE *v) +{ + if (v->type == STRING) { + arith_t i; + char *e; + + /* Don't interpret the empty string as an integer. */ + /* Currently does not worry about overflow or int/long differences. */ + i = STRTOL(v->u.s, &e, 10); + if ((v->u.s == e) || *e) + return 0; + free(v->u.s); + v->u.i = i; + v->type = INTEGER; + } + return 1; +} + +/* Return str[0]+str[1] if the next token matches STR exactly. + STR must not be NULL. */ + +static int nextarg(const char *str) +{ + if (*G.args == NULL || strcmp(*G.args, str) != 0) + return 0; + return (unsigned char)str[0] + (unsigned char)str[1]; +} + +/* The comparison operator handling functions. */ + +static int cmp_common(VALUE *l, VALUE *r, int op) +{ + arith_t ll, rr; + + ll = l->u.i; + rr = r->u.i; + if (l->type == STRING || r->type == STRING) { + tostring(l); + tostring(r); + ll = strcmp(l->u.s, r->u.s); + rr = 0; + } + /* calculating ll - rr and checking the result is prone to overflows. + * We'll do it differently: */ + if (op == '<') + return ll < rr; + if (op == ('<' + '=')) + return ll <= rr; + if (op == '=' || (op == '=' + '=')) + return ll == rr; + if (op == '!' + '=') + return ll != rr; + if (op == '>') + return ll > rr; + /* >= */ + return ll >= rr; +} + +/* The arithmetic operator handling functions. */ + +static arith_t arithmetic_common(VALUE *l, VALUE *r, int op) +{ + arith_t li, ri; + + if (!toarith(l) || !toarith(r)) + bb_simple_error_msg_and_die("non-numeric argument"); + li = l->u.i; + ri = r->u.i; + if (op == '+') + return li + ri; + if (op == '-') + return li - ri; + if (op == '*') + return li * ri; + if (ri == 0) + bb_simple_error_msg_and_die("division by zero"); + if (op == '/') + return li / ri; + return li % ri; +} + +/* Do the : operator. + SV is the VALUE for the lhs (the string), + PV is the VALUE for the rhs (the pattern). */ + +static VALUE *docolon(VALUE *sv, VALUE *pv) +{ + enum { NMATCH = 2 }; + VALUE *v; + regex_t re_buffer; + regmatch_t re_regs[NMATCH]; + + tostring(sv); + tostring(pv); + + if (pv->u.s[0] == '^') { + bb_error_msg( +"warning: '%s': using '^' as the first character\n" +"of a basic regular expression is not portable; it is ignored", pv->u.s); + } + + memset(&re_buffer, 0, sizeof(re_buffer)); + memset(re_regs, 0, sizeof(re_regs)); + xregcomp(&re_buffer, pv->u.s, 0); + + /* expr uses an anchored pattern match, so check that there was a + * match and that the match starts at offset 0. */ + if (regexec(&re_buffer, sv->u.s, NMATCH, re_regs, 0) != REG_NOMATCH + && re_regs[0].rm_so == 0 + ) { + /* Were \(...\) used? */ + if (re_buffer.re_nsub > 0 && re_regs[1].rm_so >= 0) { + sv->u.s[re_regs[1].rm_eo] = '\0'; + v = str_value(sv->u.s + re_regs[1].rm_so); + } else { + v = int_value(re_regs[0].rm_eo); + } + } else { + /* Match failed -- return the right kind of null. */ + if (re_buffer.re_nsub > 0) + v = str_value(""); + else + v = int_value(0); + } + regfree(&re_buffer); + return v; +} + +/* Handle bare operands and ( expr ) syntax. */ + +static VALUE *eval7(void) +{ + VALUE *v; + + if (!*G.args) + bb_simple_error_msg_and_die("syntax error"); + + if (nextarg("(")) { + G.args++; + v = eval(); + if (!nextarg(")")) + bb_simple_error_msg_and_die("syntax error"); + G.args++; + return v; + } + + if (nextarg(")")) + bb_simple_error_msg_and_die("syntax error"); + + return str_value(*G.args++); +} + +/* Handle match, substr, index, length, and quote keywords. */ + +static VALUE *eval6(void) +{ + static const char keywords[] ALIGN1 = + "quote\0""length\0""match\0""index\0""substr\0"; + + VALUE *r, *i1, *i2; + VALUE *l = l; /* silence gcc */ + VALUE *v = v; /* silence gcc */ + int key = *G.args ? index_in_strings(keywords, *G.args) + 1 : 0; + + if (key == 0) /* not a keyword */ + return eval7(); + G.args++; /* We have a valid token, so get the next argument. */ + if (key == 1) { /* quote */ + if (!*G.args) + bb_simple_error_msg_and_die("syntax error"); + return str_value(*G.args++); + } + if (key == 2) { /* length */ + r = eval6(); + tostring(r); + v = int_value(strlen(r->u.s)); + freev(r); + } else + l = eval6(); + + if (key == 3) { /* match */ + r = eval6(); + v = docolon(l, r); + freev(l); + freev(r); + } + if (key == 4) { /* index */ + r = eval6(); + tostring(l); + tostring(r); + v = int_value(strcspn(l->u.s, r->u.s) + 1); + if (v->u.i == (arith_t) strlen(l->u.s) + 1) + v->u.i = 0; + freev(l); + freev(r); + } + if (key == 5) { /* substr */ + i1 = eval6(); + i2 = eval6(); + tostring(l); + if (!toarith(i1) || !toarith(i2) + || i1->u.i > (arith_t) strlen(l->u.s) + || i1->u.i <= 0 || i2->u.i <= 0) + v = str_value(""); + else { + v = xmalloc(sizeof(VALUE)); + v->type = STRING; + v->u.s = xstrndup(l->u.s + i1->u.i - 1, i2->u.i); + } + freev(l); + freev(i1); + freev(i2); + } + return v; +} + +/* Handle : operator (pattern matching). + Calls docolon to do the real work. */ + +static VALUE *eval5(void) +{ + VALUE *l, *r, *v; + + l = eval6(); + while (nextarg(":")) { + G.args++; + r = eval6(); + v = docolon(l, r); + freev(l); + freev(r); + l = v; + } + return l; +} + +/* Handle *, /, % operators. */ + +static VALUE *eval4(void) +{ + VALUE *l, *r; + int op; + arith_t val; + + l = eval5(); + while (1) { + op = nextarg("*"); + if (!op) { op = nextarg("/"); + if (!op) { op = nextarg("%"); + if (!op) return l; + }} + G.args++; + r = eval5(); + val = arithmetic_common(l, r, op); + freev(l); + freev(r); + l = int_value(val); + } +} + +/* Handle +, - operators. */ + +static VALUE *eval3(void) +{ + VALUE *l, *r; + int op; + arith_t val; + + l = eval4(); + while (1) { + op = nextarg("+"); + if (!op) { + op = nextarg("-"); + if (!op) return l; + } + G.args++; + r = eval4(); + val = arithmetic_common(l, r, op); + freev(l); + freev(r); + l = int_value(val); + } +} + +/* Handle comparisons. */ + +static VALUE *eval2(void) +{ + VALUE *l, *r; + int op; + arith_t val; + + l = eval3(); + while (1) { + op = nextarg("<"); + if (!op) { op = nextarg("<="); + if (!op) { op = nextarg("="); + if (!op) { op = nextarg("=="); + if (!op) { op = nextarg("!="); + if (!op) { op = nextarg(">="); + if (!op) { op = nextarg(">"); + if (!op) return l; + }}}}}} + G.args++; + r = eval3(); + toarith(l); + toarith(r); + val = cmp_common(l, r, op); + freev(l); + freev(r); + l = int_value(val); + } +} + +/* Handle &. */ + +static VALUE *eval1(void) +{ + VALUE *l, *r; + + l = eval2(); + while (nextarg("&")) { + G.args++; + r = eval2(); + if (null(l) || null(r)) { + freev(l); + freev(r); + l = int_value(0); + } else + freev(r); + } + return l; +} + +/* Handle |. */ + +static VALUE *eval(void) +{ + VALUE *l, *r; + + l = eval1(); + while (nextarg("|")) { + G.args++; + r = eval1(); + if (null(l)) { + freev(l); + l = r; + } else + freev(r); + } + return l; +} + +int expr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int expr_main(int argc UNUSED_PARAM, char **argv) +{ + VALUE *v; + + INIT_G(); + + xfunc_error_retval = 2; /* coreutils compat */ + G.args = argv + 1; + if (*G.args == NULL) { + bb_simple_error_msg_and_die("too few arguments"); + } + v = eval(); + if (*G.args) + bb_simple_error_msg_and_die("syntax error"); + if (v->type == INTEGER) + printf("%" PF_REZ "d\n", PF_REZ_TYPE v->u.i); + else + puts(v->u.s); + fflush_stdout_and_exit(null(v)); +} diff --git a/busybox-1_37_0/coreutils/factor.c b/busybox-1_37_0/coreutils/factor.c new file mode 100644 index 000000000..90e9ed761 --- /dev/null +++ b/busybox-1_37_0/coreutils/factor.c @@ -0,0 +1,273 @@ +/* + * Copyright (C) 2017 Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//config:config FACTOR +//config: bool "factor (3.2 kb)" +//config: default y +//config: help +//config: factor factorizes integers + +//applet:IF_FACTOR(APPLET(factor, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_FACTOR) += factor.o + +//usage:#define factor_trivial_usage +//usage: "[NUMBER]..." +//usage:#define factor_full_usage "\n\n" +//usage: "Print prime factors" + +#include "libbb.h" +#include "common_bufsiz.h" + +#if 0 +# define dbg(...) bb_error_msg(__VA_ARGS__) +#else +# define dbg(...) ((void)0) +#endif + +typedef unsigned long long wide_t; + +#if ULLONG_MAX == (UINT_MAX * UINT_MAX + 2 * UINT_MAX) +/* "unsigned" is half as wide as ullong */ +typedef unsigned half_t; +#define HALF_MAX UINT_MAX +#define HALF_FMT "" +#elif ULLONG_MAX == (ULONG_MAX * ULONG_MAX + 2 * ULONG_MAX) +/* long is half as wide as ullong */ +typedef unsigned long half_t; +#define HALF_MAX ULONG_MAX +#define HALF_FMT "l" +#else +#error Cant find an integer type which is half as wide as ullong +#endif + +/* The trial divisor increment wheel. Use it to skip over divisors that + * are composites of 2, 3, 5, 7, or 11. + * Larger wheels improve sieving only slightly, but quickly grow in size + * (adding just one prime, 13, results in 5766 element sieve). + */ +#define R(a,b,c,d,e,f,g,h,i,j,A,B,C,D,E,F,G,H,I,J,x) \ + (((uint64_t)(a<<0) | (b<<3) | (c<<6) | (d<<9) | (e<<12) | (f<<15) | (g<<18) | (h<<21) | (i<<24) | (j<<27)) << 1) | \ + (((uint64_t)(A<<0) | (B<<3) | (C<<6) | (D<<9) | (E<<12) | (F<<15) | (G<<18) | (H<<21) | (I<<24) | (J<<27)) << 31) | \ + ((uint64_t)x << 61) +#define P(a,b,c,d,e,f,g,h,i,j,A,B,C,D,E,F,G,H,I,J,x) \ + R( (a/2),(b/2),(c/2),(d/2),(e/2),(f/2),(g/2),(h/2),(i/2),(j/2), \ + (A/2),(B/2),(C/2),(D/2),(E/2),(F/2),(G/2),(H/2),(I/2),(J/2), \ + (x/2) \ + ) +static const uint64_t packed_wheel[] = { + /* 1, 2, */ + P( 2, 4, 2, 4, 2, 4, 6, 2, 6, 4, 2, 4, 6, 6, 2, 6, 4, 2, 6, 4, 6), + P( 8, 4, 2, 4, 2, 4,14, 4, 6, 2,10, 2, 6, 6, 4, 2, 4, 6, 2,10, 2), + P( 4, 2,12,10, 2, 4, 2, 4, 6, 2, 6, 4, 6, 6, 6, 2, 6, 4, 2, 6, 4), + P( 6, 8, 4, 2, 4, 6, 8, 6,10, 2, 4, 6, 2, 6, 6, 4, 2, 4, 6, 2, 6), + P( 4, 2, 6,10, 2,10, 2, 4, 2, 4, 6, 8, 4, 2, 4,12, 2, 6, 4, 2, 6), + P( 4, 6,12, 2, 4, 2, 4, 8, 6, 4, 6, 2, 4, 6, 2, 6,10, 2, 4, 6, 2), + P( 6, 4, 2, 4, 2,10, 2,10, 2, 4, 6, 6, 2, 6, 6, 4, 6, 6, 2, 6, 4), + P( 2, 6, 4, 6, 8, 4, 2, 6, 4, 8, 6, 4, 6, 2, 4, 6, 8, 6, 4, 2,10), + P( 2, 6, 4, 2, 4, 2,10, 2,10, 2, 4, 2, 4, 8, 6, 4, 2, 4, 6, 6, 2), + P( 6, 4, 8, 4, 6, 8, 4, 2, 4, 2, 4, 8, 6, 4, 6, 6, 6, 2, 6, 6, 4), + P( 2, 4, 6, 2, 6, 4, 2, 4, 2,10, 2,10, 2, 6, 4, 6, 2, 6, 4, 2, 4), + P( 6, 6, 8, 4, 2, 6,10, 8, 4, 2, 4, 2, 4, 8,10, 6, 2, 4, 8, 6, 6), + P( 4, 2, 4, 6, 2, 6, 4, 6, 2,10, 2,10, 2, 4, 2, 4, 6, 2, 6, 4, 2), + P( 4, 6, 6, 2, 6, 6, 6, 4, 6, 8, 4, 2, 4, 2, 4, 8, 6, 4, 8, 4, 6), + P( 2, 6, 6, 4, 2, 4, 6, 8, 4, 2, 4, 2,10, 2,10, 2, 4, 2, 4, 6, 2), + P(10, 2, 4, 6, 8, 6, 4, 2, 6, 4, 6, 8, 4, 6, 2, 4, 8, 6, 4, 6, 2), + P( 4, 6, 2, 6, 6, 4, 6, 6, 2, 6, 6, 4, 2,10, 2,10, 2, 4, 2, 4, 6), + P( 2, 6, 4, 2,10, 6, 2, 6, 4, 2, 6, 4, 6, 8, 4, 2, 4, 2,12, 6, 4), + P( 6, 2, 4, 6, 2,12, 4, 2, 4, 8, 6, 4, 2, 4, 2,10, 2,10, 6, 2, 4), + P( 6, 2, 6, 4, 2, 4, 6, 6, 2, 6, 4, 2,10, 6, 8, 6, 4, 2, 4, 8, 6), + P( 4, 6, 2, 4, 6, 2, 6, 6, 6, 4, 6, 2, 6, 4, 2, 4, 2,10,12, 2, 4), + P( 2,10, 2, 6, 4, 2, 4, 6, 6, 2,10, 2, 6, 4,14, 4, 2, 4, 2, 4, 8), + P( 6, 4, 6, 2, 4, 6, 2, 6, 6, 4, 2, 4, 6, 2, 6, 4, 2, 4,12, 2,12), +}; +#undef P +#undef R +#define WHEEL_START 5 +#define WHEEL_SIZE (5 + 24 * 20) +#define square_count (((uint8_t*)&bb_common_bufsiz1)[0]) +#define wheel_tab (((uint8_t*)&bb_common_bufsiz1) + 1) +/* + * Why, you ask? + * plain byte array: + * function old new delta + * wheel_tab - 485 +485 + * 3-bit-packed insanity: + * packed_wheel - 184 +184 + * factor_main 108 163 +55 + */ +static void unpack_wheel(void) +{ + int i; + uint8_t *p; + + setup_common_bufsiz(); + wheel_tab[0] = 1; + wheel_tab[1] = 2; + p = &wheel_tab[2]; + for (i = 0; i < ARRAY_SIZE(packed_wheel); i++) { + uint64_t v = packed_wheel[i]; + while ((v & 0xe) != 0) { + *p = v & 0xe; + //printf("%2u,", *p); + p++; + v >>= 3; + } + //printf("\n"); + } +} + +/* Prevent inlining, factorize() needs all help it can get with reducing register pressure */ +static NOINLINE void print_w(wide_t n) +{ + unsigned rep = square_count; + do + printf(" %llu", n); + while (--rep != 0); +} +static NOINLINE void print_h(half_t n) +{ + print_w(n); +} + +static void factorize(wide_t N); + +static half_t isqrt_odd(wide_t N) +{ + half_t s = isqrt(N); + /* s^2 is <= N, (s+1)^2 > N */ + + /* If s^2 in fact is EQUAL to N, it's very lucky. + * Examples: + * factor 18446743988964486098 = 2 * 3037000493 * 3037000493 + * factor 18446743902517389507 = 3 * 2479700513 * 2479700513 + */ + if ((wide_t)s * s == N) { + /* factorize sqrt(N), printing each factor twice */ + square_count *= 2; + factorize(s); + /* Let caller know we recursed */ + return 0; + } + + /* Subtract 1 from even s, odd s won't change: */ + /* (doesnt work for zero, but we know that s != 0 here) */ + s = (s - 1) | 1; + return s; +} + +static NOINLINE void factorize(wide_t N) +{ + unsigned w; + half_t factor; + half_t max_factor; + + if (N < 4) + goto end; + + /* The code needs to be optimized for the case where + * there are large prime factors. For example, + * this is not hard: + * 8262075252869367027 = 3 7 17 23 47 101 113 127 131 137 823 + * (the largest divisor to test for largest factor 823 + * is only ~sqrt(823) = 28, the entire factorization needs + * only ~33 trial divisions) + * but this is: + * 18446744073709551601 = 53 348051774975651917 + * the last factor requires testing up to + * 589959129 - about 100 million iterations. + * The slowest case (largest prime) for N < 2^64 is + * factor 18446744073709551557 (0xffffffffffffffc5). + */ + max_factor = isqrt_odd(N); + if (!max_factor) + return; /* square was detected and recursively factored */ + factor = 2; + w = 0; + for (;;) { + half_t fw; + + /* The division is the most costly part of the loop. + * On 64bit CPUs, takes at best 12 cycles, often ~20. + */ + while ((N % factor) == 0) { /* not likely */ + N = N / factor; + print_h(factor); + max_factor = isqrt_odd(N); + if (!max_factor) + return; /* square was detected */ + } + if (factor >= max_factor) + break; + fw = factor + wheel_tab[w]; + if (fw < factor) + break; /* overflow */ + factor = fw; + w++; + if (w < WHEEL_SIZE) + continue; + w = WHEEL_START; + } + end: + if (N > 1) + print_w(N); + bb_putchar('\n'); +} + +static void factorize_numstr(const char *numstr) +{ + wide_t N; + + /* Leading + is ok (coreutils compat) */ + if (*numstr == '+') + numstr++; + N = bb_strtoull(numstr, NULL, 10); + if (errno) + bb_show_usage(); + printf("%llu:", N); + square_count = 1; + factorize(N); +} + +int factor_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int factor_main(int argc UNUSED_PARAM, char **argv) +{ + unpack_wheel(); + + //// coreutils has undocumented option ---debug (three dashes) + //getopt32(argv, ""); + //argv += optind; + argv++; + + if (!*argv) { + /* Read from stdin, several numbers per line are accepted */ + for (;;) { + char *numstr, *line; + line = xmalloc_fgetline(stdin); + if (!line) + return EXIT_SUCCESS; + numstr = line; + for (;;) { + char *end; + numstr = skip_whitespace(numstr); + if (!numstr[0]) + break; + end = skip_non_whitespace(numstr); + if (*end != '\0') + *end++ = '\0'; + factorize_numstr(numstr); + numstr = end; + } + free(line); + } + } + + do { + /* Leading spaces are ok (coreutils compat) */ + factorize_numstr(skip_whitespace(*argv)); + } while (*++argv); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/false.c b/busybox-1_37_0/coreutils/false.c new file mode 100644 index 000000000..ee175a9a2 --- /dev/null +++ b/busybox-1_37_0/coreutils/false.c @@ -0,0 +1,38 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini false implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config FALSE +//config: bool "false (314 bytes)" +//config: default y +//config: help +//config: false returns an exit code of FALSE (1). + +//applet:IF_FALSE(APPLET_NOFORK(false, false, BB_DIR_BIN, BB_SUID_DROP, false)) + +//kbuild:lib-$(CONFIG_FALSE) += false.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/000095399/utilities/false.html */ + +/* "false --help" is special-cased to ignore --help */ +//usage:#define false_trivial_usage NOUSAGE_STR +//usage:#define false_full_usage "" +//usage:#define false_example_usage +//usage: "$ false\n" +//usage: "$ echo $?\n" +//usage: "1\n" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int false_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int false_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + return EXIT_FAILURE; +} diff --git a/busybox-1_37_0/coreutils/fold.c b/busybox-1_37_0/coreutils/fold.c new file mode 100644 index 000000000..8112fe911 --- /dev/null +++ b/busybox-1_37_0/coreutils/fold.c @@ -0,0 +1,186 @@ +/* vi: set sw=4 ts=4: */ +/* + * fold -- wrap each input line to fit in specified width. + * + * Written by David MacKenzie, djm@gnu.ai.mit.edu. + * Copyright (C) 91, 1995-2002 Free Software Foundation, Inc. + * + * Modified for busybox based on coreutils v 5.0 + * Copyright (C) 2003 Glenn McGrath + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config FOLD +//config: bool "fold (4.8 kb)" +//config: default y +//config: help +//config: Wrap text to fit a specific width. + +//applet:IF_FOLD(APPLET_NOEXEC(fold, fold, BB_DIR_USR_BIN, BB_SUID_DROP, fold)) + +//kbuild:lib-$(CONFIG_FOLD) += fold.o + +//usage:#define fold_trivial_usage +//usage: "[-bs] [-w WIDTH] [FILE]..." +//usage:#define fold_full_usage "\n\n" +//usage: "Wrap input lines in FILEs (or stdin), writing to stdout\n" +//usage: "\n -b Count bytes rather than columns" +//usage: "\n -s Break at spaces" +//usage: "\n -w Use WIDTH columns instead of 80" + +#include "libbb.h" +#include "unicode.h" + +/* This is a NOEXEC applet. Be very careful! */ + +/* Must match getopt32 call */ +#define FLAG_COUNT_BYTES 1 +#define FLAG_BREAK_SPACES 2 +#define FLAG_WIDTH 4 + +/* Assuming the current column is COLUMN, return the column that + printing C will move the cursor to. + The first column is 0. */ +static int adjust_column(unsigned column, char c) +{ + if (option_mask32 & FLAG_COUNT_BYTES) + return ++column; + + if (c == '\t') + return column + 8 - column % 8; + + if (c == '\b') { + if ((int)--column < 0) + column = 0; + } + else if (c == '\r') + column = 0; + else { /* just a printable char */ + if (unicode_status != UNICODE_ON /* every byte is a new char */ + || (c & 0xc0) != 0x80 /* it isn't a 2nd+ byte of a Unicode char */ + ) { + column++; + } + } + return column; +} + +/* Note that this function can write NULs, unlike fputs etc. */ +static void write2stdout(const void *buf, unsigned size) +{ + fwrite(buf, 1, size, stdout); +} + +int fold_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int fold_main(int argc UNUSED_PARAM, char **argv) +{ + char *line_out = NULL; + const char *w_opt = "80"; + unsigned width; + exitcode_t exitcode = EXIT_SUCCESS; + + init_unicode(); + + if (ENABLE_INCLUDE_SUSv2) { + /* Turn any numeric options into -w options. */ + int i; + for (i = 1; argv[i]; i++) { + const char *a = argv[i]; + if (*a == '-') { + a++; + if (*a == '-' && !a[1]) /* "--" */ + break; + if (isdigit(*a)) + argv[i] = xasprintf("-w%s", a); + } + } + } + + getopt32(argv, "bsw:", &w_opt); + width = xatou_range(w_opt, 1, 10000); + + argv += optind; + if (!*argv) + *--argv = (char*)"-"; + + do { + FILE *istream = fopen_or_warn_stdin(*argv); + int c; + unsigned column = 0; /* Screen column where next char will go */ + unsigned offset_out = 0; /* Index in 'line_out' for next char */ + + if (istream == NULL) { + exitcode = EXIT_FAILURE; + continue; + } + + while ((c = getc(istream)) != EOF) { + /* We grow line_out in chunks of 0x1000 bytes */ + if ((offset_out & 0xfff) == 0) { + line_out = xrealloc(line_out, offset_out + 0x1000); + } + rescan: + line_out[offset_out] = c; + if (c == '\n') { + write2stdout(line_out, offset_out + 1); + column = offset_out = 0; + continue; + } + column = adjust_column(column, c); + if (column <= width || offset_out == 0) { + /* offset_out == 0 case happens + * with small width (say, 1) and tabs. + * The very first tab already goes to column 8, + * but we must not wrap it */ + offset_out++; + continue; + } + + /* This character would make the line too long. + * Print the line plus a newline, and make this character + * start the next line */ + if (option_mask32 & FLAG_BREAK_SPACES) { + unsigned i; + unsigned logical_end; + + /* Look for the last blank. */ + for (logical_end = offset_out - 1; (int)logical_end >= 0; logical_end--) { + if (!isblank(line_out[logical_end])) + continue; + + /* Found a space or tab. + * Output up to and including it, and start a new line */ + logical_end++; + /*line_out[logical_end] = '\n'; - NO! this nukes one buffered character */ + write2stdout(line_out, logical_end); + putchar('\n'); + /* Move the remainder to the beginning of the next line. + * The areas being copied here might overlap. */ + memmove(line_out, line_out + logical_end, offset_out - logical_end); + offset_out -= logical_end; + for (column = i = 0; i < offset_out; i++) { + column = adjust_column(column, line_out[i]); + } + goto rescan; + } + /* No blank found, wrap will split the overlong word */ + } + /* Output what we accumulated up to now, and start a new line */ + line_out[offset_out] = '\n'; + write2stdout(line_out, offset_out + 1); + column = offset_out = 0; + goto rescan; + } /* while (not EOF) */ + + if (offset_out) { + write2stdout(line_out, offset_out); + } + + if (fclose_if_not_stdin(istream)) { + bb_simple_perror_msg(*argv); + exitcode = EXIT_FAILURE; + } + } while (*++argv); + + fflush_stdout_and_exit(exitcode); +} diff --git a/busybox-1_37_0/coreutils/head.c b/busybox-1_37_0/coreutils/head.c new file mode 100644 index 000000000..ec83a284a --- /dev/null +++ b/busybox-1_37_0/coreutils/head.c @@ -0,0 +1,272 @@ +/* vi: set sw=4 ts=4: */ +/* + * head implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config HEAD +//config: bool "head (4 kb)" +//config: default y +//config: help +//config: head is used to print the first specified number of lines +//config: from files. +//config: +//config:config FEATURE_FANCY_HEAD +//config: bool "Enable -c, -q, and -v" +//config: default y +//config: depends on HEAD + +//applet:IF_HEAD(APPLET_NOEXEC(head, head, BB_DIR_USR_BIN, BB_SUID_DROP, head)) + +//kbuild:lib-$(CONFIG_HEAD) += head.o + +/* BB_AUDIT SUSv3 compliant */ +/* BB_AUDIT GNU compatible -c, -q, and -v options in 'fancy' configuration. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/head.html */ + +//usage:#define head_trivial_usage +//usage: "[OPTIONS] [FILE]..." +//usage:#define head_full_usage "\n\n" +//usage: "Print first 10 lines of FILEs (or stdin).\n" +//usage: "With more than one FILE, precede each with a filename header.\n" +//usage: "\n -n N[bkm] Print first N lines" +//usage: IF_FEATURE_FANCY_HEAD( +//usage: "\n -n -N[bkm] Print all except N last lines" +//usage: "\n -c [-]N[bkm] Print first N bytes" +//usage: ) +//usage: "\n (b:*512 k:*1024 m:*1024^2)" +//usage: IF_FEATURE_FANCY_HEAD( +//usage: "\n -q Never print headers" +//usage: "\n -v Always print headers" +//usage: ) +//usage: +//usage:#define head_example_usage +//usage: "$ head -n 2 /etc/passwd\n" +//usage: "root:x:0:0:root:/root:/bin/bash\n" +//usage: "daemon:x:1:1:daemon:/usr/sbin:/bin/sh\n" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + +#if !ENABLE_FEATURE_FANCY_HEAD +# define print_first_N(fp,count,bytes) print_first_N(fp,count) +#endif +static void +print_first_N(FILE *fp, unsigned long count, bool count_bytes) +{ +#if !ENABLE_FEATURE_FANCY_HEAD + const int count_bytes = 0; +#endif + while (count) { + int c = getc(fp); + if (c == EOF) + break; + if (count_bytes || (c == '\n')) + --count; + putchar(c); + } +} + +#if ENABLE_FEATURE_FANCY_HEAD +static void +print_except_N_last_bytes(FILE *fp, unsigned count) +{ + unsigned char *circle = xmalloc(++count); + unsigned head = 0; + for (;;) { + int c; + c = getc(fp); + if (c == EOF) + goto ret; + circle[head++] = c; + if (head == count) + break; + } + for (;;) { + int c; + if (head == count) + head = 0; + putchar(circle[head]); + c = getc(fp); + if (c == EOF) + goto ret; + circle[head] = c; + head++; + } + ret: + free(circle); +} + +static void +print_except_N_last_lines(FILE *fp, unsigned count) +{ + char **circle = xzalloc((++count) * sizeof(circle[0])); + unsigned head = 0; + for (;;) { + char *c; + c = xmalloc_fgets(fp); + if (!c) + goto ret; + circle[head++] = c; + if (head == count) + break; + } + for (;;) { + char *c; + if (head == count) + head = 0; + fputs_stdout(circle[head]); + c = xmalloc_fgets(fp); + if (!c) + goto ret; + free(circle[head]); + circle[head++] = c; + } + ret: + head = 0; + for (;;) { + free(circle[head++]); + if (head == count) + break; + } + free(circle); +} +#else +/* Must never be called */ +void print_except_N_last_bytes(FILE *fp, unsigned count); +void print_except_N_last_lines(FILE *fp, unsigned count); +#endif + +#if !ENABLE_FEATURE_FANCY_HEAD +# define eat_num(negative_N,p) eat_num(p) +#endif +static unsigned long +eat_num(bool *negative_N, const char *p) +{ +#if ENABLE_FEATURE_FANCY_HEAD + if (*p == '-') { + *negative_N = 1; + p++; + } +#endif + return xatoul_sfx(p, bkm_suffixes); +} + +static const char head_opts[] ALIGN1 = + "n:" +#if ENABLE_FEATURE_FANCY_HEAD + "c:qv" +#endif + ; + +#define header_fmt_str "\n==> %s <==\n" + +int head_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int head_main(int argc, char **argv) +{ + unsigned long count = 10; +#if ENABLE_FEATURE_FANCY_HEAD + int header_threshhold = 1; + bool count_bytes = 0; + bool negative_N = 0; +#else +# define header_threshhold 1 +# define count_bytes 0 +# define negative_N 0 +#endif + FILE *fp; + const char *fmt; + char *p; + int opt; + int retval = EXIT_SUCCESS; + +#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD + /* Allow legacy syntax of an initial numeric option without -n. */ + if (argv[1] && argv[1][0] == '-' + && isdigit(argv[1][1]) + ) { + --argc; + ++argv; + p = argv[0] + 1; + goto GET_COUNT; + } +#endif + + /* No size benefit in converting this to getopt32 */ + while ((opt = getopt(argc, argv, head_opts)) > 0) { + switch (opt) { +#if ENABLE_FEATURE_FANCY_HEAD + case 'q': + header_threshhold = INT_MAX; + break; + case 'v': + header_threshhold = -1; + break; + case 'c': + count_bytes = 1; + /* fall through */ +#endif + case 'n': + p = optarg; +#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_HEAD + GET_COUNT: +#endif + count = eat_num(&negative_N, p); + break; + default: + bb_show_usage(); + } + } + + argc -= optind; + argv += optind; + if (!*argv) + *--argv = (char*)"-"; + + fmt = header_fmt_str + 1; + if (argc <= header_threshhold) { +#if ENABLE_FEATURE_FANCY_HEAD + header_threshhold = 0; +#else + fmt += 11; /* "" */ +#endif + } + if (negative_N) { + if (count >= INT_MAX / sizeof(char*)) + bb_error_msg("count is too big: %lu", count); + } + + do { + fp = fopen_or_warn_stdin(*argv); + if (fp) { + if (fp == stdin) { + *argv = (char *) bb_msg_standard_input; + } + if (header_threshhold) { + printf(fmt, *argv); + } + if (negative_N) { + if (count_bytes) { + print_except_N_last_bytes(fp, count); + } else { + print_except_N_last_lines(fp, count); + } + } else { + print_first_N(fp, count, count_bytes); + } + die_if_ferror_stdout(); + if (fclose_if_not_stdin(fp)) { + bb_simple_perror_msg(*argv); + retval = EXIT_FAILURE; + } + } else { + retval = EXIT_FAILURE; + } + fmt = header_fmt_str; + } while (*++argv); + + fflush_stdout_and_exit(retval); +} diff --git a/busybox-1_37_0/coreutils/hostid.c b/busybox-1_37_0/coreutils/hostid.c new file mode 100644 index 000000000..0dd18ffd9 --- /dev/null +++ b/busybox-1_37_0/coreutils/hostid.c @@ -0,0 +1,42 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini hostid implementation for busybox + * + * Copyright (C) 2000 Edward Betts . + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config HOSTID +//config: bool "hostid (566 bytes)" +//config: default y +//config: help +//config: hostid prints the numeric identifier (in hexadecimal) for +//config: the current host. + +//applet:IF_HOSTID(APPLET_NOFORK(hostid, hostid, BB_DIR_USR_BIN, BB_SUID_DROP, hostid)) + +//kbuild:lib-$(CONFIG_HOSTID) += hostid.o + +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ + +//usage:#define hostid_trivial_usage +//usage: "" +//usage:#define hostid_full_usage "\n\n" +//usage: "Print out a unique 32-bit identifier for the machine" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int hostid_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int hostid_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + if (argv[1]) { + bb_show_usage(); + } + + /* POSIX says gethostid returns a "32-bit identifier" */ + printf("%08x\n", (unsigned)(uint32_t)gethostid()); + + return fflush_all(); +} diff --git a/busybox-1_37_0/coreutils/id.c b/busybox-1_37_0/coreutils/id.c new file mode 100644 index 000000000..a4f178bda --- /dev/null +++ b/busybox-1_37_0/coreutils/id.c @@ -0,0 +1,269 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini id implementation for busybox + * + * Copyright (C) 2000 by Randolph Chung + * Copyright (C) 2008 by Tito Ragusa + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Hacked by Tito Ragusa (C) 2004 to handle usernames of whatever + * length and to be more similar to GNU id. + * -Z option support: by Yuichi Nakamura + * Added -G option Tito Ragusa (C) 2008 for SUSv3. + */ +//config:config ID +//config: bool "id (7.1 kb)" +//config: default y +//config: help +//config: id displays the current user and group ID names. +//config: +//config:config GROUPS +//config: bool "groups (6.8 kb)" +//config: default y +//config: help +//config: Print the group names associated with current user id. + +//applet:IF_GROUPS(APPLET_NOEXEC(groups, id, BB_DIR_USR_BIN, BB_SUID_DROP, groups)) +//applet:IF_ID( APPLET_NOEXEC(id, id, BB_DIR_USR_BIN, BB_SUID_DROP, id )) + +//kbuild:lib-$(CONFIG_GROUPS) += id.o +//kbuild:lib-$(CONFIG_ID) += id.o + +/* BB_AUDIT SUSv3 compliant. */ + +//usage:#define id_trivial_usage +//usage: "[-ugGnr"IF_SELINUX("Z")"] [USER]" +//usage:#define id_full_usage "\n\n" +//usage: "Print information about USER or the current user\n" +//usage: IF_SELINUX( +//usage: "\n -Z Security context" +//usage: ) +//usage: "\n -u User ID" +//usage: "\n -g Group ID" +//usage: "\n -G Supplementary group IDs" +//usage: "\n -n Print names instead of numbers" +//usage: "\n -r Print real ID instead of effective ID" +//usage: +//usage:#define id_example_usage +//usage: "$ id\n" +//usage: "uid=1000(andersen) gid=1000(andersen)\n" + +//usage:#define groups_trivial_usage +//usage: "[USER]" +//usage:#define groups_full_usage "\n\n" +//usage: "Print the groups USER is in" +//usage: +//usage:#define groups_example_usage +//usage: "$ groups\n" +//usage: "andersen lp dialout cdrom floppy\n" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + +#if !ENABLE_USE_BB_PWD_GRP +#if defined(__UCLIBC__) && UCLIBC_VERSION < KERNEL_VERSION(0, 9, 30) +#error "Sorry, you need at least uClibc version 0.9.30 for id applet to build" +#endif +#endif + +enum { + PRINT_REAL = (1 << 0), + NAME_NOT_NUMBER = (1 << 1), + JUST_USER = (1 << 2), + JUST_GROUP = (1 << 3), + JUST_ALL_GROUPS = (1 << 4), +#if ENABLE_SELINUX + JUST_CONTEXT = (1 << 5), +#endif +}; + +static int print_common(unsigned id, const char *name, const char *prefix) +{ + if (prefix) { + printf("%s", prefix); + } + if (!(option_mask32 & NAME_NOT_NUMBER) || !name) { + printf("%u", id); + } + if (!option_mask32 || (option_mask32 & NAME_NOT_NUMBER)) { + if (name) { + printf(option_mask32 ? "%s" : "(%s)", name); + } else { + /* Don't set error status flag in default mode */ + if (option_mask32) { + if (ENABLE_DESKTOP) + bb_error_msg("unknown ID %u", id); + return EXIT_FAILURE; + } + } + } + return EXIT_SUCCESS; +} + +static int print_group(gid_t id, const char *prefix) +{ + return print_common(id, gid2group(id), prefix); +} + +static int print_user(uid_t id, const char *prefix) +{ + return print_common(id, uid2uname(id), prefix); +} + +/* On error set *n < 0 and return >= 0 + * If *n is too small, update it and return < 0 + * (ok to trash groups[] in both cases) + * Otherwise fill in groups[] and return >= 0 + */ +static int get_groups(const char *username, gid_t rgid, gid_t *groups, int *n) +{ + int m; + + if (username) { + /* If the user is a member of more than + * *n groups, then -1 is returned. Otherwise >= 0. + * (and no defined way of detecting errors?!) */ + m = getgrouplist(username, rgid, groups, n); + /* I guess *n < 0 might indicate error. Anyway, + * malloc'ing -1 bytes won't be good, so: */ + if (*n < 0) + return 0; + return m; + } + + *n = getgroups(*n, groups); + if (*n >= 0) + return *n; + /* Error */ + if (errno == EINVAL) /* *n is too small? */ + *n = getgroups(0, groups); /* get needed *n */ + /* if *n >= 0, return -1 (got new *n), else return 0 (error): */ + return -(*n >= 0); +} + +int id_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int id_main(int argc UNUSED_PARAM, char **argv) +{ + uid_t ruid; + gid_t rgid; + uid_t euid; + gid_t egid; + unsigned opt; + int i; + int status = EXIT_SUCCESS; + const char *prefix; + const char *username; +#if ENABLE_SELINUX + security_context_t scontext = NULL; +#endif + + if (ENABLE_GROUPS && (!ENABLE_ID || applet_name[0] == 'g')) { + /* TODO: coreutils groups prepend "USER : " prefix, + * and accept many usernames. Example: + * # groups root root + * root : root + * root : root + */ + opt = option_mask32 = getopt32(argv, "") | JUST_ALL_GROUPS | NAME_NOT_NUMBER; + } else { + /* Don't allow -n -r -nr -ug -rug -nug -rnug -uZ -gZ -GZ*/ + /* Don't allow more than one username */ + opt = getopt32(argv, "^" + "rnugG" IF_SELINUX("Z") + "\0" + "?1:u--g:g--u:G--u:u--G:g--G:G--g:r?ugG:n?ugG" + IF_SELINUX(":u--Z:Z--u:g--Z:Z--g:G--Z:Z--G") + ); + } + + username = argv[optind]; + if (username) { + struct passwd *p = xgetpwnam(username); + euid = ruid = p->pw_uid; + egid = rgid = p->pw_gid; + } else { + egid = getegid(); + rgid = getgid(); + euid = geteuid(); + ruid = getuid(); + } + /* JUST_ALL_GROUPS ignores -r PRINT_REAL flag even if man page for */ + /* id says: print the real ID instead of the effective ID, with -ugG */ + /* in fact in this case egid is always printed if egid != rgid */ + if (!opt || (opt & JUST_ALL_GROUPS)) { + gid_t *groups; + int n; + + if (!opt) { + /* Default Mode */ + status |= print_user(ruid, "uid="); + status |= print_group(rgid, " gid="); + if (euid != ruid) + status |= print_user(euid, " euid="); + if (egid != rgid) + status |= print_group(egid, " egid="); + } else { + /* JUST_ALL_GROUPS */ + status |= print_group(rgid, NULL); + if (egid != rgid) + status |= print_group(egid, " "); + } + /* We are supplying largish buffer, trying + * to not run get_groups() twice. That might be slow + * ("user database in remote SQL server" case) */ + groups = xmalloc(64 * sizeof(groups[0])); + n = 64; + if (get_groups(username, rgid, groups, &n) < 0) { + /* Need bigger buffer after all */ + groups = xrealloc(groups, n * sizeof(groups[0])); + get_groups(username, rgid, groups, &n); + } + if (n > 0) { + /* Print the list */ + prefix = " groups="; + for (i = 0; i < n; i++) { + if (opt && (groups[i] == rgid || groups[i] == egid)) + continue; + status |= print_group(groups[i], opt ? " " : prefix); + prefix = ","; + } + } else if (n < 0) { /* error in get_groups() */ + if (ENABLE_DESKTOP) + bb_simple_error_msg_and_die("can't get groups"); + return EXIT_FAILURE; + } + if (ENABLE_FEATURE_CLEAN_UP) + free(groups); +#if ENABLE_SELINUX + if (is_selinux_enabled()) { + if (getcon(&scontext) == 0) + printf(" context=%s", scontext); + } +#endif + } else if (opt & PRINT_REAL) { + euid = ruid; + egid = rgid; + } + + if (opt & JUST_USER) + status |= print_user(euid, NULL); + else if (opt & JUST_GROUP) + status |= print_group(egid, NULL); +#if ENABLE_SELINUX + else if (opt & JUST_CONTEXT) { + selinux_or_die(); + if (username || getcon(&scontext)) { + bb_error_msg_and_die("can't get process context%s", + username ? " for a different user" : ""); + } + fputs_stdout(scontext); + } + /* freecon(NULL) seems to be harmless */ + if (ENABLE_FEATURE_CLEAN_UP) + freecon(scontext); +#endif + bb_putchar('\n'); + fflush_stdout_and_exit(status); +} diff --git a/busybox-1_37_0/coreutils/id_test.sh b/busybox-1_37_0/coreutils/id_test.sh new file mode 100755 index 000000000..0d65f2ae3 --- /dev/null +++ b/busybox-1_37_0/coreutils/id_test.sh @@ -0,0 +1,244 @@ +#!/bin/bash +# Test script for busybox id vs. coreutils id. +# Needs root privileges for some tests. + +cp /usr/bin/id . +BUSYBOX=./busybox +ID=./id +LIST=`awk -F: '{ printf "%s\n", $1 }' /etc/passwd` +FLAG_USER_EXISTS="no" +TEST_USER="f583ca884c1d93458fb61ed137ff44f6" + +echo "test 1: id [options] nousername" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + $BUSYBOX id $OPTIONS >foo 2>/dev/null + RET1=$? + $ID $OPTIONS >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar +done + +echo "test 2: id [options] username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + for i in $LIST ; do + if test "$i" = "$TEST_USER"; then + FLAG_USER_EXISTS="yes" + fi + $BUSYBOX id $OPTIONS $i >foo 2>/dev/null + RET1=$? + $ID $OPTIONS $i >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + done +done + +if test $FLAG_USER_EXISTS = "yes"; then + echo "test 3,4,5,6,7,8,9,10,11,12 skipped because test user $TEST_USER already exists" + rm -f foo bar + exit 1 +fi + +adduser -s /bin/true -g "" -H -D "$TEST_USER" || exit 1 + +chown $TEST_USER.$TEST_USER $BUSYBOX +chmod u+s $BUSYBOX 2>&1 /dev/null +chown $TEST_USER.$TEST_USER $ID +chmod u+s $ID 2>&1 /dev/null + +echo "test 3 setuid, existing user: id [options] no username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + $BUSYBOX id $OPTIONS >foo 2>/dev/null + RET1=$? + $ID $OPTIONS >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + #done +done + +echo "test 4 setuid, existing user: id [options] username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + for i in $LIST ; do + $BUSYBOX id $OPTIONS $i >foo 2>/dev/null + RET1=$? + $ID $OPTIONS $i >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + done +done + +chown $TEST_USER.$TEST_USER $BUSYBOX +chmod g+s $BUSYBOX 2>&1 /dev/null +chown $TEST_USER.$TEST_USER $ID +chmod g+s $ID 2>&1 /dev/null + +echo "test 5 setgid, existing user: id [options] no username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + $BUSYBOX id $OPTIONS >foo 2>/dev/null + RET1=$? + $ID $OPTIONS >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + #done +done + +echo "test 6 setgid, existing user: id [options] username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + for i in $LIST ; do + $BUSYBOX id $OPTIONS $i >foo 2>/dev/null + RET1=$? + $ID $OPTIONS $i >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + done +done + +chown $TEST_USER.$TEST_USER $BUSYBOX +chmod u+s,g+s $BUSYBOX 2>&1 /dev/null +chown $TEST_USER.$TEST_USER $ID +chmod u+s,g+s $ID 2>&1 /dev/null + +echo "test 7 setuid, setgid, existing user: id [options] no username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + $BUSYBOX id $OPTIONS >foo 2>/dev/null + RET1=$? + $ID $OPTIONS >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + #done +done + +echo "test 8 setuid, setgid, existing user: id [options] username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + for i in $LIST ; do + $BUSYBOX id $OPTIONS $i >foo 2>/dev/null + RET1=$? + $ID $OPTIONS $i >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + done +done + +deluser $TEST_USER || exit 1 + +echo "test 9 setuid, setgid, not existing user: id [options] no username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + $BUSYBOX id $OPTIONS >foo 2>/dev/null + RET1=$? + $ID $OPTIONS >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar +done + +echo "test 10 setuid, setgid, not existing user: id [options] username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + for i in $LIST ; do + $BUSYBOX id $OPTIONS $i >foo 2>/dev/null + RET1=$? + $ID $OPTIONS $i >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + done +done + +chown .root $BUSYBOX 2>&1 /dev/null +chown .root $ID 2>&1 /dev/null +chmod g+s $BUSYBOX 2>&1 /dev/null +chmod g+s $ID 2>&1 /dev/null + +echo "test 11 setgid, not existing group: id [options] no username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + $BUSYBOX id $OPTIONS >foo 2>/dev/null + RET1=$? + $ID $OPTIONS >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + #done +done + +echo "test 12 setgid, not existing group: id [options] username" +rm -f foo bar +for OPTIONS in "" "-u" "-un" "-unr" "-g" "-gn" "-gnr" "-G" "-Gn" "-Gnr" +do + #echo "$OPTIONS" + for i in $LIST ; do + $BUSYBOX id $OPTIONS $i >foo 2>/dev/null + RET1=$? + $ID $OPTIONS $i >bar 2>/dev/null + RET2=$? + if test "$RET1" != "$RET2"; then + echo "Return Values differ ($RET1 != $RET2): options $OPTIONS" + fi + diff foo bar + done +done + +chown root.root $BUSYBOX 2>&1 /dev/null +chown root.root $ID 2>&1 /dev/null +rm -f $ID +rm -f foo bar diff --git a/busybox-1_37_0/coreutils/install.c b/busybox-1_37_0/coreutils/install.c new file mode 100644 index 000000000..00f8be87e --- /dev/null +++ b/busybox-1_37_0/coreutils/install.c @@ -0,0 +1,272 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2003 by Glenn McGrath + * SELinux support: by Yuichi Nakamura + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config INSTALL +//config: bool "install (12 kb)" +//config: default y +//config: help +//config: Copy files and set attributes. +//config: +//config:config FEATURE_INSTALL_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on INSTALL && LONG_OPTS + +//applet:IF_INSTALL(APPLET(install, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_INSTALL) += install.o + +/* -v, -b, -c are ignored */ +//usage:#define install_trivial_usage +//usage: "[-cdDsp] [-o USER] [-g GRP] [-m MODE] [-t DIR] [SOURCE]... DEST" +//usage:#define install_full_usage "\n\n" +//usage: "Copy files and set attributes\n" +//usage: "\n -c Just copy (default)" +//usage: "\n -d Create directories" +//usage: "\n -D Create leading target directories" +//usage: "\n -s Strip symbol table" +//usage: "\n -p Preserve date" +//usage: "\n -o USER Set ownership" +//usage: "\n -g GRP Set group ownership" +//usage: "\n -m MODE Set permissions" +//usage: "\n -t DIR Install to DIR" +//usage: IF_SELINUX( +//usage: "\n -Z Set security context" +//usage: ) + +#include "libbb.h" +#include "libcoreutils/coreutils.h" + +#if ENABLE_FEATURE_INSTALL_LONG_OPTIONS +static const char install_longopts[] ALIGN1 = + IF_FEATURE_VERBOSE( + "verbose\0" No_argument "v" + ) + "directory\0" No_argument "d" + "preserve-timestamps\0" No_argument "p" + "strip\0" No_argument "s" + "group\0" Required_argument "g" + "mode\0" Required_argument "m" + "owner\0" Required_argument "o" + "target-directory\0" Required_argument "t" +/* autofs build insists of using -b --suffix=.orig */ +/* TODO? (short option for --suffix is -S) */ +# if ENABLE_SELINUX + "context\0" Required_argument "Z" + "preserve_context\0" No_argument "\xff" + "preserve-context\0" No_argument "\xff" +# endif + ; +# define GETOPT32 getopt32long +# define LONGOPTS install_longopts, +#else +# define GETOPT32 getopt32 +# define LONGOPTS +#endif + + +#if ENABLE_SELINUX +static void setdefaultfilecon(const char *path) +{ + struct stat s; + security_context_t scontext = NULL; + + if (!is_selinux_enabled()) { + return; + } + if (lstat(path, &s) != 0) { + return; + } + + if (matchpathcon(path, s.st_mode, &scontext) < 0) { + goto out; + } + if (strcmp(scontext, "<>") == 0) { + goto out; + } + + if (lsetfilecon(path, scontext) < 0) { + if (errno != ENOTSUP) { + bb_perror_msg("warning: can't change context" + " of %s to %s", path, scontext); + } + } + + out: + freecon(scontext); +} + +#endif + +int install_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int install_main(int argc, char **argv) +{ + struct stat statbuf; + mode_t mode; + uid_t uid; + gid_t gid; + char *arg, *last; + const char *gid_str; + const char *uid_str; + const char *mode_str; + int mkdir_flags = FILEUTILS_RECUR; + int copy_flags = FILEUTILS_DEREFERENCE | FILEUTILS_FORCE; + int opts; + int ret = EXIT_SUCCESS; + int isdir; +#if ENABLE_SELINUX + security_context_t scontext; + bool use_default_selinux_context = 1; +#endif + enum { + OPT_c = 1 << 0, + OPT_v = 1 << 1, + OPT_b = 1 << 2, + OPT_MKDIR_LEADING = 1 << 3, + OPT_DIRECTORY = 1 << 4, + OPT_PRESERVE_TIME = 1 << 5, + OPT_STRIP = 1 << 6, + OPT_GROUP = 1 << 7, + OPT_MODE = 1 << 8, + OPT_OWNER = 1 << 9, + OPT_TARGET = 1 << 10, +#if ENABLE_SELINUX + OPT_SET_SECURITY_CONTEXT = 1 << 11, + OPT_PRESERVE_SECURITY_CONTEXT = 1 << 12, +#endif + }; + + /* -c exists for backwards compatibility, it's needed */ + /* -b is ignored ("make a backup of each existing destination file") */ + opts = GETOPT32(argv, "^" + "cvb" "Ddpsg:m:o:t:" IF_SELINUX("Z:") + "\0" + "t--d:d--t:s--d:d--s" + IF_FEATURE_INSTALL_LONG_OPTIONS(IF_SELINUX(":Z--\xff:\xff--Z")), + LONGOPTS + &gid_str, &mode_str, &uid_str, &last + IF_SELINUX(, &scontext) + ); + argc -= optind; + argv += optind; + +#if ENABLE_SELINUX + if (opts & (OPT_PRESERVE_SECURITY_CONTEXT|OPT_SET_SECURITY_CONTEXT)) { + selinux_or_die(); + use_default_selinux_context = 0; + if (opts & OPT_PRESERVE_SECURITY_CONTEXT) { + copy_flags |= FILEUTILS_PRESERVE_SECURITY_CONTEXT; + } + if (opts & OPT_SET_SECURITY_CONTEXT) { + setfscreatecon_or_die(scontext); + copy_flags |= FILEUTILS_SET_SECURITY_CONTEXT; + } + } +#endif + + if ((opts & OPT_v) && FILEUTILS_VERBOSE) { + mkdir_flags |= FILEUTILS_VERBOSE; + copy_flags |= FILEUTILS_VERBOSE; + } + + /* preserve access and modification time, this is GNU behaviour, + * BSD only preserves modification time */ + if (opts & OPT_PRESERVE_TIME) { + copy_flags |= FILEUTILS_PRESERVE_STATUS; + } + mode = 0755; /* GNU coreutils 6.10 compat */ + if (opts & OPT_MODE) + mode = bb_parse_mode(mode_str, mode); + uid = (opts & OPT_OWNER) ? get_ug_id(uid_str, xuname2uid) : getuid(); + gid = (opts & OPT_GROUP) ? get_ug_id(gid_str, xgroup2gid) : getgid(); + + /* If -t DIR is in use, then isdir=true, last="DIR" */ + isdir = (opts & OPT_TARGET); + if (!(opts & (OPT_TARGET|OPT_DIRECTORY))) { + /* Neither -t DIR nor -d is in use */ + argc--; + last = argv[argc]; + argv[argc] = NULL; + /* coreutils install resolves link in this case, don't use lstat */ + isdir = stat(last, &statbuf) < 0 ? 0 : S_ISDIR(statbuf.st_mode); + } + + if (argc < 1) + bb_show_usage(); + + while ((arg = *argv++) != NULL) { + char *dest; + + if (opts & OPT_DIRECTORY) { + dest = arg; + /* GNU coreutils 6.9 does not set uid:gid + * on intermediate created directories + * (only on last one) */ + if (bb_make_directory(dest, 0755, mkdir_flags)) { + ret = EXIT_FAILURE; + goto next; + } + } else { + dest = last; + if (opts & OPT_MKDIR_LEADING) { + char *ddir = xstrdup(dest); + /* + * -D -t DIR1/DIR2/F3 FILE: create DIR1/DIR2/F3, copy FILE there + * -D FILE DIR1/DIR2/F3: create DIR1/DIR2, copy FILE there as F3 + */ + bb_make_directory((opts & OPT_TARGET) ? ddir : dirname(ddir), 0755, mkdir_flags); + /* errors are not checked. copy_file + * will fail if dir is not created. + */ + free(ddir); + } + if (isdir) + dest = concat_path_file(last, bb_basename(arg)); + if (copy_file(arg, dest, copy_flags) != 0) { + /* copy is not made */ + ret = EXIT_FAILURE; + goto next; + } + if (opts & OPT_STRIP) { + char *args[4]; + args[0] = (char*)"strip"; + args[1] = (char*)"-p"; /* -p --preserve-dates */ + args[2] = dest; + args[3] = NULL; + if (spawn_and_wait(args)) { + bb_simple_perror_msg("strip"); + ret = EXIT_FAILURE; + } + } + } + + /* Set the user and group id */ + /* (must be before chmod, or else chown may clear suid/gid bits) */ + if ((opts & (OPT_OWNER|OPT_GROUP)) + && lchown(dest, uid, gid) == -1 + ) { + bb_perror_msg("can't change %s of %s", "ownership", dest); + ret = EXIT_FAILURE; + } + + /* Set the file mode (always, not only with -m). + * GNU coreutils 6.10 is not affected by umask. */ + if (chmod(dest, mode) == -1) { + bb_perror_msg("can't change %s of %s", "permissions", dest); + ret = EXIT_FAILURE; + } +#if ENABLE_SELINUX + if (use_default_selinux_context) + setdefaultfilecon(dest); +#endif + next: + if (ENABLE_FEATURE_CLEAN_UP && isdir) + free(dest); + } + + return ret; +} diff --git a/busybox-1_37_0/coreutils/libcoreutils/Kbuild.src b/busybox-1_37_0/coreutils/libcoreutils/Kbuild.src new file mode 100644 index 000000000..2042d5f84 --- /dev/null +++ b/busybox-1_37_0/coreutils/libcoreutils/Kbuild.src @@ -0,0 +1,14 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2004 by Erik Andersen +# +# Licensed under GPLv2 or later, see file LICENSE in this source tree. + +lib-y:= + +INSERT +lib-$(CONFIG_MKFIFO) += getopt_mk_fifo_nod.o +lib-$(CONFIG_MKNOD) += getopt_mk_fifo_nod.o +lib-$(CONFIG_INSTALL) += cp_mv_stat.o +lib-$(CONFIG_CP) += cp_mv_stat.o +lib-$(CONFIG_MV) += cp_mv_stat.o diff --git a/busybox-1_37_0/coreutils/libcoreutils/coreutils.h b/busybox-1_37_0/coreutils/libcoreutils/coreutils.h new file mode 100644 index 000000000..ad102e423 --- /dev/null +++ b/busybox-1_37_0/coreutils/libcoreutils/coreutils.h @@ -0,0 +1,19 @@ +/* vi: set sw=4 ts=4: */ +/* + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +#ifndef COREUTILS_H +#define COREUTILS_H 1 + +PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN + +typedef int (*stat_func)(const char *fn, struct stat *ps); + +int cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) FAST_FUNC; +int cp_mv_stat(const char *fn, struct stat *fn_stat) FAST_FUNC; + +mode_t getopt_mk_fifo_nod(char **argv) FAST_FUNC; + +POP_SAVED_FUNCTION_VISIBILITY + +#endif diff --git a/busybox-1_37_0/coreutils/libcoreutils/cp_mv_stat.c b/busybox-1_37_0/coreutils/libcoreutils/cp_mv_stat.c new file mode 100644 index 000000000..26c0e1645 --- /dev/null +++ b/busybox-1_37_0/coreutils/libcoreutils/cp_mv_stat.c @@ -0,0 +1,48 @@ +/* vi: set sw=4 ts=4: */ +/* + * coreutils utility routine + * + * Copyright (C) 2003 Manuel Novoa III + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ +#include "libbb.h" +#include "coreutils.h" + +int FAST_FUNC cp_mv_stat2(const char *fn, struct stat *fn_stat, stat_func sf) +{ + if (sf(fn, fn_stat) < 0) { + if (errno != ENOENT) { +#if ENABLE_FEATURE_VERBOSE_CP_MESSAGE + if (errno == ENOTDIR) { + bb_error_msg("can't stat '%s': Path has non-directory component", fn); + return -1; + } +#endif + bb_perror_msg("can't stat '%s'", fn); + return -1; + } + return 0; + } + if (S_ISDIR(fn_stat->st_mode)) { + return 3; + } + return 1; +} + +int FAST_FUNC cp_mv_stat(const char *fn, struct stat *fn_stat) +{ + return cp_mv_stat2(fn, fn_stat, stat); +} diff --git a/busybox-1_37_0/coreutils/libcoreutils/getopt_mk_fifo_nod.c b/busybox-1_37_0/coreutils/libcoreutils/getopt_mk_fifo_nod.c new file mode 100644 index 000000000..dafe70edf --- /dev/null +++ b/busybox-1_37_0/coreutils/libcoreutils/getopt_mk_fifo_nod.c @@ -0,0 +1,48 @@ +/* vi: set sw=4 ts=4: */ +/* + * coreutils utility routine + * + * Copyright (C) 2003 Manuel Novoa III + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + */ +#include "libbb.h" +#include "coreutils.h" + +mode_t FAST_FUNC getopt_mk_fifo_nod(char **argv) +{ + mode_t mode = 0666; + char *smode = NULL; +#if ENABLE_SELINUX + security_context_t scontext; +#endif + int opt; + opt = getopt32(argv, "m:" IF_SELINUX("Z:"), &smode IF_SELINUX(,&scontext)); + if (opt & 1) { + mode = bb_parse_mode(smode, mode); + if (mode != (mode_t)-1) /* if mode is valid */ + /* make future mknod/mkfifo set mode bits exactly */ + umask(0); + } + +#if ENABLE_SELINUX + if (opt & 2) { + selinux_or_die(); + setfscreatecon_or_die(scontext); + } +#endif + + return mode; +} diff --git a/busybox-1_37_0/coreutils/link.c b/busybox-1_37_0/coreutils/link.c new file mode 100644 index 000000000..cb994da45 --- /dev/null +++ b/busybox-1_37_0/coreutils/link.c @@ -0,0 +1,39 @@ +/* + * link implementation for busybox + * + * Copyright (C) 2017 Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//config:config LINK +//config: bool "link (3.5 kb)" +//config: default y +//config: help +//config: link creates hard links between files. + +//applet:IF_LINK(APPLET_NOFORK(link, link, BB_DIR_BIN, BB_SUID_DROP, link)) + +//kbuild:lib-$(CONFIG_LINK) += link.o + +//usage:#define link_trivial_usage +//usage: "FILE LINK" +//usage:#define link_full_usage "\n\n" +//usage: "Create hard LINK to FILE" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int link_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int link_main(int argc UNUSED_PARAM, char **argv) +{ + getopt32(argv, "^" "" "\0" "=2"); + argv += optind; + if (link(argv[0], argv[1]) != 0) { + /* shared message */ + bb_perror_msg_and_die("can't create %slink '%s' to '%s'", + "hard", argv[1], argv[0] + ); + } + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/ln.c b/busybox-1_37_0/coreutils/ln.c new file mode 100644 index 000000000..080ba142e --- /dev/null +++ b/busybox-1_37_0/coreutils/ln.c @@ -0,0 +1,165 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini ln implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config LN +//config: bool "ln (5.1 kb)" +//config: default y +//config: help +//config: ln is used to create hard or soft links between files. + +//applet:IF_LN(APPLET_NOEXEC(ln, ln, BB_DIR_BIN, BB_SUID_DROP, ln)) + +//kbuild:lib-$(CONFIG_LN) += ln.o + +/* BB_AUDIT SUSv3 compliant */ +/* BB_AUDIT GNU options missing: -d, -F, -i, and -v. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */ + +//usage:#define ln_trivial_usage +//usage: "[-sfnbtv] [-S SUF] TARGET... LINK|DIR" +//usage:#define ln_full_usage "\n\n" +//usage: "Create a link LINK or DIR/TARGET to the specified TARGET(s)\n" +//usage: "\n -s Make symlinks instead of hardlinks" +//usage: "\n -f Remove existing destinations" +//usage: "\n -n Don't dereference symlinks - treat like normal file" +//usage: "\n -b Make a backup of the target (if exists) before link operation" +//usage: "\n -S SUF Use suffix instead of ~ when making backup files" +//usage: "\n -T Treat LINK as a file, not DIR" +//usage: "\n -v Verbose" +//usage: +//usage:#define ln_example_usage +//usage: "$ ln -s BusyBox /tmp/ls\n" +//usage: "$ ls -l /tmp/ls\n" +//usage: "lrwxrwxrwx 1 root root 7 Apr 12 18:39 ls -> BusyBox*\n" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + +#define LN_SYMLINK (1 << 0) +#define LN_FORCE (1 << 1) +#define LN_NODEREFERENCE (1 << 2) +#define LN_BACKUP (1 << 3) +#define LN_SUFFIX (1 << 4) +#define LN_VERBOSE (1 << 5) +#define LN_LINKFILE (1 << 6) + +int ln_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int ln_main(int argc, char **argv) +{ + exitcode_t status = EXIT_SUCCESS; + int opts; + char *last; + char *src_name; + char *src; + char *suffix = (char*)"~"; + struct stat statbuf; + int (*link_func)(const char *, const char *); + + opts = getopt32(argv, "^" "sfnbS:vT" "\0" "-1", &suffix); +/* + -s, --symbolic make symbolic links instead of hard links + -f, --force remove existing destination files + -n, --no-dereference treat LINK_NAME as a normal file if it is a symbolic link to a directory + -b like --backup but does not accept an argument + --backup[=CONTROL] make a backup of each existing destination file + -S, --suffix=SUFFIX override the usual backup suffix + -v, --verbose + -T, --no-target-directory + -d, -F, --directory allow the superuser to attempt to hard link directories + -i, --interactive prompt whether to remove destinations + -L, --logical dereference TARGETs that are symbolic links + -P, --physical make hard links directly to symbolic links + -r, --relative create symbolic links relative to link location + -t, --target-directory=DIRECTORY specify the DIRECTORY in which to create the links + */ + last = argv[argc - 1]; + argv += optind; + argc -= optind; + + if ((opts & LN_LINKFILE) && argc > 2) { + bb_simple_error_msg_and_die("-T accepts 2 args max"); + } + + if (!argv[1]) { + /* "ln PATH/TO/FILE" -> "ln PATH/TO/FILE FILE" */ + *--argv = last; + /* xstrdup is needed: "ln -s PATH/TO/FILE/" is equivalent to + * "ln -s PATH/TO/FILE/ FILE", not "ln -s PATH/TO/FILE FILE" + */ + last = bb_get_last_path_component_strip(xstrdup(last)); + } + + do { + src_name = NULL; + src = last; + + if (is_directory(src, + /*followlinks:*/ !(opts & (LN_NODEREFERENCE|LN_LINKFILE)) + /* Why LN_LINKFILE does not follow links: + * -T/--no-target-directory implies -n/--no-dereference + */ + ) + ) { + if (opts & LN_LINKFILE) { + bb_error_msg_and_die("'%s' is a directory", src); + } + src_name = xstrdup(*argv); + src = concat_path_file(src, bb_get_last_path_component_strip(src_name)); + free(src_name); + src_name = src; + } + if (!(opts & LN_SYMLINK) && stat(*argv, &statbuf)) { + // coreutils: "ln dangling_symlink new_hardlink" works + if (lstat(*argv, &statbuf) || !S_ISLNK(statbuf.st_mode)) { + bb_simple_perror_msg(*argv); + status = EXIT_FAILURE; + free(src_name); + continue; + } + } + + if (opts & LN_BACKUP) { + char *backup; + backup = xasprintf("%s%s", src, suffix); + if (rename(src, backup) < 0 && errno != ENOENT) { + bb_simple_perror_msg(src); + status = EXIT_FAILURE; + free(backup); + continue; + } + free(backup); + /* + * When the source and dest are both hard links to the same + * inode, a rename may succeed even though nothing happened. + * Therefore, always unlink(). + */ + unlink(src); + } else if (opts & LN_FORCE) { + unlink(src); + } + + link_func = link; + if (opts & LN_SYMLINK) { + link_func = symlink; + } + + if (opts & LN_VERBOSE) { + printf("'%s' -> '%s'\n", src, *argv); + } + + if (link_func(*argv, src) != 0) { + bb_simple_perror_msg(src); + status = EXIT_FAILURE; + } + + free(src_name); + } while ((++argv)[1]); + + return status; +} diff --git a/busybox-1_37_0/coreutils/logname.c b/busybox-1_37_0/coreutils/logname.c new file mode 100644 index 000000000..17c073a53 --- /dev/null +++ b/busybox-1_37_0/coreutils/logname.c @@ -0,0 +1,60 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini logname implementation for busybox + * + * Copyright (C) 2000 Edward Betts . + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * SUSv3 specifies the string used is that returned from getlogin(). + * The previous implementation used getpwuid() for geteuid(), which + * is _not_ the same. Erik apparently made this change almost 3 years + * ago to avoid failing when no utmp was available. However, the + * correct course of action wrt SUSv3 for a failing getlogin() is + * a diagnostic message and an error return. + */ +//config:config LOGNAME +//config: bool "logname (1.4 kb)" +//config: default y +//config: help +//config: logname is used to print the current user's login name. + +//applet:IF_LOGNAME(APPLET_NOFORK(logname, logname, BB_DIR_USR_BIN, BB_SUID_DROP, logname)) + +//kbuild:lib-$(CONFIG_LOGNAME) += logname.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/logname.html */ + +//usage:#define logname_trivial_usage +//usage: "" +//usage:#define logname_full_usage "\n\n" +//usage: "Print the name of the current user" +//usage: +//usage:#define logname_example_usage +//usage: "$ logname\n" +//usage: "root\n" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int logname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int logname_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + char buf[64]; + + if (argv[1]) { + bb_show_usage(); + } + + /* Using _r function - avoid pulling in static buffer from libc */ + if (getlogin_r(buf, sizeof(buf)) == 0) { + puts(buf); + return fflush_all(); + } + + bb_simple_perror_msg_and_die("getlogin"); +} diff --git a/busybox-1_37_0/coreutils/ls.c b/busybox-1_37_0/coreutils/ls.c new file mode 100644 index 000000000..cc809b797 --- /dev/null +++ b/busybox-1_37_0/coreutils/ls.c @@ -0,0 +1,1272 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 1996 Brian Candler + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* [date unknown. Perhaps before year 2000] + * To achieve a small memory footprint, this version of 'ls' doesn't do any + * file sorting, and only has the most essential command line switches + * (i.e., the ones I couldn't live without :-) All features which involve + * linking in substantial chunks of libc can be disabled. + * + * Although I don't really want to add new features to this program to + * keep it small, I *am* interested to receive bug fixes and ways to make + * it more portable. + * + * KNOWN BUGS: + * 1. hidden files can make column width too large + * + * NON-OPTIMAL BEHAVIOUR: + * 1. autowidth reads directories twice + * 2. if you do a short directory listing without filetype characters + * appended, there's no need to stat each one + * PORTABILITY: + * 1. requires lstat (BSD) - how do you do it without? + * + * [2009-03] + * ls sorts listing now, and supports almost all options. + */ +//config:config LS +//config: bool "ls (14 kb)" +//config: default y +//config: help +//config: ls is used to list the contents of directories. +//config: +//config:config FEATURE_LS_FILETYPES +//config: bool "Enable filetyping options (-p and -F)" +//config: default y +//config: depends on LS +//config: +//config:config FEATURE_LS_FOLLOWLINKS +//config: bool "Enable symlinks dereferencing (-L)" +//config: default y +//config: depends on LS +//config: +//config:config FEATURE_LS_RECURSIVE +//config: bool "Enable recursion (-R)" +//config: default y +//config: depends on LS +//config: +//config:config FEATURE_LS_WIDTH +//config: bool "Enable -w WIDTH and window size autodetection" +//config: default y +//config: depends on LS +//config: +//config:config FEATURE_LS_SORTFILES +//config: bool "Sort the file names" +//config: default y +//config: depends on LS +//config: help +//config: Allow ls to sort file names alphabetically. +//config: +//config:config FEATURE_LS_TIMESTAMPS +//config: bool "Show file timestamps" +//config: default y +//config: depends on LS +//config: help +//config: Allow ls to display timestamps for files. +//config: +//config:config FEATURE_LS_USERNAME +//config: bool "Show username/groupnames" +//config: default y +//config: depends on LS +//config: help +//config: Allow ls to display username/groupname for files. +//config: +//config:config FEATURE_LS_COLOR +//config: bool "Allow use of color to identify file types" +//config: default y +//config: depends on LS && LONG_OPTS +//config: help +//config: This enables the --color option to ls. +//config: +//config:config FEATURE_LS_COLOR_IS_DEFAULT +//config: bool "Produce colored ls output by default" +//config: default y +//config: depends on FEATURE_LS_COLOR +//config: help +//config: Saying yes here will turn coloring on by default, +//config: even if no "--color" option is given to the ls command. +//config: This is not recommended, since the colors are not +//config: configurable, and the output may not be legible on +//config: many output screens. + +//applet:IF_LS(APPLET_NOEXEC(ls, ls, BB_DIR_BIN, BB_SUID_DROP, ls)) + +//kbuild:lib-$(CONFIG_LS) += ls.o + +//usage:#define ls_trivial_usage +//usage: "[-1AaCxd" +//usage: IF_FEATURE_LS_FOLLOWLINKS("LH") +//usage: IF_FEATURE_LS_RECURSIVE("R") +//usage: IF_FEATURE_LS_FILETYPES("Fp") "lins" +//usage: IF_FEATURE_HUMAN_READABLE("h") +//usage: IF_FEATURE_LS_SORTFILES("rSXv") +//usage: IF_FEATURE_LS_TIMESTAMPS("ctu") +//usage: IF_SELINUX("kZ") "]" +//usage: IF_FEATURE_LS_WIDTH(" [-w WIDTH]") " [FILE]..." +//usage:#define ls_full_usage "\n\n" +//usage: "List directory contents\n" +//usage: "\n -1 One column output" +//usage: "\n -a Include names starting with ." +//usage: "\n -A Like -a, but exclude . and .." +////usage: "\n -C List by columns" - don't show, this is a default anyway +//usage: "\n -x List by lines" +//usage: "\n -d List directory names, not contents" +//usage: IF_FEATURE_LS_FOLLOWLINKS( +//usage: "\n -L Follow symlinks" +//usage: "\n -H Follow symlinks on command line" +//usage: ) +//usage: IF_FEATURE_LS_RECURSIVE( +//usage: "\n -R Recurse" +//usage: ) +//usage: IF_FEATURE_LS_FILETYPES( +//usage: "\n -p Append / to directory names" +//usage: "\n -F Append indicator (one of */=@|) to names" +//usage: ) +//usage: "\n -l Long format" +//usage: "\n -i List inode numbers" +//usage: "\n -n List numeric UIDs and GIDs instead of names" +//usage: "\n -s List allocated blocks" +//usage: IF_FEATURE_LS_TIMESTAMPS( +//usage: "\n -lc List ctime" +//usage: "\n -lu List atime" +//usage: ) +//usage: IF_FEATURE_LS_TIMESTAMPS(IF_LONG_OPTS( +//usage: "\n --full-time List full date/time" +//usage: )) +//usage: IF_FEATURE_HUMAN_READABLE( +//usage: "\n -h Human readable sizes (1K 243M 2G)" +//usage: ) +//usage: IF_FEATURE_LS_SORTFILES( +//usage: IF_LONG_OPTS( +//usage: "\n --group-directories-first" +//usage: ) +//usage: "\n -S Sort by size" +//usage: "\n -X Sort by extension" +//usage: "\n -v Sort by version" +//usage: ) +//usage: IF_FEATURE_LS_TIMESTAMPS( +//usage: "\n -t Sort by mtime" +//usage: "\n -tc Sort by ctime" +//usage: "\n -tu Sort by atime" +//usage: ) +//usage: "\n -r Reverse sort order" +//usage: IF_SELINUX( +//usage: "\n -Z List security context and permission" +//usage: ) +//usage: IF_FEATURE_LS_WIDTH( +//usage: "\n -w N Format N columns wide" +//usage: ) +//usage: IF_FEATURE_LS_COLOR( +//usage: "\n --color[={always,never,auto}]" +//usage: ) + +#include "libbb.h" +#include "common_bufsiz.h" +#include "unicode.h" + + +/* This is a NOEXEC applet. Be very careful! */ + + +#if ENABLE_FTPD +/* ftpd uses ls, and without timestamps Mozilla won't understand + * ftpd's LIST output. + */ +# undef CONFIG_FEATURE_LS_TIMESTAMPS +# undef ENABLE_FEATURE_LS_TIMESTAMPS +# undef IF_FEATURE_LS_TIMESTAMPS +# undef IF_NOT_FEATURE_LS_TIMESTAMPS +# define CONFIG_FEATURE_LS_TIMESTAMPS 1 +# define ENABLE_FEATURE_LS_TIMESTAMPS 1 +# define IF_FEATURE_LS_TIMESTAMPS(...) __VA_ARGS__ +# define IF_NOT_FEATURE_LS_TIMESTAMPS(...) +#endif + + +enum { +TERMINAL_WIDTH = 80, /* use 79 if terminal has linefold bug */ + +SPLIT_FILE = 0, +SPLIT_DIR = 1, +SPLIT_SUBDIR = 2, +}; + +/* -Cadi1l Std options, busybox always supports */ +/* -gnsxA Std options, busybox always supports */ +/* -Q GNU option, busybox always supports */ +/* -k Std option, busybox always supports (by ignoring) */ +/* It means "for -s, show sizes in kbytes" */ +/* Seems to only affect "POSIXLY_CORRECT=1 ls -sk" */ +/* since otherwise -s shows kbytes anyway */ +/* -LHRctur Std options, busybox optionally supports */ +/* -Fp Std options, busybox optionally supports */ +/* -SXvhTw GNU options, busybox optionally supports */ +/* -T WIDTH Ignored (we don't use tabs on output) */ +/* -Z SELinux mandated option, busybox optionally supports */ +#define ls_options \ + "Cadi1lgnsxAk" /* 12 opts, total 12 */ \ + IF_FEATURE_LS_FILETYPES("Fp") /* 2, 14 */ \ + IF_FEATURE_LS_RECURSIVE("R") /* 1, 15 */ \ + IF_SELINUX("Z") /* 1, 16 */ \ + "Q" /* 1, 17 */ \ + IF_FEATURE_LS_TIMESTAMPS("ctu") /* 3, 20 */ \ + IF_FEATURE_LS_SORTFILES("SXrv") /* 4, 24 */ \ + IF_FEATURE_LS_FOLLOWLINKS("LH") /* 2, 26 */ \ + IF_FEATURE_HUMAN_READABLE("h") /* 1, 27 */ \ + IF_FEATURE_LS_WIDTH("T:w:") /* 2, 29 */ + +enum { + OPT_C = (1 << 0), + OPT_a = (1 << 1), + OPT_d = (1 << 2), + OPT_i = (1 << 3), + OPT_1 = (1 << 4), + OPT_l = (1 << 5), + OPT_g = (1 << 6), + OPT_n = (1 << 7), + OPT_s = (1 << 8), + OPT_x = (1 << 9), + OPT_A = (1 << 10), + //OPT_k = (1 << 11), + + OPTBIT_F = 12, + OPTBIT_p, /* 13 */ + OPTBIT_R = OPTBIT_F + 2 * ENABLE_FEATURE_LS_FILETYPES, + OPTBIT_Z = OPTBIT_R + 1 * ENABLE_FEATURE_LS_RECURSIVE, + OPTBIT_Q = OPTBIT_Z + 1 * ENABLE_SELINUX, + OPTBIT_c, /* 17 */ + OPTBIT_t, /* 18 */ + OPTBIT_u, /* 19 */ + OPTBIT_S = OPTBIT_c + 3 * ENABLE_FEATURE_LS_TIMESTAMPS, + OPTBIT_X, /* 21 */ + OPTBIT_r, /* 22 */ + OPTBIT_v, /* 23 */ + OPTBIT_L = OPTBIT_S + 4 * ENABLE_FEATURE_LS_SORTFILES, + OPTBIT_H, /* 25 */ + OPTBIT_h = OPTBIT_L + 2 * ENABLE_FEATURE_LS_FOLLOWLINKS, + OPTBIT_T = OPTBIT_h + 1 * ENABLE_FEATURE_HUMAN_READABLE, + OPTBIT_w, /* 28 */ + OPTBIT_full_time = OPTBIT_T + 2 * ENABLE_FEATURE_LS_WIDTH, + OPTBIT_dirs_first, + OPTBIT_color, /* 31 */ + /* with long opts, we use all 32 bits */ + + OPT_F = (1 << OPTBIT_F) * ENABLE_FEATURE_LS_FILETYPES, + OPT_p = (1 << OPTBIT_p) * ENABLE_FEATURE_LS_FILETYPES, + OPT_R = (1 << OPTBIT_R) * ENABLE_FEATURE_LS_RECURSIVE, + OPT_Z = (1 << OPTBIT_Z) * ENABLE_SELINUX, + OPT_Q = (1 << OPTBIT_Q), + OPT_c = (1 << OPTBIT_c) * ENABLE_FEATURE_LS_TIMESTAMPS, + OPT_t = (1 << OPTBIT_t) * ENABLE_FEATURE_LS_TIMESTAMPS, + OPT_u = (1 << OPTBIT_u) * ENABLE_FEATURE_LS_TIMESTAMPS, + OPT_S = (1 << OPTBIT_S) * ENABLE_FEATURE_LS_SORTFILES, + OPT_X = (1 << OPTBIT_X) * ENABLE_FEATURE_LS_SORTFILES, + OPT_r = (1 << OPTBIT_r) * ENABLE_FEATURE_LS_SORTFILES, + OPT_v = (1 << OPTBIT_v) * ENABLE_FEATURE_LS_SORTFILES, + OPT_L = (1 << OPTBIT_L) * ENABLE_FEATURE_LS_FOLLOWLINKS, + OPT_H = (1 << OPTBIT_H) * ENABLE_FEATURE_LS_FOLLOWLINKS, + OPT_h = (1 << OPTBIT_h) * ENABLE_FEATURE_HUMAN_READABLE, + OPT_T = (1 << OPTBIT_T) * ENABLE_FEATURE_LS_WIDTH, + OPT_w = (1 << OPTBIT_w) * ENABLE_FEATURE_LS_WIDTH, + OPT_full_time = (1 << OPTBIT_full_time ) * ENABLE_LONG_OPTS, + OPT_dirs_first = (1 << OPTBIT_dirs_first) * ENABLE_LONG_OPTS, + OPT_color = (1 << OPTBIT_color ) * ENABLE_FEATURE_LS_COLOR, +}; + +/* + * a directory entry and its stat info + */ +struct dnode { + const char *name; /* usually basename, but think "ls -l dir/file" */ + const char *fullname; /* full name (usable for stat etc) */ + struct dnode *dn_next; /* for linked list */ + IF_SELINUX(security_context_t sid;) + smallint fname_allocated; + + /* Used to avoid re-doing [l]stat at printout stage + * if we already collected needed data in scan stage: + */ + mode_t dn_mode_lstat; /* obtained with lstat, or 0 */ + mode_t dn_mode_stat; /* obtained with stat, or 0 */ + +// struct stat dstat; +// struct stat is huge. We don't need it in full. +// At least we don't need st_dev and st_blksize, +// but there are invisible fields as well +// (such as nanosecond-resolution timespamps) +// and padding, which we also don't want to store. +// We also pre-parse dev_t dn_rdev (in glibc, it's huge). +// On 32-bit uclibc: dnode size went from 112 to 84 bytes. +// + /* Same names as in struct stat, but with dn_ instead of st_ pfx: */ + mode_t dn_mode; /* obtained with lstat OR stat, depending on -L etc */ + off_t dn_size; +#if ENABLE_FEATURE_LS_TIMESTAMPS || ENABLE_FEATURE_LS_SORTFILES + time_t dn_time; +#endif + ino_t dn_ino; + blkcnt_t dn_blocks; + nlink_t dn_nlink; + uid_t dn_uid; + gid_t dn_gid; + int dn_rdev_maj; + int dn_rdev_min; +// dev_t dn_dev; +// blksize_t dn_blksize; +}; + +struct globals { +#if ENABLE_FEATURE_LS_COLOR + smallint show_color; +# define G_show_color (G.show_color) +#else +# define G_show_color 0 +#endif + smallint exit_code; + smallint show_dirname; +#if ENABLE_FEATURE_LS_WIDTH + unsigned terminal_width; +# define G_terminal_width (G.terminal_width) +#else +# define G_terminal_width TERMINAL_WIDTH +#endif +#if ENABLE_FEATURE_LS_TIMESTAMPS + /* Do time() just once. Saves one syscall per file for "ls -l" */ + time_t current_time_t; +#endif +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { \ + setup_common_bufsiz(); \ + /* we have to zero it out because of NOEXEC */ \ + memset(&G, 0, sizeof(G)); \ + IF_FEATURE_LS_WIDTH(G_terminal_width = TERMINAL_WIDTH;) \ + IF_FEATURE_LS_TIMESTAMPS(time(&G.current_time_t);) \ +} while (0) + +#define ESC "\033" + + +/*** Output code ***/ + + +/* FYI type values: 1:fifo 2:char 4:dir 6:blk 8:file 10:link 12:socket + * (various wacky OSes: 13:Sun door 14:BSD whiteout 5:XENIX named file + * 3/7:multiplexed char/block device) + * and we use 0 for unknown and 15 for executables (see below) */ +#define TYPEINDEX(mode) (((mode) >> 12) & 0x0f) +/* un fi chr - dir - blk - file - link - sock - - exe */ +#define APPCHAR(mode) ("\0""|""\0""\0""/""\0""\0""\0""\0""\0""@""\0""=""\0""\0""\0" [TYPEINDEX(mode)]) +/* 036 black foreground 050 black background + 037 red foreground 051 red background + 040 green foreground 052 green background + 041 brown foreground 053 brown background + 042 blue foreground 054 blue background + 043 magenta (purple) foreground 055 magenta background + 044 cyan (light blue) foreground 056 cyan background + 045 gray foreground 057 white background +*/ +#define COLOR(mode) ( \ + /*un fi chr - dir - blk - file - link - sock - - exe */ \ + "\037\043\043\045\042\045\043\043\000\045\044\045\043\045\045\040" \ + [TYPEINDEX(mode)]) +/* Select normal (0) [actually "reset all"] or bold (1) + * (other attributes are 2:dim 4:underline 5:blink 7:reverse, + * let's use 7 for "impossible" types, just for fun) + * Note: coreutils 6.9 uses inverted red for setuid binaries. + */ +#define ATTR(mode) ( \ + /*un fi chr - dir - blk - file- link- sock- - exe */ \ + "\01\00\01\07\01\07\01\07\00\07\01\07\01\07\07\01" \ + [TYPEINDEX(mode)]) + +#if ENABLE_FEATURE_LS_COLOR +/* mode of zero is interpreted as "unknown" (stat failed) */ +static char fgcolor(mode_t mode) +{ + if (S_ISREG(mode) && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return COLOR(0xF000); /* File is executable ... */ + return COLOR(mode); +} +static char bold(mode_t mode) +{ + if (S_ISREG(mode) && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return ATTR(0xF000); /* File is executable ... */ + return ATTR(mode); +} +#endif + +#if ENABLE_FEATURE_LS_FILETYPES +static char append_char(mode_t mode) +{ + if (!(option_mask32 & (OPT_F|OPT_p))) + return '\0'; + + if (S_ISDIR(mode)) + return '/'; + if (!(option_mask32 & OPT_F)) + return '\0'; + if (S_ISREG(mode) && (mode & (S_IXUSR | S_IXGRP | S_IXOTH))) + return '*'; + return APPCHAR(mode); +} +#endif + +static unsigned calc_name_len(const char *name) +{ + unsigned len; + uni_stat_t uni_stat; + + // TODO: quote tab as \t, etc, if -Q + name = printable_string2(&uni_stat, name); + + if (!(option_mask32 & OPT_Q)) { + return uni_stat.unicode_width; + } + + len = 2 + uni_stat.unicode_width; + while (*name) { + if (*name == '"' || *name == '\\') { + len++; + } + name++; + } + return len; +} + +/* Return the number of used columns. + * Note that only columnar output uses return value. + * -l and -1 modes don't care. + * coreutils 7.2 also supports: + * ls -b (--escape) = octal escapes (although it doesn't look like working) + * ls -N (--literal) = not escape at all + */ +static unsigned print_name(const char *name) +{ + unsigned len; + uni_stat_t uni_stat; + + // TODO: quote tab as \t, etc, if -Q + name = printable_string2(&uni_stat, name); + + if (!(option_mask32 & OPT_Q)) { + fputs_stdout(name); + return uni_stat.unicode_width; + } + + len = 2 + uni_stat.unicode_width; + putchar('"'); + while (*name) { + if (*name == '"' || *name == '\\') { + putchar('\\'); + len++; + } + putchar(*name); + name++; + } + putchar('"'); + return len; +} + +/* Return the number of used columns. + * Note that only columnar output uses return value, + * -l and -1 modes don't care. + */ +static NOINLINE unsigned display_single(const struct dnode *dn) +{ + unsigned column = 0; + char *lpath; + int opt; +#if ENABLE_FEATURE_LS_FILETYPES || ENABLE_FEATURE_LS_COLOR + struct stat statbuf; +#endif +#if ENABLE_FEATURE_LS_FILETYPES + char append = append_char(dn->dn_mode); +#endif + + opt = option_mask32; + + /* Do readlink early, so that if it fails, error message + * does not appear *inside* the "ls -l" line */ + lpath = NULL; + if (opt & OPT_l) + if (S_ISLNK(dn->dn_mode)) + lpath = xmalloc_readlink_or_warn(dn->fullname); + + if (opt & OPT_i) /* show inode# */ + column += printf("%7llu ", (long long) dn->dn_ino); + if (opt & OPT_s) { /* show allocated blocks */ + if (opt & OPT_h) { + column += printf("%"HUMAN_READABLE_MAX_WIDTH_STR"s ", + /* print size, show one fractional, use suffixes */ + make_human_readable_str((off_t)dn->dn_blocks << 9, 1, 0) + ); + } else { + column += printf("%6"OFF_FMT"u ", (off_t)(dn->dn_blocks >> 1)); + } + } + if (opt & OPT_l) { + /* long listing: show mode */ + char modestr[12]; + column += printf("%-10s ", bb_mode_string(modestr, dn->dn_mode)); + /* long listing: show number of links */ + column += printf("%4lu ", (long) dn->dn_nlink); + /* long listing: show user/group */ + if (opt & OPT_n) { + if (opt & OPT_g) + column += printf("%-8u ", (int) dn->dn_gid); + else + column += printf("%-8u %-8u ", + (int) dn->dn_uid, + (int) dn->dn_gid); + } +#if ENABLE_FEATURE_LS_USERNAME + else { + if (opt & OPT_g) { + column += printf("%-8s ", + get_cached_groupname(dn->dn_gid)); + } else { + column += printf("%-8s %-8s ", + get_cached_username(dn->dn_uid), + get_cached_groupname(dn->dn_gid)); + } + } +#endif +#if ENABLE_SELINUX + } + if (opt & OPT_Z) { + column += printf("%-32s ", dn->sid ? dn->sid : "?"); + freecon(dn->sid); + } + if (opt & OPT_l) { +#endif + /* long listing: show size */ + if (S_ISBLK(dn->dn_mode) || S_ISCHR(dn->dn_mode)) { + column += printf("%4u, %3u ", + dn->dn_rdev_maj, + dn->dn_rdev_min); + } else { + if (opt & OPT_h) { + column += printf("%"HUMAN_READABLE_MAX_WIDTH_STR"s ", + /* print size, show one fractional, use suffixes */ + make_human_readable_str(dn->dn_size, 1, 0) + ); + } else { + column += printf("%9"OFF_FMT"u ", dn->dn_size); + } + } +#if ENABLE_FEATURE_LS_TIMESTAMPS + /* long listing: show {m,c,a}time */ + if (opt & OPT_full_time) { /* --full-time */ + /* coreutils 8.4 ls --full-time prints: + * 2009-07-13 17:49:27.000000000 +0200 + * we don't show fractional seconds. + */ + char buf[sizeof("YYYY-mm-dd HH:MM:SS TIMEZONE")]; + strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S %z", + localtime(&dn->dn_time)); + column += printf("%s ", buf); + } else { /* ordinary time format */ + /* G.current_time_t is ~== time(NULL) */ + char *filetime = ctime(&dn->dn_time); + /* filetime's format: "Wed Jun 30 21:49:08 1993\n" */ + time_t age = G.current_time_t - dn->dn_time; + if (age < 3600L * 24 * 365 / 2 && age > -15 * 60) { + /* less than 6 months old */ + /* "mmm dd hh:mm " */ + printf("%.12s ", filetime + 4); + } else { + /* "mmm dd yyyy " */ + /* "mmm dd yyyyy " after year 9999 :) */ + strchr(filetime + 20, '\n')[0] = ' '; + printf("%.7s%6s", filetime + 4, filetime + 20); + } + column += 13; + } +#endif + } + +#if ENABLE_FEATURE_LS_COLOR + if (G_show_color) { + mode_t mode = dn->dn_mode_lstat; + if (!mode) + if (lstat(dn->fullname, &statbuf) == 0) + mode = statbuf.st_mode; + printf(ESC"[%u;%um", bold(mode), fgcolor(mode)); + } +#endif + column += print_name(dn->name); + if (G_show_color) { + printf(ESC"[m"); + } + + if (lpath) { + printf(" -> "); +#if ENABLE_FEATURE_LS_FILETYPES || ENABLE_FEATURE_LS_COLOR + if ((opt & (OPT_F|OPT_p)) + || G_show_color + ) { + mode_t mode = dn->dn_mode_stat; + if (!mode) + if (stat(dn->fullname, &statbuf) == 0) + mode = statbuf.st_mode; +# if ENABLE_FEATURE_LS_FILETYPES + append = append_char(mode); +# endif +# if ENABLE_FEATURE_LS_COLOR + if (G_show_color) { + printf(ESC"[%u;%um", bold(mode), fgcolor(mode)); + } +# endif + } +#endif + column += print_name(lpath) + 4; + free(lpath); + if (G_show_color) { + printf(ESC"[m"); + } + } +#if ENABLE_FEATURE_LS_FILETYPES + if (opt & (OPT_F|OPT_p)) { + if (append) { + putchar(append); + column++; + } + } +#endif + + return column; +} + +static void display_files(struct dnode **dn, unsigned nfiles) +{ + unsigned i, ncols, nrows, row, nc; + unsigned column; + unsigned nexttab; + unsigned column_width = 0; /* used only by coulmnal output */ + + if (option_mask32 & (OPT_l|OPT_1)) { + ncols = 1; + } else { + /* find the longest file name, use that as the column width */ + for (i = 0; dn[i]; i++) { + int len = calc_name_len(dn[i]->name); + if (column_width < len) + column_width = len; + } + column_width += 2 + + ((option_mask32 & OPT_Z) ? 33 : 0) /* context width */ + + ((option_mask32 & OPT_i) ? 8 : 0) /* inode# width */ + + ((option_mask32 & OPT_s) ? 5 : 0) /* "alloc block" width */ + ; + ncols = (unsigned)G_terminal_width / column_width; + } + + if (ncols > 1) { + nrows = nfiles / ncols; + if (nrows * ncols < nfiles) + nrows++; /* round up fractionals */ + } else { + nrows = nfiles; + ncols = 1; + } + + column = 0; + nexttab = 0; + for (row = 0; row < nrows; row++) { + for (nc = 0; nc < ncols; nc++) { + /* reach into the array based on the column and row */ + if (option_mask32 & OPT_x) + i = (row * ncols) + nc; /* display across row */ + else + i = (nc * nrows) + row; /* display by column */ + if (i < nfiles) { + if (column > 0) { + nexttab -= column; + printf("%*s", nexttab, ""); + column += nexttab; + } + nexttab = column + column_width; + column += display_single(dn[i]); + } + } + putchar('\n'); + column = 0; + } +} + + +/*** Dir scanning code ***/ + +static struct dnode *my_stat(const char *fullname, const char *name, int force_follow) +{ + struct stat statbuf; + struct dnode *cur; + + cur = xzalloc(sizeof(*cur)); + cur->fullname = fullname; + cur->name = name; + + if ((option_mask32 & OPT_L) || force_follow) { +#if ENABLE_SELINUX + if (option_mask32 & OPT_Z) { + getfilecon(fullname, &cur->sid); + } +#endif + if (stat(fullname, &statbuf)) { + bb_simple_perror_msg(fullname); + G.exit_code = EXIT_FAILURE; + free(cur); + return NULL; + } + cur->dn_mode_stat = statbuf.st_mode; + } else { +#if ENABLE_SELINUX + if (option_mask32 & OPT_Z) { + lgetfilecon(fullname, &cur->sid); + } +#endif + if (lstat(fullname, &statbuf)) { + bb_simple_perror_msg(fullname); + G.exit_code = EXIT_FAILURE; + free(cur); + return NULL; + } + cur->dn_mode_lstat = statbuf.st_mode; + } + + /* cur->dstat = statbuf: */ + cur->dn_mode = statbuf.st_mode ; + cur->dn_size = statbuf.st_size ; +#if ENABLE_FEATURE_LS_TIMESTAMPS || ENABLE_FEATURE_LS_SORTFILES + cur->dn_time = statbuf.st_mtime ; + if (option_mask32 & OPT_u) + cur->dn_time = statbuf.st_atime; + if (option_mask32 & OPT_c) + cur->dn_time = statbuf.st_ctime; +#endif + cur->dn_ino = statbuf.st_ino ; + cur->dn_blocks = statbuf.st_blocks; + cur->dn_nlink = statbuf.st_nlink ; + cur->dn_uid = statbuf.st_uid ; + cur->dn_gid = statbuf.st_gid ; + cur->dn_rdev_maj = major(statbuf.st_rdev); + cur->dn_rdev_min = minor(statbuf.st_rdev); + + return cur; +} + +static unsigned count_dirs(struct dnode **dn, int which) +{ + unsigned dirs, all; + + if (!dn) + return 0; + + dirs = all = 0; + for (; *dn; dn++) { + const char *name; + + all++; + if (!S_ISDIR((*dn)->dn_mode)) + continue; + + name = (*dn)->name; + if (which != SPLIT_SUBDIR /* if not requested to skip . / .. */ + /* or if it's not . or .. */ + || name[0] != '.' + || (name[1] && (name[1] != '.' || name[2])) + ) { + dirs++; + } + } + return which != SPLIT_FILE ? dirs : all - dirs; +} + +/* get memory to hold an array of pointers */ +static struct dnode **dnalloc(unsigned num) +{ + if (num < 1) + return NULL; + + num++; /* so that we have terminating NULL */ + return xzalloc(num * sizeof(struct dnode *)); +} + +#if ENABLE_FEATURE_LS_RECURSIVE +static void dfree(struct dnode **dnp) +{ + unsigned i; + + if (dnp == NULL) + return; + + for (i = 0; dnp[i]; i++) { + struct dnode *cur = dnp[i]; + if (cur->fname_allocated) + free((char*)cur->fullname); + free(cur); + } + free(dnp); +} +#else +#define dfree(...) ((void)0) +#endif + +/* Returns NULL-terminated malloced vector of pointers (or NULL) */ +static struct dnode **splitdnarray(struct dnode **dn, int which) +{ + unsigned dncnt, d; + struct dnode **dnp; + + if (dn == NULL) + return NULL; + + /* count how many dirs or files there are */ + dncnt = count_dirs(dn, which); + + /* allocate a file array and a dir array */ + dnp = dnalloc(dncnt); + + /* copy the entrys into the file or dir array */ + for (d = 0; *dn; dn++) { + if (S_ISDIR((*dn)->dn_mode)) { + const char *name; + + if (which == SPLIT_FILE) + continue; + + name = (*dn)->name; + if ((which & SPLIT_DIR) /* any dir... */ + /* ... or not . or .. */ + || name[0] != '.' + || (name[1] && (name[1] != '.' || name[2])) + ) { + dnp[d++] = *dn; + } + } else + if (which == SPLIT_FILE) { + dnp[d++] = *dn; + } + } + return dnp; +} + +#if ENABLE_FEATURE_LS_SORTFILES +static int sortcmp(const void *a, const void *b) +{ + struct dnode *d1 = *(struct dnode **)a; + struct dnode *d2 = *(struct dnode **)b; + unsigned opt = option_mask32; + off_t dif; + + dif = 0; /* assume sort by name */ + // TODO: use pre-initialized function pointer + // instead of branch forest + if (opt & OPT_dirs_first) { + dif = S_ISDIR(d2->dn_mode) - S_ISDIR(d1->dn_mode); + if (dif != 0) + goto maybe_invert_and_ret; + } + + if (opt & OPT_S) { /* sort by size */ + dif = (d2->dn_size - d1->dn_size); + } else + if (opt & OPT_t) { /* sort by time */ + dif = (d2->dn_time - d1->dn_time); + } else +#if defined(HAVE_STRVERSCMP) && HAVE_STRVERSCMP == 1 + if (opt & OPT_v) { /* sort by version */ + dif = strverscmp(d1->name, d2->name); + } else +#endif + if (opt & OPT_X) { /* sort by extension */ + dif = strcmp(strchrnul(d1->name, '.'), strchrnul(d2->name, '.')); + } + if (dif == 0) { + /* sort by name, use as tie breaker for other sorts */ + if (ENABLE_LOCALE_SUPPORT) + dif = strcoll(d1->name, d2->name); + else + dif = strcmp(d1->name, d2->name); + } else { + /* Make dif fit into an int */ + if (sizeof(dif) > sizeof(int)) { + enum { BITS_TO_SHIFT = 8 * (sizeof(dif) - sizeof(int)) }; + /* shift leaving only "int" worth of bits */ + /* (this requires dif != 0, and here it is nonzero) */ + dif = 1 | (int)((uoff_t)dif >> BITS_TO_SHIFT); + } + } + maybe_invert_and_ret: + return (opt & OPT_r) ? -(int)dif : (int)dif; +} + +static void dnsort(struct dnode **dn, int size) +{ + qsort(dn, size, sizeof(*dn), sortcmp); +} + +static void sort_and_display_files(struct dnode **dn, unsigned nfiles) +{ + dnsort(dn, nfiles); + display_files(dn, nfiles); +} +#else +# define dnsort(dn, size) ((void)0) +# define sort_and_display_files(dn, nfiles) display_files(dn, nfiles) +#endif + +/* Returns NULL-terminated malloced vector of pointers (or NULL) */ +static struct dnode **scan_one_dir(const char *path, unsigned *nfiles_p) +{ + struct dnode *dn, *cur, **dnp; + struct dirent *entry; + DIR *dir; + unsigned i, nfiles; + + *nfiles_p = 0; + dir = warn_opendir(path); + if (dir == NULL) { + G.exit_code = EXIT_FAILURE; + return NULL; /* could not open the dir */ + } + dn = NULL; + nfiles = 0; + while ((entry = readdir(dir)) != NULL) { + char *fullname; + + /* are we going to list the file- it may be . or .. or a hidden file */ + if (entry->d_name[0] == '.') { + if (!(option_mask32 & (OPT_a|OPT_A))) + continue; /* skip all dotfiles if no -a/-A */ + if (!(option_mask32 & OPT_a) + && (!entry->d_name[1] || (entry->d_name[1] == '.' && !entry->d_name[2])) + ) { + continue; /* if only -A, skip . and .. but show other dotfiles */ + } + } + fullname = concat_path_file(path, entry->d_name); + cur = my_stat(fullname, bb_basename(fullname), 0); + if (!cur) { + free(fullname); + continue; + } + cur->fname_allocated = 1; + cur->dn_next = dn; + dn = cur; + nfiles++; + } + closedir(dir); + + if (dn == NULL) + return NULL; + + /* now that we know how many files there are + * allocate memory for an array to hold dnode pointers + */ + *nfiles_p = nfiles; + dnp = dnalloc(nfiles); + for (i = 0; /* i < nfiles - detected via !dn below */; i++) { + dnp[i] = dn; /* save pointer to node in array */ + dn = dn->dn_next; + if (!dn) + break; + } + + return dnp; +} + +#if ENABLE_DESKTOP +/* http://www.opengroup.org/onlinepubs/9699919799/utilities/ls.html + * If any of the -l, -n, -s options is specified, each list + * of files within the directory shall be preceded by a + * status line indicating the number of file system blocks + * occupied by files in the directory in 512-byte units if + * the -k option is not specified, or 1024-byte units if the + * -k option is specified, rounded up to the next integral + * number of units. + */ +/* by Jorgen Overgaard (jorgen AT antistaten.se) */ +static off_t calculate_blocks(struct dnode **dn) +{ + uoff_t blocks = 1; + if (dn) { + while (*dn) { + /* st_blocks is in 512 byte blocks */ + blocks += (*dn)->dn_blocks; + dn++; + } + } + + /* Even though standard says use 512 byte blocks, coreutils use 1k */ + /* Actually, we round up by calculating (blocks + 1) / 2, + * "+ 1" was done when we initialized blocks to 1 */ + return blocks >> 1; +} +#endif + +static void scan_and_display_dirs_recur(struct dnode **dn, int first) +{ + unsigned nfiles; + struct dnode **subdnp; + + for (; *dn; dn++) { + if (G.show_dirname || (option_mask32 & OPT_R)) { + if (!first) + bb_putchar('\n'); + first = 0; + printf("%s:\n", (*dn)->fullname); + } + subdnp = scan_one_dir((*dn)->fullname, &nfiles); +#if ENABLE_DESKTOP + if (option_mask32 & (OPT_s|OPT_l)) { + if (option_mask32 & OPT_h) { + printf("total %-"HUMAN_READABLE_MAX_WIDTH_STR"s\n", + /* print size, no fractions, use suffixes */ + make_human_readable_str(calculate_blocks(subdnp) * 1024, + 0, 0) + ); + } else { + printf("total %"OFF_FMT"u\n", calculate_blocks(subdnp)); + } + } +#endif + if (nfiles > 0) { + /* list all files at this level */ + sort_and_display_files(subdnp, nfiles); + + if (ENABLE_FEATURE_LS_RECURSIVE + && (option_mask32 & OPT_R) + ) { + struct dnode **dnd; + unsigned dndirs; + /* recursive - list the sub-dirs */ + dnd = splitdnarray(subdnp, SPLIT_SUBDIR); + dndirs = count_dirs(subdnp, SPLIT_SUBDIR); + if (dndirs > 0) { + dnsort(dnd, dndirs); + scan_and_display_dirs_recur(dnd, 0); + /* free the array of dnode pointers to the dirs */ + free(dnd); + } + } + /* free the dnodes and the fullname mem */ + dfree(subdnp); + } + } +} + + +int ls_main(int argc UNUSED_PARAM, char **argv) +{ /* ^^^^^^^^^^^^^^^^^ note: if FTPD, argc can be wrong, see ftpd.c */ + struct dnode **dnd; + struct dnode **dnf; + struct dnode **dnp; + struct dnode *dn; + struct dnode *cur; + unsigned opt; + unsigned nfiles; + unsigned dnfiles; + unsigned dndirs; + unsigned i; +#if ENABLE_FEATURE_LS_COLOR + /* colored LS support by JaWi, janwillem.janssen@lxtreme.nl */ + /* coreutils 6.10: + * # ls --color=BOGUS + * ls: invalid argument 'BOGUS' for '--color' + * Valid arguments are: + * 'always', 'yes', 'force' + * 'never', 'no', 'none' + * 'auto', 'tty', 'if-tty' + * (and substrings: "--color=alwa" work too) + */ + static const char color_str[] ALIGN1 = + "always\0""yes\0""force\0" + "auto\0""tty\0""if-tty\0"; + /* need to initialize since --color has _an optional_ argument */ + const char *color_opt = color_str; /* "always" */ +#endif +#if ENABLE_LONG_OPTS + static const char ls_longopts[] ALIGN1 = + "full-time\0" No_argument "\xff" + "group-directories-first\0" No_argument "\xfe" + IF_FEATURE_LS_COLOR("color\0" Optional_argument "\xfd") + ; +#endif + + INIT_G(); + + init_unicode(); + +#if ENABLE_FEATURE_LS_WIDTH + /* obtain the terminal width */ + G_terminal_width = get_terminal_width(STDIN_FILENO); + /* go one less... */ + G_terminal_width--; +#endif + + /* process options */ + opt = getopt32long(argv, "^" + ls_options + "\0" + /* -n and -g imply -l */ + "nl:gl" + /* --full-time implies -l */ + IF_FEATURE_LS_TIMESTAMPS(IF_LONG_OPTS(":\xff""l")) + /* http://pubs.opengroup.org/onlinepubs/9699919799/utilities/ls.html: + * in some pairs of opts, only last one takes effect: + */ + IF_FEATURE_LS_TIMESTAMPS(IF_FEATURE_LS_SORTFILES(":t-S:S-t")) /* time/size */ + // ":m-l:l-m" - we don't have -m + IF_FEATURE_LS_FOLLOWLINKS(":H-L:L-H") + ":C-xl:x-Cl:l-xC" /* bycols/bylines/long */ + ":C-1:1-C" /* bycols/oneline */ + ":x-1:1-x" /* bylines/oneline (not in SuS, but in GNU coreutils 8.4) */ + IF_FEATURE_LS_TIMESTAMPS(":c-u:u-c") /* mtime/atime */ + /* -w NUM: */ + IF_FEATURE_LS_WIDTH(":w+") + , ls_longopts + IF_FEATURE_LS_WIDTH(, /*-T*/ NULL, /*-w*/ &G_terminal_width) + IF_FEATURE_LS_COLOR(, &color_opt) + ); +#if 0 /* option bits debug */ + bb_error_msg("opt:0x%08x l:%x H:%x color:%x dirs:%x", opt, OPT_l, OPT_H, OPT_color, OPT_dirs_first); + if (opt & OPT_c ) bb_error_msg("-c"); + if (opt & OPT_l ) bb_error_msg("-l"); + if (opt & OPT_H ) bb_error_msg("-H"); + if (opt & OPT_color ) bb_error_msg("--color"); + if (opt & OPT_dirs_first) bb_error_msg("--group-directories-first"); + if (opt & OPT_full_time ) bb_error_msg("--full-time"); + exit(0); +#endif + +#if ENABLE_SELINUX + if (opt & OPT_Z) { + if (!is_selinux_enabled()) + option_mask32 &= ~OPT_Z; + } +#endif + +#if ENABLE_FEATURE_LS_COLOR + /* set G_show_color = 1/0 */ + if (ENABLE_FEATURE_LS_COLOR_IS_DEFAULT && !is_TERM_dumb()) { + char *p = getenv("LS_COLORS"); + /* LS_COLORS is unset, or (not empty && not "none") ? */ + if (!p || (p[0] && strcmp(p, "none") != 0)) { + if (isatty(STDOUT_FILENO)) { + /* check isatty() last because it's expensive (syscall) */ + G_show_color = 1; + } + } + } + if (opt & OPT_color) { + if (color_opt[0] == 'n') + G_show_color = 0; + else switch (index_in_substrings(color_str, color_opt)) { + case 3: + case 4: + case 5: + if (!is_TERM_dumb() && isatty(STDOUT_FILENO)) { + case 0: + case 1: + case 2: + G_show_color = 1; + } + } + } +#endif + + /* sort out which command line options take precedence */ + if (ENABLE_FEATURE_LS_RECURSIVE && (opt & OPT_d)) + option_mask32 &= ~OPT_R; /* no recurse if listing only dir */ + if (!(opt & OPT_l)) { /* not -l? */ + if (ENABLE_FEATURE_LS_TIMESTAMPS && ENABLE_FEATURE_LS_SORTFILES) { + /* when to sort by time? -t[cu] sorts by time even with -l */ + /* (this is achieved by opt_flags[] element for -t) */ + /* without -l, bare -c or -u enable sort too */ + /* (with -l, bare -c or -u just select which time to show) */ + if (opt & (OPT_c|OPT_u)) { + option_mask32 |= OPT_t; + } + } + } + + /* choose a display format if one was not already specified by an option */ + if (!(option_mask32 & (OPT_l|OPT_1|OPT_x|OPT_C))) + option_mask32 |= (isatty(STDOUT_FILENO) ? OPT_C : OPT_1); + + if (ENABLE_FTPD && applet_name[0] == 'f') { + /* ftpd secret backdoor. dirs first are much nicer */ + option_mask32 |= OPT_dirs_first; + } + + argv += optind; + if (!argv[0]) + *--argv = (char*)"."; + + if (argv[1]) + G.show_dirname = 1; /* 2 or more items? label directories */ + + /* stuff the command line file names into a dnode array */ + dn = NULL; + nfiles = 0; + do { + cur = my_stat(*argv, *argv, + /* follow links on command line unless -l, -i, -s or -F: */ + !(option_mask32 & (OPT_l|OPT_i|OPT_s|OPT_F)) + /* ... or if -H: */ + || (option_mask32 & OPT_H) + /* ... or if -L, but my_stat always follows links if -L */ + ); + argv++; + if (!cur) + continue; + /*cur->fname_allocated = 0; - already is */ + cur->dn_next = dn; + dn = cur; + nfiles++; + } while (*argv); + + /* nfiles _may_ be 0 here - try "ls doesnt_exist" */ + if (nfiles == 0) + return G.exit_code; + + /* now that we know how many files there are + * allocate memory for an array to hold dnode pointers + */ + dnp = dnalloc(nfiles); + for (i = 0; /* i < nfiles - detected via !dn below */; i++) { + dnp[i] = dn; /* save pointer to node in array */ + dn = dn->dn_next; + if (!dn) + break; + } + + if (option_mask32 & OPT_d) { + sort_and_display_files(dnp, nfiles); + } else { + dnd = splitdnarray(dnp, SPLIT_DIR); + dnf = splitdnarray(dnp, SPLIT_FILE); + dndirs = count_dirs(dnp, SPLIT_DIR); + dnfiles = nfiles - dndirs; + if (dnfiles > 0) { + sort_and_display_files(dnf, dnfiles); + if (ENABLE_FEATURE_CLEAN_UP) + free(dnf); + } + if (dndirs > 0) { + dnsort(dnd, dndirs); + scan_and_display_dirs_recur(dnd, dnfiles == 0); + if (ENABLE_FEATURE_CLEAN_UP) + free(dnd); + } + } + + if (ENABLE_FEATURE_CLEAN_UP) + dfree(dnp); + return G.exit_code; +} diff --git a/busybox-1_37_0/coreutils/md5_sha1_sum.c b/busybox-1_37_0/coreutils/md5_sha1_sum.c new file mode 100644 index 000000000..978d328f1 --- /dev/null +++ b/busybox-1_37_0/coreutils/md5_sha1_sum.c @@ -0,0 +1,361 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2003 Glenn L. McGrath + * Copyright (C) 2003-2004 Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config MD5SUM +//config: bool "md5sum (6.7 kb)" +//config: default y +//config: help +//config: Compute and check MD5 message digest +//config: +//config:config SHA1SUM +//config: bool "sha1sum (6.7 kb)" +//config: default y +//config: help +//config: Compute and check SHA1 message digest +//config: +//config:config SHA256SUM +//config: bool "sha256sum (8.2 kb)" +//config: default y +//config: help +//config: Compute and check SHA256 message digest +//config: +//config:config SHA512SUM +//config: bool "sha512sum (7.3 kb)" +//config: default y +//config: help +//config: Compute and check SHA512 message digest +//config: +//config:config SHA3SUM +//config: bool "sha3sum (6.3 kb)" +//config: default y +//config: help +//config: Compute and check SHA3 message digest +//config: +//config:comment "Common options for md5sum, sha1sum, sha256sum, sha512sum, sha3sum" +//config: depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM || SHA3SUM +//config: +//config:config FEATURE_MD5_SHA1_SUM_CHECK +//config: bool "Enable -c, -s and -w options" +//config: default y +//config: depends on MD5SUM || SHA1SUM || SHA256SUM || SHA512SUM || SHA3SUM +//config: help +//config: Enabling the -c options allows files to be checked +//config: against pre-calculated hash values. +//config: -s and -w are useful options when verifying checksums. + +//applet:IF_MD5SUM(APPLET_NOEXEC(md5sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, md5sum)) +//applet:IF_SHA1SUM(APPLET_NOEXEC(sha1sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha1sum)) +//applet:IF_SHA3SUM(APPLET_NOEXEC(sha3sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha3sum)) +//applet:IF_SHA256SUM(APPLET_NOEXEC(sha256sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha256sum)) +//applet:IF_SHA512SUM(APPLET_NOEXEC(sha512sum, md5_sha1_sum, BB_DIR_USR_BIN, BB_SUID_DROP, sha512sum)) + +//kbuild:lib-$(CONFIG_MD5SUM) += md5_sha1_sum.o +//kbuild:lib-$(CONFIG_SHA1SUM) += md5_sha1_sum.o +//kbuild:lib-$(CONFIG_SHA256SUM) += md5_sha1_sum.o +//kbuild:lib-$(CONFIG_SHA512SUM) += md5_sha1_sum.o +//kbuild:lib-$(CONFIG_SHA3SUM) += md5_sha1_sum.o + +//usage:#define md5sum_trivial_usage +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK("[-c[sw]] ")"[FILE]..." +//usage:#define md5sum_full_usage "\n\n" +//usage: "Print" IF_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " MD5 checksums" +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK( "\n" +//usage: "\n -c Check sums against list in FILEs" +//usage: "\n -s Don't output anything, status code shows success" +//usage: "\n -w Warn about improperly formatted checksum lines" +//usage: ) +//usage: +//usage:#define md5sum_example_usage +//usage: "$ md5sum < busybox\n" +//usage: "6fd11e98b98a58f64ff3398d7b324003\n" +//usage: "$ md5sum busybox\n" +//usage: "6fd11e98b98a58f64ff3398d7b324003 busybox\n" +//usage: "$ md5sum -c -\n" +//usage: "6fd11e98b98a58f64ff3398d7b324003 busybox\n" +//usage: "busybox: OK\n" +//usage: "^D\n" +//usage: +//usage:#define sha1sum_trivial_usage +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK("[-c[sw]] ")"[FILE]..." +//usage:#define sha1sum_full_usage "\n\n" +//usage: "Print" IF_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " SHA1 checksums" +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK( "\n" +//usage: "\n -c Check sums against list in FILEs" +//usage: "\n -s Don't output anything, status code shows success" +//usage: "\n -w Warn about improperly formatted checksum lines" +//usage: ) +//usage: +//usage:#define sha256sum_trivial_usage +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK("[-c[sw]] ")"[FILE]..." +//usage:#define sha256sum_full_usage "\n\n" +//usage: "Print" IF_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " SHA256 checksums" +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK( "\n" +//usage: "\n -c Check sums against list in FILEs" +//usage: "\n -s Don't output anything, status code shows success" +//usage: "\n -w Warn about improperly formatted checksum lines" +//usage: ) +//usage: +//usage:#define sha512sum_trivial_usage +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK("[-c[sw]] ")"[FILE]..." +//usage:#define sha512sum_full_usage "\n\n" +//usage: "Print" IF_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " SHA512 checksums" +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK( "\n" +//usage: "\n -c Check sums against list in FILEs" +//usage: "\n -s Don't output anything, status code shows success" +//usage: "\n -w Warn about improperly formatted checksum lines" +//usage: ) +//usage: +//usage:#define sha3sum_trivial_usage +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK("[-c[sw]] ")"[-a BITS] [FILE]..." +//usage:#define sha3sum_full_usage "\n\n" +//usage: "Print" IF_FEATURE_MD5_SHA1_SUM_CHECK(" or check") " SHA3 checksums" +//usage: IF_FEATURE_MD5_SHA1_SUM_CHECK( "\n" +//usage: "\n -c Check sums against list in FILEs" +//usage: "\n -s Don't output anything, status code shows success" +//usage: "\n -w Warn about improperly formatted checksum lines" +//usage: ) +//usage: "\n -a BITS 224 (default), 256, 384, 512" + +//FIXME: GNU coreutils 8.25 has no -s option, it has only these two long opts: +// --quiet don't print OK for each successfully verified file +// --status don't output anything, status code shows success + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + +enum { + /* 4th letter of applet_name is... */ + HASH_MD5 = 's', /* "md5>s= 1600/2 /* input block can't be <= 0 */ + || sha3_width == 0 /* hash len can't be 0 */ + || (sha3_width & 0x1f) /* should be multiple of 32 */ + /* (because input uses up to 8 byte wide word XORs. 32/4=8) */ + ) { + bb_error_msg_and_die("bad -a%u", sha3_width); + } + sha3_width /= 4; + context.sha3.input_block_bytes = 1600/8 - sha3_width; + hash_len = sha3_width/2; + } +#endif + else { + xfunc_die(); /* can't reach this */ + } + + { + while ((count = safe_read(src_fd, in_buf, BUFSZ)) > 0) { + update(&context, in_buf, count); + } + hash_value = NULL; + if (count < 0) + bb_perror_msg("can't read '%s'", filename); + else /* count == 0 */ { + final(&context, in_buf); + hash_value = hash_bin_to_hex(in_buf, hash_len); + } + } + + if (src_fd != STDIN_FILENO) { + close(src_fd); + } + + return hash_value; +} + +int md5_sha1_sum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int md5_sha1_sum_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned char *in_buf; + int return_value = EXIT_SUCCESS; + unsigned flags; +#if ENABLE_SHA3SUM + unsigned sha3_width = 224; +#endif + + if (ENABLE_FEATURE_MD5_SHA1_SUM_CHECK) { + /* -b "binary", -t "text" are ignored (shaNNNsum compat) */ + /* -s and -w require -c */ +#if ENABLE_SHA3SUM + if (applet_name[3] == HASH_SHA3) + flags = getopt32(argv, "^" "scwbta:+" "\0" "s?c:w?c", &sha3_width); + else +#endif + flags = getopt32(argv, "^" "scwbt" "\0" "s?c:w?c"); + } else { +#if ENABLE_SHA3SUM + if (applet_name[3] == HASH_SHA3) + getopt32(argv, "a:+", &sha3_width); + else +#endif + getopt32(argv, ""); + } + argv += optind; + //argc -= optind; + if (!*argv) + *--argv = (char*)"-"; + + /* The buffer is not alloc/freed for each input file: + * for big values of COPYBUF_KB, this helps to keep its pages + * pre-faulted and possibly even fully cached on local CPU. + */ + in_buf = xmalloc(BUFSZ); + + do { + if (ENABLE_FEATURE_MD5_SHA1_SUM_CHECK && (flags & FLAG_CHECK)) { + FILE *pre_computed_stream; + char *line; + int count_total = 0; + int count_failed = 0; + + pre_computed_stream = xfopen_stdin(*argv); + + while ((line = xmalloc_fgetline(pre_computed_stream)) != NULL) { + uint8_t *hash_value; + char *filename_ptr; + + count_total++; + filename_ptr = strchr(line, ' '); + if (!filename_ptr) { + if (flags & FLAG_WARN) { + bb_simple_error_msg("invalid format"); + } + count_failed++; + return_value = EXIT_FAILURE; + free(line); + continue; + } + *filename_ptr++ = '\0'; + /* coreutils 9.1 allows "HASH FILENAME" format, + * with only one space. Skip the 'correct' + * " " or " *" delimiter if it is there: + */ + if (*filename_ptr == ' ' || *filename_ptr == '*') + filename_ptr++; + + hash_value = hash_file(in_buf, filename_ptr, sha3_width); + + if (hash_value && (strcasecmp((char*)hash_value, line) == 0)) { + if (!(flags & FLAG_SILENT)) + printf("%s: OK\n", filename_ptr); + } else { + if (!(flags & FLAG_SILENT)) + printf("%s: FAILED\n", filename_ptr); + count_failed++; + return_value = EXIT_FAILURE; + } + /* possible free(NULL) */ + free(hash_value); + free(line); + } + if (count_failed && !(flags & FLAG_SILENT)) { + bb_error_msg("WARNING: %d of %d computed checksums did NOT match", + count_failed, count_total); + } + if (count_total == 0) { + return_value = EXIT_FAILURE; + /* + * md5sum from GNU coreutils 8.25 says: + * md5sum: : no properly formatted MD5 checksum lines found + */ + bb_error_msg("%s: no checksum lines found", *argv); + } + fclose_if_not_stdin(pre_computed_stream); + } else { + uint8_t *hash_value = hash_file(in_buf, *argv, sha3_width); + if (hash_value == NULL) { + return_value = EXIT_FAILURE; + } else { + printf("%s %s\n", hash_value, *argv); + free(hash_value); + } + } + } while (*++argv); + + return return_value; +} diff --git a/busybox-1_37_0/coreutils/mkdir.c b/busybox-1_37_0/coreutils/mkdir.c new file mode 100644 index 000000000..e074c3561 --- /dev/null +++ b/busybox-1_37_0/coreutils/mkdir.c @@ -0,0 +1,103 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini mkdir implementation for busybox + * + * Copyright (C) 2001 Matt Kraai + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Fixed broken permission setting when -p was used; especially in + * conjunction with -m. + */ +/* Nov 28, 2006 Yoshinori Sato : Add SELinux Support. + */ +//config:config MKDIR +//config: bool "mkdir (4.7 kb)" +//config: default y +//config: help +//config: mkdir is used to create directories with the specified names. + +//applet:IF_MKDIR(APPLET_NOFORK(mkdir, mkdir, BB_DIR_BIN, BB_SUID_DROP, mkdir)) + +//kbuild:lib-$(CONFIG_MKDIR) += mkdir.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/mkdir.html */ + +//usage:#define mkdir_trivial_usage +//usage: "[-m MODE] [-p] DIRECTORY..." +//usage:#define mkdir_full_usage "\n\n" +//usage: "Create DIRECTORY\n" +//usage: "\n -m MODE Mode" +//usage: "\n -p No error if exists; make parent directories as needed" +//usage: IF_SELINUX( +//usage: "\n -Z Set security context" +//usage: ) +//usage: +//usage:#define mkdir_example_usage +//usage: "$ mkdir /tmp/foo\n" +//usage: "$ mkdir /tmp/foo\n" +//usage: "/tmp/foo: File exists\n" +//usage: "$ mkdir /tmp/foo/bar/baz\n" +//usage: "/tmp/foo/bar/baz: No such file or directory\n" +//usage: "$ mkdir -p /tmp/foo/bar/baz\n" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int mkdir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int mkdir_main(int argc UNUSED_PARAM, char **argv) +{ + long mode = -1; + int status = EXIT_SUCCESS; + int flags = 0; + unsigned opt; + char *smode; +#if ENABLE_SELINUX + security_context_t scontext; +#endif + + opt = getopt32long(argv, "m:pv" IF_SELINUX("Z:"), + "mode\0" Required_argument "m" + "parents\0" No_argument "p" +# if ENABLE_SELINUX + "context\0" Required_argument "Z" +# endif +# if ENABLE_FEATURE_VERBOSE + "verbose\0" No_argument "v" +# endif + , &smode IF_SELINUX(,&scontext) + ); + if (opt & 1) { + mode_t mmode = bb_parse_mode(smode, 0777); + if (mmode == (mode_t)-1) { + bb_error_msg_and_die("invalid mode '%s'", smode); + } + mode = mmode; + } + if (opt & 2) + flags |= FILEUTILS_RECUR; + if ((opt & 4) && FILEUTILS_VERBOSE) + flags |= FILEUTILS_VERBOSE; +#if ENABLE_SELINUX + if (opt & 8) { + selinux_or_die(); + setfscreatecon_or_die(scontext); + } +#endif + + argv += optind; + if (!argv[0]) + bb_show_usage(); + + do { + if (bb_make_directory(*argv, mode, flags)) { + status = EXIT_FAILURE; + } + } while (*++argv); + + return status; +} diff --git a/busybox-1_37_0/coreutils/mkfifo.c b/busybox-1_37_0/coreutils/mkfifo.c new file mode 100644 index 000000000..f48a8e5db --- /dev/null +++ b/busybox-1_37_0/coreutils/mkfifo.c @@ -0,0 +1,58 @@ +/* vi: set sw=4 ts=4: */ +/* + * mkfifo implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config MKFIFO +//config: bool "mkfifo (4 kb)" +//config: default y +//config: help +//config: mkfifo is used to create FIFOs (named pipes). +//config: The 'mknod' program can also create FIFOs. + +//applet:IF_MKFIFO(APPLET_NOEXEC(mkfifo, mkfifo, BB_DIR_USR_BIN, BB_SUID_DROP, mkfifo)) + +//kbuild:lib-$(CONFIG_MKFIFO) += mkfifo.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/mkfifo.html */ + +//usage:#define mkfifo_trivial_usage +//usage: "[-m MODE] " IF_SELINUX("[-Z] ") "NAME" +//usage:#define mkfifo_full_usage "\n\n" +//usage: "Create named pipe\n" +//usage: "\n -m MODE Mode (default a=rw)" +//usage: IF_SELINUX( +//usage: "\n -Z Set security context" +//usage: ) + +#include "libbb.h" +#include "libcoreutils/coreutils.h" + +/* This is a NOEXEC applet. Be very careful! */ + +int mkfifo_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int mkfifo_main(int argc UNUSED_PARAM, char **argv) +{ + mode_t mode; + int retval = EXIT_SUCCESS; + + mode = getopt_mk_fifo_nod(argv); + + argv += optind; + if (!*argv) { + bb_show_usage(); + } + + do { + if (mkfifo(*argv, mode) < 0) { + bb_simple_perror_msg(*argv); /* Avoid multibyte problems. */ + retval = EXIT_FAILURE; + } + } while (*++argv); + + return retval; +} diff --git a/busybox-1_37_0/coreutils/mknod.c b/busybox-1_37_0/coreutils/mknod.c new file mode 100644 index 000000000..e390a7203 --- /dev/null +++ b/busybox-1_37_0/coreutils/mknod.c @@ -0,0 +1,88 @@ +/* vi: set sw=4 ts=4: */ +/* + * mknod implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config MKNOD +//config: bool "mknod (4.6 kb)" +//config: default y +//config: help +//config: mknod is used to create FIFOs or block/character special +//config: files with the specified names. + +//applet:IF_MKNOD(APPLET_NOEXEC(mknod, mknod, BB_DIR_BIN, BB_SUID_DROP, mknod)) + +//kbuild:lib-$(CONFIG_MKNOD) += mknod.o + +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ + +//usage:#define mknod_trivial_usage +//usage: "[-m MODE] " IF_SELINUX("[-Z] ") "NAME TYPE [MAJOR MINOR]" +//usage:#define mknod_full_usage "\n\n" +//usage: "Create a special file (block, character, or pipe)\n" +//usage: "\n -m MODE Creation mode (default a=rw)" +//usage: IF_SELINUX( +//usage: "\n -Z Set security context" +//usage: ) +//usage: "\nTYPE:" +//usage: "\n b Block device" +//usage: "\n c or u Character device" +//usage: "\n p Named pipe (MAJOR MINOR must be omitted)" +//usage: +//usage:#define mknod_example_usage +//usage: "$ mknod /dev/fd0 b 2 0\n" +//usage: "$ mknod -m 644 /tmp/pipe p\n" + +#ifdef __linux__ +# include // For makedev +#endif + +#include "libbb.h" +#include "libcoreutils/coreutils.h" + +/* This is a NOEXEC applet. Be very careful! */ + +static const char modes_chars[] ALIGN1 = { 'p', 'c', 'u', 'b', 0, 1, 1, 2 }; +static const mode_t modes_cubp[] = { S_IFIFO, S_IFCHR, S_IFBLK }; + +int mknod_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int mknod_main(int argc UNUSED_PARAM, char **argv) +{ + mode_t mode; + dev_t dev; + const char *type, *arg; + + mode = getopt_mk_fifo_nod(argv); + argv += optind; + //argc -= optind; + + if (!argv[0] || !argv[1]) + bb_show_usage(); + type = strchr(modes_chars, argv[1][0]); + if (!type) + bb_show_usage(); + + mode |= modes_cubp[(int)(type[4])]; + + dev = 0; + arg = argv[2]; + if (*type != 'p') { + if (!argv[2] || !argv[3]) + bb_show_usage(); + /* Autodetect what the system supports; these macros should + * optimize out to two constants. */ + dev = makedev(xatoul_range(argv[2], 0, major(UINT_MAX)), + xatoul_range(argv[3], 0, minor(UINT_MAX))); + arg = argv[4]; + } + if (arg) + bb_show_usage(); + + if (mknod(argv[0], mode, dev) != 0) { + bb_simple_perror_msg_and_die(argv[0]); + } + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/mktemp.c b/busybox-1_37_0/coreutils/mktemp.c new file mode 100644 index 000000000..91b2be6d3 --- /dev/null +++ b/busybox-1_37_0/coreutils/mktemp.c @@ -0,0 +1,133 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini mktemp implementation for busybox + * + * Copyright (C) 2000 by Daniel Jacobowitz + * Written by Daniel Jacobowitz + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Coreutils 6.12 man page says: + * mktemp [OPTION]... [TEMPLATE] + * Create a temporary file or directory, safely, and print its name. If + * TEMPLATE is not specified, use tmp.XXXXXXXXXX. + * -d, --directory + * create a directory, not a file + * -q, --quiet + * suppress diagnostics about file/dir-creation failure + * -u, --dry-run + * do not create anything; merely print a name (unsafe) + * --tmpdir[=DIR] + * interpret TEMPLATE relative to DIR. If DIR is not specified, + * use $TMPDIR if set, else /tmp. With this option, TEMPLATE must + * not be an absolute name. Unlike with -t, TEMPLATE may contain + * slashes, but even here, mktemp still creates only the final com- + * ponent. + * -p DIR use DIR as a prefix; implies -t [deprecated] + * -t interpret TEMPLATE as a single file name component, relative to + * a directory: $TMPDIR, if set; else the directory specified via + * -p; else /tmp [deprecated] + */ +//config:config MKTEMP +//config: bool "mktemp (4.5 kb)" +//config: default y +//config: help +//config: mktemp is used to create unique temporary files + +//applet:IF_MKTEMP(APPLET_NOEXEC(mktemp, mktemp, BB_DIR_BIN, BB_SUID_DROP, mktemp)) + +//kbuild:lib-$(CONFIG_MKTEMP) += mktemp.o + +//usage:#define mktemp_trivial_usage +//usage: "[-dt] [-p DIR] [TEMPLATE]" +//usage:#define mktemp_full_usage "\n\n" +//usage: "Create a temporary file with name based on TEMPLATE and print its name.\n" +//usage: "TEMPLATE must end with XXXXXX (e.g. [/dir/]nameXXXXXX).\n" +//usage: "Without TEMPLATE, -t tmp.XXXXXX is assumed.\n" +//usage: "\n -d Make directory, not file" +//usage: "\n -q Fail silently on errors" +//usage: "\n -t Prepend base directory name to TEMPLATE" +//usage: "\n -p DIR Use DIR as a base directory (implies -t)" +//usage: "\n -u Do not create anything; print a name" +//usage: "\n" +//usage: "\nBase directory is: -p DIR, else $TMPDIR, else /tmp" +//usage: +//usage:#define mktemp_example_usage +//usage: "$ mktemp /tmp/temp.XXXXXX\n" +//usage: "/tmp/temp.mWiLjM\n" +//usage: "$ ls -la /tmp/temp.mWiLjM\n" +//usage: "-rw------- 1 andersen andersen 0 Apr 25 17:10 /tmp/temp.mWiLjM\n" + +#include "libbb.h" + +int mktemp_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int mktemp_main(int argc UNUSED_PARAM, char **argv) +{ + const char *path; + char *chp; + unsigned opts; + enum { + OPT_d = 1 << 0, + OPT_q = 1 << 1, + OPT_t = 1 << 2, + OPT_p = 1 << 3, + OPT_u = 1 << 4, + OPT_tmpdir = (1 << 5) * ENABLE_LONG_OPTS, + }; + + path = getenv("TMPDIR"); + if (!path || path[0] == '\0') + path = "/tmp"; + +#if ENABLE_LONG_OPTS + opts = getopt32long(argv, "^" + "dqtp:u" + "\0" + "?1" /* 1 arg max */, + "directory\0" No_argument "d" + "quiet\0" No_argument "q" + "dry-run\0" No_argument "u" + "tmpdir\0" Optional_argument "\xff" + , &path, &path + ); +#else + opts = getopt32(argv, "^" "dqtp:u" "\0" "?1"/*1 arg max*/, &path); +#endif + + chp = argv[optind]; + if (!chp) { + /* GNU coreutils 8.4: + * bare "mktemp" -> "mktemp -t tmp.XXXXXX" + */ + chp = xstrdup("tmp.XXXXXX"); + opts |= OPT_t; + } +#if 0 + /* Don't allow directory separator in template */ + if ((opts & OPT_t) && bb_basename(chp) != chp) { + errno = EINVAL; + goto error; + } +#endif + if (opts & (OPT_t|OPT_p|OPT_tmpdir)) + chp = concat_path_file(path, chp); + + if (opts & OPT_u) { + chp = mktemp(chp); + if (chp[0] == '\0') + goto error; + } else if (opts & OPT_d) { + if (mkdtemp(chp) == NULL) + goto error; + } else { + if (mkstemp(chp) < 0) + goto error; + } + puts(chp); + return EXIT_SUCCESS; + error: + if (opts & OPT_q) + return EXIT_FAILURE; + /* don't use chp as it gets mangled in case of error */ + bb_perror_nomsg_and_die(); +} diff --git a/busybox-1_37_0/coreutils/mv.c b/busybox-1_37_0/coreutils/mv.c new file mode 100644 index 000000000..cf6169a1e --- /dev/null +++ b/busybox-1_37_0/coreutils/mv.c @@ -0,0 +1,191 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini mv implementation for busybox + * + * Copyright (C) 2000 by Matt Kraai + * SELinux support by Yuichi Nakamura + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Size reduction and improved error checking. + */ +//config:config MV +//config: bool "mv (10 kb)" +//config: default y +//config: help +//config: mv is used to move or rename files or directories. + +//applet:IF_MV(APPLET_NOEXEC(mv, mv, BB_DIR_BIN, BB_SUID_DROP, mv)) +/* NOEXEC despite cases when it can be a "runner" (mv LARGE_DIR OTHER_FS) */ + +//kbuild:lib-$(CONFIG_MV) += mv.o + +//usage:#define mv_trivial_usage +//usage: "[-finT] SOURCE DEST\n" +//usage: "or: mv [-fin] SOURCE... { -t DIRECTORY | DIRECTORY }" +//usage:#define mv_full_usage "\n\n" +//usage: "Rename SOURCE to DEST, or move SOURCEs to DIRECTORY\n" +//usage: "\n -f Don't prompt before overwriting" +//usage: "\n -i Interactive, prompt before overwrite" +//usage: "\n -n Don't overwrite an existing file" +//usage: "\n -T Refuse to move if DEST is a directory" +//usage: "\n -t DIR Move all SOURCEs into DIR" +//usage: +//usage:#define mv_example_usage +//usage: "$ mv /tmp/foo /bin/bar\n" + +#include "libbb.h" +#include "libcoreutils/coreutils.h" + +int mv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int mv_main(int argc, char **argv) +{ + struct stat statbuf; + const char *last; + const char *dest; + unsigned flags; + int dest_exists; + int status = 0; + int copy_flag = 0; + +#define OPT_FORCE (1 << 0) +#define OPT_INTERACTIVE (1 << 1) +#define OPT_NOCLOBBER (1 << 2) +#define OPT_DESTNOTDIR (1 << 3) +#define OPT_DESTDIR (1 << 4) +#define OPT_VERBOSE ((1 << 5) * ENABLE_FEATURE_VERBOSE) + flags = getopt32long(argv, "^" + "finTt:v" + "\0" + /* At least one argument. (Usually two+, but -t DIR can have only one) */ + "-1" + /* only the final one of -f, -i, -n takes effect */ + ":f-in:i-fn:n-fi" + /* -t and -T don't mix */ + ":t--T:T--t", + "interactive\0" No_argument "i" + "force\0" No_argument "f" + "no-clobber\0" No_argument "n" + "no-target-directory\0" No_argument "T" + "target-directory\0" Required_argument "t" + IF_FEATURE_VERBOSE( + "verbose\0" No_argument "v" + ) + , &last + ); + argc -= optind; + argv += optind; + + if (!(flags & OPT_DESTDIR)) { + last = argv[argc - 1]; + if (argc < 2) + bb_show_usage(); + if (argc != 2) { + if (flags & OPT_DESTNOTDIR) + bb_show_usage(); + /* "mv A B C... DIR" - target must be dir */ + } else /* argc == 2 */ { + /* "mv A B" - only case where target can be not a dir */ + dest_exists = cp_mv_stat(last, &statbuf); + if (dest_exists < 0) { /* error other than ENOENT */ + return EXIT_FAILURE; + } + if (!(dest_exists & 2)) { + /* last is not a directory */ + dest = last; + goto DO_MOVE; + } + /* last is a directory */ + if (flags & OPT_DESTNOTDIR) { + if (stat(argv[0], &statbuf) == 0 && !S_ISDIR(statbuf.st_mode)) + bb_error_msg_and_die("'%s' is a directory", last); + /* "mv -T DIR1 DIR2" is allowed (renames a dir) */ + dest = last; + goto DO_MOVE; + } + /* else: fall through into "do { move SRC to DIR/SRC } while" loop */ + } + } + /* else: last is DIR from "-t DIR" */ + + do { + dest = concat_path_file(last, bb_get_last_path_component_strip(*argv)); + dest_exists = cp_mv_stat(dest, &statbuf); + if (dest_exists < 0) { + goto RET_1; + } + + DO_MOVE: + if (dest_exists) { + if (flags & OPT_NOCLOBBER) + goto RET_0; + if (!(flags & OPT_FORCE) + && ((access(dest, W_OK) < 0 && isatty(0)) + || (flags & OPT_INTERACTIVE)) + ) { + if (fprintf(stderr, "mv: overwrite '%s'? ", dest) < 0) { + goto RET_1; /* Ouch! fprintf failed! */ + } + if (!bb_ask_y_confirmation()) { + goto RET_0; + } + } + } + + if (rename(*argv, dest) < 0) { + int source_exists; + + if (errno != EXDEV + || (source_exists = cp_mv_stat2(*argv, &statbuf, lstat)) < 1 + ) { + bb_perror_msg("can't rename '%s'", *argv); + } else { + static const char fmt[] ALIGN1 = + "can't overwrite %sdirectory with %sdirectory"; + + if (dest_exists) { + if (dest_exists == 3) { + if (source_exists != 3) { + bb_error_msg(fmt, "", "non-"); + goto RET_1; + } + } else { + if (source_exists == 3) { + bb_error_msg(fmt, "non-", ""); + goto RET_1; + } + } + if (unlink(dest) < 0) { + bb_perror_msg("can't remove '%s'", dest); + goto RET_1; + } + } + /* FILEUTILS_RECUR also prevents nasties like + * "read from device and write contents to dst" + * instead of "create same device node" */ + copy_flag = FILEUTILS_RECUR | FILEUTILS_PRESERVE_STATUS; +#if ENABLE_SELINUX + copy_flag |= FILEUTILS_PRESERVE_SECURITY_CONTEXT; +#endif + if ((copy_file(*argv, dest, copy_flag) >= 0) + && (remove_file(*argv, FILEUTILS_RECUR | FILEUTILS_FORCE) >= 0) + ) { + goto RET_0; + } + } + RET_1: + status = 1; + } + RET_0: + if (flags & OPT_VERBOSE) { + printf("'%s' -> '%s'\n", *argv, dest); + } + if (dest != last) { + free((void *) dest); + } + } while (*++argv && *argv != last); + + return status; +} diff --git a/busybox-1_37_0/coreutils/nice.c b/busybox-1_37_0/coreutils/nice.c new file mode 100644 index 000000000..0648593ee --- /dev/null +++ b/busybox-1_37_0/coreutils/nice.c @@ -0,0 +1,68 @@ +/* vi: set sw=4 ts=4: */ +/* + * nice implementation for busybox + * + * Copyright (C) 2005 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config NICE +//config: bool "nice (2.3 kb)" +//config: default y +//config: help +//config: nice runs a program with modified scheduling priority. + +//applet:IF_NICE(APPLET_NOEXEC(nice, nice, BB_DIR_BIN, BB_SUID_DROP, nice)) + +//kbuild:lib-$(CONFIG_NICE) += nice.o + +//usage:#define nice_trivial_usage +//usage: "[-n ADJUST] [PROG ARGS]" +//usage:#define nice_full_usage "\n\n" +//usage: "Change scheduling priority, run PROG\n" +//usage: "\n -n ADJUST Adjust priority by ADJUST" + +#include "libbb.h" + +int nice_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int nice_main(int argc UNUSED_PARAM, char **argv) +{ + int old_priority, adjustment; + + old_priority = getpriority(PRIO_PROCESS, 0); + + if (!*++argv) { /* No args, so (GNU) output current nice value. */ + printf("%d\n", old_priority); + fflush_stdout_and_exit_SUCCESS(); + } + + adjustment = 10; /* Set default adjustment. */ + + if (argv[0][0] == '-') { + char *nnn = argv[0] + 1; + if (nnn[0] == 'n') { /* -n */ + nnn += 1; + if (!nnn[0]) { /* "-n NNN" */ + nnn = *++argv; + } + /* else: "-nNNN" (w/o space) */ + } + /* else: "-NNN" (NNN may be negative) - same as "-n NNN" */ + + if (!nnn || !argv[1]) { /* Missing priority or PROG! */ + bb_show_usage(); + } + adjustment = xatoi_range(nnn, INT_MIN/2, INT_MAX/2); + argv++; + } + + { /* Set our priority. */ + int prio = old_priority + adjustment; + + if (setpriority(PRIO_PROCESS, 0, prio) < 0) { + bb_perror_msg_and_die("setpriority(%d)", prio); + } + } + + BB_EXECVP_or_die(argv); +} diff --git a/busybox-1_37_0/coreutils/nl.c b/busybox-1_37_0/coreutils/nl.c new file mode 100644 index 000000000..12120f7a0 --- /dev/null +++ b/busybox-1_37_0/coreutils/nl.c @@ -0,0 +1,83 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2017 Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//config:config NL +//config: bool "nl (4.9 kb)" +//config: default y +//config: help +//config: nl is used to number lines of files. + +//applet:IF_NL(APPLET(nl, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_NL) += nl.o + +//usage:#define nl_trivial_usage +//usage: "[OPTIONS] [FILE]..." +//usage:#define nl_full_usage "\n\n" +//usage: "Write FILEs to standard output with line numbers added\n" +//usage: "\n -b STYLE Which lines to number - a: all, t: nonempty, n: none" +//^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^TODO: support "pBRE": number only lines that match regexp BRE" +////usage: "\n -f STYLE footer lines" +////usage: "\n -h STYLE header lines" +////usage: "\n -d CC use CC for separating logical pages" +//usage: "\n -i N Line number increment" +////usage: "\n -l NUMBER group of NUMBER empty lines counted as one" +////usage: "\n -n FORMAT lneft justified, no leading zeros; rn or rz" +////usage: "\n -p do not reset line numbers at logical pages (huh?)" +//usage: "\n -s STRING Use STRING as line number separator" +//usage: "\n -v N Start from N" +//usage: "\n -w N Width of line numbers" + +/* By default, selects -v1 -i1 -l1 -sTAB -w6 -nrn -hn -bt -fn */ + +#include "libbb.h" + +int nl_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int nl_main(int argc UNUSED_PARAM, char **argv) +{ + struct number_state ns; + const char *opt_b = "t"; + enum { + OPT_p = (1 << 0), + }; +#if ENABLE_LONG_OPTS + static const char nl_longopts[] ALIGN1 = + "body-numbering\0" Required_argument "b" + // "footer-numbering\0" Required_argument "f" - not implemented yet + // "header-numbering\0" Required_argument "h" - not implemented yet + // "section-delimiter\0" Required_argument "d" - not implemented yet + "line-increment\0" Required_argument "i" + // "join-blank-lines\0" Required_argument "l" - not implemented yet + // "number-format\0" Required_argument "n" - not implemented yet + "no-renumber\0" No_argument "p" // no-op so far + "number-separator\0" Required_argument "s" + "starting-line-number\0"Required_argument "v" + "number-width\0" Required_argument "w" + ; +#endif + int exitcode; + + ns.width = 6; + ns.start = 1; + ns.inc = 1; + ns.sep = "\t"; + getopt32long(argv, "pw:+s:v:+i:+b:", nl_longopts, + &ns.width, &ns.sep, &ns.start, &ns.inc, &opt_b); + ns.all = (opt_b[0] == 'a'); + ns.nonempty = (opt_b[0] == 't'); + ns.empty_str = xasprintf("%*s", ns.width + (int)strlen(ns.sep), ""); + + argv += optind; + if (!*argv) + *--argv = (char*)"-"; + + exitcode = EXIT_SUCCESS; + do { + exitcode |= print_numbered_lines(&ns, *argv); + } while (*++argv); + + fflush_stdout_and_exit(exitcode); +} diff --git a/busybox-1_37_0/coreutils/nohup.c b/busybox-1_37_0/coreutils/nohup.c new file mode 100644 index 000000000..69d8daff9 --- /dev/null +++ b/busybox-1_37_0/coreutils/nohup.c @@ -0,0 +1,98 @@ +/* vi: set sw=4 ts=4: */ +/* + * nohup - invoke a utility immune to hangups. + * + * Busybox version based on nohup specification at + * http://www.opengroup.org/onlinepubs/007904975/utilities/nohup.html + * + * Copyright 2006 Rob Landley + * Copyright 2006 Bernhard Reutner-Fischer + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config NOHUP +//config: bool "nohup (2.2 kb)" +//config: default y +//config: help +//config: run a command immune to hangups, with output to a non-tty. + +//applet:IF_NOHUP(APPLET_NOEXEC(nohup, nohup, BB_DIR_USR_BIN, BB_SUID_DROP, nohup)) + +//kbuild:lib-$(CONFIG_NOHUP) += nohup.o + +//usage:#define nohup_trivial_usage +//usage: "PROG ARGS" +//usage:#define nohup_full_usage "\n\n" +//usage: "Run PROG immune to hangups, with output to a non-tty" +//usage: +//usage:#define nohup_example_usage +//usage: "$ nohup make &" + +#include "libbb.h" + +/* Compat info: nohup (GNU coreutils 6.8) does this: +# nohup true +nohup: ignoring input and appending output to 'nohup.out' +# nohup true 1>/dev/null +nohup: ignoring input and redirecting stderr to stdout +# nohup true 2>zz +# cat zz +nohup: ignoring input and appending output to 'nohup.out' +# nohup true 2>zz 1>/dev/null +# cat zz +nohup: ignoring input +# nohup true /dev/null +nohup: redirecting stderr to stdout +# nohup true zz 1>/dev/null +# cat zz + (nothing) +# +*/ + +int nohup_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int nohup_main(int argc UNUSED_PARAM, char **argv) +{ + const char *nohupout; + char *home; + + xfunc_error_retval = 127; + + if (!argv[1]) { + bb_show_usage(); + } + + /* If stdin is a tty, detach from it. */ + if (isatty(STDIN_FILENO)) { + /* bb_error_msg("ignoring input"); */ + close(STDIN_FILENO); + xopen(bb_dev_null, O_RDONLY); /* will be fd 0 (STDIN_FILENO) */ + } + + nohupout = "nohup.out"; + /* Redirect stdout to nohup.out, either in "." or in "$HOME". */ + if (isatty(STDOUT_FILENO)) { + close(STDOUT_FILENO); + if (open(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR) < 0) { + home = getenv("HOME"); + if (home) { + nohupout = concat_path_file(home, nohupout); + xopen3(nohupout, O_CREAT|O_WRONLY|O_APPEND, S_IRUSR|S_IWUSR); + } else { + xopen(bb_dev_null, O_RDONLY); /* will be fd 1 */ + } + } + bb_error_msg("appending output to %s", nohupout); + } + + /* If we have a tty on stderr, redirect to stdout. */ + if (isatty(STDERR_FILENO)) { + /* if (stdout_wasnt_a_tty) + bb_error_msg("redirecting stderr to stdout"); */ + dup2(STDOUT_FILENO, STDERR_FILENO); + } + + signal(SIGHUP, SIG_IGN); + + argv++; + BB_EXECVP_or_die(argv); +} diff --git a/busybox-1_37_0/coreutils/nproc.c b/busybox-1_37_0/coreutils/nproc.c new file mode 100644 index 000000000..df63bf57a --- /dev/null +++ b/busybox-1_37_0/coreutils/nproc.c @@ -0,0 +1,72 @@ +/* + * Copyright (C) 2017 Denys Vlasenko + * + * Licensed under GPLv2, see LICENSE in this source tree + */ +//config:config NPROC +//config: bool "nproc (3.9 kb)" +//config: default y +//config: help +//config: Print number of CPUs + +//applet:IF_NPROC(APPLET_NOFORK(nproc, nproc, BB_DIR_USR_BIN, BB_SUID_DROP, nproc)) + +//kbuild:lib-$(CONFIG_NPROC) += nproc.o + +//usage:#define nproc_trivial_usage +//usage: ""IF_LONG_OPTS("[--all] [--ignore=N]") +//usage:#define nproc_full_usage "\n\n" +//usage: "Print number of available CPUs" +//usage: IF_LONG_OPTS( +//usage: "\n" +//usage: "\n --all Number of installed CPUs" +//usage: "\n --ignore=N Exclude N CPUs" +//usage: ) + +#include "libbb.h" + +int nproc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int nproc_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + int count = 0; +#if ENABLE_LONG_OPTS + int ignore = 0; + int opts = getopt32long(argv, "\xfe:+", + "ignore\0" Required_argument "\xfe" + "all\0" No_argument "\xff" + , &ignore + ); + + if (opts & (1 << 1)) { + DIR *cpusd = opendir("/sys/devices/system/cpu"); + if (cpusd) { + struct dirent *de; + while (NULL != (de = readdir(cpusd))) { + char *cpuid = strstr(de->d_name, "cpu"); + if (cpuid && isdigit(cpuid[strlen(cpuid) - 1])) + count++; + } + IF_FEATURE_CLEAN_UP(closedir(cpusd);) + } + } else +#endif + { + int i; + unsigned sz = 2 * 1024; + unsigned long *mask = get_malloc_cpu_affinity(0, &sz); + sz /= sizeof(long); + for (i = 0; i < sz; i++) { + if (mask[i] != 0) /* most mask[i] are usually 0 */ + count += bb_popcnt_long(mask[i]); + } + IF_FEATURE_CLEAN_UP(free(mask);) + } + + IF_LONG_OPTS(count -= ignore;) + if (count <= 0) + count = 1; + + printf("%u\n", count); + + return 0; +} diff --git a/busybox-1_37_0/coreutils/od.c b/busybox-1_37_0/coreutils/od.c new file mode 100644 index 000000000..a7b1ba444 --- /dev/null +++ b/busybox-1_37_0/coreutils/od.c @@ -0,0 +1,262 @@ +/* vi: set sw=4 ts=4: */ +/* + * od implementation for busybox + * Based on code from util-linux v 2.11l + * + * Copyright (c) 1990 + * The Regents of the University of California. All rights reserved. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * Original copyright notice is retained at the end of this file. + */ +//config:config OD +//config: bool "od (11 kb)" +//config: default y +//config: help +//config: od is used to dump binary files in octal and other formats. + +//applet:IF_OD(APPLET(od, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_OD) += od.o + +//usage:#if !ENABLE_DESKTOP +//usage:#define od_trivial_usage +//usage: "[-abcdeFfhiloxsv] [FILE]" +// We also support -BDOHXIL, but they are not documented in coreutils 9.1 +// manpage/help, so don't show them either. +//usage:#define od_full_usage "\n\n" +//usage: "Print FILE (or stdin) unambiguously, as octal bytes by default" +//usage:#endif + +#include "libbb.h" +#if ENABLE_DESKTOP +/* This one provides -t (busybox's own build script needs it) */ +#include "od_bloaty.c" +#else + +#include "dump.h" + +static void +odoffset(dumper_t *dumper, int argc, char ***argvp) +{ + char *num, *p; + int base; + char *end; + + /* + * The offset syntax of od(1) was genuinely bizarre. First, if + * it started with a plus it had to be an offset. Otherwise, if + * there were at least two arguments, a number or lower-case 'x' + * followed by a number makes it an offset. By default it was + * octal; if it started with 'x' or '0x' it was hex. If it ended + * in a '.', it was decimal. If a 'b' or 'B' was appended, it + * multiplied the number by 512 or 1024 byte units. There was + * no way to assign a block count to a hex offset. + * + * We assumes it's a file if the offset is bad. + */ + p = **argvp; + + if (!p) { + /* hey someone is probably piping to us ... */ + return; + } + + if ((*p != '+') + && (argc < 2 + || (!isdigit(p[0]) + && ((p[0] != 'x') || !isxdigit(p[1]))))) + return; + + base = 0; + /* + * skip over leading '+', 'x[0-9a-fA-f]' or '0x', and + * set base. + */ + if (p[0] == '+') + ++p; + if (p[0] == 'x' && isxdigit(p[1])) { + ++p; + base = 16; + } else if (p[0] == '0' && p[1] == 'x') { + p += 2; + base = 16; + } + + /* skip over the number */ + if (base == 16) + for (num = p; isxdigit(*p); ++p) + continue; + else + for (num = p; isdigit(*p); ++p) + continue; + + /* check for no number */ + if (num == p) + return; + + /* if terminates with a '.', base is decimal */ + if (*p == '.') { + if (base) + return; + base = 10; + } + + dumper->dump_skip = strtol(num, &end, base ? base : 8); + + /* if end isn't the same as p, we got a non-octal digit */ + if (end != p) + dumper->dump_skip = 0; + else { + if (*p) { + if (*p == 'b') { + dumper->dump_skip *= 512; + ++p; + } else if (*p == 'B') { + dumper->dump_skip *= 1024; + ++p; + } + } + if (*p) + dumper->dump_skip = 0; + else { + ++*argvp; + /* + * If the offset uses a non-octal base, the base of + * the offset is changed as well. This isn't pretty, + * but it's easy. + */ +#define TYPE_OFFSET 7 + { + char x_or_d; + if (base == 16) { + x_or_d = 'x'; + goto DO_X_OR_D; + } + if (base == 10) { + x_or_d = 'd'; + DO_X_OR_D: + dumper->fshead->nextfu->fmt[TYPE_OFFSET] + = dumper->fshead->nextfs->nextfu->fmt[TYPE_OFFSET] + = x_or_d; + } + } + } + } +} + +// bb_dump_add(): +// A format string contains format units separated by [optional] whitespace. +// A format unit contains up to three items: an iteration count, a byte count, +// and a format. +// The iteration count is an optional integer (default 1). +// Each format is applied iteration count times. +// The byte count is an optional integer. It defines the number +// of bytes to be interpreted by each iteration of the format. +// If an iteration count and/or a byte count is specified, a slash must be +// placed after the iteration count and/or before the byte count +// to disambiguate them. +// The printf-style format is required and must be surrounded by " "s. +// (Below, each string contains two format units) +static const char *const add_strings[] ALIGN_PTR = { + "16/1 \" %3_u\"" "\"\n\"", /* 0: a */ + "8/2 \" %06o\"" "\"\n\"", /* 1: B (undocumented in od), o */ + "16/1 \" %03o\"" "\"\n\"", /* 2: b */ + "16/1 \" %3_c\"" "\"\n\"", /* 3: c */ + "8/2 \" %5u\"" "\"\n\"", /* 4: d */ + "4/4 \" %10u\"" "\"\n\"", /* 5: D */ + "2/8 \" %24.14e\"" "\"\n\"", /* 6: e (undocumented in od), F */ + "4/4 \" %15.7e\"" "\"\n\"", /* 7: f */ + "4/4 \" %08x\"" "\"\n\"", /* 8: H, X */ + "8/2 \" %04x\"" "\"\n\"", /* 9: h, x */ + "4/4 \" %11d\"" "\"\n\"", /* 10: i */ + "4/4 \" %011o\"" "\"\n\"", /* 11: O */ + "8/2 \" %6d\"" "\"\n\"", /* 12: s */ + /* -I,L,l: depend on word width of the arch (what is "long"?) */ +#if ULONG_MAX > 0xffffffff + "2/8 \" %20lld\"" "\"\n\"", /* 13: I, L, l */ +#define L_ 13 +#else + /* 32-bit arch: -I,L,l are the same as -i */ +#define L_ 10 +#endif +}; + +static const char od_opts[] ALIGN1 = "aBbcDdeFfHhIiLlOoXxsv"; + +static const char od_o2si[] ALIGN1 = { + 0, 1, 2, 3, 5, /* aBbcD */ + 4, 6, 6, 7, 8, /* deFfH */ + 9, L_, 10, L_, L_, /* hIiLl */ + 11, 1, 8, 9, 12 /* OoXxs */ +}; + +int od_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int od_main(int argc, char **argv) +{ + int ch; + int first = 1; + char *p; + dumper_t *dumper = alloc_dumper(); + + while ((ch = getopt(argc, argv, od_opts)) > 0) { + if (ch == 'v') { + dumper->dump_vflag = ALL; + } else if (((p = strchr(od_opts, ch)) != NULL) && (*p != '\0')) { + if (first) { + first = 0; + bb_dump_add(dumper, "\"%07.7_Ao\n\""); + bb_dump_add(dumper, "\"%07.7_ao\""); + } else { + bb_dump_add(dumper, "\" \""); + } + bb_dump_add(dumper, add_strings[(int)od_o2si[(p - od_opts)]]); + } else { /* P, p, w, or other unhandled */ + bb_show_usage(); + } + } + if (!dumper->fshead) { + bb_dump_add(dumper, "\"%07.7_Ao\n\""); + bb_dump_add(dumper, "\"%07.7_ao\""); + bb_dump_add(dumper, add_strings[1]); /* -o format is default */ + } + dumper->od_eofstring = "\n"; + + argc -= optind; + argv += optind; + + odoffset(dumper, argc, &argv); + + return bb_dump_dump(dumper, argv); +} +#endif /* !ENABLE_DESKTOP */ + +/*- + * Copyright (c) 1990 The Regents of the University of California. + * All rights reserved. + * + * 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. + * 3. Neither the name of the University nor the names of its contributors + * 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. + */ diff --git a/busybox-1_37_0/coreutils/od_bloaty.c b/busybox-1_37_0/coreutils/od_bloaty.c new file mode 100644 index 000000000..e886a4ed2 --- /dev/null +++ b/busybox-1_37_0/coreutils/od_bloaty.c @@ -0,0 +1,1413 @@ +/* od -- dump files in octal and other formats + Copyright (C) 92, 1995-2004 Free Software Foundation, Inc. + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2, or (at your option) + any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software Foundation, + Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + */ +/* Written by Jim Meyering. */ +/* Busyboxed by Denys Vlasenko, based on od.c from coreutils-5.2.1 */ + + +/* #include "libbb.h" - done in od.c */ +#include "common_bufsiz.h" +#define assert(a) ((void)0) + + +//usage:#if ENABLE_DESKTOP +//usage:#define od_trivial_usage +//usage: "[-abcdfhilovxs] [-t TYPE] [-A RADIX] [-N SIZE] [-j SKIP] [-S MINSTR] [-w WIDTH] [FILE]..." +// We also support -BDOHXIL, but they are not documented in coreutils 9.1 +// manpage/help, so don't show them either. +// We don't support: +// ... [FILE] [[+]OFFSET[.][b]] +// Support is buggy for: +// od --traditional [OPTION]... [FILE] [[+]OFFSET[.][b] [+][LABEL][.][b]] + +//usage:#define od_full_usage "\n\n" +//usage: "Print FILEs (or stdin) unambiguously, as octal bytes by default" +//usage:#endif + +enum { + OPT_A = 1 << 0, + OPT_N = 1 << 1, + OPT_a = 1 << 2, + OPT_b = 1 << 3, + OPT_c = 1 << 4, + OPT_d = 1 << 5, + OPT_D = 1 << 6, /* undocumented in coreutils 9.1 */ + OPT_f = 1 << 7, + OPT_h = 1 << 8, + OPT_H = 1 << 9, /* undocumented in coreutils 9.1 */ + OPT_i = 1 << 10, + OPT_I = 1 << 11, /* undocumented in coreutils 9.1 */ + OPT_j = 1 << 12, + OPT_l = 1 << 13, + OPT_L = 1 << 14, /* undocumented in coreutils 9.1 */ + OPT_o = 1 << 15, + OPT_O = 1 << 16, /* undocumented in coreutils 9.1 */ + OPT_B = 1 << 17, /* undocumented synonym to -o */ + OPT_t = 1 << 18, + /* When zero and two or more consecutive blocks are equal, format + only the first block and output an asterisk alone on the following + line to indicate that identical blocks have been elided: */ + OPT_v = 1 << 19, + OPT_x = 1 << 20, + OPT_X = 1 << 21, /* undocumented in coreutils 9.1 */ + OPT_s = 1 << 22, + OPT_S = 1 << 23, + OPT_w = 1 << 24, + OPT_traditional = (1 << 25) * ENABLE_LONG_OPTS, +}; + +#define OD_GETOPT32() getopt32long(argv, \ + "A:N:abcdDfhHiIj:lLoOBt:*vxXsS:w:+:", od_longopts, \ + /* -w with optional param */ \ + /* -S was -s and also had optional parameter */ \ + /* but in coreutils 6.3 it was renamed and now has */ \ + /* _mandatory_ parameter */ \ + &str_A, &str_N, &str_j, &lst_t, &str_S, &G.bytes_per_block) + + +/* Check for 0x7f is a coreutils 6.3 addition */ +#define ISPRINT(c) (((c) >= ' ') && (c) < 0x7f) + +typedef long double longdouble_t; +typedef unsigned long long ulonglong_t; +typedef long long llong; + +#if ENABLE_LFS +# define xstrtooff_sfx xstrtoull_sfx +#else +# define xstrtooff_sfx xstrtoul_sfx +#endif + +/* The default number of input bytes per output line. */ +#define DEFAULT_BYTES_PER_BLOCK 16 + +/* The number of decimal digits of precision in a float. */ +#ifndef FLT_DIG +# define FLT_DIG 7 +#endif + +/* The number of decimal digits of precision in a double. */ +#ifndef DBL_DIG +# define DBL_DIG 15 +#endif + +/* The number of decimal digits of precision in a long double. */ +#ifndef LDBL_DIG +# define LDBL_DIG DBL_DIG +#endif + +enum size_spec { + NO_SIZE, + CHAR, + SHORT, + INT, + LONG, + LONG_LONG, + FLOAT_SINGLE, + FLOAT_DOUBLE, + FLOAT_LONG_DOUBLE, + N_SIZE_SPECS +}; + +enum output_format { + SIGNED_DECIMAL, + UNSIGNED_DECIMAL, + OCTAL, + HEXADECIMAL, + FLOATING_POINT, + NAMED_CHARACTER, + CHARACTER +}; + +/* Each output format specification (from '-t spec' or from + old-style options) is represented by one of these structures. */ +struct tspec { + enum output_format fmt; + enum size_spec size; + void (*print_function) (size_t, const char *, const char *); + char *fmt_string; + int hexl_mode_trailer; + int field_width; +}; + +/* Convert the number of 8-bit bytes of a binary representation to + the number of characters (digits + sign if the type is signed) + required to represent the same quantity in the specified base/type. + For example, a 32-bit (4-byte) quantity may require a field width + as wide as the following for these types: + 11 unsigned octal + 11 signed decimal + 10 unsigned decimal + 8 unsigned hexadecimal */ + +static const uint8_t bytes_to_oct_digits[] ALIGN1 = +{0, 3, 6, 8, 11, 14, 16, 19, 22, 25, 27, 30, 32, 35, 38, 41, 43}; + +static const uint8_t bytes_to_signed_dec_digits[] ALIGN1 = +{1, 4, 6, 8, 11, 13, 16, 18, 20, 23, 25, 28, 30, 33, 35, 37, 40}; + +static const uint8_t bytes_to_unsigned_dec_digits[] ALIGN1 = +{0, 3, 5, 8, 10, 13, 15, 17, 20, 22, 25, 27, 29, 32, 34, 37, 39}; + +static const uint8_t bytes_to_hex_digits[] ALIGN1 = +{0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32}; + +/* Convert enum size_spec to the size of the named type. */ +static const signed char width_bytes[] ALIGN1 = { + -1, + sizeof(char), + sizeof(short), + sizeof(int), + sizeof(long), + sizeof(ulonglong_t), + sizeof(float), + sizeof(double), + sizeof(longdouble_t) +}; +/* Ensure that for each member of 'enum size_spec' there is an + initializer in the width_bytes array. */ +struct ERR_width_bytes_has_bad_size { + char ERR_width_bytes_has_bad_size[ARRAY_SIZE(width_bytes) == N_SIZE_SPECS ? 1 : -1]; +}; + +struct globals { + smallint exit_code; + + unsigned string_min; + + /* An array of specs describing how to format each input block. */ + unsigned n_specs; + struct tspec *spec; + + /* Function that accepts an address and an optional following char, + and prints the address and char to stdout. */ + void (*format_address)(off_t, char); + + /* The difference between the old-style pseudo starting address and + the number of bytes to skip. */ +#if ENABLE_LONG_OPTS + off_t pseudo_offset; +# define G_pseudo_offset G.pseudo_offset +#endif + /* When zero, MAX_BYTES_TO_FORMAT and END_OFFSET are ignored, and all + input is formatted. */ + + /* The number of input bytes formatted per output line. It must be + a multiple of the least common multiple of the sizes associated with + the specified output types. It should be as large as possible, but + no larger than 16 -- unless specified with the -w option. */ + unsigned bytes_per_block; /* have to use unsigned, not size_t */ + + /* A NULL-terminated list of the file-arguments from the command line. */ + const char *const *file_list; + + /* The input stream associated with the current file. */ + FILE *in_stream; + + bool not_first; + bool prev_pair_equal; + + char address_fmt[sizeof("%0n"OFF_FMT"xc")]; +} FIX_ALIASING; +/* Corresponds to 'x' above */ +#define address_base_char G.address_fmt[sizeof(G.address_fmt)-3] +/* Corresponds to 'n' above */ +#define address_pad_len_char G.address_fmt[2] + +#if !ENABLE_LONG_OPTS +enum { G_pseudo_offset = 0 }; +#endif +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { \ + setup_common_bufsiz(); \ + BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ + G.bytes_per_block = 32; \ + strcpy(G.address_fmt, "%0n"OFF_FMT"xc"); \ +} while (0) + + +#define MAX_INTEGRAL_TYPE_SIZE sizeof(ulonglong_t) +static const unsigned char integral_type_size[MAX_INTEGRAL_TYPE_SIZE + 1] ALIGN1 = { + [sizeof(char)] = CHAR, +#if USHRT_MAX != UCHAR_MAX + [sizeof(short)] = SHORT, +#endif +#if UINT_MAX != USHRT_MAX + [sizeof(int)] = INT, +#endif +#if ULONG_MAX != UINT_MAX + [sizeof(long)] = LONG, +#endif +#if ULLONG_MAX != ULONG_MAX + [sizeof(ulonglong_t)] = LONG_LONG, +#endif +}; + +#define MAX_FP_TYPE_SIZE sizeof(longdouble_t) +static const unsigned char fp_type_size[MAX_FP_TYPE_SIZE + 1] ALIGN1 = { + /* gcc seems to allow repeated indexes. Last one wins */ + [sizeof(longdouble_t)] = FLOAT_LONG_DOUBLE, + [sizeof(double)] = FLOAT_DOUBLE, + [sizeof(float)] = FLOAT_SINGLE +}; + + +static unsigned +gcd(unsigned u, unsigned v) +{ + unsigned t; + while (v != 0) { + t = u % v; + u = v; + v = t; + } + return u; +} + +/* Compute the least common multiple of U and V. */ +static unsigned +lcm(unsigned u, unsigned v) { + unsigned t = gcd(u, v); + if (t == 0) + return 0; + return u * v / t; +} + +static void +print_s_char(size_t n_bytes, const char *block, const char *fmt_string) +{ + while (n_bytes--) { + int tmp = *(signed char *) block; + printf(fmt_string, tmp); + block += sizeof(unsigned char); + } +} + +static void +print_char(size_t n_bytes, const char *block, const char *fmt_string) +{ + while (n_bytes--) { + unsigned tmp = *(unsigned char *) block; + printf(fmt_string, tmp); + block += sizeof(unsigned char); + } +} + +static void +print_s_short(size_t n_bytes, const char *block, const char *fmt_string) +{ + n_bytes /= sizeof(signed short); + while (n_bytes--) { + int tmp = *(signed short *) block; + printf(fmt_string, tmp); + block += sizeof(unsigned short); + } +} + +static void +print_short(size_t n_bytes, const char *block, const char *fmt_string) +{ + n_bytes /= sizeof(unsigned short); + while (n_bytes--) { + unsigned tmp = *(unsigned short *) block; + printf(fmt_string, tmp); + block += sizeof(unsigned short); + } +} + +static void +print_int(size_t n_bytes, const char *block, const char *fmt_string) +{ + n_bytes /= sizeof(unsigned); + while (n_bytes--) { + unsigned tmp = *(unsigned *) block; + printf(fmt_string, tmp); + block += sizeof(unsigned); + } +} + +#if UINT_MAX == ULONG_MAX +# define print_long print_int +#else +static void +print_long(size_t n_bytes, const char *block, const char *fmt_string) +{ + n_bytes /= sizeof(unsigned long); + while (n_bytes--) { + unsigned long tmp = *(unsigned long *) block; + printf(fmt_string, tmp); + block += sizeof(unsigned long); + } +} +#endif + +#if ULONG_MAX == ULLONG_MAX +# define print_long_long print_long +#else +static void +print_long_long(size_t n_bytes, const char *block, const char *fmt_string) +{ + n_bytes /= sizeof(ulonglong_t); + while (n_bytes--) { + ulonglong_t tmp = *(ulonglong_t *) block; + printf(fmt_string, tmp); + block += sizeof(ulonglong_t); + } +} +#endif + +static void +print_float(size_t n_bytes, const char *block, const char *fmt_string) +{ + n_bytes /= sizeof(float); + while (n_bytes--) { + float tmp = *(float *) block; + printf(fmt_string, tmp); + block += sizeof(float); + } +} + +static void +print_double(size_t n_bytes, const char *block, const char *fmt_string) +{ + n_bytes /= sizeof(double); + while (n_bytes--) { + double tmp = *(double *) block; + printf(fmt_string, tmp); + block += sizeof(double); + } +} + +static void +print_long_double(size_t n_bytes, const char *block, const char *fmt_string) +{ + n_bytes /= sizeof(longdouble_t); + while (n_bytes--) { + longdouble_t tmp = *(longdouble_t *) block; + printf(fmt_string, tmp); + block += sizeof(longdouble_t); + } +} + +/* print_[named]_ascii are optimized for speed. + * Remember, someday you may want to pump gigabytes through this thing. + * Saving a dozen of .text bytes here is counter-productive */ + +static void +print_named_ascii(size_t n_bytes, const char *block, + const char *unused_fmt_string UNUSED_PARAM) +{ + /* Names for some non-printing characters. */ + static const char charname[33][3] ALIGN1 = { + "nul", "soh", "stx", "etx", "eot", "enq", "ack", "bel", + " bs", " ht", " nl", " vt", " ff", " cr", " so", " si", + "dle", "dc1", "dc2", "dc3", "dc4", "nak", "syn", "etb", + "can", " em", "sub", "esc", " fs", " gs", " rs", " us", + " sp" + }; + // buf[N] pos: 01234 56789 + char buf[12] = " x\0 xxx\0"; + // [12] because we take three 32bit stack slots anyway, and + // gcc is too dumb to initialize with constant stores, + // it copies initializer from rodata. Oh well. + // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65410 + + while (n_bytes--) { + unsigned masked_c = *(unsigned char *) block++; + + masked_c &= 0x7f; + if (masked_c == 0x7f) { + fputs_stdout(" del"); + continue; + } + if (masked_c > ' ') { + buf[3] = masked_c; + fputs_stdout(buf); + continue; + } + /* Why? Because printf(" %3.3s") is much slower... */ + buf[6] = charname[masked_c][0]; + buf[7] = charname[masked_c][1]; + buf[8] = charname[masked_c][2]; + fputs_stdout(buf+5); + } +} + +static void +print_ascii(size_t n_bytes, const char *block, + const char *unused_fmt_string UNUSED_PARAM) +{ + // buf[N] pos: 01234 56789 + char buf[12] = " x\0 xxx\0"; + + while (n_bytes--) { + const char *s; + unsigned c = *(unsigned char *) block++; + + if (ISPRINT(c)) { + buf[3] = c; + fputs_stdout(buf); + continue; + } + switch (c) { + case '\0': + s = " \\0"; + break; + case '\007': + s = " \\a"; + break; + case '\b': + s = " \\b"; + break; + case '\f': + s = " \\f"; + break; + case '\n': + s = " \\n"; + break; + case '\r': + s = " \\r"; + break; + case '\t': + s = " \\t"; + break; + case '\v': + s = " \\v"; + break; + default: + buf[6] = (c >> 6 & 3) + '0'; + buf[7] = (c >> 3 & 7) + '0'; + buf[8] = (c & 7) + '0'; + s = buf + 5; + } + fputs_stdout(s); + } +} + +/* Given a list of one or more input filenames FILE_LIST, set the global + file pointer IN_STREAM and the global string INPUT_FILENAME to the + first one that can be successfully opened. Modify FILE_LIST to + reference the next filename in the list. A file name of "-" is + interpreted as standard input. If any file open fails, give an error + message and return nonzero. */ + +static void +open_next_file(void) +{ + while (1) { + if (!*G.file_list) + return; + G.in_stream = fopen_or_warn_stdin(*G.file_list++); + if (G.in_stream) { + break; + } + G.exit_code = 1; + } + + if ((option_mask32 & (OPT_N|OPT_S)) == OPT_N) + setbuf(G.in_stream, NULL); +} + +/* Test whether there have been errors on in_stream, and close it if + it is not standard input. Return nonzero if there has been an error + on in_stream or stdout; return zero otherwise. This function will + report more than one error only if both a read and a write error + have occurred. IN_ERRNO, if nonzero, is the error number + corresponding to the most recent action for IN_STREAM. */ + +static void +check_and_close(void) +{ + if (G.in_stream) { + if (ferror(G.in_stream)) { + bb_error_msg("%s: read error", (G.in_stream == stdin) + ? bb_msg_standard_input + : G.file_list[-1] + ); + G.exit_code = 1; + } + fclose_if_not_stdin(G.in_stream); + G.in_stream = NULL; + } + + if (ferror(stdout)) { + bb_simple_error_msg_and_die(bb_msg_write_error); + } +} + +/* If S points to a single valid modern od format string, put + a description of that format in *TSPEC, return pointer to + character following the just-decoded format. + For example, if S were "d4afL", we will return a rtp to "afL" + and *TSPEC would be + { + fmt = SIGNED_DECIMAL; + size = INT or LONG; (whichever integral_type_size[4] resolves to) + print_function = print_int; (assuming size == INT) + fmt_string = "%011d%c"; + } + S_ORIG is solely for reporting errors. It should be the full format + string argument. */ + +static NOINLINE const char * +decode_one_format(const char *s_orig, const char *s, struct tspec *tspec) +{ + enum size_spec size_spec; + unsigned size; + enum output_format fmt; + const char *p; + char *end; + char *fmt_string = NULL; + void (*print_function) (size_t, const char *, const char *); + unsigned c; + unsigned field_width = 0; + int pos; + + switch (*s) { + case 'd': + case 'o': + case 'u': + case 'x': { + static const char CSIL[] ALIGN1 = "CSIL"; + + c = *s++; + p = strchr(CSIL, *s); + /* if *s == NUL, p != NULL! Testcase: "od -tx" */ + if (!p || *p == '\0') { + size = sizeof(int); + if (isdigit(s[0])) { + size = bb_strtou(s, &end, 0); + if (errno == ERANGE + || MAX_INTEGRAL_TYPE_SIZE < size + || integral_type_size[size] == NO_SIZE + ) { + bb_error_msg_and_die("invalid type string '%s'; " + "%u-byte %s type is not supported", + s_orig, size, "integral"); + } + s = end; + } + } else { + static const uint8_t CSIL_sizeof[4] = { + sizeof(char), + sizeof(short), + sizeof(int), + sizeof(long), + }; + size = CSIL_sizeof[p - CSIL]; + s++; /* skip C/S/I/L */ + } + +#define ISPEC_TO_FORMAT(Spec, Min_format, Long_format, Max_format) \ + ((Spec) == LONG_LONG ? (Max_format) \ + : ((Spec) == LONG ? (Long_format) : (Min_format))) + +#define FMT_BYTES_ALLOCATED 9 + size_spec = integral_type_size[size]; + + { + static const char doux[] ALIGN1 = "doux"; + static const char doux_fmt_letter[][4] = { + "lld", "llo", "llu", "llx" + }; + static const enum output_format doux_fmt[] = { + SIGNED_DECIMAL, + OCTAL, + UNSIGNED_DECIMAL, + HEXADECIMAL, + }; + static const uint8_t *const doux_bytes_to_XXX[] = { + bytes_to_signed_dec_digits, + bytes_to_oct_digits, + bytes_to_unsigned_dec_digits, + bytes_to_hex_digits, + }; + static const char doux_fmtstring[][sizeof(" %%0%u%s")] ALIGN1 = { + " %%%u%s", + " %%0%u%s", + " %%%u%s", + " %%0%u%s", + }; + + pos = strchr(doux, c) - doux; + fmt = doux_fmt[pos]; + field_width = doux_bytes_to_XXX[pos][size]; + p = doux_fmt_letter[pos] + 2; + if (size_spec == LONG) p--; + if (size_spec == LONG_LONG) p -= 2; + fmt_string = xasprintf(doux_fmtstring[pos], field_width, p); + } + + switch (size_spec) { + case CHAR: + print_function = (fmt == SIGNED_DECIMAL + ? print_s_char + : print_char); + break; + case SHORT: + print_function = (fmt == SIGNED_DECIMAL + ? print_s_short + : print_short); + break; + case INT: + print_function = print_int; + break; + case LONG: + print_function = print_long; + break; + default: /* case LONG_LONG: */ + print_function = print_long_long; + break; + } + break; + } + + case 'f': { + static const char FDL[] ALIGN1 = "FDL"; + + fmt = FLOATING_POINT; + ++s; + p = strchr(FDL, *s); + if (!p || *p == '\0') { + size = sizeof(double); + if (isdigit(s[0])) { + size = bb_strtou(s, &end, 0); + if (errno == ERANGE || size > MAX_FP_TYPE_SIZE + || fp_type_size[size] == NO_SIZE + ) { + bb_error_msg_and_die("invalid type string '%s'; " + "%u-byte %s type is not supported", + s_orig, size, "floating point"); + } + s = end; + } + } else { + static const uint8_t FDL_sizeof[] = { + sizeof(float), + sizeof(double), + sizeof(longdouble_t), + }; + + size = FDL_sizeof[p - FDL]; + s++; /* skip F/D/L */ + } + + size_spec = fp_type_size[size]; + + switch (size_spec) { + case FLOAT_SINGLE: + print_function = print_float; + field_width = FLT_DIG + 8; + /* Don't use %#e; not all systems support it. */ + fmt_string = xasprintf(" %%%d.%de", field_width, FLT_DIG); + break; + case FLOAT_DOUBLE: + print_function = print_double; + field_width = DBL_DIG + 8; + fmt_string = xasprintf(" %%%d.%de", field_width, DBL_DIG); + break; + default: /* case FLOAT_LONG_DOUBLE: */ + print_function = print_long_double; + field_width = LDBL_DIG + 8; + fmt_string = xasprintf(" %%%d.%dLe", field_width, LDBL_DIG); + break; + } + break; + } + + case 'a': + ++s; + fmt = NAMED_CHARACTER; + size_spec = CHAR; + print_function = print_named_ascii; + field_width = 3; + break; + case 'c': + ++s; + fmt = CHARACTER; + size_spec = CHAR; + print_function = print_ascii; + field_width = 3; + break; + default: + bb_error_msg_and_die("invalid character '%c' " + "in type string '%s'", *s, s_orig); + } + + tspec->size = size_spec; + tspec->fmt = fmt; + tspec->print_function = print_function; + tspec->fmt_string = fmt_string; + + tspec->field_width = field_width; + tspec->hexl_mode_trailer = (*s == 'z'); + if (tspec->hexl_mode_trailer) + s++; + + return s; +} + +/* Decode the modern od format string S. Append the decoded + representation to the global array SPEC, reallocating SPEC if + necessary. */ + +static void +decode_format_string(const char *s) +{ + const char *s_orig = s; + + while (*s != '\0') { + struct tspec tspec; + const char *next; + + next = decode_one_format(s_orig, s, &tspec); + + assert(s != next); + s = next; + G.spec = xrealloc_vector(G.spec, 4, G.n_specs); + memcpy(&G.spec[G.n_specs], &tspec, sizeof(G.spec[0])); + G.n_specs++; + } +} + +/* Given a list of one or more input filenames FILE_LIST, set the global + file pointer IN_STREAM to position N_SKIP in the concatenation of + those files. If any file operation fails or if there are fewer than + N_SKIP bytes in the combined input, give an error message and return + nonzero. When possible, use seek rather than read operations to + advance IN_STREAM. */ + +static void +skip(off_t n_skip) +{ + if (n_skip == 0) + return; + + while (G.in_stream) { /* !EOF */ + struct stat file_stats; + + /* First try seeking. For large offsets, this extra work is + worthwhile. If the offset is below some threshold it may be + more efficient to move the pointer by reading. There are two + issues when trying to seek: + - the file must be seekable. + - before seeking to the specified position, make sure + that the new position is in the current file. + Try to do that by getting file's size using fstat. + But that will work only for regular files. */ + + /* The st_size field is valid only for regular files + (and for symbolic links, which cannot occur here). + If the number of bytes left to skip is at least + as large as the size of the current file, we can + decrement n_skip and go on to the next file. */ + if (fstat(fileno(G.in_stream), &file_stats) == 0 + && S_ISREG(file_stats.st_mode) && file_stats.st_size > 0 + ) { + if (file_stats.st_size < n_skip) { + n_skip -= file_stats.st_size; + /* take "check & close / open_next" route */ + } else { + if (fseeko(G.in_stream, n_skip, SEEK_CUR) != 0) + G.exit_code = 1; + return; + } + } else { + /* If it's not a regular file with positive size, + position the file pointer by reading. */ + char buf[1024]; + size_t n_bytes_to_read = 1024; + size_t n_bytes_read; + + while (n_skip > 0) { + if (n_skip < n_bytes_to_read) + n_bytes_to_read = n_skip; + n_bytes_read = fread(buf, 1, n_bytes_to_read, G.in_stream); + n_skip -= n_bytes_read; + if (n_bytes_read != n_bytes_to_read) + break; /* EOF on this file or error */ + } + } + if (n_skip == 0) + return; + + check_and_close(); + open_next_file(); + } + + if (n_skip) + bb_simple_error_msg_and_die("can't skip past end of combined input"); +} + + +typedef void FN_format_address(off_t address, char c); + +static void +format_address_none(off_t address UNUSED_PARAM, char c UNUSED_PARAM) +{ +} + +static void +format_address_std(off_t address, char c) +{ + /* Corresponds to 'c' */ + G.address_fmt[sizeof(G.address_fmt)-2] = c; + printf(G.address_fmt, address); +} + +#if ENABLE_LONG_OPTS +/* only used with --traditional */ +static void +format_address_paren(off_t address, char c) +{ + putchar('('); + format_address_std(address, ')'); + if (c) putchar(c); +} + +static void +format_address_label(off_t address, char c) +{ + format_address_std(address, ' '); + format_address_paren(address + G_pseudo_offset, c); +} +#endif + +static void +dump_hexl_mode_trailer(size_t n_bytes, const char *block) +{ + fputs_stdout(" >"); + while (n_bytes--) { + unsigned c = *(unsigned char *) block++; + c = (ISPRINT(c) ? c : '.'); + putchar(c); + } + putchar('<'); +} + +/* Write N_BYTES bytes from CURR_BLOCK to standard output once for each + of the N_SPEC format specs. CURRENT_OFFSET is the byte address of + CURR_BLOCK in the concatenation of input files, and it is printed + (optionally) only before the output line associated with the first + format spec. When duplicate blocks are being abbreviated, the output + for a sequence of identical input blocks is the output for the first + block followed by an asterisk alone on a line. It is valid to compare + the blocks PREV_BLOCK and CURR_BLOCK only when N_BYTES == BYTES_PER_BLOCK. + That condition may be false only for the last input block -- and then + only when it has not been padded to length BYTES_PER_BLOCK. */ + +static void +write_block(off_t current_offset, size_t n_bytes, + const char *prev_block, const char *curr_block) +{ + unsigned i; + + if (!(option_mask32 & OPT_v) + && G.not_first + && n_bytes == G.bytes_per_block + && memcmp(prev_block, curr_block, G.bytes_per_block) == 0 + ) { + if (G.prev_pair_equal) { + /* The two preceding blocks were equal, and the current + block is the same as the last one, so print nothing. */ + } else { + puts("*"); + G.prev_pair_equal = 1; + } + } else { + G.not_first = 1; + G.prev_pair_equal = 0; + for (i = 0; i < G.n_specs; i++) { + if (i == 0) + G.format_address(current_offset, '\0'); + else + printf("%*s", address_pad_len_char - '0', ""); + (*G.spec[i].print_function) (n_bytes, curr_block, G.spec[i].fmt_string); + if (G.spec[i].hexl_mode_trailer) { + /* space-pad out to full line width, then dump the trailer */ + unsigned datum_width = width_bytes[G.spec[i].size]; + unsigned blank_fields = (G.bytes_per_block - n_bytes) / datum_width; + unsigned field_width = G.spec[i].field_width + 1; + printf("%*s", blank_fields * field_width, ""); + dump_hexl_mode_trailer(n_bytes, curr_block); + } + putchar('\n'); + } + } +} + +static void +read_block(size_t n, char *block, size_t *n_bytes_in_buffer) +{ + assert(0 < n && n <= G.bytes_per_block); + + *n_bytes_in_buffer = 0; + + if (n == 0) + return; + + while (G.in_stream != NULL) { /* EOF. */ + size_t n_needed; + size_t n_read; + + n_needed = n - *n_bytes_in_buffer; + n_read = fread(block + *n_bytes_in_buffer, 1, n_needed, G.in_stream); + *n_bytes_in_buffer += n_read; + if (n_read == n_needed) + break; + /* error check is done in check_and_close */ + check_and_close(); + open_next_file(); + } +} + +/* Return the least common multiple of the sizes associated + with the format specs. */ + +static int +get_lcm(void) +{ + size_t i; + int l_c_m = 1; + + for (i = 0; i < G.n_specs; i++) + l_c_m = lcm(l_c_m, width_bytes[(int) G.spec[i].size]); + return l_c_m; +} + +/* Read a chunk of size BYTES_PER_BLOCK from the input files, write the + formatted block to standard output, and repeat until the specified + maximum number of bytes has been read or until all input has been + processed. If the last block read is smaller than BYTES_PER_BLOCK + and its size is not a multiple of the size associated with a format + spec, extend the input block with zero bytes until its length is a + multiple of all format spec sizes. Write the final block. Finally, + write on a line by itself the offset of the byte after the last byte + read. */ + +static void +dump(off_t current_offset, off_t end_offset) +{ + char *block[2]; + int idx; + size_t n_bytes_read; + + block[0] = xmalloc(2 * G.bytes_per_block); + block[1] = block[0] + G.bytes_per_block; + + idx = 0; + if (option_mask32 & OPT_N) { + while (1) { + size_t n_needed; + if (current_offset >= end_offset) { + n_bytes_read = 0; + break; + } + n_needed = MIN(end_offset - current_offset, (off_t) G.bytes_per_block); + read_block(n_needed, block[idx], &n_bytes_read); + if (n_bytes_read < G.bytes_per_block) + break; + assert(n_bytes_read == G.bytes_per_block); + write_block(current_offset, n_bytes_read, block[idx ^ 1], block[idx]); + current_offset += n_bytes_read; + idx ^= 1; + } + } else { + while (1) { + read_block(G.bytes_per_block, block[idx], &n_bytes_read); + if (n_bytes_read < G.bytes_per_block) + break; + assert(n_bytes_read == G.bytes_per_block); + write_block(current_offset, n_bytes_read, block[idx ^ 1], block[idx]); + current_offset += n_bytes_read; + idx ^= 1; + } + } + + if (n_bytes_read > 0) { + int l_c_m; + size_t bytes_to_write; + + l_c_m = get_lcm(); + + /* Make bytes_to_write the smallest multiple of l_c_m that + is at least as large as n_bytes_read. */ + bytes_to_write = l_c_m * ((n_bytes_read + l_c_m - 1) / l_c_m); + + memset(block[idx] + n_bytes_read, 0, bytes_to_write - n_bytes_read); + write_block(current_offset, bytes_to_write, + block[idx ^ 1], block[idx]); + current_offset += n_bytes_read; + } + + G.format_address(current_offset, '\n'); + + if ((option_mask32 & OPT_N) && current_offset >= end_offset) + check_and_close(); + + free(block[0]); +} + +/* Read N bytes into BLOCK from the concatenation of the input files + named in the global array FILE_LIST. On the first call to this + function, the global variable IN_STREAM is expected to be an open + stream associated with the input file INPUT_FILENAME. If all N + bytes cannot be read from IN_STREAM, close IN_STREAM and update + the global variables IN_STREAM and INPUT_FILENAME. Then try to + read the remaining bytes from the newly opened file. Repeat if + necessary until EOF is reached for the last file in FILE_LIST. + On subsequent calls, don't modify BLOCK and return zero. Set + *N_BYTES_IN_BUFFER to the number of bytes read. If an error occurs, + it will be detected through ferror when the stream is about to be + closed. If there is an error, give a message but continue reading + as usual and return nonzero. Otherwise return zero. */ + +/* STRINGS mode. Find each "string constant" in the input. + A string constant is a run of at least 'string_min' ASCII + graphic (or formatting) characters terminated by a null. + Based on a function written by Richard Stallman for a + traditional version of od. */ + +static void +dump_strings(off_t address, off_t end_offset) +{ + unsigned bufsize = MAX(100, G.string_min); + unsigned char *buf = xmalloc(bufsize); + + while (1) { + size_t i; + int c; + + /* See if the next 'G.string_min' chars are all printing chars. */ + tryline: + if ((option_mask32 & OPT_N) && (end_offset - G.string_min <= address)) + break; + i = 0; + while (!(option_mask32 & OPT_N) || address < end_offset) { + if (i == bufsize) { + bufsize += bufsize/8; + buf = xrealloc(buf, bufsize); + } + + while (G.in_stream) { /* !EOF */ + c = fgetc(G.in_stream); + if (c != EOF) + goto got_char; + check_and_close(); + open_next_file(); + } + /* EOF */ + goto ret; + got_char: + address++; + if (!c) + break; + if (!ISPRINT(c)) + goto tryline; /* It isn't; give up on this string. */ + buf[i++] = c; /* String continues; store it all. */ + } + + if (i < G.string_min) /* Too short! */ + goto tryline; + + /* If we get here, the string is all printable and NUL-terminated */ + buf[i] = 0; + G.format_address(address - i - 1, ' '); + + for (i = 0; (c = buf[i]); i++) { + switch (c) { + case '\007': fputs_stdout("\\a"); break; + case '\b': fputs_stdout("\\b"); break; + case '\f': fputs_stdout("\\f"); break; + case '\n': fputs_stdout("\\n"); break; + case '\r': fputs_stdout("\\r"); break; + case '\t': fputs_stdout("\\t"); break; + case '\v': fputs_stdout("\\v"); break; + default: putchar(c); + } + } + putchar('\n'); + } + + /* We reach this point only if we search through + (max_bytes_to_format - G.string_min) bytes before reaching EOF. */ + check_and_close(); + ret: + free(buf); +} + +#if ENABLE_LONG_OPTS +/* If S is a valid traditional offset specification with an optional + leading '+' return nonzero and set *OFFSET to the offset it denotes. */ + +static int +parse_old_offset(const char *s, off_t *offset) +{ + static const struct suffix_mult Bb[] ALIGN_SUFFIX = { + { "B", 1024 }, + { "b", 512 }, + { "", 0 } + }; + char *p; + int radix; + + /* Skip over any leading '+'. */ + if (s[0] == '+') ++s; + if (!isdigit(s[0])) return 0; /* not a number */ + + /* Determine the radix we'll use to interpret S. If there is a '.', + * it's decimal, otherwise, if the string begins with '0X'or '0x', + * it's hexadecimal, else octal. */ + p = strchr(s, '.'); + radix = 8; + if (p) { + p[0] = '\0'; /* cheating */ + radix = 10; + } else if (s[0] == '0' && (s[1] == 'x' || s[1] == 'X')) + radix = 16; + + *offset = xstrtooff_sfx(s, radix, Bb); + if (p) p[0] = '.'; + + return (*offset >= 0); +} +#endif + +int od_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int od_main(int argc UNUSED_PARAM, char **argv) +{ +#if ENABLE_LONG_OPTS + static const char od_longopts[] ALIGN1 = + "skip-bytes\0" Required_argument "j" + "address-radix\0" Required_argument "A" + "read-bytes\0" Required_argument "N" + "format\0" Required_argument "t" + "output-duplicates\0" No_argument "v" + /* Yes, it's true: -S NUM, but --strings[=NUM]! + * that is, NUM is mandatory for -S but optional for --strings! + */ + "strings\0" Optional_argument "S" + "width\0" Optional_argument "w" + "traditional\0" No_argument "\xff" + ; +#endif + const char *str_A, *str_N, *str_j, *str_S = "3"; + llist_t *lst_t = NULL; + unsigned opt; + int l_c_m; + /* The number of input bytes to skip before formatting and writing. */ + off_t n_bytes_to_skip = 0; + /* The offset of the first byte after the last byte to be formatted. */ + off_t end_offset = 0; + /* The maximum number of bytes that will be formatted. */ + off_t max_bytes_to_format = 0; + + INIT_G(); + + /*G.spec = NULL; - already is */ + G.format_address = format_address_std; + address_base_char = 'o'; + address_pad_len_char = '7'; + + /* Parse command line */ + opt = OD_GETOPT32(); + argv += optind; + if (opt & OPT_A) { + static const char doxn[] ALIGN1 = "doxn"; + static const char doxn_address_base_char[] ALIGN1 = { + 'u', 'o', 'x', /* '?' fourth one is not important */ + }; + static const uint8_t doxn_address_pad_len_char[] ALIGN1 = { + '7', '7', '6', /* '?' */ + }; + char *p; + int pos; + p = strchr(doxn, str_A[0]); + if (!p) + bb_error_msg_and_die("bad output address radix " + "'%c' (must be [doxn])", str_A[0]); + pos = p - doxn; + if (pos == 3) G.format_address = format_address_none; + address_base_char = doxn_address_base_char[pos]; + address_pad_len_char = doxn_address_pad_len_char[pos]; + } + if (opt & OPT_N) { + max_bytes_to_format = xstrtooff_sfx(str_N, 0, bkm_suffixes); + } + + if (opt & OPT_a) decode_format_string("a"); + if (opt & OPT_b) decode_format_string("oC"); + if (opt & OPT_c) decode_format_string("c"); + if (opt & OPT_d) decode_format_string("u2"); + if (opt & OPT_D) decode_format_string("uI"); + if (opt & OPT_f) decode_format_string("fF"); + if (opt & (OPT_h|OPT_x)) decode_format_string("x2"); + if (opt & (OPT_H|OPT_X)) decode_format_string("xI"); + /* -I,L,l: depend on word width of the arch (what is "long"?) */ +#if ULONG_MAX > 0xffffffff + if (opt & OPT_i) decode_format_string("dI"); + if (opt & (OPT_I|OPT_l|OPT_L)) decode_format_string("dL"); +#else + /* 32-bit arch: -I,L,l are the same as -i */ + if (opt & (OPT_i|OPT_I|OPT_l|OPT_L)) decode_format_string("dI"); +#endif + if (opt & OPT_j) n_bytes_to_skip = xstrtooff_sfx(str_j, 0, bkm_suffixes); + if (opt & (OPT_o|OPT_B)) decode_format_string("o2"); + if (opt & OPT_O) decode_format_string("oI"); + while (lst_t) { + decode_format_string(llist_pop(&lst_t)); + } + if (opt & OPT_s) decode_format_string("d2"); + if (opt & OPT_S) { + G.string_min = xstrtou_sfx(str_S, 0, bkm_suffixes); + } + + // Bloat: + //if ((option_mask32 & OPT_S) && G.n_specs > 0) + // bb_error_msg_and_die("no type may be specified when dumping strings"); + + /* If the --traditional option is used, there may be from + * 0 to 3 remaining command line arguments; handle each case + * separately. + * od [FILE] [[+]OFFSET[.][b] [[+]LABEL[.][b]]] + * The offset and pseudo_start have the same syntax. + * + * FIXME: POSIX 1003.1-2001 with XSI requires support for the + * traditional syntax even if --traditional is not given. */ + +#if ENABLE_LONG_OPTS + if (opt & OPT_traditional) { + if (argv[0]) { + off_t pseudo_start = -1; + off_t o1, o2; + + if (!argv[1]) { /* one arg */ + if (parse_old_offset(argv[0], &o1)) { + /* od --traditional OFFSET */ + n_bytes_to_skip = o1; + argv++; + } + /* od --traditional FILE */ + } else if (!argv[2]) { /* two args */ + if (parse_old_offset(argv[0], &o1) + && parse_old_offset(argv[1], &o2) + ) { + /* od --traditional OFFSET LABEL */ + n_bytes_to_skip = o1; + pseudo_start = o2; + argv += 2; + } else if (parse_old_offset(argv[1], &o2)) { + /* od --traditional FILE OFFSET */ + n_bytes_to_skip = o2; + argv[1] = NULL; + } else { + bb_error_msg_and_die("invalid second argument '%s'", argv[1]); + } + } else if (!argv[3]) { /* three args */ + if (parse_old_offset(argv[1], &o1) + && parse_old_offset(argv[2], &o2) + ) { + /* od --traditional FILE OFFSET LABEL */ + n_bytes_to_skip = o1; + pseudo_start = o2; + argv[1] = NULL; + } else { + bb_simple_error_msg_and_die("the last two arguments must be offsets"); + } + } else { /* >3 args */ + bb_simple_error_msg_and_die("too many arguments"); + } + + if (pseudo_start >= 0) { + if (G.format_address == format_address_none) { + address_base_char = 'o'; + address_pad_len_char = '7'; + G.format_address = format_address_paren; + } else { + G.format_address = format_address_label; + } + G_pseudo_offset = pseudo_start - n_bytes_to_skip; + } + } + /* else: od --traditional (without args) */ + } +#endif + + if (option_mask32 & OPT_N) { + end_offset = n_bytes_to_skip + max_bytes_to_format; + if (end_offset < n_bytes_to_skip) + bb_simple_error_msg_and_die("SKIP + SIZE is too large"); + } + + if (G.n_specs == 0) { + decode_format_string("o2"); + /*G.n_specs = 1; - done by decode_format_string */ + } + + /* If no files were listed on the command line, + set the global pointer FILE_LIST so that it + references the null-terminated list of one name: "-". */ + G.file_list = bb_argv_dash; + if (argv[0]) { + /* Set the global pointer FILE_LIST so that it + references the first file-argument on the command-line. */ + G.file_list = (char const *const *) argv; + } + + /* Open the first input file */ + open_next_file(); + /* Skip over any unwanted header bytes */ + skip(n_bytes_to_skip); + if (!G.in_stream) + return EXIT_FAILURE; + + /* Compute output block length */ + l_c_m = get_lcm(); + + if (opt & OPT_w) { /* -w: width */ + if (!G.bytes_per_block || G.bytes_per_block % l_c_m != 0) { + bb_error_msg("warning: invalid width %u; using %d instead", + (unsigned)G.bytes_per_block, l_c_m); + G.bytes_per_block = l_c_m; + } + } else { + G.bytes_per_block = l_c_m; + if (l_c_m < DEFAULT_BYTES_PER_BLOCK) + G.bytes_per_block *= DEFAULT_BYTES_PER_BLOCK / l_c_m; + } + +#ifdef DEBUG + { + int i; + for (i = 0; i < G.n_specs; i++) { + printf("%d: fmt='%s' width=%d\n", + i, G.spec[i].fmt_string, + width_bytes[G.spec[i].size]); + } + } +#endif + + if (option_mask32 & OPT_S) + dump_strings(n_bytes_to_skip, end_offset); + else + dump(n_bytes_to_skip, end_offset); + + if (fclose(stdin)) + bb_simple_perror_msg_and_die(bb_msg_standard_input); + + return G.exit_code; +} diff --git a/busybox-1_37_0/coreutils/paste.c b/busybox-1_37_0/coreutils/paste.c new file mode 100644 index 000000000..3e5f20158 --- /dev/null +++ b/busybox-1_37_0/coreutils/paste.c @@ -0,0 +1,140 @@ +/* vi: set sw=4 ts=4: */ +/* + * paste.c - implementation of the posix paste command + * + * Written by Maxime Coste + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config PASTE +//config: bool "paste (5.1 kb)" +//config: default y +//config: help +//config: paste is used to paste lines of different files together +//config: and write the result to stdout + +//applet:IF_PASTE(APPLET_NOEXEC(paste, paste, BB_DIR_USR_BIN, BB_SUID_DROP, paste)) + +//kbuild:lib-$(CONFIG_PASTE) += paste.o + +//usage:#define paste_trivial_usage +//usage: "[-d LIST] [-s] [FILE]..." +//usage:#define paste_full_usage "\n\n" +//usage: "Paste lines from each input file, separated with tab\n" +//usage: "\n -d LIST Use delimiters from LIST, not tab" +//usage: "\n -s Serial: one file at a time" +//usage: +//usage:#define paste_example_usage +//usage: "# write out directory in four columns\n" +//usage: "$ ls | paste - - - -\n" +//usage: "# combine pairs of lines from a file into single lines\n" +//usage: "$ paste -s -d '\\t\\n' file\n" + +#include "libbb.h" + +static void paste_files(FILE** files, int file_cnt, char* delims, int del_cnt) +{ + char *line; + char delim; + int active_files = file_cnt; + int i; + + while (active_files > 0) { + int del_idx = 0; + + for (i = 0; i < file_cnt; ++i) { + if (files[i] == NULL) + continue; + + line = xmalloc_fgetline(files[i]); + if (!line) { + fclose_if_not_stdin(files[i]); + files[i] = NULL; + --active_files; + continue; + } + fputs_stdout(line); + free(line); + delim = '\n'; + if (i != file_cnt - 1) { + delim = delims[del_idx++]; + if (del_idx == del_cnt) + del_idx = 0; + } + if (delim != '\0') + fputc(delim, stdout); + } + } +} + +static void paste_files_separate(FILE** files, char* delims, int del_cnt) +{ + char *line, *next_line; + char delim; + int i; + + for (i = 0; files[i]; ++i) { + int del_idx = 0; + + line = NULL; + while ((next_line = xmalloc_fgetline(files[i])) != NULL) { + if (line) { + fputs_stdout(line); + free(line); + delim = delims[del_idx++]; + if (del_idx == del_cnt) + del_idx = 0; + if (delim != '\0') + fputc(delim, stdout); + } + line = next_line; + } + if (line) { + /* coreutils adds \n even if this is a final line + * of the last file and it was not \n-terminated. + */ + printf("%s\n", line); + free(line); + } + fclose_if_not_stdin(files[i]); + } +} + +#define PASTE_OPT_DELIMITERS (1 << 0) +#define PASTE_OPT_SEPARATE (1 << 1) + +int paste_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int paste_main(int argc UNUSED_PARAM, char **argv) +{ + char *delims = (char*)"\t"; + int del_cnt = 1; + unsigned opt; + int i; + + opt = getopt32(argv, "d:s", &delims); + argv += optind; + + if (opt & PASTE_OPT_DELIMITERS) { + if (!delims[0]) + bb_simple_error_msg_and_die("-d '' is not supported"); + /* unknown mappings are not changed: "\z" -> '\\' 'z' */ + /* trailing backslash, if any, is preserved */ + del_cnt = strcpy_and_process_escape_sequences(delims, delims) - delims; + /* note: handle NUL properly (do not stop at it!): try -d'\t\0\t' */ + } + + if (!argv[0]) + (--argv)[0] = (char*) "-"; + for (i = 0; argv[i]; ++i) { + argv[i] = (void*) fopen_or_warn_stdin(argv[i]); + if (!argv[i]) + xfunc_die(); + } + + if (opt & PASTE_OPT_SEPARATE) + paste_files_separate((FILE**)argv, delims, del_cnt); + else + paste_files((FILE**)argv, i, delims, del_cnt); + + fflush_stdout_and_exit(0); +} diff --git a/busybox-1_37_0/coreutils/printenv.c b/busybox-1_37_0/coreutils/printenv.c new file mode 100644 index 000000000..0ca9e6114 --- /dev/null +++ b/busybox-1_37_0/coreutils/printenv.c @@ -0,0 +1,59 @@ +/* vi: set sw=4 ts=4: */ +/* + * printenv implementation for busybox + * + * Copyright (C) 2005 by Erik Andersen + * Copyright (C) 2005 by Mike Frysinger + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config PRINTENV +//config: bool "printenv (1.6 kb)" +//config: default y +//config: help +//config: printenv is used to print all or part of environment. + +//applet:IF_PRINTENV(APPLET_NOFORK(printenv, printenv, BB_DIR_BIN, BB_SUID_DROP, printenv)) + +//kbuild:lib-$(CONFIG_PRINTENV) += printenv.o + +//usage:#define printenv_trivial_usage +//usage: "[VARIABLE]..." +//usage:#define printenv_full_usage "\n\n" +//usage: "Print environment VARIABLEs.\n" +//usage: "If no VARIABLE specified, print all." + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int printenv_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int printenv_main(int argc UNUSED_PARAM, char **argv) +{ + int exit_code = EXIT_SUCCESS; + + /* no variables specified, show whole env */ + if (!argv[1]) { + char **e = environ; + + /* environ can be NULL! (for example, after clearenv()) + * Check for that: + */ + if (e) + while (*e) + puts(*e++); + } else { + /* search for specified variables and print them out if found */ + char *arg, *env; + + while ((arg = *++argv) != NULL) { + env = getenv(arg); + if (env) + puts(env); + else + exit_code = EXIT_FAILURE; + } + } + + fflush_stdout_and_exit(exit_code); +} diff --git a/busybox-1_37_0/coreutils/printf.c b/busybox-1_37_0/coreutils/printf.c new file mode 100644 index 000000000..4edcfa9b5 --- /dev/null +++ b/busybox-1_37_0/coreutils/printf.c @@ -0,0 +1,456 @@ +/* vi: set sw=4 ts=4: */ +/* + * printf - format and print data + * + * Copyright 1999 Dave Cinege + * Portions copyright (C) 1990-1996 Free Software Foundation, Inc. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Usage: printf format [argument...] + * + * A front end to the printf function that lets it be used from the shell. + * + * Backslash escapes: + * + * \" = double quote + * \\ = backslash + * \a = alert (bell) + * \b = backspace + * \c = produce no further output + * \f = form feed + * \n = new line + * \r = carriage return + * \t = horizontal tab + * \v = vertical tab + * \0ooo = octal number (ooo is 0 to 3 digits) + * \xhhh = hexadecimal number (hhh is 1 to 3 digits) + * + * Additional directive: + * + * %b = print an argument string, interpreting backslash escapes + * + * The 'format' argument is re-used as many times as necessary + * to convert all of the given arguments. + * + * David MacKenzie + */ +/* 19990508 Busy Boxed! Dave Cinege */ + +//config:config PRINTF +//config: bool "printf (4.1 kb)" +//config: default y +//config: help +//config: printf is used to format and print specified strings. +//config: It's similar to 'echo' except it has more options. + +//applet:IF_PRINTF(APPLET_NOFORK(printf, printf, BB_DIR_USR_BIN, BB_SUID_DROP, printf)) + +//kbuild:lib-$(CONFIG_PRINTF) += printf.o +//kbuild:lib-$(CONFIG_ASH_PRINTF) += printf.o +//kbuild:lib-$(CONFIG_HUSH_PRINTF) += printf.o + +//usage:#define printf_trivial_usage +//usage: "FORMAT [ARG]..." +//usage:#define printf_full_usage "\n\n" +//usage: "Format and print ARG(s) according to FORMAT (a-la C printf)" +//usage: +//usage:#define printf_example_usage +//usage: "$ printf \"Val=%d\\n\" 5\n" +//usage: "Val=5\n" + +#include "libbb.h" + +/* A note on bad input: neither bash 3.2 nor coreutils 6.10 stop on it. + * They report it: + * bash: printf: XXX: invalid number + * printf: XXX: expected a numeric value + * bash: printf: 123XXX: invalid number + * printf: 123XXX: value not completely converted + * but then they use 0 (or partially converted numeric prefix) as a value + * and continue. They exit with 1 in this case. + * Both accept insane field width/precision (e.g. %9999999999.9999999999d). + * Both print error message and assume 0 if %*.*f width/precision is "bad" + * (but negative numbers are not "bad"). + * Both accept negative numbers for %u specifier. + * + * We try to be compatible. + */ + +typedef void FAST_FUNC (*converter)(const char *arg, void *result); + +static int multiconvert(const char *arg, void *result, converter convert) +{ + if (*arg == '"' || *arg == '\'') { + arg = utoa((unsigned char)arg[1]); + } + errno = 0; + convert(arg, result); + if (errno) { + bb_error_msg("invalid number '%s'", arg); + return 1; + } + return 0; +} + +static void FAST_FUNC conv_strtoull(const char *arg, void *result) +{ + /* Allow leading '+' - bb_strtoull() by itself does not allow it, + * and probably shouldn't (other callers might require purely numeric + * inputs to be allowed. + */ + if (arg[0] == '+') + arg++; + *(unsigned long long*)result = bb_strtoull(arg, NULL, 0); + /* both coreutils 6.10 and bash 3.2: + * $ printf '%x\n' -2 + * fffffffffffffffe + * Mimic that: + */ + if (errno) { + *(unsigned long long*)result = bb_strtoll(arg, NULL, 0); + } +} +static void FAST_FUNC conv_strtoll(const char *arg, void *result) +{ + if (arg[0] == '+') + arg++; + *(long long*)result = bb_strtoll(arg, NULL, 0); +} +static void FAST_FUNC conv_strtod(const char *arg, void *result) +{ + char *end; + /* Well, this one allows leading whitespace... so what? */ + /* What I like much less is that "-" accepted too! :( */ +//TODO: needs setlocale(LC_NUMERIC, "C")? + *(double*)result = strtod(arg, &end); + if (end[0]) { + errno = ERANGE; + *(double*)result = 0; + } +} + +/* Callers should check errno to detect errors */ +static unsigned long long my_xstrtoull(const char *arg) +{ + unsigned long long result; + if (multiconvert(arg, &result, conv_strtoull)) + result = 0; + return result; +} +static long long my_xstrtoll(const char *arg) +{ + long long result; + if (multiconvert(arg, &result, conv_strtoll)) + result = 0; + return result; +} +static double my_xstrtod(const char *arg) +{ + double result; + multiconvert(arg, &result, conv_strtod); + return result; +} + +/* Handles %b; return 1 if output is to be short-circuited by \c */ +static int print_esc_string(const char *str) +{ + char c; + while ((c = *str) != '\0') { + str++; + if (c == '\\') { + /* %b also accepts 4-digit octals of the form \0### */ + if (*str == '0') { + if ((unsigned char)(str[1] - '0') < 8) { + /* 2nd char is 0..7: skip leading '0' */ + str++; + } + } + else if (*str == 'c') { + return 1; + } + { + /* optimization: don't force arg to be on-stack, + * use another variable for that. */ + const char *z = str; + c = bb_process_escape_sequence(&z); + str = z; + } + } + putchar(c); + } + + return 0; +} + +static void print_direc(char *format, unsigned fmt_length, + int field_width, int precision, + const char *argument) +{ + long long llv; + double dv; + char saved; + char *have_prec, *have_width; + + saved = format[fmt_length]; + format[fmt_length] = '\0'; + + have_prec = strstr(format, ".*"); + have_width = strchr(format, '*'); + if (have_width - 1 == have_prec) + have_width = NULL; + + /* multiconvert sets errno = 0, but %s needs it cleared */ + errno = 0; + + switch (format[fmt_length - 1]) { + case 'c': + printf(format, *argument); + break; + case 'd': + case 'i': + llv = my_xstrtoll(skip_whitespace(argument)); + print_long: + if (!have_width) { + if (!have_prec) + printf(format, llv); + else + printf(format, precision, llv); + } else { + if (!have_prec) + printf(format, field_width, llv); + else + printf(format, field_width, precision, llv); + } + break; + case 'o': + case 'u': + case 'x': + case 'X': + llv = my_xstrtoull(skip_whitespace(argument)); + /* cheat: unsigned long and long have same width, so... */ + goto print_long; + case 's': + /* Are char* and long long the same? */ + if (sizeof(argument) == sizeof(llv)) { + llv = (long long)(ptrdiff_t)argument; + goto print_long; + } else { + /* Hope compiler will optimize it out by moving call + * instruction after the ifs... */ + if (!have_width) { + if (!have_prec) + printf(format, argument, /*unused:*/ argument, argument); + else + printf(format, precision, argument, /*unused:*/ argument); + } else { + if (!have_prec) + printf(format, field_width, argument, /*unused:*/ argument); + else + printf(format, field_width, precision, argument); + } + break; + } + case 'f': + case 'e': + case 'E': + case 'g': + case 'G': + dv = my_xstrtod(argument); + if (!have_width) { + if (!have_prec) + printf(format, dv); + else + printf(format, precision, dv); + } else { + if (!have_prec) + printf(format, field_width, dv); + else + printf(format, field_width, precision, dv); + } + break; + } /* switch */ + + format[fmt_length] = saved; +} + +/* Handle params for "%*.*f". Negative numbers are ok (compat). */ +static int get_width_prec(const char *str) +{ + int v = bb_strtoi(str, NULL, 10); + if (errno) { + bb_error_msg("invalid number '%s'", str); + v = 0; + } + return v; +} + +/* Print the text in FORMAT, using ARGV for arguments to any '%' directives. + Return advanced ARGV. */ +static char **print_formatted(char *f, char **argv, int *conv_err) +{ + char *direc_start; /* Start of % directive. */ + unsigned direc_length; /* Length of % directive. */ + int field_width; /* Arg to first '*' */ + int precision; /* Arg to second '*' */ + char **saved_argv = argv; + + for (; *f; ++f) { + switch (*f) { + case '%': + direc_start = f++; + direc_length = 1; + field_width = precision = 0; + if (*f == '%') { + bb_putchar('%'); + break; + } + if (*f == 'b') { + if (*argv) { + if (print_esc_string(*argv)) + return saved_argv; /* causes main() to exit */ + ++argv; + } + break; + } + while (*f && strchr("-+ #0", *f)) { + ++f; + ++direc_length; + } + if (*f == '*') { + ++f; + ++direc_length; + if (*argv) + field_width = get_width_prec(*argv++); + } else { + while (isdigit(*f)) { + ++f; + ++direc_length; + } + } + if (*f == '.') { + ++f; + ++direc_length; + if (*f == '*') { + ++f; + ++direc_length; + if (*argv) + precision = get_width_prec(*argv++); + } else { + while (isdigit(*f)) { + ++f; + ++direc_length; + } + } + } + + /* Remove "lLhz" size modifiers, repeatedly. + * bash does not like "%lld", but coreutils + * happily takes even "%Llllhhzhhzd"! + * We are permissive like coreutils */ + while ((*f | 0x20) == 'l' || *f == 'h' || *f == 'z') { + overlapping_strcpy(f, f + 1); + } + /* Add "ll" if integer modifier, then print */ + { + static const char format_chars[] ALIGN1 = "diouxXfeEgGcs"; + char *p = strchr(format_chars, *f); + /* needed - try "printf %" without it */ + if (p == NULL || *f == '\0') { + bb_error_msg("%s: invalid format", direc_start); + /* causes main() to exit with error */ + return saved_argv - 1; + } + ++direc_length; + if (p - format_chars <= 5) { + /* it is one of "diouxX" */ + p = xmalloc(direc_length + 3); + memcpy(p, direc_start, direc_length); + p[direc_length + 1] = p[direc_length - 1]; + p[direc_length - 1] = 'l'; + p[direc_length] = 'l'; + //bb_error_msg("<%s>", p); + direc_length += 2; + direc_start = p; + } else { + p = NULL; + } + if (*argv) { + print_direc(direc_start, direc_length, field_width, + precision, *argv++); + } else { + print_direc(direc_start, direc_length, field_width, + precision, ""); + } + *conv_err |= errno; + free(p); + } + break; + case '\\': + if (*++f == 'c') { + return saved_argv; /* causes main() to exit */ + } + bb_putchar(bb_process_escape_sequence((const char **)&f)); + f--; + break; + default: + putchar(*f); + } + } + + return argv; +} + +int printf_main(int argc UNUSED_PARAM, char **argv) +{ + int conv_err; + char *format; + char **argv2; + + /* We must check that stdout is not closed. + * The reason for this is highly non-obvious. + * printf_main is used from shell. + * Shell must correctly handle 'printf "%s" foo' + * if stdout is closed. With stdio, output gets shoveled into + * stdout buffer, and even fflush cannot clear it out. It seems that + * even if libc receives EBADF on write attempts, it feels determined + * to output data no matter what. So it will try later, + * and possibly will clobber future output. Not good. */ +// TODO: check fcntl() & O_ACCMODE == O_WRONLY or O_RDWR? + if (fcntl(1, F_GETFL) == -1) + return 1; /* match coreutils 6.10 (sans error msg to stderr) */ + //if (dup2(1, 1) != 1) - old way + // return 1; + + /* bash builtin errors out on "printf '-%s-\n' foo", + * coreutils-6.9 works. Both work with "printf -- '-%s-\n' foo". + * We will mimic coreutils. */ + argv = skip_dash_dash(argv); + + if (!argv[0]) { + if ((ENABLE_ASH_PRINTF || ENABLE_HUSH_PRINTF) + && applet_name[0] != 'p' + ) { + bb_simple_error_msg("usage: printf FORMAT [ARGUMENT...]"); + return 2; /* bash compat */ + } + bb_show_usage(); + } + + format = argv[0]; + argv2 = argv + 1; + + conv_err = 0; + do { + argv = argv2; + argv2 = print_formatted(format, argv, &conv_err); + } while (argv2 > argv && *argv2); + + /* coreutils compat (bash doesn't do this): + if (*argv) + fprintf(stderr, "excess args ignored"); + */ + + return (argv2 < argv) /* if true, print_formatted errored out */ + || conv_err; /* print_formatted saw invalid number */ +} diff --git a/busybox-1_37_0/coreutils/pwd.c b/busybox-1_37_0/coreutils/pwd.c new file mode 100644 index 000000000..e62461719 --- /dev/null +++ b/busybox-1_37_0/coreutils/pwd.c @@ -0,0 +1,93 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini pwd implementation for busybox + * + * Copyright (C) 1995, 1996 by Bruce Perens . + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config PWD +//config: bool "pwd (4 kb)" +//config: default y +//config: help +//config: pwd is used to print the current directory. + +//applet:IF_PWD(APPLET_NOFORK(pwd, pwd, BB_DIR_BIN, BB_SUID_DROP, pwd)) + +//kbuild:lib-$(CONFIG_PWD) += pwd.o + +//usage:#define pwd_trivial_usage +//usage: "" +//usage:#define pwd_full_usage "\n\n" +//usage: "Print the full filename of the current working directory" +//usage: +//usage:#define pwd_example_usage +//usage: "$ pwd\n" +//usage: "/root\n" + +#include "libbb.h" + +static int logical_getcwd(void) +{ + struct stat st1; + struct stat st2; + char *wd; + char *p; + + wd = getenv("PWD"); + if (!wd || wd[0] != '/') + return 0; + + p = wd; + while (*p) { + /* doing strstr(p, "/.") by hand is smaller and faster... */ + if (*p++ != '/') + continue; + if (*p != '.') + continue; + /* we found "/.", skip to next char */ + p++; + if (*p == '.') + p++; /* we found "/.." */ + if (*p == '\0' || *p == '/') + return 0; /* "/./" or "/../" component: bad */ + } + + if (stat(wd, &st1) != 0) + return 0; + if (stat(".", &st2) != 0) + return 0; + if (st1.st_ino != st2.st_ino) + return 0; + if (st1.st_dev != st2.st_dev) + return 0; + + puts(wd); + return 1; +} + +int pwd_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int pwd_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + char *buf; + + if (ENABLE_DESKTOP) { + /* TODO: assume -L if $POSIXLY_CORRECT? (coreutils does that) + * Rationale: + * POSIX requires a default of -L, but most scripts expect -P + */ + unsigned opt = getopt32(argv, "LP"); + if ((opt & 1) && logical_getcwd()) + return fflush_all(); + } + + buf = xrealloc_getcwd_or_warn(NULL); + + if (buf) { + puts(buf); + free(buf); + return fflush_all(); + } + + return EXIT_FAILURE; +} diff --git a/busybox-1_37_0/coreutils/readlink.c b/busybox-1_37_0/coreutils/readlink.c new file mode 100644 index 000000000..9200f4ae0 --- /dev/null +++ b/busybox-1_37_0/coreutils/readlink.c @@ -0,0 +1,94 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini readlink implementation for busybox + * + * Copyright (C) 2000,2001 Matt Kraai + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config READLINK +//config: bool "readlink (4.8 kb)" +//config: default y +//config: help +//config: This program reads a symbolic link and returns the name +//config: of the file it points to +//config: +//config:config FEATURE_READLINK_FOLLOW +//config: bool "Enable canonicalization by following all symlinks (-f)" +//config: default y +//config: depends on READLINK +//config: help +//config: Enable the readlink option (-f). + +//applet:IF_READLINK(APPLET_NOFORK(readlink, readlink, BB_DIR_USR_BIN, BB_SUID_DROP, readlink)) + +//kbuild:lib-$(CONFIG_READLINK) += readlink.o + +//usage:#define readlink_trivial_usage +//usage: IF_FEATURE_READLINK_FOLLOW("[-fnv] ") +//usage: IF_NOT_FEATURE_READLINK_FOLLOW("[-n] ") +//usage: "FILE" +//usage:#define readlink_full_usage "\n\n" +//usage: "Display the value of a symlink" "\n" +//usage: "\n -n Don't add newline" +//usage: IF_FEATURE_READLINK_FOLLOW( +//usage: "\n -f Canonicalize by following all symlinks" +//usage: "\n -v Verbose" +//usage: ) + +#include "libbb.h" + +/* + * # readlink --version + * readlink (GNU coreutils) 6.10 + * # readlink --help + * -f, --canonicalize + * canonicalize by following every symlink in + * every component of the given name recursively; + * all but the last component must exist + * -e, --canonicalize-existing + * canonicalize by following every symlink in + * every component of the given name recursively, + * all components must exist + * -m, --canonicalize-missing + * canonicalize by following every symlink in + * every component of the given name recursively, + * without requirements on components existence + * -n, --no-newline do not output the trailing newline + * -q, --quiet, -s, --silent suppress most error messages + * -v, --verbose report error messages + * + * bbox supports: -f (partially) -n -v (fully), -q -s (accepts but ignores) + * Note: we export the -f flag, but our -f behaves like coreutils' -e. + * Unfortunately, there isn't a C lib function we can leverage to get this + * behavior which means we'd have to implement the full stack ourselves :(. + */ + +int readlink_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int readlink_main(int argc UNUSED_PARAM, char **argv) +{ + char *buf; + unsigned opt; + + /* -n must use bit 0 (see printf below) */ + opt = getopt32(argv, "^" "n" IF_FEATURE_READLINK_FOLLOW("fvsq") + "\0" "=1"); + + /* compat: coreutils readlink reports errors silently via exit code */ + if (!(opt & 4)) /* not -v */ + logmode = LOGMODE_NONE; + + /* NOFORK: only one alloc is allowed; must free */ + if (opt & 2) { /* -f */ + buf = xmalloc_realpath_coreutils(argv[optind]); + } else { + buf = xmalloc_readlink_or_warn(argv[optind]); + } + + if (!buf) + return EXIT_FAILURE; + printf("%s%s", buf, &"\n"[opt & 1]); + free(buf); + + fflush_stdout_and_exit_SUCCESS(); +} diff --git a/busybox-1_37_0/coreutils/realpath.c b/busybox-1_37_0/coreutils/realpath.c new file mode 100644 index 000000000..22820a789 --- /dev/null +++ b/busybox-1_37_0/coreutils/realpath.c @@ -0,0 +1,52 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Now does proper error checking on output and returns a failure exit code + * if one or more paths cannot be resolved. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config REALPATH +//config: bool "realpath (2.5 kb)" +//config: default y +//config: help +//config: Return the canonicalized absolute pathname. +//config: This isn't provided by GNU shellutils, but where else does it belong. + +//applet:IF_REALPATH(APPLET_NOFORK(realpath, realpath, BB_DIR_USR_BIN, BB_SUID_DROP, realpath)) + +//kbuild:lib-$(CONFIG_REALPATH) += realpath.o + +/* BB_AUDIT SUSv3 N/A -- Apparently a busybox extension. */ + +//usage:#define realpath_trivial_usage +//usage: "FILE..." +//usage:#define realpath_full_usage "\n\n" +//usage: "Print absolute pathnames of FILEs" + +#include "libbb.h" + +int realpath_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int realpath_main(int argc UNUSED_PARAM, char **argv) +{ + int retval = EXIT_SUCCESS; + + if (!*++argv) { + bb_show_usage(); + } + + do { + /* NOFORK: only one alloc is allowed; must free */ + char *resolved_path = xmalloc_realpath_coreutils(*argv); + if (resolved_path != NULL) { + puts(resolved_path); + free(resolved_path); + } else { + retval = EXIT_FAILURE; + bb_simple_perror_msg(*argv); + } + } while (*++argv); + + fflush_stdout_and_exit(retval); +} diff --git a/busybox-1_37_0/coreutils/rm.c b/busybox-1_37_0/coreutils/rm.c new file mode 100644 index 000000000..93e01a340 --- /dev/null +++ b/busybox-1_37_0/coreutils/rm.c @@ -0,0 +1,76 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini rm implementation for busybox + * + * Copyright (C) 2001 Matt Kraai + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Size reduction. + */ +//config:config RM +//config: bool "rm (5.5 kb)" +//config: default y +//config: help +//config: rm is used to remove files or directories. + +//applet:IF_RM(APPLET_NOEXEC(rm, rm, BB_DIR_BIN, BB_SUID_DROP, rm)) +/* was NOFORK, but then "rm -i FILE" can't be ^C'ed if run by hush */ + +//kbuild:lib-$(CONFIG_RM) += rm.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/rm.html */ + +//usage:#define rm_trivial_usage +//usage: "[-irf] FILE..." +//usage:#define rm_full_usage "\n\n" +//usage: "Remove (unlink) FILEs\n" +//usage: "\n -i Always prompt before removing" +//usage: "\n -f Never prompt" +//usage: "\n -R,-r Recurse" +//usage: +//usage:#define rm_example_usage +//usage: "$ rm -rf /tmp/foo\n" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + +int rm_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int rm_main(int argc UNUSED_PARAM, char **argv) +{ + int status = 0; + int flags = 0; + unsigned opt; + + opt = getopt32(argv, "^" "fiRrv" "\0" "f-i:i-f"); + argv += optind; + if (opt & 1) + flags |= FILEUTILS_FORCE; + if (opt & 2) + flags |= FILEUTILS_INTERACTIVE; + if (opt & (8|4)) + flags |= FILEUTILS_RECUR; + if ((opt & 16) && FILEUTILS_VERBOSE) + flags |= FILEUTILS_VERBOSE; + + if (*argv != NULL) { + do { + const char *base = bb_get_last_path_component_strip(*argv); + + if (DOT_OR_DOTDOT(base)) { + bb_simple_error_msg("can't remove '.' or '..'"); + } else if (remove_file(*argv, flags) >= 0) { + continue; + } + status = 1; + } while (*++argv); + } else if (!(flags & FILEUTILS_FORCE)) { + bb_show_usage(); + } + + return status; +} diff --git a/busybox-1_37_0/coreutils/rmdir.c b/busybox-1_37_0/coreutils/rmdir.c new file mode 100644 index 000000000..96753e009 --- /dev/null +++ b/busybox-1_37_0/coreutils/rmdir.c @@ -0,0 +1,95 @@ +/* vi: set sw=4 ts=4: */ +/* + * rmdir implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config RMDIR +//config: bool "rmdir (3.8 kb)" +//config: default y +//config: help +//config: rmdir is used to remove empty directories. + +//applet:IF_RMDIR(APPLET_NOFORK(rmdir, rmdir, BB_DIR_BIN, BB_SUID_DROP, rmdir)) + +//kbuild:lib-$(CONFIG_RMDIR) += rmdir.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/rmdir.html */ + +//usage:#define rmdir_trivial_usage +//usage: "[-p] DIRECTORY..." +//usage:#define rmdir_full_usage "\n\n" +//usage: "Remove DIRECTORY if it is empty\n" +//usage: "\n -p Include parents" +//usage: IF_LONG_OPTS( +//usage: "\n --ignore-fail-on-non-empty" +//usage: ) +//usage: +//usage:#define rmdir_example_usage +//usage: "# rmdir /tmp/foo\n" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + + +#define PARENTS (1 << 0) +#define VERBOSE ((1 << 1) * ENABLE_FEATURE_VERBOSE) +#define IGNORE_NON_EMPTY ((1 << 2) * ENABLE_LONG_OPTS) + +int rmdir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int rmdir_main(int argc UNUSED_PARAM, char **argv) +{ + int status = EXIT_SUCCESS; + int flags; + char *path; + + flags = getopt32long(argv, "pv", + "parents\0" No_argument "p" + /* Debian etch: many packages fail to be purged or installed + * because they desperately want this option: */ + "ignore-fail-on-non-empty\0" No_argument "\xff" + IF_FEATURE_VERBOSE( + "verbose\0" No_argument "v" + ) + ); + argv += optind; + + if (!*argv) { + bb_show_usage(); + } + + do { + path = *argv; + + while (1) { + if (flags & VERBOSE) { + printf("rmdir: removing directory, '%s'\n", path); + } + + if (rmdir(path) < 0) { +#if ENABLE_LONG_OPTS + if ((flags & IGNORE_NON_EMPTY) && errno == ENOTEMPTY) + break; +#endif + bb_perror_msg("'%s'", path); /* Match gnu rmdir msg. */ + status = EXIT_FAILURE; + } else if (flags & PARENTS) { + /* Note: path was not "" since rmdir succeeded. */ + path = dirname(path); + /* Path is now just the parent component. Dirname + * returns "." if there are no parents. + */ + if (NOT_LONE_CHAR(path, '.')) { + continue; + } + } + break; + } + } while (*++argv); + + return status; +} diff --git a/busybox-1_37_0/coreutils/seq.c b/busybox-1_37_0/coreutils/seq.c new file mode 100644 index 000000000..094f74e87 --- /dev/null +++ b/busybox-1_37_0/coreutils/seq.c @@ -0,0 +1,142 @@ +/* vi: set sw=4 ts=4: */ +/* + * seq implementation for busybox + * + * Copyright (C) 2004, Glenn McGrath + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//config:config SEQ +//config: bool "seq (4 kb)" +//config: default y +//config: help +//config: print a sequence of numbers + +//applet:IF_SEQ(APPLET_NOEXEC(seq, seq, BB_DIR_USR_BIN, BB_SUID_DROP, seq)) +/* was NOFORK, but then "seq 1 999999999" can't be ^C'ed if run by hush */ + +//kbuild:lib-$(CONFIG_SEQ) += seq.o + +//usage:#define seq_trivial_usage +//usage: "[-w] [-s SEP] [FIRST [INC]] LAST" +//usage:#define seq_full_usage "\n\n" +//usage: "Print numbers from FIRST to LAST, in steps of INC.\n" +//usage: "FIRST, INC default to 1.\n" +//usage: "\n -w Pad with leading zeros" +//usage: "\n -s SEP String separator" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + +int seq_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int seq_main(int argc, char **argv) +{ + enum { + OPT_w = (1 << 0), + OPT_s = (1 << 1), + }; + double first, last, increment, v; + unsigned n; + unsigned width; + unsigned frac_part; + const char *sep, *opt_s = "\n"; + char *saved; + unsigned opt; + +#if ENABLE_LOCALE_SUPPORT + /* Undo busybox.c: on input, we want to use dot + * as fractional separator, regardless of current locale */ + setlocale(LC_NUMERIC, "C"); +#endif + + /* Cater for negative arguments: if we see one, truncate argv[] on it */ + n = 0; + for (;;) { + char c; + saved = argv[++n]; + if (!saved) + break; + if (saved[0] != '-') { + // break; // "seq -s : -1 1" won't be treated correctly + continue; + } +// "seq -s -1 1 9" is not treated correctly, but such usage +// (delimiter string which looks like negative number) is very unlikely + c = saved[1]; + if (c == '.' || (c >= '0' && c <= '9')) { + argv[n] = NULL; + break; + } + } + opt = getopt32(argv, "+ws:", &opt_s); /* "+": stop at first non-option */ + /* Restore possibly truncated argv[] */ + argv[n] = saved; + + argc -= optind; + argv += optind; + first = increment = 1; + errno = 0; + switch (argc) { + char *pp; + case 3: + increment = strtod(argv[1], &pp); + errno |= *pp; + case 2: + first = strtod(argv[0], &pp); + errno |= *pp; + case 1: + last = strtod(argv[argc-1], &pp); + if (!errno && *pp == '\0') + break; + default: + bb_show_usage(); + } + +#if ENABLE_LOCALE_SUPPORT + setlocale(LC_NUMERIC, ""); +#endif + + /* Last checked to be compatible with: coreutils-6.10 */ + width = 0; + frac_part = 0; + while (1) { + char *dot = strchrnul(*argv, '.'); + int w = (dot - *argv); + int f = strlen(dot); + if (width < w) + width = w; + argv++; + if (!*argv) + break; + /* Why do the above _before_ frac check below? + * Try "seq 1 2.0" and "seq 1.0 2.0": + * coreutils never pay attention to the number + * of fractional digits in last arg. */ + if (frac_part < f) + frac_part = f; + } + if (frac_part) { + frac_part--; + if (frac_part) + width += frac_part + 1; + } + if (!(opt & OPT_w)) + width = 0; + + sep = ""; + v = first; + n = 0; + while (increment >= 0 ? v <= last : v >= last) { + if (printf("%s%0*.*f", sep, width, frac_part, v) < 0) + break; /* I/O error, bail out (yes, this really happens) */ + sep = opt_s; + /* v += increment; - would accumulate floating point errors */ + n++; + v = first + n * increment; + } + if (n) /* if while loop executed at least once */ + bb_putchar('\n'); + + return fflush_all(); +} diff --git a/busybox-1_37_0/coreutils/shred.c b/busybox-1_37_0/coreutils/shred.c new file mode 100644 index 000000000..7c0be612a --- /dev/null +++ b/busybox-1_37_0/coreutils/shred.c @@ -0,0 +1,111 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2017 Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +//config:config SHRED +//config: bool "shred (5.5 kb)" +//config: default y +//config: help +//config: Overwrite a file to hide its contents, and optionally delete it + +//applet:IF_SHRED(APPLET(shred, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_SHRED) += shred.o + +//usage:#define shred_trivial_usage +//usage: "[-fuz] [-n N] [-s SIZE] FILE..." +//usage:#define shred_full_usage "\n\n" +//usage: "Overwrite/delete FILEs\n" +//usage: "\n -f Chmod to ensure writability" +//usage: "\n -s SIZE Size to write" +//usage: "\n -n N Overwrite N times (default 3)" +//usage: "\n -z Final overwrite with zeros" +//usage: "\n -u Remove file" +//-x (exact: don't round up to 4k) and -v (verbose) are accepted but have no effect + +/* shred (GNU coreutils) 8.25: +-f, --force change permissions to allow writing if necessary +-u truncate and remove file after overwriting +-z, --zero add a final overwrite with zeros to hide shredding +-n, --iterations=N overwrite N times instead of the default (3) +-v, --verbose show progress +-x, --exact do not round file sizes up to the next full block; this is the default for non-regular files +--random-source=FILE get random bytes from FILE +-s, --size=N shred this many bytes (suffixes like K, M, G accepted) +--remove[=HOW] like -u but give control on HOW to delete; See below +*/ + +#include "libbb.h" + +int shred_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int shred_main(int argc UNUSED_PARAM, char **argv) +{ + char *opt_s; + int rand_fd = rand_fd; /* for compiler */ + int zero_fd; + unsigned num_iter = 3; + unsigned opt; + enum { + OPT_f = (1 << 0), + OPT_u = (1 << 1), + OPT_z = (1 << 2), + OPT_n = (1 << 3), + OPT_v = (1 << 4), + OPT_x = (1 << 5), + OPT_s = (1 << 6), + }; + + opt = getopt32(argv, "^" "fuzn:+vxs:" "\0" "-1"/*min 1 arg*/, &num_iter, &opt_s); + argv += optind; + + zero_fd = xopen("/dev/zero", O_RDONLY); + if (num_iter != 0) + rand_fd = xopen("/dev/urandom", O_RDONLY); + + for (;;) { + struct stat sb; + const char *fname; + unsigned i; + int fd; + + fname = *argv++; + if (!fname) + break; + fd = -1; + if (opt & OPT_f) { + fd = open(fname, O_WRONLY); + if (fd < 0) + chmod(fname, 0666); + } + if (fd < 0) + fd = xopen(fname, O_WRONLY); + + if (fstat(fd, &sb) == 0 && sb.st_size > 0) { + off_t size = sb.st_size; + + if (opt & OPT_s) { + size = BB_STRTOOFF(opt_s, NULL, 0); /* accepts oct/hex */ + if (errno || size < 0) bb_show_usage(); + } + + for (i = 0; i < num_iter; i++) { + bb_copyfd_size(rand_fd, fd, size); + fdatasync(fd); + xlseek(fd, 0, SEEK_SET); + } + if (opt & OPT_z) { + bb_copyfd_size(zero_fd, fd, size); + fdatasync(fd); + } + } + if (opt & OPT_u) { + ftruncate(fd, 0); + xunlink(fname); + } + xclose(fd); + } + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/shuf.c b/busybox-1_37_0/coreutils/shuf.c new file mode 100644 index 000000000..0d23382a2 --- /dev/null +++ b/busybox-1_37_0/coreutils/shuf.c @@ -0,0 +1,221 @@ +/* vi: set sw=4 ts=4: */ +/* + * shuf: Write a random permutation of the input lines to standard output. + * + * Copyright (C) 2014 by Bartosz Golaszewski + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config SHUF +//config: bool "shuf (6 kb)" +//config: default y +//config: help +//config: Generate random permutations + +//applet:IF_SHUF(APPLET_NOEXEC(shuf, shuf, BB_DIR_USR_BIN, BB_SUID_DROP, shuf)) + +//kbuild:lib-$(CONFIG_SHUF) += shuf.o + +//usage:#define shuf_trivial_usage +//usage: "[-n NUM] [-o FILE] [-z] [FILE | -e [ARG...] | -i L-H]" +//usage:#define shuf_full_usage "\n\n" +//usage: "Randomly permute lines\n" +//usage: "\n -n NUM Output at most NUM lines" +//usage: "\n -o FILE Write to FILE, not standard output" +//usage: "\n -z NUL terminated output" +//usage: "\n -e Treat ARGs as lines" +//usage: "\n -i L-H Treat numbers L-H as lines" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + +#define OPT_e (1 << 0) +#define OPT_i (1 << 1) +#define OPT_n (1 << 2) +#define OPT_o (1 << 3) +#define OPT_z (1 << 4) +#define OPT_STR "ei:n:o:z" + +/* + * Use the Fisher-Yates shuffle algorithm on an array of lines. + * If the required number of output lines is less than the total + * we can stop shuffling early. + */ +static void shuffle_lines(char **lines, unsigned numlines, unsigned outlines) +{ + srand(monotonic_us()); + + while (outlines != 0) { + char *tmp; + unsigned r = rand(); + /* RAND_MAX can be as small as 32767 */ + if (numlines > RAND_MAX) + r ^= rand() << 15; + r %= numlines; +//TODO: the above method is seriously non-uniform when numlines is very large. +//For example, with numlines of 0xf0000000, +//values of (r % numlines) in [0, 0x0fffffff] range +//are more likely: e.g. r=1 and r=0xf0000001 both map to 1, +//whereas only one value, r=0xefffffff, maps to 0xefffffff. + numlines--; + tmp = lines[numlines]; + lines[numlines] = lines[r]; + lines[r] = tmp; + outlines--; + } +} + +/* We can handle insanity like this: + * shuf -i 333333333333333333333333333333001-333333333333333333333333333333019 + * but do we want to have +200 bytes of code (~40% code growth)? + */ +#define COMMON_PREFIX_HACK 0 + +int shuf_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int shuf_main(int argc, char **argv) +{ + unsigned opts; + char *opt_i_str, *opt_n_str, *opt_o_str; + char **lines; + unsigned long long lo = lo; + unsigned numlines, outlines; + unsigned i; + char eol; +#if COMMON_PREFIX_HACK + unsigned pfx_len = 0; + unsigned padding_width = padding_width; + const char *pfx = pfx; +#endif + + opts = getopt32(argv, "^" + OPT_STR + "\0" "e--i:i--e"/* mutually exclusive */, + &opt_i_str, &opt_n_str, &opt_o_str + ); + + argc -= optind; + argv += optind; + + /* Prepare lines for shuffling - either: */ + if (opts & OPT_e) { + /* make lines from command-line arguments */ + numlines = argc; + lines = argv; + } else + if (opts & OPT_i) { + /* create a range of numbers */ + unsigned long long hi; + char *dash; + + if (argv[0]) + bb_show_usage(); + + dash = strchr(opt_i_str, '-'); + if (!dash) { + bb_error_msg_and_die("bad range '%s'", opt_i_str); + } + *dash++ = '\0'; +#if COMMON_PREFIX_HACK + { + const char *a = opt_i_str; + const char *b = dash; + /* Skip leading zeros (they may mask that common prefix does exist) */ + while (*a == '0') a++; + while (*b == '0') b++; + /* Do we have a common prefix (long enough to bother)? */ + padding_width = strlen(a); + if (padding_width > 5 && padding_width == strlen(b)) { + /* How long is it? */ + pfx = a; + while (isdigit(*a) && *a == *b + && a[1] /* "111111-111111" case: avoid xatoull("") */ + ) { + a++; + b++; + } + pfx_len = a - pfx; /* can end up being 0 */ + padding_width -= pfx_len; + } else { + /* Undo leading zero 'eating' (think "0-9") */ + a = opt_i_str; + b = dash; + } + lo = xatoull(a); + hi = xatoull(b); + } +#else + lo = xatoull(opt_i_str); + hi = xatoull(dash); +#endif + dash[-1] = '-'; + if (hi < lo) + bb_error_msg_and_die("bad range '%s'", opt_i_str); + hi -= lo; + if (sizeof(size_t) > sizeof(numlines)) { + if (hi >= UINT_MAX) + bb_error_msg_and_die("bad range '%s'", opt_i_str); + } else { + if (hi >= UINT_MAX / sizeof(lines[0])) + bb_error_msg_and_die("bad range '%s'", opt_i_str); + } + + numlines = hi + 1; + lines = xmalloc((size_t)numlines * sizeof(lines[0])); + for (i = 0; i < numlines; i++) { + lines[i] = (char*)(uintptr_t)i; + } + } else { + /* default - read lines from stdin or the input file */ + FILE *fp; + const char *fname = "-"; + + if (argv[0]) { + if (argv[1]) + bb_show_usage(); + fname = argv[0]; + } + + fp = xfopen_stdin(fname); + lines = NULL; + numlines = 0; + for (;;) { + char *line = xmalloc_fgetline(fp); + if (!line) + break; + lines = xrealloc_vector(lines, 6, numlines); + lines[numlines++] = line; + } + fclose_if_not_stdin(fp); + } + + outlines = numlines; + if (opts & OPT_n) { + outlines = xatou(opt_n_str); + if (outlines > numlines) + outlines = numlines; + } + + shuffle_lines(lines, numlines, outlines); + + if (opts & OPT_o) + xmove_fd(xopen(opt_o_str, O_WRONLY|O_CREAT|O_TRUNC), STDOUT_FILENO); + + eol = '\n'; + if (opts & OPT_z) + eol = '\0'; + + for (i = numlines - outlines; i < numlines; i++) { + if (opts & OPT_i) { +#if COMMON_PREFIX_HACK + if (pfx_len != 0) + printf("%.*s%0*llu%c", pfx_len, pfx, padding_width, lo + (uintptr_t)lines[i], eol); + else +#endif + printf("%llu%c", lo + (uintptr_t)lines[i], eol); + } else + printf("%s%c", lines[i], eol); + } + + fflush_stdout_and_exit_SUCCESS(); +} diff --git a/busybox-1_37_0/coreutils/sleep.c b/busybox-1_37_0/coreutils/sleep.c new file mode 100644 index 000000000..6fd00f9f1 --- /dev/null +++ b/busybox-1_37_0/coreutils/sleep.c @@ -0,0 +1,103 @@ +/* vi: set sw=4 ts=4: */ +/* + * sleep implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Rewritten to do proper arg and error checking. + * Also, added a 'fancy' configuration to accept multiple args with + * time suffixes for seconds, minutes, hours, and days. + */ +//config:config SLEEP +//config: bool "sleep (2.4 kb)" +//config: default y +//config: help +//config: sleep is used to pause for a specified number of seconds. +//config: It comes in 2 versions: +//config: - small: takes one integer parameter +//config: - fancy: +//config: * takes multiple integer arguments with suffixes: +//config: sleep 1d 2h 3m 15s +//config: * allows fractional numbers: +//config: sleep 2.3s 4.5h sleeps for 16202.3 seconds +//config: fancy is more compatible with coreutils sleep, but it adds around +//config: 1k of code. +//config: +//config:config FEATURE_FANCY_SLEEP +//config: bool "Enable multiple arguments and s/m/h/d suffixes" +//config: default y +//config: depends on SLEEP +//config: help +//config: Allow sleep to pause for specified minutes, hours, and days. + +/* Do not make this applet NOFORK. It breaks ^C-ing of pauses in shells */ +//applet:IF_SLEEP(APPLET(sleep, BB_DIR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_SLEEP) += sleep.o +//kbuild:lib-$(CONFIG_ASH_SLEEP) += sleep.o + +/* BB_AUDIT SUSv3 compliant */ +/* BB_AUDIT GNU issues -- fancy version matches except args must be ints. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/sleep.html */ + +//usage:#define sleep_trivial_usage +//usage: IF_FEATURE_FANCY_SLEEP("[") "N" IF_FEATURE_FANCY_SLEEP("]...") +//usage:#define sleep_full_usage "\n\n" +//usage: IF_NOT_FEATURE_FANCY_SLEEP("Pause for N seconds") +//usage: IF_FEATURE_FANCY_SLEEP( +//usage: "Pause for a time equal to the total of the args given, where each arg can\n" +//usage: "have an optional suffix of (s)econds, (m)inutes, (h)ours, or (d)ays") +//usage: +//usage:#define sleep_example_usage +//usage: "$ sleep 2\n" +//usage: "[2 second delay results]\n" +//usage: IF_FEATURE_FANCY_SLEEP( +//usage: "$ sleep 1d 3h 22m 8s\n" +//usage: "[98528 second delay results]\n") + +#include "libbb.h" + +int sleep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int sleep_main(int argc UNUSED_PARAM, char **argv) +{ + duration_t duration; + + /* Note: sleep_main may be directly called from ash as a builtin. + * This brings some complications: + * + we can't use xfunc here + * + we can't use bb_show_usage + * + applet_name can be the name of the shell + */ + argv = skip_dash_dash(argv); + if (!argv[0]) { + /* Without this, bare "sleep" in ash shows _ash_ --help */ + /* (ash can be the "sh" applet as well, so check 2nd char) */ + if (ENABLE_ASH_SLEEP && applet_name[1] != 'l') { + bb_simple_error_msg("sleep: missing operand"); + return EXIT_FAILURE; + } + bb_show_usage(); + } + + /* GNU sleep accepts "inf", "INF", "infinity" and "INFINITY" */ + if (strncasecmp(argv[0], "inf", 3) == 0) + for (;;) + sleep(INT_MAX); + +//FIXME: in ash, "sleep 123qwerty" as a builtin aborts the shell +#if ENABLE_FEATURE_FANCY_SLEEP + duration = 0; + do { + duration += parse_duration_str(*argv); + } while (*++argv); + sleep_for_duration(duration); +#else /* simple */ + duration = xatou(*argv); + sleep(duration); +#endif + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/sort.c b/busybox-1_37_0/coreutils/sort.c new file mode 100644 index 000000000..2e952f81c --- /dev/null +++ b/busybox-1_37_0/coreutils/sort.c @@ -0,0 +1,684 @@ +/* vi: set sw=4 ts=4: */ +/* + * SuS3 compliant sort implementation for busybox + * + * Copyright (C) 2004 by Rob Landley + * + * MAINTAINER: Rob Landley + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * See SuS3 sort standard at: + * http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html + */ +//config:config SORT +//config: bool "sort (8.1 kb)" +//config: default y +//config: help +//config: sort is used to sort lines of text in specified files. +//config: +//config:config FEATURE_SORT_BIG +//config: bool "Full SuSv3 compliant sort (support -ktcbdfioghM)" +//config: default y +//config: depends on SORT +//config: help +//config: Without this, sort only supports -rusz, and an integer version +//config: of -n. Selecting this adds sort keys, floating point support, and +//config: more. This adds a little over 3k to a nonstatic build on x86. +//config: +//config: The SuSv3 sort standard is available at: +//config: http://www.opengroup.org/onlinepubs/007904975/utilities/sort.html +//config: +//config:config FEATURE_SORT_OPTIMIZE_MEMORY +//config: bool "Use less memory (but might be slower)" +//config: default n # defaults to N since we are size-paranoid tribe +//config: depends on SORT +//config: help +//config: Attempt to use less memory (by storing only one copy +//config: of duplicated lines, and such). Useful if you work on huge files. + +//applet:IF_SORT(APPLET_NOEXEC(sort, sort, BB_DIR_USR_BIN, BB_SUID_DROP, sort)) + +//kbuild:lib-$(CONFIG_SORT) += sort.o + +//usage:#define sort_trivial_usage +//usage: "[-nru" +//usage: IF_FEATURE_SORT_BIG("ghMcszbdfiokt] [-o FILE] [-k START[.OFS][OPTS][,END[.OFS][OPTS]] [-t CHAR") +//usage: "] [FILE]..." +//usage:#define sort_full_usage "\n\n" +//usage: "Sort lines of text\n" +//usage: IF_FEATURE_SORT_BIG( +//usage: "\n -o FILE Output to FILE" +//usage: "\n -c Check whether input is sorted" +//usage: "\n -b Ignore leading blanks" +//usage: "\n -f Ignore case" +//usage: "\n -i Ignore unprintable characters" +//usage: "\n -d Dictionary order (blank or alphanumeric only)" +//usage: ) +//-h, --human-numeric-sort: compare human readable numbers (e.g., 2K 1G) +//usage: "\n -n Sort numbers" +//usage: IF_FEATURE_SORT_BIG( +//usage: "\n -g General numerical sort" +//usage: "\n -h Sort human readable numbers (2K 1G)" +//usage: "\n -M Sort month" +//usage: "\n -V Sort version" +//usage: "\n -t CHAR Field separator" +//usage: "\n -k N[,M] Sort by Nth field" +//usage: ) +//usage: "\n -r Reverse sort order" +//usage: "\n -s Stable (don't sort ties alphabetically)" +//usage: "\n -u Suppress duplicate lines" +//usage: "\n -z NUL terminated input and output" +///////: "\n -m Ignored for GNU compatibility" +///////: "\n -S BUFSZ Ignored for GNU compatibility" +///////: "\n -T TMPDIR Ignored for GNU compatibility" +//usage: +//usage:#define sort_example_usage +//usage: "$ echo -e \"e\\nf\\nb\\nd\\nc\\na\" | sort\n" +//usage: "a\n" +//usage: "b\n" +//usage: "c\n" +//usage: "d\n" +//usage: "e\n" +//usage: "f\n" +//usage: IF_FEATURE_SORT_BIG( +//usage: "$ echo -e \"c 3\\nb 2\\nd 2\" | $SORT -k 2,2n -k 1,1r\n" +//usage: "d 2\n" +//usage: "b 2\n" +//usage: "c 3\n" +//usage: ) +//usage: "" + +#include "libbb.h" + +/* These are sort types */ +enum { + FLAG_n = 1 << 0, /* Numeric sort */ + FLAG_g = 1 << 1, /* Sort using strtod() */ + FLAG_h = 1 << 2, /* Sort using strtod(), plus KMGT suffixes */ + FLAG_M = 1 << 3, /* Sort date */ + FLAG_V = 1 << 4, /* Sort version */ +/* ucsz apply to root level only, not keys. b at root level implies bb */ + FLAG_u = 1 << 5, /* Unique */ + FLAG_c = 1 << 6, /* Check: no output, exit(!ordered) */ + FLAG_s = 1 << 7, /* Stable sort, no ascii fallback at end */ + FLAG_z = 1 << 8, /* Input and output is NUL terminated, not \n */ +/* These can be applied to search keys, the previous four can't */ + FLAG_b = 1 << 9, /* Ignore leading blanks */ + FLAG_r = 1 << 10, /* Reverse */ + FLAG_d = 1 << 11, /* Ignore !(isalnum()|isspace()) */ + FLAG_f = 1 << 12, /* Force uppercase */ + FLAG_i = 1 << 13, /* Ignore !isprint() */ + FLAG_m = 1 << 14, /* ignored: merge already sorted files; do not sort */ + FLAG_S = 1 << 15, /* ignored: -S, --buffer-size=SIZE */ + FLAG_T = 1 << 16, /* ignored: -T, --temporary-directory=DIR */ + FLAG_o = 1 << 17, + FLAG_k = 1 << 18, + FLAG_t = 1 << 19, + FLAG_bb = 0x80000000, /* Ignore trailing blanks */ + FLAG_no_tie_break = 0x40000000, +}; + +static const char sort_opt_str[] ALIGN1 = "^" + "nghMVucszbrdfimS:T:o:k:*t:" + "\0" "o--o:t--t"/*-t, -o: at most one of each*/; +/* + * OPT_STR must not be string literal, needs to have stable address: + * code uses "strchr(OPT_STR,c) - OPT_STR" idiom. + */ +#define OPT_STR (sort_opt_str + 1) + +#if ENABLE_FEATURE_SORT_BIG +static char key_separator; + +static struct sort_key { + struct sort_key *next_key; /* linked list */ + unsigned range[4]; /* start word, start char, end word, end char */ + unsigned flags; +} *key_list; + + +/* This is a NOEXEC applet. Be very careful! */ + + +static char *get_key(char *str, struct sort_key *key, int flags) +{ + int start = start; /* for compiler */ + int end; + int len, j; + unsigned i; + + /* Special case whole string, so we don't have to make a copy */ + if (key->range[0] == 1 && !key->range[1] && !key->range[2] && !key->range[3] + && !(flags & (FLAG_b | FLAG_d | FLAG_f | FLAG_i | FLAG_bb)) + ) { + return str; + } + + /* Find start of key on first pass, end on second pass */ + len = strlen(str); + for (j = 0; j < 2; j++) { + if (!key->range[2*j]) + end = len; + /* Loop through fields */ + else { + unsigned char ch = 0; + + end = 0; + for (i = 1; i < key->range[2*j] + j; i++) { + if (key_separator) { + /* Skip body of key and separator */ + while ((ch = str[end]) != '\0') { + end++; + if (ch == key_separator) + break; + } + } else { + /* Skip leading blanks */ + while (isspace(str[end])) + end++; + /* Skip body of key */ + while (str[end] != '\0') { + if (isspace(str[end])) + break; + end++; + } + } + } + /* Remove last delim: "abc:def:" => "abc:def" */ + if (j && ch) { + //if (str[end-1] != key_separator) + // bb_error_msg(_and_die("BUG! " + // "str[start:%d,end:%d]:'%.*s'", + // start, end, (int)(end-start), &str[start]); + end--; + } + } + if (!j) start = end; + } + /* Strip leading whitespace if necessary */ + if (flags & FLAG_b) + /* not using skip_whitespace() for speed */ + while (isspace(str[start])) start++; + /* Strip trailing whitespace if necessary */ + if (flags & FLAG_bb) + while (end > start && isspace(str[end-1])) end--; + /* -kSTART,N.ENDCHAR: honor ENDCHAR (1-based) */ + if (key->range[3]) { + end = key->range[3]; + if (end > len) end = len; + } + /* -kN.STARTCHAR[,...]: honor STARTCHAR (1-based) */ + if (key->range[1]) { + start += key->range[1] - 1; + if (start > len) start = len; + } + /* Make the copy */ + if (end < start) + end = start; + str = xstrndup(str+start, end-start); + /* Handle -d */ + if (flags & FLAG_d) { + for (start = end = 0; str[end]; end++) + if (isspace(str[end]) || isalnum(str[end])) + str[start++] = str[end]; + str[start] = '\0'; + } + /* Handle -i */ + if (flags & FLAG_i) { + for (start = end = 0; str[end]; end++) + if (isprint_asciionly(str[end])) + str[start++] = str[end]; + str[start] = '\0'; + } + /* Handle -f */ + if (flags & FLAG_f) + for (i = 0; str[i]; i++) + str[i] = toupper(str[i]); + + return str; +} + +static struct sort_key *add_key(void) +{ + struct sort_key **pkey = &key_list; + while (*pkey) + pkey = &((*pkey)->next_key); + return *pkey = xzalloc(sizeof(struct sort_key)); +} + +#define GET_LINE(fp) \ + ((option_mask32 & FLAG_z) \ + ? bb_get_chunk_from_file(fp, NULL) \ + : xmalloc_fgetline(fp)) +#else +#define GET_LINE(fp) xmalloc_fgetline(fp) +#endif + +#if ENABLE_FEATURE_SORT_BIG +static int scale_suffix(const char *tail) +{ + static const char suffix[] ALIGN1 = "kmgtpezy"; + const char *s; + int n; + + if (!tail[0]) + return -1; + s = strchr(suffix, tail[0] | 0x20); + if (!s) + return -1; + n = s - suffix; + if (n != 0 && tail[0] >= 'a') + return -1; /* mg... not accepted, only MG... */ + return n; +} +#endif + +/* Iterate through keys list and perform comparisons */ +static int compare_keys(const void *xarg, const void *yarg) +{ + int flags = option_mask32, retval = 0; + char *x, *y; + +#if ENABLE_FEATURE_SORT_BIG + struct sort_key *key; + + for (key = key_list; !retval && key; key = key->next_key) { + flags = key->flags ? key->flags : option_mask32; + /* Chop out and modify key chunks, handling -dfib */ + x = get_key(*(char **)xarg, key, flags); + y = get_key(*(char **)yarg, key, flags); +#else + /* This curly bracket serves no purpose but to match the nesting + * level of the for () loop we're not using */ + { + x = *(char **)xarg; + y = *(char **)yarg; +#endif + /* Perform actual comparison */ + switch (flags & (FLAG_n | FLAG_g | FLAG_h | FLAG_M | FLAG_V)) { + default: + bb_simple_error_msg_and_die("unknown sort type"); + break; +#if defined(HAVE_STRVERSCMP) && HAVE_STRVERSCMP == 1 + case FLAG_V: + retval = strverscmp(x, y); + break; +#endif + /* Ascii sort */ + case 0: +#if ENABLE_LOCALE_SUPPORT + retval = strcoll(x, y); +#else + retval = strcmp(x, y); +#endif + break; +#if ENABLE_FEATURE_SORT_BIG + case FLAG_g: + case FLAG_h: { + char *xx, *yy; +//TODO: needs setlocale(LC_NUMERIC, "C")? + double dx = strtod(x, &xx); + double dy = strtod(y, &yy); + /* not numbers < NaN < -infinity < numbers < +infinity) */ + if (x == xx) + retval = (y == yy ? 0 : -1); + else if (y == yy) + retval = 1; + /* Check for isnan */ + else if (dx != dx) + retval = (dy != dy) ? 0 : -1; + else if (dy != dy) + retval = 1; + else { + if (flags & FLAG_h) { + int xs = scale_suffix(xx); + int ys = scale_suffix(yy); + if (xs != ys) { + retval = xs - ys; + break; + } + } + /* Check for infinity. Could underflow, but it avoids libm. */ + if (1.0 / dx == 0.0) { + if (dx < 0) + retval = (1.0 / dy == 0.0 && dy < 0) ? 0 : -1; + else + retval = (1.0 / dy == 0.0 && dy > 0) ? 0 : 1; + } else if (1.0 / dy == 0.0) + retval = (dy < 0) ? 1 : -1; + else + retval = (dx > dy) ? 1 : ((dx < dy) ? -1 : 0); + } + break; + } + case FLAG_M: { + struct tm thyme; + int dx; + char *xx, *yy; + + xx = strptime(skip_whitespace(x), "%b", &thyme); + dx = thyme.tm_mon; + yy = strptime(skip_whitespace(y), "%b", &thyme); + if (!xx) + retval = (!yy) ? 0 : -1; + else if (!yy) + retval = 1; + else + retval = dx - thyme.tm_mon; + break; + } + /* Full floating point version of -n */ + case FLAG_n: { + double dx = atof(x); + double dy = atof(y); + retval = (dx > dy) ? 1 : ((dx < dy) ? -1 : 0); + break; + } + } /* switch */ + /* Free key copies. */ + if (x != *(char **)xarg) free(x); + if (y != *(char **)yarg) free(y); + /* if (retval) break; - done by for () anyway */ +#else + /* Integer version of -n for tiny systems */ + case FLAG_n: + retval = atoi(x) - atoi(y); + break; + } /* switch */ +#endif + } /* for */ + + if (retval == 0) { + /* So far lines are "the same" */ + + if (option_mask32 & FLAG_s) { + /* "Stable sort": later line is "greater than", + * IOW: do not allow qsort() to swap equal lines. + */ + uint32_t *p32; + uint32_t x32, y32; + char *line; + unsigned len; + + line = *(char**)xarg; + len = (strlen(line) + 4) & (~3u); + p32 = (void*)(line + len); + x32 = *p32; + line = *(char**)yarg; + len = (strlen(line) + 4) & (~3u); + p32 = (void*)(line + len); + y32 = *p32; + + /* If x > y, 1, else -1 */ + retval = (x32 > y32) * 2 - 1; + /* Here, -r has no effect! */ + return retval; + } + if (!(option_mask32 & FLAG_no_tie_break)) { + /* fallback sort */ + flags = option_mask32; + retval = strcmp(*(char **)xarg, *(char **)yarg); + } + } + + if (flags & FLAG_r) + return -retval; + + return retval; +} + +#if ENABLE_FEATURE_SORT_BIG +static unsigned str2u(char **str) +{ + unsigned long lu; + if (!isdigit((*str)[0])) + bb_simple_error_msg_and_die("bad field specification"); + lu = strtoul(*str, str, 10); + if ((sizeof(long) > sizeof(int) && lu > INT_MAX) || !lu) + bb_simple_error_msg_and_die("bad field specification"); + return lu; +} +#endif + +int sort_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int sort_main(int argc UNUSED_PARAM, char **argv) +{ + char **lines; + char *str_ignored, *str_o, *str_t; + llist_t *lst_k = NULL; + int i; + int linecount; + unsigned opts; +#if ENABLE_FEATURE_SORT_OPTIMIZE_MEMORY + bool can_drop_dups; + size_t prev_len = 0; + char *prev_line = (char*) ""; + /* Postpone optimizing if the input is small, < 16k lines: + * even just free()ing duplicate lines takes time. + */ + size_t count_to_optimize_dups = 0x3fff; +#endif + + xfunc_error_retval = 2; + + /* Parse command line options */ + opts = getopt32(argv, + sort_opt_str, + &str_ignored, &str_ignored, &str_o, &lst_k, &str_t + ); +#if ENABLE_FEATURE_SORT_OPTIMIZE_MEMORY + /* Can drop dups only if -u but no "complicating" options, + * IOW: if we do a full line compares. Safe options: + * -o FILE Output to FILE + * -z Lines are terminated by NUL, not newline + * -r Reverse sort order + * -s Stable (don't sort ties alphabetically) + * Not sure about these: + * -b Ignore leading blanks + * -f Ignore case + * -i Ignore unprintable characters + * -d Dictionary order (blank or alphanumeric only) + * -n Sort numbers + * -g General numerical sort + * -M Sort month + */ + can_drop_dups = ((opts & ~(FLAG_o|FLAG_z|FLAG_r|FLAG_s)) == FLAG_u); + /* Stable sort needs every line to be uniquely allocated, + * disable optimization to reuse strings: + */ + if (opts & FLAG_s) + count_to_optimize_dups = (size_t)-1L; +#endif + /* global b strips leading and trailing spaces */ + if (opts & FLAG_b) + option_mask32 |= FLAG_bb; +#if ENABLE_FEATURE_SORT_BIG + if (opts & FLAG_t) { + if (!str_t[0] || str_t[1]) + bb_simple_error_msg_and_die("bad -t parameter"); + key_separator = str_t[0]; + } + /* note: below this point we use option_mask32, not opts, + * since that reduces register pressure and makes code smaller */ + + /* Parse sort key */ + while (lst_k) { + enum { + FLAG_allowed_for_k = + FLAG_n | /* Numeric sort */ + FLAG_g | /* Sort using strtod() */ + FLAG_h | /* Sort using strtod(), plus KMGT suffixes */ + FLAG_M | /* Sort date */ + FLAG_b | /* Ignore leading blanks */ + FLAG_r | /* Reverse */ + FLAG_d | /* Ignore !(isalnum()|isspace()) */ + FLAG_f | /* Force uppercase */ + FLAG_i | /* Ignore !isprint() */ + 0 + }; + struct sort_key *key = add_key(); + char *str_k = llist_pop(&lst_k); + + i = 0; /* i==0 before comma, 1 after (-k3,6) */ + while (*str_k) { + /* Start of range */ + /* Cannot use bb_strtou - suffix can be a letter */ + key->range[2*i] = str2u(&str_k); + if (*str_k == '.') { + str_k++; + key->range[2*i+1] = str2u(&str_k); + } + while (*str_k) { + int flag; + const char *idx; + + if (*str_k == ',' && !i++) { + str_k++; + break; + } /* no else needed: fall through to syntax error + because comma isn't in OPT_STR */ + idx = strchr(OPT_STR, *str_k); + if (!idx) + bb_simple_error_msg_and_die("unknown key option"); + flag = 1 << (idx - OPT_STR); + if (flag & ~FLAG_allowed_for_k) + bb_simple_error_msg_and_die("unknown sort type"); + /* b after ',' means strip _trailing_ space */ + if (i && flag == FLAG_b) + flag = FLAG_bb; + key->flags |= flag; + str_k++; + } + } + } +#endif + + /* Open input files and read data */ + argv += optind; + if (!*argv) + *--argv = (char*)"-"; + linecount = 0; + lines = NULL; + do { + /* coreutils 6.9 compat: abort on first open error, + * do not continue to next file: */ + FILE *fp = xfopen_stdin(*argv); + for (;;) { + char *line = GET_LINE(fp); + if (!line) + break; + +#if ENABLE_FEATURE_SORT_OPTIMIZE_MEMORY + if (count_to_optimize_dups != 0) + count_to_optimize_dups--; + if (count_to_optimize_dups == 0) { + size_t len; + char *new_line; + + /* On kernel/linux/arch/ *.[ch] files, + * this reduces memory usage by 6%. + * yes | head -99999999 | sort + * goes down from 1900Mb to 380 Mb. + */ + len = strlen(line); + if (len <= prev_len) { + new_line = prev_line + (prev_len - len); + if (strcmp(line, new_line) == 0) { + /* it's a tail of the prev line */ + if (can_drop_dups && prev_len == len) { + /* it's identical to prev line */ + free(line); + continue; + } + free(line); + line = new_line; + /* continue using longer prev_line + * for future tail tests. + */ + goto skip; + } + } + prev_len = len; + prev_line = line; + skip: ; + } +#else +//TODO: lighter version which only drops total dups if can_drop_dups == true +#endif + lines = xrealloc_vector(lines, 6, linecount); + lines[linecount++] = line; + } + fclose_if_not_stdin(fp); + } while (*++argv); + +#if ENABLE_FEATURE_SORT_BIG + /* If no key, perform alphabetic sort */ + if (!key_list) + add_key()->range[0] = 1; + /* Handle -c */ + if (option_mask32 & FLAG_c) { + int j = (option_mask32 & FLAG_u) ? -1 : 0; + for (i = 1; i < linecount; i++) { + if (compare_keys(&lines[i-1], &lines[i]) > j) { + fprintf(stderr, "Check line %u\n", i); + return EXIT_FAILURE; + } + } + return EXIT_SUCCESS; + } +#endif + + /* For stable sort, store original line position beyond terminating NUL */ + if (option_mask32 & FLAG_s) { + for (i = 0; i < linecount; i++) { + uint32_t *p32; + char *line; + unsigned len; + + line = lines[i]; + len = (strlen(line) + 4) & (~3u); + lines[i] = line = xrealloc(line, len + 4); + p32 = (void*)(line + len); + *p32 = i; + } + /*option_mask32 |= FLAG_no_tie_break;*/ + /* ^^^redundant: if FLAG_s, compare_keys() does no tie break */ + } + + /* Perform the actual sort */ + qsort(lines, linecount, sizeof(lines[0]), compare_keys); + + /* Handle -u */ + if (option_mask32 & FLAG_u) { + int j = 0; + /* coreutils 6.3 drop lines for which only key is the same: + * - disabling last-resort compare, or else compare_keys() + * will be the same only for completely identical lines + * - disabling -s (same reasons) + */ + option_mask32 = (option_mask32 | FLAG_no_tie_break) & (~FLAG_s); + for (i = 1; i < linecount; i++) { + if (compare_keys(&lines[j], &lines[i]) == 0) + free(lines[i]); + else + lines[++j] = lines[i]; + } + if (linecount) + linecount = j+1; + } + + /* Print it */ +#if ENABLE_FEATURE_SORT_BIG + /* Open output file _after_ we read all input ones */ + if (option_mask32 & FLAG_o) + xmove_fd(xopen(str_o, O_WRONLY|O_CREAT|O_TRUNC), STDOUT_FILENO); +#endif + { + int ch = (option_mask32 & FLAG_z) ? '\0' : '\n'; + for (i = 0; i < linecount; i++) + printf("%s%c", lines[i], ch); + } + + fflush_stdout_and_exit_SUCCESS(); +} diff --git a/busybox-1_37_0/coreutils/split.c b/busybox-1_37_0/coreutils/split.c new file mode 100644 index 000000000..b6d1b9a7b --- /dev/null +++ b/busybox-1_37_0/coreutils/split.c @@ -0,0 +1,179 @@ +/* vi: set sw=4 ts=4: */ +/* + * split - split a file into pieces + * Copyright (c) 2007 Bernhard Reutner-Fischer + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config SPLIT +//config: bool "split (5.2 kb)" +//config: default y +//config: help +//config: Split a file into pieces. +//config: +//config:config FEATURE_SPLIT_FANCY +//config: bool "Fancy extensions" +//config: default y +//config: depends on SPLIT +//config: help +//config: Add support for features not required by SUSv3. +//config: Supports additional suffixes 'b' for 512 bytes, +//config: 'g' for 1GiB for the -b option. + +//applet:IF_SPLIT(APPLET(split, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_SPLIT) += split.o + +/* BB_AUDIT: SUSv3 compliant + * SUSv3 requirements: + * http://www.opengroup.org/onlinepubs/009695399/utilities/split.html + */ + +//usage:#define split_trivial_usage +//usage: "[OPTIONS] [INPUT [PREFIX]]" +//usage:#define split_full_usage "\n\n" +//usage: " -b N[k|m] Split by N (kilo|mega)bytes" +//usage: "\n -l N Split by N lines" +//usage: "\n -a N Use N letters as suffix" +//usage: +//usage:#define split_example_usage +//usage: "$ split TODO foo\n" +//usage: "$ cat TODO | split -a 2 -l 2 TODO_\n" + +#include "libbb.h" +#include "common_bufsiz.h" + +#if ENABLE_FEATURE_SPLIT_FANCY +static const struct suffix_mult split_suffixes[] ALIGN_SUFFIX = { + { "b", 512 }, + { "k", 1024 }, + { "m", 1024*1024 }, + { "g", 1024*1024*1024 }, + { "", 0 } +}; +#endif + +/* Increment the suffix part of the filename. + * Returns NULL if we are out of filenames. + */ +static char *next_file(char *old, unsigned suffix_len) +{ + size_t end = strlen(old); + unsigned i = 1; + char *curr; + + while (1) { + curr = old + end - i; + if (*curr < 'z') { + *curr += 1; + break; + } + i++; + if (i > suffix_len) { + return NULL; + } + *curr = 'a'; + } + + return old; +} + +#define read_buffer bb_common_bufsiz1 +enum { READ_BUFFER_SIZE = COMMON_BUFSIZE - 1 }; + +#define SPLIT_OPT_l (1<<0) +#define SPLIT_OPT_b (1<<1) +#define SPLIT_OPT_a (1<<2) + +int split_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int split_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned suffix_len = 2; + char *pfx; + char *count_p; + const char *sfx; + off_t cnt = 1000; + off_t remaining = 0; + unsigned opt; + ssize_t bytes_read, to_write; + char *src; + + setup_common_bufsiz(); + + opt = getopt32(argv, "^" + "l:b:a:+" /* -a N */ + "\0" "?2"/*max 2 args*/, + &count_p, &count_p, &suffix_len + ); + + if (opt & SPLIT_OPT_l) + cnt = XATOOFF(count_p); + if (opt & SPLIT_OPT_b) // FIXME: also needs XATOOFF + cnt = xatoull_sfx(count_p, + IF_FEATURE_SPLIT_FANCY(split_suffixes) + IF_NOT_FEATURE_SPLIT_FANCY(km_suffixes) + ); + sfx = "x"; + + argv += optind; + if (argv[0]) { + int fd; + if (argv[1]) + sfx = argv[1]; + fd = xopen_stdin(argv[0]); + xmove_fd(fd, STDIN_FILENO); + } else { + argv[0] = (char *) bb_msg_standard_input; + } + + if (NAME_MAX < strlen(sfx) + suffix_len) + bb_simple_error_msg_and_die("suffix too long"); + + { + char *char_p = xzalloc(suffix_len + 1); + memset(char_p, 'a', suffix_len); + pfx = xasprintf("%s%s", sfx, char_p); + if (ENABLE_FEATURE_CLEAN_UP) + free(char_p); + } + + while (1) { + bytes_read = safe_read(STDIN_FILENO, read_buffer, READ_BUFFER_SIZE); + if (!bytes_read) + break; + if (bytes_read < 0) + bb_simple_perror_msg_and_die(argv[0]); + src = read_buffer; + do { + if (!remaining) { + if (!pfx) + bb_simple_error_msg_and_die("suffixes exhausted"); + xmove_fd(xopen(pfx, O_WRONLY | O_CREAT | O_TRUNC), 1); + pfx = next_file(pfx, suffix_len); + remaining = cnt; + } + + if (opt & SPLIT_OPT_b) { + /* split by bytes */ + to_write = (bytes_read < remaining) ? bytes_read : remaining; + remaining -= to_write; + } else { + /* split by lines */ + /* can be sped up by using _memrchr_ + * and writing many lines at once... */ + char *end = memchr(src, '\n', bytes_read); + if (end) { + --remaining; + to_write = end - src + 1; + } else { + to_write = bytes_read; + } + } + + xwrite(STDOUT_FILENO, src, to_write); + bytes_read -= to_write; + src += to_write; + } while (bytes_read); + } + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/stat.c b/busybox-1_37_0/coreutils/stat.c new file mode 100644 index 000000000..2c2909e7e --- /dev/null +++ b/busybox-1_37_0/coreutils/stat.c @@ -0,0 +1,793 @@ +/* vi: set sw=4 ts=4: */ +/* + * stat -- display file or file system status + * + * Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation. + * Copyright (C) 2005 by Erik Andersen + * Copyright (C) 2005 by Mike Frysinger + * Copyright (C) 2006 by Yoshinori Sato + * + * Written by Michael Meskes + * Taken from coreutils and turned into a busybox applet by Mike Frysinger + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config STAT +//config: bool "stat (11 kb)" +//config: default y +//config: help +//config: display file or filesystem status. +//config: +//config:config FEATURE_STAT_FORMAT +//config: bool "Enable custom formats (-c)" +//config: default y +//config: depends on STAT +//config: help +//config: Without this, stat will not support the '-c format' option where +//config: users can pass a custom format string for output. This adds about +//config: 7k to a nonstatic build on amd64. +//config: +//config:config FEATURE_STAT_FILESYSTEM +//config: bool "Enable display of filesystem status (-f)" +//config: default y +//config: depends on STAT +//config: help +//config: Without this, stat will not support the '-f' option to display +//config: information about filesystem status. + +//applet:IF_STAT(APPLET_NOEXEC(stat, stat, BB_DIR_BIN, BB_SUID_DROP, stat)) + +//kbuild:lib-$(CONFIG_STAT) += stat.o + +//usage:#define stat_trivial_usage +//usage: "[-lt"IF_FEATURE_STAT_FILESYSTEM("f")"] "IF_FEATURE_STAT_FORMAT("[-c FMT] ")"FILE..." +//usage:#define stat_full_usage "\n\n" +//usage: "Display file" +//usage: IF_FEATURE_STAT_FILESYSTEM(" (default) or filesystem") +//usage: " status\n" +//usage: IF_FEATURE_STAT_FORMAT( +//usage: "\n -c FMT Use the specified format" +//usage: ) +//usage: IF_FEATURE_STAT_FILESYSTEM( +//usage: "\n -f Display filesystem status" +//usage: ) +//usage: "\n -L Follow links" +//usage: "\n -t Terse display" +//usage: IF_SELINUX( +//usage: "\n -Z Print security context" +//usage: ) +//usage: IF_FEATURE_STAT_FORMAT( +//usage: "\n\nFMT sequences"IF_FEATURE_STAT_FILESYSTEM(" for files")":\n" +//usage: " %a Access rights in octal\n" +//usage: " %A Access rights in human readable form\n" +//usage: " %b Number of blocks allocated (see %B)\n" +//usage: " %B Size in bytes of each block reported by %b\n" +//usage: " %d Device number in decimal\n" +//usage: " %D Device number in hex\n" +//usage: " %f Raw mode in hex\n" +//usage: " %F File type\n" +//usage: " %g Group ID\n" +//usage: " %G Group name\n" +//usage: " %h Number of hard links\n" +//usage: " %i Inode number\n" +//usage: " %n File name\n" +//usage: " %N File name, with -> TARGET if symlink\n" +//usage: " %o I/O block size\n" +//usage: " %s Total size in bytes\n" +//usage: " %t Major device type in hex\n" +//usage: " %T Minor device type in hex\n" +//usage: " %u User ID\n" +//usage: " %U User name\n" +//usage: " %x Time of last access\n" +//usage: " %X Time of last access as seconds since Epoch\n" +//usage: " %y Time of last modification\n" +//usage: " %Y Time of last modification as seconds since Epoch\n" +//usage: " %z Time of last change\n" +//usage: " %Z Time of last change as seconds since Epoch\n" +//usage: IF_FEATURE_STAT_FILESYSTEM( +//usage: "\nFMT sequences for file systems:\n" +//usage: " %a Free blocks available to non-superuser\n" +//usage: " %b Total data blocks\n" +//usage: " %c Total file nodes\n" +//usage: " %d Free file nodes\n" +//usage: " %f Free blocks\n" +//usage: IF_SELINUX( +//usage: " %C Security context in selinux\n" +//usage: ) +//usage: " %i File System ID in hex\n" +//usage: " %l Maximum length of filenames\n" +//usage: " %n File name\n" +//usage: " %s Block size (for faster transfer)\n" +//usage: " %S Fundamental block size (for block counts)\n" +//usage: " %t Type in hex\n" +//usage: " %T Type in human readable form" +//usage: ) +//usage: ) + +#include "libbb.h" +#include "common_bufsiz.h" + +enum { + OPT_TERSE = (1 << 0), + OPT_DEREFERENCE = (1 << 1), + OPT_FILESYS = (1 << 2) * ENABLE_FEATURE_STAT_FILESYSTEM, + OPT_SELINUX = (1 << (2+ENABLE_FEATURE_STAT_FILESYSTEM)) * ENABLE_SELINUX, +}; + +#if ENABLE_FEATURE_STAT_FORMAT +typedef bool (*statfunc_ptr)(const char *, const char *); +#else +typedef bool (*statfunc_ptr)(const char *); +#endif + +static const char *file_type(const struct stat *st) +{ + /* See POSIX 1003.1-2001 XCU Table 4-8 lines 17093-17107 + * for some of these formats. + * To keep diagnostics grammatical in English, the + * returned string must start with a consonant. + */ + if (S_ISREG(st->st_mode)) return st->st_size == 0 ? "regular empty file" : "regular file"; + if (S_ISDIR(st->st_mode)) return "directory"; + if (S_ISBLK(st->st_mode)) return "block special file"; + if (S_ISCHR(st->st_mode)) return "character special file"; + if (S_ISFIFO(st->st_mode)) return "fifo"; + if (S_ISLNK(st->st_mode)) return "symbolic link"; + if (S_ISSOCK(st->st_mode)) return "socket"; +#ifdef S_TYPEISMQ + if (S_TYPEISMQ(st)) return "message queue"; +#endif +#ifdef S_TYPEISSEM + if (S_TYPEISSEM(st)) return "semaphore"; +#endif +#ifdef S_TYPEISSHM + if (S_TYPEISSHM(st)) return "shared memory object"; +#endif +#ifdef S_TYPEISTMO + if (S_TYPEISTMO(st)) return "typed memory object"; +#endif + return "weird file"; +} + +static const char *human_time(struct timespec *ts) +{ + char fmt[sizeof("%Y-%m-%d %H:%M:%S.123456789 %z") + /*paranoia*/ 8]; + + /* coreutils 6.3 compat */ +#define buf bb_common_bufsiz1 + setup_common_bufsiz(); + + sprintf(stpcpy(fmt, "%Y-%m-%d %H:%M:%S"), ".%09u %%z", (unsigned)ts->tv_nsec); + strftime(buf, COMMON_BUFSIZE, fmt, localtime(&ts->tv_sec)); + return buf; +#undef buf +} + +#if ENABLE_FEATURE_STAT_FILESYSTEM +#define FS_TYPE_LIST \ +FS_TYPE(0xADFF, "affs") \ +FS_TYPE(0x1CD1, "devpts") \ +FS_TYPE(0x137D, "ext") \ +FS_TYPE(0xEF51, "ext2") \ +FS_TYPE(0xEF53, "ext2/ext3") \ +FS_TYPE(0x3153464a, "jfs") \ +FS_TYPE(0x58465342, "xfs") \ +FS_TYPE(0xF995E849, "hpfs") \ +FS_TYPE(0x9660, "isofs") \ +FS_TYPE(0x4000, "isofs") \ +FS_TYPE(0x4004, "isofs") \ +FS_TYPE(0x137F, "minix") \ +FS_TYPE(0x138F, "minix (30 char.)") \ +FS_TYPE(0x2468, "minix v2") \ +FS_TYPE(0x2478, "minix v2 (30 char.)") \ +FS_TYPE(0x4d44, "msdos") \ +FS_TYPE(0x4006, "fat") \ +FS_TYPE(0x564c, "novell") \ +FS_TYPE(0x6969, "nfs") \ +FS_TYPE(0x9fa0, "proc") \ +FS_TYPE(0x517B, "smb") \ +FS_TYPE(0x012FF7B4, "xenix") \ +FS_TYPE(0x012FF7B5, "sysv4") \ +FS_TYPE(0x012FF7B6, "sysv2") \ +FS_TYPE(0x012FF7B7, "coh") \ +FS_TYPE(0x00011954, "ufs") \ +FS_TYPE(0x012FD16D, "xia") \ +FS_TYPE(0x5346544e, "ntfs") \ +FS_TYPE(0x1021994, "tmpfs") \ +FS_TYPE(0x52654973, "reiserfs") \ +FS_TYPE(0x28cd3d45, "cramfs") \ +FS_TYPE(0x7275, "romfs") \ +FS_TYPE(0x858458f6, "ramfs") \ +FS_TYPE(0x73717368, "squashfs") \ +FS_TYPE(0x62656572, "sysfs") +/* Return the type of the specified file system. + * Some systems have statfvs.f_basetype[FSTYPSZ]. (AIX, HP-UX, and Solaris) + * Others have statfs.f_fstypename[MFSNAMELEN]. (NetBSD 1.5.2) + * Still others have neither and have to get by with f_type (Linux). + */ +static const char *human_fstype(uint32_t f_type) +{ +# define FS_TYPE(type, name) type, + static const uint32_t fstype[] ALIGN4 = { + FS_TYPE_LIST + }; +# undef FS_TYPE +# define FS_TYPE(type, name) name"\0" + static const char humanname[] ALIGN1 = + FS_TYPE_LIST + "UNKNOWN"; +# undef FS_TYPE + int i; + + for (i = 0; i < ARRAY_SIZE(fstype); ++i) + if (fstype[i] == f_type) + break; + return nth_string(humanname, i); +} + +/* "man statfs" says that statfsbuf->f_fsid is a mess */ +/* coreutils treats it as an array of ints, most significant first */ +static unsigned long long get_f_fsid(const struct statfs *statfsbuf) +{ + const unsigned *p = (const void*) &statfsbuf->f_fsid; + unsigned sz = sizeof(statfsbuf->f_fsid) / sizeof(unsigned); + unsigned long long r = 0; + + do + r = (r << (sizeof(unsigned)*8)) | *p++; + while (--sz > 0); + return r; +} +#endif /* FEATURE_STAT_FILESYSTEM */ + +#if ENABLE_FEATURE_STAT_FORMAT +static void strcatc(char *str, char c) +{ + int len = strlen(str); + str[len++] = c; + str[len] = '\0'; +} + +static void printfs(char *pformat, const char *msg) +{ + strcatc(pformat, 's'); + printf(pformat, msg); +} + +#if ENABLE_FEATURE_STAT_FILESYSTEM +/* print statfs info */ +static void FAST_FUNC print_statfs(char *pformat, const char m, + const char *const filename, const void *data + IF_SELINUX(, security_context_t scontext)) +{ + const struct statfs *statfsbuf = data; + if (m == 'n') { + printfs(pformat, filename); + } else if (m == 'i') { + strcat(pformat, "llx"); + printf(pformat, get_f_fsid(statfsbuf)); + } else if (m == 'l') { + strcat(pformat, "lu"); + printf(pformat, (unsigned long) statfsbuf->f_namelen); + } else if (m == 't') { + strcat(pformat, "lx"); + printf(pformat, (unsigned long) statfsbuf->f_type); /* no equiv */ + } else if (m == 'T') { + printfs(pformat, human_fstype(statfsbuf->f_type)); + } else if (m == 'b') { + strcat(pformat, "llu"); + printf(pformat, (unsigned long long) statfsbuf->f_blocks); + } else if (m == 'f') { + strcat(pformat, "llu"); + printf(pformat, (unsigned long long) statfsbuf->f_bfree); + } else if (m == 'a') { + strcat(pformat, "llu"); + printf(pformat, (unsigned long long) statfsbuf->f_bavail); + } else if (m == 's' || m == 'S') { + strcat(pformat, "lu"); + printf(pformat, (unsigned long) statfsbuf->f_bsize); + } else if (m == 'c') { + strcat(pformat, "llu"); + printf(pformat, (unsigned long long) statfsbuf->f_files); + } else if (m == 'd') { + strcat(pformat, "llu"); + printf(pformat, (unsigned long long) statfsbuf->f_ffree); +# if ENABLE_SELINUX + } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) { + printfs(pformat, scontext); +# endif + } else { + strcatc(pformat, 'c'); + printf(pformat, m); + } +} +#endif + +/* print stat info */ +static void FAST_FUNC print_stat(char *pformat, const char m, + const char *const filename, const void *data + IF_SELINUX(, security_context_t scontext)) +{ +#define TYPE_SIGNED(t) (! ((t) 0 < (t) -1)) + struct stat *statbuf = (struct stat *) data; + struct passwd *pw_ent; + struct group *gw_ent; + + if (m == 'n') { + printfs(pformat, filename); + } else if (m == 'N') { + strcatc(pformat, 's'); + if (S_ISLNK(statbuf->st_mode)) { + char *linkname = xmalloc_readlink_or_warn(filename); + if (linkname == NULL) + return; + printf("'%s' -> '%s'", filename, linkname); + free(linkname); + } else { + printf(pformat, filename); + } + } else if (m == 'd') { + strcat(pformat, "llu"); + printf(pformat, (unsigned long long) statbuf->st_dev); + } else if (m == 'D') { + strcat(pformat, "llx"); + printf(pformat, (unsigned long long) statbuf->st_dev); + } else if (m == 'i') { + strcat(pformat, "llu"); + printf(pformat, (unsigned long long) statbuf->st_ino); + } else if (m == 'a') { + strcat(pformat, "lo"); + printf(pformat, (unsigned long) (statbuf->st_mode & (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO))); + } else if (m == 'A') { + char modestr[12]; + printfs(pformat, bb_mode_string(modestr, statbuf->st_mode)); + } else if (m == 'f') { + strcat(pformat, "lx"); + printf(pformat, (unsigned long) statbuf->st_mode); + } else if (m == 'F') { + printfs(pformat, file_type(statbuf)); + } else if (m == 'h') { + strcat(pformat, "lu"); + printf(pformat, (unsigned long) statbuf->st_nlink); + } else if (m == 'u') { + strcat(pformat, "lu"); + printf(pformat, (unsigned long) statbuf->st_uid); + } else if (m == 'U') { + pw_ent = getpwuid(statbuf->st_uid); + printfs(pformat, (pw_ent != NULL) ? pw_ent->pw_name : "UNKNOWN"); + } else if (m == 'g') { + strcat(pformat, "lu"); + printf(pformat, (unsigned long) statbuf->st_gid); + } else if (m == 'G') { + gw_ent = getgrgid(statbuf->st_gid); + printfs(pformat, (gw_ent != NULL) ? gw_ent->gr_name : "UNKNOWN"); + } else if (m == 't') { + strcat(pformat, "lx"); + printf(pformat, (unsigned long) major(statbuf->st_rdev)); + } else if (m == 'T') { + strcat(pformat, "lx"); + printf(pformat, (unsigned long) minor(statbuf->st_rdev)); + } else if (m == 's') { + strcat(pformat, "llu"); + printf(pformat, (unsigned long long) statbuf->st_size); + } else if (m == 'B') { + strcat(pformat, "lu"); + printf(pformat, (unsigned long) 512); //ST_NBLOCKSIZE + } else if (m == 'b') { + strcat(pformat, "llu"); + printf(pformat, (unsigned long long) statbuf->st_blocks); + } else if (m == 'o') { + strcat(pformat, "lu"); + printf(pformat, (unsigned long) statbuf->st_blksize); + } else if (m == 'x') { + printfs(pformat, human_time(&statbuf->st_atim)); + } else if (m == 'X') { + strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu"); + /* note: (unsigned long) would be wrong: + * imagine (unsigned long64)int32 */ + printf(pformat, (long) statbuf->st_atime); + } else if (m == 'y') { + printfs(pformat, human_time(&statbuf->st_mtim)); + } else if (m == 'Y') { + strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu"); + printf(pformat, (long) statbuf->st_mtime); + } else if (m == 'z') { + printfs(pformat, human_time(&statbuf->st_ctim)); + } else if (m == 'Z') { + strcat(pformat, TYPE_SIGNED(time_t) ? "ld" : "lu"); + printf(pformat, (long) statbuf->st_ctime); +# if ENABLE_SELINUX + } else if (m == 'C' && (option_mask32 & OPT_SELINUX)) { + printfs(pformat, scontext); +# endif + } else { + strcatc(pformat, 'c'); + printf(pformat, m); + } +} + +static void print_it(const char *masterformat, + const char *filename, + void FAST_FUNC (*print_func)(char*, char, const char*, const void* IF_SELINUX(, security_context_t scontext)), + const void *data + IF_SELINUX(, security_context_t scontext)) +{ + /* Create a working copy of the format string */ + char *format = xstrdup(masterformat); + /* Add 2 to accommodate our conversion of the stat '%s' format string + * to the printf '%llu' one. */ + char *dest = xmalloc(strlen(format) + 2 + 1); + char *b; + + b = format; + while (b) { + /* Each iteration finds next %spec, + * prints preceding string and handles found %spec + */ + size_t len; + char *p = strchr(b, '%'); + if (!p) { + /* coreutils 6.3 always prints newline at the end */ + /*fputs(b, stdout);*/ + puts(b); + break; + } + + /* dest = "%" */ + len = 1 + strspn(p + 1, "#-+.I 0123456789"); + memcpy(dest, p, len); + dest[len] = '\0'; + + /* print preceding string */ + *p = '\0'; + fputs_stdout(b); + + p += len; + b = p + 1; + switch (*p) { + case '\0': + b = NULL; + /* fall through */ + case '%': + bb_putchar('%'); + break; + default: + /* Completes "%" with specifier and printfs */ + print_func(dest, *p, filename, data IF_SELINUX(,scontext)); + break; + } + } + + free(format); + free(dest); +} +#endif /* FEATURE_STAT_FORMAT */ + +#if ENABLE_FEATURE_STAT_FILESYSTEM +/* Stat the file system and print what we find. */ +#if !ENABLE_FEATURE_STAT_FORMAT +#define do_statfs(filename, format) do_statfs(filename) +#endif +static bool do_statfs(const char *filename, const char *format) +{ + struct statfs statfsbuf; +#if !ENABLE_FEATURE_STAT_FORMAT + const char *format; +#endif +#if ENABLE_SELINUX + security_context_t scontext = NULL; + + if (option_mask32 & OPT_SELINUX) { + if ((option_mask32 & OPT_DEREFERENCE + ? lgetfilecon(filename, &scontext) + : getfilecon(filename, &scontext) + ) < 0 + ) { + bb_simple_perror_msg(filename); + return 0; + } + } +#endif + if (statfs(filename, &statfsbuf) != 0) { + bb_perror_msg("can't read file system information for '%s'", filename); + return 0; + } + +#if ENABLE_FEATURE_STAT_FORMAT + if (format == NULL) { +# if !ENABLE_SELINUX + format = (option_mask32 & OPT_TERSE + ? "%n %i %l %t %s %b %f %a %c %d" + : " File: \"%n\"\n" + " ID: %-8i Namelen: %-7l Type: %T\n" + "Block size: %-10s\n" + "Blocks: Total: %-10b Free: %-10f Available: %a\n" + "Inodes: Total: %-10c Free: %d"); +# else + format = (option_mask32 & OPT_TERSE + ? (option_mask32 & OPT_SELINUX + ? "%n %i %l %t %s %b %f %a %c %d %C" + : "%n %i %l %t %s %b %f %a %c %d") + : (option_mask32 & OPT_SELINUX + ? " File: \"%n\"\n" + " ID: %-8i Namelen: %-7l Type: %T\n" + "Block size: %-10s\n" + "Blocks: Total: %-10b Free: %-10f Available: %a\n" + "Inodes: Total: %-10c Free: %d" + " S_context: %C" + : " File: \"%n\"\n" + " ID: %-8i Namelen: %-7l Type: %T\n" + "Block size: %-10s\n" + "Blocks: Total: %-10b Free: %-10f Available: %a\n" + "Inodes: Total: %-10c Free: %d") + ); +# endif /* SELINUX */ + } + print_it(format, filename, print_statfs, &statfsbuf IF_SELINUX(, scontext)); +#else /* !FEATURE_STAT_FORMAT */ + format = (option_mask32 & OPT_TERSE + ? "%s %llx %lu " + : " File: \"%s\"\n" + " ID: %-8llx Namelen: %-7lu "); + printf(format, + filename, + get_f_fsid(&statfsbuf), + statfsbuf.f_namelen); + + if (option_mask32 & OPT_TERSE) + printf("%lx ", (unsigned long) statfsbuf.f_type); + else + printf("Type: %s\n", human_fstype(statfsbuf.f_type)); + +# if !ENABLE_SELINUX + format = (option_mask32 & OPT_TERSE + ? "%lu %llu %llu %llu %llu %llu\n" + : "Block size: %-10lu\n" + "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n" + "Inodes: Total: %-10llu Free: %llu\n"); + printf(format, + (unsigned long) statfsbuf.f_bsize, + (unsigned long long) statfsbuf.f_blocks, + (unsigned long long) statfsbuf.f_bfree, + (unsigned long long) statfsbuf.f_bavail, + (unsigned long long) statfsbuf.f_files, + (unsigned long long) statfsbuf.f_ffree); +# else + format = (option_mask32 & OPT_TERSE + ? (option_mask32 & OPT_SELINUX ? "%lu %llu %llu %llu %llu %llu %C\n" : "%lu %llu %llu %llu %llu %llu\n") + : (option_mask32 & OPT_SELINUX + ? "Block size: %-10lu\n" + "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n" + "Inodes: Total: %-10llu Free: %llu" + "S_context: %C\n" + : "Block size: %-10lu\n" + "Blocks: Total: %-10llu Free: %-10llu Available: %llu\n" + "Inodes: Total: %-10llu Free: %llu\n" + ) + ); + printf(format, + (unsigned long) statfsbuf.f_bsize, + (unsigned long long) statfsbuf.f_blocks, + (unsigned long long) statfsbuf.f_bfree, + (unsigned long long) statfsbuf.f_bavail, + (unsigned long long) statfsbuf.f_files, + (unsigned long long) statfsbuf.f_ffree, + scontext); + + if (scontext) + freecon(scontext); +# endif +#endif /* FEATURE_STAT_FORMAT */ + return 1; +} +#endif /* FEATURE_STAT_FILESYSTEM */ + +/* stat the file and print what we find */ +#if !ENABLE_FEATURE_STAT_FORMAT +#define do_stat(filename, format) do_stat(filename) +#endif +static bool do_stat(const char *filename, const char *format) +{ + struct stat statbuf; +#if ENABLE_SELINUX + security_context_t scontext = NULL; + + if (option_mask32 & OPT_SELINUX) { + if ((option_mask32 & OPT_DEREFERENCE + ? lgetfilecon(filename, &scontext) + : getfilecon(filename, &scontext) + ) < 0 + ) { + bb_simple_perror_msg(filename); + return 0; + } + } +#endif + if ((option_mask32 & OPT_DEREFERENCE ? stat : lstat) (filename, &statbuf) != 0) { + bb_perror_msg("can't stat '%s'", filename); + return 0; + } + +#if ENABLE_FEATURE_STAT_FORMAT + if (format == NULL) { +# if !ENABLE_SELINUX + if (option_mask32 & OPT_TERSE) { + format = "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o"; + } else { + if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) { + format = + " File: %N\n" + " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" + "Device: %Dh/%dd\tInode: %-10i Links: %-5h" + " Device type: %t,%T\n" + "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" + "Access: %x\n" "Modify: %y\n" "Change: %z"; + } else { + format = + " File: %N\n" + " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" + "Device: %Dh/%dd\tInode: %-10i Links: %h\n" + "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" + "Access: %x\n" "Modify: %y\n" "Change: %z"; + } + } +# else + if (option_mask32 & OPT_TERSE) { + format = (option_mask32 & OPT_SELINUX ? + "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o %C\n" + : + "%n %s %b %f %u %g %D %i %h %t %T %X %Y %Z %o\n" + ); + } else { + if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) { + format = (option_mask32 & OPT_SELINUX ? + " File: %N\n" + " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" + "Device: %Dh/%dd\tInode: %-10i Links: %-5h" + " Device type: %t,%T\n" + "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" + " S_Context: %C\n" + "Access: %x\n" "Modify: %y\n" "Change: %z" + : + " File: %N\n" + " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" + "Device: %Dh/%dd\tInode: %-10i Links: %-5h" + " Device type: %t,%T\n" + "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" + "Access: %x\n" "Modify: %y\n" "Change: %z" + ); + } else { + format = (option_mask32 & OPT_SELINUX ? + " File: %N\n" + " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" + "Device: %Dh/%dd\tInode: %-10i Links: %h\n" + "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" + "S_Context: %C\n" + "Access: %x\n" "Modify: %y\n" "Change: %z" + : + " File: %N\n" + " Size: %-10s\tBlocks: %-10b IO Block: %-6o %F\n" + "Device: %Dh/%dd\tInode: %-10i Links: %h\n" + "Access: (%04a/%10.10A) Uid: (%5u/%8U) Gid: (%5g/%8G)\n" + "Access: %x\n" "Modify: %y\n" "Change: %z" + ); + } + } +# endif + } + print_it(format, filename, print_stat, &statbuf IF_SELINUX(, scontext)); +#else /* FEATURE_STAT_FORMAT */ + if (option_mask32 & OPT_TERSE) { + printf("%s %llu %llu %lx %lu %lu %llx %llu %lu %lx %lx %lu %lu %lu %lu" + IF_NOT_SELINUX("\n"), + filename, + (unsigned long long) statbuf.st_size, + (unsigned long long) statbuf.st_blocks, + (unsigned long) statbuf.st_mode, + (unsigned long) statbuf.st_uid, + (unsigned long) statbuf.st_gid, + (unsigned long long) statbuf.st_dev, + (unsigned long long) statbuf.st_ino, + (unsigned long) statbuf.st_nlink, + (unsigned long) major(statbuf.st_rdev), + (unsigned long) minor(statbuf.st_rdev), + (unsigned long) statbuf.st_atime, + (unsigned long) statbuf.st_mtime, + (unsigned long) statbuf.st_ctime, + (unsigned long) statbuf.st_blksize + ); +# if ENABLE_SELINUX + if (option_mask32 & OPT_SELINUX) + printf(" %s\n", scontext); + else + bb_putchar('\n'); +# endif + } else { + char modestr[12]; + char *linkname = NULL; + struct passwd *pw_ent; + struct group *gw_ent; + + gw_ent = getgrgid(statbuf.st_gid); + pw_ent = getpwuid(statbuf.st_uid); + + if (S_ISLNK(statbuf.st_mode)) + linkname = xmalloc_readlink_or_warn(filename); + if (linkname) { + printf(" File: '%s' -> '%s'\n", filename, linkname); + free(linkname); + } else { + printf(" File: '%s'\n", filename); + } + + printf(" Size: %-10llu\tBlocks: %-10llu IO Block: %-6lu %s\n" + "Device: %llxh/%llud\tInode: %-10llu Links: %-5lu", + (unsigned long long) statbuf.st_size, + (unsigned long long) statbuf.st_blocks, + (unsigned long) statbuf.st_blksize, + file_type(&statbuf), + (unsigned long long) statbuf.st_dev, + (unsigned long long) statbuf.st_dev, + (unsigned long long) statbuf.st_ino, + (unsigned long) statbuf.st_nlink); + if (S_ISBLK(statbuf.st_mode) || S_ISCHR(statbuf.st_mode)) + printf(" Device type: %lx,%lx\n", + (unsigned long) major(statbuf.st_rdev), + (unsigned long) minor(statbuf.st_rdev)); + else + bb_putchar('\n'); + printf("Access: (%04lo/%10.10s) Uid: (%5lu/%8s) Gid: (%5lu/%8s)\n", + (unsigned long) (statbuf.st_mode & (S_ISUID|S_ISGID|S_ISVTX|S_IRWXU|S_IRWXG|S_IRWXO)), + bb_mode_string(modestr, statbuf.st_mode), + (unsigned long) statbuf.st_uid, + (pw_ent != NULL) ? pw_ent->pw_name : "UNKNOWN", + (unsigned long) statbuf.st_gid, + (gw_ent != NULL) ? gw_ent->gr_name : "UNKNOWN"); +# if ENABLE_SELINUX + if (option_mask32 & OPT_SELINUX) + printf(" S_Context: %s\n", scontext); +# endif + printf("Access: %s\n", human_time(&statbuf.st_atim)); + printf("Modify: %s\n", human_time(&statbuf.st_mtim)); + printf("Change: %s\n", human_time(&statbuf.st_ctim)); + } +#endif /* FEATURE_STAT_FORMAT */ + return 1; +} + +int stat_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int stat_main(int argc UNUSED_PARAM, char **argv) +{ + IF_FEATURE_STAT_FORMAT(char *format = NULL;) + int i; + int ok; + statfunc_ptr statfunc = do_stat; +#if ENABLE_FEATURE_STAT_FILESYSTEM || ENABLE_SELINUX + unsigned opts; + + opts = +#endif + getopt32(argv, "^" + "tL" + IF_FEATURE_STAT_FILESYSTEM("f") + IF_SELINUX("Z") + IF_FEATURE_STAT_FORMAT("c:") + "\0" "-1" /* min one arg */ + IF_FEATURE_STAT_FORMAT(,&format) + ); +#if ENABLE_FEATURE_STAT_FILESYSTEM + if (opts & OPT_FILESYS) /* -f */ + statfunc = do_statfs; +#endif +#if ENABLE_SELINUX + if (opts & OPT_SELINUX) { + selinux_or_die(); + } +#endif + ok = 1; + argv += optind; + for (i = 0; argv[i]; ++i) + ok &= statfunc(argv[i] IF_FEATURE_STAT_FORMAT(, format)); + + return (ok ? EXIT_SUCCESS : EXIT_FAILURE); +} diff --git a/busybox-1_37_0/coreutils/stty.c b/busybox-1_37_0/coreutils/stty.c new file mode 100644 index 000000000..c88ef07f4 --- /dev/null +++ b/busybox-1_37_0/coreutils/stty.c @@ -0,0 +1,1560 @@ +/* vi: set sw=4 ts=4: */ +/* + * stty -- change and print terminal line settings + * Copyright (C) 1990-1999 Free Software Foundation, Inc. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* David MacKenzie + * + * Special for busybox ported by Vladimir Oleynik 2001 + */ +//config:config STTY +//config: bool "stty (9.2 kb)" +//config: default y +//config: help +//config: stty is used to change and print terminal line settings. + +//applet:IF_STTY(APPLET_NOEXEC(stty, stty, BB_DIR_BIN, BB_SUID_DROP, stty)) + +//kbuild:lib-$(CONFIG_STTY) += stty.o + +//usage:#define stty_trivial_usage +//usage: "[-a|g] [-F DEVICE] [SETTING]..." +//usage:#define stty_full_usage "\n\n" +//usage: "Without arguments, prints baud rate, line discipline,\n" +//usage: "and deviations from stty sane\n" +//usage: "\n -F DEVICE Open device instead of stdin" +//usage: "\n -a Print all current settings in human-readable form" +//usage: "\n -g Print in stty-readable form" +//usage: "\n [SETTING] See manpage" + +/* If no args are given, write to stdout the baud rate and settings that + * have been changed from their defaults. Mode reading and changes + * are done on the specified device, or stdin if none was specified. + */ + +#include "libbb.h" +#include "common_bufsiz.h" + +#ifndef _POSIX_VDISABLE +# define _POSIX_VDISABLE ((unsigned char) 0) +#endif + +#define Control(c) ((c) & 0x1f) +/* Canonical values for control characters */ +#ifndef CINTR +# define CINTR Control('c') +#endif +#ifndef CQUIT +# define CQUIT 28 +#endif +#ifndef CERASE +# define CERASE 127 +#endif +#ifndef CKILL +# define CKILL Control('u') +#endif +#ifndef CEOF +# define CEOF Control('d') +#endif +#ifndef CEOL +# define CEOL _POSIX_VDISABLE +#endif +#ifndef CSTART +# define CSTART Control('q') +#endif +#ifndef CSTOP +# define CSTOP Control('s') +#endif +#ifndef CSUSP +# define CSUSP Control('z') +#endif +#if defined(VEOL2) && !defined(CEOL2) +# define CEOL2 _POSIX_VDISABLE +#endif +/* glibc-2.12.1 uses only VSWTC name */ +#if defined(VSWTC) && !defined(VSWTCH) +# define VSWTCH VSWTC +#endif +/* ISC renamed swtch to susp for termios, but we'll accept either name */ +#if defined(VSUSP) && !defined(VSWTCH) +# define VSWTCH VSUSP +# define CSWTCH CSUSP +#endif +#if defined(VSWTCH) && !defined(CSWTCH) +# define CSWTCH _POSIX_VDISABLE +#endif + +/* SunOS 5.3 loses (^Z doesn't work) if 'swtch' is the same as 'susp'. + So the default is to disable 'swtch.' */ +#if defined(__sparc__) && defined(__svr4__) +# undef CSWTCH +# define CSWTCH _POSIX_VDISABLE +#endif + +#if defined(VWERSE) && !defined(VWERASE) /* AIX-3.2.5 */ +# define VWERASE VWERSE +#endif +#if defined(VDSUSP) && !defined(CDSUSP) +# define CDSUSP Control('y') +#endif +#if !defined(VREPRINT) && defined(VRPRNT) /* Irix 4.0.5 */ +# define VREPRINT VRPRNT +#endif +#if defined(VREPRINT) && !defined(CRPRNT) +# define CRPRNT Control('r') +#endif +#if defined(VWERASE) && !defined(CWERASE) +# define CWERASE Control('w') +#endif +#if defined(VLNEXT) && !defined(CLNEXT) +# define CLNEXT Control('v') +#endif +#if defined(VDISCARD) && !defined(VFLUSHO) +# define VFLUSHO VDISCARD +#endif +#if defined(VFLUSH) && !defined(VFLUSHO) /* Ultrix 4.2 */ +# define VFLUSHO VFLUSH +#endif +#if defined(CTLECH) && !defined(ECHOCTL) /* Ultrix 4.3 */ +# define ECHOCTL CTLECH +#endif +#if defined(TCTLECH) && !defined(ECHOCTL) /* Ultrix 4.2 */ +# define ECHOCTL TCTLECH +#endif +#if defined(CRTKIL) && !defined(ECHOKE) /* Ultrix 4.2 and 4.3 */ +# define ECHOKE CRTKIL +#endif +#if defined(VFLUSHO) && !defined(CFLUSHO) +# define CFLUSHO Control('o') +#endif +#if defined(VSTATUS) && !defined(CSTATUS) +# define CSTATUS Control('t') +#endif + +/* Save us from #ifdef forest plague */ +#ifndef BSDLY +# define BSDLY 0 +#endif +#ifndef CIBAUD +# define CIBAUD 0 +#endif +#ifndef CRDLY +# define CRDLY 0 +#endif +#ifndef CMSPAR +# define CMSPAR 0 +#endif +#ifndef CRTSCTS +# define CRTSCTS 0 +#endif +#ifndef ECHOCTL +# define ECHOCTL 0 +#endif +#ifndef ECHOKE +# define ECHOKE 0 +#endif +#ifndef ECHOPRT +# define ECHOPRT 0 +#endif +#ifndef FFDLY +# define FFDLY 0 +#endif +#ifndef IEXTEN +# define IEXTEN 0 +#endif +#ifndef IMAXBEL +# define IMAXBEL 0 +#endif +#ifndef IUCLC +# define IUCLC 0 +#endif +#ifndef IXANY +# define IXANY 0 +#endif +#ifndef NLDLY +# define NLDLY 0 +#endif +#ifndef OCRNL +# define OCRNL 0 +#endif +#ifndef OFDEL +# define OFDEL 0 +#endif +#ifndef OFILL +# define OFILL 0 +#endif +#ifndef OLCUC +# define OLCUC 0 +#endif +#ifndef ONLCR +# define ONLCR 0 +#endif +#ifndef ONLRET +# define ONLRET 0 +#endif +#ifndef ONOCR +# define ONOCR 0 +#endif +#ifndef OXTABS +# define OXTABS 0 +#endif +#ifndef TABDLY +# define TABDLY 0 +#endif +#ifndef TAB1 +# define TAB1 0 +#endif +#ifndef TAB2 +# define TAB2 0 +#endif +#ifndef TOSTOP +# define TOSTOP 0 +#endif +#ifndef VDSUSP +# define VDSUSP 0 +#endif +#ifndef VEOL2 +# define VEOL2 0 +#endif +#ifndef VFLUSHO +# define VFLUSHO 0 +#endif +#ifndef VLNEXT +# define VLNEXT 0 +#endif +#ifndef VREPRINT +# define VREPRINT 0 +#endif +#ifndef VSTATUS +# define VSTATUS 0 +#endif +#ifndef VSWTCH +# define VSWTCH 0 +#endif +#ifndef VTDLY +# define VTDLY 0 +#endif +#ifndef VWERASE +# define VWERASE 0 +#endif +#ifndef XCASE +# define XCASE 0 +#endif +#ifndef IUTF8 +# define IUTF8 0 +#endif + +/* Which speeds to set */ +enum speed_setting { + input_speed, output_speed, both_speeds +}; + +/* Which member(s) of 'struct termios' a mode uses */ +enum { + control, input, output, local, combination +}; +static tcflag_t *get_ptr_to_tcflag(unsigned type, const struct termios *mode) +{ + static const uint8_t tcflag_offsets[] ALIGN1 = { + offsetof(struct termios, c_cflag), /* control */ + offsetof(struct termios, c_iflag), /* input */ + offsetof(struct termios, c_oflag), /* output */ + offsetof(struct termios, c_lflag) /* local */ + }; + if (type <= local) { + return (tcflag_t*) (((char*)mode) + tcflag_offsets[type]); + } + return NULL; +} + +/* Flags for 'struct mode_info' */ +#define SANE_SET 1 /* Set in 'sane' mode */ +#define SANE_UNSET 2 /* Unset in 'sane' mode */ +#define REV 4 /* Can be turned off by prepending '-' */ +#define OMIT 8 /* Don't display value */ + + +/* Each mode. + * This structure should be kept as small as humanly possible. + */ +struct mode_info { + const uint8_t type; /* Which structure element to change */ + const uint8_t flags; /* Setting and display options */ + /* only these values are ever used, so... */ +#if (CSIZE | NLDLY | CRDLY | TABDLY | BSDLY | VTDLY | FFDLY) < 0x100 + const uint8_t mask; +#elif (CSIZE | NLDLY | CRDLY | TABDLY | BSDLY | VTDLY | FFDLY) < 0x10000 + const uint16_t mask; +#else + const tcflag_t mask; /* Other bits to turn off for this mode */ +#endif + /* was using short here, but ppc32 was unhappy */ + const tcflag_t bits; /* Bits to set for this mode */ +}; + +enum { + /* Must match mode_name[] and mode_info[] order! */ + IDX_evenp = 0, + IDX_parity, + IDX_oddp, + IDX_nl, + IDX_ek, + IDX_sane, + IDX_cooked, + IDX_raw, + IDX_pass8, + IDX_litout, + IDX_cbreak, + IDX_crt, + IDX_dec, +#if IXANY + IDX_decctlq, +#endif +#if TABDLY || OXTABS + IDX_tabs, +#endif +#if XCASE && IUCLC && OLCUC + IDX_lcase, + IDX_LCASE, +#endif +}; + +#define MI_ENTRY(N,T,F,B,M) N "\0" + +/* Mode names given on command line */ +static const char mode_name[] ALIGN1 = + MI_ENTRY("evenp", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("parity", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("oddp", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("nl", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("ek", combination, OMIT, 0, 0 ) + MI_ENTRY("sane", combination, OMIT, 0, 0 ) + MI_ENTRY("cooked", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("raw", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("pass8", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("litout", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("cbreak", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("crt", combination, OMIT, 0, 0 ) + MI_ENTRY("dec", combination, OMIT, 0, 0 ) +#if IXANY + MI_ENTRY("decctlq", combination, REV | OMIT, 0, 0 ) +#endif +#if TABDLY || OXTABS + MI_ENTRY("tabs", combination, REV | OMIT, 0, 0 ) +#endif +#if XCASE && IUCLC && OLCUC + MI_ENTRY("lcase", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("LCASE", combination, REV | OMIT, 0, 0 ) +#endif + MI_ENTRY("parenb", control, REV, PARENB, 0 ) + MI_ENTRY("parodd", control, REV, PARODD, 0 ) +#if CMSPAR + MI_ENTRY("cmspar", control, REV, CMSPAR, 0 ) +#endif + MI_ENTRY("cs5", control, 0, CS5, CSIZE) + MI_ENTRY("cs6", control, 0, CS6, CSIZE) + MI_ENTRY("cs7", control, 0, CS7, CSIZE) + MI_ENTRY("cs8", control, 0, CS8, CSIZE) + MI_ENTRY("hupcl", control, REV, HUPCL, 0 ) + MI_ENTRY("hup", control, REV | OMIT, HUPCL, 0 ) + MI_ENTRY("cstopb", control, REV, CSTOPB, 0 ) + MI_ENTRY("cread", control, SANE_SET | REV, CREAD, 0 ) + MI_ENTRY("clocal", control, REV, CLOCAL, 0 ) +#if CRTSCTS + MI_ENTRY("crtscts", control, REV, CRTSCTS, 0 ) +#endif + MI_ENTRY("ignbrk", input, SANE_UNSET | REV, IGNBRK, 0 ) + MI_ENTRY("brkint", input, SANE_SET | REV, BRKINT, 0 ) + MI_ENTRY("ignpar", input, REV, IGNPAR, 0 ) + MI_ENTRY("parmrk", input, REV, PARMRK, 0 ) + MI_ENTRY("inpck", input, REV, INPCK, 0 ) + MI_ENTRY("istrip", input, REV, ISTRIP, 0 ) + MI_ENTRY("inlcr", input, SANE_UNSET | REV, INLCR, 0 ) + MI_ENTRY("igncr", input, SANE_UNSET | REV, IGNCR, 0 ) + MI_ENTRY("icrnl", input, SANE_SET | REV, ICRNL, 0 ) + MI_ENTRY("ixon", input, REV, IXON, 0 ) + MI_ENTRY("ixoff", input, SANE_UNSET | REV, IXOFF, 0 ) + MI_ENTRY("tandem", input, OMIT | REV, IXOFF, 0 ) +#if IUCLC + MI_ENTRY("iuclc", input, SANE_UNSET | REV, IUCLC, 0 ) +#endif +#if IXANY + MI_ENTRY("ixany", input, SANE_UNSET | REV, IXANY, 0 ) +#endif +#if IMAXBEL + MI_ENTRY("imaxbel", input, SANE_SET | REV, IMAXBEL, 0 ) +#endif +#if IUTF8 + MI_ENTRY("iutf8", input, SANE_UNSET | REV, IUTF8, 0 ) +#endif + MI_ENTRY("opost", output, SANE_SET | REV, OPOST, 0 ) +#if OLCUC + MI_ENTRY("olcuc", output, SANE_UNSET | REV, OLCUC, 0 ) +#endif +#if OCRNL + MI_ENTRY("ocrnl", output, SANE_UNSET | REV, OCRNL, 0 ) +#endif +#if ONLCR + MI_ENTRY("onlcr", output, SANE_SET | REV, ONLCR, 0 ) +#endif +#if ONOCR + MI_ENTRY("onocr", output, SANE_UNSET | REV, ONOCR, 0 ) +#endif +#if ONLRET + MI_ENTRY("onlret", output, SANE_UNSET | REV, ONLRET, 0 ) +#endif +#if OFILL + MI_ENTRY("ofill", output, SANE_UNSET | REV, OFILL, 0 ) +#endif +#if OFDEL + MI_ENTRY("ofdel", output, SANE_UNSET | REV, OFDEL, 0 ) +#endif +#if NLDLY + MI_ENTRY("nl1", output, SANE_UNSET, NL1, NLDLY) + MI_ENTRY("nl0", output, SANE_SET, NL0, NLDLY) +#endif +#if CRDLY + MI_ENTRY("cr3", output, SANE_UNSET, CR3, CRDLY) + MI_ENTRY("cr2", output, SANE_UNSET, CR2, CRDLY) + MI_ENTRY("cr1", output, SANE_UNSET, CR1, CRDLY) + MI_ENTRY("cr0", output, SANE_SET, CR0, CRDLY) +#endif + +#if TABDLY + MI_ENTRY("tab3", output, SANE_UNSET, TAB3, TABDLY) +# if TAB2 + MI_ENTRY("tab2", output, SANE_UNSET, TAB2, TABDLY) +# endif +# if TAB1 + MI_ENTRY("tab1", output, SANE_UNSET, TAB1, TABDLY) +# endif + MI_ENTRY("tab0", output, SANE_SET, TAB0, TABDLY) +#else +# if OXTABS + MI_ENTRY("tab3", output, SANE_UNSET, OXTABS, 0 ) +# endif +#endif + +#if BSDLY + MI_ENTRY("bs1", output, SANE_UNSET, BS1, BSDLY) + MI_ENTRY("bs0", output, SANE_SET, BS0, BSDLY) +#endif +#if VTDLY + MI_ENTRY("vt1", output, SANE_UNSET, VT1, VTDLY) + MI_ENTRY("vt0", output, SANE_SET, VT0, VTDLY) +#endif +#if FFDLY + MI_ENTRY("ff1", output, SANE_UNSET, FF1, FFDLY) + MI_ENTRY("ff0", output, SANE_SET, FF0, FFDLY) +#endif + MI_ENTRY("isig", local, SANE_SET | REV, ISIG, 0 ) + MI_ENTRY("icanon", local, SANE_SET | REV, ICANON, 0 ) +#if IEXTEN + MI_ENTRY("iexten", local, SANE_SET | REV, IEXTEN, 0 ) +#endif + MI_ENTRY("echo", local, SANE_SET | REV, ECHO, 0 ) + MI_ENTRY("echoe", local, SANE_SET | REV, ECHOE, 0 ) + MI_ENTRY("crterase", local, OMIT | REV, ECHOE, 0 ) + MI_ENTRY("echok", local, SANE_SET | REV, ECHOK, 0 ) + MI_ENTRY("echonl", local, SANE_UNSET | REV, ECHONL, 0 ) + MI_ENTRY("noflsh", local, SANE_UNSET | REV, NOFLSH, 0 ) +#if XCASE + MI_ENTRY("xcase", local, SANE_UNSET | REV, XCASE, 0 ) +#endif +#if TOSTOP + MI_ENTRY("tostop", local, SANE_UNSET | REV, TOSTOP, 0 ) +#endif +#if ECHOPRT + MI_ENTRY("echoprt", local, SANE_UNSET | REV, ECHOPRT, 0 ) + MI_ENTRY("prterase", local, OMIT | REV, ECHOPRT, 0 ) +#endif +#if ECHOCTL + MI_ENTRY("echoctl", local, SANE_SET | REV, ECHOCTL, 0 ) + MI_ENTRY("ctlecho", local, OMIT | REV, ECHOCTL, 0 ) +#endif +#if ECHOKE + MI_ENTRY("echoke", local, SANE_SET | REV, ECHOKE, 0 ) + MI_ENTRY("crtkill", local, OMIT | REV, ECHOKE, 0 ) +#endif + MI_ENTRY("flusho", local, SANE_UNSET | REV, FLUSHO, 0 ) +#ifdef EXTPROC + MI_ENTRY("extproc", local, SANE_UNSET | REV, EXTPROC, 0 ) +#endif + ; + +#undef MI_ENTRY +#define MI_ENTRY(N,T,F,B,M) { T, F, M, B }, + +static const struct mode_info mode_info[] ALIGN4 = { + /* This should be verbatim cut-n-paste copy of the above MI_ENTRYs */ + MI_ENTRY("evenp", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("parity", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("oddp", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("nl", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("ek", combination, OMIT, 0, 0 ) + MI_ENTRY("sane", combination, OMIT, 0, 0 ) + MI_ENTRY("cooked", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("raw", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("pass8", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("litout", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("cbreak", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("crt", combination, OMIT, 0, 0 ) + MI_ENTRY("dec", combination, OMIT, 0, 0 ) +#if IXANY + MI_ENTRY("decctlq", combination, REV | OMIT, 0, 0 ) +#endif +#if TABDLY || OXTABS + MI_ENTRY("tabs", combination, REV | OMIT, 0, 0 ) +#endif +#if XCASE && IUCLC && OLCUC + MI_ENTRY("lcase", combination, REV | OMIT, 0, 0 ) + MI_ENTRY("LCASE", combination, REV | OMIT, 0, 0 ) +#endif + MI_ENTRY("parenb", control, REV, PARENB, 0 ) + MI_ENTRY("parodd", control, REV, PARODD, 0 ) +#if CMSPAR + MI_ENTRY("cmspar", control, REV, CMSPAR, 0 ) +#endif + MI_ENTRY("cs5", control, 0, CS5, CSIZE) + MI_ENTRY("cs6", control, 0, CS6, CSIZE) + MI_ENTRY("cs7", control, 0, CS7, CSIZE) + MI_ENTRY("cs8", control, 0, CS8, CSIZE) + MI_ENTRY("hupcl", control, REV, HUPCL, 0 ) + MI_ENTRY("hup", control, REV | OMIT, HUPCL, 0 ) + MI_ENTRY("cstopb", control, REV, CSTOPB, 0 ) + MI_ENTRY("cread", control, SANE_SET | REV, CREAD, 0 ) + MI_ENTRY("clocal", control, REV, CLOCAL, 0 ) +#if CRTSCTS + MI_ENTRY("crtscts", control, REV, CRTSCTS, 0 ) +#endif + MI_ENTRY("ignbrk", input, SANE_UNSET | REV, IGNBRK, 0 ) + MI_ENTRY("brkint", input, SANE_SET | REV, BRKINT, 0 ) + MI_ENTRY("ignpar", input, REV, IGNPAR, 0 ) + MI_ENTRY("parmrk", input, REV, PARMRK, 0 ) + MI_ENTRY("inpck", input, REV, INPCK, 0 ) + MI_ENTRY("istrip", input, REV, ISTRIP, 0 ) + MI_ENTRY("inlcr", input, SANE_UNSET | REV, INLCR, 0 ) + MI_ENTRY("igncr", input, SANE_UNSET | REV, IGNCR, 0 ) + MI_ENTRY("icrnl", input, SANE_SET | REV, ICRNL, 0 ) + MI_ENTRY("ixon", input, REV, IXON, 0 ) + MI_ENTRY("ixoff", input, SANE_UNSET | REV, IXOFF, 0 ) + MI_ENTRY("tandem", input, OMIT | REV, IXOFF, 0 ) +#if IUCLC + MI_ENTRY("iuclc", input, SANE_UNSET | REV, IUCLC, 0 ) +#endif +#if IXANY + MI_ENTRY("ixany", input, SANE_UNSET | REV, IXANY, 0 ) +#endif +#if IMAXBEL + MI_ENTRY("imaxbel", input, SANE_SET | REV, IMAXBEL, 0 ) +#endif +#if IUTF8 + MI_ENTRY("iutf8", input, SANE_UNSET | REV, IUTF8, 0 ) +#endif + MI_ENTRY("opost", output, SANE_SET | REV, OPOST, 0 ) +#if OLCUC + MI_ENTRY("olcuc", output, SANE_UNSET | REV, OLCUC, 0 ) +#endif +#if OCRNL + MI_ENTRY("ocrnl", output, SANE_UNSET | REV, OCRNL, 0 ) +#endif +#if ONLCR + MI_ENTRY("onlcr", output, SANE_SET | REV, ONLCR, 0 ) +#endif +#if ONOCR + MI_ENTRY("onocr", output, SANE_UNSET | REV, ONOCR, 0 ) +#endif +#if ONLRET + MI_ENTRY("onlret", output, SANE_UNSET | REV, ONLRET, 0 ) +#endif +#if OFILL + MI_ENTRY("ofill", output, SANE_UNSET | REV, OFILL, 0 ) +#endif +#if OFDEL + MI_ENTRY("ofdel", output, SANE_UNSET | REV, OFDEL, 0 ) +#endif +#if NLDLY + MI_ENTRY("nl1", output, SANE_UNSET, NL1, NLDLY) + MI_ENTRY("nl0", output, SANE_SET, NL0, NLDLY) +#endif +#if CRDLY + MI_ENTRY("cr3", output, SANE_UNSET, CR3, CRDLY) + MI_ENTRY("cr2", output, SANE_UNSET, CR2, CRDLY) + MI_ENTRY("cr1", output, SANE_UNSET, CR1, CRDLY) + MI_ENTRY("cr0", output, SANE_SET, CR0, CRDLY) +#endif + +#if TABDLY + MI_ENTRY("tab3", output, SANE_UNSET, TAB3, TABDLY) +# if TAB2 + MI_ENTRY("tab2", output, SANE_UNSET, TAB2, TABDLY) +# endif +# if TAB1 + MI_ENTRY("tab1", output, SANE_UNSET, TAB1, TABDLY) +# endif + MI_ENTRY("tab0", output, SANE_SET, TAB0, TABDLY) +#else +# if OXTABS + MI_ENTRY("tab3", output, SANE_UNSET, OXTABS, 0 ) +# endif +#endif + +#if BSDLY + MI_ENTRY("bs1", output, SANE_UNSET, BS1, BSDLY) + MI_ENTRY("bs0", output, SANE_SET, BS0, BSDLY) +#endif +#if VTDLY + MI_ENTRY("vt1", output, SANE_UNSET, VT1, VTDLY) + MI_ENTRY("vt0", output, SANE_SET, VT0, VTDLY) +#endif +#if FFDLY + MI_ENTRY("ff1", output, SANE_UNSET, FF1, FFDLY) + MI_ENTRY("ff0", output, SANE_SET, FF0, FFDLY) +#endif + MI_ENTRY("isig", local, SANE_SET | REV, ISIG, 0 ) + MI_ENTRY("icanon", local, SANE_SET | REV, ICANON, 0 ) +#if IEXTEN + MI_ENTRY("iexten", local, SANE_SET | REV, IEXTEN, 0 ) +#endif + MI_ENTRY("echo", local, SANE_SET | REV, ECHO, 0 ) + MI_ENTRY("echoe", local, SANE_SET | REV, ECHOE, 0 ) + MI_ENTRY("crterase", local, OMIT | REV, ECHOE, 0 ) + MI_ENTRY("echok", local, SANE_SET | REV, ECHOK, 0 ) + MI_ENTRY("echonl", local, SANE_UNSET | REV, ECHONL, 0 ) + MI_ENTRY("noflsh", local, SANE_UNSET | REV, NOFLSH, 0 ) +#if XCASE + MI_ENTRY("xcase", local, SANE_UNSET | REV, XCASE, 0 ) +#endif +#if TOSTOP + MI_ENTRY("tostop", local, SANE_UNSET | REV, TOSTOP, 0 ) +#endif +#if ECHOPRT + MI_ENTRY("echoprt", local, SANE_UNSET | REV, ECHOPRT, 0 ) + MI_ENTRY("prterase", local, OMIT | REV, ECHOPRT, 0 ) +#endif +#if ECHOCTL + MI_ENTRY("echoctl", local, SANE_SET | REV, ECHOCTL, 0 ) + MI_ENTRY("ctlecho", local, OMIT | REV, ECHOCTL, 0 ) +#endif +#if ECHOKE + MI_ENTRY("echoke", local, SANE_SET | REV, ECHOKE, 0 ) + MI_ENTRY("crtkill", local, OMIT | REV, ECHOKE, 0 ) +#endif + MI_ENTRY("flusho", local, SANE_UNSET | REV, FLUSHO, 0 ) +#ifdef EXTPROC + MI_ENTRY("extproc", local, SANE_UNSET | REV, EXTPROC, 0 ) +#endif +}; + +enum { + NUM_mode_info = ARRAY_SIZE(mode_info) +}; + + +/* Control characters */ +struct control_info { + const uint8_t saneval; /* Value to set for 'stty sane' */ + const uint8_t offset; /* Offset in c_cc */ +}; + +enum { + /* Must match control_name[] and control_info[] order! */ + CIDX_intr = 0, + CIDX_quit, + CIDX_erase, + CIDX_kill, + CIDX_eof, + CIDX_eol, +#if VEOL2 + CIDX_eol2, +#endif +#if VSWTCH + CIDX_swtch, +#endif + CIDX_start, + CIDX_stop, + CIDX_susp, +#if VDSUSP + CIDX_dsusp, +#endif +#if VREPRINT + CIDX_rprnt, +#endif +#if VWERASE + CIDX_werase, +#endif +#if VLNEXT + CIDX_lnext, +#endif +#if VFLUSHO + CIDX_flush, +#endif +#if VSTATUS + CIDX_status, +#endif + CIDX_min, + CIDX_time, +}; + +#define CI_ENTRY(n,s,o) n "\0" + +/* Name given on command line */ +static const char control_name[] ALIGN1 = + CI_ENTRY("intr", CINTR, VINTR ) + CI_ENTRY("quit", CQUIT, VQUIT ) + CI_ENTRY("erase", CERASE, VERASE ) + CI_ENTRY("kill", CKILL, VKILL ) + CI_ENTRY("eof", CEOF, VEOF ) + CI_ENTRY("eol", CEOL, VEOL ) +#if VEOL2 + CI_ENTRY("eol2", CEOL2, VEOL2 ) +#endif +#if VSWTCH + CI_ENTRY("swtch", CSWTCH, VSWTCH ) +#endif + CI_ENTRY("start", CSTART, VSTART ) + CI_ENTRY("stop", CSTOP, VSTOP ) + CI_ENTRY("susp", CSUSP, VSUSP ) +#if VDSUSP + CI_ENTRY("dsusp", CDSUSP, VDSUSP ) +#endif +#if VREPRINT + CI_ENTRY("rprnt", CRPRNT, VREPRINT) +#endif +#if VWERASE + CI_ENTRY("werase", CWERASE, VWERASE ) +#endif +#if VLNEXT + CI_ENTRY("lnext", CLNEXT, VLNEXT ) +#endif +#if VFLUSHO + CI_ENTRY("flush", CFLUSHO, VFLUSHO ) +#endif +#if VSTATUS + CI_ENTRY("status", CSTATUS, VSTATUS ) +#endif + /* These must be last because of the display routines */ + CI_ENTRY("min", 1, VMIN ) + CI_ENTRY("time", 0, VTIME ) + ; + +#undef CI_ENTRY +#define CI_ENTRY(n,s,o) { s, o }, + +static const struct control_info control_info[] ALIGN2 = { + /* This should be verbatim cut-n-paste copy of the above CI_ENTRYs */ + CI_ENTRY("intr", CINTR, VINTR ) + CI_ENTRY("quit", CQUIT, VQUIT ) + CI_ENTRY("erase", CERASE, VERASE ) + CI_ENTRY("kill", CKILL, VKILL ) + CI_ENTRY("eof", CEOF, VEOF ) + CI_ENTRY("eol", CEOL, VEOL ) +#if VEOL2 + CI_ENTRY("eol2", CEOL2, VEOL2 ) +#endif +#if VSWTCH + CI_ENTRY("swtch", CSWTCH, VSWTCH ) +#endif + CI_ENTRY("start", CSTART, VSTART ) + CI_ENTRY("stop", CSTOP, VSTOP ) + CI_ENTRY("susp", CSUSP, VSUSP ) +#if VDSUSP + CI_ENTRY("dsusp", CDSUSP, VDSUSP ) +#endif +#if VREPRINT + CI_ENTRY("rprnt", CRPRNT, VREPRINT) +#endif +#if VWERASE + CI_ENTRY("werase", CWERASE, VWERASE ) +#endif +#if VLNEXT + CI_ENTRY("lnext", CLNEXT, VLNEXT ) +#endif +#if VFLUSHO + CI_ENTRY("flush", CFLUSHO, VFLUSHO ) +#endif +#if VSTATUS + CI_ENTRY("status", CSTATUS, VSTATUS ) +#endif + /* These must be last because of the display routines */ + CI_ENTRY("min", 1, VMIN ) + CI_ENTRY("time", 0, VTIME ) +}; + +enum { + NUM_control_info = ARRAY_SIZE(control_info) +}; + + +struct globals { + const char *device_name; + /* The width of the screen, for output wrapping */ + unsigned max_col; + /* Current position, to know when to wrap */ + unsigned current_col; +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { \ + setup_common_bufsiz(); \ + G.device_name = bb_msg_standard_input; \ + G.max_col = 80; \ + G.current_col = 0; /* we are noexec, must clear */ \ +} while (0) + +static void set_speed_or_die(enum speed_setting type, const char *arg, + struct termios *mode) +{ + speed_t baud; + + baud = tty_value_to_baud(xatou(arg)); + + if (type != output_speed) { /* either input or both */ + cfsetispeed(mode, baud); + } + if (type != input_speed) { /* either output or both */ + cfsetospeed(mode, baud); + } +} + +static NORETURN void perror_on_device_and_die(const char *fmt) +{ + bb_perror_msg_and_die(fmt, G.device_name); +} + +static void perror_on_device(const char *fmt) +{ + bb_perror_msg(fmt, G.device_name); +} + +/* Print format string MESSAGE and optional args. + Wrap to next line first if it won't fit. + Print a space first unless MESSAGE will start a new line */ +static void wrapf(const char *message, ...) +{ + char buf[128]; + va_list args; + unsigned buflen; + + va_start(args, message); + buflen = vsnprintf(buf, sizeof(buf), message, args); + va_end(args); + /* We seem to be called only with suitable lengths, but check if + somebody failed to adhere to this assumption just to be sure. */ + if (!buflen || buflen >= sizeof(buf)) return; + + if (G.current_col > 0) { + G.current_col++; + if (buf[0] != '\n') { + if (G.current_col + buflen >= G.max_col) { + G.current_col = 0; + bb_putchar('\n'); + } else { + bb_putchar(' '); + } + } + } + fputs_stdout(buf); + G.current_col += buflen; + if (buf[buflen-1] == '\n') + G.current_col = 0; +} + +static void newline(void) +{ + if (G.current_col != 0) + wrapf("\n"); +} + +#ifdef TIOCGWINSZ +static void set_window_size(int rows, int cols) +{ + struct winsize win = { 0, 0, 0, 0 }; + + if (ioctl(STDIN_FILENO, TIOCGWINSZ, &win)) { + if (errno != EINVAL) { + goto bail; + } + memset(&win, 0, sizeof(win)); + } + + if (rows >= 0) + win.ws_row = rows; + if (cols >= 0) + win.ws_col = cols; + + if (ioctl(STDIN_FILENO, TIOCSWINSZ, (char *) &win)) +bail: + perror_on_device("%s"); +} +#endif + +static void display_window_size(int fancy) +{ + const char *fmt_str = "%s\0%s: no size information for this device"; + unsigned width, height; + + if (get_terminal_width_height(STDIN_FILENO, &width, &height)) { + if ((errno != EINVAL) || ((fmt_str += 2), !fancy)) { + perror_on_device(fmt_str); + } + } else { + wrapf(fancy ? "rows %u; columns %u;" : "%u %u\n", + height, width); + } +} + +static const struct suffix_mult stty_suffixes[] ALIGN_SUFFIX = { + { "b", 512 }, + { "k", 1024 }, + { "B", 1024 }, + { "", 0 } +}; + +static const struct mode_info *find_mode(const char *name) +{ + int i = index_in_strings(mode_name, name); + return i >= 0 ? &mode_info[i] : NULL; +} + +static const struct control_info *find_control(const char *name) +{ + int i = index_in_strings(control_name, name); + return i >= 0 ? &control_info[i] : NULL; +} + +enum { + param_need_arg = 0x80, + param_line = 1 | 0x80, + param_rows = 2 | 0x80, + param_cols = 3 | 0x80, + param_columns = 4 | 0x80, + param_size = 5, + param_speed = 6, + param_ispeed = 7 | 0x80, + param_ospeed = 8 | 0x80, +}; + +static int find_param(const char *name) +{ + static const char params[] ALIGN1 = + "line\0" /* 1 */ + "rows\0" /* 2 */ + "cols\0" /* 3 */ + "columns\0" /* 4 */ + "size\0" /* 5 */ + "speed\0" /* 6 */ + "ispeed\0" + "ospeed\0"; + int i = index_in_strings(params, name) + 1; + if (i == 0) + return 0; + if (i != 5 && i != 6) + i |= 0x80; + return i; +} + +static int recover_mode(const char *arg, struct termios *mode) +{ + int i, n; + unsigned chr; + unsigned long iflag, oflag, cflag, lflag; + + /* Scan into temporaries since it is too much trouble to figure out + the right format for 'tcflag_t' */ + if (sscanf(arg, "%lx:%lx:%lx:%lx%n", + &iflag, &oflag, &cflag, &lflag, &n) != 4) + return 0; + mode->c_iflag = iflag; + mode->c_oflag = oflag; + mode->c_cflag = cflag; + mode->c_lflag = lflag; + arg += n; + for (i = 0; i < NCCS; ++i) { + if (sscanf(arg, ":%x%n", &chr, &n) != 1) + return 0; + mode->c_cc[i] = chr; + arg += n; + } + + /* Fail if there are too many fields */ + if (*arg != '\0') + return 0; + + return 1; +} + +static void display_recoverable(const struct termios *mode, + int UNUSED_PARAM dummy) +{ + int i; + printf("%lx:%lx:%lx:%lx", + (unsigned long) mode->c_iflag, (unsigned long) mode->c_oflag, + (unsigned long) mode->c_cflag, (unsigned long) mode->c_lflag); + for (i = 0; i < NCCS; ++i) + printf(":%x", (unsigned int) mode->c_cc[i]); + bb_putchar('\n'); +} + +static void display_speed(const struct termios *mode, int fancy) +{ + //____________________ 01234567 8 9 + const char *fmt_str = "%lu %lu\n\0ispeed %lu baud; ospeed %lu baud;"; + unsigned long ispeed, ospeed; + + ispeed = cfgetispeed(mode); + ospeed = cfgetospeed(mode); + if (ispeed == 0 || ispeed == ospeed) { + ispeed = ospeed; /* in case ispeed was 0 */ + //________ 0123 4 5 6 7 8 9 + fmt_str = "%lu\n\0\0\0\0\0speed %lu baud;"; + } + if (fancy) fmt_str += 9; + wrapf(fmt_str, tty_baud_to_value(ispeed), tty_baud_to_value(ospeed)); +} + +static void do_display(const struct termios *mode, int all) +{ + int i; + tcflag_t *bitsp; + unsigned long mask; + int prev_type = control; + + display_speed(mode, 1); + if (all) + display_window_size(1); +#ifdef __linux__ + wrapf("line = %u;\n", mode->c_line); +#else + newline(); +#endif + + for (i = 0; i != CIDX_min; ++i) { + char ch; + char buf10[10]; + + /* If swtch is the same as susp, don't print both */ +#if VSWTCH == VSUSP + if (i == CIDX_swtch) + continue; +#endif + /* If eof uses the same slot as min, only print whichever applies */ +#if VEOF == VMIN + if (!(mode->c_lflag & ICANON) + && (i == CIDX_eof || i == CIDX_eol) + ) { + continue; + } +#endif + ch = mode->c_cc[control_info[i].offset]; + if (ch == _POSIX_VDISABLE) + strcpy(buf10, ""); + else + visible(ch, buf10, 0); + wrapf("%s = %s;", nth_string(control_name, i), buf10); + } +#if VEOF == VMIN + if ((mode->c_lflag & ICANON) == 0) +#endif + wrapf("min = %u; time = %u;", mode->c_cc[VMIN], mode->c_cc[VTIME]); + newline(); + + for (i = 0; i < NUM_mode_info; ++i) { + if (mode_info[i].flags & OMIT) + continue; + if (mode_info[i].type != prev_type) { + newline(); + prev_type = mode_info[i].type; + } + + bitsp = get_ptr_to_tcflag(mode_info[i].type, mode); + mask = mode_info[i].mask ? mode_info[i].mask : mode_info[i].bits; + if ((*bitsp & mask) == mode_info[i].bits) { + if (all || (mode_info[i].flags & SANE_UNSET)) + wrapf("-%s"+1, nth_string(mode_name, i)); + } else { + if ((all && mode_info[i].flags & REV) + || (!all && (mode_info[i].flags & (SANE_SET | REV)) == (SANE_SET | REV)) + ) { + wrapf("-%s", nth_string(mode_name, i)); + } + } + } + newline(); +} + +static void sane_mode(struct termios *mode) +{ + int i; + + for (i = 0; i < NUM_control_info; ++i) { +#if VMIN == VEOF + if (i == CIDX_min) + break; +#endif + mode->c_cc[control_info[i].offset] = control_info[i].saneval; + } + + for (i = 0; i < NUM_mode_info; ++i) { + tcflag_t val; + tcflag_t *bitsp = get_ptr_to_tcflag(mode_info[i].type, mode); + + if (!bitsp) + continue; + val = *bitsp & ~((unsigned long)mode_info[i].mask); + if (mode_info[i].flags & SANE_SET) { + *bitsp = val | mode_info[i].bits; + } else + if (mode_info[i].flags & SANE_UNSET) { + *bitsp = val & ~mode_info[i].bits; + } + } +} + +static void set_mode(const struct mode_info *info, int reversed, + struct termios *mode) +{ + tcflag_t *bitsp; + + bitsp = get_ptr_to_tcflag(info->type, mode); + + if (bitsp) { + tcflag_t val = *bitsp & ~info->mask; + if (reversed) + *bitsp = val & ~info->bits; + else + *bitsp = val | info->bits; + return; + } + + /* !bitsp - it's a "combination" mode */ + if (info == &mode_info[IDX_evenp] || info == &mode_info[IDX_parity]) { + if (reversed) + mode->c_cflag = (mode->c_cflag & ~PARENB & ~CSIZE) | CS8; + else + mode->c_cflag = (mode->c_cflag & ~PARODD & ~CSIZE) | PARENB | CS7; + } else if (info == &mode_info[IDX_oddp]) { + if (reversed) + mode->c_cflag = (mode->c_cflag & ~PARENB & ~CSIZE) | CS8; + else + mode->c_cflag = (mode->c_cflag & ~CSIZE) | CS7 | PARODD | PARENB; + } else if (info == &mode_info[IDX_nl]) { + if (reversed) { + mode->c_iflag = (mode->c_iflag | ICRNL) & ~INLCR & ~IGNCR; + mode->c_oflag = (mode->c_oflag | ONLCR) & ~OCRNL & ~ONLRET; + } else { + mode->c_iflag = mode->c_iflag & ~ICRNL; + if (ONLCR) mode->c_oflag = mode->c_oflag & ~ONLCR; + } + } else if (info == &mode_info[IDX_ek]) { + mode->c_cc[VERASE] = CERASE; + mode->c_cc[VKILL] = CKILL; + } else if (info == &mode_info[IDX_sane]) { + sane_mode(mode); + } else if (info == &mode_info[IDX_cbreak]) { + if (reversed) + mode->c_lflag |= ICANON; + else + mode->c_lflag &= ~ICANON; + } else if (info == &mode_info[IDX_pass8]) { + if (reversed) { + mode->c_cflag = (mode->c_cflag & ~CSIZE) | CS7 | PARENB; + mode->c_iflag |= ISTRIP; + } else { + mode->c_cflag = (mode->c_cflag & ~PARENB & ~CSIZE) | CS8; + mode->c_iflag &= ~ISTRIP; + } + } else if (info == &mode_info[IDX_litout]) { + if (reversed) { + mode->c_cflag = (mode->c_cflag & ~CSIZE) | CS7 | PARENB; + mode->c_iflag |= ISTRIP; + mode->c_oflag |= OPOST; + } else { + mode->c_cflag = (mode->c_cflag & ~PARENB & ~CSIZE) | CS8; + mode->c_iflag &= ~ISTRIP; + mode->c_oflag &= ~OPOST; + } + } else if (info == &mode_info[IDX_raw] || info == &mode_info[IDX_cooked]) { + if ((info == &mode_info[IDX_raw] && reversed) + || (info == &mode_info[IDX_cooked] && !reversed) + ) { + /* Cooked mode */ + mode->c_iflag |= BRKINT | IGNPAR | ISTRIP | ICRNL | IXON; + mode->c_oflag |= OPOST; + mode->c_lflag |= ISIG | ICANON; +#if VMIN == VEOF + mode->c_cc[VEOF] = CEOF; +#endif +#if VTIME == VEOL + mode->c_cc[VEOL] = CEOL; +#endif + } else { + /* Raw mode */ + mode->c_iflag = 0; + mode->c_oflag &= ~OPOST; + mode->c_lflag &= ~(ISIG | ICANON | XCASE); + mode->c_cc[VMIN] = 1; + mode->c_cc[VTIME] = 0; + } + } +#if IXANY + else if (info == &mode_info[IDX_decctlq]) { + if (reversed) + mode->c_iflag |= IXANY; + else + mode->c_iflag &= ~IXANY; + } +#endif +#if TABDLY + else if (info == &mode_info[IDX_tabs]) { + if (reversed) + mode->c_oflag = (mode->c_oflag & ~TABDLY) | TAB3; + else + mode->c_oflag = (mode->c_oflag & ~TABDLY) | TAB0; + } +#endif +#if OXTABS + else if (info == &mode_info[IDX_tabs]) { + if (reversed) + mode->c_oflag |= OXTABS; + else + mode->c_oflag &= ~OXTABS; + } +#endif +#if XCASE && IUCLC && OLCUC + else if (info==&mode_info[IDX_lcase] || info==&mode_info[IDX_LCASE]) { + if (reversed) { + mode->c_lflag &= ~XCASE; + mode->c_iflag &= ~IUCLC; + mode->c_oflag &= ~OLCUC; + } else { + mode->c_lflag |= XCASE; + mode->c_iflag |= IUCLC; + mode->c_oflag |= OLCUC; + } + } +#endif + else if (info == &mode_info[IDX_crt]) { + mode->c_lflag |= ECHOE | ECHOCTL | ECHOKE; + } else if (info == &mode_info[IDX_dec]) { + mode->c_cc[VINTR] = 3; /* ^C */ + mode->c_cc[VERASE] = 127; /* DEL */ + mode->c_cc[VKILL] = 21; /* ^U */ + mode->c_lflag |= ECHOE | ECHOCTL | ECHOKE; + if (IXANY) mode->c_iflag &= ~IXANY; + } +} + +static void set_control_char_or_die(const struct control_info *info, + const char *arg, struct termios *mode) +{ + unsigned char value; + + if (info == &control_info[CIDX_min] || info == &control_info[CIDX_time]) + value = xatoul_range_sfx(arg, 0, 0xff, stty_suffixes); + else if (arg[0] == '\0' || arg[1] == '\0') + value = arg[0]; + else if (strcmp(arg, "^-") == 0 || strcmp(arg, "undef") == 0) + value = _POSIX_VDISABLE; + else if (arg[0] == '^') { /* Ignore any trailing junk (^Cjunk) */ + value = arg[1] & 0x1f; /* Non-letters get weird results */ + if (arg[1] == '?') + value = 127; + } else + value = xatoul_range_sfx(arg, 0, 0xff, stty_suffixes); + mode->c_cc[info->offset] = value; +} + +#define STTY_require_set_attr (1 << 0) +#define STTY_speed_was_set (1 << 1) +#define STTY_verbose_output (1 << 2) +#define STTY_recoverable_output (1 << 3) +#define STTY_noargs (1 << 4) + +int stty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int stty_main(int argc UNUSED_PARAM, char **argv) +{ + struct termios mode; + void (*output_func)(const struct termios *, int); + const char *file_name = NULL; + int display_all = 0; + int stty_state; + int k; + + INIT_G(); + + stty_state = STTY_noargs; + output_func = do_display; + + /* First pass: only parse/verify command line params */ + k = 0; + while (argv[++k]) { + const struct mode_info *mp; + const struct control_info *cp; + const char *arg = argv[k]; + const char *argnext = argv[k+1]; + int param; + + if (arg[0] == '-') { + int i; + mp = find_mode(arg+1); + if (mp) { + if (!(mp->flags & REV)) + goto invalid_argument; + stty_state &= ~STTY_noargs; + continue; + } + /* It is an option - parse it */ + i = 0; + while (arg[++i]) { + switch (arg[i]) { + case 'a': + stty_state |= STTY_verbose_output; + output_func = do_display; + display_all = 1; + break; + case 'g': + stty_state |= STTY_recoverable_output; + output_func = display_recoverable; + break; + case 'F': + if (file_name) + bb_simple_error_msg_and_die("only one device may be specified"); + file_name = &arg[i+1]; /* "-Fdevice" ? */ + if (!file_name[0]) { /* nope, "-F device" */ + int p = k+1; /* argv[p] is argnext */ + file_name = argnext; + if (!file_name) + bb_error_msg_and_die(bb_msg_requires_arg, "-F"); + /* remove -F param from arg[vc] */ + while (argv[p]) { + argv[p] = argv[p+1]; + ++p; + } + } + goto end_option; + default: + goto invalid_argument; + } + } + end_option: + continue; + } + + mp = find_mode(arg); + if (mp) { + stty_state &= ~STTY_noargs; + continue; + } + + cp = find_control(arg); + if (cp) { + if (!argnext) + bb_error_msg_and_die(bb_msg_requires_arg, arg); + /* called for the side effect of xfunc death only */ + set_control_char_or_die(cp, argnext, &mode); + stty_state &= ~STTY_noargs; + ++k; + continue; + } + + param = find_param(arg); + if (param & param_need_arg) { + if (!argnext) + bb_error_msg_and_die(bb_msg_requires_arg, arg); + ++k; + } + + switch (param) { +#ifdef __linux__ + case param_line: +# ifndef TIOCGWINSZ + xatoul_range_sfx(argnext, 1, INT_MAX, stty_suffixes); + break; +# endif /* else fall-through */ +#endif +#ifdef TIOCGWINSZ + case param_rows: + case param_cols: + case param_columns: + xatoul_range_sfx(argnext, 1, INT_MAX, stty_suffixes); + break; + case param_size: +#endif + case param_speed: + break; + case param_ispeed: + /* called for the side effect of xfunc death only */ + set_speed_or_die(input_speed, argnext, &mode); + break; + case param_ospeed: + /* called for the side effect of xfunc death only */ + set_speed_or_die(output_speed, argnext, &mode); + break; + default: + if (recover_mode(arg, &mode) == 1) break; + if (tty_value_to_baud(xatou(arg)) != (speed_t) -1) break; + invalid_argument: + bb_error_msg_and_die("invalid argument '%s'", arg); + } + stty_state &= ~STTY_noargs; + } + + /* Specifying both -a and -g is an error */ + if ((stty_state & (STTY_verbose_output | STTY_recoverable_output)) == + (STTY_verbose_output | STTY_recoverable_output) + ) { + bb_simple_error_msg_and_die("-a and -g are mutually exclusive"); + } + /* Specifying -a or -g with non-options is an error */ + if ((stty_state & (STTY_verbose_output | STTY_recoverable_output)) + && !(stty_state & STTY_noargs) + ) { + bb_simple_error_msg_and_die("modes may not be set when -a or -g is used"); + } + + /* Now it is safe to start doing things */ + if (file_name) { + G.device_name = file_name; + xmove_fd(xopen_nonblocking(G.device_name), STDIN_FILENO); + ndelay_off(STDIN_FILENO); + } + + /* Initialize to all zeroes so there is no risk memcmp will report a + spurious difference in an uninitialized portion of the structure */ + memset(&mode, 0, sizeof(mode)); + if (tcgetattr(STDIN_FILENO, &mode)) + perror_on_device_and_die("%s"); + + if (stty_state & (STTY_verbose_output | STTY_recoverable_output | STTY_noargs)) { + G.max_col = get_terminal_width(STDOUT_FILENO); + output_func(&mode, display_all); + return EXIT_SUCCESS; + } + + /* Second pass: perform actions */ + k = 0; + while (argv[++k]) { + const struct mode_info *mp; + const struct control_info *cp; + const char *arg = argv[k]; + const char *argnext = argv[k+1]; + int param; + + if (arg[0] == '-') { + mp = find_mode(arg+1); + if (mp) { + set_mode(mp, 1 /* reversed */, &mode); + stty_state |= STTY_require_set_attr; + } + /* It is an option - already parsed. Skip it */ + continue; + } + + mp = find_mode(arg); + if (mp) { + set_mode(mp, 0 /* non-reversed */, &mode); + stty_state |= STTY_require_set_attr; + continue; + } + + cp = find_control(arg); + if (cp) { + ++k; + set_control_char_or_die(cp, argnext, &mode); + stty_state |= STTY_require_set_attr; + continue; + } + + param = find_param(arg); + if (param & param_need_arg) { + ++k; + } + + switch (param) { +#ifdef __linux__ + case param_line: + mode.c_line = xatoul_sfx(argnext, stty_suffixes); + stty_state |= STTY_require_set_attr; + break; +#endif +#ifdef TIOCGWINSZ + case param_cols: + case param_columns: + set_window_size(-1, xatoul_sfx(argnext, stty_suffixes)); + break; + case param_size: + display_window_size(0); + break; + case param_rows: + set_window_size(xatoul_sfx(argnext, stty_suffixes), -1); + break; +#endif + case param_speed: + display_speed(&mode, 0); + break; + case param_ispeed: + set_speed_or_die(input_speed, argnext, &mode); + stty_state |= (STTY_require_set_attr | STTY_speed_was_set); + break; + case param_ospeed: + set_speed_or_die(output_speed, argnext, &mode); + stty_state |= (STTY_require_set_attr | STTY_speed_was_set); + break; + default: + if (recover_mode(arg, &mode) == 1) + stty_state |= STTY_require_set_attr; + else /* true: if (tty_value_to_baud(xatou(arg)) != (speed_t) -1) */{ + set_speed_or_die(both_speeds, arg, &mode); + stty_state |= (STTY_require_set_attr | STTY_speed_was_set); + } /* else - impossible (caught in the first pass): + bb_error_msg_and_die("invalid argument '%s'", arg); */ + } + } + + if (stty_state & STTY_require_set_attr) { + struct termios new_mode; + + if (tcsetattr(STDIN_FILENO, TCSADRAIN, &mode)) + perror_on_device_and_die("%s"); + + /* POSIX (according to Zlotnick's book) tcsetattr returns zero if + it performs *any* of the requested operations. This means it + can report 'success' when it has actually failed to perform + some proper subset of the requested operations. To detect + this partial failure, get the current terminal attributes and + compare them to the requested ones */ + + /* Initialize to all zeroes so there is no risk memcmp will report a + spurious difference in an uninitialized portion of the structure */ + memset(&new_mode, 0, sizeof(new_mode)); + if (tcgetattr(STDIN_FILENO, &new_mode)) + perror_on_device_and_die("%s"); + + if (memcmp(&mode, &new_mode, sizeof(mode)) != 0) { +/* + * I think the below chunk is not necessary on Linux. + * If you are deleting it, also delete STTY_speed_was_set bit - + * it is only ever checked here. + */ +#if 0 /* was "if CIBAUD" */ + /* SunOS 4.1.3 (at least) has the problem that after this sequence, + tcgetattr (&m1); tcsetattr (&m1); tcgetattr (&m2); + sometimes (m1 != m2). The only difference is in the four bits + of the c_cflag field corresponding to the baud rate. To save + Sun users a little confusion, don't report an error if this + happens. But suppress the error only if we haven't tried to + set the baud rate explicitly -- otherwise we'd never give an + error for a true failure to set the baud rate */ + + new_mode.c_cflag &= (~CIBAUD); + if ((stty_state & STTY_speed_was_set) + || memcmp(&mode, &new_mode, sizeof(mode)) != 0) +#endif + perror_on_device_and_die("%s: cannot perform all requested operations"); + } + } + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/sum.c b/busybox-1_37_0/coreutils/sum.c new file mode 100644 index 000000000..78e69acc6 --- /dev/null +++ b/busybox-1_37_0/coreutils/sum.c @@ -0,0 +1,118 @@ +/* vi: set sw=4 ts=4: */ +/* + * sum -- checksum and count the blocks in a file + * Like BSD sum or SysV sum -r, except like SysV sum if -s option is given. + * + * Copyright (C) 86, 89, 91, 1995-2002, 2004 Free Software Foundation, Inc. + * Copyright (C) 2005 by Erik Andersen + * Copyright (C) 2005 by Mike Frysinger + * + * Written by Kayvan Aghaiepour and David MacKenzie + * Taken from coreutils and turned into a busybox applet by Mike Frysinger + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config SUM +//config: bool "sum (4.2 kb)" +//config: default y +//config: help +//config: checksum and count the blocks in a file + +//applet:IF_SUM(APPLET(sum, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_SUM) += sum.o + +//usage:#define sum_trivial_usage +//usage: "[-rs] [FILE]..." +//usage:#define sum_full_usage "\n\n" +//usage: "Checksum and count the blocks in a file\n" +//usage: "\n -r Use BSD sum algorithm (1K blocks)" +//usage: "\n -s Use System V sum algorithm (512byte blocks)" + +#include "libbb.h" +#include "common_bufsiz.h" + +enum { SUM_BSD, PRINT_NAME, SUM_SYSV }; + +/* BSD: calculate and print the rotated checksum and the size in 1K blocks + The checksum varies depending on sizeof (int). */ +/* SYSV: calculate and print the checksum and the size in 512-byte blocks */ +/* Return 1 if successful. */ +static unsigned sum_file(const char *file, unsigned type) +{ + unsigned long long total_bytes = 0; + int fd, r; + /* The sum of all the input bytes, modulo (UINT_MAX + 1). */ + unsigned s = 0; + +#define buf bb_common_bufsiz1 + setup_common_bufsiz(); + + fd = open_or_warn_stdin(file); + if (fd == -1) + return 0; + + while (1) { + size_t bytes_read = safe_read(fd, buf, COMMON_BUFSIZE); + + if ((ssize_t)bytes_read <= 0) { + r = (fd && close(fd) != 0); + if (!bytes_read && !r) + /* no error */ + break; + bb_simple_perror_msg(file); + return 0; + } + + total_bytes += bytes_read; + if (type >= SUM_SYSV) { + do s += buf[--bytes_read]; while (bytes_read); + } else { + r = 0; + do { + s = (s >> 1) + ((s & 1) << 15); + s += buf[r++]; + s &= 0xffff; /* Keep it within bounds. */ + } while (--bytes_read); + } + } + + if (type < PRINT_NAME) + file = ""; + if (type >= SUM_SYSV) { + r = (s & 0xffff) + ((s & 0xffffffff) >> 16); + s = (r & 0xffff) + (r >> 16); + printf("%u %llu %s\n", s, (total_bytes + 511) / 512, file); + } else + printf("%05u %5llu %s\n", s, (total_bytes + 1023) / 1024, file); + return 1; +#undef buf +} + +int sum_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int sum_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned n; + unsigned type = SUM_BSD; + + n = getopt32(argv, "sr"); + argv += optind; + if (n & 1) type = SUM_SYSV; + /* give the bsd priority over sysv func */ + if (n & 2) type = SUM_BSD; + + if (!argv[0]) { + /* Do not print the name */ + n = sum_file("-", type); + } else { + /* Need to print the name if either + * - more than one file given + * - doing sysv */ + type += (argv[1] || type == SUM_SYSV); + n = 1; + do { + n &= sum_file(*argv, type); + } while (*++argv); + } + return !n; +} diff --git a/busybox-1_37_0/coreutils/sync.c b/busybox-1_37_0/coreutils/sync.c new file mode 100644 index 000000000..b6a4a4b70 --- /dev/null +++ b/busybox-1_37_0/coreutils/sync.c @@ -0,0 +1,140 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini sync implementation for busybox + * + * Copyright (C) 1995, 1996 by Bruce Perens . + * Copyright (C) 2015 by Ari Sundholm + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config SYNC +//config: bool "sync (4 kb)" +//config: default y +//config: help +//config: sync is used to flush filesystem buffers. +//config:config FEATURE_SYNC_FANCY +//config: bool "Enable -d and -f flags (requires syncfs(2) in libc)" +//config: default y +//config: depends on SYNC +//config: help +//config: sync -d FILE... executes fdatasync() on each FILE. +//config: sync -f FILE... executes syncfs() on each FILE. + +// APPLET_NOFORK:name main location suid_type help +//applet:IF_SYNC(APPLET_NOFORK(sync, sync, BB_DIR_BIN, BB_SUID_DROP, sync)) + +//kbuild:lib-$(CONFIG_SYNC) += sync.o + +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ + +//usage:#define sync_trivial_usage +//usage: ""IF_FEATURE_SYNC_FANCY("[-df] [FILE]...") +//usage:#define sync_full_usage "\n\n" +//usage: IF_NOT_FEATURE_SYNC_FANCY( +//usage: "Write all buffered blocks to disk" +//usage: ) +//usage: IF_FEATURE_SYNC_FANCY( +//usage: "Write all buffered blocks (in FILEs) to disk" +//usage: "\n -d Avoid syncing metadata" +//usage: "\n -f Sync filesystems underlying FILEs" +//usage: ) + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +#if ENABLE_FEATURE_SYNC_FANCY || ENABLE_FSYNC +static int sync_common(int opts, char **argv) +{ + int ret; + enum { + OPT_DATASYNC = (1 << 0), + OPT_SYNCFS = (1 << 1), + }; + + ret = EXIT_SUCCESS; + do { + /* GNU "sync FILE" uses O_NONBLOCK open */ + int fd = open_or_warn(*argv, /*O_NOATIME |*/ O_NOCTTY | O_RDONLY | O_NONBLOCK); + /* open(NOATIME) can only be used by owner or root, don't use NOATIME here */ + + if (fd < 0) { + ret = EXIT_FAILURE; + goto next; + } +# if ENABLE_FEATURE_SYNC_FANCY + if (opts & OPT_SYNCFS) { + /* + * syncfs is documented to only fail with EBADF, + * which can't happen here. So, no error checks. + */ + syncfs(fd); + } else +# endif + if (((opts & OPT_DATASYNC) ? fdatasync(fd) : fsync(fd)) != 0) { + bb_simple_perror_msg(*argv); + ret = EXIT_FAILURE; + } + close(fd); + next: + argv++; + } while (*argv); + + return ret; +} +#endif + +#if ENABLE_SYNC +int sync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int sync_main(int argc UNUSED_PARAM, char **argv IF_NOT_DESKTOP(UNUSED_PARAM)) +{ +# if !ENABLE_FEATURE_SYNC_FANCY + /* coreutils-6.9 compat */ + bb_warn_ignoring_args(argv[1]); + sync(); + return EXIT_SUCCESS; +# else + unsigned opts = getopt32(argv, "^" "df" "\0" "d--f:f--d"); + argv += optind; + if (!argv[0]) { + sync(); + return EXIT_SUCCESS; + } + return sync_common(opts, argv); +# endif +} +#endif + +/* + * Mini fsync implementation for busybox + * + * Copyright (C) 2008 Nokia Corporation. All rights reserved. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config FSYNC +//config: bool "fsync (3.8 kb)" +//config: default y +//config: help +//config: fsync is used to flush file-related cached blocks to disk. + +// APPLET_NOFORK:name main location suid_type help +//applet:IF_FSYNC(APPLET_NOFORK(fsync, fsync, BB_DIR_BIN, BB_SUID_DROP, fsync)) + +//kbuild:lib-$(CONFIG_FSYNC) += sync.o + +//usage:#define fsync_trivial_usage +//usage: "[-d] FILE..." +//usage:#define fsync_full_usage "\n\n" +//usage: "Write all buffered blocks in FILEs to disk\n" +//usage: "\n -d Avoid syncing metadata" + +#if ENABLE_FSYNC +int fsync_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int fsync_main(int argc UNUSED_PARAM, char **argv) +{ + int opts = getopt32(argv, "^" "d" "\0" "-1"/*min 1 arg*/); + argv += optind; + return sync_common(opts, argv); +} +#endif diff --git a/busybox-1_37_0/coreutils/tac.c b/busybox-1_37_0/coreutils/tac.c new file mode 100644 index 000000000..6d3ea9c19 --- /dev/null +++ b/busybox-1_37_0/coreutils/tac.c @@ -0,0 +1,117 @@ +/* vi: set sw=4 ts=4: */ +/* + * tac implementation for busybox + * tac - concatenate and print files in reverse + * + * Copyright (C) 2003 Yang Xiaopeng + * Copyright (C) 2007 Natanael Copa + * Copyright (C) 2007 Tito Ragusa + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ +/* Based on Yang Xiaopeng's (yxp at hanwang.com.cn) patch + * http://www.uclibc.org/lists/busybox/2003-July/008813.html + */ +//config:config TAC +//config: bool "tac (4.1 kb)" +//config: default y +//config: help +//config: tac is used to concatenate and print files in reverse. + +//applet:IF_TAC(APPLET_NOEXEC(tac, tac, BB_DIR_USR_BIN, BB_SUID_DROP, tac)) + +//kbuild:lib-$(CONFIG_TAC) += tac.o + +//usage:#define tac_trivial_usage +//usage: "[FILE]..." +//usage:#define tac_full_usage "\n\n" +//usage: "Concatenate FILEs and print them in reverse" + +#include "libbb.h" + +/* This is a NOEXEC applet. Be very careful! */ + +struct lstring { + int size; + char buf[1]; +}; + +int tac_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int tac_main(int argc UNUSED_PARAM, char **argv) +{ + char **name; + FILE *f; + struct lstring *line = NULL; + llist_t *list = NULL; + int retval = EXIT_SUCCESS; + +#if ENABLE_DESKTOP +/* tac from coreutils 6.9 supports: + -b, --before + attach the separator before instead of after + -r, --regex + interpret the separator as a regular expression + -s, --separator=STRING + use STRING as the separator instead of newline +We support none, but at least we will complain or handle "--": +*/ + getopt32(argv, ""); + argv += optind; +#else + argv++; +#endif + if (!*argv) + *--argv = (char *)"-"; + /* We will read from last file to first */ + name = argv; + while (*name) + name++; + + do { + int ch, i; + + name--; + f = fopen_or_warn_stdin(*name); + if (f == NULL) { + /* error message is printed by fopen_or_warn_stdin */ + retval = EXIT_FAILURE; + continue; + } + + errno = i = 0; + do { + ch = fgetc(f); + if (ch != EOF) { + if (!(i & 0x7f)) + /* Grow on every 128th char */ + line = xrealloc(line, i + 0x7f + sizeof(int) + 1); + line->buf[i++] = ch; + } + if (ch == '\n' || (ch == EOF && i != 0)) { + line = xrealloc(line, i + sizeof(int)); + line->size = i; + llist_add_to(&list, line); + line = NULL; + i = 0; + } + } while (ch != EOF); + /* fgetc sets errno to ENOENT on EOF, we don't want + * to warn on this non-error! */ + if (errno && errno != ENOENT) { + bb_simple_perror_msg(*name); + retval = EXIT_FAILURE; + } + } while (name != argv); + + while (list) { + line = (struct lstring *)list->data; + xwrite(STDOUT_FILENO, line->buf, line->size); + if (ENABLE_FEATURE_CLEAN_UP) { + free(llist_pop(&list)); + } else { + list = list->link; + } + } + + return retval; +} diff --git a/busybox-1_37_0/coreutils/tail.c b/busybox-1_37_0/coreutils/tail.c new file mode 100644 index 000000000..4680295b9 --- /dev/null +++ b/busybox-1_37_0/coreutils/tail.c @@ -0,0 +1,421 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini tail implementation for busybox + * + * Copyright (C) 2001 by Matt Kraai + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Pretty much rewritten to fix numerous bugs and reduce realloc() calls. + * Bugs fixed (although I may have forgotten one or two... it was pretty bad) + * 1) mixing printf/write without fflush()ing stdout + * 2) no check that any open files are present + * 3) optstring had -q taking an arg + * 4) no error checking on write in some cases, and a warning even then + * 5) q and s interaction bug + * 6) no check for lseek error + * 7) lseek attempted when count==0 even if arg was +0 (from top) + */ +//config:config TAIL +//config: bool "tail (7.2 kb)" +//config: default y +//config: help +//config: tail is used to print the last specified number of lines +//config: from files. +//config: +//config:config FEATURE_FANCY_TAIL +//config: bool "Enable -q, -s, -v, and -F options" +//config: default y +//config: depends on TAIL +//config: help +//config: These options are provided by GNU tail, but +//config: are not specified in the SUSv3 standard: +//config: -q Never output headers giving file names +//config: -s SEC Wait SEC seconds between reads with -f +//config: -v Always output headers giving file names +//config: -F Same as -f, but keep retrying + +//applet:IF_TAIL(APPLET(tail, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_TAIL) += tail.o + +/* BB_AUDIT SUSv3 compliant (need fancy for -c) */ +/* BB_AUDIT GNU compatible -c, -q, and -v options in 'fancy' configuration. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/tail.html */ + +//usage:#define tail_trivial_usage +//usage: "[OPTIONS] [FILE]..." +//usage:#define tail_full_usage "\n\n" +//usage: "Print last 10 lines of FILEs (or stdin) to.\n" +//usage: "With more than one FILE, precede each with a filename header.\n" +//usage: "\n -c [+]N[bkm] Print last N bytes" +//usage: "\n -n N[bkm] Print last N lines" +//usage: "\n -n +N[bkm] Start on Nth line and print the rest" +//usage: "\n (b:*512 k:*1024 m:*1024^2)" +//usage: IF_FEATURE_FANCY_TAIL( +//usage: "\n -q Never print headers" +//usage: "\n -v Always print headers" +//usage: ) +//usage: "\n -f Print data as file grows" +//usage: IF_FEATURE_FANCY_TAIL( +//usage: "\n -F Same as -f, but keep retrying" +//usage: "\n -s SECONDS Wait SECONDS between reads with -f" +//usage: ) +//usage: +//usage:#define tail_example_usage +//usage: "$ tail -n 1 /etc/resolv.conf\n" +//usage: "nameserver 10.0.0.1\n" + +#include "libbb.h" +#include "common_bufsiz.h" + +struct globals { + bool from_top; + bool exitcode; +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { setup_common_bufsiz(); } while (0) + +static void tail_xprint_header(const char *fmt, const char *filename) +{ + if (fdprintf(STDOUT_FILENO, fmt, filename) < 0) + bb_perror_nomsg_and_die(); +} + +static ssize_t tail_read(int fd, char *buf, size_t count) +{ + ssize_t r; + + r = full_read(fd, buf, count); + if (r < 0) { + bb_simple_perror_msg(bb_msg_read_error); + G.exitcode = EXIT_FAILURE; + } + + return r; +} + +#define header_fmt_str "\n==> %s <==\n" + +static unsigned eat_num(const char *p) +{ + if (*p == '-') + p++; + else if (*p == '+') { + p++; + G.from_top = 1; + } + return xatou_sfx(p, bkm_suffixes); +} + +int tail_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int tail_main(int argc, char **argv) +{ + unsigned count = 10; + unsigned sleep_period = 1; + const char *str_c, *str_n; + + char *tailbuf; + size_t tailbufsize; + unsigned header_threshold = 1; + unsigned nfiles; + int i, opt; + + int *fds; + const char *fmt; + int prev_fd; + + INIT_G(); + +#if ENABLE_INCLUDE_SUSv2 || ENABLE_FEATURE_FANCY_TAIL + /* Allow legacy syntax of an initial numeric option without -n. */ + if (argv[1] && (argv[1][0] == '+' || argv[1][0] == '-') + && isdigit(argv[1][1]) + ) { + count = eat_num(argv[1]); + argv++; + argc--; + } +#endif + + /* -s NUM, -F imlies -f */ + opt = getopt32(argv, IF_FEATURE_FANCY_TAIL("^") + "fc:n:"IF_FEATURE_FANCY_TAIL("qs:+vF") + IF_FEATURE_FANCY_TAIL("\0" "Ff"), + &str_c, &str_n IF_FEATURE_FANCY_TAIL(,&sleep_period) + ); +#define FOLLOW (opt & 0x1) +#define COUNT_BYTES (opt & 0x2) + //if (opt & 0x1) // -f + if (opt & 0x2) count = eat_num(str_c); // -c + if (opt & 0x4) count = eat_num(str_n); // -n +#if ENABLE_FEATURE_FANCY_TAIL + /* q: make it impossible for nfiles to be > header_threshold */ + if (opt & 0x8) header_threshold = UINT_MAX; // -q + //if (opt & 0x10) // -s + if (opt & 0x20) header_threshold = 0; // -v +# define FOLLOW_RETRY (opt & 0x40) +#else +# define FOLLOW_RETRY 0 +#endif + argc -= optind; + argv += optind; + + /* open all the files */ + fds = xmalloc(sizeof(fds[0]) * (argc + 1)); + if (!argv[0]) { + struct stat statbuf; + + if (fstat(STDIN_FILENO, &statbuf) == 0 + && S_ISFIFO(statbuf.st_mode) + ) { + opt &= ~1; /* clear FOLLOW */ + } + argv[0] = (char *) bb_msg_standard_input; + } + nfiles = i = 0; + do { + int fd = open_or_warn_stdin(argv[i]); + if (fd < 0 && !FOLLOW_RETRY) { + G.exitcode = EXIT_FAILURE; + continue; + } + fds[nfiles] = fd; + argv[nfiles++] = argv[i]; + } while (++i < argc); + + if (!nfiles) + bb_simple_error_msg_and_die("no files"); + + /* prepare the buffer */ + tailbufsize = BUFSIZ; + if (!G.from_top && COUNT_BYTES) { + if (tailbufsize < count + BUFSIZ) { + tailbufsize = count + BUFSIZ; + } + } + /* tail -c1024m REGULAR_FILE doesn't really need 1G mem block. + * (In fact, it doesn't need ANY memory). So delay allocation. + */ + tailbuf = NULL; + + /* tail the files */ + + fmt = header_fmt_str + 1; /* skip leading newline in the header on the first output */ + i = 0; + do { + char *buf; + int taillen; + int newlines_seen; + unsigned seen; + int nread; + int fd = fds[i]; + + if (ENABLE_FEATURE_FANCY_TAIL && fd < 0) + continue; /* may happen with -F */ + + if (nfiles > header_threshold) { + tail_xprint_header(fmt, argv[i]); + fmt = header_fmt_str; + } + + if (!G.from_top) { + off_t current = lseek(fd, 0, SEEK_END); + if (current > 0) { + unsigned off; + if (COUNT_BYTES) { + /* Optimizing count-bytes case if the file is seekable. + * Beware of backing up too far. + * Also we exclude files with size 0 (because of /proc/xxx) */ + if (count == 0) + continue; /* showing zero bytes is easy :) */ + current -= count; + if (current < 0) + current = 0; + xlseek(fd, current, SEEK_SET); + bb_copyfd_size(fd, STDOUT_FILENO, count); + continue; + } +#if 1 /* This is technically incorrect for *LONG* strings, but very useful */ + /* Optimizing count-lines case if the file is seekable. + * We assume the lines are <64k. + * (Users complain that tail takes too long + * on multi-gigabyte files) */ + off = (count | 0xf); /* for small counts, be more paranoid */ + if (off > (INT_MAX / (64*1024))) + off = (INT_MAX / (64*1024)); + current -= off * (64*1024); + if (current < 0) + current = 0; + xlseek(fd, current, SEEK_SET); +#endif + } + } + + if (!tailbuf) + tailbuf = xmalloc(tailbufsize); + + buf = tailbuf; + taillen = 0; + /* "We saw 1st line/byte". + * Used only by +N code ("start from Nth", 1-based): */ + seen = 1; + newlines_seen = 0; + while ((nread = tail_read(fd, buf, tailbufsize - taillen)) > 0) { + if (G.from_top) { + int nwrite = nread; + if (seen < count) { + /* We need to skip a few more bytes/lines */ + if (COUNT_BYTES) { + nwrite -= (count - seen); + seen += nread; + } else { + char *s = buf; + do { + --nwrite; + if (*s++ == '\n' && ++seen == count) { + break; + } + } while (nwrite); + } + } + if (nwrite > 0) + xwrite(STDOUT_FILENO, buf + nread - nwrite, nwrite); + } else if (count) { + if (COUNT_BYTES) { + taillen += nread; + if (taillen > (int)count) { + memmove(tailbuf, tailbuf + taillen - count, count); + taillen = count; + } + } else { + int k = nread; + int newlines_in_buf = 0; + + do { /* count '\n' in last read */ + k--; + if (buf[k] == '\n') { + newlines_in_buf++; + } + } while (k); + + if (newlines_seen + newlines_in_buf < (int)count) { + newlines_seen += newlines_in_buf; + taillen += nread; + } else { + int extra = (buf[nread-1] != '\n'); + char *s; + + k = newlines_seen + newlines_in_buf + extra - count; + s = tailbuf; + while (k) { + if (*s == '\n') { + k--; + } + s++; + } + taillen += nread - (s - tailbuf); + memmove(tailbuf, s, taillen); + newlines_seen = count - extra; + } + if (tailbufsize < (size_t)taillen + BUFSIZ) { + tailbufsize = taillen + BUFSIZ; + tailbuf = xrealloc(tailbuf, tailbufsize); + } + } + buf = tailbuf + taillen; + } + } /* while (tail_read() > 0) */ + if (!G.from_top) { + xwrite(STDOUT_FILENO, tailbuf, taillen); + } + } while (++i < nfiles); + prev_fd = fds[i-1]; + + tailbuf = xrealloc(tailbuf, BUFSIZ); + + fmt = NULL; + + if (FOLLOW) while (1) { + sleep(sleep_period); + + i = 0; + do { + int nread; + const char *filename = argv[i]; + int fd = fds[i]; + int new_fd = -1; + struct stat sbuf; + + if (FOLLOW_RETRY) { + struct stat fsbuf; + + if (fd < 0 + || fstat(fd, &fsbuf) < 0 + || stat(filename, &sbuf) < 0 + || fsbuf.st_dev != sbuf.st_dev + || fsbuf.st_ino != sbuf.st_ino + ) { + /* Looks like file has been created/renamed/deleted */ + new_fd = open(filename, O_RDONLY); + if (new_fd >= 0) { + bb_error_msg("%s has %s; following end of new file", + filename, (fd < 0) ? "appeared" : "been replaced" + ); + if (fd < 0) { + /* No previously open fd for this file, + * start using new_fd immediately. */ + fds[i] = fd = new_fd; + new_fd = -1; + } + } else if (fd >= 0) { + bb_perror_msg("%s has been renamed or deleted", filename); + } + } + } + if (ENABLE_FEATURE_FANCY_TAIL && fd < 0) + continue; + if (nfiles > header_threshold) { + fmt = header_fmt_str; + } + for (;;) { + /* tail -f keeps following files even if they are truncated */ + /* /proc files report zero st_size, don't lseek them */ + if (fstat(fd, &sbuf) == 0 + /* && S_ISREG(sbuf.st_mode) TODO? */ + && sbuf.st_size > 0 + ) { + off_t current = lseek(fd, 0, SEEK_CUR); + if (sbuf.st_size < current) { + //bb_perror_msg("%s: file truncated", filename); - says coreutils 8.32 + xlseek(fd, 0, SEEK_SET); + } + } + + nread = tail_read(fd, tailbuf, BUFSIZ); + if (nread <= 0) { + if (new_fd < 0) + break; + /* Switch to "tail -F"ing the new file */ + xmove_fd(new_fd, fd); + new_fd = -1; + continue; + } + if (fmt && (fd != prev_fd)) { + tail_xprint_header(fmt, filename); + fmt = NULL; + prev_fd = fd; + } + xwrite(STDOUT_FILENO, tailbuf, nread); + } + } while (++i < nfiles); + } /* while (1) */ + + if (ENABLE_FEATURE_CLEAN_UP) { + free(fds); + free(tailbuf); + } + return G.exitcode; +} diff --git a/busybox-1_37_0/coreutils/tee.c b/busybox-1_37_0/coreutils/tee.c new file mode 100644 index 000000000..603fd3ad4 --- /dev/null +++ b/busybox-1_37_0/coreutils/tee.c @@ -0,0 +1,153 @@ +/* vi: set sw=4 ts=4: */ +/* + * tee implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config TEE +//config: bool "tee (4.4 kb)" +//config: default y +//config: help +//config: tee is used to read from standard input and write +//config: to standard output and files. +//config: +//config:config FEATURE_TEE_USE_BLOCK_IO +//config: bool "Enable block I/O (larger/faster) instead of byte I/O" +//config: default y +//config: depends on TEE +//config: help +//config: Enable this option for a faster tee, at expense of size. + +//applet:IF_TEE(APPLET(tee, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_TEE) += tee.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/tee.html */ + +//usage:#define tee_trivial_usage +//usage: "[-ai] [FILE]..." +//usage:#define tee_full_usage "\n\n" +//usage: "Copy stdin to each FILE, and also to stdout\n" +//usage: "\n -a Append to the given FILEs, don't overwrite" +//usage: "\n -i Ignore interrupt signals (SIGINT)" +//usage: +//usage:#define tee_example_usage +//usage: "$ echo \"Hello\" | tee /tmp/foo\n" +//usage: "$ cat /tmp/foo\n" +//usage: "Hello\n" + +// Bare "tee" with no below options does not install SIGPIPE handler - just dies on it. +// TODO: +// --output-error[=MODE] +// 'warn' diagnose errors writing to any output +// 'warn-nopipe' diagnose errors writing to any output not a pipe +// 'exit' exit on error writing to any output +// 'exit-nopipe' exit on error writing to any output not a pipe +// ^^^ all of these should set SIGPIPE to SIG_IGN. +// Because "exit" mode should print error message and exit1(1) - not die on SIGPIPE. +// "exit-nopipe" does not exit on EPIPE and does not set exitcode to 1 too. +// -p diagnose errors writing to non pipes +// ^^^^ this should set SIGPIPE to SIG_IGN. EPIPE is ignored (same as "warn-nopipe") + +#include "libbb.h" +#include "common_bufsiz.h" + +int tee_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int tee_main(int argc, char **argv) +{ + const char *mode = "w\0a"; + FILE **files; + FILE **fp; + char **names; + char **np; + char retval; +//TODO: make unconditional +#if ENABLE_FEATURE_TEE_USE_BLOCK_IO + ssize_t c; +# define buf bb_common_bufsiz1 + setup_common_bufsiz(); +#else + int c; +#endif + retval = getopt32(argv, "ia"); /* 'a' must be 2nd */ + argc -= optind; + argv += optind; + + mode += (retval & 2); /* Since 'a' is the 2nd option... */ + + if (retval & 1) { + signal(SIGINT, SIG_IGN); + } + retval = EXIT_SUCCESS; + /* if (opt_p || opt_output_error) + signal(SIGPIPE, SIG_IGN); + */ + + /* Allocate an array of FILE *'s, with one extra for a sentinel. */ + fp = files = xzalloc(sizeof(FILE *) * (argc + 2)); + np = names = argv - 1; + + files[0] = stdout; + goto GOT_NEW_FILE; + + do { + *fp = stdout; + if (NOT_LONE_DASH(*argv)) { + *fp = fopen_or_warn(*argv, mode); + if (*fp == NULL) { + retval = EXIT_FAILURE; + argv++; + continue; + } + } + *np = *argv++; + GOT_NEW_FILE: + setbuf(*fp, NULL); /* tee must not buffer output. */ + fp++; + np++; + } while (*argv); + /* names[0] will be filled later */ + +#if ENABLE_FEATURE_TEE_USE_BLOCK_IO + while ((c = safe_read(STDIN_FILENO, buf, COMMON_BUFSIZE)) > 0) { + fp = files; + do + fwrite(buf, 1, c, *fp); + /* if (opt_p && fwrite() != c && !EPIPE) bb_error_msg("..."); */ + while (*++fp); + } + if (c < 0) { /* Make sure read errors are signaled. */ + retval = EXIT_FAILURE; + } +#else + setvbuf(stdout, NULL, _IONBF, 0); + while ((c = getchar()) != EOF) { + fp = files; + do + putc(c, *fp); + /* if (opt_p && putc() == EOF && !EPIPE) bb_error_msg("..."); */ + while (*++fp); + } +#endif + + /* Now we need to check for i/o errors on stdin and the various + * output files. Since we know that the first entry in the output + * file table is stdout, we can save one "if ferror" test by + * setting the first entry to stdin and checking stdout error + * status with fflush_stdout_and_exit()... although fflush()ing + * is unnecessary here. */ + np = names; + fp = files; + names[0] = (char *) bb_msg_standard_input; + files[0] = stdin; + do { /* Now check for input and output errors. */ + /* Checking ferror should be sufficient, but we may want to fclose. + * If we do, remember not to close stdin! */ + die_if_ferror(*fp++, *np++); + } while (*fp); + + fflush_stdout_and_exit(retval); +} diff --git a/busybox-1_37_0/coreutils/test.c b/busybox-1_37_0/coreutils/test.c new file mode 100644 index 000000000..008d90b25 --- /dev/null +++ b/busybox-1_37_0/coreutils/test.c @@ -0,0 +1,1028 @@ +/* vi: set sw=4 ts=4: */ +/* + * test implementation for busybox + * + * Copyright (c) by a whole pile of folks: + * + * test(1); version 7-like -- author Erik Baalbergen + * modified by Eric Gisin to be used as built-in. + * modified by Arnold Robbins to add SVR3 compatibility + * (-x -c -b -p -u -g -k) plus Korn's -L -nt -ot -ef and new -S (socket). + * modified by J.T. Conklin for NetBSD. + * modified by Herbert Xu to be used as built-in in ash. + * modified by Erik Andersen to be used + * in busybox. + * modified by Bernhard Reutner-Fischer to be useable (i.e. a bit less bloaty). + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * Original copyright notice states: + * "This program is in the Public Domain." + */ +//config:config TEST +//config: bool "test (4.4 kb)" +//config: default y +//config: help +//config: test is used to check file types and compare values, +//config: returning an appropriate exit code. The bash shell +//config: has test built in, ash can build it in optionally. +//config: +//config:config TEST1 +//config: bool "test as [" +//config: default y +//config: help +//config: Provide test command in the "[ EXPR ]" form +//config: +//config:config TEST2 +//config: bool "test as [[" +//config: default y +//config: help +//config: Provide test command in the "[[ EXPR ]]" form +//config: +//config:config FEATURE_TEST_64 +//config: bool "Extend test to 64 bit" +//config: default y +//config: depends on TEST || TEST1 || TEST2 || ASH_TEST || HUSH_TEST +//config: help +//config: Enable 64-bit support in test. + +//applet:IF_TEST(APPLET_NOFORK(test, test, BB_DIR_USR_BIN, BB_SUID_DROP, test)) +//applet:IF_TEST1(APPLET_NOFORK([, test, BB_DIR_USR_BIN, BB_SUID_DROP, test)) +//applet:IF_TEST2(APPLET_NOFORK([[, test, BB_DIR_USR_BIN, BB_SUID_DROP, test)) + +//kbuild:lib-$(CONFIG_TEST) += test.o test_ptr_hack.o +//kbuild:lib-$(CONFIG_TEST1) += test.o test_ptr_hack.o +//kbuild:lib-$(CONFIG_TEST2) += test.o test_ptr_hack.o + +//kbuild:lib-$(CONFIG_ASH_TEST) += test.o test_ptr_hack.o +//kbuild:lib-$(CONFIG_HUSH_TEST) += test.o test_ptr_hack.o + +/* "test --help" is special-cased to ignore --help */ +//usage:#define test_trivial_usage NOUSAGE_STR +//usage:#define test_full_usage "" +//usage: +//usage:#define test_example_usage +//usage: "$ test 1 -eq 2\n" +//usage: "$ echo $?\n" +//usage: "1\n" +//usage: "$ test 1 -eq 1\n" +//usage: "$ echo $?\n" +//usage: "0\n" +//usage: "$ [ -d /etc ]\n" +//usage: "$ echo $?\n" +//usage: "0\n" +//usage: "$ [ -d /junk ]\n" +//usage: "$ echo $?\n" +//usage: "1\n" + +#include "libbb.h" +#include +#include + +/* This is a NOFORK applet. Be very careful! */ + +/* test_main() is called from shells, and we need to be extra careful here. + * This is true regardless of PREFER_APPLETS and SH_STANDALONE + * state. */ + +/* test(1) accepts the following grammar: + oexpr ::= aexpr | aexpr "-o" oexpr ; + aexpr ::= nexpr | nexpr "-a" aexpr ; + nexpr ::= primary | "!" primary + primary ::= unary-operator operand + | operand binary-operator operand + | operand + | "(" oexpr ")" + ; + unary-operator ::= "-r"|"-w"|"-x"|"-f"|"-d"|"-c"|"-b"|"-p"| + "-u"|"-g"|"-k"|"-s"|"-t"|"-z"|"-n"|"-o"|"-O"|"-G"|"-L"|"-S"; + + binary-operator ::= "="|"=="|"!="|"-eq"|"-ne"|"-ge"|"-gt"|"-le"|"-lt"| + "-nt"|"-ot"|"-ef"; + operand ::= +*/ + +/* TODO: handle [[ expr ]] bashism bash-compatibly. + * [[ ]] is meant to be a "better [ ]", with less weird syntax + * and without the risk of variables and quoted strings misinterpreted + * as operators. + * This will require support from shells - we need to know quote status + * of each parameter (see below). + * + * Word splitting and pathname expansion should NOT be performed: + * # a="a b"; [[ $a = "a b" ]] && echo YES + * YES + * # [[ /bin/m* ]] && echo YES + * YES + * + * =~ should do regexp match + * = and == should do pattern match against right side: + * # [[ *a* == bab ]] && echo YES + * # [[ bab == *a* ]] && echo YES + * YES + * != does the negated == (i.e., also with pattern matching). + * Pattern matching is quotation-sensitive: + * # [[ bab == "b"a* ]] && echo YES + * YES + * # [[ bab == b"a*" ]] && echo YES + * + * Conditional operators such as -f must be unquoted literals to be recognized: + * # [[ -e /bin ]] && echo YES + * YES + * # [[ '-e' /bin ]] && echo YES + * bash: conditional binary operator expected... + * # A='-e'; [[ $A /bin ]] && echo YES + * bash: conditional binary operator expected... + * + * || and && should work as -o and -a work in [ ] + * -a and -o aren't recognized (&& and || are to be used instead) + * ( and ) do not need to be quoted unlike in [ ]: + * # [[ ( abc ) && '' ]] && echo YES + * # [[ ( abc ) || '' ]] && echo YES + * YES + * # [[ ( abc ) -o '' ]] && echo YES + * bash: syntax error in conditional expression... + * + * Apart from the above, [[ expr ]] should work as [ expr ] + */ + +#define TEST_DEBUG 0 + +#if ENABLE_TEST2 \ + || (ENABLE_ASH_BASH_COMPAT && ENABLE_ASH_TEST) \ + || (ENABLE_HUSH_BASH_COMPAT && ENABLE_HUSH_TEST) +# define BASH_TEST2 1 +#else +# define BASH_TEST2 0 +#endif + +enum token { + EOI, + + FILRD, /* file access */ + FILWR, + FILEX, + + FILEXIST, + + FILREG, /* file type */ + FILDIR, + FILCDEV, + FILBDEV, + FILFIFO, + FILSOCK, + + FILSYM, + FILGZ, + FILTT, + + FILSUID, /* file bit */ + FILSGID, + FILSTCK, + + FILNT, /* file ops */ + FILOT, + FILEQ, + + FILUID, + FILGID, + + STREZ, /* str ops */ + STRNZ, + STREQ, + STRNE, + STRLT, + STRGT, + +#if BASH_TEST2 + REGEX, +#endif + + INTEQ, /* int ops */ + INTNE, + INTGE, + INTGT, + INTLE, + INTLT, + + UNOT, + BAND, + BOR, + LPAREN, + RPAREN, + OPERAND +}; +#define is_int_op(a) (((unsigned char)((a) - INTEQ)) <= 5) +#define is_str_op(a) (((unsigned char)((a) - STREZ)) <= 5) +#define is_file_op(a) (((unsigned char)((a) - FILNT)) <= 2) +#define is_file_access(a) (((unsigned char)((a) - FILRD)) <= 2) +#define is_file_type(a) (((unsigned char)((a) - FILREG)) <= 5) +#define is_file_bit(a) (((unsigned char)((a) - FILSUID)) <= 2) + +#if TEST_DEBUG +int depth; +#define nest_msg(...) do { \ + depth++; \ + fprintf(stderr, "%*s", depth*2, ""); \ + fprintf(stderr, __VA_ARGS__); \ +} while (0) +#define unnest_msg(...) do { \ + fprintf(stderr, "%*s", depth*2, ""); \ + fprintf(stderr, __VA_ARGS__); \ + depth--; \ +} while (0) +#define dbg_msg(...) do { \ + fprintf(stderr, "%*s", depth*2, ""); \ + fprintf(stderr, __VA_ARGS__); \ +} while (0) +#define unnest_msg_and_return(expr, ...) do { \ + number_t __res = (expr); \ + fprintf(stderr, "%*s", depth*2, ""); \ + fprintf(stderr, __VA_ARGS__, res); \ + depth--; \ + return __res; \ +} while (0) +static const char *const TOKSTR[] ALIGN_PTR = { + "EOI", + "FILRD", + "FILWR", + "FILEX", + "FILEXIST", + "FILREG", + "FILDIR", + "FILCDEV", + "FILBDEV", + "FILFIFO", + "FILSOCK", + "FILSYM", + "FILGZ", + "FILTT", + "FILSUID", + "FILSGID", + "FILSTCK", + "FILNT", + "FILOT", + "FILEQ", + "FILUID", + "FILGID", + "STREZ", + "STRNZ", + "STREQ", + "STRNE", + "STRLT", + "STRGT", +#if BASH_TEST2 + "REGEX", +#endif + "INTEQ", + "INTNE", + "INTGE", + "INTGT", + "INTLE", + "INTLT", + "UNOT", + "BAND", + "BOR", + "LPAREN", + "RPAREN", + "OPERAND" +}; +#else +#define nest_msg(...) ((void)0) +#define unnest_msg(...) ((void)0) +#define dbg_msg(...) ((void)0) +#define unnest_msg_and_return(expr, ...) return expr +#endif + +enum { + UNOP, + BINOP, + BUNOP, + BBINOP, + PAREN +}; + +struct operator_t { + unsigned char op_num, op_type; +}; + +static const struct operator_t ops_table[] ALIGN2 = { + { /* "-r" */ FILRD , UNOP }, + { /* "-w" */ FILWR , UNOP }, + { /* "-x" */ FILEX , UNOP }, + { /* "-e" */ FILEXIST, UNOP }, + { /* "-f" */ FILREG , UNOP }, + { /* "-d" */ FILDIR , UNOP }, + { /* "-c" */ FILCDEV , UNOP }, + { /* "-b" */ FILBDEV , UNOP }, + { /* "-p" */ FILFIFO , UNOP }, + { /* "-u" */ FILSUID , UNOP }, + { /* "-g" */ FILSGID , UNOP }, + { /* "-k" */ FILSTCK , UNOP }, + { /* "-s" */ FILGZ , UNOP }, + { /* "-t" */ FILTT , UNOP }, + { /* "-z" */ STREZ , UNOP }, + { /* "-n" */ STRNZ , UNOP }, + { /* "-h" */ FILSYM , UNOP }, /* for backwards compat */ + + { /* "-O" */ FILUID , UNOP }, + { /* "-G" */ FILGID , UNOP }, + { /* "-L" */ FILSYM , UNOP }, + { /* "-S" */ FILSOCK , UNOP }, + { /* "=" */ STREQ , BINOP }, + /* "==" is bashism, http://pubs.opengroup.org/onlinepubs/9699919799/utilities/test.html + * lists only "=" as comparison operator. + */ + { /* "==" */ STREQ , BINOP }, + { /* "!=" */ STRNE , BINOP }, + { /* "<" */ STRLT , BINOP }, + { /* ">" */ STRGT , BINOP }, +#if BASH_TEST2 + { /* "=~" */ REGEX , BINOP }, +#endif + { /* "-eq"*/ INTEQ , BINOP }, + { /* "-ne"*/ INTNE , BINOP }, + { /* "-ge"*/ INTGE , BINOP }, + { /* "-gt"*/ INTGT , BINOP }, + { /* "-le"*/ INTLE , BINOP }, + { /* "-lt"*/ INTLT , BINOP }, + { /* "-nt"*/ FILNT , BINOP }, + { /* "-ot"*/ FILOT , BINOP }, + { /* "-ef"*/ FILEQ , BINOP }, + { /* "!" */ UNOT , BUNOP }, + { /* "-a" */ BAND , BBINOP }, + { /* "-o" */ BOR , BBINOP }, +#if BASH_TEST2 + { /* "&&" */ BAND , BBINOP }, + { /* "||" */ BOR , BBINOP }, +#endif + { /* "(" */ LPAREN , PAREN }, + { /* ")" */ RPAREN , PAREN }, +}; +/* Please keep these two tables in sync */ +static const char ops_texts[] ALIGN1 = + "-r" "\0" + "-w" "\0" + "-x" "\0" + "-e" "\0" + "-f" "\0" + "-d" "\0" + "-c" "\0" + "-b" "\0" + "-p" "\0" + "-u" "\0" + "-g" "\0" + "-k" "\0" + "-s" "\0" + "-t" "\0" + "-z" "\0" + "-n" "\0" + "-h" "\0" + + "-O" "\0" + "-G" "\0" + "-L" "\0" + "-S" "\0" + "=" "\0" + /* "==" is bashism */ + "==" "\0" + "!=" "\0" + "<" "\0" + ">" "\0" +#if BASH_TEST2 + "=~" "\0" +#endif + "-eq" "\0" + "-ne" "\0" + "-ge" "\0" + "-gt" "\0" + "-le" "\0" + "-lt" "\0" + "-nt" "\0" + "-ot" "\0" + "-ef" "\0" + "!" "\0" + "-a" "\0" + "-o" "\0" +#if BASH_TEST2 + "&&" "\0" + "||" "\0" +#endif + "(" "\0" + ")" "\0" +; + + +#if ENABLE_FEATURE_TEST_64 +typedef int64_t number_t; +#else +typedef int number_t; +#endif + + +/* We try to minimize both static and stack usage. */ +struct test_statics { + char **args; + /* set only by check_operator(), either to bogus struct + * or points to matching operator_t struct. Never NULL. */ + const struct operator_t *last_operator; + gid_t *group_array; + int ngroups; +#if BASH_TEST2 + bool bash_test2; +#endif + jmp_buf leaving; +}; + +/* See test_ptr_hack.c */ +extern struct test_statics *BB_GLOBAL_CONST test_ptr_to_statics; + +#define S (*test_ptr_to_statics) +#define args (S.args ) +#define last_operator (S.last_operator) +#define group_array (S.group_array ) +#define ngroups (S.ngroups ) +#define bash_test2 (S.bash_test2 ) +#define leaving (S.leaving ) + +#define INIT_S() do { \ + XZALLOC_CONST_PTR(&test_ptr_to_statics, sizeof(S)); \ +} while (0) +#define DEINIT_S() do { \ + free(group_array); \ + free(test_ptr_to_statics); \ +} while (0) + +static number_t primary(enum token n); + +static void syntax(const char *op, const char *msg) NORETURN; +static void syntax(const char *op, const char *msg) +{ + if (op && *op) { + bb_error_msg("%s: %s", op, msg); + } else { + bb_error_msg("%s: %s"+4, msg); + } + longjmp(leaving, 2); +} + +/* atoi with error detection */ +//XXX: FIXME: duplicate of existing libbb function? +static number_t getn(const char *s) +{ + char *p; +#if ENABLE_FEATURE_TEST_64 + long long r; +#else + long r; +#endif + + errno = 0; +#if ENABLE_FEATURE_TEST_64 + r = strtoll(s, &p, 10); +#else + r = strtol(s, &p, 10); +#endif + + if (errno != 0) + syntax(s, "out of range"); + + if (p == s || *(skip_whitespace(p)) != '\0') + syntax(s, "bad number"); + + return r; +} + +/* UNUSED +static int newerf(const char *f1, const char *f2) +{ + struct stat b1, b2; + + return (stat(f1, &b1) == 0 && + stat(f2, &b2) == 0 && b1.st_mtime > b2.st_mtime); +} + +static int olderf(const char *f1, const char *f2) +{ + struct stat b1, b2; + + return (stat(f1, &b1) == 0 && + stat(f2, &b2) == 0 && b1.st_mtime < b2.st_mtime); +} + +static int equalf(const char *f1, const char *f2) +{ + struct stat b1, b2; + + return (stat(f1, &b1) == 0 && + stat(f2, &b2) == 0 && + b1.st_dev == b2.st_dev && b1.st_ino == b2.st_ino); +} +*/ + + +static enum token check_operator(const char *s) +{ + static const struct operator_t no_op = { + .op_num = -1, + .op_type = -1 + }; + int n; + + last_operator = &no_op; + if (s == NULL) + return EOI; + n = index_in_strings(ops_texts, s); + if (n < 0) + return OPERAND; + +#if BASH_TEST2 + if (ops_table[n].op_num == REGEX && !bash_test2) { + /* =~ is only for [[ ]] */ + return OPERAND; + } + if (ops_table[n].op_num == BAND || ops_table[n].op_num == BOR) { + /* [ ] accepts -a and -o but not && and || */ + /* [[ ]] accepts && and || but not -a and -o */ + if (bash_test2 == (s[0] == '-')) + return OPERAND; + } +#endif + + last_operator = &ops_table[n]; + return ops_table[n].op_num; +} + + +static int binop(void) +{ + const char *opnd1, *opnd2; + const struct operator_t *op; + number_t val1, val2; + + opnd1 = *args; + check_operator(*++args); + op = last_operator; + + opnd2 = *++args; + if (opnd2 == NULL) + syntax(args[-1], "argument expected"); + + if (is_int_op(op->op_num)) { + val1 = getn(opnd1); + val2 = getn(opnd2); + if (op->op_num == INTEQ) + return val1 == val2; + if (op->op_num == INTNE) + return val1 != val2; + if (op->op_num == INTGE) + return val1 >= val2; + if (op->op_num == INTGT) + return val1 > val2; + if (op->op_num == INTLE) + return val1 <= val2; + /*if (op->op_num == INTLT)*/ + return val1 < val2; + } +#if BASH_TEST2 + if (bash_test2) { + if (op->op_num == STREQ) { + val1 = fnmatch(opnd2, opnd1, 0); + return val1 == 0; + } + if (op->op_num == STRNE) { + val1 = fnmatch(opnd2, opnd1, 0); + return val1 != 0; + } + if (op->op_num == REGEX) { + regex_t re_buffer; + memset(&re_buffer, 0, sizeof(re_buffer)); + if (regcomp(&re_buffer, opnd2, REG_EXTENDED)) { // REG_NEWLINE? + /* Bad regex */ + longjmp(leaving, 2); /* [[ a =~ * ]]; echo $? - prints 2 (silently, no error msg) */ + } + val1 = regexec(&re_buffer, opnd1, 0, NULL, 0); + regfree(&re_buffer); + return val1 == 0; + } + } +#endif + if (is_str_op(op->op_num)) { + val1 = strcmp(opnd1, opnd2); + if (op->op_num == STREQ) + return val1 == 0; + if (op->op_num == STRNE) + return val1 != 0; + if (op->op_num == STRLT) + return val1 < 0; + /*if (op->op_num == STRGT)*/ + return val1 > 0; + } + /* We are sure that these three are by now the only binops we didn't check + * yet, so we do not check if the class is correct: + */ +/* if (is_file_op(op->op_num)) */ + { + struct stat b1, b2; + + if (stat(opnd1, &b1) || stat(opnd2, &b2)) + return 0; /* false, since at least one stat failed */ + if (op->op_num == FILNT) + return b1.st_mtime > b2.st_mtime; + if (op->op_num == FILOT) + return b1.st_mtime < b2.st_mtime; + /*if (op->op_num == FILEQ)*/ + return b1.st_dev == b2.st_dev && b1.st_ino == b2.st_ino; + } + /*return 1; - NOTREACHED */ +} + +static void initialize_group_array(void) +{ + group_array = bb_getgroups(&ngroups, NULL); +} + +/* Return non-zero if GID is one that we have in our groups list. */ +//XXX: FIXME: duplicate of existing libbb function? +// see toplevel TODO file: +// possible code duplication ingroup() and is_a_group_member() +static int is_a_group_member(gid_t gid) +{ + int i; + + /* Short-circuit if possible, maybe saving a call to getgroups(). */ + if (gid == getgid() || gid == getegid()) + return 1; + + if (ngroups == 0) + initialize_group_array(); + + /* Search through the list looking for GID. */ + for (i = 0; i < ngroups; i++) + if (gid == group_array[i]) + return 1; + + return 0; +} + + +/* Do the same thing access(2) does, but use the effective uid and gid, + and don't make the mistake of telling root that any file is + executable. */ +static int test_eaccess(struct stat *st, int mode) +{ + unsigned int euid = geteuid(); + + if (euid == 0) { + /* Root can read or write any file. */ + if (mode != X_OK) + return 0; + + /* Root can execute any file that has any one of the execute + * bits set. */ + if (st->st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) + return 0; + } + + if (st->st_uid == euid) /* owner */ + mode <<= 6; + else if (is_a_group_member(st->st_gid)) + mode <<= 3; + + if (st->st_mode & mode) + return 0; + + return -1; +} + + +static int filstat(char *nm, enum token mode) +{ + struct stat s; + unsigned i = i; /* gcc 3.x thinks it can be used uninitialized */ + + if (mode == FILSYM) { +#ifdef S_IFLNK + if (lstat(nm, &s) == 0) { + i = S_IFLNK; + goto filetype; + } +#endif + return 0; + } + + if (stat(nm, &s) != 0) + return 0; + if (mode == FILEXIST) + return 1; + if (is_file_access(mode)) { + if (mode == FILRD) + i = R_OK; + if (mode == FILWR) + i = W_OK; + if (mode == FILEX) + i = X_OK; + return test_eaccess(&s, i) == 0; + } + if (is_file_type(mode)) { + if (mode == FILREG) + i = S_IFREG; + if (mode == FILDIR) + i = S_IFDIR; + if (mode == FILCDEV) + i = S_IFCHR; + if (mode == FILBDEV) + i = S_IFBLK; + if (mode == FILFIFO) { +#ifdef S_IFIFO + i = S_IFIFO; +#else + return 0; +#endif + } + if (mode == FILSOCK) { +#ifdef S_IFSOCK + i = S_IFSOCK; +#else + return 0; +#endif + } + filetype: + return ((s.st_mode & S_IFMT) == i); + } + if (is_file_bit(mode)) { + if (mode == FILSUID) + i = S_ISUID; + if (mode == FILSGID) + i = S_ISGID; + if (mode == FILSTCK) + i = S_ISVTX; + return ((s.st_mode & i) != 0); + } + if (mode == FILGZ) + return s.st_size > 0L; + if (mode == FILUID) + return s.st_uid == geteuid(); + if (mode == FILGID) + return s.st_gid == getegid(); + return 1; /* NOTREACHED */ +} + + +static number_t nexpr(enum token n) +{ + number_t res; + + nest_msg(">nexpr(%s)\n", TOKSTR[n]); + if (n == UNOT) { + n = check_operator(*++args); + if (n == EOI) { + /* special case: [ ! ], [ a -a ! ] are valid */ + /* IOW, "! ARG" may miss ARG */ + args--; + unnest_msg("aexpr(%s)\n", TOKSTR[n]); + res = nexpr(n); + dbg_msg("aexpr: nexpr:%lld, next args:%s(%p)\n", res, args[1], &args[1]); + if (check_operator(*++args) == BAND) { + dbg_msg("aexpr: arg is AND, next args:%s(%p)\n", args[1], &args[1]); + res = aexpr(check_operator(*++args)) && res; + unnest_msg("oexpr(%s)\n", TOKSTR[n]); + res = aexpr(n); + dbg_msg("oexpr: aexpr:%lld, next args:%s(%p)\n", res, args[1], &args[1]); + if (check_operator(*++args) == BOR) { + dbg_msg("oexpr: next arg is OR, next args:%s(%p)\n", args[1], &args[1]); + res = oexpr(check_operator(*++args)) || res; + unnest_msg("primary(%s)\n", TOKSTR[n]); + if (n == EOI) { + syntax(NULL, "argument expected"); + } + if (n == LPAREN) { + res = oexpr(check_operator(*++args)); + if (check_operator(*++args) != RPAREN) + syntax(NULL, "closing paren expected"); + unnest_msg("op_type == BINOP) + unnest_msg_and_return(binop(), "op_type == UNOP) { + /* unary expression */ + if (args[1] == NULL) +// syntax(args0_op->op_text, "argument expected"); + goto check_emptiness; + args++; + if (n == STREZ) + unnest_msg_and_return(args[0][0] == '\0', "op_type == BINOP) { + /* args[2] is known to be NULL, isn't it bound to fail? */ + unnest_msg_and_return(binop(), "op_type == BINOP) { + /* "test [!] arg1 arg2" */ + args = argv; + res = (binop() == 0); + ret_special: + /* If there was leading "!" op... */ + res ^= negate; + goto ret; + } + /* """If $1 is '(' and $3 is ')', perform the unary test of $2.""" + * Looks like this works without additional coding. + */ + goto check_negate; + } + /* argv[3] exists (at least 4 args), is it exactly 4 args? */ + if (!argv[4]) { + /* + * """ 4 arguments: + * If $1 is '!', negate the three-argument test of $2, $3, and $4. + * If $1 is '(' and $4 is ')', perform the two-argument test of $2 and $3. + * """ + * Example why code below is necessary: test '(' ! -e ')' + */ + if (LONE_CHAR(argv[0], '(') + && LONE_CHAR(argv[3], ')') + ) { + /* "test [!] ( x y )" */ + argv[3] = NULL; + argv++; + } + } + } + check_negate: + if (LONE_CHAR(argv[0], '!')) { + argv++; + negate ^= 1; + goto again; + } + } + + res = !oexpr(check_operator(*args)); + + if (*args != NULL && *++args != NULL) { + /* Examples: + * test 3 -lt 5 6 + * test -t 1 2 + */ + bb_error_msg("%s: unknown operand", *args); + res = 2; + } + ret: + DEINIT_S(); + return res; +} diff --git a/busybox-1_37_0/coreutils/test_ptr_hack.c b/busybox-1_37_0/coreutils/test_ptr_hack.c new file mode 100644 index 000000000..5ba9dcc68 --- /dev/null +++ b/busybox-1_37_0/coreutils/test_ptr_hack.c @@ -0,0 +1,23 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2008 by Denys Vlasenko + * + * Licensed under GPLv2, see file LICENSE in this source tree. + */ + +struct test_statics; + +#ifndef GCC_COMBINE + +/* We cheat here. It is declared as const ptr in libbb.h, + * but here we make it live in R/W memory */ +struct test_statics *test_ptr_to_statics; + +#else + +/* gcc -combine will see through and complain */ +/* Using alternative method which is more likely to break + * on weird architectures, compilers, linkers and so on */ +struct test_statics *const test_ptr_to_statics __attribute__ ((section (".data"))); + +#endif diff --git a/busybox-1_37_0/coreutils/timeout.c b/busybox-1_37_0/coreutils/timeout.c new file mode 100644 index 000000000..84299a0a5 --- /dev/null +++ b/busybox-1_37_0/coreutils/timeout.c @@ -0,0 +1,158 @@ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * COPYING NOTES + * + * timeout.c -- a timeout handler for shell commands + * + * Copyright (C) 2005-6, Roberto A. Foglietta + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. + */ +/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * REVISION NOTES: + * released 17-11-2005 by Roberto A. Foglietta + * talarm 04-12-2005 by Roberto A. Foglietta + * modified 05-12-2005 by Roberto A. Foglietta + * sizerdct 06-12-2005 by Roberto A. Foglietta + * splitszf 12-05-2006 by Roberto A. Foglietta + * rewrite 14-11-2008 vda + */ +//config:config TIMEOUT +//config: bool "timeout (6.5 kb)" +//config: default y +//config: help +//config: Runs a program and watches it. If it does not terminate in +//config: specified number of seconds, it is sent a signal. + +//applet:IF_TIMEOUT(APPLET(timeout, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_TIMEOUT) += timeout.o + +//usage:#define timeout_trivial_usage +//usage: "[-s SIG] [-k KILL_SECS] SECS PROG ARGS" +//usage:#define timeout_full_usage "\n\n" +//usage: "Run PROG. Send SIG to it if it is not gone in SECS seconds.\n" +//usage: "Default SIG: TERM." +//usage: "If it still exists in KILL_SECS seconds, send KILL.\n" + +#include "libbb.h" + +static NOINLINE int timeout_wait(duration_t timeout, pid_t pid) +{ + /* Just sleep(HUGE_NUM); kill(parent) may kill wrong process! */ + while (1) { +#if ENABLE_FLOAT_DURATION + if (timeout < 1) + sleep_for_duration(timeout); + else +#endif + sleep1(); + if (--timeout <= 0) + break; + if (kill(pid, 0)) { + /* process is gone */ + return EXIT_SUCCESS; + } + } + return EXIT_FAILURE; +} + +int timeout_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int timeout_main(int argc UNUSED_PARAM, char **argv) +{ + int signo; + int status; + int parent = 0; + duration_t timeout; + duration_t kill_timeout; + pid_t pid; +#if !BB_MMU + char *sv1, *sv2; +#endif + const char *opt_s = "TERM"; + char *opt_k = NULL; + + /* -p option is not documented, it is needed to support NOMMU. */ + + /* -t SECONDS; -p PARENT_PID */ + /* '+': stop at first non-option */ + getopt32(argv, "+s:k:" USE_FOR_NOMMU("p:+"), &opt_s, &opt_k, &parent); + /*argv += optind; - no, wait for bb_daemonize_or_rexec! */ + + signo = get_signum(opt_s); + if (signo < 0) + bb_error_msg_and_die("unknown signal '%s'", opt_s); + + kill_timeout = 0; + if (opt_k) + kill_timeout = parse_duration_str(opt_k); + + if (!argv[optind]) + bb_show_usage(); + timeout = parse_duration_str(argv[optind++]); + if (!argv[optind]) /* no PROG? */ + bb_show_usage(); + + /* We want to create a grandchild which will watch + * and kill the grandparent. Other methods: + * making parent watch child disrupts parent<->child link + * (example: "tcpsvd 0.0.0.0 1234 timeout service_prog" - + * it's better if service_prog is a child of tcpsvd!), + * making child watch parent results in programs having + * unexpected children. */ + + if (parent) /* we were re-execed, already grandchild */ + goto grandchild; + +#if !BB_MMU + sv1 = argv[optind]; + sv2 = argv[optind + 1]; +#endif + pid = xvfork(); + if (pid == 0) { + /* Child: spawn grandchild and exit */ + parent = getppid(); +#if !BB_MMU + argv[optind] = xasprintf("-p%u", parent); + argv[optind + 1] = NULL; +#endif + /* NB: exits with nonzero on error: */ + bb_daemonize_or_rexec(0, argv); + /* Here we are grandchild. Sleep, then kill grandparent */ + grandchild: + if (timeout_wait(timeout, parent) == EXIT_SUCCESS) + return EXIT_SUCCESS; + kill(parent, signo); + + if (kill_timeout > 0) { + if (timeout_wait(kill_timeout, parent) == EXIT_SUCCESS) + return EXIT_SUCCESS; + kill(parent, SIGKILL); + } + + return EXIT_SUCCESS; + } + + /* Parent */ + wait(&status); /* wait for child to die */ + /* Did intermediate [v]fork or exec fail? */ + if (!WIFEXITED(status) || WEXITSTATUS(status) != 0) + return EXIT_FAILURE; + /* Ok, exec a program as requested */ + argv += optind; +#if !BB_MMU + argv[0] = sv1; + argv[1] = sv2; +#endif + BB_EXECVP_or_die(argv); +} diff --git a/busybox-1_37_0/coreutils/touch.c b/busybox-1_37_0/coreutils/touch.c new file mode 100644 index 000000000..ced596c89 --- /dev/null +++ b/busybox-1_37_0/coreutils/touch.c @@ -0,0 +1,193 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini touch implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Previous version called open() and then utime(). While this will be + * be necessary to implement -r and -t, it currently only makes things bigger. + * Also, exiting on a failure was a bug. All args should be processed. + */ +//config:config TOUCH +//config: bool "touch (6.1 kb)" +//config: default y +//config: help +//config: touch is used to create or change the access and/or +//config: modification timestamp of specified files. +//config: +//config:config FEATURE_TOUCH_SUSV3 +//config: bool "Add support for SUSV3 features (-a -d -m -t -r)" +//config: default y +//config: depends on TOUCH +//config: help +//config: Enable touch to use a reference file or a given date/time argument. + +//applet:IF_TOUCH(APPLET_NOFORK(touch, touch, BB_DIR_BIN, BB_SUID_DROP, touch)) + +//kbuild:lib-$(CONFIG_TOUCH) += touch.o + +//usage:#define touch_trivial_usage +//usage: "[-ch" IF_FEATURE_TOUCH_SUSV3("am") "]" +//usage: IF_FEATURE_TOUCH_SUSV3(" [-d DATE] [-t DATE] [-r FILE]") +//usage: " FILE..." +//usage:#define touch_full_usage "\n\n" +//usage: "Update mtime of FILEs\n" +//usage: "\n -c Don't create files" +//usage: "\n -h Don't follow links" +//usage: IF_FEATURE_TOUCH_SUSV3( +//usage: "\n -a Change only atime" +//usage: "\n -m Change only mtime" +//usage: "\n -d DT Date/time to use" +//usage: "\n -t DT Date/time to use" +//usage: "\n -r FILE Use FILE's date/time" +//usage: ) +//usage: +//usage:#define touch_example_usage +//usage: "$ ls -l /tmp/foo\n" +//usage: "/bin/ls: /tmp/foo: No such file or directory\n" +//usage: "$ touch /tmp/foo\n" +//usage: "$ ls -l /tmp/foo\n" +//usage: "-rw-rw-r-- 1 andersen andersen 0 Apr 15 01:11 /tmp/foo\n" + +/* coreutils implements: + * -a change only the access time + * -c, --no-create + * do not create any files + * -d, --date=STRING + * parse STRING and use it instead of current time + * -f (ignored, BSD compat) + * -m change only the modification time + * -h, --no-dereference + * -r, --reference=FILE + * use this file's times instead of current time + * -t STAMP + * use [[CC]YY]MMDDhhmm[.ss] instead of current time + * --time=WORD + * change the specified time: WORD is access, atime, or use + */ + +#include "libbb.h" + +int touch_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int touch_main(int argc UNUSED_PARAM, char **argv) +{ + int fd; + int opts; + exitcode_t status = EXIT_SUCCESS; +#if ENABLE_FEATURE_TOUCH_SUSV3 + char *reference_file; + char *date_str; + /* timebuf[0] is atime, timebuf[1] is mtime */ + struct timespec timebuf[2]; +#else +# define reference_file NULL +# define date_str NULL +# define timebuf ((struct timespec*)NULL) +#endif + + enum { + OPT_c = (1 << 0), + OPT_h = (1 << 1), + OPT_r = (1 << 2) * ENABLE_FEATURE_TOUCH_SUSV3, + OPT_d = (1 << 3) * ENABLE_FEATURE_TOUCH_SUSV3, + OPT_t = (1 << 4) * ENABLE_FEATURE_TOUCH_SUSV3, + OPT_a = (1 << 5) * ENABLE_FEATURE_TOUCH_SUSV3, + OPT_m = (1 << 6) * ENABLE_FEATURE_TOUCH_SUSV3, + }; +#if ENABLE_LONG_OPTS + static const char touch_longopts[] ALIGN1 = + /* name, has_arg, val */ + "no-create\0" No_argument "c" + "no-dereference\0" No_argument "h" + IF_FEATURE_TOUCH_SUSV3("reference\0" Required_argument "r") + IF_FEATURE_TOUCH_SUSV3("date\0" Required_argument "d") + ; +#endif + /* -d and -t both set time. In coreutils, + * accepted data format differs a bit between -d and -t. + * We accept the same formats for both + */ + opts = getopt32long(argv, "^" + "ch" + IF_FEATURE_TOUCH_SUSV3("r:d:t:am") + /*ignored:*/ "f" IF_NOT_FEATURE_TOUCH_SUSV3("am") + "\0" /* opt_complementary: */ + /* at least one arg: */ "-1" + /* coreutils forbids -r and -t at once: */ IF_FEATURE_TOUCH_SUSV3(":r--t:t--r") + /* but allows these combinations: "r--d:d--r:t--d:d--t" */ + , touch_longopts +#if ENABLE_FEATURE_TOUCH_SUSV3 + , &reference_file + , &date_str + , &date_str +#endif + ); + +#if ENABLE_FEATURE_TOUCH_SUSV3 + timebuf[0].tv_nsec = timebuf[1].tv_nsec = UTIME_NOW; + if (opts & OPT_r) { + struct stat stbuf; + xstat(reference_file, &stbuf); + timebuf[0].tv_sec = stbuf.st_atime; + timebuf[1].tv_sec = stbuf.st_mtime; + timebuf[0].tv_nsec = stbuf.st_atim.tv_nsec; + timebuf[1].tv_nsec = stbuf.st_mtim.tv_nsec; + } + if (opts & (OPT_d|OPT_t)) { + struct tm tm_time; + time_t t; + int check_dst; + + //memset(&tm_time, 0, sizeof(tm_time)); + /* Better than memset: makes "HH:MM" dates meaningful */ + time(&t); + localtime_r(&t, &tm_time); + check_dst = parse_datestr(date_str, &tm_time); + + /* Correct any day of week and day of year etc. fields */ + if (check_dst) + tm_time.tm_isdst = -1; /* recheck dst unless date is UTC */ + t = validate_tm_time(date_str, &tm_time); + + timebuf[1].tv_sec = timebuf[0].tv_sec = t; + timebuf[1].tv_nsec = timebuf[0].tv_nsec = 0; + } + /* If both -a and -m specified, both times should be set. + * IOW: set OMIT only if one, not both, of them is given! + */ + if ((opts & (OPT_a|OPT_m)) == OPT_a) + timebuf[1].tv_nsec = UTIME_OMIT; + if ((opts & (OPT_a|OPT_m)) == OPT_m) + timebuf[0].tv_nsec = UTIME_OMIT; +#endif + + argv += optind; + do { + int result = utimensat(AT_FDCWD, *argv, timebuf, + (opts & OPT_h) ? AT_SYMLINK_NOFOLLOW : 0); + if (result != 0) { + if (errno == ENOENT) { /* no such file? */ + if (opts & OPT_c) { + /* Creation is disabled, so ignore */ + continue; + } + /* Try to create the file */ + fd = open(*argv, O_RDWR | O_CREAT, 0666); + if (fd >= 0) { + if (opts & (OPT_r|OPT_d|OPT_t)) + futimens(fd, timebuf); + xclose(fd); + continue; + } + } + status = EXIT_FAILURE; + bb_simple_perror_msg(*argv); + } + } while (*++argv); + + return status; +} diff --git a/busybox-1_37_0/coreutils/tr.c b/busybox-1_37_0/coreutils/tr.c new file mode 100644 index 000000000..8d779d8ea --- /dev/null +++ b/busybox-1_37_0/coreutils/tr.c @@ -0,0 +1,360 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini tr implementation for busybox + * + * Copyright (c) 1987,1997, Prentice Hall All rights reserved. + * + * The name of Prentice Hall may not be used to endorse or promote + * products derived from this software without specific prior + * written permission. + * + * Copyright (c) Michiel Huisjes + * + * This version of tr is adapted from Minix tr and was modified + * by Erik Andersen to be used in busybox. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* http://www.opengroup.org/onlinepubs/009695399/utilities/tr.html + * TODO: graph, print + */ +//config:config TR +//config: bool "tr (5.3 kb)" +//config: default y +//config: help +//config: tr is used to squeeze, and/or delete characters from standard +//config: input, writing to standard output. +//config: +//config:config FEATURE_TR_CLASSES +//config: bool "Enable character classes (such as [:upper:])" +//config: default y +//config: depends on TR +//config: help +//config: Enable character classes, enabling commands such as: +//config: tr [:upper:] [:lower:] to convert input into lowercase. +//config: +//config:config FEATURE_TR_EQUIV +//config: bool "Enable equivalence classes" +//config: default y +//config: depends on TR +//config: help +//config: Enable equivalence classes, which essentially add the enclosed +//config: character to the current set. For instance, tr [=a=] xyz would +//config: replace all instances of 'a' with 'xyz'. This option is mainly +//config: useful for cases when no other way of expressing a character +//config: is possible. + +//applet:IF_TR(APPLET(tr, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_TR) += tr.o + +//usage:#define tr_trivial_usage +//usage: "[-cds] STRING1 [STRING2]" +//usage:#define tr_full_usage "\n\n" +//usage: "Translate, squeeze, or delete characters from stdin, writing to stdout\n" +//usage: "\n -c Take complement of STRING1" +//usage: "\n -d Delete input characters coded STRING1" +//usage: "\n -s Squeeze multiple output characters of STRING2 into one character" +//usage: +//usage:#define tr_example_usage +//usage: "$ echo \"gdkkn vnqkc\" | tr [a-y] [b-z]\n" +//usage: "hello world\n" + +#include "libbb.h" + +enum { + ASCII = 256, + /* string buffer needs to be at least as big as the whole "alphabet". + * BUFSIZ == ASCII is ok, but we will realloc in expand + * even for smallest patterns, let's avoid that by using *2: + */ + TR_BUFSIZ = (BUFSIZ > ASCII*2) ? BUFSIZ : ASCII*2, +}; + +static void map(char *pvector, + char *string1, unsigned string1_len, + char *string2, unsigned string2_len) +{ + char last = '0'; + unsigned i, j; + + for (j = 0, i = 0; i < string1_len; i++) { + if (string2_len <= j) + pvector[(unsigned char)(string1[i])] = last; + else + pvector[(unsigned char)(string1[i])] = last = string2[j++]; + } +} + +/* supported constructs: + * Ranges, e.g., 0-9 ==> 0123456789 + * Escapes, e.g., \a ==> Control-G + * Character classes, e.g. [:upper:] ==> A...Z + * Equiv classess, e.g. [=A=] ==> A (hmmmmmmm?) + * not supported: + * [x*N] - repeat char x N times + * [x*] - repeat char x until it fills STRING2: + * # echo qwe123 | /usr/bin/tr 123456789 '[d]' + * qwe[d] + * # echo qwe123 | /usr/bin/tr 123456789 '[d*]' + * qweddd + */ +static unsigned expand(char *arg, char **buffer_p) +{ + char *buffer = *buffer_p; + unsigned pos = 0; + unsigned size = TR_BUFSIZ; + unsigned i; /* can't be unsigned char: must be able to hold 256 */ + unsigned char ac; + + while (*arg) { + if (pos + ASCII > size) { + size += ASCII; + *buffer_p = buffer = xrealloc(buffer, size); + } + if (*arg == '\\') { + const char *z; + arg++; + z = arg; + ac = bb_process_escape_sequence(&z); + arg = (char *)z; + arg--; + *arg = ac; + /* + * fall through, there may be a range. + * If not, current char will be treated anyway. + */ + } + if (arg[1] == '-') { /* "0-9..." */ + ac = arg[2]; + if (ac == '\0') { /* "0-": copy verbatim */ + buffer[pos++] = *arg++; /* copy '0' */ + continue; /* next iter will copy '-' and stop */ + } + i = (unsigned char) *arg; + arg += 3; /* skip 0-9 or 0-\ */ + if (ac == '\\') { + const char *z; + z = arg; + ac = bb_process_escape_sequence(&z); + arg = (char *)z; + } + while (i <= ac) /* ok: i is unsigned _int_ */ + buffer[pos++] = i++; + continue; + } + if ((ENABLE_FEATURE_TR_CLASSES || ENABLE_FEATURE_TR_EQUIV) + && *arg == '[' + ) { + arg++; + i = (unsigned char) *arg++; + /* "[xyz...". i=x, arg points to y */ + if (ENABLE_FEATURE_TR_CLASSES && i == ':') { /* [:class:] */ +#define CLO ":]\0" + static const char classes[] ALIGN1 = + "alpha"CLO "alnum"CLO "digit"CLO + "lower"CLO "upper"CLO "space"CLO + "blank"CLO "punct"CLO "cntrl"CLO + "xdigit"CLO; + enum { + CLASS_invalid = 0, /* we increment the retval */ + CLASS_alpha = 1, + CLASS_alnum = 2, + CLASS_digit = 3, + CLASS_lower = 4, + CLASS_upper = 5, + CLASS_space = 6, + CLASS_blank = 7, + CLASS_punct = 8, + CLASS_cntrl = 9, + CLASS_xdigit = 10, + //CLASS_graph = 11, + //CLASS_print = 12, + }; + smalluint j; + char *tmp; + + /* xdigit needs 8, not 7 */ + i = 7 + (arg[0] == 'x'); + tmp = xstrndup(arg, i); + j = index_in_strings(classes, tmp) + 1; + free(tmp); + + if (j == CLASS_invalid) + goto skip_bracket; + + arg += i; + if (j == CLASS_alnum || j == CLASS_digit || j == CLASS_xdigit) { + for (i = '0'; i <= '9'; i++) + buffer[pos++] = i; + } + if (j == CLASS_alpha || j == CLASS_alnum || j == CLASS_upper) { + for (i = 'A'; i <= 'Z'; i++) + buffer[pos++] = i; + } + if (j == CLASS_alpha || j == CLASS_alnum || j == CLASS_lower) { + for (i = 'a'; i <= 'z'; i++) + buffer[pos++] = i; + } + if (j == CLASS_space || j == CLASS_blank) { + buffer[pos++] = '\t'; + if (j == CLASS_space) { + buffer[pos++] = '\n'; + buffer[pos++] = '\v'; + buffer[pos++] = '\f'; + buffer[pos++] = '\r'; + } + buffer[pos++] = ' '; + } + if (j == CLASS_punct || j == CLASS_cntrl) { + for (i = '\0'; i < ASCII; i++) { + if ((j == CLASS_punct && isprint_asciionly(i) && !isalnum(i) && !isspace(i)) + || (j == CLASS_cntrl && iscntrl(i)) + ) { + buffer[pos++] = i; + } + } + } + if (j == CLASS_xdigit) { + for (i = 'A'; i <= 'F'; i++) { + buffer[pos + 6] = i | 0x20; + buffer[pos++] = i; + } + pos += 6; + } + continue; + } + /* "[xyz...", i=x, arg points to y */ + if (ENABLE_FEATURE_TR_EQUIV && i == '=') { /* [=CHAR=] */ + buffer[pos++] = *arg; /* copy CHAR */ + if (!arg[0] || arg[1] != '=' || arg[2] != ']') + bb_show_usage(); + arg += 3; /* skip CHAR=] */ + continue; + } + /* The rest of "[xyz..." cases is treated as normal + * string, "[" has no special meaning here: + * tr "[a-z]" "[A-Z]" can be written as tr "a-z" "A-Z", + * also try tr "[a-z]" "_A-Z+" and you'll see that + * [] is not special here. + */ + skip_bracket: + arg -= 2; /* points to "[" in "[xyz..." */ + } + buffer[pos++] = *arg++; + } + return pos; +} + +/* NB: buffer is guaranteed to be at least TR_BUFSIZE + * (which is >= ASCII) big. + */ +static int complement(char *buffer, int buffer_len) +{ + int len; + char conv[ASCII]; + unsigned char ch; + + len = 0; + ch = '\0'; + while (1) { + if (memchr(buffer, ch, buffer_len) == NULL) + conv[len++] = ch; + if (++ch == '\0') + break; + } + memcpy(buffer, conv, len); + return len; +} + +int tr_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int tr_main(int argc UNUSED_PARAM, char **argv) +{ + int i; + smalluint opts; + ssize_t read_chars; + size_t in_index, out_index; + unsigned last = UCHAR_MAX + 1; /* not equal to any char */ + unsigned char coded, c; + char *str1 = xmalloc(TR_BUFSIZ); + char *str2 = xmalloc(TR_BUFSIZ); + int str2_length; + int str1_length; + char *vector = xzalloc(ASCII * 3); + char *invec = vector + ASCII; + char *outvec = vector + ASCII * 2; + +#define TR_OPT_complement (3 << 0) +#define TR_OPT_delete (1 << 2) +#define TR_OPT_squeeze_reps (1 << 3) + + for (i = 0; i < ASCII; i++) { + vector[i] = i; + /*invec[i] = outvec[i] = FALSE; - done by xzalloc */ + } + + /* -C/-c difference is that -C complements "characters", + * and -c complements "values" (binary bytes I guess). + * In POSIX locale, these are the same. + */ + + /* '+': stop at first non-option */ + opts = getopt32(argv, "^+" "Ccds" "\0" "-1:?2"); + argv += optind; + + str1_length = expand(*argv++, &str1); + str2_length = 0; + if (opts & TR_OPT_complement) + str1_length = complement(str1, str1_length); + if (*argv) { + if (argv[0][0] == '\0') + bb_simple_error_msg_and_die("STRING2 cannot be empty"); + str2_length = expand(*argv, &str2); + map(vector, str1, str1_length, + str2, str2_length); + } + for (i = 0; i < str1_length; i++) + invec[(unsigned char)(str1[i])] = TRUE; + for (i = 0; i < str2_length; i++) + outvec[(unsigned char)(str2[i])] = TRUE; + + goto start_from; + + /* In this loop, str1 space is reused as input buffer, + * str2 - as output one. */ + for (;;) { + /* If we're out of input, flush output and read more input. */ + if ((ssize_t)in_index == read_chars) { + if (out_index) { + xwrite(STDOUT_FILENO, str2, out_index); + start_from: + out_index = 0; + } + read_chars = safe_read(STDIN_FILENO, str1, TR_BUFSIZ); + if (read_chars <= 0) { + if (read_chars < 0) + bb_simple_perror_msg_and_die(bb_msg_read_error); + break; + } + in_index = 0; + } + c = str1[in_index++]; + if ((opts & TR_OPT_delete) && invec[c]) + continue; + coded = vector[c]; + if ((opts & TR_OPT_squeeze_reps) && last == coded + && (invec[c] || outvec[coded]) + ) { + continue; + } + str2[out_index++] = last = coded; + } + + if (ENABLE_FEATURE_CLEAN_UP) { + free(vector); + free(str2); + free(str1); + } + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/true.c b/busybox-1_37_0/coreutils/true.c new file mode 100644 index 000000000..02e533a0a --- /dev/null +++ b/busybox-1_37_0/coreutils/true.c @@ -0,0 +1,38 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini true implementation for busybox + * + * Copyright (C) 1999-2004 by Erik Andersen + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config TRUE +//config: bool "true (311 bytes)" +//config: default y +//config: help +//config: true returns an exit code of TRUE (0). + +//applet:IF_TRUE(APPLET_NOFORK(true, true, BB_DIR_BIN, BB_SUID_DROP, true)) + +//kbuild:lib-$(CONFIG_TRUE) += true.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/true.html */ + +/* "true --help" is special-cased to ignore --help */ +//usage:#define true_trivial_usage NOUSAGE_STR +//usage:#define true_full_usage "" +//usage:#define true_example_usage +//usage: "$ true\n" +//usage: "$ echo $?\n" +//usage: "0\n" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int true_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int true_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/truncate.c b/busybox-1_37_0/coreutils/truncate.c new file mode 100644 index 000000000..8826e6b4c --- /dev/null +++ b/busybox-1_37_0/coreutils/truncate.c @@ -0,0 +1,86 @@ +/* + * Mini truncate implementation for busybox + * + * Copyright (C) 2015 by Ari Sundholm + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config TRUNCATE +//config: bool "truncate (4.4 kb)" +//config: default y +//config: help +//config: truncate truncates files to a given size. If a file does +//config: not exist, it is created unless told otherwise. + +//applet:IF_TRUNCATE(APPLET_NOFORK(truncate, truncate, BB_DIR_USR_BIN, BB_SUID_DROP, truncate)) + +//kbuild:lib-$(CONFIG_TRUNCATE) += truncate.o + +//usage:#define truncate_trivial_usage +//usage: "[-c] -s SIZE FILE..." +//usage:#define truncate_full_usage "\n\n" +//usage: "Truncate FILEs to SIZE\n" +//usage: "\n -c Do not create files" +//usage: "\n -s SIZE" +//usage: +//usage:#define truncate_example_usage +//usage: "$ truncate -s 1G foo" + +#include "libbb.h" + +#if ENABLE_LFS +# define XATOU_SFX xatoull_sfx +#else +# define XATOU_SFX xatoul_sfx +#endif + +/* This is a NOFORK applet. Be very careful! */ + +int truncate_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int truncate_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned opts; + int flags = O_WRONLY | O_NONBLOCK; + int ret = EXIT_SUCCESS; + char *size_str; + off_t size; + + enum { + OPT_NOCREATE = (1 << 0), + OPT_SIZE = (1 << 1), + }; + + opts = getopt32(argv, "^" "cs:" "\0" "s:-1", &size_str); + + if (!(opts & OPT_NOCREATE)) + flags |= O_CREAT; + + // TODO: coreutils 8.17 also support "m" (lowercase) suffix + // with truncate, but not with dd! + // We share kMG_suffixes[], so we can't make both tools + // compatible at once... + size = XATOU_SFX(size_str, kMG_suffixes); + + argv += optind; + while (*argv) { + int fd = open(*argv, flags, 0666); + if (fd < 0) { + if (errno != ENOENT || !(opts & OPT_NOCREATE)) { + bb_perror_msg("%s: open", *argv); + ret = EXIT_FAILURE; + } + /* else: ENOENT && OPT_NOCREATE: + * do not report error, exitcode is also 0. + */ + } else { + if (ftruncate(fd, size) == -1) { + bb_perror_msg("%s: truncate", *argv); + ret = EXIT_FAILURE; + } + xclose(fd); + } + ++argv; + } + + return ret; +} diff --git a/busybox-1_37_0/coreutils/tsort.c b/busybox-1_37_0/coreutils/tsort.c new file mode 100644 index 000000000..e1ee6bcd7 --- /dev/null +++ b/busybox-1_37_0/coreutils/tsort.c @@ -0,0 +1,202 @@ +/* vi: set sw=4 ts=4: */ +/* + * tsort implementation for busybox + * + * public domain -- David Leonard, 2022 + */ +//config:config TSORT +//config: bool "tsort (2.6 kb)" +//config: default y +//config: help +//config: tsort performs a topological sort. + +//applet:IF_TSORT(APPLET(tsort, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_TSORT) += tsort.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/tsort.html */ + +//usage:#define tsort_trivial_usage +//usage: "[FILE]" +//usage:#define tsort_full_usage "\n\n" +//usage: "Topological sort" +//usage:#define tsort_example_usage +//usage: "$ echo -e \"a b\\nb c\" | tsort\n" +//usage: "a\n" +//usage: "b\n" +//usage: "c\n" + +#include "libbb.h" +#include "common_bufsiz.h" + +struct node { + unsigned in_count; + unsigned out_count; + struct node **out; + char name[1]; +}; + +struct globals { + struct node **nodes; + unsigned nodes_len; +}; +#define G (*(struct globals*)bb_common_bufsiz1) +#define INIT_G() do { \ + setup_common_bufsiz(); \ + BUILD_BUG_ON(sizeof(G) > COMMON_BUFSIZE); \ + G.nodes = NULL; \ + G.nodes_len = 0; \ +} while (0) + +static struct node * +get_node(const char *name) +{ + struct node *n; + unsigned a = 0; + unsigned b = G.nodes_len; + + /* Binary search for name */ + while (a != b) { + unsigned m = (a + b) / 2; + int cmp = strcmp(name, G.nodes[m]->name); + if (cmp == 0) + return G.nodes[m]; /* found */ + if (cmp < 0) { + b = m; + } else { + a = m + 1; + } + } + + /* Allocate new node */ + n = xzalloc(sizeof(*n) + strlen(name)); + //n->in_count = 0; + //n->out_count = 0; + //n->out = NULL; + strcpy(n->name, name); + + /* Insert to maintain sort */ + G.nodes = xrealloc(G.nodes, (G.nodes_len + 1) * sizeof(*G.nodes)); + memmove(&G.nodes[a + 1], &G.nodes[a], + (G.nodes_len - a) * sizeof(*G.nodes)); + G.nodes[a] = n; + G.nodes_len++; + return n; +} + +static void +add_edge(struct node *a, struct node *b) +{ + a->out = xrealloc_vector(a->out, 6, a->out_count); + a->out[a->out_count++] = b; + b->in_count++; +} + +int tsort_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int tsort_main(int argc UNUSED_PARAM, char **argv) +{ + char *line; + size_t linesz; + ssize_t len; + struct node *a; + int cycles; + unsigned i; +#if ENABLE_FEATURE_CLEAN_UP + unsigned max_len; +#endif + + INIT_G(); + + if (argv[1]) { + if (argv[2]) + bb_show_usage(); + if (NOT_LONE_DASH(argv[1])) { + close(STDIN_FILENO); /* == 0 */ + xopen(argv[1], O_RDONLY); /* fd will be 0 */ + } + } + + /* Read in words separated by s */ + a = NULL; + line = NULL; + linesz = 0; + while ((len = getline(&line, &linesz, stdin)) != -1) { + char *s = line; + while (*(s = skip_whitespace(s)) != '\0') { + struct node *b; + char *word; + + word = s; + s = skip_non_whitespace(s); + if (*s) + *s++ = '\0'; + + /* Create nodes and edges for each word pair */ + b = get_node(word); + if (!a) { + a = b; + } else { + if (a != b) + add_edge(a, b); + a = NULL; + } + } + } +// Most other tools do not check for input read error (treat them as EOF) +// die_if_ferror(in, input_filename); + if (a) + bb_simple_error_msg_and_die("odd input"); + free(line); + + /* + * Kahn's algorithm: + * - find a node that has no incoming edges, print and remove it + * - repeat until the graph is empty + * - if any nodes are left, they form cycles. + */ + cycles = 0; +#if ENABLE_FEATURE_CLEAN_UP + max_len = G.nodes_len; +#endif + while (G.nodes_len) { + struct node *n; + + /* Search for first node with no incoming edges */ + for (i = 0; i < G.nodes_len; i++) { + if (!G.nodes[i]->in_count) + break; + } + if (i == G.nodes_len) { + /* Must be a cycle; arbitraily break it at node 0 */ + cycles++; + i = 0; +#ifndef TINY + bb_error_msg("cycle at %s", G.nodes[i]->name); +#endif + } + + /* Remove the node (need no longer maintain sort) */ + n = G.nodes[i]; + G.nodes[i] = G.nodes[--G.nodes_len]; +#if ENABLE_FEATURE_CLEAN_UP + /* Keep reference to removed node so it can be freed */ + G.nodes[G.nodes_len] = n; +#endif + + /* And remove its outgoing edges */ + for (i = 0; i < n->out_count; i++) + n->out[i]->in_count--; + + puts(n->name); + } +#if ENABLE_FEATURE_CLEAN_UP + for (i = 0; i < max_len; i++) { + free(G.nodes[i]->out); + free(G.nodes[i]); + } + free(G.nodes); +#endif + + fflush_stdout_and_exit(cycles ? 1 : 0); +} diff --git a/busybox-1_37_0/coreutils/tty.c b/busybox-1_37_0/coreutils/tty.c new file mode 100644 index 000000000..8f9a82b0e --- /dev/null +++ b/busybox-1_37_0/coreutils/tty.c @@ -0,0 +1,66 @@ +/* vi: set sw=4 ts=4: */ +/* + * tty implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config TTY +//config: bool "tty (3.9 kb)" +//config: default y +//config: help +//config: tty is used to print the name of the current terminal to +//config: standard output. + +//applet:IF_TTY(APPLET_NOFORK(tty, tty, BB_DIR_USR_BIN, BB_SUID_DROP, tty)) + +//kbuild:lib-$(CONFIG_TTY) += tty.o + +/* BB_AUDIT SUSv4 compliant */ +/* http://www.opengroup.org/onlinepubs/9699919799/utilities/tty.html */ + +//usage:#define tty_trivial_usage +//usage: "" IF_INCLUDE_SUSv2("[-s]") +//usage:#define tty_full_usage "\n\n" +//usage: "Print file name of stdin's terminal" +//usage: IF_INCLUDE_SUSv2( "\n" +//usage: "\n -s Print nothing, only return exit status" +//usage: ) +//usage: +//usage:#define tty_example_usage +//usage: "$ tty\n" +//usage: "/dev/tty2\n" + +#include "libbb.h" + +int tty_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int tty_main(int argc UNUSED_PARAM, char **argv) +{ + const char *s; + IF_INCLUDE_SUSv2(int silent;) /* Note: No longer relevant in SUSv3. */ + int retval; + + xfunc_error_retval = 2; /* SUSv3 requires > 1 for error. */ + + IF_INCLUDE_SUSv2(silent = getopt32(argv, "s");) + IF_INCLUDE_SUSv2(argv += optind;) + IF_NOT_INCLUDE_SUSv2(argv += 1;) + + /* gnu tty outputs a warning that it is ignoring all args. */ + bb_warn_ignoring_args(argv[0]); + + retval = EXIT_SUCCESS; + + s = xmalloc_ttyname(STDIN_FILENO); + if (s == NULL) { + /* According to SUSv3, ttyname can fail with EBADF or ENOTTY. + * We know the file descriptor is good, so failure means not a tty. */ + s = "not a tty"; + retval = EXIT_FAILURE; + } + IF_INCLUDE_SUSv2(if (!silent) puts(s);) + IF_NOT_INCLUDE_SUSv2(puts(s);) + + fflush_stdout_and_exit(retval); +} diff --git a/busybox-1_37_0/coreutils/uname.c b/busybox-1_37_0/coreutils/uname.c new file mode 100644 index 000000000..e1e7a7660 --- /dev/null +++ b/busybox-1_37_0/coreutils/uname.c @@ -0,0 +1,213 @@ +/* vi: set sw=4 ts=4: */ +/* + * uname -- print system information + * Copyright (C) 1989-1999 Free Software Foundation, Inc. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Option Example + * -s, --sysname SunOS + * -n, --nodename rocky8 + * -r, --release 4.0 + * -v, --version + * -m, --machine sun + * -a, --all SunOS rocky8 4.0 sun + * + * The default behavior is equivalent to '-s'. + * + * David MacKenzie + * + * GNU coreutils 6.10: + * Option: struct Example(s): + * utsname + * field: + * -s, --kernel-name sysname Linux + * -n, --nodename nodename localhost.localdomain + * -r, --kernel-release release 2.6.29 + * -v, --kernel-version version #1 SMP Sun Jan 11 20:52:37 EST 2009 + * -m, --machine machine x86_64 i686 + * -p, --processor (none) x86_64 i686 + * -i, --hardware-platform (none) x86_64 i386 + * NB: vanilla coreutils reports "unknown" -p and -i, + * x86_64 and i686/i386 shown above are Fedora's inventions. + * -o, --operating-system (none) GNU/Linux + * -a, --all: all of the above, in the order shown. + * If -p or -i is not known, don't show them + */ +/* Busyboxed by Erik Andersen + * + * Before 2003: Glenn McGrath and Manuel Novoa III + * Further size reductions. + * Mar 16, 2003: Manuel Novoa III (mjn3@codepoet.org) + * Now does proper error checking on i/o. Plus some further space savings. + * Jan 2009: + * Fix handling of -a to not print "unknown", add -o and -i support. + */ +//config:config UNAME +//config: bool "uname (4.2 kb)" +//config: default y +//config: help +//config: uname is used to print system information. +//config: +//config:config UNAME_OSNAME +//config: string "Operating system name" +//config: default "GNU/Linux" +//config: depends on UNAME +//config: help +//config: Sets the operating system name reported by uname -o. The +//config: default is "GNU/Linux". +//config: +//can't use "ARCH" for this applet, all hell breaks loose in build system :) +//config:config BB_ARCH +//config: bool "arch (1.4 kb)" +//config: default y +//config: help +//config: Same as uname -m. + +// APPLET_NOFORK:name main location suid_type help +//applet:IF_UNAME(APPLET_NOFORK( uname, uname, BB_DIR_BIN, BB_SUID_DROP, uname)) +//applet:IF_BB_ARCH(APPLET_NOFORK(arch, uname, BB_DIR_BIN, BB_SUID_DROP, arch)) + +//kbuild:lib-$(CONFIG_UNAME) += uname.o +//kbuild:lib-$(CONFIG_BB_ARCH) += uname.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/uname.html */ + +//usage:#define uname_trivial_usage +//usage: "[-amnrspvio]" +//usage:#define uname_full_usage "\n\n" +//usage: "Print system information\n" +//usage: "\n -a Print all" +//usage: "\n -m Machine (hardware) type" +//usage: "\n -n Hostname" +//usage: "\n -r Kernel release" +//usage: "\n -s Kernel name (default)" +//usage: "\n -p Processor type" +//usage: "\n -v Kernel version" +//usage: "\n -i Hardware platform" +//usage: "\n -o OS name" +//usage: +//usage:#define uname_example_usage +//usage: "$ uname -a\n" +//usage: "Linux debian 2.4.23 #2 Tue Dec 23 17:09:10 MST 2003 i686 GNU/Linux\n" + +//usage:#define arch_trivial_usage +//usage: "" +//usage:#define arch_full_usage "\n\n" +//usage: "Print system architecture" + +#include "libbb.h" +/* After libbb.h, since it needs sys/types.h on some systems */ +#include + +typedef struct { + struct utsname name; + char processor[sizeof(((struct utsname*)NULL)->machine)]; + char platform[sizeof(((struct utsname*)NULL)->machine)]; + char os[sizeof(CONFIG_UNAME_OSNAME)]; +} uname_info_t; + +#if ENABLE_UNAME +#define options "snrvmpioa" +static const unsigned short utsname_offset[] = { + offsetof(uname_info_t, name.sysname), /* -s */ + offsetof(uname_info_t, name.nodename), /* -n */ + offsetof(uname_info_t, name.release), /* -r */ + offsetof(uname_info_t, name.version), /* -v */ + offsetof(uname_info_t, name.machine), /* -m */ + offsetof(uname_info_t, processor), /* -p */ + offsetof(uname_info_t, platform), /* -i */ + offsetof(uname_info_t, os), /* -o */ +}; +#endif + +int uname_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int uname_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + uname_info_t uname_info; + IF_UNAME(const char *unknown_str = "unknown";) +#if ENABLE_UNAME + unsigned toprint = (1 << 4); /* "arch" = "uname -m" */ + + if (!ENABLE_BB_ARCH || applet_name[0] == 'u') { +# if ENABLE_LONG_OPTS + static const char uname_longopts[] ALIGN1 = + /* name, has_arg, val */ + "all\0" No_argument "a" + "kernel-name\0" No_argument "s" + "nodename\0" No_argument "n" + "kernel-release\0" No_argument "r" + "release\0" No_argument "r" + "kernel-version\0" No_argument "v" + "machine\0" No_argument "m" + "processor\0" No_argument "p" + "hardware-platform\0" No_argument "i" + "operating-system\0" No_argument "o" + ; +# endif + toprint = getopt32long(argv, options, uname_longopts); + if (argv[optind]) { /* coreutils-6.9 compat */ + bb_show_usage(); + } + if (toprint & (1 << 8)) { /* -a => all opts on */ + toprint = (1 << 8) - 1; + unknown_str = ""; /* -a does not print unknown fields */ + } + if (toprint == 0) { /* no opts => -s (sysname) */ + toprint = 1; + } + } /* if "uname" */ +#endif + + uname(&uname_info.name); /* never fails */ + +#if defined(__sparc__) && defined(__linux__) + { + char *fake_sparc = getenv("FAKE_SPARC"); + if (fake_sparc && (fake_sparc[0] | 0x20) == 'y') { + strcpy(uname_info.name.machine, "sparc"); + } + } +#endif + if (ENABLE_BB_ARCH && (!ENABLE_UNAME || applet_name[0] == 'a')) { + puts(uname_info.name.machine); + } else { +#if ENABLE_UNAME + /* "uname" */ + const char *fmt; + const unsigned short *delta; + + strcpy(uname_info.processor, unknown_str); + strcpy(uname_info.platform, unknown_str); + strcpy(uname_info.os, CONFIG_UNAME_OSNAME); +# if ENABLE_FEDORA_COMPAT + /* Fedora does something like this */ + strcpy(uname_info.processor, uname_info.name.machine); + strcpy(uname_info.platform, uname_info.name.machine); + if (uname_info.platform[0] == 'i' + && uname_info.platform[1] + && uname_info.platform[2] == '8' + && uname_info.platform[3] == '6' + ) { + uname_info.platform[1] = '3'; + } +# endif + delta = utsname_offset; + fmt = " %s" + 1; + do { + if (toprint & 1) { + const char *p = (char *)(&uname_info) + *delta; + if (p[0]) { + printf(fmt, p); + fmt = " %s"; + } + } + ++delta; + } while (toprint >>= 1); + bb_putchar('\n'); +#endif + } + + fflush_stdout_and_exit_SUCCESS(); /* coreutils-6.9 compat */ +} diff --git a/busybox-1_37_0/coreutils/uniq.c b/busybox-1_37_0/coreutils/uniq.c new file mode 100644 index 000000000..2c112dadb --- /dev/null +++ b/busybox-1_37_0/coreutils/uniq.c @@ -0,0 +1,143 @@ +/* vi: set sw=4 ts=4: */ +/* + * uniq implementation for busybox + * + * Copyright (C) 2005 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config UNIQ +//config: bool "uniq (5.1 kb)" +//config: default y +//config: help +//config: uniq is used to remove duplicate lines from a sorted file. + +//applet:IF_UNIQ(APPLET(uniq, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_UNIQ) += uniq.o + +/* BB_AUDIT SUSv3 compliant */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/uniq.html */ + +//usage:#define uniq_trivial_usage +//usage: "[-cduiz] [-f,s,w N] [FILE [OUTFILE]]" +//usage:#define uniq_full_usage "\n\n" +//usage: "Discard duplicate lines\n" +//usage: "\n -c Prefix lines by the number of occurrences" +//usage: "\n -d Only print duplicate lines" +//usage: "\n -u Only print unique lines" +//usage: "\n -i Ignore case" +//usage: "\n -z NUL terminated output" +//usage: "\n -f N Skip first N fields" +//usage: "\n -s N Skip first N chars (after any skipped fields)" +//usage: "\n -w N Compare N characters in line" +//usage: +//usage:#define uniq_example_usage +//usage: "$ echo -e \"a\\na\\nb\\nc\\nc\\na\" | sort | uniq\n" +//usage: "a\n" +//usage: "b\n" +//usage: "c\n" + +#include "libbb.h" + +int uniq_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int uniq_main(int argc UNUSED_PARAM, char **argv) +{ + const char *input_filename; + unsigned skip_fields, skip_chars, max_chars; + unsigned opt; + char eol; + char *cur_line; + const char *cur_compare; + + enum { + OPT_c = 1 << 0, + OPT_d = 1 << 1, /* print only dups */ + OPT_u = 1 << 2, /* print only uniq */ + OPT_f = 1 << 3, + OPT_s = 1 << 4, + OPT_w = 1 << 5, + OPT_i = 1 << 6, + OPT_z = 1 << 7, + }; + + skip_fields = skip_chars = 0; + max_chars = INT_MAX; + + opt = getopt32(argv, "cduf:+s:+w:+iz", &skip_fields, &skip_chars, &max_chars); + argv += optind; + + input_filename = argv[0]; + if (input_filename) { + const char *output; + + if (input_filename[0] != '-' || input_filename[1]) { + close(STDIN_FILENO); /* == 0 */ + xopen(input_filename, O_RDONLY); /* fd will be 0 */ + } + output = argv[1]; + if (output) { + if (argv[2]) + bb_show_usage(); + if (output[0] != '-' || output[1]) { + // Won't work with "uniq - FILE" and closed stdin: + //close(STDOUT_FILENO); + //xopen(output, O_WRONLY | O_CREAT | O_TRUNC); + xmove_fd(xopen(output, O_WRONLY | O_CREAT | O_TRUNC), STDOUT_FILENO); + } + } + } + + cur_compare = cur_line = NULL; /* prime the pump */ + eol = (opt & OPT_z) ? 0 : '\n'; + + do { + unsigned i; + unsigned long dups; + char *old_line; + const char *old_compare; + + old_line = cur_line; + old_compare = cur_compare; + dups = 0; + + /* gnu uniq ignores newlines */ + while ((cur_line = xmalloc_fgetline(stdin)) != NULL) { + cur_compare = cur_line; + for (i = skip_fields; i; i--) { + cur_compare = skip_whitespace(cur_compare); + cur_compare = skip_non_whitespace(cur_compare); + } + for (i = skip_chars; *cur_compare && i; i--) { + ++cur_compare; + } + + if (!old_line) + break; + if ((opt & OPT_i) + ? strncasecmp(old_compare, cur_compare, max_chars) + : strncmp(old_compare, cur_compare, max_chars) + ) { + break; + } + + free(cur_line); + ++dups; /* testing for overflow seems excessive */ + } + + if (old_line) { + if (!(opt & (OPT_d << !!dups))) { /* (if dups, opt & OPT_u) */ + if (opt & OPT_c) { + /* %7lu matches GNU coreutils 6.9 */ + printf("%7lu ", dups + 1); + } + printf("%s%c", old_line, eol); + } + free(old_line); + } + } while (cur_line); + + die_if_ferror(stdin, input_filename); + + fflush_stdout_and_exit_SUCCESS(); +} diff --git a/busybox-1_37_0/coreutils/unlink.c b/busybox-1_37_0/coreutils/unlink.c new file mode 100644 index 000000000..61b108a84 --- /dev/null +++ b/busybox-1_37_0/coreutils/unlink.c @@ -0,0 +1,33 @@ +/* vi: set sw=4 ts=4: */ +/* + * unlink for busybox + * + * Copyright (C) 2014 Isaac Dunham + * + * Licensed under GPLv2, see LICENSE in this source tree + */ +//config:config UNLINK +//config: bool "unlink (3.5 kb)" +//config: default y +//config: help +//config: unlink deletes a file by calling unlink() + +//applet:IF_UNLINK(APPLET_NOFORK(unlink, unlink, BB_DIR_USR_BIN, BB_SUID_DROP, unlink)) + +//kbuild:lib-$(CONFIG_UNLINK) += unlink.o + +//usage:#define unlink_trivial_usage +//usage: "FILE" +//usage:#define unlink_full_usage "\n\n" +//usage: "Delete FILE by calling unlink()" + +#include "libbb.h" + +int unlink_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int unlink_main(int argc UNUSED_PARAM, char **argv) +{ + getopt32(argv, "^" "" "\0" "=1"); + argv += optind; + xunlink(argv[0]); + return 0; +} diff --git a/busybox-1_37_0/coreutils/usleep.c b/busybox-1_37_0/coreutils/usleep.c new file mode 100644 index 000000000..bb619405b --- /dev/null +++ b/busybox-1_37_0/coreutils/usleep.c @@ -0,0 +1,51 @@ +/* vi: set sw=4 ts=4: */ +/* + * usleep implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config USLEEP +//config: bool "usleep (1.6 kb)" +//config: default y +//config: help +//config: usleep is used to pause for a specified number of microseconds. + +//applet:IF_USLEEP(APPLET_NOFORK(usleep, usleep, BB_DIR_BIN, BB_SUID_DROP, usleep)) + +//kbuild:lib-$(CONFIG_USLEEP) += usleep.o + +/* BB_AUDIT SUSv3 N/A -- Apparently a busybox extension. */ + +//usage:#define usleep_trivial_usage +//usage: "N" +//usage:#define usleep_full_usage "\n\n" +//usage: "Pause for N microseconds" +//usage: +//usage:#define usleep_example_usage +//usage: "$ usleep 1000000\n" +//usage: "[pauses for 1 second]\n" + +#include "libbb.h" + +/* This is a NOFORK applet. Be very careful! */ + +int usleep_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int usleep_main(int argc UNUSED_PARAM, char **argv) +{ + if (!argv[1]) { + bb_show_usage(); + } + + /* Safe wrt NOFORK? (noforks are not allowed to run for + * a long time). Try "usleep 99999999" + ^C + "echo $?" + * in hush with FEATURE_SH_NOFORK=y. + * At least on uclibc, usleep() thanslates to nanosleep() + * which returns early on any signal (even caught one), + * and uclibc does not loop back on EINTR. + */ + usleep(xatou(argv[1])); + + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/uudecode.c b/busybox-1_37_0/coreutils/uudecode.c new file mode 100644 index 000000000..59768f87e --- /dev/null +++ b/busybox-1_37_0/coreutils/uudecode.c @@ -0,0 +1,390 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright 2003, Glenn McGrath + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + * + * Based on specification from + * http://www.opengroup.org/onlinepubs/007904975/utilities/uuencode.html + * + * Bugs: the spec doesn't mention anything about "`\n`\n" prior to the + * "end" line + */ +//config:config UUDECODE +//config: bool "uudecode (5.9 kb)" +//config: default y +//config: help +//config: uudecode is used to decode a uuencoded file. + +//applet:IF_UUDECODE(APPLET(uudecode, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_UUDECODE) += uudecode.o + +//usage:#define uudecode_trivial_usage +//usage: "[-o OUTFILE] [INFILE]" +//usage:#define uudecode_full_usage "\n\n" +//usage: "Uudecode a file\n" +//usage: "Finds OUTFILE in uuencoded source unless -o is given" +//usage: +//usage:#define uudecode_example_usage +//usage: "$ uudecode -o busybox busybox.uu\n" +//usage: "$ ls -l busybox\n" +//usage: "-rwxr-xr-x 1 ams ams 245264 Jun 7 21:35 busybox\n" + +#include "libbb.h" + +#if ENABLE_UUDECODE +static void FAST_FUNC read_stduu(FILE *src_stream, FILE *dst_stream, int flags UNUSED_PARAM) +{ + char *line; + + for (;;) { + int encoded_len, str_len; + char *line_ptr, *dst; + size_t line_len; + + line_len = 64 * 1024; + line = xmalloc_fgets_str_len(src_stream, "\n", &line_len); + if (!line) + break; + /* Handle both Unix and MSDOS text. + * Note: space should not be trimmed, some encoders use it instead of "`" + * for padding of last incomplete 4-char block. + */ + str_len = line_len; + while (--str_len >= 0 + && (line[str_len] == '\n' || line[str_len] == '\r') + ) { + line[str_len] = '\0'; + } + + if (strcmp(line, "end") == 0) { + return; /* the only non-error exit */ + } + + line_ptr = line; + while (*line_ptr) { + *line_ptr = (*line_ptr - 0x20) & 0x3f; + line_ptr++; + } + str_len = line_ptr - line; + + encoded_len = line[0] * 4 / 3; + /* Check that line is not too short. (we tolerate + * overly _long_ line to accommodate possible extra "`"). + * Empty line case is also caught here. */ + if (str_len <= encoded_len) { + break; /* go to bb_error_msg_and_die("short file"); */ + } + if (encoded_len <= 0) { + /* Ignore the "`\n" line, why is it even in the encode file ? */ + free(line); + continue; + } + if (encoded_len > 60) { + bb_simple_error_msg_and_die("line too long"); + } + + dst = line; + line_ptr = line + 1; + do { + /* Merge four 6 bit chars to three 8 bit chars */ + *dst++ = line_ptr[0] << 2 | line_ptr[1] >> 4; + encoded_len--; + if (encoded_len == 0) { + break; + } + + *dst++ = line_ptr[1] << 4 | line_ptr[2] >> 2; + encoded_len--; + if (encoded_len == 0) { + break; + } + + *dst++ = line_ptr[2] << 6 | line_ptr[3]; + line_ptr += 4; + encoded_len -= 2; + } while (encoded_len > 0); + fwrite(line, 1, dst - line, dst_stream); + free(line); + } + bb_simple_error_msg_and_die("short file"); +} + +int uudecode_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int uudecode_main(int argc UNUSED_PARAM, char **argv) +{ + FILE *src_stream; + char *outname = NULL; + char *line; + + getopt32(argv, "^" "o:" "\0" "?1"/* 1 arg max*/, &outname); + argv += optind; + + if (!argv[0]) + *--argv = (char*)"-"; + src_stream = xfopen_stdin(argv[0]); + + /* Search for the start of the encoding */ + while ((line = xmalloc_fgetline(src_stream)) != NULL) { + void FAST_FUNC (*decode_fn_ptr)(FILE *src, FILE *dst, int flags); + char *line_ptr; + FILE *dst_stream; + int mode; + + if (is_prefixed_with(line, "begin-base64 ")) { + line_ptr = line + 13; + decode_fn_ptr = read_base64; + } else if (is_prefixed_with(line, "begin ")) { + line_ptr = line + 6; + decode_fn_ptr = read_stduu; + } else { + free(line); + continue; + } + + /* begin line found. decode and exit */ + mode = bb_strtou(line_ptr, NULL, 8); + if (outname == NULL) { + outname = strchr(line_ptr, ' '); + if (!outname) + break; + outname++; + trim(outname); /* remove trailing space (and '\r' for DOS text) */ + if (!outname[0]) + break; + } + dst_stream = stdout; + if (NOT_LONE_DASH(outname) +/* https://pubs.opengroup.org/onlinepubs/9699919799/utilities/uudecode.html + * https://pubs.opengroup.org/onlinepubs/9699919799/utilities/uuencode.html + * The above says that output file name specified in input file + * or overridden by -o OUTFILE can be special "/dev/stdout" string. + * This usually works "implicitly": many systems have /dev/stdout. + * If ENABLE_DESKTOP, support that explicitly: + */ + && (!ENABLE_DESKTOP || strcmp(outname, "/dev/stdout") != 0) + ) { + dst_stream = xfopen_for_write(outname); + fchmod(fileno(dst_stream), mode & (S_IRWXU | S_IRWXG | S_IRWXO)); + } + free(line); + decode_fn_ptr(src_stream, dst_stream, /*flags:*/ BASE64_FLAG_UU_STOP + BASE64_FLAG_NO_STOP_CHAR); + /* fclose_if_not_stdin(src_stream); - redundant */ + return EXIT_SUCCESS; + } + bb_simple_error_msg_and_die("no 'begin' line"); +} +#endif + +//config:config BASE32 +//config: bool "base32 (5.5 kb)" +//config: default y +//config: help +//config: Base32 encode and decode + +//config:config BASE64 +//config: bool "base64 (5.3 kb)" +//config: default y +//config: help +//config: Base64 encode and decode + +//usage:#define base32_trivial_usage +//usage: "[-d] [-w COL] [FILE]" +//usage:#define base32_full_usage "\n\n" +//usage: "Base32 encode or decode FILE to standard output\n" +//usage: "\n -d Decode data" +//usage: "\n -w COL Wrap lines at COL (default 76, 0 disables)" +////usage: "\n -i When decoding, ignore non-alphabet characters" + +//usage:#define base64_trivial_usage +//usage: "[-d] [-w COL] [FILE]" +//usage:#define base64_full_usage "\n\n" +//usage: "Base64 encode or decode FILE to standard output\n" +//usage: "\n -d Decode data" +//usage: "\n -w COL Wrap lines at COL (default 76, 0 disables)" +///////: "\n -i When decoding, ignore non-alphabet characters" +// -i is accepted but has no effect: currently, decode_base32/64() functions +// (called via read_base64()) skip invalid chars unconditionally. + +// APPLET_ODDNAME:name main location suid_type help +//applet:IF_BASE32(APPLET_ODDNAME(base32, baseNUM, BB_DIR_BIN, BB_SUID_DROP, base32)) +//applet:IF_BASE64(APPLET_ODDNAME(base64, baseNUM, BB_DIR_BIN, BB_SUID_DROP, base64)) + +//kbuild:lib-$(CONFIG_BASE64) += uudecode.o +//kbuild:lib-$(CONFIG_BASE32) += uudecode.o + +#if ENABLE_BASE32 || ENABLE_BASE64 + +# if ENABLE_BASE32 +static void bb_b32encode(char *p, const void *src, int length) +{ +#define tbl bb_uuenc_tbl_base32 + const unsigned char *s = src; + + /* Transform 5x8 bits to 8x5 bits */ + while (length > 0) { + unsigned cur, next; + + length--; + cur = *s++; + *p++ = tbl[cur >> 3]; // xxxxx--- -------- -------- -------- -------- + cur &= 7; + + next = 0; + if (--length >= 0) + next = *s++; + *p++ = tbl[(cur << 2) + (next >> 6)]; // -----xxx xx------ -------- -------- -------- + cur = next & 0x3f; + + *p++ = tbl[cur >> 1]; // -------- --xxxxx- -------- -------- -------- + cur &= 1; + + next = 0; + if (--length >= 0) + next = *s++; + *p++ = tbl[(cur << 4) + (next >> 4)]; // -------- -------x xxxx---- -------- -------- + cur = next & 0xf; + + next = 0; + if (--length >= 0) + next = *s++; + *p++ = tbl[(cur << 1) + (next >> 7)]; // -------- -------- ----xxxx x------- -------- + cur = next & 0x7f; + + *p++ = tbl[cur >> 2]; // -------- -------- -------- -xxxxx-- -------- + cur &= 3; + + next = 0; + if (--length >= 0) + next = *s++; + *p++ = tbl[(cur << 3) + (next >> 5)]; // -------- -------- -------- ------xx xxx----- + cur = next & 0x1f; + + *p++ = tbl[cur]; // -------- -------- -------- -------- ---xxxxx + } +#undef tbl + /* Zero-terminate */ + *p = '\0'; + /* Pad as necessary */ + length = ((-length) * 3) >> 1; /* -4 => 6 pad chars, -3 => 4, -2 => 3, -1 => 1 */ + while (length--) { + *--p = '='; + } +} +# else +void bb_b32encode(char *p, const void *src, int length); /* undefined */ +# endif + +int baseNUM_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int baseNUM_main(int argc UNUSED_PARAM, char **argv) +{ + FILE *src_stream; + unsigned opts; + unsigned col = 76; + + opts = getopt32(argv, "^" "diw:+" "\0" "?1"/* 1 arg max*/, &col); + argv += optind; + + if (!argv[0]) + *--argv = (char*)"-"; + src_stream = xfopen_stdin(argv[0]); + if (opts & 1) { + /* -d: decode */ + int flags = (unsigned char)EOF; + if (ENABLE_BASE32 && (!ENABLE_BASE64 || applet_name[4] == '3')) + flags = ((unsigned char)EOF) | BASE64_32; + read_base64(src_stream, stdout, flags); + } else { + enum { + SRC_BUF_SIZE = 3 * 5 * 32, /* this *MUST* be a multiple of 3 and 5 */ + DST_BUF_SIZE = 8 * ((SRC_BUF_SIZE + 4) / 5), /* max growth on encode (base32 case) */ + }; + /* Use one buffer for both input and output: + * encoding reads input "left-to-right", + * it's safe to place source at the end of the buffer and + * overwrite it while encoding, just be careful to have a gap. + */ + char dst_buf[((DST_BUF_SIZE + /*gap:*/ 16) /*round up to 16:*/ | 0xf) + 1]; +#define src_buf (dst_buf + sizeof(dst_buf) - SRC_BUF_SIZE) + int src_fd, rem; + + src_fd = fileno(src_stream); + rem = 0; + while (1) { + size_t size = full_read(src_fd, src_buf, SRC_BUF_SIZE); + if ((ssize_t)size < 0) + bb_simple_perror_msg_and_die(bb_msg_read_error); + if (size == 0) { + if (rem != 0) bb_putchar('\n'); + break; + } + + /* Encode the buffer we just read in */ + if (ENABLE_BASE32 && (!ENABLE_BASE64 || applet_name[4] == '3')) { + bb_b32encode(dst_buf, src_buf, size); + size = 8 * ((size + 4) / 5); + } else { + bb_uuencode(dst_buf, src_buf, size, bb_uuenc_tbl_base64); + size = 4 * ((size + 2) / 3); + } + + if (col == 0) { + fputs_stdout(dst_buf); + } else { + char *result = dst_buf; + if (rem == 0) + rem = col; + while (1) { + int out = size < rem ? size : rem; + rem -= out; + printf(rem != 0 ? "%.*s" : "%.*s\n", out, result); + if (rem != 0) + break; + size -= out; + if (size == 0) + break; + result += out; + rem = col; + } + } + } +#undef src_buf + } + + fflush_stdout_and_exit_SUCCESS(); +} +#endif + +/* Test script. +Put this into an empty dir with busybox binary, an run. + +#!/bin/sh +test -x busybox || { echo "No ./busybox?"; exit; } +ln -sf busybox uudecode +ln -sf busybox uuencode +>A_null +echo -n A >A +echo -n AB >AB +echo -n ABC >ABC +echo -n ABCD >ABCD +echo -n ABCDE >ABCDE +echo -n ABCDEF >ABCDEF +cat busybox >A_bbox +for f in A*; do + echo uuencode $f + ./uuencode $f <$f >u_$f + ./uuencode -m $f <$f >m_$f +done +mkdir unpk_u unpk_m 2>/dev/null +for f in u_*; do + ./uudecode <$f -o unpk_u/${f:2} + diff -a ${f:2} unpk_u/${f:2} >/dev/null 2>&1 + echo uudecode $f: $? +done +for f in m_*; do + ./uudecode <$f -o unpk_m/${f:2} + diff -a ${f:2} unpk_m/${f:2} >/dev/null 2>&1 + echo uudecode $f: $? +done +*/ diff --git a/busybox-1_37_0/coreutils/uuencode.c b/busybox-1_37_0/coreutils/uuencode.c new file mode 100644 index 000000000..97ff39ee3 --- /dev/null +++ b/busybox-1_37_0/coreutils/uuencode.c @@ -0,0 +1,82 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 2000 by Glenn McGrath + * + * based on the function base64_encode from http.c in wget v1.6 + * Copyright (C) 1995, 1996, 1997, 1998, 2000 Free Software Foundation, Inc. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config UUENCODE +//config: bool "uuencode (4.7 kb)" +//config: default y +//config: help +//config: uuencode is used to uuencode a file. + +//applet:IF_UUENCODE(APPLET(uuencode, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_UUENCODE) += uuencode.o + +//usage:#define uuencode_trivial_usage +//usage: "[-m] [FILE] STORED_FILENAME" +//usage:#define uuencode_full_usage "\n\n" +//usage: "Uuencode FILE (or stdin) to stdout\n" +//usage: "\n -m Use base64 encoding per RFC1521" +//usage: +//usage:#define uuencode_example_usage +//usage: "$ uuencode busybox busybox\n" +//usage: "begin 755 busybox\n" +//usage: "\n" +//usage: "$ uudecode busybox busybox > busybox.uu\n" +//usage: "$\n" + +#include "libbb.h" + +enum { + SRC_BUF_SIZE = 15*3, /* This *MUST* be a multiple of 3 */ + DST_BUF_SIZE = 4 * ((SRC_BUF_SIZE + 2) / 3), +}; + +int uuencode_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int uuencode_main(int argc UNUSED_PARAM, char **argv) +{ + struct stat stat_buf; + int src_fd = STDIN_FILENO; + const char *tbl; + mode_t mode; + char src_buf[SRC_BUF_SIZE]; + char dst_buf[DST_BUF_SIZE + 1]; + + tbl = bb_uuenc_tbl_std; + mode = 0666 & ~umask(0666); + if (getopt32(argv, "^" "m" "\0" "-1:?2"/*must have 1 or 2 args*/)) { + tbl = bb_uuenc_tbl_base64; + } + argv += optind; + if (argv[1]) { + src_fd = xopen(argv[0], O_RDONLY); + fstat(src_fd, &stat_buf); + mode = stat_buf.st_mode & (S_IRWXU | S_IRWXG | S_IRWXO); + argv++; + } + + printf("begin%s %o %s", tbl == bb_uuenc_tbl_std ? "" : "-base64", mode, *argv); + while (1) { + size_t size = full_read(src_fd, src_buf, SRC_BUF_SIZE); + if (!size) + break; + if ((ssize_t)size < 0) + bb_simple_perror_msg_and_die(bb_msg_read_error); + /* Encode the buffer we just read in */ + bb_uuencode(dst_buf, src_buf, size, tbl); + bb_putchar('\n'); + if (tbl == bb_uuenc_tbl_std) { + bb_putchar(tbl[size]); + } + fflush(stdout); + xwrite(STDOUT_FILENO, dst_buf, 4 * ((size + 2) / 3)); + } + printf(tbl == bb_uuenc_tbl_std ? "\n`\nend\n" : "\n====\n"); + + fflush_stdout_and_exit_SUCCESS(); +} diff --git a/busybox-1_37_0/coreutils/wc.c b/busybox-1_37_0/coreutils/wc.c new file mode 100644 index 000000000..de75aba72 --- /dev/null +++ b/busybox-1_37_0/coreutils/wc.c @@ -0,0 +1,257 @@ +/* vi: set sw=4 ts=4: */ +/* + * wc implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Rewritten to fix a number of problems and do some size optimizations. + * Problems in the previous busybox implementation (besides bloat) included: + * 1) broken 'wc -c' optimization (read note below) + * 2) broken handling of '-' args + * 3) no checking of ferror on EOF returns + * 4) isprint() wasn't considered when word counting. + * + * NOTES: + * + * The previous busybox wc attempted an optimization using stat for the + * case of counting chars only. I omitted that because it was broken. + * It didn't take into account the possibility of input coming from a + * pipe, or input from a file with file pointer not at the beginning. + * + * To implement such a speed optimization correctly, not only do you + * need the size, but also the file position. Note also that the + * file position may be past the end of file. Consider the example + * (adapted from example in gnu wc.c) + * + * echo hello > /tmp/testfile && + * (dd ibs=1k skip=1 count=0 &> /dev/null; wc -c) < /tmp/testfile + * + * for which 'wc -c' should output '0'. + */ +//config:config WC +//config: bool "wc (4.7 kb)" +//config: default y +//config: help +//config: wc is used to print the number of bytes, words, and lines, +//config: in specified files. +//config: +//config:config FEATURE_WC_LARGE +//config: bool "Support very large counts" +//config: default y +//config: depends on WC +//config: help +//config: Use "unsigned long long" for counter variables. + +//applet:IF_WC(APPLET(wc, BB_DIR_USR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_WC) += wc.o + +/* BB_AUDIT SUSv3 compliant. */ +/* http://www.opengroup.org/onlinepubs/007904975/utilities/wc.html */ + +#include "libbb.h" +#include "unicode.h" + +#if !ENABLE_LOCALE_SUPPORT +# undef isprint +# undef isspace +# define isprint(c) ((unsigned)((c) - 0x20) <= (0x7e - 0x20)) +# define isspace(c) ((c) == ' ') +#endif + +#if ENABLE_FEATURE_WC_LARGE +# define COUNT_T unsigned long long +# define COUNT_FMT "llu" +#else +# define COUNT_T unsigned +# define COUNT_FMT "u" +#endif + +/* We support -m even when UNICODE_SUPPORT is off, + * we just don't advertise it in help text, + * since it is the same as -c in this case. + */ + +//usage:#define wc_trivial_usage +//usage: "[-c"IF_UNICODE_SUPPORT("m")"lwL] [FILE]..." +//usage: +//usage:#define wc_full_usage "\n\n" +//usage: "Count lines, words, and bytes for FILEs (or stdin)\n" +//usage: "\n -c Count bytes" +//usage: IF_UNICODE_SUPPORT( +//usage: "\n -m Count characters" +//usage: ) +//usage: "\n -l Count newlines" +//usage: "\n -w Count words" +//usage: "\n -L Print longest line length" +//usage: +//usage:#define wc_example_usage +//usage: "$ wc /etc/passwd\n" +//usage: " 31 46 1365 /etc/passwd\n" + +/* Order is important if we want to be compatible with + * column order in "wc -cmlwL" output: + */ +enum { + WC_LINES = 0, /* -l */ + WC_WORDS = 1, /* -w */ + WC_UNICHARS = 2, /* -m */ + WC_BYTES = 3, /* -c */ + WC_LENGTH = 4, /* -L */ + NUM_WCS = 5, +}; + +int wc_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int wc_main(int argc UNUSED_PARAM, char **argv) +{ + const char *arg; + const char *start_fmt = " %9"COUNT_FMT + 1; + const char *fname_fmt = " %s\n"; + COUNT_T *pcounts; + COUNT_T counts[NUM_WCS]; + COUNT_T totals[NUM_WCS]; + int num_files; + smallint status = EXIT_SUCCESS; + unsigned print_type; + + init_unicode(); + + print_type = getopt32(argv, "lwmcL"); + + if (print_type == 0) { + print_type = (1 << WC_LINES) | (1 << WC_WORDS) | (1 << WC_BYTES); + } + + argv += optind; + if (!argv[0]) { + *--argv = (char *) bb_msg_standard_input; + fname_fmt = "\n"; + } + if (!argv[1]) { /* zero or one filename? */ + if (!((print_type-1) & print_type)) /* exactly one option? */ + start_fmt = "%"COUNT_FMT; + } + + memset(totals, 0, sizeof(totals)); + + pcounts = counts; + + num_files = 0; + while ((arg = *argv++) != NULL) { + FILE *fp; + const char *s; + unsigned u; + unsigned linepos; + smallint in_word; + + ++num_files; + fp = fopen_or_warn_stdin(arg); + if (!fp) { + status = EXIT_FAILURE; + continue; + } + + memset(counts, 0, sizeof(counts)); + linepos = 0; + in_word = 0; + + while (1) { + int c; + /* Our -w doesn't match GNU wc exactly... oh well */ + + c = getc(fp); + if (c == EOF) { + if (ferror(fp)) { + bb_simple_perror_msg(arg); + status = EXIT_FAILURE; + } + goto DO_EOF; /* Treat an EOF as '\r'. */ + } + + /* Cater for -c and -m */ + ++counts[WC_BYTES]; + if (unicode_status != UNICODE_ON /* every byte is a new char */ + || (c & 0xc0) != 0x80 /* it isn't a 2nd+ byte of a Unicode char */ + ) { + ++counts[WC_UNICHARS]; + } + + if (isprint_asciionly(c)) { /* FIXME: not unicode-aware */ + ++linepos; + if (!isspace(c)) { + in_word = 1; + continue; + } + } else if ((unsigned)(c - 9) <= 4) { + /* \t 9 + * \n 10 + * \v 11 + * \f 12 + * \r 13 + */ + if (c == '\t') { + linepos = (linepos | 7) + 1; + } else { /* '\n', '\r', '\f', or '\v' */ + DO_EOF: + if (linepos > counts[WC_LENGTH]) { + counts[WC_LENGTH] = linepos; + } + if (c == '\n') { + ++counts[WC_LINES]; + } + if (c != '\v') { + linepos = 0; + } + } + } else { + continue; + } + + counts[WC_WORDS] += in_word; + in_word = 0; + if (c == EOF) { + break; + } + } + + fclose_if_not_stdin(fp); + + if (totals[WC_LENGTH] < counts[WC_LENGTH]) { + totals[WC_LENGTH] = counts[WC_LENGTH]; + } + totals[WC_LENGTH] -= counts[WC_LENGTH]; + + OUTPUT: + /* coreutils wc tries hard to print pretty columns + * (saves results for all files, finds max col len etc...) + * we won't try that hard, it will bloat us too much */ + s = start_fmt; + u = 0; + do { + if (print_type & (1 << u)) { + printf(s, pcounts[u]); + s = " %9"COUNT_FMT; /* Ok... restore the leading space. */ + } + totals[u] += pcounts[u]; + } while (++u < NUM_WCS); + printf(fname_fmt, arg); + } + + /* If more than one file was processed, we want the totals. To save some + * space, we set the pcounts ptr to the totals array. This has the side + * effect of trashing the totals array after outputting it, but that's + * irrelavent since we no longer need it. */ + if (num_files > 1) { + num_files = 0; /* Make sure we don't get here again. */ + arg = "total"; + pcounts = totals; + --argv; + goto OUTPUT; + } + + fflush_stdout_and_exit(status); +} diff --git a/busybox-1_37_0/coreutils/who.c b/busybox-1_37_0/coreutils/who.c new file mode 100644 index 000000000..6f96f7243 --- /dev/null +++ b/busybox-1_37_0/coreutils/who.c @@ -0,0 +1,170 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini who is used to display user name, login time, + * idle time and host name. + * + * Author: Da Chen + * + * This is a free document; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation: + * http://www.gnu.org/copyleft/gpl.html + * + * Copyright (c) 2002 AYR Networks, Inc. + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config WHO +//config: bool "who (5.6 kb)" +//config: default y +//config: depends on FEATURE_UTMP +//config: help +//config: Print users currently logged on. +//config: +// procps-ng has this variation of "who": +//config:config W +//config: bool "w (5.5 kb)" +//config: default y +//config: depends on FEATURE_UTMP +//config: help +//config: Print users currently logged on. +//config: +//config:config USERS +//config: bool "users (3.6 kb)" +//config: default y +//config: depends on FEATURE_UTMP +//config: help +//config: Print users currently logged on. + +// APPLET_NOEXEC:name main location suid_type help +//applet:IF_USERS(APPLET_NOEXEC(users, who, BB_DIR_USR_BIN, BB_SUID_DROP, users)) +//applet:IF_W( APPLET_NOEXEC(w, who, BB_DIR_USR_BIN, BB_SUID_DROP, w)) +//applet:IF_WHO( APPLET_NOEXEC(who, who, BB_DIR_USR_BIN, BB_SUID_DROP, who)) + +//kbuild:lib-$(CONFIG_USERS) += who.o +//kbuild:lib-$(CONFIG_W) += who.o +//kbuild:lib-$(CONFIG_WHO) += who.o + +/* BB_AUDIT SUSv3 _NOT_ compliant -- missing options -b, -d, -l, -m, -p, -q, -r, -s, -t, -T, -u; Missing argument 'file'. */ + +//usage:#define users_trivial_usage +//usage: "" +//usage:#define users_full_usage "\n\n" +//usage: "Print the users currently logged on" + +//usage:#define w_trivial_usage +//usage: "" +//usage:#define w_full_usage "\n\n" +//usage: "Show who is logged on" +// +// procps-ng 3.3.10: +// "\n -h, --no-header" +// "\n -u, --no-current" +// Ignores the username while figuring out the current process +// and cpu times. To demonstrate this, do a "su" and do a "w" and a "w -u". +// "\n -s, --short" +// Short format. Don't print the login time, JCPU or PCPU times. +// "\n -f, --from" +// Toggle printing the from (remote hostname) field. +// The default is for the from field to not be printed +// "\n -i, --ip-addr" +// Display IP address instead of hostname for from field. +// "\n -o, --old-style" +// Old style output. Prints blank space for idle times less than one minute. +// Example output: +// 17:28:00 up 4 days, 22:41, 4 users, load average: 0.84, 0.97, 0.90 +// USER TTY LOGIN@ IDLE JCPU PCPU WHAT +// root tty1 Thu18 4days 4:33m 0.07s /bin/sh /etc/xdg/xfce4/xinitrc -- vt +// root pts/1 Mon13 3:24m 1:01 0.01s w + +//usage:#define who_trivial_usage +//usage: "[-aH]" +//usage:#define who_full_usage "\n\n" +//usage: "Show who is logged on\n" +//usage: "\n -a Show all" +//usage: "\n -H Print column headers" + +#include "libbb.h" + +static void idle_string(char *str6, time_t t) +{ + t = time(NULL) - t; + + /*if (t < 60) { + str6[0] = '.'; + str6[1] = '\0'; + return; + }*/ + if (t >= 0 && t < (24 * 60 * 60)) { + sprintf(str6, "%02d:%02d", + (int) (t / (60 * 60)), + (int) ((t % (60 * 60)) / 60)); + return; + } + strcpy(str6, "old"); +} + +int who_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int who_main(int argc UNUSED_PARAM, char **argv) +{ +#define CNT_APPLET (ENABLE_USERS + ENABLE_W + ENABLE_WHO) + int do_users = (ENABLE_USERS && (CNT_APPLET == 1 || applet_name[0] == 'u')); + int do_w = (ENABLE_W && (CNT_APPLET == 1 || applet_name[1] == '\0')); + int do_who = (ENABLE_WHO && (CNT_APPLET == 1 || applet_name[1] == 'h')); + struct utmpx *ut; + unsigned opt; + const char *fmt = "%s"; + + opt = getopt32(argv, do_who ? "^" "aH" "\0" "=0": "^" "" "\0" "=0"); + if ((opt & 2) || do_w) /* -H or we are w */ + puts("USER\t\tTTY\t\tIDLE\tTIME\t\t HOST"); + + setutxent(); + while ((ut = getutxent()) != NULL) { + if (ut->ut_user[0] + && ((opt & 1) || ut->ut_type == USER_PROCESS) + ) { + if (!do_users) { + char str6[6]; + char name[sizeof("/dev/") + sizeof(ut->ut_line) + 1]; + struct stat st; + time_t seconds; + + str6[0] = '?'; + str6[1] = '\0'; + strcpy(name, "/dev/"); + safe_strncpy(ut->ut_line[0] == '/' ? name : name + sizeof("/dev/")-1, + ut->ut_line, + sizeof(ut->ut_line)+1 + ); + if (stat(name, &st) == 0) + idle_string(str6, st.st_atime); + /* manpages say ut_tv.tv_sec *is* time_t, + * but some systems have it wrong */ + seconds = ut->ut_tv.tv_sec; + /* How wide time field can be? + * "Nov 10 19:33:20": 15 chars + * "2010-11-10 19:33": 16 chars + */ + printf("%-15.*s %-15.*s %-7s %-16.16s %.*s\n", + (int)sizeof(ut->ut_user), ut->ut_user, + (int)sizeof(ut->ut_line), ut->ut_line, + str6, +// TODO: with LANG=en_US.UTF-8, who from coreutils 8.25 shows +// TIME col as "2017-04-06 18:47" (the default format is "Apr 6 18:47"). +// The former format looks saner to me. Switch to it unconditionally? + ctime(&seconds) + 4, + (int)sizeof(ut->ut_host), ut->ut_host + ); + } else { + printf(fmt, ut->ut_user); + fmt = " %s"; + } + } + } + if (do_users) + bb_putchar('\n'); + if (ENABLE_FEATURE_CLEAN_UP) + endutxent(); + return EXIT_SUCCESS; +} diff --git a/busybox-1_37_0/coreutils/whoami.c b/busybox-1_37_0/coreutils/whoami.c new file mode 100644 index 000000000..7e94d51fb --- /dev/null +++ b/busybox-1_37_0/coreutils/whoami.c @@ -0,0 +1,39 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini whoami implementation for busybox + * + * Copyright (C) 2000 Edward Betts . + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config WHOAMI +//config: bool "whoami (3.5 kb)" +//config: default y +//config: help +//config: whoami is used to print the username of the current +//config: user id (same as id -un). + +//applet:IF_WHOAMI(APPLET_NOFORK(whoami, whoami, BB_DIR_USR_BIN, BB_SUID_DROP, whoami)) + +//kbuild:lib-$(CONFIG_WHOAMI) += whoami.o + +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ + +//usage:#define whoami_trivial_usage +//usage: "" +//usage:#define whoami_full_usage "\n\n" +//usage: "Print the user name associated with the current effective user id" + +#include "libbb.h" + +int whoami_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int whoami_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + if (argv[1]) + bb_show_usage(); + + /* Will complain and die if username not found */ + puts(xuid2uname(geteuid())); + + return fflush_all(); +} diff --git a/busybox-1_37_0/coreutils/yes.c b/busybox-1_37_0/coreutils/yes.c new file mode 100644 index 000000000..e04ad3ac0 --- /dev/null +++ b/busybox-1_37_0/coreutils/yes.c @@ -0,0 +1,54 @@ +/* vi: set sw=4 ts=4: */ +/* + * yes implementation for busybox + * + * Copyright (C) 2003 Manuel Novoa III + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +/* Mar 16, 2003 Manuel Novoa III (mjn3@codepoet.org) + * + * Size reductions and removed redundant applet name prefix from error messages. + */ +//config:config YES +//config: bool "yes (1.5 kb)" +//config: default y +//config: help +//config: yes is used to repeatedly output a specific string, or +//config: the default string 'y'. + +//applet:IF_YES(APPLET_NOEXEC(yes, yes, BB_DIR_USR_BIN, BB_SUID_DROP, yes)) +/* was NOFORK, but then yes can't be ^C'ed if run by hush */ + +//kbuild:lib-$(CONFIG_YES) += yes.o + +/* BB_AUDIT SUSv3 N/A -- Matches GNU behavior. */ + +//usage:#define yes_trivial_usage +//usage: "[STRING]" +//usage:#define yes_full_usage "\n\n" +//usage: "Repeatedly print a line with STRING, or 'y'" + +#include "libbb.h" + +int yes_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int yes_main(int argc UNUSED_PARAM, char **argv) +{ + char **pp; + + argv[0] = (char*)"y"; + if (argv[1]) + ++argv; + + do { + pp = argv; + while (1) { + fputs_stdout(*pp); + if (!*++pp) + break; + putchar(' '); + } + } while (putchar('\n') != EOF); + + bb_perror_nomsg_and_die(); +} diff --git a/busybox-1_37_0/debianutils/Config.src b/busybox-1_37_0/debianutils/Config.src new file mode 100644 index 000000000..17b0d8945 --- /dev/null +++ b/busybox-1_37_0/debianutils/Config.src @@ -0,0 +1,10 @@ +# +# For a description of the syntax of this configuration file, +# see docs/Kconfig-language.txt. +# + +menu "Debian Utilities" + +INSERT + +endmenu diff --git a/busybox-1_37_0/debianutils/Kbuild.src b/busybox-1_37_0/debianutils/Kbuild.src new file mode 100644 index 000000000..6b4fb7470 --- /dev/null +++ b/busybox-1_37_0/debianutils/Kbuild.src @@ -0,0 +1,9 @@ +# Makefile for busybox +# +# Copyright (C) 1999-2005 by Erik Andersen +# +# Licensed under GPLv2, see file LICENSE in this source tree. + +lib-y:= + +INSERT diff --git a/busybox-1_37_0/debianutils/pipe_progress.c b/busybox-1_37_0/debianutils/pipe_progress.c new file mode 100644 index 000000000..acd7402d7 --- /dev/null +++ b/busybox-1_37_0/debianutils/pipe_progress.c @@ -0,0 +1,48 @@ +/* vi: set sw=4 ts=4: */ +/* + * Monitor a pipe with a simple progress display. + * + * Copyright (C) 2003 by Rob Landley , Joey Hess + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config PIPE_PROGRESS +//config: bool "pipe_progress (576 bytes)" +//config: default y +//config: help +//config: Display a dot to indicate pipe activity. + +//applet:IF_PIPE_PROGRESS(APPLET(pipe_progress, BB_DIR_BIN, BB_SUID_DROP)) + +//kbuild:lib-$(CONFIG_PIPE_PROGRESS) += pipe_progress.o + +//usage:#define pipe_progress_trivial_usage NOUSAGE_STR +//usage:#define pipe_progress_full_usage "" + +#include "libbb.h" + +#define PIPE_PROGRESS_SIZE 4096 + +/* Read a block of data from stdin, write it to stdout. + * Activity is indicated by a '.' to stderr + */ +int pipe_progress_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int pipe_progress_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) +{ + char buf[PIPE_PROGRESS_SIZE]; + time_t t = time(NULL); + int len; + + while ((len = safe_read(STDIN_FILENO, buf, PIPE_PROGRESS_SIZE)) > 0) { + time_t new_time = time(NULL); + if (new_time != t) { + t = new_time; + bb_putchar_stderr('.'); + } + full_write(STDOUT_FILENO, buf, len); + } + + bb_putchar_stderr('\n'); + + return 0; +} diff --git a/busybox-1_37_0/debianutils/run_parts.c b/busybox-1_37_0/debianutils/run_parts.c new file mode 100644 index 000000000..780df3e96 --- /dev/null +++ b/busybox-1_37_0/debianutils/run_parts.c @@ -0,0 +1,246 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini run-parts implementation for busybox + * + * Copyright (C) 2007 Bernhard Reutner-Fischer + * + * Based on a older version that was in busybox which was 1k big. + * Copyright (C) 2001 by Emanuele Aina + * + * Based on the Debian run-parts program, version 1.15 + * Copyright (C) 1996 Jeff Noxon , + * Copyright (C) 1996-1999 Guy Maor + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ + +/* This is my first attempt to write a program in C (well, this is my first + * attempt to write a program! :-) . */ + +/* This piece of code is heavily based on the original version of run-parts, + * taken from debian-utils. I've only removed the long options and the + * report mode. As the original run-parts support only long options, I've + * broken compatibility because the BusyBox policy doesn't allow them. + */ +//config:config RUN_PARTS +//config: bool "run-parts (6.2 kb)" +//config: default y +//config: help +//config: run-parts is a utility designed to run all the scripts in a directory. +//config: +//config: It is useful to set up a directory like cron.daily, where you need to +//config: execute all the scripts in that directory. +//config: +//config: In this implementation of run-parts some features (such as report +//config: mode) are not implemented. +//config: +//config: Unless you know that run-parts is used in some of your scripts +//config: you can safely say N here. +//config: +//config:config FEATURE_RUN_PARTS_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on RUN_PARTS && LONG_OPTS +//config: +//config:config FEATURE_RUN_PARTS_FANCY +//config: bool "Support additional arguments" +//config: default y +//config: depends on RUN_PARTS +//config: help +//config: Support additional options: +//config: -l --list print the names of the all matching files (not +//config: limited to executables), but don't actually run them. + +//applet:IF_RUN_PARTS(APPLET_ODDNAME(run-parts, run_parts, BB_DIR_BIN, BB_SUID_DROP, run_parts)) + +//kbuild:lib-$(CONFIG_RUN_PARTS) += run_parts.o + +//usage:#define run_parts_trivial_usage +//usage: "[-a ARG]... [-u UMASK] " +//usage: IF_FEATURE_RUN_PARTS_LONG_OPTIONS("[--reverse] [--test] [--exit-on-error] "IF_FEATURE_RUN_PARTS_FANCY("[--list] ")) +//usage: "DIRECTORY" +//usage:#define run_parts_full_usage "\n\n" +//usage: "Run a bunch of scripts in DIRECTORY\n" +//usage: "\n -a ARG Pass ARG as argument to scripts" +//usage: "\n -u UMASK Set UMASK before running scripts" +//usage: IF_FEATURE_RUN_PARTS_LONG_OPTIONS( +//usage: "\n --reverse Reverse execution order" +//usage: "\n --test Dry run" +//usage: "\n --exit-on-error Exit if a script exits with non-zero" +//usage: IF_FEATURE_RUN_PARTS_FANCY( +//usage: "\n --list Print names of matching files even if they are not executable" +//usage: ) +//usage: ) +//usage: +//usage:#define run_parts_example_usage +//usage: "$ run-parts -a start /etc/init.d\n" +//usage: "$ run-parts -a stop=now /etc/init.d\n\n" +//usage: "Let's assume you have a script foo/dosomething:\n" +//usage: "#!/bin/sh\n" +//usage: "for i in $*; do eval $i; done; unset i\n" +//usage: "case \"$1\" in\n" +//usage: "start*) echo starting something;;\n" +//usage: "stop*) set -x; shutdown -h $stop;;\n" +//usage: "esac\n\n" +//usage: "Running this yields:\n" +//usage: "$run-parts -a stop=+4m foo/\n" +//usage: "+ shutdown -h +4m" + +#include "libbb.h" +#include "common_bufsiz.h" + +struct globals { + char **names; + int cur; + char *cmd[2 /* using 1 provokes compiler warning */]; +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define names (G.names) +#define cur (G.cur ) +#define cmd (G.cmd ) +#define INIT_G() do { setup_common_bufsiz(); } while (0) + +enum { NUM_CMD = (COMMON_BUFSIZE - sizeof(G)) / sizeof(cmd[0]) - 1 }; + +enum { + OPT_a = (1 << 0), + OPT_u = (1 << 1), + OPT_r = (1 << 2) * ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS, + OPT_t = (1 << 3) * ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS, + OPT_e = (1 << 4) * ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS, + OPT_l = (1 << 5) * ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS + * ENABLE_FEATURE_RUN_PARTS_FANCY, +}; + +/* Is this a valid filename (upper/lower alpha, digits, + * underscores, hyphens, and non-leading dots only?) + */ +static bool invalid_name(const char *c) +{ + c = bb_basename(c); + + if (*c == '.') + return *c; + + /* Debian run-parts 4.8.3, manpage: + * "...the names must consist entirely of ASCII letters, + * ASCII digits, ASCII underscores, and ASCII minus-hyphens. + * However, the name must not begin with a period." + * The last sentence is a giveaway that something is fishy + * (why mention leading dot if dots are not allowed anyway?). + * Yes, you guessed it right: in fact non-leading dots ARE allowed. + */ + while (isalnum(*c) || *c == '_' || *c == '-' || *c == '.') + c++; + + return *c; /* TRUE (!0) if terminating NUL is not reached */ +} + +static int bb_alphasort(const void *p1, const void *p2) +{ + int r = strcmp(*(char **) p1, *(char **) p2); + return (option_mask32 & OPT_r) ? -r : r; +} + +static int FAST_FUNC act(struct recursive_state *state, + const char *file, struct stat *statbuf) +{ + if (state->depth == 0) + return TRUE; + + if (state->depth == 1 + && ( !(statbuf->st_mode & (S_IFREG | S_IFLNK)) + || invalid_name(file) + || (!(option_mask32 & OPT_l) && access(file, X_OK) != 0)) + ) { + return SKIP; + } + + names = xrealloc_vector(names, 4, cur); + names[cur++] = xstrdup(file); + /*names[cur] = NULL; - xrealloc_vector did it */ + + return TRUE; +} + +#if ENABLE_FEATURE_RUN_PARTS_LONG_OPTIONS +static const char runparts_longopts[] ALIGN1 = + "arg\0" Required_argument "a" + "umask\0" Required_argument "u" +//TODO: "verbose\0" No_argument "v" + "reverse\0" No_argument "\xf0" + "test\0" No_argument "\xf1" + "exit-on-error\0" No_argument "\xf2" +# if ENABLE_FEATURE_RUN_PARTS_FANCY + "list\0" No_argument "\xf3" +# endif + ; +# define GETOPT32 getopt32long +# define LONGOPTS ,runparts_longopts +#else +# define GETOPT32 getopt32 +# define LONGOPTS +#endif + +int run_parts_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int run_parts_main(int argc UNUSED_PARAM, char **argv) +{ + const char *umask_p = "22"; + llist_t *arg_list = NULL; + unsigned n; + int ret; + + INIT_G(); + + /* We require exactly one argument: the directory name */ + GETOPT32(argv, "^" "a:*u:" "\0" "=1" LONGOPTS, + &arg_list, &umask_p + ); + + umask(xstrtou_range(umask_p, 8, 0, 07777)); + + n = 1; + while (arg_list && n < NUM_CMD) { + cmd[n++] = llist_pop(&arg_list); + } + /* cmd[n] = NULL; - is already zeroed out */ + + /* run-parts has to sort executables by name before running them */ + + recursive_action(argv[optind], + ACTION_RECURSE|ACTION_FOLLOWLINKS, + act, /* file action */ + act, /* dir action */ + NULL /* user data */ + ); + + if (!names) + return 0; + + qsort(names, cur, sizeof(char *), bb_alphasort); + + n = 0; + while (1) { + char *name = *names++; + if (!name) + break; + if (option_mask32 & (OPT_t | OPT_l)) { + puts(name); + continue; + } + cmd[0] = name; + ret = spawn_and_wait(cmd); + if (ret == 0) + continue; + n = 1; + if (ret < 0) + bb_perror_msg("can't execute '%s'", name); + else /* ret > 0 */ + bb_error_msg("%s: exit status %u", name, ret & 0xff); + + if (option_mask32 & OPT_e) + xfunc_die(); + } + + return n; +} diff --git a/busybox-1_37_0/debianutils/start_stop_daemon.c b/busybox-1_37_0/debianutils/start_stop_daemon.c new file mode 100644 index 000000000..271bc4edf --- /dev/null +++ b/busybox-1_37_0/debianutils/start_stop_daemon.c @@ -0,0 +1,634 @@ +/* vi: set sw=4 ts=4: */ +/* + * Mini start-stop-daemon implementation(s) for busybox + * + * Written by Marek Michalkiewicz , + * Adapted for busybox David Kimdon + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ + +/* +This is how it is supposed to work: + +start-stop-daemon [OPTIONS] [--start|--stop] [[--] ARGS] + +One (only) of these must be given: + -S,--start Start + -K,--stop Stop + -T,--status Check for the existence of a process, return exitcode (since version 1.16.1) + 0 - program is running + 1 - program is not running and the pid file exists + 3 - program is not running + 4 - can't determine program status + +Search for matching processes. +If --stop is given, stop all matching processes (by sending a signal). +If --start is given, start a new process unless a matching process was found. + +Options controlling process matching +(if multiple conditions are specified, all must match): + -u,--user USERNAME|UID Only consider this user's processes + -n,--name PROCESS_NAME Look for processes by matching PROCESS_NAME + with comm field in /proc/$PID/stat. + Only basename is compared: + "ntpd" == "./ntpd" == "/path/to/ntpd". +[TODO: can PROCESS_NAME be a full pathname? Should we require full match then +with /proc/$PID/exe or argv[0] (comm can't be matched, it never contains path)] + -x,--exec EXECUTABLE Look for processes that were started with this + command in /proc/$PID/exe and /proc/$PID/cmdline + (/proc/$PID/cmdline is a bbox extension) + Unlike -n, we match against the full path: + "ntpd" != "./ntpd" != "/path/to/ntpd" + -p,--pidfile PID_FILE Look for processes with PID from this file + --pid PID Look for process with this pid (since version 1.17.6) + --ppid PPID Look for processes with parent pid (since version 1.17.7) + +Options which are valid for --start only: + -x,--exec EXECUTABLE Program to run (1st arg of execvp). + If no -x, EXECUTABLE is taken from ARGS[0] + -a,--startas NAME argv[0] (defaults to EXECUTABLE) + -b,--background Put process into background + -O,--output FILE Redirect stdout and stderr to FILE when forcing the + daemon into the background (since version 1.20.6). + Requires --background and absolute pathname (tested with 1.21.22). + Uses O_CREAT|O_APPEND! + If execv fails, error message goes to FILE. + -N,--nicelevel N Add N to process' nice level + -c,--chuid USER[:[GRP]] Change to specified user [and group] + -m,--make-pidfile Write PID to the pidfile + (both -m and -p must be given!) + -P,--procsched policy:priority + This alters the process scheduler policy and priority of the + process before starting it (since version 1.15.0). The + priority can be optionally specified by appending a : + followed by the value. The default priority is 0. The + currently supported policy values are other, fifo and rr. + -r,--chroot DIR Change directory and chroot to DIR before starting the + process. Please note that the pidfile is also written after + the chroot. + -d,--chdir DIR Change directory to DIR before starting the process. This is + done after the chroot if the -r|--chroot option is set. + When not specified, start-stop-daemon will change directory to the + root directory before starting the process. + ^^^^ Gentoo does not have the default chdir("/"). Debian does. + Tested -S with 1.21.22: + "start-stop-daemon -S -x /bin/pwd" is the minimum needed to run pwd. + "start-stop-daemon -S -a /bin/pwd -n pwd" works too. + "start-stop-daemon -S -a /bin/pwd" does NOT work. + Earlier versions were less picky (which? Or is it only Gentoo's clone?) + +Options which are valid for --stop only: + -s,--signal SIG Signal to send (default:TERM) + -t,--test Exit with status 0 if process is found + (we don't actually start or stop daemons) + --remove-pidfile Used when stopping a program that does not remove its own pid + file (since version 1.17.19). Requires -p PIDFILE? + +Misc options: + -o,--oknodo Exit with status 0 if nothing is done + -q,--quiet Quiet + -v,--verbose Verbose +*/ +//config:config START_STOP_DAEMON +//config: bool "start-stop-daemon (12 kb)" +//config: default y +//config: help +//config: start-stop-daemon is used to control the creation and +//config: termination of system-level processes, usually the ones +//config: started during the startup of the system. +//config: +//config:config FEATURE_START_STOP_DAEMON_LONG_OPTIONS +//config: bool "Enable long options" +//config: default y +//config: depends on START_STOP_DAEMON && LONG_OPTS +//config: +//config:config FEATURE_START_STOP_DAEMON_FANCY +//config: bool "Support additional arguments" +//config: default y +//config: depends on START_STOP_DAEMON +//config: help +//config: -o|--oknodo ignored since we exit with 0 anyway +//config: -v|--verbose +//config: -N|--nicelevel N + +//applet:IF_START_STOP_DAEMON(APPLET_ODDNAME(start-stop-daemon, start_stop_daemon, BB_DIR_SBIN, BB_SUID_DROP, start_stop_daemon)) +/* not NOEXEC: uses bb_common_bufsiz1 */ + +//kbuild:lib-$(CONFIG_START_STOP_DAEMON) += start_stop_daemon.o + +//usage:#define start_stop_daemon_trivial_usage +//usage: "-S|-K [OPTIONS] [-- ARGS]" +//usage:#define start_stop_daemon_full_usage "\n\n" +//usage: "Search for matching processes, and then\n" +//usage: "-S: start a process unless a matching process is found\n" +//usage: "-K: stop all matching processes\n" +//usage: "\nProcess matching:" +//usage: "\n -u USERNAME|UID Match only this user's processes" +//usage: "\n -n NAME Match processes with NAME" +//usage: "\n in comm field in /proc/PID/stat" +//usage: "\n -x EXECUTABLE Match processes with this command" +//usage: "\n in /proc/PID/cmdline" +//usage: "\n -p FILE Match a process with PID from FILE" +//usage: "\n All specified conditions must match" +//usage: "\n-S only:" +//usage: "\n -x EXECUTABLE Program to run" +//usage: "\n -a NAME Zeroth argument" +//usage: "\n -b Background" +//usage: "\n -O FILE Append stdout and stderr to FILE" +//usage: IF_FEATURE_START_STOP_DAEMON_FANCY( +//usage: "\n -N N Change nice level" +//usage: ) +//usage: "\n -c USER[:[GRP]] Change user/group" +//usage: "\n -d DIR Change to DIR" +//usage: "\n -m Write PID to pidfile specified by -p" +//usage: "\n-K only:" +//usage: "\n -s SIG Signal to send" +//usage: "\n -t Match only, exit with 0 if found" +//usage: "\nOther:" +//usage: IF_FEATURE_START_STOP_DAEMON_FANCY( +//usage: "\n -o Exit with status 0 if nothing is done" +//usage: "\n -v Verbose" +//usage: "\n -q Quiet" +//usage: ) + +/* Override ENABLE_FEATURE_PIDFILE */ +#define WANT_PIDFILE 1 +#include "libbb.h" +#include "common_bufsiz.h" + +struct pid_list { + struct pid_list *next; + pid_t pid; +}; + +enum { + CTX_STOP = (1 << 0), + CTX_START = (1 << 1), + OPT_BACKGROUND = (1 << 2), // -b + OPT_QUIET = (1 << 3), // -q + OPT_TEST = (1 << 4), // -t + OPT_MAKEPID = (1 << 5), // -m + OPT_a = (1 << 6), // -a + OPT_n = (1 << 7), // -n + OPT_s = (1 << 8), // -s + OPT_u = (1 << 9), // -u + OPT_c = (1 << 10), // -c + OPT_d = (1 << 11), // -d + OPT_x = (1 << 12), // -x + OPT_p = (1 << 13), // -p + OPT_OUTPUT = (1 << 14), // -O + OPT_OKNODO = (1 << 15) * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -o + OPT_VERBOSE = (1 << 16) * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -v + OPT_NICELEVEL = (1 << 17) * ENABLE_FEATURE_START_STOP_DAEMON_FANCY, // -N +}; +#define QUIET (option_mask32 & OPT_QUIET) +#define TEST (option_mask32 & OPT_TEST) + +struct globals { + struct pid_list *found_procs; + const char *userspec; + const char *cmdname; + const char *execname; + const char *pidfile; + char *execname_cmpbuf; + unsigned execname_sizeof; + int user_id; + smallint signal_nr; +#ifdef OLDER_VERSION_OF_X + struct stat execstat; +#endif +} FIX_ALIASING; +#define G (*(struct globals*)bb_common_bufsiz1) +#define userspec (G.userspec ) +#define cmdname (G.cmdname ) +#define execname (G.execname ) +#define pidfile (G.pidfile ) +#define user_id (G.user_id ) +#define signal_nr (G.signal_nr ) +#define INIT_G() do { \ + setup_common_bufsiz(); \ + user_id = -1; \ + signal_nr = 15; \ +} while (0) + +#ifdef OLDER_VERSION_OF_X +/* -x,--exec EXECUTABLE + * Look for processes with matching /proc/$PID/exe. + * Match is performed using device+inode. + */ +static int pid_is_exec(pid_t pid) +{ + struct stat st; + char buf[sizeof("/proc/%u/exe") + sizeof(int)*3]; + + sprintf(buf, "/proc/%u/exe", (unsigned)pid); + if (stat(buf, &st) < 0) + return 0; + if (st.st_dev == G.execstat.st_dev + && st.st_ino == G.execstat.st_ino) + return 1; + return 0; +} +#else +static int pid_is_exec(pid_t pid) +{ + ssize_t bytes; + char buf[sizeof("/proc/%u/cmdline") + sizeof(int)*3]; + char *procname, *exelink; + int match; + + procname = buf + sprintf(buf, "/proc/%u/exe", (unsigned)pid) - 3; + + exelink = xmalloc_readlink(buf); + match = (exelink && strcmp(execname, exelink) == 0); + free(exelink); + if (match) + return match; + + strcpy(procname, "cmdline"); + bytes = open_read_close(buf, G.execname_cmpbuf, G.execname_sizeof); + if (bytes > 0) { + G.execname_cmpbuf[bytes] = '\0'; + return strcmp(execname, G.execname_cmpbuf) == 0; + } + return 0; +} +#endif + +static int pid_is_name(pid_t pid) +{ + /* /proc/PID/stat is "PID (comm_15_bytes_max) ..." */ + char buf[32]; /* should be enough */ + char *p, *pe; + + sprintf(buf, "/proc/%u/stat", (unsigned)pid); + if (open_read_close(buf, buf, sizeof(buf) - 1) < 0) + return 0; + buf[sizeof(buf) - 1] = '\0'; /* paranoia */ + p = strchr(buf, '('); + if (!p) + return 0; + pe = strrchr(++p, ')'); + if (!pe) + return 0; + *pe = '\0'; + /* we require comm to match and to not be truncated */ + /* in Linux, if comm is 15 chars, it may be a truncated + * name, so we don't allow that to match */ + if (strlen(p) >= COMM_LEN - 1) /* COMM_LEN is 16 */ + return 0; + return strcmp(p, cmdname) == 0; +} + +static int pid_is_user(int pid) +{ + struct stat sb; + char buf[sizeof("/proc/") + sizeof(int)*3]; + + sprintf(buf, "/proc/%u", (unsigned)pid); + if (stat(buf, &sb) != 0) + return 0; + return (sb.st_uid == (uid_t)user_id); +} + +static void check(int pid) +{ + struct pid_list *p; + + if (execname && !pid_is_exec(pid)) { + return; + } + if (cmdname && !pid_is_name(pid)) { + return; + } + if (userspec && !pid_is_user(pid)) { + return; + } + p = xmalloc(sizeof(*p)); + p->next = G.found_procs; + p->pid = pid; + G.found_procs = p; +} + +static void do_pidfile(void) +{ + FILE *f; + unsigned pid; + + f = fopen_for_read(pidfile); + if (f) { + if (fscanf(f, "%u", &pid) == 1) + check(pid); + fclose(f); + } else if (errno != ENOENT) + bb_perror_msg_and_die("open pidfile %s", pidfile); +} + +static void do_procinit(void) +{ + DIR *procdir; + struct dirent *entry; + int pid; + + if (pidfile) { + do_pidfile(); + return; + } + + procdir = xopendir("/proc"); + + pid = 0; + while (1) { + errno = 0; /* clear any previous error */ + entry = readdir(procdir); +// TODO: this check is too generic, it's better +// to check for exact errno(s) which mean that we got stale entry + if (errno) /* Stale entry, process has died after opendir */ + continue; + if (!entry) /* EOF, no more entries */ + break; + pid = bb_strtou(entry->d_name, NULL, 10); + if (errno) /* NaN */ + continue; + check(pid); + } + closedir(procdir); + if (!pid) + bb_simple_error_msg_and_die("nothing in /proc - not mounted?"); +} + +static int do_stop(void) +{ + const char *what; + struct pid_list *p; + int killed = 0; + + if (cmdname) { + if (ENABLE_FEATURE_CLEAN_UP) what = xstrdup(cmdname); + if (!ENABLE_FEATURE_CLEAN_UP) what = cmdname; + } else if (execname) { + if (ENABLE_FEATURE_CLEAN_UP) what = xstrdup(execname); + if (!ENABLE_FEATURE_CLEAN_UP) what = execname; + } else if (pidfile) { + what = xasprintf("process in pidfile '%s'", pidfile); + } else if (userspec) { + what = xasprintf("process(es) owned by '%s'", userspec); + } else { + bb_simple_error_msg_and_die("internal error, please report"); + } + + if (!G.found_procs) { + if (!QUIET) + printf("no %s found; none killed\n", what); + killed = -1; + goto ret; + } + for (p = G.found_procs; p; p = p->next) { + if (kill(p->pid, TEST ? 0 : signal_nr) == 0) { + killed++; + } else { + bb_perror_msg("warning: killing process %u", (unsigned)p->pid); + p->pid = 0; + if (TEST) { + /* Example: -K --test --pidfile PIDFILE detected + * that PIDFILE's pid doesn't exist */ + killed = -1; + goto ret; + } + } + } + if (!QUIET && killed) { + printf("stopped %s (pid", what); + for (p = G.found_procs; p; p = p->next) + if (p->pid) + printf(" %u", (unsigned)p->pid); + puts(")"); + } + ret: + if (ENABLE_FEATURE_CLEAN_UP) + free((char *)what); + return killed; +} + +#if ENABLE_FEATURE_START_STOP_DAEMON_LONG_OPTIONS +static const char start_stop_daemon_longopts[] ALIGN1 = + "stop\0" No_argument "K" + "start\0" No_argument "S" + "background\0" No_argument "b" + "quiet\0" No_argument "q" + "test\0" No_argument "t" + "make-pidfile\0" No_argument "m" + "output\0" Required_argument "O" +# if ENABLE_FEATURE_START_STOP_DAEMON_FANCY + "oknodo\0" No_argument "o" + "verbose\0" No_argument "v" + "nicelevel\0" Required_argument "N" +# endif + "startas\0" Required_argument "a" + "name\0" Required_argument "n" + "signal\0" Required_argument "s" + "user\0" Required_argument "u" + "chuid\0" Required_argument "c" + "chdir\0" Required_argument "d" + "exec\0" Required_argument "x" + "pidfile\0" Required_argument "p" +# if ENABLE_FEATURE_START_STOP_DAEMON_FANCY + "retry\0" Required_argument "R" +# endif + ; +# define GETOPT32 getopt32long +# define LONGOPTS start_stop_daemon_longopts, +#else +# define GETOPT32 getopt32 +# define LONGOPTS +#endif + +int start_stop_daemon_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int start_stop_daemon_main(int argc UNUSED_PARAM, char **argv) +{ + unsigned opt; + const char *signame; + const char *startas = NULL; + char *chuid; + const char *chdir; + const char *output = NULL; +#if ENABLE_FEATURE_START_STOP_DAEMON_FANCY +// const char *retry_arg = NULL; +// int retries = -1; + const char *opt_N; +#endif + + INIT_G(); + + opt = GETOPT32(argv, "^" + "KSbqtma:n:s:u:c:d:x:p:O:" + IF_FEATURE_START_STOP_DAEMON_FANCY("ovN:R:") + "\0" + "K:S:K--S:S--K" + /* -K or -S is required; they are mutually exclusive */ + ":m?p" /* -p is required if -m is given */ + ":K?xpun" /* -xpun (at least one) is required if -K is given */ + /* (the above does not seem to be enforced by Gentoo, it does nothing + * if no matching is specified with -K, and it ignores ARGS + * - does not take ARGS[0] as program name to kill) + */ +// ":S?xa" /* -xa (at least one) is required if -S is given */ +//Gentoo clone: "start-stop-daemon -S -- sleep 5" is a valid invocation + IF_FEATURE_START_STOP_DAEMON_FANCY(":q-v") /* -q turns off -v */ + , + LONGOPTS + &startas, &cmdname, &signame, &userspec, &chuid, &chdir, &execname, &pidfile, &output + IF_FEATURE_START_STOP_DAEMON_FANCY(,&opt_N) + /* We accept and ignore -R / --retry */ + IF_FEATURE_START_STOP_DAEMON_FANCY(,NULL) + ); + +//-O requires --background and absolute pathname (tested with 1.21.22). +//We don't bother requiring that (smaller code): +//#if ENABLE_FEATURE_START_STOP_DAEMON_FANCY +// if ((opt & OPT_OUTPUT) && !(opt & OPT_BACKGROUND)) +// bb_show_usage(); +//#endif + + if (opt & OPT_s) { + signal_nr = get_signum(signame); + if (signal_nr < 0) bb_show_usage(); + } + + //argc -= optind; + argv += optind; +// ARGS contains zeroth arg if -x/-a is not given, else it starts with 1st arg. +// These will try to execute "[/bin/]sleep 5": +// "start-stop-daemon -S -- sleep 5" +// "start-stop-daemon -S -x /bin/sleep -- 5" +// "start-stop-daemon -S -a sleep -- 5" +// NB: -n option does _not_ behave in this way: this will try to execute "5": +// "start-stop-daemon -S -n sleep -- 5" + if (opt & CTX_START) { + if (!execname) { /* -x is not given */ + execname = startas; + if (!execname) { /* neither -x nor -a is given */ + execname = argv[0]; + if (!execname) + bb_show_usage(); + argv++; + } + } + if (!startas) /* -a is not given: use -x EXECUTABLE or argv[0] */ + startas = execname; + *--argv = (char *)startas; + } + if (execname) { + G.execname_sizeof = strlen(execname) + 1; + G.execname_cmpbuf = xmalloc(G.execname_sizeof + 1); + } +// IF_FEATURE_START_STOP_DAEMON_FANCY( +// if (retry_arg) +// retries = xatoi_positive(retry_arg); +// ) + if (userspec) { + user_id = bb_strtou(userspec, NULL, 10); + if (errno) + user_id = xuname2uid(userspec); + } + + /* Both start and stop need to know current processes */ + do_procinit(); + + if (opt & CTX_STOP) { + int i = do_stop(); + return (opt & OPT_OKNODO) ? 0 : (i <= 0); + } + + /* else: CTX_START (-S). execname can't be NULL. */ + + if (G.found_procs) { + if (!QUIET) + printf("%s is already running\n", execname); + return !(opt & OPT_OKNODO); + } + +#ifdef OLDER_VERSION_OF_X + if (execname) + xstat(execname, &G.execstat); +#endif + + if (opt & OPT_BACKGROUND) { + /* Daemons usually call bb_daemonize_or_rexec(), but SSD can do + * without: SSD is not itself a daemon, it _execs_ a daemon. + * The usual NOMMU problem of "child can't run indefinitely, + * it must exec" does not bite us: we exec anyway. + * + * bb_daemonize(DAEMON_DEVNULL_STDIO | DAEMON_CLOSE_EXTRA_FDS | DAEMON_DOUBLE_FORK) + * can be used on MMU systems, but use of vfork() + * is preferable since we want to create pidfile + * _before_ parent returns, and vfork() on Linux + * ensures that (by blocking parent until exec in the child). + */ + pid_t pid = xvfork(); + if (pid != 0) { + /* Parent */ + /* why _exit? the child may have changed the stack, + * so "return 0" may do bad things + */ + _exit_SUCCESS(); + } + /* Child */ + setsid(); /* detach from controlling tty */ + /* Redirect stdin to /dev/null, close extra FDs */ + /* Testcase: "start-stop-daemon -Sb -d /does/not/exist usleep 1" should not eat error message */ + bb_daemon_helper(DAEMON_DEVNULL_STDIN + DAEMON_CLOSE_EXTRA_FDS); + if (!output) + output = bb_dev_null; /* redirect output just before execv */ + /* On Linux, session leader can acquire ctty + * unknowingly, by opening a tty. + * Prevent this: stop being a session leader. + */ + pid = xvfork(); + if (pid != 0) + _exit_SUCCESS(); /* Parent */ + } + if (opt & OPT_MAKEPID) { + /* User wants _us_ to make the pidfile */ + write_pidfile(pidfile); + } +#if ENABLE_FEATURE_START_STOP_DAEMON_FANCY + if (opt & OPT_NICELEVEL) { + /* Set process priority (must be before OPT_c) */ + int prio = getpriority(PRIO_PROCESS, 0) + xatoi_range(opt_N, INT_MIN/2, INT_MAX/2); + if (setpriority(PRIO_PROCESS, 0, prio) < 0) { + bb_perror_msg_and_die("setpriority(%d)", prio); + } + } +#endif + if (opt & OPT_c) { + struct bb_uidgid_t ugid; + parse_chown_usergroup_or_die(&ugid, chuid); + if (ugid.uid != (uid_t) -1L) { + struct passwd *pw = xgetpwuid(ugid.uid); + if (ugid.gid != (gid_t) -1L) + pw->pw_gid = ugid.gid; + /* initgroups, setgid, setuid: */ + change_identity(pw); + } else if (ugid.gid != (gid_t) -1L) { + xsetgid(ugid.gid); + setgroups(1, &ugid.gid); + } + } + if (opt & OPT_d) { + xchdir(chdir); + } + if (output) { + int outfd = xopen(output, O_WRONLY | O_CREAT | O_APPEND); + xmove_fd(outfd, STDOUT_FILENO); + xdup2(STDOUT_FILENO, STDERR_FILENO); + /* on execv error, the message goes to -O file. This is intended */ + } + /* Try: + * strace -oLOG start-stop-daemon -S -x /bin/usleep -a qwerty 500000 + * should exec "/bin/usleep", but argv[0] should be "qwerty": + */ + execvp(execname, argv); + bb_perror_msg_and_die("can't execute '%s'", startas); +} diff --git a/busybox-1_37_0/debianutils/which.c b/busybox-1_37_0/debianutils/which.c new file mode 100644 index 000000000..1f547919f --- /dev/null +++ b/busybox-1_37_0/debianutils/which.c @@ -0,0 +1,74 @@ +/* vi: set sw=4 ts=4: */ +/* + * Copyright (C) 1999-2004 by Erik Andersen + * Copyright (C) 2006 Gabriel Somlo + * + * Licensed under GPLv2 or later, see file LICENSE in this source tree. + */ +//config:config WHICH +//config: bool "which (4 kb)" +//config: default y +//config: help +//config: which is used to find programs in your PATH and +//config: print out their pathnames. + +//applet:IF_WHICH(APPLET_NOFORK(which, which, BB_DIR_USR_BIN, BB_SUID_DROP, which)) + +//kbuild:lib-$(CONFIG_WHICH) += which.o + +//usage:#define which_trivial_usage +//usage: "[-a] COMMAND..." +//usage:#define which_full_usage "\n\n" +//usage: "Locate COMMAND\n" +//usage: "\n -a Show all matches" +//usage: +//usage:#define which_example_usage +//usage: "$ which login\n" +//usage: "/bin/login\n" + +#include "libbb.h" + +int which_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; +int which_main(int argc UNUSED_PARAM, char **argv) +{ + char *env_path; + int status = 0; + /* This sizeof(): bb_default_root_path is shorter than BB_PATH_ROOT_PATH */ + char buf[sizeof(BB_PATH_ROOT_PATH)]; + + env_path = getenv("PATH"); + if (!env_path) + /* env_path must be writable, and must not alloc, so... */ + env_path = strcpy(buf, bb_default_root_path); + + getopt32(argv, "^" "a" "\0" "-1"/*at least one arg*/); + argv += optind; + + do { + int missing = 1; + + /* If file contains a slash don't use PATH */ + if (strchr(*argv, '/')) { + if (file_is_executable(*argv)) { + missing = 0; + puts(*argv); + } + } else { + char *path; + char *p; + + path = env_path; + /* NOFORK NB: xmalloc inside find_executable(), must have no allocs above! */ + while ((p = find_executable(*argv, &path)) != NULL) { + missing = 0; + puts(p); + free(p); + if (!option_mask32) /* -a not set */ + break; + } + } + status |= missing; + } while (*++argv); + + return status; +} diff --git a/busybox-1_37_0/docs/.gitignore b/busybox-1_37_0/docs/.gitignore new file mode 100644 index 000000000..3d1c5bd8a --- /dev/null +++ b/busybox-1_37_0/docs/.gitignore @@ -0,0 +1,5 @@ +/busybox.1 +/BusyBox.html +/busybox.net +/BusyBox.txt +/busybox.pod diff --git a/busybox-1_37_0/docs/Kconfig-language.txt b/busybox-1_37_0/docs/Kconfig-language.txt new file mode 100644 index 000000000..0ba8932ba --- /dev/null +++ b/busybox-1_37_0/docs/Kconfig-language.txt @@ -0,0 +1,255 @@ +Introduction +------------ + +The configuration database is collection of configuration options +organized in a tree structure: + + +- Code maturity level options + | +- Prompt for development and/or incomplete code/drivers + +- General setup + | +- Networking support + | +- System V IPC + | +- BSD Process Accounting + | +- Sysctl support + +- Loadable module support + | +- Enable loadable module support + | +- Set version information on all module symbols + | +- Kernel module loader + +- ... + +Every entry has its own dependencies. These dependencies are used +to determine the visible of an entry. Any child entry is only +visible if its parent entry is also visible. + +Menu entries +------------ + +Most entries define a config option, all other entries help to organize +them. A single configuration option is defined like this: + +config MODVERSIONS + bool "Set version information on all module symbols" + depends MODULES + help + Usually, modules have to be recompiled whenever you switch to a new + kernel. ... + +Every line starts with a key word and can be followed by multiple +arguments. "config" starts a new config entry. The following lines +define attributes for this config option. Attributes can be the type of +the config option, input prompt, dependencies, help text and default +values. A config option can be defined multiple times with the same +name, but every definition can have only a single input prompt and the +type must not conflict. + +Menu attributes +--------------- + +A menu entry can have a number of attributes. Not all of them are +applicable everywhere (see syntax). + +- type definition: "bool"/"tristate"/"string"/"hex"/"integer" + Every config option must have a type. There are only two basic types: + tristate and string, the other types base on these two. The type + definition optionally accepts an input prompt, so these two examples + are equivalent: + + bool "Networking support" + and + bool + prompt "Networking support" + +- input prompt: "prompt" ["if" ] + Every menu entry can have at most one prompt, which is used to display + to the user. Optionally dependencies only for this prompt can be added + with "if". + +- default value: "default" ["if" ] + A config option can have any number of default values. If multiple + default values are visible, only the first defined one is active. + Default values are not limited to the menu entry, where they are + defined, this means the default can be defined somewhere else or be + overridden by an earlier definition. + The default value is only assigned to the config symbol if no other + value was set by the user (via the input prompt above). If an input + prompt is visible the default value is presented to the user and can + be overridden by him. + Optionally dependencies only for this default value can be added with + "if". + +- dependencies: "depends on"/"requires" + This defines a dependency for this menu entry. If multiple + dependencies are defined they are connected with '&&'. Dependencies + are applied to all other options within this menu entry (which also + accept "if" expression), so these two examples are equivalent: + + bool "foo" if BAR + default y if BAR + and + depends on BAR + bool "foo" + default y + +- help text: "help" + This defines a help text. The end of the help text is determined by + the level indentation, this means it ends at the first line which has + a smaller indentation than the first line of the help text. + + +Menu dependencies +----------------- + +Dependencies define the visibility of a menu entry and can also reduce +the input range of tristate symbols. The tristate logic used in the +expressions uses one more state than normal boolean logic to express the +module state. Dependency expressions have the following syntax: + + ::= (1) + '=' (2) + '!=' (3) + '(' ')' (4) + '!' (5) + '||' (6) + '&&' (7) + +Expressions are listed in decreasing order of precedence. + +(1) Convert the symbol into an expression. Boolean and tristate symbols + are simply converted into the respective expression values. All + other symbol types result in 'n'. +(2) If the values of both symbols are equal, it returns 'y', + otherwise 'n'. +(3) If the values of both symbols are equal, it returns 'n', + otherwise 'y'. +(4) Returns the value of the expression. Used to override precedence. +(5) Returns the result of (2-/expr/). +(6) Returns the result of min(/expr/, /expr/). +(7) Returns the result of max(/expr/, /expr/). + +An expression can have a value of 'n', 'm' or 'y' (or 0, 1, 2 +respectively for calculations). A menu entry becomes visible when it's +expression evaluates to 'm' or 'y'. + +There are two type of symbols: constant and nonconstant symbols. +Nonconstant symbols are the most common ones and are defined with the +'config' statement. Nonconstant symbols consist entirely of alphanumeric +characters or underscores. +Constant symbols are only part of expressions. Constant symbols are +always surrounded by single or double quotes. Within the quote any +other character is allowed and the quotes can be escaped using '\'. + +Menu structure +-------------- + +The position of a menu entry in the tree is determined in two ways. First +it can be specified explicitely: + +menu "Network device support" + depends NET + +config NETDEVICES + ... + +endmenu + +All entries within the "menu" ... "endmenu" block become a submenu of +"Network device support". All subentries inherit the dependencies from +the menu entry, e.g. this means the dependency "NET" is added to the +dependency list of the config option NETDEVICES. + +The other way to generate the menu structure is done by analyzing the +dependencies. If a menu entry somehow depends on the previous entry, it +can be made a submenu of it. First the the previous (parent) symbol must +be part of the dependency list and then one of these two condititions +must be true: +- the child entry must become invisible, if the parent is set to 'n' +- the child entry must only be visible, if the parent is visible + +config MODULES + bool "Enable loadable module support" + +config MODVERSIONS + bool "Set version information on all module symbols" + depends MODULES + +comment "module support disabled" + depends !MODULES + +MODVERSIONS directly depends on MODULES, this means it's only visible if +MODULES is different from 'n'. The comment on the other hand is always +visible when MODULES it's visible (the (empty) dependency of MODULES is +also part of the comment dependencies). + + +Kconfig syntax +-------------- + +The configuration file describes a series of menu entries, where every +line starts with a keyword (except help texts). The following keywords +end a menu entry: +- config +- choice/endchoice +- comment +- menu/endmenu +- if/endif +- source +The first four also start the definition of a menu entry. + +config: + + "config" + + +This defines a config symbol and accepts any of above +attributes as options. + +choices: + + "choice" + + + "endchoice" + +This defines a choice group and accepts any of above attributes as +options. A choice can only be of type bool or tristate, while a boolean +choice only allows a single config entry to be selected, a tristate +choice also allows any number of config entries to be set to 'm'. This +can be used if multiple drivers for a single hardware exists and only a +single driver can be compiled/loaded into the kernel, but all drivers +can be compiled as modules. +A choice accepts another option "optional", which allows to set the +choice to 'n' and no entry needs to be selected. + +comment: + + "comment" + + +This defines a comment which is displayed to the user during the +configuration process and is also echoed to the output files. The only +possible options are dependencies. + +menu: + + "menu" +

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