Blame src/logic/slbt_exec_compile.c

36de3e
/*******************************************************************/
eac61a
/*  slibtool: a strong libtool implementation, written in C        */
49181b
/*  Copyright (C) 2016--2024  SysDeer Technologies, LLC            */
36de3e
/*  Released under the Standard MIT License; see COPYING.SLIBTOOL. */
36de3e
/*******************************************************************/
36de3e
36de3e
#include <string.h>
36de3e
#include <stdbool.h>
36de3e
#include <fcntl.h>
36de3e
#include <errno.h>
36de3e
#include <sys/stat.h>
36de3e
36de3e
#include <slibtool/slibtool.h>
36de3e
#include "slibtool_spawn_impl.h"
3895af
#include "slibtool_mkdir_impl.h"
9149bc
#include "slibtool_errinfo_impl.h"
70f645
#include "slibtool_metafile_impl.h"
36de3e
d117fc
static int slbt_exec_compile_remove_file(
d117fc
	const struct slbt_driver_ctx *	dctx,
d117fc
	struct slbt_exec_ctx *		ectx,
d117fc
	const char *			target)
d117fc
{
d38565
	int fdcwd;
d38565
d3ca02
	(void)ectx;
d3ca02
d38565
	/* fdcwd */
d38565
	fdcwd = slbt_driver_fdcwd(dctx);
d38565
d117fc
	/* remove target (if any) */
d38565
	if (!unlinkat(fdcwd,target,0) || (errno == ENOENT))
d117fc
		return 0;
d117fc
6beda1
	return SLBT_SYSTEM_ERROR(dctx,0);
d117fc
}
d117fc
4ac23a
static int slbt_exec_compile_finalize_argument_vector(
4ac23a
	const struct slbt_driver_ctx *	dctx,
4ac23a
	struct slbt_exec_ctx *		ectx)
