forked from SelfControlApp/selfcontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHostFileBlocker.m
More file actions
executable file
·143 lines (108 loc) · 4.07 KB
/
HostFileBlocker.m
File metadata and controls
executable file
·143 lines (108 loc) · 4.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
//
// HostFileBlocker.m
// SelfControl
//
// Created by Charlie Stigler on 4/28/09.
// Copyright 2009 Eyebeam.
// This file is part of SelfControl.
//
// SelfControl is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 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
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#import "HostFileBlocker.h"
NSString* const kHostFileBlockerPath = @"/etc/hosts";
NSString* const kHostFileBlockerSelfControlHeader = @"# BEGIN SELFCONTROL BLOCK";
NSString* const kHostFileBlockerSelfControlFooter = @"# END SELFCONTROL BLOCK";
@implementation HostFileBlocker
- (HostFileBlocker*)init {
if(self = [super init]) {
fileMan = [[[NSFileManager alloc] init] autorelease];
strLock = [[NSLock alloc] init];
newFileContents = [NSMutableString stringWithContentsOfFile: kHostFileBlockerPath usedEncoding: &stringEnc error: NULL];
if(!newFileContents)
return nil;
}
return self;
}
- (void)dealloc {
[strLock release], strLock = nil;
[super dealloc];
}
- (BOOL)revertFileContentsToDisk {
[strLock lock];
newFileContents = [NSMutableString stringWithContentsOfFile: kHostFileBlockerPath usedEncoding: &stringEnc error: NULL];
BOOL ret;
if(newFileContents) ret = YES;
else ret = NO;
[strLock unlock];
return ret;
}
- (BOOL)writeNewFileContents {
[strLock lock];
BOOL ret = [newFileContents writeToFile: kHostFileBlockerPath atomically: YES encoding: stringEnc error: NULL];
[strLock unlock];
return ret;
}
- (BOOL)createBackupHostsFile {
NSLog(@"CREATE BACKUP HOSTS FILE!");
[self deleteBackupHostsFile];
if(![fileMan isReadableFileAtPath: @"/etc/hosts"] || [fileMan fileExistsAtPath: @"/etc/hosts.bak"]) {
return NO;
}
return [fileMan copyItemAtPath: @"/etc/hosts" toPath: @"/etc/hosts.bak" error: nil];
}
- (BOOL)deleteBackupHostsFile {
if(![fileMan isDeletableFileAtPath: @"/etc/hosts.bak"])
return NO;
return [fileMan removeItemAtPath: @"/etc/hosts.bak" error: nil];
}
- (BOOL)restoreBackupHostsFile {
if(![fileMan removeItemAtPath: @"/etc/hosts" error: nil])
return NO;
if(![fileMan isReadableFileAtPath: @"/etc/hosts.bak"] || ![fileMan moveItemAtPath: @"/etc/hosts.bak" toPath: @"/etc/hosts" error: nil])
return NO;
return YES;
}
- (void)addSelfControlBlockHeader {
[strLock lock];
[newFileContents appendString: @"\n"];
[newFileContents appendString: kHostFileBlockerSelfControlHeader];
[newFileContents appendString: @"\n"];
[strLock unlock];
}
- (void)addSelfControlBlockFooter {
[strLock lock];
[newFileContents appendString: kHostFileBlockerSelfControlFooter];
[newFileContents appendString: @"\n"];
[strLock unlock];
}
- (void)addRuleBlockingDomain:(NSString*)domainName {
[strLock lock];
[newFileContents appendString: [NSString stringWithFormat: @"0.0.0.0\t%@\n", domainName]];
[newFileContents appendString: [NSString stringWithFormat: @"::\t%@\n", domainName]];
[strLock unlock];
}
- (BOOL)containsSelfControlBlock {
[strLock lock];
BOOL ret = ([newFileContents rangeOfString: kHostFileBlockerSelfControlHeader].location != NSNotFound);
[strLock unlock];
return ret;
}
- (void)removeSelfControlBlock {
if(![self containsSelfControlBlock])
return;
[strLock lock];
NSRange startRange = [newFileContents rangeOfString: kHostFileBlockerSelfControlHeader];
NSRange endRange = [newFileContents rangeOfString: kHostFileBlockerSelfControlFooter];
NSRange deleteRange = NSMakeRange(startRange.location - 1, ((endRange.location + endRange.length) - startRange.location) + 2);
[newFileContents deleteCharactersInRange: deleteRange];
[strLock unlock];
}
@end