You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
139 lines
3.7 KiB
139 lines
3.7 KiB
/**
|
|
* xrdp: A Remote Desktop Protocol server.
|
|
*
|
|
* Copyright (C) Jay Sorg 2004-2013
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
/**
|
|
*
|
|
* @file sesrun.c
|
|
* @brief An utility to start a session
|
|
* @author Jay Sorg, Simone Fedele
|
|
*
|
|
*/
|
|
|
|
#if defined(HAVE_CONFIG_H)
|
|
#include <config_ac.h>
|
|
#endif
|
|
|
|
#include "sesman.h"
|
|
#include "tcp.h"
|
|
|
|
struct config_sesman g_cfg; /* config.h */
|
|
|
|
/******************************************************************************/
|
|
int
|
|
main(int argc, char **argv)
|
|
{
|
|
int sck;
|
|
int code;
|
|
int i;
|
|
int size;
|
|
int version;
|
|
int width;
|
|
int height;
|
|
int bpp;
|
|
int display;
|
|
int session_code;
|
|
struct stream *in_s;
|
|
struct stream *out_s;
|
|
char *username;
|
|
char *password;
|
|
long data;
|
|
|
|
if (0 != config_read(&g_cfg))
|
|
{
|
|
g_printf("sesrun: error reading config. quitting.\n");
|
|
return 1;
|
|
}
|
|
|
|
if (argc == 1)
|
|
{
|
|
g_printf("xrdp session starter v0.1\n");
|
|
g_printf("\nusage:\n");
|
|
g_printf("sesrun <server> <username> <password> <width> <height> <bpp> <session_cod>\n");
|
|
g_printf("session code 0 for Xvnc, 10 for X11RDP, 20 for Xorg\n");
|
|
}
|
|
else if (argc == 8)
|
|
{
|
|
username = argv[2];
|
|
password = argv[3];
|
|
width = g_atoi(argv[4]);
|
|
height = g_atoi(argv[5]);
|
|
bpp = g_atoi(argv[6]);
|
|
session_code = g_atoi(argv[7]);
|
|
make_stream(in_s);
|
|
init_stream(in_s, 8192);
|
|
make_stream(out_s);
|
|
init_stream(out_s, 8192);
|
|
|
|
sck = g_tcp_socket();
|
|
if (sck < 0)
|
|
return 1;
|
|
|
|
if (g_tcp_connect(sck, argv[1], g_cfg.listen_port) == 0)
|
|
{
|
|
s_push_layer(out_s, channel_hdr, 8);
|
|
out_uint16_be(out_s, session_code); /* code */
|
|
i = g_strlen(username);
|
|
out_uint16_be(out_s, i);
|
|
out_uint8a(out_s, username, i);
|
|
i = g_strlen(password);
|
|
out_uint16_be(out_s, i);
|
|
out_uint8a(out_s, password, i);
|
|
out_uint16_be(out_s, width);
|
|
out_uint16_be(out_s, height);
|
|
out_uint16_be(out_s, bpp);
|
|
s_mark_end(out_s);
|
|
s_pop_layer(out_s, channel_hdr);
|
|
out_uint32_be(out_s, 0); /* version */
|
|
out_uint32_be(out_s, out_s->end - out_s->data); /* size */
|
|
tcp_force_send(sck, out_s->data, out_s->end - out_s->data);
|
|
|
|
if (tcp_force_recv(sck, in_s->data, 8) == 0)
|
|
{
|
|
in_uint32_be(in_s, version);
|
|
in_uint32_be(in_s, size);
|
|
init_stream(in_s, 8192);
|
|
|
|
if (tcp_force_recv(sck, in_s->data, size - 8) == 0)
|
|
{
|
|
if (version == 0)
|
|
{
|
|
in_uint16_be(in_s, code);
|
|
|
|
if (code == 3)
|
|
{
|
|
in_uint16_be(in_s, data);
|
|
in_uint16_be(in_s, display);
|
|
g_printf("ok %d display %d\n", (int)data, display);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
g_printf("connect error\n");
|
|
}
|
|
|
|
g_tcp_close(sck);
|
|
free_stream(in_s);
|
|
free_stream(out_s);
|
|
}
|
|
|
|
return 0;
|
|
}
|