view rvinterf/etmsync/fspath.c @ 497:74610c4f10f7

target-utils: added 10 ms delay at the end of abb_power_off() The deosmification of the ABB access code (replacement of osmo_delay_ms() bogus delays with correctly-timed ones, which are significantly shorter) had one annoying side effect: when executing the poweroff command from any of the programs, one last '=' prompt character was being sent (and received by the x86 host) as the Calypso board powers off. With delays being shorter now, the abb_power_off() function was returning and the standalone program's main loop was printing its prompt before the Iota chip fully executed the switch-off sequence! I thought about inserting an endless tight loop at the end of the abb_power_off() function, but the implemented solution of a 10 ms delay is a little nicer IMO because if the DEVOFF operation doesn't happen for some reason in a manual hacking scenario, there won't be an artificial blocker in the form of a tight loop keeping us from further poking around.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 25 May 2019 20:44:05 +0000
parents e7502631a0f9
children
line wrap: on
line source

/*
 * FFS pathname manipulation functions
 */

#include <sys/types.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <strings.h>
#include "ffs.h"
#include "limits.h"
#include "ffslimits.h"
#include "exitcodes.h"

validate_ffs_pathname(cand)
	char *cand;
{
	char *cp;
	int depth, c;

	cp = cand;
	if (*cp++ != '/') {
		fprintf(stderr, "error: FFS pathnames must be absolute\n");
		return(-1);
	}
	for (depth = 0; *cp; depth++) {
		if (*cp == '/') {
			fprintf(stderr,
		"error: FFS pathname must not contain duplicate slashes\n");
			return(-1);
		}
		for (c = 0; *cp && *cp != '/'; cp++)
			c++;
		if (c > MAX_FN_COMPONENT) {
			fprintf(stderr,
				"error: FFS pathname component is too long\n");
			return(-1);
		}
		if (!*cp)
			continue;
		cp++;
		if (!*cp) {
			fprintf(stderr,
		"error: FFS pathname must not end with a trailing slash\n");
			return(-1);
		}
	}
	if (depth > MAX_NAME_DEPTH) {
		fprintf(stderr, "error: FFS pathname exceeds depth limit\n");
		return(-1);
	}
	return(depth);
}

char *
pathname_for_ffs_child(parent, childbuf)
	char *parent, *childbuf;
{
	int depth;
	char *cp;

	depth = validate_ffs_pathname(parent);
	if (depth < 0 || depth >= MAX_NAME_DEPTH)
		return(0);
	strcpy(childbuf, parent);
	cp = index(childbuf, '\0');
	if (depth)
		*cp++ = '/';
	return(cp);
}