From 633445be1a9be37ae727c044417f5607706cf4ae Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Tue, 26 Jun 2018 00:25:28 +0000 Subject: Initial commit --- doc/index.html | 163 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 163 insertions(+) create mode 100644 doc/index.html (limited to 'doc/index.html') diff --git a/doc/index.html b/doc/index.html new file mode 100644 index 0000000..49cf697 --- /dev/null +++ b/doc/index.html @@ -0,0 +1,163 @@ + + + + + + nsss - a secure NSS-like implementation for small libcs + + + + + + +

+Software
+skarnet.org +

+ +

nsss

+ +

What is it ?

+ +

+ nsss is an implementation of a subset of the pwd.h, +group.h and shadow.h family of functions, +performing user database access on Unix systems. +

+ +

+ Usually, user database access via getpwnam() and similar +function is provided by the system's libc. However, not all libcs implement +a configurable backend for the user/group database. For instance the +musl libc, on Linux, only supports +the standard /etc/passwd mechanism; it also supports the +nscd protocol but this is not quite enough to implement the +full set of database access functions with certain backends (such as a +LDAP server). +

+ +

+ nsss is a secure implementation of configurable user/group/shadow +database access, providing getpwnam() et al. functionality +by communicating over a Unix domain socket with a daemon; the daemon +can perform lookups in any database it chooses. +

+ +

+ Unlike NSS, nsss does not perform dynamic module +loading, only adds a small footprint to the application's binary, +and does not add any complex decision engine into the client's address +space. Applications can be statically linked against the nsss +library, and still benefit from configurable user database access +functions. +

+ +
+ + + +
+ +

Installation

+ +

Requirements

+ + + +

Licensing

+ +

+ nsss is free software. It is available under the +ISC license. +

+ +

Download

+ + + +

Compilation

+ + + +

Upgrade notes

+ + + +
+ +

Reference

+ +

Commands

+ + + +

Libraries

+ + + +
+ + +

Related resources

+
+ +

nsss discussion

+ + + + + -- cgit v1.3.1