aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gpe-conf/gpe-conf-0.2.7/wifi-key.patch
blob: f05c04cb45b532861e0eb37b7ffaddc534c93857 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
---
 ChangeLog         |    4 ++++
 modules/cfgfile.c |   49 +++++++++++++++++++++++++++++--------------------
 2 files changed, 33 insertions(+), 20 deletions(-)

--- ChangeLog.orig
+++ ChangeLog
@@ -1,5 +1,9 @@
+2008-12-18  Florian Boor <florian@kernelconcepts.de>
+
+	* cfgfile.c: Some fixes to wifi key string generation.
+
 2008-05-23      Florian Boor <florian.boor@kernelconcepts.de>
 
 	* Relase version 0.2.7
 	* Update translations
 
--- modules/cfgfile.c.orig
+++ modules/cfgfile.c
@@ -1,8 +1,8 @@
 /*
  *
- * Copyright (C) 2002, 2003  Florian Boor <florian.boor@kernelconcepts.de>
+ * Copyright (C) 2002, 2003, 2008  Florian Boor <florian.boor@kernelconcepts.de>
  *               2004  Ole Reinhardt <ole.reinhardt@kernelconcepts.de>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
  * as published by the Free Software Foundation; either version
@@ -128,12 +128,10 @@ gint get_param_val(gchar* line, gchar* p
 	for (b=a+1;b<strlen(line);b++)
 		if ((line[b]=='\n') || (line[b]=='\0')) break;
 	param=strncpy(param,&line[st],sep-st);
 	param[sep-st]='\0';
 	
-//KC-OR: changed because singe character values not recognized correctly
-//		if ((b-a) > 0) value=strncpy(value,&line[a],b-a);	
 	if ((b-a) > 0) value=strncpy(value,&line[a],b-a);	
 	value[b-a]='\0';
 	return 0;
 }
 
@@ -562,15 +560,17 @@ gchar *get_iflist()
 		strncat(result," ",255);
 	}
 	return result;
 }
 
-void get_wifikey_string(NWInterface_t iface, char* key)
+void get_wifikey_string(NWInterface_t iface, gchar** key)
 {
 	gint nokeys = FALSE;
 	gint count;
 	gchar temp[42];
+	gchar *lkey = g_strdup(""), *t;
+
 	
 	if ((strlen(iface.key[0]) == 0) && 
 	    (strlen(iface.key[1]) == 0) && 
 	    (strlen(iface.key[2]) == 0) && 
 	    (strlen(iface.key[3]) == 0)) 
@@ -581,29 +581,36 @@ void get_wifikey_string(NWInterface_t if
 	
 	if (strlen(iface.key[iface.keynr-1]) == 0)
 		for (iface.keynr = 1; iface.keynr <=4; iface.keynr++)
 			if (strlen(iface.key[iface.keynr-1]) != 0) break;
 				
-	switch (iface.encmode)
-	{
-		case ENC_OFF: strcpy(key, "off"); break;
-		case ENC_OPEN: strcpy(key, "open"); break;
-		case ENC_RESTRICTED: strcpy(key, "restricted"); break;
-	}
-	
 	if (!nokeys)
 	{
 		for (count = 0; count < 4; count++)
 			if (strlen(iface.key[count]) > 0)
 			{
-				sprintf(temp, " key %s [%d]", iface.key[count], count+1);
-				strcat(key, temp);
+				t = lkey;
+				lkey = g_strdup_printf("%s key %s [%d]", lkey, iface.key[count], count+1);
+				g_free(t);
 			}
 		
-		sprintf(temp, " key [%d]", iface.keynr);
-		strcat(key, temp);
+		t = lkey;
+		lkey = g_strdup_printf(" %s key [%d]", lkey, iface.keynr);
+		g_free(t);
 	}
+
+	t = lkey;
+	switch (iface.encmode)
+	{
+		case ENC_OPEN: lkey = g_strdup_printf ("%s key open", lkey); break;
+		case ENC_RESTRICTED: lkey = g_strdup_printf("%s key restricted", lkey); break;
+		case ENC_OFF: lkey = g_strdup_printf("%s key off", lkey); break;
+		default: lkey = g_strdup_printf("%s key off", lkey); break;
+	}
+	g_free(t);
+
+ 	*key = lkey;
 }
 
 gint write_sections()
 {
 	gint i,j;
@@ -613,11 +620,11 @@ gint write_sections()
 	gchar paramval[255];
 	gchar ifname[255];
 	gint svd[14];
 	gint lastwpos = 0;
 	gint last_i;
-	gchar key[128];
+	gchar *key;
 	
 	for (i=0;i<configlen;i++)
 	{
 		get_param_val(configtext[i],paramval,ifname);	// get next tokens
 		/* handled by hotplug
@@ -724,12 +731,13 @@ gint write_sections()
 				svd[Swifichannel] = TRUE;
 				lastwpos = i;
 			} else
 			if (!strcmp("wireless_key", paramval))
 			{
-				get_wifikey_string(iflist[l-1], key);
+				get_wifikey_string(iflist[l-1], &key);
 				configtext[i] = subst_val(configtext[i], key); 
+ 				g_free(key);
 				svd[Swifikey] = TRUE;
 				lastwpos = i;
 			}
 			
 		} // else
@@ -807,11 +815,11 @@ gint write_sections()
 						add_line(lastwpos,outstr);
 						i++;
 					} 
 					if (!svd[Swifikey])
 					{
-						get_wifikey_string(iflist[l-1], key);
+						get_wifikey_string(iflist[l-1], &key);
 						sprintf(outstr,"\twireless_key %s",key);
 						add_line(lastwpos,outstr);
 						i++;
 					} 
 				}					
@@ -884,12 +892,13 @@ gint write_sections()
 				if (strlen (iflist[i].channel) > 0)
 				{
 					sprintf(outstr,"\twireless_channel %s",iflist[i].channel);
 					add_line(configlen,outstr);
 				} 
-				get_wifikey_string(iflist[i], key);
-				sprintf(outstr,"\twireless_key %s",key);
+				get_wifikey_string(iflist[i], &key);
+ 				sprintf(outstr,"\twireless_key %s",key);
+				g_free(key);
 				add_line(configlen,outstr);
 			}					
 			
 		} //if status