blob: 2b35ad8a3379f24adf8199f301ad01e62f0bf387 [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
Eric Andersenaad1a882001-03-16 22:47:14 +000010#include "libbb.h"
11
Eric Andersenaad1a882001-03-16 22:47:14 +000012/* try to open up the specified device */
Rob Landleydfba7412006-03-06 20:47:33 +000013int device_open(const char *device, int mode)
Eric Andersenaad1a882001-03-16 22:47:14 +000014{
15 int m, f, fd = -1;
16
17 m = mode | O_NONBLOCK;
18
19 /* Retry up to 5 times */
Denis Vlasenkobd8f43d2006-09-08 17:31:55 +000020 /* TODO: explain why it can't be considered insane */
Eric Andersenaad1a882001-03-16 22:47:14 +000021 for (f = 0; f < 5; f++)
22 if ((fd = open(device, m, 0600)) >= 0)
23 break;
24 if (fd < 0)
25 return fd;
26 /* Reset original flags. */
27 if (m != mode)
28 fcntl(fd, F_SETFL, mode);
29 return fd;
30}