Avoid exporting providePackageNVR() in the library
[platform/upstream/rpm.git] / lib / legacy.c
1 /**
2  * \file lib/legacy.c
3  */
4
5 #include "system.h"
6
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>
12
13 #include "lib/legacy.h"
14
15 #include "debug.h"
16
17 #define alloca_strdup(_s)       strcpy(alloca(strlen(_s)+1), (_s))
18
19 int _noDirTokens = 0;
20
21 static int dncmp(const void * a, const void * b)
22 {
23     const char *const * first = a;
24     const char *const * second = b;
25     return strcmp(*first, *second);
26 }
27
28 void compressFilelist(Header h)
29 {
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;
34     char ** fileNames;
35     const char ** dirNames;
36     const char ** baseNames;
37     uint32_t * dirIndexes;
38     rpmTagType fnt;
39     rpm_count_t count, i;
40     int xx;
41     int dirIndex = -1;
42
43     /*
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
46      * a bit faster.
47      */
48
49     if (headerIsEntry(h, RPMTAG_DIRNAMES)) {
50         xx = hre(h, RPMTAG_OLDFILENAMES);
51         return;         /* Already converted. */
52     }
53
54     if (!hge(h, RPMTAG_OLDFILENAMES, &fnt, (rpm_data_t *) &fileNames, &count))
55         return;         /* no file list */
56     if (fileNames == NULL || count <= 0)
57         return;
58
59     dirNames = xmalloc(sizeof(*dirNames) * count);      /* worst case */
60     baseNames = xmalloc(sizeof(*dirNames) * count);
61     dirIndexes = xmalloc(sizeof(*dirIndexes) * count);
62
63     if (fileNames[0][0] != '/') {
64         /* HACK. Source RPM, so just do things differently */
65         dirIndex = 0;
66         dirNames[dirIndex] = "";
67         for (i = 0; i < count; i++) {
68             dirIndexes[i] = dirIndex;
69             baseNames[i] = fileNames[i];
70         }
71         goto exit;
72     }
73
74     for (i = 0; i < count; i++) {
75         const char ** needle;
76         char savechar;
77         char * baseName;
78         size_t len;
79
80         if (fileNames[i] == NULL)       /* XXX can't happen */
81             continue;
82         baseName = strrchr(fileNames[i], '/') + 1;
83         len = baseName - fileNames[i];
84         needle = dirNames;
85         savechar = *baseName;
86         *baseName = '\0';
87         if (dirIndex < 0 ||
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);
91             s[len] = '\0';
92             dirIndexes[i] = ++dirIndex;
93             dirNames[dirIndex] = s;
94         } else
95             dirIndexes[i] = needle - dirNames;
96
97         *baseName = savechar;
98         baseNames[i] = baseName;
99     }
100
101 exit:
102     if (count > 0) {
103         xx = hae(h, RPMTAG_DIRINDEXES, RPM_INT32_TYPE, dirIndexes, count);
104         xx = hae(h, RPMTAG_BASENAMES, RPM_STRING_ARRAY_TYPE,
105                         baseNames, count);
106         xx = hae(h, RPMTAG_DIRNAMES, RPM_STRING_ARRAY_TYPE,
107                         dirNames, (rpm_count_t) dirIndex + 1);
108     }
109
110     fileNames = hfd(fileNames, fnt);
111     free(dirNames);
112     free(baseNames);
113     free(dirIndexes);
114
115     xx = hre(h, RPMTAG_OLDFILENAMES);
116 }
117
118 void expandFilelist(Header h)
119 {
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;
124     int xx;
125
126     if (!headerIsEntry(h, RPMTAG_OLDFILENAMES)) {
127         rpmfiBuildFNames(h, RPMTAG_BASENAMES, &fileNames, &count);
128         if (fileNames == NULL || count <= 0)
129             return;
130         xx = hae(h, RPMTAG_OLDFILENAMES, RPM_STRING_ARRAY_TYPE,
131                         fileNames, count);
132         fileNames = _free(fileNames);
133     }
134
135     xx = hre(h, RPMTAG_DIRNAMES);
136     xx = hre(h, RPMTAG_BASENAMES);
137     xx = hre(h, RPMTAG_DIRINDEXES);
138 }
139
140 /*
141  * Up to rpm 3.0.4, packages implicitly provided their own name-version-release.
142  * Retrofit an explicit "Provides: name = epoch:version-release.
143  */
144 static void providePackageNVR(Header h)
145 {
146     HGE_t hge = (HGE_t)headerGetEntryMinMemory;
147     HFD_t hfd = headerFreeData;
148     const char *name;
149     char *pEVR;
150     rpmsenseFlags pFlags = RPMSENSE_EQUAL;
151     const char ** provides = NULL;
152     const char ** providesEVR = NULL;
153     rpmTagType pnt, pvt;
154     rpmsenseFlags * provideFlags = NULL;
155     rpm_count_t providesCount, i;
156     int xx;
157     int bingo = 1;
158
159     /* Generate provides for this package name-version-release. */
160     pEVR = headerGetEVR(h, &name);
161     if (!(name && pEVR))
162         return;
163
164     /*
165      * Rpm prior to 3.0.3 does not have versioned provides.
166      * If no provides at all are available, we can just add.
167      */
168     if (!hge(h, RPMTAG_PROVIDENAME, &pnt, (rpm_data_t *) &provides, &providesCount))
169         goto exit;
170
171     /*
172      * Otherwise, fill in entries on legacy packages.
173      */
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,
179                         &vdummy, 1);
180             xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEFLAGS, RPM_INT32_TYPE,
181                         &fdummy, 1);
182         }
183         goto exit;
184     }
185
186     xx = hge(h, RPMTAG_PROVIDEFLAGS, NULL, (rpm_data_t *) &provideFlags, NULL);
187
188         /* LCL: providesEVR is not NULL */
189     if (provides && providesEVR && provideFlags)
190     for (i = 0; i < providesCount; i++) {
191         if (!(provides[i] && providesEVR[i]))
192             continue;
193         if (!(provideFlags[i] == RPMSENSE_EQUAL &&
194             !strcmp(name, provides[i]) && !strcmp(pEVR, providesEVR[i])))
195             continue;
196         bingo = 0;
197         break;
198     }
199
200 exit:
201     provides = hfd(provides, pnt);
202     providesEVR = hfd(providesEVR, pvt);
203
204     if (bingo) {
205         xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDENAME, RPM_STRING_ARRAY_TYPE,
206                 &name, 1);
207         xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEFLAGS, RPM_INT32_TYPE,
208                 &pFlags, 1);
209         xx = headerAddOrAppendEntry(h, RPMTAG_PROVIDEVERSION, RPM_STRING_ARRAY_TYPE,
210                 &pEVR, 1);
211     }
212     free(pEVR);
213 }
214
215 void legacyRetrofit(Header h)
216 {
217     const char * prefix;
218
219     /*
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
222      * anyone.
223      */
224     if (headerIsEntry(h, RPMTAG_FILEUSERNAME))
225         (void) headerRemoveEntry(h, RPMTAG_FILEUIDS);
226     if (headerIsEntry(h, RPMTAG_FILEGROUPNAME))
227         (void) headerRemoveEntry(h, RPMTAG_FILEGIDS);
228
229     /*
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.
234      */
235     if (headerGetEntry(h, RPMTAG_DEFAULTPREFIX, NULL, (rpm_data_t *) &prefix, NULL))
236     {
237         const char * nprefix = stripTrailingChar(alloca_strdup(prefix), '/');
238         (void) headerAddEntry(h, RPMTAG_PREFIXES, RPM_STRING_ARRAY_TYPE,
239                 &nprefix, 1); 
240     }
241
242     /*
243      * The file list was moved to a more compressed format which not
244      * only saves memory (nice), but gives fingerprinting a nice, fat
245      * speed boost (very nice). Go ahead and convert old headers to
246      * the new style (this is a noop for new headers).
247      */
248      compressFilelist(h);
249
250     /* XXX binary rpms always have RPMTAG_SOURCERPM, source rpms do not */
251     if (headerIsSource(h)) {
252         int32_t one = 1;
253         if (!headerIsEntry(h, RPMTAG_SOURCEPACKAGE))
254             (void) headerAddEntry(h, RPMTAG_SOURCEPACKAGE, RPM_INT32_TYPE,
255                                 &one, 1);
256     } else {
257         /* Retrofit "Provide: name = EVR" for binary packages. */
258         providePackageNVR(h);
259     }
260 }