2 * Copyright (c) 2000-2001,2004 Apple Computer, Inc. All Rights Reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
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
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.
23 * @APPLE_LICENSE_HEADER_END@
31 * Created by michael on Fri Oct 20 2000.
34 #include <Security/Authorization.h>
36 #include <Security/AuthorizationEngine.h>
38 using namespace Authorization
;
40 static const AuthorizationItem gItems
[] =
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
}
51 static const AuthorizationRights gRights
=
54 const_cast<AuthorizationItem
*>(gItems
)
58 printRights(const RightSet
&rightSet
)
60 for(RightSet::const_iterator it
= rightSet
.begin(); it
!= rightSet
.end(); ++it
)
62 printf("right: \"%s\"\n", it
->rightName());
67 main(int argc
, char **argv
)
69 Engine
engine("/tmp/config.plist");
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
);