]> git.sur5r.net Git - openldap/blob - clients/fax500/rp500.c
Remove extern declarations of library functions from source.c.
[openldap] / clients / fax500 / rp500.c
1 /*
2  * Copyright (c) 1990 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 "portable.h"
14
15 #include <stdlib.h>
16
17 #include <ac/signal.h>
18 #include <ac/socket.h>
19 #include <ac/string.h>
20 #include <ac/syslog.h>
21 #include <ac/time.h>
22 #include <ac/unistd.h>
23 #include <ac/wait.h>
24
25 #ifdef HAVE_SYS_RESOURCE_H
26 #include <sys/resource.h>
27 #endif
28
29 #include <lber.h>
30 #include <ldap.h>
31
32 #include "fax500.h"
33
34 #include <ldapconfig.h>
35
36 #define DEFAULT_PORT            79
37 #define DEFAULT_SIZELIMIT       50
38
39 int             debug;
40 char    *ldaphost = NULL;
41 char    *base = NULL;
42 int             deref = LDAP_DEREF_ALWAYS;
43 int             sizelimit = DEFAULT_SIZELIMIT;
44 LDAPFiltDesc    *filtd;
45
46 static void     print_entry(LDAP *ld, LDAPMessage *e);
47
48 static void
49 usage( char *name )
50 {
51         fprintf( stderr, "usage: %s [-d debuglevel] [-x ldaphost] [-b searchbase] [-a] [-z sizelimit] [-f filterfile] searchstring\r\n", name );
52         exit( -1 );
53 }
54
55 int
56 main( int argc, char **argv )
57 {
58         int             i, rc, matches;
59         char            *filterfile = FILTERFILE;
60         char            buf[10];
61         char            *key;
62         LDAP            *ld;
63         LDAPMessage     *result, *e;
64         LDAPFiltDesc    *filtd;
65         LDAPFiltInfo    *fi;
66         static char     *attrs[] = { "title", "o", "ou", "postalAddress",
67                                         "telephoneNumber", "mail",
68                                         "facsimileTelephoneNumber", NULL };
69
70         while ( (i = getopt( argc, argv, "ab:d:f:x:z:" )) != EOF ) {
71                 switch( i ) {
72                 case 'a':       /* do not deref aliases when searching */
73                         deref = LDAP_DEREF_FINDING;
74                         break;
75
76                 case 'b':       /* search base */
77                         base = strdup( optarg );
78                         break;
79
80                 case 'd':       /* turn on debugging */
81                         debug = atoi( optarg );
82                         break;
83
84                 case 'f':       /* ldap filter file */
85                         filterfile = strdup( optarg );
86                         break;
87
88                 case 'x':       /* specify ldap host */
89                         ldaphost = strdup( optarg );
90                         break;
91
92                 case 'z':       /* size limit */
93                         sizelimit = atoi( optarg );
94                         break;
95
96                 default:
97                         usage( argv[0] );
98                 }
99         }
100
101         if ( optind == argc ) {
102                 usage( argv[0] );
103         }
104         key = argv[optind];
105
106         if ( (filtd = ldap_init_getfilter( filterfile )) == NULL ) {
107                 fprintf( stderr, "Cannot open filter file (%s)\n", filterfile );
108                 exit( -1 );
109         }
110
111         if ( (ld = ldap_open( ldaphost, LDAP_PORT )) == NULL ) {
112                 perror( "ldap_open" );
113                 exit( -1 );
114         }
115
116         ldap_set_option(ld, LDAP_OPT_SIZELIMIT, &sizelimit);
117         ldap_set_option(ld, LDAP_OPT_DEREF, &deref);
118
119         if ( ldap_simple_bind_s( ld, NULL, NULL ) != LDAP_SUCCESS ) {
120                 fprintf( stderr, "X.500 is temporarily unavailable.\n" );
121                 ldap_perror( ld, "ldap_simple_bind_s" );
122                 exit( -1 );
123         }
124
125         result = NULL;
126         if ( strchr( key, ',' ) != NULL ) {
127                 int ld_deref = LDAP_DEREF_FINDING;
128                 ldap_set_option(ld, LDAP_OPT_DEREF, &ld_deref);
129                 if ( (rc = ldap_ufn_search_s( ld, key, attrs, 0, &result ))
130                     != LDAP_SUCCESS && rc != LDAP_SIZELIMIT_EXCEEDED &&
131                     rc != LDAP_TIMELIMIT_EXCEEDED )
132                 {
133                         ldap_perror( ld, "ldap_ufn_search_s" );
134                         exit( -1 );
135                 }
136                 matches = ldap_count_entries( ld, result );
137         } else {
138                 for ( fi = ldap_getfirstfilter( filtd, "rp500", key );
139                     fi != NULL; fi = ldap_getnextfilter( filtd ) ) {
140                         if ( (rc = ldap_search_s( ld, base, LDAP_SCOPE_SUBTREE,
141                             fi->lfi_filter, attrs, 0, &result ))
142                             != LDAP_SUCCESS && rc != LDAP_SIZELIMIT_EXCEEDED
143                             && rc != LDAP_TIMELIMIT_EXCEEDED )
144                         {
145                                 ldap_perror( ld, "ldap_search" );
146                                 exit( -1 );
147                         }
148
149                         if ( (matches = ldap_count_entries( ld, result )) != 0
150                             || rc != LDAP_SUCCESS ) {
151                                 break;
152                         }
153                 }
154         }
155
156         if ( matches == 1 ) {
157                 e = ldap_first_entry( ld, result );
158
159                 print_entry( ld, e );
160         } else if ( matches > 1 ) {
161                 fprintf( stderr, "%d %s matches for \"%s\":\r\n", matches,
162                     fi->lfi_desc, key );
163
164                 for ( i = 1, e = ldap_first_entry( ld, result ); e != NULL;
165                     i++, e = ldap_next_entry( ld, e ) ) {
166                         int     j;
167                         char    *p, *dn, *rdn;
168                         char    **title;
169
170                         dn = ldap_get_dn( ld, e );
171                         rdn = dn;
172                         if ( (p = strchr( dn, ',' )) != NULL )
173                                 *p = '\0';
174                         while ( *rdn && *rdn != '=' )
175                                 rdn++;
176                         if ( *rdn )
177                                 rdn++;
178                         if ( strcasecmp( rdn, buf ) == 0 ) {
179                                 char    **cn;
180                                 int     i, last;
181
182                                 cn = ldap_get_values( ld, e, "cn" );
183                                 for ( i = 0; cn[i] != NULL; i++ ) {
184                                         last = strlen( cn[i] ) - 1;
185                                         if ( isdigit( cn[i][last] ) ) {
186                                                 rdn = strdup( cn[i] );
187                                                 break;
188                                         }
189                                 }
190                         }
191                                         
192                         title = ldap_get_values( ld, e, "title" );
193
194                         fprintf( stderr, "  %d: %-20s    %s\r\n", i, rdn,
195                             title ? title[0] : "" );
196                         if ( title != NULL ) {
197                                 for ( j = 1; title[j] != NULL; j++ )
198                                         fprintf( stderr, "  %-20s    %s\r\n",
199                                             "", title[j] );
200                         }
201                         if ( title != NULL )
202                                 ldap_value_free( title );
203
204                         free( dn );
205                 }
206                 if ( rc == LDAP_SIZELIMIT_EXCEEDED
207                     || rc == LDAP_TIMELIMIT_EXCEEDED ) {
208                         fprintf( stderr, "(Size or time limit exceeded)\n" );
209                 }
210
211                 fprintf( stderr, "Enter the number of the person you want: ");
212
213                 if ( fgets( buf, sizeof(buf), stdin ) == NULL
214                     || buf[0] == '\n' ) {
215                         exit( 1 );
216                 }
217                 i = atoi( buf ) - 1;
218                 e = ldap_first_entry( ld, result );
219                 for ( ; i > 0 && e != NULL; i-- ) {
220                         e = ldap_next_entry( ld, e );
221                 }
222                 if ( e == NULL ) {
223                         fprintf( stderr, "Invalid choice!\n" );
224                         exit( 1 );
225                 }
226
227                 print_entry( ld, e );
228         } else if ( matches == 0 ) {
229                 fprintf( stderr, "No matches found for \"%s\"\n", key );
230                 exit( 1 );
231         } else {
232                 fprintf( stderr, "Error return from ldap_count_entries\n" );
233                 exit( -1 );
234         }
235
236         ldap_unbind( ld );
237         return( 0 );
238 }
239
240 static void
241 print_entry( LDAP *ld, LDAPMessage *e )
242 {
243         int     i;
244         char    *dn, *rdn;
245         char    **ufn;
246         char    **title, **dept, **addr, **phone, **fax, **mail;
247         char    *faxmail, *org;
248
249         dn = ldap_get_dn( ld, e );
250         ufn = ldap_explode_dn( dn, 0 );
251         rdn = strchr( ufn[0], '=' ) + 1;
252
253         if ( (fax = ldap_get_values( ld, e, "facsimileTelephoneNumber" ))
254             == NULL ) {
255                 fprintf( stderr, "Entry \"%s\" has no fax number.\n", dn );
256                 exit( 1 );
257         }
258         faxmail = faxtotpc( fax[0], NULL );
259         title = ldap_get_values( ld, e, "title" );
260         phone = ldap_get_values( ld, e, "telephoneNumber" );
261         mail = ldap_get_values( ld, e, "mail" );
262         dept = ldap_get_values( ld, e, "ou" );
263         addr = ldap_get_values( ld, e, "postalAddress" );
264         org = "";
265         for ( i = 0; ufn[i] != NULL; i++ ) {
266                 if ( strncmp( "o=", ufn[i], 2 ) == 0 ) {
267                         org = strdup( strchr( ufn[i], '=' ) + 1 );
268                         break;
269                 }
270         }
271
272         printf( "To: %s\n", faxmail );
273         printf( "Subject:\n" );
274         printf( "--------\n" );
275         printf( "#<application/remote-printing\n" );
276         printf( "Recipient:      %s\r\n", rdn );
277         printf( "Title:          %s\r\n", title ? title[0] : "" );
278         printf( "Organization:   %s\r\n", org );
279         printf( "Department:     %s\r\n", dept ? dept[0] : "" );
280         printf( "Telephone:      %s\r\n", phone ? phone[0] : "" );
281         printf( "Facsimile:      %s\r\n", fax ? fax[0] : "" );
282         printf( "Email:          %s\r\n", mail ? mail[0] : "" );
283 }