2000-08-28 03:18:25 +08:00
|
|
|
/** \ingroup rpmbuild
|
|
|
|
* \file build/pack.c
|
2000-01-25 04:02:32 +08:00
|
|
|
* Assemble components of an RPM package.
|
|
|
|
*/
|
|
|
|
|
1998-07-26 05:00:26 +08:00
|
|
|
#include "system.h"
|
|
|
|
|
2010-01-05 21:25:31 +08:00
|
|
|
#include <errno.h>
|
2010-08-24 18:54:04 +08:00
|
|
|
#include <netdb.h>
|
|
|
|
#include <time.h>
|
2010-01-05 21:25:31 +08:00
|
|
|
|
2008-01-30 19:53:51 +08:00
|
|
|
#include <rpm/rpmlib.h> /* RPMSIGTAG*, rpmReadPackageFile */
|
2008-01-30 23:05:29 +08:00
|
|
|
#include <rpm/rpmfileutil.h>
|
|
|
|
#include <rpm/rpmlog.h>
|
1998-01-13 05:31:29 +08:00
|
|
|
|
2008-01-30 23:05:29 +08:00
|
|
|
#include "rpmio/rpmio_internal.h" /* fdInitDigest, fdFiniDigest */
|
2007-11-23 18:37:54 +08:00
|
|
|
#include "lib/fsm.h"
|
2012-07-02 21:15:41 +08:00
|
|
|
#include "lib/cpio.h"
|
2007-11-23 18:37:54 +08:00
|
|
|
#include "lib/signature.h"
|
|
|
|
#include "lib/rpmlead.h"
|
2010-08-25 20:41:09 +08:00
|
|
|
#include "build/rpmbuild_internal.h"
|
|
|
|
#include "build/rpmbuild_misc.h"
|
2008-01-30 23:05:29 +08:00
|
|
|
|
2000-12-13 04:03:45 +08:00
|
|
|
#include "debug.h"
|
1998-01-13 05:31:29 +08:00
|
|
|
|
2010-08-24 18:23:51 +08:00
|
|
|
typedef struct cpioSourceArchive_s {
|
|
|
|
rpm_loff_t cpioArchiveSize;
|
|
|
|
rpmfi cpioList;
|
|
|
|
} * CSA_t;
|
|
|
|
|
2001-01-11 22:13:04 +08:00
|
|
|
/**
|
2001-01-26 04:26:35 +08:00
|
|
|
* @todo Create transaction set *much* earlier.
|
2001-01-11 22:13:04 +08:00
|
|
|
*/
|
2011-05-18 16:55:59 +08:00
|
|
|
static rpmRC cpio_doio(FD_t fdo, Header h, CSA_t csa, const char * fmodeMacro)
|
1998-04-08 07:58:01 +08:00
|
|
|
{
|
2007-12-18 16:10:03 +08:00
|
|
|
char *failedFile = NULL;
|
2000-01-25 04:02:32 +08:00
|
|
|
FD_t cfd;
|
2012-04-24 17:36:26 +08:00
|
|
|
int fsmrc;
|
2011-03-16 00:58:31 +08:00
|
|
|
|
|
|
|
(void) Fflush(fdo);
|
2011-05-18 16:55:59 +08:00
|
|
|
cfd = Fdopen(fdDup(Fileno(fdo)), fmodeMacro);
|
2001-05-04 05:00:18 +08:00
|
|
|
if (cfd == NULL)
|
2007-12-07 15:28:39 +08:00
|
|
|
return RPMRC_FAIL;
|
2001-02-02 23:04:44 +08:00
|
|
|
|
2012-04-24 19:28:03 +08:00
|
|
|
fsmrc = rpmPackageFilesArchive(csa->cpioList, headerIsSource(h), cfd,
|
2012-01-11 21:11:37 +08:00
|
|
|
&csa->cpioArchiveSize, &failedFile);
|
2011-03-16 00:58:31 +08:00
|
|
|
|
2012-01-11 21:11:37 +08:00
|
|
|
if (fsmrc) {
|
2001-06-20 14:29:20 +08:00
|
|
|
if (failedFile)
|
2012-07-02 21:15:41 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("create archive failed on file %s: %s\n"),
|
|
|
|
failedFile, rpmcpioStrerror(fsmrc));
|
2001-06-20 14:29:20 +08:00
|
|
|
else
|
2012-07-02 21:15:41 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("create archive failed: %s\n"),
|
|
|
|
rpmcpioStrerror(fsmrc));
|
1998-11-20 02:10:28 +08:00
|
|
|
}
|
2011-03-16 00:58:31 +08:00
|
|
|
|
2011-05-18 17:04:12 +08:00
|
|
|
free(failedFile);
|
2012-01-11 21:11:37 +08:00
|
|
|
Fclose(cfd);
|
1999-01-06 07:13:56 +08:00
|
|
|
|
2012-01-11 21:11:37 +08:00
|
|
|
return (fsmrc == 0) ? RPMRC_OK : RPMRC_FAIL;
|
1998-01-13 05:31:29 +08:00
|
|
|
}
|
|
|
|
|
2011-05-18 18:23:29 +08:00
|
|
|
static rpmRC addFileToTag(rpmSpec spec, const char * file,
|
|
|
|
Header h, rpmTagVal tag, int append)
|
1998-10-12 04:58:58 +08:00
|
|
|
{
|
2011-05-18 18:23:29 +08:00
|
|
|
StringBuf sb = NULL;
|
2000-01-25 04:02:32 +08:00
|
|
|
char buf[BUFSIZ];
|
2008-03-25 01:01:12 +08:00
|
|
|
char * fn;
|
2001-05-01 06:32:22 +08:00
|
|
|
FILE * f;
|
2011-05-18 17:47:50 +08:00
|
|
|
rpmRC rc = RPMRC_FAIL; /* assume failure */
|
1998-10-12 04:58:58 +08:00
|
|
|
|
2011-05-18 18:23:29 +08:00
|
|
|
/* no script file is not an error */
|
|
|
|
if (file == NULL)
|
|
|
|
return RPMRC_OK;
|
|
|
|
|
2007-04-16 20:06:24 +08:00
|
|
|
fn = rpmGetPath("%{_builddir}/%{?buildsubdir:%{buildsubdir}/}", file, NULL);
|
1998-10-12 04:58:58 +08:00
|
|
|
|
2008-03-25 01:00:48 +08:00
|
|
|
f = fopen(fn, "r");
|
2011-05-18 18:23:29 +08:00
|
|
|
if (f == NULL) {
|
|
|
|
rpmlog(RPMLOG_ERR,_("Could not open %s file: %s\n"),
|
|
|
|
rpmTagGetName(tag), file);
|
2008-03-25 01:01:12 +08:00
|
|
|
goto exit;
|
2011-05-18 18:23:29 +08:00
|
|
|
}
|
2011-05-18 17:47:50 +08:00
|
|
|
|
2011-05-18 18:23:29 +08:00
|
|
|
sb = newStringBuf();
|
2011-05-18 17:47:50 +08:00
|
|
|
if (append) {
|
|
|
|
const char *s = headerGetString(h, tag);
|
|
|
|
if (s) {
|
|
|
|
appendLineStringBuf(sb, s);
|
|
|
|
headerDel(h, tag);
|
|
|
|
}
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
2011-05-18 17:47:50 +08:00
|
|
|
|
2001-05-01 06:32:22 +08:00
|
|
|
while (fgets(buf, sizeof(buf), f)) {
|
2000-01-25 04:02:32 +08:00
|
|
|
if (expandMacros(spec, spec->macros, buf, sizeof(buf))) {
|
2008-03-25 01:01:12 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("%s: line: %s\n"), fn, buf);
|
2011-05-18 17:47:50 +08:00
|
|
|
goto exit;
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
|
|
|
appendStringBuf(sb, buf);
|
1998-10-12 04:58:58 +08:00
|
|
|
}
|
2011-05-18 17:47:50 +08:00
|
|
|
headerPutString(h, tag, getStringBuf(sb));
|
|
|
|
rc = RPMRC_OK;
|
1999-10-28 07:18:10 +08:00
|
|
|
|
2008-03-25 01:01:12 +08:00
|
|
|
exit:
|
2011-05-18 17:47:50 +08:00
|
|
|
if (f) fclose(f);
|
2008-03-25 01:01:12 +08:00
|
|
|
free(fn);
|
2011-05-18 17:47:50 +08:00
|
|
|
freeStringBuf(sb);
|
2008-03-25 01:01:12 +08:00
|
|
|
|
2011-05-18 17:47:50 +08:00
|
|
|
return rc;
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
1998-10-12 04:58:58 +08:00
|
|
|
|
2010-08-24 18:54:04 +08:00
|
|
|
static rpm_time_t * getBuildTime(void)
|
|
|
|
{
|
|
|
|
static rpm_time_t buildTime[1];
|
|
|
|
|
|
|
|
if (buildTime[0] == 0)
|
|
|
|
buildTime[0] = (int32_t) time(NULL);
|
|
|
|
return buildTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char * buildHost(void)
|
|
|
|
{
|
|
|
|
static char hostname[1024];
|
|
|
|
static int oneshot = 0;
|
|
|
|
struct hostent *hbn;
|
|
|
|
|
|
|
|
if (! oneshot) {
|
|
|
|
(void) gethostname(hostname, sizeof(hostname));
|
|
|
|
hbn = gethostbyname(hostname);
|
|
|
|
if (hbn)
|
|
|
|
strcpy(hostname, hbn->h_name);
|
|
|
|
else
|
|
|
|
rpmlog(RPMLOG_WARNING,
|
|
|
|
_("Could not canonicalize hostname: %s\n"), hostname);
|
|
|
|
oneshot = 1;
|
|
|
|
}
|
|
|
|
return(hostname);
|
|
|
|
}
|
1998-10-12 04:58:58 +08:00
|
|
|
|
2007-12-07 16:43:53 +08:00
|
|
|
static rpmRC processScriptFiles(rpmSpec spec, Package pkg)
|
1996-02-19 10:24:47 +08:00
|
|
|
{
|
2000-01-25 04:02:32 +08:00
|
|
|
struct TriggerFileEntry *p;
|
2010-03-11 18:06:49 +08:00
|
|
|
int addflags = 0;
|
2011-05-18 18:23:29 +08:00
|
|
|
rpmRC rc = RPMRC_FAIL;
|
|
|
|
Header h = pkg->header;
|
2000-01-25 04:02:32 +08:00
|
|
|
|
2011-05-18 18:23:29 +08:00
|
|
|
if (addFileToTag(spec, pkg->preInFile, h, RPMTAG_PREIN, 1) ||
|
|
|
|
addFileToTag(spec, pkg->preUnFile, h, RPMTAG_PREUN, 1) ||
|
|
|
|
addFileToTag(spec, pkg->preTransFile, h, RPMTAG_PRETRANS, 1) ||
|
|
|
|
addFileToTag(spec, pkg->postInFile, h, RPMTAG_POSTIN, 1) ||
|
|
|
|
addFileToTag(spec, pkg->postUnFile, h, RPMTAG_POSTUN, 1) ||
|
|
|
|
addFileToTag(spec, pkg->postTransFile, h, RPMTAG_POSTTRANS, 1) ||
|
|
|
|
addFileToTag(spec, pkg->verifyFile, h, RPMTAG_VERIFYSCRIPT, 1))
|
|
|
|
{
|
|
|
|
goto exit;
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
|
|
|
|
2010-03-11 18:06:49 +08:00
|
|
|
/* if any trigger has flags, we need to add flags entry for all of them */
|
|
|
|
for (p = pkg->triggerFiles; p != NULL; p = p->next) {
|
|
|
|
if (p->flags) {
|
|
|
|
addflags = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-01-25 04:02:32 +08:00
|
|
|
for (p = pkg->triggerFiles; p != NULL; p = p->next) {
|
2011-05-18 18:23:29 +08:00
|
|
|
headerPutString(h, RPMTAG_TRIGGERSCRIPTPROG, p->prog);
|
2010-03-11 18:06:49 +08:00
|
|
|
if (addflags) {
|
2011-05-18 18:23:29 +08:00
|
|
|
headerPutUint32(h, RPMTAG_TRIGGERSCRIPTFLAGS, &p->flags, 1);
|
2010-03-11 18:06:49 +08:00
|
|
|
}
|
2008-06-17 17:10:01 +08:00
|
|
|
|
2000-01-25 04:02:32 +08:00
|
|
|
if (p->script) {
|
2011-05-18 18:23:29 +08:00
|
|
|
headerPutString(h, RPMTAG_TRIGGERSCRIPTS, p->script);
|
2000-01-25 04:02:32 +08:00
|
|
|
} else if (p->fileName) {
|
2011-05-18 18:23:29 +08:00
|
|
|
if (addFileToTag(spec, p->fileName, h, RPMTAG_TRIGGERSCRIPTS, 0)) {
|
|
|
|
goto exit;
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* This is dumb. When the header supports NULL string */
|
|
|
|
/* this will go away. */
|
2011-05-18 18:23:29 +08:00
|
|
|
headerPutString(h, RPMTAG_TRIGGERSCRIPTS, "");
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
|
|
|
}
|
2011-05-18 18:23:29 +08:00
|
|
|
rc = RPMRC_OK;
|
2000-01-25 04:02:32 +08:00
|
|
|
|
2011-05-18 18:23:29 +08:00
|
|
|
exit:
|
|
|
|
return rc;
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
|
|
|
|
2011-05-18 20:53:54 +08:00
|
|
|
static rpmRC copyPayload(FD_t ifd, const char *ifn, FD_t ofd, const char *ofn)
|
|
|
|
{
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
size_t nb;
|
|
|
|
rpmRC rc = RPMRC_OK;
|
|
|
|
|
|
|
|
while ((nb = Fread(buf, 1, sizeof(buf), ifd)) > 0) {
|
|
|
|
if (Fwrite(buf, sizeof(buf[0]), nb, ofd) != nb) {
|
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to write payload to %s: %s\n"),
|
|
|
|
ofn, Fstrerror(ofd));
|
|
|
|
rc = RPMRC_FAIL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nb < 0) {
|
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to read payload from %s: %s\n"),
|
|
|
|
ifn, Fstrerror(ifd));
|
|
|
|
rc = RPMRC_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2012-04-23 16:04:02 +08:00
|
|
|
static int depContainsTilde(Header h, rpmTagVal tagEVR)
|
|
|
|
{
|
|
|
|
struct rpmtd_s evrs;
|
|
|
|
const char *evr = NULL;
|
|
|
|
|
|
|
|
if (headerGet(h, tagEVR, &evrs, HEADERGET_MINMEM)) {
|
|
|
|
while ((evr = rpmtdNextString(&evrs)) != NULL)
|
|
|
|
if (strchr(evr, '~'))
|
|
|
|
break;
|
|
|
|
rpmtdFreeData(&evrs);
|
|
|
|
}
|
|
|
|
return evr != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rpmTagVal depevrtags[] = {
|
|
|
|
RPMTAG_PROVIDEVERSION,
|
|
|
|
RPMTAG_REQUIREVERSION,
|
|
|
|
RPMTAG_OBSOLETEVERSION,
|
|
|
|
RPMTAG_CONFLICTVERSION,
|
|
|
|
RPMTAG_ORDERVERSION,
|
|
|
|
RPMTAG_TRIGGERVERSION,
|
|
|
|
RPMTAG_SUGGESTSVERSION,
|
|
|
|
RPMTAG_ENHANCESVERSION,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
static int haveTildeDep(Header h)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; depevrtags[i] != 0; i++)
|
|
|
|
if (depContainsTilde(h, depevrtags[i]))
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2010-08-24 18:23:51 +08:00
|
|
|
static rpmRC writeRPM(Header *hdrp, unsigned char ** pkgidp, const char *fileName,
|
2010-08-20 22:50:51 +08:00
|
|
|
CSA_t csa, char **cookie)
|
2000-01-25 04:02:32 +08:00
|
|
|
{
|
2000-11-07 21:16:43 +08:00
|
|
|
FD_t fd = NULL;
|
|
|
|
FD_t ifd = NULL;
|
2007-12-16 22:25:09 +08:00
|
|
|
char * sigtarget = NULL;;
|
2007-12-15 01:52:11 +08:00
|
|
|
char * rpmio_flags = NULL;
|
2007-12-17 03:24:44 +08:00
|
|
|
char * SHA1 = NULL;
|
2010-08-23 14:51:52 +08:00
|
|
|
const char *s;
|
2001-06-12 12:10:21 +08:00
|
|
|
Header h;
|
2000-12-03 05:53:44 +08:00
|
|
|
Header sig = NULL;
|
2008-04-10 16:25:59 +08:00
|
|
|
int xx;
|
2007-12-07 15:28:39 +08:00
|
|
|
rpmRC rc = RPMRC_OK;
|
2008-06-17 17:10:01 +08:00
|
|
|
struct rpmtd_s td;
|
2010-10-22 18:31:34 +08:00
|
|
|
rpmTagVal sizetag;
|
|
|
|
rpmTagVal payloadtag;
|
1996-02-19 10:24:47 +08:00
|
|
|
|
2001-06-12 12:10:21 +08:00
|
|
|
/* Transfer header reference form *hdrp to h. */
|
2002-07-14 03:08:51 +08:00
|
|
|
h = headerLink(*hdrp);
|
|
|
|
*hdrp = headerFree(*hdrp);
|
2001-06-12 12:10:21 +08:00
|
|
|
|
2002-12-24 10:41:45 +08:00
|
|
|
if (pkgidp)
|
|
|
|
*pkgidp = NULL;
|
2002-12-22 04:37:37 +08:00
|
|
|
|
2000-06-23 09:19:45 +08:00
|
|
|
/* Save payload information */
|
2008-04-10 16:25:59 +08:00
|
|
|
if (headerIsSource(h))
|
2001-12-07 02:34:49 +08:00
|
|
|
rpmio_flags = rpmExpand("%{?_source_payload}", NULL);
|
2007-12-02 03:06:00 +08:00
|
|
|
else
|
2001-12-07 02:34:49 +08:00
|
|
|
rpmio_flags = rpmExpand("%{?_binary_payload}", NULL);
|
2007-12-02 03:06:00 +08:00
|
|
|
|
2011-05-18 16:55:59 +08:00
|
|
|
/* If not configured or bogus, fall back to gz */
|
|
|
|
if (rpmio_flags[0] != 'w') {
|
|
|
|
free(rpmio_flags);
|
2000-06-23 09:19:45 +08:00
|
|
|
rpmio_flags = xstrdup("w9.gzdio");
|
|
|
|
}
|
|
|
|
s = strchr(rpmio_flags, '.');
|
|
|
|
if (s) {
|
2011-05-18 20:53:54 +08:00
|
|
|
char *buf = NULL;
|
2008-04-15 14:16:05 +08:00
|
|
|
const char *compr = NULL;
|
2008-06-19 20:43:45 +08:00
|
|
|
headerPutString(h, RPMTAG_PAYLOADFORMAT, "cpio");
|
2008-06-17 17:10:01 +08:00
|
|
|
|
2011-02-15 20:39:29 +08:00
|
|
|
if (rstreq(s+1, "ufdio")) {
|
|
|
|
compr = NULL;
|
|
|
|
} else if (rstreq(s+1, "gzdio")) {
|
2008-04-15 14:16:05 +08:00
|
|
|
compr = "gzip";
|
2009-04-13 18:58:39 +08:00
|
|
|
#if HAVE_BZLIB_H
|
2009-08-31 16:08:05 +08:00
|
|
|
} else if (rstreq(s+1, "bzdio")) {
|
2008-04-15 14:16:05 +08:00
|
|
|
compr = "bzip2";
|
2000-06-23 09:19:45 +08:00
|
|
|
/* Add prereq on rpm version that understands bzip2 payloads */
|
2001-05-01 06:32:22 +08:00
|
|
|
(void) rpmlibNeedsFeature(h, "PayloadIsBzip2", "3.0.5-1");
|
2009-04-13 18:58:39 +08:00
|
|
|
#endif
|
|
|
|
#if HAVE_LZMA_H
|
2009-08-31 16:08:05 +08:00
|
|
|
} else if (rstreq(s+1, "xzdio")) {
|
2009-03-18 15:42:23 +08:00
|
|
|
compr = "xz";
|
|
|
|
(void) rpmlibNeedsFeature(h, "PayloadIsXz", "5.2-1");
|
2009-08-31 16:08:05 +08:00
|
|
|
} else if (rstreq(s+1, "lzdio")) {
|
2009-03-18 17:24:52 +08:00
|
|
|
compr = "lzma";
|
|
|
|
(void) rpmlibNeedsFeature(h, "PayloadIsLzma", "4.4.6-1");
|
2009-04-13 18:58:39 +08:00
|
|
|
#endif
|
2008-04-15 14:16:05 +08:00
|
|
|
} else {
|
|
|
|
rpmlog(RPMLOG_ERR, _("Unknown payload compression: %s\n"),
|
|
|
|
rpmio_flags);
|
|
|
|
rc = RPMRC_FAIL;
|
|
|
|
goto exit;
|
2000-06-23 09:19:45 +08:00
|
|
|
}
|
2008-04-15 14:16:05 +08:00
|
|
|
|
2011-02-15 20:39:29 +08:00
|
|
|
if (compr)
|
|
|
|
headerPutString(h, RPMTAG_PAYLOADCOMPRESSOR, compr);
|
2008-03-23 20:48:49 +08:00
|
|
|
buf = xstrdup(rpmio_flags);
|
2000-07-10 07:10:25 +08:00
|
|
|
buf[s - rpmio_flags] = '\0';
|
2008-06-19 20:43:45 +08:00
|
|
|
headerPutString(h, RPMTAG_PAYLOADFLAGS, buf+1);
|
2008-03-23 20:48:49 +08:00
|
|
|
free(buf);
|
2000-06-23 09:19:45 +08:00
|
|
|
}
|
|
|
|
|
2012-04-23 16:04:02 +08:00
|
|
|
/* check if the package has a dependency with a '~' */
|
|
|
|
if (haveTildeDep(h))
|
|
|
|
(void) rpmlibNeedsFeature(h, "TildeInVersions", "4.10.0-1");
|
|
|
|
|
1998-01-13 05:31:29 +08:00
|
|
|
/* Create and add the cookie */
|
|
|
|
if (cookie) {
|
2008-03-23 20:48:49 +08:00
|
|
|
rasprintf(cookie, "%s %d", buildHost(), (int) (*getBuildTime()));
|
2008-06-19 20:43:45 +08:00
|
|
|
headerPutString(h, RPMTAG_COOKIE, *cookie);
|
1998-01-13 05:31:29 +08:00
|
|
|
}
|
|
|
|
|
2000-11-09 01:07:01 +08:00
|
|
|
/* Reallocate the header into one contiguous region. */
|
2001-06-12 12:10:21 +08:00
|
|
|
h = headerReload(h, RPMTAG_HEADERIMMUTABLE);
|
2001-05-04 05:00:18 +08:00
|
|
|
if (h == NULL) { /* XXX can't happen */
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to create immutable header region.\n"));
|
2001-05-04 05:00:18 +08:00
|
|
|
goto exit;
|
|
|
|
}
|
2001-06-12 12:10:21 +08:00
|
|
|
/* Re-reference reallocated header. */
|
2002-07-14 03:08:51 +08:00
|
|
|
*hdrp = headerLink(h);
|
2000-11-09 01:07:01 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Write the header+archive into a temp file so that the size of
|
|
|
|
* archive (after compression) can be added to the header.
|
|
|
|
*/
|
2008-05-03 17:34:19 +08:00
|
|
|
fd = rpmMkTempFile(NULL, &sigtarget);
|
2008-04-11 14:05:05 +08:00
|
|
|
if (fd == NULL || Ferror(fd)) {
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to open temp file.\n"));
|
2001-05-04 05:00:18 +08:00
|
|
|
goto exit;
|
1998-01-13 05:31:29 +08:00
|
|
|
}
|
1999-11-15 03:15:18 +08:00
|
|
|
|
2002-03-04 07:09:49 +08:00
|
|
|
fdInitDigest(fd, PGPHASHALGO_SHA1, 0);
|
1999-08-24 23:18:43 +08:00
|
|
|
if (headerWrite(fd, h, HEADER_MAGIC_YES)) {
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to write temp header\n"));
|
1999-08-24 23:18:43 +08:00
|
|
|
} else { /* Write the archive and get the size */
|
2002-03-07 07:17:31 +08:00
|
|
|
(void) Fflush(fd);
|
2002-07-22 06:06:19 +08:00
|
|
|
fdFiniDigest(fd, PGPHASHALGO_SHA1, (void **)&SHA1, NULL, 1);
|
1999-08-24 23:18:43 +08:00
|
|
|
if (csa->cpioList != NULL) {
|
2001-01-24 07:03:28 +08:00
|
|
|
rc = cpio_doio(fd, h, csa, rpmio_flags);
|
1999-08-24 23:18:43 +08:00
|
|
|
} else {
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Bad CSA data\n"));
|
1999-08-24 23:18:43 +08:00
|
|
|
}
|
1998-08-09 06:27:08 +08:00
|
|
|
}
|
1999-11-15 03:15:18 +08:00
|
|
|
|
2007-12-07 15:28:39 +08:00
|
|
|
if (rc != RPMRC_OK)
|
2000-11-07 21:16:43 +08:00
|
|
|
goto exit;
|
1996-02-19 10:24:47 +08:00
|
|
|
|
2001-05-01 06:32:22 +08:00
|
|
|
(void) Fclose(fd);
|
2000-11-07 21:16:43 +08:00
|
|
|
fd = NULL;
|
2007-12-03 22:33:18 +08:00
|
|
|
(void) unlink(fileName);
|
1999-08-24 23:18:43 +08:00
|
|
|
|
2000-12-03 05:53:44 +08:00
|
|
|
/* Generate the signature */
|
2001-05-01 06:32:22 +08:00
|
|
|
(void) fflush(stdout);
|
2000-12-03 05:53:44 +08:00
|
|
|
sig = rpmNewSignature();
|
2008-06-26 21:34:32 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* There should be rpmlib() dependency on this, but that doesn't
|
|
|
|
* really do much good as these are signature tags that get read
|
|
|
|
* way before dependency checking has a chance to figure out anything.
|
|
|
|
* On the positive side, not inserting the 32bit tag at all means
|
|
|
|
* older rpm will just bail out with error message on attempt to read
|
|
|
|
* such a package.
|
|
|
|
*/
|
|
|
|
if (csa->cpioArchiveSize < UINT32_MAX) {
|
|
|
|
sizetag = RPMSIGTAG_SIZE;
|
|
|
|
payloadtag = RPMSIGTAG_PAYLOADSIZE;
|
|
|
|
} else {
|
|
|
|
sizetag = RPMSIGTAG_LONGSIZE;
|
|
|
|
payloadtag = RPMSIGTAG_LONGARCHIVESIZE;
|
|
|
|
}
|
2010-09-29 15:48:59 +08:00
|
|
|
(void) rpmGenDigest(sig, sigtarget, sizetag);
|
|
|
|
(void) rpmGenDigest(sig, sigtarget, RPMSIGTAG_MD5);
|
2002-03-04 07:09:49 +08:00
|
|
|
|
2002-07-22 06:06:19 +08:00
|
|
|
if (SHA1) {
|
2008-06-17 17:10:01 +08:00
|
|
|
/* XXX can't use rpmtdFromFoo() on RPMSIGTAG_* items */
|
2008-06-17 19:54:44 +08:00
|
|
|
rpmtdReset(&td);
|
|
|
|
td.tag = RPMSIGTAG_SHA1;
|
|
|
|
td.type = RPM_STRING_TYPE;
|
|
|
|
td.data = SHA1;
|
|
|
|
td.count = 1;
|
|
|
|
headerPut(sig, &td, HEADERPUT_DEFAULT);
|
2002-07-22 06:06:19 +08:00
|
|
|
SHA1 = _free(SHA1);
|
2001-06-12 12:10:21 +08:00
|
|
|
}
|
2000-12-03 05:53:44 +08:00
|
|
|
|
2008-06-26 21:34:32 +08:00
|
|
|
{
|
|
|
|
/* XXX can't use headerPutType() on legacy RPMSIGTAG_* items */
|
2008-06-17 19:54:44 +08:00
|
|
|
rpmtdReset(&td);
|
2008-06-26 21:34:32 +08:00
|
|
|
td.tag = payloadtag;
|
2008-06-17 19:54:44 +08:00
|
|
|
td.count = 1;
|
2008-06-26 21:34:32 +08:00
|
|
|
if (payloadtag == RPMSIGTAG_PAYLOADSIZE) {
|
2008-08-13 14:43:41 +08:00
|
|
|
rpm_off_t asize = csa->cpioArchiveSize;
|
2008-06-26 21:34:32 +08:00
|
|
|
td.type = RPM_INT32_TYPE;
|
2008-08-13 14:43:41 +08:00
|
|
|
td.data = &asize;
|
|
|
|
headerPut(sig, &td, HEADERPUT_DEFAULT);
|
2008-06-26 21:34:32 +08:00
|
|
|
} else {
|
2008-08-13 14:43:41 +08:00
|
|
|
rpm_loff_t asize = csa->cpioArchiveSize;
|
2008-06-26 21:34:32 +08:00
|
|
|
td.type = RPM_INT64_TYPE;
|
2008-08-13 14:43:41 +08:00
|
|
|
td.data = &asize;
|
|
|
|
headerPut(sig, &td, HEADERPUT_DEFAULT);
|
2008-06-26 21:34:32 +08:00
|
|
|
}
|
2002-03-04 07:09:49 +08:00
|
|
|
}
|
|
|
|
|
2000-12-03 05:53:44 +08:00
|
|
|
/* Reallocate the signature into one contiguous region. */
|
|
|
|
sig = headerReload(sig, RPMTAG_HEADERSIGNATURES);
|
2001-05-04 05:00:18 +08:00
|
|
|
if (sig == NULL) { /* XXX can't happen */
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to reload signature header.\n"));
|
2001-05-04 05:00:18 +08:00
|
|
|
goto exit;
|
|
|
|
}
|
2000-12-03 05:53:44 +08:00
|
|
|
|
1998-01-13 05:31:29 +08:00
|
|
|
/* Open the output file */
|
1999-11-13 01:20:49 +08:00
|
|
|
fd = Fopen(fileName, "w.ufdio");
|
|
|
|
if (fd == NULL || Ferror(fd)) {
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Could not open %s: %s\n"),
|
1999-11-13 01:20:49 +08:00
|
|
|
fileName, Fstrerror(fd));
|
2000-11-07 21:16:43 +08:00
|
|
|
goto exit;
|
1996-03-30 04:06:02 +08:00
|
|
|
}
|
1998-01-13 05:31:29 +08:00
|
|
|
|
2000-12-03 05:53:44 +08:00
|
|
|
/* Write the lead section into the package. */
|
2007-12-02 00:31:09 +08:00
|
|
|
{
|
|
|
|
rpmlead lead = rpmLeadFromHeader(h);
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = rpmLeadWrite(fd, lead);
|
2011-05-27 21:46:23 +08:00
|
|
|
rpmLeadFree(lead);
|
2007-12-02 00:31:09 +08:00
|
|
|
if (rc != RPMRC_OK) {
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to write package: %s\n"),
|
1999-11-11 06:09:49 +08:00
|
|
|
Fstrerror(fd));
|
2000-12-03 05:53:44 +08:00
|
|
|
goto exit;
|
|
|
|
}
|
1996-02-19 10:24:47 +08:00
|
|
|
}
|
|
|
|
|
2000-12-03 05:53:44 +08:00
|
|
|
/* Write the signature section into the package. */
|
2007-12-07 15:28:39 +08:00
|
|
|
if (rpmWriteSignature(fd, sig)) {
|
|
|
|
rc = RPMRC_FAIL;
|
2000-11-07 21:16:43 +08:00
|
|
|
goto exit;
|
2007-12-07 15:28:39 +08:00
|
|
|
}
|
2000-12-03 05:53:44 +08:00
|
|
|
|
1996-02-19 10:24:47 +08:00
|
|
|
/* Append the header and archive */
|
1999-11-13 01:20:49 +08:00
|
|
|
ifd = Fopen(sigtarget, "r.ufdio");
|
|
|
|
if (ifd == NULL || Ferror(ifd)) {
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to open sigtarget %s: %s\n"),
|
1999-11-13 01:20:49 +08:00
|
|
|
sigtarget, Fstrerror(ifd));
|
2000-11-07 21:16:43 +08:00
|
|
|
goto exit;
|
1999-11-13 01:20:49 +08:00
|
|
|
}
|
2000-12-03 05:53:44 +08:00
|
|
|
|
|
|
|
/* Add signatures to header, and write header into the package. */
|
2002-03-04 07:09:49 +08:00
|
|
|
/* XXX header+payload digests/signatures might be checked again here. */
|
2000-12-03 05:53:44 +08:00
|
|
|
{ Header nh = headerRead(ifd, HEADER_MAGIC_YES);
|
|
|
|
|
|
|
|
if (nh == NULL) {
|
2007-12-07 15:28:39 +08:00
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to read header from %s: %s\n"),
|
2000-12-03 05:53:44 +08:00
|
|
|
sigtarget, Fstrerror(ifd));
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
|
2007-12-07 15:28:39 +08:00
|
|
|
xx = headerWrite(fd, nh, HEADER_MAGIC_YES);
|
2011-05-27 21:46:23 +08:00
|
|
|
headerFree(nh);
|
2000-12-03 05:53:44 +08:00
|
|
|
|
2007-12-07 15:28:39 +08:00
|
|
|
if (xx) {
|
|
|
|
rc = RPMRC_FAIL;
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Unable to write header to %s: %s\n"),
|
2000-12-03 05:53:44 +08:00
|
|
|
fileName, Fstrerror(fd));
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Write the payload into the package. */
|
2011-05-18 20:53:54 +08:00
|
|
|
rc = copyPayload(ifd, fileName, fd, sigtarget);
|
1996-06-28 01:21:31 +08:00
|
|
|
|
2000-11-07 21:16:43 +08:00
|
|
|
exit:
|
2011-05-27 20:38:54 +08:00
|
|
|
free(rpmio_flags);
|
|
|
|
free(SHA1);
|
|
|
|
headerFree(h);
|
2002-12-24 10:41:45 +08:00
|
|
|
|
|
|
|
/* XXX Fish the pkgid out of the signature header. */
|
|
|
|
if (sig != NULL && pkgidp != NULL) {
|
2008-05-26 20:25:11 +08:00
|
|
|
struct rpmtd_s md5tag;
|
|
|
|
headerGet(sig, RPMSIGTAG_MD5, &md5tag, HEADERGET_DEFAULT);
|
|
|
|
if (rpmtdType(&md5tag) == RPM_BIN_TYPE &&
|
|
|
|
md5tag.count == 16 && md5tag.data != NULL) {
|
|
|
|
*pkgidp = md5tag.data;
|
|
|
|
}
|
2002-12-24 10:41:45 +08:00
|
|
|
}
|
|
|
|
|
2011-05-27 20:38:54 +08:00
|
|
|
rpmFreeSignature(sig);
|
2011-05-19 16:08:07 +08:00
|
|
|
Fclose(ifd);
|
|
|
|
Fclose(fd);
|
|
|
|
|
2000-11-07 21:16:43 +08:00
|
|
|
if (sigtarget) {
|
2007-12-03 22:33:18 +08:00
|
|
|
(void) unlink(sigtarget);
|
2011-05-27 20:38:54 +08:00
|
|
|
free(sigtarget);
|
2000-11-07 21:16:43 +08:00
|
|
|
}
|
1995-12-21 06:49:40 +08:00
|
|
|
|
2007-12-07 15:28:39 +08:00
|
|
|
if (rc == RPMRC_OK)
|
2007-10-09 19:50:42 +08:00
|
|
|
rpmlog(RPMLOG_NOTICE, _("Wrote: %s\n"), fileName);
|
2000-11-07 21:16:43 +08:00
|
|
|
else
|
2007-12-03 22:33:18 +08:00
|
|
|
(void) unlink(fileName);
|
2000-11-07 21:16:43 +08:00
|
|
|
|
|
|
|
return rc;
|
1995-12-21 06:49:40 +08:00
|
|
|
}
|
|
|
|
|
2010-10-22 18:31:34 +08:00
|
|
|
static const rpmTagVal copyTags[] = {
|
2000-01-25 04:02:32 +08:00
|
|
|
RPMTAG_CHANGELOGTIME,
|
|
|
|
RPMTAG_CHANGELOGNAME,
|
|
|
|
RPMTAG_CHANGELOGTEXT,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
2010-08-24 18:39:42 +08:00
|
|
|
static rpmRC checkPackages(char *pkgcheck)
|
2008-11-10 22:52:29 +08:00
|
|
|
{
|
|
|
|
int fail = rpmExpandNumeric("%{?_nonzero_exit_pkgcheck_terminate_build}");
|
|
|
|
int xx;
|
|
|
|
|
|
|
|
rpmlog(RPMLOG_NOTICE, _("Executing \"%s\":\n"), pkgcheck);
|
|
|
|
xx = system(pkgcheck);
|
|
|
|
if (WEXITSTATUS(xx) == -1 || WEXITSTATUS(xx) == 127) {
|
|
|
|
rpmlog(RPMLOG_ERR, _("Execution of \"%s\" failed.\n"), pkgcheck);
|
2010-09-21 16:37:21 +08:00
|
|
|
if (fail) return RPMRC_NOTFOUND;
|
2008-11-10 22:52:29 +08:00
|
|
|
}
|
|
|
|
if (WEXITSTATUS(xx) != 0) {
|
|
|
|
rpmlog(RPMLOG_ERR, _("Package check \"%s\" failed.\n"), pkgcheck);
|
|
|
|
if (fail) return RPMRC_FAIL;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RPMRC_OK;
|
|
|
|
}
|
|
|
|
|
2010-09-02 16:01:15 +08:00
|
|
|
rpmRC packageBinaries(rpmSpec spec, const char *cookie, int cheating)
|
1999-09-18 07:18:24 +08:00
|
|
|
{
|
2001-05-04 05:00:18 +08:00
|
|
|
struct cpioSourceArchive_s csabuf;
|
|
|
|
CSA_t csa = &csabuf;
|
2007-12-07 16:43:53 +08:00
|
|
|
rpmRC rc;
|
2000-01-25 04:02:32 +08:00
|
|
|
const char *errorString;
|
|
|
|
Package pkg;
|
2008-11-10 22:52:29 +08:00
|
|
|
char *pkglist = NULL;
|
1998-12-06 07:22:41 +08:00
|
|
|
|
2000-01-25 04:02:32 +08:00
|
|
|
for (pkg = spec->packages; pkg != NULL; pkg = pkg->next) {
|
2007-12-15 16:39:15 +08:00
|
|
|
char *fn;
|
1995-12-21 06:49:40 +08:00
|
|
|
|
2010-12-23 15:24:25 +08:00
|
|
|
if (pkg->fileList == NULL)
|
|
|
|
continue;
|
|
|
|
|
2000-01-25 04:02:32 +08:00
|
|
|
if ((rc = processScriptFiles(spec, pkg)))
|
|
|
|
return rc;
|
|
|
|
|
2010-09-01 19:00:54 +08:00
|
|
|
if (cookie) {
|
|
|
|
headerPutString(pkg->header, RPMTAG_COOKIE, cookie);
|
1998-07-25 23:33:15 +08:00
|
|
|
}
|
|
|
|
|
2000-01-25 04:02:32 +08:00
|
|
|
/* Copy changelog from src rpm */
|
|
|
|
headerCopyTags(spec->packages->header, pkg->header, copyTags);
|
|
|
|
|
2008-06-19 20:43:45 +08:00
|
|
|
headerPutString(pkg->header, RPMTAG_RPMVERSION, VERSION);
|
|
|
|
headerPutString(pkg->header, RPMTAG_BUILDHOST, buildHost());
|
|
|
|
headerPutUint32(pkg->header, RPMTAG_BUILDTIME, getBuildTime(), 1);
|
1999-11-13 01:20:49 +08:00
|
|
|
|
2002-12-22 04:37:37 +08:00
|
|
|
if (spec->sourcePkgId != NULL) {
|
2008-06-19 20:43:45 +08:00
|
|
|
headerPutBin(pkg->header, RPMTAG_SOURCEPKGID, spec->sourcePkgId,16);
|
2010-06-23 20:37:56 +08:00
|
|
|
}
|
|
|
|
|
2010-09-02 16:01:15 +08:00
|
|
|
if (cheating) {
|
2010-06-23 20:37:56 +08:00
|
|
|
(void) rpmlibNeedsFeature(pkg->header, "ShortCircuited", "4.9.0-1");
|
2002-12-22 04:37:37 +08:00
|
|
|
}
|
2000-01-25 04:02:32 +08:00
|
|
|
|
2007-12-15 16:39:15 +08:00
|
|
|
{ char *binFormat = rpmGetPath("%{_rpmfilename}", NULL);
|
2000-01-25 04:02:32 +08:00
|
|
|
char *binRpm, *binDir;
|
2008-05-12 21:20:13 +08:00
|
|
|
binRpm = headerFormat(pkg->header, binFormat, &errorString);
|
2011-05-27 21:46:23 +08:00
|
|
|
free(binFormat);
|
2000-01-25 04:02:32 +08:00
|
|
|
if (binRpm == NULL) {
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR, _("Could not generate output "
|
2009-09-02 16:55:42 +08:00
|
|
|
"filename for package %s: %s\n"),
|
|
|
|
headerGetString(pkg->header, RPMTAG_NAME), errorString);
|
2007-12-07 16:43:53 +08:00
|
|
|
return RPMRC_FAIL;
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
|
|
|
fn = rpmGetPath("%{_rpmdir}/", binRpm, NULL);
|
|
|
|
if ((binDir = strchr(binRpm, '/')) != NULL) {
|
|
|
|
struct stat st;
|
2007-12-15 16:39:15 +08:00
|
|
|
char *dn;
|
2000-01-25 04:02:32 +08:00
|
|
|
*binDir = '\0';
|
|
|
|
dn = rpmGetPath("%{_rpmdir}/", binRpm, NULL);
|
2007-12-03 22:33:18 +08:00
|
|
|
if (stat(dn, &st) < 0) {
|
2000-01-25 04:02:32 +08:00
|
|
|
switch(errno) {
|
|
|
|
case ENOENT:
|
2007-12-03 22:33:18 +08:00
|
|
|
if (mkdir(dn, 0755) == 0)
|
2007-09-12 05:03:27 +08:00
|
|
|
break;
|
2000-01-25 04:02:32 +08:00
|
|
|
default:
|
2007-11-19 22:25:24 +08:00
|
|
|
rpmlog(RPMLOG_ERR,_("cannot create %s: %s\n"),
|
2000-01-25 04:02:32 +08:00
|
|
|
dn, strerror(errno));
|
2007-09-12 05:03:27 +08:00
|
|
|
break;
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
|
|
|
}
|
2011-05-27 20:38:54 +08:00
|
|
|
free(dn);
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
2011-05-27 20:38:54 +08:00
|
|
|
free(binRpm);
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
1998-03-21 06:38:00 +08:00
|
|
|
|
2000-01-25 04:02:32 +08:00
|
|
|
memset(csa, 0, sizeof(*csa));
|
|
|
|
csa->cpioArchiveSize = 0;
|
2010-03-22 18:49:45 +08:00
|
|
|
csa->cpioList = rpmfiLink(pkg->cpioList);
|
1998-03-21 06:38:00 +08:00
|
|
|
|
2010-08-20 22:50:51 +08:00
|
|
|
rc = writeRPM(&pkg->header, NULL, fn, csa, NULL);
|
2002-12-24 12:04:20 +08:00
|
|
|
csa->cpioList = rpmfiFree(csa->cpioList);
|
2008-11-10 22:52:29 +08:00
|
|
|
if (rc == RPMRC_OK) {
|
|
|
|
/* Do check each written package if enabled */
|
|
|
|
char *pkgcheck = rpmExpand("%{?_build_pkgcheck} ", fn, NULL);
|
|
|
|
if (pkgcheck[0] != ' ') {
|
|
|
|
rc = checkPackages(pkgcheck);
|
|
|
|
}
|
2011-05-27 20:38:54 +08:00
|
|
|
free(pkgcheck);
|
2008-11-10 22:52:29 +08:00
|
|
|
rstrcat(&pkglist, fn);
|
|
|
|
rstrcat(&pkglist, " ");
|
|
|
|
}
|
2011-05-27 20:38:54 +08:00
|
|
|
free(fn);
|
2008-11-10 22:52:29 +08:00
|
|
|
if (rc != RPMRC_OK) {
|
|
|
|
pkglist = _free(pkglist);
|
2000-01-25 04:02:32 +08:00
|
|
|
return rc;
|
2008-11-10 22:52:29 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now check the package set if enabled */
|
|
|
|
if (pkglist != NULL) {
|
|
|
|
char *pkgcheck_set = rpmExpand("%{?_build_pkgcheck_set} ", pkglist, NULL);
|
|
|
|
if (pkgcheck_set[0] != ' ') { /* run only if _build_pkgcheck_set is defined */
|
|
|
|
checkPackages(pkgcheck_set);
|
|
|
|
}
|
2011-05-27 20:38:54 +08:00
|
|
|
free(pkgcheck_set);
|
2008-11-10 22:52:29 +08:00
|
|
|
pkglist = _free(pkglist);
|
1998-03-21 06:38:00 +08:00
|
|
|
}
|
1998-01-13 05:31:29 +08:00
|
|
|
|
2007-12-07 16:43:53 +08:00
|
|
|
return RPMRC_OK;
|
1995-12-21 06:49:40 +08:00
|
|
|
}
|
|
|
|
|
2010-09-01 19:00:54 +08:00
|
|
|
rpmRC packageSources(rpmSpec spec, char **cookie)
|
1998-03-21 06:38:00 +08:00
|
|
|
{
|
2001-05-04 05:00:18 +08:00
|
|
|
struct cpioSourceArchive_s csabuf;
|
|
|
|
CSA_t csa = &csabuf;
|
2007-12-07 16:43:53 +08:00
|
|
|
rpmRC rc;
|
1998-03-21 06:38:00 +08:00
|
|
|
|
2000-01-25 04:02:32 +08:00
|
|
|
/* Add some cruft */
|
2008-06-19 20:43:45 +08:00
|
|
|
headerPutString(spec->sourceHeader, RPMTAG_RPMVERSION, VERSION);
|
|
|
|
headerPutString(spec->sourceHeader, RPMTAG_BUILDHOST, buildHost());
|
|
|
|
headerPutUint32(spec->sourceHeader, RPMTAG_BUILDTIME, getBuildTime(), 1);
|
1998-03-21 06:38:00 +08:00
|
|
|
|
2000-01-25 04:02:32 +08:00
|
|
|
/* XXX this should be %_srpmdir */
|
2007-12-15 16:39:15 +08:00
|
|
|
{ char *fn = rpmGetPath("%{_srcrpmdir}/", spec->sourceRpmName,NULL);
|
2008-11-10 22:52:29 +08:00
|
|
|
char *pkgcheck = rpmExpand("%{?_build_pkgcheck_srpm} ", fn, NULL);
|
1998-01-13 05:31:29 +08:00
|
|
|
|
2000-01-25 04:02:32 +08:00
|
|
|
memset(csa, 0, sizeof(*csa));
|
|
|
|
csa->cpioArchiveSize = 0;
|
2010-03-22 18:49:45 +08:00
|
|
|
csa->cpioList = rpmfiLink(spec->sourceCpioList);
|
1998-03-21 06:38:00 +08:00
|
|
|
|
2002-12-24 10:41:45 +08:00
|
|
|
spec->sourcePkgId = NULL;
|
2010-09-01 19:00:54 +08:00
|
|
|
rc = writeRPM(&spec->sourceHeader, &spec->sourcePkgId, fn, csa, cookie);
|
2002-12-24 10:41:45 +08:00
|
|
|
|
2008-11-10 22:52:29 +08:00
|
|
|
/* Do check SRPM package if enabled */
|
|
|
|
if (rc == RPMRC_OK && pkgcheck[0] != ' ') {
|
|
|
|
rc = checkPackages(pkgcheck);
|
|
|
|
}
|
|
|
|
|
2011-05-27 20:38:54 +08:00
|
|
|
rpmfiFree(csa->cpioList);
|
|
|
|
free(pkgcheck);
|
|
|
|
free(fn);
|
2000-01-25 04:02:32 +08:00
|
|
|
}
|
|
|
|
return rc;
|
1995-12-21 06:49:40 +08:00
|
|
|
}
|