Correct some errno values before throw ServiceSpecificException

For those functions which return statusFromErrno() in TrafficController,
it would return positive errno so shouldn't construct with -errno.

Test: m
Change-Id: I94b9294c4e200c43e33f8280469dfad9e9fbf5ea
This commit is contained in:
Wayne Ma
2022-01-27 11:44:50 +08:00
parent 4794105511
commit 41c2448ff9

View File

@@ -43,8 +43,8 @@ public class BpfNetMaps {
public void addNaughtyApp(final int uid) {
final int err = native_addNaughtyApp(uid);
if (err != 0) {
throw new ServiceSpecificException(-err, "Unable to add naughty app: "
+ Os.strerror(-err));
throw new ServiceSpecificException(err, "Unable to add naughty app: "
+ Os.strerror(err));
}
}
@@ -58,8 +58,8 @@ public class BpfNetMaps {
public void removeNaughtyApp(final int uid) {
final int err = native_removeNaughtyApp(uid);
if (err != 0) {
throw new ServiceSpecificException(-err, "Unable to remove naughty app: "
+ Os.strerror(-err));
throw new ServiceSpecificException(err, "Unable to remove naughty app: "
+ Os.strerror(err));
}
}
@@ -73,8 +73,8 @@ public class BpfNetMaps {
public void addNiceApp(final int uid) {
final int err = native_addNiceApp(uid);
if (err != 0) {
throw new ServiceSpecificException(-err, "Unable to add nice app: "
+ Os.strerror(-err));
throw new ServiceSpecificException(err, "Unable to add nice app: "
+ Os.strerror(err));
}
}
@@ -88,8 +88,8 @@ public class BpfNetMaps {
public void removeNiceApp(final int uid) {
final int err = native_removeNiceApp(uid);
if (err != 0) {
throw new ServiceSpecificException(-err, "Unable to remove nice app: "
+ Os.strerror(-err));
throw new ServiceSpecificException(err, "Unable to remove nice app: "
+ Os.strerror(err));
}
}
@@ -168,8 +168,8 @@ public class BpfNetMaps {
public void addUidInterfaceRules(final String ifName, final int[] uids) {
final int err = native_addUidInterfaceRules(ifName, uids);
if (err != 0) {
throw new ServiceSpecificException(-err, "Unable to add uid interface rules: "
+ Os.strerror(-err));
throw new ServiceSpecificException(err, "Unable to add uid interface rules: "
+ Os.strerror(err));
}
}
@@ -186,8 +186,8 @@ public class BpfNetMaps {
public void removeUidInterfaceRules(final int[] uids) {
final int err = native_removeUidInterfaceRules(uids);
if (err != 0) {
throw new ServiceSpecificException(-err, "Unable to remove uid interface rules: "
+ Os.strerror(-err));
throw new ServiceSpecificException(err, "Unable to remove uid interface rules: "
+ Os.strerror(err));
}
}
@@ -199,8 +199,8 @@ public class BpfNetMaps {
public void swapActiveStatsMap() {
final int err = native_swapActiveStatsMap();
if (err != 0) {
throw new ServiceSpecificException(-err, "Unable to swap active stats map: "
+ Os.strerror(-err));
throw new ServiceSpecificException(err, "Unable to swap active stats map: "
+ Os.strerror(err));
}
}