2 * Helper functions for handling target threads/cpus
4 * Copyright (C) 2012, LG Electronics, Namhyung Kim <namhyung.kim@lge.com>
6 * Released under the GPL v2.
16 enum perf_target_errno perf_target__validate(struct perf_target *target)
18 enum perf_target_errno ret = PERF_ERRNO_TARGET__SUCCESS;
21 target->tid = target->pid;
23 /* CPU and PID are mutually exclusive */
24 if (target->tid && target->cpu_list) {
25 target->cpu_list = NULL;
26 if (ret == PERF_ERRNO_TARGET__SUCCESS)
27 ret = PERF_ERRNO_TARGET__PID_OVERRIDE_CPU;
30 /* UID and PID are mutually exclusive */
31 if (target->tid && target->uid_str) {
32 target->uid_str = NULL;
33 if (ret == PERF_ERRNO_TARGET__SUCCESS)
34 ret = PERF_ERRNO_TARGET__PID_OVERRIDE_UID;
37 /* UID and CPU are mutually exclusive */
38 if (target->uid_str && target->cpu_list) {
39 target->cpu_list = NULL;
40 if (ret == PERF_ERRNO_TARGET__SUCCESS)
41 ret = PERF_ERRNO_TARGET__UID_OVERRIDE_CPU;
44 /* PID and SYSTEM are mutually exclusive */
45 if (target->tid && target->system_wide) {
46 target->system_wide = false;
47 if (ret == PERF_ERRNO_TARGET__SUCCESS)
48 ret = PERF_ERRNO_TARGET__PID_OVERRIDE_SYSTEM;
51 /* UID and SYSTEM are mutually exclusive */
52 if (target->uid_str && target->system_wide) {
53 target->system_wide = false;
54 if (ret == PERF_ERRNO_TARGET__SUCCESS)
55 ret = PERF_ERRNO_TARGET__UID_OVERRIDE_SYSTEM;
61 enum perf_target_errno perf_target__parse_uid(struct perf_target *target)
63 struct passwd pwd, *result;
65 const char *str = target->uid_str;
67 target->uid = UINT_MAX;
69 return PERF_ERRNO_TARGET__SUCCESS;
71 /* Try user name first */
72 getpwnam_r(str, &pwd, buf, sizeof(buf), &result);
76 * The user name not found. Maybe it's a UID number.
79 int uid = strtol(str, &endptr, 10);
82 return PERF_ERRNO_TARGET__INVALID_UID;
84 getpwuid_r(uid, &pwd, buf, sizeof(buf), &result);
87 return PERF_ERRNO_TARGET__USER_NOT_FOUND;
90 target->uid = result->pw_uid;
91 return PERF_ERRNO_TARGET__SUCCESS;
95 * This must have a same ordering as the enum perf_target_errno.
97 static const char *perf_target__error_str[] = {
98 "PID/TID switch overriding CPU",
99 "PID/TID switch overriding UID",
100 "UID switch overriding CPU",
101 "PID/TID switch overriding SYSTEM",
102 "UID switch overriding SYSTEM",
104 "Problems obtaining information for user %s",
107 int perf_target__strerror(struct perf_target *target, int errnum,
108 char *buf, size_t buflen)
116 const char *err = strerror_r(errnum, buf, buflen);
119 size_t len = strlen(err);
120 char *c = mempcpy(buf, err, min(buflen - 1, len));
127 if (errnum < __PERF_ERRNO_TARGET__START ||
128 errnum >= __PERF_ERRNO_TARGET__END)
131 idx = errnum - __PERF_ERRNO_TARGET__START;
132 msg = perf_target__error_str[idx];
135 case PERF_ERRNO_TARGET__PID_OVERRIDE_CPU
136 ... PERF_ERRNO_TARGET__UID_OVERRIDE_SYSTEM:
137 snprintf(buf, buflen, "%s", msg);
140 case PERF_ERRNO_TARGET__INVALID_UID:
141 case PERF_ERRNO_TARGET__USER_NOT_FOUND:
142 snprintf(buf, buflen, msg, target->uid_str);
146 /* cannot reach here */