75ca48b1f81bf1b0cb27b6668fa501731fd89c60
[oweals/opkg-lede.git] / libopkg / opkg_conf.c
1 /* opkg_conf.c - the opkg package management system
2
3    Carl D. Worth
4
5    Copyright (C) 2001 University of Southern California
6
7    This program is free software; you can redistribute it and/or
8    modify it under the terms of the GNU General Public License as
9    published by the Free Software Foundation; either version 2, or (at
10    your option) any later version.
11
12    This program is distributed in the hope that it will be useful, but
13    WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15    General Public License for more details.
16 */
17
18 #include "includes.h"
19 #include "opkg_conf.h"
20
21 #include "xregex.h"
22 #include "sprintf_alloc.h"
23 #include "opkg_conf.h"
24 #include "opkg_message.h"
25 #include "file_util.h"
26 #include "str_util.h"
27 #include "xsystem.h"
28 #include <glob.h>
29 #include "opkg_defines.h"
30
31
32 static int opkg_conf_parse_file(opkg_conf_t *conf, const char *filename,
33                                 pkg_src_list_t *pkg_src_list,
34                                 nv_pair_list_t *tmp_dest_nv_pair_list,
35                                 char **tmp_lists_dir);
36 static int opkg_conf_set_option(const opkg_option_t *options,
37                                 const char *name, const char *value);
38 static int opkg_conf_set_default_dest(opkg_conf_t *conf,
39                                       const char *default_dest_name);
40 static int set_and_load_pkg_src_list(opkg_conf_t *conf,
41                                      pkg_src_list_t *nv_pair_list);
42 static int set_and_load_pkg_dest_list(opkg_conf_t *conf,
43                                       nv_pair_list_t *nv_pair_list, char * lists_dir);
44
45 int opkg_init_options_array(const opkg_conf_t *conf, opkg_option_t **options)
46 {
47      opkg_option_t tmp[] = {
48           { "force_defaults", OPKG_OPT_TYPE_BOOL, &conf->force_defaults },
49           { "force_depends", OPKG_OPT_TYPE_BOOL, &conf->force_depends },
50           { "force_overwrite", OPKG_OPT_TYPE_BOOL, &conf->force_overwrite },
51           { "force_downgrade", OPKG_OPT_TYPE_BOOL, &conf->force_downgrade },
52           { "force_reinstall", OPKG_OPT_TYPE_BOOL, &conf->force_reinstall },
53           { "force_space", OPKG_OPT_TYPE_BOOL, &conf->force_space },
54           { "ftp_proxy", OPKG_OPT_TYPE_STRING, &conf->ftp_proxy },
55           { "http_proxy", OPKG_OPT_TYPE_STRING, &conf->http_proxy },
56           { "multiple_providers", OPKG_OPT_TYPE_BOOL, &conf->multiple_providers },
57           { "no_proxy", OPKG_OPT_TYPE_STRING, &conf->no_proxy },
58           { "test", OPKG_OPT_TYPE_INT, &conf->noaction },
59           { "noaction", OPKG_OPT_TYPE_INT, &conf->noaction },
60           { "nodeps", OPKG_OPT_TYPE_BOOL, &conf->nodeps },
61           { "offline_root", OPKG_OPT_TYPE_STRING, &conf->offline_root },
62           { "offline_root_post_script_cmd", OPKG_OPT_TYPE_STRING, &conf->offline_root_post_script_cmd },
63           { "offline_root_pre_script_cmd", OPKG_OPT_TYPE_STRING, &conf->offline_root_pre_script_cmd },
64           { "proxy_passwd", OPKG_OPT_TYPE_STRING, &conf->proxy_passwd },
65           { "proxy_user", OPKG_OPT_TYPE_STRING, &conf->proxy_user },
66           { "query-all", OPKG_OPT_TYPE_BOOL, &conf->query_all },
67           { "verbosity", OPKG_OPT_TYPE_BOOL, &conf->verbosity },
68           { NULL }
69      };
70
71      *options = (opkg_option_t *)malloc(sizeof(tmp));
72      if ( options == NULL ){
73         fprintf(stderr,"%s: Unable to allocate memory\n",__FUNCTION__);
74         return -1;
75      }
76
77      memcpy(*options, tmp, sizeof(tmp));
78      return 0;
79 };
80
81 static void opkg_conf_override_string(char **conf_str, char *arg_str) 
82 {
83      if (arg_str) {
84           if (*conf_str) {
85                free(*conf_str);
86           }
87           *conf_str = strdup(arg_str);
88      }
89 }
90
91 static void opkg_conf_free_string(char **conf_str)
92 {
93      if (*conf_str) {
94           free(*conf_str);
95           *conf_str = NULL;
96      }
97 }
98
99 int opkg_conf_init(opkg_conf_t *conf, const args_t *args)
100 {
101      int err;
102      char *tmp_dir_base;
103      nv_pair_list_t tmp_dest_nv_pair_list;
104      char * lists_dir =NULL;
105      glob_t globbuf;
106      char *etc_opkg_conf_pattern = "/etc/opkg/*.conf";
107      char *pending_dir  =NULL;
108
109      memset(conf, 0, sizeof(opkg_conf_t));
110
111      pkg_src_list_init(&conf->pkg_src_list);
112
113      nv_pair_list_init(&tmp_dest_nv_pair_list);
114      pkg_dest_list_init(&conf->pkg_dest_list);
115
116      nv_pair_list_init(&conf->arch_list);
117
118      conf->restrict_to_default_dest = 0;
119      conf->default_dest = NULL;
120
121
122      if (args->tmp_dir)
123           tmp_dir_base = args->tmp_dir;
124      else 
125           tmp_dir_base = getenv("TMPDIR");
126      sprintf_alloc(&conf->tmp_dir, "%s/%s",
127                    tmp_dir_base ? tmp_dir_base : OPKG_CONF_DEFAULT_TMP_DIR_BASE,
128                    OPKG_CONF_TMP_DIR_SUFFIX);
129      conf->tmp_dir = mkdtemp(conf->tmp_dir);
130      if (conf->tmp_dir == NULL) {
131           fprintf(stderr, "%s: Failed to create temporary directory `%s': %s\n",
132                   __FUNCTION__, conf->tmp_dir, strerror(errno));
133           return errno;
134      }
135
136      conf->force_depends = 0;
137      conf->force_defaults = 0;
138      conf->force_overwrite = 0;
139      conf->force_downgrade = 0;
140      conf->force_reinstall = 0;
141      conf->force_space = 0;
142      conf->force_removal_of_essential_packages = 0;
143      conf->force_removal_of_dependent_packages = 0;
144      conf->nodeps = 0;
145      conf->offline_root = NULL;
146      conf->offline_root_pre_script_cmd = NULL;
147      conf->offline_root_post_script_cmd = NULL;
148      conf->multiple_providers = 0;
149      conf->verbosity = 1;
150      conf->noaction = 0;
151
152      conf->http_proxy = NULL;
153      conf->ftp_proxy = NULL;
154      conf->no_proxy = NULL;
155      conf->proxy_user = NULL;
156      conf->proxy_passwd = NULL;
157
158      pkg_hash_init("pkg-hash", &conf->pkg_hash, OPKG_CONF_DEFAULT_HASH_LEN);
159      hash_table_init("file-hash", &conf->file_hash, OPKG_CONF_DEFAULT_HASH_LEN);
160      hash_table_init("obs-file-hash", &conf->obs_file_hash, OPKG_CONF_DEFAULT_HASH_LEN);
161      lists_dir=(char *)malloc(1);
162      lists_dir[0]='\0';
163      if (args->conf_file) {
164           struct stat stat_buf;
165           err = stat(args->conf_file, &stat_buf);
166           if (err == 0)
167                if (opkg_conf_parse_file(conf, args->conf_file,
168                                     &conf->pkg_src_list, &tmp_dest_nv_pair_list,&lists_dir)<0) {
169                    /* Memory leakage from opkg_conf_parse-file */
170                    return -1;
171                }
172                    
173      }
174
175      /* if (!lists_dir ){*/
176      if (strlen(lists_dir)<=1 ){
177         lists_dir = realloc(lists_dir,strlen(OPKG_CONF_LISTS_DIR)+2);
178         sprintf (lists_dir,"%s",OPKG_CONF_LISTS_DIR);
179      }
180
181      if (args->offline_root) {
182             char *tmp;// = malloc(strlen(lists_dir) + strlen(args->offline_root) + 1);
183             sprintf_alloc(&tmp, "%s/%s",args->offline_root,lists_dir);
184             free(lists_dir);
185             lists_dir = tmp;
186      }
187
188      pending_dir = malloc(strlen(lists_dir)+strlen("/pending")+5);
189      snprintf(pending_dir,strlen(lists_dir)+strlen("/pending") ,"%s%s",lists_dir,"/pending");
190
191      conf->lists_dir = strdup(lists_dir);
192      conf->pending_dir = strdup(pending_dir);
193
194      if (args->offline_root) 
195           sprintf_alloc(&etc_opkg_conf_pattern, "%s/etc/opkg/*.conf", args->offline_root);
196      memset(&globbuf, 0, sizeof(globbuf));
197      err = glob(etc_opkg_conf_pattern, 0, NULL, &globbuf);
198      if (args->offline_root)
199           free (etc_opkg_conf_pattern);
200      if (!err) {
201           int i;
202           for (i = 0; i < globbuf.gl_pathc; i++) {
203                if (globbuf.gl_pathv[i]) 
204                     if ( opkg_conf_parse_file(conf, globbuf.gl_pathv[i], 
205                                          &conf->pkg_src_list, &tmp_dest_nv_pair_list,&lists_dir)<0) {
206                         /* Memory leakage from opkg_conf_parse-file */
207                         return -1;
208                     }
209           }
210      }
211      globfree(&globbuf);
212
213      /* if no architectures were defined, then default all, noarch, and host architecture */
214      if (nv_pair_list_empty(&conf->arch_list)) {
215           nv_pair_list_append(&conf->arch_list, "all", "1");
216           nv_pair_list_append(&conf->arch_list, "noarch", "1");
217           nv_pair_list_append(&conf->arch_list, HOST_CPU_STR, "10");
218      }
219
220      /* Even if there is no conf file, we'll need at least one dest. */
221      if (tmp_dest_nv_pair_list.head == NULL) {
222           nv_pair_list_append(&tmp_dest_nv_pair_list,
223                               OPKG_CONF_DEFAULT_DEST_NAME,
224                               OPKG_CONF_DEFAULT_DEST_ROOT_DIR);
225      }
226
227      /* After parsing the file, set options from command-line, (so that
228         command-line arguments take precedence) */
229      /* XXX: CLEANUP: The interaction between args.c and opkg_conf.c
230         really needs to be cleaned up. There is so much duplication
231         right now it is ridiculous. Maybe opkg_conf_t should just save
232         a pointer to args_t (which could then not be freed), rather
233         than duplicating every field here? */
234      if (args->autoremove) {
235           conf->autoremove = 1;
236      }
237      if (args->force_depends) {
238           conf->force_depends = 1;
239      }
240      if (args->force_defaults) {
241           conf->force_defaults = 1;
242      }
243      if (args->force_overwrite) {
244           conf->force_overwrite = 1;
245      }
246      if (args->force_downgrade) {
247           conf->force_downgrade = 1;
248      }
249      if (args->force_reinstall) {
250           conf->force_reinstall = 1;
251      }
252      if (args->force_removal_of_dependent_packages) {
253           conf->force_removal_of_dependent_packages = 1;
254      }
255      if (args->force_removal_of_essential_packages) {
256           conf->force_removal_of_essential_packages = 1;
257      }
258      if (args->nodeps) {
259           conf->nodeps = 1;
260      }
261      if (args->noaction) {
262           conf->noaction = 1;
263      }
264      if (args->query_all) {
265           conf->query_all = 1;
266      }
267      if (args->multiple_providers) {
268           conf->multiple_providers = 1;
269      }
270      if (args->verbosity != conf->verbosity) {
271           conf->verbosity = args->verbosity;
272      } 
273
274      opkg_conf_override_string(&conf->offline_root, 
275                                args->offline_root);
276      opkg_conf_override_string(&conf->offline_root_pre_script_cmd, 
277                                args->offline_root_pre_script_cmd);
278      opkg_conf_override_string(&conf->offline_root_post_script_cmd, 
279                                args->offline_root_post_script_cmd);
280
281 /* Pigi: added a flag to disable the checking of structures if the command does not need to 
282          read anything from there.
283 */
284      if ( !(args->nocheckfordirorfile)){
285         /* need to run load the source list before dest list -Jamey */
286         if ( !(args->noreadfeedsfile))
287            set_and_load_pkg_src_list(conf, &conf->pkg_src_list);
288    
289         /* Now that we have resolved conf->offline_root, we can commit to
290            the directory names for the dests and load in all the package
291            lists. */
292         set_and_load_pkg_dest_list(conf, &tmp_dest_nv_pair_list,lists_dir);
293    
294         if (args->dest) {
295              err = opkg_conf_set_default_dest(conf, args->dest);
296              if (err) {
297                   return err;
298              }
299         }
300      }
301      nv_pair_list_deinit(&tmp_dest_nv_pair_list);
302      free(lists_dir);
303      free(pending_dir);
304
305      return 0;
306 }
307
308 void opkg_conf_deinit(opkg_conf_t *conf)
309 {
310 #ifdef OPKG_DEBUG_NO_TMP_CLEANUP
311 #error
312      fprintf(stderr, "%s: Not cleaning up %s since opkg compiled "
313              "with OPKG_DEBUG_NO_TMP_CLEANUP\n",
314              __FUNCTION__, conf->tmp_dir);
315 #else
316      int err;
317
318      err = rmdir(conf->tmp_dir);
319      if (err) {
320           if (errno == ENOTEMPTY) {
321                char *cmd;
322                sprintf_alloc(&cmd, "rm -fr %s\n", conf->tmp_dir);
323                err = xsystem(cmd);
324                free(cmd);
325           }
326           if (err)
327                fprintf(stderr, "WARNING: Unable to remove temporary directory: %s: %s\n", conf->tmp_dir, strerror(errno));
328      }
329 #endif /* OPKG_DEBUG_NO_TMP_CLEANUP */
330
331      free(conf->tmp_dir); /*XXX*/
332      free(conf->lists_dir);
333      free(conf->pending_dir);
334
335      pkg_src_list_deinit(&conf->pkg_src_list);
336      pkg_dest_list_deinit(&conf->pkg_dest_list);
337      nv_pair_list_deinit(&conf->arch_list);
338      if (&conf->pkg_hash)
339                     pkg_hash_deinit(&conf->pkg_hash);
340      if (&conf->file_hash)
341                     hash_table_deinit(&conf->file_hash);
342      if (&conf->obs_file_hash)
343                     hash_table_deinit(&conf->obs_file_hash);
344
345      opkg_conf_free_string(&conf->offline_root);
346      opkg_conf_free_string(&conf->offline_root_pre_script_cmd);
347      opkg_conf_free_string(&conf->offline_root_post_script_cmd);
348
349      if (conf->verbosity > 1) { 
350           int i;
351           hash_table_t *hashes[] = {
352                &conf->pkg_hash,
353                &conf->file_hash,
354                &conf->obs_file_hash };
355           for (i = 0; i < 3; i++) {
356                hash_table_t *hash = hashes[i];
357                int c = 0;
358                int n_conflicts = 0;
359                int j;
360                for (j = 0; j < hash->n_entries; j++) {
361                     int len = 0;
362                     hash_entry_t *e = &hash->entries[j];
363                     if (e->next)
364                          n_conflicts++;
365                     while (e && e->key) {
366                          len++;
367                          e = e->next;
368                     }
369                     if (len > c) 
370                          c = len;
371                }
372                opkg_message(conf, OPKG_DEBUG, "hash_table[%s] n_buckets=%d n_elements=%d max_conflicts=%d n_conflicts=%d\n", 
373                             hash->name, hash->n_entries, hash->n_elements, c, n_conflicts);
374                hash_table_deinit(hash);
375           }
376      }
377 }
378
379 static int opkg_conf_set_default_dest(opkg_conf_t *conf,
380                                       const char *default_dest_name)
381 {
382      pkg_dest_list_elt_t *iter;
383      pkg_dest_t *dest;
384
385      for (iter = conf->pkg_dest_list.head; iter; iter = iter->next) {
386           dest = iter->data;
387           if (strcmp(dest->name, default_dest_name) == 0) {
388                conf->default_dest = dest;
389                conf->restrict_to_default_dest = 1;
390                return 0;
391           }
392      }
393
394      fprintf(stderr, "ERROR: Unknown dest name: `%s'\n", default_dest_name);
395
396      return 1;
397 }
398
399 static int set_and_load_pkg_src_list(opkg_conf_t *conf, pkg_src_list_t *pkg_src_list)
400 {
401      pkg_src_list_elt_t *iter;
402      pkg_src_t *src;
403      char *list_file;
404
405      for (iter = pkg_src_list->head; iter; iter = iter->next) {
406           src = iter->data;
407           if (src == NULL) {
408                continue;
409           }
410
411           sprintf_alloc(&list_file, "%s/%s", 
412                           conf->restrict_to_default_dest ? conf->default_dest->lists_dir : conf->lists_dir, 
413                           src->name);
414
415           if (file_exists(list_file)) {
416                pkg_hash_add_from_file(conf, list_file, src, NULL, 0);
417           }
418           free(list_file);
419      }
420
421      return 0;
422 }
423
424 static int set_and_load_pkg_dest_list(opkg_conf_t *conf, nv_pair_list_t *nv_pair_list, char *lists_dir )
425 {
426      nv_pair_list_elt_t *iter;
427      nv_pair_t *nv_pair;
428      pkg_dest_t *dest;
429      char *root_dir;
430
431      for (iter = nv_pair_list->head; iter; iter = iter->next) {
432           nv_pair = iter->data;
433
434           if (conf->offline_root) {
435                sprintf_alloc(&root_dir, "%s%s", conf->offline_root, nv_pair->value);
436           } else {
437                root_dir = strdup(nv_pair->value);
438           }
439           dest = pkg_dest_list_append(&conf->pkg_dest_list, nv_pair->name, root_dir, lists_dir);
440           free(root_dir);
441           if (dest == NULL) {
442                continue;
443           }
444           if (conf->default_dest == NULL) {
445                conf->default_dest = dest;
446           }
447           if (file_exists(dest->status_file_name)) {
448                pkg_hash_add_from_file(conf, dest->status_file_name,
449                                       NULL, dest, 1);
450           }
451      }
452
453      return 0;
454 }
455
456 static int opkg_conf_parse_file(opkg_conf_t *conf, const char *filename,
457                                 pkg_src_list_t *pkg_src_list,
458                                 nv_pair_list_t *tmp_dest_nv_pair_list,
459                                 char **lists_dir)
460 {
461      int err;
462      opkg_option_t * options;
463      FILE *file = fopen(filename, "r");
464      regex_t valid_line_re, comment_re;
465 #define regmatch_size 12
466      regmatch_t regmatch[regmatch_size];
467
468      if (opkg_init_options_array(conf, &options)<0)
469         return ENOMEM;
470
471      if (file == NULL) {
472           fprintf(stderr, "%s: failed to open %s: %s\n",
473                   __FUNCTION__, filename, strerror(errno));
474           free(options);
475           return errno;
476      }
477      opkg_message(conf, OPKG_NOTICE, "loading conf file %s\n", filename);
478
479      err = xregcomp(&comment_re, 
480                     "^[[:space:]]*(#.*|[[:space:]]*)$",
481                     REG_EXTENDED);
482      if (err) {
483           free(options);
484           return err;
485      }
486      err = xregcomp(&valid_line_re, "^[[:space:]]*(\"([^\"]*)\"|([^[:space:]]*))[[:space:]]*(\"([^\"]*)\"|([^[:space:]]*))[[:space:]]*(\"([^\"]*)\"|([^[:space:]]*))([[:space:]]+([^[:space:]]+))?[[:space:]]*$", REG_EXTENDED);
487      if (err) {
488           free(options);
489           return err;
490      }
491
492      while(1) {
493           int line_num = 0;
494           char *line;
495           char *type, *name, *value, *extra;
496
497           line = file_read_line_alloc(file);
498           line_num++;
499           if (line == NULL) {
500                break;
501           }
502
503           str_chomp(line);
504
505           if (regexec(&comment_re, line, 0, 0, 0) == 0) {
506                goto NEXT_LINE;
507           }
508
509           if (regexec(&valid_line_re, line, regmatch_size, regmatch, 0) == REG_NOMATCH) {
510                str_chomp(line);
511                fprintf(stderr, "%s:%d: Ignoring invalid line: `%s'\n",
512                        filename, line_num, line);
513                goto NEXT_LINE;
514           }
515
516           /* This has to be so ugly to deal with optional quotation marks */
517           if (regmatch[2].rm_so > 0) {
518                type = strndup(line + regmatch[2].rm_so,
519                               regmatch[2].rm_eo - regmatch[2].rm_so);
520           } else {
521                type = strndup(line + regmatch[3].rm_so,
522                               regmatch[3].rm_eo - regmatch[3].rm_so);
523           }
524           if (regmatch[5].rm_so > 0) {
525                name = strndup(line + regmatch[5].rm_so,
526                               regmatch[5].rm_eo - regmatch[5].rm_so);
527           } else {
528                name = strndup(line + regmatch[6].rm_so,
529                               regmatch[6].rm_eo - regmatch[6].rm_so);
530           }
531           if (regmatch[8].rm_so > 0) {
532                value = strndup(line + regmatch[8].rm_so,
533                                regmatch[8].rm_eo - regmatch[8].rm_so);
534           } else {
535                value = strndup(line + regmatch[9].rm_so,
536                                regmatch[9].rm_eo - regmatch[9].rm_so);
537           }
538           extra = NULL;
539           if (regmatch[11].rm_so > 0) {
540                extra = strndup (line + regmatch[11].rm_so,
541                                 regmatch[11].rm_eo - regmatch[11].rm_so);
542           }
543
544           /* We use the tmp_dest_nv_pair_list below instead of
545              conf->pkg_dest_list because we might encounter an
546              offline_root option later and that would invalidate the
547              directories we would have computed in
548              pkg_dest_list_init. (We do a similar thing with
549              tmp_src_nv_pair_list for sake of symmetry.) */
550           if (strcmp(type, "option") == 0) {
551                opkg_conf_set_option(options, name, value);
552           } else if (strcmp(type, "src") == 0) {
553                if (!nv_pair_list_find((nv_pair_list_t*) pkg_src_list, name)) {
554                     pkg_src_list_append (pkg_src_list, name, value, extra, 0);
555                } else {
556                     opkg_message(conf, OPKG_ERROR, "ERROR: duplicate src declaration.  Skipping:\n\t src %s %s\n",
557                                  name, value);
558                }
559           } else if (strcmp(type, "src/gz") == 0) {
560                if (!nv_pair_list_find((nv_pair_list_t*) pkg_src_list, name)) {
561                     pkg_src_list_append (pkg_src_list, name, value, extra, 1);
562                } else {
563                     opkg_message(conf, OPKG_ERROR, "ERROR: duplicate src declaration.  Skipping:\n\t src %s %s\n",
564                                  name, value);
565                }
566           } else if (strcmp(type, "dest") == 0) {
567                nv_pair_list_append(tmp_dest_nv_pair_list, name, value);
568           } else if (strcmp(type, "lists_dir") == 0) {
569                *lists_dir = realloc(*lists_dir,strlen(value)+1);
570                if (*lists_dir == NULL) {
571                     opkg_message(conf, OPKG_ERROR, "ERROR: Not enough memory\n");
572                     free(options);
573                     return EINVAL;
574                }
575                sprintf (*lists_dir,"%s",value);
576           } else if (strcmp(type, "arch") == 0) {
577                opkg_message(conf, OPKG_INFO, "supported arch %s priority (%s)\n", name, value);
578                if (!value) {
579                     opkg_message(conf, OPKG_NOTICE, "defaulting architecture %s priority to 10\n", name);
580                     value = strdup("10");
581                }
582                nv_pair_list_append(&conf->arch_list, name, value);
583           } else {
584                fprintf(stderr, "WARNING: Ignoring unknown configuration "
585                        "parameter: %s %s %s\n", type, name, value);
586                free(options);
587                return EINVAL;
588           }
589
590           free(type);
591           free(name);
592           free(value);
593           if (extra)
594                free (extra);
595
596      NEXT_LINE:
597           free(line);
598      }
599
600      free(options);
601      regfree(&comment_re);
602      regfree(&valid_line_re);
603      fclose(file);
604
605      return 0;
606 }
607
608 static int opkg_conf_set_option(const opkg_option_t *options,
609                                 const char *name, const char *value)
610 {
611      int i = 0;
612      while (options[i].name) {
613           if (strcmp(options[i].name, name) == 0) {
614                switch (options[i].type) {
615                case OPKG_OPT_TYPE_BOOL:
616                     *((int *)options[i].value) = 1;
617                     return 0;
618                case OPKG_OPT_TYPE_INT:
619                     if (value) {
620                          *((int *)options[i].value) = atoi(value);
621                          return 0;
622                     } else {
623                          printf("%s: Option %s need an argument\n",
624                                 __FUNCTION__, name);
625                          return EINVAL;
626                     }               
627                case OPKG_OPT_TYPE_STRING:
628                     if (value) {
629                          *((char **)options[i].value) = strdup(value);
630                          return 0;
631                     } else {
632                          printf("%s: Option %s need an argument\n",
633                                 __FUNCTION__, name);
634                          return EINVAL;
635                     }
636                }
637           }
638           i++;
639      }
640     
641      fprintf(stderr, "%s: Unrecognized option: %s=%s\n",
642              __FUNCTION__, name, value);
643      return EINVAL;
644 }
645
646 int opkg_conf_write_status_files(opkg_conf_t *conf)
647 {
648      pkg_dest_list_elt_t *iter;
649      pkg_dest_t *dest;
650      pkg_vec_t *all;
651      pkg_t *pkg;
652      register int i;
653      int err;
654
655      if (conf->noaction)
656           return 0;
657      for (iter = conf->pkg_dest_list.head; iter; iter = iter->next) {
658           dest = iter->data;
659           dest->status_file = fopen(dest->status_file_tmp_name, "w");
660           if (dest->status_file == NULL) {
661                fprintf(stderr, "%s: Can't open status file: %s for writing: %s\n",
662                        __FUNCTION__, dest->status_file_name, strerror(errno));
663           }
664      }
665
666      all = pkg_vec_alloc();
667      pkg_hash_fetch_available(&conf->pkg_hash, all);
668
669      for(i = 0; i < all->len; i++) {
670           pkg = all->pkgs[i];
671           /* We don't need most uninstalled packages in the status file */
672           if (pkg->state_status == SS_NOT_INSTALLED
673               && (pkg->state_want == SW_UNKNOWN
674                   || pkg->state_want == SW_DEINSTALL
675                   || pkg->state_want == SW_PURGE)) {
676                continue;
677           }
678           if (!pkg) {
679             fprintf(stderr, "Null package\n");
680           }
681           if (pkg->dest == NULL) {
682                fprintf(stderr, "%s: ERROR: Can't write status for "
683                        "package %s since it has a NULL dest\n",
684                        __FUNCTION__, pkg->name);
685                continue;
686           }
687           if (pkg->dest->status_file) {
688                pkg_print_status(pkg, pkg->dest->status_file);
689           }
690      }
691
692      pkg_vec_free(all);
693
694      for (iter = conf->pkg_dest_list.head; iter; iter = iter->next) {
695           dest = iter->data;
696           if (dest->status_file) {
697                err = ferror(dest->status_file);
698                fclose(dest->status_file);
699                dest->status_file = NULL;
700                if (!err) {
701                     file_move(dest->status_file_tmp_name, dest->status_file_name);
702                } else {
703                     fprintf(stderr, "%s: ERROR: An error has occurred writing %s, "
704                             "retaining old %s\n", __FUNCTION__, 
705                             dest->status_file_tmp_name, dest->status_file_name);
706                }
707           }
708      }
709
710      return 0;
711 }
712
713
714 char *root_filename_alloc(opkg_conf_t *conf, char *filename)
715 {
716      char *root_filename;
717      sprintf_alloc(&root_filename, "%s%s", (conf->offline_root ? conf->offline_root : ""), filename);
718      return root_filename;
719 }