File: OpenSvr.c

package info (click to toggle)
nas 1.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,124 kB
  • ctags: 27,566
  • sloc: ansic: 52,109; makefile: 31,375; sh: 8,077; perl: 1,104; yacc: 249; cpp: 216; lex: 68
file content (532 lines) | stat: -rw-r--r-- 15,972 bytes parent folder | download | duplicates (7)
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
/*
 * Copyright 1993 Network Computing Devices, Inc.
 *
 * 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, and that the name Network Computing Devices, Inc. not be
 * used in advertising or publicity pertaining to distribution of this 
 * software without specific, written prior permission.
 * 
 * THIS SOFTWARE IS PROVIDED 'AS-IS'.  NETWORK COMPUTING DEVICES, INC.,
 * DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING WITHOUT
 * LIMITATION ALL IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
 * PARTICULAR PURPOSE, OR NONINFRINGEMENT.  IN NO EVENT SHALL NETWORK
 * COMPUTING DEVICES, INC., BE LIABLE FOR ANY DAMAGES WHATSOEVER, INCLUDING
 * SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES, INCLUDING LOSS OF USE, DATA,
 * OR PROFITS, EVEN IF ADVISED OF THE POSSIBILITY THEREOF, AND REGARDLESS OF
 * WHETHER IN AN ACTION IN CONTRACT, TORT OR NEGLIGENCE, ARISING OUT OF OR IN
 * CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 * 
 * $NCDId: @(#)OpenSvr.c,v 1.25 1995/12/28 19:45:28 greg Exp $
 */

/* Portions derived from */
/*
 * $XConsortium: XOpenDis.c,v 11.126 92/11/03 18:42:50 rws Exp $
 */

/* Copyright    Massachusetts Institute of Technology    1985, 1986	*/

/*
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, and that the name of M.I.T. not be used in advertising or
publicity pertaining to distribution of the software without specific,
written prior permission.  M.I.T. makes no representations about the
suitability of this software for any purpose.  It is provided "as is"
without express or implied warranty.
*/

#define _OPENSVR_C_

#include <audio/Alibint.h>
#include <audio/Aos.h>
#include <stdio.h>
#include <stdlib.h>

AuErrorHandler  AuDefaultErrorHandler = (AuErrorHandler) NULL;
AuIOErrorHandler AuDefaultIOErrorHandler = (AuIOErrorHandler) NULL;

static auReq _dummy_request = {
	0, 0, 0
};

static void _AuOCOutOfMemory();

static int xferConnectionSetup();

/*****************************************************************************
 *				 AuOpenServer				     *
 *****************************************************************************/

/* 
 * Connects to a server, creates a AuServer object and returns a pointer to
 * the newly created AuServer back to the caller.
 */
