blob: c788b698261af83280668d99db6e40154a4b53ce [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/* vi: set sw=4 ts=4: */
2/*
3 * Utility routines.
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersenaad1a882001-03-16 22:47:14 +00006 *
Bernhard Reutner-Fischerb1629b12006-05-19 19:29:19 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersenaad1a882001-03-16 22:47:14 +00008 */
9
10#include <stdio.h>
11#include <fcntl.h>
12#include "libbb.h"
13
14
15/* try to open up the specified device */
Rob Landleydfba7412006-03-06 20:47:33 +000016int device_open(const char *device, int mode)
Eric Andersenaad1a882001-03-16 22:47:14 +000017{
18 int m, f, fd = -1;
19
20 m = mode | O_NONBLOCK;
21
22 /* Retry up to 5 times */
Denis Vlasenkobd8f43d2006-09-08 17:31:55 +000023 /* TODO: explain why it can't be considered insane */
Eric Andersenaad1a882001-03-16 22:47:14 +000024 for (f = 0; f < 5; f++)
25 if ((fd = open(device, m, 0600)) >= 0)
26 break;
27 if (fd < 0)
28 return fd;
29 /* Reset original flags. */
30 if (m != mode)
31 fcntl(fd, F_SETFL, mode);
32 return fd;
33}