]> git.sur5r.net Git - openldap/blob - servers/slapd/main.c
Import resetting of c_dn/c_cdn after anonymous bind.
[openldap] / servers / slapd / main.c
1 #include "portable.h"
2
3 #include <stdio.h>
4
5 #include <ac/socket.h>
6 #include <ac/string.h>
7 #include <ac/time.h>
8 #include <ac/unistd.h>
9
10 #include "ldapconfig.h"
11 #include "slap.h"
12 #include "lutil.h"                      /* Get lutil_detach() */
13
14 /*
15  * when more than one slapd is running on one machine, each one might have
16  * it's own LOCAL for syslogging and must have its own pid/args files
17  */
18
19 #ifdef LOG_LOCAL4
20
21 #define DEFAULT_SYSLOG_USER  LOG_LOCAL4
22
23 typedef struct _str2intDispatch {
24
25         char    *stringVal;
26         int      abbr;
27         int      intVal;
28
29 } STRDISP, *STRDISP_P;
30
31
32 /* table to compute syslog-options to integer */
33 static STRDISP  syslog_types[] = {
34
35     { "LOCAL0",         6, LOG_LOCAL0 },
36     { "LOCAL1",         6, LOG_LOCAL1 },
37     { "LOCAL2",         6, LOG_LOCAL2 },
38     { "LOCAL3",         6, LOG_LOCAL3 },
39     { "LOCAL4",         6, LOG_LOCAL4 },
40     { "LOCAL5",         6, LOG_LOCAL5 },
41     { "LOCAL6",         6, LOG_LOCAL6 },
42     { "LOCAL7",         6, LOG_LOCAL7 },
43     NULL
44
45 };
46
47 static int   cnvt_str2int();
48
49 #endif  /* LOG_LOCAL4 */
50
51 /*
52  * the server's name must be accessible from the daemon module,
53  * to construct the pid/args file names
54  */
55 char  *serverName = NULL;
56
57
58 static void
59 usage( char *name )
60 {
61         fprintf( stderr, "usage: %s [-d ?|debuglevel] [-f configfile] [-p portnumber] [-s sysloglevel]", name );
62 #ifdef LOG_LOCAL4
63     fprintf( stderr, " [-l sysloguser]" );
64 #endif
65     fprintf( stderr, "\n" );
66 }
67
68 int
69 main( int argc, char **argv )
70 {
71         int             i;
72         int             inetd = 0;
73         int             port;
74         int             udp;
75         Backend         *be = NULL;
76         FILE            *fp = NULL;
77         char            *configfile;
78 #ifdef LOG_LOCAL4
79         int     syslogUser = DEFAULT_SYSLOG_USER;
80 #endif
81
82         configfile = SLAPD_DEFAULT_CONFIGFILE;
83         port = LDAP_PORT;
84         g_argc = argc;
85         g_argv = argv;
86
87         while ( (i = getopt( argc, argv, "d:f:ip:s:u" )) != EOF ) {
88                 switch ( i ) {
89 #ifdef LDAP_DEBUG
90                 case 'd':       /* turn on debugging */
91                         if ( optarg[0] == '?' ) {
92                                 printf( "Debug levels:\n" );
93                                 printf( "\tLDAP_DEBUG_TRACE\t%d\n",
94                                     LDAP_DEBUG_TRACE );
95                                 printf( "\tLDAP_DEBUG_PACKETS\t%d\n",
96                                     LDAP_DEBUG_PACKETS );
97                                 printf( "\tLDAP_DEBUG_ARGS\t\t%d\n",
98                                     LDAP_DEBUG_ARGS );
99                                 printf( "\tLDAP_DEBUG_CONNS\t%d\n",
100                                     LDAP_DEBUG_CONNS );
101                                 printf( "\tLDAP_DEBUG_BER\t\t%d\n",
102                                     LDAP_DEBUG_BER );
103                                 printf( "\tLDAP_DEBUG_FILTER\t%d\n",
104                                     LDAP_DEBUG_FILTER );
105                                 printf( "\tLDAP_DEBUG_CONFIG\t%d\n",
106                                     LDAP_DEBUG_CONFIG );
107                                 printf( "\tLDAP_DEBUG_ACL\t\t%d\n",
108                                     LDAP_DEBUG_ACL );
109                                 printf( "\tLDAP_DEBUG_STATS\t%d\n",
110                                     LDAP_DEBUG_STATS );
111                                 printf( "\tLDAP_DEBUG_STATS2\t%d\n",
112                                     LDAP_DEBUG_STATS2 );
113                                 printf( "\tLDAP_DEBUG_SHELL\t%d\n",
114                                     LDAP_DEBUG_SHELL );
115                                 printf( "\tLDAP_DEBUG_PARSE\t%d\n",
116                                     LDAP_DEBUG_PARSE );
117                                 printf( "\tLDAP_DEBUG_ANY\t\t%d\n",
118                                     LDAP_DEBUG_ANY );
119                                 exit( 0 );
120                         } else {
121                                 ldap_debug |= atoi( optarg );
122                                 lber_debug = (ldap_debug & LDAP_DEBUG_BER);
123                         }
124                         break;
125 #else
126                 case 'd':       /* turn on debugging */
127                         fprintf( stderr,
128                             "must compile with LDAP_DEBUG for debugging\n" );
129                         break;
130 #endif
131
132                 case 'f':       /* read config file */
133                         configfile = ch_strdup( optarg );
134                         break;
135
136                 case 'i':       /* run from inetd */
137                         inetd = 1;
138                         break;
139
140                 case 'p':       /* port on which to listen */
141                         port = atoi( optarg );
142                         break;
143
144                 case 's':       /* set syslog level */
145                         ldap_syslog = atoi( optarg );
146                         break;
147
148 #ifdef LOG_LOCAL4
149
150                 case 'l':       /* set syslog local user */
151                         syslogUser = cnvt_str2int( optarg, syslog_types,
152                                            DEFAULT_SYSLOG_USER );
153                         break;
154
155 #endif
156
157                 case 'u':       /* do udp */
158                         udp = 1;
159                         break;
160
161                 default:
162                         usage( argv[0] );
163                         exit( 1 );
164                 }
165         }
166
167         Debug( LDAP_DEBUG_TRACE, "%s", Versionstr, 0, 0 );
168
169         if ( (serverName = strrchr( argv[0], '/' )) == NULL ) {
170                 serverName = ch_strdup( argv[0] );
171         } else {
172                 serverName = ch_strdup( serverName + 1 );
173         }
174
175         if ( ! inetd ) {
176                 /* pre-open config file before detach in case it is a relative path */
177                 fp = fopen( configfile, "r" );
178 #ifdef LDAP_DEBUG
179                 lutil_detach( ldap_debug, 0 );
180 #else
181                 lutil_detach( 0, 0 );
182 #endif
183         }
184
185 #ifdef LOG_LOCAL4
186         openlog( serverName, OPENLOG_OPTIONS, syslogUser );
187 #else
188         openlog( serverName, OPENLOG_OPTIONS );
189 #endif
190
191         init();
192         read_config( configfile, &be, fp );
193
194         if ( ! inetd ) {
195                 int             status;
196
197                 time( &starttime );
198
199                 if ( pthread_create( &listener_tid, NULL, slapd_daemon,
200                     (void *) port ) != 0 ) {
201                         Debug( LDAP_DEBUG_ANY,
202                             "listener pthread_create failed\n", 0, 0, 0 );
203                         exit( 1 );
204                 }
205
206 #ifdef HAVE_PHREADS_FINAL
207                 pthread_join( listener_tid, (void *) NULL );
208 #else
209                 pthread_join( listener_tid, (void *) &status );
210 #endif
211
212                 return 0;
213
214         } else {
215                 Connection              c;
216                 Operation               *o;
217                 BerElement              ber;
218                 unsigned long           len, tag;
219                 long                    msgid;
220                 int                     flen;
221                 struct sockaddr_in      from;
222                 struct hostent          *hp;
223
224                 c.c_dn = NULL;
225                 c.c_cdn = NULL;
226                 c.c_ops = NULL;
227                 c.c_sb.sb_sd = 0;
228                 c.c_sb.sb_options = 0;
229                 c.c_sb.sb_naddr = udp ? 1 : 0;
230                 c.c_sb.sb_ber.ber_buf = NULL;
231                 c.c_sb.sb_ber.ber_ptr = NULL;
232                 c.c_sb.sb_ber.ber_end = NULL;
233                 pthread_mutex_init( &c.c_dnmutex, pthread_mutexattr_default );
234                 pthread_mutex_init( &c.c_opsmutex, pthread_mutexattr_default );
235                 pthread_mutex_init( &c.c_pdumutex, pthread_mutexattr_default );
236 #ifdef notdefcldap
237                 c.c_sb.sb_addrs = (void **) saddrlist;
238                 c.c_sb.sb_fromaddr = &faddr;
239                 c.c_sb.sb_useaddr = saddrlist[ 0 ] = &saddr;
240 #endif
241                 flen = sizeof(from);
242                 if ( getpeername( 0, (struct sockaddr *) &from, &flen ) == 0 ) {
243 #ifdef SLAPD_RLOOKUPS
244                         hp = gethostbyaddr( (char *) &(from.sin_addr.s_addr),
245                             sizeof(from.sin_addr.s_addr), AF_INET );
246 #else
247                         hp = NULL;
248 #endif
249
250                         Debug( LDAP_DEBUG_ARGS, "connection from %s (%s)\n",
251                             hp == NULL ? "unknown" : hp->h_name,
252                             inet_ntoa( from.sin_addr ), 0 );
253
254                         c.c_addr = inet_ntoa( from.sin_addr );
255                         c.c_domain = ch_strdup( hp == NULL ? "" : hp->h_name );
256                 } else {
257                         Debug( LDAP_DEBUG_ARGS, "connection from unknown\n",
258                             0, 0, 0 );
259                 }
260
261                 ber_init( &ber, 0 );
262                 while ( (tag = ber_get_next( &c.c_sb, &len, &ber ))
263                     == LDAP_TAG_MESSAGE ) {
264                         pthread_mutex_lock( &currenttime_mutex );
265                         time( &currenttime );
266                         pthread_mutex_unlock( &currenttime_mutex );
267
268                         if ( (tag = ber_get_int( &ber, &msgid ))
269                             != LDAP_TAG_MSGID ) {
270                                 /* log and send error */
271                                 Debug( LDAP_DEBUG_ANY,
272                                    "ber_get_int returns 0x%lx\n", tag, 0, 0 );
273                                 ber_free( &ber, 1 );
274                                 return 1;
275                         }
276
277                         if ( (tag = ber_peek_tag( &ber, &len ))
278                             == LBER_ERROR ) {
279                                 /* log, close and send error */
280                                 Debug( LDAP_DEBUG_ANY,
281                                    "ber_peek_tag returns 0x%lx\n", tag, 0, 0 );
282                                 ber_free( &ber, 1 );
283                                 close( c.c_sb.sb_sd );
284                                 c.c_sb.sb_sd = -1;
285                                 return 1;
286                         }
287
288                         connection_activity( &c );
289
290                         ber_free( &ber, 1 );
291                 }
292         }
293         return 1;
294 }
295
296
297 #ifdef LOG_LOCAL4
298
299 /*
300  *  Convert a string to an integer by means of a dispatcher table
301  *  if the string is not in the table return the default
302  */
303
304 static int
305 cnvt_str2int (stringVal, dispatcher, defaultVal)
306 char      *stringVal;
307 STRDISP_P  dispatcher;
308 int        defaultVal;
309 {
310     int        retVal = defaultVal;
311     STRDISP_P  disp;
312
313     for (disp = dispatcher; disp->stringVal; disp++) {
314
315         if (!strncasecmp (stringVal, disp->stringVal, disp->abbr)) {
316
317             retVal = disp->intVal;
318             break;
319
320         }
321     }
322
323     return (retVal);
324
325 } /* cnvt_str2int */
326
327 #endif  /* LOG_LOCAL4 */
328