Imported Upstream version 765.50.9
[platform/upstream/mdnsresponder.git] / mDNSMacOSX / PreferencePane / PrivilegedOperations.h
1 /*
2     File: PrivilegedOperations.h
3
4     Abstract: Interface to "ddnswriteconfig" setuid root tool.
5
6     Copyright: (c) Copyright 2005 Apple Computer, Inc. All rights reserved.
7
8     Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple Computer, Inc.
9     ("Apple") in consideration of your agreement to the following terms, and your
10     use, installation, modification or redistribution of this Apple software
11     constitutes acceptance of these terms.  If you do not agree with these terms,
12     please do not use, install, modify or redistribute this Apple software.
13
14     In consideration of your agreement to abide by the following terms, and subject
15     to these terms, Apple grants you a personal, non-exclusive license, under Apple's
16     copyrights in this original Apple software (the "Apple Software"), to use,
17     reproduce, modify and redistribute the Apple Software, with or without
18     modifications, in source and/or binary forms; provided that if you redistribute
19     the Apple Software in its entirety and without modifications, you must retain
20     this notice and the following text and disclaimers in all such redistributions of
21     the Apple Software.  Neither the name, trademarks, service marks or logos of
22     Apple Computer, Inc. may be used to endorse or promote products derived from the
23     Apple Software without specific prior written permission from Apple.  Except as
24     expressly stated in this notice, no other rights or licenses, express or implied,
25     are granted by Apple herein, including but not limited to any patent rights that
26     may be infringed by your derivative works or by other works in which the Apple
27     Software may be incorporated.
28
29     The Apple Software is provided by Apple on an "AS IS" basis.  APPLE MAKES NO
30     WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION THE IMPLIED
31     WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS FOR A PARTICULAR
32     PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND OPERATION ALONE OR IN
33     COMBINATION WITH YOUR PRODUCTS.
34
35     IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL OR
36     CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
37     GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38     ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION, MODIFICATION AND/OR DISTRIBUTION
39     OF THE APPLE SOFTWARE, HOWEVER CAUSED AND WHETHER UNDER THEORY OF CONTRACT, TORT
40     (INCLUDING NEGLIGENCE), STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN
41     ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42  */
43
44 #include <CoreServices/CoreServices.h>
45 #include <CoreFoundation/CoreFoundation.h>
46
47 #define PRIV_OP_TOOL_VERS   4
48
49 #define kToolName      "ddnswriteconfig"
50 #define kToolPath      "/Library/Application Support/Bonjour/" kToolName
51 #define kToolInstaller "installtool"
52
53 #define SC_DYNDNS_SETUP_KEY         CFSTR("Setup:/Network/DynamicDNS")
54 #define SC_DYNDNS_STATE_KEY         CFSTR("State:/Network/DynamicDNS")
55 #define SC_DYNDNS_REGDOMAINS_KEY    CFSTR("RegistrationDomains")
56 #define SC_DYNDNS_BROWSEDOMAINS_KEY CFSTR("BrowseDomains")
57 #define SC_DYNDNS_HOSTNAMES_KEY     CFSTR("HostNames")
58 #define SC_DYNDNS_DOMAIN_KEY        CFSTR("Domain")
59 #define SC_DYNDNS_KEYNAME_KEY       CFSTR("KeyName")
60 #define SC_DYNDNS_SECRET_KEY        CFSTR("Secret")
61 #define SC_DYNDNS_ENABLED_KEY       CFSTR("Enabled")
62 #define SC_DYNDNS_STATUS_KEY        CFSTR("Status")
63 #define DYNDNS_KEYCHAIN_DESCRIPTION "Dynamic DNS Key"
64
65
66 OSStatus EnsureToolInstalled(void);
67 OSStatus WriteRegistrationDomain(CFDataRef domainArrayData);
68 OSStatus WriteBrowseDomain(CFDataRef domainArrayData);
69 OSStatus WriteHostname(CFDataRef domainArrayData);
70 OSStatus SetKeyForDomain(CFDataRef secretData);