exec.c 13.7 KB
Newer Older
1 2
/*-------------------------------------------------------------------------
 *
3
 * exec.c
4 5
 *		Functions for finding and validating executable files
 *
6
 *
P
 
PostgreSQL Daemon 已提交
7
 * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
B
Add:  
Bruce Momjian 已提交
8
 * Portions Copyright (c) 1994, Regents of the University of California
9 10 11
 *
 *
 * IDENTIFICATION
12
 *	  $PostgreSQL: pgsql/src/port/exec.c,v 1.38 2005/02/22 04:43:16 momjian Exp $
13 14 15
 *
 *-------------------------------------------------------------------------
 */
16 17

#ifndef FRONTEND
18
#include "postgres.h"
19 20 21
#else
#include "postgres_fe.h"
#endif
22

23 24
#include <grp.h>
#include <pwd.h>
B
Bruce Momjian 已提交
25
#include <sys/stat.h>
26
#include <sys/wait.h>
27
#ifndef WIN32_CLIENT_ONLY
28
#include <unistd.h>
29
#endif
30

31 32 33 34 35 36 37 38 39 40
#ifndef S_IRUSR					/* XXX [TRH] should be in a header */
#define S_IRUSR		 S_IREAD
#define S_IWUSR		 S_IWRITE
#define S_IXUSR		 S_IEXEC
#define S_IRGRP		 ((S_IRUSR)>>3)
#define S_IWGRP		 ((S_IWUSR)>>3)
#define S_IXGRP		 ((S_IXUSR)>>3)
#define S_IROTH		 ((S_IRUSR)>>6)
#define S_IWOTH		 ((S_IWUSR)>>6)
#define S_IXOTH		 ((S_IXUSR)>>6)
41 42
#endif

43 44
#ifndef FRONTEND
/* We use only 3-parameter elog calls in this file, for simplicity */
45
/* NOTE: caller must provide gettext call around str! */
46
#define log_error(str, param)	elog(LOG, str, param)
47
#else
48
#define log_error(str, param)	(fprintf(stderr, str, param), fputc('\n', stderr))
49 50
#endif

51 52 53 54 55 56 57 58
#ifdef WIN32_CLIENT_ONLY
#define getcwd(cwd,len)  GetCurrentDirectory(len, cwd)
#endif

static int	validate_exec(const char *path);
static int	resolve_symlinks(char *path);
static char *pipe_read_line(char *cmd, char *line, int maxsize);

59

60
/*
61
 * validate_exec -- validate "path" as an executable file
62 63
 *
 * returns 0 if the file is found and no error is encountered.
64 65
 *		  -1 if the regular file "path" does not exist or cannot be executed.
 *		  -2 if the file is otherwise valid but cannot be read.
66
 */
