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
|
/*
* mhelperlib.c
* MySQLStartup
*
* Created by Alfredo Kojima on 1/4/05.
* Copyright 2005 MySQL AB. All rights reserved.
*
*/
#include "mahelper.h"
#include <Security/Authorization.h>
#include <sys/wait.h>
#include <unistd.h>
#include <string.h>
int
mhelperPerformCommand(AuthorizationRef authorizationRef,
const char *helperPath, MAHelperCommand command)
{
int tohelper[2], fromhelper[2];
int childStatus = 0;
int written;
pid_t pid;
// char buffer[1024];
AuthorizationExternalForm extAuth;
// authref --> bytestream
if (AuthorizationMakeExternalForm(authorizationRef, &extAuth))
return MAHelperCommandInternalError;
if (pipe(tohelper) < 0)
return MAHelperCommandInternalError;
if (pipe(fromhelper) < 0)
{
close(tohelper[0]);
close(tohelper[1]);
return MAHelperCommandInternalError;
}
if ((pid = fork()) < 0)
{
close(tohelper[0]);
close(tohelper[1]);
close(fromhelper[0]);
close(fromhelper[1]);
return MAHelperCommandInternalError;
}
else if (pid == 0)
{
char *const envp[] = { NULL };
close(0);
dup2(tohelper[0], 0);
close(tohelper[0]);
close(tohelper[1]);
close(1);
close(2);
dup2(fromhelper[1], 1);
dup2(fromhelper[1], 2);
close(fromhelper[0]);
close(fromhelper[1]);
execle(helperPath, helperPath, NULL, envp);
_exit(MAHelperCommandHelperNotFound);
}
signal(SIGPIPE, SIG_IGN);
close(tohelper[0]);
close(fromhelper[1]);
if (write(tohelper[1], &extAuth, sizeof(extAuth)) != sizeof(extAuth))
{
close(tohelper[1]);
close(fromhelper[0]);
return MAHelperCommandInternalError;
}
written= write(tohelper[1], &command, sizeof(MAHelperCommand));
close(tohelper[1]);
if (written != sizeof(MAHelperCommand))
{
close(fromhelper[0]);
return MAHelperCommandInternalError;
}
// read(fromhelper[0], buffer, 1);
close(fromhelper[0]);
if (waitpid(pid, &childStatus, 0) != pid)
return MAHelperCommandInternalError;
if (!WIFEXITED(childStatus))
return MAHelperCommandInternalError;
return WEXITSTATUS(childStatus);
}
int
mautoStartState()
{
int autoStart= 0;
// check if autostart is enabled
{
char buffer[1024];
FILE *f;
f= fopen("/etc/hostconfig","r");
if (f)
{
while (fgets(buffer, sizeof(buffer), f))
{
if (strncmp(buffer,"MYSQLCOM=", sizeof("MYSQLCOM=")-1)==0)
{
if (strstr(buffer, "-YES-"))
{
autoStart= 1;
break;
}
}
}
fclose(f);
}
}
return autoStart;
}
|