summaryrefslogtreecommitdiffstats
path: root/ldap/servers/slapd/factory.c
blob: 8a1dc2d18df7481fd262b0d04297847dae606919 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
/** 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


#include "slap.h"

/*
 * This module provides a mechanism for extending core server objects.
 * This functionality is provided to plugin writers so that they may
 * efficiently pass state information between plugin calls. Typically
 * a plugin might register both a pre-op and post-op call. It's very
 * convenient for the plugin to associate it's private data with the
 * operation object that's passed through the PBlock.
 *
 * --- An interface is made available to the core server. 
 *
 *   int factory_register_type(const char *name, size_t offset)
 *   void *factory_create_extension(int type,void *object,void *parent)
 *   void factory_destroy_extension(int type,void *object,void *parent,void **extension)
 *
 * An object that wishes to make itself available for extension must
 * register with the Factory.  It passes it's name, say 'Operation',
 * and an offset into the structure of where the extension block
 * is to be stored. In return a type handle is passed back, which is
 * used in place of the name in the creation and destruction calls.
 *
 * When an object is created, which has registered as extensible, it
 * must call the factory_create_extension with its type handle so that
 * the extension block can be constructed. A pointer to the block is
 * returned that *must* be stored in the object structure at the offset
 * declared by the call to factory_register_type.
 *
 * When an extensible object is destroyed the extension block must also
 * be destroyed. The factory_destroy_extension call is provided to
 * tidy up and free any extenions created for this object.
 *
 * --- An interface is made available to the plugins.
 *
 *   int slapi_register_object_extension(
 *       const char* objectname,
 *       slapi_extension_constructor_fnptr constructor, 
 *       slapi_extension_destructor_fnptr destructor,
 *       int *objecttype,
 *       int *extensionhandle)
 *   void *slapi_get_object_extension(int objecttype,void *object,int extensionhandle)
 *
 * When the plugin is initialised it must register its object extensions.
 * It must provide the name of the object to be extended, say 'Operation',
 * and constructor and destructor functions. These functions are called
 * when the object is constructed and destroyed.  The extension functions
 * would probably allocate some memory and initialise it for its
 * own use.  The registration function will fail if any objects have already
 * been created. This is why the registration *must* happen during plugin
 * initialisation. In return the plugin will receive two handles, one for
 * the object type, and one for the object extension. These only have meaning
 * for the slapi_get_object_extension function.
 *
 * A plugin retrieves a pointer to its own extension by calling slapi_get_
 * object_extension with the object from which the extension is to be
 * retrieved. The factory uses the objecttype to find the offset into the
 * object of where the extension block is stored. The extension handle is
 * then used to find the appropriate extension within the block.
 * 
 * Currently (Oct 98) the only supported objects are Operation and Connection.
 *
 * This documentation is available here...
 *
 * http://warp/server/directory-server/hydra/replication/objext.html
 */

/* JCM: Could implement simple object leak detection here */


/* ---------------------- Factory Extension ---------------------- */

struct factory_extension
{
    const char *pluginname;
	slapi_extension_constructor_fnptr constructor;
	slapi_extension_destructor_fnptr destructor;
};

static struct factory_extension*
new_factory_extension(
    const char *pluginname,
    slapi_extension_constructor_fnptr constructor, 
    slapi_extension_destructor_fnptr destructor)
{
    struct factory_extension* fe= (struct factory_extension*)slapi_ch_malloc(sizeof(struct factory_extension));
	if(pluginname!=NULL)
	{
    	fe->pluginname= slapi_ch_strdup(pluginname);
	}
	fe->constructor= constructor;
	fe->destructor= destructor;
	return fe;
}

static void
delete_factory_extension(struct factory_extension **fe)
{
    slapi_ch_free( (void **) &((*fe)->pluginname) );
    slapi_ch_free( (void **) fe);
}

/* ---------------------- Factory Type ---------------------- */

#define MAX_EXTENSIONS 32

struct factory_type
{
    char *name; /* The name of the object that can be extended */
	int extension_count; /* The number of extensions registered for this object */
	PRLock *extension_lock; /* Protect the array of extensions */
	size_t extension_offset; /* The offset into the object where the extension pointer is */
	long existence_count; /* Keep track of how many extensions blocks are in existence */
	struct factory_extension *extensions[MAX_EXTENSIONS]; /* The extension registered for this object type */
};

