blob: 6907e98148ceec32d8f255881f5c2a7cc54f2fad [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{
Denis Vlasenko6bef3d12007-11-06 03:05:54 +000015 int m, f, fd;
Eric Andersenaad1a882001-03-16 22:47:14 +000016
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 */
Denis Vlasenko6bef3d12007-11-06 03:05:54 +000021 for (f = 0; f < 5; f++) {
22 fd = open(device, m, 0600);
23 if (fd >= 0)
Eric Andersenaad1a882001-03-16 22:47:14 +000024 break;
Denis Vlasenko6bef3d12007-11-06 03:05:54 +000025 }
Eric Andersenaad1a882001-03-16 22:47:14 +000026 if (fd < 0)
27 return fd;
28 /* Reset original flags. */
29 if (m != mode)
30 fcntl(fd, F_SETFL, mode);
31 return fd;
32}