2008-03-21 15:03:37 +00:00
|
|
|
/*
|
|
|
|
* Copyright IBM Corp. 2008
|
|
|
|
*
|
|
|
|
* lxc_conf.c: config functions for managing linux containers
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* David L. Leskovec <dlesko at linux.vnet.ibm.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* includes */
|
|
|
|
#include <config.h>
|
|
|
|
|
2008-08-13 12:50:55 +00:00
|
|
|
#include <sys/utsname.h>
|
2008-03-21 15:03:37 +00:00
|
|
|
|
2008-11-04 22:30:33 +00:00
|
|
|
#include "virterror_internal.h"
|
2008-03-21 15:03:37 +00:00
|
|
|
#include "lxc_conf.h"
|
|
|
|
|
|
|
|
/* Functions */
|
2008-08-13 12:50:55 +00:00
|
|
|
virCapsPtr lxcCapsInit(void)
|
2008-03-21 15:03:37 +00:00
|
|
|
{
|
2008-08-13 12:50:55 +00:00
|
|
|
struct utsname utsname;
|
|
|
|
virCapsPtr caps;
|
|
|
|
virCapsGuestPtr guest;
|
2008-06-05 06:03:00 +00:00
|
|
|
|
2008-08-13 12:50:55 +00:00
|
|
|
uname(&utsname);
|
2008-06-05 06:03:00 +00:00
|
|
|
|
2008-08-13 12:50:55 +00:00
|
|
|
if ((caps = virCapabilitiesNew(utsname.machine,
|
|
|
|
0, 0)) == NULL)
|
|
|
|
goto no_memory;
|
2008-03-21 15:03:37 +00:00
|
|
|
|
2008-10-24 11:20:08 +00:00
|
|
|
/* XXX shouldn't 'borrow' KVM's prefix */
|
|
|
|
virCapabilitiesSetMacPrefix(caps, (unsigned char []){ 0x52, 0x54, 0x00 });
|
|
|
|
|
2008-08-13 12:50:55 +00:00
|
|
|
if ((guest = virCapabilitiesAddGuest(caps,
|
|
|
|
"exe",
|
|
|
|
utsname.machine,
|
|
|
|
sizeof(int) == 4 ? 32 : 8,
|
2008-08-20 20:55:32 +00:00
|
|
|
BINDIR "/libvirt_lxc",
|
2008-08-13 12:50:55 +00:00
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL)) == NULL)
|
|
|
|
goto no_memory;
|
2008-03-21 15:03:37 +00:00
|
|
|
|
2008-08-13 12:50:55 +00:00
|
|
|
if (virCapabilitiesAddGuestDomain(guest,
|
|
|
|
"lxc",
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
0,
|
|
|
|
NULL) == NULL)
|
|
|
|
goto no_memory;
|
|
|
|
return caps;
|
2008-03-21 15:03:37 +00:00
|
|
|
|
2008-08-13 12:50:55 +00:00
|
|
|
no_memory:
|
|
|
|
virCapabilitiesFree(caps);
|
2008-03-21 15:03:37 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-03-27 09:34:06 +00:00
|
|
|
int lxcLoadDriverConfig(lxc_driver_t *driver)
|
2008-03-21 15:03:37 +00:00
|
|
|
{
|
|
|
|
/* Set the container configuration directory */
|
2008-08-20 20:55:32 +00:00
|
|
|
if ((driver->configDir = strdup(LXC_CONFIG_DIR)) == NULL)
|
2008-08-13 10:52:15 +00:00
|
|
|
goto no_memory;
|
2008-08-20 20:55:32 +00:00
|
|
|
if ((driver->stateDir = strdup(LXC_STATE_DIR)) == NULL)
|
2008-08-13 10:52:15 +00:00
|
|
|
goto no_memory;
|
2008-08-20 20:55:32 +00:00
|
|
|
if ((driver->logDir = strdup(LXC_LOG_DIR)) == NULL)
|
2008-08-13 10:52:15 +00:00
|
|
|
goto no_memory;
|
2008-06-05 06:03:00 +00:00
|
|
|
|
2008-03-21 15:03:37 +00:00
|
|
|
return 0;
|
2008-08-13 10:52:15 +00:00
|
|
|
|
|
|
|
no_memory:
|
2008-11-07 16:43:58 +00:00
|
|
|
lxcError(NULL, NULL, VIR_ERR_NO_MEMORY,
|
|
|
|
"%s", _("while loading LXC driver config"));
|
2008-08-13 10:52:15 +00:00
|
|
|
return -1;
|
2008-03-21 15:03:37 +00:00
|
|
|
}
|