2fb0d1d8bf4a44639816f11a057ed449326aa73f
[oweals/opkg-lede.git] / libopkg / pkg_hash.c
1 /* opkg_hash.c - the opkg package management system
2
3    Steven M. Ayer
4    
5    Copyright (C) 2002 Compaq Computer Corporation
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 <errno.h>
20 #include <ctype.h>
21 #include <stdlib.h>
22 #include <string.h>
23
24 #include "hash_table.h"
25 #include "pkg.h"
26 #include "opkg_message.h"
27 #include "pkg_vec.h"
28 #include "pkg_hash.h"
29 #include "pkg_parse.h"
30 #include "opkg_utils.h"
31
32 static abstract_pkg_t * add_new_abstract_pkg_by_name(hash_table_t * hash, const char * pkg_name);
33
34 /*
35  * this will talk to both feeds-lists files and installed status files
36  * example api:
37  *
38  * hash_table_t hash;
39  * pkg_hash_init(name, &hash, 1000);
40  * pkg_hash_add_from_file(<feed filename>);
41  *
42  * the query function is just there as a shell to prove to me that this
43  * sort of works, but isn't far from doing something useful
44  * 
45  * -sma, 12/21/01
46  * modified: CDW 3 Jan. 2002
47  */
48
49
50 \f
51 int pkg_hash_init(const char *name, hash_table_t *hash, int len)
52 {
53   return hash_table_init(name, hash, len);
54 }
55
56 void free_pkgs (const char *key, void *entry, void *data)
57 {
58   int i;
59   abstract_pkg_t *ab_pkg;
60
61   /* each entry in the hash table is an abstract package, which contains a list
62    * of packages that provide the abstract package */
63   
64   ab_pkg = (abstract_pkg_t*) entry;
65
66   if (ab_pkg->pkgs)
67   {
68     for (i = 0; i < ab_pkg->pkgs->len; i++)
69     {
70       pkg_deinit (ab_pkg->pkgs->pkgs[i]);
71       free (ab_pkg->pkgs->pkgs[i]);
72     }
73   }
74
75   abstract_pkg_vec_free (ab_pkg->provided_by);
76   abstract_pkg_vec_free (ab_pkg->replaced_by);
77   pkg_vec_free (ab_pkg->pkgs);
78   free (ab_pkg->depended_upon_by);
79   free (ab_pkg->name);
80   free (ab_pkg);
81 }
82
83 void pkg_hash_deinit(hash_table_t *hash)
84 {
85   hash_table_foreach (hash, free_pkgs, NULL);
86   hash_table_deinit(hash);
87 }
88
89
90 /* Find the default arch for a given package status file if none is given. */
91 static char *pkg_get_default_arch(opkg_conf_t *conf)
92 {
93      nv_pair_list_elt_t *l;
94      char *def_arch = HOST_CPU_STR;             /* Default arch */
95      int def_prio = 0;                          /* Other archs override this */
96
97      l = conf->arch_list.head;
98
99      while (l) {
100           nv_pair_t *nv = l->data;
101           int priority = strtol(nv->value, NULL, 0);
102
103           /* Check if this arch has higher priority, and is valid */
104           if ((priority > def_prio) &&
105               (strcmp(nv->name, "all")) && (strcmp(nv->name, "noarch"))) {
106                /* Our new default */
107                def_prio = priority;
108                def_arch = nv->name;
109           }
110           l = l->next;
111      }
112
113      return strdup(def_arch);
114 }
115
116 int pkg_hash_add_from_file(opkg_conf_t *conf, const char *file_name,
117                            pkg_src_t *src, pkg_dest_t *dest, int is_status_file)
118 {
119      hash_table_t *hash = &conf->pkg_hash;
120      char **raw;
121      char **raw_start;
122      pkg_t *pkg;
123     
124      raw = raw_start = read_raw_pkgs_from_file(file_name);
125      if (!raw)
126         return -ENOMEM;
127
128      while(*raw){         /* don't worry, we'll increment raw in the parsing function */
129           pkg = pkg_new();
130           if (!pkg)
131                return -ENOMEM;
132
133           if (pkg_parse_raw(pkg, &raw, src, dest) == 0) {
134                if (!pkg->architecture) {
135                     char *version_str = pkg_version_str_alloc(pkg);
136                     pkg->architecture = pkg_get_default_arch(conf);
137                     opkg_message(conf, OPKG_ERROR, "Package %s version %s has no architecture specified, defaulting to %s.\n",
138                                  pkg->name, version_str, pkg->architecture);
139                     free(version_str);
140                }
141                hash_insert_pkg(hash, pkg, is_status_file,conf);
142           } else {
143                pkg_deinit (pkg);
144                free(pkg);
145           }
146      }
147
148      /* XXX: CLEANUP: I'd like a cleaner interface for cleaning up
149         memory after read_raw_pkgs_from_file */
150      raw = raw_start;
151      while (*raw) {
152           free(*raw++);
153      }
154      free(raw_start);
155      return 0;
156 }
157
158 abstract_pkg_t * abstract_pkg_fetch_by_name(hash_table_t * hash, const char * pkg_name)
159 {
160   return (abstract_pkg_t *)hash_table_get(hash, pkg_name);
161 }
162
163 abstract_pkg_vec_t *pkg_hash_fetch_all_installation_candidates(hash_table_t *hash, const char *name)
164 {
165     abstract_pkg_t *apkg = abstract_pkg_fetch_by_name(hash, name);
166     if (apkg)
167        return NULL;
168     return apkg->provided_by;
169 }
170
171
172 pkg_t *pkg_hash_fetch_best_installation_candidate(opkg_conf_t *conf, abstract_pkg_t *apkg, 
173                                                   int (*constraint_fcn)(pkg_t *pkg, void *cdata), void *cdata, int quiet)
174 {
175      int i; 
176      int nprovides = 0;
177      int nmatching = 0;
178      pkg_vec_t *matching_pkgs = pkg_vec_alloc();
179      abstract_pkg_vec_t *matching_apkgs = abstract_pkg_vec_alloc();
180      abstract_pkg_vec_t *provided_apkg_vec;
181      abstract_pkg_t **provided_apkgs;
182      abstract_pkg_vec_t *providers = abstract_pkg_vec_alloc();
183      pkg_t *latest_installed_parent = NULL;
184      pkg_t *latest_matching = NULL;
185      pkg_t *held_pkg = NULL;
186      pkg_t *good_pkg_by_name = NULL;
187
188      if (matching_apkgs == NULL || providers == NULL || 
189          apkg == NULL || apkg->provided_by == NULL || (apkg->provided_by->len == 0))
190           return NULL;
191
192      opkg_message(conf, OPKG_DEBUG, "best installation candidate for %s\n", apkg->name);
193
194      provided_apkg_vec = apkg->provided_by;
195      nprovides = provided_apkg_vec->len;
196      provided_apkgs = provided_apkg_vec->pkgs;
197      if (nprovides > 1)
198           opkg_message(conf, OPKG_DEBUG, " apkg=%s nprovides=%d\n", apkg->name, nprovides);
199
200      /* accumulate all the providers */
201      for (i = 0; i < nprovides; i++) {
202           abstract_pkg_t *provider_apkg = provided_apkgs[i];
203           opkg_message(conf, OPKG_DEBUG, " adding %s to providers\n", provider_apkg->name);
204           abstract_pkg_vec_insert(providers, provider_apkg);
205      }
206      nprovides = providers->len;
207
208      for (i = 0; i < nprovides; i++) {
209           abstract_pkg_t *provider_apkg = abstract_pkg_vec_get(providers, i);
210           abstract_pkg_t *replacement_apkg = NULL;
211           pkg_vec_t *vec;
212
213           if (provider_apkg->replaced_by && provider_apkg->replaced_by->len) {
214                replacement_apkg = provider_apkg->replaced_by->pkgs[0];
215                if (provider_apkg->replaced_by->len > 1) {
216                     opkg_message(conf, OPKG_NOTICE, "Multiple replacers for %s, using first one (%s)\n", 
217                                  provider_apkg->name, replacement_apkg->name);
218                }
219           }
220
221           if (replacement_apkg)
222                opkg_message(conf, OPKG_DEBUG, "   replacement_apkg=%s for provider_apkg=%s\n", 
223                             replacement_apkg->name, provider_apkg->name);
224
225           if (replacement_apkg && (replacement_apkg != provider_apkg)) {
226                if (abstract_pkg_vec_contains(providers, replacement_apkg))
227                     continue;
228                else
229                     provider_apkg = replacement_apkg;
230           }
231
232           if (!(vec = provider_apkg->pkgs)) {
233                opkg_message(conf, OPKG_DEBUG, "   no pkgs for provider_apkg %s\n", provider_apkg->name);
234                continue;
235           }
236     
237
238           /* now check for supported architecture */
239           {
240                int max_count = 0;
241                int i;
242
243                /* count packages matching max arch priority and keep track of last one */
244                for (i = 0; i < vec->len; i++) {
245                     pkg_t *maybe = vec->pkgs[i];
246                     opkg_message(conf, OPKG_DEBUG, "  %s arch=%s arch_priority=%d version=%s  \n",
247                                  maybe->name, maybe->architecture, maybe->arch_priority, maybe->version);
248                     if (maybe->arch_priority > 0)  {
249                          max_count++;
250                          abstract_pkg_vec_insert(matching_apkgs, maybe->parent);
251                          pkg_vec_insert(matching_pkgs, maybe);
252                     }
253                }
254           }
255      }
256
257      if (matching_pkgs->len > 1)
258           pkg_vec_sort(matching_pkgs, pkg_name_version_and_architecture_compare);
259      if (matching_apkgs->len > 1)
260           abstract_pkg_vec_sort(matching_pkgs, abstract_pkg_name_compare);
261
262 /* Here it is usefull, if ( matching_apkgs->len > 1 ), to test if one of this matching packages has the same name of the
263    needed package. In this case, I would return it for install, otherwise I will continue with the procedure */
264 /* The problem is what to do when there are more than a mathing package, with the same name and several version ?
265    Until now I always got the latest, but that breaks the downgrade option.
266    If I stop at the first one, I would probably miss the new ones 
267    Maybe the way is to have some kind of flag somewhere, to see if the package been asked to install is from a file,
268    or from a Packages feed.
269    It it is from a file it always need to be checked whatever version I have in feeds or everywhere, according to force-down or whatever options*/
270 /*Pigi*/
271
272      for (i = 0; i < matching_pkgs->len; i++) {
273           pkg_t *matching = matching_pkgs->pkgs[i];
274           if (constraint_fcn(matching, cdata)) {  /* We found it */
275              opkg_message(conf, OPKG_DEBUG, " Found a valid candidate for the install: %s %s  \n", matching->name, matching->version) ;
276              good_pkg_by_name = matching;
277              if ( matching->provided_by_hand == 1 )    /* It has been provided by hand, so it is what user want */
278                 break;                                 
279           }
280      }
281
282
283      for (i = 0; i < matching_pkgs->len; i++) {
284           pkg_t *matching = matching_pkgs->pkgs[i];
285           latest_matching = matching;
286           if (matching->parent->state_status == SS_INSTALLED || matching->parent->state_status == SS_UNPACKED)
287                latest_installed_parent = matching;
288           if (matching->state_flag & (SF_HOLD|SF_PREFER)) {
289                if (held_pkg)
290                     opkg_message(conf, OPKG_ERROR, "Multiple packages (%s and %s) providing same name marked HOLD or PREFER.  Using latest.\n",
291                                  held_pkg->name, matching->name);
292                held_pkg = matching;
293           }
294      }
295
296      if (!good_pkg_by_name && !held_pkg && !latest_installed_parent && matching_apkgs->len > 1 && !quiet) {
297           opkg_message(conf, OPKG_ERROR, "Package=%s, %d matching providers\n",
298                        apkg->name, matching_apkgs->len);
299           for (i = 0; i < matching_apkgs->len; i++) {
300               abstract_pkg_t *matching = matching_apkgs->pkgs[i];
301               opkg_message(conf, OPKG_ERROR, "    %s\n", matching->name);
302           }
303           opkg_message(conf, OPKG_ERROR, "Please select one with opkg install or opkg flag prefer\n");
304      }
305
306      if (matching_apkgs->len > 1 && conf->verbosity > 1) {
307           opkg_message(conf, OPKG_NOTICE, "%s: for apkg=%s, %d matching pkgs\n",
308                        __FUNCTION__, apkg->name, matching_pkgs->len);
309           for (i = 0; i < matching_pkgs->len; i++) {
310                pkg_t *matching = matching_pkgs->pkgs[i];
311                opkg_message(conf, OPKG_INFO, "    %s %s %s\n",
312                             matching->name, matching->version, matching->architecture);
313           }
314      }
315
316      nmatching = matching_apkgs->len;
317
318      pkg_vec_free(matching_pkgs);
319      abstract_pkg_vec_free(matching_apkgs);
320      abstract_pkg_vec_free(providers);
321
322      if (good_pkg_by_name) {   /* We found a good candidate, we will install it */ 
323           return good_pkg_by_name;
324      }
325      if (held_pkg) {
326           opkg_message(conf, OPKG_INFO, "  using held package %s\n", held_pkg->name);
327           return held_pkg;
328      }
329      if (latest_installed_parent) {
330           opkg_message(conf, OPKG_INFO, "  using latest version of installed package %s\n", latest_installed_parent->name);
331           return latest_installed_parent;
332      }
333      if (nmatching > 1) {
334           opkg_message(conf, OPKG_INFO, "  no matching pkg out of matching_apkgs=%d\n", nmatching);
335           return NULL;
336      }
337      if (latest_matching) {
338           opkg_message(conf, OPKG_INFO, "  using latest matching %s %s %s\n",
339                        latest_matching->name, latest_matching->version, latest_matching->architecture);
340           return latest_matching;
341      }
342      return NULL;
343 }
344
345 static int pkg_name_constraint_fcn(pkg_t *pkg, void *cdata)
346 {
347      const char *name = (const char *)cdata;
348      if (strcmp(pkg->name, name) == 0)
349           return 1;
350      else
351           return 0;   
352 }
353
354 pkg_t *pkg_hash_fetch_best_installation_candidate_by_name(opkg_conf_t *conf, const char *name)
355 {
356      hash_table_t *hash = &conf->pkg_hash;
357      abstract_pkg_t *apkg = NULL;
358
359      if (!(apkg = abstract_pkg_fetch_by_name(hash, name)))
360           return NULL;
361      
362      return pkg_hash_fetch_best_installation_candidate(conf, apkg, pkg_name_constraint_fcn, apkg->name, 0);
363 }
364
365
366 pkg_t * pkg_hash_fetch_by_name_version(hash_table_t *hash, 
367                                        const char *pkg_name,
368                                        const char * version)
369 {
370     pkg_vec_t * vec;
371     register int i;
372     char *version_str = NULL;
373     
374     if(!(vec = pkg_vec_fetch_by_name(hash, pkg_name)))
375         return NULL;
376     
377     for(i = 0; i < vec->len; i++) {
378         version_str = pkg_version_str_alloc(vec->pkgs[i]);
379         if(!strcmp(version_str, version)) {
380             free(version_str);
381             break;
382         }
383         free(version_str);
384     }
385         
386     if(i == vec->len)
387         return NULL;
388     
389     return vec->pkgs[i];
390 }
391
392 pkg_t *pkg_hash_fetch_installed_by_name_dest(hash_table_t *hash,
393                                              const char *pkg_name,
394                                              pkg_dest_t *dest)
395 {
396     pkg_vec_t * vec;
397     register int i;
398
399     if(!(vec = pkg_vec_fetch_by_name(hash, pkg_name))) {
400         return NULL;
401     }
402     
403     for(i = 0; i < vec->len; i++)
404         if((vec->pkgs[i]->state_status == SS_INSTALLED || vec->pkgs[i]->state_status == SS_UNPACKED) && vec->pkgs[i]->dest == dest) {
405             return vec->pkgs[i];
406         }
407     return NULL;
408 }
409
410 pkg_t *pkg_hash_fetch_installed_by_name(hash_table_t *hash,
411                                         const char *pkg_name)
412 {
413     pkg_vec_t * vec;
414     register int i;
415
416     if(!(vec = pkg_vec_fetch_by_name(hash, pkg_name))){
417         return NULL;
418     } 
419
420     for(i = 0; i < vec->len; i++)
421         if (vec->pkgs[i]->state_status == SS_INSTALLED || vec->pkgs[i]->state_status == SS_UNPACKED){
422             return vec->pkgs[i];
423         } 
424     
425     return NULL;
426 }
427
428 pkg_vec_t *pkg_vec_fetch_by_name(hash_table_t *hash, const char *pkg_name)
429 {
430     abstract_pkg_t * ab_pkg;
431
432     if(!(ab_pkg = abstract_pkg_fetch_by_name(hash, pkg_name))){
433        return NULL;
434     }
435     
436     if (ab_pkg->pkgs) {
437       return ab_pkg->pkgs;
438     } else if (ab_pkg->provided_by) {
439       abstract_pkg_t *abpkg =  abstract_pkg_vec_get(ab_pkg->provided_by, 0);
440       if (abpkg != NULL){
441           return abpkg->pkgs;
442       } else {
443           return ab_pkg->pkgs;
444       }
445     } else {
446       return NULL;
447     }
448 }
449
450 static int pkg_compare_names(const void *p1, const void *p2)
451 {
452   const pkg_t *pkg1 = *(const pkg_t **)p1;
453   const pkg_t *pkg2 = *(const pkg_t **)p2;
454   if (pkg1->name == NULL)
455     return 1;
456   if (pkg2->name == NULL)
457     return -1;
458   return(strcmp(pkg1->name, pkg2->name));
459 }
460
461
462 static void pkg_hash_fetch_available_helper(const char *pkg_name, void *entry, void *data)
463 {
464   int j;
465   abstract_pkg_t *ab_pkg = (abstract_pkg_t *)entry;
466   pkg_vec_t *all = (pkg_vec_t *)data;
467   pkg_vec_t *pkg_vec = ab_pkg->pkgs;
468   if (pkg_vec) {
469     for (j = 0; j < pkg_vec->len; j++) {
470       pkg_t *pkg = pkg_vec->pkgs[j];
471       pkg_vec_insert(all, pkg);
472     }
473   }
474 }
475
476 void pkg_hash_fetch_available(hash_table_t *hash, pkg_vec_t *all)
477 {
478     hash_table_foreach(hash, pkg_hash_fetch_available_helper, all);
479     qsort(all->pkgs, all->len, sizeof(pkg_t *), pkg_compare_names);
480 }
481
482 static void pkg_hash_fetch_all_installed_helper(const char *pkg_name, void *entry, void *data)
483 {
484   abstract_pkg_t *ab_pkg = (abstract_pkg_t *)entry;
485   pkg_vec_t *all = (pkg_vec_t *)data;
486   pkg_vec_t *pkg_vec = ab_pkg->pkgs;
487   int j;
488   if (pkg_vec) {
489     for (j = 0; j < pkg_vec->len; j++) {
490       pkg_t *pkg = pkg_vec->pkgs[j];
491       if (pkg->state_status == SS_INSTALLED || pkg->state_status == SS_UNPACKED) {
492         pkg_vec_insert(all, pkg);
493       }
494     }
495   }
496 }
497 void pkg_hash_fetch_all_installed(hash_table_t *hash, pkg_vec_t *all)
498 {
499     hash_table_foreach(hash, pkg_hash_fetch_all_installed_helper, all);
500     qsort(all->pkgs, all->len, sizeof(void*), pkg_compare_names);
501 }
502
503 static void pkg_hash_dump_helper(const char *pkg_name, void *entry, void *data)
504 {
505   int i;
506   pkg_t *pkg;
507   abstract_pkg_t *ab_pkg = (abstract_pkg_t *)entry;
508   opkg_conf_t *conf = (opkg_conf_t *)data;
509   abstract_pkg_t ** dependents = ab_pkg->depended_upon_by;
510   fprintf(stdout, "%s\n", ab_pkg->name);
511   i = 0;
512   if (dependents != NULL)
513     while (dependents [i] != NULL)
514       printf ("\tdepended upon by - %s\n", dependents [i ++]->name);
515   dependents = ab_pkg->provided_by->pkgs;
516   i = 0;
517   if (dependents != NULL)
518     while (dependents [i] != NULL && i < ab_pkg->provided_by->len)
519       printf ("\tprovided by - %s\n", dependents [i ++]->name);
520   pkg = pkg_hash_fetch_best_installation_candidate_by_name (conf, ab_pkg->name);
521   if (pkg) {
522     i = 0;
523     while (i < pkg->depends_count)
524       printf ("\tdepends on - %s\n", pkg->depends_str [i ++]);  
525   }
526 }
527 void pkg_hash_dump(hash_table_t *hash, void *data)
528 {
529
530   printf ("\n\n+=+%s+=+\n\n", __FUNCTION__);
531   hash_table_foreach(hash, pkg_hash_dump_helper, data);
532   printf ("\n+=+%s+=+\n\n", __FUNCTION__);    
533 }
534
535 abstract_pkg_t * ensure_abstract_pkg_by_name(hash_table_t * hash, const char * pkg_name)
536 {
537   abstract_pkg_t * ab_pkg;
538
539   if(!(ab_pkg = abstract_pkg_fetch_by_name(hash, pkg_name)))
540     ab_pkg = add_new_abstract_pkg_by_name(hash, pkg_name);
541
542   return ab_pkg;
543 }
544
545 pkg_t *hash_insert_pkg(hash_table_t *hash, pkg_t *pkg, int set_status,opkg_conf_t *conf)
546 {
547      abstract_pkg_t * ab_pkg;
548      int arch_priority;
549
550      if(!pkg)
551           return pkg;
552
553      arch_priority = pkg->arch_priority;
554
555      if (buildDepends(hash, pkg)<0){
556         fprintf(stderr, "%s : This should never happen. Report this Bug in bugzilla please \n ",__FUNCTION__);
557         return NULL;
558      }
559      ab_pkg = ensure_abstract_pkg_by_name(hash, pkg->name);
560
561      if (set_status) {
562           if (pkg->state_status == SS_INSTALLED) {
563                ab_pkg->state_status = SS_INSTALLED;
564           } else if (pkg->state_status == SS_UNPACKED) {
565                ab_pkg->state_status = SS_UNPACKED;
566           }
567      }
568
569      if(!ab_pkg->pkgs)
570           ab_pkg->pkgs = pkg_vec_alloc();
571     
572      /* pkg_vec_insert_merge might munge package, but it returns an unmunged pkg */
573      pkg = pkg_vec_insert_merge(ab_pkg->pkgs, pkg, set_status,conf );
574      pkg->parent = ab_pkg;
575
576      if (buildProvides(hash, ab_pkg, pkg)<0){
577         fprintf(stderr, "%s : This should never happen. Report this Bug in bugzilla please \n ",__FUNCTION__);
578         return NULL;
579      }
580      /* need to build the conflicts graph before replaces for correct calculation of replaced_by relation */
581      if (buildConflicts(hash, ab_pkg, pkg)<0){
582         fprintf(stderr, "%s : This should never happen. Report this Bug in bugzilla please \n ",__FUNCTION__);
583         return NULL;
584      }
585      if (buildReplaces(hash, ab_pkg, pkg)<0) {
586         fprintf(stderr, "%s : This should never happen. Report this Bug in bugzilla please \n ",__FUNCTION__);
587         return NULL;
588      }
589     
590      buildDependedUponBy(pkg, ab_pkg);
591      return pkg;
592 }
593
594 /*
595  * this will assume that we've already determined that
596  * the abstract pkg doesn't exist, 'cause we should know these things...
597  */
598 static abstract_pkg_t * add_new_abstract_pkg_by_name(hash_table_t * hash, const char * pkg_name)
599 {
600   abstract_pkg_t * ab_pkg;
601
602   ab_pkg = abstract_pkg_new();
603   if (ab_pkg == NULL) { return NULL; }
604
605   ab_pkg->name = strdup(pkg_name);
606   hash_table_insert(hash, pkg_name, ab_pkg);
607
608   return ab_pkg;
609 }
610
611
612 pkg_t *file_hash_get_file_owner(opkg_conf_t *conf, const char *file_name)
613 {
614      hash_table_t *file_hash = &conf->file_hash;
615
616      return hash_table_get(file_hash, file_name); 
617 }
618
619 int file_hash_set_file_owner(opkg_conf_t *conf, const char *file_name, pkg_t *owning_pkg)
620 {
621      hash_table_t *file_hash = &conf->file_hash;
622      pkg_t *old_owning_pkg = hash_table_get(file_hash, file_name);
623      int file_name_len = strlen(file_name);
624
625      if (file_name[file_name_len -1] == '/')
626           return 0;
627
628      if (conf->offline_root) {
629           int len = strlen(conf->offline_root);
630           if (strncmp(file_name, conf->offline_root, len) == 0) {
631                file_name += len;
632           }
633      }
634
635      // opkg_message(conf, OPKG_DEBUG2, "owning_pkg=%s filename=%s\n", owning_pkg->name, file_name);
636      hash_table_insert(file_hash, file_name, owning_pkg); 
637      if (old_owning_pkg) {
638           str_list_remove_elt(old_owning_pkg->installed_files, file_name);
639           /* mark this package to have its filelist written */
640           old_owning_pkg->state_flag |= SF_FILELIST_CHANGED;
641           owning_pkg->state_flag |= SF_FILELIST_CHANGED;
642      }
643      return 0;
644 }
645
646