1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
|
/** \ingroup rpmdep
* \file lib/rpmal.c
*/
#include "system.h"
#include <rpmlib.h>
#include "rpmds.h"
#include "depends.h"
#include "rpmal.h"
#include "debug.h"
/*@access Header@*/ /* XXX compared with NULL */
/*@access FD_t@*/ /* XXX compared with NULL */
typedef /*@abstract@*/ struct fileIndexEntry_s * fileIndexEntry;
typedef /*@abstract@*/ struct dirInfo_s * dirInfo;
typedef /*@abstract@*/ struct availableIndexEntry_s * availableIndexEntry;
typedef /*@abstract@*/ struct availableIndex_s * availableIndex;
/*@access availableIndexEntry@*/
/*@access availableIndex@*/
/*@access fileIndexEntry@*/
/*@access dirInfo@*/
/*@access availableList@*/
/*@access availablePackage@*/
/*@access tsortInfo@*/
/*@access alKey@*/
/*@access alNum@*/
/*@access fnpyKey@*/
/*@access rpmFNSet@*/
/** \ingroup rpmdep
* Info about a single package to be installed.
*/
struct availablePackage_s {
/*@refcounted@*/
Header h; /*!< Package header. */
/*@dependent@*/
const char * name; /*!< Header name. */
/*@dependent@*/
const char * version; /*!< Header version. */
/*@dependent@*/
const char * release; /*!< Header release. */
/*@dependent@*//*@null@*/
int_32 * epoch; /*!< Header epoch (if any). */
/*@refcounted@*/ /*@null@*/
rpmDepSet provides; /*!< Provides: dependencies. */
/*@refcounted@*/ /*@null@*/
rpmFNSet fns; /*!< File info set. */
#ifdef DYING
uint_32 multiLib; /* MULTILIB */
#endif
fnpyKey key; /*!< Associated file name/python object */
};
/** \ingroup rpmdep
* A single available item (e.g. a Provides: dependency).
*/
struct availableIndexEntry_s {
/*@dependent@*/ /*@null@*/
alKey pkgKey; /*!< Containing package. */
/*@dependent@*/
const char * entry; /*!< Dependency name. */
unsigned short entryLen; /*!< No. of bytes in name. */
unsigned short entryIx; /*!< Dependency index. */
enum indexEntryType {
IET_PROVIDES=1 /*!< A Provides: dependency. */
} type; /*!< Type of available item. */
};
/** \ingroup rpmdep
* Index of all available items.
*/
struct availableIndex_s {
/*@null@*/
availableIndexEntry index; /*!< Array of available items. */
int size; /*!< No. of available items. */
int k; /*!< Current index. */
};
/** \ingroup rpmdep
* A file to be installed/removed.
*/
struct fileIndexEntry_s {
/*@dependent@*/
const char * baseName; /*!< File basename. */
int baseNameLen;
alNum pkgNum; /*!< Containing package index. */
int fileFlags; /* MULTILIB */
};
/** \ingroup rpmdep
* A directory to be installed/removed.
*/
struct dirInfo_s {
/*@owned@*/
const char * dirName; /*!< Directory path (+ trailing '/'). */
int dirNameLen; /*!< No. bytes in directory path. */
/*@owned@*/
fileIndexEntry files; /*!< Array of files in directory. */
int numFiles; /*!< No. files in directory. */
};
/** \ingroup rpmdep
* Set of available packages, items, and directories.
*/
struct availableList_s {
/*@owned@*/ /*@null@*/
availablePackage list; /*!< Set of packages. */
struct availableIndex_s index; /*!< Set of available items. */
int delta; /*!< Delta for pkg list reallocation. */
int size; /*!< No. of pkgs in list. */
int alloced; /*!< No. of pkgs allocated for list. */
int numDirs; /*!< No. of directories. */
/*@owned@*/ /*@null@*/
dirInfo dirs; /*!< Set of directories. */
};
/*@unchecked@*/
static int _al_debug = 0;
/**
* Destroy available item index.
* @param al available list
*/
static void alFreeIndex(availableList al)
/*@modifies al @*/
{
availableIndex ai = &al->index;
if (ai->size > 0) {
ai->index = _free(ai->index);
ai->size = 0;
}
}
int alGetSize(const availableList al)
{
return al->size;
}
static inline alNum alKey2Num(/*@unused@*/ /*@null@*/ const availableList al,
/*@null@*/ alKey pkgKey)
/*@*/
{
/*@-nullret -temptrans -retalias @*/
return ((alNum)pkgKey);
/*@=nullret =temptrans =retalias @*/
}
static inline alKey alNum2Key(/*@unused@*/ /*@null@*/ const availableList al,
/*@null@*/ alNum pkgNum)
/*@*/
{
/*@-nullret -temptrans -retalias @*/
return ((alKey)pkgNum);
/*@=nullret =temptrans =retalias @*/
}
availablePackage alGetPkg(const availableList al, alKey pkgKey)
{
availablePackage alp = NULL;
alNum pkgNum = alKey2Num(al, pkgKey);
if (al != NULL && pkgNum >= 0 && pkgNum < al->size) {
if (al->list != NULL)
alp = al->list + pkgNum;
}
/*@-modfilesys@*/
if (_al_debug)
fprintf(stderr, "*** alp[%d] %p\n", pkgNum, alp);
/*@=modfilesys@*/
return alp;
}
Header alGetHeader(availableList al, alKey pkgKey, int unlink)
{
availablePackage alp = alGetPkg(al, pkgKey);
Header h = NULL;
if (alp != NULL && alp->h != NULL) {
h = headerLink(alp->h, "alGetHeader");
if (unlink) {
alp->h = headerFree(alp->h, "alGetHeader unlink");
alp->h = NULL;
}
}
return h;
}
char * alGetNVR(const availableList al, alKey pkgKey)
{
availablePackage alp = alGetPkg(al, pkgKey);
char * pkgNVR = NULL;
if (alp != NULL) {
char * t;
t = xcalloc(1, strlen(alp->name) +
strlen(alp->version) +
strlen(alp->release) + sizeof("--"));
pkgNVR = t;
t = stpcpy(t, alp->name);
t = stpcpy(t, "-");
t = stpcpy(t, alp->version);
t = stpcpy(t, "-");
t = stpcpy(t, alp->release);
}
return pkgNVR;
}
availableList alCreate(int delta)
{
availableList al = xcalloc(1, sizeof(*al));
availableIndex ai = &al->index;
al->delta = delta;
al->size = 0;
al->list = xcalloc(al->delta, sizeof(*al->list));
al->alloced = al->delta;
ai->index = NULL;
ai->size = 0;
al->numDirs = 0;
al->dirs = NULL;
return al;
}
availableList alFree(availableList al)
{
availablePackage alp;
dirInfo die;
int i;
if (al == NULL)
return NULL;
if ((alp = al->list) != NULL)
for (i = 0; i < al->size; i++, alp++) {
alp->provides = dsFree(alp->provides);
alp->fns = fnsFree(alp->fns);
alp->h = headerFree(alp->h, "alFree");
}
if ((die = al->dirs) != NULL)
for (i = 0; i < al->numDirs; i++, die++) {
die->dirName = _free(die->dirName);
die->files = _free(die->files);
}
al->dirs = _free(al->dirs);
al->numDirs = 0;
al->list = _free(al->list);
al->alloced = 0;
alFreeIndex(al);
return NULL;
}
/**
* Compare two directory info entries by name (qsort/bsearch).
* @param one 1st directory info
* @param two 2nd directory info
* @return result of comparison
*/
static int dieCompare(const void * one, const void * two)
/*@*/
{
/*@-castexpose@*/
const dirInfo a = (const dirInfo) one;
const dirInfo b = (const dirInfo) two;
/*@=castexpose@*/
int lenchk = a->dirNameLen - b->dirNameLen;
if (lenchk)
return lenchk;
/* XXX FIXME: this might do "backward" strcmp for speed */
return strcmp(a->dirName, b->dirName);
}
/**
* Compare two file info entries by name (qsort/bsearch).
* @param one 1st directory info
* @param two 2nd directory info
* @return result of comparison
*/
static int fieCompare(const void * one, const void * two)
/*@*/
{
/*@-castexpose@*/
const fileIndexEntry a = (const fileIndexEntry) one;
const fileIndexEntry b = (const fileIndexEntry) two;
/*@=castexpose@*/
int lenchk = a->baseNameLen - b->baseNameLen;
if (lenchk)
return lenchk;
/* XXX FIXME: this might do "backward" strcmp for speed */
return strcmp(a->baseName, b->baseName);
}
void alDelPackage(availableList al, alKey pkgKey)
{
availablePackage alp;
rpmFNSet fns;
alNum pkgNum = alKey2Num(al, pkgKey);
/*@-nullptrarith@*/ /* FIX: al->list might be NULL */
alp = al->list + pkgNum;
/*@=nullptrarith@*/
/*@-modfilesys@*/
if (_al_debug)
fprintf(stderr, "*** del %p[%d] %s-%s-%s\n", al->list, pkgNum, alp->name, alp->version, alp->release);
/*@=modfilesys@*/
/* Delete directory/file info entries from added package list. */
if ((fns = alp->fns) != NULL)
if (fns->bnl != NULL && fns->fc > 0) {
int origNumDirs = al->numDirs;
int dirNum;
dirInfo dieNeedle =
memset(alloca(sizeof(*dieNeedle)), 0, sizeof(*dieNeedle));
dirInfo die;
int last;
int i;
/* XXX FIXME: We ought to relocate the directory list here */
if (al->dirs != NULL)
if (fns->dnl != NULL)
for (dirNum = fns->dc - 1; dirNum >= 0; dirNum--) {
fileIndexEntry fie;
/*@-assignexpose@*/
dieNeedle->dirName = (char *) fns->dnl[dirNum];
/*@=assignexpose@*/
dieNeedle->dirNameLen = strlen(dieNeedle->dirName);
die = bsearch(dieNeedle, al->dirs, al->numDirs,
sizeof(*dieNeedle), dieCompare);
if (die == NULL)
continue;
last = die->numFiles;
fie = die->files + last - 1;
for (i = last - 1; i >= 0; i--, fie--) {
if (fie->pkgNum != pkgNum)
/*@innercontinue@*/ continue;
die->numFiles--;
if (i > die->numFiles)
/*@innercontinue@*/ continue;
memmove(fie, fie+1, (die->numFiles - i));
}
if (die->numFiles > 0) {
if (last > i)
die->files = xrealloc(die->files,
die->numFiles * sizeof(*die->files));
continue;
}
die->files = _free(die->files);
die->dirName = _free(die->dirName);
al->numDirs--;
if ((die - al->dirs) > al->numDirs)
continue;
memmove(die, die+1, (al->numDirs - (die - al->dirs)));
}
if (origNumDirs > al->numDirs) {
if (al->numDirs > 0)
al->dirs = xrealloc(al->dirs, al->numDirs * sizeof(*al->dirs));
else
al->dirs = _free(al->dirs);
}
}
alp->provides = dsFree(alp->provides);
alp->fns = fnsFree(alp->fns);
alp->h = headerFree(alp->h, "alDelPackage");
memset(alp, 0, sizeof(*alp)); /* XXX trash and burn */
/*@-nullstate@*/ /* FIX: al->list->h may be NULL */
return;
/*@=nullstate@*/
}
alKey alAddPackage(availableList al, alKey pkgKey, fnpyKey key, Header h,
rpmDepSet provides, rpmFNSet fns)
/*@modifies al, h @*/
{
HGE_t hge = (HGE_t)headerGetEntryMinMemory;
availablePackage alp;
alNum pkgNum = alKey2Num(al, pkgKey);
int xx;
if (pkgNum >= 0 && pkgNum < al->size) {
alDelPackage(al, pkgKey);
} else {
if (al->size == al->alloced) {
al->alloced += al->delta;
al->list = xrealloc(al->list, sizeof(*al->list) * al->alloced);
}
pkgNum = al->size++;
}
/*@-nullptrarith@*/
alp = al->list + pkgNum;
/*@=nullptrarith@*/
alp->h = headerLink(h, "alAddPackage");
/*@-assignexpose -temptrans @*/
alp->key = key;
/*@=assignexpose =temptrans @*/
xx = headerNVR(alp->h, &alp->name, &alp->version, &alp->release);
if (!hge(h, RPMTAG_EPOCH, NULL, (void **) &alp->epoch, NULL))
alp->epoch = NULL;
/*@-modfilesys@*/
if (_al_debug)
fprintf(stderr, "*** add %p[%d] %s-%s-%s\n", al->list, pkgNum, alp->name, alp->version, alp->release);
/*@=modfilesys@*/
/*@-assignexpose -temptrans@*/
alp->provides = rpmdsLink(provides, "alAddPackage");
alp->fns = rpmfnsLink(fns, "alAddPackage");
/*@=assignexpose =temptrans@*/
if (alp->fns && alp->fns->fc > 0) {
int * dirMapping;
dirInfo dieNeedle =
memset(alloca(sizeof(*dieNeedle)), 0, sizeof(*dieNeedle));
dirInfo die;
int first, last, dirNum;
int origNumDirs;
/* XXX FIXME: We ought to relocate the directory list here */
dirMapping = alloca(sizeof(*dirMapping) * alp->fns->dc);
/* allocated enough space for all the directories we could possible
need to add */
al->dirs = xrealloc(al->dirs,
(al->numDirs + alp->fns->dc) * sizeof(*al->dirs));
origNumDirs = al->numDirs;
if (alp->fns->dnl != NULL)
for (dirNum = 0; dirNum < alp->fns->dc; dirNum++) {
/*@-assignexpose@*/
dieNeedle->dirName = (char *) alp->fns->dnl[dirNum];
/*@=assignexpose@*/
dieNeedle->dirNameLen = strlen(alp->fns->dnl[dirNum]);
die = bsearch(dieNeedle, al->dirs, origNumDirs,
sizeof(*dieNeedle), dieCompare);
if (die) {
dirMapping[dirNum] = die - al->dirs;
} else {
dirMapping[dirNum] = al->numDirs;
die = al->dirs + al->numDirs;
die->dirName = xstrdup(alp->fns->dnl[dirNum]);
die->dirNameLen = strlen(die->dirName);
die->files = NULL;
die->numFiles = 0;
al->numDirs++;
}
}
last = 0;
for (first = 0; first < alp->fns->fc; first = last + 1) {
fileIndexEntry fie;
if (alp->fns->dil == NULL) /* XXX can't happen */
continue;
for (last = first; (last + 1) < alp->fns->fc; last++) {
if (alp->fns->dil[first] != alp->fns->dil[last + 1])
/*@innerbreak@*/ break;
}
die = al->dirs + dirMapping[alp->fns->dil[first]];
die->files = xrealloc(die->files,
(die->numFiles + last - first + 1) *
sizeof(*die->files));
fie = die->files + die->numFiles;
for (alp->fns->i = first; alp->fns->i <= last; alp->fns->i++) {
if (alp->fns->bnl == NULL) /* XXX can't happen */
/*@innercontinue@*/ continue;
if (alp->fns->fflags == NULL) /* XXX can't happen */
/*@innercontinue@*/ continue;
/*@-assignexpose@*/
fie->baseName = alp->fns->bnl[alp->fns->i];
fie->baseNameLen = strlen(alp->fns->bnl[alp->fns->i]);
/*@=assignexpose@*/
fie->pkgNum = pkgNum;
fie->fileFlags = alp->fns->fflags[alp->fns->i];
die->numFiles++;
fie++;
}
qsort(die->files, die->numFiles, sizeof(*die->files), fieCompare);
}
/* XXX should we realloc al->dirs to actual size? */
/* If any directories were added, resort the directory list. */
if (origNumDirs != al->numDirs)
qsort(al->dirs, al->numDirs, sizeof(*al->dirs), dieCompare);
}
alFreeIndex(al);
assert(((alNum)(alp - al->list)) == pkgNum);
return ((alKey)(alp - al->list));
}
/**
* Compare two available index entries by name (qsort/bsearch).
* @param one 1st available index entry
* @param two 2nd available index entry
* @return result of comparison
*/
static int indexcmp(const void * one, const void * two)
/*@*/
{
/*@-castexpose@*/
const availableIndexEntry a = (const availableIndexEntry) one;
const availableIndexEntry b = (const availableIndexEntry) two;
/*@=castexpose@*/
int lenchk;
lenchk = a->entryLen - b->entryLen;
if (lenchk)
return lenchk;
return strcmp(a->entry, b->entry);
}
void alAddProvides(availableList al, alKey pkgKey, rpmDepSet provides)
{
availableIndexEntry aie;
availableIndex ai = &al->index;
int i = alKey2Num(al, pkgKey);
int ix;
if (provides == NULL || i < 0 || i >= al->size)
return;
if (ai->index == NULL || ai->k < 0 || ai->k >= ai->size)
return;
if (dsiInit(provides) != NULL)
while (dsiNext(provides) >= 0) {
const char * Name;
#ifdef DYING /* XXX FIXME: multilib colored dependency search */
const int_32 Flags = dsiGetFlags(provides);
/* If multilib install, skip non-multilib provides. */
if (al->list[i].multiLib && !isDependsMULTILIB(Flags)) {
ai->size--;
/*@innercontinue@*/ continue;
}
#endif
if ((Name = dsiGetN(provides)) == NULL)
continue; /* XXX can't happen */
aie = ai->index + ai->k;
ai->k++;
/*@-assignexpose@*/
/*@-temptrans@*/
aie->pkgKey = pkgKey;
/*@=temptrans@*/
aie->entry = Name;
/*@=assignexpose@*/
aie->entryLen = strlen(Name);
ix = dsiGetIx(provides);
/* XXX make sure that element index fits in unsigned short */
assert(ix < 0x10000);
aie->entryIx = ix;
aie->type = IET_PROVIDES;
}
}
void alMakeIndex(availableList al)
{
availableIndex ai = &al->index;
availablePackage alp;
int i;
if (ai->size || al->list == NULL) return;
for (i = 0; i < al->size; i++) {
alp = al->list + i;
if (alp->provides != NULL)
ai->size += dsiGetCount(alp->provides);
}
if (ai->size) {
ai->index = xcalloc(ai->size, sizeof(*ai->index));
ai->k = 0;
for (i = 0; i < al->size; i++) {
alp = al->list + i;
alAddProvides(al, (alKey)i, alp->provides);
}
qsort(ai->index, ai->size, sizeof(*ai->index), indexcmp);
}
}
fnpyKey *
alAllFileSatisfiesDepend(const availableList al, const rpmDepSet ds, alKey * keyp)
{
int found = 0;
const char * dirName;
const char * baseName;
dirInfo dieNeedle =
memset(alloca(sizeof(*dieNeedle)), 0, sizeof(*dieNeedle));
dirInfo die;
fileIndexEntry fieNeedle =
memset(alloca(sizeof(*fieNeedle)), 0, sizeof(*fieNeedle));
fileIndexEntry fie;
availablePackage alp;
fnpyKey * ret = NULL;
const char * fileName;
if (keyp) *keyp = RPMAL_NOMATCH;
if ((fileName = dsiGetN(ds)) == NULL || *fileName != '/')
return NULL;
/* Solaris 2.6 bsearch sucks down on this. */
if (al->numDirs == 0 || al->dirs == NULL || al->list == NULL)
return NULL;
{ char * t;
dirName = t = xstrdup(fileName);
if ((t = strrchr(t, '/')) != NULL) {
t++; /* leave the trailing '/' */
*t = '\0';
}
}
dieNeedle->dirName = (char *) dirName;
dieNeedle->dirNameLen = strlen(dirName);
die = bsearch(dieNeedle, al->dirs, al->numDirs,
sizeof(*dieNeedle), dieCompare);
if (die == NULL)
goto exit;
/* rewind to the first match */
while (die > al->dirs && dieCompare(die-1, dieNeedle) == 0)
die--;
if ((baseName = strrchr(fileName, '/')) == NULL)
goto exit;
baseName++;
/*@-branchstate@*/ /* FIX: ret is a problem */
for (found = 0, ret = NULL;
die <= al->dirs + al->numDirs && dieCompare(die, dieNeedle) == 0;
die++)
{
fieNeedle->baseName = baseName;
fieNeedle->baseNameLen = strlen(fieNeedle->baseName);
fie = bsearch(fieNeedle, die->files, die->numFiles,
sizeof(*fieNeedle), fieCompare);
if (fie == NULL)
continue; /* XXX shouldn't happen */
#ifdef DYING /* XXX FIXME: multilib colored dependency search */
/*
* If a file dependency would be satisfied by a file
* we are not going to install, skip it.
*/
if (al->list[fie->pkgNum].multiLib && !isFileMULTILIB(fie->fileFlags))
continue;
#endif
dsiNotify(ds, _("(added files)"), 0);
alp = al->list + fie->pkgNum;
ret = xrealloc(ret, (found+2) * sizeof(*ret));
if (ret) /* can't happen */
ret[found++] = alp->key;
if (keyp)
*keyp = alNum2Key(al, fie->pkgNum);
}
/*@=branchstate@*/
exit:
dirName = _free(dirName);
/*@-mods@*/ /* AOK: al->list not modified through ret alias. */
if (ret)
ret[found] = NULL;
/*@=mods@*/
return ret;
}
#ifdef DYING
/**
* Check added package file lists for first package that provides a file.
* @param al available list
* @param ds dependency
* @return available package pointer
*/
/*@unused@*/ static /*@dependent@*/ /*@null@*/ fnpyKey
alFileSatisfiesDepend(const availableList al, const rpmDepSet ds, alKey * keyp)
/*@*/
{
fnpyKey * tmp = alAllFileSatisfiesDepend(al, ds, keyp);
if (tmp) {
fnpyKey ret = tmp[0];
free(tmp);
return ret;
}
return NULL;
}
#endif /* DYING */
fnpyKey *
alAllSatisfiesDepend(const availableList al, const rpmDepSet ds, alKey * keyp)
{
availableIndex ai = &al->index;
availableIndexEntry needle =
memset(alloca(sizeof(*needle)), 0, sizeof(*needle));
availableIndexEntry match;
fnpyKey * ret = NULL;
const char * KName;
availablePackage alp;
int rc, found;
if (keyp) *keyp = RPMAL_NOMATCH;
if ((KName = dsiGetN(ds)) == NULL)
return ret;
if (*KName == '/') {
ret = alAllFileSatisfiesDepend(al, ds, keyp);
/* XXX Provides: /path was broken with added packages (#52183). */
if (ret != NULL && *ret != NULL)
return ret;
}
if (ai->index == NULL || ai->size <= 0)
return NULL;
/*@-assignexpose -temptrans@*/
needle->entry = KName;
/*@=assignexpose =temptrans@*/
needle->entryLen = strlen(needle->entry);
match = bsearch(needle, ai->index, ai->size, sizeof(*ai->index), indexcmp);
if (match == NULL)
return NULL;
/* rewind to the first match */
while (match > ai->index && indexcmp(match-1, needle) == 0)
match--;
for (ret = NULL, found = 0;
match <= ai->index + ai->size && indexcmp(match, needle) == 0;
match++)
{
/*@-nullptrarith@*/
alp = al->list + alKey2Num(al, match->pkgKey);
/*@=nullptrarith@*/
rc = 0;
if (alp->provides != NULL) /* XXX can't happen */
switch (match->type) {
case IET_PROVIDES:
/* XXX single step on dsiNext to regenerate DNEVR string */
(void) dsiSetIx(alp->provides, match->entryIx - 1);
if (dsiNext(alp->provides) >= 0)
rc = dsCompare(alp->provides, ds);
if (rc)
dsiNotify(ds, _("(added provide)"), 0);
/*@switchbreak@*/ break;
}
/*@-branchstate@*/
if (rc) {
ret = xrealloc(ret, (found + 2) * sizeof(*ret));
if (ret) /* can't happen */
ret[found++] = alp->key;
if (keyp)
*keyp = ((alKey)(alp - al->list));
}
/*@=branchstate@*/
}
if (ret)
ret[found] = NULL;
return ret;
}
fnpyKey
alSatisfiesDepend(const availableList al, const rpmDepSet ds, alKey * keyp)
{
fnpyKey * tmp = alAllSatisfiesDepend(al, ds, keyp);
if (tmp) {
fnpyKey ret = tmp[0];
free(tmp);
return ret;
}
return NULL;
}
|