- make installed packages pass much faster
[platform/upstream/libsolv.git] / src / rules.c
1 /*
2  * Copyright (c) 2007-2009, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * rules.c
10  *
11  * SAT based dependency solver
12  */
13
14 #include <stdio.h>
15 #include <stdlib.h>
16 #include <unistd.h>
17 #include <string.h>
18 #include <assert.h>
19
20 #include "solver.h"
21 #include "bitmap.h"
22 #include "pool.h"
23 #include "poolarch.h"
24 #include "util.h"
25 #include "policy.h"
26 #include "solverdebug.h"
27
28 #define RULES_BLOCK 63
29
30 static void addrpmruleinfo(Solver *solv, Id p, Id d, int type, Id dep);
31
32 /*-------------------------------------------------------------------
33  * Check if dependency is possible
34  * 
35  * mirrors solver_dep_fulfilled but uses map m instead of the decisionmap
36  */
37
38 static inline int
39 dep_possible(Solver *solv, Id dep, Map *m)
40 {
41   Pool *pool = solv->pool;
42   Id p, pp;
43
44   if (ISRELDEP(dep))
45     {
46       Reldep *rd = GETRELDEP(pool, dep);
47       if (rd->flags == REL_AND)
48         {
49           if (!dep_possible(solv, rd->name, m))
50             return 0;
51           return dep_possible(solv, rd->evr, m);
52         }
53       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_SPLITPROVIDES)
54         return solver_splitprovides(solv, rd->evr);
55       if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_INSTALLED)
56         return solver_dep_installed(solv, rd->evr);
57     }
58   FOR_PROVIDES(p, pp, dep)
59     {
60       if (MAPTST(m, p))
61         return 1;
62     }
63   return 0;
64 }
65
66 /********************************************************************
67  *
68  * Rule handling
69  *
70  * - unify rules, remove duplicates
71  */
72
73 /*-------------------------------------------------------------------
74  *
75  * compare rules for unification sort
76  *
77  */
78
79 static int
80 unifyrules_sortcmp(const void *ap, const void *bp, void *dp)
81 {
82   Pool *pool = dp;
83   Rule *a = (Rule *)ap;
84   Rule *b = (Rule *)bp;
85   Id *ad, *bd;
86   int x;
87
88   x = a->p - b->p;
89   if (x)
90     return x;                          /* p differs */
91
92   /* identical p */
93   if (a->d == 0 && b->d == 0)
94     return a->w2 - b->w2;              /* assertion: return w2 diff */
95
96   if (a->d == 0)                       /* a is assertion, b not */
97     {
98       x = a->w2 - pool->whatprovidesdata[b->d];
99       return x ? x : -1;
100     }
101
102   if (b->d == 0)                       /* b is assertion, a not */
103     {
104       x = pool->whatprovidesdata[a->d] - b->w2;
105       return x ? x : 1;
106     }
107
108   /* compare whatprovidesdata */
109   ad = pool->whatprovidesdata + a->d;
110   bd = pool->whatprovidesdata + b->d;
111   while (*bd)
112     if ((x = *ad++ - *bd++) != 0)
113       return x;
114   return *ad;
115 }
116
117 int
118 solver_samerule(Solver *solv, Rule *r1, Rule *r2)
119 {
120   return unifyrules_sortcmp(r1, r2, solv->pool);
121 }
122
123
124 /*-------------------------------------------------------------------
125  *
126  * unify rules
127  * go over all rules and remove duplicates
128  */
129
130 void
131 solver_unifyrules(Solver *solv)
132 {
133   Pool *pool = solv->pool;
134   int i, j;
135   Rule *ir, *jr;
136
137   if (solv->nrules <= 1)               /* nothing to unify */
138     return;
139
140   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- unifyrules -----\n");
141
142   /* sort rules first */
143   sat_sort(solv->rules + 1, solv->nrules - 1, sizeof(Rule), unifyrules_sortcmp, solv->pool);
144
145   /* prune rules
146    * i = unpruned
147    * j = pruned
148    */
149   jr = 0;
150   for (i = j = 1, ir = solv->rules + i; i < solv->nrules; i++, ir++)
151     {
152       if (jr && !unifyrules_sortcmp(ir, jr, pool))
153         continue;                      /* prune! */
154       jr = solv->rules + j++;          /* keep! */
155       if (ir != jr)
156         *jr = *ir;
157     }
158
159   /* reduced count from nrules to j rules */
160   POOL_DEBUG(SAT_DEBUG_STATS, "pruned rules from %d to %d\n", solv->nrules, j);
161
162   /* adapt rule buffer */
163   solv->nrules = j;
164   solv->rules = sat_extend_resize(solv->rules, solv->nrules, sizeof(Rule), RULES_BLOCK);
165
166   /*
167    * debug: log rule statistics
168    */
169   IF_POOLDEBUG (SAT_DEBUG_STATS)
170     {
171       int binr = 0;
172       int lits = 0;
173       Id *dp;
174       Rule *r;
175
176       for (i = 1; i < solv->nrules; i++)
177         {
178           r = solv->rules + i;
179           if (r->d == 0)
180             binr++;
181           else
182             {
183               dp = solv->pool->whatprovidesdata + r->d;
184               while (*dp++)
185                 lits++;
186             }
187         }
188       POOL_DEBUG(SAT_DEBUG_STATS, "  binary: %d\n", binr);
189       POOL_DEBUG(SAT_DEBUG_STATS, "  normal: %d, %d literals\n", solv->nrules - 1 - binr, lits);
190     }
191   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- unifyrules end -----\n");
192 }
193
194 #if 0
195
196 /*
197  * hash rule
198  */
199
200 static Hashval
201 hashrule(Solver *solv, Id p, Id d, int n)
202 {
203   unsigned int x = (unsigned int)p;
204   int *dp;
205
206   if (n <= 1)
207     return (x * 37) ^ (unsigned int)d;
208   dp = solv->pool->whatprovidesdata + d;
209   while (*dp)
210     x = (x * 37) ^ (unsigned int)*dp++;
211   return x;
212 }
213 #endif
214
215
216 /*-------------------------------------------------------------------
217  * 
218  */
219
220 /*
221  * add rule
222  *  p = direct literal; always < 0 for installed rpm rules
223  *  d, if < 0 direct literal, if > 0 offset into whatprovides, if == 0 rule is assertion (look at p only)
224  *
225  *
226  * A requires b, b provided by B1,B2,B3 => (-A|B1|B2|B3)
227  *
228  * p < 0 : pkg id of A
229  * d > 0 : Offset in whatprovidesdata (list of providers of b)
230  *
231  * A conflicts b, b provided by B1,B2,B3 => (-A|-B1), (-A|-B2), (-A|-B3)
232  * p < 0 : pkg id of A
233  * d < 0 : Id of solvable (e.g. B1)
234  *
235  * d == 0: unary rule, assertion => (A) or (-A)
236  *
237  *   Install:    p > 0, d = 0   (A)             user requested install
238  *   Remove:     p < 0, d = 0   (-A)            user requested remove (also: uninstallable)
239  *   Requires:   p < 0, d > 0   (-A|B1|B2|...)  d: <list of providers for requirement of p>
240  *   Updates:    p > 0, d > 0   (A|B1|B2|...)   d: <list of updates for solvable p>
241  *   Conflicts:  p < 0, d < 0   (-A|-B)         either p (conflict issuer) or d (conflict provider) (binary rule)
242  *                                              also used for obsoletes
243  *   ?:          p > 0, d < 0   (A|-B)          
244  *   No-op ?:    p = 0, d = 0   (null)          (used as policy rule placeholder)
245  *
246  *   resulting watches:
247  *   ------------------
248  *   Direct assertion (no watch needed)( if d <0 ) --> d = 0, w1 = p, w2 = 0
249  *   Binary rule: p = first literal, d = 0, w2 = second literal, w1 = p
250  *   every other : w1 = p, w2 = whatprovidesdata[d];
251  *   Disabled rule: w1 = 0
252  *
253  *   always returns a rule for non-rpm rules
254  */
255
256 Rule *
257 solver_addrule(Solver *solv, Id p, Id d)
258 {
259   Pool *pool = solv->pool;
260   Rule *r = 0;
261   Id *dp = 0;
262
263   int n = 0;                           /* number of literals in rule - 1
264                                           0 = direct assertion (single literal)
265                                           1 = binary rule
266                                           >1 = 
267                                         */
268
269   /* it often happenes that requires lead to adding the same rpm rule
270    * multiple times, so we prune those duplicates right away to make
271    * the work for unifyrules a bit easier */
272
273   if (solv->nrules                      /* we already have rules */
274       && !solv->rpmrules_end)           /* but are not done with rpm rules */
275     {
276       r = solv->rules + solv->nrules - 1;   /* get the last added rule */
277       if (r->p == p && r->d == d && d != 0)   /* identical and not user requested */
278         return r;
279     }
280
281     /*
282      * compute number of literals (n) in rule
283      */
284     
285   if (d < 0)
286     {
287       /* always a binary rule */
288       if (p == d)
289         return 0;                      /* ignore self conflict */
290       n = 1;
291     }
292   else if (d > 0)
293     {
294       for (dp = pool->whatprovidesdata + d; *dp; dp++, n++)
295         if (*dp == -p)
296           return 0;                     /* rule is self-fulfilling */
297         
298       if (n == 1)   /* have single provider */
299         d = dp[-1];                     /* take single literal */
300     }
301
302   if (n == 1 && p > d && !solv->rpmrules_end)
303     {
304       /* smallest literal first so we can find dups */
305       n = p; p = d; d = n;             /* p <-> d */
306       n = 1;                           /* re-set n, was used as temp var */
307     }
308
309   /*
310    * check for duplicate
311    */
312     
313   /* check if the last added rule (r) is exactly the same as what we're looking for. */
314   if (r && n == 1 && !r->d && r->p == p && r->w2 == d)
315     return r;  /* binary rule */
316
317     /* have n-ary rule with same first literal, check other literals */
318   if (r && n > 1 && r->d && r->p == p)
319     {
320       /* Rule where d is an offset in whatprovidesdata */
321       Id *dp2;
322       if (d == r->d)
323         return r;
324       dp2 = pool->whatprovidesdata + r->d;
325       for (dp = pool->whatprovidesdata + d; *dp; dp++, dp2++)
326         if (*dp != *dp2)
327           break;
328       if (*dp == *dp2)
329         return r;
330    }
331
332   /*
333    * allocate new rule
334    */
335
336   /* extend rule buffer */
337   solv->rules = sat_extend(solv->rules, solv->nrules, 1, sizeof(Rule), RULES_BLOCK);
338   r = solv->rules + solv->nrules++;    /* point to rule space */
339
340     /*
341      * r = new rule
342      */
343     
344   r->p = p;
345   if (n == 0)
346     {
347       /* direct assertion, no watch needed */
348       r->d = 0;
349       r->w1 = p;
350       r->w2 = 0;
351     }
352   else if (n == 1)
353     {
354       /* binary rule */
355       r->d = 0;
356       r->w1 = p;
357       r->w2 = d;
358     }
359   else
360     {
361       r->d = d;
362       r->w1 = p;
363       r->w2 = pool->whatprovidesdata[d];
364     }
365   r->n1 = 0;
366   r->n2 = 0;
367
368   IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
369     {
370       POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "  Add rule: ");
371       solver_printrule(solv, SAT_DEBUG_RULE_CREATION, r);
372     }
373
374   return r;
375 }
376
377
378 /******************************************************************************
379  ***
380  *** rpm rule part: create rules representing the package dependencies
381  ***
382  ***/
383
384 /*
385  *  special multiversion patch conflict handling:
386  *  a patch conflict is also satisfied, if some other
387  *  version with the same name/arch that doesn't conflict
388  *  get's installed. The generated rule is thus:
389  *  -patch|-cpack|opack1|opack2|...
390  */
391 static Id
392 makemultiversionconflict(Solver *solv, Id n, Id con)
393 {
394   Pool *pool = solv->pool;
395   Solvable *s, *sn;
396   Queue q;
397   Id p, pp, qbuf[64];
398
399   sn = pool->solvables + n;
400   queue_init_buffer(&q, qbuf, sizeof(qbuf)/sizeof(*qbuf));
401   queue_push(&q, -n);
402   FOR_PROVIDES(p, pp, sn->name)
403     {
404       s = pool->solvables + p;
405       if (s->name != sn->name || s->arch != sn->arch)
406         continue;
407       if (!MAPTST(&solv->noobsoletes, p))
408         continue;
409       if (pool_match_nevr(pool, pool->solvables + p, con))
410         continue;
411       /* here we have a multiversion solvable that doesn't conflict */
412       /* thus we're not in conflict if it is installed */
413       queue_push(&q, p);
414     }
415   if (q.count == 1)
416     return -n;  /* no other package found, generate normal conflict */
417   return pool_queuetowhatprovides(pool, &q);
418 }
419
420 static inline void
421 addrpmrule(Solver *solv, Id p, Id d, int type, Id dep)
422 {
423   if (!solv->ruleinfoq)
424     solver_addrule(solv, p, d);
425   else
426     addrpmruleinfo(solv, p, d, type, dep);
427 }
428
429 /*-------------------------------------------------------------------
430  * 
431  * add (install) rules for solvable
432  * 
433  * s: Solvable for which to add rules
434  * m: m[s] = 1 for solvables which have rules, prevent rule duplication
435  * 
436  * Algorithm: 'visit all nodes of a graph'. The graph nodes are
437  *  solvables, the edges their dependencies.
438  *  Starting from an installed solvable, this will create all rules
439  *  representing the graph created by the solvables dependencies.
440  * 
441  * for unfulfilled requirements, conflicts, obsoletes,....
442  * add a negative assertion for solvables that are not installable
443  * 
444  * It will also create rules for all solvables referenced by 's'
445  *  i.e. descend to all providers of requirements of 's'
446  *
447  */
448
449 void
450 solver_addrpmrulesforsolvable(Solver *solv, Solvable *s, Map *m)
451 {
452   Pool *pool = solv->pool;
453   Repo *installed = solv->installed;
454
455   /* 'work' queue. keeps Ids of solvables we still have to work on.
456      And buffer for it. */
457   Queue workq;
458   Id workqbuf[64];
459     
460   int i;
461     /* if to add rules for broken deps ('rpm -V' functionality)
462      * 0 = yes, 1 = no
463      */
464   int dontfix;
465     /* Id var and pointer for each dependency
466      * (not used in parallel)
467      */
468   Id req, *reqp;
469   Id con, *conp;
470   Id obs, *obsp;
471   Id rec, *recp;
472   Id sug, *sugp;
473   Id p, pp;             /* whatprovides loops */
474   Id *dp;               /* ptr to 'whatprovides' */
475   Id n;                 /* Id for current solvable 's' */
476
477   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforsolvable -----\n");
478
479   queue_init_buffer(&workq, workqbuf, sizeof(workqbuf)/sizeof(*workqbuf));
480   queue_push(&workq, s - pool->solvables);      /* push solvable Id to work queue */
481
482   /* loop until there's no more work left */
483   while (workq.count)
484     {
485       /*
486        * n: Id of solvable
487        * s: Pointer to solvable
488        */
489
490       n = queue_shift(&workq);          /* 'pop' next solvable to work on from queue */
491       if (m)
492         {
493           if (MAPTST(m, n))             /* continue if already visited */
494             continue;
495           MAPSET(m, n);                 /* mark as visited */
496         }
497
498       s = pool->solvables + n;          /* s = Solvable in question */
499
500       dontfix = 0;
501       if (installed                     /* Installed system available */
502           && !solv->fixsystem           /* NOT repair errors in rpm dependency graph */
503           && s->repo == installed       /* solvable is installed */
504           && (!solv->fixmap.size || !MAPTST(&solv->fixmap, n - installed->start)))
505         {
506           dontfix = 1;                  /* dont care about broken rpm deps */
507         }
508
509       if (!dontfix
510           && s->arch != ARCH_SRC
511           && s->arch != ARCH_NOSRC
512           && !pool_installable(pool, s))
513         {
514           POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "package %s [%d] is not installable\n", solvable2str(pool, s), (Id)(s - pool->solvables));
515           addrpmrule(solv, -n, 0, SOLVER_RULE_RPM_NOT_INSTALLABLE, 0);
516         }
517
518       /* yet another SUSE hack, sigh */
519       if (pool->nscallback && !strncmp("product:", id2str(pool, s->name), 8))
520         {
521           Id buddy = pool->nscallback(pool, pool->nscallbackdata, NAMESPACE_PRODUCTBUDDY, n);
522           if (buddy > 0 && buddy != SYSTEMSOLVABLE && buddy != n && buddy < pool->nsolvables)
523             {
524               addrpmrule(solv, n, -buddy, SOLVER_RULE_RPM_PACKAGE_REQUIRES, solvable_selfprovidedep(pool->solvables + n));
525               addrpmrule(solv, buddy, -n, SOLVER_RULE_RPM_PACKAGE_REQUIRES, solvable_selfprovidedep(pool->solvables + buddy)); 
526               if (m && !MAPTST(m, buddy))
527                 queue_push(&workq, buddy);
528             }
529         }
530
531       /*-----------------------------------------
532        * check requires of s
533        */
534
535       if (s->requires)
536         {
537           reqp = s->repo->idarraydata + s->requires;
538           while ((req = *reqp++) != 0)            /* go through all requires */
539             {
540               if (req == SOLVABLE_PREREQMARKER)   /* skip the marker */
541                 continue;
542
543               /* find list of solvables providing 'req' */
544               dp = pool_whatprovides_ptr(pool, req);
545
546               if (*dp == SYSTEMSOLVABLE)          /* always installed */
547                 continue;
548
549               if (dontfix)
550                 {
551                   /* the strategy here is to not insist on dependencies
552                    * that are already broken. so if we find one provider
553                    * that was already installed, we know that the
554                    * dependency was not broken before so we enforce it */
555                  
556                   /* check if any of the providers for 'req' is installed */
557                   for (i = 0; (p = dp[i]) != 0; i++)
558                     {
559                       if (pool->solvables[p].repo == installed)
560                         break;          /* provider was installed */
561                     }
562                   /* didn't find an installed provider: previously broken dependency */
563                   if (!p)
564                     {
565                       POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "ignoring broken requires %s of installed package %s\n", dep2str(pool, req), solvable2str(pool, s));
566                       continue;
567                     }
568                 }
569
570               if (!*dp)
571                 {
572                   /* nothing provides req! */
573                   POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "package %s [%d] is not installable (%s)\n", solvable2str(pool, s), (Id)(s - pool->solvables), dep2str(pool, req));
574                   addrpmrule(solv, -n, 0, SOLVER_RULE_RPM_NOTHING_PROVIDES_DEP, req);
575                   continue;
576                 }
577
578               IF_POOLDEBUG (SAT_DEBUG_RULE_CREATION)
579                 {
580                   POOL_DEBUG(SAT_DEBUG_RULE_CREATION,"  %s requires %s\n", solvable2str(pool, s), dep2str(pool, req));
581                   for (i = 0; dp[i]; i++)
582                     POOL_DEBUG(SAT_DEBUG_RULE_CREATION, "   provided by %s\n", solvid2str(pool, dp[i]));
583                 }
584
585               /* add 'requires' dependency */
586               /* rule: (-requestor|provider1|provider2|...|providerN) */
587               addrpmrule(solv, -n, dp - pool->whatprovidesdata, SOLVER_RULE_RPM_PACKAGE_REQUIRES, req);
588
589               /* descend the dependency tree
590                  push all non-visited providers on the work queue */
591               if (m)
592                 {
593                   for (; *dp; dp++)
594                     {
595                       if (!MAPTST(m, *dp))
596                         queue_push(&workq, *dp);
597                     }
598                 }
599
600             } /* while, requirements of n */
601
602         } /* if, requirements */
603
604       /* that's all we check for src packages */
605       if (s->arch == ARCH_SRC || s->arch == ARCH_NOSRC)
606         continue;
607
608       /*-----------------------------------------
609        * check conflicts of s
610        */
611
612       if (s->conflicts)
613         {
614           int ispatch = 0;
615
616           /* we treat conflicts in patches a bit differen:
617            * - nevr matching
618            * - multiversion handling
619            * XXX: we should really handle this different, looking
620            * at the name is a bad hack
621            */
622           if (!strncmp("patch:", id2str(pool, s->name), 6))
623             ispatch = 1;
624           conp = s->repo->idarraydata + s->conflicts;
625           /* foreach conflicts of 's' */
626           while ((con = *conp++) != 0)
627             {
628               /* foreach providers of a conflict of 's' */
629               FOR_PROVIDES(p, pp, con)
630                 {
631                   if (ispatch && !pool_match_nevr(pool, pool->solvables + p, con))
632                     continue;
633                   /* dontfix: dont care about conflicts with already installed packs */
634                   if (dontfix && pool->solvables[p].repo == installed)
635                     continue;
636                   /* p == n: self conflict */
637                   if (p == n && !pool->allowselfconflicts)
638                     {
639                       if (ISRELDEP(con))
640                         {
641                           Reldep *rd = GETRELDEP(pool, con);
642                           if (rd->flags == REL_NAMESPACE && rd->name == NAMESPACE_OTHERPROVIDERS)
643                             continue;
644                         }
645                       p = 0;    /* make it a negative assertion, aka 'uninstallable' */
646                     }
647                   if (p && ispatch && solv->noobsoletes.size && MAPTST(&solv->noobsoletes, p) && ISRELDEP(con))
648                     {
649                       /* our patch conflicts with a noobsoletes (aka multiversion) package */
650                       p = -makemultiversionconflict(solv, p, con);
651                     }
652                  /* rule: -n|-p: either solvable _or_ provider of conflict */
653                   addrpmrule(solv, -n, -p, p ? SOLVER_RULE_RPM_PACKAGE_CONFLICT : SOLVER_RULE_RPM_SELF_CONFLICT, con);
654                 }
655             }
656         }
657
658       /*-----------------------------------------
659        * check obsoletes if not installed
660        * (only installation will trigger the obsoletes in rpm)
661        */
662       if (!installed || pool->solvables[n].repo != installed)
663         {                              /* not installed */
664           int noobs = solv->noobsoletes.size && MAPTST(&solv->noobsoletes, n);
665           if (s->obsoletes && !noobs)
666             {
667               obsp = s->repo->idarraydata + s->obsoletes;
668               /* foreach obsoletes */
669               while ((obs = *obsp++) != 0)
670                 {
671                   /* foreach provider of an obsoletes of 's' */ 
672                   FOR_PROVIDES(p, pp, obs)
673                     {
674                       Solvable *ps = pool->solvables + p;
675                       if (!pool->obsoleteusesprovides /* obsoletes are matched names, not provides */
676                           && !pool_match_nevr(pool, ps, obs))
677                         continue;
678                       if (pool->obsoleteusescolors && !pool_colormatch(pool, s, ps))
679                         continue;
680                       addrpmrule(solv, -n, -p, SOLVER_RULE_RPM_PACKAGE_OBSOLETES, obs);
681                     }
682                 }
683             }
684           FOR_PROVIDES(p, pp, s->name)
685             {
686               Solvable *ps = pool->solvables + p;
687               /* we still obsolete packages with same nevra, like rpm does */
688               /* (actually, rpm mixes those packages. yuck...) */
689               if (noobs && (s->name != ps->name || s->evr != ps->evr || s->arch != ps->arch))
690                 continue;
691               if (!pool->implicitobsoleteusesprovides && s->name != ps->name)
692                 continue;
693               if (pool->obsoleteusescolors && !pool_colormatch(pool, s, ps))
694                 continue;
695               if (s->name == ps->name)
696                 addrpmrule(solv, -n, -p, SOLVER_RULE_RPM_SAME_NAME, 0);
697               else
698                 addrpmrule(solv, -n, -p, SOLVER_RULE_RPM_IMPLICIT_OBSOLETES, s->name);
699             }
700         }
701
702       /*-----------------------------------------
703        * add recommends to the work queue
704        */
705       if (s->recommends && m)
706         {
707           recp = s->repo->idarraydata + s->recommends;
708           while ((rec = *recp++) != 0)
709             {
710               FOR_PROVIDES(p, pp, rec)
711                 if (!MAPTST(m, p))
712                   queue_push(&workq, p);
713             }
714         }
715       if (s->suggests && m)
716         {
717           sugp = s->repo->idarraydata + s->suggests;
718           while ((sug = *sugp++) != 0)
719             {
720               FOR_PROVIDES(p, pp, sug)
721                 if (!MAPTST(m, p))
722                   queue_push(&workq, p);
723             }
724         }
725     }
726   queue_free(&workq);
727   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforsolvable end -----\n");
728 }
729
730
731 /*-------------------------------------------------------------------
732  * 
733  * Add package rules for weak rules
734  *
735  * m: visited solvables
736  */
737
738 void
739 solver_addrpmrulesforweak(Solver *solv, Map *m)
740 {
741   Pool *pool = solv->pool;
742   Solvable *s;
743   Id sup, *supp;
744   int i, n;
745
746   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforweak -----\n");
747     /* foreach solvable in pool */
748   for (i = n = 1; n < pool->nsolvables; i++, n++)
749     {
750       if (i == pool->nsolvables)                /* wrap i */
751         i = 1;
752       if (MAPTST(m, i))                         /* been there */
753         continue;
754
755       s = pool->solvables + i;
756       if (!pool_installable(pool, s))           /* only look at installable ones */
757         continue;
758
759       sup = 0;
760       if (s->supplements)
761         {
762           /* find possible supplements */
763           supp = s->repo->idarraydata + s->supplements;
764           while ((sup = *supp++) != ID_NULL)
765             if (dep_possible(solv, sup, m))
766               break;
767         }
768
769       /* if nothing found, check for enhances */
770       if (!sup && s->enhances)
771         {
772           supp = s->repo->idarraydata + s->enhances;
773           while ((sup = *supp++) != ID_NULL)
774             if (dep_possible(solv, sup, m))
775               break;
776         }
777       /* if nothing found, goto next solvables */
778       if (!sup)
779         continue;
780       solver_addrpmrulesforsolvable(solv, s, m);
781       n = 0;                    /* check all solvables again */
782     }
783   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforweak end -----\n");
784 }
785
786
787 /*-------------------------------------------------------------------
788  * 
789  * add package rules for possible updates
790  * 
791  * s: solvable
792  * m: map of already visited solvables
793  * allow_all: 0 = dont allow downgrades, 1 = allow all candidates
794  */
795
796 void
797 solver_addrpmrulesforupdaters(Solver *solv, Solvable *s, Map *m, int allow_all)
798 {
799   Pool *pool = solv->pool;
800   int i;
801     /* queue and buffer for it */
802   Queue qs;
803   Id qsbuf[64];
804
805   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforupdaters -----\n");
806
807   queue_init_buffer(&qs, qsbuf, sizeof(qsbuf)/sizeof(*qsbuf));
808     /* find update candidates for 's' */
809   policy_findupdatepackages(solv, s, &qs, allow_all);
810     /* add rule for 's' if not already done */
811   if (!MAPTST(m, s - pool->solvables))
812     solver_addrpmrulesforsolvable(solv, s, m);
813     /* foreach update candidate, add rule if not already done */
814   for (i = 0; i < qs.count; i++)
815     if (!MAPTST(m, qs.elements[i]))
816       solver_addrpmrulesforsolvable(solv, pool->solvables + qs.elements[i], m);
817   queue_free(&qs);
818
819   POOL_DEBUG(SAT_DEBUG_SCHUBI, "----- addrpmrulesforupdaters -----\n");
820 }
821
822
823 /***********************************************************************
824  ***
825  ***  Update/Feature rule part
826  ***
827  ***  Those rules make sure an installed package isn't silently deleted
828  ***
829  ***/
830
831 static Id
832 finddistupgradepackages(Solver *solv, Solvable *s, Queue *qs, int allow_all)
833 {
834   Pool *pool = solv->pool;
835   int i;
836
837   policy_findupdatepackages(solv, s, qs, allow_all);
838   if (!qs->count)
839     {
840       if (allow_all)
841         return 0;       /* orphaned, don't create feature rule */
842       /* check if this is an orphaned package */
843       policy_findupdatepackages(solv, s, qs, 1);
844       if (!qs->count)
845         return 0;       /* orphaned, don't create update rule */
846       qs->count = 0;
847       return -SYSTEMSOLVABLE;   /* supported but not installable */
848     }
849   if (allow_all)
850     return s - pool->solvables;
851   /* check if it is ok to keep the installed package */
852   for (i = 0; i < qs->count; i++)
853     {
854       Solvable *ns = pool->solvables + qs->elements[i];
855       if (s->evr == ns->evr && solvable_identical(s, ns))
856         return s - pool->solvables;
857     }
858   /* nope, it must be some other package */
859   return -SYSTEMSOLVABLE;
860 }
861
862 /* add packages from the dup repositories to the update candidates
863  * this isn't needed for the global dup mode as all packages are
864  * from dup repos in that case */
865 static void
866 addduppackages(Solver *solv, Solvable *s, Queue *qs)
867 {
868   Queue dupqs;
869   Id p, dupqsbuf[64];
870   int i;
871   int oldnoupdateprovide = solv->noupdateprovide;
872
873   queue_init_buffer(&dupqs, dupqsbuf, sizeof(dupqsbuf)/sizeof(*dupqsbuf));
874   solv->noupdateprovide = 1;
875   policy_findupdatepackages(solv, s, &dupqs, 2);
876   solv->noupdateprovide = oldnoupdateprovide;
877   for (i = 0; i < dupqs.count; i++)
878     {
879       p = dupqs.elements[i];
880       if (MAPTST(&solv->dupmap, p))
881         queue_pushunique(qs, p);
882     }
883   queue_free(&dupqs);
884 }
885
886 /*-------------------------------------------------------------------
887  * 
888  * add rule for update
889  *   (A|A1|A2|A3...)  An = update candidates for A
890  *
891  * s = (installed) solvable
892  */
893
894 void
895 solver_addupdaterule(Solver *solv, Solvable *s, int allow_all)
896 {
897   /* installed packages get a special upgrade allowed rule */
898   Pool *pool = solv->pool;
899   Id p, d;
900   Queue qs;
901   Id qsbuf[64];
902
903   POOL_DEBUG(SAT_DEBUG_SCHUBI, "-----  addupdaterule -----\n");
904   queue_init_buffer(&qs, qsbuf, sizeof(qsbuf)/sizeof(*qsbuf));
905   p = s - pool->solvables;
906   /* find update candidates for 's' */
907   if (solv->distupgrade)
908     p = finddistupgradepackages(solv, s, &qs, allow_all);
909   else
910     policy_findupdatepackages(solv, s, &qs, allow_all);
911   if (!allow_all && !solv->distupgrade && solv->dupinvolvedmap.size && MAPTST(&solv->dupinvolvedmap, p))
912     addduppackages(solv, s, &qs);
913
914   if (!allow_all && qs.count && solv->noobsoletes.size)
915     {
916       int i, j;
917
918       d = pool_queuetowhatprovides(pool, &qs);
919       /* filter out all noobsoletes packages as they don't update */
920       for (i = j = 0; i < qs.count; i++)
921         {
922           if (MAPTST(&solv->noobsoletes, qs.elements[i]))
923             {
924               /* it's ok if they have same nevra */
925               Solvable *ps = pool->solvables + qs.elements[i];
926               if (ps->name != s->name || ps->evr != s->evr || ps->arch != s->arch)
927                 continue;
928             }
929           qs.elements[j++] = qs.elements[i];
930         }
931       if (j == 0 && p == -SYSTEMSOLVABLE && solv->distupgrade)
932         {
933           queue_push(&solv->orphaned, s - pool->solvables);     /* treat as orphaned */
934           j = qs.count;
935         }
936       if (j < qs.count)
937         {
938           if (d && solv->updatesystem && solv->installed && s->repo == solv->installed)
939             {
940               if (!solv->multiversionupdaters)
941                 solv->multiversionupdaters = sat_calloc(solv->installed->end - solv->installed->start, sizeof(Id));
942               solv->multiversionupdaters[s - pool->solvables - solv->installed->start] = d;
943             }
944           qs.count = j;
945         }
946     }
947   if (qs.count && p == -SYSTEMSOLVABLE)
948     p = queue_shift(&qs);
949   d = qs.count ? pool_queuetowhatprovides(pool, &qs) : 0;
950   queue_free(&qs);
951   solver_addrule(solv, p, d);   /* allow update of s */
952   POOL_DEBUG(SAT_DEBUG_SCHUBI, "-----  addupdaterule end -----\n");
953 }
954
955 static inline void 
956 disableupdaterule(Solver *solv, Id p)
957 {
958   Rule *r;
959
960   MAPSET(&solv->noupdate, p - solv->installed->start);
961   r = solv->rules + solv->updaterules + (p - solv->installed->start);
962   if (r->p && r->d >= 0)
963     solver_disablerule(solv, r);
964   r = solv->rules + solv->featurerules + (p - solv->installed->start);
965   if (r->p && r->d >= 0)
966     solver_disablerule(solv, r);
967 }
968
969 static inline void 
970 reenableupdaterule(Solver *solv, Id p)
971 {
972   Pool *pool = solv->pool;
973   Rule *r;
974
975   MAPCLR(&solv->noupdate, p - solv->installed->start);
976   r = solv->rules + solv->updaterules + (p - solv->installed->start);
977   if (r->p)
978     {    
979       if (r->d >= 0)
980         return;
981       solver_enablerule(solv, r);
982       IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
983         {
984           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
985           solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
986         }
987       return;
988     }
989   r = solv->rules + solv->featurerules + (p - solv->installed->start);
990   if (r->p && r->d < 0)
991     {
992       solver_enablerule(solv, r);
993       IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
994         {
995           POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
996           solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
997         }
998     }
999 }
1000
1001
1002 /***********************************************************************
1003  ***
1004  ***  Infarch rule part
1005  ***
1006  ***  Infarch rules make sure the solver uses the best architecture of
1007  ***  a package if multiple archetectures are available
1008  ***
1009  ***/
1010
1011 void
1012 solver_addinfarchrules(Solver *solv, Map *addedmap)
1013 {
1014   Pool *pool = solv->pool;
1015   int first, i, j;
1016   Id p, pp, a, aa, bestarch;
1017   Solvable *s, *ps, *bests;
1018   Queue badq, allowedarchs;
1019
1020   queue_init(&badq);
1021   queue_init(&allowedarchs);
1022   solv->infarchrules = solv->nrules;
1023   for (i = 1; i < pool->nsolvables; i++)
1024     {
1025       if (i == SYSTEMSOLVABLE || !MAPTST(addedmap, i))
1026         continue;
1027       s = pool->solvables + i;
1028       first = i;
1029       bestarch = 0;
1030       bests = 0;
1031       queue_empty(&allowedarchs);
1032       FOR_PROVIDES(p, pp, s->name)
1033         {
1034           ps = pool->solvables + p;
1035           if (ps->name != s->name || !MAPTST(addedmap, p))
1036             continue;
1037           if (p == i)
1038             first = 0;
1039           if (first)
1040             break;
1041           a = ps->arch;
1042           a = (a <= pool->lastarch) ? pool->id2arch[a] : 0;
1043           if (a != 1 && pool->installed && ps->repo == pool->installed)
1044             {
1045               if (!solv->distupgrade)
1046                 queue_pushunique(&allowedarchs, ps->arch);      /* also ok to keep this architecture */
1047               continue;         /* ignore installed solvables when calculating the best arch */
1048             }
1049           if (a && a != 1 && (!bestarch || a < bestarch))
1050             {
1051               bestarch = a;
1052               bests = ps;
1053             }
1054         }
1055       if (first)
1056         continue;
1057       /* speed up common case where installed package already has best arch */
1058       if (allowedarchs.count == 1 && bests && allowedarchs.elements[0] == bests->arch)
1059         allowedarchs.count--;   /* installed arch is best */
1060       queue_empty(&badq);
1061       FOR_PROVIDES(p, pp, s->name)
1062         {
1063           ps = pool->solvables + p;
1064           if (ps->name != s->name || !MAPTST(addedmap, p))
1065             continue;
1066           a = ps->arch;
1067           a = (a <= pool->lastarch) ? pool->id2arch[a] : 0;
1068           if (a != 1 && bestarch && ((a ^ bestarch) & 0xffff0000) != 0)
1069             {
1070               for (j = 0; j < allowedarchs.count; j++)
1071                 {
1072                   aa = allowedarchs.elements[j];
1073                   if (ps->arch == aa)
1074                     break;
1075                   aa = (aa <= pool->lastarch) ? pool->id2arch[aa] : 0;
1076                   if (aa && ((a ^ aa) & 0xffff0000) == 0)
1077                     break;      /* compatible */
1078                 }
1079               if (j == allowedarchs.count)
1080                 queue_push(&badq, p);
1081             }
1082         }
1083       if (!badq.count)
1084         continue;
1085       /* block all solvables in the badq! */
1086       for (j = 0; j < badq.count; j++)
1087         {
1088           p = badq.elements[j];
1089           solver_addrule(solv, -p, 0);
1090         }
1091     }
1092   queue_free(&badq);
1093   queue_free(&allowedarchs);
1094   solv->infarchrules_end = solv->nrules;
1095 }
1096
1097 static inline void
1098 disableinfarchrule(Solver *solv, Id name)
1099 {
1100   Pool *pool = solv->pool;
1101   Rule *r;
1102   int i;
1103   for (i = solv->infarchrules, r = solv->rules + i; i < solv->infarchrules_end; i++, r++)
1104     {
1105       if (r->p < 0 && r->d >= 0 && pool->solvables[-r->p].name == name)
1106         solver_disablerule(solv, r);
1107     }
1108 }
1109
1110 static inline void
1111 reenableinfarchrule(Solver *solv, Id name)
1112 {
1113   Pool *pool = solv->pool;
1114   Rule *r;
1115   int i;
1116   for (i = solv->infarchrules, r = solv->rules + i; i < solv->infarchrules_end; i++, r++)
1117     {
1118       if (r->p < 0 && r->d < 0 && pool->solvables[-r->p].name == name)
1119         {
1120           solver_enablerule(solv, r);
1121           IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
1122             {
1123               POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
1124               solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
1125             }
1126         }
1127     }
1128 }
1129
1130
1131 /***********************************************************************
1132  ***
1133  ***  Dup rule part
1134  ***
1135  ***  Dup rules make sure a package is selected from the specified dup
1136  ***  repositories if an update candidate is included in one of them.
1137  ***
1138  ***/
1139
1140 void
1141 solver_createdupmaps(Solver *solv)
1142 {
1143   Queue *job = &solv->job;
1144   Pool *pool = solv->pool;
1145   Repo *repo;
1146   Id how, what, p, pi, pp, obs, *obsp;
1147   Solvable *s, *ps;
1148   int i;
1149
1150   map_init(&solv->dupmap, pool->nsolvables);
1151   map_init(&solv->dupinvolvedmap, pool->nsolvables);
1152   for (i = 0; i < job->count; i += 2)
1153     {
1154       how = job->elements[i];
1155       what = job->elements[i + 1];
1156       switch (how & SOLVER_JOBMASK)
1157         {
1158         case SOLVER_DISTUPGRADE:
1159           if (what <= 0 || what > pool->nrepos)
1160             break;
1161           repo = pool_id2repo(pool, what);
1162           FOR_REPO_SOLVABLES(repo, p, s)
1163             {
1164               MAPSET(&solv->dupmap, p);
1165               FOR_PROVIDES(pi, pp, s->name)
1166                 {
1167                   ps = pool->solvables + pi;
1168                   if (ps->name != s->name)
1169                     continue;
1170                   MAPSET(&solv->dupinvolvedmap, pi);
1171                 }
1172               if (s->obsoletes)
1173                 {
1174                   /* FIXME: check obsoletes/provides combination */
1175                   obsp = s->repo->idarraydata + s->obsoletes;
1176                   while ((obs = *obsp++) != 0)
1177                     {
1178                       FOR_PROVIDES(pi, pp, obs)
1179                         {
1180                           Solvable *pis = pool->solvables + pi;
1181                           if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, pis, obs))
1182                             continue;
1183                           if (pool->obsoleteusescolors && !pool_colormatch(pool, s, pis))
1184                             continue;
1185                           MAPSET(&solv->dupinvolvedmap, pi);
1186                         }
1187                     }
1188                 }
1189             }
1190           break;
1191         default:
1192           break;
1193         }
1194     }
1195   MAPCLR(&solv->dupinvolvedmap, SYSTEMSOLVABLE);
1196 }
1197
1198 void
1199 solver_freedupmaps(Solver *solv)
1200 {
1201   map_free(&solv->dupmap);
1202   map_free(&solv->dupinvolvedmap);
1203 }
1204
1205 void
1206 solver_addduprules(Solver *solv, Map *addedmap)
1207 {
1208   Pool *pool = solv->pool;
1209   Id p, pp;
1210   Solvable *s, *ps;
1211   int first, i;
1212
1213   solv->duprules = solv->nrules;
1214   for (i = 1; i < pool->nsolvables; i++)
1215     {
1216       if (i == SYSTEMSOLVABLE || !MAPTST(addedmap, i))
1217         continue;
1218       s = pool->solvables + i;
1219       first = i;
1220       FOR_PROVIDES(p, pp, s->name)
1221         {
1222           ps = pool->solvables + p;
1223           if (ps->name != s->name || !MAPTST(addedmap, p))
1224             continue;
1225           if (p == i)
1226             first = 0;
1227           if (first)
1228             break;
1229           if (!MAPTST(&solv->dupinvolvedmap, p))
1230             continue;
1231           if (solv->installed && ps->repo == solv->installed)
1232             {
1233               if (!solv->updatemap.size)
1234                 map_grow(&solv->updatemap, solv->installed->end - solv->installed->start);
1235               MAPSET(&solv->updatemap, p - solv->installed->start);
1236               if (!MAPTST(&solv->dupmap, p))
1237                 {
1238                   Id ip, ipp;
1239                   /* is installed identical to a good one? */
1240                   FOR_PROVIDES(ip, ipp, s->name)
1241                     {
1242                       Solvable *is = pool->solvables + ip;
1243                       if (!MAPTST(&solv->dupmap, ip))
1244                         continue;
1245                       if (is->evr == s->evr && solvable_identical(s, is))
1246                         break;
1247                     }
1248                   if (!ip)
1249                     solver_addrule(solv, -p, 0);        /* no match, sorry */
1250                 }
1251             }
1252           else if (!MAPTST(&solv->dupmap, p))
1253             solver_addrule(solv, -p, 0);
1254         }
1255     }
1256   solv->duprules_end = solv->nrules;
1257 }
1258
1259
1260 static inline void
1261 disableduprule(Solver *solv, Id name)
1262 {
1263   Pool *pool = solv->pool;
1264   Rule *r;
1265   int i;
1266   for (i = solv->duprules, r = solv->rules + i; i < solv->duprules_end; i++, r++) 
1267     {    
1268       if (r->p < 0 && r->d >= 0 && pool->solvables[-r->p].name == name)
1269         solver_disablerule(solv, r);
1270     }    
1271 }
1272
1273 static inline void 
1274 reenableduprule(Solver *solv, Id name)
1275 {
1276   Pool *pool = solv->pool;
1277   Rule *r;
1278   int i;
1279   for (i = solv->duprules, r = solv->rules + i; i < solv->duprules_end; i++, r++) 
1280     {    
1281       if (r->p < 0 && r->d < 0 && pool->solvables[-r->p].name == name)
1282         {
1283           solver_enablerule(solv, r);
1284           IF_POOLDEBUG (SAT_DEBUG_SOLUTIONS)
1285             {
1286               POOL_DEBUG(SAT_DEBUG_SOLUTIONS, "@@@ re-enabling ");
1287               solver_printruleclass(solv, SAT_DEBUG_SOLUTIONS, r);
1288             }
1289         }
1290     }
1291 }
1292
1293
1294 /***********************************************************************
1295  ***
1296  ***  Policy rule disabling/reenabling
1297  ***
1298  ***  Disable all policy rules that conflict with our jobs. If a job
1299  ***  gets disabled later on, reenable the involved policy rules again.
1300  ***
1301  ***/
1302
1303 #define DISABLE_UPDATE  1
1304 #define DISABLE_INFARCH 2
1305 #define DISABLE_DUP     3
1306
1307 static void
1308 jobtodisablelist(Solver *solv, Id how, Id what, Queue *q)
1309 {
1310   Pool *pool = solv->pool;
1311   Id select, p, pp;
1312   Repo *installed;
1313   Solvable *s;
1314   int i;
1315
1316   installed = solv->installed;
1317   select = how & SOLVER_SELECTMASK;
1318   switch (how & SOLVER_JOBMASK)
1319     {
1320     case SOLVER_INSTALL:
1321       if ((select == SOLVER_SOLVABLE_NAME || select == SOLVER_SOLVABLE_PROVIDES) && solv->infarchrules != solv->infarchrules_end && ISRELDEP(what))
1322         {
1323           Reldep *rd = GETRELDEP(pool, what);
1324           if (rd->flags == REL_ARCH)
1325             {
1326               int qcnt = q->count;
1327               FOR_JOB_SELECT(p, pp, select, what)
1328                 {
1329                   s = pool->solvables + p;
1330                   /* unify names */
1331                   for (i = qcnt; i < q->count; i += 2)
1332                     if (q->elements[i + 1] == s->name)
1333                       break;
1334                   if (i < q->count)
1335                     continue;
1336                   queue_push(q, DISABLE_INFARCH);
1337                   queue_push(q, s->name);
1338                 }
1339             }
1340         }
1341       if (select != SOLVER_SOLVABLE)
1342         break;
1343       s = pool->solvables + what;
1344       if (solv->infarchrules != solv->infarchrules_end)
1345         {
1346           queue_push(q, DISABLE_INFARCH);
1347           queue_push(q, s->name);
1348         }
1349       if (solv->duprules != solv->duprules_end)
1350         {
1351           queue_push(q, DISABLE_DUP);
1352           queue_push(q, s->name);
1353         }
1354       if (!installed)
1355         return;
1356       if (solv->noobsoletes.size && MAPTST(&solv->noobsoletes, what))
1357         return;
1358       if (s->repo == installed)
1359         {
1360           queue_push(q, DISABLE_UPDATE);
1361           queue_push(q, what);
1362           return;
1363         }
1364       if (s->obsoletes)
1365         {
1366           Id obs, *obsp;
1367           obsp = s->repo->idarraydata + s->obsoletes;
1368           while ((obs = *obsp++) != 0)
1369             FOR_PROVIDES(p, pp, obs)
1370               {
1371                 Solvable *ps = pool->solvables + p;
1372                 if (ps->repo != installed)
1373                   continue;
1374                 if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, ps, obs))
1375                   continue;
1376                 if (pool->obsoleteusescolors && !pool_colormatch(pool, s, ps))
1377                   continue;
1378                 queue_push(q, DISABLE_UPDATE);
1379                 queue_push(q, p);
1380               }
1381         }
1382       FOR_PROVIDES(p, pp, s->name)
1383         {
1384           Solvable *ps = pool->solvables + p;
1385           if (ps->repo != installed)
1386             continue;
1387           if (!pool->implicitobsoleteusesprovides && ps->name != s->name)
1388             continue;
1389           if (pool->obsoleteusescolors && !pool_colormatch(pool, s, ps))
1390             continue;
1391           queue_push(q, DISABLE_UPDATE);
1392           queue_push(q, p);
1393         }
1394       return;
1395     case SOLVER_ERASE:
1396       if (!installed)
1397         break;
1398       FOR_JOB_SELECT(p, pp, select, what)
1399         if (pool->solvables[p].repo == installed)
1400           {
1401             queue_push(q, DISABLE_UPDATE);
1402             queue_push(q, p);
1403           }
1404       return;
1405     default:
1406       return;
1407     }
1408 }
1409
1410 /* disable all policy rules that are in conflict with our job list */
1411 void
1412 solver_disablepolicyrules(Solver *solv)
1413 {
1414   Queue *job = &solv->job;
1415   int i, j;
1416   Queue allq;
1417   Rule *r;
1418   Id lastjob = -1;
1419   Id allqbuf[128];
1420
1421   queue_init_buffer(&allq, allqbuf, sizeof(allqbuf)/sizeof(*allqbuf));
1422
1423   for (i = solv->jobrules; i < solv->jobrules_end; i++)
1424     {
1425       r = solv->rules + i;
1426       if (r->d < 0)     /* disabled? */
1427         continue;
1428       j = solv->ruletojob.elements[i - solv->jobrules];
1429       if (j == lastjob)
1430         continue;
1431       lastjob = j;
1432       jobtodisablelist(solv, job->elements[j], job->elements[j + 1], &allq);
1433     }
1434   MAPZERO(&solv->noupdate);
1435   for (i = 0; i < allq.count; i += 2)
1436     {
1437       Id type = allq.elements[i], arg = allq.elements[i + 1];
1438       switch(type)
1439         {
1440         case DISABLE_UPDATE:
1441           disableupdaterule(solv, arg);
1442           break;
1443         case DISABLE_INFARCH:
1444           disableinfarchrule(solv, arg);
1445           break;
1446         case DISABLE_DUP:
1447           disableduprule(solv, arg);
1448           break;
1449         default:
1450           break;
1451         }
1452     }
1453   queue_free(&allq);
1454 }
1455
1456 /* we just disabled job #jobidx, now reenable all policy rules that were
1457  * disabled because of this job */
1458 void
1459 solver_reenablepolicyrules(Solver *solv, int jobidx)
1460 {
1461   Queue *job = &solv->job;
1462   int i, j;
1463   Queue q, allq;
1464   Rule *r;
1465   Id lastjob = -1;
1466   Id qbuf[32], allqbuf[128];
1467
1468   queue_init_buffer(&q, qbuf, sizeof(qbuf)/sizeof(*qbuf));
1469   queue_init_buffer(&allq, allqbuf, sizeof(allqbuf)/sizeof(*allqbuf));
1470   jobtodisablelist(solv, job->elements[jobidx], job->elements[jobidx + 1], &q);
1471   if (!q.count)
1472     return;
1473   for (i = solv->jobrules; i < solv->jobrules_end; i++)
1474     {
1475       r = solv->rules + i;
1476       if (r->d < 0)     /* disabled? */
1477         continue;
1478       j = solv->ruletojob.elements[i - solv->jobrules];
1479       if (j == lastjob)
1480         continue;
1481       lastjob = j;
1482       jobtodisablelist(solv, job->elements[j], job->elements[j + 1], &allq);
1483     }
1484   for (j = 0; j < q.count; j += 2)
1485     {
1486       Id type = q.elements[j], arg = q.elements[j + 1];
1487       for (i = 0; i < allq.count; i += 2)
1488         if (allq.elements[i] == type && allq.elements[i + 1] == arg)
1489           break;
1490       if (i < allq.count)
1491         continue;       /* still disabled */
1492       switch(type)
1493         {
1494         case DISABLE_UPDATE:
1495           reenableupdaterule(solv, arg);
1496           break;
1497         case DISABLE_INFARCH:
1498           reenableinfarchrule(solv, arg);
1499           break;
1500         case DISABLE_DUP:
1501           reenableduprule(solv, arg);
1502           break;
1503         }
1504     }
1505   queue_free(&allq);
1506   queue_free(&q);
1507 }
1508
1509
1510 /***********************************************************************
1511  ***
1512  ***  Rule info part, tell the user what the rule is about.
1513  ***
1514  ***/
1515
1516 static void
1517 addrpmruleinfo(Solver *solv, Id p, Id d, int type, Id dep)
1518 {
1519   Pool *pool = solv->pool;
1520   Rule *r;
1521   Id w2, op, od, ow2;
1522
1523   /* check if this creates the rule we're searching for */
1524   r = solv->rules + solv->ruleinfoq->elements[0];
1525   op = r->p;
1526   od = r->d < 0 ? -r->d - 1 : r->d;
1527   ow2 = 0;
1528
1529   /* normalize */
1530   w2 = d > 0 ? 0 : d;
1531   if (p < 0 && d > 0 && (!pool->whatprovidesdata[d] || !pool->whatprovidesdata[d + 1]))
1532     {
1533       w2 = pool->whatprovidesdata[d];
1534       d = 0;
1535
1536     }
1537   if (p > 0 && d < 0)           /* this hack is used for buddy deps */
1538     {
1539       w2 = p;
1540       p = d;
1541     }
1542
1543   if (d > 0)
1544     {
1545       if (p != op && !od)
1546         return;
1547       if (d != od)
1548         {
1549           Id *dp = pool->whatprovidesdata + d;
1550           Id *odp = pool->whatprovidesdata + od;
1551           while (*dp)
1552             if (*dp++ != *odp++)
1553               return;
1554           if (*odp)
1555             return;
1556         }
1557       w2 = 0;
1558       /* handle multiversion conflict rules */
1559       if (p < 0 && pool->whatprovidesdata[d] < 0)
1560         {
1561           w2 = pool->whatprovidesdata[d];
1562           /* XXX: free memory */
1563         }
1564     }
1565   else
1566     {
1567       if (od)
1568         return;
1569       ow2 = r->w2;
1570       if (p > w2)
1571         {
1572           if (w2 != op || p != ow2)
1573             return;
1574         }
1575       else
1576         {
1577           if (p != op || w2 != ow2)
1578             return;
1579         }
1580     }
1581   /* yep, rule matches. record info */
1582   queue_push(solv->ruleinfoq, type);
1583   if (type == SOLVER_RULE_RPM_SAME_NAME)
1584     {
1585       /* we normalize same name order */
1586       queue_push(solv->ruleinfoq, op < 0 ? -op : 0);
1587       queue_push(solv->ruleinfoq, ow2 < 0 ? -ow2 : 0);
1588     }
1589   else
1590     {
1591       queue_push(solv->ruleinfoq, p < 0 ? -p : 0);
1592       queue_push(solv->ruleinfoq, w2 < 0 ? -w2 : 0);
1593     }
1594   queue_push(solv->ruleinfoq, dep);
1595 }
1596
1597 static int
1598 solver_allruleinfos_cmp(const void *ap, const void *bp, void *dp)
1599 {
1600   const Id *a = ap, *b = bp;
1601   int r;
1602
1603   r = a[0] - b[0];
1604   if (r)
1605     return r;
1606   r = a[1] - b[1];
1607   if (r)
1608     return r;
1609   r = a[2] - b[2];
1610   if (r)
1611     return r;
1612   r = a[3] - b[3];
1613   if (r)
1614     return r;
1615   return 0;
1616 }
1617
1618 int
1619 solver_allruleinfos(Solver *solv, Id rid, Queue *rq)
1620 {
1621   Pool *pool = solv->pool;
1622   Rule *r = solv->rules + rid;
1623   int i, j;
1624
1625   queue_empty(rq);
1626   if (rid <= 0 || rid >= solv->rpmrules_end)
1627     {
1628       Id type, from, to, dep;
1629       type = solver_ruleinfo(solv, rid, &from, &to, &dep);
1630       queue_push(rq, type);
1631       queue_push(rq, from);
1632       queue_push(rq, to);
1633       queue_push(rq, dep);
1634       return 1;
1635     }
1636   if (r->p >= 0)
1637     return 0;
1638   queue_push(rq, rid);
1639   solv->ruleinfoq = rq;
1640   solver_addrpmrulesforsolvable(solv, pool->solvables - r->p, 0);
1641   /* also try reverse direction for conflicts */
1642   if ((r->d == 0 || r->d == -1) && r->w2 < 0)
1643     solver_addrpmrulesforsolvable(solv, pool->solvables - r->w2, 0);
1644   solv->ruleinfoq = 0;
1645   queue_shift(rq);
1646   /* now sort & unify em */
1647   if (!rq->count)
1648     return 0;
1649   sat_sort(rq->elements, rq->count / 4, 4 * sizeof(Id), solver_allruleinfos_cmp, 0);
1650   /* throw out identical entries */
1651   for (i = j = 0; i < rq->count; i += 4)
1652     {
1653       if (j)
1654         {
1655           if (rq->elements[i] == rq->elements[j - 4] && 
1656               rq->elements[i + 1] == rq->elements[j - 3] &&
1657               rq->elements[i + 2] == rq->elements[j - 2] &&
1658               rq->elements[i + 3] == rq->elements[j - 1])
1659             continue;
1660         }
1661       rq->elements[j++] = rq->elements[i];
1662       rq->elements[j++] = rq->elements[i + 1];
1663       rq->elements[j++] = rq->elements[i + 2];
1664       rq->elements[j++] = rq->elements[i + 3];
1665     }
1666   rq->count = j;
1667   return j / 4;
1668 }
1669
1670 SolverRuleinfo
1671 solver_ruleinfo(Solver *solv, Id rid, Id *fromp, Id *top, Id *depp)
1672 {
1673   Pool *pool = solv->pool;
1674   Rule *r = solv->rules + rid;
1675   SolverRuleinfo type = SOLVER_RULE_UNKNOWN;
1676
1677   if (fromp)
1678     *fromp = 0;
1679   if (top)
1680     *top = 0;
1681   if (depp)
1682     *depp = 0;
1683   if (rid > 0 && rid < solv->rpmrules_end)
1684     {
1685       Queue rq;
1686       int i;
1687
1688       if (r->p >= 0)
1689         return SOLVER_RULE_RPM;
1690       if (fromp)
1691         *fromp = -r->p;
1692       queue_init(&rq);
1693       queue_push(&rq, rid);
1694       solv->ruleinfoq = &rq;
1695       solver_addrpmrulesforsolvable(solv, pool->solvables - r->p, 0);
1696       /* also try reverse direction for conflicts */
1697       if ((r->d == 0 || r->d == -1) && r->w2 < 0)
1698         solver_addrpmrulesforsolvable(solv, pool->solvables - r->w2, 0);
1699       solv->ruleinfoq = 0;
1700       type = SOLVER_RULE_RPM;
1701       for (i = 1; i < rq.count; i += 4)
1702         {
1703           Id qt, qo, qp, qd;
1704           qt = rq.elements[i];
1705           qp = rq.elements[i + 1];
1706           qo = rq.elements[i + 2];
1707           qd = rq.elements[i + 3];
1708           if (type == SOLVER_RULE_RPM || type > qt)
1709             {
1710               type = qt;
1711               if (fromp)
1712                 *fromp = qp;
1713               if (top)
1714                 *top = qo;
1715               if (depp)
1716                 *depp = qd;
1717             }
1718         }
1719       queue_free(&rq);
1720       return type;
1721     }
1722   if (rid >= solv->jobrules && rid < solv->jobrules_end)
1723     {
1724       Id jidx = solv->ruletojob.elements[rid - solv->jobrules];
1725       if (fromp)
1726         *fromp = jidx;
1727       if (top)
1728         *top = solv->job.elements[jidx];
1729       if (depp)
1730         *depp = solv->job.elements[jidx + 1];
1731       if ((r->d == 0 || r->d == -1) && r->w2 == 0 && r->p == -SYSTEMSOLVABLE && (solv->job.elements[jidx] & SOLVER_SELECTMASK) != SOLVER_SOLVABLE_ONE_OF)
1732         return SOLVER_RULE_JOB_NOTHING_PROVIDES_DEP;
1733       return SOLVER_RULE_JOB;
1734     }
1735   if (rid >= solv->updaterules && rid < solv->updaterules_end)
1736     {
1737       if (fromp)
1738         *fromp = solv->installed->start + (rid - solv->updaterules);
1739       return SOLVER_RULE_UPDATE;
1740     }
1741   if (rid >= solv->featurerules && rid < solv->featurerules_end)
1742     {
1743       if (fromp)
1744         *fromp = solv->installed->start + (rid - solv->featurerules);
1745       return SOLVER_RULE_FEATURE;
1746     }
1747   if (rid >= solv->duprules && rid < solv->duprules_end)
1748     {
1749       if (fromp)
1750         *fromp = -r->p;
1751       if (depp)
1752         *depp = pool->solvables[-r->p].name;
1753       return SOLVER_RULE_DISTUPGRADE;
1754     }
1755   if (rid >= solv->infarchrules && rid < solv->infarchrules_end)
1756     {
1757       if (fromp)
1758         *fromp = -r->p;
1759       if (depp)
1760         *depp = pool->solvables[-r->p].name;
1761       return SOLVER_RULE_INFARCH;
1762     }
1763   if (rid >= solv->choicerules && rid < solv->choicerules_end)
1764     {
1765       return SOLVER_RULE_CHOICE;
1766     }
1767   if (rid >= solv->learntrules)
1768     {
1769       return SOLVER_RULE_LEARNT;
1770     }
1771   return SOLVER_RULE_UNKNOWN;
1772 }
1773
1774 void
1775 addchoicerules(Solver *solv)
1776 {
1777   Pool *pool = solv->pool;
1778   Rule *r;
1779   Queue q;
1780   int rid, havechoice;
1781   Id p, d, *pp;
1782   Id p2, pp2;
1783   Solvable *s, *s2;
1784
1785   solv->choicerules = solv->nrules;
1786   if (!pool->installed)
1787     {
1788       solv->choicerules_end = solv->nrules;
1789       return;
1790     }
1791   solv->choicerules_ref = sat_calloc(solv->rpmrules_end, sizeof(Id));
1792   queue_init(&q);
1793   for (rid = 1; rid < solv->rpmrules_end ; rid++)
1794     {
1795       r = solv->rules + rid;
1796       if (r->p >= 0 || ((r->d == 0 || r->d == -1) && r->w2 < 0))
1797         continue;       /* only look at requires rules */
1798       // solver_printrule(solv, SAT_DEBUG_RESULT, r);
1799       queue_empty(&q);
1800       havechoice = 0;
1801       FOR_RULELITERALS(p, pp, r)
1802         {
1803           if (p < 0)
1804             continue;
1805           s = pool->solvables + p;
1806           if (!s->repo)
1807             continue;
1808           if (s->repo == pool->installed)
1809             {
1810               queue_push(&q, p);
1811               continue;
1812             }
1813           /* check if this package is "blocked" by a installed package */
1814           s2 = 0;
1815           FOR_PROVIDES(p2, pp2, s->name)
1816             {
1817               s2 = pool->solvables + p2;
1818               if (s2->repo != pool->installed)
1819                 continue;
1820               if (!pool->implicitobsoleteusesprovides && s->name != s2->name)
1821                 continue;
1822               if (pool->obsoleteusescolors && !pool_colormatch(pool, s, s2))
1823                 continue;
1824               break;
1825             }
1826           if (p2)
1827             {
1828               /* found one */
1829               if (!solv->allowarchchange && s->arch != s2->arch && policy_illegal_archchange(solv, s, s2))
1830                 continue;
1831               if (!solv->allowvendorchange && s->vendor != s2->vendor && policy_illegal_vendorchange(solv, s, s2))
1832                 continue;
1833               queue_push(&q, p);
1834               continue;
1835             }
1836           if (s->obsoletes)
1837             {
1838               Id obs, *obsp = s->repo->idarraydata + s->obsoletes;
1839               s2 = 0;
1840               while ((obs = *obsp++) != 0)
1841                 {
1842                   FOR_PROVIDES(p2, pp2, obs)
1843                     {
1844                       s2 = pool->solvables + p2;
1845                       if (s2->repo != pool->installed)
1846                         continue;
1847                       if (!pool->obsoleteusesprovides && !pool_match_nevr(pool, pool->solvables + p2, obs))
1848                         continue;
1849                       if (pool->obsoleteusescolors && !pool_colormatch(pool, s, s2))
1850                         continue;
1851                       break;
1852                     }
1853                   if (p2)
1854                     break;
1855                 }
1856               if (obs)
1857                 {
1858                   /* found one */
1859                   if (!solv->allowarchchange && s->arch != s2->arch && policy_illegal_archchange(solv, s, s2))
1860                     continue;
1861                   if (!solv->allowvendorchange && s->vendor != s2->vendor && policy_illegal_vendorchange(solv, s, s2))
1862                     continue;
1863                   queue_push(&q, p);
1864                   continue;
1865                 }
1866             }
1867           /* this package is independent if the installed ones */
1868           havechoice = 1;
1869         }
1870       if (!havechoice || !q.count)
1871         continue;       /* no choice */
1872       d = q.count ? pool_queuetowhatprovides(pool, &q) : 0;
1873       solver_addrule(solv, r->p, d);
1874       queue_push(&solv->weakruleq, solv->nrules - 1);
1875       solv->choicerules_ref[solv->nrules - 1 - solv->choicerules] = rid;
1876 #if 0
1877       printf("OLD ");
1878       solver_printrule(solv, SAT_DEBUG_RESULT, solv->rules + rid);
1879       printf("WEAK CHOICE ");
1880       solver_printrule(solv, SAT_DEBUG_RESULT, solv->rules + solv->nrules - 1);
1881 #endif
1882     }
1883   queue_free(&q);
1884   solv->choicerules_end = solv->nrules;
1885 }
1886
1887 void
1888 disablechoicerules(Solver *solv, Rule *r)
1889 {
1890   Id rid, p, *pp;
1891   Pool *pool = solv->pool;
1892   Map m;
1893   Rule *or;
1894
1895   or = solv->rules + solv->choicerules_ref[(r - solv->rules) - solv->choicerules];
1896   map_init(&m, pool->nsolvables);
1897   FOR_RULELITERALS(p, pp, or)
1898     if (p > 0)
1899       MAPSET(&m, p);
1900   FOR_RULELITERALS(p, pp, r)
1901     if (p > 0)
1902       MAPCLR(&m, p);
1903   for (rid = solv->choicerules; rid < solv->choicerules_end; rid++)
1904     {
1905       r = solv->rules + rid;
1906       if (r->d < 0)
1907         continue;
1908       or = solv->rules + solv->choicerules_ref[(r - solv->rules) - solv->choicerules];
1909       FOR_RULELITERALS(p, pp, or)
1910         if (p > 0 && MAPTST(&m, p))
1911           break;
1912       if (p)
1913         solver_disablerule(solv, r);
1914     }
1915 }
1916
1917 /* EOF */