summaryrefslogtreecommitdiff
path: root/src/inspircd_io.cpp
blob: 885954881292ca34332a9c10fe3a255768ea2561 (plain)
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
/*       +------------------------------------+
 *       | Inspire Internet Relay Chat Daemon |
 *       +------------------------------------+
 *
 *  Inspire is copyright (C) 2002-2003 ChatSpike-Dev.
 *                       E-mail:
 *                <brain@chatspike.net>
 *           	  <Craig@chatspike.net>
 *     
 * Written by Craig Edwards, Craig McLure, and others.
 * This program is free but copyrighted software; see
 *            the file COPYING for details.
 *
 * ---------------------------------------------------
 */

#ifdef __linux__ 
#include <sys/resource.h>
#endif

#include <sys/types.h>
#include <unistd.h>
#include "inspircd.h"
#include "inspircd_io.h"
#include "inspircd_util.h"

void WriteOpers(char* text, ...);

void Exit (int status)
{
  send_error("Server shutdown.");
  exit (status);
}

void Killed(int status)
{
  send_error("Server terminated.");
  exit(status);
}

void Rehash(int status)
{
  ReadConfig();
  WriteOpers("Rehashing config file %s due to SIGHUP",CONFIG_FILE);
}



void Start (void)
{
  printf("\033[1;37mInspire Internet Relay Chat Server, compiled " __DATE__ " at " __TIME__ "\n");
  printf("(C) ChatSpike Development team.\033[0;37m\n\n");
  printf("\033[1;37mDevelopers:\033[0;37m     Brain, FrostyCoolSlug, Raider, RD\n");
  printf("\033[1;37mDocumentation:\033[0;37m  FrostyCoolSlug\n");
  printf("\033[1;37mTesters:\033[0;37m        MrBOFH, piggles, Lord_Zathras, typobox43, CC\n");
  printf("\033[1;37mName concept:\033[0;37m   Lord_Zathras\n\n");
}


void DeadPipe(int status)
{
  signal (SIGPIPE, DeadPipe);
}

int DaemonSeed (void)
{
  int childpid;
  signal (SIGALRM, SIG_IGN);
  signal (SIGHUP, Rehash);
  signal (SIGPIPE, DeadPipe);
  signal (SIGTERM, Exit);
  signal (SIGABRT, Exit);
  signal (SIGSEGV, Error);
  signal (SIGURG, Exit);
  signal (SIGKILL, Exit);
  if ((childpid = fork ()) < 0)
    return (ERROR);
  else if (childpid > 0)
    exit (0);
  setsid ();
  umask (077);
  /* close stdout, stdin, stderr */
  close(0);
  close(1);
  close(2);

  #ifdef __linux__ 
  setpriority(PRIO_PROCESS,(int)getpid(),15); /* ircd sets to low process priority so it doesnt hog the box */
  #endif
  
  return (TRUE);
}


/* Make Sure Modules Are Avaliable!
 * (BugFix By Craig.. See? I do work! :p) */
int FileExists (char* file)
{
  FILE *input;
  
  if ((input = fopen (file, "r")) == NULL) { return(false); }
  else { fclose (input); return(true); }
}


/* Counts the number of tags of a certain type within the config file, e.g. to enumerate opers */

int EnumConf(const char* filename, const char* tag)
{
	FILE *config;
	int ptr = 0;
	char buffer[MAXBUF], c_tag[MAXBUF], c, lastc;
	int in_token, in_quotes, tptr, j, idx = 0;
	char* key;

	if ((config = fopen (filename, "r")) == NULL)
	{
		return 0;
	}
	else
	{
		ptr = 0;
		in_token = 0;
		in_quotes = 0;
		lastc = '\0';
		while (!feof(config))
		{
			lastc = c;
			c = fgetc(config);
			if ((c == '#') && (lastc == '\n'))
			{
				while ((c != '\n') && (!feof(config)))
				{
					lastc = c;
					c = fgetc(config);
				}
			}
			if ((c == '<') && (!in_quotes))
			{
				tptr = 0;
				in_token = 1;
				do {
					c = fgetc(config);
					if (c != ' ')
					{
						c_tag[tptr++] = c;
						c_tag[tptr] = '\0';
					}
				} while (c != ' ');
			}
			if (c == '"')
			{
				in_quotes = (!in_quotes);
			}
			if ((c == '>') && (!in_quotes))
			{
				in_token = 0;
				if (!strcmp(c_tag,tag))
				{
					/* correct tag, but wrong index */
					idx++;
				}
				c_tag[0] = '\0';
				buffer[0] = '\0';
				ptr = 0;
				tptr = 0;
			}
			if (c != '>')
			{
				if ((in_token) && (c != '\n') && (c != '\r'))
				{
					buffer[ptr++] = c;
					buffer[ptr] = '\0';
				}
			}
		}
	}
	fclose(config);
	return idx;
}