AuServer *AuOpenServer (
	const char *server,
	int num_authproto,
	const char *authproto,
	int num_authdata,
	const char *authdata,
	char **ret_svrmsg)
{
	AuServer *aud;		/* New AuServer object being created */
	int i;
	const char *server_name;	/* pointer to server name */
	int endian;			/* to determine which endian. */
	auConnClientPrefix client;	/* client information */
	auConnSetupPrefix prefix;	/* prefix information */
	int vendorlen;			/* length of vendor string */
	char *setup = NULL;		/* memory allocated at startup */
	char *fullname = NULL;		/* expanded name of server */
	int iserver;			/* server number */
	union {
		auConnSetup *setup;
		char *failure;
	} u;				/* proto data returned from server */
	AuInt32 setuplength;		/* number of bytes in setup message */
	unsigned char *varData;		/* pointer to variable length data that
					 * follows the connection setup data */

	int conn_auth_namelen = num_authproto;	  /* init the auth info */
	char *conn_auth_name = (char *) authproto;
	int conn_auth_datalen = num_authdata;
	char *conn_auth_data = (char *) authdata;

	AuUint32 mask;

	/*
	 * Initialize the return message to a known good value
	 */
	if (ret_svrmsg)
	    *ret_svrmsg = NULL;

	/*
	 * If the server specifier string supplied as an argument to this 
	 * routine is NULL or a pointer to NULL, read the DISPLAY variable.
	 */
	server_name = AuServerName (server);
	if (!server_name || !server_name[0])
	    return NULL;

/*
 * Lock against other threads trying to access global data (like the error
 * handlers and server list).
 */
	_AuLockMutex(_init_mutex);

/*
 * Attempt to allocate a server structure. Return NULL if allocation fails.
 */
	if ((aud = (AuServer *)Aucalloc(1, sizeof(AuServer))) == NULL) {
		_AuUnlockMutex(_init_mutex);
		return(NULL);
	}

/*
 * Set the default error handlers.
 */
	aud->funcs.error_handler = AuDefaultErrorHandler;
	aud->funcs.ioerror_handler = AuDefaultIOErrorHandler;


/*
 * Call the Connect routine to get the network socket. If -1 is returned, the
 * connection failed. The connect routine will set fullname to point to the
 * expanded name.
 */

	if ((aud->fd = _AuConnectServer (server_name, &fullname, &iserver,
					 &conn_auth_name,
					 &conn_auth_namelen, &conn_auth_data,
					 &conn_auth_datalen)) < 0) {
		Aufree ((char *) aud);
		_AuUnlockMutex(_init_mutex);
		return(NULL);
	}

	/* Initialize as much of the server structure as we can.
	 * Initialize pointers to NULL so that AuFreeServerStructure will
	 * work if we run out of memory before we finish initializing.
	 */
	aud->server_name	= fullname;
	aud->scratch_length	= 0L;
	aud->scratch_buffer	= NULL;
	aud->ext_procs		= (_AuExtension *)NULL;
	aud->ext_data		= (AuExtData *)NULL;
	aud->ext_number 	= 0;
	aud->event_vec[Au_Error] = _AuUnknownWireEvent;
	aud->event_vec[Au_Reply] = _AuUnknownWireEvent;
	aud->wire_vec[Au_Error]  = _AuUnknownNativeEvent;
	aud->wire_vec[Au_Reply]  = _AuUnknownNativeEvent;
	for (i = AuFirstEventType; i <= AuLastEventType; i++) {
	    aud->event_vec[i] 	= _AuWireToEvent;
	    aud->wire_vec[i] 	= NULL;
	}
	for (i = AuLastEventType + 1; i < 128; i++) {
	    aud->event_vec[i] 	= _AuUnknownWireEvent;
	    aud->wire_vec[i] 	= _AuUnknownNativeEvent;
	}
	aud->resource_id	= 0;
	aud->flags		= 0;
	aud->async_handlers	= NULL;
	aud->vendor		= NULL;
	aud->buffer		= NULL;
	aud->error_vec		= NULL;

/*
 * Setup other information in this server structure.
 */
	aud->vnumber = AuProtocolMajorVersion;
	aud->resource_alloc = _AuAllocID;
	aud->synchandler = NULL;
	aud->request = 0;
	aud->last_request_read = 0;
	aud->last_req = (char *)&_dummy_request;

	/* Set up the output buffers. */
	if ((aud->bufptr = aud->buffer = Aumalloc(BUFSIZE)) == NULL) {
	        _AuOCOutOfMemory (aud, setup);
		_AuUnlockMutex(_init_mutex);
		return(NULL);
	}
	aud->bufmax = aud->buffer + BUFSIZE;
 
	/* Set up the input event queue and input event queue parameters. */
	aud->head = aud->tail = NULL;
	aud->qlen = 0;

	/* Set up the scratch flow info */
	aud->scratch_flows.total = aud->scratch_flows.num_inuse = 0;

/*
 * The auConnClientPrefix describes the initial connection setup information
 * and is followed by the authorization information.  Sites that are interested
 * in security are strongly encouraged to use an authentication and 
 * authorization system such as Kerberos.
 */
	endian = 1;
	if (*(char *) &endian)
	    client.byteOrder = '\154'; /* 'l' */
	else
	    client.byteOrder = '\102'; /* 'B' */
	client.majorVersion = AuProtocolMajorVersion;
	client.minorVersion = AuProtocolMinorVersion;
	client.nbytesAuthProto = conn_auth_namelen;
	client.nbytesAuthString = conn_auth_datalen;
	if (!_AuSendClientPrefix(aud, &client, conn_auth_name, conn_auth_data))
	{
	    _AuDisconnectServer (aud->fd);
	    Aufree ((char *)aud);
	    _AuUnlockMutex(_init_mutex);
	    return(NULL);
	}	    
	/* see if we had changed the auth info and release it */
	if (conn_auth_name && conn_auth_name != authproto)
	    Aufree(conn_auth_name);
	if (conn_auth_data && conn_auth_data != authdata)
	    Aufree(conn_auth_data);
/*
 * Now see if connection was accepted...
 */
	_AuRead (aud, (char *)&prefix,(AuInt32)SIZEOF(auConnSetupPrefix));

	if (prefix.majorVersion < AuProtocolMajorVersion ||
	    prefix.minorVersion != AuProtocolMinorVersion)
	    fprintf (stderr, "audiolib: warning, client is protocol rev %d.%d \
server is %d.%d!\r\n",
		     AuProtocolMajorVersion, AuProtocolMinorVersion,
		     prefix.majorVersion, prefix.minorVersion);

	setuplength = prefix.length << 2;
	if ( (u.setup = (auConnSetup *)
	      (setup =  Aumalloc ((unsigned) setuplength))) == NULL) {
		_AuDisconnectServer (aud->fd);
		Aufree ((char *)aud);
		_AuUnlockMutex(_init_mutex);
		return(NULL);
	}
	_AuRead (aud, (char *)u.setup, setuplength);
/*
 * If the connection was not accepted by the server due to problems,
 * give error message to the user....
 */
	if (prefix.success != auTrue) {
	    int len = (int) prefix.lengthReason;
	    if (ret_svrmsg) {
		*ret_svrmsg = (char *) Aumalloc (len + 1);
		if (*ret_svrmsg) {
		    (void) strncpy (*ret_svrmsg, u.failure, len);
		    (*ret_svrmsg)[len] = '\0';
		}
	    } else {
		/* client is really out of memory, fallback to printing */
		fprintf (stderr, 
			 "%s:  connection to \"%s\" refused by server\r\n%s:  ",
			 "audiolib", fullname, "audiolib");
		(void) fwrite (u.failure, sizeof(char),
			(int)prefix.lengthReason, stderr);
		(void) fwrite ("\r\n", sizeof(char), 2, stderr);
	    }

	    _AuOCOutOfMemory(aud, setup);
	    _AuUnlockMutex(_init_mutex);
	    return (NULL);
	}

/*
 * We succeeded at authorization, so let us move the data into
 * the server structure.
 */
	aud->proto_major_version= prefix.majorVersion;
	aud->proto_minor_version= prefix.minorVersion;
	aud->release 		= u.setup->release;
	aud->resource_base	= u.setup->ridBase;
	aud->resource_mask	= u.setup->ridMask;
	aud->max_request_size	= u.setup->maxRequestSize;
	mask = aud->resource_mask;
	aud->resource_shift	= 0;
	while (!(mask & 1)) {
	    aud->resource_shift++;
	    mask = mask >> 1;
	}
/*
 * now extract the vendor string...  String must be null terminated,
 * padded to multiple of 4 bytes.
 */
	aud->vendor = (char *) Aumalloc((unsigned) (u.setup->nbytesVendor + 1));
	if (aud->vendor == NULL) {
	    _AuOCOutOfMemory(aud, setup);
	    _AuUnlockMutex(_init_mutex);
	    return (NULL);
	}

	varData = ((unsigned char *) u.setup) + sz_auConnSetup;
	vendorlen = u.setup->nbytesVendor;
  	(void) strncpy(aud->vendor, (char *)varData, vendorlen);
	aud->vendor[vendorlen] = '\0';
 	vendorlen = PAD4(vendorlen);
	varData += vendorlen;
/*
 * Now iterate down setup information.....
 */
	if (!xferConnectionSetup(u.setup, aud, varData))
	    return NULL;

/*
 * Now start talking to the server to setup all other information...
 */

	Aufree (setup);	/* all finished with setup information */

/*
 * and done mucking with the server
 */
	_AuUnlockMutex(_init_mutex);

/*
 * and return successfully
 */
 	return(aud);
}


