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