2003-03-13 16:28:32 +00:00
|
|
|
#include <iostream>
|
2003-03-14 16:43:14 +00:00
|
|
|
#include <fstream>
|
2003-03-13 16:28:32 +00:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
2003-03-14 16:43:14 +00:00
|
|
|
#include <sstream>
|
|
|
|
#include <list>
|
2003-03-24 17:49:56 +00:00
|
|
|
#include <vector>
|
|
|
|
#include <set>
|
2003-03-24 11:50:20 +00:00
|
|
|
#include <map>
|
2003-03-14 16:43:14 +00:00
|
|
|
#include <cstdio>
|
2003-03-13 16:28:32 +00:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
#include <db4/db_cxx.h>
|
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
extern "C" {
|
|
|
|
#include "md5.h"
|
|
|
|
}
|
|
|
|
|
2003-03-13 16:28:32 +00:00
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
#define PKGINFO_ENVVAR "NIX_DB"
|
2003-03-13 16:28:32 +00:00
|
|
|
#define PKGINFO_PATH "/pkg/sys/var/pkginfo"
|
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
#define PKGHOME_ENVVAR "NIX_PKGHOME"
|
|
|
|
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
static string dbRefs = "refs";
|
|
|
|
static string dbInstPkgs = "pkginst";
|
|
|
|
|
|
|
|
|
2003-03-13 16:28:32 +00:00
|
|
|
static string prog;
|
|
|
|
static string dbfile = PKGINFO_PATH;
|
|
|
|
|
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
static string pkgHome = "/pkg";
|
|
|
|
|
|
|
|
|
2003-03-24 12:49:40 +00:00
|
|
|
static string thisSystem = SYSTEM;
|
|
|
|
|
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
class Error : public exception
|
|
|
|
{
|
|
|
|
string err;
|
|
|
|
public:
|
|
|
|
Error(string _err) { err = _err; }
|
|
|
|
~Error() throw () { };
|
|
|
|
const char * what() const throw () { return err.c_str(); }
|
|
|
|
};
|
|
|
|
|
|
|
|
class UsageError : public Error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
UsageError(string _err) : Error(_err) { };
|
|
|
|
};
|
|
|
|
|
2003-03-21 15:53:35 +00:00
|
|
|
class BadRefError : public Error
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
BadRefError(string _err) : Error(_err) { };
|
|
|
|
};
|
2003-03-20 16:53:00 +00:00
|
|
|
|
2003-03-21 15:53:35 +00:00
|
|
|
|
|
|
|
/* Wrapper classes that ensures that the database is closed upon
|
2003-03-14 16:43:14 +00:00
|
|
|
object destruction. */
|
2003-03-13 16:28:32 +00:00
|
|
|
class Db2 : public Db
|
|
|
|
{
|
|
|
|
public:
|
2003-03-21 15:53:35 +00:00
|
|
|
Db2(DbEnv *env, u_int32_t flags) : Db(env, flags) { }
|
|
|
|
~Db2() { close(0); }
|
|
|
|
};
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-21 15:53:35 +00:00
|
|
|
|
|
|
|
class DbcClose
|
|
|
|
{
|
|
|
|
Dbc * cursor;
|
|
|
|
public:
|
|
|
|
DbcClose(Dbc * c) : cursor(c) { }
|
|
|
|
~DbcClose() { cursor->close(); }
|
2003-03-13 16:28:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
auto_ptr<Db2> openDB(const string & dbname, bool readonly)
|
|
|
|
{
|
|
|
|
auto_ptr<Db2> db;
|
|
|
|
|
|
|
|
db = auto_ptr<Db2>(new Db2(0, 0));
|
|
|
|
|
|
|
|
db->open(dbfile.c_str(), dbname.c_str(),
|
|
|
|
DB_HASH, readonly ? DB_RDONLY : DB_CREATE, 0666);
|
|
|
|
|
|
|
|
return db;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool queryDB(const string & dbname, const string & key, string & data)
|
|
|
|
{
|
|
|
|
int err;
|
|
|
|
auto_ptr<Db2> db = openDB(dbname, true);
|
|
|
|
|
|
|
|
Dbt kt((void *) key.c_str(), key.length());
|
|
|
|
Dbt dt;
|
|
|
|
|
|
|
|
err = db->get(0, &kt, &dt, 0);
|
|
|
|
if (err) return false;
|
|
|
|
|
|
|
|
data = string((char *) dt.get_data(), dt.get_size());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void setDB(const string & dbname, const string & key, const string & data)
|
|
|
|
{
|
|
|
|
auto_ptr<Db2> db = openDB(dbname, false);
|
|
|
|
Dbt kt((void *) key.c_str(), key.length());
|
|
|
|
Dbt dt((void *) data.c_str(), data.length());
|
|
|
|
db->put(0, &kt, &dt, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void delDB(const string & dbname, const string & key)
|
|
|
|
{
|
|
|
|
auto_ptr<Db2> db = openDB(dbname, false);
|
|
|
|
Dbt kt((void *) key.c_str(), key.length());
|
|
|
|
db->del(0, &kt, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-21 15:53:35 +00:00
|
|
|
typedef pair<string, string> DBPair;
|
|
|
|
typedef list<DBPair> DBPairs;
|
|
|
|
|
|
|
|
|
|
|
|
void enumDB(const string & dbname, DBPairs & contents)
|
|
|
|
{
|
|
|
|
auto_ptr<Db2> db = openDB(dbname, false);
|
|
|
|
|
|
|
|
Dbc * cursor;
|
|
|
|
db->cursor(0, &cursor, 0);
|
|
|
|
DbcClose cursorCloser(cursor);
|
|
|
|
|
|
|
|
Dbt kt, dt;
|
|
|
|
while (cursor->get(&kt, &dt, DB_NEXT) != DB_NOTFOUND) {
|
|
|
|
string key((char *) kt.get_data(), kt.get_size());
|
|
|
|
string data((char *) dt.get_data(), dt.get_size());
|
|
|
|
contents.push_back(DBPair(key, data));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
string printHash(unsigned char * buf)
|
|
|
|
{
|
|
|
|
ostringstream str;
|
|
|
|
for (int i = 0; i < 16; i++) {
|
|
|
|
str.fill('0');
|
|
|
|
str.width(2);
|
|
|
|
str << hex << (int) buf[i];
|
|
|
|
}
|
|
|
|
return str.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
/* Verify that a reference is valid (that is, is a MD5 hash code). */
|
2003-03-24 17:49:56 +00:00
|
|
|
void checkHash(const string & s)
|
2003-03-13 16:28:32 +00:00
|
|
|
{
|
2003-03-14 16:43:14 +00:00
|
|
|
string err = "invalid reference: " + s;
|
|
|
|
if (s.length() != 32)
|
2003-03-21 15:53:35 +00:00
|
|
|
throw BadRefError(err);
|
2003-03-14 16:43:14 +00:00
|
|
|
for (int i = 0; i < 32; i++) {
|
|
|
|
char c = s[i];
|
|
|
|
if (!((c >= '0' && c <= '9') ||
|
|
|
|
(c >= 'a' && c <= 'f')))
|
2003-03-21 15:53:35 +00:00
|
|
|
throw BadRefError(err);
|
2003-03-14 16:43:14 +00:00
|
|
|
}
|
|
|
|
}
|
2003-03-13 16:28:32 +00:00
|
|
|
|
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
/* Compute the MD5 hash of a file. */
|
2003-03-24 17:49:56 +00:00
|
|
|
string hashFile(string filename)
|
2003-03-14 16:43:14 +00:00
|
|
|
{
|
2003-03-24 17:49:56 +00:00
|
|
|
unsigned char hash[16];
|
|
|
|
FILE * file = fopen(filename.c_str(), "rb");
|
|
|
|
if (!file)
|
|
|
|
throw BadRefError("file `" + filename + "' does not exist");
|
|
|
|
int err = md5_stream(file, hash);
|
|
|
|
fclose(file);
|
|
|
|
if (err) throw BadRefError("cannot hash file");
|
|
|
|
return printHash(hash);
|
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
typedef map<string, string> Params;
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
void readPkgDescr(const string & hash,
|
|
|
|
Params & pkgImports, Params & fileImports, Params & arguments)
|
|
|
|
{
|
|
|
|
string pkgfile;
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
if (!queryDB(dbRefs, hash, pkgfile))
|
|
|
|
throw Error("unknown package " + hash);
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
// cerr << "reading information about " + hash + " from " + pkgfile + "\n";
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
/* Verify that the file hasn't changed. !!! race */
|
|
|
|
if (hashFile(pkgfile) != hash)
|
|
|
|
throw Error("file " + pkgfile + " is stale");
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
ifstream file;
|
|
|
|
file.exceptions(ios::badbit);
|
|
|
|
file.open(pkgfile.c_str());
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
while (!file.eof()) {
|
|
|
|
string line;
|
|
|
|
getline(file, line);
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
int n = line.find('#');
|
|
|
|
if (n >= 0) line = line.erase(n);
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
if ((int) line.find_first_not_of(" ") < 0) continue;
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
istringstream str(line);
|
|
|
|
|
|
|
|
string name, op, ref;
|
|
|
|
str >> name >> op >> ref;
|
|
|
|
|
2003-03-24 12:49:40 +00:00
|
|
|
if (op == "<-") {
|
2003-03-24 17:49:56 +00:00
|
|
|
checkHash(ref);
|
|
|
|
pkgImports[name] = ref;
|
2003-03-24 12:49:40 +00:00
|
|
|
} else if (op == "=") {
|
2003-03-24 17:49:56 +00:00
|
|
|
checkHash(ref);
|
|
|
|
fileImports[name] = ref;
|
2003-03-24 12:49:40 +00:00
|
|
|
} else if (op == ":")
|
2003-03-24 17:49:56 +00:00
|
|
|
arguments[name] = ref;
|
2003-03-20 16:53:00 +00:00
|
|
|
else throw Error("invalid operator " + op);
|
2003-03-14 16:43:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-23 23:24:09 +00:00
|
|
|
string getPkg(string hash);
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
|
2003-03-24 11:50:20 +00:00
|
|
|
typedef map<string, string> Environment;
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
|
2003-03-24 11:50:20 +00:00
|
|
|
void fetchDeps(string hash, Environment & env)
|
2003-03-14 16:43:14 +00:00
|
|
|
{
|
|
|
|
/* Read the package description file. */
|
2003-03-24 12:49:40 +00:00
|
|
|
Params pkgImports, fileImports, arguments;
|
2003-03-24 17:49:56 +00:00
|
|
|
readPkgDescr(hash, pkgImports, fileImports, arguments);
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
/* Recursively fetch all the dependencies, filling in the
|
|
|
|
environment as we go along. */
|
2003-03-24 12:49:40 +00:00
|
|
|
for (Params::iterator it = pkgImports.begin();
|
2003-03-14 16:43:14 +00:00
|
|
|
it != pkgImports.end(); it++)
|
|
|
|
{
|
|
|
|
cerr << "fetching package dependency "
|
2003-03-24 12:49:40 +00:00
|
|
|
<< it->first << " <- " << it->second
|
2003-03-14 16:43:14 +00:00
|
|
|
<< endl;
|
2003-03-24 12:49:40 +00:00
|
|
|
env[it->first] = getPkg(it->second);
|
2003-03-14 16:43:14 +00:00
|
|
|
}
|
|
|
|
|
2003-03-24 12:49:40 +00:00
|
|
|
for (Params::iterator it = fileImports.begin();
|
2003-03-14 16:43:14 +00:00
|
|
|
it != fileImports.end(); it++)
|
|
|
|
{
|
|
|
|
cerr << "fetching file dependency "
|
2003-03-24 12:49:40 +00:00
|
|
|
<< it->first << " = " << it->second
|
2003-03-14 16:43:14 +00:00
|
|
|
<< endl;
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
string file;
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-24 12:49:40 +00:00
|
|
|
if (!queryDB(dbRefs, it->second, file))
|
|
|
|
throw Error("unknown file " + it->second);
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
if (hashFile(file) != it->second)
|
2003-03-20 16:53:00 +00:00
|
|
|
throw Error("file " + file + " is stale");
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-24 12:49:40 +00:00
|
|
|
env[it->first] = file;
|
2003-03-14 16:43:14 +00:00
|
|
|
}
|
2003-03-24 12:49:40 +00:00
|
|
|
|
|
|
|
string buildSystem;
|
|
|
|
|
|
|
|
for (Params::iterator it = arguments.begin();
|
|
|
|
it != arguments.end(); it++)
|
|
|
|
{
|
|
|
|
env[it->first] = it->second;
|
|
|
|
if (it->first == "system")
|
|
|
|
buildSystem = it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (buildSystem != thisSystem)
|
|
|
|
throw Error("descriptor requires a `" + buildSystem +
|
|
|
|
"' but I am a `" + thisSystem + "'");
|
2003-03-24 11:50:20 +00:00
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
|
2003-03-24 11:50:20 +00:00
|
|
|
string getFromEnv(const Environment & env, const string & key)
|
|
|
|
{
|
|
|
|
Environment::const_iterator it = env.find(key);
|
|
|
|
if (it == env.end())
|
|
|
|
throw Error("key " + key + " not found in the environment");
|
|
|
|
return it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void installPkg(string hash)
|
|
|
|
{
|
|
|
|
string pkgfile;
|
|
|
|
string src;
|
|
|
|
string path;
|
|
|
|
string cmd;
|
|
|
|
string builder;
|
|
|
|
Environment env;
|
|
|
|
|
|
|
|
/* Fetch dependencies. */
|
|
|
|
fetchDeps(hash, env);
|
|
|
|
|
|
|
|
builder = getFromEnv(env, "build");
|
2003-03-24 12:49:40 +00:00
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
/* Construct a path for the installed package. */
|
2003-03-23 23:24:09 +00:00
|
|
|
path = pkgHome + "/" + hash;
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
/* Create the path. */
|
|
|
|
if (mkdir(path.c_str(), 0777))
|
2003-03-20 16:53:00 +00:00
|
|
|
throw Error("unable to create directory " + path);
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
try {
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
/* Fork a child to build the package. */
|
|
|
|
pid_t pid;
|
|
|
|
switch (pid = fork()) {
|
|
|
|
|
|
|
|
case -1:
|
|
|
|
throw Error("unable to fork");
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
case 0: { /* child */
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
/* Go to the build directory. */
|
|
|
|
if (chdir(path.c_str())) {
|
|
|
|
cout << "unable to chdir to package directory\n";
|
|
|
|
_exit(1);
|
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
/* Fill in the environment. We don't bother freeing the
|
|
|
|
strings, since we'll exec or die soon anyway. */
|
|
|
|
const char * env2[env.size() + 1];
|
|
|
|
int i = 0;
|
|
|
|
for (Environment::iterator it = env.begin();
|
|
|
|
it != env.end(); it++, i++)
|
|
|
|
env2[i] = (new string(it->first + "=" + it->second))->c_str();
|
|
|
|
env2[i] = 0;
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
/* Execute the builder. This should not return. */
|
|
|
|
execle(builder.c_str(), builder.c_str(), 0, env2);
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
cout << strerror(errno) << endl;
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
cout << "unable to execute builder\n";
|
2003-03-23 23:24:09 +00:00
|
|
|
_exit(1); }
|
2003-03-20 16:53:00 +00:00
|
|
|
|
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
/* parent */
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
/* Wait for the child to finish. */
|
|
|
|
int status;
|
|
|
|
if (waitpid(pid, &status, 0) != pid)
|
|
|
|
throw Error("unable to wait for child");
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
if (!WIFEXITED(status) || WEXITSTATUS(status) != 0)
|
|
|
|
throw Error("unable to build package");
|
|
|
|
|
|
|
|
} catch (exception &) {
|
|
|
|
system(("rm -rf " + path).c_str());
|
|
|
|
throw;
|
|
|
|
}
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-23 23:24:09 +00:00
|
|
|
setDB(dbInstPkgs, hash, path);
|
2003-03-14 16:43:14 +00:00
|
|
|
}
|
|
|
|
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-23 23:24:09 +00:00
|
|
|
string getPkg(string hash)
|
2003-03-14 16:43:14 +00:00
|
|
|
{
|
|
|
|
string path;
|
2003-03-24 17:49:56 +00:00
|
|
|
checkHash(hash);
|
2003-03-23 23:24:09 +00:00
|
|
|
while (!queryDB(dbInstPkgs, hash, path))
|
|
|
|
installPkg(hash);
|
2003-03-14 16:43:14 +00:00
|
|
|
return path;
|
2003-03-13 16:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-28 09:53:22 +00:00
|
|
|
void runPkg(string hash, const vector<string> & args)
|
2003-03-23 23:24:09 +00:00
|
|
|
{
|
|
|
|
string src;
|
|
|
|
string path;
|
|
|
|
string cmd;
|
|
|
|
string runner;
|
|
|
|
Environment env;
|
|
|
|
|
2003-03-24 11:50:20 +00:00
|
|
|
/* Fetch dependencies. */
|
|
|
|
fetchDeps(hash, env);
|
2003-03-23 23:24:09 +00:00
|
|
|
|
2003-03-24 11:50:20 +00:00
|
|
|
runner = getFromEnv(env, "run");
|
|
|
|
|
2003-03-28 10:33:34 +00:00
|
|
|
/* Fill in the environment. We don't bother freeing the
|
|
|
|
strings, since we'll exec or die soon anyway. */
|
|
|
|
for (Environment::iterator it = env.begin();
|
|
|
|
it != env.end(); it++)
|
|
|
|
{
|
|
|
|
string * s = new string(it->first + "=" + it->second);
|
|
|
|
putenv((char *) s->c_str());
|
2003-03-23 23:24:09 +00:00
|
|
|
}
|
|
|
|
|
2003-03-28 10:33:34 +00:00
|
|
|
/* Create the list of arguments. */
|
|
|
|
const char * args2[env.size() + 2];
|
|
|
|
int i = 0;
|
|
|
|
args2[i++] = runner.c_str();
|
|
|
|
for (vector<string>::const_iterator it = args.begin();
|
|
|
|
it != args.end(); it++, i++)
|
|
|
|
args2[i] = it->c_str();
|
|
|
|
args2[i] = 0;
|
2003-03-23 23:24:09 +00:00
|
|
|
|
2003-03-28 10:33:34 +00:00
|
|
|
/* Execute the runner. This should not return. */
|
|
|
|
execv(runner.c_str(), (char * *) args2);
|
|
|
|
|
|
|
|
cout << strerror(errno) << endl;
|
|
|
|
throw Error("unable to execute runner");
|
2003-03-23 23:24:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
void ensurePkg(string hash)
|
|
|
|
{
|
|
|
|
Params pkgImports, fileImports, arguments;
|
|
|
|
readPkgDescr(hash, pkgImports, fileImports, arguments);
|
|
|
|
|
|
|
|
if (fileImports.find("build") != fileImports.end())
|
|
|
|
getPkg(hash);
|
|
|
|
else if (fileImports.find("run") != fileImports.end()) {
|
|
|
|
Environment env;
|
|
|
|
fetchDeps(hash, env);
|
|
|
|
} else throw Error("invalid descriptor");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
string absPath(string filename)
|
2003-03-13 16:28:32 +00:00
|
|
|
{
|
2003-03-14 16:43:14 +00:00
|
|
|
if (filename[0] != '/') {
|
|
|
|
char buf[PATH_MAX];
|
|
|
|
if (!getcwd(buf, sizeof(buf)))
|
2003-03-20 16:53:00 +00:00
|
|
|
throw Error("cannot get cwd");
|
2003-03-14 16:43:14 +00:00
|
|
|
filename = string(buf) + "/" + filename;
|
|
|
|
/* !!! canonicalise */
|
|
|
|
}
|
|
|
|
return filename;
|
|
|
|
}
|
2003-03-13 16:28:32 +00:00
|
|
|
|
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
void registerFile(string filename)
|
|
|
|
{
|
|
|
|
filename = absPath(filename);
|
2003-03-24 17:49:56 +00:00
|
|
|
setDB(dbRefs, hashFile(filename), filename);
|
2003-03-13 16:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* This is primarily used for bootstrapping. */
|
2003-03-23 23:24:09 +00:00
|
|
|
void registerInstalledPkg(string hash, string path)
|
2003-03-13 16:28:32 +00:00
|
|
|
{
|
2003-03-24 17:49:56 +00:00
|
|
|
checkHash(hash);
|
2003-03-14 16:43:14 +00:00
|
|
|
if (path == "")
|
2003-03-23 23:24:09 +00:00
|
|
|
delDB(dbInstPkgs, hash);
|
2003-03-13 16:28:32 +00:00
|
|
|
else
|
2003-03-23 23:24:09 +00:00
|
|
|
setDB(dbInstPkgs, hash, path);
|
2003-03-14 16:43:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void initDB()
|
|
|
|
{
|
|
|
|
openDB(dbRefs, false);
|
|
|
|
openDB(dbInstPkgs, false);
|
2003-03-13 16:28:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-21 15:53:35 +00:00
|
|
|
void verifyDB()
|
|
|
|
{
|
|
|
|
/* Check that all file references are still valid. */
|
|
|
|
DBPairs fileRefs;
|
|
|
|
|
|
|
|
enumDB(dbRefs, fileRefs);
|
|
|
|
|
|
|
|
for (DBPairs::iterator it = fileRefs.begin();
|
|
|
|
it != fileRefs.end(); it++)
|
|
|
|
{
|
|
|
|
try {
|
2003-03-24 17:49:56 +00:00
|
|
|
if (hashFile(it->second) != it->first) {
|
|
|
|
cerr << "file " << it->second << " has changed\n";
|
2003-03-21 15:53:35 +00:00
|
|
|
delDB(dbRefs, it->first);
|
2003-03-24 17:49:56 +00:00
|
|
|
}
|
2003-03-21 15:53:35 +00:00
|
|
|
} catch (BadRefError e) { /* !!! better error check */
|
|
|
|
cerr << "file " << it->second << " has disappeared\n";
|
|
|
|
delDB(dbRefs, it->first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check that all installed packages are still there. */
|
|
|
|
DBPairs instPkgs;
|
|
|
|
|
|
|
|
enumDB(dbInstPkgs, instPkgs);
|
|
|
|
|
|
|
|
for (DBPairs::iterator it = instPkgs.begin();
|
|
|
|
it != instPkgs.end(); it++)
|
|
|
|
{
|
|
|
|
struct stat st;
|
|
|
|
if (stat(it->second.c_str(), &st) == -1) {
|
|
|
|
cerr << "package " << it->first << " has disappeared\n";
|
|
|
|
delDB(dbInstPkgs, it->first);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TODO: check that all directories in pkgHome are installed
|
|
|
|
packages. */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-21 15:58:40 +00:00
|
|
|
void listInstalledPkgs()
|
|
|
|
{
|
|
|
|
DBPairs instPkgs;
|
|
|
|
|
|
|
|
enumDB(dbInstPkgs, instPkgs);
|
|
|
|
|
|
|
|
for (DBPairs::iterator it = instPkgs.begin();
|
|
|
|
it != instPkgs.end(); it++)
|
2003-03-24 17:49:56 +00:00
|
|
|
cout << it->first << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void printInfo(vector<string> hashes)
|
|
|
|
{
|
|
|
|
for (vector<string>::iterator it = hashes.begin();
|
|
|
|
it != hashes.end(); it++)
|
2003-03-21 15:58:40 +00:00
|
|
|
{
|
2003-03-24 17:49:56 +00:00
|
|
|
try {
|
|
|
|
Params pkgImports, fileImports, arguments;
|
|
|
|
readPkgDescr(*it, pkgImports, fileImports, arguments);
|
|
|
|
cout << *it << " " << getFromEnv(arguments, "id") << endl;
|
|
|
|
} catch (Error & e) {
|
|
|
|
cout << *it << " (descriptor missing)\n";
|
|
|
|
}
|
2003-03-21 15:58:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
void computeClosure(const vector<string> & rootHashes,
|
|
|
|
set<string> & result)
|
|
|
|
{
|
|
|
|
list<string> workList(rootHashes.begin(), rootHashes.end());
|
|
|
|
set<string> doneSet;
|
|
|
|
|
|
|
|
while (!workList.empty()) {
|
|
|
|
string hash = workList.front();
|
|
|
|
workList.pop_front();
|
|
|
|
|
|
|
|
if (doneSet.find(hash) == doneSet.end()) {
|
|
|
|
doneSet.insert(hash);
|
|
|
|
|
|
|
|
Params pkgImports, fileImports, arguments;
|
|
|
|
readPkgDescr(hash, pkgImports, fileImports, arguments);
|
|
|
|
|
|
|
|
for (Params::iterator it = pkgImports.begin();
|
|
|
|
it != pkgImports.end(); it++)
|
|
|
|
workList.push_back(it->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result = doneSet;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void printClosure(const vector<string> & rootHashes)
|
|
|
|
{
|
|
|
|
set<string> allHashes;
|
|
|
|
computeClosure(rootHashes, allHashes);
|
|
|
|
for (set<string>::iterator it = allHashes.begin();
|
|
|
|
it != allHashes.end(); it++)
|
|
|
|
cout << *it << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
string dotQuote(const string & s)
|
|
|
|
{
|
|
|
|
return "\"" + s + "\"";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void printGraph(vector<string> rootHashes)
|
|
|
|
{
|
|
|
|
set<string> allHashes;
|
|
|
|
computeClosure(rootHashes, allHashes);
|
|
|
|
|
|
|
|
cout << "digraph G {\n";
|
|
|
|
|
|
|
|
for (set<string>::iterator it = allHashes.begin();
|
|
|
|
it != allHashes.end(); it++)
|
|
|
|
{
|
|
|
|
Params pkgImports, fileImports, arguments;
|
|
|
|
readPkgDescr(*it, pkgImports, fileImports, arguments);
|
|
|
|
|
|
|
|
cout << dotQuote(*it) << "[label = \""
|
|
|
|
<< getFromEnv(arguments, "id")
|
|
|
|
<< "\"];\n";
|
|
|
|
|
|
|
|
for (Params::iterator it2 = pkgImports.begin();
|
|
|
|
it2 != pkgImports.end(); it2++)
|
|
|
|
cout << dotQuote(it2->second) << " -> "
|
|
|
|
<< dotQuote(*it) << ";\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
cout << "}\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void run(vector<string> args)
|
2003-03-13 16:28:32 +00:00
|
|
|
{
|
2003-03-21 15:53:35 +00:00
|
|
|
UsageError argcError("wrong number of arguments");
|
2003-03-13 16:28:32 +00:00
|
|
|
string cmd;
|
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
if (args.size() < 1) throw UsageError("no command specified");
|
|
|
|
|
|
|
|
cmd = args[0];
|
|
|
|
args.erase(args.begin()); // O(n)
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-14 16:43:14 +00:00
|
|
|
if (cmd == "init") {
|
2003-03-24 17:49:56 +00:00
|
|
|
if (args.size() != 0) throw argcError;
|
2003-03-14 16:43:14 +00:00
|
|
|
initDB();
|
2003-03-21 15:53:35 +00:00
|
|
|
} else if (cmd == "verify") {
|
2003-03-24 17:49:56 +00:00
|
|
|
if (args.size() != 0) throw argcError;
|
2003-03-21 15:53:35 +00:00
|
|
|
verifyDB();
|
2003-03-14 16:43:14 +00:00
|
|
|
} else if (cmd == "getpkg") {
|
2003-03-24 17:49:56 +00:00
|
|
|
if (args.size() != 1) throw argcError;
|
|
|
|
string path = getPkg(args[0]);
|
2003-03-14 16:43:14 +00:00
|
|
|
cout << path << endl;
|
2003-03-23 23:24:09 +00:00
|
|
|
} else if (cmd == "run") {
|
2003-03-28 09:53:22 +00:00
|
|
|
if (args.size() < 1) throw argcError;
|
|
|
|
runPkg(args[0], vector<string>(args.begin() + 1, args.end()));
|
2003-03-24 17:49:56 +00:00
|
|
|
} else if (cmd == "ensure") {
|
|
|
|
if (args.size() != 1) throw argcError;
|
|
|
|
ensurePkg(args[0]);
|
2003-03-20 16:53:00 +00:00
|
|
|
} else if (cmd == "regfile") {
|
2003-03-24 17:49:56 +00:00
|
|
|
if (args.size() != 1) throw argcError;
|
|
|
|
registerFile(args[0]);
|
2003-03-20 16:53:00 +00:00
|
|
|
} else if (cmd == "reginst") {
|
2003-03-24 17:49:56 +00:00
|
|
|
if (args.size() != 2) throw argcError;
|
|
|
|
registerInstalledPkg(args[0], args[1]);
|
2003-03-21 15:58:40 +00:00
|
|
|
} else if (cmd == "listinst") {
|
2003-03-24 17:49:56 +00:00
|
|
|
if (args.size() != 0) throw argcError;
|
2003-03-21 15:58:40 +00:00
|
|
|
listInstalledPkgs();
|
2003-03-24 17:49:56 +00:00
|
|
|
} else if (cmd == "info") {
|
|
|
|
printInfo(args);
|
|
|
|
} else if (cmd == "closure") {
|
|
|
|
printClosure(args);
|
|
|
|
} else if (cmd == "graph") {
|
|
|
|
printGraph(args);
|
2003-03-14 16:43:14 +00:00
|
|
|
} else
|
2003-03-20 16:53:00 +00:00
|
|
|
throw UsageError("unknown command: " + string(cmd));
|
2003-03-13 16:28:32 +00:00
|
|
|
}
|
2003-03-20 16:53:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
void printUsage()
|
2003-03-13 16:28:32 +00:00
|
|
|
{
|
2003-03-20 16:53:00 +00:00
|
|
|
cerr <<
|
|
|
|
"Usage: nix SUBCOMMAND OPTIONS...
|
|
|
|
|
|
|
|
Subcommands:
|
|
|
|
|
|
|
|
init
|
|
|
|
Initialize the database.
|
|
|
|
|
2003-03-21 15:53:35 +00:00
|
|
|
verify
|
2003-03-23 23:24:09 +00:00
|
|
|
Remove stale entries from the database.
|
2003-03-21 15:53:35 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
regfile FILENAME
|
|
|
|
Register FILENAME keyed by its hash.
|
|
|
|
|
|
|
|
reginst HASH PATH
|
|
|
|
Register an installed package.
|
|
|
|
|
|
|
|
getpkg HASH
|
|
|
|
Ensure that the package referenced by HASH is installed. Prints
|
|
|
|
out the path of the package on stdout.
|
2003-03-23 23:24:09 +00:00
|
|
|
|
2003-03-24 11:50:20 +00:00
|
|
|
listinst
|
|
|
|
Prints a list of installed packages.
|
|
|
|
|
2003-03-28 09:53:22 +00:00
|
|
|
run HASH ARGS...
|
|
|
|
Run the descriptor referenced by HASH with the given arguments.
|
2003-03-24 17:49:56 +00:00
|
|
|
|
|
|
|
ensure HASH
|
|
|
|
Like getpkg, but if HASH refers to a run descriptor, fetch only
|
|
|
|
the dependencies.
|
|
|
|
|
|
|
|
info HASH...
|
|
|
|
Print information about the specified descriptors.
|
|
|
|
|
|
|
|
closure HASH...
|
|
|
|
Determine the closure of the set of descriptors under the import
|
|
|
|
relation, starting at the given roots.
|
|
|
|
|
|
|
|
graph HASH...
|
|
|
|
Like closure, but print a dot graph specification.
|
2003-03-20 16:53:00 +00:00
|
|
|
";
|
|
|
|
}
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
|
|
|
|
void main2(int argc, char * * argv)
|
|
|
|
{
|
2003-03-14 16:43:14 +00:00
|
|
|
umask(0022);
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
if (getenv(PKGINFO_ENVVAR))
|
|
|
|
dbfile = getenv(PKGINFO_ENVVAR);
|
|
|
|
|
|
|
|
if (getenv(PKGHOME_ENVVAR))
|
|
|
|
pkgHome = getenv(PKGHOME_ENVVAR);
|
2003-03-13 16:28:32 +00:00
|
|
|
|
2003-03-28 09:53:22 +00:00
|
|
|
/* Parse the global flags. */
|
|
|
|
while (argc) {
|
|
|
|
string arg(*argv);
|
|
|
|
if (arg == "-h" || arg == "--help") {
|
2003-03-20 16:53:00 +00:00
|
|
|
printUsage();
|
|
|
|
return;
|
2003-03-28 09:53:22 +00:00
|
|
|
} else if (arg == "-d") {
|
2003-03-20 16:53:00 +00:00
|
|
|
dbfile = optarg;
|
2003-03-28 09:53:22 +00:00
|
|
|
} else if (arg[0] == '-') {
|
|
|
|
throw UsageError("invalid option `" + arg + "'");
|
|
|
|
} else break;
|
|
|
|
argv++, argc--;
|
2003-03-20 16:53:00 +00:00
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-28 09:53:22 +00:00
|
|
|
/* Put the remainder in a vector and pass it to run2(). */
|
2003-03-24 17:49:56 +00:00
|
|
|
vector<string> args;
|
|
|
|
while (argc--) args.push_back(*argv++);
|
|
|
|
run(args);
|
2003-03-20 16:53:00 +00:00
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
2003-03-24 17:49:56 +00:00
|
|
|
|
2003-03-20 16:53:00 +00:00
|
|
|
int main(int argc, char * * argv)
|
|
|
|
{
|
2003-03-28 09:53:22 +00:00
|
|
|
prog = *argv++, argc--;
|
2003-03-20 16:53:00 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
try {
|
|
|
|
|
|
|
|
main2(argc, argv);
|
|
|
|
|
|
|
|
} catch (DbException e) {
|
|
|
|
throw Error(e.what());
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (UsageError & e) {
|
|
|
|
cerr << "error: " << e.what() << endl
|
|
|
|
<< "Try `nix -h' for more information.\n";
|
2003-03-14 16:43:14 +00:00
|
|
|
return 1;
|
2003-03-20 16:53:00 +00:00
|
|
|
} catch (exception & e) {
|
|
|
|
cerr << "error: " << e.what() << endl;
|
2003-03-13 16:28:32 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2003-03-14 16:43:14 +00:00
|
|
|
|
|
|
|
return 0;
|
2003-03-13 16:28:32 +00:00
|
|
|
}
|