Overview
| Comment: | of_sandbox_unveil_path_t -> OFSandboxUnveilPath |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | new-naming-convention |
| Files: | files | file ages | folders |
| SHA3-256: |
a85797b5e95d2cce14296fe5a77cbffc |
| User & Date: | js on 2021-04-17 15:04:56 |
| Other Links: | branch diff | manifest | tags |
Context
|
2021-04-17
| ||
| 15:20 | Clean up blocks a little (check-in: 03ea273cb3 user: js tags: new-naming-convention) | |
| 15:04 | of_sandbox_unveil_path_t -> OFSandboxUnveilPath (check-in: a85797b5e9 user: js tags: new-naming-convention) | |
| 15:03 | of_dns_response_records_t -> OFDNSResponseRecords (check-in: 692e623519 user: js tags: new-naming-convention) | |
Changes
Modified src/OFApplication.m from [a312b9ee7c] to [89530fe0bb].
| ︙ | ︙ | |||
603 604 605 606 607 608 609 |
#ifdef OF_HAVE_SANDBOX
- (void)of_activateSandbox: (OFSandbox *)sandbox
{
# ifdef OF_HAVE_PLEDGE
void *pool = objc_autoreleasePoolPush();
OFStringEncoding encoding = [OFLocale encoding];
| | | | 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 |
#ifdef OF_HAVE_SANDBOX
- (void)of_activateSandbox: (OFSandbox *)sandbox
{
# ifdef OF_HAVE_PLEDGE
void *pool = objc_autoreleasePoolPush();
OFStringEncoding encoding = [OFLocale encoding];
OFArray OF_GENERIC(OFSandboxUnveilPath) *unveiledPaths;
size_t unveiledPathsCount;
const char *promises;
if (_activeSandbox != nil && sandbox != _activeSandbox)
@throw [OFInvalidArgumentException exception];
unveiledPaths = sandbox.unveiledPaths;
unveiledPathsCount = unveiledPaths.count;
for (size_t i = sandbox->_unveiledPathsIndex;
i < unveiledPathsCount; i++) {
OFSandboxUnveilPath unveiledPath =
[unveiledPaths objectAtIndex: i];
OFString *path = unveiledPath.firstObject;
OFString *permissions = unveiledPath.secondObject;
if (path == nil || permissions == nil)
@throw [OFInvalidArgumentException exception];
|
| ︙ | ︙ |
Modified src/OFSandbox.h from [45b415f7fe] to [6bf325540a].
| ︙ | ︙ | |||
17 18 19 20 21 22 23 | OF_ASSUME_NONNULL_BEGIN @class OFArray OF_GENERIC(ObjectType); @class OFMutableArray OF_GENERIC(ObjectType); @class OFPair OF_GENERIC(FirstType, SecondType); | | | 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
OF_ASSUME_NONNULL_BEGIN
@class OFArray OF_GENERIC(ObjectType);
@class OFMutableArray OF_GENERIC(ObjectType);
@class OFPair OF_GENERIC(FirstType, SecondType);
typedef OFPair OF_GENERIC(OFString *, OFString *) *OFSandboxUnveilPath;
@interface OFSandbox: OFObject <OFCopying>
{
unsigned int _allowsStdIO: 1;
unsigned int _allowsReadingFiles: 1;
unsigned int _allowsWritingFiles: 1;
unsigned int _allowsCreatingFiles: 1;
|
| ︙ | ︙ | |||
51 52 53 54 55 56 57 | unsigned int _allowsVMInfo: 1; unsigned int _allowsChangingProcessRights: 1; unsigned int _allowsPF: 1; unsigned int _allowsAudio: 1; unsigned int _allowsBPF: 1; unsigned int _allowsUnveil: 1; unsigned int _returnsErrors: 1; | | | 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | unsigned int _allowsVMInfo: 1; unsigned int _allowsChangingProcessRights: 1; unsigned int _allowsPF: 1; unsigned int _allowsAudio: 1; unsigned int _allowsBPF: 1; unsigned int _allowsUnveil: 1; unsigned int _returnsErrors: 1; OFMutableArray OF_GENERIC(OFSandboxUnveilPath) *_unveiledPaths; @public size_t _unveiledPathsIndex; OF_RESERVE_IVARS(OFSandbox, 4) } @property (nonatomic) bool allowsStdIO; @property (nonatomic) bool allowsReadingFiles; |
| ︙ | ︙ | |||
91 92 93 94 95 96 97 | @property (nonatomic) bool allowsBPF; @property (nonatomic) bool allowsUnveil; @property (nonatomic) bool returnsErrors; #ifdef OF_HAVE_PLEDGE @property (readonly, nonatomic) OFString *pledgeString; #endif @property (readonly, nonatomic) | | | 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
@property (nonatomic) bool allowsBPF;
@property (nonatomic) bool allowsUnveil;
@property (nonatomic) bool returnsErrors;
#ifdef OF_HAVE_PLEDGE
@property (readonly, nonatomic) OFString *pledgeString;
#endif
@property (readonly, nonatomic)
OFArray OF_GENERIC(OFSandboxUnveilPath) *unveiledPaths;
+ (instancetype)sandbox;
- (void)unveilPath: (OFString *)path permissions: (OFString *)permissions;
@end
OF_ASSUME_NONNULL_END
|
Modified src/OFSandbox.m from [0adf8a4901] to [b1b81d67f2].
| ︙ | ︙ | |||
593 594 595 596 597 598 599 | [_unveiledPaths addObject: [OFPair pairWithFirstObject: path secondObject: permissions]]; objc_autoreleasePoolPop(pool); } | | | 593 594 595 596 597 598 599 600 601 602 603 604 |
[_unveiledPaths addObject: [OFPair pairWithFirstObject: path
secondObject: permissions]];
objc_autoreleasePoolPop(pool);
}
- (OFArray OF_GENERIC(OFSandboxUnveilPath) *)unveiledPaths
{
return [[_unveiledPaths copy] autorelease];
}
@end
|