Esempio n. 1
0
static int assemble(RAsm *a, RAsmOp *op, const char *buf) {
	char *ipath, *opath;
	int ifd, ofd;
	const char *syntaxstr = "";
	char asm_buf[R_ASM_BUFSIZE];
	int len = 0;

	ifd = r_file_mkstemp ("r_as", &ipath);
	ofd = r_file_mkstemp ("r_as", &opath);

	syntaxstr = ".intel_syntax noprefix\n"; // if intel syntax
	len = snprintf (asm_buf, sizeof (asm_buf),
			"%s.code%i\n" //.org 0x%"PFMT64x"\n"
			".ascii \"BEGINMARK\"\n"
			"%s\n"
			".ascii \"ENDMARK\"\n",
			syntaxstr, a->bits, buf); // a->pc ??
	write (ifd, asm_buf, len);
	//write (1, asm_buf, len);
	close (ifd);

	if (!r_sys_cmdf ("as %s -o %s", ipath, opath)) {
		const ut8 *begin, *end;
		close (ofd);
		ofd = open (opath, O_BINARY|O_RDONLY);
		len = read (ofd, op->buf, R_ASM_BUFSIZE);
		begin = r_mem_mem (op->buf, len, (const ut8*)"BEGINMARK", 9);
		end = r_mem_mem (op->buf, len, (const ut8*)"ENDMARK", 7);
		if (!begin || !end) {
			eprintf ("Cannot find water marks\n");
			len = 0;
		} else {
			len = (int)(size_t)(end-begin-9);
			if (len>0) memcpy (op->buf, begin+9, len);
			else len = 0;
		}
	} else {
		eprintf ("Error running: as %s -o %s", ipath, opath);
		len = 0;
	}

	close (ofd);

	unlink (ipath);
	unlink (opath);
	free (ipath);
	free (opath);

	op->inst_len = len;
	return len;
}
Esempio n. 2
0
static int assemble(RAsm *a, RAsmOp *op, const char *buf) {
    char *ipath, *opath;
    int ifd, ofd;
    char asm_buf[R_ASM_BUFSIZE];
    int len = 0;
    if (a->syntax != R_ASM_SYNTAX_INTEL) {
        eprintf ("asm.x86.nasm does not support non-intel syntax\n");
        return -1;
    }

    ifd = r_file_mkstemp ("r_nasm", &ipath);
    if (ifd == -1)
        return -1;

    ofd = r_file_mkstemp ("r_nasm", &opath);
    if (ofd == -1) {
        free (ipath);
        return -1;
    }

    len = snprintf (asm_buf, sizeof (asm_buf),
                    "[BITS %i]\nORG 0x%"PFMT64x"\n%s\n", a->bits, a->pc, buf);
    write (ifd, asm_buf, len);

    close (ifd);

    if ( !r_sys_cmdf ("nasm %s -o %s", ipath, opath)) {
        len = read (ofd, op->buf, R_ASM_BUFSIZE);
    } else {
        eprintf ("Error running 'nasm'\n");
        len = 0;
    }

    close (ofd);
    unlink (ipath);
    unlink (opath);
    free (ipath);
    free (opath);

    op->size = len;
    return len;
}