|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 24.19 GB of 70.42 GB (34.36%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
courier-0.66.1/
gpglib/
- drwxrwxrwx
|
Viewing file: libgpg.c (1.75 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* ** Copyright 2001-2003 Double Precision, Inc. See COPYING for ** distribution information. */
#include "config.h" #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <signal.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #if HAVE_SYS_TIME_H #include <sys/time.h> #endif #if HAVE_SYS_WAIT_H #include <sys/wait.h> #endif #ifndef WEXITSTATUS #define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8) #endif #ifndef WIFEXITED #define WIFEXITED(stat_val) (((stat_val) & 255) == 0) #endif
#include "gpg.h" #include "gpglib.h"
int libmail_gpg_stdin= -1, libmail_gpg_stdout= -1, libmail_gpg_stderr= -1; pid_t libmail_gpg_pid= -1;
int libmail_gpg_cleanup() { int rc=0;
if (libmail_gpg_stdin >= 0) { close(libmail_gpg_stdin); libmail_gpg_stdin= -1; }
if (libmail_gpg_stdout >= 0) { close(libmail_gpg_stdout); libmail_gpg_stdout= -1; }
if (libmail_gpg_stderr >= 0) { close(libmail_gpg_stderr); libmail_gpg_stderr= -1; }
if (libmail_gpg_pid >= 0 && kill(libmail_gpg_pid, 0) >= 0) { int waitstat; pid_t p;
while ((p=wait(&waitstat)) != libmail_gpg_pid) { if (p < 0 && errno == ECHILD) return (-1); }
rc= WIFEXITED(waitstat) ? WEXITSTATUS(waitstat): -1; libmail_gpg_pid= -1; } return (rc); }
static char *optionfile(const char *gpgdir) { char *p=malloc(strlen(gpgdir)+sizeof("/options"));
if (p) strcat(strcpy(p, gpgdir), "/options"); return (p); }
/* ** Determine of GPG is available by checking for the options file, and the ** gpg binary itself. */
int libmail_gpg_has_gpg(const char *gpgdir) { char *p=optionfile(gpgdir); struct stat stat_buf; int rc;
if (!p) return (-1);
rc=stat(p, &stat_buf); free(p); if (rc == 0) rc=stat(GPG, &stat_buf);
return (rc); }
|