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 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346
|
/* ============================================================================
* << File: protocol.c >>
* -------------------------
* Authors: Emiliano Castagnari (aka Torian) <ecastag@fi.uba.ar>
* Diego Essaya <dessaya@fi.uba.ar>
* Date: 31/12/03
*
* Description:
* Functions related to message I/O, using the gems protocol specification
* (see doc/Protocol).
*
* Also, some global buffers are declared here, which can be used in other
* modules to save I/O data. This is to improve general efficiency, because
* it is not necessary to declare a different buffer for each function, and
* to copy data between buffers. All functions use the same I/O buffer.
* ============================================================================
* ============================================================================
*
* ChangeLog: View Changelog
*
* ============================================================================
* Copyright (C) 2003, 2004 Diego Essaya, Emiliano Castagnari
*
* This file is part of gems.
*
* gems is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* gems is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* ============================================================================
*/
#include <stdio.h> /* perror */
#include <sys/types.h> /* recv() y send() */
#include <sys/socket.h> /* recv() y send() */
#include <pty.h> /* struct winsize */
#include <errno.h> /* int errno */
#include <string.h> /* memcpy() */
#include "protocol.h"
#include "common.h"
/* I/O buffers: One buffer to hold an entire message (msg_buffer), and pointers
* to the header and message data. */
char gems_msg_buffer[MSG_HEADER_SIZE + MSG_MAX_DATA_SIZE];
char *gems_header_buffer = gems_msg_buffer;
char *gems_data_buffer = gems_msg_buffer + MSG_HEADER_SIZE;
/* Pointers to the header fields: */
gems_msg_type_t *gems_type_buffer = (gems_msg_type_t *) gems_msg_buffer;
gems_msg_len_t *gems_len_buffer =
(gems_msg_len_t *) (gems_msg_buffer + MSG_TYPE_SIZE);
/* Buffer to hold version string: Let's suppose 20 characters is enough. */
#define VERSION_BUFFER_LEN 20
char gems_version_buffer[VERSION_BUFFER_LEN];
/* get_stream() is a wrapper for recv().
*
* Reads data from the specified fd until all expected bytes have arrived,
* writing them into the buffer.
* Returns FALSE if a disconnection occurs.
*/
fbool_t get_stream(int fd, char *buffer, int bytes)
{
int n;
do
{
n = recv(fd, buffer, bytes, MSG_WAITALL);
}
while ((n == -1) && (errno == EINTR));
/* EINTR means that a signal has been caught and handled. We don't mind
* about this, so continue reading. */
if (n == bytes)
return TRUE;
if (n == 0)
return FALSE; /* Disconnection. */
/* Error: */
perror("recv");
return FAIL;
}
/* get_msg()
*
* Reads data from the specified fd until an entire message has arrived.
* Returns FALSE if a disconnection occurs, or if the message received is
* DISCONNECT.
* NOTE: The data (msg->data) is not copied into a new array; therefore
* succesive calls to this function will overwrite that section of memory.
*/
fbool_t get_msg(int fd, t_gems_msg * msg)
{
fbool_t r;
/* Receive message header: */
if ((r = get_stream(fd, gems_header_buffer, MSG_HEADER_SIZE)) != TRUE)
return r;
/* Get message type: */
msg->type = *gems_type_buffer;
/* Get data size: */
msg->len = *gems_len_buffer;
/* Get data: */
if (msg->len > 0)
{
if ((r = get_stream(fd, gems_data_buffer, msg->len)) != TRUE)
return r;
msg->data = gems_data_buffer;
}
if (msg->type == GEMS_DISCONNECT)
return FALSE;
return TRUE;
}
/* send_msg()
*
* Sends the message, following the protocol specifications. The global buffer
* gems_data_buffer can be used for msg->data. This is encouraged, because
* otherwise an extra memcpy() has to be done.
*/
fbool_t send_msg(int fd, t_gems_msg * msg)
{
/* Armo el paquete: */
*gems_type_buffer = msg->type;
*gems_len_buffer = msg->len;
if (msg->len > 0)
if (msg->data != gems_data_buffer)
memcpy(gems_data_buffer, msg->data, msg->len);
/* Envio el mensaje: */
if (send(fd, gems_msg_buffer, MSG_HEADER_SIZE + msg->len, 0) == -1)
{
perror("send");
return FAIL;
}
return TRUE;
}
/* send_version()
*
* Sends the protocol version.
*/
fbool_t send_version(int fd)
{
t_gems_msg msg;
msg.type = GEMS_VERSION;
msg.len = strlen(PROTOCOL_VERSION);
msg.data = PROTOCOL_VERSION;
return send_msg(fd, &msg);
}
/* get_peer_version()
*
* Receives the remote protocol version. Returns a zero-terminated string
* in *version.
* If DISCONNECT is received instead of VERSION, or if the connection is
* closed, this function returns FALSE.
* NOTE: Succesive calls to this function will overwrite the string buffer.
*/
fbool_t get_peer_version(int fd, char **version)
{
t_gems_msg msg;
fbool_t r = TRUE;
if ((r = get_msg(fd, &msg)) != TRUE)
return r;
if (msg.type != GEMS_VERSION)
return FAIL;
if (msg.len > VERSION_BUFFER_LEN - 1)
return FAIL;
memcpy(gems_version_buffer, msg.data, msg.len);
gems_version_buffer[msg.len] = '\0';
*version = gems_version_buffer;
return TRUE;
}
/* send_ack()
*
* Sends an ACK message.
*/
fbool_t send_ack(int fd)
{
t_gems_msg msg;
msg.type = GEMS_ACK;
msg.len = 0;
return send_msg(fd, &msg);
}
/* get_ack()
*
* Waits until an ACK message is received. Returns FALSE if a disconnection
* occurs.
*/
fbool_t get_ack(int fd)
{
t_gems_msg msg;
fbool_t r;
if ((r = get_msg(fd, &msg)) != TRUE)
return r;
if (msg.type != GEMS_ACK)
return FAIL;
return TRUE;
}
/* send_disconnect()
*
* Sends a DISCONNECT message.
*/
fbool_t send_disconnect(int fd)
{
t_gems_msg msg;
msg.type = GEMS_DISCONNECT;
msg.len = 0;
return send_msg(fd, &msg);
}
/* send_winsize()
*
* Sends the local terminal size.
*/
fbool_t send_winsize(int fd)
{
struct winsize win;
t_gems_msg msg;
int data[2];
/* Obtengo el tamao de la ventana: */
ioctl(0, TIOCGWINSZ, (char *) &win);
data[0] = (int) win.ws_col;
data[1] = (int) win.ws_row;
msg.type = GEMS_WINSIZE;
msg.len = 2 * sizeof(int);
msg.data = (char *) data;
return send_msg(fd, &msg);
}
/* compare_winsize()
*
* Compares the remote and local terminal sizes. Returns TRUE if local size
* is greater. Otherwise prints appropriate error message and returns FALSE.
*/
fbool_t compare_winsize(int remote_cols, int remote_rows, char *appname)
{
struct winsize win;
/* Obtengo el tamao de la ventana local: */
ioctl(0, TIOCGWINSZ, (char *) &win);
if ((win.ws_col < remote_cols) || (win.ws_row < remote_rows))
{
if (appname)
{
fputc('\n', stderr);
fprintf(stderr,
_("%s: Terminal size too small "
"(minimum required: %dx%d).\n"),
appname, remote_cols, remote_rows);
}
return FALSE;
}
return TRUE;
}
/* get_cols_rows()
*
* Extracts the columns and rows values from a GEMS_WINSIZE message.
*/
fbool_t get_cols_rows(const t_gems_msg * msg, int *cols, int *rows)
{
if ((msg->type != GEMS_WINSIZE) || (msg->len != 2 * sizeof(int)))
return FAIL;
*cols = ((int *) msg->data)[0];
*rows = ((int *) msg->data)[1];
return TRUE;
}
/* get_winsize()
*
* Receives the remote terminal size, compares it with the local size and
* returns TRUE if local size is greater. Returns FALSE if a disconnection
* occurs.
*/
fbool_t get_winsize(int fd, int *cols, int *rows)
{
t_gems_msg msg;
fbool_t r;
if ((r = get_msg(fd, &msg)) != TRUE)
return r;
if (msg.type != GEMS_WINSIZE)
return FAIL;
if ((r = get_cols_rows(&msg, cols, rows)) != TRUE)
return r;
return compare_winsize(*cols, *rows, NULL);
}
/* vim: set ts=4 sw=4: */
|