CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
prepared the code for the addition of the INSTALL rule
[pkgutils-cross.git] / pkgadd.cc
1 //
2 // pkgutils
3 //
4 // Copyright (c) 2000-2005 Per Liden
5 //
6 // This program is free software; you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation; either version 2 of the License, or
9 // (at your option) any later version.
10 //
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
15 //
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
19 // USA.
20 //
21
22 #include "pkgadd.h"
23 #include <fstream>
24 #include <iterator>
25 #include <cstdio>
26 #include <regex.h>
27 #include <unistd.h>
28
29 void pkgadd::run(int argc, char** argv)
30 {
31 //
32 // Check command line options
33 //
34 string o_root;
35 string o_package;
36 bool o_upgrade = false;
37 bool o_force = false;
38
39 for (int i = 1; i < argc; i++) {
40 string option(argv[i]);
41 if (option == "-r" || option == "--root") {
42 assert_argument(argv, argc, i);
43 o_root = argv[i + 1];
44 i++;
45 } else if (option == "-u" || option == "--upgrade") {
46 o_upgrade = true;
47 } else if (option == "-f" || option == "--force") {
48 o_force = true;
49 } else if (option[0] == '-' || !o_package.empty()) {
50 throw runtime_error("invalid option " + option);
51 } else {
52 o_package = option;
53 }
54 }
55
56 if (o_package.empty())
57 throw runtime_error("option missing");
58
59 //
60 // Check UID
61 //
62 if (getuid())
63 throw runtime_error("only root can install/upgrade packages");
64
65 //
66 // Install/upgrade package
67 //
68 {
69 db_lock lock(o_root, true);
70 db_open(o_root);
71
72 pair<string, pkginfo_t> package = pkg_open(o_package);
73 vector<rule_t> config_rules = read_config();
74
75 bool installed = db_find_pkg(package.first);
76 if (installed && !o_upgrade)
77 throw runtime_error("package " + package.first + " already installed (use -u to upgrade)");
78 else if (!installed && o_upgrade)
79 throw runtime_error("package " + package.first + " not previously installed (skip -u to install)");
80
81 set<string> conflicting_files = db_find_conflicts(package.first, package.second);
82
83 if (!conflicting_files.empty()) {
84 if (o_force) {
85 set<string> keep_list;
86 if (o_upgrade) // Don't remove files matching the rules in configuration
87 keep_list = make_keep_list(conflicting_files, config_rules);
88 db_rm_files(conflicting_files, keep_list); // Remove unwanted conflicts
89 } else {
90 copy(conflicting_files.begin(), conflicting_files.end(), ostream_iterator<string>(cerr, "\n"));
91 throw runtime_error("listed file(s) already installed (use -f to ignore and overwrite)");
92 }
93 }
94
95 set<string> keep_list;
96
97 if (o_upgrade) {
98 keep_list = make_keep_list(package.second.files, config_rules);
99 db_rm_pkg(package.first, keep_list);
100 }
101
102 db_add_pkg(package.first, package.second);
103 db_commit();
104 pkg_install(o_package, keep_list);
105 ldconfig();
106 }
107 }
108
109 void pkgadd::print_help() const
110 {
111 cout << "usage: " << utilname << " [options] <file>" << endl
112 << "options:" << endl
113 << " -u, --upgrade upgrade package with the same name" << endl
114 << " -f, --force force install, overwrite conflicting files" << endl
115 << " -r, --root <path> specify alternative installation root" << endl
116 << " -v, --version print version and exit" << endl
117 << " -h, --help print help and exit" << endl;
118 }
119
120 vector<rule_t> pkgadd::read_config() const
121 {
122 vector<rule_t> rules;
123 unsigned int linecount = 0;
124 const string filename = root + PKGADD_CONF;
125 ifstream in(filename.c_str());
126
127 if (in) {
128 while (!in.eof()) {
129 string line;
130 getline(in, line);
131 linecount++;
132 if (!line.empty() && line[0] != '#') {
133 if (line.length() >= PKGADD_CONF_MAXLINE)
134 throw runtime_error(filename + ":" + itos(linecount) + ": line too long, aborting");
135
136 char event[PKGADD_CONF_MAXLINE];
137 char pattern[PKGADD_CONF_MAXLINE];
138 char action[PKGADD_CONF_MAXLINE];
139 char dummy[PKGADD_CONF_MAXLINE];
140 if (sscanf(line.c_str(), "%s %s %s %s", event, pattern, action, dummy) != 3)
141 throw runtime_error(filename + ":" + itos(linecount) + ": wrong number of arguments, aborting");
142
143 if (!strcmp(event, "UPGRADE")) {
144 rule_t rule;
145 rule.event = UPGRADE;
146 rule.pattern = pattern;
147 if (!strcmp(action, "YES")) {
148 rule.action = true;
149 } else if (!strcmp(action, "NO")) {
150 rule.action = false;
151 } else
152 throw runtime_error(filename + ":" + itos(linecount) + ": '" +
153 string(action) + "' unknown action, should be YES or NO, aborting");
154
155 rules.push_back(rule);
156 } else
157 throw runtime_error(filename + ":" + itos(linecount) + ": '" +
158 string(event) + "' unknown event, aborting");
159 }
160 }
161 in.close();
162 }
163
164 #ifndef NDEBUG
165 cerr << "Configuration:" << endl;
166 for (vector<rule_t>::const_iterator j = rules.begin(); j != rules.end(); j++) {
167 cerr << "\t" << (*j).pattern << "\t" << (*j).action << endl;
168 }
169 cerr << endl;
170 #endif
171
172 return rules;
173 }
174
175 set<string> pkgadd::make_keep_list(const set<string>& files, const vector<rule_t>& rules) const
176 {
177 set<string> keep_list;
178 vector<rule_t> found;
179
180 find_rules(rules, UPGRADE, found);
181
182 for (set<string>::const_iterator i = files.begin(); i != files.end(); i++) {
183 for (vector<rule_t>::reverse_iterator j = found.rbegin(); j != found.rend(); j++) {
184 if (rule_applies_to_file(*j, *i)) {
185 if (!(*j).action)
186 keep_list.insert(keep_list.end(), *i);
187
188 break;
189 }
190 }
191 }
192
193 #ifndef NDEBUG
194 cerr << "Keep list:" << endl;
195 for (set<string>::const_iterator j = keep_list.begin(); j != keep_list.end(); j++) {
196 cerr << " " << (*j) << endl;
197 }
198 cerr << endl;
199 #endif
200
201 return keep_list;
202 }
203
204 void pkgadd::find_rules(const vector<rule_t>& rules, rule_event_t event, vector<rule_t>& found) const
205 {
206 for (vector<rule_t>::const_iterator i = rules.begin(); i != rules.end(); i++)
207 if (i->event == event)
208 found.push_back(*i);
209 }
210
211 bool pkgadd::rule_applies_to_file(const rule_t& rule, const string& file) const
212 {
213 regex_t preg;
214 bool ret;
215
216 if (regcomp(&preg, rule.pattern.c_str(), REG_EXTENDED | REG_NOSUB))
217 throw runtime_error("error compiling regular expression '" + rule.pattern + "', aborting");
218
219 ret = !regexec(&preg, file.c_str(), 0, 0, 0);
220 regfree(&preg);
221
222 return ret;
223 }