Denis Vlasenko
b0e5d42d4f
inotify: fix buffer overflow and "unreaped zombies" problem
2008-11-14 21:34:13 +00:00
Wade Berrier
142c5cb2a2
ifupdown.c: allow options to udhcpc to be configurable from .config
...
This allows more control over options that are passed to udhcpc
that are not configurable via /etc/network/interfaces.
Example: rather than quit when an initial lease isn't found,
you could use "--background" so that udhcpc keeps running and
continually attempts to get an ip. That way, when you plug in
the ethernet after powering on the device, you'll still get an ip.
2008-11-14 21:18:45 +00:00
Denis Vlasenko
86c285d900
stat: fix compile breakage (get_f_fsid() is used even if !FEATURE_STAT_FORMAT)
2008-11-13 21:53:32 +00:00
Denis Vlasenko
3470f9297e
libbb: sha_crypt -123 bytes
2008-11-13 13:25:18 +00:00
Denis Vlasenko
6bd54d48f4
libbb/pw_encrypt_sha: -28 bytes
2008-11-13 12:55:11 +00:00
Denis Vlasenko
6b1e3d7e73
libbb: remove glibc-style bloat from sha_crypt. -1130 bytes.
...
cryptpw: add more difficult test vectors.
2008-11-13 12:23:46 +00:00
Denis Vlasenko
4d47692fb8
arp: stop using globals
...
function old new delta
hw_set 1 - -1
arp_main 1559 1558 -1
sockfd 8 4 -4
hw 4 - -4
device 4 - -4
ap 4 - -4
packed_usage 25402 25393 -9
------------------------------------------------------------------------------
(add/remove: 0/4 grow/shrink: 0/3 up/down: 0/-27) Total: -27 bytes
2008-11-13 00:05:17 +00:00
Denis Vlasenko
fd5a3d2812
gzip: fix gzip -dc case caused by using stale getopt state
2008-11-12 22:06:46 +00:00
Denis Vlasenko
7753ea49bd
seq: shrink by 10 bytes
2008-11-12 21:37:19 +00:00
Denis Vlasenko
cf3e05bbdb
correct help texts
2008-11-12 21:18:58 +00:00
Denis Vlasenko
81c6a91251
telnetd: fix compile problem for non-standalone telnetd
2008-11-12 21:14:50 +00:00
Bernhard Reutner-Fischer
c021cb08b5
- add support for seq -s <separator>
2008-11-12 13:22:24 +00:00
Bernhard Reutner-Fischer
2598f761bb
- add seq -w support (Natanael Copa)
2008-11-12 12:59:56 +00:00
Denis Vlasenko
1ad4db1d8e
modprobe-small: fix failure to load when no arguments are given
...
modutils-24: fix bad interaction of xzalloc with xrealloc_vector; style fixes
2008-11-12 00:09:58 +00:00
Denis Vlasenko
f91f14d221
cksum, printenv: report errors via exitcode
...
function old new delta
cksum_main 296 315 +19
printenv_main 74 86 +12
2008-11-11 22:59:41 +00:00
Denis Vlasenko
0d8736772d
head: report file open errors with exitcode 1 (was happily returning 0)
...
head_main 409 417 +8
2008-11-11 22:43:10 +00:00
Denis Vlasenko
272710fe93
expr: on error, exit with exitcode 2
...
expr_main 101 110 +9
2008-11-11 22:36:58 +00:00
Denis Vlasenko
98f5cdfca7
stat: make stat -f show filesystem "ID:" as coreutils does
...
print_statfs 358 370 +12
2008-11-11 22:25:34 +00:00
Denis Vlasenko
f3c2d13602
env: support -uVAR=VAL
...
function old new delta
env_main 245 233 -12
2008-11-11 21:32:39 +00:00
Denis Vlasenko
618a3027ed
du: fix "du /dir /dir" case
...
reset_ino_dev_hashtable - 84 +84
du 388 376 -12
du_main 327 301 -26
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 0/2 up/down: 84/-38) Total: 46 bytes
2008-11-11 21:15:56 +00:00
Denis Vlasenko
3b35fbb632
runsvdir: straighten some convoluted code. logic is unchanged
2008-11-11 09:33:24 +00:00
Denis Vlasenko
9f2f808b0d
telnetd: correctly output 0xff char. ~100 bytes.
...
telnet: fix some atrocious names and style. no code changes
2008-11-11 02:56:39 +00:00
Denis Vlasenko
e9b9a19ad3
libbb: disable a second md5 implementation which managed to creep in :)
...
function old new delta
sha512_end 239 237 -2
sha256_end 162 160 -2
sha1_end 191 189 -2
md5_end 168 166 -2
__md5__magic 4 - -4
md5_crypt 627 621 -6
static.S 16 - -16
__md5_Init 42 - -42
static.P 64 - -64
__md5_Final 131 - -131
__md5_Update 153 - -153
static.C 268 12 -256
__md5_Transform 293 - -293
------------------------------------------------------------------------------
(add/remove: 0/7 grow/shrink: 0/6 up/down: 0/-973) Total: -973 bytes
2008-11-11 01:38:04 +00:00
Denis Vlasenko
6f05874b9d
webpage: announce 1.13.0 and 1.12.2
2008-11-10 22:23:20 +00:00
Denis Vlasenko
2211d5268c
libbb: add optionl support for SHA256/512 encrypted passwords
...
function old new delta
sha_crypt - 2423 +2423
cryptpw_main 128 183 +55
to64 - 29 +29
pw_encrypt 974 1000 +26
str_rounds - 11 +11
login_main 1532 1541 +9
packed_usage 25215 25200 -15
__md5_to64 29 - -29
------------------------------------------------------------------------------
(add/remove: 3/1 grow/shrink: 3/1 up/down: 2553/-44) Total: 2509 bytes
2008-11-10 18:52:35 +00:00
Denis Vlasenko
56dceb9b77
sha256,sha512: new applets. +4.9kb
...
we will require sha256/512 code for new $5$ and $6$ style
password hashes anyway, they are showing up already
in people's /etc/passwd...
2008-11-10 13:32:50 +00:00
Denis Vlasenko
c028ec280a
Typo fixes
2008-11-10 10:47:47 +00:00
Denis Vlasenko
0a009c3c6b
libbb: constify some data in sha1. gcc is clever enough to do it itself,
...
thus no actual code changes. Also some pointless beautifuing crept in.
2008-11-10 09:51:15 +00:00
Denis Vlasenko
4cfa5a27aa
build system: reorder less' options in config so that
...
they are properly indented
2008-11-10 09:33:42 +00:00
Denis Vlasenko
f8a22575f7
Bump version to 1.14.0.svn
2008-11-09 17:32:46 +00:00
Denis Vlasenko
90dbff7267
Bump version to 1.13.0
2008-11-09 17:28:41 +00:00
Denis Vlasenko
095f5b1c1c
update "maximum nommu" config
2008-11-09 16:12:38 +00:00
Denis Vlasenko
62e0dc2b51
update random config tester
2008-11-09 16:08:31 +00:00
Denis Vlasenko
44f96d39e1
randomconfig fixes
2008-11-09 02:23:42 +00:00
Denis Vlasenko
6d0443557c
telnetd: set SO_KEEPALIVE, users report it's useful. +20 bytes.
2008-11-09 00:44:40 +00:00
Denis Vlasenko
3fa36e2350
*: a bit of code shrink
...
function old new delta
stop_handler 41 38 -3
sulogin_main 508 504 -4
got_cont 4 - -4
cont_handler 11 - -11
startservice 309 297 -12
processorstart 423 409 -14
tcpudpsvd_main 1861 1843 -18
------------------------------------------------------------------------------
(add/remove: 0/2 grow/shrink: 0/5 up/down: 0/-66) Total: -66 bytes
2008-11-09 00:15:11 +00:00
Denis Vlasenko
73cc54388d
move documentation to docs/
2008-11-08 22:31:19 +00:00
Denis Vlasenko
4febd91326
kbd_mode: s/ioctl/xioctl. also saves 12 bytes
2008-11-08 21:42:14 +00:00
Denis Vlasenko
dc70069a46
kbd_mode: support -C TTY option
...
function old new delta
packed_usage 25334 25361 +27
kbd_mode_main 146 173 +27
2008-11-08 21:39:06 +00:00
Denis Vlasenko
2a8329e0e9
build system: remove '-Wl,' when we pass flags to ld.
2008-11-08 20:36:32 +00:00
Denis Vlasenko
30e1ab691c
libbb: add a TODO to support new SHA-based encrypted passwords
2008-11-07 13:36:46 +00:00
Denis Vlasenko
2ec94a7ee8
login: fix /etc/nologin handling (should prohibit non-root LOGINS,
...
not running login by non-root). minor code shrink.
function old new delta
login_main 1669 1602 -67
2008-11-07 12:59:31 +00:00
Denis Vlasenko
b0150d299f
telnetd: handle emacs M-DEL and IAC-NOP (putty keepalive)
...
by Jim Cathey (jcathey AT ciena.com)
function old new delta
telnetd_main 1314 1364 +50
2008-11-07 01:58:21 +00:00
Denis Vlasenko
4f7d90f1c7
defconfig: explain what we aim it to be
2008-11-07 01:32:11 +00:00
Denis Vlasenko
694b514148
login: fix /etc/nologin support
...
build system: fix config warnings ("Overlong line")
function old new delta
login_main 1735 1774 +39
__libc_tcdrain - 23 +23
------------------------------------------------------------------------------
(add/remove: 1/0 grow/shrink: 1/0 up/down: 62/0) Total: 62 bytes
2008-11-07 01:12:16 +00:00
Denis Vlasenko
239d06bd47
add mailutils/*
2008-11-06 23:42:42 +00:00
Denis Vlasenko
b9d572a273
total overhaul of mail applets. again. Vladimir as usual.
2008-11-06 23:41:38 +00:00
Denis Vlasenko
f10bc3964f
correction in comment
2008-11-06 23:28:42 +00:00
Denis Vlasenko
f068b3e9f4
sv: make default service dir configurable (Vladimir wants it)
2008-11-06 23:07:42 +00:00
Denis Vlasenko
3854c5ddf4
runsvdir: alternative methon of supporting runsvdir-as-init. +66 bytes.
...
*: s/int/pid_t where appropriate
2008-11-06 22:39:57 +00:00