Snow
Snow

Reputation: 41

Can't open remote file: SCP status code 1d not valid libssh 0.7.3

Disclaimer: Google-fu'ing my way through this...

I was wondering if anyone would be able to take a look at this & point me in the right direction & thank you for anyone able to solve...I'm fresh out of idea's again...

The file size function associated with the length variable is this;

ifstream::pos_type filesize(const char* filename)
{
    ifstream in(filename, ios::binary | ios::ate);
    return in.tellg();
}

I'm catching the "scp status code 1d not valid" from this piece;

rc = ssh_scp_push_file(scp, "samp_batch", length, 0766);
if (rc != SSH_OK)
{
    fprintf(stderr, "Can't open remote file: %s\n", ssh_get_error(my_ssh_session));
    ssh_free(my_ssh_session);
    exit(-1);
}

of this function;

int ssh()
{
    ssh_session my_ssh_session;
    ssh_scp scp;
    int port = 22;
    int rc;
    int method;
    const long int length = filesize("samp_batch");
    char password[128] = { 0 };
    my_ssh_session = ssh_new();
    if (my_ssh_session == NULL)
        exit(-1);
    ssh_options_set(my_ssh_session, SSH_OPTIONS_HOST, "10.52.136.185");
    ssh_options_set(my_ssh_session, SSH_OPTIONS_PORT, &port);
    ssh_options_set(my_ssh_session, SSH_OPTIONS_USER, "security");

    //connect to server
    rc = ssh_connect(my_ssh_session);
    if (rc != SSH_OK)
    {
        fprintf(stderr, "Error connecting to host: %s\n", ssh_get_error(my_ssh_session));
        ssh_free(my_ssh_session);
        exit(-1);
    }

    //verify the servers identity
    if (verify_knownHost(my_ssh_session) < 0)
    {
        fprintf(stdout, "unkown host\n");
        ssh_disconnect(my_ssh_session);
        ssh_free(my_ssh_session);
        exit(-1);
    }


    // Try to authenticate
    rc = ssh_userauth_none(my_ssh_session, NULL);
    if (rc == SSH_AUTH_ERROR) {
        error(my_ssh_session);
        return rc;
    }

    method = ssh_auth_list(my_ssh_session);
    while (rc != SSH_AUTH_SUCCESS) {
        // Try to authenticate with public key first
        if (method & SSH_AUTH_METHOD_PUBLICKEY) {
            rc = ssh_userauth_autopubkey(my_ssh_session, NULL);
            if (rc == SSH_AUTH_ERROR) {
                error(my_ssh_session);
                return rc;
            }
            else if (rc == SSH_AUTH_SUCCESS) {
                break;
            }
        }

        // Try to authenticate with keyboard interactive";
        if (method & SSH_AUTH_METHOD_INTERACTIVE) {
            rc = authenticate_kbdint(my_ssh_session, NULL);
            if (rc == SSH_AUTH_ERROR) {
                error(my_ssh_session);
                return rc;
            }
            else if (rc == SSH_AUTH_SUCCESS) {
                break;
            }
        }

        if (ssh_getpass("Password: ", password, sizeof(password), 0, 0) < 0) {
            return SSH_AUTH_ERROR;
        }

        // Try to authenticate with password
        if (method & SSH_AUTH_METHOD_PASSWORD) {
            rc = ssh_userauth_password(my_ssh_session, NULL, password);
            if (rc == SSH_AUTH_ERROR) {
                error(my_ssh_session);
                return rc;
            }
            else if (rc == SSH_AUTH_SUCCESS) {
                break;
            }
        }
    }

    //SCP samp_batch file here
    scp = ssh_scp_new(my_ssh_session, SSH_SCP_WRITE, "/");
    if (scp == NULL)
    {
        fprintf(stderr, "Error allocating scp session: %s\n", ssh_get_error(my_ssh_session));
        return SSH_ERROR;
    }
    rc = ssh_scp_init(scp);
    if (rc != SSH_OK)
    {
        fprintf(stderr, "Error initializing scp session: %s\n", ssh_get_error(my_ssh_session));
        ssh_scp_free(scp);
        return rc;
    }

    rc = ssh_scp_push_file(scp, "samp_batch", length, 0766);
    if (rc != SSH_OK)
    {
        fprintf(stderr, "Can't open remote file: %s\n", ssh_get_error(my_ssh_session));
        ssh_free(my_ssh_session);
        exit(-1);
    }

    const char *contents = "samp_batch";
    rc = ssh_scp_write(scp, contents, length);
    if (rc != SSH_OK)
    {
        fprintf(stderr, "Cant write to remote file: %s\n", ssh_get_error(my_ssh_session));
        ssh_free(my_ssh_session);
        exit(-1);
    }

    ssh_scp_close(scp);
    ssh_scp_free(scp);
    return SSH_OK;

    //execute remote command here


    ssh_free(my_ssh_session);
    return 0;
}

Again, any insight would be great. I can't even find anything explaining what status code 1d means :/

Upvotes: 0

Views: 1208

Answers (1)

Snow
Snow

Reputation: 41

scp = ssh_scp_new(my_ssh_session, SSH_SCP_WRITE, "/");
if (scp == NULL)
{
    fprintf(stderr, "Error allocating scp session: %s\n", ssh_get_error(my_ssh_session));
    return SSH_ERROR;
}

Should have been;

scp = ssh_scp_new(my_ssh_session, SSH_SCP_WRITE, "/home/user/");
if (scp == NULL)
{
    fprintf(stderr, "Error allocating scp session: %s\n", ssh_get_error(my_ssh_session));
    return SSH_ERROR;
}

Upvotes: 1

Related Questions