Files
@ f31a1535a11a
Branch filter:
Location: DistRen/src/server/slavefuncs.c
f31a1535a11a
13.5 KiB
text/plain
Formatting fixes, and a few code fixes
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 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 | /*
Copyright 2009 Nathan Phillip Brink, Ethan Zonca, Matthew Orlando
This file is a part of DistRen.
DistRen is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
DistRen 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 Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with DistRen. If not, see <http://www.gnu.org/licenses/>.
*/
/*
* Registration on server. Needs attention. Prevent account spamming.
* distrenslave -c username email@example.com
*/
#include "asprintf.h"
#include "slavefuncs.h"
#include "distrenjob.h"
#include "execio.h"
#include <curl/curl.h>
#include <curl/types.h>
#include <curl/easy.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <fcntl.h>
/**
utility function for XPath-ish stuff:
*/
xmlNodePtr xml_quickxpath(xmlXPathContextPtr xpathctxt, xmlChar *path)
{
xmlNodePtr toreturn;
xmlXPathObjectPtr xmlxpathobjptr;
xmlxpathobjptr = xmlXPathEval(path, xpathctxt);
if(!xmlxpathobjptr
|| !xmlxpathobjptr->nodesetval->nodeNr)
{
fprintf(stderr, "XPath resolution failed for ``%s'' in ``%s'' (``%s'')\n", path, xpathctxt->doc->name, xpathctxt->doc->URL);
return (xmlNodePtr)NULL;
}
toreturn = *(xmlxpathobjptr->nodesetval->nodeTab);
xmlXPathFreeObject(xmlxpathobjptr);
return toreturn;
}
/** Ensures that rendering engines on the computer are up-to-date */
int software_updatecheck(){
curlget("http://protofusion.org/srv/version.info", SYSCONFDIR "/serverEngineVersion.info");
struct stat buffer;
char serverVersion[5]; // Version numbers are nice and short
char localVersion[5]; // Version numbers are nice and short
// Read server version
{
FILE * serverVersionFile;
serverVersionFile = fopen(SYSCONFDIR "/serverEngineVersion.info","r");
fscanf(serverVersionFile, "%s",serverVersion);
fclose(serverVersionFile);
}
// Read local version
{
FILE * localVersionFile;
localVersionFile = fopen(SYSCONFDIR "/engines/blender/version.info","r");
fscanf(localVersionFile, "%s",localVersion);
fclose(localVersionFile);
}
// If a rendering engine was never downloaded
if( stat(SYSCONFDIR "/engines/blender", &buffer) == -1){
fprintf(stderr,"You don't have the blender engine. Preparing to download...");
curlget("http://protofusion.org/distren/srv/blender-lin32-dist.tgz", SYSCONFDIR "/engines/blender.tgz"); // Add calls for operating system info
// untar(SYSCONFDIR "/engines/blender.tgz");
}
// If a rendering engine is out-of-date
else if( serverVersion != localVersion){
fprintf(stderr,"You don't have the latest blender engine. Preparing to download...");
curlget("http://protofusion.org/distren/srv/blender-lin32-dist.tgz", SYSCONFDIR "/engines/blender.tgz"); // Add calls for operating system info
// untar(SYSCONFDIR "/engines/blender.tgz");
}
return 0;
}
/** Stub for deleting job data from the disk. @TODO: unstubify me! */
int delete_jobdata(int jobnum, char *datadir)
{
char *jobpath;
_distren_asprintf(&jobpath, "%s/%d", datadir, jobnum);
rmdir(jobpath);
fprintf(stderr, "I just failed to remove all of your job data because I can only delete empty directories! Haha!\nPlease contact the dev team :D\n\tWe'd be overjoyed to know that someone was willing to try to use this in this devel/design/planning stage ;-)\n");
return 0;
}
/** Stub stub stubbiness ugh @TODO: Kill me. */
void tell_the_server(int stuff){
}
/** Function referenced by curlget() to write data to disk. */
size_t curl_writetodisk(void *ptr, size_t size, size_t nmemb, FILE *stream)
{
return fwrite(ptr, size, nmemb, stream);
}
/** Helper function for cURL's progressbar */
int curl_progress( char *Bar,double t,double d,double ultotal,double ulnow)
{
fprintf(stderr,"Downloading... %f%% complete\r",d/t*100);
return 0;
}
/** Retrieves a URL with cURL and saves it to disk */
int curlget(char *url, char *out){
double *Bar; // Stores cURL progressbar info
CURL *curl;
CURLcode res;
FILE *outfile;
curl = curl_easy_init();
if(curl) {
outfile = fopen(out, "w"); // Open where we're writing to
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, outfile);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, curl_writetodisk); // this MUST be set for win32 compat.
curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 0);
curl_easy_setopt(curl, CURLOPT_PROGRESSFUNCTION, curl_progress);
curl_easy_setopt(curl, CURLOPT_PROGRESSDATA, &Bar);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
}
fprintf(stderr,"\n"); // Clears out he progressbar's carriage return
return res; // 0 means OK, nonzero means AAAH badness
}
/** Posts a file to a url with cUrl */
int curlpost(char *filename, char *url){
char *targetname = "uploadedfile"; // Name of the target in the php file on the server (Don't change me unless you have different PHP code)
CURL *curl;
CURLcode res;
struct curl_httppost *formpost=NULL;
struct curl_httppost *lastptr=NULL;
struct curl_slist *headerlist=NULL;
static const char buf[] = "Expect:";
curl_global_init(CURL_GLOBAL_ALL);
/* upload field... */
curl_formadd(&formpost,
&lastptr,
CURLFORM_COPYNAME, targetname,
CURLFORM_FILE, filename,
CURLFORM_END);
/* filename field... */
curl_formadd(&formpost,
&lastptr,
CURLFORM_COPYNAME, "filename",
CURLFORM_COPYCONTENTS, filename,
CURLFORM_END);
/* submit field, not usually needed, just in case... */
curl_formadd(&formpost,
&lastptr,
CURLFORM_COPYNAME, "submit",
CURLFORM_COPYCONTENTS, "send",
CURLFORM_END);
curl = curl_easy_init();
headerlist = curl_slist_append(headerlist, buf);
if(curl) {
/* Setting the URL to get the post, and the contents of the post */
curl_easy_setopt(curl, CURLOPT_URL, url);
curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost);
res = curl_easy_perform(curl);
curl_easy_cleanup(curl);
/* cleanup the formpost junk */
curl_formfree(formpost);
curl_slist_free_all (headerlist);
}
return 0;
}
/** Generates a SSH key with ssh-keygen */
int ssh_keygen(){
/* Checks to see if the keys are already present. */
int status;
struct stat buffer;
status = stat(SYSCONFDIR "/distren.id_rsa", &buffer);
if(status != -1){
fprintf(stderr, "***Please delete etc/distren.id_rsa and etc/distren.id_rsa.pub to register.\n");
return 0;
}
/* start execio code */
char *command = "ssh-keygen"; // @TODO: append .exe if win32?
int ret;
char *cmd[] = { command, "-q", "-f", SYSCONFDIR "/distren.id_rsa", "-N", "", (char *)NULL }; // TODO: Give me the correct args!
char buf[10];
struct execio *testrem;
size_t readlen;
ret = execio_open(&testrem, command, cmd); // @TODO: This path will be absolute for testing, should be relative to install on production
buf[9] = '\0';
while(!execio_read(testrem, buf, 9, &readlen))
{
if(readlen > 9) {
fprintf(stderr, "Something is terribly wrong!\n");
}
buf[readlen] = '\0';
fprintf(stderr, "read \"%s\"\n", buf);
}
execio_close(testrem);
/* end execio code */
// Supposedly execio returns 1 if it has bad args.
if(ret == 1){
fprintf(stderr, "Generating your key failed. Ensure that ssh-keygen is present!\n"); // Use different executor that searches the path? there is one...
return 0;
}
else{
fprintf(stderr,"We successfully generated your key! Yay!\n");
return 1;
}
return 0;
}
/** Registers the user on the DistRen server */
int register_user(char *username, char *email)
{
/* Note: this code moved here from after the useradd code, so useradd doesn't happen if there is an existing key, etc */
/* puts the person's username in the conf */
if(conf_replace(username) == 0){
fprintf(stderr, "Failed!\n");
return 0;
}
/* generates keys for login, @TODO: pub key must somehow be sent to the server. */
if(ssh_keygen() == 0){
fprintf(stderr, "Failed!\n");
return 0;
}
/*
* All created user accounts should be sandboxed accordingly, requiring a different skel, and the default shell to be rbash. Also,
* a custom path defined in the .bashrc of the skel is needed.
*/
int ret;
char buf[10];
struct execio *testrem;
char *execargv[] =
{
"ssh",
"distren_setup@protofusion.org",
"-i",
SYSCONFDIR "/setup_rsa", // @TODO: How will we distribute this key?
"-p",
"23",
"newuser",
"-M",
"-c",
email,
"-d",
"/home/distren",
"--gid",
"541",
username,
(char *)NULL
};
size_t readlen;
ret = execio_open(&testrem, "ssh", execargv); // TODO: Grab returns from this someday.
buf[9] = '\0';
while(!execio_read(testrem, buf, 9, &readlen))
{
if(readlen > 9) {
fprintf(stderr, "!!!! Something is terribly wrong!\n");
}
buf[readlen] = '\0';
fprintf(stderr, "read \"%s\"\n", buf);
}
execio_close(testrem);
/* @TODO: Parse the output buffer or something to check when user creation fails due to duplicate users. This is pretty important. */
if(ret == 1){
fprintf(stderr, "Unable to log you in. Ensure that ssh is present on your system.\n"); // Use different executor that searches the path? there is one...
return 0;
}
else{
fprintf(stderr,"Logged in successfully!\n");
return 1;
}
return 0; // 0 is fai
}
/** Logs the user into the server after ensuring that keys exist */
int login_user(char *username)
{
char *userhost;
userhost = malloc(strlen(username) + strlen("@protofusion.org") + 1);
if(!userhost)
return 43;
strcpy(userhost, username);
strcat(userhost, "@protofusion.org"); // Throws @protofusion.org after the username
char buf[10];
struct execio *testrem;
char *execargv[] =
{
"ssh",
userhost,// username and hostname
"-i",
SYSCONFDIR "/distren.id_rsa",
"-p",
"23",
"echo",
"hello", // This should eventually open a non-terminating connection to the server for communication,
(char *)NULL
};
size_t readlen;
fprintf(stderr, "Logging you in to %s\n", userhost);
int status;
struct stat buffer;
status = stat(SYSCONFDIR "/distren.id_rsa", &buffer);
if(status == -1){
fprintf(stderr,"Your key has not been found! Re-register or somehow regenerate your key!\nWe need a way to regenerate keys coded in, but we don't have the facilities yet!\n");
return 0;
}
execio_open(&testrem, "ssh", execargv); // TODO: Grab returns from this someday
buf[9] = '\0'; // null-terminating the array...
while(!execio_read(testrem, buf, 9, &readlen))
{
if(readlen > 9) {
fprintf(stderr, "Something is terribly wrong!\n");
}
buf[readlen] = '\0';
fprintf(stderr, "read \"%s\"\n", buf);
}
execio_close(testrem);
return 1; // 1 means success
}
/** Replaces !username with a username in the slave's conf file */
int conf_replace(char *username){
int maxlinelen = 120;
char *fileOrig = SYSCONFDIR "/distrenslave.conf";
char *fileRepl = SYSCONFDIR "/distrenslave.conf.edited";
char *text2find = "!username";
char *text2repl = username;
char buffer[maxlinelen+2];
char *buff_ptr, *find_ptr;
FILE *fp1, *fp2;
size_t find_len = strlen(text2find);
fp1 = fopen(fileOrig,"r");
fp2 = fopen(fileRepl,"w");
if (fp1 ==NULL){
fprintf(stderr, "%s doesn't exist\n",fileOrig);
return 0;
}
else if(fp2 ==NULL){
fprintf(stderr, "Can't write a file to disk! Check permissions.\n");
return 0;
}
else{
while(fgets(buffer,maxlinelen+2,fp1))
{
buff_ptr = buffer;
while ((find_ptr = strstr(buff_ptr,text2find)))
{
while(buff_ptr < find_ptr)
fputc((int)*buff_ptr++,fp2);
fputs(text2repl,fp2);
buff_ptr += find_len;
}
fputs(buff_ptr,fp2);
}
rename(fileRepl, fileOrig);
}
fclose(fp2);
fclose(fp1);
fprintf(stderr,"Wrote conf file...\n");
return 1; // Success
}
/* Executors */
/** Executor function for Blender operations */
void exec_blender(struct distrenjob* distrenjob, char *input, char *output, int frame, int threads)
{
int ret;
char *frame_str;
/* start execio code */
char *command = "blender"; // @TODO: append .exe if win32?
char *cmd[] = { command, "-b", "-o", output, input, "-f", frame_str, (char *)NULL };
char buf[10];
struct execio *testrem;
size_t readlen;
_distren_asprintf(&frame_str, "%i", frame);
ret = execio_open(&testrem, command, cmd); // This path will be absolute for testing, @TODO: should be relative to install on production
buf[9] = '\0';
while(!execio_read(testrem, buf, 9, &readlen))
{
if(readlen > 9) {
fprintf(stderr, "Something is terribly wrong!\n");
}
buf[readlen] = '\0';
fprintf(stderr, "read \"%s\"\n", buf);
}
execio_close(testrem);
/* end execio code */
if(ret == 1){
fprintf(stderr,"Error starting Blender. Check your install.\n");
}
else{
fprintf(stderr,"Blender at least started nicely, we don't know if it rendered anything though.\n");
}
}
void xmlinit()
{
xmlInitParser();
xmlXPathInit();
}
void xmlcleanup()
{
xmlCleanupParser();
}
|