]> git.sur5r.net Git - openldap/blob - clients/finger/main.c
Removed use of paths not defined in ldapconfig.h.edit.
[openldap] / clients / finger / main.c
1 /*
2  * Copyright (c) 1990,1994 Regents of the University of Michigan.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms are permitted
6  * provided that this notice is preserved and that due credit is given
7  * to the University of Michigan at Ann Arbor. The name of the University
8  * may not be used to endorse or promote products derived from this
9  * software without specific prior written permission. This software
10  * is provided ``as is'' without express or implied warranty.
11  */
12
13 #include <stdio.h>
14 #include <string.h>
15 #include <ctype.h>
16 #include <sys/types.h>
17 #include <sys/time.h>
18 #include <sys/socket.h>
19 #include <netinet/in.h>
20 #include <arpa/inet.h>
21 #include <netdb.h>
22 #include <syslog.h>
23 #include <sys/resource.h>
24 #include <sys/wait.h>
25 #ifdef aix
26 #include <sys/select.h>
27 #endif /* aix */
28 #include <signal.h>
29
30 #include "lber.h"
31 #include "ldap.h"
32 #include "disptmpl.h"
33
34 #include "portable.h"
35 #include "ldapconfig.h"
36
37 #ifdef USE_SYSCONF
38 #include <unistd.h>
39 #endif /* USE_SYSCONF */
40
41 int     dosyslog = 1;
42 char    *ldaphost = LDAPHOST;
43 int     ldapport = LDAP_PORT;
44 char    *base = FINGER_BASE;
45 int     deref;
46 char    *filterfile = FILTERFILE;
47 char    *templatefile = TEMPLATEFILE;
48 int     rdncount = FINGER_RDNCOUNT;
49
50 static do_query();
51 static do_search();
52 static do_read();
53 static print_attr();
54
55 static usage( name )
56 char    *name;
57 {
58         fprintf( stderr, "usage: %s [-l] [-x ldaphost] [-p ldapport] [-f filterfile] [-t templatefile] [-c rdncount]\r\n", name );
59         exit( 1 );
60 }
61
62 main (argc, argv)
63 int     argc;
64 char    **argv;
65 {
66         int                     i;
67         char                    *myname;
68         unsigned long           mypeer = -1;
69         struct hostent          *hp;
70         struct sockaddr_in      peername;
71         int                     peernamelen;
72         int                     interactive = 0;
73         extern char             *optarg;
74
75         deref = FINGER_DEREF;
76         while ( (i = getopt( argc, argv, "f:ilp:t:x:p:c:" )) != EOF ) {
77                 switch( i ) {
78                 case 'f':       /* ldap filter file */
79                         filterfile = strdup( optarg );
80                         break;
81
82                 case 'i':       /* interactive */
83                         interactive = 1;
84                         break;
85
86                 case 'l':       /* don't do syslogging */
87                         dosyslog = 0;
88                         break;
89
90                 case 't':       /* ldap template file */
91                         templatefile = strdup( optarg );
92                         break;
93
94                 case 'x':       /* specify ldap host */
95                         ldaphost = strdup( optarg );
96                         break;
97
98                 case 'p':       /* specify ldap port */
99                         ldapport = atoi( optarg );
100                         break;
101
102                 case 'c':       /* specify number of DN components to show */
103                         rdncount = atoi( optarg );
104                         break;
105
106                 default:
107                         usage( argv[0] );
108                 }
109         }
110
111         if ( !interactive ) {
112                 peernamelen = sizeof(peername);
113                 if ( getpeername( 0, (struct sockaddr *)&peername,
114                     &peernamelen ) != 0 ) {
115                         perror( "getpeername" );
116                         exit( 1 );
117                 }
118                 mypeer = (unsigned long) peername.sin_addr.s_addr;
119         }
120
121 #ifdef FINGER_BANNER
122         if ( FINGER_BANNER != NULL && strcmp( FINGER_BANNER, "" ) != 0 ) {
123                 printf( FINGER_BANNER );
124                 fflush( stdout );
125         }
126 #endif
127
128         if ( (myname = strrchr( argv[0], '/' )) == NULL )
129                 myname = strdup( argv[0] );
130         else
131                 myname = strdup( myname + 1 );
132
133         if ( dosyslog ) {
134 #ifdef LOG_LOCAL4
135                 openlog( myname, OPENLOG_OPTIONS, LOG_LOCAL4 );
136 #else
137                 openlog( myname, OPENLOG_OPTIONS );
138 #endif
139         }
140
141         if ( dosyslog && mypeer != -1 ) {
142                 struct in_addr  addr;
143
144                 hp = gethostbyaddr( (char *) &mypeer, sizeof(mypeer), AF_INET );
145                 addr.s_addr = mypeer;
146                 syslog( LOG_INFO, "connection from %s (%s)", (hp == NULL) ?
147                     "unknown" : hp->h_name, inet_ntoa( addr ) );
148         }
149
150         do_query();
151
152         return( 0 );
153 }
154
155 static do_query()
156 {
157         char            buf[256];
158         int             len, rc, tblsize;
159         struct timeval  timeout;
160         fd_set          readfds;
161         LDAP            *ld;
162
163         if ( (ld = ldap_open( ldaphost, ldapport )) == NULL ) {
164                 fprintf( stderr, FINGER_UNAVAILABLE );
165                 perror( "ldap_open" );
166                 exit( 1 );
167         }
168         ld->ld_sizelimit = FINGER_SIZELIMIT;
169         ld->ld_deref = deref;
170
171         if ( ldap_simple_bind_s( ld, FINGER_BINDDN, FINGER_BIND_CRED )
172                 != LDAP_SUCCESS )
173         {
174                 fprintf( stderr, FINGER_UNAVAILABLE );
175                 ldap_perror( ld, "ldap_simple_bind_s" );
176                 exit( 1 );
177         }
178
179 #ifdef USE_SYSCONF
180         tblsize = sysconf( _SC_OPEN_MAX );
181 #else /* USE_SYSCONF */
182         tblsize = getdtablesize();
183 #endif /* USE_SYSCONF */
184
185 #ifdef FD_SETSIZE
186         if (tblsize > FD_SETSIZE) {
187                 tblsize = FD_SETSIZE;
188         }
189 #endif  /* FD_SETSIZE*/
190
191         timeout.tv_sec = FINGER_TIMEOUT;
192         timeout.tv_usec = 0;
193         FD_ZERO( &readfds );
194         FD_SET( fileno( stdin ), &readfds );
195
196         if ( (rc = select( tblsize, &readfds, 0, 0, &timeout )) <= 0 ) {
197                 if ( rc < 0 )
198                         perror( "select" );
199                 else
200                         fprintf( stderr, "connection timed out on input\r\n" );
201                 exit( 1 );
202         }
203
204         if ( fgets( buf, sizeof(buf), stdin ) == NULL )
205                 exit( 1 );
206
207         len = strlen( buf );
208
209         /* strip off \r \n */
210         if ( buf[len - 1] == '\n' ) {
211                 buf[len - 1] = '\0';
212                 len--;
213         }
214         if ( buf[len - 1] == '\r' ) {
215                 buf[len - 1] = '\0';
216                 len--;
217         }
218
219         if ( len == 0 ) {
220                 printf( "No campus-wide login information available.  Info for this machine only:\r\n" );
221                 fflush( stdout );
222                 execl( FINGER_CMD, FINGER_CMD, NULL );
223         } else {
224                 char    *p;
225
226                 /* skip and ignore stinking /w */
227                 if ( strncmp( buf, "/W ", 2 ) == 0 ) {
228                         p = buf + 2;
229                 } else {
230                         p = buf;
231                 }
232
233                 for ( ; *p && isspace( *p ); p++ )
234                         ;       /* NULL */
235
236                 do_search( ld, p );
237         }
238 }
239
240 static void
241 spaces2dots( s )
242     char        *s;
243 {
244         for ( ; *s; s++ ) {
245                 if ( *s == ' ' ) {
246                         *s = '.';
247                 }
248         }
249 }
250
251 static do_search( ld, buf )
252 LDAP    *ld;
253 char    *buf;
254 {
255         char            *dn, *rdn;
256         char            **title;
257         int             rc, matches, i, ufn;
258         struct timeval  tv;
259         LDAPFiltInfo    *fi;
260         LDAPMessage     *result, *e;
261         static char     *attrs[] = { "cn", "title", "objectClass", "joinable",
262 #ifdef FINGER_SORT_ATTR
263                                         FINGER_SORT_ATTR,
264 #endif
265                                         0 };
266         extern int      strcasecmp();
267
268         ufn = 0;
269 #ifdef FINGER_UFN
270         if ( strchr( buf, ',' ) != NULL ) {
271                 ldap_ufn_setprefix( ld, base );
272                 tv.tv_sec = FINGER_TIMEOUT;
273                 tv.tv_usec = 0;
274                 ldap_ufn_timeout( (void *) &tv );
275
276                 if ( (rc = ldap_ufn_search_s( ld, buf, attrs, 0, &result ))
277                     != LDAP_SUCCESS && rc != LDAP_SIZELIMIT_EXCEEDED ) {
278                         fprintf( stderr, FINGER_UNAVAILABLE );
279                         ldap_perror( ld, "ldap_search_st" );
280                         exit( 1 );
281                 }
282
283                 matches = ldap_count_entries( ld, result );
284                 ufn = 1;
285         } else {
286 #endif
287                 if ( (ld->ld_filtd = ldap_init_getfilter( filterfile ))
288                     == NULL ) {
289                         fprintf( stderr, "Cannot open filter file (%s)\n",
290                             filterfile );
291                         exit( 1 );
292                 }
293
294                 for ( fi = ldap_getfirstfilter( ld->ld_filtd, "finger", buf );
295                     fi != NULL;
296                     fi = ldap_getnextfilter( ld->ld_filtd ) )
297                 {
298                         tv.tv_sec = FINGER_TIMEOUT;
299                         tv.tv_usec = 0;
300                         if ( (rc = ldap_search_st( ld, base, LDAP_SCOPE_SUBTREE,
301                             fi->lfi_filter, attrs, 0, &tv, &result ))
302                             != LDAP_SUCCESS && rc != LDAP_SIZELIMIT_EXCEEDED
303                             && rc != LDAP_TIMELIMIT_EXCEEDED )
304                         {
305                                 fprintf( stderr, FINGER_UNAVAILABLE );
306                                 ldap_perror( ld, "ldap_search_st" );
307                                 exit( 1 );
308                         }
309
310                         if ( (matches = ldap_count_entries( ld, result )) != 0 )
311                                 break;
312
313                         ldap_msgfree( result );
314                         result = NULL;
315                 }
316 #ifdef FINGER_UFN
317         }
318 #endif
319
320         if ( rc == LDAP_SIZELIMIT_EXCEEDED ) {
321                 printf( "(Partial results - a size limit was exceeded)\r\n" );
322         } else if ( rc == LDAP_TIMELIMIT_EXCEEDED ) {
323                 printf( "(Partial results - a time limit was exceeded)\r\n" );
324         }
325
326         if ( matches == 0 ) {
327                 printf( FINGER_NOMATCH );
328                 fflush( stdout );
329         } else if ( matches < 0 ) {
330                 fprintf( stderr, "error return from ldap_count_entries\r\n" );
331                 exit( 1 );
332         } else if ( matches <= FINGER_LISTLIMIT ) {
333                 printf( "%d %s match%s found for \"%s\":\r\n", matches,
334                     ufn ? "UFN" : fi->lfi_desc, matches > 1 ? "es" : "", buf );
335                 fflush( stdout );
336
337                 for ( e = ldap_first_entry( ld, result ); e != NULL; ) {
338                         do_read( ld, e );
339                         e = ldap_next_entry( ld, e );
340                         if ( e != NULL ) {
341                                 printf( "--------------------\r\n" );
342                         }
343                 }
344         } else {
345                 printf( "%d %s matches for \"%s\":\r\n", matches,
346                     ufn ? "UFN" : fi->lfi_desc, buf );
347                 fflush( stdout );
348
349 #ifdef FINGER_SORT_ATTR
350                 ldap_sort_entries( ld, &result, FINGER_SORT_ATTR, strcasecmp );
351 #endif
352
353                 for ( e = ldap_first_entry( ld, result ); e != NULL;
354                     e = ldap_next_entry( ld, e ) ) {
355                         char    *p;
356
357                         dn = ldap_get_dn( ld, e );
358                         rdn = dn;
359                         if ( (p = strchr( dn, ',' )) != NULL )
360                                 *p = '\0';
361                         while ( *rdn && *rdn != '=' )
362                                 rdn++;
363                         if ( *rdn )
364                                 rdn++;
365
366                         /* hack attack */
367                         for ( i = 0; buf[i] != '\0'; i++ ) {
368                                 if ( buf[i] == '.' || buf[i] == '_' )
369                                         buf[i] = ' ';
370                         }
371                         if ( strcasecmp( rdn, buf ) == 0 ) {
372                                 char    **cn;
373                                 int     i, last;
374
375                                 cn = ldap_get_values( ld, e, "cn" );
376                                 for ( i = 0; cn[i] != NULL; i++ ) {
377                                         last = strlen( cn[i] ) - 1;
378                                         if ( isdigit( cn[i][last] ) ) {
379                                                 rdn = strdup( cn[i] );
380                                                 break;
381                                         }
382                                 }
383                         }
384                                         
385                         title = ldap_get_values( ld, e, "title" );
386
387                         spaces2dots( rdn );
388                         printf( "  %-20s    %s\r\n", rdn,
389                             title ? title[0] : "" );
390                         if ( title != NULL ) {
391                                 for ( i = 1; title[i] != NULL; i++ )
392                                         printf( "  %-20s    %s\r\n", "",
393                                             title[i] );
394                         }
395                         fflush( stdout );
396
397                         if ( title != NULL )
398                                 ldap_value_free( title );
399
400                         free( dn );
401                 }
402         }
403
404         if ( result != NULL ) {
405                 ldap_msgfree( result );
406         }
407         ldap_unbind( ld );
408 }
409
410
411 static int
412 entry2textwrite( void *fp, char *buf, int len )
413 {
414         return( fwrite( buf, len, 1, (FILE *)fp ) == 0 ? -1 : len );
415 }
416
417
418 static do_read( ld, e )
419 LDAP            *ld;
420 LDAPMessage     *e;
421 {
422         static struct ldap_disptmpl *tmpllist;
423         static char     *defattrs[] = { "mail", NULL };
424         static char     *mailvals[] = FINGER_NOEMAIL;
425         static char     **defvals[] = { mailvals, NULL };
426
427         ldap_init_templates( templatefile, &tmpllist );
428
429         if ( ldap_entry2text_search( ld, NULL, base, e, tmpllist, defattrs,
430             defvals, entry2textwrite, (void *)stdout, "\r\n", rdncount,
431             LDAP_DISP_OPT_DOSEARCHACTIONS ) != LDAP_SUCCESS ) {
432                 ldap_perror( ld, "ldap_entry2text_search" );
433                 exit( 1 );
434         }
435
436         if ( tmpllist != NULL ) {
437             ldap_free_templates( tmpllist );
438         }
439 }