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

Side by Side Diff: sandbox/linux/suid/linux_util.h

Issue 10492006: Setuid sandbox API versioning (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase on current state of tree Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/zygote/zygote_main_linux.cc ('k') | sandbox/linux/suid/sandbox.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // The following is duplicated from base/linux_utils.h. 5 // The following is duplicated from base/linux_utils.h.
6 // We shouldn't link against C++ code in a setuid binary. 6 // We shouldn't link against C++ code in a setuid binary.
7 7
8 #ifndef SANDBOX_LINUX_SUID_LINUX_UTIL_H_ 8 #ifndef SANDBOX_LINUX_SUID_LINUX_UTIL_H_
9 #define SANDBOX_LINUX_SUID_LINUX_UTIL_H_ 9 #define SANDBOX_LINUX_SUID_LINUX_UTIL_H_
10 10
11 #include <stdbool.h> 11 #include <stdbool.h>
12 #include <sys/types.h> 12 #include <sys/types.h>
13 13
14 static const char kFindInodeSwitch[] = "--find-inode"; 14 static const char kFindInodeSwitch[] = "--find-inode";
15 static const char kSuidSandboxGetApiSwitch[] = "--get-api";
15 16
16 // Find the process which holds the given socket, named by inode number. If 17 // Find the process which holds the given socket, named by inode number. If
17 // multiple processes hold the socket, this function returns false. 18 // multiple processes hold the socket, this function returns false.
18 bool FindProcessHoldingSocket(pid_t* pid_out, ino_t socket_inode); 19 bool FindProcessHoldingSocket(pid_t* pid_out, ino_t socket_inode);
19 20
20 #endif // SANDBOX_LINUX_SUID_LINUX_UTIL_H_ 21 #endif // SANDBOX_LINUX_SUID_LINUX_UTIL_H_
OLDNEW
« no previous file with comments | « content/zygote/zygote_main_linux.cc ('k') | sandbox/linux/suid/sandbox.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698