summaryrefslogtreecommitdiff
path: root/libbb/xfuncs.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* fix erroneous lowercasing by bb_hexdigits_upcase[i] | 0x10Denis Vlasenko2007-03-181-2/+2
|
* accumulated post-1.4.0 fixesDenis Vlasenko2007-01-241-3/+4
|
* openvt,getty,vfork_daemon_rexec,mount: tighten up fd cleanup codeDenis Vlasenko2007-01-191-2/+10
| | | | | | | | | (will close all fd's > 2 on daemonization now) getty: fix "getty -" support, and also do not try to chown/chmod "-" telnetd: fix "lost ctty" bug Yet another attempt on saner function names: bb_sanitize_server_stdio(0/1) -> bb_sanitize_stdio() + bb_daemonize();
* Rename bb_sanitize_stdio -> bb_sanitize_server_stdioDenis Vlasenko2007-01-141-1/+1
| | | | | | (name is still bad - it doesn't hint that function may do daemonization trick for you if asked to). Small fixes to fakeidentd.
* By popular request reinstate fakeidentd's standalone mode.Denis Vlasenko2007-01-141-0/+24
| | | | | | | | | | | Since this is also needed for other applets like telnetd, introduce generic driver for such things. It even supports inetd-wait ('linger') mode, when inetd hands out listen socket to child and waits to it to die, instead of handing out accepted socket and continuing listening itself (nowait mode). Code growth ~200 bytes. NB: our inetd doesn't support wait mode yet (or mabe it is buggy).
* random small size optimizationsDenis Vlasenko2007-01-121-0/+13
|
* missing piece of prev commit: ndelay_offDenis Vlasenko2006-12-241-6/+5
|
* find: fix spurious -exec error messagesDenis Vlasenko2006-12-231-2/+7
| | | | (bug reported by Bernhard Fischer <rep.nop@aon.at>)
* xfuncs.c: dietlibc actually HAS fdprintf!Denis Vlasenko2006-12-181-2/+2
| | | | | platform.h: define strchrnul for dietlibc ash: stop using few non-standard functions
* nc: add missing castDenis Vlasenko2006-12-181-0/+31
| | | | xfuncs: add dprintf for dietlibc
* cut 0.5k off mkfs.minixDenis Vlasenko2006-11-291-1/+4
| | | | assorted strtoul fixes (that's what brought me into minix)...
* small fixes:Denis Vlasenko2006-11-261-11/+19
| | | | | | fix xstrdup to not grossly overallocate memory use xopen instean of xopen3 in several places etc.
* tee: fix bug: argv[-1] is a no-no!Denis Vlasenko2006-11-251-2/+2
| | | | | bb_full_fd_action: optimize die_if_ferror: "<applet>: filename" isn't a good err msg, add "..I/O error"
* tar: fix and sanitize handling of long filenames/linknamesDenis Vlasenko2006-11-241-0/+1
| | | | | | | | | (GNU extensions 'K' and 'L'). We correctly handle them when untarring now, but unfortunately we still don't use them when tarring! That stupid 100 char limit is still there! The biggest problem is that we don't support 'pax' tar format. Linux kernel tarballs are in this format... shame
* telnetd: we were having telnetd with is ONLY inetd or ONLY standalone.Denis Vlasenko2006-11-221-0/+12
| | | | | What if I need to have both?? This patch introduces CONFIG_FEATURE_TELNETD_STANDALONE: y - both, n - only inetd.
* rodata cleanup. "unable to" == "cannot". -300 bytesDenis Vlasenko2006-11-181-2/+2
|
* smart_ulltoa5: make available in libbbDenis Vlasenko2006-11-051-6/+54
|
* get_terminal_width_height: do not pass insanely large valuesDenis Vlasenko2006-10-271-12/+23
|
* rename functions to more understandable namesDenis Vlasenko2006-10-261-0/+1
|
* remove bb_printf and the likeDenis Vlasenko2006-10-261-3/+3
|
* message string changes, mostly for consistency, also -32 bytes in .rodataDenis Vlasenko2006-10-201-1/+1
|
* add open_read_close() and similar stuffDenis Vlasenko2006-10-141-25/+7
|
* xread/write can use full_read/write (smaller code)Denis Vlasenko2006-10-121-10/+6
|
* small style fixesDenis Vlasenko2006-10-121-1/+2
|
* nmeter: new applet. ~4kDenis Vlasenko2006-10-111-10/+8
| | | | Fix build proble on x86_64
* build system overhaulDenis Vlasenko2006-10-051-67/+0
|
* rename bb_default_error_retval -> xfunc_error_retvalDenis Vlasenko2006-10-031-1/+1
|
* fdformat: remove redundant checkDenis Vlasenko2006-10-031-1/+1
|
* runit/chpst: "change process state" utilityDenis Vlasenko2006-10-031-0/+8
| | | | It's "nice" on steroids - can set uid/gid, mem/cpu limits etc. +3.5k
* Teach get_terminal_width_height to fall back to $LINES and $COLUMNS whenRob Landley2006-09-201-1/+24
| | | | used via things like a serial console.
* whitespace cleanupDenis Vlasenko2006-09-171-2/+2
|
* Strangely, using // in the comments I added was not a persistent accident.Rob Landley2006-09-141-65/+62
|
* Remove pointless "const". Bloatcheck says 0 bytes difference.Rob Landley2006-09-121-1/+1
|
* - merge xstat.c into xfuncs.cBernhard Reutner-Fischer2006-09-111-0/+10
|
* getty, sulogin: convert to using bb_msg for syslog outputDenis Vlasenko2006-09-071-1/+2
|
* removed a lot of trailing \n in bb_msg() calls. It is addedDenis Vlasenko2006-09-061-1/+1
| | | | | automatically by function itself.
* Implement optional syslog logging using ordinaryDenis Vlasenko2006-09-061-1/+1
| | | | | | bb_xx_msg calls, and convert networking/* to it. The rest of bbox will be converted gradually.
* xfunc: fix: && -> &. Also nuked two double semicolons...Denis Vlasenko2006-09-051-2/+2
|
* replacing func() with xfunc() where appropriateDenis Vlasenko2006-09-031-1/+1
|
* - pull from busybox_scratch: r15829:15850Bernhard Reutner-Fischer2006-08-281-63/+70
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Various fixes, cleanups and shrinkage: saves 952 Bytes: text data bss dec hex filename 1087742 15853 790632 1894227 1ce753 ../busybox/busybox.old 1086790 15853 790632 1893275 1ce39b busybox via: # scripts/bloat-o-meter ../busybox/busybox_unstripped.old busybox_unstripped function old new delta ipcrm_main 756 822 +66 getval - 61 +61 maybe_set_utc - 40 +40 udhcpc_main 2896 2912 +16 md5_hash_block 428 437 +9 opt 8 16 +8 qgravechar 106 110 +4 make_bitmap 292 295 +3 inflate_unzip 2056 2059 +3 add_partition 1412 1414 +2 __parsespent 156 158 +2 qrealloc 41 42 +1 format - 1 +1 catv_main 313 314 +1 watch_main 293 292 -1 varunset 81 80 -1 part 1 - -1 check_if_skip 837 836 -1 start_stop_daemon_main 840 837 -3 create_lost_and_found 175 172 -3 supress_non_delimited_lines 4 - -4 static.l 4 - -4 static.c 5 1 -4 bsd_sum_file 237 233 -4 eval2 338 332 -6 arithmetic_common 166 158 -8 cmpfunc 22 5 -17 cksum_main 294 275 -19 cmp_main 465 439 -26 dd_main 1535 1508 -27 rmmod_main 376 333 -43 cut_file 727 644 -83 ipcs_main 3809 3721 -88 cut_main 722 614 -108 date_main 1443 1263 -180 remove_ids 222 - -222 ------------------------------------------------------------------------------ (add/remove: 3/4 grow/shrink: 11/18 up/down: 217/-853) Total: -636 bytes
* Another whack at scripts/individual. Now builds 212 applets.Rob Landley2006-08-091-1/+1
|
* Add comments to all the functions in this file documenting what they're for.Rob Landley2006-08-041-33/+76
|
* Thinko spotted by Vladimir Dronnikov.Rob Landley2006-08-041-1/+1
|
* Remove xcalloc() and convert its callers to xzalloc(). About half of themRob Landley2006-08-031-9/+0
| | | | | were using "1" as one of the arguments anyway, and as for the rest a multiply and a push isn't noticeably bigger than pushing two arguments on the stack.
* Remove bb_ prefixes from xfuncs.c (and a few other places), consolidateRob Landley2006-08-031-22/+120
| | | | | | | | | | things like xasprintf() into xfuncs.c, remove xprint_file_by_name() (it only had one user), clean up lots of #includes... General cleanup pass. What I've been doing for the last couple days. And it conflicts! I've removed httpd.c from this checkin due to somebody else touching that file. It builds for me. I have to catch a bus. (Now you know why I'm looking forward to Mercurial.)
* Cleaup read() and write() variants, plus a couple of new functions likeRob Landley2006-07-161-16/+69
| | | | xlseek and fdlength() for the new mkswap.
* We need xsetuid() and xsetgid() because per-user process resource limits canRob Landley2006-07-151-0/+12
| | | | | prevent a process from switching to a user that has too many processes, and when that happens WE'RE STILL ROOT. See http://lwn.net/Articles/190331/
* Denis Vlasenko spotted the lack of bounds checking in my first attempt atRob Landley2006-07-111-11/+14
| | | | itoa/utoa.
* Add itoa and utoa to see what Denis Vlasenko thinks.Rob Landley2006-07-101-1/+50
|
* This kind of paranoia is a debug option at best.Rob Landley2006-06-301-1/+1
|