summaryrefslogtreecommitdiff
path: root/Source/FusionDale/src/coma/policy.c
blob: a324ac40d0dad8b8562444d2554e3e6454615a92 (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
/*
   (c) Copyright 2001-2009  The world wide DirectFB Open Source Community (directfb.org)
   (c) Copyright 2000-2004  Convergence (integrated media) GmbH

   All rights reserved.

   Written by Denis Oliver Kropp <dok@directfb.org>,
              Andreas Hundt <andi@fischlustig.de>,
              Sven Neumann <neo@directfb.org>,
              Ville Syrjälä <syrjala@sci.fi> and
              Claudio Ciccani <klan@users.sf.net>.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; if not, write to the
   Free Software Foundation, Inc., 59 Temple Place - Suite 330,
   Boston, MA 02111-1307, USA.
*/

#include <config.h>

#include <stdlib.h>
#include <string.h>

#include <pthread.h>

#include <direct/debug.h>
#include <direct/list.h>
#include <direct/util.h>

#include <coma/policy.h>

#include <misc/dale_config.h>

/**********************************************************************************************************************/

typedef struct {
     DirectLink  link;
     char       *name;
     bool        allowed;
} PolicyEntry;

/**********************************************************************************************************************/

static pthread_mutex_t  policies_lock = PTHREAD_MUTEX_INITIALIZER;
static unsigned int     policies_age  = 1;
static DirectLink      *policies      = NULL;

/**********************************************************************************************************************/

static PolicyEntry *
lookup_policy( const char *name, bool sub )
{
     PolicyEntry *entry;

     direct_list_foreach (entry, policies) {
          if (! strcasecmp( entry->name, name ))
               return entry;
     }

     /*
      * If the policy being registered contains a slash, but didn't exactly match an entry
      * in fusiondalerc, check to see if the policy is descended from an entry in fusiondalerc
      * (e.g. 'ui/field/messages' matches 'ui' or 'ui/field')
      */
     if (sub && strchr(name, '/')) {
          int passed_name_len = strlen( name );

          direct_list_foreach (entry, policies) {
               int entry_len = strlen( entry->name );
               if ((passed_name_len > entry_len) &&
                   (name[entry_len] == '/') &&
                   (! strncasecmp( entry->name, name, entry_len))) {
                    return entry;
               }
          }
     }

     return NULL;
}

static bool
check_policy( ComaPolicy *policy )
{
     if (policy->age != policies_age) {
          PolicyEntry *entry = lookup_policy( policy->name, true );

          policy->allowed = entry ? entry->allowed : fusiondale_config->coma_policy;
          policy->age     = policies_age;
     }

     return policy->allowed;
}

/**********************************************************************************************************************/

void
coma_policy_config( const char *name, bool allow )
{
     PolicyEntry *entry;

     pthread_mutex_lock( &policies_lock );

     entry = lookup_policy( name, false );
     if (!entry) {
          entry = calloc( 1, sizeof(PolicyEntry) );
          if (!entry) {
               D_WARN( "out of memory" );
               pthread_mutex_unlock( &policies_lock );
               return;
          }

          entry->name = strdup( name );

          direct_list_prepend( &policies, &entry->link );
     }

     entry->allowed = allow;

     if (! ++policies_age)
          policies_age++;

     pthread_mutex_unlock( &policies_lock );
}

bool
coma_policy_check( ComaPolicy *policy )
{
     bool allowed;

     pthread_mutex_lock( &policies_lock );

     allowed = check_policy( policy );

     pthread_mutex_unlock( &policies_lock );

     return allowed;
}

/**********************************************************************************************************************/

bool
coma_policy_check_manager( const char *manager )
{
     ComaPolicy policy = COMA_POLICY_INIT( manager );

     return coma_policy_check( &policy );
}

bool
coma_policy_check_component( const char *manager, const char *component )
{
     char *policy_name;

     if (asprintf( &policy_name, "%s/%s", manager, component ) < 0)
          return DR_FAILURE;

     ComaPolicy policy  = COMA_POLICY_INIT( policy_name );
     bool       allowed = coma_policy_check( &policy );

     free( policy_name );

     return allowed;
}

bool
coma_policy_check_method( const char *manager, const char *component, unsigned int method )
{
     char *policy_name;

     if (asprintf( &policy_name, "%s/%s/m%u", manager, component, method ) < 0)
          return DR_FAILURE;

     ComaPolicy policy  = COMA_POLICY_INIT( policy_name );
     bool       allowed = coma_policy_check( &policy );

     free( policy_name );

     return allowed;
}

bool
coma_policy_check_notification( const char *manager, const char *component, unsigned int notification )
{
     char *policy_name;

     if (asprintf( &policy_name, "%s/%s/n%u", manager, component, notification ) < 0)
          return DR_FAILURE;

     ComaPolicy policy  = COMA_POLICY_INIT( policy_name );
     bool       allowed = coma_policy_check( &policy );

     free( policy_name );

     return allowed;
}