I was given a decrypt.jar
and encrypt.jar
file, which are used to prepare files before transmitting.
When I launch the terminal and type:
/usr/bin/java -jar /path/to/jar/decrypt.jar
I get the output:
No input file specified
Which is OK! The jar works. Now in my code, when I launch the jar with execl(), I get this as output:
Error: Could not find or load main class util.decrypt.jar
Decryptor exited with 0
Notice that the issue here is that java tried to launch the class which is actually the path to the jar (the path is util/decrypt.jar, and it executed it as a class util.decrypt.jar)
My code:
bool decrypt_file(const std::string& file) {
int result;
int pipefd[2];
FILE *cmd_output;
char buf[1024];
int status;
result = pipe(pipefd);
if (result < 0) {
throw "pipe error!";
}
pid_t pid = fork(); /* Create a child process */
const std::string decryptJar = "util/decrypt.jar";
int ex;
if ( !fileExists(decryptJar) ) throw "File decryptor does not exist!";
switch (pid) {
case -1: /* Error */
#ifdef _DEBUG
std::cout<<"fork() failed!\n";
#endif
return false;
case 0: /* Child process */
dup2(pipefd[1], STDOUT_FILENO); /* Duplicate writing end to stdout */
close(pipefd[0]);
close(pipefd[1]);
//getJava() returns "/usr/bin/java"
ex = execl(Config::getInstance().getJava().c_str(), "-jar", decryptJar.c_str(), file.c_str(), NULL); /* Execute the program */
#ifdef _DEBUG
std::cout << "execl() failed! returned "<<ex<<", errno = "<<errno<<"\n"; /* execl doesn't return unless there's an error */
//todo if errno is 2, java was not found on the system, let the user know!
#endif
return false;
default: /* Parent process */
int status;
close(pipefd[1]); /* Close writing end of pipe */
cmd_output = fdopen(pipefd[0], "r");
#ifdef _DEBUG
if (fgets(buf, sizeof buf, cmd_output)) {
std::string str(buf);
std::cout<<"OUTPUT: "<<str<<"\n";
}
#endif
while (!WIFEXITED(status)) {
waitpid(pid, &status, 0); /* Wait for the process to complete */
}
#ifdef _DEBUG
std::cout << "Decryptor exited with " << WEXITSTATUS(status) << "\n";
#endif
return true;
}
}
The manifest inside the jar is correct (it was generated by eclipse):
Manifest-Version: 1.0
Class-Path: .
Main-Class: com.{...}.Decryptor
Add:
Trying to change the path to the absolute path of the jar didn't fix the problem.
const std::string decryptJar = workingDir() + "/util/decrypt.jar";