2013-01-22 14:42:23 +05:30
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2021-12-05 21:05:27 +05:30
|
|
|
SPDX-FileCopyrightText: 2013 Eric W. Biederman
|
|
|
|
SPDX-License-Identifier: BSD-3-Clause
|
2013-01-22 14:42:23 +05:30
|
|
|
-->
|
|
|
|
<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook V4.5//EN"
|
|
|
|
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
|
|
|
|
<!-- SHADOW-CONFIG-HERE -->
|
|
|
|
]>
|
|
|
|
<refentry id='subgid.5'>
|
2020-01-12 18:54:04 +05:30
|
|
|
<refentryinfo>
|
|
|
|
<author>
|
|
|
|
<firstname>Eric</firstname>
|
|
|
|
<surname>Biederman</surname>
|
|
|
|
<contrib>Creation, 2013</contrib>
|
|
|
|
</author>
|
2021-06-11 18:55:42 +05:30
|
|
|
<author>
|
|
|
|
<firstname>Iker</firstname>
|
|
|
|
<surname>Pedrosa</surname>
|
|
|
|
<contrib>Developer, 2021</contrib>
|
|
|
|
</author>
|
2020-01-12 18:54:04 +05:30
|
|
|
</refentryinfo>
|
2013-01-22 14:42:23 +05:30
|
|
|
<refmeta>
|
|
|
|
<refentrytitle>subgid</refentrytitle>
|
|
|
|
<manvolnum>5</manvolnum>
|
2021-10-16 02:58:12 +05:30
|
|
|
<refmiscinfo class="sectdesc">File Formats and Configuration Files</refmiscinfo>
|
2013-01-22 14:42:23 +05:30
|
|
|
<refmiscinfo class="source">shadow-utils</refmiscinfo>
|
|
|
|
<refmiscinfo class="version">&SHADOW_UTILS_VERSION;</refmiscinfo>
|
|
|
|
</refmeta>
|
|
|
|
<refnamediv id='name'>
|
|
|
|
<refname>subgid</refname>
|
2021-06-11 18:55:42 +05:30
|
|
|
<refpurpose>the configuration for subordinate group ids</refpurpose>
|
2013-01-22 14:42:23 +05:30
|
|
|
</refnamediv>
|
|
|
|
|
|
|
|
<refsect1 id='description'>
|
|
|
|
<title>DESCRIPTION</title>
|
2021-06-11 18:55:42 +05:30
|
|
|
<para>
|
|
|
|
Subgid authorizes a group id to map ranges of group ids from its namespace
|
|
|
|
into child namespaces.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
The delegation of the subordinate gids can be configured via the
|
|
|
|
<replaceable>subid</replaceable> field in
|
|
|
|
<filename>/etc/nsswitch.conf</filename> file. Only one value can be set
|
|
|
|
as the delegation source. Setting this field to
|
|
|
|
<replaceable>files</replaceable> configures the delegation of gids to
|
|
|
|
<filename>/etc/subgid</filename>. Setting any other value treats
|
|
|
|
the delegation as a plugin following with a name of the form
|
|
|
|
<replaceable>libsubid_$value.so</replaceable>. If the value or plugin is
|
|
|
|
missing, then the subordinate gid delegation falls back to
|
|
|
|
<replaceable>files</replaceable>.
|
|
|
|
</para>
|
|
|
|
<para>
|
|
|
|
Note, that <command>groupadd</command> will only create entries in
|
|
|
|
<filename>/etc/subgid</filename> if subid delegation is managed via subid
|
|
|
|
files.
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 id='local-subordinate-delegation'>
|
|
|
|
<title>LOCAL SUBORDINATE DELEGATION</title>
|
2013-01-22 14:42:23 +05:30
|
|
|
<para>
|
|
|
|
Each line in <filename>/etc/subgid</filename> contains
|
2013-08-07 01:41:41 +05:30
|
|
|
a user name and a range of subordinate group ids that user
|
2013-01-22 14:42:23 +05:30
|
|
|
is allowed to use.
|
|
|
|
|
|
|
|
This is specified with three fields delimited by colons
|
|
|
|
(<quote>:</quote>).
|
|
|
|
These fields are:
|
|
|
|
</para>
|
|
|
|
<itemizedlist mark='bullet'>
|
|
|
|
<listitem>
|
2014-09-06 02:51:03 +05:30
|
|
|
<para>login name or UID</para>
|
2013-01-22 14:42:23 +05:30
|
|
|
</listitem>
|
|
|
|
<listitem>
|
2013-08-07 01:41:41 +05:30
|
|
|
<para>numerical subordinate group ID</para>
|
2013-01-22 14:42:23 +05:30
|
|
|
</listitem>
|
|
|
|
<listitem>
|
2013-08-07 01:41:41 +05:30
|
|
|
<para>numerical subordinate group ID count</para>
|
2013-01-22 14:42:23 +05:30
|
|
|
</listitem>
|
|
|
|
</itemizedlist>
|
|
|
|
|
|
|
|
<para>
|
2013-08-07 01:55:08 +05:30
|
|
|
This file specifies the group IDs that ordinary users can use, with
|
|
|
|
the <command>newgidmap</command> command, to configure gid mapping
|
|
|
|
in a user namespace.
|
2013-01-22 14:42:23 +05:30
|
|
|
</para>
|
|
|
|
|
|
|
|
<para>
|
2013-08-07 01:41:41 +05:30
|
|
|
Multiple ranges may be specified per user.
|
2013-01-22 14:42:23 +05:30
|
|
|
</para>
|
|
|
|
|
2014-09-06 04:04:40 +05:30
|
|
|
<para>
|
|
|
|
When large number of entries (10000-100000 or more) are defined in
|
|
|
|
<filename>/etc/subgid</filename>, parsing performance penalty will
|
|
|
|
become noticeable. In this case it is recommended to use UIDs
|
|
|
|
instead of login names. Benchmarks have shown speed-ups up to 20x.
|
|
|
|
</para>
|
|
|
|
|
2013-01-22 14:42:23 +05:30
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 id='files'>
|
|
|
|
<title>FILES</title>
|
|
|
|
<variablelist>
|
|
|
|
<varlistentry>
|
|
|
|
<term><filename>/etc/subgid</filename></term>
|
|
|
|
<listitem>
|
|
|
|
<para>Per user subordinate group IDs.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
<varlistentry>
|
|
|
|
<term><filename>/etc/subgid-</filename></term>
|
|
|
|
<listitem>
|
|
|
|
<para>Backup file for /etc/subgid.</para>
|
|
|
|
</listitem>
|
|
|
|
</varlistentry>
|
|
|
|
</variablelist>
|
|
|
|
</refsect1>
|
|
|
|
|
|
|
|
<refsect1 id='see_also'>
|
|
|
|
<title>SEE ALSO</title>
|
|
|
|
<para>
|
|
|
|
<citerefentry>
|
2013-08-11 19:35:26 +05:30
|
|
|
<refentrytitle>login.defs</refentrytitle><manvolnum>5</manvolnum>
|
2013-01-22 14:42:23 +05:30
|
|
|
</citerefentry>,
|
|
|
|
<citerefentry>
|
2013-08-11 19:35:26 +05:30
|
|
|
<refentrytitle>newgidmap</refentrytitle><manvolnum>1</manvolnum>
|
2013-01-22 14:42:23 +05:30
|
|
|
</citerefentry>,
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>newuidmap</refentrytitle><manvolnum>1</manvolnum>
|
|
|
|
</citerefentry>,
|
|
|
|
<citerefentry>
|
2013-08-11 19:35:26 +05:30
|
|
|
<refentrytitle>newusers</refentrytitle><manvolnum>8</manvolnum>
|
|
|
|
</citerefentry>,
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>subuid</refentrytitle><manvolnum>5</manvolnum>
|
|
|
|
</citerefentry>,
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>useradd</refentrytitle><manvolnum>8</manvolnum>
|
|
|
|
</citerefentry>,
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>userdel</refentrytitle><manvolnum>8</manvolnum>
|
2013-01-22 14:42:23 +05:30
|
|
|
</citerefentry>,
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>usermod</refentrytitle><manvolnum>8</manvolnum>
|
|
|
|
</citerefentry>,
|
2013-08-11 19:35:26 +05:30
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>user_namespaces</refentrytitle><manvolnum>7</manvolnum>
|
|
|
|
</citerefentry>.
|
2013-01-22 14:42:23 +05:30
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|