opkg: remove redundant multiple_providers option and also remove redundant familiar_r...
[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   }
459   pkg_vec_free (deps);
460
461   /* clear depenacy checked marks, left by pkg_hash_fetch_unsatisfied_dependencies */
462   all = pkg_vec_alloc ();
463   pkg_hash_fetch_available (&opkg->conf->pkg_hash, all);
464   for (i = 0; i < all->len; i++)
465   {
466     all->pkgs[i]->parent->dependencies_checked = 0;
467   }
468   pkg_vec_free (all);
469
470
471   /* 75% of "install" progress is for downloading */
472   opkg_package_free (pdata.package);
473   pdata.package = old_pkg_to_new (new);
474   pdata.action = OPKG_INSTALL;
475   progress (pdata, 75);
476
477   /* unpack the package */
478   err = opkg_install_pkg(opkg->conf, new, 0);
479
480   if (err)
481     return err;
482
483   progress (pdata, 75);
484
485   /* run configure scripts, etc. */
486   err = opkg_configure_packages (opkg->conf, NULL);
487   if (err)
488     return err;
489
490   /* write out status files and file lists */
491   opkg_conf_write_status_files (opkg->conf);
492   pkg_write_changed_filelists (opkg->conf);
493
494   progress (pdata, 100);
495   opkg_package_free (pdata.package);
496   return 0;
497 }
498
499 int
500 opkg_remove_package (opkg_t *opkg, const char *package_name, opkg_progress_callback_t progress_callback, void *user_data)
501 {
502   pkg_t *pkg = NULL;
503   pkg_t *pkg_to_remove;
504   opkg_progress_data_t pdata;
505
506   opkg_assert (opkg != NULL);
507   opkg_assert (package_name != NULL);
508
509
510
511   pkg_info_preinstall_check (opkg->conf);
512
513
514   pkg = pkg_hash_fetch_installed_by_name (&opkg->conf->pkg_hash, package_name);
515
516   if (pkg == NULL)
517   {
518     /* XXX: Error: Package not installed. */
519     return OPKG_PACKAGE_NOT_INSTALLED;
520   }
521
522   pdata.action = OPKG_REMOVE;
523   pdata.package = old_pkg_to_new (pkg);
524   progress (pdata, 0);
525
526
527   if (pkg->state_status == SS_NOT_INSTALLED)
528   {
529     /* XXX:  Error: Package seems to be not installed (STATUS = NOT_INSTALLED). */
530     return OPKG_PACKAGE_NOT_INSTALLED;
531   }
532   progress (pdata, 25);
533
534   if (opkg->conf->restrict_to_default_dest)
535   {
536     pkg_to_remove = pkg_hash_fetch_installed_by_name_dest (&opkg->conf->pkg_hash,
537                                                            pkg->name,
538                                                            opkg->conf->default_dest);
539   }
540   else
541   {
542     pkg_to_remove = pkg_hash_fetch_installed_by_name (&opkg->conf->pkg_hash, pkg->name );
543   }
544
545
546   progress (pdata, 75);
547
548   opkg_remove_pkg (opkg->conf, pkg_to_remove, 0);
549
550   /* write out status files and file lists */
551   opkg_conf_write_status_files (opkg->conf);
552   pkg_write_changed_filelists (opkg->conf);
553
554
555   progress (pdata, 100);
556   opkg_package_free (pdata.package);
557   return 0;
558 }
559
560 int
561 opkg_upgrade_package (opkg_t *opkg, const char *package_name, opkg_progress_callback_t progress_callback, void *user_data)
562 {
563   pkg_t *pkg;
564   opkg_progress_data_t pdata;
565
566
567
568   opkg_assert (opkg != NULL);
569   opkg_assert (package_name != NULL);
570
571   pkg_info_preinstall_check (opkg->conf);
572
573   if (opkg->conf->restrict_to_default_dest)
574   {
575     pkg = pkg_hash_fetch_installed_by_name_dest (&opkg->conf->pkg_hash,
576                                                  package_name,
577                                                  opkg->conf->default_dest);
578     if (pkg == NULL)
579     {
580       /* XXX: Error: Package not installed in default_dest */
581       return OPKG_PACKAGE_NOT_INSTALLED;
582     }
583   }
584   else
585   {
586     pkg = pkg_hash_fetch_installed_by_name (&opkg->conf->pkg_hash,
587                                             package_name);
588   }
589
590   if (!pkg)
591   {
592     /* XXX: Error: Package not installed */
593     return OPKG_PACKAGE_NOT_INSTALLED;
594   }
595
596   pdata.action = OPKG_INSTALL;
597   pdata.package = old_pkg_to_new (pkg);
598   progress (pdata, 0);
599
600   opkg_upgrade_pkg (opkg->conf, pkg);
601   progress (pdata, 75);
602
603   opkg_configure_packages (opkg->conf, NULL);
604   progress (pdata, 100);
605   opkg_package_free (pdata.package);
606   return 0;
607 }
608
609 int
610 opkg_upgrade_all (opkg_t *opkg, opkg_progress_callback_t progress_callback, void *user_data)
611 {
612   pkg_vec_t *installed;
613   int err = 0;
614   int i;
615   pkg_t *pkg;
616   opkg_progress_data_t pdata;
617
618   pdata.action = OPKG_INSTALL;
619   pdata.package = NULL;
620
621   opkg_assert (opkg != NULL);
622   progress (pdata, 0);
623
624   installed = pkg_vec_alloc ();
625   pkg_info_preinstall_check (opkg->conf);
626
627   pkg_hash_fetch_all_installed (&opkg->conf->pkg_hash, installed);
628   for (i = 0; i < installed->len; i++)
629   {
630     pkg = installed->pkgs[i];
631
632     pdata.package = old_pkg_to_new (pkg);
633     progress (pdata, 99 * i / installed->len);
634     opkg_package_free (pdata.package);
635
636     err += opkg_upgrade_pkg (opkg->conf, pkg);
637   }
638   pkg_vec_free (installed);
639
640   if (err)
641     return 1;
642
643   err = opkg_configure_packages (opkg->conf, NULL);
644   if (err)
645     return 1;
646
647   pdata.package = NULL;
648   progress (pdata, 100);
649   return 0;
650 }
651
652 int
653 opkg_update_package_lists (opkg_t *opkg, opkg_progress_callback_t progress_callback, void *user_data)
654 {
655   char *tmp;
656   int err, result = 0;
657   char *lists_dir;
658   pkg_src_list_elt_t *iter;
659   pkg_src_t *src;
660   int sources_list_count, sources_done;
661   opkg_progress_data_t pdata;
662   char *tmp_file_name = NULL;
663
664   opkg_assert (opkg != NULL);
665
666   pdata.action = OPKG_DOWNLOAD;
667   pdata.package = NULL;
668   progress (pdata, 0);
669
670   sprintf_alloc (&lists_dir, "%s",
671                  (opkg->conf->restrict_to_default_dest)
672                  ? opkg->conf->default_dest->lists_dir
673                  : opkg->conf->lists_dir);
674
675   if (!file_is_dir (lists_dir))
676   {
677     if (file_exists (lists_dir))
678     {
679       /* XXX: Error: file exists but is not a directory */
680       free (lists_dir);
681       return 1;
682     }
683
684     err = file_mkdir_hier (lists_dir, 0755);
685     if (err)
686     {
687       /* XXX: Error: failed to create directory */
688       free (lists_dir);
689       return 1;
690     }
691   }
692
693   tmp = strdup ("/tmp/opkg.XXXXXX");
694
695   if (mkdtemp (tmp) == NULL)
696   {
697     /* XXX: Error: could not create temporary file name */
698     free (lists_dir);
699     free (tmp);
700     return 1;
701   }
702
703   /* cout the number of sources so we can give some progress updates */
704   sources_list_count = 0;
705   sources_done = 0;
706   iter = opkg->conf->pkg_src_list.head;
707   while (iter)
708   {
709     sources_list_count++;
710     iter = iter->next;
711   }
712
713   for (iter = opkg->conf->pkg_src_list.head; iter; iter = iter->next)
714   {
715     char *url, *list_file_name;
716
717     src = iter->data;
718
719     if (src->extra_data)  /* debian style? */
720       sprintf_alloc (&url, "%s/%s/%s", src->value, src->extra_data,
721                      src->gzip ? "Packages.gz" : "Packages");
722     else
723       sprintf_alloc (&url, "%s/%s", src->value, src->gzip ? "Packages.gz" : "Packages");
724
725     sprintf_alloc (&list_file_name, "%s/%s", lists_dir, src->name);
726     if (src->gzip)
727     {
728       FILE *in, *out;
729       struct _curl_cb_data cb_data;
730
731       sprintf_alloc (&tmp_file_name, "%s/%s.gz", tmp, src->name);
732
733       /* XXX: Note: downloading url */
734
735       cb_data.cb = progress_callback;
736       cb_data.progress_data = &pdata;
737       cb_data.opkg = opkg;
738       cb_data.user_data = user_data;
739       cb_data.start_range = 100 * sources_done / sources_list_count;
740       cb_data.finish_range = 100 * (sources_done + 1) / sources_list_count;
741
742       err = opkg_download (opkg->conf, url, tmp_file_name, (curl_progress_func) curl_progress_cb, &cb_data);
743
744       if (err == 0)
745       {
746         /* XXX: Note: Inflating downloaded file */
747         in = fopen (tmp_file_name, "r");
748         out = fopen (list_file_name, "w");
749         if (in && out)
750           unzip (in, out);
751         else
752           err = 1;
753         if (in)
754           fclose (in);
755         if (out)
756           fclose (out);
757         unlink (tmp_file_name);
758       }
759     }
760     else
761       err = opkg_download (opkg->conf, url, list_file_name, NULL, NULL);
762     free (tmp_file_name);
763
764     if (err)
765     {
766       /* XXX: Error: download error */
767       result = OPKG_DOWNLOAD_FAILED;
768     }
769     free (url);
770
771 #ifdef HAVE_GPGME
772     /* download detached signitures to verify the package lists */
773     /* get the url for the sig file */
774     if (src->extra_data)  /* debian style? */
775       sprintf_alloc (&url, "%s/%s/%s", src->value, src->extra_data,
776                      "Packages.sig");
777     else
778       sprintf_alloc (&url, "%s/%s", src->value, "Packages.sig");
779
780     /* create temporary file for it */
781     sprintf_alloc (&tmp_file_name, "%s/%s", tmp, "Packages.sig");
782
783     err = opkg_download (opkg->conf, url, tmp_file_name, NULL, NULL);
784     if (err)
785     {
786       /* XXX: Warning: Download failed */
787     }
788     else
789     {
790       int err;
791       err = opkg_verify_file (opkg->conf, list_file_name, tmp_file_name);
792       if (err == 0)
793       {
794         /* XXX: Notice: Signature check passed */
795       }
796       else
797       {
798         /* XXX: Warning: Signature check failed */
799       }
800     }
801     unlink (tmp_file_name);
802     free (tmp_file_name);
803     free (url);
804 #else
805     /* XXX: Note: Signiture check for %s skipped because GPG support was not
806      * enabled in this build
807      */
808 #endif
809     free (list_file_name);
810
811     sources_done++;
812     progress (pdata, 100 * sources_done / sources_list_count);
813   }
814
815   rmdir (tmp);
816   free (tmp);
817   free (lists_dir);
818
819   /* Now re-read the package lists to update package hash tables. */
820   opkg_re_read_config_files (opkg);
821
822   return result;
823 }
824
825
826 int
827 opkg_list_packages (opkg_t *opkg, opkg_package_callback_t callback, void *user_data)
828 {
829   pkg_vec_t *all;
830   int i;
831
832   opkg_assert (opkg);
833   opkg_assert (callback);
834
835   all = pkg_vec_alloc ();
836   pkg_hash_fetch_available (&opkg->conf->pkg_hash, all);
837   for (i = 0; i < all->len; i++)
838   {
839     pkg_t *pkg;
840     opkg_package_t *package;
841
842     pkg = all->pkgs[i];
843
844     package = old_pkg_to_new (pkg);
845     callback (opkg, package, user_data);
846   }
847
848   pkg_vec_free (all);
849
850   return 0;
851 }
852
853 int
854 opkg_list_upgradable_packages (opkg_t *opkg, opkg_package_callback_t callback, void *user_data)
855 {
856   pkg_vec_t *all;
857   int i;
858
859   opkg_assert (opkg);
860   opkg_assert (callback);
861
862   all = pkg_vec_alloc ();
863   pkg_hash_fetch_available (&opkg->conf->pkg_hash, all);
864   for (i = 0; i < all->len; i++)
865   {
866     pkg_t *old, *new;
867     int cmp;
868     opkg_package_t *package;
869
870     old = all->pkgs[i];
871     
872     if (old->state_status != SS_INSTALLED)
873       continue;
874
875     new = pkg_hash_fetch_best_installation_candidate_by_name(opkg->conf, old->name);
876     if (new == NULL) {
877       /* XXX: Notice: Assuming locally install package is up to date */
878       continue;
879     }
880           
881     cmp = pkg_compare_versions(old, new);
882
883     if (cmp < 0)
884     {
885       package = old_pkg_to_new (new);
886       callback (opkg, package, user_data);
887     }
888   }
889
890   pkg_vec_free (all);
891
892   return 0;
893 }
894
895 opkg_package_t*
896 opkg_find_package (opkg_t *opkg, const char *name, const char *ver, const char *arch, const char *repo)
897 {
898   pkg_vec_t *all;
899   opkg_package_t *package = NULL;
900   int i;
901 #define sstrcmp(x,y) (x && y) ? strcmp (x, y) : 0
902
903   opkg_assert (opkg);
904
905   all = pkg_vec_alloc ();
906   pkg_hash_fetch_available (&opkg->conf->pkg_hash, all);
907   for (i = 0; i < all->len; i++)
908   {
909     pkg_t *pkg;
910     char *pkgv;
911
912     pkg = all->pkgs[i];
913
914     /* check name */
915     if (sstrcmp (pkg->name, name))
916       continue;
917     
918     /* check version */
919     pkgv = pkg_version_str_alloc (pkg);
920     if (sstrcmp (pkgv, ver))
921     {
922       free (pkgv);
923       continue;
924     }
925     free (pkgv);
926
927     /* check architecture */
928     if (arch)
929     {
930       if (sstrcmp (pkg->architecture, arch))
931         continue;
932     }
933
934     /* check repository */
935     if (repo)
936     {
937       if (sstrcmp (pkg->src->name, repo))
938           continue;
939     }
940
941     /* match found */
942     package = old_pkg_to_new (pkg);
943     break;
944   }
945
946   pkg_vec_free (all);
947
948   return package;
949 }