opkg: fix typos
[oweals/opkg-lede.git] / libopkg / opkg.c
1 /* opkg.c - the opkg  package management system
2
3    Thomas Wood <thomas@openedhand.com>
4
5    Copyright (C) 2008 OpenMoko Inc
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 <config.h>
19 #include <fnmatch.h>
20
21 #include "opkg.h"
22 #include "opkg_conf.h"
23 #include "args.h"
24
25 #include "opkg_install.h"
26 #include "opkg_configure.h"
27 #include "opkg_download.h"
28 #include "opkg_remove.h"
29 #include "opkg_upgrade.h"
30
31 #include "sprintf_alloc.h"
32 #include "file_util.h"
33
34 #include <libbb/libbb.h>
35
36 struct _opkg_t
37 {
38   args_t *args;
39   opkg_conf_t *conf;
40   opkg_option_t *options;
41 };
42
43 #define opkg_assert(expr) if (!(expr)) { \
44     printf ("opkg: file %s: line %d (%s): Assertation '%s' failed",\
45             __FILE__, __LINE__, __PRETTY_FUNCTION__, # expr); abort (); }
46
47 #define progress(d, p) d.percentage = p; if (progress_callback) progress_callback (opkg, &d, user_data);
48 #define SSTRCMP(x,y) (x && y) ? strcmp (x, y) : 0
49
50 /** Private Functions ***/
51
52 static opkg_package_t*
53 old_pkg_to_new (pkg_t *old)
54 {
55   opkg_package_t *new;
56
57   new = opkg_package_new ();
58
59 #define sstrdup(x) (x) ? strdup (x) : NULL;
60
61   new->name = sstrdup (old->name);
62   new->version = pkg_version_str_alloc (old);
63   new->architecture = sstrdup (old->architecture);
64   if (old->src)
65     new->repository = sstrdup (old->src->name);
66   new->description = sstrdup (old->description);
67   new->tags = sstrdup (old->tags);
68   new->url = sstrdup (old->url);
69
70   new->size = (old->size) ? atoi (old->size) : 0;
71   new->installed = (old->state_status == SS_INSTALLED);
72
73   return new;
74 }
75
76 static int
77 opkg_configure_packages(opkg_conf_t *conf, char *pkg_name)
78 {
79   pkg_vec_t *all;
80   int i;
81   pkg_t *pkg;
82   int r, err = 0;
83
84   all = pkg_vec_alloc ();
85   pkg_hash_fetch_available (&conf->pkg_hash, all);
86
87   for (i = 0; i < all->len; i++)
88   {
89     pkg = all->pkgs[i];
90
91     if (pkg_name && fnmatch (pkg_name, pkg->name, 0))
92       continue;
93
94     if (pkg->state_status == SS_UNPACKED)
95     {
96       r = opkg_configure (conf, pkg);
97       if (r == 0)
98       {
99         pkg->state_status = SS_INSTALLED;
100         pkg->parent->state_status = SS_INSTALLED;
101         pkg->state_flag &= ~SF_PREFER;
102       }
103       else
104       {
105         if (!err)
106           err = r;
107       }
108     }
109   }
110
111   pkg_vec_free (all);
112   return err;
113 }
114
115 struct _curl_cb_data
116 {
117   opkg_progress_callback_t cb;
118   opkg_progress_data_t *progress_data;
119   opkg_t *opkg;
120   void *user_data;
121   int start_range;
122   int finish_range;
123 };
124
125 int
126 curl_progress_cb (struct _curl_cb_data *cb_data,
127                   double t,   /* dltotal */
128                   double d,   /* dlnow */
129                   double ultotal,
130                   double ulnow)
131 {
132   int p = (t) ? d * 100 / t : 0;
133   static int prev = -1;
134   int progress = 0;
135
136   /* prevent the same value being sent twice (can occur due to rounding) */
137   if (p == prev)
138     return 0;
139   prev = p;
140
141   if (t < 1)
142     return 0;
143
144   progress = cb_data->start_range + (d / t * ((cb_data->finish_range - cb_data->start_range)));
145   cb_data->progress_data->percentage = progress;
146
147   (cb_data->cb)(cb_data->opkg,
148                 cb_data->progress_data,
149                 cb_data->user_data);
150
151   return 0;
152 }
153
154
155 /*** Public API ***/
156
157 opkg_package_t *
158 opkg_package_new ()
159 {
160
161   opkg_package_t *p;
162
163   p = malloc (sizeof (opkg_package_t));
164   memset (p, 0, sizeof (opkg_package_t));
165
166   return p;
167 }
168
169 void
170 opkg_package_free (opkg_package_t *p)
171 {
172   free (p->name);
173   free (p->version);
174   free (p->architecture);
175   free (p->description);
176   free (p->tags);
177   free (p->url);
178   free (p->repository);
179
180   free (p);
181 }
182
183 opkg_t *
184 opkg_new ()
185 {
186   opkg_t *opkg;
187   opkg = malloc (sizeof (opkg_t));
188
189   opkg->args = malloc (sizeof (args_t));
190   args_init (opkg->args);
191
192   opkg->conf = malloc (sizeof (opkg_conf_t));
193   opkg_conf_init (opkg->conf, opkg->args);
194
195   opkg_init_options_array (opkg->conf, &opkg->options);
196   return opkg;
197 }
198
199 void
200 opkg_free (opkg_t *opkg)
201 {
202   opkg_assert (opkg != NULL);
203
204   opkg_conf_deinit (opkg->conf);
205   args_deinit (opkg->args);
206   free (opkg->options);
207   free (opkg->args);
208   free (opkg->conf);
209   free (opkg);
210 }
211
212 int
213 opkg_re_read_config_files (opkg_t *opkg)
214 {
215   args_t *a;
216   opkg_conf_t *c;
217
218   opkg_assert (opkg != NULL);
219
220   a = opkg->args;
221   c = opkg->conf;
222
223   /* Unfortunatly, the easiest way to re-read the config files right now is to
224    * throw away opkg->conf and start again */
225
226   /* copy the settings we need to keep */
227   a->autoremove = c->autoremove;
228   a->force_depends = c->force_depends;
229   a->force_defaults = c->force_defaults;
230   a->force_overwrite = c->force_overwrite;
231   a->force_downgrade = c->force_downgrade;
232   a->force_reinstall = c->force_reinstall;
233   a->force_removal_of_dependent_packages = c->force_removal_of_dependent_packages;
234   a->force_removal_of_essential_packages = c->force_removal_of_essential_packages;
235   a->nodeps = c->nodeps;
236   a->noaction = c->noaction;
237   a->query_all = c->query_all;
238   a->verbosity = c->verbosity;
239
240   if (c->offline_root)
241   {
242     if (a->offline_root) free (a->offline_root);
243     a->offline_root = strdup (c->offline_root);
244   }
245
246   if (c->offline_root_pre_script_cmd)
247   {
248     if (a->offline_root_pre_script_cmd) free (a->offline_root_pre_script_cmd);
249     a->offline_root_pre_script_cmd = strdup (c->offline_root_pre_script_cmd);
250   }
251
252   if (c->offline_root_post_script_cmd)
253   {
254     if (a->offline_root_post_script_cmd) free (a->offline_root_post_script_cmd);
255     a->offline_root_post_script_cmd = strdup (c->offline_root_post_script_cmd);
256   }
257
258   /* throw away old opkg_conf and start again */
259   opkg_conf_deinit (opkg->conf);
260   opkg_conf_init (opkg->conf, opkg->args);
261
262   free (opkg->options);
263   opkg_init_options_array (opkg->conf, &opkg->options);
264
265   return 0;
266 }
267
268 void
269 opkg_get_option (opkg_t *opkg, char *option, void **value)
270 {
271   int i = 0;
272   opkg_option_t *options;
273
274   opkg_assert (opkg != NULL);
275   opkg_assert (option != NULL);
276   opkg_assert (value != NULL);
277
278   options = opkg->options;
279
280   /* look up the option
281    * TODO: this would be much better as a hash table
282    */
283   while (options[i].name)
284   {
285     if (strcmp (options[i].name, option) != 0)
286     {
287       i++;
288       continue;
289     }
290   }
291
292   /* get the option */
293   switch (options[i].type)
294   {
295   case OPKG_OPT_TYPE_BOOL:
296     *((int *) value) = *((int *) options[i].value);
297     return;
298
299   case OPKG_OPT_TYPE_INT:
300     *((int *) value) = *((int *) options[i].value);
301     return;
302
303   case OPKG_OPT_TYPE_STRING:
304     *((char **)value) = strdup (options[i].value);
305     return;
306   }
307
308 }
309
310 void
311 opkg_set_option (opkg_t *opkg, char *option, void *value)
312 {
313   int i = 0, found = 0;
314   opkg_option_t *options;
315
316   opkg_assert (opkg != NULL);
317   opkg_assert (option != NULL);
318   opkg_assert (value != NULL);
319
320   options = opkg->options;
321
322   /* look up the option
323    * TODO: this would be much better as a hash table
324    */
325   while (options[i].name)
326   {
327     if (strcmp (options[i].name, option) == 0)
328     {
329       found = 1;
330       break;
331     }
332     i++;
333   }
334
335   if (!found)
336   {
337     /* XXX: Warning: Option not found */
338     return;
339   }
340
341   /* set the option */
342   switch (options[i].type)
343   {
344   case OPKG_OPT_TYPE_BOOL:
345     if (*((int *) value) == 0)
346       *((int *)options[i].value) = 0;
347     else
348       *((int *)options[i].value) = 1;
349     return;
350
351   case OPKG_OPT_TYPE_INT:
352     *((int *) options[i].value) = *((int *) value);
353     return;
354
355   case OPKG_OPT_TYPE_STRING:
356     *((char **)options[i].value) = strdup (value);
357     return;
358   }
359
360 }
361
362 int
363 opkg_install_package (opkg_t *opkg, const char *package_name, opkg_progress_callback_t progress_callback, void *user_data)
364 {
365   int err;
366   char *stripped_filename;
367   opkg_progress_data_t pdata;
368   pkg_t *old, *new;
369   pkg_vec_t *deps, *all;
370   int i, ndepends;
371   char **unresolved = NULL;
372
373   opkg_assert (opkg != NULL);
374   opkg_assert (package_name != NULL);
375
376   /* ... */
377   pkg_info_preinstall_check (opkg->conf);
378
379
380   /* check to ensure package is not already installed */
381   old = pkg_hash_fetch_installed_by_name(&opkg->conf->pkg_hash, package_name);
382   if (old)
383   {
384     /* XXX: Error: Package is already installed. */
385     return OPKG_PACKAGE_ALREADY_INSTALLED;
386   }
387
388   new = pkg_hash_fetch_best_installation_candidate_by_name(opkg->conf, package_name);
389   if (!new)
390   {
391     /* XXX: Error: Could not find package to install */
392     return OPKG_PACKAGE_NOT_FOUND;
393   }
394
395   new->state_flag |= SF_USER;
396
397   pdata.action = OPKG_INSTALL;
398   pdata.package = old_pkg_to_new (new);
399
400   progress (pdata, 0);
401
402   /* find dependancies and download them */
403   deps = pkg_vec_alloc ();
404   /* this function does not return the original package, so we insert it later */
405   ndepends = pkg_hash_fetch_unsatisfied_dependencies (opkg->conf, new, deps, &unresolved);
406   if (unresolved)
407   {
408     /* XXX: Error: Could not satisfy dependencies */
409     pkg_vec_free (deps);
410     return OPKG_DEPENDANCIES_FAILED;
411   }
412
413   /* insert the package we are installing so that we download it */
414   pkg_vec_insert (deps, new);
415
416   /* download package and dependancies */
417   for (i = 0; i < deps->len; i++)
418   {
419     pkg_t *pkg;
420     struct _curl_cb_data cb_data;
421     char *url;
422
423     pkg = deps->pkgs[i];
424     if (pkg->local_filename)
425       continue;
426
427     opkg_package_free (pdata.package);
428     pdata.package = old_pkg_to_new (pkg);
429     pdata.action = OPKG_DOWNLOAD;
430
431     if (pkg->src == NULL)
432     {
433       /* XXX: Error: Package not available from any configured src */
434       return OPKG_PACKAGE_NOT_AVAILABLE;
435     }
436
437     sprintf_alloc(&url, "%s/%s", pkg->src->value, pkg->filename);
438
439     /* Get the filename part, without any directory */
440     stripped_filename = strrchr(pkg->filename, '/');
441     if ( ! stripped_filename )
442         stripped_filename = pkg->filename;
443
444     sprintf_alloc(&pkg->local_filename, "%s/%s", opkg->conf->tmp_dir, stripped_filename);
445
446     cb_data.cb = progress_callback;
447     cb_data.progress_data = &pdata;
448     cb_data.opkg = opkg;
449     cb_data.user_data = user_data;
450     /* 75% of "install" progress is for downloading */
451     cb_data.start_range = 75 * i / deps->len;
452     cb_data.finish_range = 75 * (i + 1) / deps->len;
453
454     err = opkg_download(opkg->conf, url, pkg->local_filename,
455               (curl_progress_func) curl_progress_cb, &cb_data);
456     free(url);
457
458     if (err)
459     {
460       pkg_vec_free (deps);
461       opkg_package_free (pdata.package);
462       return OPKG_DOWNLOAD_FAILED;
463     }
464
465   }
466   pkg_vec_free (deps);
467
468   /* clear depenacy checked marks, left by pkg_hash_fetch_unsatisfied_dependencies */
469   all = pkg_vec_alloc ();
470   pkg_hash_fetch_available (&opkg->conf->pkg_hash, all);
471   for (i = 0; i < all->len; i++)
472   {
473     all->pkgs[i]->parent->dependencies_checked = 0;
474   }
475   pkg_vec_free (all);
476
477
478   /* 75% of "install" progress is for downloading */
479   opkg_package_free (pdata.package);
480   pdata.package = old_pkg_to_new (new);
481   pdata.action = OPKG_INSTALL;
482   progress (pdata, 75);
483
484   /* unpack the package */
485   err = opkg_install_pkg(opkg->conf, new, 0);
486
487   if (err)
488   {
489     opkg_package_free (pdata.package);
490     return OPKG_UNKNOWN_ERROR;
491   }
492
493   progress (pdata, 75);
494
495   /* run configure scripts, etc. */
496   err = opkg_configure_packages (opkg->conf, NULL);
497   if (err)
498   {
499     opkg_package_free (pdata.package);
500     return OPKG_UNKNOWN_ERROR;
501   }
502
503   /* write out status files and file lists */
504   opkg_conf_write_status_files (opkg->conf);
505   pkg_write_changed_filelists (opkg->conf);
506
507   progress (pdata, 100);
508   opkg_package_free (pdata.package);
509   return 0;
510 }
511
512 int
513 opkg_remove_package (opkg_t *opkg, const char *package_name, opkg_progress_callback_t progress_callback, void *user_data)
514 {
515   pkg_t *pkg = NULL;
516   pkg_t *pkg_to_remove;
517   opkg_progress_data_t pdata;
518
519   opkg_assert (opkg != NULL);
520   opkg_assert (package_name != NULL);
521
522
523
524   pkg_info_preinstall_check (opkg->conf);
525
526
527   pkg = pkg_hash_fetch_installed_by_name (&opkg->conf->pkg_hash, package_name);
528
529   if (pkg == NULL)
530   {
531     /* XXX: Error: Package not installed. */
532     return OPKG_PACKAGE_NOT_INSTALLED;
533   }
534
535   pdata.action = OPKG_REMOVE;
536   pdata.package = old_pkg_to_new (pkg);
537   progress (pdata, 0);
538
539
540   if (pkg->state_status == SS_NOT_INSTALLED)
541   {
542     /* XXX:  Error: Package seems to be not installed (STATUS = NOT_INSTALLED). */
543     return OPKG_PACKAGE_NOT_INSTALLED;
544   }
545   progress (pdata, 25);
546
547   if (opkg->conf->restrict_to_default_dest)
548   {
549     pkg_to_remove = pkg_hash_fetch_installed_by_name_dest (&opkg->conf->pkg_hash,
550                                                            pkg->name,
551                                                            opkg->conf->default_dest);
552   }
553   else
554   {
555     pkg_to_remove = pkg_hash_fetch_installed_by_name (&opkg->conf->pkg_hash, pkg->name );
556   }
557
558
559   progress (pdata, 75);
560
561   opkg_remove_pkg (opkg->conf, pkg_to_remove, 0);
562
563   /* write out status files and file lists */
564   opkg_conf_write_status_files (opkg->conf);
565   pkg_write_changed_filelists (opkg->conf);
566
567
568   progress (pdata, 100);
569   opkg_package_free (pdata.package);
570   return 0;
571 }
572
573 int
574 opkg_upgrade_package (opkg_t *opkg, const char *package_name, opkg_progress_callback_t progress_callback, void *user_data)
575 {
576   int err;
577   pkg_t *pkg;
578   opkg_progress_data_t pdata;
579
580
581
582   opkg_assert (opkg != NULL);
583   opkg_assert (package_name != NULL);
584
585   pkg_info_preinstall_check (opkg->conf);
586
587   if (opkg->conf->restrict_to_default_dest)
588   {
589     pkg = pkg_hash_fetch_installed_by_name_dest (&opkg->conf->pkg_hash,
590                                                  package_name,
591                                                  opkg->conf->default_dest);
592     if (pkg == NULL)
593     {
594       /* XXX: Error: Package not installed in default_dest */
595       return OPKG_PACKAGE_NOT_INSTALLED;
596     }
597   }
598   else
599   {
600     pkg = pkg_hash_fetch_installed_by_name (&opkg->conf->pkg_hash,
601                                             package_name);
602   }
603
604   if (!pkg)
605   {
606     /* XXX: Error: Package not installed */
607     return OPKG_PACKAGE_NOT_INSTALLED;
608   }
609
610   pdata.action = OPKG_INSTALL;
611   pdata.package = old_pkg_to_new (pkg);
612   progress (pdata, 0);
613
614   err = opkg_upgrade_pkg (opkg->conf, pkg);
615   if (err)
616     return OPKG_UNKNOWN_ERROR;
617   progress (pdata, 75);
618
619   err = opkg_configure_packages (opkg->conf, NULL);
620   if (err)
621     return OPKG_UNKNOWN_ERROR;
622   progress (pdata, 100);
623   opkg_package_free (pdata.package);
624   return 0;
625 }
626
627 int
628 opkg_upgrade_all (opkg_t *opkg, opkg_progress_callback_t progress_callback, void *user_data)
629 {
630   pkg_vec_t *installed;
631   int err = 0;
632   int i;
633   pkg_t *pkg;
634   opkg_progress_data_t pdata;
635
636   pdata.action = OPKG_INSTALL;
637   pdata.package = NULL;
638
639   opkg_assert (opkg != NULL);
640   progress (pdata, 0);
641
642   installed = pkg_vec_alloc ();
643   pkg_info_preinstall_check (opkg->conf);
644
645   pkg_hash_fetch_all_installed (&opkg->conf->pkg_hash, installed);
646   for (i = 0; i < installed->len; i++)
647   {
648     pkg = installed->pkgs[i];
649
650     pdata.package = old_pkg_to_new (pkg);
651     progress (pdata, 99 * i / installed->len);
652     opkg_package_free (pdata.package);
653
654     err += opkg_upgrade_pkg (opkg->conf, pkg);
655   }
656   pkg_vec_free (installed);
657
658   if (err)
659     return 1;
660
661   err = opkg_configure_packages (opkg->conf, NULL);
662   if (err)
663     return 1;
664
665   pdata.package = NULL;
666   progress (pdata, 100);
667   return 0;
668 }
669
670 int
671 opkg_update_package_lists (opkg_t *opkg, opkg_progress_callback_t progress_callback, void *user_data)
672 {
673   char *tmp;
674   int err, result = 0;
675   char *lists_dir;
676   pkg_src_list_elt_t *iter;
677   pkg_src_t *src;
678   int sources_list_count, sources_done;
679   opkg_progress_data_t pdata;
680   char *tmp_file_name = NULL;
681
682   opkg_assert (opkg != NULL);
683
684   pdata.action = OPKG_DOWNLOAD;
685   pdata.package = NULL;
686   progress (pdata, 0);
687
688   sprintf_alloc (&lists_dir, "%s",
689                  (opkg->conf->restrict_to_default_dest)
690                  ? opkg->conf->default_dest->lists_dir
691                  : opkg->conf->lists_dir);
692
693   if (!file_is_dir (lists_dir))
694   {
695     if (file_exists (lists_dir))
696     {
697       /* XXX: Error: file exists but is not a directory */
698       free (lists_dir);
699       return 1;
700     }
701
702     err = file_mkdir_hier (lists_dir, 0755);
703     if (err)
704     {
705       /* XXX: Error: failed to create directory */
706       free (lists_dir);
707       return 1;
708     }
709   }
710
711   tmp = strdup ("/tmp/opkg.XXXXXX");
712
713   if (mkdtemp (tmp) == NULL)
714   {
715     /* XXX: Error: could not create temporary file name */
716     free (lists_dir);
717     free (tmp);
718     return 1;
719   }
720
721   /* cout the number of sources so we can give some progress updates */
722   sources_list_count = 0;
723   sources_done = 0;
724   iter = opkg->conf->pkg_src_list.head;
725   while (iter)
726   {
727     sources_list_count++;
728     iter = iter->next;
729   }
730
731   for (iter = opkg->conf->pkg_src_list.head; iter; iter = iter->next)
732   {
733     char *url, *list_file_name;
734
735     src = iter->data;
736
737     if (src->extra_data)  /* debian style? */
738       sprintf_alloc (&url, "%s/%s/%s", src->value, src->extra_data,
739                      src->gzip ? "Packages.gz" : "Packages");
740     else
741       sprintf_alloc (&url, "%s/%s", src->value, src->gzip ? "Packages.gz" : "Packages");
742
743     sprintf_alloc (&list_file_name, "%s/%s", lists_dir, src->name);
744     if (src->gzip)
745     {
746       FILE *in, *out;
747       struct _curl_cb_data cb_data;
748
749       sprintf_alloc (&tmp_file_name, "%s/%s.gz", tmp, src->name);
750
751       /* XXX: Note: downloading url */
752
753       cb_data.cb = progress_callback;
754       cb_data.progress_data = &pdata;
755       cb_data.opkg = opkg;
756       cb_data.user_data = user_data;
757       cb_data.start_range = 100 * sources_done / sources_list_count;
758       cb_data.finish_range = 100 * (sources_done + 1) / sources_list_count;
759
760       err = opkg_download (opkg->conf, url, tmp_file_name, (curl_progress_func) curl_progress_cb, &cb_data);
761
762       if (err == 0)
763       {
764         /* XXX: Note: Inflating downloaded file */
765         in = fopen (tmp_file_name, "r");
766         out = fopen (list_file_name, "w");
767         if (in && out)
768           unzip (in, out);
769         else
770           err = 1;
771         if (in)
772           fclose (in);
773         if (out)
774           fclose (out);
775         unlink (tmp_file_name);
776       }
777     }
778     else
779       err = opkg_download (opkg->conf, url, list_file_name, NULL, NULL);
780     free (tmp_file_name);
781
782     if (err)
783     {
784       /* XXX: Error: download error */
785       result = OPKG_DOWNLOAD_FAILED;
786     }
787     free (url);
788
789 #ifdef HAVE_GPGME
790     /* download detached signitures to verify the package lists */
791     /* get the url for the sig file */
792     if (src->extra_data)  /* debian style? */
793       sprintf_alloc (&url, "%s/%s/%s", src->value, src->extra_data,
794                      "Packages.sig");
795     else
796       sprintf_alloc (&url, "%s/%s", src->value, "Packages.sig");
797
798     /* create temporary file for it */
799     sprintf_alloc (&tmp_file_name, "%s/%s", tmp, "Packages.sig");
800
801     err = opkg_download (opkg->conf, url, tmp_file_name, NULL, NULL);
802     if (err)
803     {
804       /* XXX: Warning: Download failed */
805     }
806     else
807     {
808       int err;
809       err = opkg_verify_file (opkg->conf, list_file_name, tmp_file_name);
810       if (err == 0)
811       {
812         /* XXX: Notice: Signature check passed */
813       }
814       else
815       {
816         /* XXX: Warning: Signature check failed */
817       }
818     }
819     unlink (tmp_file_name);
820     free (tmp_file_name);
821     free (url);
822 #else
823     /* XXX: Note: Signiture check for %s skipped because GPG support was not
824      * enabled in this build
825      */
826 #endif
827     free (list_file_name);
828
829     sources_done++;
830     progress (pdata, 100 * sources_done / sources_list_count);
831   }
832
833   rmdir (tmp);
834   free (tmp);
835   free (lists_dir);
836
837   /* Now re-read the package lists to update package hash tables. */
838   opkg_re_read_config_files (opkg);
839
840   return result;
841 }
842
843
844 int
845 opkg_list_packages (opkg_t *opkg, opkg_package_callback_t callback, void *user_data)
846 {
847   pkg_vec_t *all;
848   int i;
849
850   opkg_assert (opkg);
851   opkg_assert (callback);
852
853   all = pkg_vec_alloc ();
854   pkg_hash_fetch_available (&opkg->conf->pkg_hash, all);
855   for (i = 0; i < all->len; i++)
856   {
857     pkg_t *pkg;
858     opkg_package_t *package;
859
860     pkg = all->pkgs[i];
861
862     package = old_pkg_to_new (pkg);
863     callback (opkg, package, user_data);
864   }
865
866   pkg_vec_free (all);
867
868   return 0;
869 }
870
871 int
872 opkg_list_upgradable_packages (opkg_t *opkg, opkg_package_callback_t callback, void *user_data)
873 {
874   pkg_vec_t *all;
875   int i;
876
877   opkg_assert (opkg);
878   opkg_assert (callback);
879
880   all = pkg_vec_alloc ();
881   pkg_hash_fetch_available (&opkg->conf->pkg_hash, all);
882   for (i = 0; i < all->len; i++)
883   {
884     pkg_t *old, *new;
885     int cmp;
886     opkg_package_t *package;
887
888     old = all->pkgs[i];
889     
890     if (old->state_status != SS_INSTALLED)
891       continue;
892
893     new = pkg_hash_fetch_best_installation_candidate_by_name(opkg->conf, old->name);
894     if (new == NULL) {
895       /* XXX: Notice: Assuming locally install package is up to date */
896       continue;
897     }
898           
899     cmp = pkg_compare_versions(old, new);
900
901     if (cmp < 0)
902     {
903       package = old_pkg_to_new (new);
904       callback (opkg, package, user_data);
905     }
906   }
907
908   pkg_vec_free (all);
909
910   return 0;
911 }
912
913 opkg_package_t*
914 opkg_find_package (opkg_t *opkg, const char *name, const char *ver, const char *arch, const char *repo)
915 {
916   pkg_vec_t *all;
917   opkg_package_t *package = NULL;
918   int i;
919 #define sstrcmp(x,y) (x && y) ? strcmp (x, y) : 0
920
921   opkg_assert (opkg);
922
923   all = pkg_vec_alloc ();
924   pkg_hash_fetch_available (&opkg->conf->pkg_hash, all);
925   for (i = 0; i < all->len; i++)
926   {
927     pkg_t *pkg;
928     char *pkgv;
929
930     pkg = all->pkgs[i];
931
932     /* check name */
933     if (sstrcmp (pkg->name, name))
934       continue;
935     
936     /* check version */
937     pkgv = pkg_version_str_alloc (pkg);
938     if (sstrcmp (pkgv, ver))
939     {
940       free (pkgv);
941       continue;
942     }
943     free (pkgv);
944
945     /* check architecture */
946     if (arch)
947     {
948       if (sstrcmp (pkg->architecture, arch))
949         continue;
950     }
951
952     /* check repository */
953     if (repo)
954     {
955       if (sstrcmp (pkg->src->name, repo))
956           continue;
957     }
958
959     /* match found */
960     package = old_pkg_to_new (pkg);
961     break;
962   }
963
964   pkg_vec_free (all);
965
966   return package;
967 }