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
|
/******************************************************************************
Copyright 1994, 1998 The Open Group
Permission to use, copy, modify, distribute, and sell this software and its
documentation for any purpose is hereby granted without fee, provided that
the above copyright notice appear in all copies and that both that
copyright notice and this permission notice appear in supporting
documentation.
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Except as contained in this notice, the name of The Open Group shall not be
used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
Author: Ralph Mor, X Consortium
******************************************************************************/
#include "smproxy.h"
#ifdef HAVE_MKSTEMP
#include <unistd.h>
#endif
static ProxyFileEntry *proxyFileHead = NULL;
static int write_byte ( FILE *file, unsigned char b );
static int write_short ( FILE *file, unsigned short s );
static int write_counted_string ( FILE *file, char *string );
static int read_byte ( FILE *file, unsigned char *bp );
static int read_short ( FILE *file, unsigned short *shortp );
static int read_counted_string ( FILE *file, char **stringp );
#ifndef HAVE_ASPRINTF
# include <stdarg.h>
/* sprintf variant found in newer libc's which allocates string to print to */
_X_HIDDEN int _X_ATTRIBUTE_PRINTF(2,3)
asprintf(char ** ret, const char *format, ...)
{
char buf[256];
int len;
va_list ap;
va_start(ap, format);
len = vsnprintf(buf, sizeof(buf), format, ap);
va_end(ap);
if (len < 0)
return -1;
if (len < sizeof(buf))
{
*ret = strdup(buf);
}
else
{
*ret = malloc(len + 1); /* snprintf doesn't count trailing '\0' */
if (*ret != NULL)
{
va_start(ap, format);
len = vsnprintf(*ret, len + 1, format, ap);
va_end(ap);
if (len < 0) {
free(*ret);
*ret = NULL;
}
}
}
if (*ret == NULL)
return -1;
return len;
}
#endif
static int
write_byte (FILE *file, unsigned char b)
{
if (fwrite ((char *) &b, 1, 1, file) != 1)
return 0;
return 1;
}
static int
write_short (FILE *file, unsigned short s)
{
unsigned char file_short[2];
file_short[0] = (s & (unsigned)0xff00) >> 8;
file_short[1] = s & 0xff;
if (fwrite ((char *) file_short, (int) sizeof (file_short), 1, file) != 1)
return 0;
return 1;
}
static int
write_counted_string(FILE *file, char *string)
{
if (string)
{
unsigned char count = strlen (string);
if (write_byte (file, count) == 0)
return 0;
if (fwrite (string, (int) sizeof (char), (int) count, file) != count)
return 0;
}
else
{
if (write_byte (file, 0) == 0)
return 0;
}
return 1;
}
static int
read_byte(FILE *file, unsigned char *bp)
{
if (fread ((char *) bp, 1, 1, file) != 1)
return 0;
return 1;
}
static int
read_short(FILE *file, unsigned short *shortp)
{
unsigned char file_short[2];
if (fread ((char *) file_short, (int) sizeof (file_short), 1, file) != 1)
return 0;
*shortp = file_short[0] * 256 + file_short[1];
return 1;
}
static int
read_counted_string(FILE *file, char **stringp)
{
unsigned char len;
char *data;
if (read_byte (file, &len) == 0)
return 0;
if (len == 0) {
data = NULL;
} else {
data = (char *) malloc ((unsigned) len + 1);
if (!data)
return 0;
if (fread (data, (int) sizeof (char), (int) len, file) != len) {
free (data);
return 0;
}
data[len] = '\0';
}
*stringp = data;
return 1;
}
/*
* An entry in the .smproxy file looks like this:
*
* FIELD BYTES
* ----- ----
* client ID len 1
* client ID LIST of bytes
* WM_CLASS "res name" length 1
* WM_CLASS "res name" LIST of bytes
* WM_CLASS "res class" length 1
* WM_CLASS "res class" LIST of bytes
* WM_NAME length 1
* WM_NAME LIST of bytes
* WM_COMMAND arg count 1
* For each arg in WM_COMMAND
* arg length 1
* arg LIST of bytes
*/
int
WriteProxyFileEntry(FILE *proxyFile, WinInfo *theWindow)
{
int i;
if (!write_counted_string (proxyFile, theWindow->client_id))
return 0;
if (!write_counted_string (proxyFile, theWindow->class.res_name))
return 0;
if (!write_counted_string (proxyFile, theWindow->class.res_class))
return 0;
if (!write_counted_string (proxyFile, theWindow->wm_name))
return 0;
if (!theWindow->wm_command || theWindow->wm_command_count == 0)
{
if (!write_byte (proxyFile, 0))
return 0;
}
else
{
if (!write_byte (proxyFile, (char) theWindow->wm_command_count))
return 0;
for (i = 0; i < theWindow->wm_command_count; i++)
if (!write_counted_string (proxyFile, theWindow->wm_command[i]))
return 0;
}
return 1;
}
int
ReadProxyFileEntry(FILE *proxyFile, ProxyFileEntry **pentry)
{
ProxyFileEntry *entry;
unsigned char byte;
int i;
*pentry = entry = (ProxyFileEntry *) malloc (
sizeof (ProxyFileEntry));
if (!*pentry)
return 0;
entry->tag = 0;
entry->client_id = NULL;
entry->class.res_name = NULL;
entry->class.res_class = NULL;
entry->wm_name = NULL;
entry->wm_command = NULL;
entry->wm_command_count = 0;
if (!read_counted_string (proxyFile, &entry->client_id))
goto give_up;
if (!read_counted_string (proxyFile, &entry->class.res_name))
goto give_up;
if (!read_counted_string (proxyFile, &entry->class.res_class))
goto give_up;
if (!read_counted_string (proxyFile, &entry->wm_name))
goto give_up;
if (!read_byte (proxyFile, &byte))
goto give_up;
entry->wm_command_count = byte;
if (entry->wm_command_count == 0)
entry->wm_command = NULL;
else
{
entry->wm_command = (char **) malloc (entry->wm_command_count *
sizeof (char *));
if (!entry->wm_command)
goto give_up;
for (i = 0; i < entry->wm_command_count; i++)
if (!read_counted_string (proxyFile, &entry->wm_command[i]))
goto give_up;
}
return 1;
give_up:
if (entry->client_id)
free (entry->client_id);
if (entry->class.res_name)
free (entry->class.res_name);
if (entry->class.res_class)
free (entry->class.res_class);
if (entry->wm_name)
free (entry->wm_name);
if (entry->wm_command)
{
if (entry->wm_command_count)
{
for (i = 0; i < entry->wm_command_count; i++)
if (entry->wm_command[i])
free (entry->wm_command[i]);
}
free ((char *) entry->wm_command);
}
free ((char *) entry);
*pentry = NULL;
return 0;
}
void
ReadProxyFile(char *filename)
{
FILE *proxyFile;
ProxyFileEntry *entry;
int done = 0;
unsigned short version;
proxyFile = fopen (filename, "rb");
if (!proxyFile)
return;
if (!read_short (proxyFile, &version) ||
version > SAVEFILE_VERSION)
{
done = 1;
}
while (!done)
{
if (ReadProxyFileEntry (proxyFile, &entry))
{
entry->next = proxyFileHead;
proxyFileHead = entry;
}
else
done = 1;
}
fclose (proxyFile);
}
static char *
unique_filename(const char *path, const char *prefix, int *pFd)
{
char *tempFile = NULL;
int tempFd = 0;
#if defined(HAVE_MKSTEMP) || defined(HAVE_MKTEMP)
if (asprintf (&tempFile, "%s/%sXXXXXX", path, prefix) == -1)
return NULL;
#endif
#ifdef HAVE_MKSTEMP
tempFd = mkstemp(tempFile);
#else
# ifdef HAVE_MKTEMP
if (mktemp(tempFile) == NULL)
tempFd = -1;
# else /* fallback to tempnam */
tempFile = tempnam (path, prefix);
# endif /* HAVE_MKTEMP */
if (tempFd != -1 && tempFile != NULL)
tempFd = open(tempFile, O_RDWR | O_CREAT | O_EXCL, 0600);
#endif
if (tempFd == -1) {
free(tempFile);
return (NULL);
}
*pFd = tempFd;
return tempFile;
}
char *
WriteProxyFile(void)
{
FILE *proxyFile = NULL;
char *filename = NULL;
int fd = -1;
const char *path;
WinInfo *winptr;
Bool success = False;
path = getenv ("SM_SAVE_DIR");
if (!path)
{
path = getenv ("HOME");
if (!path)
path = ".";
}
if ((filename = unique_filename (path, ".prx", &fd)) == NULL)
goto bad;
if (!(proxyFile = fdopen(fd, "wb")))
goto bad;
if (!write_short (proxyFile, SAVEFILE_VERSION))
goto bad;
success = True;
winptr = win_head;
while (winptr && success)
{
if (winptr->client_id)
if (!WriteProxyFileEntry (proxyFile, winptr))
{
success = False;
break;
}
winptr = winptr->next;
}
bad:
if (proxyFile)
fclose (proxyFile);
else if (fd != -1)
close (fd);
if (success)
return (filename);
else
{
if (filename)
free (filename);
return (NULL);
}
}
char *
LookupClientID(WinInfo *theWindow)
{
ProxyFileEntry *ptr;
int found = 0;
ptr = proxyFileHead;
while (ptr && !found)
{
if (!ptr->tag &&
strcmp (theWindow->class.res_name, ptr->class.res_name) == 0 &&
strcmp (theWindow->class.res_class, ptr->class.res_class) == 0 &&
strcmp (theWindow->wm_name, ptr->wm_name) == 0)
{
int i;
if (theWindow->wm_command_count == ptr->wm_command_count)
{
for (i = 0; i < theWindow->wm_command_count; i++)
if (strcmp (theWindow->wm_command[i],
ptr->wm_command[i]) != 0)
break;
if (i == theWindow->wm_command_count)
found = 1;
}
}
if (!found)
ptr = ptr->next;
}
if (found)
{
ptr->tag = 1;
return (ptr->client_id);
}
else
return NULL;
}
|