| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050 |
- /** BEGIN COPYRIGHT BLOCK
- * This Program is free software; you can redistribute it and/or modify it under
- * the terms of the GNU General Public License as published by the Free Software
- * Foundation; version 2 of the License.
- *
- * This Program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this Program; if not, write to the Free Software Foundation, Inc., 59 Temple
- * Place, Suite 330, Boston, MA 02111-1307 USA.
- *
- * In addition, as a special exception, Red Hat, Inc. gives You the additional
- * right to link the code of this Program with code not covered under the GNU
- * General Public License ("Non-GPL Code") and to distribute linked combinations
- * including the two, subject to the limitations in this paragraph. Non-GPL Code
- * permitted under this exception must only link to the code of this Program
- * through those well defined interfaces identified in the file named EXCEPTION
- * found in the source code files (the "Approved Interfaces"). The files of
- * Non-GPL Code may instantiate templates or use macros or inline functions from
- * the Approved Interfaces without causing the resulting work to be covered by
- * the GNU General Public License. Only Red Hat, Inc. may make changes or
- * additions to the list of Approved Interfaces. You must obey the GNU General
- * Public License in all respects for all of the Program code and other code used
- * in conjunction with the Program except the Non-GPL Code covered by this
- * exception. If you modify this file, you may extend this exception to your
- * version of the file, but you are not obligated to do so. If you do not wish to
- * provide this exception without modification, you must delete this exception
- * statement from your version and license this file solely under the GPL without
- * exception.
- *
- *
- * Copyright (C) 2001 Sun Microsystems, Inc. Used by permission.
- * Copyright (C) 2005 Red Hat, Inc.
- * All rights reserved.
- * END COPYRIGHT BLOCK **/
- #ifdef HAVE_CONFIG_H
- # include <config.h>
- #endif
- /*
- * the threads that make up an import:
- * producer (1)
- * foreman (1)
- * worker (N: 1 for each index)
- *
- * a wire import (aka "fast replica" import) won't have a producer thread.
- */
- #include "back-ldbm.h"
- #include "vlv_srch.h"
- #include "import.h"
- #ifdef XP_WIN32
- #define STDIN_FILENO 0
- #endif
- static void import_wait_for_space_in_fifo(ImportJob *job, size_t new_esize);
- static int import_get_and_add_parent_rdns(ImportWorkerInfo *info, ldbm_instance *inst, DB *db, ID id, ID *total_id, Slapi_RDN *srdn, int *curr_entry);
- static int _get_import_entryusn(ImportJob *job, Slapi_Value **usn_value);
- static struct backentry *import_make_backentry(Slapi_Entry *e, ID id)
- {
- struct backentry *ep = backentry_alloc();
- if (NULL != ep) {
- ep->ep_entry = e;
- ep->ep_id = id;
- }
- return ep;
- }
- static void import_decref_entry(struct backentry *ep)
- {
- PR_AtomicDecrement(&(ep->ep_refcnt));
- PR_ASSERT(ep->ep_refcnt >= 0);
- }
- /* generate uniqueid if requested */
- static int import_generate_uniqueid(ImportJob *job, Slapi_Entry *e)
- {
- const char *uniqueid = slapi_entry_get_uniqueid(e);
- int rc = UID_SUCCESS;
- if (!uniqueid && (job->uuid_gen_type != SLAPI_UNIQUEID_GENERATE_NONE)) {
- char *newuniqueid;
- /* generate id based on dn */
- if (job->uuid_gen_type == SLAPI_UNIQUEID_GENERATE_NAME_BASED) {
- char *dn = slapi_entry_get_dn(e);
- rc = slapi_uniqueIDGenerateFromNameString(&newuniqueid,
- job->uuid_namespace, dn, strlen(dn));
- } else {
- /* time based */
- rc = slapi_uniqueIDGenerateString(&newuniqueid);
- }
- if (rc == UID_SUCCESS) {
- slapi_entry_set_uniqueid (e, newuniqueid);
- } else {
- LDAPDebug( LDAP_DEBUG_ANY,
- "import_generate_uniqueid: failed to generate "
- "uniqueid for %s; error=%d.\n",
- slapi_entry_get_dn_const(e), rc, 0 );
- }
- }
- return( rc );
- }
- /*
- * Check if the tombstonecsn is missing, if so add it.
- */
- static void
- import_generate_tombstone_csn(Slapi_Entry *e)
- {
- if(e->e_flags & SLAPI_ENTRY_FLAG_TOMBSTONE) {
- if (attrlist_find( e->e_attrs, SLAPI_ATTR_TOMBSTONE_CSN ) == NULL){
- const CSN *tombstone_csn = NULL;
- char tombstone_csnstr[CSN_STRSIZE];
- /* Add the tombstone csn str */
- if((tombstone_csn = entry_get_deletion_csn(e))){
- csn_as_string(tombstone_csn, PR_FALSE, tombstone_csnstr);
- slapi_entry_add_string(e, SLAPI_ATTR_TOMBSTONE_CSN, tombstone_csnstr);
- }
- }
- }
- }
- /********** BETTER LDIF PARSER **********/
- /* like the function in libldif, except this one doesn't need to use
- * FILE (which breaks on various platforms for >4G files or large numbers
- * of open files)
- */
- #define LDIF_BUFFER_SIZE 8192
- typedef struct {
- char *b; /* buffer */
- size_t size; /* how full the buffer is */
- size_t offset; /* where the current entry starts */
- } ldif_context;
- static void import_init_ldif(ldif_context *c)
- {
- c->size = c->offset = 0;
- c->b = NULL;
- }
- static void import_free_ldif(ldif_context *c)
- {
- if (c->b)
- FREE(c->b);
- import_init_ldif(c);
- }
- static char *import_get_entry(ldif_context *c, int fd, int *lineno)
- {
- int ret;
- int done = 0, got_lf = 0;
- size_t bufSize = 0, bufOffset = 0, i;
- char *buf = NULL;
- while (!done) {
- /* If there's no data in the buffer, get some */
- if ((c->size == 0) || (c->offset == c->size)) {
- /* Do we even have a buffer ? */
- if (! c->b) {
- c->b = slapi_ch_malloc(LDIF_BUFFER_SIZE);
- if (! c->b)
- return NULL;
- }
- ret = read(fd, c->b, LDIF_BUFFER_SIZE);
- if (ret < 0) {
- /* Must be error */
- goto error;
- } else if (ret == 0) {
- /* eof */
- if (buf) {
- /* last entry */
- buf[bufOffset] = 0;
- return buf;
- }
- return NULL;
- } else {
- /* read completed OK */
- c->size = ret;
- c->offset = 0;
- }
- }
- /* skip blank lines at start of entry */
- if (bufOffset == 0) {
- size_t n;
- char *p;
- for (n = c->offset, p = c->b + n; n < c->size; n++, p++) {
- if (!(*p == '\r' || *p == '\n' || *p == ' '|| *p == '\t'))
- break;
- }
- c->offset = n;
- if (c->offset == c->size) continue;
- }
- i = c->offset;
- while (!done && (i < c->size)) {
- /* scan forward in the buffer, looking for the end of the entry */
- while ((i < c->size) && (c->b[i] != '\n'))
- i++;
- if ((i < c->size) && (c->b[i] == '\n')) {
- if (got_lf && ((i == 0) || ((i == 1) && (c->b[0] == '\r')))) {
- /* saw an lf at the end of the last buffer */
- i++, (*lineno)++;
- done = 1;
- got_lf = 0;
- break;
- }
- got_lf = 0;
- (*lineno)++;
- /* is this the end? (need another linefeed) */
- if (++i < c->size) {
- if (c->b[i] == '\n') {
- /* gotcha! */
- i++, (*lineno)++;
- done = 1;
- } else if (c->b[i] == '\r') {
- if (++i < c->size) {
- if (c->b[i] == '\n') {
- /* gotcha! (nt) */
- i++, (*lineno)++;
- done = 1;
- }
- } else {
- got_lf = 1;
- }
- }
- } else {
- /* lf at the very end of the buffer */
- got_lf = 1;
- }
- }
- }
- /* copy what we did so far into the output buffer */
- /* (first, make sure the output buffer is large enough) */
- if (bufSize - bufOffset < i - c->offset + 1) {
- char *newbuf = NULL;
- size_t newsize = (buf ? bufSize*2 : LDIF_BUFFER_SIZE);
- newbuf = slapi_ch_malloc(newsize);
- if (! newbuf)
- goto error;
- /* copy over the old data (if there was any) */
- if (buf) {
- memmove(newbuf, buf, bufOffset);
- slapi_ch_free((void **)&buf);
- }
- buf = newbuf;
- bufSize = newsize;
- }
- memmove(buf + bufOffset, c->b + c->offset, i - c->offset);
- bufOffset += (i - c->offset);
- c->offset = i;
- }
- /* add terminating NUL char */
- buf[bufOffset] = 0;
- return buf;
- error:
- if (buf)
- slapi_ch_free((void **)&buf);
- return NULL;
- }
- /********** THREADS **********/
- /*
- * Description:
- * 1) return the ldif version #
- * 2) replace "version: 1" with "#ersion: 1"
- * to pretend like a comment for the str2entry
- */
- static int
- import_get_version(char *str)
- {
- char *s;
- char *mystr, *ms;
- int offset;
- int my_version = 0;
- if ((s = strstr(str, "version:")) == NULL)
- return 0;
- offset = s - str;
- mystr = ms = slapi_ch_strdup(str);
- while ( (s = ldif_getline( &ms )) != NULL ) {
- struct berval type = {0, NULL}, value = {0, NULL};
- int freeval = 0;
- if ( slapi_ldif_parse_line( s, &type, &value, &freeval ) >= 0 ) {
- if (!PL_strncasecmp(type.bv_val, "version", type.bv_len)) {
- my_version = atoi(value.bv_val);
- *(str + offset) = '#';
- /* the memory below was not allocated by the slapi_ch_ functions */
- if (freeval) slapi_ch_free_string(&value.bv_val);
- break;
- }
- }
- /* the memory below was not allocated by the slapi_ch_ functions */
- if (freeval) slapi_ch_free_string(&value.bv_val);
- }
- slapi_ch_free((void **)&mystr);
- return my_version;
- }
- /*
- * add CreatorsName, ModifiersName, CreateTimestamp, ModifyTimestamp to entry
- */
- static void
- import_add_created_attrs(Slapi_Entry *e)
- {
- char buf[20];
- struct berval bv;
- struct berval *bvals[2];
- time_t curtime;
- struct tm ltm;
- bvals[0] = &bv;
- bvals[1] = NULL;
-
- bv.bv_val = "";
- bv.bv_len = 0;
- if ( !attrlist_find(e->e_attrs,"creatorsname") ) {
- slapi_entry_attr_replace(e, "creatorsname", bvals);
- }
- if ( !attrlist_find(e->e_attrs,"modifiersname") ) {
- slapi_entry_attr_replace(e, "modifiersname", bvals);
- }
- curtime = current_time();
- #ifdef _WIN32
- {
- struct tm *pt;
- pt = gmtime(&curtime);
- memcpy(<m, pt, sizeof(struct tm));
- }
- #else
- gmtime_r(&curtime, <m);
- #endif
- strftime(buf, sizeof(buf), "%Y%m%d%H%M%SZ", <m);
- bv.bv_val = buf;
- bv.bv_len = strlen(bv.bv_val);
- if ( !attrlist_find(e->e_attrs,"createtimestamp") ) {
- slapi_entry_attr_replace(e, "createtimestamp", bvals);
- }
- if ( !attrlist_find(e->e_attrs,"modifytimestamp") ) {
- slapi_entry_attr_replace(e, "modifytimestamp", bvals);
- }
- }
- /* producer thread:
- * read through the given file list, parsing entries (str2entry), assigning
- * them IDs and queueing them on the entry FIFO. other threads will do
- * the indexing.
- */
- void
- import_producer(void *param)
- {
- ImportWorkerInfo *info = (ImportWorkerInfo *)param;
- ImportJob *job = info->job;
- ID id = job->first_ID, id_filestart = id;
- Slapi_Entry *e = NULL;
- struct backentry *ep = NULL, *old_ep = NULL;
- ldbm_instance *inst = job->inst;
- backend *be = inst->inst_be;
- PRIntervalTime sleeptime;
- char *estr = NULL;
- int str2entry_flags = 0;
- int finished = 0;
- int detected_eof = 0;
- int fd, curr_file, curr_lineno;
- char *curr_filename = NULL;
- int idx;
- ldif_context c;
- int my_version = 0;
- size_t newesize = 0;
- Slapi_Attr *attr = NULL;
- PR_ASSERT(info != NULL);
- PR_ASSERT(inst != NULL);
-
- if ( job->flags & FLAG_ABORT ) {
- goto error;
- }
- sleeptime = PR_MillisecondsToInterval(import_sleep_time);
- /* pause until we're told to run */
- while ((info->command == PAUSE) && !(job->flags & FLAG_ABORT)) {
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- info->state = RUNNING;
- import_init_ldif(&c);
- /* Get entryusn, if needed. */
- _get_import_entryusn(job, &(job->usn_value));
- /* jumpstart by opening the first file */
- curr_file = 0;
- fd = -1;
- detected_eof = finished = 0;
- /* we loop around reading the input files and processing each entry
- * as we read it.
- */
- while (! finished) {
- int flags = 0;
- int prev_lineno = 0;
- int lines_in_entry = 0;
- int syntax_err = 0;
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- /* move on to next file? */
- if (detected_eof) {
- /* check if the file can still be read, whine if so... */
- if (read(fd, (void *)&idx, 1) > 0) {
- import_log_notice(job, "WARNING: Unexpected end of file found "
- "at line %d of file \"%s\"", curr_lineno,
- curr_filename);
- }
- if (fd == STDIN_FILENO) {
- import_log_notice(job, "Finished scanning file stdin (%lu "
- "entries)", (u_long)(id-id_filestart));
- } else {
- import_log_notice(job, "Finished scanning file \"%s\" (%lu "
- "entries)", curr_filename, (u_long)(id-id_filestart));
- }
- close(fd);
- fd = -1;
- detected_eof = 0;
- id_filestart = id;
- curr_file++;
- if (job->task) {
- job->task->task_progress++;
- slapi_task_status_changed(job->task);
- }
- if (job->input_filenames[curr_file] == NULL) {
- /* done! */
- finished = 1;
- break;
- }
- }
- /* separate from above, because this is also triggered when we
- * start (to open the first file)
- */
- if (fd < 0) {
- curr_lineno = 0;
- curr_filename = job->input_filenames[curr_file];
- if (strcmp(curr_filename, "-") == 0) {
- fd = STDIN_FILENO;
- } else {
- int o_flag = O_RDONLY;
- #ifdef XP_WIN32
- /* 613041 Somehow the windows low level io lose "\n"
- at a very particular situation using O_TEXT mode read.
- I think it is a windows bug for O_TEXT mode read.
- Use O_BINARY instead, which honestly returns chars
- without any translation.
- */
- o_flag |= O_BINARY;
- #endif
- fd = dblayer_open_huge_file(curr_filename, o_flag, 0);
- }
- if (fd < 0) {
- import_log_notice(job, "Could not open LDIF file \"%s\", errno %d (%s)",
- curr_filename, errno, slapd_system_strerror(errno));
- goto error;
- }
- if (fd == STDIN_FILENO) {
- import_log_notice(job, "Processing file stdin");
- } else {
- import_log_notice(job, "Processing file \"%s\"", curr_filename);
- }
- }
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- str2entry_flags = SLAPI_STR2ENTRY_TOMBSTONE_CHECK |
- SLAPI_STR2ENTRY_REMOVEDUPVALS |
- SLAPI_STR2ENTRY_EXPAND_OBJECTCLASSES |
- SLAPI_STR2ENTRY_ADDRDNVALS |
- SLAPI_STR2ENTRY_NOT_WELL_FORMED_LDIF;
- while ((info->command == PAUSE) && !(job->flags & FLAG_ABORT)){
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- info->state = RUNNING;
- prev_lineno = curr_lineno;
- estr = import_get_entry(&c, fd, &curr_lineno);
- lines_in_entry = curr_lineno - prev_lineno;
- if (!estr) {
- /* error reading entry, or end of file */
- detected_eof = 1;
- continue;
- }
- if (0 == my_version && 0 == strncmp(estr, "version:", 8)) {
- my_version = import_get_version(estr);
- str2entry_flags |= SLAPI_STR2ENTRY_INCLUDE_VERSION_STR;
- }
- /* If there are more than so many lines in the entry, we tell
- * str2entry to optimize for a large entry.
- */
- if (lines_in_entry > STR2ENTRY_ATTRIBUTE_PRESENCE_CHECK_THRESHOLD) {
- flags = str2entry_flags | SLAPI_STR2ENTRY_BIGENTRY;
- } else {
- flags = str2entry_flags;
- }
- if (!(str2entry_flags & SLAPI_STR2ENTRY_INCLUDE_VERSION_STR) &&
- entryrdn_get_switch()) { /* subtree-rename: on */
- char *dn = NULL;
- char *normdn = NULL;
- int rc = 0; /* estr should start with "dn: " or "dn:: " */
- if (strncmp(estr, "dn: ", 4) &&
- NULL == strstr(estr, "\ndn: ") && /* in case comments precedes
- the entry */
- strncmp(estr, "dn:: ", 5) &&
- NULL == strstr(estr, "\ndn:: ")) { /* ditto */
- import_log_notice(job, "WARNING: skipping bad LDIF entry (not "
- "starting with \"dn: \") ending line %d of file \"%s\"",
- curr_lineno, curr_filename);
- FREE(estr);
- continue;
- }
- /* get_value_from_string decodes base64 if it is encoded. */
- rc = get_value_from_string((const char *)estr, "dn", &dn);
- if (rc) {
- import_log_notice(job, "WARNING: skipping bad LDIF entry (dn "
- "has no value\n");
- FREE(estr);
- continue;
- }
- normdn = slapi_create_dn_string("%s", dn);
- slapi_ch_free_string(&dn);
- e = slapi_str2entry_ext(normdn, NULL, estr,
- flags|SLAPI_STR2ENTRY_NO_ENTRYDN);
- slapi_ch_free_string(&normdn);
- } else {
- e = slapi_str2entry(estr, flags);
- }
- FREE(estr);
- if (! e) {
- if (!(str2entry_flags & SLAPI_STR2ENTRY_INCLUDE_VERSION_STR)) {
- import_log_notice(job, "WARNING: skipping bad LDIF entry "
- "ending line %d of file \"%s\"", curr_lineno,
- curr_filename);
- }
- continue;
- }
- /* From here, e != NULL */
- if (0 == my_version) {
- /* after the first entry version string won't be given */
- my_version = -1;
- }
- if (! import_entry_belongs_here(e, inst->inst_be)) {
- /* silently skip */
- slapi_entry_free(e);
- continue;
- }
- if (slapi_entry_schema_check(NULL, e) != 0) {
- import_log_notice(job, "WARNING: skipping entry \"%s\" which "
- "violates schema, ending line %d of file "
- "\"%s\"", slapi_entry_get_dn(e),
- curr_lineno, curr_filename);
- slapi_entry_free(e);
- job->skipped++;
- continue;
- }
- /* If we are importing pre-encrypted attributes, we need
- * to skip syntax checks for the encrypted values. */
- if (!(job->encrypt) && inst->attrcrypt_configured) {
- Slapi_Entry *e_copy = NULL;
- /* Scan through the entry to see if any present
- * attributes are configured for encryption. */
- slapi_entry_first_attr(e, &attr);
- while (attr) {
- char *type = NULL;
- struct attrinfo *ai = NULL;
- slapi_attr_get_type(attr, &type);
- /* Check if this type is configured for encryption. */
- ainfo_get(be, type, &ai);
- if (ai->ai_attrcrypt != NULL) {
- /* Make a copy of the entry to use for syntax
- * checking if a copy has not been made yet. */
- if (e_copy == NULL) {
- e_copy = slapi_entry_dup(e);
- }
- /* Delete the enrypted attribute from the copy. */
- slapi_entry_attr_delete(e_copy, type);
- }
- slapi_entry_next_attr(e, attr, &attr);
- }
- if (e_copy) {
- syntax_err = slapi_entry_syntax_check(NULL, e_copy, 0);
- slapi_entry_free(e_copy);
- } else {
- syntax_err = slapi_entry_syntax_check(NULL, e, 0);
- }
- } else {
- syntax_err = slapi_entry_syntax_check(NULL, e, 0);
- }
- /* Check attribute syntax */
- if (syntax_err != 0)
- {
- import_log_notice(job, "WARNING: skipping entry \"%s\" which "
- "violates attribute syntax, ending line %d of "
- "file \"%s\"", slapi_entry_get_dn(e),
- curr_lineno, curr_filename);
- slapi_entry_free(e);
- job->skipped++;
- continue;
- }
- /* generate uniqueid if necessary */
- if (import_generate_uniqueid(job, e) != UID_SUCCESS) {
- goto error;
- }
- if (g_get_global_lastmod()) {
- import_add_created_attrs(e);
- }
- /* Add nsTombstoneCSN to tombstone entries unless it's already present */
- import_generate_tombstone_csn(e);
- ep = import_make_backentry(e, id);
- if ((ep == NULL) || (ep->ep_entry == NULL)) {
- slapi_entry_free(e);
- backentry_free(&ep);
- goto error;
- }
- /* check for include/exclude subtree lists */
- if (! ldbm_back_ok_to_dump(backentry_get_ndn(ep),
- job->include_subtrees,
- job->exclude_subtrees)) {
- backentry_free(&ep);
- continue;
- }
- /* not sure what this does, but it looked like it could be
- * simplified. if it's broken, it's my fault. -robey
- */
- if (slapi_entry_attr_find(ep->ep_entry, "userpassword", &attr) == 0) {
- Slapi_Value **va = attr_get_present_values(attr);
- pw_encodevals( (Slapi_Value **)va ); /* jcm - cast away const */
- }
- if (job->flags & FLAG_ABORT) {
- backentry_free(&ep);
- goto error;
- }
- /* if usn_value is available AND the entry does not have it, */
- if (job->usn_value && slapi_entry_attr_find(ep->ep_entry,
- SLAPI_ATTR_ENTRYUSN, &attr)) {
- slapi_entry_add_value(ep->ep_entry, SLAPI_ATTR_ENTRYUSN,
- job->usn_value);
- }
- /* Now we have this new entry, all decoded
- * Next thing we need to do is:
- * (1) see if the appropriate fifo location contains an
- * entry which had been processed by the indexers.
- * If so, proceed.
- * If not, spin waiting for it to become free.
- * (2) free the old entry and store the new one there.
- * (3) Update the job progress indicators so the indexers
- * can use the new entry.
- */
- idx = id % job->fifo.size;
- old_ep = job->fifo.item[idx].entry;
- if (old_ep) {
- /* for the slot to be recycled, it needs to be already absorbed
- * by the foreman (id >= ready_EID), and all the workers need to
- * be finished with it (refcount = 0).
- */
- while (((old_ep->ep_refcnt > 0) ||
- (old_ep->ep_id >= job->ready_EID))
- && (info->command != ABORT) && !(job->flags & FLAG_ABORT)) {
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- if (job->flags & FLAG_ABORT){
- backentry_free(&ep);
- goto error;
- }
- info->state = RUNNING;
- PR_ASSERT(old_ep == job->fifo.item[idx].entry);
- job->fifo.item[idx].entry = NULL;
- if (job->fifo.c_bsize > job->fifo.item[idx].esize)
- job->fifo.c_bsize -= job->fifo.item[idx].esize;
- else
- job->fifo.c_bsize = 0;
- backentry_free(&old_ep);
- }
- newesize = (slapi_entry_size(ep->ep_entry) + sizeof(struct backentry));
- if (newesize > job->fifo.bsize) { /* entry too big */
- import_log_notice(job, "WARNING: skipping entry \"%s\" "
- "ending line %d of file \"%s\"",
- slapi_entry_get_dn(e),
- curr_lineno, curr_filename);
- import_log_notice(job, "REASON: entry too large (%lu bytes) for "
- "the buffer size (%lu bytes)", (long unsigned int)newesize, (long unsigned int)job->fifo.bsize);
- backentry_free(&ep);
- job->skipped++;
- continue;
- }
- /* Now check if fifo has enough space for the new entry */
- if ((job->fifo.c_bsize + newesize) > job->fifo.bsize) {
- import_wait_for_space_in_fifo( job, newesize );
- }
- /* We have enough space */
- job->fifo.item[idx].filename = curr_filename;
- job->fifo.item[idx].line = curr_lineno;
- job->fifo.item[idx].entry = ep;
- job->fifo.item[idx].bad = 0;
- job->fifo.item[idx].esize = newesize;
- /* Add the entry size to total fifo size */
- job->fifo.c_bsize += ep->ep_entry ? job->fifo.item[idx].esize : 0;
- /* Update the job to show our progress */
- job->lead_ID = id;
- if ((id - info->first_ID) <= job->fifo.size) {
- job->trailing_ID = info->first_ID;
- } else {
- job->trailing_ID = id - job->fifo.size;
- }
- /* Update our progress meter too */
- info->last_ID_processed = id;
- id++;
- if (job->flags & FLAG_ABORT){
- goto error;
- }
- if (info->command == STOP) {
- if (fd >= 0)
- close(fd);
- finished = 1;
- }
- }
- slapi_value_free(&(job->usn_value));
- import_free_ldif(&c);
- info->state = FINISHED;
- return;
- error:
- slapi_value_free(&(job->usn_value));
- info->state = ABORTED;
- }
- static int
- index_set_entry_to_fifo(ImportWorkerInfo *info, Slapi_Entry *e,
- ID id, ID *total_id, int curr_entry)
- {
- int rc = -1;
- ImportJob *job = info->job;
- int idx;
- struct backentry *ep = NULL, *old_ep = NULL;
- size_t newesize = 0;
- Slapi_Attr *attr = NULL;
- PRIntervalTime sleeptime = PR_MillisecondsToInterval(import_sleep_time);
- /* generate uniqueid if necessary */
- if (import_generate_uniqueid(job, e) != UID_SUCCESS) {
- goto bail;
- }
- ep = import_make_backentry(e, id);
- if (NULL == ep) {
- goto bail;
- }
- /* not sure what this does, but it looked like it could be
- * simplified. if it's broken, it's my fault. -robey
- */
- if (slapi_entry_attr_find(ep->ep_entry, "userpassword", &attr) == 0) {
- Slapi_Value **va = attr_get_present_values(attr);
- pw_encodevals( (Slapi_Value **)va ); /* jcm - cast away const */
- }
- if (job->flags & FLAG_ABORT) {
- backentry_free(&ep);
- goto bail;
- }
- /* Now we have this new entry, all decoded
- * Next thing we need to do is:
- * (1) see if the appropriate fifo location contains an
- * entry which had been processed by the indexers.
- * If so, proceed.
- * If not, spin waiting for it to become free.
- * (2) free the old entry and store the new one there.
- * (3) Update the job progress indicators so the indexers
- * can use the new entry.
- */
- idx = (*total_id) % job->fifo.size;
- old_ep = job->fifo.item[idx].entry;
- if (old_ep) {
- /* for the slot to be recycled, it needs to be already absorbed
- * by the foreman ((*total_id) >= ready_EID), and all the workers
- * need to be finished with it (refcount = 0).
- */
- while (((old_ep->ep_refcnt > 0) || (old_ep->ep_id >= job->ready_EID))
- && (info->command != ABORT) && !(job->flags & FLAG_ABORT)) {
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- if (job->flags & FLAG_ABORT) {
- backentry_free(&ep);
- goto bail;
- }
- info->state = RUNNING;
- PR_ASSERT(old_ep == job->fifo.item[idx].entry);
- job->fifo.item[idx].entry = NULL;
- if (job->fifo.c_bsize > job->fifo.item[idx].esize) {
- job->fifo.c_bsize -= job->fifo.item[idx].esize;
- } else {
- job->fifo.c_bsize = 0;
- }
- backentry_free(&old_ep);
- }
- newesize = (slapi_entry_size(ep->ep_entry) + sizeof(struct backentry));
- if (newesize > job->fifo.bsize) { /* entry too big */
- import_log_notice(job, "WARNING: skipping entry \"%s\"",
- slapi_entry_get_dn(e));
- import_log_notice(job, "REASON: entry too large (%lu bytes) for "
- "the buffer size (%lu bytes)", (long unsigned int)newesize, (long unsigned int)job->fifo.bsize);
- backentry_free(&ep);
- job->skipped++;
- rc = 0; /* go to the next loop */
- }
- /* Now check if fifo has enough space for the new entry */
- if ((job->fifo.c_bsize + newesize) > job->fifo.bsize) {
- import_wait_for_space_in_fifo( job, newesize );
- }
- /* We have enough space */
- job->fifo.item[idx].filename = ID2ENTRY LDBM_FILENAME_SUFFIX;
- job->fifo.item[idx].line = curr_entry;
- job->fifo.item[idx].entry = ep;
- job->fifo.item[idx].bad = 0;
- job->fifo.item[idx].esize = newesize;
- /* Add the entry size to total fifo size */
- job->fifo.c_bsize += ep->ep_entry? job->fifo.item[idx].esize : 0;
- /* Update the job to show our progress */
- job->lead_ID = *total_id;
- if ((*total_id - info->first_ID) <= job->fifo.size) {
- job->trailing_ID = info->first_ID;
- } else {
- job->trailing_ID = *total_id - job->fifo.size;
- }
- /* Update our progress meter too */
- info->last_ID_processed = *total_id;
- (*total_id)++;
- rc = 0; /* done */
- bail:
- return rc;
- }
- /* producer thread for re-indexing:
- * read id2entry, parsing entries (str2entry) (needed???), assigning
- * them IDs (again, needed???) and queueing them on the entry FIFO.
- * other threads will do the indexing -- same as in import.
- */
- void
- index_producer(void *param)
- {
- ImportWorkerInfo *info = (ImportWorkerInfo *)param;
- ImportJob *job = info->job;
- ID id = job->first_ID;
- Slapi_Entry *e = NULL;
- ldbm_instance *inst = job->inst;
- PRIntervalTime sleeptime;
- int finished = 0;
- int rc = 0;
- /* vars for Berkeley DB */
- DB_ENV *env = NULL;
- char *id2entry = NULL;
- char *tmpid2entry = NULL;
- DB *db = NULL;
- DB *tmp_db = NULL;
- DBC *dbc = NULL;
- DBT key = {0};
- DBT data = {0};
- int db_rval = -1;
- backend *be = inst->inst_be;
- int isfirst = 1;
- int curr_entry = 0;
- PR_ASSERT(info != NULL);
- PR_ASSERT(inst != NULL);
- PR_ASSERT(be != NULL);
-
- if ( job->flags & FLAG_ABORT )
- goto error;
- sleeptime = PR_MillisecondsToInterval(import_sleep_time);
- /* pause until we're told to run */
- while ((info->command == PAUSE) && !(job->flags & FLAG_ABORT)) {
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- info->state = RUNNING;
- /* open id2entry with dedicated db env and db handler */
- if ( dblayer_get_aux_id2entry( be, &db, &env, &id2entry ) != 0 ||
- db == NULL || env == NULL) {
- LDAPDebug0Args(LDAP_DEBUG_ANY, "Could not open id2entry\n" );
- goto error;
- }
- if (job->flags & FLAG_DN2RDN) {
- /* open new id2entry for the rdn format entries */
- if ( dblayer_get_aux_id2entry_ext( be, &tmp_db, &env, &tmpid2entry,
- DBLAYER_AUX_ID2ENTRY_TMP ) != 0 ||
- tmp_db == NULL || env == NULL) {
- LDAPDebug0Args(LDAP_DEBUG_ANY, "Could not open new id2entry\n");
- goto error;
- }
- }
- /* get a cursor to we can walk over the table */
- db_rval = db->cursor(db, NULL, &dbc, 0);
- if ( db_rval || !dbc ) {
- LDAPDebug( LDAP_DEBUG_ANY,
- "Failed to get cursor for reindexing\n", 0, 0, 0 );
- dblayer_release_id2entry(be, db);
- goto error;
- }
- /* we loop around reading the input files and processing each entry
- * as we read it.
- */
- finished = 0;
- while (!finished) {
- ID temp_id;
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- while ((info->command == PAUSE) && !(job->flags & FLAG_ABORT)){
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- info->state = RUNNING;
- key.flags = DB_DBT_MALLOC;
- data.flags = DB_DBT_MALLOC;
- if (isfirst)
- {
- db_rval = dbc->c_get(dbc, &key, &data, DB_FIRST);
- isfirst = 0;
- }
- else
- {
- db_rval = dbc->c_get(dbc, &key, &data, DB_NEXT);
- }
-
- if (0 != db_rval) {
- if (DB_NOTFOUND != db_rval) {
- LDAPDebug(LDAP_DEBUG_ANY, "%s: Failed to read database, "
- "errno=%d (%s)\n", inst->inst_name, db_rval,
- dblayer_strerror(db_rval));
- if (job->task) {
- slapi_task_log_notice(job->task,
- "%s: Failed to read database, err %d (%s)",
- inst->inst_name, db_rval,
- dblayer_strerror(db_rval));
- }
- }
- break;
- }
- curr_entry++;
- temp_id = id_stored_to_internal((char *)key.data);
- /* call post-entry plugin */
- plugin_call_entryfetch_plugins((char **) &data.dptr, &data.dsize);
- if (entryrdn_get_switch()) {
- char *rdn = NULL;
-
- /* rdn is allocated in get_value_from_string */
- rc = get_value_from_string((const char *)data.dptr, "rdn", &rdn);
- if (rc) {
- /* data.dptr may not include rdn: ..., try "dn: ..." */
- e = slapi_str2entry( data.dptr, SLAPI_STR2ENTRY_NO_ENTRYDN );
- if (job->flags & FLAG_DN2RDN) {
- int len = 0;
- int options = SLAPI_DUMP_STATEINFO | SLAPI_DUMP_UNIQUEID |
- SLAPI_DUMP_RDN_ENTRY;
- slapi_ch_free(&(data.data));
- data.dptr = slapi_entry2str_with_options(e, &len, options);
- data.dsize = len + 1;
- /* store it in the new id2entry db file */
- rc = tmp_db->put( tmp_db, NULL, &key, &data, 0);
- if (rc) {
- LDAPDebug2Args( LDAP_DEBUG_TRACE,
- "index_producer: converting an entry "
- "from dn format to rdn format failed "
- "(dn: %s, ID: %d)\n",
- slapi_entry_get_dn_const(e), temp_id);
- slapi_ch_free(&(data.data));
- goto error;
- }
- }
- } else {
- char *normdn = NULL;
- struct backdn *bdn =
- dncache_find_id(&inst->inst_dncache, temp_id);
- if (bdn) {
- /* don't free dn */
- normdn = (char *)slapi_sdn_get_dn(bdn->dn_sdn);
- CACHE_RETURN(&inst->inst_dncache, &bdn);
- } else {
- Slapi_DN *sdn = NULL;
- rc = entryrdn_lookup_dn(be, rdn, temp_id, &normdn, NULL, NULL);
- if (rc) {
- /* We cannot use the entryrdn index;
- * Compose dn from the entries in id2entry */
- Slapi_RDN psrdn = {0};
- char *pid_str = NULL;
- char *pdn = NULL;
- LDAPDebug2Args( LDAP_DEBUG_TRACE,
- "index_producer: entryrdn is not available; "
- "composing dn (rdn: %s, ID: %d)\n",
- rdn, temp_id);
- rc = get_value_from_string((const char *)data.dptr,
- LDBM_PARENTID_STR, &pid_str);
- if (rc) {
- rc = 0; /* assume this is a suffix */
- } else {
- ID pid = (ID)strtol(pid_str, (char **)NULL, 10);
- slapi_ch_free_string(&pid_str);
- /* if pid is larger than the current pid temp_id,
- * the parent entry hasn't */
- rc = import_get_and_add_parent_rdns(info, inst, db,
- pid, &id, &psrdn, &curr_entry);
- if (rc) {
- LDAPDebug2Args( LDAP_DEBUG_ANY,
- "ldbm2index: Failed to compose dn for "
- "(rdn: %s, ID: %d)\n", rdn, temp_id);
- slapi_ch_free_string(&rdn);
- slapi_rdn_done(&psrdn);
- continue;
- }
- /* Generate DN string from Slapi_RDN */
- rc = slapi_rdn_get_dn(&psrdn, &pdn);
- slapi_rdn_done(&psrdn);
- if (rc) {
- LDAPDebug2Args( LDAP_DEBUG_ANY,
- "ldbm2index: Failed to compose dn for "
- "(rdn: %s, ID: %d) from Slapi_RDN\n",
- rdn, temp_id);
- slapi_ch_free_string(&rdn);
- continue;
- }
- }
- normdn = slapi_ch_smprintf("%s%s%s",
- rdn, pdn?",":"", pdn?pdn:"");
- slapi_ch_free_string(&pdn);
- }
- /* dn is not dup'ed in slapi_sdn_new_dn_byref.
- * It's set to bdn and put in the dn cache. */
- sdn = slapi_sdn_new_normdn_byref(normdn);
- bdn = backdn_init(sdn, temp_id, 0);
- CACHE_ADD( &inst->inst_dncache, bdn, NULL );
- CACHE_RETURN(&inst->inst_dncache, &bdn);
- slapi_log_error(SLAPI_LOG_CACHE, "ldbm2index",
- "entryrdn_lookup_dn returned: %s, "
- "and set to dn cache\n", normdn);
- }
- e = slapi_str2entry_ext(normdn, NULL, data.dptr,
- SLAPI_STR2ENTRY_NO_ENTRYDN);
- slapi_ch_free_string(&rdn);
- }
- } else {
- e = slapi_str2entry(data.data, 0);
- if ( NULL == e ) {
- if (job->task) {
- slapi_task_log_notice(job->task,
- "%s: WARNING: skipping badly formatted entry (id %lu)",
- inst->inst_name, (u_long)temp_id);
- }
- LDAPDebug(LDAP_DEBUG_ANY,
- "%s: WARNING: skipping badly formatted entry (id %lu)\n",
- inst->inst_name, (u_long)temp_id, 0);
- continue;
- }
- }
- slapi_ch_free(&(key.data));
- slapi_ch_free(&(data.data));
- rc = index_set_entry_to_fifo(info, e, temp_id, &id, curr_entry);
- if (rc) {
- goto error;
- }
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- if (info->command == STOP) {
- finished = 1;
- }
- }
- dbc->c_close(dbc); dbc = NULL;
- db->close(db, 0);
- if (job->flags & FLAG_DN2RDN) {
- /* remove id2entry, then rename tmp to id2entry */
- tmp_db->close(tmp_db, 0);
- rc = db_create(&db, env, 0);
- if (rc) {
- LDAPDebug1Arg(LDAP_DEBUG_ANY,
- "Creating db handle to remove %s failed.\n", id2entry);
- goto bail;
- }
- rc = db->remove(db, id2entry, NULL, 0);
- if (rc) {
- LDAPDebug1Arg(LDAP_DEBUG_ANY, "Removing %s failed.\n", id2entry);
- goto bail;
- }
- rc = db_create(&db, env, 0);
- if (rc) {
- LDAPDebug2Args(LDAP_DEBUG_ANY,
- "Creating db handle to rename %s to %s failed.\n",
- tmpid2entry, id2entry);
- goto bail;
- }
- rc = db->rename(db, tmpid2entry, NULL, id2entry, 0);
- if (rc) {
- LDAPDebug2Args(LDAP_DEBUG_ANY, "Renaming %s to %s failed.\n",
- tmpid2entry, id2entry);
- goto bail;
- }
- }
- dblayer_release_aux_id2entry(be, NULL, env);
- slapi_ch_free_string(&id2entry);
- slapi_ch_free_string(&tmpid2entry);
- info->state = FINISHED;
- return;
- error:
- if (dbc) {
- dbc->c_close(dbc);
- }
- if (job->flags & FLAG_DN2RDN) {
- if (tmp_db) {
- tmp_db->close(tmp_db, 0);
- rc = db_create(&tmp_db, env, 0);
- if (rc) {
- LDAPDebug1Arg(LDAP_DEBUG_ANY,
- "Creating db handle to remove %s s failed.\n",
- tmpid2entry);
- goto bail;
- }
- /* remove tmp */
- rc = tmp_db->remove(tmp_db, tmpid2entry, NULL, 0);
- if (rc) {
- LDAPDebug1Arg(LDAP_DEBUG_ANY, "Removing %s failed.\n",
- tmpid2entry);
- goto bail;
- }
- }
- }
- bail:
- dblayer_release_aux_id2entry( be, db, env );
- slapi_ch_free_string(&id2entry);
- slapi_ch_free_string(&tmpid2entry);
- info->state = ABORTED;
- }
- struct upgradedn_attr {
- char *ud_type;
- char *ud_value;
- struct upgradedn_attr *ud_next;
- int ud_flags;
- #define OLD_DN_NORMALIZE 0x1
- };
- static void
- upgradedn_free_list(struct upgradedn_attr **ud_list)
- {
- struct upgradedn_attr *ptr = *ud_list;
- while (ptr) {
- struct upgradedn_attr *next = ptr->ud_next;
- slapi_ch_free_string(&ptr->ud_type);
- slapi_ch_free_string(&ptr->ud_value);
- slapi_ch_free((void **)&ptr);
- ptr = next;
- }
- *ud_list = NULL;
- return;
- }
- static void
- upgradedn_add_to_list(struct upgradedn_attr **ud_list,
- char *type, char *value, int flag)
- {
- struct upgradedn_attr *elem =
- (struct upgradedn_attr *) slapi_ch_malloc(sizeof(struct upgradedn_attr));
- elem->ud_type = type;
- elem->ud_value = value;
- elem->ud_flags = flag;
- elem->ud_next = *ud_list;
- *ud_list = elem;
- return;
- }
- /*
- * Return value: count of max consecutive spaces
- */
- static int
- has_spaces(const char *str)
- {
- char *p = (char *)str;
- char *np;
- char *endp = p + strlen(str);
- int wcnt;
- int maxwcnt = 0;
- next:
- if ((np = strchr(p, ' ')) || (np = strchr(p, '\t'))) {
- wcnt = 0;
- while ((np < endp) && isspace(*np)) {
- wcnt++;
- np++;
- }
- if (maxwcnt < wcnt) {
- maxwcnt = wcnt;
- }
- p = np;
- goto next;
- } else {
- goto bail;
- }
- bail:
- return maxwcnt;
- }
- static int
- add_IDs_to_IDarray(ID ***dn_norm_sp_conflict, int *max, int i, char *strids)
- {
- char *p, *next, *start;
- ID my_id;
- ID **conflict;
- ID *idp;
- ID *endp;
- size_t len;
- if ((NULL == dn_norm_sp_conflict) || (NULL == max) || (0 == *max)) {
- return 1;
- }
- p = PL_strchr(strids, ':');
- if (NULL == p) {
- LDAPDebug1Arg(LDAP_DEBUG_ANY,
- "Format error: no ':' in %s\n", strids);
- return 1;
- }
- *p = '\0';
- my_id = (ID)strtol(strids, (char **)NULL, 10);
- if (!my_id) {
- LDAPDebug1Arg(LDAP_DEBUG_ANY, "Invalid ID in %s\n", strids);
- return 1;
- }
- if (NULL == *dn_norm_sp_conflict) {
- *dn_norm_sp_conflict = (ID **)slapi_ch_malloc(sizeof(ID *) * *max);
- } else if (*max == i + 1) {
- *max *= 2;
- *dn_norm_sp_conflict = (ID **)slapi_ch_realloc((char *)*dn_norm_sp_conflict,
- sizeof(ID *) * *max);
- }
- conflict = *dn_norm_sp_conflict;
- len = strlen(strids);
- while (isspace(*(++p)));
- start = p;
- /* since the format is "ID ID ID ...", max count is len/2 + 1 and +1 for my_id */
- conflict[i] = (ID *)slapi_ch_calloc((len/2 + 2), sizeof(ID));
- idp = conflict[i];
- endp = idp + len/2 + 2;
- *idp++ = my_id;
- for (p = strtok_r(start, " \n", &next); p && (idp < endp);
- p = strtok_r(NULL, " \n", &next), idp++) {
- *idp = (ID)strtol(p, (char **)NULL, 10);
- }
- if (idp < endp) {
- *idp = 0;
- } else if (idp == endp) {
- conflict[i] = (ID *)slapi_ch_realloc((char *)conflict[i],
- (len/2 + 3) * sizeof(ID));
- idp = conflict[i];
- *(idp + len/2 + 2) = 0;
- }
- conflict[i+1] = NULL;
- return 0;
- }
- static void
- free_IDarray(ID ***dn_norm_sp_conflict)
- {
- int i;
- if ((NULL == dn_norm_sp_conflict) || (NULL == *dn_norm_sp_conflict)) {
- return;
- }
- for (i = 0; (*dn_norm_sp_conflict)[i]; i++) {
- slapi_ch_free((void **)&(*dn_norm_sp_conflict)[i]);
- }
- slapi_ch_free((void **)dn_norm_sp_conflict);
- }
- /*
- * dn_norm_sp_conflicts is a double array of IDs.
- * Format:
- * primary_ID0: conflict_ID ...
- * primary_ID1: conflict_ID ...
- * ...
- *
- * is_conflict_ID looks for ghe given id in hte conflict_ID lists
- * If found, its primary_ID is returned.
- * Otherwise, 0 is returned.
- */
- static ID
- is_conflict_ID(ID **dn_norm_sp_conflicts, int max, ID id)
- {
- int i;
- ID *idp;
- for (i = 0; i < max; i++) {
- for (idp = dn_norm_sp_conflicts[i]; idp && *idp; idp++) {
- if (*idp == id) {
- return *dn_norm_sp_conflicts[i];
- }
- }
- }
- return 0;
- }
- /*
- * Producer thread for upgrading dn format
- * FLAG_UPGRADEDNFORMAT | FLAG_DRYRUN -- check the necessity of dn upgrade
- * FLAG_UPGRADEDNFORMAT -- execute dn upgrade
- *
- * Read id2entry,
- * Check the DN syntax attributes if it contains '\' or not AND
- * Check the RDNs of the attributes if the value is surrounded by
- * double-quotes or not.
- * If both are false, skip the entry and go to next
- * If either is true, create an entry which contains a correctly normalized
- * DN attribute values in e_attr list and the original entrydn in the
- * deleted attribute list e_aux_attrs.
- *
- * If FLAG_UPGRADEDNFORMAT is set, worker_threads for indexing DN syntax
- * attributes (+ cn & ou) are brought up. Foreman thread updates entrydn
- * or entryrd index as well as the entry itself in the id2entry.db#.
- *
- * Note: QUIT state for info->state is introduced for DRYRUN mode to
- * distinguish the intentional QUIT (found the dn upgrade candidate)
- * from ABORTED (aborted or error) and FINISHED (scan all the entries
- * and found no candidate to upgrade)
- */
- /*
- * FLAG_UPGRADEDNFORMAT: need to take care space reduction
- * dn: cn=TEST USER0 --> dn: cn=TEST USER0
- * If multiple DNs are found having different count of spaces,
- * remove the second and later with exporting them into ldif file.
- * In the dry run, it retrieves all the entries having spaces in dn and
- * store the DN and OID in a file. Mark, conflicts if any.
- * In the real run, store only no conflict entries and first conflicted one.
- * The rest are stored in an ldif file.
- *
- * Cases:
- * FLAG_DRYRUN | FLAG_UPGRADEDNFORMAT | FLAG_UPGRADEDNFORMAT_V1
- * ==> 1 & 2-1
- * FLAG_DRYRUN | FLAG_UPGRADEDNFORMAT_V1
- * ==> 2-1
- * FLAG_UPGRADEDNFORMAT | FLAG_UPGRADEDNFORMAT_V1
- * ==> 1 & 2-2,3
- * FLAG_UPGRADEDNFORMAT_V1
- * ==> 2-2,3
- *
- * 1) dn normalization
- * 2) space handling
- * 2-1) upgradedn dry-run: output into a file (in the instance db dir?)
- * format:
- * <original dn>:OID
- * 2-2) upgrade script sorts the file; retrieve duplicated DNs
- * <dn>:OID0
- * <dupped dn>:OID1
- * <dupped dn>:OID2
- *
- * format:
- * OID0:OID1 OID2 ...
- * 2-3) upgradedn: compare the OID with the OID1,OID2,
- * if match, rename the rdn value to "value <entryid>".
- */
- void
- upgradedn_producer(void *param)
- {
- ImportWorkerInfo *info = (ImportWorkerInfo *)param;
- ImportJob *job = info->job;
- ID id = job->first_ID;
- Slapi_Entry *e = NULL;
- struct backentry *ep = NULL, *old_ep = NULL;
- ldbm_instance *inst = job->inst;
- PRIntervalTime sleeptime;
- int finished = 0;
- int idx;
- int rc = 0;
- Slapi_Attr *a = NULL;
- Slapi_DN *sdn = NULL;
- char *workdn = NULL;
- struct upgradedn_attr *ud_list = NULL;
- char **ud_vals = NULL;
- char **ud_valp = NULL;
- struct upgradedn_attr *ud_ptr = NULL;
- Slapi_Attr *ud_attr = NULL;
- char *ecopy = NULL;
- char *normdn = NULL;
- char *rdn = NULL; /* original rdn */
- int is_dryrun = 0; /* FLAG_DRYRUN */
- int chk_dn_norm = 0; /* FLAG_UPGRADEDNFORMAT */
- int chk_dn_norm_sp = 0; /* FLAG_UPGRADEDNFORMAT_V1 */
- ID **dn_norm_sp_conflicts = NULL;
- int do_dn_norm = 0; /* do dn_norm */
- int do_dn_norm_sp = 0; /* do dn_norm_sp */
- int rdn_has_spaces = 0;
- int info_state = 0; /* state to add to info->state (for dryrun only) */
- int skipit = 0;
- ID pid;
- struct backdn *bdn = NULL;
- /* vars for Berkeley DB */
- DB_ENV *env = NULL;
- DB *db = NULL;
- DBC *dbc = NULL;
- DBT key = {0};
- DBT data = {0};
- int db_rval = -1;
- backend *be = inst->inst_be;
- int isfirst = 1;
- int curr_entry = 0;
- size_t newesize = 0;
- PR_ASSERT(info != NULL);
- PR_ASSERT(inst != NULL);
- PR_ASSERT(be != NULL);
- if ( job->flags & FLAG_ABORT ) {
- goto error;
- }
- is_dryrun = job->flags & FLAG_DRYRUN;
- chk_dn_norm = job->flags & FLAG_UPGRADEDNFORMAT;
- chk_dn_norm_sp = job->flags & FLAG_UPGRADEDNFORMAT_V1;
- if (!chk_dn_norm && !chk_dn_norm_sp) {
- /* Nothing to do... */
- LDAPDebug0Args(LDAP_DEBUG_ANY, "UpgradeDnFormat is not required.\n");
- info->state = FINISHED;
- goto done;
- }
- sleeptime = PR_MillisecondsToInterval(import_sleep_time);
- /* pause until we're told to run */
- while ((info->command == PAUSE) && !(job->flags & FLAG_ABORT)) {
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- info->state = RUNNING;
- /* open id2entry with dedicated db env and db handler */
- if ( dblayer_get_aux_id2entry( be, &db, &env, NULL ) != 0 || db == NULL ||
- env == NULL) {
- LDAPDebug0Args(LDAP_DEBUG_ANY, "Could not open id2entry\n");
- goto error;
- }
- /* get a cursor to we can walk over the table */
- db_rval = db->cursor(db, NULL, &dbc, 0);
- if ( db_rval || !dbc ) {
- LDAPDebug0Args(LDAP_DEBUG_ANY, "Failed to get cursor for reindexing\n");
- dblayer_release_id2entry(be, db);
- goto error;
- }
- /* we loop around reading the input files and processing each entry
- * as we read it.
- */
- finished = 0;
- while (!finished) {
- ID temp_id;
- int dn_in_cache;
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- while ((info->command == PAUSE) && !(job->flags & FLAG_ABORT)){
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- info->state = RUNNING;
- slapi_ch_free(&(data.data));
- key.flags = DB_DBT_MALLOC;
- data.flags = DB_DBT_MALLOC;
- if (isfirst) {
- db_rval = dbc->c_get(dbc, &key, &data, DB_FIRST);
- isfirst = 0;
- } else {
- db_rval = dbc->c_get(dbc, &key, &data, DB_NEXT);
- }
-
- if (0 != db_rval) {
- if (DB_NOTFOUND == db_rval) {
- LDAPDebug1Arg(LDAP_DEBUG_ANY, "%s: Finished to read database\n",
- inst->inst_name);
- if (job->task) {
- slapi_task_log_notice(job->task,
- "%s: Finished to read database", inst->inst_name);
- }
- } else {
- LDAPDebug(LDAP_DEBUG_ANY, "%s: Failed to read database, "
- "errno=%d (%s)\n", inst->inst_name, db_rval,
- dblayer_strerror(db_rval));
- if (job->task) {
- slapi_task_log_notice(job->task,
- "%s: Failed to read database, err %d (%s)",
- inst->inst_name, db_rval,
- dblayer_strerror(db_rval));
- }
- }
- finished = 1;
- break; /* error or done */
- }
- curr_entry++;
- temp_id = id_stored_to_internal((char *)key.data);
- slapi_ch_free(&(key.data));
- /* call post-entry plugin */
- plugin_call_entryfetch_plugins((char **)&data.dptr, &data.dsize);
- slapi_ch_free_string(&ecopy);
- ecopy = (char *)slapi_ch_malloc(data.dsize + 1);
- memcpy(ecopy, data.dptr, data.dsize);
- *(ecopy + data.dsize) = '\0';
- normdn = NULL;
- do_dn_norm = 0;
- do_dn_norm_sp = 0;
- rdn_has_spaces = 0;
- dn_in_cache = 0;
- if (entryrdn_get_switch()) {
-
- /* original rdn is allocated in get_value_from_string */
- rc = get_value_from_string((const char *)data.dptr, "rdn", &rdn);
- if (rc) {
- /* data.dptr may not include rdn: ..., try "dn: ..." */
- e = slapi_str2entry(data.dptr,
- SLAPI_STR2ENTRY_USE_OBSOLETE_DNFORMAT);
- } else {
- bdn = dncache_find_id(&inst->inst_dncache, temp_id);
- if (bdn) {
- /* don't free normdn */
- normdn = (char *)slapi_sdn_get_dn(bdn->dn_sdn);
- CACHE_RETURN(&inst->inst_dncache, &bdn);
- dn_in_cache = 1;
- } else {
- /* free normdn */
- rc = entryrdn_lookup_dn(be, rdn, temp_id,
- (char **)&normdn, NULL, NULL);
- if (rc) {
- /* We cannot use the entryrdn index;
- * Compose dn from the entries in id2entry */
- Slapi_RDN psrdn = {0};
- char *pid_str = NULL;
- char *pdn = NULL;
- LDAPDebug2Args( LDAP_DEBUG_TRACE,
- "index_producer: entryrdn is not available; "
- "composing dn (rdn: %s, ID: %d)\n",
- rdn, temp_id);
- rc = get_value_from_string((const char *)data.dptr,
- LDBM_PARENTID_STR, &pid_str);
- if (rc) {
- rc = 0; /* assume this is a suffix */
- } else {
- pid = (ID)strtol(pid_str, (char **)NULL, 10);
- slapi_ch_free_string(&pid_str);
- /* if pid is larger than the current pid temp_id,
- * the parent entry hasn't */
- rc = import_get_and_add_parent_rdns(info, inst, db,
- pid, &id, &psrdn, &curr_entry);
- if (rc) {
- LDAPDebug2Args( LDAP_DEBUG_ANY,
- "uptradedn: Failed to compose dn for "
- "(rdn: %s, ID: %d)\n", rdn, temp_id);
- slapi_ch_free_string(&rdn);
- slapi_rdn_done(&psrdn);
- continue;
- }
- /* Generate DN string from Slapi_RDN */
- rc = slapi_rdn_get_dn(&psrdn, &pdn);
- slapi_rdn_done(&psrdn);
- if (rc) {
- LDAPDebug2Args( LDAP_DEBUG_ANY,
- "uptradedn: Failed to compose dn for "
- "(rdn: %s, ID: %d) from Slapi_RDN\n",
- rdn, temp_id);
- slapi_ch_free_string(&rdn);
- continue;
- }
- }
- /* free normdn */
- normdn = slapi_ch_smprintf("%s%s%s",
- rdn, pdn?",":"", pdn?pdn:"");
- slapi_ch_free_string(&pdn);
- }
- if (is_dryrun) {
- /* if not dryrun, we may change the DN, In such case,
- * we need to put the new value to cache.*/
- /* dn is dup'ed in slapi_sdn_new_dn_byval.
- * It's set to bdn and put in the dn cache. */
- /* normdn is allocated in this scope.
- * Thus, we can just passin. */
- sdn = slapi_sdn_new_normdn_passin(normdn);
- bdn = backdn_init(sdn, temp_id, 0);
- CACHE_ADD( &inst->inst_dncache, bdn, NULL );
- CACHE_RETURN(&inst->inst_dncache, &bdn);
- /* don't free this normdn */
- normdn = (char *)slapi_sdn_get_dn(sdn);
- slapi_log_error(SLAPI_LOG_CACHE, "uptradedn",
- "entryrdn_lookup_dn returned: %s, "
- "and set to dn cache\n", normdn);
- dn_in_cache = 1;
- }
- }
- e = slapi_str2entry_ext(normdn, NULL, data.dptr,
- SLAPI_STR2ENTRY_USE_OBSOLETE_DNFORMAT);
- }
- } else {
- e =
- slapi_str2entry(data.data, SLAPI_STR2ENTRY_USE_OBSOLETE_DNFORMAT);
- rdn = slapi_ch_strdup(slapi_entry_get_rdn_const(e));
- if (NULL == rdn) {
- Slapi_RDN srdn;
- slapi_rdn_init_dn(&srdn, slapi_entry_get_dn_const(e));
- rdn = (char *)slapi_rdn_get_rdn(&srdn); /* rdn is allocated in
- * slapi_rdn_init_dn */
- }
- }
- if ( NULL == e ) {
- if (job->task) {
- slapi_task_log_notice(job->task,
- "%s: WARNING: skipping badly formatted entry (id %lu)",
- inst->inst_name, (u_long)temp_id);
- }
- LDAPDebug(LDAP_DEBUG_ANY,
- "%s: WARNING: skipping badly formatted entry (id %lu)\n",
- inst->inst_name, (u_long)temp_id, 0);
- continue;
- }
- /* From here, e != NULL */
- /*
- * treat dn specially since the entry was generated with the flag
- * SLAPI_STR2ENTRY_USE_OBSOLETE_DNFORMAT
- * -- normalize it with the new format
- */
- if (!normdn) {
- /* No rdn in id2entry or entrydn */
- normdn = (char *)slapi_sdn_get_dn(&(e->e_sdn));
- }
- /*
- * If dryrun && check_dn_norm_sp,
- * check if rdn's containing multi spaces exist or not.
- * If any, output the DN:ID into a file INST_dn_norm_sp.txt in the
- * ldifdir. We have to continue checking all the entries.
- */
- if (chk_dn_norm_sp) {
- char *dn_id;
- char *path; /* <ldifdir>/<inst>_dn_norm_sp.txt is used for
- the temp work file */
- /* open "path" once, and set FILE* to upgradefd */
- if (NULL == job->upgradefd) {
- char *ldifdir = config_get_ldifdir();
- if (ldifdir) {
- path = slapi_ch_smprintf("%s/%s_dn_norm_sp.txt",
- ldifdir, inst->inst_name);
- slapi_ch_free_string(&ldifdir);
- } else {
- path = slapi_ch_smprintf("/var/tmp/%s_dn_norm_sp.txt",
- inst->inst_name);
- }
- if (is_dryrun) {
- job->upgradefd = fopen(path, "w");
- if (NULL == job->upgradefd) {
- if (job->task) {
- slapi_task_log_notice(job->task,
- "%s: No DNs to fix.\n", inst->inst_name);
- }
- LDAPDebug1Arg(LDAP_DEBUG_ANY,
- "%s: No DNs to fix.\n", inst->inst_name);
- slapi_ch_free_string(&path);
- goto bail;
- }
- } else {
- job->upgradefd = fopen(path, "r");
- if (NULL == job->upgradefd) {
- if (job->task) {
- slapi_task_log_notice(job->task,
- "%s: Error: failed to open a file \"%s\"",
- inst->inst_name, path);
- }
- LDAPDebug2Args(LDAP_DEBUG_ANY,
- "%s: Error: failed to open a file \"%s\"\n",
- inst->inst_name, path);
- slapi_ch_free_string(&path);
- goto error;
- }
- }
- }
- slapi_ch_free_string(&path);
- if (is_dryrun) {
- rdn_has_spaces = has_spaces(rdn);
- if (rdn_has_spaces > 0) {
- dn_id = slapi_ch_smprintf("%s:%u\n",
- slapi_entry_get_dn_const(e), temp_id);
- if (EOF == fputs(dn_id, job->upgradefd)) {
- if (job->task) {
- slapi_task_log_notice(job->task,
- "%s: Error: failed to write a line \"%s\"",
- inst->inst_name, dn_id);
- }
- LDAPDebug2Args(LDAP_DEBUG_ANY,
- "%s: Error: failed to write a line \"%s\"",
- inst->inst_name, dn_id);
- slapi_ch_free_string(&dn_id);
- goto error;
- }
- slapi_ch_free_string(&dn_id);
- if (rdn_has_spaces > 1) {
- /* If an rdn containing multi spaces exists,
- * let's check the conflict. */
- do_dn_norm_sp = 1;
- }
- }
- } else { /* !is_dryrun */
- /* check the oid and parentid. */
- /* Set conflict list once, and refer it laster. */
- static int my_idx = 0;
- ID alt_id;
- if (NULL == dn_norm_sp_conflicts) {
- char buf[BUFSIZ];
- int my_max = 8;
- while (fgets(buf, BUFSIZ-1, job->upgradefd)) {
- /* search "OID0: OID1 OID2 ... */
- if (!isdigit(*buf) || (NULL == PL_strchr(buf, ':'))) {
- continue;
- }
- if (add_IDs_to_IDarray(&dn_norm_sp_conflicts, &my_max,
- my_idx, buf)) {
- LDAPDebug1Arg(LDAP_DEBUG_ANY,
- "Failed to set IDs %s to conflict list\n",
- buf);
- goto error;
- }
- my_idx++;
- }
- }
- alt_id = is_conflict_ID(dn_norm_sp_conflicts, my_idx, temp_id);
- if (alt_id) {
- if (alt_id != temp_id) {
- char *newrdn = slapi_create_dn_string("%s %u", rdn, temp_id);
- char *parentdn = slapi_dn_parent(normdn);
- /* This entry is a conflict of alt_id */
- LDAPDebug(LDAP_DEBUG_ANY,
- "Entry %s (%lu) is a conflict of (%lu)\n",
- normdn, temp_id, alt_id);
- LDAPDebug2Args(LDAP_DEBUG_ANY, "Renaming \"%s\" to \"%s\"\n",
- rdn, newrdn);
- if (!dn_in_cache) {
- /* If not in dn cache, normdn needs to be freed. */
- slapi_ch_free_string(&normdn);
- }
- normdn = slapi_ch_smprintf("%s,%s", newrdn, parentdn);
- slapi_ch_free_string(&newrdn);
- slapi_ch_free_string(&parentdn);
- /* Reset DN and RDN in the entry */
- slapi_sdn_done(&(e->e_sdn));
- slapi_sdn_init_normdn_byval(&(e->e_sdn), normdn);
- }
- info_state |= DN_NORM_SP;
- upgradedn_add_to_list(&ud_list,
- slapi_ch_strdup(LDBM_ENTRYRDN_STR),
- slapi_ch_strdup(rdn), 0);
- rc = slapi_entry_add_rdn_values(e);
- if (rc) {
- LDAPDebug(LDAP_DEBUG_ANY, "%s: Failed to add rdn values"
- " to an entry: %s (id %lu)\n",
- inst->inst_name, normdn, (u_long)temp_id);
- goto error;
- }
- } /* !alt_id */
- } /* !is_dryrun */
- } /* if (chk_dn_norm_sp) */
- /* dn is dup'ed in slapi_sdn_new_dn_byval.
- * It's set to bdn and put in the dn cache. */
- /* Waited to put normdn into dncache until it could be modified in
- * chk_dn_norm_sp. */
- if (!dn_in_cache) {
- sdn = slapi_sdn_new_normdn_passin(normdn);
- bdn = backdn_init(sdn, temp_id, 0);
- CACHE_ADD(&inst->inst_dncache, bdn, NULL);
- CACHE_RETURN(&inst->inst_dncache, &bdn);
- slapi_log_error(SLAPI_LOG_CACHE, "uptradedn",
- "set dn %s to dn cache\n", normdn);
- }
- /* Check DN syntax attr values if it contains '\\' or not */
- /* Start from the rdn */
- if (chk_dn_norm) {
- char *endrdn = NULL;
- char *rdnp = NULL;
- endrdn = rdn + strlen(rdn) - 1;
- rdnp = PL_strchr(rdn, '=');
- if (NULL == rdnp) {
- LDAPDebug(LDAP_DEBUG_ANY,
- "%s: WARNING: skipping an entry with corrupted RDN \"%s\" "
- "(id %lu)\n",
- inst->inst_name, rdn, (u_long)temp_id);
- slapi_entry_free(e); e = NULL;
- continue;
- }
- /* rdn contains '\\'. We have to update the value */
- if (PL_strchr(rdnp, '\\')) {
- do_dn_norm = 1;
- } else {
- while ((++rdnp <= endrdn) && (*rdnp == ' ') && (*rdnp == '\t'))
- ;
- /* DN contains an RDN <type>="<value>" ? */
- if ((rdnp != endrdn) && ('"' == *rdnp) && ('"' == *endrdn)) {
- do_dn_norm = 1;
- }
- }
- if (do_dn_norm) {
- upgradedn_add_to_list(&ud_list,
- slapi_ch_strdup(LDBM_ENTRYRDN_STR),
- slapi_ch_strdup(rdn), 0);
- LDAPDebug2Args(LDAP_DEBUG_TRACE,
- "%s: Found upgradedn candidate: (id %lu)\n",
- inst->inst_name, (u_long)temp_id);
- /*
- * In case rdn is type="<RDN>" or type=<\D\N>,
- * add the rdn value if it's not there.
- */
- rc = slapi_entry_add_rdn_values(e);
- if (rc) {
- LDAPDebug(LDAP_DEBUG_ANY, "%s: Failed to add rdn values "
- "to an entry: %s (id %lu)\n",
- inst->inst_name, normdn, (u_long)temp_id);
- slapi_entry_free(e); e = NULL;
- continue;
- }
- }
- /* checking the DN sintax values in the attribute list */
- for (a = e->e_attrs; a; a = a->a_next) {
- if (!slapi_attr_is_dn_syntax_attr(a)) {
- continue; /* not a syntax dn attr */
- }
-
- /* dn syntax attr */
- rc = get_values_from_string((const char *)ecopy,
- a->a_type, &ud_vals);
- if (rc || (NULL == ud_vals)) {
- continue; /* empty; ignore it */
- }
-
- for (ud_valp = ud_vals; ud_valp && *ud_valp; ud_valp++) {
- char **rdns = NULL;
- char **rdnsp = NULL;
- char *valueptr = NULL;
- char *endvalue = NULL;
- int isentrydn = 0;
-
- /* Also check RDN contains double quoted values */
- if (strcasecmp(a->a_type, "entrydn")) {
- /* except entrydn */
- workdn = slapi_ch_strdup(*ud_valp);
- isentrydn = 0;
- } else {
- /* entrydn: Get Slapi DN */
- sdn = slapi_entry_get_sdn(e);
- workdn = slapi_ch_strdup(slapi_sdn_get_dn(sdn));
- isentrydn = 1;
- }
- rdns = slapi_ldap_explode_dn(workdn, 0);
- skipit = 0;
- for (rdnsp = rdns; rdnsp && *rdnsp; rdnsp++) {
- valueptr = PL_strchr(*rdnsp, '=');
- if (NULL == valueptr) {
- skipit = 1;
- break;
- }
- endvalue = *rdnsp + strlen(*rdnsp) - 1;
- while ((++valueptr <= endvalue) &&
- ((' ' == *valueptr) || ('\t' == *valueptr))) ;
- if (0 == strlen(valueptr)) {
- skipit = 1;
- break;
- }
- /* DN syntax value contains an RDN <type>="<value>" or
- * '\\' in the value ?
- * If yes, let's upgrade the dn format. */
- if ((('"' == *valueptr) && ('"' == *endvalue)) ||
- PL_strchr(valueptr, '\\')) {
- do_dn_norm = 1;
- upgradedn_add_to_list(&ud_list,
- slapi_ch_strdup(a->a_type),
- slapi_ch_strdup(*ud_valp),
- isentrydn?0:OLD_DN_NORMALIZE);
- LDAPDebug(LDAP_DEBUG_TRACE,
- "%s: Found upgradedn candidate: %s (id %lu)\n",
- inst->inst_name, valueptr, (u_long)temp_id);
- if (!entryrdn_get_switch() && isentrydn) {
- /* entrydn format */
- /*
- * In case entrydn is type="<DN>",<REST> or
- * type=<\D\N>,<REST>,
- * add the rdn value if it's not there.
- */
- rc = slapi_entry_add_rdn_values(e);
- if (rc) {
- LDAPDebug(LDAP_DEBUG_ANY,
- "%s: Failed to add rdn values "
- "to an entry: %s (id %lu)\n",
- inst->inst_name, normdn, (u_long)temp_id);
- slapi_entry_free(e); e = NULL;
- continue;
- }
- }
- break;
- }
- /*
- * else if (the rdn contains multiple spaces)?
- * if yes, they are reduced to one.
- * SET HAVE_MULTI_SPACES???
- */
- } /* for (rdnsp = rdns; rdnsp && *rdnsp; rdnsp++) */
- if (rdns) {
- slapi_ldap_value_free(rdns);
- } else {
- skipit = 1;
- }
- if (skipit) {
- break;
- }
- slapi_ch_free_string(&workdn);
- } /* for (ud_valp = ud_vals; ud_valp && *ud_valp; ud_valp++) */
- charray_free(ud_vals);
- ud_vals = NULL;
- if (skipit) {
- LDAPDebug(LDAP_DEBUG_ANY, "%s: WARNING: skipping an entry "
- "with a corrupted dn (syntax value): %s "
- "(id %lu)\n",
- inst->inst_name,
- workdn?workdn:"unknown", (u_long)temp_id);
- slapi_ch_free_string(&workdn);
- upgradedn_free_list(&ud_list);
- break;
- }
- } /* for (a = e->e_attrs; a; a = a->a_next) */
- if (skipit) {
- upgradedn_free_list(&ud_list);
- slapi_entry_free(e); e = NULL;
- continue;
- }
- } /* end of if (chk_do_norm) */
- slapi_ch_free_string(&rdn);
- if (is_dryrun) {
- if (do_dn_norm) {
- info_state |= DN_NORM;
- /*
- * If dryrun AND (found we need to do dn norm) AND
- * (no need to check spaces),
- * then we can quit here to return.
- */
- if (!chk_dn_norm_sp) {
- finished = 0; /* make it sure ... */
- upgradedn_free_list(&ud_list);
- slapi_entry_free(e); e = NULL;
- /* found upgrade dn candidates */
- goto bail;
- }
- }
- if (do_dn_norm_sp) {
- info_state |= DN_NORM_SP;
- }
- /* We don't have to update dn syntax values. */
- upgradedn_free_list(&ud_list);
- slapi_entry_free(e); e = NULL;
- continue;
- }
- skipit = 0;
- for (ud_ptr = ud_list; ud_ptr; ud_ptr = ud_ptr->ud_next) {
- Slapi_Value *value = NULL;
- /* Move the current value to e_aux_attrs. */
- /* entryrdn is special since it does not have an attribute in db */
- if (0 == strcmp(ud_ptr->ud_type, LDBM_ENTRYRDN_STR)) {
- /* entrydn contains half normalized value in id2entry,
- thus we have to replace it in id2entry.
- The other DN syntax attribute values store
- the originals. They are taken care by the normalizer.
- */
- a = slapi_attr_new();
- slapi_attr_init(a, ud_ptr->ud_type);
- value = slapi_value_new_string(ud_ptr->ud_value);
- slapi_attr_add_value(a, value);
- slapi_value_free(&value);
- attrlist_add(&e->e_aux_attrs, a);
- } else { /* except "entryrdn" */
- ud_attr = attrlist_find(e->e_attrs, ud_ptr->ud_type);
- if (ud_attr) {
- /* We have to normalize the orignal string to generate
- the key in the index.
- */
- a = attrlist_find(e->e_aux_attrs, ud_ptr->ud_type);
- if (!a) {
- a = slapi_attr_new();
- slapi_attr_init(a, ud_ptr->ud_type);
- } else {
- a = attrlist_remove(&e->e_aux_attrs,
- ud_ptr->ud_type);
- }
- slapi_dn_normalize_case_original(ud_ptr->ud_value);
- value = slapi_value_new_string(ud_ptr->ud_value);
- slapi_attr_add_value(a, value);
- slapi_value_free(&value);
- attrlist_add(&e->e_aux_attrs, a);
- }
- }
- }
- upgradedn_free_list(&ud_list);
- ep = import_make_backentry(e, temp_id);
- if (!ep) {
- slapi_entry_free(e); e = NULL;
- goto error;
- }
- /* Add the newly case-normalized dn to entrydn in the e_attrs list. */
- add_update_entrydn_operational_attributes(ep);
- if (job->flags & FLAG_ABORT)
- goto error;
- /* Now we have this new entry, all decoded
- * Next thing we need to do is:
- * (1) see if the appropriate fifo location contains an
- * entry which had been processed by the indexers.
- * If so, proceed.
- * If not, spin waiting for it to become free.
- * (2) free the old entry and store the new one there.
- * (3) Update the job progress indicators so the indexers
- * can use the new entry.
- */
- idx = id % job->fifo.size;
- old_ep = job->fifo.item[idx].entry;
- if (old_ep) {
- /* for the slot to be recycled, it needs to be already absorbed
- * by the foreman (id >= ready_EID), and all the workers need to
- * be finished with it (refcount = 0).
- */
- while (((old_ep->ep_refcnt > 0) ||
- (old_ep->ep_id >= job->ready_EID))
- && (info->command != ABORT) && !(job->flags & FLAG_ABORT)) {
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- if (job->flags & FLAG_ABORT)
- goto error;
- info->state = RUNNING;
- PR_ASSERT(old_ep == job->fifo.item[idx].entry);
- job->fifo.item[idx].entry = NULL;
- if (job->fifo.c_bsize > job->fifo.item[idx].esize)
- job->fifo.c_bsize -= job->fifo.item[idx].esize;
- else
- job->fifo.c_bsize = 0;
- backentry_free(&old_ep);
- }
- newesize = (slapi_entry_size(ep->ep_entry) + sizeof(struct backentry));
- if (newesize > job->fifo.bsize) { /* entry too big */
- import_log_notice(job, "WARNING: skipping entry \"%s\"",
- slapi_entry_get_dn(e));
- import_log_notice(job, "REASON: entry too large (%lu bytes) for "
- "the buffer size (%lu bytes)", (long unsigned int)newesize, (long unsigned int)job->fifo.bsize);
- backentry_free(&ep);
- job->skipped++;
- continue;
- }
- /* Now check if fifo has enough space for the new entry */
- if ((job->fifo.c_bsize + newesize) > job->fifo.bsize) {
- import_wait_for_space_in_fifo( job, newesize );
- }
- /* We have enough space */
- job->fifo.item[idx].filename = ID2ENTRY LDBM_FILENAME_SUFFIX;
- job->fifo.item[idx].line = curr_entry;
- job->fifo.item[idx].entry = ep;
- job->fifo.item[idx].bad = 0;
- job->fifo.item[idx].esize = newesize;
- /* Add the entry size to total fifo size */
- job->fifo.c_bsize += ep->ep_entry? job->fifo.item[idx].esize : 0;
- /* Update the job to show our progress */
- job->lead_ID = id;
- if ((id - info->first_ID) <= job->fifo.size) {
- job->trailing_ID = info->first_ID;
- } else {
- job->trailing_ID = id - job->fifo.size;
- }
- /* Update our progress meter too */
- info->last_ID_processed = id;
- id++;
- if (job->flags & FLAG_ABORT)
- goto error;
- if (info->command == STOP) {
- finished = 1;
- }
- }
- bail:
- dbc->c_close(dbc);
- dblayer_release_aux_id2entry( be, db, env );
- info->state = FINISHED | info_state;
- goto done;
- error:
- if (dbc) {
- dbc->c_close(dbc);
- }
- dblayer_release_aux_id2entry( be, db, env );
- info->state = ABORTED;
- done:
- free_IDarray(&dn_norm_sp_conflicts);
- slapi_ch_free_string(&ecopy);
- slapi_ch_free(&(data.data));
- if (job->upgradefd) {
- fclose(job->upgradefd);
- }
- }
- static void
- import_wait_for_space_in_fifo(ImportJob *job, size_t new_esize)
- {
- struct backentry *temp_ep = NULL;
- size_t i;
- int slot_found;
- PRIntervalTime sleeptime;
- sleeptime = PR_MillisecondsToInterval(import_sleep_time);
- /* Now check if fifo has enough space for the new entry */
- while ((job->fifo.c_bsize + new_esize) > job->fifo.bsize && !(job->flags & FLAG_ABORT)) {
- for ( i = 0, slot_found = 0 ; i < job->fifo.size ; i++ ) {
- temp_ep = job->fifo.item[i].entry;
- if (temp_ep) {
- if (temp_ep->ep_refcnt == 0 && temp_ep->ep_id <= job->ready_EID) {
- job->fifo.item[i].entry = NULL;
- if (job->fifo.c_bsize > job->fifo.item[i].esize){
- job->fifo.c_bsize -= job->fifo.item[i].esize;
- } else {
- job->fifo.c_bsize = 0;
- }
- backentry_free(&temp_ep);
- slot_found = 1;
- }
- }
- }
- if ( slot_found == 0 )
- DS_Sleep(sleeptime);
- }
- }
- /* helper function for the foreman: */
- static int
- foreman_do_parentid(ImportJob *job, FifoItem *fi, struct attrinfo *parentid_ai)
- {
- backend *be = job->inst->inst_be;
- Slapi_Value **svals = NULL;
- Slapi_Attr *attr = NULL;
- int idl_disposition = 0;
- int ret = 0;
- struct backentry *entry = fi->entry;
- if (job->flags & (FLAG_UPGRADEDNFORMAT|FLAG_UPGRADEDNFORMAT_V1)) {
- /* Get the parentid attribute value from deleted attr list */
- Slapi_Value *value = NULL;
- Slapi_Attr *pid_to_del =
- attrlist_remove(&entry->ep_entry->e_aux_attrs, "parentid");
- if (pid_to_del) {
- /* Delete it. */
- ret = slapi_attr_first_value(pid_to_del, &value);
- if (ret < 0) {
- import_log_notice(job,
- "Error: retrieving parentid value (error %d)",
- ret);
- } else {
- const struct berval *bval =
- slapi_value_get_berval((const Slapi_Value *)value);
- ret = index_addordel_string(be, "parentid",
- bval->bv_val, entry->ep_id,
- BE_INDEX_DEL|BE_INDEX_EQUALITY|BE_INDEX_NORMALIZED,
- NULL);
- if (ret) {
- import_log_notice(job,
- "Error: deleting %s from parentid index "
- "(error %d: %s)",
- bval->bv_val, ret, dblayer_strerror(ret));
- return ret;
- }
- }
- slapi_attr_free(&pid_to_del);
- }
- }
- if (slapi_entry_attr_find(entry->ep_entry, LDBM_PARENTID_STR, &attr) == 0) {
- svals = attr_get_present_values(attr);
- ret = index_addordel_values_ext_sv(be, LDBM_PARENTID_STR, svals, NULL,
- entry->ep_id, BE_INDEX_ADD,
- NULL, &idl_disposition, NULL);
- if (idl_disposition != IDL_INSERT_NORMAL) {
- char *attr_value = slapi_value_get_berval(svals[0])->bv_val;
- ID parent_id = atol(attr_value);
- if (idl_disposition == IDL_INSERT_NOW_ALLIDS) {
- import_subcount_mother_init(job->mothers, parent_id,
- idl_get_allidslimit(parentid_ai, 0)+1);
- } else if (idl_disposition == IDL_INSERT_ALLIDS) {
- import_subcount_mother_count(job->mothers, parent_id);
- }
- }
- if (ret != 0) {
- import_log_notice(job, "ERROR: Can't update parentid index "
- "(error %d)", ret);
- return ret;
- }
- }
- return 0;
- }
- /* helper function for the foreman: */
- static int
- foreman_do_entrydn(ImportJob *job, FifoItem *fi)
- {
- backend *be = job->inst->inst_be;
- struct berval bv;
- int err = 0, ret = 0;
- IDList *IDL;
- struct backentry *entry = fi->entry;
- if (job->flags & (FLAG_UPGRADEDNFORMAT|FLAG_UPGRADEDNFORMAT_V1)) {
- /* Get the entrydn attribute value from deleted attr list */
- Slapi_Value *value = NULL;
- Slapi_Attr *entrydn_to_del =
- attrlist_remove(&entry->ep_entry->e_aux_attrs, "entrydn");
- if (entrydn_to_del) {
- /* Delete it. */
- ret = slapi_attr_first_value(entrydn_to_del, &value);
- if (ret < 0) {
- import_log_notice(job,
- "Error: retrieving entrydn value (error %d)",
- ret);
- } else {
- const struct berval *bval =
- slapi_value_get_berval((const Slapi_Value *)value);
- ret = index_addordel_string(be, "entrydn",
- bval->bv_val, entry->ep_id,
- BE_INDEX_DEL|BE_INDEX_EQUALITY|BE_INDEX_NORMALIZED,
- NULL);
- if (ret) {
- import_log_notice(job,
- "Error: deleting %s from entrydn index "
- "(error %d: %s)",
- bval->bv_val, ret, dblayer_strerror(ret));
- return ret;
- }
- }
- slapi_attr_free(&entrydn_to_del);
- }
- }
- /* insert into the entrydn index */
- bv.bv_val = (void*)backentry_get_ndn(entry); /* jcm - Had to cast away const */
- bv.bv_len = strlen(bv.bv_val);
- /* We need to check here whether the DN is already present in
- * the entrydn index. If it is then the input ldif
- * contained a duplicate entry, which it isn't allowed to */
- /* Due to popular demand, we only warn on this, given the
- * tendency for customers to want to import dirty data */
- /* So, we do an index read first */
- err = 0;
- IDL = index_read(be, LDBM_ENTRYDN_STR, indextype_EQUALITY, &bv, NULL, &err);
- if (job->flags & (FLAG_UPGRADEDNFORMAT|FLAG_UPGRADEDNFORMAT_V1)) {
- /*
- * In the UPGRADEDNFORMAT case, if entrydn value exists,
- * that means either 1) entrydn is not upgraded (ID == entry->ep_id)
- * or 2) a duplicated entry is found (ID != entry->ep_id).
- * (1) is normal. For (2), need to return a specific error
- * LDBM_ERROR_FOUND_DUPDN.
- * Otherwise, add entrydn to the entrydn index file.
- */
- if (IDL) {
- ID id = idl_firstid(IDL); /* entrydn is a single attr */
- idl_free(&IDL);
- if (id != entry->ep_id) { /* case (2) */
- import_log_notice(job, "Duplicated entrydn detected: \"%s\": "
- "Entry ID: (%d, %d)",
- bv.bv_val, id, entry->ep_id);
- return LDBM_ERROR_FOUND_DUPDN;
- }
- } else {
- ret = index_addordel_string(be, "entrydn",
- bv.bv_val, entry->ep_id,
- BE_INDEX_ADD|BE_INDEX_NORMALIZED, NULL);
- if (ret) {
- import_log_notice(job, "Error writing entrydn index "
- "(error %d: %s)",
- ret, dblayer_strerror(ret));
- return ret;
- }
- }
- } else {
- /* Did this work ? */
- if (IDL) {
- /* IMPOSTER ! Get thee hence... */
- import_log_notice(job, "WARNING: Skipping duplicate entry "
- "\"%s\" found at line %d of file \"%s\"",
- slapi_entry_get_dn(entry->ep_entry),
- fi->line, fi->filename);
- idl_free(&IDL);
- /* skip this one */
- fi->bad = FIFOITEM_BAD;
- job->skipped++;
- return -1; /* skip to next entry */
- }
- ret = index_addordel_string(be, "entrydn", bv.bv_val, entry->ep_id,
- BE_INDEX_ADD|BE_INDEX_NORMALIZED, NULL);
- if (ret) {
- import_log_notice(job, "Error writing entrydn index "
- "(error %d: %s)",
- ret, dblayer_strerror(ret));
- return ret;
- }
- }
- return 0;
- }
- /* helper function for the foreman: */
- static int
- foreman_do_entryrdn(ImportJob *job, FifoItem *fi)
- {
- backend *be = job->inst->inst_be;
- int ret = 0;
- struct backentry *entry = fi->entry;
- if (job->flags & (FLAG_UPGRADEDNFORMAT|FLAG_UPGRADEDNFORMAT_V1)) {
- /* Get the entrydn attribute value from deleted attr list */
- Slapi_Value *value = NULL;
- Slapi_Attr *entryrdn_to_del = NULL;
- entryrdn_to_del = attrlist_remove(&entry->ep_entry->e_aux_attrs,
- LDBM_ENTRYRDN_STR);
- if (entryrdn_to_del) {
- /* Delete it. */
- ret = slapi_attr_first_value(entryrdn_to_del, &value);
- if (ret < 0) {
- import_log_notice(job,
- "Error: retrieving entryrdn value (error %d)",
- ret);
- } else {
- const struct berval *bval =
- slapi_value_get_berval((const Slapi_Value *)value);
- ret = entryrdn_index_entry(be, entry, BE_INDEX_DEL, NULL);
- if (ret) {
- import_log_notice(job,
- "Error: deleting %s from entrydn index "
- "(error %d: %s)",
- bval->bv_val, ret, dblayer_strerror(ret));
- return ret;
- }
- }
- slapi_attr_free(&entryrdn_to_del);
- /* Waited to update e_srdn to delete the old entryrdn.
- * Now updated it to adjust to the new s_dn. */
- slapi_rdn_set_all_dn(&(entry->ep_entry->e_srdn),
- slapi_entry_get_dn_const(entry->ep_entry));
- }
- }
- ret = entryrdn_index_entry(be, entry, BE_INDEX_ADD, NULL);
- if (LDBM_ERROR_FOUND_DUPDN == ret) {
- import_log_notice(job, "Duplicated DN detected: \"%s\": "
- "Entry ID: (%d)",
- slapi_entry_get_dn(entry->ep_entry),
- entry->ep_id);
- return ret;
- } else if (0 != ret) {
- import_log_notice(job, "Error writing entryrdn index "
- "(error %d: %s)", ret, dblayer_strerror(ret));
- return ret;
- }
- return 0;
- }
- /* foreman thread:
- * i go through the FIFO just like the other worker threads, but i'm
- * responsible for the interrelated indexes: entrydn, entryrdn, id2entry,
- * and the operational attributes (plus the parentid index).
- */
- void
- import_foreman(void *param)
- {
- ImportWorkerInfo *info = (ImportWorkerInfo *)param;
- ImportJob *job = info->job;
- ldbm_instance *inst = job->inst;
- backend *be = inst->inst_be;
- PRIntervalTime sleeptime;
- int finished = 0;
- ID id = info->first_ID;
- int ret = 0;
- struct attrinfo *parentid_ai;
- Slapi_PBlock *pb = slapi_pblock_new();
- PR_ASSERT(info != NULL);
- PR_ASSERT(inst != NULL);
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- /* the pblock is used only by add_op_attrs */
- slapi_pblock_set(pb, SLAPI_BACKEND, be);
- sleeptime = PR_MillisecondsToInterval(import_sleep_time);
- info->state = RUNNING;
- ainfo_get(be, LDBM_PARENTID_STR, &parentid_ai);
- while (! finished) {
- FifoItem *fi = NULL;
- int parent_status = 0;
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- while ( ((info->command == PAUSE) || (id > job->lead_ID)) &&
- (info->command != STOP) && (info->command != ABORT) &&
- !(job->flags & FLAG_ABORT) ) {
- /* Check to see if we've been told to stop */
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- if (info->command == STOP) {
- finished = 1;
- continue;
- }
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- info->state = RUNNING;
- /* Read that entry from the cache */
- fi = import_fifo_fetch(job, id, 0);
- if (NULL == fi) {
- import_log_notice(job, "WARNING: entry id %d is missing", id);
- continue;
- }
- if (NULL == fi->entry) {
- import_log_notice(job, "WARNING: entry for id %d is missing", id);
- continue;
- }
- if (job->flags & FLAG_UPGRADEDNFORMAT_V1) {
- if (entryrdn_get_switch()) { /* subtree-rename: on */
- /* insert into the entryrdn index */
- ret = foreman_do_entryrdn(job, fi);
- } else {
- /* insert into the entrydn index */
- ret = foreman_do_entrydn(job, fi);
- if (ret == -1) {
- goto cont; /* skip entry */
- }
- }
- goto next;
- }
- /* first, fill in any operational attributes */
- /* add_op_attrs wants a pblock for some reason. */
- if (job->flags & FLAG_UPGRADEDNFORMAT) {
- /* Upgrade dn format may alter the DIT structure. */
- /* It requires a special treatment for that. */
- parent_status = IMPORT_ADD_OP_ATTRS_SAVE_OLD_PID;
- }
- if (add_op_attrs(pb, inst->inst_li, fi->entry, &parent_status) != 0) {
- import_log_notice(job, "ERROR: Could not add op attrs to "
- "entry ending at line %d of file \"%s\"",
- fi->line, fi->filename);
- goto error;
- }
- if (entryrdn_get_switch() ||
- !slapi_entry_flag_is_set(fi->entry->ep_entry,
- SLAPI_ENTRY_FLAG_TOMBSTONE)) {
- /*
- * Only check for a parent and add to the entry2dn index
- */
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- if (parent_status == IMPORT_ADD_OP_ATTRS_NO_PARENT) {
- /* If this entry is a suffix entry, this is not a problem */
- /* However, if it is not, this is an error---it means that
- * someone tried to import an entry before importing its parent
- * we reject the entry but carry on since we've not stored
- * anything related to this entry.
- */
- if (! slapi_be_issuffix(inst->inst_be, backentry_get_sdn(fi->entry))) {
- import_log_notice(job, "WARNING: Skipping entry \"%s\" "
- "which has no parent, ending at line %d "
- "of file \"%s\"",
- slapi_entry_get_dn(fi->entry->ep_entry),
- fi->line, fi->filename);
- /* skip this one */
- fi->bad = FIFOITEM_BAD;
- job->skipped++;
- goto cont; /* below */
- }
- }
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- if (entryrdn_get_switch()) { /* subtree-rename: on */
- /* insert into the entryrdn index */
- ret = foreman_do_entryrdn(job, fi);
- } else {
- /* insert into the entrydn index */
- ret = foreman_do_entrydn(job, fi);
- if (ret == -1) {
- goto cont; /* skip entry */
- }
- }
- if ((job->flags & FLAG_UPGRADEDNFORMAT) &&
- (LDBM_ERROR_FOUND_DUPDN == ret)) {
- /*
- * Duplicated DN is detected.
- *
- * Rename <DN> to nsuniqueid=<uuid>+<DN>
- * E.g., uid=tuser,dc=example,dc=com ==>
- * nsuniqueid=<uuid>+uid=tuser,dc=example,dc=com
- *
- * Note: FLAG_UPGRADEDNFORMAT only.
- */
- Slapi_Attr *orig_entrydn = NULL;
- Slapi_Attr *new_entrydn = NULL;
- Slapi_Attr *nsuniqueid = NULL;
- const char *uuidstr = NULL;
- char *new_dn = NULL;
- char *orig_dn =
- slapi_ch_strdup(slapi_entry_get_dn(fi->entry->ep_entry));
- nsuniqueid = attrlist_find(fi->entry->ep_entry->e_attrs,
- "nsuniqueid");
- if (nsuniqueid) {
- Slapi_Value *uival = NULL;
- slapi_attr_first_value(nsuniqueid, &uival);
- uuidstr = slapi_value_get_string(uival);
- } else {
- import_log_notice(job, "ERROR: Failed to get nsUniqueId "
- "of the duplicated entry %s; "
- "Entry ID: %d",
- orig_dn, fi->entry->ep_id);
- slapi_ch_free_string(&orig_dn);
- goto cont;
- }
- new_entrydn = slapi_attr_new();
- new_dn = slapi_create_dn_string("nsuniqueid=%s+%s",
- uuidstr, orig_dn);
- /* releasing original dn */
- slapi_sdn_done(&fi->entry->ep_entry->e_sdn);
- /* setting new dn; pass in */
- slapi_sdn_init_dn_passin(&fi->entry->ep_entry->e_sdn, new_dn);
- /* Replacing entrydn attribute value */
- orig_entrydn = attrlist_remove(&fi->entry->ep_entry->e_attrs,
- "entrydn");
- /* released in forman_do_entrydn */
- attrlist_add(&fi->entry->ep_entry->e_aux_attrs, orig_entrydn);
- /* Setting new entrydn attribute value */
- slapi_attr_init(new_entrydn, "entrydn");
- valueset_add_string(new_entrydn, &new_entrydn->a_present_values,
- /* new_dn: duped in valueset_add_string */
- (const char *)new_dn,
- CSN_TYPE_UNKNOWN, NULL);
- attrlist_add(&fi->entry->ep_entry->e_attrs, new_entrydn);
- /* Try foreman_do_entry(r)dn, again. */
- if (entryrdn_get_switch()) { /* subtree-rename: on */
- /* insert into the entryrdn index */
- ret = foreman_do_entryrdn(job, fi);
- } else {
- /* insert into the entrydn index */
- ret = foreman_do_entrydn(job, fi);
- }
- if (ret) {
- import_log_notice(job, "ERROR: Failed to rename duplicated "
- "DN %s to %s; Entry ID: %d",
- orig_dn, new_dn, fi->entry->ep_id);
- slapi_ch_free_string(&orig_dn);
- if (-1 == ret) {
- goto cont; /* skip entry */
- } else {
- goto error;
- }
- } else {
- import_log_notice(job, "WARNING: Duplicated entry %s is "
- "renamed to %s; Entry ID: %d",
- orig_dn, new_dn, fi->entry->ep_id);
- slapi_ch_free_string(&orig_dn);
- }
- } else if (0 != ret) {
- goto error;
- }
- }
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- next:
- if (!(job->flags & FLAG_REINDEXING))/* reindex reads data from id2entry */
- {
- /* insert into the id2entry index
- * (that isn't really an index -- it's the storehouse of the entries
- * themselves.)
- */
- /* id2entry_add_ext replaces an entry if it already exists.
- * therefore, the Entry ID stays the same.
- */
- ret = id2entry_add_ext(be, fi->entry, NULL, job->encrypt, NULL);
- if (ret) {
- /* DB_RUNRECOVERY usually occurs if disk fills */
- if (LDBM_OS_ERR_IS_DISKFULL(ret)) {
- import_log_notice(job, "ERROR: OUT OF SPACE ON DISK or FILE TOO LARGE -- "
- "Could not store the entry ending at line "
- "%d of file \"%s\"",
- fi->line, fi->filename);
- } else if (ret == DB_RUNRECOVERY) {
- import_log_notice(job, "FATAL ERROR: (LARGEFILE SUPPORT NOT ENABLED? OUT OF SPACE ON DISK?) -- "
- "Could not store the entry ending at line "
- "%d of file \"%s\"",
- fi->line, fi->filename);
- } else {
- import_log_notice(job, "ERROR: Could not store the entry "
- "ending at line %d of file \"%s\" -- "
- "error %d", fi->line, fi->filename, ret);
- }
- goto error;
- }
- }
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- if ((entryrdn_get_switch() /* subtree-rename: on */ &&
- !slapi_entry_flag_is_set(fi->entry->ep_entry,
- SLAPI_ENTRY_FLAG_TOMBSTONE)) ||
- !entryrdn_get_switch()) {
- /* parentid index
- * (we have to do this here, because the parentID is dependent on
- * looking up by entrydn/entryrdn.)
- * Only add to the parent index if the entry is not a tombstone &&
- * subtree-rename is on.
- */
- ret = foreman_do_parentid(job, fi, parentid_ai);
- if (ret != 0)
- goto error;
- }
-
- if (!slapi_entry_flag_is_set(fi->entry->ep_entry,
- SLAPI_ENTRY_FLAG_TOMBSTONE)) {
- /* Lastly, before we're finished with the entry, pass it to the
- vlv code to see whether it's within the scope a VLV index. */
- vlv_grok_new_import_entry(fi->entry, be);
- }
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- /* Remove the entry from the cache (Put in the cache in id2entry_add) */
- if (!(job->flags & FLAG_REINDEXING)) {
- /* reindex reads data from id2entry */
- CACHE_REMOVE(&inst->inst_cache, fi->entry);
- }
- fi->entry->ep_refcnt = job->number_indexers;
- cont:
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- job->ready_ID = id;
- job->ready_EID = fi->entry->ep_id;
- info->last_ID_processed = id;
- id++;
- if (job->flags & FLAG_ABORT){
- goto error;
- }
- }
- slapi_pblock_destroy(pb);
- info->state = FINISHED;
- return;
- error:
- slapi_pblock_destroy(pb);
- info->state = ABORTED;
- }
- /* worker thread:
- * given an attribute, this worker plows through the entry FIFO, building
- * up the attribute index.
- */
- void
- import_worker(void *param)
- {
- ImportWorkerInfo *info = (ImportWorkerInfo *)param;
- ImportJob *job = info->job;
- ldbm_instance *inst = job->inst;
- backend *be = inst->inst_be;
- PRIntervalTime sleeptime;
- int finished = 0;
- ID id = info->first_ID;
- int ret = 0;
- int idl_disposition = 0;
- struct vlvIndex* vlv_index = NULL;
- void *substring_key_buffer = NULL;
- FifoItem *fi = NULL;
- int is_objectclass_attribute;
- int is_nsuniqueid_attribute;
- int is_nscpentrydn_attribute;
- int is_nstombstonecsn_attribute;
- void *attrlist_cursor;
-
- PR_ASSERT(NULL != info);
- PR_ASSERT(NULL != inst);
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- if (INDEX_VLV == info->index_info->ai->ai_indexmask) {
- vlv_index = vlv_find_indexname(info->index_info->name, be);
- if (NULL == vlv_index) {
- goto error;
- }
- }
- /*
- * If the entry is a Tombstone, then we only add it to the nsuniqeid index,
- * the nscpEntryDN index, and the idlist for (objectclass=tombstone). These
- * flags are just handy for working out what to do in this case.
- */
- is_objectclass_attribute =
- (strcasecmp(info->index_info->name, "objectclass") == 0);
- is_nsuniqueid_attribute =
- (strcasecmp(info->index_info->name, SLAPI_ATTR_UNIQUEID) == 0);
- is_nscpentrydn_attribute =
- (strcasecmp(info->index_info->name, SLAPI_ATTR_NSCP_ENTRYDN) == 0);
- is_nstombstonecsn_attribute =
- (strcasecmp(info->index_info->name, SLAPI_ATTR_TOMBSTONE_CSN) == 0);
- if (1 != idl_get_idl_new()) {
- /* Is there substring indexing going on here ? */
- if ( (INDEX_SUB & info->index_info->ai->ai_indexmask) &&
- (info->index_buffer_size > 0) ) {
- /* Then make a key buffer thing */
- ret = index_buffer_init(info->index_buffer_size, 0,
- &substring_key_buffer);
- if (0 != ret) {
- import_log_notice(job, "IMPORT FAIL 1 (error %d)", ret);
- }
- }
- }
- sleeptime = PR_MillisecondsToInterval(import_sleep_time);
- info->state = RUNNING;
- info->last_ID_processed = id-1;
- while (! finished) {
- struct backentry *ep = NULL;
- Slapi_Value **svals = NULL;
- Slapi_Attr *attr = NULL;
-
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- /* entry can be NULL if it turned out to be bogus */
- while (!finished && !ep) {
- /* This worker thread must wait if the command flag is "PAUSE" or
- * the entry corresponds to the current entry treated by the foreman
- * thread, and the state is neither STOP nor ABORT
- */
- while (((info->command == PAUSE) || (id > job->ready_ID)) &&
- (info->command != STOP) && (info->command != ABORT) &&
- !(job->flags & FLAG_ABORT)) {
- /* Check to see if we've been told to stop */
- info->state = WAITING;
- DS_Sleep(sleeptime);
- }
- if (info->command == STOP) {
- finished = 1;
- continue;
- }
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- info->state = RUNNING;
- /* Read that entry from the cache */
- fi = import_fifo_fetch(job, id, 1);
- ep = fi ? fi->entry : NULL;
- if (!ep) {
- /* skipping an entry that turned out to be bad */
- info->last_ID_processed = id;
- id++;
- }
- }
- if (finished)
- continue;
- if (! slapi_entry_flag_is_set(fi->entry->ep_entry,
- SLAPI_ENTRY_FLAG_TOMBSTONE)) {
- /* This is not a tombstone entry. */
- /* Is this a VLV index ? */
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
-
- if (INDEX_VLV == info->index_info->ai->ai_indexmask) {
- /* Yes, call VLV code -- needs pblock to find backend */
- Slapi_PBlock *pb = slapi_pblock_new();
- PR_ASSERT(NULL != vlv_index);
- slapi_pblock_set(pb, SLAPI_BACKEND, be);
- vlv_update_index(vlv_index, NULL, inst->inst_li, pb, NULL, ep);
- slapi_pblock_destroy(pb);
- } else {
- /* No, process regular index */
- if (job->flags & (FLAG_UPGRADEDNFORMAT|FLAG_UPGRADEDNFORMAT_V1)) {
- /* Get the attribute value from deleted attr list */
- Slapi_Value *value = NULL;
- const struct berval *bval = NULL;
- Slapi_Attr *key_to_del =
- attrlist_remove(&fi->entry->ep_entry->e_aux_attrs,
- info->index_info->name);
-
- if (key_to_del) {
- int idx = 0;
- /* Delete it. */
- for (idx = slapi_attr_first_value(key_to_del, &value);
- idx >= 0;
- idx = slapi_attr_next_value(key_to_del, idx,
- &value)) {
- bval =
- slapi_value_get_berval((const Slapi_Value *)value);
- ret = index_addordel_string(be,
- info->index_info->name,
- bval->bv_val,
- fi->entry->ep_id,
- BE_INDEX_DEL|BE_INDEX_EQUALITY|
- BE_INDEX_NORMALIZED,
- NULL);
- if (ret) {
- import_log_notice(job,
- "Error deleting %s from %s index "
- "(error %d: %s)",
- bval->bv_val, info->index_info->name,
- ret, dblayer_strerror(ret));
- goto error;
- }
- }
- slapi_attr_free(&key_to_del);
- }
- }
- /* Look for the attribute we're indexing and its subtypes */
- /* For each attr write to the index */
- attrlist_cursor = NULL;
- while ((attr = attrlist_find_ex(ep->ep_entry->e_attrs,
- info->index_info->name,
- NULL,
- NULL,
- &attrlist_cursor)) != NULL) {
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- if(valueset_isempty(&(attr->a_present_values))) continue;
- svals = attr_get_present_values(attr);
- ret = index_addordel_values_ext_sv(be, info->index_info->name,
- svals, NULL, ep->ep_id, BE_INDEX_ADD | (job->encrypt ? 0 : BE_INDEX_DONT_ENCRYPT), NULL, &idl_disposition,
- substring_key_buffer);
- if (0 != ret) {
- /* Something went wrong, eg disk filled up */
- goto error;
- }
- }
- }
- } else {
- /* This is a Tombstone entry... we only add it to the nsuniqueid
- * index, the nscpEntryDN index, and the idlist for (objectclass=nstombstone).
- */
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- if (is_nsuniqueid_attribute) {
- ret = index_addordel_string(be, SLAPI_ATTR_UNIQUEID,
- slapi_entry_get_uniqueid(ep->ep_entry), ep->ep_id,
- BE_INDEX_ADD, NULL);
- if (0 != ret) {
- /* Something went wrong, eg disk filled up */
- goto error;
- }
- }
- if (is_objectclass_attribute) {
- ret = index_addordel_string(be, SLAPI_ATTR_OBJECTCLASS,
- SLAPI_ATTR_VALUE_TOMBSTONE, ep->ep_id, BE_INDEX_ADD, NULL);
- if (0 != ret) {
- /* Something went wrong, eg disk filled up */
- goto error;
- }
- }
- if (is_nscpentrydn_attribute) {
- attrlist_cursor = NULL;
- while ((attr = attrlist_find_ex(ep->ep_entry->e_attrs,
- SLAPI_ATTR_NSCP_ENTRYDN,
- NULL,
- NULL,
- &attrlist_cursor)) != NULL) {
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- if(valueset_isempty(&(attr->a_present_values))) continue;
- svals = attr_get_present_values(attr);
- ret = index_addordel_values_ext_sv(be, info->index_info->name,
- svals, NULL, ep->ep_id, BE_INDEX_ADD | (job->encrypt ? 0 : BE_INDEX_DONT_ENCRYPT), NULL, &idl_disposition,
- substring_key_buffer);
- if (0 != ret) {
- /* Something went wrong, eg disk filled up */
- goto error;
- }
- }
- }
- if(is_nstombstonecsn_attribute){
- const CSN *tomb_csn = entry_get_deletion_csn(ep->ep_entry);
- char tomb_csnstr[CSN_STRSIZE];
- if(tomb_csn){
- csn_as_string(tomb_csn, PR_FALSE, tomb_csnstr);
- ret = index_addordel_string(be, SLAPI_ATTR_TOMBSTONE_CSN,
- tomb_csnstr, ep->ep_id, BE_INDEX_ADD, NULL);
- if (0 != ret) {
- /* Something went wrong, eg disk filled up */
- goto error;
- }
- }
- }
- }
- import_decref_entry(ep);
- info->last_ID_processed = id;
- id++;
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- }
-
- if (job->flags & FLAG_ABORT) {
- goto error;
- }
- /* If we were buffering index keys, now flush them */
- if (substring_key_buffer) {
- ret = index_buffer_flush(substring_key_buffer,
- inst->inst_be, NULL,
- info->index_info->ai);
- if (0 != ret) {
- goto error;
- }
- }
- info->state = FINISHED;
- goto done;
- error:
- if (ret == DB_RUNRECOVERY) {
- LDAPDebug(LDAP_DEBUG_ANY,"cannot import; database recovery needed\n",
- 0,0,0);
- } else if (ret == DB_LOCK_DEADLOCK) {
- /* can this occur? */
- }
- info->state = ABORTED;
- done:
- if (substring_key_buffer) {
- index_buffer_terminate(substring_key_buffer);
- }
- }
- /*
- * import entries to a backend, over the wire -- entries will arrive
- * asynchronously, so this method has no "producer" thread. instead, the
- * front-end drops new entries in as they arrive.
- *
- * this is sometimes called "fast replica initialization".
- *
- * some of this code is duplicated from ldif2ldbm, but i don't think we
- * can avoid it.
- */
- static int bulk_import_start(Slapi_PBlock *pb)
- {
- struct ldbminfo *li = NULL;
- ImportJob *job = NULL;
- backend *be = NULL;
- PRThread *thread = NULL;
- int ret = 0;
- slapi_pblock_get(pb, SLAPI_BACKEND, &be);
- if (be == NULL) {
- LDAPDebug0Args(LDAP_DEBUG_ANY, "bulk_import_start: backend is not set\n");
- return -1;
- }
- job = CALLOC(ImportJob);
- slapi_pblock_get(pb, SLAPI_LDIF2DB_ENCRYPT, &job->encrypt);
- li = (struct ldbminfo *)(be->be_database->plg_private);
- job->inst = (ldbm_instance *)be->be_instance_info;
- /* check if an import/restore is already ongoing... */
- PR_Lock(job->inst->inst_config_mutex);
- if (job->inst->inst_flags & INST_FLAG_BUSY) {
- PR_Unlock(job->inst->inst_config_mutex);
- LDAPDebug(LDAP_DEBUG_ANY, "ldbm: '%s' is already in the middle of "
- "another task and cannot be disturbed.\n",
- job->inst->inst_name, 0, 0);
- FREE(job);
- return SLAPI_BI_ERR_BUSY;
- }
- job->inst->inst_flags |= INST_FLAG_BUSY;
- PR_Unlock(job->inst->inst_config_mutex);
- /* take backend offline */
- slapi_mtn_be_disable(be);
- /* get uniqueid info */
- slapi_pblock_get(pb, SLAPI_LDIF2DB_GENERATE_UNIQUEID, &job->uuid_gen_type);
- if (job->uuid_gen_type == SLAPI_UNIQUEID_GENERATE_NAME_BASED) {
- char *namespaceid;
- slapi_pblock_get(pb, SLAPI_LDIF2DB_NAMESPACEID, &namespaceid);
- job->uuid_namespace = slapi_ch_strdup(namespaceid);
- }
- job->flags = 0; /* don't use files */
- job->flags |= FLAG_INDEX_ATTRS;
- job->flags |= FLAG_ONLINE;
- job->starting_ID = 1;
- job->first_ID = 1;
- job->mothers = CALLOC(import_subcount_stuff);
- /* how much space should we allocate to index buffering? */
- job->job_index_buffer_size = import_get_index_buffer_size();
- if (job->job_index_buffer_size == 0) {
- /* 10% of the allocated cache size + one meg */
- job->job_index_buffer_size = (job->inst->inst_li->li_dbcachesize/10) +
- (1024*1024);
- }
- import_subcount_stuff_init(job->mothers);
- job->wire_lock = PR_NewLock();
- job->wire_cv = PR_NewCondVar(job->wire_lock);
- /* COPIED from ldif2ldbm.c : */
- /* shutdown this instance of the db */
- cache_clear(&job->inst->inst_cache, CACHE_TYPE_ENTRY);
- if (entryrdn_get_switch()) {
- cache_clear(&job->inst->inst_dncache, CACHE_TYPE_DN);
- }
- dblayer_instance_close(be);
- /* Delete old database files */
- dblayer_delete_instance_dir(be);
- /* it's okay to fail -- it might already be gone */
- /* dblayer_instance_start will init the id2entry index. */
- /* it also (finally) fills in inst_dir_name */
- ret = dblayer_instance_start(be, DBLAYER_IMPORT_MODE);
- if (ret != 0)
- goto fail;
- /* END OF COPIED SECTION */
- PR_Lock(job->wire_lock);
- vlv_init(job->inst);
- /* create thread for import_main, so we can return */
- thread = PR_CreateThread(PR_USER_THREAD, import_main, (void *)job,
- PR_PRIORITY_NORMAL, PR_GLOBAL_THREAD,
- PR_JOINABLE_THREAD,
- SLAPD_DEFAULT_THREAD_STACKSIZE);
- if (thread == NULL) {
- PRErrorCode prerr = PR_GetError();
- LDAPDebug(LDAP_DEBUG_ANY, "unable to spawn import thread, "
- SLAPI_COMPONENT_NAME_NSPR " error %d (%s)\n",
- prerr, slapd_pr_strerror(prerr), 0);
- PR_Unlock(job->wire_lock);
- ret = -2;
- goto fail;
- }
- job->main_thread = thread;
- slapi_set_object_extension(li->li_bulk_import_object, pb->pb_conn,
- li->li_bulk_import_handle, job);
- /* wait for the import_main to signal that it's ready for entries */
- /* (don't want to send the success code back to the LDAP client until
- * we're ready for the adds to start rolling in)
- */
- PR_WaitCondVar(job->wire_cv, PR_INTERVAL_NO_TIMEOUT);
- PR_Unlock(job->wire_lock);
- return 0;
- fail:
- PR_Lock(job->inst->inst_config_mutex);
- job->inst->inst_flags &= ~INST_FLAG_BUSY;
- PR_Unlock(job->inst->inst_config_mutex);
- import_free_job(job);
- FREE(job);
- return ret;
- }
- /* returns 0 on success, or < 0 on error
- *
- * on error, the import process is aborted -- so if this returns an error,
- * don't try to queue any more entries or you'll be sorry. The caller
- * is also responsible for free'ing the passed in entry on error. The
- * entry will be consumed on success.
- */
- static int bulk_import_queue(ImportJob *job, Slapi_Entry *entry)
- {
- struct backentry *ep = NULL, *old_ep = NULL;
- int idx;
- ID id = 0;
- Slapi_Attr *attr = NULL;
- size_t newesize = 0;
- if (!entry) {
- return -1;
- }
- PR_Lock(job->wire_lock);
- /* Let's do this inside the lock !*/
- id = job->lead_ID + 1;
- /* generate uniqueid if necessary */
- if (import_generate_uniqueid(job, entry) != UID_SUCCESS) {
- import_abort_all(job, 1);
- PR_Unlock(job->wire_lock);
- return -1;
- }
- /* make into backentry */
- ep = import_make_backentry(entry, id);
- if ((ep == NULL) || (ep->ep_entry == NULL)) {
- import_abort_all(job, 1);
- backentry_free( &ep ); /* release the backend wrapper, here */
- PR_Unlock(job->wire_lock);
- return -1;
- }
- /* encode the password */
- if (slapi_entry_attr_find(ep->ep_entry, "userpassword", &attr) == 0) {
- Slapi_Value **va = attr_get_present_values(attr);
- pw_encodevals( (Slapi_Value **)va ); /* jcm - had to cast away const */
- }
- /* if usn_value is available AND the entry does not have it, */
- if (job->usn_value && slapi_entry_attr_find(ep->ep_entry,
- SLAPI_ATTR_ENTRYUSN, &attr)) {
- slapi_entry_add_value(ep->ep_entry, SLAPI_ATTR_ENTRYUSN,
- job->usn_value);
- }
- /* Now we have this new entry, all decoded
- * Next thing we need to do is:
- * (1) see if the appropriate fifo location contains an
- * entry which had been processed by the indexers.
- * If so, proceed.
- * If not, spin waiting for it to become free.
- * (2) free the old entry and store the new one there.
- * (3) Update the job progress indicators so the indexers
- * can use the new entry.
- */
- idx = id % job->fifo.size;
- old_ep = job->fifo.item[idx].entry;
- if (old_ep) {
- while ((old_ep->ep_refcnt > 0) && !(job->flags & FLAG_ABORT))
- {
- DS_Sleep(PR_MillisecondsToInterval(import_sleep_time));
- }
- /* the producer could be running thru the fifo while
- * everyone else is cycling to a new pass...
- * double-check that this entry is < ready_EID
- */
- while ((old_ep->ep_id >= job->ready_EID) && !(job->flags & FLAG_ABORT))
- {
- DS_Sleep(PR_MillisecondsToInterval(import_sleep_time));
- }
- if (job->flags & FLAG_ABORT) {
- backentry_clear_entry(ep); /* entry is released in the frontend on failure*/
- backentry_free( &ep ); /* release the backend wrapper, here */
- PR_Unlock(job->wire_lock);
- return -2;
- }
- PR_ASSERT(old_ep == job->fifo.item[idx].entry);
- job->fifo.item[idx].entry = NULL;
- if (job->fifo.c_bsize > job->fifo.item[idx].esize)
- job->fifo.c_bsize -= job->fifo.item[idx].esize;
- else
- job->fifo.c_bsize = 0;
- backentry_free(&old_ep);
- }
- /* Is subtree-rename on? And is this a tombstone?
- * If so, need a special treatment */
- if (entryrdn_get_switch() &&
- (ep->ep_entry->e_flags & SLAPI_ENTRY_FLAG_TOMBSTONE)) {
- char *tombstone_rdn =
- slapi_ch_strdup(slapi_entry_get_dn_const(ep->ep_entry));
- if ((0 == PL_strncasecmp(tombstone_rdn, SLAPI_ATTR_UNIQUEID,
- sizeof(SLAPI_ATTR_UNIQUEID) - 1)) &&
- /* dn starts with "nsuniqueid=" */
- (NULL == PL_strstr(tombstone_rdn, RUV_STORAGE_ENTRY_UNIQUEID))) {
- /* and this is not an RUV */
- char *sepp = PL_strchr(tombstone_rdn, ',');
- /* dn looks like this:
- * nsuniqueid=042d8081-...-ca8fe9f7,uid=tuser,o=abc.com
- * create a new srdn for the original dn
- * uid=tuser,o=abc.com
- */
- if (sepp) {
- Slapi_RDN mysrdn = {0};
- if (slapi_rdn_init_all_dn(&mysrdn, sepp + 1)) {
- slapi_log_error(SLAPI_LOG_FATAL, "bulk_import_queue",
- "Failed to convert DN %s to RDN\n", sepp + 1);
- slapi_ch_free_string(&tombstone_rdn);
- /* entry is released in the frontend on failure*/
- backentry_clear_entry(ep);
- backentry_free( &ep ); /* release the backend wrapper */
- PR_Unlock(job->wire_lock);
- return -1;
- }
- sepp = PL_strchr(sepp + 1, ',');
- if (sepp) {
- Slapi_RDN *srdn = slapi_entry_get_srdn(ep->ep_entry);
- /* nsuniqueid=042d8081-...-ca8fe9f7,uid=tuser, */
- /* ^ */
- *sepp = '\0';
- slapi_rdn_replace_rdn(&mysrdn, tombstone_rdn);
- slapi_rdn_done(srdn);
- slapi_entry_set_srdn(ep->ep_entry, &mysrdn);
- slapi_rdn_done(&mysrdn);
- }
- }
- }
- slapi_ch_free_string(&tombstone_rdn);
- }
- newesize = (slapi_entry_size(ep->ep_entry) + sizeof(struct backentry));
- if (newesize > job->fifo.bsize) { /* entry too big */
- import_log_notice(job, "REASON: entry too large (%lu bytes) for "
- "the effective import buffer size (%lu bytes). "
- "Try increasing nsslapd-cachememsize for the backend instance \"%s\".",
- (long unsigned int)newesize, (long unsigned int)job->fifo.bsize,
- job->inst->inst_name);
- backentry_clear_entry(ep); /* entry is released in the frontend on failure*/
- backentry_free( &ep ); /* release the backend wrapper, here */
- PR_Unlock(job->wire_lock);
- return -1;
- }
- /* Now check if fifo has enough space for the new entry */
- if ((job->fifo.c_bsize + newesize) > job->fifo.bsize) {
- import_wait_for_space_in_fifo( job, newesize );
- }
- /* We have enough space */
- job->fifo.item[idx].filename = "(bulk import)";
- job->fifo.item[idx].line = 0;
- job->fifo.item[idx].entry = ep;
- job->fifo.item[idx].bad = 0;
- job->fifo.item[idx].esize = newesize;
- /* Add the entry size to total fifo size */
- job->fifo.c_bsize += ep->ep_entry? job->fifo.item[idx].esize : 0;
- /* Update the job to show our progress */
- job->lead_ID = id;
- if ((id - job->starting_ID) <= job->fifo.size) {
- job->trailing_ID = job->starting_ID;
- } else {
- job->trailing_ID = id - job->fifo.size;
- }
- PR_Unlock(job->wire_lock);
- return 0;
- }
- void *factory_constructor(void *object, void *parent)
- {
- return NULL;
- }
- void factory_destructor(void *extension, void *object, void *parent)
- {
- ImportJob *job = (ImportJob *)extension;
- PRThread *thread;
- if (extension == NULL)
- return;
- /* connection was destroyed while we were still storing the extension --
- * this is bad news and means we have a bulk import that needs to be
- * aborted!
- */
- thread = job->main_thread;
- LDAPDebug(LDAP_DEBUG_ANY, "ERROR bulk import abandoned\n",
- 0, 0, 0);
- import_abort_all(job, 1);
- /* wait for import_main to finish... */
- PR_JoinThread(thread);
- /* extension object is free'd by import_main */
- return;
- }
- /* plugin entry function for replica init
- *
- * For the SLAPI_BI_STATE_ADD state:
- * On success (rc=0), the entry in pb->pb_import_entry will be
- * consumed. For any other return value, the caller is
- * responsible for freeing the entry in the pb.
- */
- int ldbm_back_wire_import(Slapi_PBlock *pb)
- {
- struct ldbminfo *li;
- backend *be = NULL;
- ImportJob *job = NULL;
- PRThread *thread;
- int state;
- slapi_pblock_get(pb, SLAPI_BACKEND, &be);
- if (be == NULL) {
- LDAPDebug0Args(LDAP_DEBUG_ANY, "ldbm_back_wire_import: backend is not set\n");
- return -1;
- }
- li = (struct ldbminfo *)(be->be_database->plg_private);
- slapi_pblock_get(pb, SLAPI_BULK_IMPORT_STATE, &state);
- slapi_pblock_set(pb, SLAPI_LDIF2DB_ENCRYPT, &li->li_online_import_encrypt);
- if (state == SLAPI_BI_STATE_START) {
- /* starting a new import */
- int rc = bulk_import_start(pb);
- if (!rc) {
- /* job must be available since bulk_import_start was successful */
- job =
- (ImportJob *)slapi_get_object_extension(li->li_bulk_import_object,
- pb->pb_conn,
- li->li_bulk_import_handle);
- /* Get entryusn, if needed. */
- _get_import_entryusn(job, &(job->usn_value));
- }
- return rc;
- }
- PR_ASSERT(pb->pb_conn != NULL);
- if (pb->pb_conn != NULL) {
- job = (ImportJob *)slapi_get_object_extension(li->li_bulk_import_object, pb->pb_conn, li->li_bulk_import_handle);
- }
- if ((job == NULL) || (pb->pb_conn == NULL)) {
- /* import might be aborting */
- return -1;
- }
- if (state == SLAPI_BI_STATE_ADD) {
- /* continuing previous import */
- if (! import_entry_belongs_here(pb->pb_import_entry,
- job->inst->inst_be)) {
- /* silently skip */
- /* We need to consume pb->pb_import_entry on success, so we free it here. */
- slapi_entry_free(pb->pb_import_entry);
- return 0;
- }
- return bulk_import_queue(job, pb->pb_import_entry);
- }
- thread = job->main_thread;
- if (state == SLAPI_BI_STATE_DONE) {
- slapi_value_free(&(job->usn_value));
- /* finished with an import */
- job->flags |= FLAG_PRODUCER_DONE;
- /* "job" struct may vanish at any moment after we set the DONE
- * flag, so keep a copy of the thread id in 'thread' for safekeeping.
- */
- /* wait for import_main to finish... */
- PR_JoinThread(thread);
- slapi_set_object_extension(li->li_bulk_import_object, pb->pb_conn,
- li->li_bulk_import_handle, NULL);
- return 0;
- }
- /* ??? unknown state */
- LDAPDebug(LDAP_DEBUG_ANY,
- "ERROR: ldbm_back_wire_import: unknown state %d\n",
- state, 0, 0);
- return -1;
- }
- /*
- * backup index configuration
- * this function is called from dblayer_backup (ldbm2archive)
- * [547427] index config must not change between backup and restore
- */
- #define DSE_INDEX "dse_index.ldif"
- #define DSE_INSTANCE "dse_instance.ldif"
- #define DSE_INDEX_FILTER "(objectclass=nsIndex)"
- #define DSE_INSTANCE_FILTER "(objectclass=nsBackendInstance)"
- static int
- dse_conf_backup_core(struct ldbminfo *li, char *dest_dir, char *file_name, char *filter)
- {
- Slapi_PBlock *srch_pb = NULL;
- Slapi_Entry **entries = NULL;
- Slapi_Entry **ep = NULL;
- Slapi_Attr *attr = NULL;
- char *attr_name;
- char *filename = NULL;
- PRFileDesc *prfd = NULL;
- int rval = 0;
- int dlen = 0;
- PRInt32 prrval;
- char tmpbuf[BUFSIZ];
- char *tp = NULL;
-
- dlen = strlen(dest_dir);
- if (0 == dlen)
- {
- filename = file_name;
- }
- else
- {
- filename = slapi_ch_smprintf("%s/%s", dest_dir, file_name);
- }
- LDAPDebug(LDAP_DEBUG_TRACE, "dse_conf_backup(%s): backup file %s\n",
- filter, filename, 0);
- /* Open the file to write */
- if ((prfd = PR_Open(filename, PR_RDWR | PR_CREATE_FILE | PR_TRUNCATE,
- SLAPD_DEFAULT_FILE_MODE)) == NULL)
- {
- LDAPDebug(LDAP_DEBUG_ANY,
- "dse_conf_backup(%s): open %s failed: (%s)\n",
- filter, filename, slapd_pr_strerror(PR_GetError()));
- rval = -1;
- goto out;
- }
- srch_pb = slapi_pblock_new();
- if (!srch_pb) {
- LDAPDebug(LDAP_DEBUG_ANY,
- "dse_conf_backup(%s): out of memory\n",
- filter, 0, 0);
- rval = -1;
- goto out;
- }
- slapi_search_internal_set_pb(srch_pb, li->li_plugin->plg_dn,
- LDAP_SCOPE_SUBTREE, filter, NULL, 0, NULL, NULL, li->li_identity, 0);
- slapi_search_internal_pb(srch_pb);
- slapi_pblock_get(srch_pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &entries);
- for (ep = entries; ep != NULL && *ep != NULL; ep++)
- {
- size_t l = strlen(slapi_entry_get_dn_const(*ep)) + 5 /* "dn: \n" */;
- LDAPDebug(LDAP_DEBUG_TRACE, "\ndn: %s\n",
- slapi_entry_get_dn_const(*ep), 0, 0);
- if (l <= BUFSIZ)
- tp = tmpbuf;
- else
- tp = (char *)slapi_ch_malloc(l); /* should be very rare ... */
- sprintf(tp, "dn: %s\n", slapi_entry_get_dn_const(*ep));
- prrval = PR_Write(prfd, tp, l);
- if ((size_t)prrval != l)
- {
- LDAPDebug(LDAP_DEBUG_ANY,
- "dse_conf_backup(%s): write %s failed: %d (%s)\n",
- filter, PR_GetError(), slapd_pr_strerror(PR_GetError()));
- rval = -1;
- if (l > BUFSIZ)
- slapi_ch_free_string(&tp);
- goto out;
- }
- if (l > BUFSIZ)
- slapi_ch_free_string(&tp);
- for (slapi_entry_first_attr(*ep, &attr); attr;
- slapi_entry_next_attr(*ep, attr, &attr))
- {
- int i;
- Slapi_Value *sval = NULL;
- const struct berval *attr_val;
- int attr_name_len;
- slapi_attr_get_type(attr, &attr_name);
- /* numsubordinates should not be backed up */
- if (!strcasecmp(LDBM_NUMSUBORDINATES_STR, attr_name))
- continue;
- attr_name_len = strlen(attr_name);
- for (i = slapi_attr_first_value(attr, &sval); i != -1;
- i = slapi_attr_next_value(attr, i, &sval))
- {
- attr_val = slapi_value_get_berval(sval);
- l = strlen(attr_val->bv_val) + attr_name_len + 3; /* : \n" */
- LDAPDebug(LDAP_DEBUG_TRACE, "%s: %s\n", attr_name,
- attr_val->bv_val, 0);
- if (l <= BUFSIZ)
- tp = tmpbuf;
- else
- tp = (char *)slapi_ch_malloc(l);
- sprintf(tp, "%s: %s\n", attr_name, attr_val->bv_val);
- prrval = PR_Write(prfd, tp, l);
- if ((size_t)prrval != l)
- {
- LDAPDebug(LDAP_DEBUG_ANY,
- "dse_conf_backup(%s): write %s failed: %d (%s)\n",
- filter, PR_GetError(), slapd_pr_strerror(PR_GetError()));
- rval = -1;
- if (l > BUFSIZ)
- slapi_ch_free_string(&tp);
- goto out;
- }
- if (l > BUFSIZ)
- slapi_ch_free_string(&tp);
- }
- }
- if (ep+1 != NULL && *(ep+1) != NULL)
- {
- prrval = PR_Write(prfd, "\n", 1);
- if ((int)prrval != 1)
- {
- LDAPDebug(LDAP_DEBUG_ANY,
- "dse_conf_backup(%s): write %s failed: %d (%s)\n",
- filter, PR_GetError(), slapd_pr_strerror(PR_GetError()));
- rval = -1;
- goto out;
- }
- }
- }
- out:
- if (srch_pb)
- {
- slapi_free_search_results_internal(srch_pb);
- slapi_pblock_destroy(srch_pb);
- }
- if (0 != dlen)
- {
- slapi_ch_free_string(&filename);
- }
- if (prfd)
- {
- prrval = PR_Close(prfd);
- if (PR_SUCCESS != prrval)
- {
- LDAPDebug( LDAP_DEBUG_ANY,
- "Fatal Error---Failed to back up dse indexes %d (%s)\n",
- PR_GetError(), slapd_pr_strerror(PR_GetError()), 0);
- rval = -1;
- }
- }
- return rval;
- }
- int
- dse_conf_backup(struct ldbminfo *li, char *dest_dir)
- {
- int rval = 0;
- rval = dse_conf_backup_core(li, dest_dir, DSE_INSTANCE, DSE_INSTANCE_FILTER);
- rval += dse_conf_backup_core(li, dest_dir, DSE_INDEX, DSE_INDEX_FILTER);
- return rval;
- }
- /*
- * read the backed up index configuration
- * adjust them if the current configuration is different from it.
- * this function is called from dblayer_restore (archive2ldbm)
- * these functions are placed here to borrow import_get_entry
- * [547427] index config must not change between backup and restore
- */
- int
- dse_conf_verify_core(struct ldbminfo *li, char *src_dir, char *file_name, char *filter, char *log_str, char *entry_filter)
- {
- char *filename = NULL;
- int rval = 0;
- ldif_context c;
- int fd = -1;
- int curr_lineno = 0;
- int finished = 0;
- int backup_entry_len = 256;
- char *search_scope = NULL;
- Slapi_Entry **backup_entries = NULL;
- Slapi_Entry **bep = NULL;
- Slapi_Entry **curr_entries = NULL;
- Slapi_PBlock srch_pb;
-
- filename = slapi_ch_smprintf("%s/%s", src_dir, file_name);
- if (PR_SUCCESS != PR_Access(filename, PR_ACCESS_READ_OK))
- {
- LDAPDebug(LDAP_DEBUG_ANY,
- "Warning: config backup file %s not found in backup\n",
- file_name, 0, 0);
- rval = 0;
- goto out;
- }
- fd = dblayer_open_huge_file(filename, O_RDONLY, 0);
- if (fd < 0)
- {
- LDAPDebug(LDAP_DEBUG_ANY,
- "Warning: can't open config backup file: %s\n", filename, 0, 0);
- rval = -1;
- goto out;
- }
- import_init_ldif(&c);
- bep = backup_entries = (Slapi_Entry **)slapi_ch_calloc(1,
- backup_entry_len * sizeof(Slapi_Entry *));
- while (!finished)
- {
- char *estr = NULL;
- Slapi_Entry *e = NULL;
- estr = import_get_entry(&c, fd, &curr_lineno);
- if (!estr)
- break;
- if (entry_filter != NULL) /* Single instance restoration */
- {
- if (NULL == PL_strcasestr(estr, entry_filter)) {
- slapi_ch_free_string(&estr);
- continue;
- }
- }
- e = slapi_str2entry(estr, 0);
- slapi_ch_free_string(&estr);
- if (!e) {
- LDAPDebug(LDAP_DEBUG_ANY, "WARNING: skipping bad LDIF entry "
- "ending line %d of file \"%s\"", curr_lineno, filename, 0);
- continue;
- }
- if (bep - backup_entries >= backup_entry_len)
- {
- backup_entries = (Slapi_Entry **)slapi_ch_realloc((char *)backup_entries,
- 2 * backup_entry_len * sizeof(Slapi_Entry *));
- bep = backup_entries + backup_entry_len;
- backup_entry_len *= 2;
- }
- *bep = e;
- bep++;
- }
- /* 623986: terminate the list if we reallocated backup_entries */
- if (backup_entry_len > 256)
- *bep = NULL;
- pblock_init(&srch_pb);
- if (entry_filter != NULL)
- { /* Single instance restoration */
- search_scope = slapi_ch_smprintf("%s,%s", entry_filter, li->li_plugin->plg_dn);
- } else { /* Normal restoration */
- search_scope = slapi_ch_strdup(li->li_plugin->plg_dn);
- }
- slapi_search_internal_set_pb(&srch_pb, search_scope,
- LDAP_SCOPE_SUBTREE, filter, NULL, 0, NULL, NULL, li->li_identity, 0);
- slapi_search_internal_pb(&srch_pb);
- slapi_pblock_get(&srch_pb, SLAPI_PLUGIN_INTOP_SEARCH_ENTRIES, &curr_entries);
- if (0 != slapi_entries_diff(backup_entries, curr_entries, 1 /* test_all */,
- log_str, 1 /* force_update */, li->li_identity))
- {
- LDAPDebug(LDAP_DEBUG_ANY, "WARNING!!: current %s is "
- "different from backed up configuration; "
- "The backup is restored.\n", log_str, 0, 0);
- }
- slapi_free_search_results_internal(&srch_pb);
- pblock_done(&srch_pb);
- import_free_ldif(&c);
- out:
- for (bep = backup_entries; bep && *bep; bep++)
- slapi_entry_free(*bep);
- slapi_ch_free((void **)&backup_entries);
- slapi_ch_free_string(&filename);
- slapi_ch_free_string(&search_scope);
- if (fd > 0)
- close(fd);
- return rval;
- }
- int
- dse_conf_verify(struct ldbminfo *li, char *src_dir, char *bename)
- {
- int rval;
- char *entry_filter = NULL;
- char *instance_entry_filter = NULL;
-
- if (bename != NULL) /* This was a restore of a single backend */
- {
- /* Entry filter string */
- entry_filter = slapi_ch_smprintf("cn=%s", bename);
- /* Instance search filter */
- instance_entry_filter = slapi_ch_smprintf("(&%s(cn=%s))", DSE_INSTANCE_FILTER, bename);
- } else {
- instance_entry_filter = slapi_ch_strdup(DSE_INSTANCE_FILTER);
- }
- rval = dse_conf_verify_core(li, src_dir, DSE_INSTANCE, instance_entry_filter,
- "Instance Config", entry_filter);
- rval += dse_conf_verify_core(li, src_dir, DSE_INDEX, DSE_INDEX_FILTER,
- "Index Config", entry_filter);
- slapi_ch_free_string(&entry_filter);
- slapi_ch_free_string(&instance_entry_filter);
- return rval;
- }
- static int
- import_get_and_add_parent_rdns(ImportWorkerInfo *info,
- ldbm_instance *inst,
- DB *db,
- ID id,
- ID *total_id,
- Slapi_RDN *srdn,
- int *curr_entry)
- {
- int rc = -1;
- struct backdn *bdn = NULL;
- Slapi_Entry *e = NULL;
- char *normdn = NULL;
- if (!entryrdn_get_switch()) { /* entryrdn specific function */
- return rc;
- }
- if (NULL == inst || NULL == srdn) {
- slapi_log_error(SLAPI_LOG_FATAL, "ldif2dbm",
- "import_get_and_add_parent_rdns: Empty %s\n",
- NULL==inst?"inst":"srdn");
- return rc;
- }
- /* first, try the dn cache */
- bdn = dncache_find_id(&inst->inst_dncache, id);
- if (bdn) {
- Slapi_RDN mysrdn = {0};
- /* Luckily, found the parent in the dn cache! */
- if (slapi_rdn_get_rdn(srdn)) { /* srdn is already in use */
- rc = slapi_rdn_init_all_dn(&mysrdn, slapi_sdn_get_dn(bdn->dn_sdn));
- if (rc) {
- slapi_log_error(SLAPI_LOG_FATAL, "ldif2dbm",
- "import_get_and_add_parent_rdns: "
- "Failed to convert DN %s to RDN\n",
- slapi_sdn_get_dn(bdn->dn_sdn));
- slapi_rdn_done(&mysrdn);
- CACHE_RETURN(&inst->inst_dncache, &bdn);
- return rc;
- }
- rc = slapi_rdn_add_srdn_to_all_rdns(srdn, &mysrdn);
- if (rc) {
- slapi_log_error(SLAPI_LOG_FATAL, "ldif2dbm",
- "import_get_and_add_parent_rdns: "
- "Failed to merge Slapi_RDN %s to RDN\n",
- slapi_sdn_get_dn(bdn->dn_sdn));
- }
- slapi_rdn_done(&mysrdn);
- } else { /* srdn is empty */
- rc = slapi_rdn_init_all_dn(srdn, slapi_sdn_get_dn(bdn->dn_sdn));
- if (rc) {
- slapi_log_error(SLAPI_LOG_FATAL, "ldif2dbm",
- "import_get_and_add_parent_rdns: "
- "Failed to convert DN %s to RDN\n",
- slapi_sdn_get_dn(bdn->dn_sdn));
- CACHE_RETURN(&inst->inst_dncache, &bdn);
- return rc;
- }
- }
- CACHE_RETURN(&inst->inst_dncache, &bdn);
- return rc;
- } else {
- DBT key, data;
- char *rdn = NULL;
- char *pid_str = NULL;
- ID storedid;
- Slapi_RDN mysrdn = {0};
- /* not in the dn cache; read id2entry */
- if (NULL == db) {
- slapi_log_error(SLAPI_LOG_FATAL, "ldif2dbm",
- "import_get_and_add_parent_rdns: Empty db\n");
- return rc;
- }
- id_internal_to_stored(id, (char *)&storedid);
- key.size = key.ulen = sizeof(ID);
- key.data = &storedid;
- key.flags = DB_DBT_USERMEM;
- memset(&data, 0, sizeof(data));
- data.flags = DB_DBT_MALLOC;
- rc = db->get(db, NULL, &key, &data, 0);
- if (rc) {
- slapi_log_error(SLAPI_LOG_FATAL, "ldif2dbm",
- "import_get_and_add_parent_rdns: Failed to "
- "position at ID " ID_FMT "\n", id);
- return rc;
- }
- /* rdn is allocated in get_value_from_string */
- rc = get_value_from_string((const char *)data.dptr, "rdn", &rdn);
- if (rc) {
- slapi_log_error(SLAPI_LOG_FATAL, "ldif2dbm",
- "import_get_and_add_parent_rdns: "
- "Failed to get rdn of entry " ID_FMT "\n", id);
- goto bail;
- }
- /* rdn is set to srdn */
- rc = slapi_rdn_init_all_dn(&mysrdn, rdn);
- if (rc < 0) { /* expect rc == 1 since we are setting "rdn" not "dn" */
- slapi_log_error(SLAPI_LOG_FATAL, "ldif2dbm",
- "import_get_and_add_parent_rdns: "
- "Failed to add rdn %s of entry " ID_FMT "\n", rdn, id);
- goto bail;
- }
- rc = get_value_from_string((const char *)data.dptr,
- LDBM_PARENTID_STR, &pid_str);
- if (rc) {
- rc = 0; /* assume this is a suffix */
- } else {
- ID pid = (ID)strtol(pid_str, (char **)NULL, 10);
- slapi_ch_free_string(&pid_str);
- rc = import_get_and_add_parent_rdns(info, inst, db, pid, total_id,
- &mysrdn, curr_entry);
- if (rc) {
- slapi_ch_free_string(&rdn);
- goto bail;
- }
- }
- normdn = NULL;
- rc = slapi_rdn_get_dn(&mysrdn, &normdn);
- if (rc) {
- LDAPDebug2Args( LDAP_DEBUG_ANY,
- "import_get_and_add_parent_rdns: "
- "Failed to compose dn for (rdn: %s, ID: %d) "
- "from Slapi_RDN\n", rdn, id);
- goto bail;
- }
- e = slapi_str2entry_ext(normdn, NULL, data.dptr, SLAPI_STR2ENTRY_NO_ENTRYDN);
- (*curr_entry)++;
- rc = index_set_entry_to_fifo(info, e, id, total_id, *curr_entry);
- if (rc) {
- goto bail;
- }
- rc = slapi_rdn_add_srdn_to_all_rdns(srdn, &mysrdn);
- if (rc) {
- slapi_log_error(SLAPI_LOG_FATAL, "ldif2dbm",
- "import_get_and_add_parent_rdns: "
- "Failed to merge Slapi_RDN %s to RDN\n",
- slapi_sdn_get_dn(bdn->dn_sdn));
- }
- bail:
- slapi_ch_free(&data.data);
- slapi_ch_free_string(&rdn);
- return rc;
- }
- }
- static int
- _get_import_entryusn(ImportJob *job, Slapi_Value **usn_value)
- {
- #define USN_COUNTER_BUF_LEN 64 /* enough size for 64 bit integers */
- static char counter_buf[USN_COUNTER_BUF_LEN] = {0};
- char *usn_init_str = NULL;
- long long usn_init;
- char *endptr = NULL;
- struct berval usn_berval = {0};
- if (NULL == usn_value) {
- return 1;
- }
- *usn_value = NULL;
- /*
- * Check if entryusn plugin is enabled.
- * If yes, get entryusn to set depending upon nsslapd-entryusn-import-init
- */
- if (!plugin_enabled("USN", (void *)plugin_get_default_component_id())) {
- return 1;
- }
- /* get the import_init config param */
- usn_init_str = config_get_entryusn_import_init();
- if (usn_init_str) {
- /* nsslapd-entryusn-import-init has a value */
- usn_init = strtoll(usn_init_str, &endptr, 10);
- if (errno || (0 == usn_init && endptr == usn_init_str)) {
- ldbm_instance *inst = job->inst;
- backend *be = inst->inst_be;
- /* import_init value is not digit.
- * Use the counter which stores the old DB's
- * next entryusn. */
- PR_snprintf(counter_buf, USN_COUNTER_BUF_LEN,
- "%" NSPRIu64,
- slapi_counter_get_value(be->be_usn_counter));
- } else {
- /* import_init value is digit.
- * Initialize the entryusn values with the digit */
- PR_snprintf(counter_buf, USN_COUNTER_BUF_LEN, "%s", usn_init_str);
- }
- slapi_ch_free_string(&usn_init_str);
- } else {
- /* nsslapd-entryusn-import-init is not defined */
- /* Initialize to 0 by default */
- PR_snprintf(counter_buf, USN_COUNTER_BUF_LEN, "0");
- }
- usn_berval.bv_val = counter_buf;
- usn_berval.bv_len = strlen(usn_berval.bv_val);
- *usn_value = slapi_value_new_berval(&usn_berval);
- return 0;
- }
|