- rip out rpmDependencyConflict, replace with rpmProblem instead.
[platform/upstream/rpm.git] / build.c
1 /** \ingroup rpmcli
2  * Parse spec file and build package.
3  */
4
5 #include "system.h"
6
7 #include <rpmcli.h>
8 #include <rpmbuild.h>
9
10 #include "build.h"
11 #include "debug.h"
12
13 /*@access rpmTransactionSet @*/ /* XXX compared with NULL @*/
14 /*@access rpmdb @*/             /* XXX compared with NULL @*/
15 /*@access FD_t @*/              /* XXX compared with NULL @*/
16
17 /**
18  */
19 static int checkSpec(rpmTransactionSet ts, Header h)
20         /*@globals fileSystem, internalState @*/
21         /*@modifies ts, h, fileSystem, internalState @*/
22 {
23     rpmProblem conflicts;
24     int numConflicts;
25     int rc;
26
27     if (!headerIsEntry(h, RPMTAG_REQUIRENAME)
28      && !headerIsEntry(h, RPMTAG_CONFLICTNAME))
29         return 0;
30
31     rc = rpmtransAddPackage(ts, h, NULL, NULL, 0, NULL);
32
33     rc = rpmdepCheck(ts, &conflicts, &numConflicts);
34     /*@-branchstate@*/
35     if (rc == 0 && conflicts) {
36         rpmMessage(RPMMESS_ERROR, _("failed build dependencies:\n"));
37         printDepProblems(stderr, conflicts, numConflicts);
38         conflicts = rpmdepFreeConflicts(conflicts, numConflicts);
39         rc = 1;
40     }
41     /*@=branchstate@*/
42
43     return rc;
44 }
45
46 /*
47  * Kurwa, durni ameryka?ce sobe zawsze my?l?, ?e ca?y ?wiat mówi po
48  * angielsku...
49  */
50 /* XXX this is still a dumb test but at least it's i18n aware */
51 /**
52  */
53 static int isSpecFile(const char * specfile)
54         /*@globals fileSystem @*/
55         /*@modifies fileSystem @*/
56 {
57     char buf[256];
58     const char * s;
59     FD_t fd;
60     int count;
61     int checking;
62
63     fd = Fopen(specfile, "r.ufdio");
64     if (fd == NULL || Ferror(fd)) {
65         rpmError(RPMERR_OPEN, _("Unable to open spec file %s: %s\n"),
66                 specfile, Fstrerror(fd));
67         return 0;
68     }
69     count = Fread(buf, sizeof(buf[0]), sizeof(buf), fd);
70     (void) Fclose(fd);
71
72     checking = 1;
73     for (s = buf; count--; s++) {
74         switch (*s) {
75         case '\r':
76         case '\n':
77             checking = 1;
78             /*@switchbreak@*/ break;
79         case ':':
80             checking = 0;
81             /*@switchbreak@*/ break;
82         default:
83             if (checking && !(isprint(*s) || isspace(*s))) return 0;
84             /*@switchbreak@*/ break;
85         }
86     }
87     return 1;
88 }
89
90 /**
91  */
92 static int buildForTarget(rpmTransactionSet ts, const char * arg, BTA_t ba)
93         /*@globals rpmGlobalMacroContext,
94                 fileSystem, internalState @*/
95         /*@modifies ts, rpmGlobalMacroContext,
96                 fileSystem, internalState @*/
97 {
98     const char * passPhrase = ba->passPhrase;
99     const char * cookie = ba->cookie;
100     int buildAmount = ba->buildAmount;
101     const char * buildRootURL = NULL;
102     const char * specFile;
103     const char * specURL;
104     int specut;
105     char buf[BUFSIZ];
106     Spec spec = NULL;
107     int rc;
108
109 #ifndef DYING
110     rpmSetTables(RPM_MACHTABLE_BUILDARCH, RPM_MACHTABLE_BUILDOS);
111 #endif
112
113     /*@-branchstate@*/
114     if (ba->buildRootOverride)
115         buildRootURL = rpmGenPath(NULL, ba->buildRootOverride, NULL);
116     /*@=branchstate@*/
117
118     if (ba->buildMode == 't') {
119         FILE *fp;
120         const char * specDir;
121         const char * tmpSpecFile;
122         char * cmd, * s;
123         rpmCompressedMagic res = COMPRESSED_OTHER;
124         /*@observer@*/ static const char *zcmds[] =
125                 { "cat", "gunzip", "bunzip2", "cat" };
126
127         specDir = rpmGetPath("%{_specdir}", NULL);
128
129         /* XXX Using mkstemp is difficult here. */
130         /* XXX FWIW, default %{_specdir} is root.root 0755 */
131         {   char tfn[64];
132             strcpy(tfn, "rpm-spec.XXXXXX");
133             /*@-unrecog@*/
134             tmpSpecFile = rpmGetPath("%{_specdir}/", mktemp(tfn), NULL);
135             /*@=unrecog@*/
136         }
137
138         (void) isCompressed(arg, &res);
139
140         cmd = alloca(strlen(arg) + 50 + strlen(tmpSpecFile));
141         sprintf(cmd, "%s < %s | tar xOvf - Specfile 2>&1 > %s",
142                         zcmds[res & 0x3], arg, tmpSpecFile);
143         if (!(fp = popen(cmd, "r"))) {
144             rpmError(RPMERR_POPEN, _("Failed to open tar pipe: %m\n"));
145             specDir = _free(specDir);
146             tmpSpecFile = _free(tmpSpecFile);
147             return 1;
148         }
149         if ((!fgets(buf, sizeof(buf) - 1, fp)) || !strchr(buf, '/')) {
150             /* Try again */
151             (void) pclose(fp);
152
153             sprintf(cmd, "%s < %s | tar xOvf - \\*.spec 2>&1 > %s",
154                     zcmds[res & 0x3], arg, tmpSpecFile);
155             if (!(fp = popen(cmd, "r"))) {
156                 rpmError(RPMERR_POPEN, _("Failed to open tar pipe: %m\n"));
157                 specDir = _free(specDir);
158                 tmpSpecFile = _free(tmpSpecFile);
159                 return 1;
160             }
161             if (!fgets(buf, sizeof(buf) - 1, fp)) {
162                 /* Give up */
163                 rpmError(RPMERR_READ, _("Failed to read spec file from %s\n"),
164                         arg);
165                 (void) unlink(tmpSpecFile);
166                 specDir = _free(specDir);
167                 tmpSpecFile = _free(tmpSpecFile);
168                 return 1;
169             }
170         }
171         (void) pclose(fp);
172
173         cmd = s = buf;
174         while (*cmd != '\0') {
175             if (*cmd == '/') s = cmd + 1;
176             cmd++;
177         }
178
179         cmd = s;
180
181         /* remove trailing \n */
182         s = cmd + strlen(cmd) - 1;
183         *s = '\0';
184
185         specURL = s = alloca(strlen(specDir) + strlen(cmd) + 5);
186         sprintf(s, "%s/%s", specDir, cmd);
187         res = rename(tmpSpecFile, s);
188         specDir = _free(specDir);
189         
190         if (res) {
191             rpmError(RPMERR_RENAME, _("Failed to rename %s to %s: %m\n"),
192                         tmpSpecFile, s);
193             (void) unlink(tmpSpecFile);
194             tmpSpecFile = _free(tmpSpecFile);
195             return 1;
196         }
197         tmpSpecFile = _free(tmpSpecFile);
198
199         /* Make the directory which contains the tarball the source 
200            directory for this run */
201
202         if (*arg != '/') {
203             (void)getcwd(buf, BUFSIZ);
204             strcat(buf, "/");
205             strcat(buf, arg);
206         } else 
207             strcpy(buf, arg);
208
209         cmd = buf + strlen(buf) - 1;
210         while (*cmd != '/') cmd--;
211         *cmd = '\0';
212
213         addMacro(NULL, "_sourcedir", NULL, buf, RMIL_TARBALL);
214     } else {
215         specURL = arg;
216     }
217
218     specut = urlPath(specURL, &specFile);
219     if (*specFile != '/') {
220         char *s = alloca(BUFSIZ);
221         (void)getcwd(s, BUFSIZ);
222         strcat(s, "/");
223         strcat(s, arg);
224         specURL = s;
225     }
226
227     if (specut != URL_IS_DASH) {
228         struct stat st;
229         if (Stat(specURL, &st) < 0) {
230             rpmError(RPMERR_STAT, _("failed to stat %s: %m\n"), specURL);
231             rc = 1;
232             goto exit;
233         }
234         if (! S_ISREG(st.st_mode)) {
235             rpmError(RPMERR_NOTREG, _("File %s is not a regular file.\n"),
236                 specURL);
237             rc = 1;
238             goto exit;
239         }
240
241         /* Try to verify that the file is actually a specfile */
242         if (!isSpecFile(specURL)) {
243             rpmError(RPMERR_BADSPEC,
244                 _("File %s does not appear to be a specfile.\n"), specURL);
245             rc = 1;
246             goto exit;
247         }
248     }
249     
250     /* Parse the spec file */
251 #define _anyarch(_f)    \
252 (((_f)&(RPMBUILD_PREP|RPMBUILD_BUILD|RPMBUILD_INSTALL|RPMBUILD_PACKAGEBINARY)) == 0)
253     if (parseSpec(&spec, specURL, ba->rootdir, buildRootURL, 0, passPhrase,
254                 cookie, _anyarch(buildAmount), ba->force)) {
255         rc = 1;
256         goto exit;
257     }
258 #undef  _anyarch
259
260     /* Assemble source header from parsed components */
261     initSourceHeader(spec);
262
263     /* Check build prerequisites */
264     if (!ba->noDeps && checkSpec(ts, spec->sourceHeader)) {
265         rc = 1;
266         goto exit;
267     }
268
269     if (buildSpec(spec, buildAmount, ba->noBuild)) {
270         rc = 1;
271         goto exit;
272     }
273     
274     if (ba->buildMode == 't')
275         (void) Unlink(specURL);
276     rc = 0;
277
278 exit:
279     spec = freeSpec(spec);
280     buildRootURL = _free(buildRootURL);
281     return rc;
282 }
283
284 int build(rpmTransactionSet ts, const char * arg, BTA_t ba, const char * rcfile)
285 {
286     char *t, *te;
287     int rc = 0;
288     char * targets = ba->targets;
289 #define buildCleanMask  (RPMBUILD_RMSOURCE|RPMBUILD_RMSPEC)
290     int cleanFlags = ba->buildAmount & buildCleanMask;
291
292     if (targets == NULL) {
293         rc =  buildForTarget(ts, arg, ba);
294         goto exit;
295     }
296
297     /* parse up the build operators */
298
299     printf(_("Building target platforms: %s\n"), targets);
300
301     ba->buildAmount &= ~buildCleanMask;
302     for (t = targets; *t != '\0'; t = te) {
303         char *target;
304         if ((te = strchr(t, ',')) == NULL)
305             te = t + strlen(t);
306         target = alloca(te-t+1);
307         strncpy(target, t, (te-t));
308         target[te-t] = '\0';
309         if (*te != '\0')
310             te++;
311         else    /* XXX Perform clean-up after last target build. */
312             ba->buildAmount |= cleanFlags;
313
314         printf(_("Building for target %s\n"), target);
315
316         /* Read in configuration for target. */
317         rpmFreeMacros(NULL);
318         (void) rpmReadConfigFiles(rcfile, target);
319         rc = buildForTarget(ts, arg, ba);
320         if (rc)
321             break;
322     }
323
324 exit:
325     /* Restore original configuration. */
326     rpmFreeMacros(NULL);
327     (void) rpmReadConfigFiles(rcfile, NULL);
328
329     return rc;
330 }