blob: d34557b5a895253f6f19304ae6da1a8864f09c75 [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 */
23 for (f = 0; f < 5; f++)
24 if ((fd = open(device, m, 0600)) >= 0)
25 break;
26 if (fd < 0)
27 return fd;
28 /* Reset original flags. */
29 if (m != mode)
30 fcntl(fd, F_SETFL, mode);
31 return fd;
32}