]> git.sur5r.net Git - openldap/blob - servers/slapd/back-sock/add.c
69879bc57dbaa1e9650fe21abe7ffc73cf2d1ba2
[openldap] / servers / slapd / back-sock / add.c
1 /* add.c - sock backend add function */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 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_add(
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         FILE                    *fp;
35         int                     len;
36
37         if ( ! access_allowed( op, op->oq_add.rs_e,
38                 entry, NULL, ACL_WADD, NULL ) )
39         {
40                 send_ldap_error( op, rs, LDAP_INSUFFICIENT_ACCESS, NULL );
41                 return -1;
42         }
43
44         if ( (fp = opensock( si->si_sockpath )) == NULL ) {
45                 send_ldap_error( op, rs, LDAP_OTHER,
46                     "could not open socket" );
47                 return( -1 );
48         }
49
50         /* write out the request to the add process */
51         fprintf( fp, "ADD\n" );
52         fprintf( fp, "msgid: %ld\n", (long) op->o_msgid );
53         sock_print_conn( fp, op->o_conn, si );
54         sock_print_suffixes( fp, op->o_bd );
55         ldap_pvt_thread_mutex_lock( &entry2str_mutex );
56         fprintf( fp, "%s", entry2str( op->oq_add.rs_e, &len ) );
57         ldap_pvt_thread_mutex_unlock( &entry2str_mutex );
58         fprintf (fp, "\n" );
59
60         /* read in the result and send it along */
61         sock_read_and_send_results( op, rs, fp );
62
63         fclose( fp );
64         return( 0 );
65 }