7 #include <rpm/header.h>
8 #include <rpm/rpmmacro.h>
9 #include <rpm/rpmstring.h>
10 #include <rpm/rpmfi.h>
11 #include <rpm/rpmds.h>
13 #include "lib/legacy.h"
17 #define alloca_strdup(_s) strcpy(alloca(strlen(_s)+1), (_s))
21 static int dncmp(const void * a, const void * b)
23 const char *const * first = a;
24 const char *const * second = b;
25 return strcmp(*first, *second);
28 void compressFilelist(Header h)
30 HGE_t hge = (HGE_t)headerGetEntryMinMemory;
31 HAE_t hae = (HAE_t)headerAddEntry;
32 HRE_t hre = (HRE_t)headerRemoveEntry;
33 HFD_t hfd = headerFreeData;
35 const char ** dirNames;
36 const char ** baseNames;
37 uint32_t * dirIndexes;
44 * This assumes the file list is already sorted, and begins with a
45 * single '/'. That assumption isn't critical, but it makes things go
49 if (headerIsEntry(h, RPMTAG_DIRNAMES)) {
50 xx = hre(h, RPMTAG_OLDFILENAMES);
51 return; /* Already converted. */
54 if (!hge(h, RPMTAG_OLDFILENAMES, &fnt, (rpm_data_t *) &fileNames, &count))
55 return; /* no file list */
56 if (fileNames == NULL || count <= 0)
59 dirNames = xmalloc(sizeof(*dirNames) * count); /* worst case */
60 baseNames = xmalloc(sizeof(*dirNames) * count);
61 dirIndexes = xmalloc(sizeof(*dirIndexes) * count);
63 if (fileNames[0][0] != '/') {
64 /* HACK. Source RPM, so just do things differently */
66 dirNames[dirIndex] = "";
67 for (i = 0; i < count; i++) {
68 dirIndexes[i] = dirIndex;
69 baseNames[i] = fileNames[i];
74 for (i = 0; i < count; i++) {
80 if (fileNames[i] == NULL) /* XXX can't happen */
82 baseName = strrchr(fileNames[i], '/') + 1;
83 len = baseName - fileNames[i];
88 (needle = bsearch(&fileNames[i], dirNames, dirIndex + 1, sizeof(dirNames[0]), dncmp)) == NULL) {
89 char *s = alloca(len + 1);
90 memcpy(s, fileNames[i], len + 1);
92 dirIndexes[i] = ++dirIndex;
93 dirNames[dirIndex] = s;
95 dirIndexes[i] = needle - dirNames;
98 baseNames[i] = baseName;
103 xx = hae(h, RPMTAG_DIRINDEXES, RPM_INT32_TYPE, dirIndexes, count);
104 xx = hae(h, RPMTAG_BASENAMES, RPM_STRING_ARRAY_TYPE,
106 xx = hae(h, RPMTAG_DIRNAMES, RPM_STRING_ARRAY_TYPE,
107 dirNames, (rpm_count_t) dirIndex + 1);
110 fileNames = hfd(fileNames, fnt);
115 xx = hre(h, RPMTAG_OLDFILENAMES);
118 void expandFilelist(Header h)
120 HAE_t hae = (HAE_t)headerAddEntry;
121 HRE_t hre = (HRE_t)headerRemoveEntry;
122 const char ** fileNames = NULL;
123 rpm_count_t count = 0;
126 if (!headerIsEntry(h, RPMTAG_OLDFILENAMES)) {
127 rpmfiBuildFNames(h, RPMTAG_BASENAMES, &fileNames, &count);
128 if (fileNames == NULL || count <= 0)
130 xx = hae(h, RPMTAG_OLDFILENAMES, RPM_STRING_ARRAY_TYPE,
132 fileNames = _free(fileNames);
135 xx = hre(h, RPMTAG_DIRNAMES);
136 xx = hre(h, RPMTAG_BASENAMES);
137 xx = hre(h, RPMTAG_DIRINDEXES);
141 * Up to rpm 3.0.4, packages implicitly provided their own name-version-release.
142 * Retrofit an explicit "Provides: name = epoch:version-release.
144 static void providePackageNVR(Header h)
146 HGE_t hge = (HGE_t)headerGetEntryMinMemory;
147 HFD_t hfd = headerFreeData;
150 rpmsenseFlags pFlags = RPMSENSE_EQUAL;
151 const char ** provides = NULL;
152 const char ** providesEVR = NULL;
154 rpmsenseFlags * provideFlags = NULL;
155 rpm_count_t providesCount, i;
159 /* Generate provides for this package name-version-release. */
160 pEVR = headerGetEVR(h, &name);
165 * Rpm prior to 3.0.3 does not have versioned provides.
166 * If no provides at all are available, we can just add.
168 if (!hge(h, RPMTAG_PROVIDENAME, &pnt, (rpm_data_t *) &provides, &providesCount))
172 * Otherwise, fill in entries on legacy packages.
174 if (!hge(h, RPMTAG_PROVIDEVERSION, &pvt, (rpm_data_t *) &providesEVR, NULL)) {
175 for (i = 0; i < providesCount; i++) {
176 const char * vdummy = "";
177 rpmsenseFlags fdummy = RPMSENSE_ANY;
178 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEVERSION, RPM_STRING_ARRAY_TYPE,
180 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEFLAGS, RPM_INT32_TYPE,
186 xx = hge(h, RPMTAG_PROVIDEFLAGS, NULL, (rpm_data_t *) &provideFlags, NULL);
188 /* LCL: providesEVR is not NULL */
189 if (provides && providesEVR && provideFlags)
190 for (i = 0; i < providesCount; i++) {
191 if (!(provides[i] && providesEVR[i]))
193 if (!(provideFlags[i] == RPMSENSE_EQUAL &&
194 !strcmp(name, provides[i]) && !strcmp(pEVR, providesEVR[i])))
201 provides = hfd(provides, pnt);
202 providesEVR = hfd(providesEVR, pvt);
205 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDENAME, RPM_STRING_ARRAY_TYPE,
207 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEFLAGS, RPM_INT32_TYPE,
209 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEVERSION, RPM_STRING_ARRAY_TYPE,
215 void legacyRetrofit(Header h)
220 * We don't use these entries (and rpm >= 2 never has) and they are
221 * pretty misleading. Let's just get rid of them so they don't confuse
224 if (headerIsEntry(h, RPMTAG_FILEUSERNAME))
225 (void) headerRemoveEntry(h, RPMTAG_FILEUIDS);
226 if (headerIsEntry(h, RPMTAG_FILEGROUPNAME))
227 (void) headerRemoveEntry(h, RPMTAG_FILEGIDS);
230 * We switched the way we do relocatable packages. We fix some of
231 * it up here, though the install code still has to be a bit
232 * careful. This fixup makes queries give the new values though,
233 * which is quite handy.
235 if (headerGetEntry(h, RPMTAG_DEFAULTPREFIX, NULL, (rpm_data_t *) &prefix, NULL))
237 char * nprefix = stripTrailingChar(xstrdup(prefix), '/');
238 (void) headerAddEntry(h, RPMTAG_PREFIXES, RPM_STRING_ARRAY_TYPE,
244 * The file list was moved to a more compressed format which not
245 * only saves memory (nice), but gives fingerprinting a nice, fat
246 * speed boost (very nice). Go ahead and convert old headers to
247 * the new style (this is a noop for new headers).
251 /* XXX binary rpms always have RPMTAG_SOURCERPM, source rpms do not */
252 if (headerIsSource(h)) {
254 if (!headerIsEntry(h, RPMTAG_SOURCEPACKAGE))
255 (void) headerAddEntry(h, RPMTAG_SOURCEPACKAGE, RPM_INT32_TYPE,
258 /* Retrofit "Provide: name = EVR" for binary packages. */
259 providePackageNVR(h);