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

Side by Side Diff: sandbox/linux/services/credentials.h

Issue 55603003: Linux: add a Credentials class to handle Linux capabilities. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 1 month 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 | « sandbox/linux/sandbox_linux_test_sources.gypi ('k') | sandbox/linux/services/credentials.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef SANDBOX_LINUX_SERVICES_CREDENTIALS_H_
6 #define SANDBOX_LINUX_SERVICES_CREDENTIALS_H_
7
8 #include "build/build_config.h"
9 // Link errors are tedious to track, raise a compile-time error instead.
10 #if defined(OS_ANDROID)
11 #error "Android is not supported."
12 #endif // defined(OS_ANDROID).
13
14 #include <string>
15
16 #include "base/basictypes.h"
17 #include "base/memory/scoped_ptr.h"
18
19 namespace sandbox {
20
21 // This class should be used to manipulate the current process' credentials.
22 // It is currently a stub used to manipulate POSIX.1e capabilities as
23 // implemented by the Linux kernel.
24 class Credentials {
25 public:
26 Credentials();
27 ~Credentials();
28
29 // Drop all capabilities in the effective, inheritable and permitted sets for
30 // the current process.
31 void DropAllCapabilities();
32 // Return true iff there is any capability in any of the capabilities sets
33 // of the current process.
34 bool HasAnyCapability();
35 // Returns the capabilities of the current process in textual form, as
36 // documented in libcap2's cap_to_text(3). This is mostly useful for
37 // debugging and tests.
38 scoped_ptr<std::string> GetCurrentCapString();
39
40 private:
41 DISALLOW_COPY_AND_ASSIGN(Credentials);
42 };
43
44 } // namespace sandbox.
45
46 #endif // SANDBOX_LINUX_SERVICES_CREDENTIALS_H_
OLDNEW
« no previous file with comments | « sandbox/linux/sandbox_linux_test_sources.gypi ('k') | sandbox/linux/services/credentials.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698