int ConfValueEnum(char* tag)
{
	EnumConf(CONFIG_FILE,tag);
}



/* Retrieves a value from the config file. If there is more than one value of the specified
 * key and section (e.g. for opers etc) then the index value specifies which to retreive, e.g.
 *
 * ConfValue("oper","name",2,result);
 */

int ReadConf(const char* filename, const char* tag, const char* var, int index, char *result)
{
	FILE *config;
	int ptr = 0;
	char buffer[MAXBUF], c_tag[MAXBUF], c, lastc;
	int in_token, in_quotes, tptr, j, idx = 0;
	char* key;

	if ((config = fopen (filename, "r")) == NULL)
	{
		return 0;
	}
	else
	{
		ptr = 0;
		in_token = 0;
		in_quotes = 0;
		lastc = '\0';
		while (!feof(config))
		{
			lastc = c;
			c = fgetc(config);
			if ((c == '#') && (lastc == '\n'))
			{
				while ((c != '\n') && (!feof(config)))
				{
					lastc = c;
					c = fgetc(config);
				}
			}
			if ((c == '<') && (!in_quotes))
			{
				tptr = 0;
				in_token = 1;
				do {
					c = fgetc(config);
					if (c != ' ')
					{
						c_tag[tptr++] = c;
						c_tag[tptr] = '\0';
					}
				} while (c != ' ');
			}
			if (c == '"')
			{
				in_quotes = (!in_quotes);
			}
			if ((c == '>') && (!in_quotes))
			{
				in_token = 0;
				if (idx == index)
				{
					if (!strcmp(c_tag,tag))
					{
						if ((buffer) && (c_tag) && (var))
						{
							key = strstr(buffer,var);
							if (!key)
							{
								/* value not found in tag */
								fclose(config);
								return 0;
							}
							else
							{
								key+=strlen(var);
								while (key[0] !='"')
								{
									if (!strlen(key))
									{
										/* missing quote */
										return 0;
									}
									key++;
								}
								key++;
								for (j = 0; j < strlen(key); j++)
								{
									if (key[j] == '"')
									{
										key[j] = '\0';
									}
								}
								fclose(config);
								strcpy(result,key);
								return 1;
							}
						}
					}
				}
				if (!strcmp(c_tag,tag))
				{
					/* correct tag, but wrong index */
					idx++;
				}
				c_tag[0] = '\0';
				buffer[0] = '\0';
				ptr = 0;
				tptr = 0;
			}
			if (c != '>')
			{
				if ((in_token) && (c != '\n') && (c != '\r'))
				{
					buffer[ptr++] = c;
					buffer[ptr] = '\0';
				}
			}
		}
	}
	fclose(config);
	return 0;
}



int ConfValue(char* tag, char* var, int index, char *result)
{
	ReadConf(CONFIG_FILE, tag, var, index, result);
}



/* This will bind a socket to a port. It works for UDP/TCP */
int BindSocket (int sockfd, struct sockaddr_in client, struct sockaddr_in server, int port, char* addr)
{
  bzero((char *)&server,sizeof(server));
  struct in_addr addy;
  inet_aton(addr,&addy);

  server.sin_family = AF_INET;
  if (!strcmp(addr,""))
  {
	  server.sin_addr.s_addr = htonl(INADDR_ANY);
  }
  else
  {
	  server.sin_addr = addy;
  }

  server.sin_port = htons(port);

  if (bind(sockfd,(struct sockaddr*)&server,sizeof(server))<0)
  {
    return(ERROR);
  }
  else
  {
    listen(sockfd,5);
    return(TRUE);
  }
}


/* Open a TCP Socket */
int OpenTCPSocket (void)
{
  int sockfd;
  int on = 0;
  struct linger linger = { 0 };
  
  if ((sockfd = socket (AF_INET, SOCK_STREAM, 0)) < 0)
    return (ERROR);
  else
  {
    setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (const char*)&on, sizeof(on));
    /* This is BSD compatible, setting l_onoff to 0 is *NOT* http://web.irc.org/mla/ircd-dev/msg02259.html */
    linger.l_onoff = 1;
    linger.l_linger = 0;
    setsockopt(sockfd, SOL_SOCKET, SO_LINGER, (const char*)&linger,sizeof(linger));
    return (sockfd);
  }
}