Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(46)

Unified Diff: webkit/glue/plugins/plugin_lib_posix.cc

Issue 1700014: POSIX: Make sure files in plugin directories are regular files. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: address comments Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webkit/glue/plugins/plugin_list_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/plugin_lib_posix.cc
===================================================================
--- webkit/glue/plugins/plugin_lib_posix.cc (revision 45599)
+++ webkit/glue/plugins/plugin_lib_posix.cc (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -9,8 +9,14 @@
#include <sys/exec_elf.h>
#else
#include <elf.h>
+#include <fcntl.h>
#endif
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <unistd.h>
+#include "base/eintr_wrapper.h"
+#include "base/file_util.h"
#include "base/string_util.h"
#include "base/sys_string_conversions.h"
#include "base/utf_string_conversions.h"
@@ -33,16 +39,22 @@
// the current architecture (e.g. 32-bit ELF on 32-bit build).
// Returns false on other errors as well.
bool ELFMatchesCurrentArchitecture(const FilePath& filename) {
- FILE* file = fopen(filename.value().c_str(), "rb");
- if (!file)
+ // First make sure we can open the file and it is in fact, a regular file.
+ struct stat stat_buf;
+ // Open with O_NONBLOCK so we don't block on pipes.
+ int fd = open(filename.value().c_str(), O_RDONLY|O_NONBLOCK);
+ if (fd < 0)
return false;
+ bool ret = (fstat(fd, &stat_buf) >= 0 && S_ISREG(stat_buf.st_mode));
+ if (HANDLE_EINTR(close(fd)) < 0)
+ return false;
+ if (!ret)
+ return false;
- char buffer[5];
- if (fread(buffer, 5, 1, file) != 1) {
- fclose(file);
+ const size_t kELFBufferSize = 5;
+ char buffer[kELFBufferSize];
+ if (!file_util::ReadFile(filename, buffer, kELFBufferSize))
return false;
- }
- fclose(file);
if (buffer[0] != ELFMAG0 ||
buffer[1] != ELFMAG1 ||
« no previous file with comments | « no previous file | webkit/glue/plugins/plugin_list_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698