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