summaryrefslogtreecommitdiff
path: root/noncore
Unidiff
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/opie-smb/qsmb.cpp80
1 files changed, 25 insertions, 55 deletions
diff --git a/noncore/net/opie-smb/qsmb.cpp b/noncore/net/opie-smb/qsmb.cpp
index d6d1b23..c1ee9a9 100644
--- a/noncore/net/opie-smb/qsmb.cpp
+++ b/noncore/net/opie-smb/qsmb.cpp
@@ -18,2 +18,3 @@
18#include <qmessagebox.h> 18#include <qmessagebox.h>
19#include <qtextstream.h>
19 20
@@ -102,8 +103,3 @@ void Qsmb::scan()
102 QString match; 103 QString match;
103 char lmhosts[512];
104 QString cmd; 104 QString cmd;
105 char result[256];
106
107 FILE *pipe, *pipe2;
108
109 LScan->setText("Scanning..."); 105 LScan->setText("Scanning...");
@@ -119,57 +115,31 @@ void Qsmb::scan()
119 115
120 cmd = "smbfind"; 116 QStringList ccmd;
121 owarn <<"cmd: " << cmd << oendl; 117 TextViewOutput->append("smbfind");
122
123 TextViewOutput->append(cmd);
124
125 snprintf(lmhosts, 512, "echo '127.0.0.1 localhost'>/etc/samba/lmhosts");
126
127 if ((pipe2 = popen(lmhosts, "r")) == NULL) {
128 snprintf(result, 256, "Error: Can't run %s", lmhosts);
129 //TextViewOutput->append(result);
130 return;
131 }
132
133 /* run command & read output */
134 if ((pipe = popen(cmd.latin1(), "r")) == NULL) {
135 snprintf(result, 256, "Error: Can't run %s", cmd.latin1());
136 TextViewOutput->append(result);
137 return;
138 }
139 118
119 QFile lmhosts("/etc/samba/lmhosts");
120 QTextStream lms(&lmhosts);
121 lmhosts.open(IO_WriteOnly);
122 lms << "127.0.0.1 localhost\n";
123
140 /* parse output and display in ListViewScan */ 124 /* parse output and display in ListViewScan */
141 while(fgets(result, 256, pipe) != NULL) { 125 ccmd = "smbfind";
142 /* put result into TextViewOutput */ 126 owarn <<"cmd: " << ccmd << oendl;
143 TextViewOutput->append(result); 127 runCommand(ccmd);
144 128
145 if( strstr(result, match.latin1()) != NULL ) { 129 QTextStream s(&out, IO_ReadOnly);
146 char ip_addr[256], host[256], *ptr1; 130
147 131 while ( !s.atEnd() ) {
148 strcpy( ip_addr, result); 132 QString ip_addr, host, output;
149 ptr1 = strchr(ip_addr,' '); 133 QString tmp = s.readLine();
150 strcpy( host, ptr1); 134 bool ok;
151 ip_addr[ptr1 - ip_addr]='\0'; 135 tmp.left(1).toInt( &ok, 10 );
152 136 if(ok) {
153 for(i = 0; i < 256; i++) { 137 QStringList token = QStringList::split(' ', tmp );
154 if(host[i]!=' ') { 138 ip_addr = token[0];
155 strcpy( host, host + i); 139 host = token[1];
156 break;
157 }
158 }
159 ptr1 = strchr(host,' ');
160 host[ptr1 - host] = '\0';
161
162 owarn << "add host: " << host << oendl;
163
164 CBHost->insertItem( host, -1); 140 CBHost->insertItem( host, -1);
165 snprintf( lmhosts, 512, "echo '%s %s'>>/etc/samba/lmhosts", ip_addr,host); 141 lms << ip_addr+" "+host+"\n";
166
167 owarn << "lmhosts: " << lmhosts << oendl;
168
169 if ((pipe2 = popen(lmhosts, "r")) == NULL) {
170 snprintf(result, 256, "Error: Can't run %s", lmhosts);
171 return;
172 }
173 } 142 }
174 } 143 }
144 lmhosts.close();
175 145