When using functions like mkpath(), makepath(), and makefifo(),
make sure your umask() is correct so you do not accidentally create
files and directories accessible to other users than intended.
-
atonum(str)Convert string to natural number, works for 32-bit non-negative integers. Returns -1 on error. (Uses
strtonum()internally.) -
blkdev(dev)Create block device
-
chardev(dev)Create character device
-
erase(path)Erase file/directory with
remove(). Errors onstderr -
erasef(fmt, ...)Like
erase()but takes a formatted printf-like string as argument. -
makedir(path)Create directory, like
mkdir(). Errors onstderr -
makefifo(path)Create a FIFO, like
mkfifo(). Errors onstderr -
min(a,b)/max(a,b)These macros take care to avoid double evaluation.
-
touch(path)Create a file, or update mtime. Errors on
stderr -
touchf(fmt, ...)Like
touch()but takes a formatted printf-like string as argument. -
S_ISEXEC(mode_t m)Mysteriously missing from GLIBC
-
ISCLR(word,bit)Is bit in (integer) word cleared?
-
ISSET(word,bit)Is bit in (integer) word set?
-
ISOTHER(word,bit)Are any other bits, except bit, in (integer) word set?
-
SETBIT(word,bit)Set bit in (integer) word.
-
CLRBIT(word,bit)Clear bit in (integer) word.
-
NELEMS(array)Returns the number of elements in an array. From the great book, The Practice of Programming, by Kernighan and Pike.
-
chomp(str)Perl like chomp function, chop off last char if newline.
-
copyfile(src, dst, len, opt)Like the shell
cp(1)anddd(1),, can also copy symlinks and preserve the mtime of the source file. The opt argument can be a mask of:LITE_FOPT_COPYFILE_SYM (0x01)LITE_FOPT_KEEP_MTIME (0x02)
In releases prior to v2.0 the opt argument was called
symlink. The APIs are 100% compatible if the value1was used to enable the symlink option. -
dir(dir, ext, filter, list, strip)Wrapper for
scandir()with optional filter. Returns a list of names: files and directories that must be freed after use. See the unit test for an example, or take a look atglob(3), it's probably what you want anyway. -
fcopyfile(src, dst)Like
copyfile()but uses already openFILE *pointers. Copies from current file positions to current file positions until EOF. -
fexist(file)Check for the existence of a file, returns True(1) or False(0).
-
fisdir(path)Check for the existence of a directory, returns True(1) or False(0).
-
fopenf(mode, fmt, ...)andvfopenf(mode, fmt, ap)Like
fopen(), but takes a formatted string as argument. This greatly simplifies operations that usually consist of composing a filename from parts into a dynamic buffer before actually opening the file.Notice: the swapped order of
pathnameandmode! -
fremove(fmt, ...)Like
remove(), but takes a formatted string as argument. This greatly simplifies operations that usually consist of composing a filename from parts into a dynamic buffer before actually removing the file. -
fsendfile(src, dst, len)Copy data between file streams, very similar to
fcopyfile(), butdstis allowed to beNULLto be able to read and discardlenbytes fromsrc. -
ifconfig(ifname, addr, mask, up)Basic ifconfig like operations on an interface. Only supports IPv4 addresses. Note that mask is not CIDR notation.
-
lfopen(file, sep),lfclose(lf)LITE file API for parsing UNIX style configuration files like
/etc/protocolsand/etc/services. -
lftok(lf)Read tokens, delimited by
sep, from file opened withlfopen(). -
lfgetkey(lf, key)Find
keyin file opened withlfopen(), return value/argument. -
lfgetint(lf, key)Wrapper for
lfgetkey(), returns positive integer value tokey, or-1ifkeyis not found. -
fgetint(file, sep, key)Wrapper for
lfopen(),lfgetint(), andlfclose(). Useful for when only reading a singlekeyfrom a file. -
makepath(dir)Create all components of the specified directory.
-
mkpath(dir, mode)Like
makepath(), but also takes amode_tpermission mode argument. -
fmkpath(mode, fmt, ...)Like
mkpath(), but takes a formatted string as argument.Notice: the swapped order of
pathnameandmode! -
movefile(src, dst)Like
copyfile(), but renamessrctodst, or recreates symlink with thedstname. On successful operation the source is removed and the function returns POSIX OK (0). -
pidfile(name)Create a daemon PID file using either the
nameas a full path, ifnamestarts with/, or in_PATH_VARRUNusingnameas the basename of the application. IfnameisNULL, then__prognameis used as the basename. The resulting file name is available to the user as a read-only pointer:extern char *__pidfile_name;Use this function to create a PID file for your daemon when it is ready to receive signals. A client application may poll for the existence of this file, so make sure to have your signal handlers properly setup before calling this function.
The PID file is removed when the program exits, using an
atexit()handler. However, depending on how the program terminates the file may still exist even though the program is no longer running.Calling this function multiple times updates the mtime of the file. Only one
atexit()handler is created, regardless of the amount of times the function is called. If the file is removed, subsequent calls to this function will recreate the file.See below for a link to OpenBSD man page.
-
pidfile_read(pidfile)Read PID from pid file created by
pidfile(). -
pidfile_signal(pidfile, signal)Send signal to PID found in pid file created by
pidfile(). -
progress(percent, max_width)Simple ASCII progress bar with a spinner. Start it with
percent=0and set themax_width=charsto indicate width of the progress bar. Called multiple times with the same percentage value cause spinner to spin. -
rsync(src, dst, opt, *filter())Very simple
rsync()to copy files and directories recursively. It supports pruning files from the destination tree that do not exist in the source tree and preserving the mtime of the source files. The opt argument can be a mask of:LITE_FOPT_RSYNC_DELETE (0x01)LITE_FOPT_KEEP_MTIME (0x02)
In releases prior to v2.0 the argument controlling pruning was called
delete, it is now calledopt. The APIs are 100% compatible if the value1was used. -
runbg(cmd, delay)Run a command in the background, after delay microseconds, essentially a background
execvp()with a delay. The function employs double-fork to prevent zombies and closes all open files, including stdio.
char *cmd[] = { "sh", "-c", "echo 'hej' >/tmp/foo", NULL};
runbg(cmd, 200000); /* Create /tmp/foo after 200 millisec */
/* Execution continues here immediately */-
strmatch(str, list),strnmatch(str, list, len)Find matching string in an array of strings. Returns index in array on match, or
-1on error or not found.strnmatch()takes an extra arg to compare onlylennumber of characters fromstr. -
strtrim(str)Trims a string from any leading and trailing white-space, returns the trimmed result in the same buffer.
-
systemf(fmt, ...)Like
system(), but takes a formatted string as argument. This greatly simplifies operations that usually consist of composing a command from parts into a dynamic buffer before calling it. -
telnet_open(addr, port), telnet_close(ctx), telnet_expect(ctx, script, output)Poor mans telnet expect in C. Opens connection to a Telnet service; FTP, Telnet, similar, and run an expect-like script.
-
telnet_session(addr, port, script output)Wrapper for the above three in one API.
-
tempfile()Secure replacement for
tmpfile(). Creates an invisible temporary file in/tmpthat is removed when the returnedFILEpointer is closed.Note: Requires Linux v3.11, or later, will fall back to the old and unsafe
tmpfile()on older systems. -
truncatef(length, fmt, ...)Like
truncate(), but takes a formatted string as argument. This simplifies some operations when the filename otherwise have to be composed from parts into a separate array before calling the real function. -
which(cmd),whichp(cmd)C implementation of UNIX which(1). Returns a malloc'ed string with the full path to
cmdon success, otherwiseNULL.whichp()is a predicate function, returnsTRUEorFALSE.Note:
which("/bin/ps aux")will return/bin/ps, orTRUE, provided of course/bin/psexists. -
yorn(fmt, ...)Pose a question to user, appended with
(y/N)?, returnsTRUEfor yes (bothyandYare handled) andFALSEfor everything else.
These functions can be used to simplify access to data in /proc and
/sys on a Linux system.
-
readsnf(line, len, fmt, ...)Read first line from a file composed from
fmt, with optional args. At mostlenbytes from the file are stored inline.On success this function returns
linewith any trailing newlineschomp()ed off. On errorNULLis returned. -
vreadsnf(line, len, fmt, ap)Similar to
readsnf()but takes ava_listargument instead. -
writesf(str, mode, fmt, ...)Write the string buffer
str, with an additional newline, to a file composed fromfmt, with optional args. The file is opened with the givenmode, e.g. "w+", which allows for both replacing and appending file content.The function returns POSIX OK(0) on success or -1 on failure with the
errnovariable set to a value from eitherfopen()orfclose().
Read and write 32-bit and 64-bit signed values from/to files.
-
vreadllf(value, fmt, ap)andreadllf(value, fmt, ...)Only the first line is read. If the line has newline that is stripped before calling
strtoll()on the line. The arguments to the latter function is such that it can convert also from a hexadecimal value.This function may fail and return -1 on opening the file, reading a line, or if the
strtoll()function fails. All of which set theerrnovariable. Otherwise this function return POSIX OK(0). -
readdf(value, fmt, ...)Read a signed 32-bit value from a file composed from
fmt, with optional args. This function usevreadllf()with an additional range checking forINT_MINandINT_MAX. Values outside that cause this function to return -1 witherrnoset toERANGE. -
writedf(value, mode, fmt, ...)Write a signed 32-bit
valueto a file composed fromfmt, with optional args. The file is opened with the givenmode, e.g. "w+", which allows for both replacing and appending file content.The function returns POSIX OK(0) on success or -1 on failure with the
errnovariable set to a value from eitherfopen()orfclose(). -
writellf(value, mode, fmt, ...)Write a signed 64-bit
valueto a file composed fromfmt, with optional args. The file is opened with the givenmode, e.g. "w+", which allows for both replacing and appending file content.The function returns POSIX OK(0) on success or -1 on failure with the
errnovariable set to a value from eitherfopen()orfclose().
The following are useful GNU functions, that do not exist on *BSD, and some other platforms.
-
strdupa(str) -
strndupa(str) -
strnlen(str, lim)
The following are popular functions and highly useful macros from the *BSD world of UNIX that are sadly missing on Linux.
-
fparseln(fp, *len, *lineno, delim, flags) -
pidfile(basename)http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/pidfile.3
Note: the version of
pidfile()in -lite has been extended to handle it being called multiple times, i.e. to not create multipleatexit()handlers, and also to export a few internal paths:__pidfile_path: prefix path, default_PATH_VARRUN. Notice the trailing slash requirement if you want to override it!__pidfile_name: full path to PID file , similar to__progname. See previous section for details.
-
reallocarray(ptr, nmemb, size) -
strlcpy(dst, src, len)http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/strlcpy.3
-
strlcat(dst, src, len)http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/strlcat.3
-
strtonum()http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/strtonum.3
-
sys/queue.hAPIhttp://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/LIST_EMPTY.3
-
sys/tree.hAPINiels Provos' famous splay and red-black tree implementation.
http://www.openbsd.org/cgi-bin/man.cgi/OpenBSD-current/man3/SPLAY_FOREACH.3