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 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
|
/* dlp.c
*
* Implementation of the Desktop Link Protocol (DLP).
*
* Copyright (C) 1999, Andrew Arensburger.
* You may distribute this file under the terms of the Artistic
* License, as specified in the README file.
*
* Note that the functions in this file just implement the protocol
* itself. They are not really expected to be called by conduits or
* other user programs: for them, see the DLP convenience functions in
* dlp_cmd.c.
*
* $Id: dlp.c,v 1.18 2002/11/03 14:12:11 azummo Exp $
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h> /* For calloc() */
#if STDC_HEADERS
# include <string.h> /* For memcpy() et al. */
#else /* STDC_HEADERS */
# ifndef HAVE_STRCHR
# define strchr index
# define strrchr rindex
# endif /* HAVE_STRCHR */
# ifndef HAVE_MEMCPY
# define memcpy(d,s,n) bcopy ((s), (d), (n))
# define memmove(d,s,n) bcopy ((s), (d), (n))
# endif /* HAVE_MEMCPY */
#endif /* STDC_HEADERS */
#if HAVE_LIBINTL_H
# include <libintl.h> /* For i18n */
#endif /* HAVE_LIBINTL_H */
#include "palm.h"
#include "pconn/palm_errno.h"
#include "pconn/dlp.h"
#include "pconn/util.h"
#include "pconn/PConnection.h"
int dlp_trace = 0; /* Debugging level for DLP */
#define DLP_TRACE(n) if (dlp_trace >= (n))
#define DLP_DEFAULT_ARGV_LEN 10 /* Initial length of argv, in
* PConnection. */
/* dlp_init
* Initialize the DLP part of a new PConnection.
*/
int
dlp_init(PConnection *pconn)
{
/* Allocate a new argv[] of some default size */
if ((pconn->dlp.argv =
(struct dlp_arg *) calloc(DLP_DEFAULT_ARGV_LEN,
sizeof(struct dlp_arg)))
== NULL)
{
return -1;
}
pconn->dlp.argv_len = DLP_DEFAULT_ARGV_LEN;
pconn->dlp.resp.error = DLPSTAT_NOERR;
return 0;
}
/* dlp_tini
* Clean up the DLP part of a PConnection.
*/
int
dlp_tini(PConnection *pconn)
{
if (pconn == NULL)
return 0;
/* Free the argv */
if (pconn->dlp.argv != NULL)
{
free(pconn->dlp.argv);
pconn->dlp.argv = NULL;
}
return 0;
}
/* dlp_send_req
* Send the DLP request defined by 'header'. 'argv' is the list of
* arguments.
* Returns 0 if successful. In case of error, returns a negative
* value. 'palm_errno' is set to indicate the error.
*/
int
dlp_send_req(PConnection *pconn, /* Connection to Palm */
const struct dlp_req_header *header,
/* Request header */
const struct dlp_arg argv[]) /* Array of request arguments */
{
int i;
int err;
ubyte *outbuf; /* Outgoing request buffer */
long buflen; /* Length of outgoing request */
ubyte *wptr; /* Pointer into buffers (for writing) */
PConn_set_palmerrno(pconn, PALMERR_NOERR);
/* Calculate size of outgoing request */
DLP_TRACE(6)
fprintf(stderr,
"dlp_send_req: Calculating outgoing request buffer\n");
buflen = 2L; /* Request id and argc */
for (i = 0; i < header->argc; i++)
{
if (argv[i].size <= DLP_TINYARG_MAXLEN)
{
/* Tiny argument */
buflen += 2 + argv[i].size;
/* 2 bytes for id and 1-byte size */
DLP_TRACE(7)
fprintf(stderr, "Tiny argument: %ld bytes, "
"buflen == %ld\n",
argv[i].size, buflen);
} else if (argv[i].size <= DLP_SMALLARG_MAXLEN)
{
/* Small argument */
buflen += 4 + argv[i].size;
/* 4 bytes for id, unused, and
* 2-byte size */
DLP_TRACE(7)
fprintf(stderr, "Small argument: %ld bytes, "
"buflen == %ld\n",
argv[i].size, buflen);
} else {
/* Long argument */
buflen += 6 + argv[i].size;
/* 6 bytes: 2-byte id and 4-byte
* size */
DLP_TRACE(7)
fprintf(stderr, "Long argument: %ld bytes, "
"buflen == %ld\n",
argv[i].size, buflen);
}
}
/* Allocate a buffer of the proper length */
outbuf = (ubyte *) malloc(buflen);
if (outbuf == NULL)
{
fprintf(stderr,
_("%s: Can't allocate %ld-byte buffer.\n"),
"dlp_send_req",
buflen);
return -1;
}
/* Construct a DLP request header in the output buffer */
wptr = outbuf;
put_ubyte(&wptr, header->id);
put_ubyte(&wptr, header->argc);
DLP_TRACE(5)
fprintf(stderr, ">>> request id 0x%02x, %d args\n",
header->id, header->argc);
/* Append the request headers to the output buffer */
for (i = 0; i < header->argc; i++)
{
/* See whether this argument ought to be tiny, small
* or large, and construct an appropriate header.
*/
if (argv[i].size <= DLP_TINYARG_MAXLEN)
{
/* Tiny argument */
DLP_TRACE(10)
fprintf(stderr,
"Tiny argument %d, id 0x%02x, "
"size %ld\n",
i, argv[i].id, argv[i].size);
put_ubyte(&wptr, argv[i].id & 0x3f);
/* Make sure the high two bits are
* 00, since this is a tiny
* argument.
*/
put_ubyte(&wptr, argv[i].size);
} else if (argv[i].size <= DLP_SMALLARG_MAXLEN)
{
/* Small argument */
DLP_TRACE(10)
fprintf(stderr,
"Small argument %d, id 0x%02x, "
"size %ld\n",
i, argv[i].id, argv[i].size);
put_ubyte(&wptr, (argv[i].id & 0x3f) | 0x80);
/* Make sure the high two bits are
* 10, since this is a small
* argument.
*/
put_ubyte(&wptr, 0); /* Padding */
put_uword(&wptr, argv[i].size);
} else {
/* Long argument */
/* XXX - Check to make sure the comm. protocol
* supports long arguments.
*/
DLP_TRACE(10)
fprintf(stderr,
"Long argument %d, id 0x%04x, "
"size %ld\n",
i, argv[i].id, argv[i].size);
put_uword(&wptr, (argv[i].id & 0x3fff) | 0xc000);
/* Make sure the high two bits are
* 11, since this is a long
* argument.
*/
put_udword(&wptr, argv[i].size);
}
/* Append the argument data to the header */
memcpy(wptr, argv[i].data, argv[i].size);
wptr += argv[i].size;
}
/* Send the request */
DLP_TRACE(7)
debug_dump(stderr, "DLP>>>", outbuf, wptr-outbuf);
err = (*pconn->dlp.write)(pconn, outbuf, wptr-outbuf);
if (err < 0)
{
free(outbuf);
return err;
}
free(outbuf);
return 0; /* Success */
}
/* dlp_recv_resp
* Receive the response to a DLP request. The response header will be
* put in 'header', and the arguments will be written to 'argv'. No
* more than 'argc' arguments will be written.
* Returns 0 if successful. In case of error, returns a negative
* value; 'palm_errno' is set to indicate the error.
*/
int
dlp_recv_resp(PConnection *pconn, /* Connection to Palm */
const ubyte id, /* ID of the original request */
struct dlp_resp_header *header,
/* Response header will be put here */
const struct dlp_arg **argv)
/* Where to put the arguments */
{
int i;
int err;
const ubyte *inbuf; /* Input data (from PADP or NetSync) */
uword inlen; /* Length of input data */
const ubyte *rptr; /* Pointer into buffers (for reading) */
/* Read the response */
err = (*pconn->dlp.read)(pconn, &inbuf, &inlen);
if (err < 0)
return err; /* Error */
DLP_TRACE(7)
debug_dump(stderr, "DLP<<<", inbuf, inlen);
/* Parse the response header */
rptr = inbuf;
header->id = get_ubyte(&rptr);
header->argc = get_ubyte(&rptr);
header->error = get_uword(&rptr);
DLP_TRACE(6)
fprintf(stderr, "Got response, id 0x%02x, argc %d, errno %d\n",
header->id,
header->argc,
header->error);
/* Make sure it's really a DLP response */
if ((header->id & 0x80) != 0x80)
{
fprintf(stderr,
_("##### Expected a DLP response, but this "
"isn't one!\n"));
return -1;
}
/* Make sure the response ID matches the request ID */
if ((header->id & 0x7f) != id)
{
fprintf(stderr,
_("##### Bad response ID: expected 0x%02x, "
"got 0x%02x.\n"),
id | 0x80, header->id);
PConn_set_palmerrno(pconn, PALMERR_BADID);
return -1;
}
/* Make sure there's room for all of the arguments */
if (header->argc > pconn->dlp.argv_len)
{
struct dlp_arg *eptr; /* Pointer to reallocated argv */
/* Grow argv. Use the temporary variable 'eptr' in case
* realloc() fails.
*/
eptr = (struct dlp_arg *)
realloc(pconn->dlp.argv,
sizeof(struct dlp_arg) * header->argc);
if (eptr == NULL)
{
/* Reallocation failed */
/* XXX - Set an error code */
return -1;
}
/* Update the new argv */
pconn->dlp.argv = eptr;
pconn->dlp.argv_len = header->argc;
}
/* Parse the arguments */
for (i = 0; i < header->argc; i++)
{
/* See if it's a tiny, small or long argument */
switch (*rptr & 0xc0)
{
case 0xc0: /* Long argument */
DLP_TRACE(5)
fprintf(stderr, "Arg %d is long\n", i);
pconn->dlp.argv[i].id = get_uword(&rptr);
pconn->dlp.argv[i].id &= 0x3f;
/* Strip off the size bits */
pconn->dlp.argv[i].size = get_udword(&rptr);
break;
case 0x80: /* Small argument */
DLP_TRACE(5)
fprintf(stderr, "Arg %d is small\n", i);
pconn->dlp.argv[i].id = get_ubyte(&rptr);
pconn->dlp.argv[i].id &= 0x3f;
/* Strip off the size bits */
get_ubyte(&rptr); /* Skip over padding */
pconn->dlp.argv[i].size = get_uword(&rptr);
break;
default: /* Tiny argument */
DLP_TRACE(5)
fprintf(stderr, "Arg %d is tiny\n", i);
pconn->dlp.argv[i].id = get_ubyte(&rptr);
pconn->dlp.argv[i].id &= 0x3fff;
/* Strip off the size bits */
pconn->dlp.argv[i].size = get_ubyte(&rptr);
break;
}
DLP_TRACE(6)
fprintf(stderr, "Got arg %d, id 0x%02x, size %ld\n",
i, pconn->dlp.argv[i].id,
pconn->dlp.argv[i].size);
pconn->dlp.argv[i].data = (ubyte *) rptr;
rptr += pconn->dlp.argv[i].size;
}
*argv = pconn->dlp.argv;
return 0;
}
/* dlp_dlpc_req
* Send a DLP command, and receive a response. If there's a timeout waiting
* for data, resends the request, up to 5 times.
* This function is mainly for Linux, where the USB-to-serial thingy (or
* maybe the serial driver) appears to drop data (I've seen it drop 3Kb).
*
* Returns 0 if successful. In case of error, returns a negative value;
* 'palm_errno' is set to indicate the error.
*/
int
dlp_dlpc_req(PConnection *pconn, /* Connection to Palm */
const struct dlp_req_header *header,
/* Request header */
const struct dlp_arg argv[], /* Argument list */
struct dlp_resp_header *resp_header,
/* Response header */
const struct dlp_arg **ret_argv) /* Response argument list */
{
int err;
int trycount; /* # times to try sending the request */
for (trycount = 0; trycount < 5; trycount++)
{
/* Send the DLP request */
DLP_TRACE(2)
fprintf(stderr,
"dlp_dlpc_req: sending request 0x%02x, trycount: %d\n",
header->id, trycount);
err = dlp_send_req(pconn, header, argv);
if (err < 0)
{
if (PConn_get_palmerrno(pconn) == PALMERR_TIMEOUT2)
{
DLP_TRACE(2)
fprintf(stderr,
"dlp_dlpc_req: resending, checkpoint 1\n");
/* Try resending the request */
continue;
}
return err; /* Some other error */
}
DLP_TRACE(5)
fprintf(stderr,
"dlp_dlpc_req: waiting for response\n");
/* Get a response */
err = dlp_recv_resp(pconn, header->id,
resp_header, ret_argv);
if (err < 0)
{
if (PConn_get_palmerrno(pconn) == PALMERR_TIMEOUT2)
{
DLP_TRACE(2)
fprintf(stderr,
"dlp_dlpc_req: resending, checkpoint 2\n");
/* Try resending the request */
continue;
}
DLP_TRACE(2)
fprintf(stderr, "dlp_dlpc_req: "
"dlp_recv_resp set pconn->palm_errno == %d\n",
pconn->palm_errno);
return err; /* Some other error */
}
/* Save the header */
memcpy(&pconn->dlp.resp, resp_header, sizeof(struct dlp_resp_header));
/* Invoke the io_complete callback, if present */
if (pconn->dlp.io_complete)
(*pconn->dlp.io_complete)(pconn);
DLP_TRACE(2)
fprintf(stderr,
"Got response, id 0x%02x, args %d, "
"status %d\n",
resp_header->id,
resp_header->argc,
resp_header->error);
return 0; /* Success */
}
DLP_TRACE(2)
fprintf(stderr, "dlp_dlpc_req: maximum retries exceeded.\n");
PConn_set_palmerrno(pconn, PALMERR_TIMEOUT);
PConn_set_status(pconn, PCONNSTAT_LOST);
return -1;
}
const char *
dlp_strerror(const dlp_stat_t err)
{
/* This is implemented as a switch statement and not as an array
* lookup in order to allow the compiler to make sure that all
* error codes have an error message.
*/
switch (err)
{
case DLPSTAT_NOERR: return N_("No error");
case DLPSTAT_SYSTEM: return N_("General Palm system error");
case DLPSTAT_ILLEGALREQ: return N_("Unknown request ID");
case DLPSTAT_NOMEM: return N_("Insufficient memory");
case DLPSTAT_PARAM: return N_("Invalid parameter");
case DLPSTAT_NOTFOUND: return N_("Database/record/resource/whatever not found");
case DLPSTAT_NONEOPEN: return N_("There are no open databases");
case DLPSTAT_DBOPEN: return N_("Database is open by someone else");
case DLPSTAT_TOOMANYOPEN: return N_("Too many open databases");
case DLPSTAT_EXISTS: return N_("Database already exists");
case DLPSTAT_CANTOPEN: return N_("Can't open database");
case DLPSTAT_RECDELETED: return N_("Record is deleted");
case DLPSTAT_RECBUSY: return N_("Record is busy");
case DLPSTAT_UNSUPP: return N_("Requested operation is not supported on the given database type");
case DLPSTAT_UNUSED1: return N_("You do not have write access; or database is in ROM (Unused error code?)");
case DLPSTAT_READONLY: return N_("You do not have write access; or database is in ROM");
case DLPSTAT_SPACE: return N_("Not enough space for record/resource/whatever");
case DLPSTAT_LIMIT: return N_("Size limit exceeded");
case DLPSTAT_CANCEL: return N_("Cancel request received");
case DLPSTAT_BADWRAP: return N_("Bad arg wrapper");
case DLPSTAT_NOARG: return N_("Required argument not found");
case DLPSTAT_ARGSIZE: return N_("Invalid argument size");
}
/* This should never be reached */
return N_("Unknown error");
}
/* This is for Emacs's benefit:
* Local Variables: ***
* fill-column: 75 ***
* End: ***
*/
|