]> granicus.if.org Git - shadow/blob - libmisc/pwd_init.c
Updated copyright dates.
[shadow] / libmisc / pwd_init.c
1 /*
2  * Copyright (c) 1990 - 1994, Julianne Frances Haugh
3  * Copyright (c) 1997       , Marek Michałkiewicz
4  * Copyright (c) 2003 - 2005, Tomasz Kłoczko
5  * Copyright (c) 2008       , Nicolas François
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. The name of the copyright holders or contributors may not be used to
17  *    endorse or promote products derived from this software without
18  *    specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23  * PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT
24  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32
33 #include <config.h>
34
35 #ident "$Id$"
36
37 #include "defines.h"
38 #include <signal.h>
39 #include <sys/types.h>
40 #include <sys/stat.h>
41 #ifdef HAVE_SYS_RESOURCE_H
42 #include <sys/resource.h>
43 #endif
44
45 #include "prototypes.h"
46
47 /*
48  * pwd_init - ignore signals, and set resource limits to safe
49  * values.  Call this before modifying password files, so that
50  * it is less likely to fail in the middle of operation.
51  */
52 void pwd_init (void)
53 {
54 #ifdef HAVE_SYS_RESOURCE_H
55         struct rlimit rlim;
56
57 #ifdef RLIMIT_CORE
58         rlim.rlim_cur = rlim.rlim_max = 0;
59         setrlimit (RLIMIT_CORE, &rlim);
60 #endif
61         rlim.rlim_cur = rlim.rlim_max = RLIM_INFINITY;
62 #ifdef RLIMIT_AS
63         setrlimit (RLIMIT_AS, &rlim);
64 #endif
65 #ifdef RLIMIT_CPU
66         setrlimit (RLIMIT_CPU, &rlim);
67 #endif
68 #ifdef RLIMIT_DATA
69         setrlimit (RLIMIT_DATA, &rlim);
70 #endif
71 #ifdef RLIMIT_FSIZE
72         setrlimit (RLIMIT_FSIZE, &rlim);
73 #endif
74 #ifdef RLIMIT_NOFILE
75         setrlimit (RLIMIT_NOFILE, &rlim);
76 #endif
77 #ifdef RLIMIT_RSS
78         setrlimit (RLIMIT_RSS, &rlim);
79 #endif
80 #ifdef RLIMIT_STACK
81         setrlimit (RLIMIT_STACK, &rlim);
82 #endif
83 #else                           /* !HAVE_SYS_RESOURCE_H */
84         set_filesize_limit (30000);
85         /* don't know how to set the other limits... */
86 #endif                          /* !HAVE_SYS_RESOURCE_H */
87
88         signal (SIGALRM, SIG_IGN);
89         signal (SIGHUP, SIG_IGN);
90         signal (SIGINT, SIG_IGN);
91         signal (SIGPIPE, SIG_IGN);
92         signal (SIGQUIT, SIG_IGN);
93         signal (SIGTERM, SIG_IGN);
94 #ifdef SIGTSTP
95         signal (SIGTSTP, SIG_IGN);
96 #endif
97 #ifdef SIGTTOU
98         signal (SIGTTOU, SIG_IGN);
99 #endif
100
101         umask (077);
102 }