]> git.saurik.com Git - apple/securityd.git/blob - tests/AZNTest.cpp
b4c1082a321e433d34273ad8e6e4a8f12f24a5f9
[apple/securityd.git] / tests / AZNTest.cpp
1 /*
2 * Copyright (c) 2000-2001,2004 Apple Computer, Inc. All Rights Reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
7 *
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25
26
27 /*
28 * AZNTest.cpp
29 * SecurityServer
30 *
31 * Created by michael on Fri Oct 20 2000.
32 */
33
34 #include <Security/Authorization.h>
35
36 #include <Security/AuthorizationEngine.h>
37
38 using namespace Authorization;
39
40 static const AuthorizationItem gItems[] =
41 {
42 {"login", 0, NULL, NULL},
43 {"reboot", 0, NULL, NULL},
44 {"shutdown", 0, NULL, NULL},
45 {"mount", 0, NULL, NULL},
46 {"login.reboot", 0, NULL, NULL},
47 {"login.shutdown", 0, NULL, NULL},
48 {"unmount", 0, NULL, NULL}
49 };
50
51 static const AuthorizationRights gRights =
52 {
53 7,
54 const_cast<AuthorizationItem *>(gItems)
55 };
56
57 void
58 printRights(const RightSet &rightSet)
59 {
60 for(RightSet::const_iterator it = rightSet.begin(); it != rightSet.end(); ++it)
61 {
62 printf("right: \"%s\"\n", it->rightName());
63 }
64 }
65
66 int
67 main(int argc, char **argv)
68 {
69 Engine engine("/tmp/config.plist");
70
71 const RightSet inputRights(&gRights);
72 MutableRightSet outputRights;
73 printf("InputRights:\n");
74 printRights(inputRights);
75 printf("Authorizing:\n");
76 OSStatus result = engine.authorize(inputRights, NULL,
77 kAuthorizationFlagInteractionAllowed | kAuthorizationFlagExtendRights | kAuthorizationFlagPartialRights,
78 NULL, NULL, &outputRights);
79 printf("Result: %ld\n", result);
80 printf("OutputRights:\n");
81 printRights(outputRights);
82 return 0;
83 }