67
static int
68
validate_exec(const char *path)
69
{
70
	struct stat buf;
B
Bruce Momjian 已提交
71

72
#ifndef WIN32
73 74 75
	uid_t		euid;
	struct group *gp;
	struct passwd *pwp;
76 77
	int			i;
	int			in_grp = 0;
B
Bruce Momjian 已提交
78

B
Bruce Momjian 已提交
79
#else
80
	char		path_exe[MAXPGPATH + sizeof(".exe") - 1];
81
#endif
82 83
	int			is_r = 0;
	int			is_x = 0;
84

85 86
#ifdef WIN32
	/* Win32 requires a .exe suffix for stat() */
87 88
	if (strlen(path) >= strlen(".exe") &&
		pg_strcasecmp(path + strlen(path) - strlen(".exe"), ".exe") != 0)
89 90 91 92 93 94 95
	{
		strcpy(path_exe, path);
		strcat(path_exe, ".exe");
		path = path_exe;
	}
#endif

96 97 98 99 100 101 102
	/*
	 * Ensure that the file exists and is a regular file.
	 *
	 * XXX if you have a broken system where stat() looks at the symlink
	 * instead of the underlying file, you lose.
	 */
	if (stat(path, &buf) < 0)
103
		return -1;
104 105

	if ((buf.st_mode & S_IFMT) != S_IFREG)
106
		return -1;
107 108

	/*
109
	 * Ensure that we are using an authorized executable.
110 111 112 113 114 115
	 */

	/*
	 * Ensure that the file is both executable and readable (required for
	 * dynamic loading).
	 */
116
#ifdef WIN32
B
Bruce Momjian 已提交
117 118 119
	is_r = buf.st_mode & S_IRUSR;
	is_x = buf.st_mode & S_IXUSR;
	return is_x ? (is_r ? 0 : -2) : -1;
120
#else
121
	euid = geteuid();
122 123

	/* If owned by us, just check owner bits */
124 125 126 127
	if (euid == buf.st_uid)
	{
		is_r = buf.st_mode & S_IRUSR;
		is_x = buf.st_mode & S_IXUSR;
128
		return is_x ? (is_r ? 0 : -2) : -1;
129
	}
130 131

	/* OK, check group bits */
B
Bruce Momjian 已提交
132 133

	pwp = getpwuid(euid);		/* not thread-safe */
134 135
	if (pwp)
	{
136
		if (pwp->pw_gid == buf.st_gid)	/* my primary group? */
137 138
			++in_grp;
		else if (pwp->pw_name &&
139
				 (gp = getgrgid(buf.st_gid)) != NULL && /* not thread-safe */
140
				 gp->gr_mem != NULL)
B
Bruce Momjian 已提交
141
		{						/* try list of member groups */
142 143 144 145 146 147 148 149 150 151 152 153 154
			for (i = 0; gp->gr_mem[i]; ++i)
			{
				if (!strcmp(gp->gr_mem[i], pwp->pw_name))
				{
					++in_grp;
					break;
				}
			}
		}
		if (in_grp)
		{
			is_r = buf.st_mode & S_IRGRP;
			is_x = buf.st_mode & S_IXGRP;
155
			return is_x ? (is_r ? 0 : -2) : -1;
156 157
		}
	}
158 159

	/* Check "other" bits */
160 161
	is_r = buf.st_mode & S_IROTH;
	is_x = buf.st_mode & S_IXOTH;
162
	return is_x ? (is_r ? 0 : -2) : -1;
163
#endif
164 165
}

166

167
/*
168
 * find_my_exec -- find an absolute path to a valid executable
169
 *
170 171 172 173
 *	argv0 is the name passed on the command line
 *	retpath is the output area (must be of size MAXPGPATH)
 *	Returns 0 if OK, -1 if error.
 *
174
 * The reason we have to work so hard to find an absolute path is that
175 176
 * on some platforms we can't do dynamic loading unless we know the
 * executable's location.  Also, we need a full path not a relative
177 178 179
 * path because we will later change working directory.  Finally, we want
 * a true path not a symlink location, so that we can locate other files
 * that are part of our installation relative to the executable.
180
 *
181
 * This function is not thread-safe because it calls validate_exec(),
B
Bruce Momjian 已提交
182
 * which calls getgrgid().	This function should be used only in
183
 * non-threaded binaries, not in library routines.
184 185
 */
