summaryrefslogtreecommitdiffstats
path: root/security/smc_pa_ctrl/smc_pa_ctrl_linux.c
blob: a0eab927aae7c019cc0482ef005e8a8d619e3f2e (plain)
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/**
 * Copyright(c) 2011 Trusted Logic.   All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 *  * Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *  * Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *  * Neither the name Trusted Logic nor the names of its
 *    contributors may be used to endorse or promote products derived
 *    from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifndef WIN32
#include <sys/ioctl.h>
#include <unistd.h>
#endif
#include <fcntl.h>
#include <errno.h>

#include "smc_pa_ctrl_os.h"
#include "s_type.h"

#ifndef BOOT_TIME_PA
#define SMC_DRIVER_NAME    "/dev/tf_ctrl"
#else
#define SMC_DRIVER_NAME    "/dev/supervisor"
#endif

#define IOCTL_SCX_SMC_PA_CTRL \
         _IOWR('z', 0xFF, SCX_SMC_PA_CTRL)


typedef struct
{
   uint32_t nPACommand;       /* SCX_PA_CTRL_xxx */

   /* For the SCX_SMC_PA_CTRL_START command only                           */
   uint32_t nPASize;          /* PA buffer size                            */
   uint8_t* pPABuffer;        /* PA buffer                                 */
   uint32_t nConfSize;        /* Configuration buffer size, including the  */
                              /* zero-terminating character (may be zero)  */
   uint8_t* pConfBuffer;      /* Configuration buffer, zero-terminated     */
                              /* string (may be NULL)                      */
} SCX_SMC_PA_CTRL;

static uint8_t* readLocalFile(const char* pFileName, uint32_t* pnBufferSize, bool bIsString)
{
   uint8_t* pBuffer = NULL;
   FILE*    pFile = NULL;
   uint32_t nBytesToAllocate;
   int      nBytesRead;
   int      nResult;

   struct stat statFile;

   *pnBufferSize = 0;

   if (stat(pFileName, &statFile) != 0)
   {
      printf("Cannot read '%s' !\n", pFileName);
      goto error;
   }

   nBytesToAllocate = statFile.st_size;

   if (bIsString)
   {
      /* Allocate enough room for the zero-terminated string */
      nBytesToAllocate ++;
   }

   pBuffer = (uint8_t*)malloc(nBytesToAllocate);
   if (pBuffer == NULL)
   {
      printf("Out of memory for the buffer [%u bytes] !\n", nBytesToAllocate);
      goto error;
   }

   pFile = fopen(pFileName, "rb");
   if (pFile == NULL)
   {
      printf("Cannot open '%s' !\n", pFileName);
      goto error;
   }

   nBytesRead = fread(pBuffer, 1, statFile.st_size, pFile);

   if (nBytesRead != statFile.st_size)
   {
      printf("Cannot read bytes from '%s' [%i] !\n", pFileName, nBytesRead);
      goto error;
   }

   nResult = fclose(pFile);

   pFile = NULL;

   if (nResult != 0)
   {
      printf("Cannot close '%s' !\n", pFileName);
      goto error;
   }

   if (bIsString)
   {
      /* Set the zero-terminated string */
      pBuffer[nBytesRead] = 0;
   }

   *pnBufferSize = nBytesToAllocate;

   return pBuffer;

   /*
    * Error handling.
    */

error:
   free(pBuffer);
   if (pFile != NULL)
   {
      fclose(pFile);
   }

   return NULL;
}




int smcPAStart(const char* pPAFileName, const char* pConfFileName)
{
   int fd = 0;
   int nStatus = 0;
   SCX_SMC_PA_CTRL paCtrl;

   memset(&paCtrl, 0, sizeof(SCX_SMC_PA_CTRL));
   paCtrl.nPACommand = SCX_SMC_PA_CTRL_START;

#ifdef BOOT_TIME_PA
   printf("Starting the SMC BOOT PA '%s'. Driver name : %s", pPAFileName, SMC_DRIVER_NAME);
#else
   printf("Starting the SMC PA '%s'", pPAFileName);
#endif
   if (pConfFileName != NULL)
   {
      printf(" with the Configuration file '%s'", pConfFileName);
   }
   else
   {
      printf("Configuration file is mandatory\n");
      nStatus  = -1;
      goto end;
   }
   printf("...\n");

   paCtrl.pPABuffer = readLocalFile(pPAFileName, &paCtrl.nPASize, false);
   if (paCtrl.pPABuffer == NULL)
   {
      nStatus  = -2;
      goto end;
   }

   paCtrl.pConfBuffer = readLocalFile(pConfFileName, &paCtrl.nConfSize, false);
   if (paCtrl.pConfBuffer == NULL)
   {
      nStatus  = -4;
      goto end;
   }

   #ifndef WIN32
   fd = open(SMC_DRIVER_NAME, O_RDWR, 0);
   #endif
   if (fd == -1)
   {
      nStatus = errno;
#ifdef BOOT_TIME_PA
      printf("Boot time driver open failed [%d] !\n", nStatus);
#else
      printf("SMC driver open failed [%d] !\n", nStatus);
#endif
      goto end;
   }

   #ifndef WIN32
   nStatus = ioctl(fd, IOCTL_SCX_SMC_PA_CTRL, &paCtrl);
   #endif
   if (nStatus != 0)
   {
      nStatus = errno;
#ifdef BOOT_TIME_PA
      printf("Starting the BOOT TIME PA failed [%d] !\n", nStatus);
#else
      printf("Starting the SMC PA failed [%d] !\n", nStatus);
#endif
      goto end;
   }

#ifdef BOOT_TIME_PA
   printf("Boot time PA '%s' has been launched successfully.\n", pPAFileName);
#else
   printf("Starting the SMC PA '%s': Done\n", pPAFileName);
#endif

end:
   if (fd != 0)
   {
      #ifndef WIN32
      close(fd);
      #endif
   }

   free(paCtrl.pPABuffer);
   free(paCtrl.pConfBuffer);

   return nStatus;
}

int smcPAStop(void)
{
   int fd = 0;
   int nStatus = 0;
   SCX_SMC_PA_CTRL paCtrl;

   memset(&paCtrl, 0, sizeof(SCX_SMC_PA_CTRL));
   paCtrl.nPACommand = SCX_SMC_PA_CTRL_STOP;

   printf("Stopping the SMC PA...\n");

   #ifndef WIN32
   fd = open(SMC_DRIVER_NAME, O_RDWR, 0);
   #endif
   if (fd == 0)
   {
      nStatus = errno;
      printf("SMC driver open failed [%d] !\n", nStatus);
      goto end;
   }

   #ifndef WIN32
   nStatus = ioctl(fd, IOCTL_SCX_SMC_PA_CTRL, &paCtrl);
   #endif
   if (nStatus != 0)
   {
      printf("Stopping the SMC PA failed [%d] !\n", nStatus);
      goto end;
   }

   printf("Stopping the SMC PA: Done\n");

end:

   if (fd != 0)
   {
      #ifndef WIN32
      close(fd);
      #endif
   }

   return nStatus;
}