/* _AuOCOutOfMemory is called if malloc fails.  AuOpenServer returns NULL
   after this returns. */

static void
_AuOCOutOfMemory (
                  AuServer *aud,
                  char *setup
                  )
{
    _AuDisconnectServer (aud->fd);
    _AuFreeServerStructure (aud);
    if (setup) Aufree (setup);
}


/*
 * AuFreeServerStructure frees all the storage associated with a AuServer.
 * It is used by AuOpenServer if it runs out of memory, and also by
 * AuCloseServer.   It needs to check whether all pointers are non-NULL
 * before dereferencing them, since it may be called by AuOpenServer before
 * the AuServer structure is fully formed. AuOpenServer must be sure to
 * initialize all the pointers to NULL before the first possible call on
 * this.
 */

#define AufreeIf(x)							       \
{									       \
    if (x)								       \
	Aufree(x);							       \
}

void
_AuFreeServerStructure(AuServer *aud)
{
    int                 i;

    while (aud->ext_procs)
    {
	_AuExtension       *ext = aud->ext_procs;
	aud->ext_procs = ext->next;
	AufreeIf(ext->name);
	Aufree((char *) ext);
    }

    AufreeIf(aud->server_name);
    AufreeIf(aud->vendor);

    AufreeIf(aud->connsetup.formats);
    AufreeIf(aud->connsetup.element_types);
    AufreeIf(aud->connsetup.wave_forms);
    AufreeIf(aud->connsetup.actions);

    for (i = 0; i < aud->connsetup.num_devices; i++)
    {
	AufreeIf(aud->connsetup.devices[i].common.description.data);
	AufreeIf(aud->connsetup.devices[i].device.children);
    }
    AufreeIf(aud->connsetup.devices);

    for (i = 0; i < aud->connsetup.num_buckets; i++)
	AufreeIf(aud->connsetup.buckets[i].common.description.data);
    AufreeIf(aud->connsetup.buckets);

    AufreeIf(aud->buffer);
    AufreeIf((char *) aud->error_vec);

    _AuFreeExtData(aud->ext_data);
    AufreeIf(aud->scratch_buffer);

    _AuFreeQ(aud);

    Aufree((char *) aud);
}

