2004-03-31 06:45:39 +00:00
/*
ldb database library
Copyright ( C ) Andrew Tridgell 2004
* * NOTE ! The following LGPL license applies to the ldb
* * library . This does NOT imply that all of Samba is released
* * under the LGPL
This library is free software ; you can redistribute it and / or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation ; either
version 2 of the License , or ( at your option ) any later version .
This library is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
Lesser General Public License for more details .
You should have received a copy of the GNU Lesser General Public
License along with this library ; if not , write to the Free Software
Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*/
/*
* Name : ldb
*
* Component : ldbadd
*
* Description : utility to add records - modelled on ldapadd
*
* Author : Andrew Tridgell
*/
# include "includes.h"
2006-01-10 16:48:32 +00:00
# include "ldb/include/includes.h"
2005-06-18 07:42:21 +00:00
# include "ldb/tools/cmdline.h"
2004-03-31 06:45:39 +00:00
2004-04-10 20:18:22 +00:00
static int failures ;
2004-03-31 06:45:39 +00:00
2004-04-10 20:18:22 +00:00
static void usage ( void )
{
printf ( " Usage: ldbadd <options> <ldif...> \n " ) ;
printf ( " Options: \n " ) ;
printf ( " -H ldb_url choose the database (or $LDB_URL) \n " ) ;
2004-11-15 14:16:10 +00:00
printf ( " -o options pass options like modules to activate \n " ) ;
printf ( " e.g: -o modules:timestamps \n " ) ;
2004-04-10 20:18:22 +00:00
printf ( " \n " ) ;
printf ( " Adds records to a ldb, reading ldif the specified list of files \n \n " ) ;
exit ( 1 ) ;
}
2004-03-31 06:45:39 +00:00
2004-04-10 20:18:22 +00:00
/*
add records from an opened file
*/
2006-10-14 04:43:51 +00:00
static int process_file ( struct ldb_context * ldb , FILE * f , int * count )
2004-04-10 20:18:22 +00:00
{
struct ldb_ldif * ldif ;
2006-10-14 04:43:51 +00:00
int ret = LDB_SUCCESS ;
2004-04-03 12:29:21 +00:00
2004-05-20 13:25:06 +00:00
while ( ( ldif = ldb_ldif_read_file ( ldb , f ) ) ) {
2004-04-03 12:29:21 +00:00
if ( ldif - > changetype ! = LDB_CHANGETYPE_ADD & &
ldif - > changetype ! = LDB_CHANGETYPE_NONE ) {
fprintf ( stderr , " Only CHANGETYPE_ADD records allowed \n " ) ;
break ;
}
2005-06-24 01:58:40 +00:00
ldif - > msg = ldb_msg_canonicalize ( ldb , ldif - > msg ) ;
2005-01-02 07:49:29 +00:00
ret = ldb_add ( ldb , ldif - > msg ) ;
2005-09-24 15:42:15 +00:00
if ( ret ! = LDB_SUCCESS ) {
2004-03-31 06:45:39 +00:00
fprintf ( stderr , " ERR: \" %s \" on DN %s \n " ,
2005-08-18 15:02:01 +00:00
ldb_errstring ( ldb ) , ldb_dn_linearize ( ldb , ldif - > msg - > dn ) ) ;
2004-03-31 06:45:39 +00:00
failures + + ;
} else {
2006-10-14 04:43:51 +00:00
( * count ) + + ;
2004-03-31 06:45:39 +00:00
}
2004-05-20 13:25:06 +00:00
ldb_ldif_read_free ( ldb , ldif ) ;
2004-03-31 06:45:39 +00:00
}
2006-10-14 04:43:51 +00:00
return ret ;
2004-04-10 20:18:22 +00:00
}
2006-03-02 16:32:53 +00:00
int main ( int argc , const char * * argv )
2004-04-10 20:18:22 +00:00
{
struct ldb_context * ldb ;
2006-10-14 04:43:51 +00:00
int i , ret = 0 , count = 0 ;
2005-06-18 07:42:21 +00:00
struct ldb_cmdline * options ;
2004-04-10 20:18:22 +00:00
2006-03-02 16:32:53 +00:00
ldb_global_init ( ) ;
2005-06-18 07:42:21 +00:00
ldb = ldb_init ( NULL ) ;
2004-04-10 20:18:22 +00:00
2005-06-18 07:42:21 +00:00
options = ldb_cmdline_process ( ldb , argc , argv , usage ) ;
2004-04-10 20:18:22 +00:00
2005-06-18 07:42:21 +00:00
if ( options - > argc = = 0 ) {
2006-10-14 04:43:51 +00:00
ret = process_file ( ldb , stdin , & count ) ;
2005-06-18 07:42:21 +00:00
} else {
for ( i = 0 ; i < options - > argc ; i + + ) {
const char * fname = options - > argv [ i ] ;
FILE * f ;
f = fopen ( fname , " r " ) ;
if ( ! f ) {
perror ( fname ) ;
exit ( 1 ) ;
}
2006-10-14 04:43:51 +00:00
ret = process_file ( ldb , f , & count ) ;
2004-04-10 20:18:22 +00:00
fclose ( f ) ;
}
}
2005-02-27 11:35:47 +00:00
talloc_free ( ldb ) ;
2004-03-31 06:45:39 +00:00
printf ( " Added %d records with %d failures \n " , count , failures ) ;
2006-10-14 04:43:51 +00:00
return ret ;
2004-03-31 06:45:39 +00:00
}