]> git.sur5r.net Git - openldap/blob - servers/slapd/back-sock/compare.c
73d138615e45ae72b4cc1716b2b31333c2df3aae
[openldap] / servers / slapd / back-sock / compare.c
1 /* compare.c - sock backend compare function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2007 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in the file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16
17 #include "portable.h"
18
19 #include <stdio.h>
20
21 #include <ac/string.h>
22 #include <ac/socket.h>
23
24 #include "slap.h"
25 #include "back-sock.h"
26
27 int
28 sock_back_compare(
29     Operation   *op,
30     SlapReply   *rs )
31 {
32         struct sockinfo *si = (struct sockinfo *) op->o_bd->be_private;
33         AttributeDescription *entry = slap_schema.si_ad_entry;
34         Entry e;
35         FILE                    *fp;
36
37         e.e_id = NOID;
38         e.e_name = op->o_req_dn;
39         e.e_nname = op->o_req_ndn;
40         e.e_attrs = NULL;
41         e.e_ocflags = 0;
42         e.e_bv.bv_len = 0;
43         e.e_bv.bv_val = NULL;
44         e.e_private = NULL;
45
46         if ( ! access_allowed( op, &e,
47                 entry, NULL, ACL_READ, NULL ) )
48         {
49                 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
50                 return -1;
51         }
52
53         if ( (fp = opensock( si->si_sockpath )) == NULL ) {
54                 send_ldap_error( op, rs, LDAP_OTHER,
55                     "could not open socket" );
56                 return( -1 );
57         }
58
59         /*
60          * FIX ME:  This should use LDIF routines so that binary
61          *      values are properly dealt with
62          */
63
64         /* write out the request to the compare process */
65         fprintf( fp, "COMPARE\n" );
66         fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
67         sock_print_conn( fp, op->o_conn, si );
68         sock_print_suffixes( fp, op->o_bd );
69         fprintf( fp, "dn: %s\n", op->o_req_dn.bv_val );
70         fprintf( fp, "%s: %s\n",
71                 op->oq_compare.rs_ava->aa_desc->ad_cname.bv_val,
72                 op->oq_compare.rs_ava->aa_value.bv_val /* could be binary! */ );
73         fclose( fp );
74
75         /* read in the result and send it along */
76         sock_read_and_send_results( op, rs, fp );
77
78         fclose( fp );
79         return( 0 );
80 }