O OpenBSD 5.9 não pode pré-carregar a biblioteca ''

3

Eu desenvolvo para Linux e OpenBSD e às vezes recebo o erro can't preload library - você sabe o que isso significa?

A saída exata que recebi foi:

: can't preload library

Quando tento executar scripts e / ou binários. Parece ter a ver com citações, mas não tenho certeza.

Esse problema não ocorre no Linux, apenas no OpenBSD.

Ocódigoé aqui mas não sei o que ele faz:

void
_dl_dopreload(char *paths)
{
    char        *cp, *dp;
    elf_object_t    *shlib;

    dp = paths = _dl_strdup(paths);
    if (dp == NULL) {
        _dl_printf("preload: out of memory");
        _dl_exit(1);
    }

    while ((cp = _dl_strsep(&dp, ":")) != NULL) {
        shlib = _dl_load_shlib(cp, _dl_objects, OBJTYPE_LIB,
        _dl_objects->obj_flags);
        if (shlib == NULL) {
            _dl_printf("%s: can't preload library '%s'\n",
                __progname, cp);
            _dl_exit(4);
        }
        _dl_add_object(shlib);
        _dl_link_child(shlib, _dl_objects);
    }
    _dl_free(paths);
    return;
}

Este é o meu script, que funciona com dash e Linux, que eu tento executar com o shell Korn do OpenBSD.

#!/bin/sh
echo "-- Testing our implementation of OpenShell --"
echo ""
echo "- If you have any problem in passing a test read the corresponding"
echo "- source file to understand what the test is checking"
echo ""
printf "********************* PRESS ENTER TO RUN TESTS  ... "
read _

# Key pressed, do something
printf "********************* TEST WILDCARDS \n***** Press any key to listing all files in current directory...\nYou should see filesnames *.* below "
read _
valgrind --leak-check=full -v ./shell << EOF
ls -al *.*
EOF
printf "********************* TEST ALGORITHMS ...  \n***** Press any key to run the algorithms... .\nYou should see the output from top -b -n1|head -8|tail -1 "
read _
top -b -n1|head -8|tail -1|sort -n|wc -l
valgrind --leak-check=full -v ./shell << EOF
ls|grep open
EOF

printf "********************* TEST ALGORITHMS Part II.  ... .\nYou should see the output from who|awk '{print \ ; print \}'|sort -n|wc -l. "
read _
valgrind --leak-check=full ./shell << EOF
who|awk '{print \ ; print \}'|sort -n|wc -l
EOF

printf "********************* TEST CHECKENV.  ..... .\nYou should see the output checkenv below "
read _
valgrind ./shell << EOF
checkenv
EOF
printf "********************* TEST DONE. YOU SHOULD SEE OUTPUT FROM TEST ABOVE ... "
read _
    
por Niklas Rosencrantz 03.05.2016 / 11:17

1 resposta

3

openbsd tem um conceito distinto de gerenciamento de memória em termos de segurança. Portanto, as bibliotecas estaticamente vinculadas não podem ser pré-carregadas.

O código diz:

        shlib = _dl_load_shlib(cp, _dl_objects, OBJTYPE_LIB,
        _dl_objects->obj_flags);
        if (shlib == NULL) {
            _dl_printf("%s: can't preload library '%s'\n",
                __progname, cp);
            _dl_exit(4);
        }

Assim, o valor de shlib não deve ser testado como NULL .

Por favor, tente carregar uma biblioteca dinamicamente ligada , que deve funcionar.

    
por 03.05.2016 / 13:44

Tags