int
B
Bruce Momjian 已提交
186
find_my_exec(const char *argv0, char *retpath)
187
{
B
Bruce Momjian 已提交
188 189 190
	char		cwd[MAXPGPATH],
				test_path[MAXPGPATH];
	char	   *path;
191

192
	if (!getcwd(cwd, MAXPGPATH))
193
	{
194
		log_error(_("could not identify current directory: %s"),
195 196 197
				  strerror(errno));
		return -1;
	}
198

199
	/*
200
	 * If argv0 contains a separator, then PATH wasn't used.
201
	 */
202
	if (first_dir_separator(argv0) != NULL)
203
	{
204
		if (is_absolute_path(argv0))
B
Bruce Momjian 已提交
205
			StrNCpy(retpath, argv0, MAXPGPATH);
206
		else
207
			join_path_components(retpath, cwd, argv0);
B
Bruce Momjian 已提交
208
		canonicalize_path(retpath);
209

B
Bruce Momjian 已提交
210
		if (validate_exec(retpath) == 0)
211
			return resolve_symlinks(retpath);
212

213
		log_error(_("invalid binary \"%s\""), retpath);
214
		return -1;
215
	}
216

217 218
#ifdef WIN32
	/* Win32 checks the current directory first for names without slashes */
219 220
	join_path_components(retpath, cwd, argv0);
	if (validate_exec(retpath) == 0)
221
		return resolve_symlinks(retpath);
222 223
#endif

224
	/*
225 226
	 * Since no explicit path was supplied, the user must have
	 * been relying on PATH.  We'll search the same PATH.
227
	 */
228
	if ((path = getenv("PATH")) && *path)
229
	{
B
Bruce Momjian 已提交
230 231
		char	   *startp = NULL,
				   *endp = NULL;
232 233

		do
234
		{
235 236 237 238
			if (!startp)
				startp = path;
			else
				startp = endp + 1;
239

240
			endp = first_path_separator(startp);
241
			if (!endp)
B
Bruce Momjian 已提交
242
				endp = startp + strlen(startp); /* point to end */
243 244 245 246

			StrNCpy(test_path, startp, Min(endp - startp + 1, MAXPGPATH));

			if (is_absolute_path(test_path))
247
				join_path_components(retpath, test_path, argv0);
248
			else
249 250 251 252
			{
				join_path_components(retpath, cwd, test_path);
				join_path_components(retpath, retpath, argv0);
			}
B
Bruce Momjian 已提交
253
			canonicalize_path(retpath);
254

B
Bruce Momjian 已提交
255
			switch (validate_exec(retpath))
256
			{
257
				case 0:			/* found ok */
258
					return resolve_symlinks(retpath);
259
				case -1:		/* wasn't even a candidate, keep looking */
260
					break;
261
				case -2:		/* found but disqualified */
262
					log_error(_("could not read binary \"%s\""),
263
							  retpath);
264
					break;
265
			}
266
		} while (*endp);
267 268
	}

269
	log_error(_("could not find a \"%s\" to execute"), argv0);
270
	return -1;
271
}
272

273 274 275 276

/*
 * resolve_symlinks - resolve symlinks to the underlying file
 *
277
 * Replace "path" by the absolute path to the referenced file.
278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
 *
 * Returns 0 if OK, -1 if error.
 *
 * Note: we are not particularly tense about producing nice error messages
 * because we are not really expecting error here; we just determined that
 * the symlink does point to a valid executable.
 */
static int
resolve_symlinks(char *path)
{
#ifdef HAVE_READLINK
	struct stat buf;
	char		orig_wd[MAXPGPATH],
				link_buf[MAXPGPATH];
	char	   *fname;

	/*
	 * To resolve a symlink properly, we have to chdir into its directory
	 * and then chdir to where the symlink points; otherwise we may fail to
	 * resolve relative links correctly (consider cases involving mount
	 * points, for example).  After following the final symlink, we use
	 * getcwd() to figure out where the heck we're at.
300 301 302 303 304
	 *
	 * One might think we could skip all this if path doesn't point to a
	 * symlink to start with, but that's wrong.  We also want to get rid
	 * of any directory symlinks that are present in the given path.
	 * We expect getcwd() to give us an accurate, symlink-free path.
305 306 307
	 */
	if (!getcwd(orig_wd, MAXPGPATH))
	{
308
		log_error(_("could not identify current directory: %s"),
309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
				  strerror(errno));
		return -1;
	}

	for (;;)
	{
		char   *lsep;
		int		rllen;

		lsep = last_dir_separator(path);
		if (lsep)
		{
			*lsep = '\0';
			if (chdir(path) == -1)
			{
324
				log_error(_("could not change directory to \"%s\""), path);
325 326 327 328 329 330 331 332 333 334 335 336 337 338
				return -1;
			}
			fname = lsep + 1;
		}
		else
			fname = path;

		if (lstat(fname, &buf) < 0 ||
			(buf.st_mode & S_IFMT) != S_IFLNK)
			break;

		rllen = readlink(fname, link_buf, sizeof(link_buf));
		if (rllen < 0 || rllen >= sizeof(link_buf))
		{
339
			log_error(_("could not read symbolic link \"%s\""), fname);
340 341 342 343 344 345 346 347 348 349 350
			return -1;
		}
		link_buf[rllen] = '\0';
		strcpy(path, link_buf);
	}

	/* must copy final component out of 'path' temporarily */
	strcpy(link_buf, fname);

	if (!getcwd(path, MAXPGPATH))
	{
351
		log_error(_("could not identify current directory: %s"),
352 353 354 355 356 357 358 359
				  strerror(errno));
		return -1;
	}
	join_path_components(path, path, link_buf);
	canonicalize_path(path);

	if (chdir(orig_wd) == -1)
	{
360
		log_error(_("could not change directory to \"%s\""), orig_wd);
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
		return -1;
	}

#endif /* HAVE_READLINK */

	return 0;
}


