x86: Add seperate non-temporal tunable for memset
[glibc.git] / nss / nss_files / files-init.c
blob45fb49cb676a139a4e5bdd376b9ce9511ca8f233
1 /* Initialization in nss_files module.
2 Copyright (C) 2011-2024 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #ifdef USE_NSCD
21 #include <string.h>
22 #include <nscd/nscd.h>
23 #include <nss.h>
24 #include <nss_files.h>
26 static void
27 register_file (void (*cb) (size_t, struct traced_file *),
28 int db, const char *path, int crinit)
30 size_t pathlen = strlen (path) + 1;
31 struct traced_file *file = malloc (sizeof (struct traced_file) + pathlen);
32 /* Do not register anything on memory allocation failure. nscd will
33 fail soon anyway. */
34 if (file != NULL)
36 init_traced_file (file, path, crinit);
37 cb (db, file);
41 void
42 _nss_files_init (void (*cb) (size_t, struct traced_file *))
44 register_file (cb, pwddb, "/etc/passwd", 0);
45 register_file (cb, grpdb, "/etc/group", 0);
46 register_file (cb, hstdb, "/etc/hosts", 0);
47 register_file (cb, hstdb, "/etc/resolv.conf", 1);
48 register_file (cb, servdb, "/etc/services", 0);
49 register_file (cb, netgrdb, "/etc/netgroup", 0);
51 libc_hidden_def (_nss_files_init)
53 #endif