4ac23a
{
4ac23a
	char *		sargv[1024];
4ac23a
	char **		sargvbuf;
4ac23a
	char **		base;
4ac23a
	char **		parg;
4ac23a
	char **		aarg;
4ac23a
	char **		aargv;
4ac23a
	char **		cap;
4ac23a
	char **		src;
4ac23a
	char **		dst;
d4e0f6
	char **		cmp;
34988f
	char *		ccwrap;
870bf7
	char *          custom;
4ac23a
4ac23a
	/* vector size */
4ac23a
	base = ectx->argv;
4ac23a
	parg = ectx->argv;
4ac23a
4ac23a
	for (; *parg; )
4ac23a
		parg++;
4ac23a
4ac23a
	/* buffer */
4ac23a
	if (parg - base < 1024) {
4ac23a
		aargv    = sargv;
4ac23a
		aarg     = aargv;
4ac23a
		sargvbuf = 0;
4ac23a
4ac23a
	} else if (!(sargvbuf = calloc(parg-base+1,sizeof(char *)))) {
6beda1
		return SLBT_SYSTEM_ERROR(dctx,0);
4ac23a
4ac23a
	} else {
4ac23a
		aargv = sargvbuf;
4ac23a
		aarg  = aargv;
4ac23a
	}
4ac23a
4ac23a
	/* (program name) */
4ac23a
	parg = &base[1];
4ac23a
870bf7
	/* avoid -I deduplication with project specific drivers */
870bf7
	custom = strchr(ectx->program,'/');
870bf7
4ac23a
	/* split object args from all other args, record output */
4ac23a
	/* annotation, and remove redundant -l arguments       */
4ac23a
	for (; *parg; ) {
4ac23a
		if (ectx->lout[0] == parg) {
4ac23a
			ectx->lout[0] = &aarg[0];
4ac23a
			ectx->lout[1] = &aarg[1];
4ac23a
		}
4ac23a
4ac23a
		if (ectx->mout[0] == parg) {
4ac23a
			ectx->mout[0] = &aarg[0];
4ac23a
			ectx->mout[1] = &aarg[1];
4ac23a
		}
4ac23a
4ac23a
		/* placeholder argument? */
4ac23a
		if (!strncmp(*parg,"-USLIBTOOL_PLACEHOLDER_",23)) {
4ac23a
			parg++;
4ac23a
		} else {
4ac23a
			*aarg++ = *parg++;
4ac23a
		}
4ac23a
	}
4ac23a
34988f
	/* program name, ccwrap */
34988f
	if ((ccwrap = (char *)dctx->cctx->ccwrap)) {
34988f
		base[1] = base[0];
34988f
		base[0] = ccwrap;
34988f
		base++;
34988f
	}
4ac23a
aed569
	/* join all other args, starting with de-duplicated -I arguments, */
aed569
	/* and filter out all -f switches when compiling in --tag=RC mode */
4ac23a
	src = aargv;
4ac23a
	cap = aarg;
34988f
	dst = &base[1];
4ac23a
870bf7
	for (; !custom && src
d4e0f6
		if (((*src)[0] == '-') && ((*src)[1] == 'I')) {
d4e0f6
			cmp = &base[1];
d4e0f6
d4e0f6
			for (; cmp && cmp
d4e0f6
				if (!strcmp(*src,*cmp)) {
d4e0f6
					cmp = 0;
d4e0f6
				} else {
d4e0f6
					cmp++;
d4e0f6
				}
d4e0f6
			}
d4e0f6
d4e0f6
			if (cmp)
d4e0f6
				*dst++ = *src;
d4e0f6
		}
d4e0f6
d4e0f6
		src++;
d4e0f6
	}
d4e0f6
d4e0f6
	src = aargv;
d4e0f6
d4e0f6
	for (; src
aed569
		if ((dctx->cctx->tag == SLBT_TAG_RC)
aed569
				&& ((*src)[0] == '-')
aed569
				&& ((*src)[1] == 'f'))
aed569
			(void)0;
aed569
aed569
		else if (((*src)[0] != '-') || ((*src)[1] != 'I'))
d4e0f6
			*dst++ = *src;
d4e0f6
870bf7
		else if (custom)
870bf7
			*dst++ = *src;
870bf7
d4e0f6
		src++;
d4e0f6
	}
4ac23a
4ac23a
	/* properly null-terminate argv, accounting for redundant arguments */
4ac23a
	*dst = 0;
4ac23a
4ac23a
	/* output annotation */
4ac23a
	if (ectx->lout[0]) {
4ac23a
		ectx->lout[0] = &base[1] + (ectx->lout[0] - aargv);
4ac23a
		ectx->lout[1] = ectx->lout[0] + 1;
4ac23a
	}
4ac23a
4ac23a
	if (ectx->mout[0]) {
4ac23a
		ectx->mout[0] = &base[1] + (ectx->mout[0] - aargv);
4ac23a
		ectx->mout[1] = ectx->mout[0] + 1;
4ac23a
	}
4ac23a
4ac23a
	/* all done */
4ac23a
	if (sargvbuf)
4ac23a
		free(sargvbuf);
4ac23a
4ac23a
	return 0;
4ac23a
}
4ac23a
2e30eb
int  slbt_exec_compile(const struct slbt_driver_ctx * dctx)
36de3e
{
b5fcb3
	int				ret;
77e6c6
	char *				fpic;
34988f
	char *				ccwrap;
92ca4f
	bool                            fshared;
92ca4f
	bool                            fstatic;
2e30eb
	struct slbt_exec_ctx *		ectx;
b5fcb3
	const struct slbt_common_ctx *	cctx = dctx->cctx;
36de3e
c4a389
	/* dry run */
b5fcb3
	if (cctx->drvflags & SLBT_DRIVER_DRY_RUN)
c4a389
		return 0;
c4a389
36de3e
	/* context */
2e30eb
	if (slbt_ectx_get_exec_ctx(dctx,&ectx) < 0)
2e30eb
		return SLBT_NESTED_ERROR(dctx);
36de3e
d117fc
	/* remove old .lo wrapper */
d117fc
	if (slbt_exec_compile_remove_file(dctx,ectx,ectx->ltobjname))
9149bc
		return SLBT_NESTED_ERROR(dctx);
d117fc
92ca4f
	/* fshared, fstatic */
92ca4f
	fshared = (cctx->drvflags & (SLBT_DRIVER_SHARED | SLBT_DRIVER_PREFER_SHARED));
92ca4f
	fstatic = (cctx->drvflags & (SLBT_DRIVER_STATIC | SLBT_DRIVER_PREFER_STATIC));
92ca4f
36de3e
	/* .libs directory */
92ca4f
	if (fshared)
267766
		if (slbt_mkdir(dctx,ectx->ldirname)) {
c141a0
			ret = SLBT_SYSTEM_ERROR(dctx,ectx->ldirname);
2e30eb
			slbt_ectx_free_exec_ctx(ectx);
c141a0
			return ret;
36de3e
		}
36de3e
27a8e1
	/* compile mode */
34988f
	ccwrap        = (char *)cctx->ccwrap;
34988f
	ectx->program = ccwrap ? ccwrap : ectx->compiler;
27a8e1
	ectx->argv    = ectx->cargv;
27a8e1
77e6c6
	/* -fpic */
66dce2
	switch (cctx->tag) {
66dce2
		case SLBT_TAG_CC:
66dce2
		case SLBT_TAG_CXX:
66dce2
		case SLBT_TAG_F77:
abd6f6
		case SLBT_TAG_FC:
66dce2
			fpic = cctx->settings.picswitch
66dce2
				? cctx->settings.picswitch
66dce2
				: *ectx->fpic;
66dce2
			break;
66dce2
66dce2
		default:
66dce2
			fpic = *ectx->fpic;
66dce2
	}
77e6c6
36de3e
	/* shared library object */
92ca4f
	if (fshared) {
77e6c6
		if (!(cctx->drvflags & SLBT_DRIVER_ANTI_PIC)) {
36de3e
			*ectx->dpic = "-DPIC";
77e6c6
			*ectx->fpic = fpic;
77e6c6
		}
36de3e
36de3e
		*ectx->lout[0] = "-o";
36de3e
		*ectx->lout[1] = ectx->lobjname;
36de3e
4ac23a
		if (slbt_exec_compile_finalize_argument_vector(dctx,ectx))
4ac23a
			return SLBT_NESTED_ERROR(dctx);
4ac23a
b5fcb3
		if (!(cctx->drvflags & SLBT_DRIVER_SILENT)) {
33a569
			if (slbt_output_compile(ectx)) {
2e30eb
				slbt_ectx_free_exec_ctx(ectx);
9149bc
				return SLBT_NESTED_ERROR(dctx);
db30c2
			}
db30c2
		}
db30c2
639534
		if ((slbt_spawn(ectx,true) < 0) && (ectx->pid < 0)) {
2e30eb
			slbt_ectx_free_exec_ctx(ectx);
6beda1
			return SLBT_SYSTEM_ERROR(dctx,0);
639534
639534
		} else if (ectx->exitcode) {
2e30eb
			slbt_ectx_free_exec_ctx(ectx);
639534
			return SLBT_CUSTOM_ERROR(dctx,SLBT_ERR_COMPILE_ERROR);
36de3e
		}
4ac23a
92ca4f
		if (fstatic)
f3d47a
			slbt_ectx_reset_argvector(ectx);
36de3e
	}
36de3e
36de3e
	/* static archive object */
92ca4f
	if (fstatic) {
36de3e
		slbt_reset_placeholders(ectx);
36de3e
77e6c6
		if (cctx->drvflags & SLBT_DRIVER_PRO_PIC) {
36de3e
			*ectx->dpic = "-DPIC";
77e6c6
			*ectx->fpic = fpic;
77e6c6
		}
36de3e
36de3e
		*ectx->lout[0] = "-o";
55c95a
		*ectx->lout[1] = ectx->aobjname;
36de3e
4ac23a
		if (slbt_exec_compile_finalize_argument_vector(dctx,ectx))
4ac23a
			return SLBT_NESTED_ERROR(dctx);
4ac23a
b5fcb3
		if (!(cctx->drvflags & SLBT_DRIVER_SILENT)) {
33a569
			if (slbt_output_compile(ectx)) {
2e30eb
				slbt_ectx_free_exec_ctx(ectx);
9149bc
				return SLBT_NESTED_ERROR(dctx);
db30c2
			}
db30c2
		}
db30c2
639534
		if ((slbt_spawn(ectx,true) < 0) && (ectx->pid < 0)) {
2e30eb
			slbt_ectx_free_exec_ctx(ectx);
6beda1
			return SLBT_SYSTEM_ERROR(dctx,0);
639534
639534
		} else if (ectx->exitcode) {
2e30eb
			slbt_ectx_free_exec_ctx(ectx);
639534
			return SLBT_CUSTOM_ERROR(dctx,SLBT_ERR_COMPILE_ERROR);
36de3e
		}
36de3e
	}
36de3e
70f645
	ret = slbt_create_object_wrapper(dctx,ectx);
2e30eb
	slbt_ectx_free_exec_ctx(ectx);
36de3e
9149bc
	return ret ? SLBT_NESTED_ERROR(dctx) : 0;
36de3e
}