#define dst     aud->connsetup

static int xferFail(AuServer *aud, auConnSetup *src) 
{
  _AuOCOutOfMemory(aud, (char *) src);
  _AuUnlockMutex(_init_mutex);
  return(0);
}

#define xferAlloc(_dst, _type, _size)					      \
{									      \
    if (_size)								      \
	if (!((_dst) = (_type *) Aumalloc((_size) * sizeof(_type))))	      \
	    return(0);;							      \
}

static int
xferConnectionSetup(
                    auConnSetup        *src,
                    AuServer           *aud,
                    unsigned char *varData
                    )
{
    int i;

    dst.min_sample_rate = src->minSampleRate;
    dst.max_sample_rate = src->maxSampleRate;
    dst.max_tracks = src->maxTracks;
    dst.num_formats = src->numFormats;
    dst.num_element_types = src->numElementTypes;
    dst.num_wave_forms = src->numWaveForms;
    dst.num_actions = src->numActions;
    dst.num_devices = src->numDevices;
    dst.num_buckets = src->numBuckets;
#ifdef NOTYET
    dst.num_radios = src->numRadios;
#endif				/* NOTYET */

    /* transfer formats */
    xferAlloc(dst.formats, int, dst.num_formats)
    for (i = 0; i < dst.num_formats; i++)
	dst.formats[i] = varData[i];
    varData += PAD4(dst.num_formats);

    /* transfer element types */
    xferAlloc(dst.element_types, int, dst.num_element_types)
    for (i = 0; i < dst.num_element_types; i++)
	dst.element_types[i] = varData[i];
    varData += PAD4(dst.num_element_types);

    /* transfer wave forms */
    xferAlloc(dst.wave_forms, int, dst.num_wave_forms)
    for (i = 0; i < dst.num_wave_forms; i++)
	dst.wave_forms[i] = varData[i];
    varData += PAD4(dst.num_wave_forms);

    /* transfer actions */
    xferAlloc(dst.actions, int, dst.num_actions)
    for (i = 0; i < dst.num_actions; i++)
	dst.actions[i] = varData[i];
    varData += PAD4(dst.num_actions);

    /* transfer devices */
    if (!(dst.devices = (AuDeviceAttributes *)
	  Aucalloc(1, sizeof(AuDeviceAttributes) * dst.num_devices)))
	xferFail(aud, src);

    for (i = 0; i < dst.num_devices; i++)
    {
	_xferDeviceAttributes((auDeviceAttributes *) varData, dst.devices[i]);
	varData += sz_auDeviceAttributes;

	if (dst.devices[i].common.description.len)
	{
	    int len = dst.devices[i].common.description.len;
	    char *s;

	    xferAlloc(s, char, len + 1);
	    bcopy(varData, s, len);
	    s[len] = 0;
	    dst.devices[i].common.description.data = s;
	    varData += PAD4(len);
	}

	if (dst.devices[i].device.num_children)
	{
	    int len = dst.devices[i].device.num_children * sizeof(AuDeviceID);

	    xferAlloc(dst.devices[i].device.children, AuDeviceID, len);
	    bcopy(varData, dst.devices[i].device.children, len);
	    varData += len;
	}
    }

    /* transfer buckets */
    if (dst.num_buckets)
	if (!(dst.buckets = (AuBucketAttributes *)
	      Aucalloc(1, sizeof(AuBucketAttributes) * dst.num_buckets)))
	    xferFail(aud, src);

    for (i = 0; i < dst.num_buckets; i++)
    {
	_xferBucketAttributes((auBucketAttributes *) varData, dst.buckets[i]);
	varData += sz_auBucketAttributes;

	if (dst.buckets[i].common.description.len)
	{
	    int len = dst.buckets[i].common.description.len;
	    char *s;

	    xferAlloc(s, char, len + 1);
	    bcopy(varData, s, len);
	    s[len] = 0;
	    dst.buckets[i].common.description.data = s;
	    varData += PAD4(len);
	}
    }

    return 1;
}