dnsinfo_server.c   [plain text]


/*
 * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
 *
 * @APPLE_LICENSE_HEADER_START@
 * 
 * This file contains Original Code and/or Modifications of Original Code
 * as defined in and that are subject to the Apple Public Source License
 * Version 2.0 (the 'License'). You may not use this file except in
 * compliance with the License. Please obtain a copy of the License at
 * http://www.opensource.apple.com/apsl/ and read it before using this
 * file.
 * 
 * The Original Code and all software distributed under the License are
 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
 * Please see the License for the specific language governing rights and
 * limitations under the License.
 * 
 * @APPLE_LICENSE_HEADER_END@
 */

/*
 * Modification History
 *
 * March 9, 2004		Allan Nathanson <ajn@apple.com>
 * - initial revision
 */

#include <notify.h>
#include <sysexits.h>
#include <syslog.h>
#include <unistd.h>
#include <sys/types.h>
#include <servers/bootstrap.h>
#include <mach/mach.h>
#include <mach/mach_error.h>
#include <CoreFoundation/CoreFoundation.h>
#include <SystemConfiguration/SCPrivate.h>

#include "dnsinfo_server.h"
#include "dnsinfo_private.h"

#include "session.h"

static	CFDataRef       shared_dns_info		= NULL;

__private_extern__
kern_return_t
_shared_dns_infoGet(mach_port_t server, dnsDataOut_t *dataRef, mach_msg_type_number_t *dataLen)
{
	*dataRef = NULL;
	*dataLen = 0;

	if (shared_dns_info != NULL) {
		if (!_SCSerializeData(shared_dns_info, (void **)dataRef, (CFIndex *)dataLen)) {
			return KERN_FAILURE;
		}
	}

	return KERN_SUCCESS;
}


__private_extern__
kern_return_t
_shared_dns_infoSet(mach_port_t server, dnsData_t dataRef, mach_msg_type_number_t dataLen)
{
	CFDataRef		new_dns_info    = NULL;
	const char		*notify_key;
	serverSessionRef	mySession       = getSession(server);

	if ((dataRef != NULL) && (dataLen > 0)) {
		if (!_SCUnserializeData(&new_dns_info, (void *)dataRef, dataLen)) {
			goto error;
		}
	}

	if (mySession->callerEUID != 0) {
		goto error;
	}

	if (shared_dns_info != NULL) CFRelease(shared_dns_info);
	shared_dns_info = new_dns_info;

	notify_key = _dns_configuration_notify_key();
	if (notify_key != NULL) {
		uint32_t	status;

		status = notify_post(notify_key);
		if (status != NOTIFY_STATUS_OK) {
			SCLog(TRUE, LOG_ERR, CFSTR("notify_post() failed: %d"), status);
			// notification posting failures are non-fatal
		}
	}

	return KERN_SUCCESS;

    error :

	if (new_dns_info != NULL)    CFRelease(new_dns_info);
	return KERN_FAILURE;
}