Allow disabling of subordinate IDs.
* configure.in: Add configure options --enable-subordinate-ids / --disable-subordinate-ids. Enabled by default. * lib/prototypes.h: Include <config.h> before using its macros. * lib/commonio.h, lib/commonio.c: Define commonio_append only when ENABLE_SUBIDS is defined. * lib/prototypes.h, libmisc/find_new_sub_gids.c, libmisc/find_new_sub_uids.c: Likewise. * lib/subordinateio.h, lib/subordinateio.c: Likewise. * libmisc/user_busy.c: Only check if subordinate IDs are in use if ENABLE_SUBIDS is defined. * src/Makefile.am: Create newgidmap and newuidmap only if ENABLE_SUBIDS is defined. * src/newusers.c: Check for ENABLE_SUBIDS to enable support for subordinate IDs. * src/useradd.c: Likewise. * src/userdel.c: Likewise. * src/usermod.c: Likewise. * man/Makefile.am: Install man1/newgidmap.1, man1/newuidmap.1, man5/subgid.5, and man5/subuid.5 only if ENABLE_SUBIDS is defined. * man/fr/Makefile.am: Install man1/newgidmap.1, man1/newuidmap.1, man5/subgid.5, and man5/subuid.5 (not translated yet). * man/generate_mans.mak: Add xsltproc conditionals subids/no_subids. * man/login.defs.d/SUB_GID_COUNT.xml: Add dependency on subids condition. * man/login.defs.d/SUB_UID_COUNT.xml: Likewise. * man/usermod.8.xml: Document options for subordinate IDs and reference subgid(5) / subuid(5) depending on the subids condition.
This commit is contained in:
@@ -30,9 +30,7 @@ man_MANS = \
|
||||
man1/login.1 \
|
||||
man5/login.defs.5 \
|
||||
man8/logoutd.8 \
|
||||
man1/newgidmap.1 \
|
||||
man1/newgrp.1 \
|
||||
man1/newuidmap.1 \
|
||||
man8/newusers.8 \
|
||||
man8/nologin.8 \
|
||||
man1/passwd.1 \
|
||||
@@ -45,8 +43,6 @@ man_MANS = \
|
||||
man5/shadow.5 \
|
||||
man1/su.1 \
|
||||
man5/suauth.5 \
|
||||
man5/subgid.5 \
|
||||
man5/subuid.5 \
|
||||
man8/useradd.8 \
|
||||
man8/userdel.8 \
|
||||
man8/usermod.8 \
|
||||
@@ -62,6 +58,16 @@ if !USE_PAM
|
||||
man_MANS += $(man_nopam)
|
||||
endif
|
||||
|
||||
man_subids = \
|
||||
man1/newgidmap.1 \
|
||||
man1/newuidmap.1 \
|
||||
man5/subgid.5 \
|
||||
man5/subuid.5
|
||||
|
||||
if ENABLE_SUBIDS
|
||||
man_MANS += $(man_subids)
|
||||
endif
|
||||
|
||||
man_XMANS = \
|
||||
chage.1.xml \
|
||||
chfn.1.xml \
|
||||
@@ -187,6 +193,10 @@ if USE_PAM
|
||||
EXTRA_DIST += $(man_nopam)
|
||||
endif
|
||||
|
||||
if !ENABLE_SUBIDS
|
||||
EXTRA_DIST += $(man_subids)
|
||||
endif
|
||||
|
||||
generate_mans.deps: *.xml
|
||||
echo "# This file is generated" > $@
|
||||
awk 'BEGIN{FS="\"";} /^<!ENTITY .* * SYSTEM ".*">$$/{ f=FILENAME; sub(/.xml/,"",f); print "man" substr(f, length (f)) "/" f ": " $$2 }' $(man_XMANS) >> $@
|
||||
|
@@ -53,6 +53,16 @@ if !USE_PAM
|
||||
man_MANS += $(man_nopam)
|
||||
endif
|
||||
|
||||
man_subids = \
|
||||
man1/newgidmap.1 \
|
||||
man1/newuidmap.1 \
|
||||
man5/subgid.5 \
|
||||
man5/subuid.5
|
||||
|
||||
if ENABLE_SUBIDS
|
||||
man_MANS += $(man_subids)
|
||||
endif
|
||||
|
||||
EXTRA_DIST = \
|
||||
$(man_MANS) \
|
||||
man1/id.1 \
|
||||
@@ -62,5 +72,9 @@ if USE_PAM
|
||||
EXTRA_DIST += $(man_nopam)
|
||||
endif
|
||||
|
||||
if !ENABLE_SUBIDS
|
||||
EXTRA_DIST += $(man_subids)
|
||||
endif
|
||||
|
||||
include ../generate_translations.mak
|
||||
|
||||
|
@@ -20,6 +20,12 @@ else
|
||||
SHA_CRYPT_COND=no_sha_crypt
|
||||
endif
|
||||
|
||||
if ENABLE_SUBIDS
|
||||
SUBIDS_COND=subids
|
||||
else
|
||||
SUBIDS_COND=no_subids
|
||||
endif
|
||||
|
||||
if ENABLE_REGENERATE_MAN
|
||||
%.xml-config: %.xml
|
||||
if grep -q SHADOW-CONFIG-HERE $<; then \
|
||||
@@ -29,7 +35,7 @@ if ENABLE_REGENERATE_MAN
|
||||
fi
|
||||
|
||||
man1/% man3/% man5/% man8/%: %.xml-config Makefile config.xml
|
||||
$(XSLTPROC) --stringparam profile.condition "$(PAM_COND);$(SHADOWGRP_COND);$(TCB_COND);$(SHA_CRYPT_COND)" \
|
||||
$(XSLTPROC) --stringparam profile.condition "$(PAM_COND);$(SHADOWGRP_COND);$(TCB_COND);$(SHA_CRYPT_COND);$(SUBIDS_COND)" \
|
||||
--param "man.authors.section.enabled" "0" \
|
||||
--stringparam "man.output.base.dir" "" \
|
||||
--param "man.output.in.separate.dir" "1" \
|
||||
|
@@ -26,7 +26,7 @@
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
-->
|
||||
<varlistentry>
|
||||
<varlistentry condition="subids">
|
||||
<term><option>SUB_GID_MIN</option> (number)</term>
|
||||
<term><option>SUB_GID_MAX</option> (number)</term>
|
||||
<term><option>SUB_GID_COUNT</option> (number)</term>
|
||||
|
@@ -26,7 +26,7 @@
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
-->
|
||||
<varlistentry>
|
||||
<varlistentry condition="subids">
|
||||
<term><option>SUB_UID_MIN</option> (number)</term>
|
||||
<term><option>SUB_UID_MAX</option> (number)</term>
|
||||
<term><option>SUB_UID_COUNT</option> (number)</term>
|
||||
|
@@ -389,7 +389,7 @@
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<varlistentry condition="subids">
|
||||
<term>
|
||||
<option>-v</option>, <option>--add-sub-uids</option>
|
||||
<replaceable>FIRST</replaceable>-<replaceable>LAST</replaceable>
|
||||
@@ -408,7 +408,7 @@
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<varlistentry condition="subids">
|
||||
<term>
|
||||
<option>-V</option>, <option>--del-sub-uids</option>
|
||||
<replaceable>FIRST</replaceable>-<replaceable>LAST</replaceable>
|
||||
@@ -429,7 +429,7 @@
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<varlistentry condition="subids">
|
||||
<term>
|
||||
<option>-w</option>, <option>--add-sub-gids</option>
|
||||
<replaceable>FIRST</replaceable>-<replaceable>LAST</replaceable>
|
||||
@@ -448,7 +448,7 @@
|
||||
</para>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
<varlistentry>
|
||||
<varlistentry condition="subids">
|
||||
<term>
|
||||
<option>-W</option>, <option>--del-sub-gids</option>
|
||||
<replaceable>FIRST</replaceable>-<replaceable>LAST</replaceable>
|
||||
@@ -588,12 +588,14 @@
|
||||
<citerefentry>
|
||||
<refentrytitle>login.defs</refentrytitle><manvolnum>5</manvolnum>
|
||||
</citerefentry>,
|
||||
<citerefentry>
|
||||
<refentrytitle>subgid</refentrytitle><manvolnum>5</manvolnum>
|
||||
</citerefentry>,
|
||||
<citerefentry>
|
||||
<refentrytitle>subuid</refentrytitle><manvolnum>5</manvolnum>
|
||||
</citerefentry>,
|
||||
<phrase condition="subids">
|
||||
<citerefentry>
|
||||
<refentrytitle>subgid</refentrytitle><manvolnum>5</manvolnum>
|
||||
</citerefentry>,
|
||||
<citerefentry>
|
||||
<refentrytitle>subuid</refentrytitle><manvolnum>5</manvolnum>
|
||||
</citerefentry>,
|
||||
</phrase>
|
||||
<citerefentry>
|
||||
<refentrytitle>useradd</refentrytitle><manvolnum>8</manvolnum>
|
||||
</citerefentry>,
|
||||
|
Reference in New Issue
Block a user