static struct factory_type*
new_factory_type(const char *name, size_t offset)
{
    struct factory_type* ft= (struct factory_type*)slapi_ch_malloc(sizeof(struct factory_type));
	ft->name= slapi_ch_strdup(name);
    ft->extension_lock = PR_NewLock();
	ft->extension_count= 0;
	ft->extension_offset= offset;
	ft->existence_count= 0;
	return ft;
}

static void
delete_factory_type(struct factory_type **ft)
{
    slapi_ch_free( (void **) &((*ft)->name));
	PR_DestroyLock((*ft)->extension_lock);
	slapi_ch_free( (void **) ft);
}

static int
factory_type_add_extension(struct factory_type *ft,struct factory_extension *fe)
{
    int extensionhandle= -1;
	PR_Lock(ft->extension_lock);
    if(ft->existence_count>0)
	{
	    /* Can't register an extension if there are objects already with extension blocks */
		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: Registration of %s extension by %s failed.\n", ft->name, fe->pluginname, 0);
		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: %lu %s objects already in existence.\n", ft->existence_count, ft->name, 0);
	}
	else
	{
        if(ft->extension_count<MAX_EXTENSIONS)
    	{
    	    extensionhandle= ft->extension_count;
    		ft->extensions[ft->extension_count]= fe;
			ft->extension_count++;
    	}
    	else
    	{
    		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: Registration of %s extension by %s failed.\n", ft->name, fe->pluginname, 0);
    		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: %d extensions already registered. Max is %d\n", ft->extension_count, MAX_EXTENSIONS, 0);
    	}
	}
	PR_Unlock(ft->extension_lock);
	return extensionhandle;
}

static void
factory_type_increment_existence(struct factory_type *ft)
{
    ft->existence_count++;
}

static void
factory_type_decrement_existence(struct factory_type *ft)
{
    ft->existence_count--;
	if(ft->existence_count<0)
	{
	    /* This just shouldn't happen */
   		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: %lu %s object extensions in existence.\n", ft->extension_count, ft->name, 0);
	}
}

/* ---------------------- Factory Type Store ---------------------- */

#define MAX_TYPES 16

static PRLock *factory_type_store_lock;
static struct factory_type* factory_type_store[MAX_TYPES];
static int number_of_types= 0;

static void
factory_type_store_init()
{
	int i= 0;
    factory_type_store_lock= PR_NewLock(); /* JCM - Should really free this at shutdown */
	for(i=0;i<MAX_TYPES;i++)
	{
        factory_type_store[number_of_types]= NULL;
    }
}

static int
factory_type_store_add(struct factory_type* ft)
{
    int type= number_of_types;
    factory_type_store[type]= ft;
	number_of_types++;
	return type;
}

static void
factory_type_store_remove(struct factory_type *ft)
{
	int i;
	int found_it = 0;

	for (i = 0; i < number_of_types; i++)
	{
		if (!found_it)
		{
			if (factory_type_store[i] == ft)
			{
				found_it = 1;
			}
		}
		else
		{
			factory_type_store[i-1] = factory_type_store[i];
		}
	}

	if (found_it)
	{
		factory_type_store[i-1] = NULL;
		number_of_types--;
	}
}

static struct factory_type*
factory_type_store_get_factory_type(int type)
{
    if(type>=0 && type<number_of_types)
	{
	    return factory_type_store[type];
	}
	else
	{
	    return NULL;
	}
}

static int
factory_type_store_name_to_type(const char* name)
{
    int i;
	for(i=0;i<number_of_types;i++)
	{
        if(strcasecmp(factory_type_store[i]->name,name)==0)
		{
		    return i;
		}
    }
	return -1;
}

/* ---------------------- Core Server Functions ---------------------- */

/*
 * Function for core server usage.
 * See documentation at head of file.
 */
int
factory_register_type(const char *name, size_t offset)
{
    int type= 0;
    if(number_of_types==0)
	{
        factory_type_store_init();
	}
	PR_Lock(factory_type_store_lock);
    if(number_of_types<MAX_TYPES)
	{
        struct factory_type* ft= new_factory_type(name,offset);
        type= factory_type_store_add(ft);
	}
	else
	{
   		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: Registration of %s object failed.\n", name, 0, 0);
   		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: %d objects already registered. Max is %d\n", number_of_types, MAX_TYPES, 0);
	    type= -1;
	}
	PR_Unlock(factory_type_store_lock);
	return type;
}

/*
 * Function for core server usage.
 * See documentation at head of file.
 */
