os/security/securityanddataprivacytools/securitytools/certapp/api/certapp-api.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
#include <stdio.h>
sl@0
    20
#include <stdlib.h>
sl@0
    21
#include <string.h>
sl@0
    22
#include <errno.h>
sl@0
    23
sl@0
    24
#include <tools/certapp-api.h>
sl@0
    25
sl@0
    26
#define CERTAPP "certapp"
sl@0
    27
typedef const char *ArgPtr;
sl@0
    28
sl@0
    29
#ifdef __LINUX__
sl@0
    30
#include <unistd.h>
sl@0
    31
#include <sys/wait.h>
sl@0
    32
#else
sl@0
    33
#include <process.h>
sl@0
    34
#endif
sl@0
    35
sl@0
    36
#ifndef BULLSEYE_OFF
sl@0
    37
#ifdef _BullseyeCoverage
sl@0
    38
#define BULLSEYE_OFF "BullseyeCoverage save off";
sl@0
    39
#define BULLSEYE_RESTORE "BullseyeCoverage restore";
sl@0
    40
#else
sl@0
    41
#define BULLSEYE_OFF 
sl@0
    42
#define BULLSEYE_RESTORE 
sl@0
    43
#endif
sl@0
    44
#endif
sl@0
    45
sl@0
    46
static const char * const OPT_PROGRESS = "--progress=";
sl@0
    47
static const char * const OPT_ERRORS = "--errors=";
sl@0
    48
sl@0
    49
int RunCertApp(const char *aProgress, const char *aErrors,
sl@0
    50
			   int argc, char **argv)
sl@0
    51
{
sl@0
    52
	int ret = -1;
sl@0
    53
BULLSEYE_OFF
sl@0
    54
	if(argc<0) abort(); // Bad argument
sl@0
    55
BULLSEYE_RESTORE
sl@0
    56
sl@0
    57
	int newArgc = argc+4;
sl@0
    58
	const char **newArgv = (const char **)malloc(sizeof(ArgPtr)*newArgc);
sl@0
    59
sl@0
    60
	const char *progFile = (aProgress) ? (aProgress) : ("-");
sl@0
    61
	const char *errorsFile = (aErrors) ? (aErrors) : ("-");
sl@0
    62
sl@0
    63
	char *progress=(char *)malloc(strlen(OPT_PROGRESS)+strlen(progFile)+1);
sl@0
    64
	strcpy(progress, OPT_PROGRESS);
sl@0
    65
	strcat(progress, progFile);
sl@0
    66
sl@0
    67
	char *errors=(char *)malloc(strlen(OPT_ERRORS)+strlen(errorsFile)+1);
sl@0
    68
	strcpy(errors, OPT_ERRORS);
sl@0
    69
	strcat(errors, errorsFile);
sl@0
    70
	
sl@0
    71
	newArgv[0] = CERTAPP;
sl@0
    72
	newArgv[1] = progress;
sl@0
    73
	newArgv[2] = errors;
sl@0
    74
	int i=0;
sl@0
    75
	for(i=0; i<argc; ++i)
sl@0
    76
		{
sl@0
    77
		newArgv[i+3] = argv[i];
sl@0
    78
		}
sl@0
    79
	newArgv[newArgc-1] = 0; // Terminate newArgv array
sl@0
    80
sl@0
    81
#ifdef __LINUX__
sl@0
    82
	//
sl@0
    83
	// Linux version to run certapp
sl@0
    84
	//
sl@0
    85
	pid_t pid = vfork();
sl@0
    86
	if(pid == -1)
sl@0
    87
		{
sl@0
    88
		// vfork call failed
sl@0
    89
		printf("Failed to run %s\n", CERTAPP);
sl@0
    90
		return errno;
sl@0
    91
		}
sl@0
    92
	if(pid == 0)
sl@0
    93
		{
sl@0
    94
		// Child side of vfork
sl@0
    95
		// Exec certapp
sl@0
    96
		
sl@0
    97
		execvp(CERTAPP, (char * const *)newArgv);
sl@0
    98
		// Only get here if the exec call failed...
sl@0
    99
		switch(errno)
sl@0
   100
			{
sl@0
   101
			case ENOENT:
sl@0
   102
				fprintf(stderr, "*** Could not find certapp executable to launch!\n");
sl@0
   103
				break;
sl@0
   104
sl@0
   105
			default:
sl@0
   106
				fprintf(stderr, "*** Failed to launch certapp, execvp called failed with error code%d !\n", errno);
sl@0
   107
				break;
sl@0
   108
			}
sl@0
   109
		exit(errno); 
sl@0
   110
		}
sl@0
   111
sl@0
   112
	// Parent side of vfork
sl@0
   113
	
sl@0
   114
	// Wait for certapp to finish
sl@0
   115
	for(;;)
sl@0
   116
		{
sl@0
   117
		// Block until our child to exits
sl@0
   118
		int waitStatus = waitpid(pid, &ret, 0);
sl@0
   119
		if(waitStatus == pid)
sl@0
   120
			{
sl@0
   121
			// Our child process exited and ret contains its status
sl@0
   122
			break; // Done
sl@0
   123
			}
sl@0
   124
		if(waitStatus != -1)
sl@0
   125
			{
sl@0
   126
			// Should never happen
sl@0
   127
			break;
sl@0
   128
			}
sl@0
   129
		// Decode errno
sl@0
   130
		if(errno == EINTR)
sl@0
   131
			{
sl@0
   132
			// Signal handler interrupted us - re-issue waitpid call
sl@0
   133
			continue;
sl@0
   134
			}
sl@0
   135
		// Error
sl@0
   136
		ret = errno;
sl@0
   137
		break;
sl@0
   138
		};
sl@0
   139
#else
sl@0
   140
	//
sl@0
   141
	// Windows version to run certapp
sl@0
   142
	//
sl@0
   143
	ret = _spawnvp(_P_WAIT, CERTAPP, newArgv);
sl@0
   144
	
sl@0
   145
#endif
sl@0
   146
sl@0
   147
	free(progress);
sl@0
   148
	free(errors);
sl@0
   149
	free(newArgv);
sl@0
   150
sl@0
   151
	return ret;
sl@0
   152
}
sl@0
   153
sl@0
   154
// End of file
sl@0
   155