sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// TSPConvUtil class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include <f32file.h>
|
sl@0
|
19 |
#include <e32cons.h>
|
sl@0
|
20 |
#include "D32Assert.h"
|
sl@0
|
21 |
#include "cn_util.h"
|
sl@0
|
22 |
#include "cn_main.h"
|
sl@0
|
23 |
#include "cn_cmdparse.h"
|
sl@0
|
24 |
|
sl@0
|
25 |
TBool TSPConvUtil::iPromptOnError = ETrue;
|
sl@0
|
26 |
|
sl@0
|
27 |
_LIT(KTxt0, "Program information");
|
sl@0
|
28 |
_LIT(KTxt1, "EDbSpConv version 1.0\n");
|
sl@0
|
29 |
_LIT(KTxt2, "Symbian OS text policy file/binary policy file converter\n");
|
sl@0
|
30 |
_LIT(KTxt3, "Copyright (c) 2004 Symbian Software Ltd. All rights reserved.\n");
|
sl@0
|
31 |
_LIT(KTxt4, "\nUsage:\n");
|
sl@0
|
32 |
_LIT(KTxt5, "EDbSpConv /h\n");
|
sl@0
|
33 |
_LIT(KTxt6, "EDbSpConv /f=<text file> /b=[path]\\<uid>[.spd] [/s]\n");
|
sl@0
|
34 |
_LIT(KTxt7, "\nWhere:\n");
|
sl@0
|
35 |
_LIT(KTxt8, "/h - displays program information\n");
|
sl@0
|
36 |
_LIT(KTxt9, "<text file> - security policy text file, including path\n");
|
sl@0
|
37 |
_LIT(KTxt10,"<uid>[.spd] - security policy binary file\n");
|
sl@0
|
38 |
_LIT(KTxt11,"[path] - optional - binary policy file path.\n");
|
sl@0
|
39 |
_LIT(KTxt12," By default the file will be placed in the current directory.\n");
|
sl@0
|
40 |
_LIT(KTxt13,"<uid> - database format uid - hex\n");
|
sl@0
|
41 |
_LIT(KTxt14,"[/s] - optional - does not wait for a button pressing in case\n");
|
sl@0
|
42 |
_LIT(KTxt15," of an error (when an error message is displayed).\n");
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
Prints program information.
|
sl@0
|
46 |
*/
|
sl@0
|
47 |
static void PrintInfoL()
|
sl@0
|
48 |
{
|
sl@0
|
49 |
CConsoleBase* con = Console::NewL(KTxt0, TSize(KConsFullScreen, KConsFullScreen));
|
sl@0
|
50 |
CleanupStack::PushL(con);
|
sl@0
|
51 |
con->Printf(KTxt1);
|
sl@0
|
52 |
con->Printf(KTxt2);
|
sl@0
|
53 |
con->Printf(KTxt3);
|
sl@0
|
54 |
con->Printf(KTxt4);
|
sl@0
|
55 |
con->Printf(KTxt5);
|
sl@0
|
56 |
con->Printf(KTxt6);
|
sl@0
|
57 |
con->Printf(KTxt7);
|
sl@0
|
58 |
con->Printf(KTxt8);
|
sl@0
|
59 |
con->Printf(KTxt9);
|
sl@0
|
60 |
con->Printf(KTxt10);
|
sl@0
|
61 |
con->Printf(KTxt11);
|
sl@0
|
62 |
con->Printf(KTxt12);
|
sl@0
|
63 |
con->Printf(KTxt13);
|
sl@0
|
64 |
con->Printf(KTxt14);
|
sl@0
|
65 |
con->Printf(KTxt15);
|
sl@0
|
66 |
con->Getch();
|
sl@0
|
67 |
CleanupStack::PopAndDestroy(con);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
/**
|
sl@0
|
71 |
Parses command line arguments and fills TCmdLinePrm structure with the parsed data.
|
sl@0
|
72 |
A a result of method's execution, the following items will be stored in aCmdLinePrm:
|
sl@0
|
73 |
requested action: (BIN->TXT) or (TXT->BIN), text policy file path and
|
sl@0
|
74 |
binary policy file path.
|
sl@0
|
75 |
If there is a "/s" command line argument and there are parsing errors, the error message
|
sl@0
|
76 |
will be stored in epocwind.out file only. By default (no "/s" command) the error messages
|
sl@0
|
77 |
will be displayed on the screen and stored in epocwind.out file.
|
sl@0
|
78 |
@param aCmdLineParser A reference to a command line argument parser instance.
|
sl@0
|
79 |
@param aCmdLinePrm A reference to a TCmdLinePrm instance. Output parameter. The parsed
|
sl@0
|
80 |
command line arguments will be stored there.
|
sl@0
|
81 |
@leave KErrArgument Not enough command line arguments, bad argument, non-recognizable argument.
|
sl@0
|
82 |
@leave KErrNotFound Missing command line argument.
|
sl@0
|
83 |
*/
|
sl@0
|
84 |
void TSPConvUtil::ParseL(const CCommandLineArguments& aCmdLineParser,
|
sl@0
|
85 |
TCmdLinePrm& aCmdLinePrm)
|
sl@0
|
86 |
{
|
sl@0
|
87 |
aCmdLinePrm.Zero();
|
sl@0
|
88 |
TInt prmCnt = aCmdLineParser.Count();
|
sl@0
|
89 |
if(prmCnt < 2)
|
sl@0
|
90 |
{//Print program information and exit
|
sl@0
|
91 |
::PrintInfoL();
|
sl@0
|
92 |
User::Exit(KErrNone);
|
sl@0
|
93 |
}
|
sl@0
|
94 |
else
|
sl@0
|
95 |
{
|
sl@0
|
96 |
//The comand is fixed explicitly, because now there is only one conversion:
|
sl@0
|
97 |
//from text policy file to binary policy file.
|
sl@0
|
98 |
aCmdLinePrm.iAction = TCmdLinePrm::ETxt2Bin;
|
sl@0
|
99 |
for(TInt i=0;i<prmCnt;++i)
|
sl@0
|
100 |
{
|
sl@0
|
101 |
TPtrC arg = aCmdLineParser.Arg(i);
|
sl@0
|
102 |
_LIT(KPrintInfoCmd, "/H");
|
sl@0
|
103 |
_LIT(KSuppressPromptCmd, "/S");
|
sl@0
|
104 |
_LIT(KTextFilePrm, "/F=");
|
sl@0
|
105 |
_LIT(KBinFilePrm, "/B=");
|
sl@0
|
106 |
TInt pos;
|
sl@0
|
107 |
if(arg == KPrintInfoCmd)
|
sl@0
|
108 |
{//Print program information and exit
|
sl@0
|
109 |
::PrintInfoL();
|
sl@0
|
110 |
User::Exit(KErrNone);
|
sl@0
|
111 |
}
|
sl@0
|
112 |
else if(arg == KSuppressPromptCmd)
|
sl@0
|
113 |
{
|
sl@0
|
114 |
TSPConvUtil::iPromptOnError = EFalse;
|
sl@0
|
115 |
}
|
sl@0
|
116 |
if((pos = arg.Find(KTextFilePrm)) != KErrNotFound)
|
sl@0
|
117 |
{
|
sl@0
|
118 |
if(pos != 0)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
__LEAVE(KErrArgument);
|
sl@0
|
121 |
}
|
sl@0
|
122 |
aCmdLinePrm.iTxtFile.Copy(arg.Right(arg.Length() - KTextFilePrm().Length()));
|
sl@0
|
123 |
}
|
sl@0
|
124 |
else if((pos = arg.Find(KBinFilePrm)) != KErrNotFound)
|
sl@0
|
125 |
{
|
sl@0
|
126 |
if(pos != 0)
|
sl@0
|
127 |
{
|
sl@0
|
128 |
__LEAVE(KErrArgument);
|
sl@0
|
129 |
}
|
sl@0
|
130 |
aCmdLinePrm.iBinFile.Copy(arg.Right(arg.Length() - KBinFilePrm().Length()));
|
sl@0
|
131 |
}
|
sl@0
|
132 |
}//end of - for(TInt i=0;i<prmCnt;++i)
|
sl@0
|
133 |
}//end of else - if(prmCnt < 2)
|
sl@0
|
134 |
if(aCmdLinePrm.iAction == TCmdLinePrm::ENone)
|
sl@0
|
135 |
{
|
sl@0
|
136 |
_LIT(KText, "Invalid command line arguments, use \"/h\" option for help\n");
|
sl@0
|
137 |
TSPConvUtil::Print(KText);
|
sl@0
|
138 |
__LEAVE(KErrArgument);
|
sl@0
|
139 |
}
|
sl@0
|
140 |
if(aCmdLinePrm.iTxtFile.Length() == 0)
|
sl@0
|
141 |
{
|
sl@0
|
142 |
_LIT(KText, "No text file, use \"/h\" option for help\n");
|
sl@0
|
143 |
TSPConvUtil::Print(KText);
|
sl@0
|
144 |
__LEAVE(KErrArgument);
|
sl@0
|
145 |
}
|
sl@0
|
146 |
if(aCmdLinePrm.iBinFile.Length() == 0)
|
sl@0
|
147 |
{
|
sl@0
|
148 |
_LIT(KText, "No UID, use \"/h\" option for help\n");
|
sl@0
|
149 |
TSPConvUtil::Print(KText);
|
sl@0
|
150 |
__LEAVE(KErrArgument);
|
sl@0
|
151 |
}
|
sl@0
|
152 |
}
|
sl@0
|
153 |
|
sl@0
|
154 |
/**
|
sl@0
|
155 |
The method checks if the file path (aFile parameter) exists.
|
sl@0
|
156 |
@param aFs File server session.
|
sl@0
|
157 |
@param aFile File path.
|
sl@0
|
158 |
@return ETrue - file exists, EFalse - file not found. EFalse may also reflect some kind of
|
sl@0
|
159 |
file system error.
|
sl@0
|
160 |
*/
|
sl@0
|
161 |
TBool TSPConvUtil::FileExists(RFs& aFs, const TDesC& aFile)
|
sl@0
|
162 |
{
|
sl@0
|
163 |
TEntry fileEntry;
|
sl@0
|
164 |
return aFs.Entry(aFile, fileEntry) == KErrNone;
|
sl@0
|
165 |
}
|
sl@0
|
166 |
|
sl@0
|
167 |
/**
|
sl@0
|
168 |
The method checks and constructs full binary policy file path from aFile parameter.
|
sl@0
|
169 |
@param aFile The expected format is:
|
sl@0
|
170 |
1) <drive:>\<path>\<UID string>
|
sl@0
|
171 |
2) <drive:>\<path>\<UID string>.spd
|
sl@0
|
172 |
3) <UID string>
|
sl@0
|
173 |
4) <UID string>.spd
|
sl@0
|
174 |
'/' symbol might be used as a directory separator as well.
|
sl@0
|
175 |
Output parameter - the created binary policy file path will be stored there.
|
sl@0
|
176 |
@leave KErrArgument Bad format of aFile input parameter.
|
sl@0
|
177 |
*/
|
sl@0
|
178 |
void TSPConvUtil::ConstructBinFileNameL(TDes& aFile)
|
sl@0
|
179 |
{
|
sl@0
|
180 |
//Replace all '/' in aFile with '\', otherwise TParse won't work properly.
|
sl@0
|
181 |
TInt pos;
|
sl@0
|
182 |
while((pos = aFile.Locate('/')) != KErrNotFound)
|
sl@0
|
183 |
{
|
sl@0
|
184 |
aFile[pos] = '\\';
|
sl@0
|
185 |
}
|
sl@0
|
186 |
TParse fileNameParser;
|
sl@0
|
187 |
__LEAVE_IF_ERROR(fileNameParser.Set(aFile, NULL, NULL));
|
sl@0
|
188 |
TPtrC fileName = fileNameParser.Name();
|
sl@0
|
189 |
TUid dbUid;
|
sl@0
|
190 |
TLex lex(fileName);
|
sl@0
|
191 |
if(lex.Val(*(TUint32*)&dbUid, EHex) == KErrNone && lex.Eos())
|
sl@0
|
192 |
{
|
sl@0
|
193 |
if(dbUid != KNullUid)
|
sl@0
|
194 |
{
|
sl@0
|
195 |
_LIT(KExt, ".SPD");
|
sl@0
|
196 |
TPtrC fileExt = fileNameParser.Ext();
|
sl@0
|
197 |
if(fileExt.Length() == 0)
|
sl@0
|
198 |
{
|
sl@0
|
199 |
aFile.Append(KExt);
|
sl@0
|
200 |
}
|
sl@0
|
201 |
else if(fileExt != KExt)
|
sl@0
|
202 |
{
|
sl@0
|
203 |
_LIT(KText, "Invalid \"UID\" file extension: \"%S\"\n");
|
sl@0
|
204 |
TSPConvUtil::Print(KText, fileExt);
|
sl@0
|
205 |
__LEAVE(KErrArgument);
|
sl@0
|
206 |
}
|
sl@0
|
207 |
return;
|
sl@0
|
208 |
}
|
sl@0
|
209 |
}
|
sl@0
|
210 |
_LIT(KText, "Invalid \"UID\" file: \"%S\"\n");
|
sl@0
|
211 |
TSPConvUtil::Print(KText, aFile);
|
sl@0
|
212 |
__LEAVE(KErrArgument);
|
sl@0
|
213 |
}
|
sl@0
|
214 |
|
sl@0
|
215 |
/**
|
sl@0
|
216 |
The method extracts the UID from aFile parameter, which is expected to represent
|
sl@0
|
217 |
binary security policy file path.
|
sl@0
|
218 |
The method asserts that the extracted UID is not KNullUid.
|
sl@0
|
219 |
@param aFile Binary policy file path
|
sl@0
|
220 |
@leave System-wide error codes from file name parsing or KErrNoMemory (from the parser creation).
|
sl@0
|
221 |
*/
|
sl@0
|
222 |
TUid TSPConvUtil::UidFromFileNameL(const TDesC& aFile)
|
sl@0
|
223 |
{
|
sl@0
|
224 |
TParse* parser = new (ELeave) TParse;
|
sl@0
|
225 |
CleanupStack::PushL(parser);
|
sl@0
|
226 |
__LEAVE_IF_ERROR(parser->Set(aFile, NULL, NULL));
|
sl@0
|
227 |
TPtrC fileName = parser->Name();
|
sl@0
|
228 |
TUid domainUid;
|
sl@0
|
229 |
TLex lex(fileName);
|
sl@0
|
230 |
if(lex.Val(*(TUint32*)&domainUid, EHex) == KErrNone && lex.Eos() && domainUid != KNullUid)
|
sl@0
|
231 |
{
|
sl@0
|
232 |
}
|
sl@0
|
233 |
CleanupStack::PopAndDestroy(parser);
|
sl@0
|
234 |
__ASSERT(domainUid != KNullUid);
|
sl@0
|
235 |
return domainUid;
|
sl@0
|
236 |
}
|
sl@0
|
237 |
|
sl@0
|
238 |
/**
|
sl@0
|
239 |
The method prints aText string to epocwnd.out file and on the screen and waits for
|
sl@0
|
240 |
a button pressing.
|
sl@0
|
241 |
If "/s" command line argument is presented, the method won't wait for a button pressing.
|
sl@0
|
242 |
@param aText The text which has to be printed.
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
void TSPConvUtil::Print(const TDesC& aText)
|
sl@0
|
245 |
{
|
sl@0
|
246 |
RDebug::Print(aText);
|
sl@0
|
247 |
if(TSPConvUtil::iPromptOnError)
|
sl@0
|
248 |
{
|
sl@0
|
249 |
RNotifier notify;
|
sl@0
|
250 |
TInt err = notify.Connect();
|
sl@0
|
251 |
if(err == KErrNone)
|
sl@0
|
252 |
{
|
sl@0
|
253 |
TRequestStatus stat;
|
sl@0
|
254 |
TInt but;
|
sl@0
|
255 |
_LIT(KNotify,"EDBSPConv");
|
sl@0
|
256 |
_LIT(KContinue,"Continue");
|
sl@0
|
257 |
notify.Notify(KNotify, aText, KContinue, KNullDesC, but, stat);
|
sl@0
|
258 |
User::WaitForRequest(stat);
|
sl@0
|
259 |
notify.Close();
|
sl@0
|
260 |
}
|
sl@0
|
261 |
else
|
sl@0
|
262 |
{
|
sl@0
|
263 |
RDebug::Print(_L("Error=%d connecting notifier session!\n"), err);
|
sl@0
|
264 |
}
|
sl@0
|
265 |
}
|
sl@0
|
266 |
User::InfoPrint(aText);
|
sl@0
|
267 |
}
|
sl@0
|
268 |
|
sl@0
|
269 |
/**
|
sl@0
|
270 |
The method outputs a formatted text to epocwnd.out file and on the screen using aFormat
|
sl@0
|
271 |
parameter as a format string and aNumber as a number which has to be printed out with
|
sl@0
|
272 |
the supplied format string.
|
sl@0
|
273 |
If "/s" command line argument is presented, the method won't wait for a button pressing.
|
sl@0
|
274 |
@param aFormat The number format string.
|
sl@0
|
275 |
@param aNumber The number, which has to be printed together with the text. There must be a "%d"
|
sl@0
|
276 |
format specification somewhere in aFormat parameter.
|
sl@0
|
277 |
*/
|
sl@0
|
278 |
void TSPConvUtil::Print(const TDesC& aFormat, TInt aNumber)
|
sl@0
|
279 |
{
|
sl@0
|
280 |
TBuf<300> buf;
|
sl@0
|
281 |
buf.Format(aFormat, aNumber);
|
sl@0
|
282 |
TSPConvUtil::Print(buf);
|
sl@0
|
283 |
}
|
sl@0
|
284 |
|
sl@0
|
285 |
/**
|
sl@0
|
286 |
The method outputs a formatted text to epocwnd.out file and on the screen using aFormat
|
sl@0
|
287 |
parameter as a format string and aText as a text which has to be printed out with the
|
sl@0
|
288 |
supplied format string.
|
sl@0
|
289 |
If "/s" command line argument is presented, the method won't wait for a button pressing.
|
sl@0
|
290 |
@param aFormat The number format string.
|
sl@0
|
291 |
@param aText The text, which has to be formatted. There must be a "%S"
|
sl@0
|
292 |
format specification somewhere in aFormat parameter.
|
sl@0
|
293 |
*/
|
sl@0
|
294 |
void TSPConvUtil::Print(const TDesC& aFormat, const TDesC& aText)
|
sl@0
|
295 |
{
|
sl@0
|
296 |
TBuf<300> buf;
|
sl@0
|
297 |
buf.Format(aFormat, &aText);
|
sl@0
|
298 |
TSPConvUtil::Print(buf);
|
sl@0
|
299 |
}
|
sl@0
|
300 |
|
sl@0
|
301 |
/**
|
sl@0
|
302 |
The method outputs a formatted text to epocwnd.out file and on the screen using aFormat
|
sl@0
|
303 |
parameter as a format string and aText1 and aText2 as texts which have to be printed
|
sl@0
|
304 |
out with the supplied format string.
|
sl@0
|
305 |
If "/s" command line argument is presented, the method won't wait for a button pressing.
|
sl@0
|
306 |
@param aFormat The number format string.
|
sl@0
|
307 |
@param aText1 The text, which has to be printed out. There must be a "%S"
|
sl@0
|
308 |
format specification somewhere in aFormat parameter.
|
sl@0
|
309 |
@param aText2 The text, which has to be printed out. There must be a "%S"
|
sl@0
|
310 |
format specification somewhere in aFormat parameter.
|
sl@0
|
311 |
*/
|
sl@0
|
312 |
void TSPConvUtil::Print(const TDesC& aFormat, const TDesC& aText1, const TDesC& aText2)
|
sl@0
|
313 |
{
|
sl@0
|
314 |
TBuf<500> buf;
|
sl@0
|
315 |
buf.Format(aFormat, &aText1, &aText2);
|
sl@0
|
316 |
TSPConvUtil::Print(buf);
|
sl@0
|
317 |
}
|
sl@0
|
318 |
|