MagickCore  6.9.10
Convert, Edit, Or Compose Bitmap Images
policy-private.h
Go to the documentation of this file.
1 /*
2  Copyright 1999-2019 ImageMagick Studio LLC, a non-profit organization
3  dedicated to making software imaging solutions freely available.
4 
5  You may not use this file except in compliance with the License.
6  obtain a copy of the License at
7 
8  https://imagemagick.org/script/license.php
9 
10  Unless required by applicable law or agreed to in writing, software
11  distributed under the License is distributed on an "AS IS" BASIS,
12  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  See the License for the specific language governing permissions and
14  limitations under the License.
15 
16  MagickCore private image color methods.
17 */
18 #ifndef MAGICKCORE_POLICY_PRIVATE_H
19 #define MAGICKCORE_POLICY_PRIVATE_H
20 
21 #include "magick/utility-private.h"
22 #include "magick/policy.h"
23 
24 #if defined(__cplusplus) || defined(c_plusplus)
25 extern "C" {
26 #endif
27 
28 #if defined(MAGICKCORE_ZERO_CONFIGURATION_SUPPORT)
29 /*
30  Zero configuration security policy. Discussion @
31  https://imagemagick.org/script/security-policy.php.
32 */
33 static const char
34  *ZeroConfigurationPolicy = \
35 "<policymap> \
36 </policymap>";
37 #endif
38 
39 static inline MagickBooleanType IsPathAuthorized(const PolicyRights rights,
40  const char *filename)
41 {
42  MagickBooleanType status =
43  ((IsRightsAuthorized(PathPolicyDomain,rights,filename) != MagickFalse) &&
44  ((IsRightsAuthorizedByName(SystemPolicyDomain,"symlink",rights,"follow") != MagickFalse) ||
46  return(status);
47 }
48 
49 #if defined(__cplusplus) || defined(c_plusplus)
50 }
51 #endif
52 
53 #endif
MagickExport MagickBooleanType IsRightsAuthorized(const PolicyDomain domain, const PolicyRights rights, const char *pattern)
Definition: policy.c:746
PolicyRights
Definition: policy.h:41
static MagickBooleanType IsPathAuthorized(const PolicyRights rights, const char *filename)
Definition: policy-private.h:39
MagickBooleanType
Definition: magick-type.h:191
Definition: magick-type.h:194
Definition: policy.h:36
Definition: policy.h:34
Definition: magick-type.h:193
static MagickBooleanType is_symlink_utf8(const char *path)
Definition: utility-private.h:407
MagickExport MagickBooleanType IsRightsAuthorizedByName(const PolicyDomain domain, const char *name, const PolicyRights rights, const char *pattern)
Definition: policy.c:613