X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=lib%2Futils_loop.c;h=640d95be8dd9bf7c1d4a02e198693b2e1867c34f;hb=db8b6d46a8783e3bb1ab9f9d96e33f840ea1a40f;hp=123154b97571b081c8db913489c72061b2eb4479;hpb=4d99773009fc5d644cfffd4ef84ed5f80372672d;p=platform%2Fupstream%2Fcryptsetup.git diff --git a/lib/utils_loop.c b/lib/utils_loop.c index 123154b..640d95b 100644 --- a/lib/utils_loop.c +++ b/lib/utils_loop.c @@ -1,11 +1,13 @@ /* * loopback block device utilities * - * Copyright (C) 2011, Red Hat, Inc. All rights reserved. + * Copyright (C) 2011-2012, Red Hat, Inc. All rights reserved. + * Copyright (C) 2009-2012, Milan Broz * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License - * version 2 as published by the Free Software Foundation. + * 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 @@ -14,7 +16,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include @@ -25,7 +27,11 @@ #include #include #include +#include #include +#ifdef HAVE_SYS_SYSMACROS_H +#include /* for major, minor */ +#endif #include "utils_loop.h" @@ -43,13 +49,10 @@ static char *crypt_loop_get_device_old(void) { char dev[20]; int i, loop_fd; - struct stat st; struct loop_info64 lo64 = {0}; for (i = 0; i < 256; i++) { sprintf(dev, "/dev/loop%d", i); - if (stat(dev, &st) || !S_ISBLK(st.st_mode)) - return NULL; loop_fd = open(dev, O_RDONLY); if (loop_fd < 0) @@ -99,7 +102,7 @@ int crypt_loop_attach(const char *loop, const char *file, int offset, int loop_fd = -1, file_fd = -1, r = 1; file_fd = open(file, (*readonly ? O_RDONLY : O_RDWR) | O_EXCL); - if (file_fd < 0 && errno == EROFS && !*readonly) { + if (file_fd < 0 && (errno == EROFS || errno == EACCES) && !*readonly) { *readonly = 1; file_fd = open(file, O_RDONLY | O_EXCL); }