blob: 4dfd0b6f8d393c866c2d03eb31d5f2f9e8ef3656 [file] [log] [blame]
cristy3ed852e2009-09-05 21:47:34 +00001/*
2%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3% %
4% %
5% %
6% M M OOO DDDD U U L EEEEE %
7% MM MM O O D D U U L E %
8% M M M O O D D U U L EEE %
9% M M O O D D U U L E %
10% M M OOO DDDD UUU LLLLL EEEEE %
11% %
12% %
13% MagickCore Module Methods %
14% %
15% Software Design %
16% Bob Friesenhahn %
17% March 2000 %
18% %
19% %
cristy45ef08f2012-12-07 13:13:34 +000020% Copyright 1999-2013 ImageMagick Studio LLC, a non-profit organization %
cristy3ed852e2009-09-05 21:47:34 +000021% dedicated to making software imaging solutions freely available. %
22% %
23% You may not use this file except in compliance with the License. You may %
24% obtain a copy of the License at %
25% %
26% http://www.imagemagick.org/script/license.php %
27% %
28% Unless required by applicable law or agreed to in writing, software %
29% distributed under the License is distributed on an "AS IS" BASIS, %
30% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. %
31% See the License for the specific language governing permissions and %
32% limitations under the License. %
33% %
34%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
35%
36%
37%
38*/
39
40/*
41 Include declarations.
42*/
cristy4c08aed2011-07-01 19:47:50 +000043#include "MagickCore/studio.h"
44#include "MagickCore/blob.h"
45#include "MagickCore/coder.h"
46#include "MagickCore/client.h"
47#include "MagickCore/configure.h"
48#include "MagickCore/exception.h"
49#include "MagickCore/exception-private.h"
50#include "MagickCore/log.h"
51#include "MagickCore/hashmap.h"
52#include "MagickCore/magic.h"
53#include "MagickCore/magick.h"
54#include "MagickCore/memory_.h"
55#include "MagickCore/module.h"
cristy5ff4eaf2011-09-03 01:38:02 +000056#include "MagickCore/module-private.h"
cristyd2d11ec2012-03-28 13:53:49 +000057#include "MagickCore/nt-base-private.h"
cristy4c08aed2011-07-01 19:47:50 +000058#include "MagickCore/policy.h"
59#include "MagickCore/semaphore.h"
60#include "MagickCore/splay-tree.h"
61#include "MagickCore/static.h"
62#include "MagickCore/string_.h"
cristy7832dc22011-09-05 01:21:53 +000063#include "MagickCore/string-private.h"
cristy4c08aed2011-07-01 19:47:50 +000064#include "MagickCore/token.h"
65#include "MagickCore/utility.h"
cristyd1dd6e42011-09-04 01:46:08 +000066#include "MagickCore/utility-private.h"
cristy3ed852e2009-09-05 21:47:34 +000067#if defined(MAGICKCORE_MODULES_SUPPORT)
68#if defined(MAGICKCORE_LTDL_DELEGATE)
69#include "ltdl.h"
70typedef lt_dlhandle ModuleHandle;
71#else
72typedef void *ModuleHandle;
73#endif
74
75/*
76 Define declarations.
77*/
78#if defined(MAGICKCORE_LTDL_DELEGATE)
79# define ModuleGlobExpression "*.la"
80#else
81# if defined(_DEBUG)
82# define ModuleGlobExpression "IM_MOD_DB_*.dll"
83# else
84# define ModuleGlobExpression "IM_MOD_RL_*.dll"
85# endif
86#endif
87
88/*
89 Global declarations.
90*/
91static SemaphoreInfo
92 *module_semaphore = (SemaphoreInfo *) NULL;
93
94static SplayTreeInfo
95 *module_list = (SplayTreeInfo *) NULL;
96
97static volatile MagickBooleanType
98 instantiate_module = MagickFalse;
99
100/*
101 Forward declarations.
102*/
103static const ModuleInfo
104 *RegisterModule(const ModuleInfo *,ExceptionInfo *);
105
106static MagickBooleanType
107 GetMagickModulePath(const char *,MagickModuleType,char *,ExceptionInfo *),
cristy7832dc22011-09-05 01:21:53 +0000108 InitializeModuleList(ExceptionInfo *),
cristy3ed852e2009-09-05 21:47:34 +0000109 UnregisterModule(const ModuleInfo *,ExceptionInfo *);
110
111static void
112 TagToCoderModuleName(const char *,char *),
113 TagToFilterModuleName(const char *,char *),
114 TagToModuleName(const char *,const char *,char *);
115
116/*
117%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
118% %
119% %
120% %
121% A c q u i r e M o d u l e I n f o %
122% %
123% %
124% %
125%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
126%
127% AcquireModuleInfo() allocates the ModuleInfo structure.
128%
129% The format of the AcquireModuleInfo method is:
130%
131% ModuleInfo *AcquireModuleInfo(const char *path,const char *tag)
132%
133% A description of each parameter follows:
134%
135% o path: the path associated with the tag.
136%
137% o tag: a character string that represents the image format we are
138% looking for.
139%
140*/
141MagickExport ModuleInfo *AcquireModuleInfo(const char *path,const char *tag)
142{
143 ModuleInfo
144 *module_info;
145
cristy73bd4a52010-10-05 11:24:23 +0000146 module_info=(ModuleInfo *) AcquireMagickMemory(sizeof(*module_info));
cristy3ed852e2009-09-05 21:47:34 +0000147 if (module_info == (ModuleInfo *) NULL)
148 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
149 (void) ResetMagickMemory(module_info,0,sizeof(*module_info));
150 if (path != (const char *) NULL)
151 module_info->path=ConstantString(path);
152 if (tag != (const char *) NULL)
153 module_info->tag=ConstantString(tag);
154 module_info->timestamp=time(0);
155 module_info->signature=MagickSignature;
156 return(module_info);
157}
158
159/*
160%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
161% %
162% %
163% %
164% D e s t r o y M o d u l e L i s t %
165% %
166% %
167% %
168%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
169%
170% DestroyModuleList() unregisters any previously loaded modules and exits
171% the module loaded environment.
172%
173% The format of the DestroyModuleList module is:
174%
175% void DestroyModuleList(void)
176%
177*/
178MagickExport void DestroyModuleList(void)
179{
180 /*
181 Destroy magick modules.
182 */
cristyf84a1932010-01-03 18:00:18 +0000183 LockSemaphoreInfo(module_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000184#if defined(MAGICKCORE_MODULES_SUPPORT)
185 if (module_list != (SplayTreeInfo *) NULL)
186 module_list=DestroySplayTree(module_list);
187 if (instantiate_module != MagickFalse)
cristy1e09ca22009-12-27 18:04:58 +0000188 {
189#if !defined(MAGICKCORE_JP2_DELEGATE)
190 (void) lt_dlexit(); /* Jasper has an errant atexit() handler */
cristy3ed852e2009-09-05 21:47:34 +0000191#endif
cristy1e09ca22009-12-27 18:04:58 +0000192 instantiate_module=MagickFalse;
193 }
194#endif
cristyf84a1932010-01-03 18:00:18 +0000195 UnlockSemaphoreInfo(module_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000196}
197
198/*
199%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
200% %
201% %
202% %
203% G e t M o d u l e I n f o %
204% %
205% %
206% %
207%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
208%
209% GetModuleInfo() returns a pointer to a ModuleInfo structure that matches the
210% specified tag. If tag is NULL, the head of the module list is returned. If
211% no modules are loaded, or the requested module is not found, NULL is
212% returned.
213%
214% The format of the GetModuleInfo module is:
215%
216% ModuleInfo *GetModuleInfo(const char *tag,ExceptionInfo *exception)
217%
218% A description of each parameter follows:
219%
220% o tag: a character string that represents the image format we are
221% looking for.
222%
223% o exception: return any errors or warnings in this structure.
224%
225*/
226MagickExport ModuleInfo *GetModuleInfo(const char *tag,ExceptionInfo *exception)
227{
228 if ((module_list == (SplayTreeInfo *) NULL) ||
229 (instantiate_module == MagickFalse))
230 if (InitializeModuleList(exception) == MagickFalse)
231 return((ModuleInfo *) NULL);
232 if ((module_list == (SplayTreeInfo *) NULL) ||
233 (GetNumberOfNodesInSplayTree(module_list) == 0))
234 return((ModuleInfo *) NULL);
235 if ((tag == (const char *) NULL) || (LocaleCompare(tag,"*") == 0))
236 {
237 ModuleInfo
238 *p;
239
240#if defined(MAGICKCORE_MODULES_SUPPORT)
241 if (LocaleCompare(tag,"*") == 0)
242 (void) OpenModules(exception);
243#endif
cristyf84a1932010-01-03 18:00:18 +0000244 LockSemaphoreInfo(module_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000245 ResetSplayTreeIterator(module_list);
246 p=(ModuleInfo *) GetNextValueInSplayTree(module_list);
cristyf84a1932010-01-03 18:00:18 +0000247 UnlockSemaphoreInfo(module_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000248 return(p);
249 }
250 return((ModuleInfo *) GetValueFromSplayTree(module_list,tag));
251}
252
253/*
254%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
255% %
256% %
257% %
258% G e t M o d u l e I n f o L i s t %
259% %
260% %
261% %
262%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
263%
264% GetModuleInfoList() returns any modules that match the specified pattern.
265%
266% The format of the GetModuleInfoList function is:
267%
268% const ModuleInfo **GetModuleInfoList(const char *pattern,
cristybb503372010-05-27 20:51:26 +0000269% size_t *number_modules,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000270%
271% A description of each parameter follows:
272%
273% o pattern: Specifies a pointer to a text string containing a pattern.
274%
275% o number_modules: This integer returns the number of modules in the list.
276%
277% o exception: return any errors or warnings in this structure.
278%
279*/
280
281#if defined(__cplusplus) || defined(c_plusplus)
282extern "C" {
283#endif
284
285static int ModuleInfoCompare(const void *x,const void *y)
286{
287 const ModuleInfo
288 **p,
289 **q;
290
291 p=(const ModuleInfo **) x,
292 q=(const ModuleInfo **) y;
293 if (LocaleCompare((*p)->path,(*q)->path) == 0)
294 return(LocaleCompare((*p)->tag,(*q)->tag));
295 return(LocaleCompare((*p)->path,(*q)->path));
296}
297
298#if defined(__cplusplus) || defined(c_plusplus)
299}
300#endif
301
302MagickExport const ModuleInfo **GetModuleInfoList(const char *pattern,
cristybb503372010-05-27 20:51:26 +0000303 size_t *number_modules,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000304{
305 const ModuleInfo
306 **modules;
307
308 register const ModuleInfo
309 *p;
310
cristybb503372010-05-27 20:51:26 +0000311 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000312 i;
313
314 /*
315 Allocate module list.
316 */
317 assert(pattern != (char *) NULL);
318 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",pattern);
cristybb503372010-05-27 20:51:26 +0000319 assert(number_modules != (size_t *) NULL);
cristy3ed852e2009-09-05 21:47:34 +0000320 *number_modules=0;
321 p=GetModuleInfo("*",exception);
322 if (p == (const ModuleInfo *) NULL)
323 return((const ModuleInfo **) NULL);
324 modules=(const ModuleInfo **) AcquireQuantumMemory((size_t)
325 GetNumberOfNodesInSplayTree(module_list)+1UL,sizeof(*modules));
326 if (modules == (const ModuleInfo **) NULL)
327 return((const ModuleInfo **) NULL);
328 /*
329 Generate module list.
330 */
cristyf84a1932010-01-03 18:00:18 +0000331 LockSemaphoreInfo(module_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000332 ResetSplayTreeIterator(module_list);
333 p=(const ModuleInfo *) GetNextValueInSplayTree(module_list);
334 for (i=0; p != (const ModuleInfo *) NULL; )
335 {
336 if ((p->stealth == MagickFalse) &&
337 (GlobExpression(p->tag,pattern,MagickFalse) != MagickFalse))
338 modules[i++]=p;
339 p=(const ModuleInfo *) GetNextValueInSplayTree(module_list);
340 }
cristyf84a1932010-01-03 18:00:18 +0000341 UnlockSemaphoreInfo(module_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000342 qsort((void *) modules,(size_t) i,sizeof(*modules),ModuleInfoCompare);
343 modules[i]=(ModuleInfo *) NULL;
cristybb503372010-05-27 20:51:26 +0000344 *number_modules=(size_t) i;
cristy3ed852e2009-09-05 21:47:34 +0000345 return(modules);
346}
347
348/*
349%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
350% %
351% %
352% %
353% G e t M o d u l e L i s t %
354% %
355% %
356% %
357%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
358%
359% GetModuleList() returns any image format modules that match the specified
360% pattern.
361%
362% The format of the GetModuleList function is:
363%
cristya6de29a2010-06-30 14:34:26 +0000364% char **GetModuleList(const char *pattern,const MagickModuleType type,
365% size_t *number_modules,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000366%
367% A description of each parameter follows:
368%
369% o pattern: Specifies a pointer to a text string containing a pattern.
370%
cristya6de29a2010-06-30 14:34:26 +0000371% o type: choose from MagickImageCoderModule or MagickImageFilterModule.
372%
cristy3ed852e2009-09-05 21:47:34 +0000373% o number_modules: This integer returns the number of modules in the
374% list.
375%
376% o exception: return any errors or warnings in this structure.
377%
378*/
379
380#if defined(__cplusplus) || defined(c_plusplus)
381extern "C" {
382#endif
383
384static int ModuleCompare(const void *x,const void *y)
385{
386 register const char
387 **p,
388 **q;
389
390 p=(const char **) x;
391 q=(const char **) y;
392 return(LocaleCompare(*p,*q));
393}
394
395#if defined(__cplusplus) || defined(c_plusplus)
396}
397#endif
398
399static inline int MagickReadDirectory(DIR *directory,struct dirent *entry,
400 struct dirent **result)
401{
402#if defined(MAGICKCORE_HAVE_READDIR_R)
403 return(readdir_r(directory,entry,result));
404#else
405 (void) entry;
406 errno=0;
407 *result=readdir(directory);
408 return(errno);
409#endif
410}
411
412MagickExport char **GetModuleList(const char *pattern,
cristya6de29a2010-06-30 14:34:26 +0000413 const MagickModuleType type,size_t *number_modules,ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +0000414{
415 char
416 **modules,
417 filename[MaxTextExtent],
418 module_path[MaxTextExtent],
419 path[MaxTextExtent];
420
421 DIR
422 *directory;
423
424 MagickBooleanType
425 status;
426
cristybb503372010-05-27 20:51:26 +0000427 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +0000428 i;
429
430 size_t
cristyd1df72d2010-06-29 02:17:03 +0000431 max_entries;
cristy3ed852e2009-09-05 21:47:34 +0000432
433 struct dirent
434 *buffer,
435 *entry;
436
cristy3ed852e2009-09-05 21:47:34 +0000437 /*
cristya6de29a2010-06-30 14:34:26 +0000438 Locate all modules in the image coder or filter path.
cristy3ed852e2009-09-05 21:47:34 +0000439 */
cristya6de29a2010-06-30 14:34:26 +0000440 switch (type)
441 {
442 case MagickImageCoderModule:
443 default:
444 {
445 TagToCoderModuleName("magick",filename);
446 status=GetMagickModulePath(filename,MagickImageCoderModule,module_path,
447 exception);
448 break;
449 }
450 case MagickImageFilterModule:
451 {
452 TagToFilterModuleName("analyze",filename);
453 status=GetMagickModulePath(filename,MagickImageFilterModule,module_path,
454 exception);
455 break;
456 }
457 }
cristyd1df72d2010-06-29 02:17:03 +0000458 if (status == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +0000459 return((char **) NULL);
460 GetPathComponent(module_path,HeadPath,path);
461 max_entries=255;
462 modules=(char **) AcquireQuantumMemory((size_t) max_entries+1UL,
463 sizeof(*modules));
464 if (modules == (char **) NULL)
465 return((char **) NULL);
466 *modules=(char *) NULL;
467 directory=opendir(path);
468 if (directory == (DIR *) NULL)
469 {
470 modules=(char **) RelinquishMagickMemory(modules);
471 return((char **) NULL);
472 }
cristy73bd4a52010-10-05 11:24:23 +0000473 buffer=(struct dirent *) AcquireMagickMemory(sizeof(*buffer)+
cristyd1df72d2010-06-29 02:17:03 +0000474 FILENAME_MAX+1);
cristy3ed852e2009-09-05 21:47:34 +0000475 if (buffer == (struct dirent *) NULL)
476 ThrowFatalException(ResourceLimitFatalError,"MemoryAllocationFailed");
477 i=0;
478 while ((MagickReadDirectory(directory,buffer,&entry) == 0) &&
479 (entry != (struct dirent *) NULL))
480 {
481 status=GlobExpression(entry->d_name,ModuleGlobExpression,MagickFalse);
482 if (status == MagickFalse)
483 continue;
484 if (GlobExpression(entry->d_name,pattern,MagickFalse) == MagickFalse)
485 continue;
cristybb503372010-05-27 20:51:26 +0000486 if (i >= (ssize_t) max_entries)
cristy3ed852e2009-09-05 21:47:34 +0000487 {
488 modules=(char **) NULL;
489 if (~max_entries > max_entries)
490 modules=(char **) ResizeQuantumMemory(modules,(size_t)
491 (max_entries << 1),sizeof(*modules));
492 max_entries<<=1;
493 if (modules == (char **) NULL)
494 break;
495 }
496 /*
497 Add new module name to list.
498 */
499 modules[i]=AcquireString((char *) NULL);
500 GetPathComponent(entry->d_name,BasePath,modules[i]);
cristy3ed852e2009-09-05 21:47:34 +0000501 if (LocaleNCompare("IM_MOD_",modules[i],7) == 0)
502 {
503 (void) CopyMagickString(modules[i],modules[i]+10,MaxTextExtent);
504 modules[i][strlen(modules[i])-1]='\0';
505 }
506 i++;
507 }
508 buffer=(struct dirent *) RelinquishMagickMemory(buffer);
509 (void) closedir(directory);
510 if (modules == (char **) NULL)
511 {
512 (void) ThrowMagickException(exception,GetMagickModule(),ConfigureError,
cristyefe601c2013-01-05 17:51:12 +0000513 "MemoryAllocationFailed","`%s'",pattern);
cristy3ed852e2009-09-05 21:47:34 +0000514 return((char **) NULL);
515 }
516 qsort((void *) modules,(size_t) i,sizeof(*modules),ModuleCompare);
517 modules[i]=(char *) NULL;
cristybb503372010-05-27 20:51:26 +0000518 *number_modules=(size_t) i;
cristy3ed852e2009-09-05 21:47:34 +0000519 return(modules);
520}
521
522/*
523%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
524% %
525% %
526% %
527% G e t M a g i c k M o d u l e P a t h %
528% %
529% %
530% %
531%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
532%
533% GetMagickModulePath() finds a module with the specified module type and
534% filename.
535%
536% The format of the GetMagickModulePath module is:
537%
538% MagickBooleanType GetMagickModulePath(const char *filename,
539% MagickModuleType module_type,char *path,ExceptionInfo *exception)
540%
541% A description of each parameter follows:
542%
543% o filename: the module file name.
544%
545% o module_type: the module type: MagickImageCoderModule or
546% MagickImageFilterModule.
547%
548% o path: the path associated with the filename.
549%
550% o exception: return any errors or warnings in this structure.
551%
552*/
553static MagickBooleanType GetMagickModulePath(const char *filename,
554 MagickModuleType module_type,char *path,ExceptionInfo *exception)
555{
556 char
557 *module_path;
558
559 assert(filename != (const char *) NULL);
560 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",filename);
561 assert(path != (char *) NULL);
562 assert(exception != (ExceptionInfo *) NULL);
563 (void) CopyMagickString(path,filename,MaxTextExtent);
564 module_path=(char *) NULL;
565 switch (module_type)
566 {
567 case MagickImageCoderModule:
568 default:
569 {
570 (void) LogMagickEvent(ModuleEvent,GetMagickModule(),
571 "Searching for coder module file \"%s\" ...",filename);
572 module_path=GetEnvironmentValue("MAGICK_CODER_MODULE_PATH");
573#if defined(MAGICKCORE_CODER_PATH)
574 if (module_path == (char *) NULL)
575 module_path=AcquireString(MAGICKCORE_CODER_PATH);
576#endif
577 break;
578 }
579 case MagickImageFilterModule:
580 {
581 (void) LogMagickEvent(ModuleEvent,GetMagickModule(),
582 "Searching for filter module file \"%s\" ...",filename);
583 module_path=GetEnvironmentValue("MAGICK_CODER_FILTER_PATH");
584#if defined(MAGICKCORE_FILTER_PATH)
585 if (module_path == (char *) NULL)
586 module_path=AcquireString(MAGICKCORE_FILTER_PATH);
587#endif
588 break;
589 }
590 }
591 if (module_path != (char *) NULL)
592 {
593 register char
594 *p,
595 *q;
596
597 for (p=module_path-1; p != (char *) NULL; )
598 {
599 (void) CopyMagickString(path,p+1,MaxTextExtent);
600 q=strchr(path,DirectoryListSeparator);
601 if (q != (char *) NULL)
602 *q='\0';
603 q=path+strlen(path)-1;
604 if ((q >= path) && (*q != *DirectorySeparator))
605 (void) ConcatenateMagickString(path,DirectorySeparator,MaxTextExtent);
606 (void) ConcatenateMagickString(path,filename,MaxTextExtent);
607 if (IsPathAccessible(path) != MagickFalse)
608 {
609 module_path=DestroyString(module_path);
610 return(MagickTrue);
611 }
612 p=strchr(p+1,DirectoryListSeparator);
613 }
614 module_path=DestroyString(module_path);
615 }
616#if defined(MAGICKCORE_INSTALLED_SUPPORT)
cristyd1df72d2010-06-29 02:17:03 +0000617 else
cristy3ed852e2009-09-05 21:47:34 +0000618#if defined(MAGICKCORE_CODER_PATH)
619 {
620 const char
621 *directory;
622
623 /*
624 Search hard coded paths.
625 */
626 switch (module_type)
627 {
628 case MagickImageCoderModule:
629 default:
630 {
631 directory=MAGICKCORE_CODER_PATH;
632 break;
633 }
634 case MagickImageFilterModule:
635 {
636 directory=MAGICKCORE_FILTER_PATH;
637 break;
638 }
639 }
cristyb51dff52011-05-19 16:55:47 +0000640 (void) FormatLocaleString(path,MaxTextExtent,"%s%s",directory,filename);
cristy3ed852e2009-09-05 21:47:34 +0000641 if (IsPathAccessible(path) == MagickFalse)
642 {
643 ThrowFileException(exception,ConfigureWarning,
644 "UnableToOpenModuleFile",path);
645 return(MagickFalse);
646 }
647 return(MagickTrue);
648 }
649#else
cristy0157aea2010-04-24 21:12:18 +0000650#if defined(MAGICKCORE_WINDOWS_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000651 {
652 const char
653 *registery_key;
654
655 unsigned char
656 *key_value;
657
658 /*
659 Locate path via registry key.
660 */
661 switch (module_type)
662 {
663 case MagickImageCoderModule:
664 default:
665 {
666 registery_key="CoderModulesPath";
667 break;
668 }
669 case MagickImageFilterModule:
670 {
671 registery_key="FilterModulesPath";
672 break;
673 }
674 }
675 key_value=NTRegistryKeyLookup(registery_key);
676 if (key_value == (unsigned char *) NULL)
677 {
678 ThrowMagickException(exception,GetMagickModule(),ConfigureError,
cristyefe601c2013-01-05 17:51:12 +0000679 "RegistryKeyLookupFailed","`%s'",registery_key);
cristy3ed852e2009-09-05 21:47:34 +0000680 return(MagickFalse);
681 }
cristyb51dff52011-05-19 16:55:47 +0000682 (void) FormatLocaleString(path,MaxTextExtent,"%s%s%s",(char *) key_value,
cristy3ed852e2009-09-05 21:47:34 +0000683 DirectorySeparator,filename);
684 key_value=(unsigned char *) RelinquishMagickMemory(key_value);
685 if (IsPathAccessible(path) == MagickFalse)
686 {
687 ThrowFileException(exception,ConfigureWarning,
688 "UnableToOpenModuleFile",path);
689 return(MagickFalse);
690 }
691 return(MagickTrue);
692 }
693#endif
694#endif
cristy0157aea2010-04-24 21:12:18 +0000695#if !defined(MAGICKCORE_CODER_PATH) && !defined(MAGICKCORE_WINDOWS_SUPPORT)
696# error MAGICKCORE_CODER_PATH or MAGICKCORE_WINDOWS_SUPPORT must be defined when MAGICKCORE_INSTALLED_SUPPORT is defined
cristy3ed852e2009-09-05 21:47:34 +0000697#endif
698#else
699 {
700 char
701 *home;
702
703 home=GetEnvironmentValue("MAGICK_HOME");
704 if (home != (char *) NULL)
705 {
706 /*
707 Search MAGICK_HOME.
708 */
709#if !defined(MAGICKCORE_POSIX_SUPPORT)
cristyb51dff52011-05-19 16:55:47 +0000710 (void) FormatLocaleString(path,MaxTextExtent,"%s%s%s",home,
cristy3ed852e2009-09-05 21:47:34 +0000711 DirectorySeparator,filename);
712#else
713 const char
714 *directory;
715
716 switch (module_type)
717 {
718 case MagickImageCoderModule:
719 default:
720 {
721 directory=MAGICKCORE_CODER_RELATIVE_PATH;
722 break;
723 }
724 case MagickImageFilterModule:
725 {
726 directory=MAGICKCORE_FILTER_RELATIVE_PATH;
727 break;
728 }
729 }
cristyb51dff52011-05-19 16:55:47 +0000730 (void) FormatLocaleString(path,MaxTextExtent,"%s/lib/%s/%s",home,
cristy3ed852e2009-09-05 21:47:34 +0000731 directory,filename);
732#endif
733 home=DestroyString(home);
734 if (IsPathAccessible(path) != MagickFalse)
735 return(MagickTrue);
736 }
737 }
738 if (*GetClientPath() != '\0')
739 {
740 /*
741 Search based on executable directory.
742 */
743#if !defined(MAGICKCORE_POSIX_SUPPORT)
cristyb51dff52011-05-19 16:55:47 +0000744 (void) FormatLocaleString(path,MaxTextExtent,"%s%s%s",GetClientPath(),
cristy3ed852e2009-09-05 21:47:34 +0000745 DirectorySeparator,filename);
746#else
747 char
748 prefix[MaxTextExtent];
749
750 const char
751 *directory;
752
753 switch (module_type)
754 {
755 case MagickImageCoderModule:
756 default:
757 {
cristy905e5302011-11-09 18:08:43 +0000758 directory="coders";
cristy3ed852e2009-09-05 21:47:34 +0000759 break;
760 }
761 case MagickImageFilterModule:
762 {
763 directory="filters";
764 break;
765 }
766 }
767 (void) CopyMagickString(prefix,GetClientPath(),MaxTextExtent);
768 ChopPathComponents(prefix,1);
cristyfee63262012-12-02 21:47:04 +0000769 (void) FormatLocaleString(path,MaxTextExtent,"%s/lib/%s/%s/%s",prefix,
770 MAGICKCORE_MODULES_RELATIVE_PATH,directory,filename);
cristy3ed852e2009-09-05 21:47:34 +0000771#endif
772 if (IsPathAccessible(path) != MagickFalse)
773 return(MagickTrue);
774 }
cristy0157aea2010-04-24 21:12:18 +0000775#if defined(MAGICKCORE_WINDOWS_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +0000776 {
777 /*
778 Search module path.
779 */
780 if ((NTGetModulePath("CORE_RL_magick_.dll",path) != MagickFalse) ||
781 (NTGetModulePath("CORE_DB_magick_.dll",path) != MagickFalse) ||
782 (NTGetModulePath("Magick.dll",path) != MagickFalse))
783 {
784 (void) ConcatenateMagickString(path,DirectorySeparator,MaxTextExtent);
785 (void) ConcatenateMagickString(path,filename,MaxTextExtent);
786 if (IsPathAccessible(path) != MagickFalse)
787 return(MagickTrue);
788 }
789 }
790#endif
791 {
792 char
793 *home;
794
795 home=GetEnvironmentValue("HOME");
796 if (home == (char *) NULL)
797 home=GetEnvironmentValue("USERPROFILE");
798 if (home != (char *) NULL)
799 {
800 /*
801 Search $HOME/.magick.
802 */
cristyb51dff52011-05-19 16:55:47 +0000803 (void) FormatLocaleString(path,MaxTextExtent,"%s%s.magick%s%s",home,
cristy3ed852e2009-09-05 21:47:34 +0000804 DirectorySeparator,DirectorySeparator,filename);
805 home=DestroyString(home);
806 if (IsPathAccessible(path) != MagickFalse)
807 return(MagickTrue);
808 }
809 }
810 /*
811 Search current directory.
812 */
813 if (IsPathAccessible(path) != MagickFalse)
814 return(MagickTrue);
815 if (exception->severity < ConfigureError)
816 ThrowFileException(exception,ConfigureWarning,"UnableToOpenModuleFile",
817 path);
818 return(MagickFalse);
819#endif
820 return(MagickFalse);
821}
822
823/*
824%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
825% %
826% %
827% %
cristy498543d2009-10-11 03:14:50 +0000828% I n i t i a l i z e M o d u l e L i s t %
cristy3ed852e2009-09-05 21:47:34 +0000829% %
830% %
831% %
832%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
833%
834% InitializeModuleList() initializes the module loader.
835%
836% The format of the InitializeModuleList() method is:
837%
838% InitializeModuleList(Exceptioninfo *exception)
839%
840% A description of each parameter follows.
841%
842% o exception: return any errors or warnings in this structure.
843%
844*/
845
846static void *DestroyModuleNode(void *module_info)
847{
848 ExceptionInfo
849 *exception;
850
851 register ModuleInfo
852 *p;
853
854 exception=AcquireExceptionInfo();
855 p=(ModuleInfo *) module_info;
856 if (UnregisterModule(p,exception) == MagickFalse)
857 CatchException(exception);
858 if (p->tag != (char *) NULL)
859 p->tag=DestroyString(p->tag);
860 if (p->path != (char *) NULL)
861 p->path=DestroyString(p->path);
862 exception=DestroyExceptionInfo(exception);
863 return(RelinquishMagickMemory(p));
864}
865
cristy7832dc22011-09-05 01:21:53 +0000866static MagickBooleanType InitializeModuleList(
cristy3ed852e2009-09-05 21:47:34 +0000867 ExceptionInfo *magick_unused(exception))
868{
869 if ((module_list == (SplayTreeInfo *) NULL) &&
870 (instantiate_module == MagickFalse))
871 {
cristy4e1dff62009-10-25 20:36:03 +0000872 if (module_semaphore == (SemaphoreInfo *) NULL)
873 AcquireSemaphoreInfo(&module_semaphore);
cristyf84a1932010-01-03 18:00:18 +0000874 LockSemaphoreInfo(module_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000875 if ((module_list == (SplayTreeInfo *) NULL) &&
876 (instantiate_module == MagickFalse))
877 {
878 MagickBooleanType
879 status;
880
881 ModuleInfo
882 *module_info;
883
884 module_list=NewSplayTree(CompareSplayTreeString,
885 (void *(*)(void *)) NULL,DestroyModuleNode);
886 if (module_list == (SplayTreeInfo *) NULL)
887 ThrowFatalException(ResourceLimitFatalError,
888 "MemoryAllocationFailed");
889 module_info=AcquireModuleInfo((const char *) NULL,"[boot-strap]");
890 module_info->stealth=MagickTrue;
891 status=AddValueToSplayTree(module_list,module_info->tag,module_info);
892 if (status == MagickFalse)
893 ThrowFatalException(ResourceLimitFatalError,
894 "MemoryAllocationFailed");
895 if (lt_dlinit() != 0)
896 ThrowFatalException(ModuleFatalError,
897 "UnableToInitializeModuleLoader");
898 instantiate_module=MagickTrue;
899 }
cristyf84a1932010-01-03 18:00:18 +0000900 UnlockSemaphoreInfo(module_semaphore);
cristy3ed852e2009-09-05 21:47:34 +0000901 }
902 return(module_list != (SplayTreeInfo *) NULL ? MagickTrue : MagickFalse);
903}
904
905/*
906%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
907% %
908% %
909% %
cristy3ed852e2009-09-05 21:47:34 +0000910% I n v o k e D y n a m i c I m a g e F i l t e r %
911% %
912% %
913% %
914%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
915%
916% InvokeDynamicImageFilter() invokes a dynamic image filter.
917%
918% The format of the InvokeDynamicImageFilter module is:
919%
920% MagickBooleanType InvokeDynamicImageFilter(const char *tag,Image **image,
921% const int argc,const char **argv,ExceptionInfo *exception)
922%
923% A description of each parameter follows:
924%
925% o tag: a character string that represents the name of the particular
926% module.
927%
928% o image: the image.
929%
930% o argc: a pointer to an integer describing the number of elements in the
931% argument vector.
932%
933% o argv: a pointer to a text array containing the command line arguments.
934%
935% o exception: return any errors or warnings in this structure.
936%
937*/
938MagickExport MagickBooleanType InvokeDynamicImageFilter(const char *tag,
939 Image **images,const int argc,const char **argv,ExceptionInfo *exception)
940{
941 char
942 name[MaxTextExtent],
943 path[MaxTextExtent];
944
945 ImageFilterHandler
946 *image_filter;
947
cristyd1df72d2010-06-29 02:17:03 +0000948 MagickBooleanType
949 status;
950
cristy3ed852e2009-09-05 21:47:34 +0000951 ModuleHandle
952 handle;
953
954 PolicyRights
955 rights;
956
cristy3ed852e2009-09-05 21:47:34 +0000957 /*
958 Find the module.
959 */
960 assert(images != (Image **) NULL);
961 assert((*images)->signature == MagickSignature);
962 if ((*images)->debug != MagickFalse)
963 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",
964 (*images)->filename);
965#if !defined(MAGICKCORE_BUILD_MODULES)
966 {
967 MagickBooleanType
968 status;
969
970 status=InvokeStaticImageFilter(tag,images,argc,argv,exception);
971 if (status != MagickFalse)
972 return(status);
973 }
974#endif
975 rights=ReadPolicyRights;
976 if (IsRightsAuthorized(FilterPolicyDomain,rights,tag) == MagickFalse)
977 {
cristya9197f62010-01-12 02:23:34 +0000978 errno=EPERM;
cristy3ed852e2009-09-05 21:47:34 +0000979 (void) ThrowMagickException(exception,GetMagickModule(),PolicyError,
cristyefe601c2013-01-05 17:51:12 +0000980 "NotAuthorized","`%s'",tag);
cristy3ed852e2009-09-05 21:47:34 +0000981 return(MagickFalse);
982 }
983 TagToFilterModuleName(tag,name);
cristyd1df72d2010-06-29 02:17:03 +0000984 status=GetMagickModulePath(name,MagickImageFilterModule,path,exception);
985 if (status == MagickFalse)
986 {
987 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
anthonye5b39652012-04-21 05:37:29 +0000988 "UnableToLoadModule","'%s': %s",name,path);
cristyd1df72d2010-06-29 02:17:03 +0000989 return(MagickFalse);
990 }
cristy3ed852e2009-09-05 21:47:34 +0000991 /*
992 Open the module.
993 */
994 handle=(ModuleHandle) lt_dlopen(path);
995 if (handle == (ModuleHandle) NULL)
996 {
997 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
anthonye5b39652012-04-21 05:37:29 +0000998 "UnableToLoadModule","'%s': %s",name,lt_dlerror());
cristy3ed852e2009-09-05 21:47:34 +0000999 return(MagickFalse);
1000 }
1001 /*
1002 Locate the module.
1003 */
1004#if !defined(MAGICKCORE_NAMESPACE_PREFIX)
cristyb51dff52011-05-19 16:55:47 +00001005 (void) FormatLocaleString(name,MaxTextExtent,"%sImage",tag);
cristy3ed852e2009-09-05 21:47:34 +00001006#else
cristyb51dff52011-05-19 16:55:47 +00001007 (void) FormatLocaleString(name,MaxTextExtent,"%s%sImage",
cristy3ed852e2009-09-05 21:47:34 +00001008 MAGICKCORE_NAMESPACE_PREFIX,tag);
1009#endif
1010 /*
1011 Execute the module.
1012 */
cristyfe12d6c2010-05-07 01:38:41 +00001013 ClearMagickException(exception);
cristy3ed852e2009-09-05 21:47:34 +00001014 image_filter=(ImageFilterHandler *) lt_dlsym(handle,name);
1015 if (image_filter == (ImageFilterHandler *) NULL)
1016 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
anthonye5b39652012-04-21 05:37:29 +00001017 "UnableToLoadModule","'%s': %s",name,lt_dlerror());
cristy3ed852e2009-09-05 21:47:34 +00001018 else
1019 {
cristybb503372010-05-27 20:51:26 +00001020 size_t
cristy3ed852e2009-09-05 21:47:34 +00001021 signature;
1022
1023 if ((*images)->debug != MagickFalse)
1024 (void) LogMagickEvent(ModuleEvent,GetMagickModule(),
1025 "Invoking \"%s\" dynamic image filter",tag);
1026 signature=image_filter(images,argc,argv,exception);
1027 if ((*images)->debug != MagickFalse)
1028 (void) LogMagickEvent(ModuleEvent,GetMagickModule(),"\"%s\" completes",
1029 tag);
1030 if (signature != MagickImageFilterSignature)
cristyfe12d6c2010-05-07 01:38:41 +00001031 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
anthonye5b39652012-04-21 05:37:29 +00001032 "ImageFilterSignatureMismatch","'%s': %8lx != %8lx",tag,
cristyf1d91242010-05-28 02:23:19 +00001033 (unsigned long) signature,(unsigned long) MagickImageFilterSignature);
cristy3ed852e2009-09-05 21:47:34 +00001034 }
1035 /*
1036 Close the module.
1037 */
1038 if (lt_dlclose(handle) != 0)
cristyfe12d6c2010-05-07 01:38:41 +00001039 (void) ThrowMagickException(exception,GetMagickModule(),ModuleWarning,
anthonye5b39652012-04-21 05:37:29 +00001040 "UnableToCloseModule","'%s': %s",name,lt_dlerror());
cristyfe12d6c2010-05-07 01:38:41 +00001041 return(exception->severity < ErrorException ? MagickTrue : MagickFalse);
cristy3ed852e2009-09-05 21:47:34 +00001042}
1043
1044/*
1045%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1046% %
1047% %
1048% %
1049% L i s t M o d u l e I n f o %
1050% %
1051% %
1052% %
1053%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1054%
1055% ListModuleInfo() lists the module info to a file.
1056%
1057% The format of the ListModuleInfo module is:
1058%
1059% MagickBooleanType ListModuleInfo(FILE *file,ExceptionInfo *exception)
1060%
1061% A description of each parameter follows.
1062%
1063% o file: An pointer to a FILE.
1064%
1065% o exception: return any errors or warnings in this structure.
1066%
1067*/
1068MagickExport MagickBooleanType ListModuleInfo(FILE *file,
1069 ExceptionInfo *exception)
1070{
cristya6de29a2010-06-30 14:34:26 +00001071 char
1072 filename[MaxTextExtent],
1073 module_path[MaxTextExtent],
1074 **modules,
1075 path[MaxTextExtent];
cristy3ed852e2009-09-05 21:47:34 +00001076
cristybb503372010-05-27 20:51:26 +00001077 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001078 i;
1079
cristybb503372010-05-27 20:51:26 +00001080 size_t
cristy3ed852e2009-09-05 21:47:34 +00001081 number_modules;
1082
1083 if (file == (const FILE *) NULL)
1084 file=stdout;
cristya6de29a2010-06-30 14:34:26 +00001085 /*
1086 List image coders.
1087 */
1088 modules=GetModuleList("*",MagickImageCoderModule,&number_modules,exception);
1089 if (modules == (char **) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001090 return(MagickFalse);
cristya6de29a2010-06-30 14:34:26 +00001091 TagToCoderModuleName("magick",filename);
1092 (void) GetMagickModulePath(filename,MagickImageCoderModule,module_path,
1093 exception);
1094 GetPathComponent(module_path,HeadPath,path);
cristyb51dff52011-05-19 16:55:47 +00001095 (void) FormatLocaleFile(file,"\nPath: %s\n\n",path);
1096 (void) FormatLocaleFile(file,"Image Coder\n");
cristy1e604812011-05-19 18:07:50 +00001097 (void) FormatLocaleFile(file,
1098 "-------------------------------------------------"
cristy3ed852e2009-09-05 21:47:34 +00001099 "------------------------------\n");
cristybb503372010-05-27 20:51:26 +00001100 for (i=0; i < (ssize_t) number_modules; i++)
cristy3ed852e2009-09-05 21:47:34 +00001101 {
cristyb51dff52011-05-19 16:55:47 +00001102 (void) FormatLocaleFile(file,"%s",modules[i]);
1103 (void) FormatLocaleFile(file,"\n");
cristy3ed852e2009-09-05 21:47:34 +00001104 }
1105 (void) fflush(file);
cristya6de29a2010-06-30 14:34:26 +00001106 /*
1107 Relinquish resources.
1108 */
1109 for (i=0; i < (ssize_t) number_modules; i++)
1110 modules[i]=DestroyString(modules[i]);
1111 modules=(char **) RelinquishMagickMemory(modules);
1112 /*
1113 List image filters.
1114 */
1115 modules=GetModuleList("*",MagickImageFilterModule,&number_modules,exception);
1116 if (modules == (char **) NULL)
1117 return(MagickFalse);
1118 TagToFilterModuleName("analyze",filename);
1119 (void) GetMagickModulePath(filename,MagickImageFilterModule,module_path,
1120 exception);
1121 GetPathComponent(module_path,HeadPath,path);
cristyb51dff52011-05-19 16:55:47 +00001122 (void) FormatLocaleFile(file,"\nPath: %s\n\n",path);
1123 (void) FormatLocaleFile(file,"Image Filter\n");
cristy1e604812011-05-19 18:07:50 +00001124 (void) FormatLocaleFile(file,
1125 "-------------------------------------------------"
cristya6de29a2010-06-30 14:34:26 +00001126 "------------------------------\n");
1127 for (i=0; i < (ssize_t) number_modules; i++)
1128 {
cristyb51dff52011-05-19 16:55:47 +00001129 (void) FormatLocaleFile(file,"%s",modules[i]);
1130 (void) FormatLocaleFile(file,"\n");
cristya6de29a2010-06-30 14:34:26 +00001131 }
1132 (void) fflush(file);
1133 /*
1134 Relinquish resources.
1135 */
1136 for (i=0; i < (ssize_t) number_modules; i++)
1137 modules[i]=DestroyString(modules[i]);
1138 modules=(char **) RelinquishMagickMemory(modules);
cristy3ed852e2009-09-05 21:47:34 +00001139 return(MagickTrue);
1140}
1141
1142/*
1143%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1144% %
1145% %
1146% %
cristyf34a1452009-10-24 22:29:27 +00001147+ M o d u l e C o m p o n e n t G e n e s i s %
1148% %
1149% %
1150% %
1151%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1152%
1153% ModuleComponentGenesis() instantiates the module component.
1154%
1155% The format of the ModuleComponentGenesis method is:
1156%
1157% MagickBooleanType ModuleComponentGenesis(void)
1158%
1159*/
cristy5ff4eaf2011-09-03 01:38:02 +00001160MagickPrivate MagickBooleanType ModuleComponentGenesis(void)
cristyf34a1452009-10-24 22:29:27 +00001161{
1162 ExceptionInfo
1163 *exception;
1164
cristycee97112010-05-28 00:44:52 +00001165 MagickBooleanType
1166 status;
1167
cristy165b6092009-10-26 13:52:10 +00001168 AcquireSemaphoreInfo(&module_semaphore);
cristyf34a1452009-10-24 22:29:27 +00001169 exception=AcquireExceptionInfo();
cristycee97112010-05-28 00:44:52 +00001170 status=InitializeModuleList(exception);
cristyf34a1452009-10-24 22:29:27 +00001171 exception=DestroyExceptionInfo(exception);
cristycee97112010-05-28 00:44:52 +00001172 return(status);
cristyf34a1452009-10-24 22:29:27 +00001173}
1174
1175/*
1176%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1177% %
1178% %
1179% %
1180+ M o d u l e C o m p o n e n t T e r m i n u s %
1181% %
1182% %
1183% %
1184%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1185%
1186% ModuleComponentTerminus() destroys the module component.
1187%
1188% The format of the ModuleComponentTerminus method is:
1189%
1190% ModuleComponentTerminus(void)
1191%
1192*/
cristy5ff4eaf2011-09-03 01:38:02 +00001193MagickPrivate void ModuleComponentTerminus(void)
cristyf34a1452009-10-24 22:29:27 +00001194{
cristy18b17442009-10-25 18:36:48 +00001195 if (module_semaphore == (SemaphoreInfo *) NULL)
1196 AcquireSemaphoreInfo(&module_semaphore);
cristyf34a1452009-10-24 22:29:27 +00001197 DestroyModuleList();
1198 DestroySemaphoreInfo(&module_semaphore);
1199}
1200
1201/*
1202%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1203% %
1204% %
1205% %
cristy3ed852e2009-09-05 21:47:34 +00001206% O p e n M o d u l e %
1207% %
1208% %
1209% %
1210%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1211%
1212% OpenModule() loads a module, and invokes its registration module. It
1213% returns MagickTrue on success, and MagickFalse if there is an error.
1214%
1215% The format of the OpenModule module is:
1216%
1217% MagickBooleanType OpenModule(const char *module,ExceptionInfo *exception)
1218%
1219% A description of each parameter follows:
1220%
1221% o module: a character string that indicates the module to load.
1222%
1223% o exception: return any errors or warnings in this structure.
1224%
1225*/
cristy7832dc22011-09-05 01:21:53 +00001226MagickPrivate MagickBooleanType OpenModule(const char *module,
cristy3ed852e2009-09-05 21:47:34 +00001227 ExceptionInfo *exception)
1228{
1229 char
1230 filename[MaxTextExtent],
1231 module_name[MaxTextExtent],
1232 name[MaxTextExtent],
1233 path[MaxTextExtent];
1234
cristyd1df72d2010-06-29 02:17:03 +00001235 MagickBooleanType
1236 status;
1237
cristy3ed852e2009-09-05 21:47:34 +00001238 ModuleHandle
1239 handle;
1240
1241 ModuleInfo
1242 *module_info;
1243
1244 register const CoderInfo
1245 *p;
1246
1247 size_t
cristy3ed852e2009-09-05 21:47:34 +00001248 signature;
1249
1250 /*
1251 Assign module name from alias.
1252 */
1253 assert(module != (const char *) NULL);
1254 module_info=(ModuleInfo *) GetModuleInfo(module,exception);
1255 if (module_info != (ModuleInfo *) NULL)
1256 return(MagickTrue);
1257 (void) CopyMagickString(module_name,module,MaxTextExtent);
1258 p=GetCoderInfo(module,exception);
1259 if (p != (CoderInfo *) NULL)
1260 (void) CopyMagickString(module_name,p->name,MaxTextExtent);
1261 if (GetValueFromSplayTree(module_list,module_name) != (void *) NULL)
1262 return(MagickTrue); /* module already opened, return */
1263 /*
1264 Locate module.
1265 */
1266 handle=(ModuleHandle) NULL;
1267 TagToCoderModuleName(module_name,filename);
1268 (void) LogMagickEvent(ModuleEvent,GetMagickModule(),
1269 "Searching for module \"%s\" using filename \"%s\"",module_name,filename);
1270 *path='\0';
cristyd1df72d2010-06-29 02:17:03 +00001271 status=GetMagickModulePath(filename,MagickImageCoderModule,path,exception);
1272 if (status == MagickFalse)
cristy3ed852e2009-09-05 21:47:34 +00001273 return(MagickFalse);
1274 /*
1275 Load module
1276 */
1277 (void) LogMagickEvent(ModuleEvent,GetMagickModule(),
1278 "Opening module at path \"%s\"",path);
1279 handle=(ModuleHandle) lt_dlopen(path);
1280 if (handle == (ModuleHandle) NULL)
1281 {
1282 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
anthonye5b39652012-04-21 05:37:29 +00001283 "UnableToLoadModule","'%s': %s",path,lt_dlerror());
cristy3ed852e2009-09-05 21:47:34 +00001284 return(MagickFalse);
1285 }
1286 /*
1287 Register module.
1288 */
1289 module_info=AcquireModuleInfo(path,module_name);
1290 module_info->handle=handle;
1291 if (RegisterModule(module_info,exception) == (ModuleInfo *) NULL)
1292 return(MagickFalse);
1293 /*
1294 Define RegisterFORMATImage method.
1295 */
1296 TagToModuleName(module_name,"Register%sImage",name);
cristybb503372010-05-27 20:51:26 +00001297 module_info->register_module=(size_t (*)(void)) lt_dlsym(handle,name);
1298 if (module_info->register_module == (size_t (*)(void)) NULL)
cristy3ed852e2009-09-05 21:47:34 +00001299 {
1300 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
anthonye5b39652012-04-21 05:37:29 +00001301 "UnableToRegisterImageFormat","'%s': %s",module_name,lt_dlerror());
cristy3ed852e2009-09-05 21:47:34 +00001302 return(MagickFalse);
1303 }
1304 (void) LogMagickEvent(ModuleEvent,GetMagickModule(),
1305 "Method \"%s\" in module \"%s\" at address %p",name,module_name,
1306 (void *) module_info->register_module);
1307 /*
1308 Define UnregisterFORMATImage method.
1309 */
1310 TagToModuleName(module_name,"Unregister%sImage",name);
1311 module_info->unregister_module=(void (*)(void)) lt_dlsym(handle,name);
1312 if (module_info->unregister_module == (void (*)(void)) NULL)
1313 {
1314 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
anthonye5b39652012-04-21 05:37:29 +00001315 "UnableToRegisterImageFormat","'%s': %s",module_name,lt_dlerror());
cristy3ed852e2009-09-05 21:47:34 +00001316 return(MagickFalse);
1317 }
1318 (void) LogMagickEvent(ModuleEvent,GetMagickModule(),
1319 "Method \"%s\" in module \"%s\" at address %p",name,module_name,
1320 (void *) module_info->unregister_module);
1321 signature=module_info->register_module();
1322 if (signature != MagickImageCoderSignature)
1323 {
1324 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
anthonye5b39652012-04-21 05:37:29 +00001325 "ImageCoderSignatureMismatch","'%s': %8lx != %8lx",module_name,
cristyf1d91242010-05-28 02:23:19 +00001326 (unsigned long) signature,(unsigned long) MagickImageCoderSignature);
cristy3ed852e2009-09-05 21:47:34 +00001327 return(MagickFalse);
1328 }
1329 return(MagickTrue);
1330}
1331
1332/*
1333%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1334% %
1335% %
1336% %
1337% O p e n M o d u l e s %
1338% %
1339% %
1340% %
1341%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1342%
1343% OpenModules() loads all available modules.
1344%
1345% The format of the OpenModules module is:
1346%
1347% MagickBooleanType OpenModules(ExceptionInfo *exception)
1348%
1349% A description of each parameter follows:
1350%
1351% o exception: return any errors or warnings in this structure.
1352%
1353*/
cristy7832dc22011-09-05 01:21:53 +00001354MagickPrivate MagickBooleanType OpenModules(ExceptionInfo *exception)
cristy3ed852e2009-09-05 21:47:34 +00001355{
1356 char
1357 **modules;
1358
cristybb503372010-05-27 20:51:26 +00001359 register ssize_t
cristy3ed852e2009-09-05 21:47:34 +00001360 i;
1361
cristybb503372010-05-27 20:51:26 +00001362 size_t
cristy3ed852e2009-09-05 21:47:34 +00001363 number_modules;
1364
1365 /*
1366 Load all modules.
1367 */
1368 (void) GetMagickInfo((char *) NULL,exception);
1369 number_modules=0;
cristya6de29a2010-06-30 14:34:26 +00001370 modules=GetModuleList("*",MagickImageCoderModule,&number_modules,exception);
cristy3ed852e2009-09-05 21:47:34 +00001371 if (modules == (char **) NULL)
1372 return(MagickFalse);
cristybb503372010-05-27 20:51:26 +00001373 for (i=0; i < (ssize_t) number_modules; i++)
cristy3ed852e2009-09-05 21:47:34 +00001374 (void) OpenModule(modules[i],exception);
1375 /*
1376 Relinquish resources.
1377 */
cristybb503372010-05-27 20:51:26 +00001378 for (i=0; i < (ssize_t) number_modules; i++)
cristy3ed852e2009-09-05 21:47:34 +00001379 modules[i]=DestroyString(modules[i]);
1380 modules=(char **) RelinquishMagickMemory(modules);
1381 return(MagickTrue);
1382}
1383
1384/*
1385%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1386% %
1387% %
1388% %
1389% R e g i s t e r M o d u l e %
1390% %
1391% %
1392% %
1393%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1394%
1395% RegisterModule() adds an entry to the module list. It returns a pointer to
1396% the registered entry on success.
1397%
1398% The format of the RegisterModule module is:
1399%
1400% ModuleInfo *RegisterModule(const ModuleInfo *module_info,
1401% ExceptionInfo *exception)
1402%
1403% A description of each parameter follows:
1404%
1405% o info: a pointer to the registered entry is returned.
1406%
1407% o module_info: a pointer to the ModuleInfo structure to register.
1408%
1409% o exception: return any errors or warnings in this structure.
1410%
1411*/
1412static const ModuleInfo *RegisterModule(const ModuleInfo *module_info,
1413 ExceptionInfo *exception)
1414{
1415 MagickBooleanType
1416 status;
1417
1418 assert(module_info != (ModuleInfo *) NULL);
1419 assert(module_info->signature == MagickSignature);
1420 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",module_info->tag);
1421 if (module_list == (SplayTreeInfo *) NULL)
1422 return((const ModuleInfo *) NULL);
1423 status=AddValueToSplayTree(module_list,module_info->tag,module_info);
1424 if (status == MagickFalse)
1425 (void) ThrowMagickException(exception,GetMagickModule(),ResourceLimitError,
cristyefe601c2013-01-05 17:51:12 +00001426 "MemoryAllocationFailed","`%s'",module_info->tag);
cristy3ed852e2009-09-05 21:47:34 +00001427 return(module_info);
1428}
1429
1430/*
1431%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1432% %
1433% %
1434% %
1435% T a g T o C o d e r M o d u l e N a m e %
1436% %
1437% %
1438% %
1439%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1440%
1441% TagToCoderModuleName() munges a module tag and obtains the filename of the
1442% corresponding module.
1443%
1444% The format of the TagToCoderModuleName module is:
1445%
1446% char *TagToCoderModuleName(const char *tag,char *name)
1447%
1448% A description of each parameter follows:
1449%
1450% o tag: a character string representing the module tag.
1451%
1452% o name: return the module name here.
1453%
1454*/
1455static void TagToCoderModuleName(const char *tag,char *name)
1456{
1457 assert(tag != (char *) NULL);
1458 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",tag);
1459 assert(name != (char *) NULL);
1460#if defined(MAGICKCORE_LTDL_DELEGATE)
cristyb51dff52011-05-19 16:55:47 +00001461 (void) FormatLocaleString(name,MaxTextExtent,"%s.la",tag);
cristy3ed852e2009-09-05 21:47:34 +00001462 (void) LocaleLower(name);
1463#else
cristy0157aea2010-04-24 21:12:18 +00001464#if defined(MAGICKCORE_WINDOWS_SUPPORT)
cristy3ed852e2009-09-05 21:47:34 +00001465 if (LocaleNCompare("IM_MOD_",tag,7) == 0)
1466 (void) CopyMagickString(name,tag,MaxTextExtent);
1467 else
1468 {
1469#if defined(_DEBUG)
cristyb51dff52011-05-19 16:55:47 +00001470 (void) FormatLocaleString(name,MaxTextExtent,"IM_MOD_DB_%s_.dll",tag);
cristy3ed852e2009-09-05 21:47:34 +00001471#else
cristyb51dff52011-05-19 16:55:47 +00001472 (void) FormatLocaleString(name,MaxTextExtent,"IM_MOD_RL_%s_.dll",tag);
cristy3ed852e2009-09-05 21:47:34 +00001473#endif
1474 }
1475#endif
1476#endif
1477}
1478
1479/*
1480%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1481% %
1482% %
1483% %
1484% T a g T o F i l t e r M o d u l e N a m e %
1485% %
1486% %
1487% %
1488%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1489%
1490% TagToFilterModuleName() munges a module tag and returns the filename of the
1491% corresponding filter module.
1492%
1493% The format of the TagToFilterModuleName module is:
1494%
1495% void TagToFilterModuleName(const char *tag,char name)
1496%
1497% A description of each parameter follows:
1498%
1499% o tag: a character string representing the module tag.
1500%
1501% o name: return the filter name here.
1502%
1503*/
1504static void TagToFilterModuleName(const char *tag,char *name)
1505{
1506 assert(tag != (char *) NULL);
1507 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",tag);
1508 assert(name != (char *) NULL);
1509#if !defined(MAGICKCORE_LTDL_DELEGATE)
cristyb51dff52011-05-19 16:55:47 +00001510 (void) FormatLocaleString(name,MaxTextExtent,"%s.dll",tag);
cristy3ed852e2009-09-05 21:47:34 +00001511#else
cristyb51dff52011-05-19 16:55:47 +00001512 (void) FormatLocaleString(name,MaxTextExtent,"%s.la",tag);
cristy3ed852e2009-09-05 21:47:34 +00001513#endif
1514}
1515
1516/*
1517%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1518% %
1519% %
1520% %
1521% T a g T o M o d u l e N a m e %
1522% %
1523% %
1524% %
1525%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1526%
1527% TagToModuleName() munges the module tag name and returns an upper-case tag
1528% name as the input string, and a user-provided format.
1529%
1530% The format of the TagToModuleName module is:
1531%
1532% TagToModuleName(const char *tag,const char *format,char *module)
1533%
1534% A description of each parameter follows:
1535%
1536% o tag: the module tag.
1537%
1538% o format: a sprintf-compatible format string containing %s where the
1539% upper-case tag name is to be inserted.
1540%
1541% o module: pointer to a destination buffer for the formatted result.
1542%
1543*/
1544static void TagToModuleName(const char *tag,const char *format,char *module)
1545{
1546 char
1547 name[MaxTextExtent];
1548
1549 assert(tag != (const char *) NULL);
1550 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",tag);
1551 assert(format != (const char *) NULL);
1552 assert(module != (char *) NULL);
1553 (void) CopyMagickString(name,tag,MaxTextExtent);
1554 LocaleUpper(name);
1555#if !defined(MAGICKCORE_NAMESPACE_PREFIX)
cristyb51dff52011-05-19 16:55:47 +00001556 (void) FormatLocaleString(module,MaxTextExtent,format,name);
cristy3ed852e2009-09-05 21:47:34 +00001557#else
1558 {
1559 char
1560 prefix_format[MaxTextExtent];
1561
cristyb51dff52011-05-19 16:55:47 +00001562 (void) FormatLocaleString(prefix_format,MaxTextExtent,"%s%s",
cristy3ed852e2009-09-05 21:47:34 +00001563 MAGICKCORE_NAMESPACE_PREFIX,format);
cristyb51dff52011-05-19 16:55:47 +00001564 (void) FormatLocaleString(module,MaxTextExtent,prefix_format,name);
cristy3ed852e2009-09-05 21:47:34 +00001565 }
1566#endif
1567}
1568
1569/*
1570%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1571% %
1572% %
1573% %
1574% U n r e g i s t e r M o d u l e %
1575% %
1576% %
1577% %
1578%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
1579%
1580% UnregisterModule() unloads a module, and invokes its de-registration module.
1581% Returns MagickTrue on success, and MagickFalse if there is an error.
1582%
1583% The format of the UnregisterModule module is:
1584%
1585% MagickBooleanType UnregisterModule(const ModuleInfo *module_info,
1586% ExceptionInfo *exception)
1587%
1588% A description of each parameter follows:
1589%
1590% o module_info: the module info.
1591%
1592% o exception: return any errors or warnings in this structure.
1593%
1594*/
1595static MagickBooleanType UnregisterModule(const ModuleInfo *module_info,
1596 ExceptionInfo *exception)
1597{
1598 /*
1599 Locate and execute UnregisterFORMATImage module.
1600 */
1601 assert(module_info != (const ModuleInfo *) NULL);
1602 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",module_info->tag);
1603 assert(exception != (ExceptionInfo *) NULL);
1604 if (module_info->unregister_module == NULL)
1605 return(MagickTrue);
1606 module_info->unregister_module();
1607 if (lt_dlclose((ModuleHandle) module_info->handle) != 0)
1608 {
1609 (void) ThrowMagickException(exception,GetMagickModule(),ModuleWarning,
anthonye5b39652012-04-21 05:37:29 +00001610 "UnableToCloseModule","'%s': %s",module_info->tag,lt_dlerror());
cristy3ed852e2009-09-05 21:47:34 +00001611 return(MagickFalse);
1612 }
1613 return(MagickTrue);
1614}
1615#else
1616MagickExport MagickBooleanType ListModuleInfo(FILE *magick_unused(file),
1617 ExceptionInfo *magick_unused(exception))
1618{
1619 return(MagickTrue);
1620}
1621
1622MagickExport MagickBooleanType InvokeDynamicImageFilter(const char *tag,
1623 Image **image,const int argc,const char **argv,ExceptionInfo *exception)
1624{
cristya6de29a2010-06-30 14:34:26 +00001625 PolicyRights
1626 rights;
1627
1628 assert(image != (Image **) NULL);
1629 assert((*image)->signature == MagickSignature);
1630 if ((*image)->debug != MagickFalse)
1631 (void) LogMagickEvent(TraceEvent,GetMagickModule(),"%s",(*image)->filename);
1632 rights=ReadPolicyRights;
1633 if (IsRightsAuthorized(FilterPolicyDomain,rights,tag) == MagickFalse)
1634 {
1635 errno=EPERM;
1636 (void) ThrowMagickException(exception,GetMagickModule(),PolicyError,
cristyefe601c2013-01-05 17:51:12 +00001637 "NotAuthorized","`%s'",tag);
cristya6de29a2010-06-30 14:34:26 +00001638 return(MagickFalse);
1639 }
1640#if defined(MAGICKCORE_BUILD_MODULES)
1641 (void) tag;
1642 (void) argc;
1643 (void) argv;
1644 (void) exception;
1645#else
cristy3ed852e2009-09-05 21:47:34 +00001646 {
cristybb503372010-05-27 20:51:26 +00001647 extern size_t
cristyd9a29192010-10-16 16:49:53 +00001648 analyzeImage(Image **,const int,const char **,ExceptionInfo *);
cristy3ed852e2009-09-05 21:47:34 +00001649
1650 ImageFilterHandler
1651 *image_filter;
1652
1653 image_filter=(ImageFilterHandler *) NULL;
1654 if (LocaleCompare("analyze",tag) == 0)
cristya6de29a2010-06-30 14:34:26 +00001655 image_filter=(ImageFilterHandler *) analyzeImage;
1656 if (image_filter == (ImageFilterHandler *) NULL)
1657 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
cristyefe601c2013-01-05 17:51:12 +00001658 "UnableToLoadModule","`%s'",tag);
cristya6de29a2010-06-30 14:34:26 +00001659 else
cristy3ed852e2009-09-05 21:47:34 +00001660 {
cristybb503372010-05-27 20:51:26 +00001661 size_t
cristy3ed852e2009-09-05 21:47:34 +00001662 signature;
1663
cristya6de29a2010-06-30 14:34:26 +00001664 if ((*image)->debug != MagickFalse)
1665 (void) LogMagickEvent(CoderEvent,GetMagickModule(),
1666 "Invoking \"%s\" static image filter",tag);
cristy3ed852e2009-09-05 21:47:34 +00001667 signature=image_filter(image,argc,argv,exception);
cristya6de29a2010-06-30 14:34:26 +00001668 if ((*image)->debug != MagickFalse)
1669 (void) LogMagickEvent(CoderEvent,GetMagickModule(),"\"%s\" completes",
1670 tag);
cristy3ed852e2009-09-05 21:47:34 +00001671 if (signature != MagickImageFilterSignature)
1672 {
1673 (void) ThrowMagickException(exception,GetMagickModule(),ModuleError,
anthonye5b39652012-04-21 05:37:29 +00001674 "ImageFilterSignatureMismatch","'%s': %8lx != %8lx",tag,
cristya6de29a2010-06-30 14:34:26 +00001675 (unsigned long) signature,(unsigned long)
cristy3ed852e2009-09-05 21:47:34 +00001676 MagickImageFilterSignature);
1677 return(MagickFalse);
1678 }
1679 }
1680 }
1681#endif
1682 return(MagickTrue);
1683}
1684#endif