remove 'kind' handling ( will re-appear in applayer ;-) )
[platform/upstream/libsolv.git] / src / policy.c
1 /*
2  * Copyright (c) 2007, Novell Inc.
3  *
4  * This program is licensed under the BSD license, read LICENSE.BSD
5  * for further information
6  */
7
8 /*
9  * Generic policy interface for SAT solver
10  *
11  */
12
13 #include <stdio.h>
14 #include <stdlib.h>
15 #include <unistd.h>
16 #include <string.h>
17
18 #include "solver.h"
19 #include "evr.h"
20 #include "policy.h"
21 #include "poolvendor.h"
22 #include "poolarch.h"
23
24
25 static Solver *prune_best_version_arch_sortcmp_data;
26
27 /*-----------------------------------------------------------------*/
28
29 /*
30  * prep for prune_best_version_arch
31  *   sort by name
32  */
33
34 static int
35 prune_best_version_arch_sortcmp(const void *ap, const void *bp)
36 {
37   Solver *solv = prune_best_version_arch_sortcmp_data;
38   Pool *pool = solv->pool;
39   int r;
40   Id a = *(Id *)ap;
41   Id b = *(Id *)bp;
42   r = pool->solvables[a].name - pool->solvables[b].name;
43   if (r)
44     {
45       const char *na, *nb;
46       /* different names. We use real strcmp here so that the result
47        * is not depending on some random solvable order */
48       na = id2str(pool, pool->solvables[a].name);
49       nb = id2str(pool, pool->solvables[b].name);
50       /* bring patterns to the front */
51       if (!strncmp(na, "pattern:", 8))
52         {
53           if (strncmp(nb, "pattern:", 8))
54             return -1;
55         }
56       else if (!strncmp(nb, "pattern:", 8))
57         {
58           if (strncmp(na, "pattern:", 8))
59             return 1;
60         }
61       return strcmp(na, nb);
62     } else {
63         /* the same name */
64         if ( pool->solvables[a].evr == pool->solvables[b].evr)
65         {
66             /* prefer installed solvables first */
67             if (solv->installed && pool->solvables[a].repo == solv->installed)
68                 return -1;
69             if (solv->installed && pool->solvables[b].repo == solv->installed)
70                 return 1;       
71         }
72     }
73   return a - b;
74 }
75
76
77 /*
78  * prune to repository with highest priority
79  * 
80  */
81
82 static void
83 prune_to_highest_prio(Pool *pool, Queue *plist)
84 {
85   int i, j;
86   Solvable *s;
87   int bestprio = 0;
88
89   /* prune to highest priority */
90   for (i = 0; i < plist->count; i++)  /* find highest prio in queue */
91     {
92       s = pool->solvables + plist->elements[i];
93       if (i == 0 || s->repo->priority > bestprio)
94         bestprio = s->repo->priority;
95     }
96   for (i = j = 0; i < plist->count; i++) /* remove all with lower prio */
97     {
98       s = pool->solvables + plist->elements[i];
99       if (s->repo->priority == bestprio)
100         plist->elements[j++] = plist->elements[i];
101     }
102   plist->count = j;
103 }
104
105
106 /*
107  * prune_to_recommended
108  *
109  * XXX: should we prune to requires/suggests that are already
110  * fulfilled by other packages?
111  */
112
113 static void
114 prune_to_recommended(Solver *solv, Queue *plist)
115 {
116   Pool *pool = solv->pool;
117   int i, j;
118   Solvable *s;
119   Id p, *pp, rec, *recp, sug, *sugp;
120
121   if (solv->recommends_index < 0)
122     {
123       MAPZERO(&solv->recommendsmap);
124       MAPZERO(&solv->suggestsmap);
125       solv->recommends_index = 0;
126     }
127   while (solv->recommends_index < solv->decisionq.count)
128     {
129       p = solv->decisionq.elements[solv->recommends_index++];
130       if (p < 0)
131         continue;
132       s = pool->solvables + p;
133       if (s->recommends)
134         {
135           recp = s->repo->idarraydata + s->recommends;
136           while ((rec = *recp++) != 0)
137             FOR_PROVIDES(p, pp, rec)
138               MAPSET(&solv->recommendsmap, p);
139         }
140       if (s->suggests)
141         {
142           sugp = s->repo->idarraydata + s->suggests;
143           while ((sug = *sugp++) != 0)
144             FOR_PROVIDES(p, pp, sug)
145               MAPSET(&solv->suggestsmap, p);
146         }
147     }
148   /* prune to recommended/supplemented */
149   for (i = j = 0; i < plist->count; i++)
150     {
151       p = plist->elements[i];
152       if (MAPTST(&solv->recommendsmap, p))
153         {
154           plist->elements[j++] = p;
155           continue;
156         }
157       if (solver_is_supplementing(solv, pool->solvables + p))
158         plist->elements[j++] = p;
159     }
160   if (j)
161     plist->count = j;
162
163   /* prune to suggested/enhanced*/
164   if (plist->count < 2)
165     return;
166   for (i = j = 0; i < plist->count; i++)
167     {
168       p = plist->elements[i];
169       if (MAPTST(&solv->suggestsmap, p))
170         {
171           plist->elements[j++] = p;
172           continue;
173         }
174       if (solver_is_enhancing(solv, pool->solvables + p))
175         plist->elements[j++] = p;
176     }
177   if (j)
178     plist->count = j;
179 }
180
181 void
182 prune_to_best_arch(Pool *pool, Queue *plist)
183 {
184   Id a, bestscore;
185   Solvable *s;
186   int i, j;
187
188   if (!pool->id2arch || plist->count < 2)
189     return;
190   bestscore = 0;
191   for (i = 0; i < plist->count; i++)
192     {
193       s = pool->solvables + plist->elements[i];
194       a = s->arch;
195       a = (a <= pool->lastarch) ? pool->id2arch[a] : 0;
196       if (a && a != 1 && (!bestscore || a < bestscore))
197         bestscore = a;
198     }
199   for (i = j = 0; i < plist->count; i++)
200     {
201       s = pool->solvables + plist->elements[i];
202       a = s->arch;
203       if (a > pool->lastarch)
204         continue;
205       a = pool->id2arch[a];
206       /* a == 1 -> noarch */
207       if (a != 1 && ((a ^ bestscore) & 0xffff0000) != 0)
208         continue;
209       plist->elements[j++] = plist->elements[i];
210     }
211   if (j)
212     plist->count = j;
213 }
214
215 /*
216  * prune_best_version_arch
217  *
218  * sort list of packages (given through plist) by name and evr
219  * return result through plist
220  *
221  */
222
223 void
224 prune_to_best_version(Solver *solv, Queue *plist)
225 {
226   Pool *pool = solv->pool;
227   Id best = ID_NULL;
228   int i, j;
229   Solvable *s;
230
231   if (plist->count < 2)         /* no need to prune for a single entry */
232     return;
233   POOL_DEBUG(SAT_DEBUG_POLICY, "prune_to_best_version %d\n", plist->count);
234
235   prune_best_version_arch_sortcmp_data = solv;
236   /* sort by name first, prefer installed */
237   qsort(plist->elements, plist->count, sizeof(Id), prune_best_version_arch_sortcmp);
238
239   /* delete obsoleted. hmm, looks expensive! */
240   /* FIXME maybe also check provides depending on noupdateprovide? */
241   /* FIXME do not prune cycles */
242   for (i = 0; i < plist->count; i++)
243     {
244       Id p, *pp, obs, *obsp;
245       s = pool->solvables + plist->elements[i];
246       if (!s->obsoletes)
247         continue;
248       obsp = s->repo->idarraydata + s->obsoletes;
249       while ((obs = *obsp++) != 0)
250         {
251           FOR_PROVIDES(p, pp, obs)
252             {
253               if (pool->solvables[p].name == s->name)
254                 continue;
255               for (j = 0; j < plist->count; j++)
256                 {
257                   if (i == j)
258                     continue;
259                   if (plist->elements[j] == p)
260                     plist->elements[j] = 0;
261                 }
262             }
263         }
264     }
265   for (i = j = 0; i < plist->count; i++)
266     if (plist->elements[i])
267       plist->elements[j++] = plist->elements[i];
268   plist->count = j;
269
270   /* now find best 'per name' */
271   for (i = j = 0; i < plist->count; i++)
272     {
273       s = pool->solvables + plist->elements[i];
274
275       POOL_DEBUG(SAT_DEBUG_POLICY, "- %s[%s]\n",
276                  solvable2str(pool, s),
277                  (solv->installed && s->repo == solv->installed) ? "installed" : "not installed");
278
279       if (!best)                       /* if no best yet, the current is best */
280         {
281           best = plist->elements[i];
282           continue;
283         }
284
285       /* name switch: re-init */
286       if (pool->solvables[best].name != s->name)   /* new name */
287         {
288           plist->elements[j++] = best; /* move old best to front */
289           best = plist->elements[i];   /* take current as new best */
290           continue;
291         }
292
293       if (pool->solvables[best].evr != s->evr)   /* compare evr */
294         {
295           if (evrcmp(pool, pool->solvables[best].evr, s->evr, EVRCMP_MATCH_RELEASE) < 0)
296             best = plist->elements[i];
297         }
298     }
299
300   if (best == ID_NULL)
301     best = plist->elements[0];
302
303   plist->elements[j++] = best;
304   plist->count = j;
305 }
306
307
308 /* legacy, do not use anymore!
309  * (rates arch higher than version, but thats a policy)
310  */
311
312 void
313 prune_best_arch_name_version(Solver *solv, Pool *pool, Queue *plist)
314 {
315   if (solv && solv->bestSolvableCb)
316      {   /* The application is responsible for */
317          return solv->bestSolvableCb (solv->pool, plist);
318      }
319
320   if (plist->count > 1)
321     prune_to_best_arch(pool, plist);
322   if (plist->count > 1)
323     prune_to_best_version(solv, plist);
324 }
325
326
327 void
328 policy_filter_unwanted(Solver *solv, Queue *plist, Id inst, int mode)
329 {
330   Pool *pool = solv->pool;
331   if (plist->count > 1 && mode != POLICY_MODE_SUGGEST)
332     prune_to_highest_prio(pool, plist);
333   if (plist->count > 1 && mode == POLICY_MODE_CHOOSE)
334     prune_to_recommended(solv, plist);
335   /* FIXME: do this different! */
336   if (inst)
337     queue_push(plist, inst);
338
339   prune_best_arch_name_version (solv, pool, plist);
340 }
341
342
343 int
344 policy_illegal_archchange(Solver *solv, Solvable *s1, Solvable *s2)
345 {
346   Pool *pool = solv->pool;
347   Id a1 = s1->arch, a2 = s2->arch;
348
349   if (solv && solv->archCheckCb)
350      {   /* The application is responsible for */
351          return solv->archCheckCb (solv->pool, s1, s2);
352      }
353
354   /* we allow changes to/from noarch */
355   if (a1 == a2 || a1 == ARCH_NOARCH || a2 == ARCH_NOARCH)
356     return 0;
357   if (!pool->id2arch)
358     return 0;
359   a1 = a1 <= pool->lastarch ? pool->id2arch[a1] : 0;
360   a2 = a2 <= pool->lastarch ? pool->id2arch[a2] : 0;
361   if (((a1 ^ a2) & 0xffff0000) != 0)
362     return 1;
363   return 0;
364 }
365
366 int
367 policy_illegal_vendorchange(Solver *solv, Solvable *s1, Solvable *s2)
368 {
369   Pool *pool = solv->pool;
370   Id vendormask1, vendormask2;
371
372   if (solv && solv->vendorCheckCb)
373      {   /* The application is responsible for */
374          return solv->vendorCheckCb (solv->pool, s1, s2);
375      }
376
377   if (s1->vendor == s2->vendor)
378     return 0;
379   vendormask1 = pool_vendor2mask(pool, s1->vendor);
380   if (!vendormask1)
381     return 0;
382   vendormask2 = pool_vendor2mask(pool, s2->vendor);
383   if ((vendormask1 & vendormask2) == 0)
384     return 0;
385   return 1;
386 }
387
388 void
389 policy_findupdatepackages(Solver *solv, Solvable *s, Queue *qs, int allowall)
390 {
391   /* installed packages get a special upgrade allowed rule */
392   Pool *pool = solv->pool;
393   Id p, *pp, n, p2, *pp2;
394   Id obs, *obsp;
395   Solvable *ps;
396   Id vendormask;
397
398   queue_empty(qs);
399
400   if (solv && solv->updateCandidateCb)
401      {   /* The application is responsible for */
402          return solv->updateCandidateCb (solv->pool, s, qs);
403      }
404
405   /*
406    * s = solvable ptr
407    * n = solvable Id
408    */
409   n = s - pool->solvables;
410   vendormask = pool_vendor2mask(pool, s->vendor);
411
412   /*
413    * look for updates for s
414    */
415   FOR_PROVIDES(p, pp, s->name)  /* every provider of s' name */
416     {
417       if (p == n)               /* skip itself */
418         continue;
419
420       ps = pool->solvables + p;
421       if (s->name == ps->name)  /* name match */
422         {
423           if (!allowall)
424             {
425               if (!solv->allowdowngrade && evrcmp(pool, s->evr, ps->evr, EVRCMP_MATCH_RELEASE) > 0)
426                 continue;
427               if (!solv->allowarchchange && s->arch != ps->arch && policy_illegal_archchange(solv, s, ps))
428                 continue;
429               if (!solv->allowvendorchange && s->vendor != ps->vendor && policy_illegal_vendorchange(solv, s, ps))
430                 continue;
431             }
432         }
433       else if (!solv->noupdateprovide && ps->obsoletes)   /* provides/obsoletes combination ? */
434         {
435           obsp = ps->repo->idarraydata + ps->obsoletes;
436           while ((obs = *obsp++) != 0)  /* for all obsoletes */
437             {
438               FOR_PROVIDES(p2, pp2, obs)   /* and all matching providers of the obsoletes */
439                 {
440                   if (p2 == n)          /* match ! */
441                     break;
442                 }
443               if (p2)                   /* match! */
444                 break;
445             }
446           if (!obs)                     /* continue if no match */
447             continue;
448           /* here we have 'p' with a matching provides/obsoletes combination
449            * thus flagging p as a valid update candidate for s
450            */
451         }
452       else
453         continue;
454       queue_push(qs, p);
455     }
456   if (solv->noupdateprovide && solv->obsoletes && solv->obsoletes[n - solv->installed->start])
457     {
458       for (pp = solv->obsoletes_data + solv->obsoletes[n - solv->installed->start]; (p = *pp++) != 0;)
459         queue_push(qs, p);
460     }
461 }
462