a07a25ec1e0b40f8e194a27e7286643b93a048cf
[project/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 <stdio.h>
19
20 #include "hash_table.h"
21 #include "pkg.h"
22 #include "opkg_message.h"
23 #include "pkg_depends.h"
24 #include "pkg_vec.h"
25 #include "pkg_hash.h"
26 #include "parse_util.h"
27 #include "pkg_parse.h"
28 #include "opkg_utils.h"
29 #include "sprintf_alloc.h"
30 #include "file_util.h"
31 #include "libbb/libbb.h"
32 #include "libbb/gzip.h"
33
34 void pkg_hash_init(void)
35 {
36 hash_table_init("pkg-hash", &conf->pkg_hash,
37 OPKG_CONF_DEFAULT_HASH_LEN);
38 }
39
40 static void free_pkgs(const char *key, void *entry, void *data)
41 {
42 int i;
43 abstract_pkg_t *ab_pkg;
44
45 /* Each entry in the hash table is an abstract package, which contains
46 * a list of packages that provide the abstract package.
47 */
48
49 ab_pkg = (abstract_pkg_t *) entry;
50
51 if (ab_pkg->pkgs) {
52 for (i = 0; i < ab_pkg->pkgs->len; i++) {
53 pkg_deinit(ab_pkg->pkgs->pkgs[i]);
54 free(ab_pkg->pkgs->pkgs[i]);
55 }
56 }
57
58 abstract_pkg_vec_free(ab_pkg->provided_by);
59 abstract_pkg_vec_free(ab_pkg->replaced_by);
60 pkg_vec_free(ab_pkg->pkgs);
61 free(ab_pkg->depended_upon_by);
62 free(ab_pkg->name);
63 free(ab_pkg);
64 }
65
66 void pkg_hash_deinit(void)
67 {
68 hash_table_foreach(&conf->pkg_hash, free_pkgs, NULL);
69 hash_table_deinit(&conf->pkg_hash);
70 }
71
72 int
73 pkg_hash_add_from_file(const char *file_name,
74 pkg_src_t * src, pkg_dest_t * dest, int is_status_file, int state_flags,
75 void (*cb)(pkg_t *, void *), void *priv)
76 {
77 pkg_t *pkg;
78 FILE *fp;
79 char *buf;
80 const size_t len = 4096;
81 int ret = 0;
82 struct gzip_handle zh;
83
84 if (src && src->gzip) {
85 fp = gzip_fdopen(&zh, file_name);
86 } else {
87 fp = fopen(file_name, "r");
88 }
89
90 if (fp == NULL) {
91 opkg_perror(ERROR, "Failed to open %s", file_name);
92 return -1;
93 }
94
95 buf = xmalloc(len);
96
97 do {
98 pkg = pkg_new();
99 pkg->src = src;
100 pkg->dest = dest;
101 pkg->state_flag |= state_flags;
102
103 ret = parse_from_stream_nomalloc(pkg_parse_line, pkg, fp, 0,
104 &buf, len);
105
106 if (pkg->name == NULL) {
107 /* probably just a blank line */
108 ret = 1;
109 }
110
111 if (ret) {
112 pkg_deinit(pkg);
113 free(pkg);
114 if (ret == -1)
115 break;
116 if (ret == 1)
117 /* Probably a blank line, continue parsing. */
118 ret = 0;
119 continue;
120 }
121
122 if (!(pkg->state_flag & SF_NEED_DETAIL)) {
123 //opkg_msg(DEBUG, "Package %s is unrelated, ignoring.\n", pkg->name);
124 pkg_deinit(pkg);
125 free(pkg);
126 continue;
127 }
128
129 if (!pkg_get_architecture(pkg) || !pkg_get_arch_priority(pkg)) {
130 char *version_str = pkg_version_str_alloc(pkg);
131 opkg_msg(NOTICE, "Package %s version %s has no "
132 "valid architecture, ignoring.\n",
133 pkg->name, version_str);
134 free(version_str);
135 continue;
136 }
137
138 if (cb)
139 cb(pkg, priv);
140 else
141 hash_insert_pkg(pkg, is_status_file);
142
143 } while (!feof(fp));
144
145 free(buf);
146 fclose(fp);
147
148 if (src && src->gzip)
149 gzip_close(&zh);
150
151 return ret;
152 }
153
154 /*
155 * Load in feed files from the cached "src" and/or "src/gz" locations.
156 */
157 int pkg_hash_load_feeds(int state_flags, void (*cb)(pkg_t *, void *), void *priv)
158 {
159 pkg_src_list_elt_t *iter;
160 pkg_src_t *src;
161 char *list_file, *lists_dir;
162
163 opkg_msg(INFO, "\n");
164
165 lists_dir = conf->restrict_to_default_dest ?
166 conf->default_dest->lists_dir : conf->lists_dir;
167
168 for (iter = void_list_first(&conf->pkg_src_list); iter;
169 iter = void_list_next(&conf->pkg_src_list, iter)) {
170
171 src = (pkg_src_t *) iter->data;
172
173 sprintf_alloc(&list_file, "%s/%s", lists_dir, src->name);
174
175 if (file_exists(list_file)) {
176 if (pkg_hash_add_from_file(list_file, src, NULL, 0, state_flags, cb, priv)) {
177 free(list_file);
178 return -1;
179 }
180 }
181 free(list_file);
182 }
183
184 return 0;
185 }
186
187 /*
188 * Load in status files from the configured "dest"s.
189 */
190 int pkg_hash_load_status_files(void (*cb)(pkg_t *, void *), void *priv)
191 {
192 pkg_dest_list_elt_t *iter;
193 pkg_dest_t *dest;
194
195 opkg_msg(INFO, "\n");
196
197 for (iter = void_list_first(&conf->pkg_dest_list); iter;
198 iter = void_list_next(&conf->pkg_dest_list, iter)) {
199
200 dest = (pkg_dest_t *) iter->data;
201
202 if (file_exists(dest->status_file_name)) {
203 if (pkg_hash_add_from_file
204 (dest->status_file_name, NULL, dest, 1, SF_NEED_DETAIL, cb, priv))
205 return -1;
206 }
207 }
208
209 return 0;
210 }
211
212 static void
213 pkg_hash_load_package_details_helper(const char *pkg_name, void *entry, void *data)
214 {
215 int *count = data;
216 abstract_pkg_t *ab_pkg = (abstract_pkg_t *) entry;
217
218 if (ab_pkg->state_flag & SF_NEED_DETAIL) {
219 if (ab_pkg->state_flag & SF_MARKED) {
220 opkg_msg(DEBUG, "skipping already seen flagged abpkg %s\n",
221 ab_pkg->name);
222 return;
223 }
224
225 opkg_msg(DEBUG, "found yet incomplete flagged abpkg %s\n",
226 ab_pkg->name);
227
228 (*count)++;
229 ab_pkg->state_flag |= SF_MARKED;
230 }
231 }
232
233 int pkg_hash_load_package_details(void)
234 {
235 int n_need_detail;
236
237 while (1) {
238 pkg_hash_load_feeds(0, NULL, NULL);
239
240 n_need_detail = 0;
241 hash_table_foreach(&conf->pkg_hash, pkg_hash_load_package_details_helper, &n_need_detail);
242
243 if (n_need_detail > 0)
244 opkg_msg(DEBUG, "Found %d packages requiring details, reloading feeds\n", n_need_detail);
245 else
246 break;
247 }
248
249 return 0;
250 }
251
252 static int
253 pkg_hash_check_unresolved(pkg_t *maybe)
254 {
255 char **unresolved = NULL;
256 char **tmp;
257 pkg_vec_t *depends;
258 int res = 0;
259
260 depends = pkg_vec_alloc();
261 pkg_hash_fetch_unsatisfied_dependencies(maybe, depends, &unresolved, 1);
262
263 if (unresolved) {
264 res = 1;
265 tmp = unresolved;
266 while (*tmp)
267 free(*(tmp++));
268 free(unresolved);
269 }
270 pkg_vec_free(depends);
271
272 return res;
273 }
274
275 pkg_t *pkg_hash_fetch_best_installation_candidate(abstract_pkg_t * apkg,
276 int (*constraint_fcn) (pkg_t *
277 pkg,
278 void
279 *cdata),
280 void *cdata, int quiet)
281 {
282 int i, j;
283 int nprovides = 0;
284 int nmatching = 0;
285 int wrong_arch_found = 0;
286 int arch_priority;
287 int good_pkg_score = 0;
288 pkg_vec_t *matching_pkgs;
289 abstract_pkg_vec_t *matching_apkgs;
290 abstract_pkg_vec_t *provided_apkg_vec;
291 abstract_pkg_t **provided_apkgs;
292 abstract_pkg_vec_t *providers;
293 pkg_t *latest_installed_parent = NULL;
294 pkg_t *latest_matching = NULL;
295 pkg_t *priorized_matching = NULL;
296 pkg_t *held_pkg = NULL;
297 pkg_t *good_pkg_by_name = NULL;
298
299 if (apkg == NULL || apkg->provided_by == NULL
300 || (apkg->provided_by->len == 0))
301 return NULL;
302
303 matching_pkgs = pkg_vec_alloc();
304 matching_apkgs = abstract_pkg_vec_alloc();
305 providers = abstract_pkg_vec_alloc();
306
307 opkg_msg(DEBUG, "Best installation candidate for %s:\n", apkg->name);
308
309 provided_apkg_vec = apkg->provided_by;
310 nprovides = provided_apkg_vec->len;
311 provided_apkgs = provided_apkg_vec->pkgs;
312 if (nprovides > 1)
313 opkg_msg(DEBUG, "apkg=%s nprovides=%d.\n", apkg->name,
314 nprovides);
315
316 /* accumulate all the providers */
317 for (i = 0; i < nprovides; i++) {
318 abstract_pkg_t *provider_apkg = provided_apkgs[i];
319 opkg_msg(DEBUG, "Adding %s to providers.\n",
320 provider_apkg->name);
321 abstract_pkg_vec_insert(providers, provider_apkg);
322 }
323 nprovides = providers->len;
324
325 for (i = 0; i < nprovides; i++) {
326 abstract_pkg_t *provider_apkg =
327 abstract_pkg_vec_get(providers, i);
328 abstract_pkg_t *replacement_apkg = NULL;
329 pkg_vec_t *vec;
330
331 if (provider_apkg->replaced_by
332 && provider_apkg->replaced_by->len) {
333 replacement_apkg = provider_apkg->replaced_by->pkgs[0];
334 if (provider_apkg->replaced_by->len > 1) {
335 opkg_msg(NOTICE, "Multiple replacers for %s, "
336 "using first one (%s).\n",
337 provider_apkg->name,
338 replacement_apkg->name);
339 }
340 }
341
342 if (replacement_apkg)
343 opkg_msg(DEBUG,
344 "replacement_apkg=%s for provider_apkg=%s.\n",
345 replacement_apkg->name, provider_apkg->name);
346
347 if (replacement_apkg && (replacement_apkg != provider_apkg)) {
348 if (abstract_pkg_vec_contains
349 (providers, replacement_apkg))
350 continue;
351 else
352 provider_apkg = replacement_apkg;
353 }
354
355 if (!(vec = provider_apkg->pkgs)) {
356 opkg_msg(DEBUG, "No pkgs for provider_apkg %s.\n",
357 provider_apkg->name);
358 continue;
359 }
360
361 /* now check for supported architecture */
362 {
363 int max_count = 0;
364
365 /* count packages matching max arch priority and keep track of last one */
366 for (j = 0; j < vec->len; j++) {
367 pkg_t *maybe = vec->pkgs[j];
368 arch_priority = pkg_get_arch_priority(maybe);
369
370 opkg_msg(DEBUG,
371 "%s arch=%s arch_priority=%d version=%s.\n",
372 maybe->name, pkg_get_architecture(maybe),
373 arch_priority, pkg_get_string(maybe, PKG_VERSION));
374 /* We make sure not to add the same package twice. Need to search for the reason why
375 they show up twice sometimes. */
376 if ((arch_priority > 0)
377 &&
378 (!pkg_vec_contains(matching_pkgs, maybe))) {
379 if (!pkg_hash_check_unresolved(maybe)) {
380 max_count++;
381 abstract_pkg_vec_insert(matching_apkgs,
382 maybe->parent);
383 pkg_vec_insert(matching_pkgs, maybe);
384 }
385 }
386 }
387
388 if (vec->len > 0 && matching_pkgs->len < 1)
389 wrong_arch_found = 1;
390 }
391 }
392
393 if (matching_pkgs->len < 1) {
394 if (wrong_arch_found)
395 opkg_msg(ERROR, "Packages for %s found, but"
396 " incompatible with the architectures configured\n",
397 apkg->name);
398 pkg_vec_free(matching_pkgs);
399 abstract_pkg_vec_free(matching_apkgs);
400 abstract_pkg_vec_free(providers);
401 return NULL;
402 }
403
404 if (matching_pkgs->len > 1)
405 pkg_vec_sort(matching_pkgs,
406 pkg_name_version_and_architecture_compare);
407 if (matching_apkgs->len > 1)
408 abstract_pkg_vec_sort(matching_apkgs, abstract_pkg_name_compare);
409
410 for (i = 0; i < matching_pkgs->len; i++) {
411 pkg_t *matching = matching_pkgs->pkgs[i];
412 if (constraint_fcn(matching, cdata)) {
413 int score = 1;
414 if (strcmp(matching->name, apkg->name) == 0)
415 score++;
416
417 opkg_msg(DEBUG, "Candidate: %s %s (score %d).\n",
418 matching->name, pkg_get_string(matching, PKG_VERSION),
419 score);
420 if (score < good_pkg_score)
421 continue;
422
423 good_pkg_by_name = matching;
424 good_pkg_score = score;
425 /* It has been provided by hand, so it is what user want */
426 if (matching->provided_by_hand == 1)
427 break;
428 }
429 }
430
431 for (i = 0; i < matching_pkgs->len; i++) {
432 pkg_t *matching = matching_pkgs->pkgs[i];
433 latest_matching = matching;
434 if (matching->parent->state_status == SS_INSTALLED
435 || matching->parent->state_status == SS_UNPACKED)
436 latest_installed_parent = matching;
437 if (matching->state_flag & (SF_HOLD | SF_PREFER)) {
438 if (held_pkg)
439 opkg_msg(NOTICE,
440 "Multiple packages (%s and %s) providing"
441 " same name marked HOLD or PREFER. "
442 "Using latest.\n", held_pkg->name,
443 matching->name);
444 held_pkg = matching;
445 }
446 }
447
448 if (!good_pkg_by_name && !held_pkg && !latest_installed_parent
449 && matching_apkgs->len > 1 && !quiet) {
450 int prio = 0;
451 for (i = 0; i < matching_pkgs->len; i++) {
452 pkg_t *matching = matching_pkgs->pkgs[i];
453 arch_priority = pkg_get_arch_priority(matching);
454 if (arch_priority > prio) {
455 priorized_matching = matching;
456 prio = arch_priority;
457 opkg_msg(DEBUG, "Match %s with priority %i.\n",
458 matching->name, prio);
459 }
460 }
461
462 }
463
464 if (conf->verbosity >= INFO && matching_apkgs->len > 1) {
465 opkg_msg(INFO, "%d matching pkgs for apkg=%s:\n",
466 matching_pkgs->len, apkg->name);
467 for (i = 0; i < matching_pkgs->len; i++) {
468 pkg_t *matching = matching_pkgs->pkgs[i];
469 opkg_msg(INFO, "%s %s %s\n",
470 matching->name, pkg_get_string(matching, PKG_VERSION),
471 pkg_get_architecture(matching));
472 }
473 }
474
475 nmatching = matching_apkgs->len;
476
477 pkg_vec_free(matching_pkgs);
478 abstract_pkg_vec_free(matching_apkgs);
479 abstract_pkg_vec_free(providers);
480
481 if (good_pkg_by_name) { /* We found a good candidate, we will install it */
482 return good_pkg_by_name;
483 }
484 if (held_pkg) {
485 opkg_msg(INFO, "Using held package %s.\n", held_pkg->name);
486 return held_pkg;
487 }
488 if (latest_installed_parent) {
489 opkg_msg(INFO,
490 "Using latest version of installed package %s.\n",
491 latest_installed_parent->name);
492 return latest_installed_parent;
493 }
494 if (priorized_matching) {
495 opkg_msg(INFO, "Using priorized matching %s %s %s.\n",
496 priorized_matching->name, pkg_get_string(priorized_matching, PKG_VERSION),
497 pkg_get_architecture(priorized_matching));
498 return priorized_matching;
499 }
500 if (nmatching > 1) {
501 opkg_msg(INFO, "No matching pkg out of %d matching_apkgs.\n",
502 nmatching);
503 return NULL;
504 }
505 if (latest_matching) {
506 opkg_msg(INFO, "Using latest matching %s %s %s.\n",
507 latest_matching->name, pkg_get_string(latest_matching, PKG_VERSION),
508 pkg_get_architecture(latest_matching));
509 return latest_matching;
510 }
511 return NULL;
512 }
513
514 static int pkg_name_constraint_fcn(pkg_t * pkg, void *cdata)
515 {
516 const char *name = (const char *)cdata;
517
518 if (strcmp(pkg->name, name) == 0)
519 return 1;
520 else
521 return 0;
522 }
523
524 static pkg_vec_t *pkg_vec_fetch_by_name(const char *pkg_name)
525 {
526 abstract_pkg_t *ab_pkg;
527
528 if (!(ab_pkg = abstract_pkg_fetch_by_name(pkg_name)))
529 return NULL;
530
531 if (ab_pkg->pkgs)
532 return ab_pkg->pkgs;
533
534 if (ab_pkg->provided_by) {
535 abstract_pkg_t *abpkg =
536 abstract_pkg_vec_get(ab_pkg->provided_by, 0);
537 if (abpkg != NULL)
538 return abpkg->pkgs;
539 else
540 return ab_pkg->pkgs;
541 }
542
543 return NULL;
544 }
545
546 pkg_t *pkg_hash_fetch_best_installation_candidate_by_name(const char *name)
547 {
548 abstract_pkg_t *apkg = NULL;
549
550 if (!(apkg = abstract_pkg_fetch_by_name(name)))
551 return NULL;
552
553 return pkg_hash_fetch_best_installation_candidate(apkg,
554 pkg_name_constraint_fcn,
555 apkg->name, 0);
556 }
557
558 pkg_t *pkg_hash_fetch_by_name_version(const char *pkg_name, const char *version)
559 {
560 pkg_vec_t *vec;
561 int i;
562 char *version_str = NULL;
563
564 if (!(vec = pkg_vec_fetch_by_name(pkg_name)))
565 return NULL;
566
567 for (i = 0; i < vec->len; i++) {
568 version_str = pkg_version_str_alloc(vec->pkgs[i]);
569 if (!strcmp(version_str, version)) {
570 free(version_str);
571 break;
572 }
573 free(version_str);
574 }
575
576 if (i == vec->len)
577 return NULL;
578
579 return vec->pkgs[i];
580 }
581
582 pkg_t *pkg_hash_fetch_installed_by_name_dest(const char *pkg_name,
583 pkg_dest_t * dest)
584 {
585 pkg_vec_t *vec;
586 int i;
587
588 if (!(vec = pkg_vec_fetch_by_name(pkg_name))) {
589 return NULL;
590 }
591
592 for (i = 0; i < vec->len; i++)
593 if ((vec->pkgs[i]->state_status == SS_INSTALLED
594 || vec->pkgs[i]->state_status == SS_UNPACKED)
595 && vec->pkgs[i]->dest == dest) {
596 return vec->pkgs[i];
597 }
598
599 return NULL;
600 }
601
602 pkg_t *pkg_hash_fetch_installed_by_name(const char *pkg_name)
603 {
604 pkg_vec_t *vec;
605 int i;
606
607 if (!(vec = pkg_vec_fetch_by_name(pkg_name))) {
608 return NULL;
609 }
610
611 for (i = 0; i < vec->len; i++) {
612 if (vec->pkgs[i]->state_status == SS_INSTALLED
613 || vec->pkgs[i]->state_status == SS_UNPACKED) {
614 return vec->pkgs[i];
615 }
616 }
617
618 return NULL;
619 }
620
621 static void
622 pkg_hash_fetch_available_helper(const char *pkg_name, void *entry, void *data)
623 {
624 int j;
625 abstract_pkg_t *ab_pkg = (abstract_pkg_t *) entry;
626 pkg_vec_t *all = (pkg_vec_t *) data;
627 pkg_vec_t *pkg_vec = ab_pkg->pkgs;
628
629 if (!pkg_vec)
630 return;
631
632 for (j = 0; j < pkg_vec->len; j++) {
633 pkg_t *pkg = pkg_vec->pkgs[j];
634 pkg_vec_insert(all, pkg);
635 }
636 }
637
638 void pkg_hash_fetch_available(pkg_vec_t * all)
639 {
640 hash_table_foreach(&conf->pkg_hash, pkg_hash_fetch_available_helper,
641 all);
642 }
643
644 static void
645 pkg_hash_fetch_all_installed_helper(const char *pkg_name, void *entry,
646 void *data)
647 {
648 abstract_pkg_t *ab_pkg = (abstract_pkg_t *) entry;
649 pkg_vec_t *all = (pkg_vec_t *) data;
650 pkg_vec_t *pkg_vec = ab_pkg->pkgs;
651 int j;
652
653 if (!pkg_vec)
654 return;
655
656 for (j = 0; j < pkg_vec->len; j++) {
657 pkg_t *pkg = pkg_vec->pkgs[j];
658 if (pkg->state_status == SS_INSTALLED
659 || pkg->state_status == SS_UNPACKED)
660 pkg_vec_insert(all, pkg);
661 }
662 }
663
664 void pkg_hash_fetch_all_installed(pkg_vec_t * all)
665 {
666 hash_table_foreach(&conf->pkg_hash, pkg_hash_fetch_all_installed_helper,
667 all);
668 }
669
670 /*
671 * This assumes that the abstract pkg doesn't exist.
672 */
673 static abstract_pkg_t *add_new_abstract_pkg_by_name(const char *pkg_name)
674 {
675 abstract_pkg_t *ab_pkg;
676
677 ab_pkg = abstract_pkg_new();
678
679 ab_pkg->name = xstrdup(pkg_name);
680 hash_table_insert(&conf->pkg_hash, pkg_name, ab_pkg);
681
682 return ab_pkg;
683 }
684
685 abstract_pkg_t *ensure_abstract_pkg_by_name(const char *pkg_name)
686 {
687 abstract_pkg_t *ab_pkg;
688
689 if (!(ab_pkg = abstract_pkg_fetch_by_name(pkg_name)))
690 ab_pkg = add_new_abstract_pkg_by_name(pkg_name);
691
692 return ab_pkg;
693 }
694
695 void hash_insert_pkg(pkg_t * pkg, int set_status)
696 {
697 abstract_pkg_t *ab_pkg;
698
699 ab_pkg = ensure_abstract_pkg_by_name(pkg->name);
700 if (!ab_pkg->pkgs)
701 ab_pkg->pkgs = pkg_vec_alloc();
702
703 if (pkg->state_status == SS_INSTALLED) {
704 ab_pkg->state_status = SS_INSTALLED;
705 } else if (pkg->state_status == SS_UNPACKED) {
706 ab_pkg->state_status = SS_UNPACKED;
707 }
708
709 buildDepends(pkg);
710
711 buildProvides(ab_pkg, pkg);
712
713 init_providelist(pkg, NULL);
714
715 /* Need to build the conflicts graph before replaces for correct
716 * calculation of replaced_by relation.
717 */
718 buildConflicts(pkg);
719
720 buildReplaces(ab_pkg, pkg);
721
722 buildDependedUponBy(pkg, ab_pkg);
723
724 pkg_vec_insert_merge(ab_pkg->pkgs, pkg, set_status);
725 pkg->parent = ab_pkg;
726 }
727
728 static const char *strip_offline_root(const char *file_name)
729 {
730 unsigned int len;
731
732 if (conf->offline_root) {
733 len = strlen(conf->offline_root);
734 if (strncmp(file_name, conf->offline_root, len) == 0)
735 file_name += len;
736 }
737
738 return file_name;
739 }
740
741 void file_hash_remove(const char *file_name)
742 {
743 file_name = strip_offline_root(file_name);
744 hash_table_remove(&conf->file_hash, file_name);
745 }
746
747 pkg_t *file_hash_get_file_owner(const char *file_name)
748 {
749 file_name = strip_offline_root(file_name);
750 return hash_table_get(&conf->file_hash, file_name);
751 }
752
753 void file_hash_set_file_owner(const char *file_name, pkg_t * owning_pkg)
754 {
755 pkg_t *old_owning_pkg;
756 int file_name_len = strlen(file_name);
757
758 if (file_name[file_name_len - 1] == '/')
759 return;
760
761 file_name = strip_offline_root(file_name);
762
763 old_owning_pkg = hash_table_get(&conf->file_hash, file_name);
764 hash_table_insert(&conf->file_hash, file_name, owning_pkg);
765
766 if (old_owning_pkg) {
767 pkg_get_installed_files(old_owning_pkg);
768 str_list_remove_elt(old_owning_pkg->installed_files, file_name);
769 pkg_free_installed_files(old_owning_pkg);
770
771 /* mark this package to have its filelist written */
772 old_owning_pkg->state_flag |= SF_FILELIST_CHANGED;
773 owning_pkg->state_flag |= SF_FILELIST_CHANGED;
774 }
775 }