This will allow us to disable services and have it persist across reboots by using the `systemctl mask` operation
618 lines
17 KiB
C
618 lines
17 KiB
C
#include <assert.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdbool.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <linux/limits.h>
|
|
|
|
#define MAX_NUM_TARGETS 15
|
|
#define MAX_NUM_INSTALL_LINES 15
|
|
#define MAX_NUM_UNITS 128
|
|
#define MAX_BUF_SIZE 512
|
|
|
|
static const char* UNIT_FILE_PREFIX = "/usr/lib/systemd/system/";
|
|
static const char* CONFIG_FILE = "/etc/sonic/generated_services.conf";
|
|
static const char* MACHINE_CONF_FILE = "/host/machine.conf";
|
|
static int num_asics;
|
|
static char** multi_instance_services;
|
|
static int num_multi_inst;
|
|
|
|
void strip_trailing_newline(char* str) {
|
|
/***
|
|
Strips trailing newline from a string if it exists
|
|
***/
|
|
|
|
size_t l = strlen(str);
|
|
if (l > 0 && str[l-1] == '\n')
|
|
str[l-1] = '\0';
|
|
}
|
|
|
|
|
|
static int get_target_lines(char* unit_file, char* target_lines[]) {
|
|
/***
|
|
Gets installation information for a given unit file
|
|
|
|
Returns lines in the [Install] section of a unit file
|
|
***/
|
|
FILE *fp;
|
|
char *line = NULL;
|
|
size_t len = 0;
|
|
ssize_t nread;
|
|
bool found_install;
|
|
int num_target_lines;
|
|
|
|
|
|
fp = fopen(unit_file, "r");
|
|
|
|
if (fp == NULL) {
|
|
fprintf(stderr, "Failed to open file %s\n", unit_file);
|
|
return -1;
|
|
}
|
|
|
|
found_install = false;
|
|
num_target_lines = 0;
|
|
|
|
while ((nread = getline(&line, &len, fp)) != -1 ) {
|
|
// Assumes that [Install] is the last section of the unit file
|
|
if (strstr(line, "[Install]") != NULL) {
|
|
found_install = true;
|
|
}
|
|
else if (found_install) {
|
|
if (num_target_lines >= MAX_NUM_INSTALL_LINES) {
|
|
fprintf(stderr, "Number of lines in [Install] section of %s exceeds MAX_NUM_INSTALL_LINES\n", unit_file);
|
|
fputs("Extra [Install] lines will be ignored\n", stderr);
|
|
break;
|
|
}
|
|
target_lines[num_target_lines] = strdup(line);
|
|
num_target_lines++;
|
|
}
|
|
}
|
|
|
|
free(line);
|
|
|
|
fclose(fp);
|
|
|
|
return num_target_lines;
|
|
}
|
|
|
|
static bool is_multi_instance_service(char *service_name){
|
|
int i;
|
|
for(i=0; i < num_multi_inst; i++){
|
|
if (strstr(service_name, multi_instance_services[i]) != NULL) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
|
|
}
|
|
|
|
static int get_install_targets_from_line(char* target_string, char* install_type, char* targets[], int existing_targets) {
|
|
/***
|
|
Helper fuction for get_install_targets
|
|
|
|
Given a space delimited string of target directories and a suffix,
|
|
puts each target directory plus the suffix into the targets array
|
|
***/
|
|
char* token;
|
|
char* target;
|
|
char final_target[PATH_MAX];
|
|
int num_targets = 0;
|
|
|
|
while ((token = strtok_r(target_string, " ", &target_string))) {
|
|
if (num_targets + existing_targets >= MAX_NUM_TARGETS) {
|
|
fputs("Number of targets found exceeds MAX_NUM_TARGETS\n", stderr);
|
|
fputs("Additional targets will be ignored \n", stderr);
|
|
return num_targets;
|
|
}
|
|
|
|
target = strdup(token);
|
|
strip_trailing_newline(target);
|
|
|
|
if (strstr(target, "%") != NULL) {
|
|
char* prefix = strtok(target, ".");
|
|
char* suffix = strtok(NULL, ".");
|
|
int prefix_len = strlen(prefix);
|
|
|
|
strncpy(final_target, prefix, prefix_len - 2);
|
|
final_target[prefix_len - 2] = '\0';
|
|
strcat(final_target, ".");
|
|
strcat(final_target, suffix);
|
|
}
|
|
else {
|
|
strcpy(final_target, target);
|
|
}
|
|
strcat(final_target, install_type);
|
|
|
|
free(target);
|
|
|
|
targets[num_targets + existing_targets] = strdup(final_target);
|
|
num_targets++;
|
|
}
|
|
return num_targets;
|
|
}
|
|
|
|
static void replace_multi_inst_dep(char *src) {
|
|
FILE *fp_src;
|
|
FILE *fp_tmp;
|
|
char buf[MAX_BUF_SIZE];
|
|
char* line = NULL;
|
|
int i;
|
|
ssize_t len;
|
|
char *token;
|
|
char *word;
|
|
char *line_copy;
|
|
char *service_name;
|
|
char *type;
|
|
ssize_t nread;
|
|
bool section_done = false;
|
|
char tmp_file_path[PATH_MAX];
|
|
|
|
/* assumes that the service files has 3 sections,
|
|
* in the order: Unit, Service and Install.
|
|
* Read service dependency from Unit and Install
|
|
* sections, replace if dependent on multi instance
|
|
* service.
|
|
*/
|
|
fp_src = fopen(src, "r");
|
|
snprintf(tmp_file_path, PATH_MAX, "%s.tmp", src);
|
|
fp_tmp = fopen(tmp_file_path, "w");
|
|
|
|
while ((nread = getline(&line, &len, fp_src)) != -1 ) {
|
|
if (strstr(line, "[Service]") != NULL) {
|
|
section_done = true;
|
|
fputs(line,fp_tmp);
|
|
} else if (strstr(line, "[Install]") != NULL) {
|
|
section_done = false;
|
|
fputs(line,fp_tmp);
|
|
} else if ((strstr(line, "[Unit]") != NULL) ||
|
|
(strstr(line, "Description") != NULL) ||
|
|
(section_done == true)){
|
|
fputs(line,fp_tmp);
|
|
} else {
|
|
line_copy = strdup(line);
|
|
token = strtok(line_copy, "=");
|
|
while ((word = strtok(NULL, " "))){
|
|
if((strchr(word, '.') == NULL) ||
|
|
(strchr(word, '@') != NULL)) {
|
|
snprintf(buf, MAX_BUF_SIZE,"%s=%s\n",token, word);
|
|
fputs(buf,fp_tmp);
|
|
} else {
|
|
service_name = strdup(word);
|
|
service_name = strtok(service_name, ".");
|
|
type = strtok(NULL, " ");
|
|
if (is_multi_instance_service(word)) {
|
|
for(i = 0; i < num_asics; i++){
|
|
snprintf(buf, MAX_BUF_SIZE, "%s=%s@%d.%s\n",
|
|
token, service_name, i, type);
|
|
fputs(buf,fp_tmp);
|
|
}
|
|
} else {
|
|
snprintf(buf, MAX_BUF_SIZE,"%s=%s.%s\n",token, service_name, type);
|
|
fputs(buf, fp_tmp);
|
|
}
|
|
free(service_name);
|
|
}
|
|
}
|
|
free(line_copy);
|
|
}
|
|
}
|
|
fclose(fp_src);
|
|
fclose(fp_tmp);
|
|
free(line);
|
|
/* remove the .service file, rename the .service.tmp file
|
|
* as .service.
|
|
*/
|
|
remove(src);
|
|
rename(tmp_file_path, src);
|
|
}
|
|
|
|
static int get_install_targets(char* unit_file, char* targets[]) {
|
|
/***
|
|
Returns install targets for a unit file
|
|
|
|
Parses the information in the [Install] section of a given
|
|
unit file to determine which directories to install the unit in
|
|
***/
|
|
char file_path[PATH_MAX];
|
|
char *target_lines[MAX_NUM_INSTALL_LINES];
|
|
int num_target_lines;
|
|
int num_targets;
|
|
int found_targets;
|
|
char* token;
|
|
char* line = NULL;
|
|
bool first;
|
|
char* target_suffix;
|
|
char *instance_name;
|
|
char *dot_ptr;
|
|
|
|
strcpy(file_path, UNIT_FILE_PREFIX);
|
|
strcat(file_path, unit_file);
|
|
|
|
instance_name = strdup(unit_file);
|
|
dot_ptr = strchr(instance_name, '.');
|
|
*dot_ptr = '\0';
|
|
|
|
if((num_asics > 1) && (!is_multi_instance_service(instance_name))) {
|
|
replace_multi_inst_dep(file_path);
|
|
}
|
|
free(instance_name);
|
|
|
|
num_target_lines = get_target_lines(file_path, target_lines);
|
|
if (num_target_lines < 0) {
|
|
fprintf(stderr, "Error parsing targets for %s\n", unit_file);
|
|
return -1;
|
|
}
|
|
|
|
num_targets = 0;
|
|
|
|
for (int i = 0; i < num_target_lines; i++) {
|
|
line = target_lines[i];
|
|
first = true;
|
|
|
|
while ((token = strtok_r(line, "=", &line))) {
|
|
if (first) {
|
|
first = false;
|
|
|
|
if (strstr(token, "RequiredBy") != NULL) {
|
|
target_suffix = ".requires";
|
|
}
|
|
else if (strstr(token, "WantedBy") != NULL) {
|
|
target_suffix = ".wants";
|
|
}
|
|
}
|
|
else {
|
|
found_targets = get_install_targets_from_line(token, target_suffix, targets, num_targets);
|
|
num_targets += found_targets;
|
|
}
|
|
}
|
|
free(target_lines[i]);
|
|
}
|
|
return num_targets;
|
|
}
|
|
|
|
|
|
static int get_unit_files(char* unit_files[]) {
|
|
/***
|
|
Reads a list of unit files to be installed from /etc/sonic/generated_services.conf
|
|
***/
|
|
FILE *fp;
|
|
char *line = NULL;
|
|
size_t len = 0;
|
|
ssize_t read;
|
|
char *pos;
|
|
|
|
fp = fopen(CONFIG_FILE, "r");
|
|
|
|
if (fp == NULL) {
|
|
fprintf(stderr, "Failed to open %s\n", CONFIG_FILE);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
int num_unit_files = 0;
|
|
num_multi_inst = 0;
|
|
|
|
multi_instance_services = malloc(MAX_NUM_UNITS * sizeof(char *));
|
|
|
|
while ((read = getline(&line, &len, fp)) != -1) {
|
|
if (num_unit_files >= MAX_NUM_UNITS) {
|
|
fprintf(stderr, "Maximum number of units exceeded, ignoring extras\n");
|
|
break;
|
|
}
|
|
strip_trailing_newline(line);
|
|
|
|
/* Get the multi-instance services */
|
|
pos = strchr(line, '@');
|
|
if (pos != NULL) {
|
|
multi_instance_services[num_multi_inst] = malloc(strlen(line)*sizeof(char));
|
|
strncpy(multi_instance_services[num_multi_inst], line, pos-line);
|
|
num_multi_inst++;
|
|
}
|
|
|
|
/* topology service to be started only for multiasic VS platform */
|
|
if ((strcmp(line, "topology.service") == 0) &&
|
|
(num_asics == 1)) {
|
|
continue;
|
|
}
|
|
unit_files[num_unit_files] = strdup(line);
|
|
num_unit_files++;
|
|
}
|
|
|
|
free(line);
|
|
|
|
fclose(fp);
|
|
|
|
return num_unit_files;
|
|
}
|
|
|
|
|
|
static char* insert_instance_number(char* unit_file, int instance) {
|
|
/***
|
|
Adds an instance number to a systemd template name
|
|
|
|
E.g. given unit_file='example@.service', instance=3,
|
|
returns a pointer to 'example@1.service'
|
|
***/
|
|
char* prefix;
|
|
char* suffix;
|
|
char* instance_string;
|
|
char* instance_name;
|
|
char* temp_unit_file;
|
|
|
|
instance_string = malloc(2 * sizeof(char));
|
|
snprintf(instance_string, 2, "%d", instance);
|
|
|
|
instance_name = malloc(strlen(unit_file) + 2);
|
|
|
|
if (instance_name == NULL) {
|
|
fprintf(stderr, "Error creating instance %d of %s\n", instance, unit_file);
|
|
return NULL;
|
|
}
|
|
|
|
temp_unit_file = strdup(unit_file);
|
|
prefix = strtok(temp_unit_file, "@");
|
|
suffix = strtok(NULL, "@");
|
|
|
|
strcpy(instance_name, prefix);
|
|
strcat(instance_name, "@");
|
|
strcat(instance_name, instance_string);
|
|
strcat(instance_name, suffix);
|
|
|
|
free(instance_string);
|
|
free(temp_unit_file);
|
|
|
|
return instance_name;
|
|
}
|
|
|
|
|
|
static int create_symlink(char* unit, char* target, char* install_dir, int instance) {
|
|
struct stat st;
|
|
char src_path[PATH_MAX];
|
|
char dest_path[PATH_MAX];
|
|
char final_install_dir[PATH_MAX];
|
|
char* unit_instance;
|
|
int r;
|
|
|
|
strcpy(src_path, UNIT_FILE_PREFIX);
|
|
strcat(src_path, unit);
|
|
|
|
if (instance < 0) {
|
|
unit_instance = strdup(unit);
|
|
}
|
|
else {
|
|
unit_instance = insert_instance_number(unit, instance);
|
|
}
|
|
|
|
strcpy(final_install_dir, install_dir);
|
|
strcat(final_install_dir, target);
|
|
strcpy(dest_path, final_install_dir);
|
|
strcat(dest_path, "/");
|
|
strcat(dest_path, unit_instance);
|
|
|
|
free(unit_instance);
|
|
|
|
if (stat(final_install_dir, &st) == -1) {
|
|
// If doesn't exist, create
|
|
r = mkdir(final_install_dir, 0755);
|
|
if (r == -1) {
|
|
fprintf(stderr, "Unable to create target directory %s\n", final_install_dir);
|
|
return -1;
|
|
}
|
|
}
|
|
else if (S_ISREG(st.st_mode)) {
|
|
// If is regular file, remove and create
|
|
r = remove(final_install_dir);
|
|
if (r == -1) {
|
|
fprintf(stderr, "Unable to remove file with same name as target directory %s\n", final_install_dir);
|
|
return -1;
|
|
}
|
|
|
|
r = mkdir(final_install_dir, 0755);
|
|
if (r == -1) {
|
|
fprintf(stderr, "Unable to create target directory %s\n", final_install_dir);
|
|
return -1;
|
|
}
|
|
}
|
|
else if (S_ISDIR(st.st_mode)) {
|
|
// If directory, verify correct permissions
|
|
r = chmod(final_install_dir, 0755);
|
|
if (r == -1) {
|
|
fprintf(stderr, "Unable to change permissions of existing target directory %s\n", final_install_dir);
|
|
return -1;
|
|
}
|
|
}
|
|
|
|
r = symlink(src_path, dest_path);
|
|
|
|
if (r < 0) {
|
|
if (errno == EEXIST)
|
|
return 0;
|
|
fprintf(stderr, "Error creating symlink %s from source %s\n", dest_path, src_path);
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
static int install_unit_file(char* unit_file, char* target, char* install_dir) {
|
|
/***
|
|
Creates a symlink for a unit file installation
|
|
|
|
For a given unit file and target directory,
|
|
create the appropriate symlink in the target directory
|
|
to enable the unit and have it started by Systemd
|
|
|
|
If a multi ASIC platform is detected, enables multi-instance
|
|
services as well
|
|
***/
|
|
char* target_instance;
|
|
char* prefix;
|
|
char* suffix;
|
|
int r;
|
|
|
|
assert(unit_file);
|
|
assert(target);
|
|
|
|
|
|
if ((num_asics > 1) && strstr(unit_file, "@") != NULL) {
|
|
|
|
for (int i = 0; i < num_asics; i++) {
|
|
|
|
if (strstr(target, "@") != NULL) {
|
|
target_instance = insert_instance_number(target, i);
|
|
}
|
|
else {
|
|
target_instance = strdup(target);
|
|
}
|
|
|
|
r = create_symlink(unit_file, target_instance, install_dir, i);
|
|
if (r < 0)
|
|
fprintf(stderr, "Error installing %s for target %s\n", unit_file, target_instance);
|
|
|
|
free(target_instance);
|
|
|
|
}
|
|
}
|
|
else {
|
|
r = create_symlink(unit_file, target, install_dir, -1);
|
|
if (r < 0)
|
|
fprintf(stderr, "Error installing %s for target %s\n", unit_file, target);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
|
|
static int get_num_of_asic() {
|
|
/***
|
|
Determines if the current platform is single or multi-ASIC
|
|
***/
|
|
FILE *fp;
|
|
FILE *env_fp;
|
|
char *line = NULL;
|
|
char* token;
|
|
char* platform;
|
|
size_t len = 0;
|
|
ssize_t nread;
|
|
bool ans;
|
|
char asic_file[512];
|
|
char* str_num_asic;
|
|
int num_asic = 1;
|
|
|
|
fp = fopen(MACHINE_CONF_FILE, "r");
|
|
|
|
if (fp == NULL) {
|
|
fprintf(stderr, "Failed to open %s\n", MACHINE_CONF_FILE);
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
|
|
while ((nread = getline(&line, &len, fp)) != -1) {
|
|
if ((strstr(line, "onie_platform") != NULL) ||
|
|
(strstr(line, "aboot_platform") != NULL)) {
|
|
token = strtok(line, "=");
|
|
platform = strtok(NULL, "=");
|
|
strip_trailing_newline(platform);
|
|
break;
|
|
}
|
|
}
|
|
|
|
fclose(fp);
|
|
if(platform != NULL) {
|
|
snprintf(asic_file, 512, "/usr/share/sonic/device/%s/asic.conf", platform);
|
|
fp = fopen(asic_file, "r");
|
|
if (fp != NULL) {
|
|
while ((nread = getline(&line, &len, fp)) != -1) {
|
|
if (strstr(line, "NUM_ASIC") != NULL) {
|
|
token = strtok(line, "=");
|
|
str_num_asic = strtok(NULL, "=");
|
|
strip_trailing_newline(str_num_asic);
|
|
if (str_num_asic != NULL){
|
|
sscanf(str_num_asic, "%d",&num_asic);
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
fclose(fp);
|
|
free(line);
|
|
}
|
|
}
|
|
|
|
/*set environment variable NUM_ASIC */
|
|
env_fp = fopen("/etc/environment", "a");
|
|
if (env_fp == NULL) {
|
|
fprintf(stderr, "Failed to open environment file\n");
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
fprintf(env_fp, "NUM_ASIC=%d\n", num_asic);
|
|
fclose(env_fp);
|
|
return num_asic;
|
|
|
|
}
|
|
|
|
|
|
int main(int argc, char **argv) {
|
|
char* unit_files[MAX_NUM_UNITS];
|
|
char install_dir[PATH_MAX];
|
|
char* targets[MAX_NUM_TARGETS];
|
|
char* unit_instance;
|
|
char* prefix;
|
|
char* suffix;
|
|
int num_unit_files;
|
|
int num_targets;
|
|
int r;
|
|
|
|
if (argc <= 1) {
|
|
fputs("Installation directory required as argument\n", stderr);
|
|
return 1;
|
|
}
|
|
|
|
num_asics = get_num_of_asic();
|
|
|
|
strcpy(install_dir, argv[1]);
|
|
strcat(install_dir, "/");
|
|
|
|
num_unit_files = get_unit_files(unit_files);
|
|
|
|
// For each unit file, get the installation targets and install the unit
|
|
for (int i = 0; i < num_unit_files; i++) {
|
|
unit_instance = strdup(unit_files[i]);
|
|
if ((num_asics == 1) && strstr(unit_instance, "@") != NULL) {
|
|
prefix = strtok(unit_instance, "@");
|
|
suffix = strtok(NULL, "@");
|
|
|
|
strcpy(unit_instance, prefix);
|
|
strcat(unit_instance, suffix);
|
|
}
|
|
|
|
num_targets = get_install_targets(unit_instance, targets);
|
|
if (num_targets < 0) {
|
|
fprintf(stderr, "Error parsing %s\n", unit_instance);
|
|
free(unit_instance);
|
|
free(unit_files[i]);
|
|
continue;
|
|
}
|
|
|
|
for (int j = 0; j < num_targets; j++) {
|
|
if (install_unit_file(unit_instance, targets[j], install_dir) != 0)
|
|
fprintf(stderr, "Error installing %s to target directory %s\n", unit_instance, targets[j]);
|
|
|
|
free(targets[j]);
|
|
}
|
|
|
|
free(unit_instance);
|
|
free(unit_files[i]);
|
|
}
|
|
|
|
for (int i = 0; i < num_multi_inst; i++) {
|
|
free(multi_instance_services[i]);
|
|
}
|
|
free(multi_instance_services);
|
|
|
|
return 0;
|
|
}
|