]>
git.saurik.com Git - apple/xnu.git/blob - bsd/miscfs/devfs/devfs.h
2 * Copyright (c) 2000-2002 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright 1997,1998 Julian Elischer. All rights reserved.
32 * Redistribution and use in source and binary forms, with or without
33 * modification, are permitted provided that the following conditions are
35 * 1. Redistributions of source code must retain the above copyright
36 * notice, this list of conditions and the following disclaimer.
37 * 2. Redistributions in binary form must reproduce the above copyright notice,
38 * this list of conditions and the following disclaimer in the documentation
39 * and/or other materials provided with the distribution.
41 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER ``AS IS'' AND ANY EXPRESS
42 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
43 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
44 * DISCLAIMED. IN NO EVENT SHALL THE HOLDER OR CONTRIBUTORS BE LIABLE FOR
45 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
46 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
47 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
48 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
53 * miscfs/devfs/devfs.h
56 #ifndef _MISCFS_DEVFS_DEVFS_H_
57 #define _MISCFS_DEVFS_DEVFS_H_
59 #include <sys/appleapiopts.h>
65 * Argument to clone callback after dev
67 #define DEVFS_CLONE_ALLOC 1 /* Allocate minor number slot */
68 #define DEVFS_CLONE_FREE 0 /* Free minor number slot */
73 * Function: devfs_make_node_clone
76 * Create a device node with the given pathname in the devfs namespace;
77 * before returning a dev_t value for an open instance, the dev_t has
78 * it's minor number updated by calling the supplied clone function on
82 * dev - the dev_t value to associate
83 * chrblk - block or character device (DEVFS_CHAR or DEVFS_BLOCK)
84 * uid, gid - ownership
86 * clone - minor number cloning function
87 * fmt, ... - print format string and args to format the path name
89 * A handle to a device node if successful, NULL otherwise.
91 void * devfs_make_node_clone(dev_t dev
, int chrblk
, uid_t uid
, gid_t gid
,
92 int perms
, int (*clone
)(dev_t dev
, int action
),
93 const char *fmt
, ...);
96 * Function: devfs_make_node
99 * Create a device node with the given pathname in the devfs namespace.
102 * dev - the dev_t value to associate
103 * chrblk - block or character device (DEVFS_CHAR or DEVFS_BLOCK)
104 * uid, gid - ownership
105 * perms - permissions
106 * fmt, ... - print format string and args to format the path name
108 * A handle to a device node if successful, NULL otherwise.
110 void * devfs_make_node(dev_t dev
, int chrblk
, uid_t uid
, gid_t gid
,
111 int perms
, const char *fmt
, ...);
113 #ifdef BSD_KERNEL_PRIVATE
115 * Function: devfs_make_link
118 * Create a link to a previously created device node.
121 * 0 if successful, -1 if failed
123 int devfs_make_link(void * handle
, char *fmt
, ...);
124 #endif /* BSD_KERNEL_PRIVATE */
127 * Function: devfs_remove
130 * Remove the device node returned by devfs_make_node() along with
131 * any links created with devfs_make_link().
133 void devfs_remove(void * handle
);
137 #ifdef __APPLE_API_PRIVATE
147 #define GID_OPERATOR 5
150 #define GID_DIALER 68
151 #endif /* __APPLE_API_PRIVATE */
153 #endif /* !_MISCFS_DEVFS_DEVFS_H_ */