summaryrefslogtreecommitdiffhomepage
path: root/src/util/mdso_create_implib_objects.c
blob: fd0bfcbbefdb9164bd3c87fdbc2475c6dad22726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/****************************************************************/
/*  mdso: midipix dso scavenger                                 */
/*  Copyright (C) 2015--2021  Z. Gilboa                         */
/*  Released under GPLv2 and GPLv3; see COPYING.MDSO.           */
/****************************************************************/

#include <stdint.h>
#include <stdio.h>
#include <string.h>

#include <mdso/mdso.h>
#include "mdso_errinfo_impl.h"

static void mdso_init_objname(char * buf, const char * fmt, const char * str)
{
	char			hexstr[24];
	long long unsigned int	crc64;

	if (strlen(str) + strlen(fmt) > (PATH_MAX - 1)) {
		crc64 = mdso_crc64_mbstr((const unsigned char *)str,0);
		sprintf(hexstr,"%llx",crc64);
		sprintf(buf,fmt,hexstr);
	} else
		sprintf(buf,fmt,str);
}

static void mdso_init_object(struct mdso_object * obj, const char * objname)
{
	memset(obj,0,sizeof(*obj));
	obj->name = objname;
}

int  mdso_create_implib_objects(const struct mdso_driver_ctx * dctx)
{
	const char **		unit;
	struct mdso_unit_ctx *	uctx;
	struct mdso_object	obj;
	const char * const *	sym;
	char			objname[PATH_MAX];

	/* symentry */
	for (unit=dctx->units; *unit; unit++) {
		if (mdso_get_unit_ctx(dctx,*unit,&uctx))
			return MDSO_NESTED_ERROR(dctx);

		for (sym=uctx->syms; *sym; sym++) {
			mdso_init_objname(objname,".%s_symentry.o",*sym);
			mdso_init_object(&obj,objname);

			if (mdso_objgen_symentry(dctx,*sym,&obj) < 0)
				return MDSO_NESTED_ERROR(dctx);
		}

		mdso_free_unit_ctx(uctx);
	}

	/* dsometa */
	mdso_init_objname(objname,".dsometa_%s.o",dctx->cctx->libname);
	mdso_init_object(&obj,objname);

	if (mdso_objgen_dsometa(dctx,&obj) < 0)
		return MDSO_NESTED_ERROR(dctx);

	return 0;
}