File: conf.c

package info (click to toggle)
directfb 1.7.7-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 32,212 kB
  • sloc: ansic: 306,760; cpp: 46,357; sh: 11,720; makefile: 5,620; perl: 662; asm: 507; xml: 116
file content (233 lines) | stat: -rw-r--r-- 8,112 bytes parent folder | download | duplicates (2)
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
/*
   (c) Copyright 2012-2013  DirectFB integrated media GmbH
   (c) Copyright 2001-2013  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 Shimokawa <andi@directfb.org>,
              Marek Pikarski <mass@directfb.org>,
              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 <stddef.h>
#include <string.h>

#include <direct/conf.h>
#include <direct/mem.h>
#include <direct/messages.h>
#include <direct/util.h>

#include <fusion/conf.h>

#if FUSION_BUILD_MULTI
#include <grp.h>
#endif


static FusionConfig config;

FusionConfig *fusion_config       = &config;
const char   *fusion_config_usage =
     "libfusion options:\n"
     "  force-slave                    Always enter as a slave, waiting for the master, if not there\n"
     "  tmpfs=<directory>              Location of shared memory file\n"
#if FUSION_BUILD_MULTI
     "  shmfile-group=<groupname>      Group that owns shared memory files\n"
#endif
     "  [no-]debugshm                  Enable shared memory allocation tracking\n"
     "  [no-]madv-remove               Enable usage of MADV_REMOVE (default = auto)\n"
     "  [no-]secure-fusion             Use secure fusion, e.g. read-only shm (default=yes)\n"
     "  [no-]defer-destructors         Handle destructor calls in separate thread\n"
     "  trace-ref=<hexid>              Trace FusionRef up/down ('all' traces all)\n"
     "  call-bin-max-num=<n>           Set maximum call number for async call buffer (default 512, 0 = disable)\n"
     "  call-bin-max-data=<n>          Set maximum call data size for async call buffer (default 65536)\n"
     "\n";

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

void
__Fusion_conf_init()
{
     fusion_config->secure_fusion     = true;
     fusion_config->shmfile_gid       = -1;
     fusion_config->call_bin_max_num  = 512;
     fusion_config->call_bin_max_data = 65536;
}

void
__Fusion_conf_deinit()
{
}

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

DirectResult
fusion_config_set( const char *name, const char *value )
{
     if (strcmp (name, "tmpfs" ) == 0) {
          if (value) {
               if (fusion_config->tmpfs)
                    D_FREE( fusion_config->tmpfs );
               fusion_config->tmpfs = D_STRDUP( value );
          }
          else {
               D_ERROR("Fusion/Config 'tmpfs': No directory specified!\n");
               return DR_INVARG;
          }
     } else
#if FUSION_BUILD_MULTI
     if (strcmp (name, "shmfile-group" ) == 0) {
          if (value) {
               struct group *group_info;
               
               group_info = getgrnam( value );
               if (group_info)
                    fusion_config->shmfile_gid = group_info->gr_gid;
               else
                    D_PERROR("Fusion/Config 'shmfile-group': Group '%s' not found!\n", value);
          }
          else {
               D_ERROR("Fusion/Config 'shmfile-group': No file group name specified!\n");
               return DR_INVARG;
          }
     } else
#endif
     if (strcmp (name, "force-slave" ) == 0) {
          fusion_config->force_slave = true;
     } else
     if (strcmp (name, "no-force-slave" ) == 0) {
          fusion_config->force_slave = false;
     } else
     if (strcmp (name, "fork-handler" ) == 0) {
          fusion_config->fork_handler = true;
     } else
     if (strcmp (name, "no-fork-handler" ) == 0) {
          fusion_config->fork_handler = false;
     } else
     if (strcmp (name, "debugshm" ) == 0) {
          fusion_config->debugshm = true;
     } else
     if (strcmp (name, "no-debugshm" ) == 0) {
          fusion_config->debugshm = false;
     } else
     if (strcmp (name, "madv-remove" ) == 0) {
          fusion_config->madv_remove       = true;
          fusion_config->madv_remove_force = true;
     } else
     if (strcmp (name, "no-madv-remove" ) == 0) {
          fusion_config->madv_remove       = false;
          fusion_config->madv_remove_force = true;
     } else
     if (strcmp (name, "secure-fusion" ) == 0) {
          fusion_config->secure_fusion = true;
     } else
     if (strcmp (name, "no-secure-fusion" ) == 0) {
          fusion_config->secure_fusion = false;
     } else
     if (strcmp (name, "defer-destructors" ) == 0) {
          fusion_config->defer_destructors = true;
     } else
     if (strcmp (name, "no-defer-destructors" ) == 0) {
          fusion_config->defer_destructors = false;
     } else
     if (strcmp (name, "trace-ref" ) == 0) {
          if (value) {
               if (!strcmp( value, "all" )) {
                    fusion_config->trace_ref = -1;
               }
               else if (direct_sscanf( value, "%x", &fusion_config->trace_ref ) != 1) {
                    D_ERROR( "Fusion/Config '%s': Invalid value!\n", name );
                    return DR_INVARG;
               }
          }
          else {
               D_ERROR( "Fusion/Config '%s': No ID specified!\n", name );
               return DR_INVARG;
          }
     } else
     if (strcmp (name, "call-bin-max-num" ) == 0) {
          if (value) {
               char *error;
               unsigned long max;

               max = strtoul( value, &error, 10 );

               if (*error) {
                    D_ERROR( "Fusion/Config '%s': Error in value '%s'!\n", name, error );
                    return DR_INVARG;
               }

               if (max < 0) {
                    D_ERROR( "Fusion/Config '%s': Error in value '%s' (min 1)!\n", name, error );
                    return DR_INVARG;
               }

               if (max > 16384) {
                    D_ERROR( "Fusion/Config '%s': Error in value '%s' (max 16384)!\n", name, error );
                    return DR_INVARG;
               }

               fusion_config->call_bin_max_num = max;
          }
          else {
               D_ERROR( "Fusion/Config '%s': No value specified!\n", name );
               return DR_INVARG;
          }
     } else
     if (strcmp (name, "call-bin-max-data" ) == 0) {
          if (value) {
               char *error;
               unsigned long max;

               max = strtoul( value, &error, 10 );

               if (*error) {
                    D_ERROR( "Fusion/Config '%s': Error in value '%s'!\n", name, error );
                    return DR_INVARG;
               }

               if (max < 4096) {
                    D_ERROR( "Fusion/Config '%s': Error in value '%s' (min 4096)!\n", name, error );
                    return DR_INVARG;
               }

               if (max > 16777216) {
                    D_ERROR( "Fusion/Config '%s': Error in value '%s' (max 16777216)!\n", name, error );
                    return DR_INVARG;
               }

               fusion_config->call_bin_max_data = max;
          }
          else {
               D_ERROR( "Fusion/Config '%s': No value specified!\n", name );
               return DR_INVARG;
          }
     } else
          return DR_UNSUPPORTED;

     return DR_OK;
}