void *
factory_create_extension(int type,void *object,void *parent)
{
    int n;
    void **extension= NULL;
    struct factory_type* ft= factory_type_store_get_factory_type(type);

	if(ft!=NULL)
	{
	    PR_Lock(ft->extension_lock);
    	if((n = ft->extension_count)>0)
    	{
    	    int i;
            factory_type_increment_existence(ft);
            PR_Unlock(ft->extension_lock);
    	    extension= (void**)slapi_ch_malloc(n*sizeof(void*));
    		for(i=0;i<n;i++)
    		{
                slapi_extension_constructor_fnptr constructor= ft->extensions[i]->constructor;
    			if(constructor!=NULL)
    			{
    			    extension[i]= (*constructor)(object,parent);
    			}
    		}
		}
		else
		{
		    /* No extensions registered. That's OK */
		    PR_Unlock(ft->extension_lock);
		}
	}
	else
	{
	    /* The type wasn't registered. Programming error? */
   		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: Object type handle %d not valid. Object not registered?\n", type, 0, 0);
	}
	return (void*)extension;
}

/*
 * Function for core server usage.
 * See documentation at head of file.
 */
void
factory_destroy_extension(int type,void *object,void *parent,void **extension)
{
    if(extension!=NULL && *extension!=NULL)
	{
        struct factory_type* ft= factory_type_store_get_factory_type(type);
    	if(ft!=NULL)
    	{
    	    int i,n;

    	    PR_Lock(ft->extension_lock);
    	    n=ft->extension_count;
            factory_type_decrement_existence(ft);
    	    PR_Unlock(ft->extension_lock);
    		for(i=0;i<n;i++)
    		{
                slapi_extension_destructor_fnptr destructor= ft->extensions[i]->destructor;
    			if(destructor!=NULL)
    			{
				    void **extention_array= (void**)(*extension);
    			    (*destructor)(extention_array[i],object,parent);
    			}
    		}
    	}
    	else
    	{
    	    /* The type wasn't registered. Programming error? */
       		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: Object type handle %d not valid. Object not registered?\n", type, 0, 0);
    	}
        slapi_ch_free(extension);
	}
}

/* ---------------------- Slapi Functions ---------------------- */

/*
 * Function for plugin usage.
 * See documentation at head of file.
 */
int
slapi_register_object_extension(
    const char* pluginname,
    const char* objectname,
    slapi_extension_constructor_fnptr constructor, 
    slapi_extension_destructor_fnptr destructor,
    int *objecttype,
    int *extensionhandle)
{
    int rc= 0;
    struct factory_extension* fe;
    struct factory_type* ft;
    fe= new_factory_extension(pluginname,constructor, destructor);
    *objecttype= factory_type_store_name_to_type(objectname);
    ft= factory_type_store_get_factory_type(*objecttype);
	if(ft!=NULL)
	{
        *extensionhandle= factory_type_add_extension(ft,fe);
		if(*extensionhandle==-1)
		{
            delete_factory_extension(&fe);
			factory_type_store_remove(ft);
            delete_factory_type(&ft);
		}
	}
	else
	{
   		LDAPDebug( LDAP_DEBUG_ANY, "ERROR: factory.c: Plugin %s failed to register extension for object %s.\n", pluginname, objectname, 0);
		rc= -1;
		delete_factory_extension(&fe);
	}
	return rc;
}

/*
 * Function for plugin usage.
 * See documentation at head of file.
 */
void *
slapi_get_object_extension(int objecttype,void *object,int extensionhandle)
{
    void *object_extension= NULL;
    struct factory_type* ft= factory_type_store_get_factory_type(objecttype);
	if(ft!=NULL)
	{
	    char *object_base= (char*)object;
		void **o_extension= (void**)(object_base + ft->extension_offset);
		void **extension_array= (void**)(*o_extension);
		if ( extension_array != NULL ) {
			object_extension= extension_array[extensionhandle];
		}
	}
	return object_extension;
}

/*
 * sometimes a plugin would like to change its extension, too.
 */
void
slapi_set_object_extension(int objecttype, void *object, int extensionhandle,
                           void *extension)
{
    struct factory_type *ft = factory_type_store_get_factory_type(objecttype);
    if (ft != NULL) {
        char *object_base = (char *)object;
        void **o_extension = (void **)(object_base + ft->extension_offset);
		void **extension_array= (void**)(*o_extension);
        if (extension_array != NULL) {
            extension_array[extensionhandle] = extension;
        }
    }
}