* [PATCH iproute2 0/2] tc class names: Ignore if default file does not exist
@ 2015-03-17 16:52 Vadim Kochan
2015-03-17 16:52 ` [PATCH iproute2 1/2] lib names: Split to db_names_alloc and db_names_load Vadim Kochan
2015-03-17 16:52 ` [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist Vadim Kochan
0 siblings, 2 replies; 7+ messages in thread
From: Vadim Kochan @ 2015-03-17 16:52 UTC (permalink / raw)
To: netdev; +Cc: daniel, Vadim Kochan
1) Split lib/names.c:db_names_alloc to 2 funcs for
allocate and load names from file. Also added checking for malloc
failing.
2) Ignore if default class names file does not exist if '-nm' option
was specified, so it will be possible to create alias:
alias tc='tc -nm'
Changed default class name file cls_names -> tc_cls.
Vadim Kochan (2):
lib names: Split to db_names_alloc and db_names_load
tc class: Ignore if default class name file does not exist
include/names.h | 3 ++-
lib/names.c | 59 +++++++++++++++++++++++++++++++++++++++++----------------
tc/tc_util.c | 19 +++++++++++++++----
3 files changed, 60 insertions(+), 21 deletions(-)
--
2.3.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH iproute2 1/2] lib names: Split to db_names_alloc and db_names_load
2015-03-17 16:52 [PATCH iproute2 0/2] tc class names: Ignore if default file does not exist Vadim Kochan
@ 2015-03-17 16:52 ` Vadim Kochan
2015-03-17 16:52 ` [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist Vadim Kochan
1 sibling, 0 replies; 7+ messages in thread
From: Vadim Kochan @ 2015-03-17 16:52 UTC (permalink / raw)
To: netdev; +Cc: daniel, Vadim Kochan
From: Vadim Kochan <vadim4j@gmail.com>
Also added checking for malloc failing
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
---
include/names.h | 3 ++-
lib/names.c | 59 +++++++++++++++++++++++++++++++++++++++++----------------
2 files changed, 45 insertions(+), 17 deletions(-)
diff --git a/include/names.h b/include/names.h
index 4123d0b..6fed581 100644
--- a/include/names.h
+++ b/include/names.h
@@ -16,7 +16,8 @@ struct db_names {
int max;
};
-struct db_names *db_names_alloc(const char *path);
+struct db_names *db_names_alloc(void);
+int db_names_load(struct db_names *db, const char *path);
void db_names_free(struct db_names *db);
char *id_to_name(struct db_names *db, int id, char *name);
diff --git a/lib/names.c b/lib/names.c
index 93933f7..3b5b0b1 100644
--- a/lib/names.c
+++ b/lib/names.c
@@ -11,8 +11,10 @@
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
+#include <errno.h>
#include "names.h"
+#include "utils.h"
#define MAX_ENTRIES 256
#define NAME_MAX_LEN 512
@@ -48,48 +50,65 @@ static int read_id_name(FILE *fp, int *id, char *name)
return 0;
}
-struct db_names *db_names_alloc(const char *path)
+struct db_names *db_names_alloc(void)
{
struct db_names *db;
- struct db_entry *entry;
- FILE *fp;
- int id;
- char namebuf[NAME_MAX_LEN] = {0};
- int ret;
- fp = fopen(path, "r");
- if (!fp) {
- fprintf(stderr, "Can't open file: %s\n", path);
+ db = malloc(sizeof(*db));
+ if (!db)
return NULL;
- }
- db = malloc(sizeof(*db));
memset(db, 0, sizeof(*db));
db->size = MAX_ENTRIES;
db->hash = malloc(sizeof(struct db_entry *) * db->size);
memset(db->hash, 0, sizeof(struct db_entry *) * db->size);
+ return db;
+}
+
+int db_names_load(struct db_names *db, const char *path)
+{
+ struct db_entry *entry;
+ FILE *fp;
+ int id;
+ char namebuf[NAME_MAX_LEN] = {0};
+ int ret = -1;
+
+ fp = fopen(path, "r");
+ if (!fp)
+ return -ENOENT;
+
while ((ret = read_id_name(fp, &id, &namebuf[0]))) {
if (ret == -1) {
fprintf(stderr, "Database %s is corrupted at %s\n",
path, namebuf);
- fclose(fp);
- return NULL;
+ goto Exit;
}
+ ret = -1;
if (id < 0)
continue;
entry = malloc(sizeof(*entry));
- entry->id = id;
+ if (!entry)
+ goto Exit;
+
entry->name = strdup(namebuf);
+ if (!entry->name) {
+ free(entry);
+ goto Exit;
+ }
+
+ entry->id = id;
entry->next = db->hash[id & (db->size - 1)];
db->hash[id & (db->size - 1)] = entry;
}
+ ret = 0;
+Exit:
fclose(fp);
- return db;
+ return ret;
}
void db_names_free(struct db_names *db)
@@ -117,8 +136,12 @@ void db_names_free(struct db_names *db)
char *id_to_name(struct db_names *db, int id, char *name)
{
- struct db_entry *entry = db->hash[id & (db->size - 1)];
+ struct db_entry *entry;
+
+ if (!db)
+ return NULL;
+ entry = db->hash[id & (db->size - 1)];
while (entry && entry->id != id)
entry = entry->next;
@@ -136,6 +159,9 @@ int name_to_id(struct db_names *db, int *id, const char *name)
struct db_entry *entry;
int i;
+ if (!db)
+ return -1;
+
if (db->cached && strcmp(db->cached->name, name) == 0) {
*id = db->cached->id;
return 0;
@@ -145,6 +171,7 @@ int name_to_id(struct db_names *db, int *id, const char *name)
entry = db->hash[i];
while (entry && strcmp(entry->name, name))
entry = entry->next;
+
if (entry) {
db->cached = entry;
*id = entry->id;
--
2.3.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist
2015-03-17 16:52 [PATCH iproute2 0/2] tc class names: Ignore if default file does not exist Vadim Kochan
2015-03-17 16:52 ` [PATCH iproute2 1/2] lib names: Split to db_names_alloc and db_names_load Vadim Kochan
@ 2015-03-17 16:52 ` Vadim Kochan
2015-03-17 17:34 ` Daniel Borkmann
2015-03-17 19:48 ` Sergei Shtylyov
1 sibling, 2 replies; 7+ messages in thread
From: Vadim Kochan @ 2015-03-17 16:52 UTC (permalink / raw)
To: netdev; +Cc: daniel, Vadim Kochan
From: Vadim Kochan <vadim4j@gmail.com>
If '-nm' specified then do not fail if there is no
default class names file in /etc/iproute2.
Changed default class name file cls_names -> tc_cls.
Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
---
tc/tc_util.c | 19 +++++++++++++++----
1 file changed, 15 insertions(+), 4 deletions(-)
diff --git a/tc/tc_util.c b/tc/tc_util.c
index feae439..5213e9e 100644
--- a/tc/tc_util.c
+++ b/tc/tc_util.c
@@ -21,6 +21,7 @@
#include <arpa/inet.h>
#include <string.h>
#include <math.h>
+#include <errno.h>
#include "utils.h"
#include "names.h"
@@ -33,15 +34,25 @@
static struct db_names *cls_names = NULL;
-#define NAMES_DB "/etc/iproute2/cls_names"
+#define NAMES_DB "/etc/iproute2/tc_cls"
int cls_names_init(char *path)
{
- cls_names = db_names_alloc(path ?: NAMES_DB);
- if (!cls_names) {
- fprintf(stderr, "Error while opening class names file\n");
+ int ret = -1;
+
+ cls_names = db_names_alloc();
+ if (!cls_names)
+ return -1;
+
+ ret = db_names_load(cls_names, path ?: NAMES_DB);
+ if (ret == -ENOENT && path) {
+ fprintf(stderr, "Can't open class names file: %s\n", path);
return -1;
}
+ if (ret) {
+ db_names_free(cls_names);
+ cls_names = NULL;
+ }
return 0;
}
--
2.3.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist
2015-03-17 16:52 ` [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist Vadim Kochan
@ 2015-03-17 17:34 ` Daniel Borkmann
2015-03-17 18:21 ` Vadim Kochan
2015-03-17 19:48 ` Sergei Shtylyov
1 sibling, 1 reply; 7+ messages in thread
From: Daniel Borkmann @ 2015-03-17 17:34 UTC (permalink / raw)
To: Vadim Kochan, netdev
On 03/17/2015 05:52 PM, Vadim Kochan wrote:
...
> Changed default class name file cls_names -> tc_cls.
Why that?
> Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
> ---
> tc/tc_util.c | 19 +++++++++++++++----
> 1 file changed, 15 insertions(+), 4 deletions(-)
>
> diff --git a/tc/tc_util.c b/tc/tc_util.c
> index feae439..5213e9e 100644
> --- a/tc/tc_util.c
> +++ b/tc/tc_util.c
...
> static struct db_names *cls_names = NULL;
>
> -#define NAMES_DB "/etc/iproute2/cls_names"
> +#define NAMES_DB "/etc/iproute2/tc_cls"
>
> int cls_names_init(char *path)
> {
> - cls_names = db_names_alloc(path ?: NAMES_DB);
> - if (!cls_names) {
> - fprintf(stderr, "Error while opening class names file\n");
> + int ret = -1;
> +
> + cls_names = db_names_alloc();
> + if (!cls_names)
> + return -1;
> +
> + ret = db_names_load(cls_names, path ?: NAMES_DB);
> + if (ret == -ENOENT && path) {
> + fprintf(stderr, "Can't open class names file: %s\n", path);
That would mean that existing users having a /etc/iproute2/cls_names
file would suddenly not see class names anymore?
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist
2015-03-17 17:34 ` Daniel Borkmann
@ 2015-03-17 18:21 ` Vadim Kochan
2015-03-17 18:37 ` Daniel Borkmann
0 siblings, 1 reply; 7+ messages in thread
From: Vadim Kochan @ 2015-03-17 18:21 UTC (permalink / raw)
To: Daniel Borkmann; +Cc: Vadim Kochan, netdev
On Tue, Mar 17, 2015 at 06:34:06PM +0100, Daniel Borkmann wrote:
> On 03/17/2015 05:52 PM, Vadim Kochan wrote:
> ...
> >Changed default class name file cls_names -> tc_cls.
>
> Why that?
>
tc_cls seems better and shorter.
> >Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
> >---
> > tc/tc_util.c | 19 +++++++++++++++----
> > 1 file changed, 15 insertions(+), 4 deletions(-)
> >
> >diff --git a/tc/tc_util.c b/tc/tc_util.c
> >index feae439..5213e9e 100644
> >--- a/tc/tc_util.c
> >+++ b/tc/tc_util.c
> ...
> > static struct db_names *cls_names = NULL;
> >
> >-#define NAMES_DB "/etc/iproute2/cls_names"
> >+#define NAMES_DB "/etc/iproute2/tc_cls"
> >
> > int cls_names_init(char *path)
> > {
> >- cls_names = db_names_alloc(path ?: NAMES_DB);
> >- if (!cls_names) {
> >- fprintf(stderr, "Error while opening class names file\n");
> >+ int ret = -1;
> >+
> >+ cls_names = db_names_alloc();
> >+ if (!cls_names)
> >+ return -1;
> >+
> >+ ret = db_names_load(cls_names, path ?: NAMES_DB);
> >+ if (ret == -ENOENT && path) {
> >+ fprintf(stderr, "Can't open class names file: %s\n", path);
>
> That would mean that existing users having a /etc/iproute2/cls_names
> file would suddenly not see class names anymore?
Hm, but that was added few days ago.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist
2015-03-17 18:21 ` Vadim Kochan
@ 2015-03-17 18:37 ` Daniel Borkmann
0 siblings, 0 replies; 7+ messages in thread
From: Daniel Borkmann @ 2015-03-17 18:37 UTC (permalink / raw)
To: Vadim Kochan; +Cc: netdev
On 03/17/2015 07:21 PM, Vadim Kochan wrote:
> On Tue, Mar 17, 2015 at 06:34:06PM +0100, Daniel Borkmann wrote:
>> On 03/17/2015 05:52 PM, Vadim Kochan wrote:
>> ...
>>> Changed default class name file cls_names -> tc_cls.
>>
>> Why that?
>
> tc_cls seems better and shorter.
>
>>> Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
>>> ---
>>> tc/tc_util.c | 19 +++++++++++++++----
>>> 1 file changed, 15 insertions(+), 4 deletions(-)
>>>
>>> diff --git a/tc/tc_util.c b/tc/tc_util.c
>>> index feae439..5213e9e 100644
>>> --- a/tc/tc_util.c
>>> +++ b/tc/tc_util.c
>> ...
>>> static struct db_names *cls_names = NULL;
>>>
>>> -#define NAMES_DB "/etc/iproute2/cls_names"
>>> +#define NAMES_DB "/etc/iproute2/tc_cls"
>>>
>>> int cls_names_init(char *path)
>>> {
>>> - cls_names = db_names_alloc(path ?: NAMES_DB);
>>> - if (!cls_names) {
>>> - fprintf(stderr, "Error while opening class names file\n");
>>> + int ret = -1;
>>> +
>>> + cls_names = db_names_alloc();
>>> + if (!cls_names)
>>> + return -1;
>>> +
>>> + ret = db_names_load(cls_names, path ?: NAMES_DB);
>>> + if (ret == -ENOENT && path) {
>>> + fprintf(stderr, "Can't open class names file: %s\n", path);
>>
>> That would mean that existing users having a /etc/iproute2/cls_names
>> file would suddenly not see class names anymore?
>
> Hm, but that was added few days ago.
Ok, my bad, sorry for the noise.
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist
2015-03-17 16:52 ` [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist Vadim Kochan
2015-03-17 17:34 ` Daniel Borkmann
@ 2015-03-17 19:48 ` Sergei Shtylyov
1 sibling, 0 replies; 7+ messages in thread
From: Sergei Shtylyov @ 2015-03-17 19:48 UTC (permalink / raw)
To: Vadim Kochan, netdev; +Cc: daniel
Hello.
On 03/17/2015 07:52 PM, Vadim Kochan wrote:
> From: Vadim Kochan <vadim4j@gmail.com>
> If '-nm' specified then do not fail if there is no
> default class names file in /etc/iproute2.
> Changed default class name file cls_names -> tc_cls.
> Signed-off-by: Vadim Kochan <vadim4j@gmail.com>
> ---
> tc/tc_util.c | 19 +++++++++++++++----
> 1 file changed, 15 insertions(+), 4 deletions(-)
> diff --git a/tc/tc_util.c b/tc/tc_util.c
> index feae439..5213e9e 100644
> --- a/tc/tc_util.c
> +++ b/tc/tc_util.c
[...]
> @@ -33,15 +34,25 @@
>
> static struct db_names *cls_names = NULL;
>
> -#define NAMES_DB "/etc/iproute2/cls_names"
> +#define NAMES_DB "/etc/iproute2/tc_cls"
>
> int cls_names_init(char *path)
> {
> - cls_names = db_names_alloc(path ?: NAMES_DB);
> - if (!cls_names) {
> - fprintf(stderr, "Error while opening class names file\n");
> + int ret = -1;
Pointless initializer.
> +
> + cls_names = db_names_alloc();
> + if (!cls_names)
> + return -1;
> +
> + ret = db_names_load(cls_names, path ?: NAMES_DB);
> + if (ret == -ENOENT && path) {
> + fprintf(stderr, "Can't open class names file: %s\n", path);
> return -1;
> }
> + if (ret) {
> + db_names_free(cls_names);
> + cls_names = NULL;
> + }
>
> return 0;
> }
WBR, Sergei
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2015-03-17 19:48 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-17 16:52 [PATCH iproute2 0/2] tc class names: Ignore if default file does not exist Vadim Kochan
2015-03-17 16:52 ` [PATCH iproute2 1/2] lib names: Split to db_names_alloc and db_names_load Vadim Kochan
2015-03-17 16:52 ` [PATCH iproute2 2/2] tc class: Ignore if default class name file does not exist Vadim Kochan
2015-03-17 17:34 ` Daniel Borkmann
2015-03-17 18:21 ` Vadim Kochan
2015-03-17 18:37 ` Daniel Borkmann
2015-03-17 19:48 ` Sergei Shtylyov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).