udev.h revision 065db052211d3bf08d9b0f698a79a8798faf11d2
/*
* Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
* Copyright (C) 2003-2008 Kay Sievers <kay.sievers@vrfy.org>
*
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _UDEV_H_
#define _UDEV_H_
#include "udev-sysdeps.h"
#include "lib/libudev-private.h"
#define DEFAULT_FAKE_PARTITIONS_COUNT 15
#define UDEV_EVENT_TIMEOUT 180
#define UDEV_MAX(a,b) ((a) > (b) ? (a) : (b))
#define READ_END 0
#define WRITE_END 1
static inline void logging_init(const char *program_name)
{
}
{
}
static inline void logging_close(void)
{
closelog();
}
struct udev_event {
struct udev_list_node node;
struct udev_device *dev;
struct udev_device *dev_parent;
char *name;
char *tmp_node;
char *program_result;
struct udev_list_node run_list;
int exitstatus;
unsigned long long int delaying_seqnum;
unsigned int group_final:1;
unsigned int owner_final:1;
unsigned int mode_final:1;
unsigned int name_final:1;
unsigned int devlink_final:1;
unsigned int run_final:1;
unsigned int ignore_device:1;
unsigned int inotify_watch:1;
unsigned int trace:1;
};
struct udev_watch {
struct udev_list_node node;
int handle;
char *name;
};
/* udev-rules.c */
struct udev_rules;
/* udev-event.c */
/* udev-watch.c */
extern int inotify_fd;
/* udev-node.c */
int udev_node_mknod(struct udev_device *dev, const char *file, dev_t devnum, mode_t mode, uid_t uid, gid_t gid);
/* udev-util.c */
/* udev-selinux.c */
#ifndef USE_SELINUX
static inline void udev_selinux_lsetfilecon(struct udev *udev, const char *file, unsigned int mode) {}
static inline void udev_selinux_setfscreatecon(struct udev *udev, const char *file, unsigned int mode) {}
#else
#endif
/* udevadm commands */
#endif