mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
2c210d1eb8
(dbs): Initialize max_db_size fields. (nscd_init): When mapping the database, use max_db_size as the mapping size even if it is bigger than the file size. * nscd/mem.c (mempool_alloc): When resizing the file make sure the limit in max_db_size is not exceeded. Don't use mremap, just posix_fallocate is enough (according to Linus). Use posix_fallocate correctly. * nscd/nscd.conf: Add max-db-size parameters. * nscd/nscd.h (struct database_dyn): Add max_db_size field. Define DEFAULT_MAX_DB_SIZE and DEFAULT_DATASIZE_PER_BUCKET. Temporarily define TEMP_FAILURE_RETRY_VAL here. * nscd/nscd_conf.c (nscd_parse_file): Parse max-db-size parameter and add sanity checks for it. * nscd/aicache.c (addhstaiX): Use send with MSG_NOSIGNAL not write to send reply. * nscd/connection.c (writeall): Likewise. (handle_request): Likewise. * nscd/grpcache.c (cache_addgr): Likewise. * nscd/hstcache.c (cache_addhst): Likewise. * nscd/initgrcache.c (addinitgroupsX): Likewise. * nscd/nscd.c (parse_opt): Likewise. * nscd/nscd_stat.c (send_stats): Likewise. (receive_print_stats): Likewise. * nscd/pwdcache.c (cache_addpw): Likewise.
68 lines
1.8 KiB
Plaintext
68 lines
1.8 KiB
Plaintext
#
|
|
# /etc/nscd.conf
|
|
#
|
|
# An example Name Service Cache config file. This file is needed by nscd.
|
|
#
|
|
# Legal entries are:
|
|
#
|
|
# logfile <file>
|
|
# debug-level <level>
|
|
# threads <initial #threads to use>
|
|
# max-threads <maximum #threads to use>
|
|
# server-user <user to run server as instead of root>
|
|
# server-user is ignored if nscd is started with -S parameters
|
|
# stat-user <user who is allowed to request statistics>
|
|
# reload-count unlimited|<number>
|
|
# paranoia <yes|no>
|
|
# restart-interval <time in seconds>
|
|
#
|
|
# enable-cache <service> <yes|no>
|
|
# positive-time-to-live <service> <time in seconds>
|
|
# negative-time-to-live <service> <time in seconds>
|
|
# suggested-size <service> <prime number>
|
|
# check-files <service> <yes|no>
|
|
# persistent <service> <yes|no>
|
|
# shared <service> <yes|no>
|
|
# max-db-szie <service> <number bytes>
|
|
#
|
|
# Currently supported cache names (services): passwd, group, hosts
|
|
#
|
|
|
|
|
|
# logfile /var/log/nscd.log
|
|
# threads 6
|
|
# max-threads 128
|
|
# server-user nobody
|
|
# stat-user somebody
|
|
debug-level 0
|
|
# reload-count 5
|
|
paranoia no
|
|
# restart-interval 3600
|
|
|
|
enable-cache passwd yes
|
|
positive-time-to-live passwd 600
|
|
negative-time-to-live passwd 20
|
|
suggested-size passwd 211
|
|
check-files passwd yes
|
|
persistent passwd yes
|
|
shared passwd yes
|
|
max-db-size passwd 33554432
|
|
|
|
enable-cache group yes
|
|
positive-time-to-live group 3600
|
|
negative-time-to-live group 60
|
|
suggested-size group 211
|
|
check-files group yes
|
|
persistent group yes
|
|
shared group yes
|
|
max-db-size group 33554432
|
|
|
|
enable-cache hosts yes
|
|
positive-time-to-live hosts 3600
|
|
negative-time-to-live hosts 20
|
|
suggested-size hosts 211
|
|
check-files hosts yes
|
|
persistent hosts yes
|
|
shared hosts yes
|
|
max-db-size hosts 33554432
|