System Configuration Goals and Architecture

This chapter provides an overview of the System Configuration framework goals and architecture. You should read this chapter if you’re new to OS X network configuration or if you need to know which APIs and services in the System Configuration framework your application should use. In particular, if your application needs to determine the reachability of a remote host or request a PPP-based connection, you might choose to skim this chapter for context and then read Determining Reachability and Getting Connected.

Goals of the System Configuration Framework

The OS X System Configuration framework provides the foundation for network configuration on OS X. The dual goals of the framework are:

The first goal of the System Configuration framework is user-oriented. In the System Preferences application’s Network preferences panel (which is a client of the System Configuration framework), a user can set up multiple network configurations. Each of these configurations can describe a different networking environment. This means that a user can enter a few values in Network preferences and their system automatically detects, configures, and starts the appropriate network service. The user can impose a preferred order on the services and the system automatically switches between them, according to which network interfaces are currently available, without requiring a restart. For an example of how this works, see An Example of Mobility.

The second goal of the System Configuration framework is to provide network configuration and access services to a wide range of applications. At one end of the range is a network-configuration application such as one an Internet service provider (ISP) might offer to define new services and provide dial-up support. Such an application needs to access System Configuration framework components at a low level to provide network services.

At the other end of the range are what can be termed network-aware applications. For the most part, a network-aware application simply needs to use existing network services, not define new ones. Such an application might need to determine if a remote host is reachable or request a network connection so it can provide content to its users.

The System Configuration framework supports applications throughout this range by providing:

The System Configuration framework offers a level of abstraction that allows your application to manage a wide range of configuration tasks. To achieve this, the framework takes advantage of Core Foundation run loop technology and property list types.

In addition, the source code for the System Configuration framework is available in Darwin as part of Apple’s Open Source initiative, so you can see exactly how things work. In Darwin, the source code for the System Configuration framework and related entities is divided among three projects:

An Example of Mobility

The System Configuration framework allows users to set up multiple network interfaces in various combinations and supports dynamic network reconfiguration without requiring user intervention. To see how this works, consider Maria, a PowerBook-toting executive on their way to deliver a presentation at a remote office.

Because Maria uses their PowerBook in different network environments, they use Network preferences to establish a collection of network configurations for each environment. Each collection of network configurations is called a location.Figure 1-1 shows a location named Office in Maria’s Network preferences.

Figure 1-1  A location in Network preferences
A location in Network preferences

Maria establishes three locations:

In their office, Maria plugs in the Ethernet cable and selects the Office location from the Apple menu, as shown in Figure 1-2.

Figure 1-2  A location in the Apple menu
A location in the Apple menu

To attend a meeting, Maria unplugs the Ethernet cable and enters the conference room. When their PowerBook wakes up in the conference room, it determines that the cabled LAN is not active and automatically switches to the corporate AirPort network.

In the taxi to the airport, with no network services available, Maria writes their meeting notes. While waiting for their flight, they wake the PowerBook and uses the wireless network available at the airport to send their presentation slides ahead to the remote office for finishing touches. To this point, Maria has not adjusted their network preferences, but they've had no problems using available network services, even across sleep-wake cycles.

As they board the airplane, Maria uses the Apple menu to select the Offline location which shuts off all networking (as required during air travel). During the flight, they work on the introduction to their presentation.

When they arrive at the remote office, Maria again selects the Office location and gives their presentation. They use the newly polished slides they retrieves over AirPort from the local server.

When they return home, Maria plugs in the Ethernet and phone cables and selects the Home location from the Apple menu. Now they can work on last-minute business whether their DSL connection is active today or not.

Because of the System Configuration framework’s dynamic network reconfiguration support, Maria never had to restart their PowerBook to take advantage of changing network environments.

System Configuration Architecture

The System Configuration framework comprises many components that work together to support configurable network resources. This section introduces these components and defines several terms the System Configuration framework (and this document) uses to describe a user’s network configuration.

For developers of network-aware applications, this section provides enough background information to get started using the reachability and connection APIs. For an overview of all the APIs the System Configuration framework offers, read System Configuration APIs. Then, you may choose to skip ahead to Determining Reachability and Getting Connected for specific information on how to use the reachability and connection APIs.

A developer of network-configuration applications, however, needs more in-depth information about the individual components of the System Configuration framework. To learn more about these components, you should read Components of the System Configuration Framework. In addition, if you’re developing an application that defines new locations or services, be sure to read The System Configuration Schema.

System Configuration Terms

Before you read any further, be sure you’re familiar with the System Configuration terms this document uses:

  • Location. A collection of network configurations a user creates in Network preferences to describe a specific environment, such as the home environment.

  • Set. The complete configuration for a single location. The configuration typically includes IP and interface configuration information, as well as system-wide information.

  • Network service. A collection of network entities for a single network interface or network connection. Together, these entities contain all the information required to make the service active.

  • Network entity. A collection of properties that are specific to some protocol or area of interest, such as PPP or DNS.

  • Interface. The physical connection, such as Ethernet.

Interaction of System Configuration Components

The System Configuration framework comprises several components that work together to provide powerful, flexible support for establishing and maintaining access to configurable network resources. These components are:

  • A persistent storage structure for network configuration preferences and selected system information

  • A dynamic storage structure for current network state information

  • Configuration agents that manage the data in the two storage areas, handle low-level configuration events, and provide notification services

  • A comprehensive and flexible schema that defines both the data types in the persistent and dynamic stores and their hierarchical structure

  • A full range of APIs that provide access to the current network state information and furnish notifications, handle reachability and connectivity, and support the definition of new sets and services. For an overview of the APIs the System Configuration framework provides, see System Configuration APIs.