/*
 * Find another program in our binary's directory,
 * then make sure it is the proper version.
 */
int
find_other_exec(const char *argv0, const char *target,
				const char *versionstr, char *retpath)
{
	char		cmd[MAXPGPATH];
	char		line[100];

	if (find_my_exec(argv0, retpath) < 0)
		return -1;

	/* Trim off program name and keep just directory */
	*last_dir_separator(retpath) = '\0';
	canonicalize_path(retpath);

	/* Now append the other program's name */
	snprintf(retpath + strlen(retpath), MAXPGPATH - strlen(retpath),
			 "/%s%s", target, EXE);

	if (validate_exec(retpath) != 0)
		return -1;

	snprintf(cmd, sizeof(cmd), "\"%s\" -V 2>%s", retpath, DEVNULL);

	if (!pipe_read_line(cmd, line, sizeof(line)))
		return -1;

	if (strcmp(line, versionstr) != 0)
		return -2;

	return 0;
}


407
/*
408
 * The runtime library's popen() on win32 does not work when being
409 410 411 412 413 414
 * called from a service when running on windows <= 2000, because
 * there is no stdin/stdout/stderr.
 *
 * Executing a command in a pipe and reading the first line from it
 * is all we need.
 */
B
Bruce Momjian 已提交
415 416
static char *
pipe_read_line(char *cmd, char *line, int maxsize)
417 418
{
#ifndef WIN32
B
Bruce Momjian 已提交
419
	FILE	   *pgver;
420 421 422 423 424 425 426

	/* flush output buffers in case popen does not... */
	fflush(stdout);
	fflush(stderr);

	if ((pgver = popen(cmd, "r")) == NULL)
		return NULL;
B
Bruce Momjian 已提交
427

428 429 430 431 432 433 434 435
	if (fgets(line, maxsize, pgver) == NULL)
	{
		perror("fgets failure");
		return NULL;
	}

	if (pclose_check(pgver))
		return NULL;
B
Bruce Momjian 已提交
436

437
	return line;
438 439 440

#else /* WIN32 */

441
	SECURITY_ATTRIBUTES sattr;
B
Bruce Momjian 已提交
442 443 444
	HANDLE		childstdoutrd,
				childstdoutwr,
				childstdoutrddup;
445 446
	PROCESS_INFORMATION pi;
	STARTUPINFO si;
B
Bruce Momjian 已提交
447
	char	   *retval = NULL;
448 449 450 451 452 453 454

	sattr.nLength = sizeof(SECURITY_ATTRIBUTES);
	sattr.bInheritHandle = TRUE;
	sattr.lpSecurityDescriptor = NULL;

	if (!CreatePipe(&childstdoutrd, &childstdoutwr, &sattr, 0))
		return NULL;
B
Bruce Momjian 已提交
455

456 457 458 459 460 461 462 463 464 465 466 467 468 469
	if (!DuplicateHandle(GetCurrentProcess(),
						 childstdoutrd,
						 GetCurrentProcess(),
						 &childstdoutrddup,
						 0,
						 FALSE,
						 DUPLICATE_SAME_ACCESS))
	{
		CloseHandle(childstdoutrd);
		CloseHandle(childstdoutwr);
		return NULL;
	}

	CloseHandle(childstdoutrd);
B
Bruce Momjian 已提交
470 471 472

	ZeroMemory(&pi, sizeof(pi));
	ZeroMemory(&si, sizeof(si));
473 474 475 476 477
	si.cb = sizeof(si);
	si.dwFlags = STARTF_USESTDHANDLES;
	si.hStdError = childstdoutwr;
	si.hStdOutput = childstdoutwr;
	si.hStdInput = INVALID_HANDLE_VALUE;
B
Bruce Momjian 已提交
478

479 480 481 482 483 484 485 486 487 488 489 490
	if (CreateProcess(NULL,
					  cmd,
					  NULL,
					  NULL,
					  TRUE,
					  0,
					  NULL,
					  NULL,
					  &si,
					  &pi))
	{
		/* Successfully started the process */
491
		char   *lineptr;
492

B
Bruce Momjian 已提交
493 494
		ZeroMemory(line, maxsize);

495 496 497
		/* Try to read at least one line from the pipe */
		/* This may require more than one wait/read attempt */
		for (lineptr = line; lineptr < line+maxsize-1; )
498
		{
499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
			DWORD		bytesread = 0;

			/* Let's see if we can read */
			if (WaitForSingleObject(childstdoutrddup, 10000) != WAIT_OBJECT_0)
				break;		/* Timeout, but perhaps we got a line already */

			if (!ReadFile(childstdoutrddup, lineptr, maxsize-(lineptr-line),
						  &bytesread, NULL))
				break;		/* Error, but perhaps we got a line already */

			lineptr += strlen(lineptr);

			if (!bytesread)
				break; /* EOF */

			if (strchr(line, '\n'))
				break; /* One or more lines read */
516
		}
517

518
		if (lineptr != line)
519
		{
520 521 522 523 524 525 526 527 528
			/* OK, we read some data */
			int			len;

			/* If we got more than one line, cut off after the first \n */
			lineptr = strchr(line,'\n');
			if (lineptr)
				*(lineptr+1) = '\0';

			len = strlen(line);
529

530
			/*
B
Bruce Momjian 已提交
531 532 533 534 535
			 * If EOL is \r\n, convert to just \n. Because stdout is a
			 * text-mode stream, the \n output by the child process is
			 * received as \r\n, so we convert it to \n.  The server
			 * main.c sets setvbuf(stdout, NULL, _IONBF, 0) which has the
			 * effect of disabling \n to \r\n expansion for stdout.
536
			 */
B
Bruce Momjian 已提交
537
			if (len >= 2 && line[len - 2] == '\r' && line[len - 1] == '\n')
538
			{
B
Bruce Momjian 已提交
539 540
				line[len - 2] = '\n';
				line[len - 1] = '\0';
541
				len--;
542 543
			}

B
Bruce Momjian 已提交
544
			/*
B
Bruce Momjian 已提交
545 546
			 * We emulate fgets() behaviour. So if there is no newline at
			 * the end, we add one...
B
Bruce Momjian 已提交
547
			 */
B
Bruce Momjian 已提交
548 549
			if (len == 0 || line[len - 1] != '\n')
				strcat(line, "\n");
550 551

			retval = line;
552 553 554 555 556
		}

		CloseHandle(pi.hProcess);
		CloseHandle(pi.hThread);
	}
B
Bruce Momjian 已提交
557

558 559 560 561
	CloseHandle(childstdoutwr);
	CloseHandle(childstdoutrddup);

	return retval;
562
#endif /* WIN32 */
563 564 565
}


566 567 568 569 570 571 572 573
/*
 * pclose() plus useful error reporting
 * Is this necessary?  bjm 2004-05-11
 * It is better here because pipe.c has win32 backend linkage.
 */
int
pclose_check(FILE *stream)
{
B
Bruce Momjian 已提交
574
	int			exitstatus;
575 576 577 578

	exitstatus = pclose(stream);

	if (exitstatus == 0)
B
Bruce Momjian 已提交
579
		return 0;				/* all is well */
580 581 582 583 584 585 586

	if (exitstatus == -1)
	{
		/* pclose() itself failed, and hopefully set errno */
		perror("pclose failed");
	}
	else if (WIFEXITED(exitstatus))
587
		log_error(_("child process exited with exit code %d"),
B
Bruce Momjian 已提交
588
				  WEXITSTATUS(exitstatus));
589
	else if (WIFSIGNALED(exitstatus))
590
		log_error(_("child process was terminated by signal %d"),
B
Bruce Momjian 已提交
591
				  WTERMSIG(exitstatus));
592
	else
593
		log_error(_("child process exited with unrecognized status %d"),
B
Bruce Momjian 已提交
594
				  exitstatus);
595 596 597

	return -1;
}