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
|
/*
* 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: @(#)main.c,v 1.5 1995/11/29 18:15:38 greg Exp $
*/
/***********************************************************
Some portions derived from:
Copyright 1987 by Digital Equipment Corporation, Maynard, Massachusetts,
and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
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 names of Digital or MIT not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************/
/*
* $Id: main.c 227 2006-09-01 05:57:17Z jon $
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <audio/audio.h>
#include <audio/Aproto.h>
#include "NasConfig.h"
#include "misc.h"
#include "os.h"
#include "resource.h"
#include "dixstruct.h"
#include "opaque.h"
#include "globals.h"
#include "nasconf.h"
#include "release.h"
#include "gram.h"
#include "aulog.h"
extern void OsInit(void), InitClient(), ResetWellKnownSockets(),
Dispatch(), FreeAllResources();
extern int AuInitSetupReply();
extern void AuInitProcVectors(void);
extern Bool InitClientResources();
static char *AuServerName(void);
extern char *display;
static int restart = 0;
FILE *yyin; /* for the config parser */
void
NotImplemented()
{
FatalError("Not implemented");
}
/*
* Find the config file
*/
static FILE *
openConfigFile(const char *path)
{
FILE *config;
if ((config = fopen(path, "r")) != NULL)
return config;
else
return NULL;
}
int
main(int argc, char *argv[])
{
int i;
const char *config_file;
/* Notice if we're restart. Probably this is because we jumped through
* uninitialized pointer */
if (restart)
FatalError
("server restarted. Jumped through uninitialized pointer?\n");
else
restart = 1;
/* Init the globals... */
diaInitGlobals();
if ((config_file = FindConfigFile(argc, argv)) == NULL)
config_file = NASCONFSEARCHPATH "/nasd.conf";
/* Now parse the config file */
if ((yyin = openConfigFile(config_file)) != NULL)
yyparse();
/* These are needed by some routines which are called from interrupt
* handlers, thus have no direct calling path back to main and thus
* can't be passed argc, argv as parameters */
argcGlobal = argc;
argvGlobal = argv;
display = NULL;
ProcessCommandLine(argc, argv);
/* if display wasn't spec'd on the command
line, find a suitable default */
if (display == NULL)
display = AuServerName();
if (NasConfig.DoVerbose) {
printf("%s\n", release);
osLogMsg("%s\n", release);
}
if (NasConfig.DoDaemon) {
osBecomeOrphan();
osBecomeDaemon();
/* we could store pid info here... */
/* osStorePid() */
}
/* And cd to / so we don't hold anything up; core files will also
go there. */
chdir("/");
while (1) {
serverGeneration++;
/* Perform any operating system dependent initializations you'd like */
OsInit();
if (serverGeneration == 1) {
CreateWellKnownSockets();
AuInitProcVectors();
clients = (ClientPtr *) xalloc(MAXCLIENTS * sizeof(ClientPtr));
if (!clients)
FatalError("couldn't create client array");
for (i = 1; i < MAXCLIENTS; i++)
clients[i] = NullClient;
serverClient = (ClientPtr) xalloc(sizeof(ClientRec));
if (!serverClient)
FatalError("couldn't create server client");
InitClient(serverClient, 0, (pointer) NULL);
} else
ResetWellKnownSockets();
clients[0] = serverClient;
currentMaxClients = 1;
if (!InitClientResources(serverClient)) /* for root resources */
FatalError("couldn't init server resources");
if (!AuInitSetupReply())
FatalError("could not create audio connection block info");
Dispatch();
FreeAllResources();
if (dispatchException & DE_TERMINATE) {
break;
}
}
exit(0);
}
/* JET - get the server port to listen on here... uses AUDIOSERVER, then
* DISPLAY if set.
*/
static char *
AuServerName(void)
{
char *name = NULL;
char *ch, *ch1;
name = (char *) getenv("AUDIOSERVER");
if (name) {
if ((ch = strchr(name, ':')) != NULL) {
ch++;
if ((ch1 = strchr(ch, '.')) != NULL)
*ch1 = '\0';
return (ch);
} else
return name;
}
name = (char *) getenv("DISPLAY");
if (name) {
if ((ch = strchr(name, ':')) != NULL) {
ch++;
if ((ch1 = strchr(ch, '.')) != NULL)
*ch1 = '\0';
return (ch);
} else
return name;
}
return "0";
}
|