Figure 1-3 shows the first three of these components (the schema and the APIs are not shown) and how they interact.

Figure 1-3  Architecture and interaction of System Configuration framework components
Architecture and interaction of System Configuration framework components

As shown in Figure 1-3, the dynamic store is the conceptual heart of the System Configuration architecture. The dynamic store:

  • Contains a copy of the configuration information for the currently active location

  • Contains the current network state information (and also some system state information)

  • Provides input to the configuration agents

  • Receives up-to-date status information from the configuration agents

  • Supports the notification process

The dynamic store is kept up-to-date by various configuration agents and is recreated after every system restart. The Dynamic Store describes the dynamic store in more detail.

The persistent store houses:

  • The user’s network preferences (entered in Network preferences)

  • Some system values, such as the computer name and selected power management information

As its name implies, the persistent store persists across reboots and is only changed by explicit actions of the user, the system, or network-configuration applications. The persistent store is described in more detail in The Persistent Store.

Figure 1-3 shows three configuration agents. In a running OS X system, there are several more configuration agents (some of which are internal implementation details that are not discussed in this document). Each configuration agent is responsible for a well-defined area of configuration management, such as IPv4 or PPP. In general, an agent gets preferences and status information from the dynamic store and combines it with information the agent receives from various system and network events. The agent publishes the merged information and the results of any actions it takes back into the dynamic store. See Configuration Agents for more information about individual configuration agents.

Although it is not shown in Figure 1-3, the schema serves as the common language that allows the various components of the System Configuration framework to communicate. The information in both the dynamic and persistent stores is held in key-value pairs. The configuration agents use the key-value pairs to access configuration information and to update the dynamic store. Applications can use the key-value pairs to define new services and watch for changes in network state or configuration. The schema defines these keys and values and the hierarchy that binds them together to describe specific services. The schema is described in more detail in The Schema: Hierarchy and Definitions. For information on how to use the schema to define new sets or services, see The System Configuration Schema.

The System Configuration framework also contains a full complement of APIs. These APIs include low-level functions an ISP application might use to provide new services and higher-level functions any application can use to connect to a remote host. It is important to remember that if your application is primarily concerned with the reachability of a remote host and subsequent connection to it, knowledge of the System Configuration framework architecture is not essential. Instead, you should focus on the reachability and connection APIs discussed in Determining Reachability and Getting Connected.

The architecture of the System Configuration framework lends itself to other types of dynamic state management, as well. The structure and flexibility of the dynamic store and the interaction of the configuration agents are well suited to the communication of system information, such as power management status. Although it is possible for third-party developers to use the dynamic store structure for purposes other than network configuration, this is not covered in this document. For help with such a project, you should contact Apple Worldwide Developer Relations directly.

System Configuration APIs

The System Configuration framework provides APIs to support a wide range of network applications, from network-aware applications that need to connect to a remote host to ISP and dialer applications.

It’s useful to view the System Configuration APIs as divided into two groups:

Applications that need to find out if a remote host is reachable or establish a PPP connection use the high-level reachability and connection APIs. These APIs combine the power of the System Configuration architecture with the convenience of high-level functions. For more information on these APIs, see Determining Reachability and Getting Connected.

Applications that need to create or duplicate sets, or activate or deactivate services have a more complicated task. They must use the low-level configuration APIs. In addition, to develop these applications you must understand and use the System Configuration schema to interpret and build dictionaries that describe the new sets and services.

It’s also important to realize that to modify network preferences (in other words, to change the persistent store), your application must acquire root privileges. This is not a trivial task; for more information, you can read Authorization Services Programming Guide and review the code samples AuthSample and MoreAuthSample available at http://developer.apple.com/samplecode/Security/idxAuthorization-date.html.

Currently, the low-level configuration APIs are very basic and somewhat difficult to use. In fact, to perform common operations, such as creating a new set, you must combine the System Configuration APIs with I/O Kit access. In future versions of OS X, the System Configuration framework may provide higher-level APIs to perform such network-configuration tasks.

Until then, however, if you’re developing an application that needs to create new sets or activate or deactivate services, you should examine the MoreSCF sample code. Apple’s Developer Technical Support created this sample to provide a library of high-level functions that make performing these tasks comparatively easy. In particular, the MoreSCF sample provides you with some help using the complex System Configuration schema to build set and service dictionaries. Following the lead of this sample, combined with perusal of the System Configuration API reference (available in the Networking Reference Library), should provide a foundation to get you started. In addition, be sure to read The System Configuration Schema to gain an understanding of the keys and values you may have to use.

System Configuration Utilities

You can use the following applications to view and, in some ways, change system configuration information:

You can use the scutil command-line utility to view the dynamic store, monitor notifications, and create and modify dictionaries for testing. Using the Terminal application (located at /Applications/Utilities/Terminal), type scutil at the prompt. For a list of commands, type ‘help’ at the scutil prompt.

The scselect tool is a setuid tool (a tool that has its setuid bit set to allow it to perform privileged operations) that the Apple menu launches to allow a non-privileged user to change locations. scselect is not an API. If your application needs to change locations, you should use the preferences APIs in the System Configuration framework.

For a brief description of Property List Editor, see The Persistent Store.