time/namespace: Add max_time_namespaces ucount

Michael noticed that userns limit for number of time namespaces is missing.

Furthermore, time namespace introduced UCOUNT_TIME_NAMESPACES, but didn't
introduce an array member in user_table[]. It would make array's
initialisation OOB write, but by luck the user_table array has an excessive
empty member (all accesses to the array are limited with UCOUNT_COUNTS - so
it silently reuses the last free member.

Fixes user-visible regression: max_inotify_instances by reason of the
missing UCOUNT_ENTRY() has limited max number of namespaces instead of the
number of inotify instances.

Fixes: 769071ac9f20 ("ns: Introduce Time Namespace")
Reported-by: Michael Kerrisk (man-pages) <mtk.manpages@gmail.com>
Signed-off-by: Dmitry Safonov <dima@arista.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: Andrei Vagin <avagin@gmail.com>
Acked-by: Vincenzo Frascino <vincenzo.frascino@arm.com>
Cc: stable@kernel.org
Link: https://lkml.kernel.org/r/20200406171342.128733-1-dima@arista.com

authored by Dmitry Safonov and committed by Thomas Gleixner eeec26d5 b801f1e2

Changed files
+7
Documentation
admin-guide
sysctl
kernel
+6
Documentation/admin-guide/sysctl/user.rst
··· 65 65 The maximum number of pid namespaces that any user in the current 66 66 user namespace may create. 67 67 68 + max_time_namespaces 69 + =================== 70 + 71 + The maximum number of time namespaces that any user in the current 72 + user namespace may create. 73 + 68 74 max_user_namespaces 69 75 =================== 70 76
+1
kernel/ucount.c
··· 69 69 UCOUNT_ENTRY("max_net_namespaces"), 70 70 UCOUNT_ENTRY("max_mnt_namespaces"), 71 71 UCOUNT_ENTRY("max_cgroup_namespaces"), 72 + UCOUNT_ENTRY("max_time_namespaces"), 72 73 #ifdef CONFIG_INOTIFY_USER 73 74 UCOUNT_ENTRY("max_inotify_instances"), 74 75 UCOUNT_ENTRY("max_inotify_watches"),