7 #include <rpm/rpmtag.h>
8 #include <rpm/rpmmacro.h>
9 #include <rpm/rpmstring.h>
10 #include <rpm/rpmfi.h>
11 #include <rpm/rpmds.h>
12 #include "lib/legacy.h"
15 #define alloca_strdup(_s) strcpy(alloca(strlen(_s)+1), (_s))
19 static int dncmp(const void * a, const void * b)
21 const char *const * first = a;
22 const char *const * second = b;
23 return strcmp(*first, *second);
26 void compressFilelist(Header h)
28 HGE_t hge = (HGE_t)headerGetEntryMinMemory;
29 HAE_t hae = (HAE_t)headerAddEntry;
30 HRE_t hre = (HRE_t)headerRemoveEntry;
31 HFD_t hfd = headerFreeData;
33 const char ** dirNames;
34 const char ** baseNames;
35 uint32_t * dirIndexes;
42 * This assumes the file list is already sorted, and begins with a
43 * single '/'. That assumption isn't critical, but it makes things go
47 if (headerIsEntry(h, RPMTAG_DIRNAMES)) {
48 xx = hre(h, RPMTAG_OLDFILENAMES);
49 return; /* Already converted. */
52 if (!hge(h, RPMTAG_OLDFILENAMES, &fnt, (rpm_data_t *) &fileNames, &count))
53 return; /* no file list */
54 if (fileNames == NULL || count <= 0)
57 dirNames = xmalloc(sizeof(*dirNames) * count); /* worst case */
58 baseNames = xmalloc(sizeof(*dirNames) * count);
59 dirIndexes = xmalloc(sizeof(*dirIndexes) * count);
61 if (fileNames[0][0] != '/') {
62 /* HACK. Source RPM, so just do things differently */
64 dirNames[dirIndex] = "";
65 for (i = 0; i < count; i++) {
66 dirIndexes[i] = dirIndex;
67 baseNames[i] = fileNames[i];
72 for (i = 0; i < count; i++) {
78 if (fileNames[i] == NULL) /* XXX can't happen */
80 baseName = strrchr(fileNames[i], '/') + 1;
81 len = baseName - fileNames[i];
86 (needle = bsearch(&fileNames[i], dirNames, dirIndex + 1, sizeof(dirNames[0]), dncmp)) == NULL) {
87 char *s = alloca(len + 1);
88 memcpy(s, fileNames[i], len + 1);
90 dirIndexes[i] = ++dirIndex;
91 dirNames[dirIndex] = s;
93 dirIndexes[i] = needle - dirNames;
96 baseNames[i] = baseName;
101 xx = hae(h, RPMTAG_DIRINDEXES, RPM_INT32_TYPE, dirIndexes, count);
102 xx = hae(h, RPMTAG_BASENAMES, RPM_STRING_ARRAY_TYPE,
104 xx = hae(h, RPMTAG_DIRNAMES, RPM_STRING_ARRAY_TYPE,
105 dirNames, (rpm_count_t) dirIndex + 1);
108 fileNames = hfd(fileNames, fnt);
113 xx = hre(h, RPMTAG_OLDFILENAMES);
116 void expandFilelist(Header h)
118 HAE_t hae = (HAE_t)headerAddEntry;
119 HRE_t hre = (HRE_t)headerRemoveEntry;
120 const char ** fileNames = NULL;
121 rpm_count_t count = 0;
124 if (!headerIsEntry(h, RPMTAG_OLDFILENAMES)) {
125 rpmfiBuildFNames(h, RPMTAG_BASENAMES, &fileNames, &count);
126 if (fileNames == NULL || count <= 0)
128 xx = hae(h, RPMTAG_OLDFILENAMES, RPM_STRING_ARRAY_TYPE,
130 fileNames = _free(fileNames);
133 xx = hre(h, RPMTAG_DIRNAMES);
134 xx = hre(h, RPMTAG_BASENAMES);
135 xx = hre(h, RPMTAG_DIRINDEXES);
139 * Up to rpm 3.0.4, packages implicitly provided their own name-version-release.
140 * Retrofit an explicit "Provides: name = epoch:version-release.
142 void providePackageNVR(Header h)
144 HGE_t hge = (HGE_t)headerGetEntryMinMemory;
145 HFD_t hfd = headerFreeData;
146 const char *name, *version, *release;
150 rpmsenseFlags pFlags = RPMSENSE_EQUAL;
151 const char ** provides = NULL;
152 const char ** providesEVR = NULL;
153 rpm_tagtype_t pnt, pvt;
154 rpmsenseFlags * provideFlags = NULL;
155 rpm_count_t providesCount, i;
159 /* Generate provides for this package name-version-release. */
160 xx = headerNVR(h, &name, &version, &release);
161 if (!(name && version && release))
163 pEVR = p = alloca(21 + strlen(version) + 1 + strlen(release) + 1);
165 if (hge(h, RPMTAG_EPOCH, NULL, (rpm_data_t *) &epoch, NULL)) {
166 sprintf(p, "%d:", *epoch);
170 (void) stpcpy( stpcpy( stpcpy(p, version) , "-") , release);
173 * Rpm prior to 3.0.3 does not have versioned provides.
174 * If no provides at all are available, we can just add.
176 if (!hge(h, RPMTAG_PROVIDENAME, &pnt, (rpm_data_t *) &provides, &providesCount))
180 * Otherwise, fill in entries on legacy packages.
182 if (!hge(h, RPMTAG_PROVIDEVERSION, &pvt, (rpm_data_t *) &providesEVR, NULL)) {
183 for (i = 0; i < providesCount; i++) {
184 const char * vdummy = "";
185 rpmsenseFlags fdummy = RPMSENSE_ANY;
186 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEVERSION, RPM_STRING_ARRAY_TYPE,
188 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEFLAGS, RPM_INT32_TYPE,
194 xx = hge(h, RPMTAG_PROVIDEFLAGS, NULL, (rpm_data_t *) &provideFlags, NULL);
196 /* LCL: providesEVR is not NULL */
197 if (provides && providesEVR && provideFlags)
198 for (i = 0; i < providesCount; i++) {
199 if (!(provides[i] && providesEVR[i]))
201 if (!(provideFlags[i] == RPMSENSE_EQUAL &&
202 !strcmp(name, provides[i]) && !strcmp(pEVR, providesEVR[i])))
209 provides = hfd(provides, pnt);
210 providesEVR = hfd(providesEVR, pvt);
213 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDENAME, RPM_STRING_ARRAY_TYPE,
215 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEFLAGS, RPM_INT32_TYPE,
217 xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEVERSION, RPM_STRING_ARRAY_TYPE,
222 void legacyRetrofit(Header h)
227 * We don't use these entries (and rpm >= 2 never has) and they are
228 * pretty misleading. Let's just get rid of them so they don't confuse
231 if (headerIsEntry(h, RPMTAG_FILEUSERNAME))
232 (void) headerRemoveEntry(h, RPMTAG_FILEUIDS);
233 if (headerIsEntry(h, RPMTAG_FILEGROUPNAME))
234 (void) headerRemoveEntry(h, RPMTAG_FILEGIDS);
237 * We switched the way we do relocatable packages. We fix some of
238 * it up here, though the install code still has to be a bit
239 * careful. This fixup makes queries give the new values though,
240 * which is quite handy.
242 if (headerGetEntry(h, RPMTAG_DEFAULTPREFIX, NULL, (rpm_data_t *) &prefix, NULL))
244 const char * nprefix = stripTrailingChar(alloca_strdup(prefix), '/');
245 (void) headerAddEntry(h, RPMTAG_PREFIXES, RPM_STRING_ARRAY_TYPE,
250 * The file list was moved to a more compressed format which not
251 * only saves memory (nice), but gives fingerprinting a nice, fat
252 * speed boost (very nice). Go ahead and convert old headers to
253 * the new style (this is a noop for new headers).
257 /* XXX binary rpms always have RPMTAG_SOURCERPM, source rpms do not */
258 if (headerIsSource(h)) {
260 if (!headerIsEntry(h, RPMTAG_SOURCEPACKAGE))
261 (void) headerAddEntry(h, RPMTAG_SOURCEPACKAGE, RPM_INT32_TYPE,
264 /* Retrofit "Provide: name = EVR" for binary packages. */
265 providePackageNVR(h);